blob: c214d54af1ab62d439e369c08047328fde497d2e [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 Crowleyb1f3d242016-01-28 10:09:46 +0000181 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000182}
183
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000184static std::string get_de_key_path(userid_t user_id) {
185 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
186}
187
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700188static std::string get_ce_key_directory_path(userid_t user_id) {
189 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
190}
191
192// Returns the keys newest first
193static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
194 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
195 if (!dirp) {
196 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
197 return std::vector<std::string>();
198 }
199 std::vector<std::string> result;
200 for (;;) {
201 errno = 0;
202 auto const entry = readdir(dirp.get());
203 if (!entry) {
204 if (errno) {
205 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
206 return std::vector<std::string>();
207 }
208 break;
209 }
210 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
211 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
212 continue;
213 }
214 result.emplace_back(directory_path + "/" + entry->d_name);
215 }
216 std::sort(result.begin(), result.end());
217 std::reverse(result.begin(), result.end());
218 return result;
219}
220
221static std::string get_ce_key_current_path(const std::string& directory_path) {
222 return directory_path + "/current";
223}
224
225static bool get_ce_key_new_path(const std::string& directory_path,
226 const std::vector<std::string>& paths,
227 std::string *ce_key_path) {
228 if (paths.empty()) {
229 *ce_key_path = get_ce_key_current_path(directory_path);
230 return true;
231 }
232 for (unsigned int i = 0; i < UINT_MAX; i++) {
233 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
234 if (paths[0] < candidate) {
235 *ce_key_path = candidate;
236 return true;
237 }
238 }
239 return false;
240}
241
242// Discard all keys but the named one; rename it to canonical name.
243// No point in acting on errors in this; ignore them.
244static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
245 const std::vector<std::string>& paths) {
246 for (auto const other_path: paths) {
247 if (other_path != to_fix) {
248 android::vold::destroyKey(other_path);
249 }
250 }
251 auto const current_path = get_ce_key_current_path(directory_path);
252 if (to_fix != current_path) {
253 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
254 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
255 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
256 }
257 }
258}
259
260static bool read_and_fixate_user_ce_key(userid_t user_id,
261 const android::vold::KeyAuthentication& auth,
262 std::string *ce_key) {
263 auto const directory_path = get_ce_key_directory_path(user_id);
264 auto const paths = get_ce_key_paths(directory_path);
265 for (auto const ce_key_path: paths) {
266 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
267 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
268 LOG(DEBUG) << "Successfully retrieved key";
269 fixate_user_ce_key(directory_path, ce_key_path, paths);
270 return true;
271 }
272 }
273 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
274 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100275}
276
Paul Crowleydf528a72016-03-09 09:31:37 -0800277static bool read_and_install_user_ce_key(userid_t user_id,
278 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000279 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000280 std::string ce_key;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700281 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000282 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800283 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000284 s_ce_keys[user_id] = ce_key;
285 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000286 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000287 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000288}
289
Paul Crowleydf528a72016-03-09 09:31:37 -0800290static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000291 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000292 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
293 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000294 return false;
295 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000296 return true;
297}
298
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600299static bool destroy_dir(const std::string& dir) {
300 LOG(DEBUG) << "Destroying: " << dir;
301 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
302 PLOG(ERROR) << "Failed to destroy " << dir;
303 return false;
304 }
305 return true;
306}
307
Paul Crowleydf528a72016-03-09 09:31:37 -0800308static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800309 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000310 // TODO status_t plays badly with PLOG, fix it.
311 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000312 return false;
313 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000314 return true;
315}
316
Paul Crowleydf528a72016-03-09 09:31:37 -0800317static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000318 return access(path.c_str(), F_OK) == 0;
319}
320
321// NB this assumes that there is only one thread listening for crypt commands, because
322// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800323static bool store_key(const std::string& key_path, const std::string& tmp_path,
324 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000325 if (path_exists(key_path)) {
326 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
327 return false;
328 }
Paul Crowley38132a12016-02-09 09:50:32 +0000329 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800330 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000331 }
Paul Crowley38132a12016-02-09 09:50:32 +0000332 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
333 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000334 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
335 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100336 }
Paul Crowley285956f2016-01-20 13:12:38 +0000337 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100338 return true;
339}
340
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000341static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
342 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800343 if (!random_key(&de_key)) return false;
344 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000345 if (create_ephemeral) {
346 // If the key should be created as ephemeral, don't store it.
347 s_ephemeral_users.insert(user_id);
348 } else {
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700349 auto const directory_path = get_ce_key_directory_path(user_id);
350 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
351 auto const paths = get_ce_key_paths(directory_path);
352 std::string ce_key_path;
353 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
354 if (!store_key(ce_key_path, user_key_temp,
355 kEmptyAuthentication, ce_key)) return false;
356 fixate_user_ce_key(directory_path, ce_key_path, paths);
357 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000358 if (!store_key(get_de_key_path(user_id), user_key_temp,
359 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100360 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000361 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800362 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000363 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000364 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800365 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000366 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000367 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000368 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000369 return true;
370}
371
Paul Crowleydf528a72016-03-09 09:31:37 -0800372static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
373 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000374 auto refi = key_map.find(user_id);
375 if (refi == key_map.end()) {
376 LOG(ERROR) << "Cannot find key for " << user_id;
377 return false;
378 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800379 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000380 return true;
381}
382
Paul Crowleydf528a72016-03-09 09:31:37 -0800383static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700384 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000385 LOG(ERROR) << "Failed to set policy on: " << path;
386 return false;
387 }
388 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100389}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100390
Paul Crowleydf528a72016-03-09 09:31:37 -0800391static bool is_numeric(const char* name) {
392 for (const char* p = name; *p != '\0'; p++) {
393 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000394 }
395 return true;
396}
397
398static bool load_all_de_keys() {
399 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800400 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000401 if (!dirp) {
402 PLOG(ERROR) << "Unable to read de key directory";
403 return false;
404 }
405 for (;;) {
406 errno = 0;
407 auto entry = readdir(dirp.get());
408 if (!entry) {
409 if (errno) {
410 PLOG(ERROR) << "Unable to read de key directory";
411 return false;
412 }
413 break;
414 }
415 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
416 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
417 continue;
418 }
419 userid_t user_id = atoi(entry->d_name);
420 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000421 auto key_path = de_dir + "/" + entry->d_name;
422 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800423 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000424 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800425 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000426 s_de_key_raw_refs[user_id] = raw_ref;
427 LOG(DEBUG) << "Installed de key for user " << user_id;
428 }
429 }
430 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
431 // correct policy set on them, and that no rogue ones exist.
432 return true;
433}
434
Paul Crowleydf528a72016-03-09 09:31:37 -0800435bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000436 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800437
Paul Crowley38132a12016-02-09 09:50:32 +0000438 if (s_global_de_initialized) {
439 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000440 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800441 }
442
443 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000444 if (path_exists(device_key_path)) {
445 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800446 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000447 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800448 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800449 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000450 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000451 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800452 }
453
454 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800455 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800456 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800458 }
459
Paul Lawrencef10544d2016-02-04 08:18:52 -0800460 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
461 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
462 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000463 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800464 }
465
Paul Crowley38132a12016-02-09 09:50:32 +0000466 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000467 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800468}
469
Paul Crowley76107cb2016-02-09 10:04:39 +0000470bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000471 LOG(DEBUG) << "e4crypt_init_user0";
472 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000473 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
474 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
475 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700476 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000477 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000478 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700479 // TODO: switch to loading only DE_0 here once framework makes
480 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000481 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000482 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700483 // We can only safely prepare DE storage here, since CE keys are probably
484 // entangled with user credentials. The framework will always prepare CE
485 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000486 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700487 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000488 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700489 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700490
491 // If this is a non-FBE device that recently left an emulated mode,
492 // restore user data directories to known-good state.
493 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700494 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700495 }
496
Paul Crowley76107cb2016-02-09 10:04:39 +0000497 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000498}
499
Paul Crowley76107cb2016-02-09 10:04:39 +0000500bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000501 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000502 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000503 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000504 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000505 // FIXME test for existence of key that is not loaded yet
506 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800507 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
508 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000509 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000510 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800511 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000512 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000513 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000514 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000515 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800516}
517
Paul Crowleydf528a72016-03-09 09:31:37 -0800518static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000519 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800520 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800521 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800522 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000523 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000524 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000525 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100526 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000527 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
528 return true;
529}
530
Paul Crowley76107cb2016-02-09 10:04:39 +0000531bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000532 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000533 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000534 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000535 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000536 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000537 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000538 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700539 // If we haven't loaded the CE key, no need to evict it.
540 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
541 success &= evict_key(raw_ref);
542 }
Paul Crowley05720802016-02-08 15:55:41 +0000543 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800544 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000545 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000546 auto it = s_ephemeral_users.find(user_id);
547 if (it != s_ephemeral_users.end()) {
548 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000549 } else {
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700550 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
551 success &= android::vold::destroyKey(path);
552 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000553 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100554 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000555 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100556}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800557
Paul Crowley76107cb2016-02-09 10:04:39 +0000558static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700559 if (chmod(path.c_str(), 0000) != 0) {
560 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700562 }
563#if EMULATED_USES_SELINUX
564 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
565 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000566 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700567 }
568#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000569 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700570}
571
Paul Crowley76107cb2016-02-09 10:04:39 +0000572static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700573 if (chmod(path.c_str(), mode) != 0) {
574 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000575 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000576 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700577 }
578#if EMULATED_USES_SELINUX
579 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
580 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000581 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000582 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700583 }
584#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700586}
587
Paul Crowleydf528a72016-03-09 09:31:37 -0800588static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000589 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800590 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000591 return true;
592 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800593 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800594 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000595 return false;
596 }
597 return true;
598}
599
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700600bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
601 const char* secret_hex) {
602 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800603 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000604 if (!e4crypt_is_native()) return true;
605 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700606 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800607 if (!parse_hex(token_hex, &token)) return false;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700608 if (!parse_hex(secret_hex, &secret)) return false;
609 auto auth = secret.empty() ? kEmptyAuthentication
610 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000611 auto it = s_ce_keys.find(user_id);
612 if (it == s_ce_keys.end()) {
613 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000614 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000615 }
616 auto ce_key = it->second;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700617 auto const directory_path = get_ce_key_directory_path(user_id);
618 auto const paths = get_ce_key_paths(directory_path);
619 std::string ce_key_path;
620 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
621 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
622 return true;
623}
624
625bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
626 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
627 auto const directory_path = get_ce_key_directory_path(user_id);
628 auto const paths = get_ce_key_paths(directory_path);
629 if (paths.empty()) {
630 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
631 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000632 }
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700633 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000634 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000635}
636
Jeff Sharkey47695b22016-02-01 17:02:29 -0700637// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800638bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
639 const char* secret_hex) {
640 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
641 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700642 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000643 if (s_ce_key_raw_refs.count(user_id) != 0) {
644 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000645 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000646 }
647 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800648 if (!parse_hex(token_hex, &token)) return false;
649 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000650 android::vold::KeyAuthentication auth(token, secret);
651 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000652 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000653 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800654 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700655 } else {
656 // When in emulation mode, we just use chmod. However, we also
657 // unlock directories when not in emulation mode, to bring devices
658 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000659 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800660 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600661 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
662 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700663 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000664 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700665 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800666 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000667 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800668}
669
Jeff Sharkey47695b22016-02-01 17:02:29 -0700670// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000671bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700672 if (e4crypt_is_native()) {
673 // TODO: remove from kernel keyring
674 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800675 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000676 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800677 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600678 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
679 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000680 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000681 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800682 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800683 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700684
Paul Crowley76107cb2016-02-09 10:04:39 +0000685 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800686}
687
Paul Crowleydf528a72016-03-09 09:31:37 -0800688bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600689 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700690 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800691 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700692
693 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600694 // DE_sys key
695 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
696 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
697 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
698 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
699
700 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700701 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
702 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
703 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
704
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600705 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
706#if MANAGE_MISC_DIRS
707 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
708 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
709#endif
710 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
711 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
712
Paul Crowley76107cb2016-02-09 10:04:39 +0000713 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
714 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
715 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000716
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600717 // For now, FBE is only supported on internal storage
718 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700719 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800720 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000721 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
722 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
723 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700724 }
Paul Crowley285956f2016-01-20 13:12:38 +0000725 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800726
Jeff Sharkey47695b22016-02-01 17:02:29 -0700727 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600728 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700729 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
730 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600731 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
732 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800733
Paul Crowley76107cb2016-02-09 10:04:39 +0000734 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
735 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
736 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
737 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700738
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600739 // For now, FBE is only supported on internal storage
740 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700741 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800742 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000743 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
744 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
745 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
746 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700747 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800748 }
749
Paul Crowley76107cb2016-02-09 10:04:39 +0000750 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800751}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600752
753bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
754 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
755 << ", user " << user_id << ", flags " << flags;
756 bool res = true;
757
758 if (flags & FLAG_STORAGE_DE) {
759 // DE_sys key
760 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
761 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
762 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
763 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
764
765 // DE_n key
766 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
767 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
768 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
769
770 if (volume_uuid == nullptr) {
771 res &= destroy_dir(system_legacy_path);
772#if MANAGE_MISC_DIRS
773 res &= destroy_dir(misc_legacy_path);
774#endif
775 res &= destroy_dir(profiles_de_path);
776 res &= destroy_dir(foreign_de_path);
777 res &= destroy_dir(system_de_path);
778 res &= destroy_dir(misc_de_path);
779 }
780 res &= destroy_dir(user_de_path);
781 }
782
783 if (flags & FLAG_STORAGE_CE) {
784 // CE_n key
785 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
786 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
787 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
788 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
789
790 if (volume_uuid == nullptr) {
791 res &= destroy_dir(system_ce_path);
792 res &= destroy_dir(misc_ce_path);
793 }
794 res &= destroy_dir(media_ce_path);
795 res &= destroy_dir(user_ce_path);
796 }
797
798 return res;
799}