blob: 495a0fa2bac2d0f81f71699320969906efd29442 [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
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000026#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070027#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080028#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070029#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000030
Paul Crowleydf528a72016-03-09 09:31:37 -080031#include <dirent.h>
32#include <errno.h>
33#include <fcntl.h>
Pavel Grafovb350ed02017-07-27 17:34:57 +010034#include <unistd.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000040
Paul Crowley480fcd22015-08-24 14:53:28 +010041#include <private/android_filesystem_config.h>
42
Paul Crowley82b41ff2017-10-20 08:17:54 -070043#include "android/os/IVold.h"
44
Paul Lawrence731a7a22015-04-28 22:14:15 +000045#include "cryptfs.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Paul Crowleyf71ace32016-06-02 11:01:19 -070053#include <ext4_utils/ext4_crypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.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 Crowley3aa914d2017-10-09 16:35:51 -070068struct PolicyKeyRef {
69 std::string contents_mode;
70 std::string filenames_mode;
71 std::string key_raw_ref;
72};
73
Paul Crowley4d2d5242016-04-27 10:25:12 -070074const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080075const std::string device_key_path = device_key_dir + "/key";
76const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080077
Paul Crowleydf528a72016-03-09 09:31:37 -080078const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
79const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070080const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000081
Paul Crowleydf528a72016-03-09 09:31:37 -080082bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080083
Paul Crowleydf528a72016-03-09 09:31:37 -080084// Some users are ephemeral, don't try to wipe their keys from disk
85std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080086
Paul Crowleydf528a72016-03-09 09:31:37 -080087// Map user ids to key references
88std::map<userid_t, std::string> s_de_key_raw_refs;
89std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070090// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010091std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000092
Paul Lawrence731a7a22015-04-28 22:14:15 +000093}
94
Paul Crowley38132a12016-02-09 09:50:32 +000095static bool e4crypt_is_emulated() {
96 return property_get_bool("persist.sys.emulate_fbe", false);
97}
98
Paul Crowley3b71fc52017-10-09 10:55:21 -070099static const char* escape_empty(const std::string& value) {
100 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101}
102
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000103static std::string get_de_key_path(userid_t user_id) {
104 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
105}
106
Paul Crowleya3630362016-05-17 14:17:56 -0700107static std::string get_ce_key_directory_path(userid_t user_id) {
108 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
109}
110
111// Returns the keys newest first
112static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
113 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
114 if (!dirp) {
115 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
116 return std::vector<std::string>();
117 }
118 std::vector<std::string> result;
119 for (;;) {
120 errno = 0;
121 auto const entry = readdir(dirp.get());
122 if (!entry) {
123 if (errno) {
124 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
125 return std::vector<std::string>();
126 }
127 break;
128 }
129 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
130 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
131 continue;
132 }
133 result.emplace_back(directory_path + "/" + entry->d_name);
134 }
135 std::sort(result.begin(), result.end());
136 std::reverse(result.begin(), result.end());
137 return result;
138}
139
140static std::string get_ce_key_current_path(const std::string& directory_path) {
141 return directory_path + "/current";
142}
143
144static bool get_ce_key_new_path(const std::string& directory_path,
145 const std::vector<std::string>& paths,
146 std::string *ce_key_path) {
147 if (paths.empty()) {
148 *ce_key_path = get_ce_key_current_path(directory_path);
149 return true;
150 }
151 for (unsigned int i = 0; i < UINT_MAX; i++) {
152 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
153 if (paths[0] < candidate) {
154 *ce_key_path = candidate;
155 return true;
156 }
157 }
158 return false;
159}
160
161// Discard all keys but the named one; rename it to canonical name.
162// No point in acting on errors in this; ignore them.
163static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
164 const std::vector<std::string>& paths) {
165 for (auto const other_path: paths) {
166 if (other_path != to_fix) {
167 android::vold::destroyKey(other_path);
168 }
169 }
170 auto const current_path = get_ce_key_current_path(directory_path);
171 if (to_fix != current_path) {
172 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
173 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
174 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
175 }
176 }
177}
178
179static bool read_and_fixate_user_ce_key(userid_t user_id,
180 const android::vold::KeyAuthentication& auth,
Pavel Grafove2e2d302017-08-01 17:15:53 +0100181 KeyBuffer *ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700182 auto const directory_path = get_ce_key_directory_path(user_id);
183 auto const paths = get_ce_key_paths(directory_path);
184 for (auto const ce_key_path: paths) {
185 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
186 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
187 LOG(DEBUG) << "Successfully retrieved key";
188 fixate_user_ce_key(directory_path, ce_key_path, paths);
189 return true;
190 }
191 }
192 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
193 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100194}
195
Paul Crowleydf528a72016-03-09 09:31:37 -0800196static bool read_and_install_user_ce_key(userid_t user_id,
197 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000198 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100199 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700200 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000201 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700202 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100203 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000204 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000205 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000206 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000207}
208
Paul Crowleydf528a72016-03-09 09:31:37 -0800209static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000210 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000211 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
212 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000213 return false;
214 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000215 return true;
216}
217
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600218static bool destroy_dir(const std::string& dir) {
219 LOG(DEBUG) << "Destroying: " << dir;
220 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
221 PLOG(ERROR) << "Failed to destroy " << dir;
222 return false;
223 }
224 return true;
225}
226
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000227// NB this assumes that there is only one thread listening for crypt commands, because
228// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000229static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100230 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700231 if (!android::vold::randomKey(&de_key)) return false;
232 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000233 if (create_ephemeral) {
234 // If the key should be created as ephemeral, don't store it.
235 s_ephemeral_users.insert(user_id);
236 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700237 auto const directory_path = get_ce_key_directory_path(user_id);
238 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
239 auto const paths = get_ce_key_paths(directory_path);
240 std::string ce_key_path;
241 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700242 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
Paul Crowleya3630362016-05-17 14:17:56 -0700243 kEmptyAuthentication, ce_key)) return false;
244 fixate_user_ce_key(directory_path, ce_key_path, paths);
245 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700246 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley38132a12016-02-09 09:50:32 +0000247 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100248 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000249 std::string de_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700250 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000251 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000252 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700253 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000254 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000255 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000256 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000257 return true;
258}
259
Paul Crowleydf528a72016-03-09 09:31:37 -0800260static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
261 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000262 auto refi = key_map.find(user_id);
263 if (refi == key_map.end()) {
264 LOG(ERROR) << "Cannot find key for " << user_id;
265 return false;
266 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800267 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000268 return true;
269}
270
Paul Crowley3aa914d2017-10-09 16:35:51 -0700271static void get_data_file_encryption_modes(PolicyKeyRef* key_ref) {
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700272 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700273 char const* contents_mode;
274 char const* filenames_mode;
275 fs_mgr_get_file_encryption_modes(rec, &contents_mode, &filenames_mode);
276 key_ref->contents_mode = contents_mode;
277 key_ref->filenames_mode = filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700278}
279
Paul Crowley3aa914d2017-10-09 16:35:51 -0700280static bool ensure_policy(const PolicyKeyRef& key_ref, const std::string& path) {
281 return e4crypt_policy_ensure(path.c_str(), key_ref.key_raw_ref.data(),
282 key_ref.key_raw_ref.size(), key_ref.contents_mode.c_str(),
283 key_ref.filenames_mode.c_str()) == 0;
Paul Crowley95376d62015-05-06 15:04:43 +0100284}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100285
Paul Crowleydf528a72016-03-09 09:31:37 -0800286static bool is_numeric(const char* name) {
287 for (const char* p = name; *p != '\0'; p++) {
288 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000289 }
290 return true;
291}
292
293static bool load_all_de_keys() {
294 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800295 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000296 if (!dirp) {
297 PLOG(ERROR) << "Unable to read de key directory";
298 return false;
299 }
300 for (;;) {
301 errno = 0;
302 auto entry = readdir(dirp.get());
303 if (!entry) {
304 if (errno) {
305 PLOG(ERROR) << "Unable to read de key directory";
306 return false;
307 }
308 break;
309 }
310 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
311 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
312 continue;
313 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600314 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000315 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000316 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100317 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800318 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000319 std::string raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700320 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000321 s_de_key_raw_refs[user_id] = raw_ref;
322 LOG(DEBUG) << "Installed de key for user " << user_id;
323 }
324 }
325 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
326 // correct policy set on them, and that no rogue ones exist.
327 return true;
328}
329
Paul Crowleydf528a72016-03-09 09:31:37 -0800330bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000331 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800332
Paul Crowley38132a12016-02-09 09:50:32 +0000333 if (s_global_de_initialized) {
334 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000335 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800336 }
337
Paul Crowley3aa914d2017-10-09 16:35:51 -0700338 PolicyKeyRef device_ref;
339 if (!android::vold::retrieveAndInstallKey(true, device_key_path, device_key_temp,
340 &device_ref.key_raw_ref))
341 return false;
342 get_data_file_encryption_modes(&device_ref);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800343
Paul Crowley3aa914d2017-10-09 16:35:51 -0700344 std::string modestring = device_ref.contents_mode + ":" + device_ref.filenames_mode;
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 Lawrencef10544d2016-02-04 08:18:52 -0800351 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700352 if (!android::base::WriteStringToFile(device_ref.key_raw_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700353 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000354 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800355 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700356 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800357
Paul Crowley38132a12016-02-09 09:50:32 +0000358 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000359 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800360}
361
Paul Crowley76107cb2016-02-09 10:04:39 +0000362bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000363 LOG(DEBUG) << "e4crypt_init_user0";
364 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000365 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
366 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
367 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700368 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000369 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000370 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700371 // TODO: switch to loading only DE_0 here once framework makes
372 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000373 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000374 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700375 // We can only safely prepare DE storage here, since CE keys are probably
376 // entangled with user credentials. The framework will always prepare CE
377 // storage once CE keys are installed.
Paul Crowley82b41ff2017-10-20 08:17:54 -0700378 if (!e4crypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700379 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000380 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700381 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700382
383 // If this is a non-FBE device that recently left an emulated mode,
384 // restore user data directories to known-good state.
385 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700386 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700387 }
388
Paul Crowley76107cb2016-02-09 10:04:39 +0000389 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000390}
391
Paul Crowley76107cb2016-02-09 10:04:39 +0000392bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000393 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000394 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000395 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000396 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000397 // FIXME test for existence of key that is not loaded yet
398 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800399 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
400 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000401 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000402 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800403 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000404 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000405 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000406 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000407 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800408}
409
Pavel Grafovb350ed02017-07-27 17:34:57 +0100410static void drop_caches() {
411 // Clean any dirty pages (otherwise they won't be dropped).
412 sync();
413 // Drop inode and page caches.
414 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
415 PLOG(ERROR) << "Failed to drop caches during key eviction";
416 }
417}
418
Andrew Scull7ec25c72016-10-31 10:28:25 +0000419static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100420 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000421 bool success = true;
422 std::string raw_ref;
423 // If we haven't loaded the CE key, no need to evict it.
424 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700425 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100426 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000427 }
428 s_ce_key_raw_refs.erase(user_id);
429 return success;
430}
431
Paul Crowley76107cb2016-02-09 10:04:39 +0000432bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000433 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000434 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000435 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000436 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000437 bool success = true;
438 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000439 success &= evict_ce_key(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700440 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
441 && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000442 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000443 auto it = s_ephemeral_users.find(user_id);
444 if (it != s_ephemeral_users.end()) {
445 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000446 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700447 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
448 success &= android::vold::destroyKey(path);
449 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700450 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700451 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700452 success &= android::vold::destroyKey(de_key_path);
453 } else {
454 LOG(INFO) << "Not present so not erasing: " << de_key_path;
455 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100456 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100458}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800459
Paul Crowley76107cb2016-02-09 10:04:39 +0000460static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700461 if (chmod(path.c_str(), 0000) != 0) {
462 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000463 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700464 }
465#if EMULATED_USES_SELINUX
466 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
467 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700469 }
470#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000471 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700472}
473
Paul Crowley76107cb2016-02-09 10:04:39 +0000474static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700475 if (chmod(path.c_str(), mode) != 0) {
476 PLOG(ERROR) << "Failed to chmod " << 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#if EMULATED_USES_SELINUX
481 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
482 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000483 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000484 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700485 }
486#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000487 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700488}
489
Paul Crowley3b71fc52017-10-09 10:55:21 -0700490static bool parse_hex(const std::string& hex, std::string* result) {
491 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800492 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000493 return true;
494 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800495 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800496 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000497 return false;
498 }
499 return true;
500}
501
Paul Crowley3aa914d2017-10-09 16:35:51 -0700502static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
503 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
504}
505
506static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
507 PolicyKeyRef* key_ref) {
508 auto key_path = volkey_path(misc_path, volume_uuid);
509 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
510 PLOG(ERROR) << "Creating directories for: " << key_path;
511 return false;
512 }
513 if (!android::vold::retrieveAndInstallKey(true, key_path, key_path + "_tmp",
514 &key_ref->key_raw_ref))
515 return false;
516 key_ref->contents_mode =
517 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
518 key_ref->filenames_mode =
519 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
520 return true;
521}
522
523static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700524 auto path = volkey_path(misc_path, volume_uuid);
525 if (!android::vold::pathExists(path)) return true;
526 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700527}
528
Paul Crowley3b71fc52017-10-09 10:55:21 -0700529bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
530 const std::string& secret_hex) {
Paul Crowleya3630362016-05-17 14:17:56 -0700531 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700532 << " token_present=" << (token_hex != "!");
Paul Crowley76107cb2016-02-09 10:04:39 +0000533 if (!e4crypt_is_native()) return true;
534 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700535 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800536 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700537 if (!parse_hex(secret_hex, &secret)) return false;
538 auto auth = secret.empty() ? kEmptyAuthentication
539 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000540 auto it = s_ce_keys.find(user_id);
541 if (it == s_ce_keys.end()) {
542 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000543 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000544 }
Pavel Grafove2e2d302017-08-01 17:15:53 +0100545 const auto &ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700546 auto const directory_path = get_ce_key_directory_path(user_id);
547 auto const paths = get_ce_key_paths(directory_path);
548 std::string ce_key_path;
549 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700550 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700551 return true;
552}
553
554bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
555 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
556 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700557 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700558 auto const directory_path = get_ce_key_directory_path(user_id);
559 auto const paths = get_ce_key_paths(directory_path);
560 if (paths.empty()) {
561 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
562 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000563 }
Paul Crowleya3630362016-05-17 14:17:56 -0700564 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000565 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000566}
567
Jeff Sharkey47695b22016-02-01 17:02:29 -0700568// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowley3b71fc52017-10-09 10:55:21 -0700569bool e4crypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
570 const std::string& secret_hex) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800571 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700572 << " token_present=" << (token_hex != "!");
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700573 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000574 if (s_ce_key_raw_refs.count(user_id) != 0) {
575 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000576 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000577 }
578 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800579 if (!parse_hex(token_hex, &token)) return false;
580 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000581 android::vold::KeyAuthentication auth(token, secret);
582 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000583 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000584 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800585 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700586 } else {
587 // When in emulation mode, we just use chmod. However, we also
588 // unlock directories when not in emulation mode, to bring devices
589 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000590 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800591 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700592 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
593 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700594 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000595 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700596 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800597 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000598 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800599}
600
Jeff Sharkey47695b22016-02-01 17:02:29 -0700601// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000602bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000603 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700604 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000605 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700606 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800607 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000608 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800609 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700610 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
611 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000612 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000613 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800614 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800615 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700616
Paul Crowley76107cb2016-02-09 10:04:39 +0000617 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800618}
619
Paul Crowley82b41ff2017-10-20 08:17:54 -0700620static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
621 userid_t user_id, int flags) {
622 if (0 != android::vold::ForkExecvp(
623 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
624 std::to_string(user_id), std::to_string(flags)})) {
625 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700626 return false;
627 }
628 return true;
629}
630
Paul Crowley3b71fc52017-10-09 10:55:21 -0700631bool e4crypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
632 int flags) {
633 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800634 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700635
Paul Crowley82b41ff2017-10-20 08:17:54 -0700636 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600637 // DE_sys key
638 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
639 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
640 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600641
642 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700643 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
644 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
645 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
646
Paul Crowley3b71fc52017-10-09 10:55:21 -0700647 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700648 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600649#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700650 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
651 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600652#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700653 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600654
Paul Crowley6b756ce2017-10-05 14:07:09 -0700655 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
656 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
657 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000658 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000659
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600660 if (e4crypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700661 PolicyKeyRef de_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700662 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700663 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_ref.key_raw_ref)) return false;
664 get_data_file_encryption_modes(&de_ref);
665 if (!ensure_policy(de_ref, system_de_path)) return false;
666 if (!ensure_policy(de_ref, misc_de_path)) return false;
667 } else {
668 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700669 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700670 if (!ensure_policy(de_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700671 }
Paul Crowley285956f2016-01-20 13:12:38 +0000672 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800673
Paul Crowley82b41ff2017-10-20 08:17:54 -0700674 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600675 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700676 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
677 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600678 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
679 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800680
Paul Crowley3b71fc52017-10-09 10:55:21 -0700681 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700682 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
683 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
684 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000685 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
686 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700687
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600688 if (e4crypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700689 PolicyKeyRef ce_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700690 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700691 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_ref.key_raw_ref)) return false;
692 get_data_file_encryption_modes(&ce_ref);
693 if (!ensure_policy(ce_ref, system_ce_path)) return false;
694 if (!ensure_policy(ce_ref, misc_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700695
Paul Crowley3aa914d2017-10-09 16:35:51 -0700696 } else {
697 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700698 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700699 if (!ensure_policy(ce_ref, media_ce_path)) return false;
700 if (!ensure_policy(ce_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700701 }
Paul Crowley1a965262017-10-13 13:49:50 -0700702
703 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700704 // Now that credentials have been installed, we can run restorecon
705 // over these paths
706 // NOTE: these paths need to be kept in sync with libselinux
707 android::vold::RestoreconRecursive(system_ce_path);
708 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700709 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800710 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700711 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800712
Paul Crowley76107cb2016-02-09 10:04:39 +0000713 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800714}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600715
Paul Crowley3b71fc52017-10-09 10:55:21 -0700716bool e4crypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
717 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600718 << ", user " << user_id << ", flags " << flags;
719 bool res = true;
720
Paul Crowley82b41ff2017-10-20 08:17:54 -0700721 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
722
723 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700724 // CE_n key
725 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
726 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
727 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
728 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
729
730 res &= destroy_dir(media_ce_path);
731 res &= destroy_dir(user_ce_path);
732 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700733 res &= destroy_dir(system_ce_path);
734 res &= destroy_dir(misc_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700735 } else {
736 if (e4crypt_is_native()) {
737 res &= destroy_volkey(misc_ce_path, volume_uuid);
738 }
Paul Crowley8e550662017-10-16 17:01:44 -0700739 }
740 }
741
Paul Crowley82b41ff2017-10-20 08:17:54 -0700742 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600743 // DE_sys key
744 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
745 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
746 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600747
748 // DE_n key
749 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
750 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
751 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
752
Paul Crowley8e550662017-10-16 17:01:44 -0700753 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700754 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600755 res &= destroy_dir(system_legacy_path);
756#if MANAGE_MISC_DIRS
757 res &= destroy_dir(misc_legacy_path);
758#endif
759 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600760 res &= destroy_dir(system_de_path);
761 res &= destroy_dir(misc_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700762 } else {
763 if (e4crypt_is_native()) {
764 res &= destroy_volkey(misc_de_path, volume_uuid);
765 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600766 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600767 }
768
769 return res;
770}
Rubin Xu2436e272017-04-27 20:43:10 +0100771
Paul Crowleyc6433a22017-10-24 14:54:43 -0700772static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
773 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
774 if (!dirp) {
775 PLOG(ERROR) << "Unable to open directory: " + directory_path;
776 return false;
777 }
778 bool res = true;
779 for (;;) {
780 errno = 0;
781 auto const entry = readdir(dirp.get());
782 if (!entry) {
783 if (errno) {
784 PLOG(ERROR) << "Unable to read directory: " + directory_path;
785 return false;
786 }
787 break;
788 }
789 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
790 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
791 continue;
792 }
793 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
794 }
795 return res;
796}
797
798bool e4crypt_destroy_volume_keys(const std::string& volume_uuid) {
799 bool res = true;
800 LOG(DEBUG) << "e4crypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
801 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
802 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
803 return res;
804}
805
Paul Crowley3b71fc52017-10-09 10:55:21 -0700806bool e4crypt_secdiscard(const std::string& path) {
807 return android::vold::runSecdiscardSingle(path);
Rubin Xu2436e272017-04-27 20:43:10 +0100808}