blob: f9d4cf8bb0b4371ea4689b8b666da5fb4279c1e2 [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"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
22
Paul Crowleya3630362016-05-17 14:17:56 -070023#include <algorithm>
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 Crowleyf71ace32016-06-02 11:01:19 -070028#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000029
Paul Crowleydf528a72016-03-09 09:31:37 -080030#include <dirent.h>
31#include <errno.h>
32#include <fcntl.h>
Pavel Grafovb350ed02017-07-27 17:34:57 +010033#include <unistd.h>
Paul Crowleya3630362016-05-17 14:17:56 -070034#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070035#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080036#include <sys/mount.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000039
Paul Crowley480fcd22015-08-24 14:53:28 +010040#include <private/android_filesystem_config.h>
41
Paul Lawrence731a7a22015-04-28 22:14:15 +000042#include "cryptfs.h"
43
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070044#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060045#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080047#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070048#include <cutils/properties.h>
49
Paul Crowleyf71ace32016-06-02 11:01:19 -070050#include <ext4_utils/ext4_crypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070051#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080052
Elliott Hughes7e128fb2015-12-04 15:50:53 -080053#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080054#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080055#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000056
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080057using android::base::StringPrintf;
Pavel Grafovb350ed02017-07-27 17:34:57 +010058using android::base::WriteStringToFile;
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 +000066
Paul Crowley4d2d5242016-04-27 10:25:12 -070067const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080068const std::string device_key_path = device_key_dir + "/key";
69const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080070
Paul Crowleydf528a72016-03-09 09:31:37 -080071const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
72const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000073
Paul Crowleydf528a72016-03-09 09:31:37 -080074bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080075
Paul Crowleydf528a72016-03-09 09:31:37 -080076// Some users are ephemeral, don't try to wipe their keys from disk
77std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080078
Paul Crowleydf528a72016-03-09 09:31:37 -080079// Map user ids to key references
80std::map<userid_t, std::string> s_de_key_raw_refs;
81std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070082// TODO abolish this map, per b/26948053
Paul Crowleydf528a72016-03-09 09:31:37 -080083std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000084
Paul Lawrence731a7a22015-04-28 22:14:15 +000085}
86
Paul Crowley38132a12016-02-09 09:50:32 +000087static bool e4crypt_is_emulated() {
88 return property_get_bool("persist.sys.emulate_fbe", false);
89}
90
91static const char* escape_null(const char* value) {
92 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +000093}
94
Paul Crowleyb92f83c2016-02-01 14:10:43 +000095static std::string get_de_key_path(userid_t user_id) {
96 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
97}
98
Paul Crowleya3630362016-05-17 14:17:56 -070099static std::string get_ce_key_directory_path(userid_t user_id) {
100 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
101}
102
103// Returns the keys newest first
104static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
105 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
106 if (!dirp) {
107 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
108 return std::vector<std::string>();
109 }
110 std::vector<std::string> result;
111 for (;;) {
112 errno = 0;
113 auto const entry = readdir(dirp.get());
114 if (!entry) {
115 if (errno) {
116 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
117 return std::vector<std::string>();
118 }
119 break;
120 }
121 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
122 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
123 continue;
124 }
125 result.emplace_back(directory_path + "/" + entry->d_name);
126 }
127 std::sort(result.begin(), result.end());
128 std::reverse(result.begin(), result.end());
129 return result;
130}
131
132static std::string get_ce_key_current_path(const std::string& directory_path) {
133 return directory_path + "/current";
134}
135
136static bool get_ce_key_new_path(const std::string& directory_path,
137 const std::vector<std::string>& paths,
138 std::string *ce_key_path) {
139 if (paths.empty()) {
140 *ce_key_path = get_ce_key_current_path(directory_path);
141 return true;
142 }
143 for (unsigned int i = 0; i < UINT_MAX; i++) {
144 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
145 if (paths[0] < candidate) {
146 *ce_key_path = candidate;
147 return true;
148 }
149 }
150 return false;
151}
152
153// Discard all keys but the named one; rename it to canonical name.
154// No point in acting on errors in this; ignore them.
155static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
156 const std::vector<std::string>& paths) {
157 for (auto const other_path: paths) {
158 if (other_path != to_fix) {
159 android::vold::destroyKey(other_path);
160 }
161 }
162 auto const current_path = get_ce_key_current_path(directory_path);
163 if (to_fix != current_path) {
164 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
165 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
166 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
167 }
168 }
169}
170
171static bool read_and_fixate_user_ce_key(userid_t user_id,
172 const android::vold::KeyAuthentication& auth,
173 std::string *ce_key) {
174 auto const directory_path = get_ce_key_directory_path(user_id);
175 auto const paths = get_ce_key_paths(directory_path);
176 for (auto const ce_key_path: paths) {
177 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
178 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
179 LOG(DEBUG) << "Successfully retrieved key";
180 fixate_user_ce_key(directory_path, ce_key_path, paths);
181 return true;
182 }
183 }
184 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
185 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100186}
187
Paul Crowleydf528a72016-03-09 09:31:37 -0800188static bool read_and_install_user_ce_key(userid_t user_id,
189 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000190 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000191 std::string ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700192 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000193 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700194 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000195 s_ce_keys[user_id] = ce_key;
196 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000197 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000198 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000199}
200
Paul Crowleydf528a72016-03-09 09:31:37 -0800201static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000202 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000203 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
204 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000205 return false;
206 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000207 return true;
208}
209
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600210static bool destroy_dir(const std::string& dir) {
211 LOG(DEBUG) << "Destroying: " << dir;
212 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
213 PLOG(ERROR) << "Failed to destroy " << dir;
214 return false;
215 }
216 return true;
217}
218
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000219// NB this assumes that there is only one thread listening for crypt commands, because
220// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000221static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
222 std::string de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700223 if (!android::vold::randomKey(&de_key)) return false;
224 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000225 if (create_ephemeral) {
226 // If the key should be created as ephemeral, don't store it.
227 s_ephemeral_users.insert(user_id);
228 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700229 auto const directory_path = get_ce_key_directory_path(user_id);
230 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
231 auto const paths = get_ce_key_paths(directory_path);
232 std::string ce_key_path;
233 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700234 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
Paul Crowleya3630362016-05-17 14:17:56 -0700235 kEmptyAuthentication, ce_key)) return false;
236 fixate_user_ce_key(directory_path, ce_key_path, paths);
237 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700238 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley38132a12016-02-09 09:50:32 +0000239 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100240 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000241 std::string de_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700242 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000243 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000244 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700245 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000246 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000247 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000248 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000249 return true;
250}
251
Paul Crowleydf528a72016-03-09 09:31:37 -0800252static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
253 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000254 auto refi = key_map.find(user_id);
255 if (refi == key_map.end()) {
256 LOG(ERROR) << "Cannot find key for " << user_id;
257 return false;
258 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800259 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000260 return true;
261}
262
Paul Crowleydf528a72016-03-09 09:31:37 -0800263static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Eric Biggersb45caaf2017-02-02 14:52:12 -0800264 const char *contents_mode;
265 const char *filenames_mode;
266
267 cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
268
Paul Lawrence6e410592016-05-24 14:20:38 -0700269 if (e4crypt_policy_ensure(path.c_str(),
270 raw_ref.data(), raw_ref.size(),
Eric Biggersb45caaf2017-02-02 14:52:12 -0800271 contents_mode, filenames_mode) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000272 LOG(ERROR) << "Failed to set policy on: " << path;
273 return false;
274 }
275 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100276}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100277
Paul Crowleydf528a72016-03-09 09:31:37 -0800278static bool is_numeric(const char* name) {
279 for (const char* p = name; *p != '\0'; p++) {
280 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000281 }
282 return true;
283}
284
285static bool load_all_de_keys() {
286 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800287 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000288 if (!dirp) {
289 PLOG(ERROR) << "Unable to read de key directory";
290 return false;
291 }
292 for (;;) {
293 errno = 0;
294 auto entry = readdir(dirp.get());
295 if (!entry) {
296 if (errno) {
297 PLOG(ERROR) << "Unable to read de key directory";
298 return false;
299 }
300 break;
301 }
302 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
303 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
304 continue;
305 }
306 userid_t user_id = atoi(entry->d_name);
307 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000308 auto key_path = de_dir + "/" + entry->d_name;
309 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800310 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000311 std::string raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700312 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000313 s_de_key_raw_refs[user_id] = raw_ref;
314 LOG(DEBUG) << "Installed de key for user " << user_id;
315 }
316 }
317 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
318 // correct policy set on them, and that no rogue ones exist.
319 return true;
320}
321
Paul Crowleydf528a72016-03-09 09:31:37 -0800322bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000323 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800324
Paul Crowley38132a12016-02-09 09:50:32 +0000325 if (s_global_de_initialized) {
326 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000327 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800328 }
329
Eric Biggersb45caaf2017-02-02 14:52:12 -0800330 const char *contents_mode;
331 const char *filenames_mode;
332 cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
333 std::string modestring = std::string(contents_mode) + ":" + filenames_mode;
334
Paul Lawrence6e410592016-05-24 14:20:38 -0700335 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800336 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700337 PLOG(ERROR) << "Cannot save type";
338 return false;
339 }
340
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800341 std::string device_key_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700342 if (!android::vold::retrieveAndInstallKey(true,
343 device_key_path, device_key_temp, &device_key_ref)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800344
Paul Lawrencef10544d2016-02-04 08:18:52 -0800345 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
346 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700347 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000348 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800349 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700350 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800351
Paul Crowley38132a12016-02-09 09:50:32 +0000352 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000353 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800354}
355
Paul Crowley76107cb2016-02-09 10:04:39 +0000356bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000357 LOG(DEBUG) << "e4crypt_init_user0";
358 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000359 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
360 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
361 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700362 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000363 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000364 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700365 // TODO: switch to loading only DE_0 here once framework makes
366 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000367 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000368 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700369 // We can only safely prepare DE storage here, since CE keys are probably
370 // entangled with user credentials. The framework will always prepare CE
371 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000372 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700373 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000374 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700375 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700376
377 // If this is a non-FBE device that recently left an emulated mode,
378 // restore user data directories to known-good state.
379 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700380 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700381 }
382
Paul Crowley76107cb2016-02-09 10:04:39 +0000383 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000384}
385
Paul Crowley76107cb2016-02-09 10:04:39 +0000386bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000387 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000388 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000389 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000390 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000391 // FIXME test for existence of key that is not loaded yet
392 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800393 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
394 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000395 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000396 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800397 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000398 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000399 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000400 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000401 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800402}
403
Pavel Grafovb350ed02017-07-27 17:34:57 +0100404static void drop_caches() {
405 // Clean any dirty pages (otherwise they won't be dropped).
406 sync();
407 // Drop inode and page caches.
408 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
409 PLOG(ERROR) << "Failed to drop caches during key eviction";
410 }
411}
412
Andrew Scull7ec25c72016-10-31 10:28:25 +0000413static bool evict_ce_key(userid_t user_id) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700414 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000415 bool success = true;
416 std::string raw_ref;
417 // If we haven't loaded the CE key, no need to evict it.
418 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700419 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100420 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000421 }
422 s_ce_key_raw_refs.erase(user_id);
423 return success;
424}
425
Paul Crowley76107cb2016-02-09 10:04:39 +0000426bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000427 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000428 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000429 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000430 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000431 bool success = true;
432 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000433 success &= evict_ce_key(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700434 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
435 && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000436 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000437 auto it = s_ephemeral_users.find(user_id);
438 if (it != s_ephemeral_users.end()) {
439 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000440 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700441 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
442 success &= android::vold::destroyKey(path);
443 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700444 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700445 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700446 success &= android::vold::destroyKey(de_key_path);
447 } else {
448 LOG(INFO) << "Not present so not erasing: " << de_key_path;
449 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100450 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000451 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100452}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800453
Paul Crowley76107cb2016-02-09 10:04:39 +0000454static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700455 if (chmod(path.c_str(), 0000) != 0) {
456 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700458 }
459#if EMULATED_USES_SELINUX
460 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
461 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000462 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700463 }
464#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000465 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700466}
467
Paul Crowley76107cb2016-02-09 10:04:39 +0000468static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700469 if (chmod(path.c_str(), mode) != 0) {
470 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000471 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000472 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700473 }
474#if EMULATED_USES_SELINUX
475 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
476 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000477 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700479 }
480#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000481 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700482}
483
Paul Crowleydf528a72016-03-09 09:31:37 -0800484static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000485 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800486 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000487 return true;
488 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800489 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800490 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000491 return false;
492 }
493 return true;
494}
495
Paul Crowleya3630362016-05-17 14:17:56 -0700496bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
497 const char* secret_hex) {
498 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800499 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000500 if (!e4crypt_is_native()) return true;
501 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700502 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800503 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700504 if (!parse_hex(secret_hex, &secret)) return false;
505 auto auth = secret.empty() ? kEmptyAuthentication
506 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000507 auto it = s_ce_keys.find(user_id);
508 if (it == s_ce_keys.end()) {
509 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000510 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000511 }
512 auto ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700513 auto const directory_path = get_ce_key_directory_path(user_id);
514 auto const paths = get_ce_key_paths(directory_path);
515 std::string ce_key_path;
516 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700517 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700518 return true;
519}
520
521bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
522 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
523 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700524 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700525 auto const directory_path = get_ce_key_directory_path(user_id);
526 auto const paths = get_ce_key_paths(directory_path);
527 if (paths.empty()) {
528 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
529 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000530 }
Paul Crowleya3630362016-05-17 14:17:56 -0700531 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000532 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000533}
534
Jeff Sharkey47695b22016-02-01 17:02:29 -0700535// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800536bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
537 const char* secret_hex) {
538 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
539 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700540 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000541 if (s_ce_key_raw_refs.count(user_id) != 0) {
542 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000543 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000544 }
545 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800546 if (!parse_hex(token_hex, &token)) return false;
547 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000548 android::vold::KeyAuthentication auth(token, secret);
549 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000550 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000551 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800552 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700553 } else {
554 // When in emulation mode, we just use chmod. However, we also
555 // unlock directories when not in emulation mode, to bring devices
556 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000557 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800558 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600559 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
560 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700561 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000562 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700563 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800564 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000565 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800566}
567
Jeff Sharkey47695b22016-02-01 17:02:29 -0700568// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000569bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000570 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700571 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000572 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700573 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800574 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000575 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800576 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600577 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
578 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000579 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000580 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800581 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800582 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700583
Paul Crowley76107cb2016-02-09 10:04:39 +0000584 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800585}
586
Paul Crowleydf528a72016-03-09 09:31:37 -0800587bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600588 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700589 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800590 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700591
592 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600593 // DE_sys key
594 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
595 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
596 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600597
598 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700599 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
600 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
601 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
602
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600603 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
604#if MANAGE_MISC_DIRS
605 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
606 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
607#endif
608 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600609
Paul Crowley76107cb2016-02-09 10:04:39 +0000610 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
611 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
612 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000613
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600614 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700615 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800616 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000617 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
618 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
619 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700620 }
Paul Crowley285956f2016-01-20 13:12:38 +0000621 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800622
Jeff Sharkey47695b22016-02-01 17:02:29 -0700623 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600624 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700625 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
626 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600627 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
628 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800629
Paul Crowley76107cb2016-02-09 10:04:39 +0000630 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
631 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
632 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
633 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700634
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600635 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700636 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800637 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000638 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
639 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
640 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
641 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600642
643 // Now that credentials have been installed, we can run restorecon
644 // over these paths
645 // NOTE: these paths need to be kept in sync with libselinux
646 android::vold::RestoreconRecursive(system_ce_path);
647 android::vold::RestoreconRecursive(misc_ce_path);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700648 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800649 }
650
Paul Crowley76107cb2016-02-09 10:04:39 +0000651 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800652}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600653
654bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
655 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
656 << ", user " << user_id << ", flags " << flags;
657 bool res = true;
658
659 if (flags & FLAG_STORAGE_DE) {
660 // DE_sys key
661 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
662 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
663 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600664
665 // DE_n key
666 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
667 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
668 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
669
670 if (volume_uuid == nullptr) {
671 res &= destroy_dir(system_legacy_path);
672#if MANAGE_MISC_DIRS
673 res &= destroy_dir(misc_legacy_path);
674#endif
675 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600676 res &= destroy_dir(system_de_path);
677 res &= destroy_dir(misc_de_path);
678 }
679 res &= destroy_dir(user_de_path);
680 }
681
682 if (flags & FLAG_STORAGE_CE) {
683 // CE_n key
684 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
685 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
686 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
687 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
688
689 if (volume_uuid == nullptr) {
690 res &= destroy_dir(system_ce_path);
691 res &= destroy_dir(misc_ce_path);
692 }
693 res &= destroy_dir(media_ce_path);
694 res &= destroy_dir(user_ce_path);
695 }
696
697 return res;
698}
Rubin Xu2436e272017-04-27 20:43:10 +0100699
700bool e4crypt_secdiscard(const char* path) {
701 return android::vold::runSecdiscardSingle(std::string(path));
702}