blob: 682b34cc367472ed464dfe0d2a112c282800afd8 [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>
Andrew Scull7ec25c72016-10-31 10:28:25 +000023#include <chrono>
Paul Lawrencefd7db732015-04-10 07:48:51 -070024#include <iomanip>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Andrew Scull7ec25c72016-10-31 10:28:25 +000026#include <mutex>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Andrew Scull7ec25c72016-10-31 10:28:25 +000030#include <thread>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070036#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070037#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080038#include <stdio.h>
39#include <sys/mount.h>
40#include <sys/stat.h>
41#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000042
Paul Crowley480fcd22015-08-24 14:53:28 +010043#include <private/android_filesystem_config.h>
44
Paul Lawrence731a7a22015-04-28 22:14:15 +000045#include "cryptfs.h"
46
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>
Tao Bao989fec22016-10-05 18:01:19 -070051#include <ext4_utils/ext4_crypt.h>
52#include <ext4_utils/key_control.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080053
Elliott Hughes7e128fb2015-12-04 15:50:53 -080054#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080055#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000057
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080058using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000059using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080060
Jeff Sharkey47695b22016-02-01 17:02:29 -070061// NOTE: keep in sync with StorageManager
62static constexpr int FLAG_STORAGE_DE = 1 << 0;
63static constexpr int FLAG_STORAGE_CE = 1 << 1;
64
Paul Lawrence731a7a22015-04-28 22:14:15 +000065namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000066const std::chrono::seconds s_key_eviction_sleep_time(20);
67
Paul Crowley4d2d5242016-04-27 10:25:12 -070068const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080069const std::string device_key_path = device_key_dir + "/key";
70const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080071
Paul Crowleydf528a72016-03-09 09:31:37 -080072const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
73const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000074
Paul Crowleydf528a72016-03-09 09:31:37 -080075bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080076
Paul Crowleydf528a72016-03-09 09:31:37 -080077// Some users are ephemeral, don't try to wipe their keys from disk
78std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080079
Andrew Scull7ec25c72016-10-31 10:28:25 +000080// Allow evictions to be cancelled.
81std::map<std::string, std::thread::id> s_desired_eviction_threads;
82std::mutex s_desired_eviction_threads_mutex;
83
Paul Crowleydf528a72016-03-09 09:31:37 -080084// Map user ids to key references
85std::map<userid_t, std::string> s_de_key_raw_refs;
86std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070087// TODO abolish this map, per b/26948053
Paul Crowleydf528a72016-03-09 09:31:37 -080088std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000089
Paul Crowleydf528a72016-03-09 09:31:37 -080090// ext4enc:TODO get this const from somewhere good
91const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070092
Paul Crowleydf528a72016-03-09 09:31:37 -080093// ext4enc:TODO Include structure from somewhere sensible
94// MUST be in sync with ext4_crypto.c in kernel
95constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
96constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
97constexpr int EXT4_MAX_KEY_SIZE = 64;
98struct ext4_encryption_key {
99 uint32_t mode;
100 char raw[EXT4_MAX_KEY_SIZE];
101 uint32_t size;
102};
Paul Lawrence731a7a22015-04-28 22:14:15 +0000103}
104
Paul Crowley38132a12016-02-09 09:50:32 +0000105static 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);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000170 // Ensure that no thread is waiting to evict this ref
171 std::lock_guard<std::mutex> lock(s_desired_eviction_threads_mutex);
172 s_desired_eviction_threads.erase(*raw_ref);
Paul Crowleya051eb72016-03-08 16:08:32 -0800173 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800174 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800175 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800176 key_serial_t key_id =
177 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000178 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000179 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000180 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000181 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800182 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
183 << " in process " << getpid();
Paul Lawrence85e3d8c2016-04-26 12:50:53 -0700184
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000185 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000186}
187
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000188static std::string get_de_key_path(userid_t user_id) {
189 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
190}
191
Paul Crowleya3630362016-05-17 14:17:56 -0700192static std::string get_ce_key_directory_path(userid_t user_id) {
193 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
194}
195
196// Returns the keys newest first
197static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
198 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
199 if (!dirp) {
200 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
201 return std::vector<std::string>();
202 }
203 std::vector<std::string> result;
204 for (;;) {
205 errno = 0;
206 auto const entry = readdir(dirp.get());
207 if (!entry) {
208 if (errno) {
209 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
210 return std::vector<std::string>();
211 }
212 break;
213 }
214 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
215 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
216 continue;
217 }
218 result.emplace_back(directory_path + "/" + entry->d_name);
219 }
220 std::sort(result.begin(), result.end());
221 std::reverse(result.begin(), result.end());
222 return result;
223}
224
225static std::string get_ce_key_current_path(const std::string& directory_path) {
226 return directory_path + "/current";
227}
228
229static bool get_ce_key_new_path(const std::string& directory_path,
230 const std::vector<std::string>& paths,
231 std::string *ce_key_path) {
232 if (paths.empty()) {
233 *ce_key_path = get_ce_key_current_path(directory_path);
234 return true;
235 }
236 for (unsigned int i = 0; i < UINT_MAX; i++) {
237 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
238 if (paths[0] < candidate) {
239 *ce_key_path = candidate;
240 return true;
241 }
242 }
243 return false;
244}
245
246// Discard all keys but the named one; rename it to canonical name.
247// No point in acting on errors in this; ignore them.
248static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
249 const std::vector<std::string>& paths) {
250 for (auto const other_path: paths) {
251 if (other_path != to_fix) {
252 android::vold::destroyKey(other_path);
253 }
254 }
255 auto const current_path = get_ce_key_current_path(directory_path);
256 if (to_fix != current_path) {
257 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
258 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
259 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
260 }
261 }
262}
263
264static bool read_and_fixate_user_ce_key(userid_t user_id,
265 const android::vold::KeyAuthentication& auth,
266 std::string *ce_key) {
267 auto const directory_path = get_ce_key_directory_path(user_id);
268 auto const paths = get_ce_key_paths(directory_path);
269 for (auto const ce_key_path: paths) {
270 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
271 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
272 LOG(DEBUG) << "Successfully retrieved key";
273 fixate_user_ce_key(directory_path, ce_key_path, paths);
274 return true;
275 }
276 }
277 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
278 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100279}
280
Paul Crowleydf528a72016-03-09 09:31:37 -0800281static bool read_and_install_user_ce_key(userid_t user_id,
282 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000283 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000284 std::string ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700285 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000286 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800287 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000288 s_ce_keys[user_id] = ce_key;
289 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000290 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000291 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000292}
293
Paul Crowleydf528a72016-03-09 09:31:37 -0800294static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000295 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000296 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
297 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000298 return false;
299 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000300 return true;
301}
302
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600303static bool destroy_dir(const std::string& dir) {
304 LOG(DEBUG) << "Destroying: " << dir;
305 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
306 PLOG(ERROR) << "Failed to destroy " << dir;
307 return false;
308 }
309 return true;
310}
311
Paul Crowleydf528a72016-03-09 09:31:37 -0800312static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800313 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000314 // TODO status_t plays badly with PLOG, fix it.
315 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000316 return false;
317 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000318 return true;
319}
320
Paul Crowleydf528a72016-03-09 09:31:37 -0800321static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322 return access(path.c_str(), F_OK) == 0;
323}
324
325// NB this assumes that there is only one thread listening for crypt commands, because
326// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800327static bool store_key(const std::string& key_path, const std::string& tmp_path,
328 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000329 if (path_exists(key_path)) {
330 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
331 return false;
332 }
Paul Crowley38132a12016-02-09 09:50:32 +0000333 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800334 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000335 }
Paul Crowley38132a12016-02-09 09:50:32 +0000336 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
337 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000338 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
339 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100340 }
Paul Crowley285956f2016-01-20 13:12:38 +0000341 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100342 return true;
343}
344
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000345static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
346 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800347 if (!random_key(&de_key)) return false;
348 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000349 if (create_ephemeral) {
350 // If the key should be created as ephemeral, don't store it.
351 s_ephemeral_users.insert(user_id);
352 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700353 auto const directory_path = get_ce_key_directory_path(user_id);
354 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
355 auto const paths = get_ce_key_paths(directory_path);
356 std::string ce_key_path;
357 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
358 if (!store_key(ce_key_path, user_key_temp,
359 kEmptyAuthentication, ce_key)) return false;
360 fixate_user_ce_key(directory_path, ce_key_path, paths);
361 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000362 if (!store_key(get_de_key_path(user_id), user_key_temp,
363 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100364 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000365 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800366 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000367 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000368 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800369 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000370 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000371 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000372 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000373 return true;
374}
375
Paul Crowleydf528a72016-03-09 09:31:37 -0800376static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
377 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000378 auto refi = key_map.find(user_id);
379 if (refi == key_map.end()) {
380 LOG(ERROR) << "Cannot find key for " << user_id;
381 return false;
382 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800383 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000384 return true;
385}
386
Paul Crowleydf528a72016-03-09 09:31:37 -0800387static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700388 if (e4crypt_policy_ensure(path.c_str(),
389 raw_ref.data(), raw_ref.size(),
390 cryptfs_get_file_encryption_mode()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000391 LOG(ERROR) << "Failed to set policy on: " << path;
392 return false;
393 }
394 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100395}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100396
Paul Crowleydf528a72016-03-09 09:31:37 -0800397static bool is_numeric(const char* name) {
398 for (const char* p = name; *p != '\0'; p++) {
399 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000400 }
401 return true;
402}
403
404static bool load_all_de_keys() {
405 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800406 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000407 if (!dirp) {
408 PLOG(ERROR) << "Unable to read de key directory";
409 return false;
410 }
411 for (;;) {
412 errno = 0;
413 auto entry = readdir(dirp.get());
414 if (!entry) {
415 if (errno) {
416 PLOG(ERROR) << "Unable to read de key directory";
417 return false;
418 }
419 break;
420 }
421 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
422 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
423 continue;
424 }
425 userid_t user_id = atoi(entry->d_name);
426 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000427 auto key_path = de_dir + "/" + entry->d_name;
428 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800429 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000430 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800431 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000432 s_de_key_raw_refs[user_id] = raw_ref;
433 LOG(DEBUG) << "Installed de key for user " << user_id;
434 }
435 }
436 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
437 // correct policy set on them, and that no rogue ones exist.
438 return true;
439}
440
Paul Crowleydf528a72016-03-09 09:31:37 -0800441bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000442 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800443
Paul Crowley38132a12016-02-09 09:50:32 +0000444 if (s_global_de_initialized) {
445 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000446 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800447 }
448
Paul Lawrence6e410592016-05-24 14:20:38 -0700449 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
450 std::string mode = cryptfs_get_file_encryption_mode();
451 if (!android::base::WriteStringToFile(mode, mode_filename)) {
452 PLOG(ERROR) << "Cannot save type";
453 return false;
454 }
455
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800456 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000457 if (path_exists(device_key_path)) {
458 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800459 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000460 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800461 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800462 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000463 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000464 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800465 }
466
467 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800468 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800469 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000470 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800471 }
472
Paul Lawrencef10544d2016-02-04 08:18:52 -0800473 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
474 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
475 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000476 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800477 }
478
Paul Crowley38132a12016-02-09 09:50:32 +0000479 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000480 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800481}
482
Paul Crowley76107cb2016-02-09 10:04:39 +0000483bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000484 LOG(DEBUG) << "e4crypt_init_user0";
485 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000486 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
487 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
488 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700489 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000491 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700492 // TODO: switch to loading only DE_0 here once framework makes
493 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000494 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000495 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700496 // We can only safely prepare DE storage here, since CE keys are probably
497 // entangled with user credentials. The framework will always prepare CE
498 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000499 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700500 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000501 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700502 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700503
504 // If this is a non-FBE device that recently left an emulated mode,
505 // restore user data directories to known-good state.
506 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700507 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700508 }
509
Paul Crowley76107cb2016-02-09 10:04:39 +0000510 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000511}
512
Paul Crowley76107cb2016-02-09 10:04:39 +0000513bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000514 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000515 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000516 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000517 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000518 // FIXME test for existence of key that is not loaded yet
519 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800520 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
521 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000522 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000523 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800524 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000525 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000526 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000527 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000528 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800529}
530
Andrew Scull7ec25c72016-10-31 10:28:25 +0000531static void evict_key_after_delay(const std::string raw_ref) {
532 LOG(DEBUG) << "Waiting to evict key in thread " << std::this_thread::get_id();
533 std::this_thread::sleep_for(s_key_eviction_sleep_time);
534 LOG(DEBUG) << "Done waiting to evict key in thread " << std::this_thread::get_id();
535
536 std::lock_guard<std::mutex> lock(s_desired_eviction_threads_mutex);
537 // Check the key should be evicted by this thread
538 auto search = s_desired_eviction_threads.find(raw_ref);
539 if (search == s_desired_eviction_threads.end()) {
540 LOG(DEBUG) << "Not evicting renewed-desirability key";
541 return;
542 }
543 if (search->second != std::this_thread::get_id()) {
544 LOG(DEBUG) << "We are not the thread to evict this key";
545 return;
546 }
547
548 // Remove the key from the keyring
549 auto ref = keyname(raw_ref);
550 key_serial_t device_keyring;
551 if (!e4crypt_keyring(&device_keyring)) return;
552 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
553 if (keyctl_revoke(key_serial) != 0) {
554 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial;
555 return;
556 }
557 LOG(DEBUG) << "Revoked key with serial " << key_serial;
558}
559
560static bool evict_key(const std::string &raw_ref) {
561 // FIXME the use of a thread with delay is a work around for a kernel bug
562 std::lock_guard<std::mutex> lock(s_desired_eviction_threads_mutex);
563 std::thread t(evict_key_after_delay, raw_ref);
564 s_desired_eviction_threads[raw_ref] = t.get_id();
565 LOG(DEBUG) << "Scheduled key eviction in thread " << t.get_id();
566 t.detach();
567 return true; // Sadly no way to know if we were successful :(
568}
569
570static bool evict_ce_key(userid_t user_id) {
571 s_ce_keys.erase(user_id);
572 bool success = true;
573 std::string raw_ref;
574 // If we haven't loaded the CE key, no need to evict it.
575 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
576 success &= evict_key(raw_ref);
577 }
578 s_ce_key_raw_refs.erase(user_id);
579 return success;
580}
581
Paul Crowley76107cb2016-02-09 10:04:39 +0000582bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000583 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000584 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000586 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000587 bool success = true;
588 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000589 success &= evict_ce_key(user_id);
590 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000591 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000592 auto it = s_ephemeral_users.find(user_id);
593 if (it != s_ephemeral_users.end()) {
594 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000595 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700596 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
597 success &= android::vold::destroyKey(path);
598 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700599 auto de_key_path = get_de_key_path(user_id);
600 if (path_exists(de_key_path)) {
601 success &= android::vold::destroyKey(de_key_path);
602 } else {
603 LOG(INFO) << "Not present so not erasing: " << de_key_path;
604 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100605 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000606 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100607}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800608
Paul Crowley76107cb2016-02-09 10:04:39 +0000609static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700610 if (chmod(path.c_str(), 0000) != 0) {
611 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000612 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700613 }
614#if EMULATED_USES_SELINUX
615 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
616 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000617 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700618 }
619#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000620 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700621}
622
Paul Crowley76107cb2016-02-09 10:04:39 +0000623static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700624 if (chmod(path.c_str(), mode) != 0) {
625 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000626 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000627 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700628 }
629#if EMULATED_USES_SELINUX
630 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
631 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000632 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000633 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700634 }
635#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000636 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700637}
638
Paul Crowleydf528a72016-03-09 09:31:37 -0800639static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000640 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800641 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000642 return true;
643 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800644 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800645 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000646 return false;
647 }
648 return true;
649}
650
Paul Crowleya3630362016-05-17 14:17:56 -0700651bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
652 const char* secret_hex) {
653 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800654 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000655 if (!e4crypt_is_native()) return true;
656 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700657 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800658 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700659 if (!parse_hex(secret_hex, &secret)) return false;
660 auto auth = secret.empty() ? kEmptyAuthentication
661 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000662 auto it = s_ce_keys.find(user_id);
663 if (it == s_ce_keys.end()) {
664 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000665 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000666 }
667 auto ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700668 auto const directory_path = get_ce_key_directory_path(user_id);
669 auto const paths = get_ce_key_paths(directory_path);
670 std::string ce_key_path;
671 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
672 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
673 return true;
674}
675
676bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
677 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
678 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700679 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700680 auto const directory_path = get_ce_key_directory_path(user_id);
681 auto const paths = get_ce_key_paths(directory_path);
682 if (paths.empty()) {
683 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
684 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000685 }
Paul Crowleya3630362016-05-17 14:17:56 -0700686 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000687 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000688}
689
Jeff Sharkey47695b22016-02-01 17:02:29 -0700690// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800691bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
692 const char* secret_hex) {
693 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
694 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700695 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000696 if (s_ce_key_raw_refs.count(user_id) != 0) {
697 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000698 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000699 }
700 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800701 if (!parse_hex(token_hex, &token)) return false;
702 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000703 android::vold::KeyAuthentication auth(token, secret);
704 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000705 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000706 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800707 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700708 } else {
709 // When in emulation mode, we just use chmod. However, we also
710 // unlock directories when not in emulation mode, to bring devices
711 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000712 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800713 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600714 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
715 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700716 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000717 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700718 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800719 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000720 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800721}
722
Jeff Sharkey47695b22016-02-01 17:02:29 -0700723// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000724bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000725 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700726 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000727 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700728 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800729 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000730 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800731 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600732 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
733 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000734 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000735 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800736 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800737 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700738
Paul Crowley76107cb2016-02-09 10:04:39 +0000739 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800740}
741
Paul Crowleydf528a72016-03-09 09:31:37 -0800742bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600743 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700744 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800745 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700746
747 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600748 // DE_sys key
749 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
750 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
751 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
752 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
753
754 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700755 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
756 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
757 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
758
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600759 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
760#if MANAGE_MISC_DIRS
761 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
762 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
763#endif
764 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
765 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
766
Paul Crowley76107cb2016-02-09 10:04:39 +0000767 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
768 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
769 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000770
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600771 // For now, FBE is only supported on internal storage
772 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700773 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800774 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000775 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
776 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
777 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700778 }
Paul Crowley285956f2016-01-20 13:12:38 +0000779 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800780
Jeff Sharkey47695b22016-02-01 17:02:29 -0700781 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600782 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700783 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
784 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600785 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
786 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800787
Paul Crowley76107cb2016-02-09 10:04:39 +0000788 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
789 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
790 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
791 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700792
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600793 // For now, FBE is only supported on internal storage
794 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700795 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800796 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000797 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
798 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
799 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
800 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600801
802 // Now that credentials have been installed, we can run restorecon
803 // over these paths
804 // NOTE: these paths need to be kept in sync with libselinux
805 android::vold::RestoreconRecursive(system_ce_path);
806 android::vold::RestoreconRecursive(misc_ce_path);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700807 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800808 }
809
Paul Crowley76107cb2016-02-09 10:04:39 +0000810 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800811}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600812
813bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
814 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
815 << ", user " << user_id << ", flags " << flags;
816 bool res = true;
817
818 if (flags & FLAG_STORAGE_DE) {
819 // DE_sys key
820 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
821 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
822 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
823 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
824
825 // DE_n key
826 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
827 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
828 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
829
830 if (volume_uuid == nullptr) {
831 res &= destroy_dir(system_legacy_path);
832#if MANAGE_MISC_DIRS
833 res &= destroy_dir(misc_legacy_path);
834#endif
835 res &= destroy_dir(profiles_de_path);
836 res &= destroy_dir(foreign_de_path);
837 res &= destroy_dir(system_de_path);
838 res &= destroy_dir(misc_de_path);
839 }
840 res &= destroy_dir(user_de_path);
841 }
842
843 if (flags & FLAG_STORAGE_CE) {
844 // CE_n key
845 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
846 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
847 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
848 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
849
850 if (volume_uuid == nullptr) {
851 res &= destroy_dir(system_ce_path);
852 res &= destroy_dir(misc_ce_path);
853 }
854 res &= destroy_dir(media_ce_path);
855 res &= destroy_dir(user_ce_path);
856 }
857
858 return res;
859}