blob: 5f59d35f8d74e8eca8a594c8de52ac3437d649c6 [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 Crowley82b41ff2017-10-20 08:17:54 -070044#include "android/os/IVold.h"
45
Paul Lawrence731a7a22015-04-28 22:14:15 +000046#include "cryptfs.h"
47
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060049#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070050
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080051#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070052#include <cutils/properties.h>
53
Paul Crowleyf71ace32016-06-02 11:01:19 -070054#include <ext4_utils/ext4_crypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070055#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080058#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000060
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080061using android::base::StringPrintf;
Pavel Grafovb350ed02017-07-27 17:34:57 +010062using android::base::WriteStringToFile;
Paul Crowley05720802016-02-08 15:55:41 +000063using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010064using android::vold::KeyBuffer;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080065
Paul Lawrence731a7a22015-04-28 22:14:15 +000066namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000067
Paul Crowley4d2d5242016-04-27 10:25:12 -070068const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080069const std::string device_key_path = device_key_dir + "/key";
70const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080071
Paul Crowleydf528a72016-03-09 09:31:37 -080072const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
73const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070074const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000075
Paul Crowleydf528a72016-03-09 09:31:37 -080076bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080077
Paul Crowleydf528a72016-03-09 09:31:37 -080078// Some users are ephemeral, don't try to wipe their keys from disk
79std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080080
Paul Crowleydf528a72016-03-09 09:31:37 -080081// Map user ids to key references
82std::map<userid_t, std::string> s_de_key_raw_refs;
83std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070084// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010085std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000086
Paul Lawrence731a7a22015-04-28 22:14:15 +000087}
88
Paul Crowley38132a12016-02-09 09:50:32 +000089static bool e4crypt_is_emulated() {
90 return property_get_bool("persist.sys.emulate_fbe", false);
91}
92
Paul Crowley3b71fc52017-10-09 10:55:21 -070093static const char* escape_empty(const std::string& value) {
94 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +000095}
96
Paul Crowleyb92f83c2016-02-01 14:10:43 +000097static std::string get_de_key_path(userid_t user_id) {
98 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
99}
100
Paul Crowleya3630362016-05-17 14:17:56 -0700101static std::string get_ce_key_directory_path(userid_t user_id) {
102 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
103}
104
105// Returns the keys newest first
106static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
107 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
108 if (!dirp) {
109 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
110 return std::vector<std::string>();
111 }
112 std::vector<std::string> result;
113 for (;;) {
114 errno = 0;
115 auto const entry = readdir(dirp.get());
116 if (!entry) {
117 if (errno) {
118 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
119 return std::vector<std::string>();
120 }
121 break;
122 }
123 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
124 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
125 continue;
126 }
127 result.emplace_back(directory_path + "/" + entry->d_name);
128 }
129 std::sort(result.begin(), result.end());
130 std::reverse(result.begin(), result.end());
131 return result;
132}
133
134static std::string get_ce_key_current_path(const std::string& directory_path) {
135 return directory_path + "/current";
136}
137
138static bool get_ce_key_new_path(const std::string& directory_path,
139 const std::vector<std::string>& paths,
140 std::string *ce_key_path) {
141 if (paths.empty()) {
142 *ce_key_path = get_ce_key_current_path(directory_path);
143 return true;
144 }
145 for (unsigned int i = 0; i < UINT_MAX; i++) {
146 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
147 if (paths[0] < candidate) {
148 *ce_key_path = candidate;
149 return true;
150 }
151 }
152 return false;
153}
154
155// Discard all keys but the named one; rename it to canonical name.
156// No point in acting on errors in this; ignore them.
157static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
158 const std::vector<std::string>& paths) {
159 for (auto const other_path: paths) {
160 if (other_path != to_fix) {
161 android::vold::destroyKey(other_path);
162 }
163 }
164 auto const current_path = get_ce_key_current_path(directory_path);
165 if (to_fix != current_path) {
166 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
167 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
168 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
169 }
170 }
171}
172
173static bool read_and_fixate_user_ce_key(userid_t user_id,
174 const android::vold::KeyAuthentication& auth,
Pavel Grafove2e2d302017-08-01 17:15:53 +0100175 KeyBuffer *ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700176 auto const directory_path = get_ce_key_directory_path(user_id);
177 auto const paths = get_ce_key_paths(directory_path);
178 for (auto const ce_key_path: paths) {
179 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
180 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
181 LOG(DEBUG) << "Successfully retrieved key";
182 fixate_user_ce_key(directory_path, ce_key_path, paths);
183 return true;
184 }
185 }
186 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
187 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100188}
189
Paul Crowleydf528a72016-03-09 09:31:37 -0800190static bool read_and_install_user_ce_key(userid_t user_id,
191 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000192 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100193 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700194 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000195 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700196 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100197 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000198 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000199 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000200 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000201}
202
Paul Crowleydf528a72016-03-09 09:31:37 -0800203static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000204 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000205 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
206 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000207 return false;
208 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000209 return true;
210}
211
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600212static bool destroy_dir(const std::string& dir) {
213 LOG(DEBUG) << "Destroying: " << dir;
214 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
215 PLOG(ERROR) << "Failed to destroy " << dir;
216 return false;
217 }
218 return true;
219}
220
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000221// NB this assumes that there is only one thread listening for crypt commands, because
222// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000223static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100224 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700225 if (!android::vold::randomKey(&de_key)) return false;
226 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000227 if (create_ephemeral) {
228 // If the key should be created as ephemeral, don't store it.
229 s_ephemeral_users.insert(user_id);
230 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700231 auto const directory_path = get_ce_key_directory_path(user_id);
232 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
233 auto const paths = get_ce_key_paths(directory_path);
234 std::string ce_key_path;
235 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700236 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
Paul Crowleya3630362016-05-17 14:17:56 -0700237 kEmptyAuthentication, ce_key)) return false;
238 fixate_user_ce_key(directory_path, ce_key_path, paths);
239 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700240 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley38132a12016-02-09 09:50:32 +0000241 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100242 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000243 std::string de_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700244 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000245 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000246 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700247 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000248 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000249 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000250 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000251 return true;
252}
253
Paul Crowleydf528a72016-03-09 09:31:37 -0800254static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
255 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000256 auto refi = key_map.find(user_id);
257 if (refi == key_map.end()) {
258 LOG(ERROR) << "Cannot find key for " << user_id;
259 return false;
260 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800261 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000262 return true;
263}
264
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700265static void get_file_encryption_modes(const char **contents_mode_ret,
266 const char **filenames_mode_ret)
267{
268 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
269 fs_mgr_get_file_encryption_modes(rec, contents_mode_ret, filenames_mode_ret);
270}
271
Paul Crowleydf528a72016-03-09 09:31:37 -0800272static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Eric Biggersb45caaf2017-02-02 14:52:12 -0800273 const char *contents_mode;
274 const char *filenames_mode;
275
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700276 get_file_encryption_modes(&contents_mode, &filenames_mode);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800277
Paul Lawrence6e410592016-05-24 14:20:38 -0700278 if (e4crypt_policy_ensure(path.c_str(),
279 raw_ref.data(), raw_ref.size(),
Eric Biggersb45caaf2017-02-02 14:52:12 -0800280 contents_mode, filenames_mode) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000281 LOG(ERROR) << "Failed to set policy on: " << path;
282 return false;
283 }
284 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100285}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100286
Paul Crowleydf528a72016-03-09 09:31:37 -0800287static bool is_numeric(const char* name) {
288 for (const char* p = name; *p != '\0'; p++) {
289 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000290 }
291 return true;
292}
293
294static bool load_all_de_keys() {
295 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800296 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000297 if (!dirp) {
298 PLOG(ERROR) << "Unable to read de key directory";
299 return false;
300 }
301 for (;;) {
302 errno = 0;
303 auto entry = readdir(dirp.get());
304 if (!entry) {
305 if (errno) {
306 PLOG(ERROR) << "Unable to read de key directory";
307 return false;
308 }
309 break;
310 }
311 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
312 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
313 continue;
314 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600315 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000316 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000317 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100318 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800319 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000320 std::string raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700321 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000322 s_de_key_raw_refs[user_id] = raw_ref;
323 LOG(DEBUG) << "Installed de key for user " << user_id;
324 }
325 }
326 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
327 // correct policy set on them, and that no rogue ones exist.
328 return true;
329}
330
Paul Crowleydf528a72016-03-09 09:31:37 -0800331bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000332 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800333
Paul Crowley38132a12016-02-09 09:50:32 +0000334 if (s_global_de_initialized) {
335 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000336 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800337 }
338
Eric Biggersb45caaf2017-02-02 14:52:12 -0800339 const char *contents_mode;
340 const char *filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700341 get_file_encryption_modes(&contents_mode, &filenames_mode);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800342 std::string modestring = std::string(contents_mode) + ":" + filenames_mode;
343
Paul Lawrence6e410592016-05-24 14:20:38 -0700344 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800345 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700346 PLOG(ERROR) << "Cannot save type";
347 return false;
348 }
349
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800350 std::string device_key_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700351 if (!android::vold::retrieveAndInstallKey(true,
352 device_key_path, device_key_temp, &device_key_ref)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800353
Paul Lawrencef10544d2016-02-04 08:18:52 -0800354 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
355 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700356 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000357 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800358 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700359 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800360
Paul Crowley38132a12016-02-09 09:50:32 +0000361 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000362 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800363}
364
Paul Crowley76107cb2016-02-09 10:04:39 +0000365bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000366 LOG(DEBUG) << "e4crypt_init_user0";
367 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000368 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
369 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
370 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700371 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000372 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000373 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700374 // TODO: switch to loading only DE_0 here once framework makes
375 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000376 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000377 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700378 // We can only safely prepare DE storage here, since CE keys are probably
379 // entangled with user credentials. The framework will always prepare CE
380 // storage once CE keys are installed.
Paul Crowley82b41ff2017-10-20 08:17:54 -0700381 if (!e4crypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700382 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000383 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700384 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700385
386 // If this is a non-FBE device that recently left an emulated mode,
387 // restore user data directories to known-good state.
388 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700389 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700390 }
391
Paul Crowley76107cb2016-02-09 10:04:39 +0000392 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000393}
394
Paul Crowley76107cb2016-02-09 10:04:39 +0000395bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000396 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000397 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000398 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000399 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000400 // FIXME test for existence of key that is not loaded yet
401 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800402 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
403 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000404 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000405 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800406 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000407 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000408 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000409 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000410 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800411}
412
Pavel Grafovb350ed02017-07-27 17:34:57 +0100413static void drop_caches() {
414 // Clean any dirty pages (otherwise they won't be dropped).
415 sync();
416 // Drop inode and page caches.
417 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
418 PLOG(ERROR) << "Failed to drop caches during key eviction";
419 }
420}
421
Andrew Scull7ec25c72016-10-31 10:28:25 +0000422static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100423 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000424 bool success = true;
425 std::string raw_ref;
426 // If we haven't loaded the CE key, no need to evict it.
427 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700428 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100429 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000430 }
431 s_ce_key_raw_refs.erase(user_id);
432 return success;
433}
434
Paul Crowley76107cb2016-02-09 10:04:39 +0000435bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000436 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000437 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000438 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000439 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000440 bool success = true;
441 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000442 success &= evict_ce_key(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700443 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
444 && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000445 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000446 auto it = s_ephemeral_users.find(user_id);
447 if (it != s_ephemeral_users.end()) {
448 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000449 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700450 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
451 success &= android::vold::destroyKey(path);
452 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700453 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700454 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700455 success &= android::vold::destroyKey(de_key_path);
456 } else {
457 LOG(INFO) << "Not present so not erasing: " << de_key_path;
458 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100459 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000460 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100461}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800462
Paul Crowley76107cb2016-02-09 10:04:39 +0000463static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700464 if (chmod(path.c_str(), 0000) != 0) {
465 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000466 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700467 }
468#if EMULATED_USES_SELINUX
469 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
470 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000471 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700472 }
473#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000474 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700475}
476
Paul Crowley76107cb2016-02-09 10:04:39 +0000477static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700478 if (chmod(path.c_str(), mode) != 0) {
479 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000480 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000481 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700482 }
483#if EMULATED_USES_SELINUX
484 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
485 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000486 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000487 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700488 }
489#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700491}
492
Paul Crowley3b71fc52017-10-09 10:55:21 -0700493static bool parse_hex(const std::string& hex, std::string* result) {
494 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800495 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000496 return true;
497 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800498 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800499 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000500 return false;
501 }
502 return true;
503}
504
Paul Crowley3b71fc52017-10-09 10:55:21 -0700505bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
506 const std::string& secret_hex) {
Paul Crowleya3630362016-05-17 14:17:56 -0700507 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700508 << " token_present=" << (token_hex != "!");
Paul Crowley76107cb2016-02-09 10:04:39 +0000509 if (!e4crypt_is_native()) return true;
510 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700511 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800512 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700513 if (!parse_hex(secret_hex, &secret)) return false;
514 auto auth = secret.empty() ? kEmptyAuthentication
515 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000516 auto it = s_ce_keys.find(user_id);
517 if (it == s_ce_keys.end()) {
518 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000519 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000520 }
Pavel Grafove2e2d302017-08-01 17:15:53 +0100521 const auto &ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700522 auto const directory_path = get_ce_key_directory_path(user_id);
523 auto const paths = get_ce_key_paths(directory_path);
524 std::string ce_key_path;
525 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700526 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700527 return true;
528}
529
530bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
531 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
532 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700533 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700534 auto const directory_path = get_ce_key_directory_path(user_id);
535 auto const paths = get_ce_key_paths(directory_path);
536 if (paths.empty()) {
537 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
538 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000539 }
Paul Crowleya3630362016-05-17 14:17:56 -0700540 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000541 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000542}
543
Jeff Sharkey47695b22016-02-01 17:02:29 -0700544// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowley3b71fc52017-10-09 10:55:21 -0700545bool e4crypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
546 const std::string& secret_hex) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800547 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700548 << " token_present=" << (token_hex != "!");
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700549 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000550 if (s_ce_key_raw_refs.count(user_id) != 0) {
551 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000552 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000553 }
554 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800555 if (!parse_hex(token_hex, &token)) return false;
556 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000557 android::vold::KeyAuthentication auth(token, secret);
558 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000559 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000560 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800561 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700562 } else {
563 // When in emulation mode, we just use chmod. However, we also
564 // unlock directories when not in emulation mode, to bring devices
565 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000566 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800567 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700568 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
569 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700570 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000571 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700572 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800573 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000574 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800575}
576
Jeff Sharkey47695b22016-02-01 17:02:29 -0700577// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000578bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000579 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700580 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000581 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700582 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800583 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000584 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800585 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700586 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
587 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000588 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000589 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800590 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800591 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700592
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800594}
595
Paul Crowley82b41ff2017-10-20 08:17:54 -0700596static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
597 userid_t user_id, int flags) {
598 if (0 != android::vold::ForkExecvp(
599 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
600 std::to_string(user_id), std::to_string(flags)})) {
601 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700602 return false;
603 }
604 return true;
605}
606
Paul Crowley3b71fc52017-10-09 10:55:21 -0700607bool e4crypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
608 int flags) {
609 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800610 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700611
Paul Crowley82b41ff2017-10-20 08:17:54 -0700612 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600613 // DE_sys key
614 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
615 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
616 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600617
618 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700619 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
620 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
621 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
622
Paul Crowley3b71fc52017-10-09 10:55:21 -0700623 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700624 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600625#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700626 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
627 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600628#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700629 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600630
Paul Crowley6b756ce2017-10-05 14:07:09 -0700631 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
632 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
633 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000634 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000635
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600636 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700637 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800638 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700639 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700640 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
641 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
642 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000643 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700644 }
Paul Crowley285956f2016-01-20 13:12:38 +0000645 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800646
Paul Crowley82b41ff2017-10-20 08:17:54 -0700647 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600648 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700649 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
650 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600651 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
652 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800653
Paul Crowley3b71fc52017-10-09 10:55:21 -0700654 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700655 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
656 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
657 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000658 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
659 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700660
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600661 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700662 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800663 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700664 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700665 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
666 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
667
Paul Crowley6b756ce2017-10-05 14:07:09 -0700668 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000669 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
670 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700671 }
Paul Crowley1a965262017-10-13 13:49:50 -0700672
673 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700674 // Now that credentials have been installed, we can run restorecon
675 // over these paths
676 // NOTE: these paths need to be kept in sync with libselinux
677 android::vold::RestoreconRecursive(system_ce_path);
678 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700679 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800680 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700681 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800682
Paul Crowley76107cb2016-02-09 10:04:39 +0000683 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800684}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600685
Paul Crowley3b71fc52017-10-09 10:55:21 -0700686bool e4crypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
687 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600688 << ", user " << user_id << ", flags " << flags;
689 bool res = true;
690
Paul Crowley82b41ff2017-10-20 08:17:54 -0700691 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
692
693 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700694 // CE_n key
695 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
696 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
697 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
698 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
699
700 res &= destroy_dir(media_ce_path);
701 res &= destroy_dir(user_ce_path);
702 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700703 res &= destroy_dir(system_ce_path);
704 res &= destroy_dir(misc_ce_path);
705 }
706 }
707
Paul Crowley82b41ff2017-10-20 08:17:54 -0700708 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600709 // DE_sys key
710 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
711 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
712 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600713
714 // DE_n key
715 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
716 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
717 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
718
Paul Crowley8e550662017-10-16 17:01:44 -0700719 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700720 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600721 res &= destroy_dir(system_legacy_path);
722#if MANAGE_MISC_DIRS
723 res &= destroy_dir(misc_legacy_path);
724#endif
725 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600726 res &= destroy_dir(system_de_path);
727 res &= destroy_dir(misc_de_path);
728 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600729 }
730
731 return res;
732}
Rubin Xu2436e272017-04-27 20:43:10 +0100733
Paul Crowley3b71fc52017-10-09 10:55:21 -0700734bool e4crypt_secdiscard(const std::string& path) {
735 return android::vold::runSecdiscardSingle(path);
Rubin Xu2436e272017-04-27 20:43:10 +0100736}