blob: 1a84e30c3ec50ed4fdd272499731cc062adcfb9c [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"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080024
Paul Crowleya3630362016-05-17 14:17:56 -070025#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000026#include <map>
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>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
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>
Pavel Grafovb350ed02017-07-27 17:34:57 +010035#include <unistd.h>
Paul Crowleya3630362016-05-17 14:17:56 -070036#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070037#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080038#include <sys/mount.h>
39#include <sys/stat.h>
40#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
43
Paul Lawrence731a7a22015-04-28 22:14:15 +000044#include "cryptfs.h"
45
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060047#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070050#include <cutils/properties.h>
51
Paul Crowleyf71ace32016-06-02 11:01:19 -070052#include <ext4_utils/ext4_crypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070053#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080054
Elliott Hughes7e128fb2015-12-04 15:50:53 -080055#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080056#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000058
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080059using android::base::StringPrintf;
Pavel Grafovb350ed02017-07-27 17:34:57 +010060using android::base::WriteStringToFile;
Paul Crowley05720802016-02-08 15:55:41 +000061using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010062using android::vold::KeyBuffer;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080063
Jeff Sharkey47695b22016-02-01 17:02:29 -070064// NOTE: keep in sync with StorageManager
65static constexpr int FLAG_STORAGE_DE = 1 << 0;
66static constexpr int FLAG_STORAGE_CE = 1 << 1;
67
Paul Lawrence731a7a22015-04-28 22:14:15 +000068namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000069
Paul Crowley4d2d5242016-04-27 10:25:12 -070070const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080071const std::string device_key_path = device_key_dir + "/key";
72const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080073
Paul Crowleydf528a72016-03-09 09:31:37 -080074const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
75const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000076
Paul Crowleydf528a72016-03-09 09:31:37 -080077bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080078
Paul Crowleydf528a72016-03-09 09:31:37 -080079// Some users are ephemeral, don't try to wipe their keys from disk
80std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080081
Paul Crowleydf528a72016-03-09 09:31:37 -080082// Map user ids to key references
83std::map<userid_t, std::string> s_de_key_raw_refs;
84std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070085// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010086std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000087
Paul Lawrence731a7a22015-04-28 22:14:15 +000088}
89
Paul Crowley38132a12016-02-09 09:50:32 +000090static bool e4crypt_is_emulated() {
91 return property_get_bool("persist.sys.emulate_fbe", false);
92}
93
Paul Crowley3b71fc52017-10-09 10:55:21 -070094static const char* escape_empty(const std::string& value) {
95 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +000096}
97
Paul Crowleyb92f83c2016-02-01 14:10:43 +000098static std::string get_de_key_path(userid_t user_id) {
99 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
100}
101
Paul Crowleya3630362016-05-17 14:17:56 -0700102static std::string get_ce_key_directory_path(userid_t user_id) {
103 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
104}
105
106// Returns the keys newest first
107static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
108 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
109 if (!dirp) {
110 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
111 return std::vector<std::string>();
112 }
113 std::vector<std::string> result;
114 for (;;) {
115 errno = 0;
116 auto const entry = readdir(dirp.get());
117 if (!entry) {
118 if (errno) {
119 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
120 return std::vector<std::string>();
121 }
122 break;
123 }
124 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
125 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
126 continue;
127 }
128 result.emplace_back(directory_path + "/" + entry->d_name);
129 }
130 std::sort(result.begin(), result.end());
131 std::reverse(result.begin(), result.end());
132 return result;
133}
134
135static std::string get_ce_key_current_path(const std::string& directory_path) {
136 return directory_path + "/current";
137}
138
139static bool get_ce_key_new_path(const std::string& directory_path,
140 const std::vector<std::string>& paths,
141 std::string *ce_key_path) {
142 if (paths.empty()) {
143 *ce_key_path = get_ce_key_current_path(directory_path);
144 return true;
145 }
146 for (unsigned int i = 0; i < UINT_MAX; i++) {
147 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
148 if (paths[0] < candidate) {
149 *ce_key_path = candidate;
150 return true;
151 }
152 }
153 return false;
154}
155
156// Discard all keys but the named one; rename it to canonical name.
157// No point in acting on errors in this; ignore them.
158static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
159 const std::vector<std::string>& paths) {
160 for (auto const other_path: paths) {
161 if (other_path != to_fix) {
162 android::vold::destroyKey(other_path);
163 }
164 }
165 auto const current_path = get_ce_key_current_path(directory_path);
166 if (to_fix != current_path) {
167 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
168 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
169 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
170 }
171 }
172}
173
174static bool read_and_fixate_user_ce_key(userid_t user_id,
175 const android::vold::KeyAuthentication& auth,
Pavel Grafove2e2d302017-08-01 17:15:53 +0100176 KeyBuffer *ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700177 auto const directory_path = get_ce_key_directory_path(user_id);
178 auto const paths = get_ce_key_paths(directory_path);
179 for (auto const ce_key_path: paths) {
180 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
181 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
182 LOG(DEBUG) << "Successfully retrieved key";
183 fixate_user_ce_key(directory_path, ce_key_path, paths);
184 return true;
185 }
186 }
187 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
188 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100189}
190
Paul Crowleydf528a72016-03-09 09:31:37 -0800191static bool read_and_install_user_ce_key(userid_t user_id,
192 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000193 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100194 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700195 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000196 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700197 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100198 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000199 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000200 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000201 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000202}
203
Paul Crowleydf528a72016-03-09 09:31:37 -0800204static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000205 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000206 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
207 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000208 return false;
209 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000210 return true;
211}
212
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600213static bool destroy_dir(const std::string& dir) {
214 LOG(DEBUG) << "Destroying: " << dir;
215 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
216 PLOG(ERROR) << "Failed to destroy " << dir;
217 return false;
218 }
219 return true;
220}
221
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000222// NB this assumes that there is only one thread listening for crypt commands, because
223// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000224static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100225 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700226 if (!android::vold::randomKey(&de_key)) return false;
227 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000228 if (create_ephemeral) {
229 // If the key should be created as ephemeral, don't store it.
230 s_ephemeral_users.insert(user_id);
231 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700232 auto const directory_path = get_ce_key_directory_path(user_id);
233 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
234 auto const paths = get_ce_key_paths(directory_path);
235 std::string ce_key_path;
236 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700237 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
Paul Crowleya3630362016-05-17 14:17:56 -0700238 kEmptyAuthentication, ce_key)) return false;
239 fixate_user_ce_key(directory_path, ce_key_path, paths);
240 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700241 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley38132a12016-02-09 09:50:32 +0000242 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100243 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000244 std::string de_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700245 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000246 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000247 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700248 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000249 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000250 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000251 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000252 return true;
253}
254
Paul Crowleydf528a72016-03-09 09:31:37 -0800255static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
256 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000257 auto refi = key_map.find(user_id);
258 if (refi == key_map.end()) {
259 LOG(ERROR) << "Cannot find key for " << user_id;
260 return false;
261 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800262 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000263 return true;
264}
265
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700266static void get_file_encryption_modes(const char **contents_mode_ret,
267 const char **filenames_mode_ret)
268{
269 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
270 fs_mgr_get_file_encryption_modes(rec, contents_mode_ret, filenames_mode_ret);
271}
272
Paul Crowleydf528a72016-03-09 09:31:37 -0800273static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Eric Biggersb45caaf2017-02-02 14:52:12 -0800274 const char *contents_mode;
275 const char *filenames_mode;
276
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700277 get_file_encryption_modes(&contents_mode, &filenames_mode);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800278
Paul Lawrence6e410592016-05-24 14:20:38 -0700279 if (e4crypt_policy_ensure(path.c_str(),
280 raw_ref.data(), raw_ref.size(),
Eric Biggersb45caaf2017-02-02 14:52:12 -0800281 contents_mode, filenames_mode) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000282 LOG(ERROR) << "Failed to set policy on: " << path;
283 return false;
284 }
285 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100286}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100287
Paul Crowleydf528a72016-03-09 09:31:37 -0800288static bool is_numeric(const char* name) {
289 for (const char* p = name; *p != '\0'; p++) {
290 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000291 }
292 return true;
293}
294
295static bool load_all_de_keys() {
296 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800297 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000298 if (!dirp) {
299 PLOG(ERROR) << "Unable to read de key directory";
300 return false;
301 }
302 for (;;) {
303 errno = 0;
304 auto entry = readdir(dirp.get());
305 if (!entry) {
306 if (errno) {
307 PLOG(ERROR) << "Unable to read de key directory";
308 return false;
309 }
310 break;
311 }
312 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
313 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
314 continue;
315 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600316 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000317 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000318 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100319 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800320 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000321 std::string raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700322 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000323 s_de_key_raw_refs[user_id] = raw_ref;
324 LOG(DEBUG) << "Installed de key for user " << user_id;
325 }
326 }
327 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
328 // correct policy set on them, and that no rogue ones exist.
329 return true;
330}
331
Paul Crowleydf528a72016-03-09 09:31:37 -0800332bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000333 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800334
Paul Crowley38132a12016-02-09 09:50:32 +0000335 if (s_global_de_initialized) {
336 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000337 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800338 }
339
Eric Biggersb45caaf2017-02-02 14:52:12 -0800340 const char *contents_mode;
341 const char *filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700342 get_file_encryption_modes(&contents_mode, &filenames_mode);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800343 std::string modestring = std::string(contents_mode) + ":" + filenames_mode;
344
Paul Lawrence6e410592016-05-24 14:20:38 -0700345 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800346 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700347 PLOG(ERROR) << "Cannot save type";
348 return false;
349 }
350
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800351 std::string device_key_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700352 if (!android::vold::retrieveAndInstallKey(true,
353 device_key_path, device_key_temp, &device_key_ref)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800354
Paul Lawrencef10544d2016-02-04 08:18:52 -0800355 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
356 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700357 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000358 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800359 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700360 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800361
Paul Crowley38132a12016-02-09 09:50:32 +0000362 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000363 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800364}
365
Paul Crowley76107cb2016-02-09 10:04:39 +0000366bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000367 LOG(DEBUG) << "e4crypt_init_user0";
368 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000369 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
370 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
371 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700372 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000373 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000374 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700375 // TODO: switch to loading only DE_0 here once framework makes
376 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000377 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000378 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700379 // We can only safely prepare DE storage here, since CE keys are probably
380 // entangled with user credentials. The framework will always prepare CE
381 // storage once CE keys are installed.
Paul Crowley3b71fc52017-10-09 10:55:21 -0700382 if (!e4crypt_prepare_user_storage("", 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700383 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000384 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700385 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700386
387 // If this is a non-FBE device that recently left an emulated mode,
388 // restore user data directories to known-good state.
389 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700390 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700391 }
392
Paul Crowley76107cb2016-02-09 10:04:39 +0000393 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000394}
395
Paul Crowley76107cb2016-02-09 10:04:39 +0000396bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000397 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000398 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000399 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000400 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000401 // FIXME test for existence of key that is not loaded yet
402 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800403 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
404 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000405 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000406 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800407 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000408 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000409 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000410 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000411 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800412}
413
Pavel Grafovb350ed02017-07-27 17:34:57 +0100414static void drop_caches() {
415 // Clean any dirty pages (otherwise they won't be dropped).
416 sync();
417 // Drop inode and page caches.
418 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
419 PLOG(ERROR) << "Failed to drop caches during key eviction";
420 }
421}
422
Andrew Scull7ec25c72016-10-31 10:28:25 +0000423static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100424 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000425 bool success = true;
426 std::string raw_ref;
427 // If we haven't loaded the CE key, no need to evict it.
428 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700429 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100430 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000431 }
432 s_ce_key_raw_refs.erase(user_id);
433 return success;
434}
435
Paul Crowley76107cb2016-02-09 10:04:39 +0000436bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000437 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000438 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000439 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000440 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000441 bool success = true;
442 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000443 success &= evict_ce_key(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700444 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
445 && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000446 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000447 auto it = s_ephemeral_users.find(user_id);
448 if (it != s_ephemeral_users.end()) {
449 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000450 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700451 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
452 success &= android::vold::destroyKey(path);
453 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700454 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700455 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700456 success &= android::vold::destroyKey(de_key_path);
457 } else {
458 LOG(INFO) << "Not present so not erasing: " << de_key_path;
459 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100460 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000461 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100462}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800463
Paul Crowley76107cb2016-02-09 10:04:39 +0000464static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700465 if (chmod(path.c_str(), 0000) != 0) {
466 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000467 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700468 }
469#if EMULATED_USES_SELINUX
470 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
471 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000472 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700473 }
474#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000475 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700476}
477
Paul Crowley76107cb2016-02-09 10:04:39 +0000478static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700479 if (chmod(path.c_str(), mode) != 0) {
480 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000481 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000482 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700483 }
484#if EMULATED_USES_SELINUX
485 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
486 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000487 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000488 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700489 }
490#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000491 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700492}
493
Paul Crowley3b71fc52017-10-09 10:55:21 -0700494static bool parse_hex(const std::string& hex, std::string* result) {
495 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800496 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000497 return true;
498 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800499 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800500 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000501 return false;
502 }
503 return true;
504}
505
Paul Crowley3b71fc52017-10-09 10:55:21 -0700506bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
507 const std::string& secret_hex) {
Paul Crowleya3630362016-05-17 14:17:56 -0700508 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700509 << " token_present=" << (token_hex != "!");
Paul Crowley76107cb2016-02-09 10:04:39 +0000510 if (!e4crypt_is_native()) return true;
511 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700512 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800513 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700514 if (!parse_hex(secret_hex, &secret)) return false;
515 auto auth = secret.empty() ? kEmptyAuthentication
516 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000517 auto it = s_ce_keys.find(user_id);
518 if (it == s_ce_keys.end()) {
519 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000520 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000521 }
Pavel Grafove2e2d302017-08-01 17:15:53 +0100522 const auto &ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700523 auto const directory_path = get_ce_key_directory_path(user_id);
524 auto const paths = get_ce_key_paths(directory_path);
525 std::string ce_key_path;
526 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700527 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700528 return true;
529}
530
531bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
532 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
533 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700534 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700535 auto const directory_path = get_ce_key_directory_path(user_id);
536 auto const paths = get_ce_key_paths(directory_path);
537 if (paths.empty()) {
538 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
539 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000540 }
Paul Crowleya3630362016-05-17 14:17:56 -0700541 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000542 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000543}
544
Jeff Sharkey47695b22016-02-01 17:02:29 -0700545// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowley3b71fc52017-10-09 10:55:21 -0700546bool e4crypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
547 const std::string& secret_hex) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800548 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700549 << " token_present=" << (token_hex != "!");
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700550 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000551 if (s_ce_key_raw_refs.count(user_id) != 0) {
552 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000553 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000554 }
555 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800556 if (!parse_hex(token_hex, &token)) return false;
557 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000558 android::vold::KeyAuthentication auth(token, secret);
559 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000560 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800562 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700563 } else {
564 // When in emulation mode, we just use chmod. However, we also
565 // unlock directories when not in emulation mode, to bring devices
566 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000567 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800568 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700569 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
570 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700571 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000572 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700573 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800574 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000575 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800576}
577
Jeff Sharkey47695b22016-02-01 17:02:29 -0700578// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000579bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000580 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700581 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000582 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700583 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800584 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800586 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700587 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
588 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000589 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000590 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800591 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800592 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700593
Paul Crowley76107cb2016-02-09 10:04:39 +0000594 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800595}
596
Paul Crowley3b71fc52017-10-09 10:55:21 -0700597bool e4crypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
598 int flags) {
599 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800600 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700601
602 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600603 // DE_sys key
604 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
605 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
606 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600607
608 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700609 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
610 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
611 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
612
Paul Crowley3b71fc52017-10-09 10:55:21 -0700613 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700614 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600615#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700616 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
617 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600618#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700619 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600620
Paul Crowley6b756ce2017-10-05 14:07:09 -0700621 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
622 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
623 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000624 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000625
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600626 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700627 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800628 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700629 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700630 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
631 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
632 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000633 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700634 }
Paul Crowley1a965262017-10-13 13:49:50 -0700635
636 if (volume_uuid.empty()) {
637 if (0 != android::vold::ForkExecvp(
638 std::vector<std::string>{"/system/bin/vold_prepare_subdirs", "misc_de",
639 misc_de_path, std::to_string(user_id), ""})) {
640 LOG(ERROR) << "vold_prepare_subdirs failed on: " << misc_de_path;
641 return false;
642 }
643 }
Paul Crowley285956f2016-01-20 13:12:38 +0000644 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800645
Jeff Sharkey47695b22016-02-01 17:02:29 -0700646 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600647 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700648 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
649 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600650 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
651 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800652
Paul Crowley3b71fc52017-10-09 10:55:21 -0700653 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700654 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
655 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
656 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000657 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
658 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700659
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600660 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700661 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800662 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700663 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700664 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
665 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
666
667 // Now that credentials have been installed, we can run restorecon
668 // over these paths
669 // NOTE: these paths need to be kept in sync with libselinux
670 android::vold::RestoreconRecursive(system_ce_path);
671 android::vold::RestoreconRecursive(misc_ce_path);
672 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000673 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
674 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700675 }
Paul Crowley1a965262017-10-13 13:49:50 -0700676
677 if (volume_uuid.empty()) {
678 if (0 != android::vold::ForkExecvp(
679 std::vector<std::string>{"/system/bin/vold_prepare_subdirs", "misc_ce",
680 misc_ce_path, std::to_string(user_id), ""})) {
681 LOG(ERROR) << "vold_prepare_subdirs failed on: " << misc_ce_path;
682 return false;
683 }
684 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800685 }
686
Paul Crowley76107cb2016-02-09 10:04:39 +0000687 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800688}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600689
Paul Crowley3b71fc52017-10-09 10:55:21 -0700690bool e4crypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
691 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600692 << ", user " << user_id << ", flags " << flags;
693 bool res = true;
694
695 if (flags & FLAG_STORAGE_DE) {
696 // DE_sys key
697 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
698 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
699 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600700
701 // DE_n key
702 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
703 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
704 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
705
Paul Crowley3b71fc52017-10-09 10:55:21 -0700706 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600707 res &= destroy_dir(system_legacy_path);
708#if MANAGE_MISC_DIRS
709 res &= destroy_dir(misc_legacy_path);
710#endif
711 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600712 res &= destroy_dir(system_de_path);
713 res &= destroy_dir(misc_de_path);
714 }
715 res &= destroy_dir(user_de_path);
716 }
717
718 if (flags & FLAG_STORAGE_CE) {
719 // CE_n key
720 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
721 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
722 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
723 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
724
Paul Crowley3b71fc52017-10-09 10:55:21 -0700725 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600726 res &= destroy_dir(system_ce_path);
727 res &= destroy_dir(misc_ce_path);
728 }
729 res &= destroy_dir(media_ce_path);
730 res &= destroy_dir(user_ce_path);
731 }
732
733 return res;
734}
Rubin Xu2436e272017-04-27 20:43:10 +0100735
Paul Crowley3b71fc52017-10-09 10:55:21 -0700736bool e4crypt_secdiscard(const std::string& path) {
737 return android::vold::runSecdiscardSingle(path);
Rubin Xu2436e272017-04-27 20:43:10 +0100738}