2015-11-09 02:56:23 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-04-29 00:14:15 +02:00
|
|
|
#include "Ext4Crypt.h"
|
|
|
|
|
2016-01-21 21:26:12 +01:00
|
|
|
#include "KeyStorage.h"
|
2016-06-02 20:01:19 +02:00
|
|
|
#include "KeyUtil.h"
|
2015-11-09 02:56:23 +01:00
|
|
|
#include "Utils.h"
|
|
|
|
|
2016-05-17 23:17:56 +02:00
|
|
|
#include <algorithm>
|
2015-04-29 00:14:15 +02:00
|
|
|
#include <map>
|
2016-01-28 11:09:46 +01:00
|
|
|
#include <set>
|
2015-04-10 16:48:51 +02:00
|
|
|
#include <sstream>
|
2016-03-09 18:31:37 +01:00
|
|
|
#include <string>
|
2016-06-02 20:01:19 +02:00
|
|
|
#include <vector>
|
2015-04-29 00:14:15 +02:00
|
|
|
|
2015-05-06 16:04:43 +02:00
|
|
|
#include <dirent.h>
|
2016-03-09 18:31:37 +01:00
|
|
|
#include <errno.h>
|
2015-05-06 16:04:43 +02:00
|
|
|
#include <fcntl.h>
|
2016-05-17 23:17:56 +02:00
|
|
|
#include <limits.h>
|
2016-01-13 00:52:16 +01:00
|
|
|
#include <selinux/android.h>
|
2016-03-09 18:31:37 +01:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2015-04-29 00:14:15 +02:00
|
|
|
|
2015-08-24 15:53:28 +02:00
|
|
|
#include <private/android_filesystem_config.h>
|
|
|
|
|
2015-04-29 00:14:15 +02:00
|
|
|
#include "cryptfs.h"
|
|
|
|
|
2016-01-13 00:52:16 +01:00
|
|
|
#define EMULATED_USES_SELINUX 0
|
2016-04-15 04:45:16 +02:00
|
|
|
#define MANAGE_MISC_DIRS 0
|
2016-01-13 00:52:16 +01:00
|
|
|
|
2015-11-09 02:56:23 +01:00
|
|
|
#include <cutils/fs.h>
|
2016-06-02 20:01:19 +02:00
|
|
|
#include <cutils/properties.h>
|
|
|
|
|
|
|
|
#include <ext4_utils/ext4_crypt.h>
|
2017-05-10 02:01:04 +02:00
|
|
|
#include <keyutils.h>
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/file.h>
|
2015-12-05 02:55:33 +01:00
|
|
|
#include <android-base/logging.h>
|
2015-12-05 00:50:53 +01:00
|
|
|
#include <android-base/stringprintf.h>
|
2015-04-29 00:14:15 +02:00
|
|
|
|
2015-11-09 02:56:23 +01:00
|
|
|
using android::base::StringPrintf;
|
2016-02-08 16:55:41 +01:00
|
|
|
using android::vold::kEmptyAuthentication;
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2016-02-02 01:02:29 +01:00
|
|
|
// NOTE: keep in sync with StorageManager
|
|
|
|
static constexpr int FLAG_STORAGE_DE = 1 << 0;
|
|
|
|
static constexpr int FLAG_STORAGE_CE = 1 << 1;
|
|
|
|
|
2015-04-29 00:14:15 +02:00
|
|
|
namespace {
|
2016-10-31 11:28:25 +01:00
|
|
|
|
2016-04-27 19:25:12 +02:00
|
|
|
const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
|
2016-03-09 18:31:37 +01:00
|
|
|
const std::string device_key_path = device_key_dir + "/key";
|
|
|
|
const std::string device_key_temp = device_key_dir + "/temp";
|
2016-02-03 22:39:13 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
|
|
|
|
const std::string user_key_temp = user_key_dir + "/temp";
|
2016-01-20 14:12:38 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
bool s_global_de_initialized = false;
|
2016-02-02 20:14:59 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
// Some users are ephemeral, don't try to wipe their keys from disk
|
|
|
|
std::set<userid_t> s_ephemeral_users;
|
2016-02-03 19:52:41 +01:00
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
// Map user ids to key references
|
|
|
|
std::map<userid_t, std::string> s_de_key_raw_refs;
|
|
|
|
std::map<userid_t, std::string> s_ce_key_raw_refs;
|
2016-10-19 23:00:24 +02:00
|
|
|
// TODO abolish this map, per b/26948053
|
2016-03-09 18:31:37 +01:00
|
|
|
std::map<userid_t, std::string> s_ce_keys;
|
2015-04-29 00:14:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-09 10:50:32 +01:00
|
|
|
static bool e4crypt_is_emulated() {
|
|
|
|
return property_get_bool("persist.sys.emulate_fbe", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char* escape_null(const char* value) {
|
|
|
|
return (value == nullptr) ? "null" : value;
|
2015-04-29 00:14:15 +02:00
|
|
|
}
|
|
|
|
|
2016-02-01 15:10:43 +01:00
|
|
|
static std::string get_de_key_path(userid_t user_id) {
|
|
|
|
return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:17:56 +02:00
|
|
|
static std::string get_ce_key_directory_path(userid_t user_id) {
|
|
|
|
return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the keys newest first
|
|
|
|
static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
|
|
|
|
auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
|
|
|
|
if (!dirp) {
|
|
|
|
PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
|
|
|
|
return std::vector<std::string>();
|
|
|
|
}
|
|
|
|
std::vector<std::string> result;
|
|
|
|
for (;;) {
|
|
|
|
errno = 0;
|
|
|
|
auto const entry = readdir(dirp.get());
|
|
|
|
if (!entry) {
|
|
|
|
if (errno) {
|
|
|
|
PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
|
|
|
|
return std::vector<std::string>();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
|
|
|
|
LOG(DEBUG) << "Skipping non-key " << entry->d_name;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
result.emplace_back(directory_path + "/" + entry->d_name);
|
|
|
|
}
|
|
|
|
std::sort(result.begin(), result.end());
|
|
|
|
std::reverse(result.begin(), result.end());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::string get_ce_key_current_path(const std::string& directory_path) {
|
|
|
|
return directory_path + "/current";
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool get_ce_key_new_path(const std::string& directory_path,
|
|
|
|
const std::vector<std::string>& paths,
|
|
|
|
std::string *ce_key_path) {
|
|
|
|
if (paths.empty()) {
|
|
|
|
*ce_key_path = get_ce_key_current_path(directory_path);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for (unsigned int i = 0; i < UINT_MAX; i++) {
|
|
|
|
auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
|
|
|
|
if (paths[0] < candidate) {
|
|
|
|
*ce_key_path = candidate;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Discard all keys but the named one; rename it to canonical name.
|
|
|
|
// No point in acting on errors in this; ignore them.
|
|
|
|
static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
|
|
|
|
const std::vector<std::string>& paths) {
|
|
|
|
for (auto const other_path: paths) {
|
|
|
|
if (other_path != to_fix) {
|
|
|
|
android::vold::destroyKey(other_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
auto const current_path = get_ce_key_current_path(directory_path);
|
|
|
|
if (to_fix != current_path) {
|
|
|
|
LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
|
|
|
|
if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
|
|
|
|
PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool read_and_fixate_user_ce_key(userid_t user_id,
|
|
|
|
const android::vold::KeyAuthentication& auth,
|
|
|
|
std::string *ce_key) {
|
|
|
|
auto const directory_path = get_ce_key_directory_path(user_id);
|
|
|
|
auto const paths = get_ce_key_paths(directory_path);
|
|
|
|
for (auto const ce_key_path: paths) {
|
|
|
|
LOG(DEBUG) << "Trying user CE key " << ce_key_path;
|
|
|
|
if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
|
|
|
|
LOG(DEBUG) << "Successfully retrieved key";
|
|
|
|
fixate_user_ce_key(directory_path, ce_key_path, paths);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LOG(ERROR) << "Failed to find working ce key for user " << user_id;
|
|
|
|
return false;
|
2015-05-19 13:34:09 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool read_and_install_user_ce_key(userid_t user_id,
|
|
|
|
const android::vold::KeyAuthentication& auth) {
|
2016-01-28 11:09:46 +01:00
|
|
|
if (s_ce_key_raw_refs.count(user_id) != 0) return true;
|
2016-02-08 16:55:41 +01:00
|
|
|
std::string ce_key;
|
2016-05-17 23:17:56 +02:00
|
|
|
if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
|
2016-02-08 16:55:41 +01:00
|
|
|
std::string ce_raw_ref;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
|
2016-02-08 16:55:41 +01:00
|
|
|
s_ce_keys[user_id] = ce_key;
|
|
|
|
s_ce_key_raw_refs[user_id] = ce_raw_ref;
|
2016-01-28 11:09:46 +01:00
|
|
|
LOG(DEBUG) << "Installed ce key for user " << user_id;
|
2016-01-21 21:26:12 +01:00
|
|
|
return true;
|
2016-01-20 14:12:38 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
|
2016-01-28 11:09:46 +01:00
|
|
|
LOG(DEBUG) << "Preparing: " << dir;
|
2016-01-27 15:30:22 +01:00
|
|
|
if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to prepare " << dir;
|
2016-01-20 14:12:38 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-01-27 15:30:22 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-04-15 04:45:16 +02:00
|
|
|
static bool destroy_dir(const std::string& dir) {
|
|
|
|
LOG(DEBUG) << "Destroying: " << dir;
|
|
|
|
if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
|
|
|
|
PLOG(ERROR) << "Failed to destroy " << dir;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-01-28 11:09:46 +01:00
|
|
|
// NB this assumes that there is only one thread listening for crypt commands, because
|
|
|
|
// it creates keys in a fixed location.
|
2016-02-01 15:10:43 +01:00
|
|
|
static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
|
|
|
|
std::string de_key, ce_key;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::randomKey(&de_key)) return false;
|
|
|
|
if (!android::vold::randomKey(&ce_key)) return false;
|
2015-11-25 10:13:03 +01:00
|
|
|
if (create_ephemeral) {
|
2016-01-28 11:09:46 +01:00
|
|
|
// If the key should be created as ephemeral, don't store it.
|
|
|
|
s_ephemeral_users.insert(user_id);
|
2016-01-27 15:30:22 +01:00
|
|
|
} else {
|
2016-05-17 23:17:56 +02:00
|
|
|
auto const directory_path = get_ce_key_directory_path(user_id);
|
|
|
|
if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
|
|
|
|
auto const paths = get_ce_key_paths(directory_path);
|
|
|
|
std::string ce_key_path;
|
|
|
|
if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
|
2016-05-17 23:17:56 +02:00
|
|
|
kEmptyAuthentication, ce_key)) return false;
|
|
|
|
fixate_user_ce_key(directory_path, ce_key_path, paths);
|
|
|
|
// Write DE key second; once this is written, all is good.
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
|
2016-02-09 10:50:32 +01:00
|
|
|
kEmptyAuthentication, de_key)) return false;
|
2015-05-06 16:04:43 +02:00
|
|
|
}
|
2016-02-01 15:10:43 +01:00
|
|
|
std::string de_raw_ref;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
|
2016-02-01 15:10:43 +01:00
|
|
|
s_de_key_raw_refs[user_id] = de_raw_ref;
|
2016-01-28 11:09:46 +01:00
|
|
|
std::string ce_raw_ref;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
|
2016-02-08 16:55:41 +01:00
|
|
|
s_ce_keys[user_id] = ce_key;
|
2016-01-28 11:09:46 +01:00
|
|
|
s_ce_key_raw_refs[user_id] = ce_raw_ref;
|
2016-02-01 15:10:43 +01:00
|
|
|
LOG(DEBUG) << "Created keys for user " << user_id;
|
2016-01-20 14:12:38 +01:00
|
|
|
return true;
|
2015-05-06 16:04:43 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
|
|
|
|
std::string* raw_ref) {
|
2016-01-28 11:09:46 +01:00
|
|
|
auto refi = key_map.find(user_id);
|
|
|
|
if (refi == key_map.end()) {
|
|
|
|
LOG(ERROR) << "Cannot find key for " << user_id;
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-09 01:08:32 +01:00
|
|
|
*raw_ref = refi->second;
|
2016-01-28 11:09:46 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
|
2017-02-02 23:52:12 +01:00
|
|
|
const char *contents_mode;
|
|
|
|
const char *filenames_mode;
|
|
|
|
|
|
|
|
cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
|
|
|
|
|
2016-05-24 23:20:38 +02:00
|
|
|
if (e4crypt_policy_ensure(path.c_str(),
|
|
|
|
raw_ref.data(), raw_ref.size(),
|
2017-02-02 23:52:12 +01:00
|
|
|
contents_mode, filenames_mode) != 0) {
|
2016-01-28 11:09:46 +01:00
|
|
|
LOG(ERROR) << "Failed to set policy on: " << path;
|
|
|
|
return false;
|
2015-05-06 16:04:43 +02:00
|
|
|
}
|
2016-01-28 11:09:46 +01:00
|
|
|
return true;
|
2015-05-06 16:04:43 +02:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool is_numeric(const char* name) {
|
|
|
|
for (const char* p = name; *p != '\0'; p++) {
|
|
|
|
if (!isdigit(*p)) return false;
|
2016-02-01 15:10:43 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool load_all_de_keys() {
|
|
|
|
auto de_dir = user_key_dir + "/de";
|
2016-03-09 18:31:37 +01:00
|
|
|
auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
|
2016-02-01 15:10:43 +01:00
|
|
|
if (!dirp) {
|
|
|
|
PLOG(ERROR) << "Unable to read de key directory";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
errno = 0;
|
|
|
|
auto entry = readdir(dirp.get());
|
|
|
|
if (!entry) {
|
|
|
|
if (errno) {
|
|
|
|
PLOG(ERROR) << "Unable to read de key directory";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
|
|
|
|
LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
userid_t user_id = atoi(entry->d_name);
|
|
|
|
if (s_de_key_raw_refs.count(user_id) == 0) {
|
2016-02-08 16:55:41 +01:00
|
|
|
auto key_path = de_dir + "/" + entry->d_name;
|
|
|
|
std::string key;
|
2016-03-09 01:08:32 +01:00
|
|
|
if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
|
2016-02-01 15:10:43 +01:00
|
|
|
std::string raw_ref;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::installKey(key, &raw_ref)) return false;
|
2016-02-01 15:10:43 +01:00
|
|
|
s_de_key_raw_refs[user_id] = raw_ref;
|
|
|
|
LOG(DEBUG) << "Installed de key for user " << user_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
|
|
|
|
// correct policy set on them, and that no rogue ones exist.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_initialize_global_de() {
|
2016-02-09 10:50:32 +01:00
|
|
|
LOG(INFO) << "e4crypt_initialize_global_de";
|
2016-02-03 19:52:41 +01:00
|
|
|
|
2016-02-09 10:50:32 +01:00
|
|
|
if (s_global_de_initialized) {
|
|
|
|
LOG(INFO) << "Already initialized";
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-02-03 19:52:41 +01:00
|
|
|
}
|
|
|
|
|
2017-02-02 23:52:12 +01:00
|
|
|
const char *contents_mode;
|
|
|
|
const char *filenames_mode;
|
|
|
|
cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
|
|
|
|
std::string modestring = std::string(contents_mode) + ":" + filenames_mode;
|
|
|
|
|
2016-05-24 23:20:38 +02:00
|
|
|
std::string mode_filename = std::string("/data") + e4crypt_key_mode;
|
2017-02-02 23:52:12 +01:00
|
|
|
if (!android::base::WriteStringToFile(modestring, mode_filename)) {
|
2016-05-24 23:20:38 +02:00
|
|
|
PLOG(ERROR) << "Cannot save type";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-02-03 19:52:41 +01:00
|
|
|
std::string device_key_ref;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::retrieveAndInstallKey(true,
|
|
|
|
device_key_path, device_key_temp, &device_key_ref)) return false;
|
2016-02-03 19:52:41 +01:00
|
|
|
|
2016-02-04 17:18:52 +01:00
|
|
|
std::string ref_filename = std::string("/data") + e4crypt_key_ref;
|
|
|
|
if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
|
2016-06-02 20:01:19 +02:00
|
|
|
PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2016-02-03 19:52:41 +01:00
|
|
|
}
|
2016-06-02 20:01:19 +02:00
|
|
|
LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
|
2016-02-03 19:52:41 +01:00
|
|
|
|
2016-02-09 10:50:32 +01:00
|
|
|
s_global_de_initialized = true;
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-02-03 19:52:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_init_user0() {
|
2016-02-01 15:28:12 +01:00
|
|
|
LOG(DEBUG) << "e4crypt_init_user0";
|
|
|
|
if (e4crypt_is_native()) {
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
|
|
|
|
if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
|
|
|
|
if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::pathExists(get_de_key_path(0))) {
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!create_and_install_user_keys(0, false)) return false;
|
2016-02-01 15:28:12 +01:00
|
|
|
}
|
2016-02-02 01:02:29 +01:00
|
|
|
// TODO: switch to loading only DE_0 here once framework makes
|
|
|
|
// explicit calls to install DE keys for secondary users
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!load_all_de_keys()) return false;
|
2016-02-01 15:28:12 +01:00
|
|
|
}
|
2016-02-02 01:02:29 +01:00
|
|
|
// We can only safely prepare DE storage here, since CE keys are probably
|
|
|
|
// entangled with user credentials. The framework will always prepare CE
|
|
|
|
// storage once CE keys are installed.
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
|
2016-02-02 01:02:29 +01:00
|
|
|
LOG(ERROR) << "Failed to prepare user 0 storage";
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2016-02-02 01:02:29 +01:00
|
|
|
}
|
2016-02-08 20:21:42 +01:00
|
|
|
|
|
|
|
// If this is a non-FBE device that recently left an emulated mode,
|
|
|
|
// restore user data directories to known-good state.
|
|
|
|
if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
|
2016-02-09 02:10:34 +01:00
|
|
|
e4crypt_unlock_user_key(0, 0, "!", "!");
|
2016-02-08 20:21:42 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-02-01 15:28:12 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
|
2016-01-20 14:12:38 +01:00
|
|
|
LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
|
2016-01-28 13:23:53 +01:00
|
|
|
if (!e4crypt_is_native()) {
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-01-28 13:23:53 +01:00
|
|
|
}
|
2016-01-28 11:09:46 +01:00
|
|
|
// FIXME test for existence of key that is not loaded yet
|
|
|
|
if (s_ce_key_raw_refs.count(user_id) != 0) {
|
2016-03-09 18:31:37 +01:00
|
|
|
LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
|
|
|
|
<< " serial " << serial;
|
2016-01-20 14:12:38 +01:00
|
|
|
// FIXME should we fail the command?
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2015-05-06 16:04:43 +02:00
|
|
|
}
|
2016-02-01 15:10:43 +01:00
|
|
|
if (!create_and_install_user_keys(user_id, ephemeral)) {
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
|
|
|
|
2016-10-31 11:28:25 +01:00
|
|
|
static bool evict_ce_key(userid_t user_id) {
|
2016-06-02 20:01:19 +02:00
|
|
|
s_ce_keys.erase(user_id);
|
2016-10-31 11:28:25 +01:00
|
|
|
bool success = true;
|
|
|
|
std::string raw_ref;
|
|
|
|
// If we haven't loaded the CE key, no need to evict it.
|
|
|
|
if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
|
2016-06-02 20:01:19 +02:00
|
|
|
success &= android::vold::evictKey(raw_ref);
|
2016-10-31 11:28:25 +01:00
|
|
|
}
|
|
|
|
s_ce_key_raw_refs.erase(user_id);
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_destroy_user_key(userid_t user_id) {
|
2016-01-21 21:26:12 +01:00
|
|
|
LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
|
2016-01-28 13:23:53 +01:00
|
|
|
if (!e4crypt_is_native()) {
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-01-28 13:23:53 +01:00
|
|
|
}
|
2016-01-28 11:09:46 +01:00
|
|
|
bool success = true;
|
|
|
|
std::string raw_ref;
|
2016-10-31 11:28:25 +01:00
|
|
|
success &= evict_ce_key(user_id);
|
2016-06-02 20:01:19 +02:00
|
|
|
success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
|
|
|
|
&& android::vold::evictKey(raw_ref);
|
2016-02-08 16:55:41 +01:00
|
|
|
s_de_key_raw_refs.erase(user_id);
|
2016-01-28 11:09:46 +01:00
|
|
|
auto it = s_ephemeral_users.find(user_id);
|
|
|
|
if (it != s_ephemeral_users.end()) {
|
|
|
|
s_ephemeral_users.erase(it);
|
2016-01-21 21:26:12 +01:00
|
|
|
} else {
|
2016-05-17 23:17:56 +02:00
|
|
|
for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
|
|
|
|
success &= android::vold::destroyKey(path);
|
|
|
|
}
|
2016-07-20 00:29:53 +02:00
|
|
|
auto de_key_path = get_de_key_path(user_id);
|
2016-06-02 20:01:19 +02:00
|
|
|
if (android::vold::pathExists(de_key_path)) {
|
2016-07-20 00:29:53 +02:00
|
|
|
success &= android::vold::destroyKey(de_key_path);
|
|
|
|
} else {
|
|
|
|
LOG(INFO) << "Not present so not erasing: " << de_key_path;
|
|
|
|
}
|
2015-05-19 13:34:09 +02:00
|
|
|
}
|
2016-02-09 11:04:39 +01:00
|
|
|
return success;
|
2015-05-19 13:34:09 +02:00
|
|
|
}
|
2015-11-09 02:56:23 +01:00
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
static bool emulated_lock(const std::string& path) {
|
2016-01-13 00:52:16 +01:00
|
|
|
if (chmod(path.c_str(), 0000) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to chmod " << path;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
#if EMULATED_USES_SELINUX
|
|
|
|
if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
|
|
|
|
PLOG(WARNING) << "Failed to setfilecon " << path;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
static bool emulated_unlock(const std::string& path, mode_t mode) {
|
2016-01-13 00:52:16 +01:00
|
|
|
if (chmod(path.c_str(), mode) != 0) {
|
|
|
|
PLOG(ERROR) << "Failed to chmod " << path;
|
2016-01-21 18:24:49 +01:00
|
|
|
// FIXME temporary workaround for b/26713622
|
2016-02-09 11:04:39 +01:00
|
|
|
if (e4crypt_is_emulated()) return false;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
#if EMULATED_USES_SELINUX
|
|
|
|
if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
|
|
|
|
PLOG(WARNING) << "Failed to restorecon " << path;
|
2016-01-21 18:24:49 +01:00
|
|
|
// FIXME temporary workaround for b/26713622
|
2016-02-09 11:04:39 +01:00
|
|
|
if (e4crypt_is_emulated()) return false;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-01-13 00:52:16 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
static bool parse_hex(const char* hex, std::string* result) {
|
2016-02-08 16:55:41 +01:00
|
|
|
if (strcmp("!", hex) == 0) {
|
2016-03-09 01:08:32 +01:00
|
|
|
*result = "";
|
2016-02-08 16:55:41 +01:00
|
|
|
return true;
|
|
|
|
}
|
2016-03-09 01:08:32 +01:00
|
|
|
if (android::vold::HexToStr(hex, *result) != 0) {
|
2016-03-09 18:31:37 +01:00
|
|
|
LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
|
2016-02-08 16:55:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:17:56 +02:00
|
|
|
bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
|
|
|
|
const char* secret_hex) {
|
|
|
|
LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
|
2016-03-09 18:31:37 +01:00
|
|
|
<< " token_present=" << (strcmp(token_hex, "!") != 0);
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!e4crypt_is_native()) return true;
|
|
|
|
if (s_ephemeral_users.count(user_id) != 0) return true;
|
2016-05-17 23:17:56 +02:00
|
|
|
std::string token, secret;
|
2016-03-09 01:08:32 +01:00
|
|
|
if (!parse_hex(token_hex, &token)) return false;
|
2016-05-17 23:17:56 +02:00
|
|
|
if (!parse_hex(secret_hex, &secret)) return false;
|
|
|
|
auto auth = secret.empty() ? kEmptyAuthentication
|
|
|
|
: android::vold::KeyAuthentication(token, secret);
|
2016-02-08 16:55:41 +01:00
|
|
|
auto it = s_ce_keys.find(user_id);
|
|
|
|
if (it == s_ce_keys.end()) {
|
|
|
|
LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2016-02-08 16:55:41 +01:00
|
|
|
}
|
|
|
|
auto ce_key = it->second;
|
2016-05-17 23:17:56 +02:00
|
|
|
auto const directory_path = get_ce_key_directory_path(user_id);
|
|
|
|
auto const paths = get_ce_key_paths(directory_path);
|
|
|
|
std::string ce_key_path;
|
|
|
|
if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
|
2016-06-02 20:01:19 +02:00
|
|
|
if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
|
2016-05-17 23:17:56 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
|
|
|
|
LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
|
|
|
|
if (!e4crypt_is_native()) return true;
|
2016-07-26 00:55:36 +02:00
|
|
|
if (s_ephemeral_users.count(user_id) != 0) return true;
|
2016-05-17 23:17:56 +02:00
|
|
|
auto const directory_path = get_ce_key_directory_path(user_id);
|
|
|
|
auto const paths = get_ce_key_paths(directory_path);
|
|
|
|
if (paths.empty()) {
|
|
|
|
LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fixate_user_ce_key(directory_path, paths[0], paths);
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-02-08 16:55:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 01:02:29 +01:00
|
|
|
// TODO: rename to 'install' for consistency, and take flags to know which keys to install
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
|
|
|
|
const char* secret_hex) {
|
|
|
|
LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
|
|
|
|
<< " token_present=" << (strcmp(token_hex, "!") != 0);
|
2015-12-08 01:27:01 +01:00
|
|
|
if (e4crypt_is_native()) {
|
2016-02-08 16:55:41 +01:00
|
|
|
if (s_ce_key_raw_refs.count(user_id) != 0) {
|
|
|
|
LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2016-02-08 16:55:41 +01:00
|
|
|
}
|
|
|
|
std::string token, secret;
|
2016-03-09 01:08:32 +01:00
|
|
|
if (!parse_hex(token_hex, &token)) return false;
|
|
|
|
if (!parse_hex(secret_hex, &secret)) return false;
|
2016-02-08 16:55:41 +01:00
|
|
|
android::vold::KeyAuthentication auth(token, secret);
|
|
|
|
if (!read_and_install_user_ce_key(user_id, auth)) {
|
2016-02-01 15:28:12 +01:00
|
|
|
LOG(ERROR) << "Couldn't read key for " << user_id;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
2015-12-08 01:27:01 +01:00
|
|
|
} else {
|
|
|
|
// When in emulation mode, we just use chmod. However, we also
|
|
|
|
// unlock directories when not in emulation mode, to bring devices
|
|
|
|
// back into a known-good state.
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
|
2016-03-09 18:31:37 +01:00
|
|
|
!emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
|
2016-04-15 04:45:16 +02:00
|
|
|
!emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
|
|
|
|
!emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
|
2016-01-13 00:52:16 +01:00
|
|
|
LOG(ERROR) << "Failed to unlock user " << user_id;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2015-12-08 01:27:01 +01:00
|
|
|
}
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 01:02:29 +01:00
|
|
|
// TODO: rename to 'evict' for consistency
|
2016-02-09 11:04:39 +01:00
|
|
|
bool e4crypt_lock_user_key(userid_t user_id) {
|
2016-10-31 11:28:25 +01:00
|
|
|
LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
|
2015-12-08 01:27:01 +01:00
|
|
|
if (e4crypt_is_native()) {
|
2016-10-31 11:28:25 +01:00
|
|
|
return evict_ce_key(user_id);
|
2015-12-08 01:27:01 +01:00
|
|
|
} else if (e4crypt_is_emulated()) {
|
2015-11-09 02:56:23 +01:00
|
|
|
// When in emulation mode, we just use chmod
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
|
2016-03-09 18:31:37 +01:00
|
|
|
!emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
|
2016-04-15 04:45:16 +02:00
|
|
|
!emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
|
|
|
|
!emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
|
2016-02-09 10:30:23 +01:00
|
|
|
LOG(ERROR) << "Failed to lock user " << user_id;
|
2016-02-09 11:04:39 +01:00
|
|
|
return false;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
|
|
|
}
|
2015-12-08 01:27:01 +01:00
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
|
|
|
|
2016-03-09 18:31:37 +01:00
|
|
|
bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
|
2016-04-15 04:45:16 +02:00
|
|
|
int flags) {
|
2016-02-02 01:02:29 +01:00
|
|
|
LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
|
2016-03-09 18:31:37 +01:00
|
|
|
<< ", user " << user_id << ", serial " << serial << ", flags " << flags;
|
2016-02-02 01:02:29 +01:00
|
|
|
|
|
|
|
if (flags & FLAG_STORAGE_DE) {
|
2016-04-15 04:45:16 +02:00
|
|
|
// DE_sys key
|
|
|
|
auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
|
|
|
|
auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
|
|
|
|
auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
|
|
|
|
|
|
|
|
// DE_n key
|
2016-02-02 01:02:29 +01:00
|
|
|
auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
|
|
|
|
auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
|
|
|
|
auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
|
|
|
|
|
2016-04-15 04:45:16 +02:00
|
|
|
if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
|
|
|
|
#if MANAGE_MISC_DIRS
|
|
|
|
if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
|
|
|
|
multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
|
|
|
|
#endif
|
|
|
|
if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
|
|
|
|
if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
|
|
|
|
if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
|
2016-03-02 19:36:50 +01:00
|
|
|
|
2017-06-27 00:09:11 +02:00
|
|
|
if (e4crypt_is_native()) {
|
2016-02-02 01:02:29 +01:00
|
|
|
std::string de_raw_ref;
|
2016-03-09 01:08:32 +01:00
|
|
|
if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!ensure_policy(de_raw_ref, system_de_path)) return false;
|
|
|
|
if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
|
|
|
|
if (!ensure_policy(de_raw_ref, user_de_path)) return false;
|
2016-02-02 01:02:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & FLAG_STORAGE_CE) {
|
2016-04-15 04:45:16 +02:00
|
|
|
// CE_n key
|
2016-02-02 01:02:29 +01:00
|
|
|
auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
|
|
|
|
auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
|
2016-04-15 04:45:16 +02:00
|
|
|
auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
|
|
|
|
auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
|
2016-02-02 01:02:29 +01:00
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
|
|
|
|
if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
|
|
|
|
if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
|
|
|
|
if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
|
2016-02-02 01:02:29 +01:00
|
|
|
|
2017-06-27 00:09:11 +02:00
|
|
|
if (e4crypt_is_native()) {
|
2016-02-02 01:02:29 +01:00
|
|
|
std::string ce_raw_ref;
|
2016-03-09 01:08:32 +01:00
|
|
|
if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
|
2016-02-09 11:04:39 +01:00
|
|
|
if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
|
|
|
|
if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
|
|
|
|
if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
|
|
|
|
if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
|
2016-07-16 00:20:22 +02:00
|
|
|
|
|
|
|
// Now that credentials have been installed, we can run restorecon
|
|
|
|
// over these paths
|
|
|
|
// NOTE: these paths need to be kept in sync with libselinux
|
|
|
|
android::vold::RestoreconRecursive(system_ce_path);
|
|
|
|
android::vold::RestoreconRecursive(misc_ce_path);
|
2016-02-02 01:02:29 +01:00
|
|
|
}
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 11:04:39 +01:00
|
|
|
return true;
|
2015-11-09 02:56:23 +01:00
|
|
|
}
|
2016-04-15 04:45:16 +02:00
|
|
|
|
|
|
|
bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
|
|
|
|
LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
|
|
|
|
<< ", user " << user_id << ", flags " << flags;
|
|
|
|
bool res = true;
|
|
|
|
|
|
|
|
if (flags & FLAG_STORAGE_DE) {
|
|
|
|
// DE_sys key
|
|
|
|
auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
|
|
|
|
auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
|
|
|
|
auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
|
|
|
|
|
|
|
|
// DE_n key
|
|
|
|
auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
|
|
|
|
auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
|
|
|
|
auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
|
|
|
|
|
|
|
|
if (volume_uuid == nullptr) {
|
|
|
|
res &= destroy_dir(system_legacy_path);
|
|
|
|
#if MANAGE_MISC_DIRS
|
|
|
|
res &= destroy_dir(misc_legacy_path);
|
|
|
|
#endif
|
|
|
|
res &= destroy_dir(profiles_de_path);
|
|
|
|
res &= destroy_dir(system_de_path);
|
|
|
|
res &= destroy_dir(misc_de_path);
|
|
|
|
}
|
|
|
|
res &= destroy_dir(user_de_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & FLAG_STORAGE_CE) {
|
|
|
|
// CE_n key
|
|
|
|
auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
|
|
|
|
auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
|
|
|
|
auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
|
|
|
|
auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
|
|
|
|
|
|
|
|
if (volume_uuid == nullptr) {
|
|
|
|
res &= destroy_dir(system_ce_path);
|
|
|
|
res &= destroy_dir(misc_ce_path);
|
|
|
|
}
|
|
|
|
res &= destroy_dir(media_ce_path);
|
|
|
|
res &= destroy_dir(user_ce_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2017-04-27 21:43:10 +02:00
|
|
|
|
|
|
|
bool e4crypt_secdiscard(const char* path) {
|
|
|
|
return android::vold::runSecdiscardSingle(std::string(path));
|
|
|
|
}
|