blob: 0531abae31b52c7cf1ecf8898b307fd2a8f19654 [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Paul Lawrence731a7a22015-04-28 22:14:15 +000017#include "Ext4Crypt.h"
18
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080020#include "Utils.h"
21
Paul Crowleya3630362016-05-17 14:17:56 -070022#include <algorithm>
Paul Lawrencefd7db732015-04-10 07:48:51 -070023#include <iomanip>
Paul Lawrence731a7a22015-04-28 22:14:15 +000024#include <map>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000025#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070026#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080027#include <string>
Paul Lawrence731a7a22015-04-28 22:14:15 +000028
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <dirent.h>
30#include <errno.h>
31#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070032#include <limits.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070033#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070034#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080035#include <stdio.h>
36#include <sys/mount.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000039
Paul Crowley480fcd22015-08-24 14:53:28 +010040#include <private/android_filesystem_config.h>
41
Paul Lawrence731a7a22015-04-28 22:14:15 +000042#include "cryptfs.h"
43
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070044#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060045#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080047#include <cutils/fs.h>
Tao Bao989fec22016-10-05 18:01:19 -070048#include <ext4_utils/ext4_crypt.h>
49#include <ext4_utils/key_control.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050
Elliott Hughes7e128fb2015-12-04 15:50:53 -080051#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080052#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080053#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000054
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000056using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080057
Jeff Sharkey47695b22016-02-01 17:02:29 -070058// NOTE: keep in sync with StorageManager
59static constexpr int FLAG_STORAGE_DE = 1 << 0;
60static constexpr int FLAG_STORAGE_CE = 1 << 1;
61
Paul Lawrence731a7a22015-04-28 22:14:15 +000062namespace {
Paul Crowley4d2d5242016-04-27 10:25:12 -070063const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080064const std::string device_key_path = device_key_dir + "/key";
65const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080066
Paul Crowleydf528a72016-03-09 09:31:37 -080067const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
68const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000069
Paul Crowleydf528a72016-03-09 09:31:37 -080070bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080071
Paul Crowleydf528a72016-03-09 09:31:37 -080072// Some users are ephemeral, don't try to wipe their keys from disk
73std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080074
Paul Crowleydf528a72016-03-09 09:31:37 -080075// Map user ids to key references
76std::map<userid_t, std::string> s_de_key_raw_refs;
77std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070078// TODO abolish this map, per b/26948053
Paul Crowleydf528a72016-03-09 09:31:37 -080079std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000080
Paul Crowleydf528a72016-03-09 09:31:37 -080081// ext4enc:TODO get this const from somewhere good
82const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070083
Paul Crowleydf528a72016-03-09 09:31:37 -080084// ext4enc:TODO Include structure from somewhere sensible
85// MUST be in sync with ext4_crypto.c in kernel
86constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
87constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
88constexpr int EXT4_MAX_KEY_SIZE = 64;
89struct ext4_encryption_key {
90 uint32_t mode;
91 char raw[EXT4_MAX_KEY_SIZE];
92 uint32_t size;
93};
Paul Lawrence731a7a22015-04-28 22:14:15 +000094}
95
Paul Crowley38132a12016-02-09 09:50:32 +000096static bool e4crypt_is_emulated() {
97 return property_get_bool("persist.sys.emulate_fbe", false);
98}
99
100static const char* escape_null(const char* value) {
101 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000102}
103
Paul Crowley93363482015-07-07 15:17:22 +0100104// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800105static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700106 SHA512_CTX c;
107
108 SHA512_Init(&c);
109 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000110 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700111 SHA512_Final(key_ref1, &c);
112
113 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000114 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
115 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700116 SHA512_Final(key_ref2, &c);
117
Paul Crowleyd9b92952016-03-04 13:45:00 -0800118 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800119 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700120 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
121}
122
Paul Crowleydf528a72016-03-09 09:31:37 -0800123static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800124 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
125 LOG(ERROR) << "Wrong size key " << key.size();
126 return false;
127 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800128 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800129 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
130 ext4_key->size = key.size();
131 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
132 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800133 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100134}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000135
Paul Crowleydf528a72016-03-09 09:31:37 -0800136static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700137 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100138 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800139 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800140 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700141 }
Paul Crowley93363482015-07-07 15:17:22 +0100142 return o.str();
143}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700144
Paul Crowley93363482015-07-07 15:17:22 +0100145// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800146static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800147 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
148 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800149 PLOG(ERROR) << "Unable to find device keyring";
150 return false;
151 }
152 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100153}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000154
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000155// Install password into global keyring
156// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800157static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800158 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800159 if (!fill_key(key, &ext4_key)) return false;
160 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
161 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800162 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800163 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800164 key_serial_t key_id =
165 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000166 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000167 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000168 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000169 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800170 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
171 << " in process " << getpid();
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000172 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000173}
174
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000175static std::string get_de_key_path(userid_t user_id) {
176 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
177}
178
Paul Crowleya3630362016-05-17 14:17:56 -0700179static std::string get_ce_key_directory_path(userid_t user_id) {
180 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
181}
182
183// Returns the keys newest first
184static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
185 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
186 if (!dirp) {
187 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
188 return std::vector<std::string>();
189 }
190 std::vector<std::string> result;
191 for (;;) {
192 errno = 0;
193 auto const entry = readdir(dirp.get());
194 if (!entry) {
195 if (errno) {
196 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
197 return std::vector<std::string>();
198 }
199 break;
200 }
201 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
202 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
203 continue;
204 }
205 result.emplace_back(directory_path + "/" + entry->d_name);
206 }
207 std::sort(result.begin(), result.end());
208 std::reverse(result.begin(), result.end());
209 return result;
210}
211
212static std::string get_ce_key_current_path(const std::string& directory_path) {
213 return directory_path + "/current";
214}
215
216static bool get_ce_key_new_path(const std::string& directory_path,
217 const std::vector<std::string>& paths,
218 std::string *ce_key_path) {
219 if (paths.empty()) {
220 *ce_key_path = get_ce_key_current_path(directory_path);
221 return true;
222 }
223 for (unsigned int i = 0; i < UINT_MAX; i++) {
224 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
225 if (paths[0] < candidate) {
226 *ce_key_path = candidate;
227 return true;
228 }
229 }
230 return false;
231}
232
233// Discard all keys but the named one; rename it to canonical name.
234// No point in acting on errors in this; ignore them.
235static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
236 const std::vector<std::string>& paths) {
237 for (auto const other_path: paths) {
238 if (other_path != to_fix) {
239 android::vold::destroyKey(other_path);
240 }
241 }
242 auto const current_path = get_ce_key_current_path(directory_path);
243 if (to_fix != current_path) {
244 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
245 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
246 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
247 }
248 }
249}
250
251static bool read_and_fixate_user_ce_key(userid_t user_id,
252 const android::vold::KeyAuthentication& auth,
253 std::string *ce_key) {
254 auto const directory_path = get_ce_key_directory_path(user_id);
255 auto const paths = get_ce_key_paths(directory_path);
256 for (auto const ce_key_path: paths) {
257 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
258 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
259 LOG(DEBUG) << "Successfully retrieved key";
260 fixate_user_ce_key(directory_path, ce_key_path, paths);
261 return true;
262 }
263 }
264 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
265 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100266}
267
Paul Crowleydf528a72016-03-09 09:31:37 -0800268static bool read_and_install_user_ce_key(userid_t user_id,
269 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000270 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000271 std::string ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700272 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000273 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800274 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000275 s_ce_keys[user_id] = ce_key;
276 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000277 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000278 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000279}
280
Paul Crowleydf528a72016-03-09 09:31:37 -0800281static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000282 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000283 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
284 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000285 return false;
286 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000287 return true;
288}
289
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600290static bool destroy_dir(const std::string& dir) {
291 LOG(DEBUG) << "Destroying: " << dir;
292 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
293 PLOG(ERROR) << "Failed to destroy " << dir;
294 return false;
295 }
296 return true;
297}
298
Paul Crowleydf528a72016-03-09 09:31:37 -0800299static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800300 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000301 // TODO status_t plays badly with PLOG, fix it.
302 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000303 return false;
304 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000305 return true;
306}
307
Paul Crowleydf528a72016-03-09 09:31:37 -0800308static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000309 return access(path.c_str(), F_OK) == 0;
310}
311
312// NB this assumes that there is only one thread listening for crypt commands, because
313// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800314static bool store_key(const std::string& key_path, const std::string& tmp_path,
315 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000316 if (path_exists(key_path)) {
317 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
318 return false;
319 }
Paul Crowley38132a12016-02-09 09:50:32 +0000320 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800321 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322 }
Paul Crowley38132a12016-02-09 09:50:32 +0000323 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
324 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000325 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
326 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100327 }
Paul Crowley285956f2016-01-20 13:12:38 +0000328 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100329 return true;
330}
331
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000332static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
333 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800334 if (!random_key(&de_key)) return false;
335 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000336 if (create_ephemeral) {
337 // If the key should be created as ephemeral, don't store it.
338 s_ephemeral_users.insert(user_id);
339 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700340 auto const directory_path = get_ce_key_directory_path(user_id);
341 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
342 auto const paths = get_ce_key_paths(directory_path);
343 std::string ce_key_path;
344 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
345 if (!store_key(ce_key_path, user_key_temp,
346 kEmptyAuthentication, ce_key)) return false;
347 fixate_user_ce_key(directory_path, ce_key_path, paths);
348 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000349 if (!store_key(get_de_key_path(user_id), user_key_temp,
350 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100351 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000352 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800353 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000354 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000355 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800356 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000357 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000358 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000359 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000360 return true;
361}
362
Paul Crowleydf528a72016-03-09 09:31:37 -0800363static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
364 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000365 auto refi = key_map.find(user_id);
366 if (refi == key_map.end()) {
367 LOG(ERROR) << "Cannot find key for " << user_id;
368 return false;
369 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800370 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000371 return true;
372}
373
Paul Crowleydf528a72016-03-09 09:31:37 -0800374static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700375 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000376 LOG(ERROR) << "Failed to set policy on: " << path;
377 return false;
378 }
379 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100380}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100381
Paul Crowleydf528a72016-03-09 09:31:37 -0800382static bool is_numeric(const char* name) {
383 for (const char* p = name; *p != '\0'; p++) {
384 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000385 }
386 return true;
387}
388
389static bool load_all_de_keys() {
390 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800391 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000392 if (!dirp) {
393 PLOG(ERROR) << "Unable to read de key directory";
394 return false;
395 }
396 for (;;) {
397 errno = 0;
398 auto entry = readdir(dirp.get());
399 if (!entry) {
400 if (errno) {
401 PLOG(ERROR) << "Unable to read de key directory";
402 return false;
403 }
404 break;
405 }
406 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
407 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
408 continue;
409 }
410 userid_t user_id = atoi(entry->d_name);
411 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000412 auto key_path = de_dir + "/" + entry->d_name;
413 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800414 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000415 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800416 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000417 s_de_key_raw_refs[user_id] = raw_ref;
418 LOG(DEBUG) << "Installed de key for user " << user_id;
419 }
420 }
421 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
422 // correct policy set on them, and that no rogue ones exist.
423 return true;
424}
425
Paul Crowleydf528a72016-03-09 09:31:37 -0800426bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000427 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800428
Paul Crowley38132a12016-02-09 09:50:32 +0000429 if (s_global_de_initialized) {
430 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000431 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800432 }
433
434 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000435 if (path_exists(device_key_path)) {
436 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800437 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000438 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800439 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800440 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000441 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000442 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800443 }
444
445 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800446 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800447 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800449 }
450
Paul Lawrencef10544d2016-02-04 08:18:52 -0800451 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
452 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
453 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000454 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800455 }
456
Paul Crowley38132a12016-02-09 09:50:32 +0000457 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000458 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800459}
460
Paul Crowley76107cb2016-02-09 10:04:39 +0000461bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000462 LOG(DEBUG) << "e4crypt_init_user0";
463 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000464 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
465 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
466 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700467 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000469 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700470 // TODO: switch to loading only DE_0 here once framework makes
471 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000472 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000473 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700474 // We can only safely prepare DE storage here, since CE keys are probably
475 // entangled with user credentials. The framework will always prepare CE
476 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000477 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700478 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000479 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700480 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700481
482 // If this is a non-FBE device that recently left an emulated mode,
483 // restore user data directories to known-good state.
484 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700485 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700486 }
487
Paul Crowley76107cb2016-02-09 10:04:39 +0000488 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000489}
490
Paul Crowley76107cb2016-02-09 10:04:39 +0000491bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000492 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000493 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000494 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000495 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000496 // FIXME test for existence of key that is not loaded yet
497 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800498 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
499 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000500 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000501 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800502 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000503 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000504 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000505 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000506 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800507}
508
Paul Crowleydf528a72016-03-09 09:31:37 -0800509static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000510 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800511 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800512 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800513 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000514 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000515 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000516 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100517 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000518 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
519 return true;
520}
521
Paul Crowley76107cb2016-02-09 10:04:39 +0000522bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000523 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000524 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000525 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000526 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000527 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000528 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000529 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700530 // If we haven't loaded the CE key, no need to evict it.
531 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
532 success &= evict_key(raw_ref);
533 }
Paul Crowley05720802016-02-08 15:55:41 +0000534 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800535 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000536 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000537 auto it = s_ephemeral_users.find(user_id);
538 if (it != s_ephemeral_users.end()) {
539 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000540 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700541 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
542 success &= android::vold::destroyKey(path);
543 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000544 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100545 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000546 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100547}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800548
Paul Crowley76107cb2016-02-09 10:04:39 +0000549static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700550 if (chmod(path.c_str(), 0000) != 0) {
551 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000552 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700553 }
554#if EMULATED_USES_SELINUX
555 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
556 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000557 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700558 }
559#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000560 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700561}
562
Paul Crowley76107cb2016-02-09 10:04:39 +0000563static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700564 if (chmod(path.c_str(), mode) != 0) {
565 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000566 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000567 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700568 }
569#if EMULATED_USES_SELINUX
570 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
571 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000572 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000573 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700574 }
575#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000576 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700577}
578
Paul Crowleydf528a72016-03-09 09:31:37 -0800579static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000580 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800581 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000582 return true;
583 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800584 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800585 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000586 return false;
587 }
588 return true;
589}
590
Paul Crowleya3630362016-05-17 14:17:56 -0700591bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
592 const char* secret_hex) {
593 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800594 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000595 if (!e4crypt_is_native()) return true;
596 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700597 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800598 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700599 if (!parse_hex(secret_hex, &secret)) return false;
600 auto auth = secret.empty() ? kEmptyAuthentication
601 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000602 auto it = s_ce_keys.find(user_id);
603 if (it == s_ce_keys.end()) {
604 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000605 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000606 }
607 auto ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700608 auto const directory_path = get_ce_key_directory_path(user_id);
609 auto const paths = get_ce_key_paths(directory_path);
610 std::string ce_key_path;
611 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
612 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
613 return true;
614}
615
616bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
617 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
618 if (!e4crypt_is_native()) return true;
619 auto const directory_path = get_ce_key_directory_path(user_id);
620 auto const paths = get_ce_key_paths(directory_path);
621 if (paths.empty()) {
622 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
623 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000624 }
Paul Crowleya3630362016-05-17 14:17:56 -0700625 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000626 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000627}
628
Jeff Sharkey47695b22016-02-01 17:02:29 -0700629// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800630bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
631 const char* secret_hex) {
632 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
633 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700634 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000635 if (s_ce_key_raw_refs.count(user_id) != 0) {
636 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000637 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000638 }
639 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800640 if (!parse_hex(token_hex, &token)) return false;
641 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000642 android::vold::KeyAuthentication auth(token, secret);
643 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000644 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000645 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800646 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700647 } else {
648 // When in emulation mode, we just use chmod. However, we also
649 // unlock directories when not in emulation mode, to bring devices
650 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000651 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800652 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600653 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
654 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700655 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000656 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700657 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800658 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000659 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800660}
661
Jeff Sharkey47695b22016-02-01 17:02:29 -0700662// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000663bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700664 if (e4crypt_is_native()) {
665 // TODO: remove from kernel keyring
666 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800667 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000668 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800669 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600670 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
671 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000672 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000673 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800674 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800675 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700676
Paul Crowley76107cb2016-02-09 10:04:39 +0000677 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800678}
679
Paul Crowleydf528a72016-03-09 09:31:37 -0800680bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600681 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700682 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800683 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700684
685 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600686 // DE_sys key
687 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
688 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
689 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
690 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
691
692 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700693 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
694 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
695 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
696
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600697 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
698#if MANAGE_MISC_DIRS
699 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
700 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
701#endif
702 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
703 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
704
Paul Crowley76107cb2016-02-09 10:04:39 +0000705 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
706 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
707 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000708
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600709 // For now, FBE is only supported on internal storage
710 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700711 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800712 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000713 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
714 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
715 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700716 }
Paul Crowley285956f2016-01-20 13:12:38 +0000717 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800718
Jeff Sharkey47695b22016-02-01 17:02:29 -0700719 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600720 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700721 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
722 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600723 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
724 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800725
Paul Crowley76107cb2016-02-09 10:04:39 +0000726 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
727 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
728 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
729 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700730
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600731 // For now, FBE is only supported on internal storage
732 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700733 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800734 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000735 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
736 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
737 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
738 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700739 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800740 }
741
Paul Crowley76107cb2016-02-09 10:04:39 +0000742 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800743}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600744
745bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
746 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
747 << ", user " << user_id << ", flags " << flags;
748 bool res = true;
749
750 if (flags & FLAG_STORAGE_DE) {
751 // DE_sys key
752 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
753 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
754 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
755 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
756
757 // DE_n key
758 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
759 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
760 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
761
762 if (volume_uuid == nullptr) {
763 res &= destroy_dir(system_legacy_path);
764#if MANAGE_MISC_DIRS
765 res &= destroy_dir(misc_legacy_path);
766#endif
767 res &= destroy_dir(profiles_de_path);
768 res &= destroy_dir(foreign_de_path);
769 res &= destroy_dir(system_de_path);
770 res &= destroy_dir(misc_de_path);
771 }
772 res &= destroy_dir(user_de_path);
773 }
774
775 if (flags & FLAG_STORAGE_CE) {
776 // CE_n key
777 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
778 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
779 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
780 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
781
782 if (volume_uuid == nullptr) {
783 res &= destroy_dir(system_ce_path);
784 res &= destroy_dir(misc_ce_path);
785 }
786 res &= destroy_dir(media_ce_path);
787 res &= destroy_dir(user_ce_path);
788 }
789
790 return res;
791}