blob: 3a7b5d480e881247172fab11c1aba514dd664571 [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
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -070019#include "Keymaster.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000020#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070021#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080022#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070023#include "VoldUtil.h"
24
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>
Paul Crowley3aa914d2017-10-09 16:35:51 -070059#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080060#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000061
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080062using android::base::StringPrintf;
Pavel Grafovb350ed02017-07-27 17:34:57 +010063using android::base::WriteStringToFile;
Paul Crowley05720802016-02-08 15:55:41 +000064using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010065using android::vold::KeyBuffer;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -070066using android::vold::Keymaster;
67using android::hardware::keymaster::V4_0::KeyFormat;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080068
Paul Lawrence731a7a22015-04-28 22:14:15 +000069namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000070
Paul Crowley3aa914d2017-10-09 16:35:51 -070071struct PolicyKeyRef {
72 std::string contents_mode;
73 std::string filenames_mode;
74 std::string key_raw_ref;
75};
76
Paul Crowley4d2d5242016-04-27 10:25:12 -070077const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080078const std::string device_key_path = device_key_dir + "/key";
79const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080080
Paul Crowleydf528a72016-03-09 09:31:37 -080081const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
82const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070083const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000084
Paul Crowley26a53882017-10-26 11:16:39 -070085const std::string systemwide_volume_key_dir =
86 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
87
Paul Crowleydf528a72016-03-09 09:31:37 -080088bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080089
Paul Crowleydf528a72016-03-09 09:31:37 -080090// Some users are ephemeral, don't try to wipe their keys from disk
91std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080092
Paul Crowleydf528a72016-03-09 09:31:37 -080093// Map user ids to key references
94std::map<userid_t, std::string> s_de_key_raw_refs;
95std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070096// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010097std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000098
Paul Lawrence731a7a22015-04-28 22:14:15 +000099}
100
Paul Crowley38132a12016-02-09 09:50:32 +0000101static bool e4crypt_is_emulated() {
102 return property_get_bool("persist.sys.emulate_fbe", false);
103}
104
Paul Crowley3b71fc52017-10-09 10:55:21 -0700105static const char* escape_empty(const std::string& value) {
106 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000107}
108
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000109static std::string get_de_key_path(userid_t user_id) {
110 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
111}
112
Paul Crowleya3630362016-05-17 14:17:56 -0700113static std::string get_ce_key_directory_path(userid_t user_id) {
114 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
115}
116
117// Returns the keys newest first
118static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
119 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
120 if (!dirp) {
121 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
122 return std::vector<std::string>();
123 }
124 std::vector<std::string> result;
125 for (;;) {
126 errno = 0;
127 auto const entry = readdir(dirp.get());
128 if (!entry) {
129 if (errno) {
130 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
131 return std::vector<std::string>();
132 }
133 break;
134 }
135 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
136 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
137 continue;
138 }
139 result.emplace_back(directory_path + "/" + entry->d_name);
140 }
141 std::sort(result.begin(), result.end());
142 std::reverse(result.begin(), result.end());
143 return result;
144}
145
146static std::string get_ce_key_current_path(const std::string& directory_path) {
147 return directory_path + "/current";
148}
149
150static bool get_ce_key_new_path(const std::string& directory_path,
151 const std::vector<std::string>& paths,
152 std::string *ce_key_path) {
153 if (paths.empty()) {
154 *ce_key_path = get_ce_key_current_path(directory_path);
155 return true;
156 }
157 for (unsigned int i = 0; i < UINT_MAX; i++) {
158 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
159 if (paths[0] < candidate) {
160 *ce_key_path = candidate;
161 return true;
162 }
163 }
164 return false;
165}
166
167// Discard all keys but the named one; rename it to canonical name.
168// No point in acting on errors in this; ignore them.
169static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
170 const std::vector<std::string>& paths) {
171 for (auto const other_path: paths) {
172 if (other_path != to_fix) {
173 android::vold::destroyKey(other_path);
174 }
175 }
176 auto const current_path = get_ce_key_current_path(directory_path);
177 if (to_fix != current_path) {
178 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
179 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
180 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
181 }
182 }
183}
184
185static bool read_and_fixate_user_ce_key(userid_t user_id,
186 const android::vold::KeyAuthentication& auth,
Pavel Grafove2e2d302017-08-01 17:15:53 +0100187 KeyBuffer *ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700188 auto const directory_path = get_ce_key_directory_path(user_id);
189 auto const paths = get_ce_key_paths(directory_path);
190 for (auto const ce_key_path: paths) {
191 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
192 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
193 LOG(DEBUG) << "Successfully retrieved key";
194 fixate_user_ce_key(directory_path, ce_key_path, paths);
195 return true;
196 }
197 }
198 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
199 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100200}
201
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700202static bool is_wrapped_key_supported_common(const std::string& mount_point) {
203 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, mount_point);
204 char const* contents_mode = NULL;
205 char const* filenames_mode = NULL;
206
207 fs_mgr_get_file_encryption_modes(rec, &contents_mode, &filenames_mode);
208 if (!contents_mode || !filenames_mode) {
209 LOG(ERROR) << "Couldn't read file or contents mode, returning false";
210 return false;
211 }
212
213 if (strcmp(contents_mode, "ice_wrapped_key_supported") == 0)
214 return true;
215 else
216 return false;
217}
218
219bool is_wrapped_key_supported() {
220 return is_wrapped_key_supported_common(DATA_MNT_POINT);
221}
222
223bool is_wrapped_key_supported_external() {
224 return false;
225}
226
Paul Crowleydf528a72016-03-09 09:31:37 -0800227static bool read_and_install_user_ce_key(userid_t user_id,
228 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000229 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100230 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700231 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000232 std::string ce_raw_ref;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700233
234 if (is_wrapped_key_supported()) {
235 KeyBuffer ephemeral_wrapped_key;
236 if (!getEphemeralWrappedKey(KeyFormat::RAW, ce_key, &ephemeral_wrapped_key)) {
237 LOG(ERROR) << "Failed to export ce key";
238 return false;
239 }
240 ce_key = std::move(ephemeral_wrapped_key);
241 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700242 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100243 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000244 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000245 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000246 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000247}
248
Paul Crowleydf528a72016-03-09 09:31:37 -0800249static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000250 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000251 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
252 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000253 return false;
254 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000255 return true;
256}
257
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600258static bool destroy_dir(const std::string& dir) {
259 LOG(DEBUG) << "Destroying: " << dir;
260 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
Pierre-Hugues Hussona7ad5fb2018-02-17 19:39:38 +0100261 if(unlink(dir.c_str()) == 0) return true;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600262 PLOG(ERROR) << "Failed to destroy " << dir;
263 return false;
264 }
265 return true;
266}
267
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000268// NB this assumes that there is only one thread listening for crypt commands, because
269// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000270static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100271 KeyBuffer de_key, ce_key;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700272
273 if(is_wrapped_key_supported()) {
274 if (!generateWrappedKey(user_id, android::vold::KeyType::DE_USER, &de_key)) return false;
275 if (!generateWrappedKey(user_id, android::vold::KeyType::CE_USER, &ce_key)) return false;
276 } else {
277 if (!android::vold::randomKey(&de_key)) return false;
278 if (!android::vold::randomKey(&ce_key)) return false;
279 }
280
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000281 if (create_ephemeral) {
282 // If the key should be created as ephemeral, don't store it.
283 s_ephemeral_users.insert(user_id);
284 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700285 auto const directory_path = get_ce_key_directory_path(user_id);
286 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
287 auto const paths = get_ce_key_paths(directory_path);
288 std::string ce_key_path;
289 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700290 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp,
Paul Crowleya3630362016-05-17 14:17:56 -0700291 kEmptyAuthentication, ce_key)) return false;
292 fixate_user_ce_key(directory_path, ce_key_path, paths);
293 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700294 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley38132a12016-02-09 09:50:32 +0000295 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100296 }
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700297
298 /* Install the DE keys */
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000299 std::string de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000300 std::string ce_raw_ref;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700301
302 if (is_wrapped_key_supported()) {
303 KeyBuffer ephemeral_wrapped_de_key;
304 KeyBuffer ephemeral_wrapped_ce_key;
305
306 /* Export and install the DE keys */
307 if (!getEphemeralWrappedKey(KeyFormat::RAW, de_key, &ephemeral_wrapped_de_key)) {
308 LOG(ERROR) << "Failed to export de_key";
309 return false;
310 }
311 /* Export and install the CE keys */
312 if (!getEphemeralWrappedKey(KeyFormat::RAW, ce_key, &ephemeral_wrapped_ce_key)) {
313 LOG(ERROR) << "Failed to export de_key";
314 return false;
315 }
316
317 de_key = std::move(ephemeral_wrapped_de_key);
318 ce_key = std::move(ephemeral_wrapped_ce_key);
319 }
320 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700321 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700322 s_ce_keys[user_id] = std::move(ce_key);
323
324 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000325 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700326
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000327 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000328 return true;
329}
330
Paul Crowleydf528a72016-03-09 09:31:37 -0800331static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
332 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000333 auto refi = key_map.find(user_id);
334 if (refi == key_map.end()) {
335 LOG(ERROR) << "Cannot find key for " << user_id;
336 return false;
337 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800338 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000339 return true;
340}
341
Paul Crowley3aa914d2017-10-09 16:35:51 -0700342static void get_data_file_encryption_modes(PolicyKeyRef* key_ref) {
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700343 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700344 char const* contents_mode;
345 char const* filenames_mode;
346 fs_mgr_get_file_encryption_modes(rec, &contents_mode, &filenames_mode);
347 key_ref->contents_mode = contents_mode;
348 key_ref->filenames_mode = filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700349}
350
Paul Crowley3aa914d2017-10-09 16:35:51 -0700351static bool ensure_policy(const PolicyKeyRef& key_ref, const std::string& path) {
352 return e4crypt_policy_ensure(path.c_str(), key_ref.key_raw_ref.data(),
353 key_ref.key_raw_ref.size(), key_ref.contents_mode.c_str(),
354 key_ref.filenames_mode.c_str()) == 0;
Paul Crowley95376d62015-05-06 15:04:43 +0100355}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100356
Paul Crowleydf528a72016-03-09 09:31:37 -0800357static bool is_numeric(const char* name) {
358 for (const char* p = name; *p != '\0'; p++) {
359 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000360 }
361 return true;
362}
363
364static bool load_all_de_keys() {
365 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800366 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000367 if (!dirp) {
368 PLOG(ERROR) << "Unable to read de key directory";
369 return false;
370 }
371 for (;;) {
372 errno = 0;
373 auto entry = readdir(dirp.get());
374 if (!entry) {
375 if (errno) {
376 PLOG(ERROR) << "Unable to read de key directory";
377 return false;
378 }
379 break;
380 }
381 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
382 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
383 continue;
384 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600385 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000386 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000387 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100388 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800389 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000390 std::string raw_ref;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700391 if (is_wrapped_key_supported()) {
392 KeyBuffer ephemeral_wrapped_key;
393 if (!getEphemeralWrappedKey(KeyFormat::RAW, key, &ephemeral_wrapped_key)) {
394 LOG(ERROR) << "Failed to export de_key in create_and_install_user_keys";
395 return false;
396 }
397 key = std::move(ephemeral_wrapped_key);
398 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700399 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000400 s_de_key_raw_refs[user_id] = raw_ref;
401 LOG(DEBUG) << "Installed de key for user " << user_id;
402 }
403 }
404 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
405 // correct policy set on them, and that no rogue ones exist.
406 return true;
407}
408
Paul Crowleydf528a72016-03-09 09:31:37 -0800409bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000410 LOG(INFO) << "e4crypt_initialize_global_de";
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700411 bool wrapped_key_supported = false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800412
Paul Crowley38132a12016-02-09 09:50:32 +0000413 if (s_global_de_initialized) {
414 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000415 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800416 }
417
Paul Crowley3aa914d2017-10-09 16:35:51 -0700418 PolicyKeyRef device_ref;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700419 wrapped_key_supported = is_wrapped_key_supported();
420
421 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication,
422 device_key_path, device_key_temp,
423 &device_ref.key_raw_ref, wrapped_key_supported))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700424 return false;
425 get_data_file_encryption_modes(&device_ref);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800426
Paul Crowley3aa914d2017-10-09 16:35:51 -0700427 std::string modestring = device_ref.contents_mode + ":" + device_ref.filenames_mode;
Paul Lawrence6e410592016-05-24 14:20:38 -0700428 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800429 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700430 PLOG(ERROR) << "Cannot save type";
431 return false;
432 }
433
Paul Lawrencef10544d2016-02-04 08:18:52 -0800434 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700435 if (!android::base::WriteStringToFile(device_ref.key_raw_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700436 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000437 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800438 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700439 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800440
Paul Crowley38132a12016-02-09 09:50:32 +0000441 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000442 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800443}
444
Paul Crowley76107cb2016-02-09 10:04:39 +0000445bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000446 LOG(DEBUG) << "e4crypt_init_user0";
447 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
449 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
450 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700451 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000452 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000453 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700454 // TODO: switch to loading only DE_0 here once framework makes
455 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000456 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000457 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700458 // We can only safely prepare DE storage here, since CE keys are probably
459 // entangled with user credentials. The framework will always prepare CE
460 // storage once CE keys are installed.
Paul Crowley82b41ff2017-10-20 08:17:54 -0700461 if (!e4crypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700462 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000463 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700464 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700465
466 // If this is a non-FBE device that recently left an emulated mode,
467 // restore user data directories to known-good state.
468 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700469 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700470 }
471
Paul Crowley76107cb2016-02-09 10:04:39 +0000472 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000473}
474
Paul Crowley76107cb2016-02-09 10:04:39 +0000475bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000476 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000477 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000479 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000480 // FIXME test for existence of key that is not loaded yet
481 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800482 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
483 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000484 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000485 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800486 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000487 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000488 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000489 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800491}
492
Pavel Grafovb350ed02017-07-27 17:34:57 +0100493static void drop_caches() {
494 // Clean any dirty pages (otherwise they won't be dropped).
495 sync();
496 // Drop inode and page caches.
497 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
498 PLOG(ERROR) << "Failed to drop caches during key eviction";
499 }
500}
501
Andrew Scull7ec25c72016-10-31 10:28:25 +0000502static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100503 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000504 bool success = true;
505 std::string raw_ref;
506 // If we haven't loaded the CE key, no need to evict it.
507 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700508 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100509 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000510 }
511 s_ce_key_raw_refs.erase(user_id);
512 return success;
513}
514
Paul Crowley76107cb2016-02-09 10:04:39 +0000515bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000516 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000517 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000518 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000519 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000520 bool success = true;
521 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000522 success &= evict_ce_key(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700523 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref)
524 && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000525 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000526 auto it = s_ephemeral_users.find(user_id);
527 if (it != s_ephemeral_users.end()) {
528 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000529 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700530 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
531 success &= android::vold::destroyKey(path);
532 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700533 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700534 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700535 success &= android::vold::destroyKey(de_key_path);
536 } else {
537 LOG(INFO) << "Not present so not erasing: " << de_key_path;
538 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100539 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000540 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100541}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800542
Paul Crowley76107cb2016-02-09 10:04:39 +0000543static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700544 if (chmod(path.c_str(), 0000) != 0) {
545 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000546 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700547 }
548#if EMULATED_USES_SELINUX
549 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
550 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000551 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700552 }
553#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000554 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700555}
556
Paul Crowley76107cb2016-02-09 10:04:39 +0000557static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700558 if (chmod(path.c_str(), mode) != 0) {
559 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000560 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700562 }
563#if EMULATED_USES_SELINUX
564 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
565 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000566 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000567 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700568 }
569#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000570 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700571}
572
Paul Crowley3b71fc52017-10-09 10:55:21 -0700573static bool parse_hex(const std::string& hex, std::string* result) {
574 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800575 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000576 return true;
577 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800578 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800579 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000580 return false;
581 }
582 return true;
583}
584
Paul Crowley3aa914d2017-10-09 16:35:51 -0700585static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
586 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
587}
588
Paul Crowley26a53882017-10-26 11:16:39 -0700589static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
590 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
591}
592
Paul Crowley3aa914d2017-10-09 16:35:51 -0700593static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
594 PolicyKeyRef* key_ref) {
Paul Crowley26a53882017-10-26 11:16:39 -0700595 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
596 std::string secdiscardable_hash;
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700597 bool wrapped_key_supported = false;
Paul Crowley26a53882017-10-26 11:16:39 -0700598 if (android::vold::pathExists(secdiscardable_path)) {
599 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
600 return false;
601 } else {
602 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
603 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
604 return false;
605 }
606 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
607 return false;
608 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700609 auto key_path = volkey_path(misc_path, volume_uuid);
610 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
611 PLOG(ERROR) << "Creating directories for: " << key_path;
612 return false;
613 }
Paul Crowley26a53882017-10-26 11:16:39 -0700614 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700615 wrapped_key_supported = is_wrapped_key_supported_external();
616
Paul Crowley26a53882017-10-26 11:16:39 -0700617 if (!android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp",
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700618 &key_ref->key_raw_ref, wrapped_key_supported))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700619 return false;
620 key_ref->contents_mode =
621 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
622 key_ref->filenames_mode =
623 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
624 return true;
625}
626
627static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700628 auto path = volkey_path(misc_path, volume_uuid);
629 if (!android::vold::pathExists(path)) return true;
630 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700631}
632
Paul Crowley3b71fc52017-10-09 10:55:21 -0700633bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
634 const std::string& secret_hex) {
Paul Crowleya3630362016-05-17 14:17:56 -0700635 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700636 << " token_present=" << (token_hex != "!");
Paul Crowley76107cb2016-02-09 10:04:39 +0000637 if (!e4crypt_is_native()) return true;
638 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700639 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800640 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700641 if (!parse_hex(secret_hex, &secret)) return false;
642 auto auth = secret.empty() ? kEmptyAuthentication
643 : android::vold::KeyAuthentication(token, secret);
Paul Crowleya3630362016-05-17 14:17:56 -0700644 auto const directory_path = get_ce_key_directory_path(user_id);
645 auto const paths = get_ce_key_paths(directory_path);
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700646
647 KeyBuffer ce_key;
648 if(is_wrapped_key_supported()) {
649 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
650 if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
651 LOG(DEBUG) << "Successfully retrieved key";
652 } else {
653 if (android::vold::retrieveKey(ce_key_current_path, auth, &ce_key)) {
654 LOG(DEBUG) << "Successfully retrieved key";
655 }
656 }
657 } else {
658 auto it = s_ce_keys.find(user_id);
659 if (it == s_ce_keys.end()) {
660 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
661 return false;
662 }
663 ce_key = it->second;
664 }
665
Paul Crowleya3630362016-05-17 14:17:56 -0700666 std::string ce_key_path;
667 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700668 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700669 return true;
670}
671
Shivaprasad Hongal659c9ec2018-07-05 14:49:12 -0700672bool e4crypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
673 const std::string& secret_hex) {
674 LOG(DEBUG) << "e4crypt_clear_user_key_auth " << user_id << " serial=" << serial
675 << " token_present=" << (token_hex != "!");
676 if (!e4crypt_is_native()) return true;
677 if (s_ephemeral_users.count(user_id) != 0) return true;
678 std::string token, secret;
679
680 if (!parse_hex(token_hex, &token)) return false;
681 if (!parse_hex(secret_hex, &secret)) return false;
682
683 if (is_wrapped_key_supported()) {
684 auto const directory_path = get_ce_key_directory_path(user_id);
685 auto const paths = get_ce_key_paths(directory_path);
686
687 KeyBuffer ce_key;
688 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
689
690 auto auth = android::vold::KeyAuthentication(token, secret);
691 /* Retrieve key while removing a pin. A secret is needed */
692 if (android::vold::retrieveKey(ce_key_current_path, auth, &ce_key)) {
693 LOG(DEBUG) << "Successfully retrieved key";
694 } else {
695 /* Retrieve key when going None to swipe and vice versa when a
696 synthetic password is present */
697 if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
698 LOG(DEBUG) << "Successfully retrieved key";
699 }
700 }
701
702 std::string ce_key_path;
703 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
704 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication, ce_key))
705 return false;
706 } else {
707 if(!e4crypt_add_user_key_auth(user_id, serial, "!", "!")) return false;
708 }
709 return true;
710}
711
Paul Crowleya3630362016-05-17 14:17:56 -0700712bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
713 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
714 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700715 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700716 auto const directory_path = get_ce_key_directory_path(user_id);
717 auto const paths = get_ce_key_paths(directory_path);
718 if (paths.empty()) {
719 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
720 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000721 }
Paul Crowleya3630362016-05-17 14:17:56 -0700722 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000723 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000724}
725
Jeff Sharkey47695b22016-02-01 17:02:29 -0700726// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowley3b71fc52017-10-09 10:55:21 -0700727bool e4crypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
728 const std::string& secret_hex) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800729 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700730 << " token_present=" << (token_hex != "!");
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700731 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000732 if (s_ce_key_raw_refs.count(user_id) != 0) {
733 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000734 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000735 }
736 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800737 if (!parse_hex(token_hex, &token)) return false;
738 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000739 android::vold::KeyAuthentication auth(token, secret);
740 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000741 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000742 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800743 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700744 } else {
745 // When in emulation mode, we just use chmod. However, we also
746 // unlock directories when not in emulation mode, to bring devices
747 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000748 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800749 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700750 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
751 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700752 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000753 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700754 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800755 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000756 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800757}
758
Jeff Sharkey47695b22016-02-01 17:02:29 -0700759// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000760bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000761 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700762 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000763 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700764 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800765 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000766 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800767 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700768 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
769 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000770 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000771 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800772 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800773 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700774
Paul Crowley76107cb2016-02-09 10:04:39 +0000775 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800776}
777
Paul Crowley82b41ff2017-10-20 08:17:54 -0700778static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
779 userid_t user_id, int flags) {
780 if (0 != android::vold::ForkExecvp(
781 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
782 std::to_string(user_id), std::to_string(flags)})) {
783 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700784 return false;
785 }
786 return true;
787}
788
Paul Crowley3b71fc52017-10-09 10:55:21 -0700789bool e4crypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
790 int flags) {
791 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800792 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700793
Paul Crowley82b41ff2017-10-20 08:17:54 -0700794 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600795 // DE_sys key
796 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
797 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
798 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600799
800 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700801 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
802 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800803 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700804 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
805
Paul Crowley3b71fc52017-10-09 10:55:21 -0700806 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700807 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600808#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700809 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
810 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600811#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700812 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600813
Paul Crowley6b756ce2017-10-05 14:07:09 -0700814 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
815 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800816 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700817 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000818 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000819
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600820 if (e4crypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700821 PolicyKeyRef de_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700822 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700823 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_ref.key_raw_ref)) return false;
824 get_data_file_encryption_modes(&de_ref);
825 if (!ensure_policy(de_ref, system_de_path)) return false;
826 if (!ensure_policy(de_ref, misc_de_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800827 if (!ensure_policy(de_ref, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700828 } else {
829 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700830 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700831 if (!ensure_policy(de_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700832 }
Paul Crowley285956f2016-01-20 13:12:38 +0000833 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800834
Paul Crowley82b41ff2017-10-20 08:17:54 -0700835 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600836 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700837 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
838 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800839 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600840 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
841 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800842
Paul Crowley3b71fc52017-10-09 10:55:21 -0700843 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700844 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
845 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800846 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700847 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000848 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
849 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700850
Jeff Sharkeyd7945262017-06-26 16:09:11 -0600851 if (e4crypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700852 PolicyKeyRef ce_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700853 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700854 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_ref.key_raw_ref)) return false;
855 get_data_file_encryption_modes(&ce_ref);
856 if (!ensure_policy(ce_ref, system_ce_path)) return false;
857 if (!ensure_policy(ce_ref, misc_ce_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800858 if (!ensure_policy(ce_ref, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700859
Paul Crowley3aa914d2017-10-09 16:35:51 -0700860 } else {
861 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700862 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700863 if (!ensure_policy(ce_ref, media_ce_path)) return false;
864 if (!ensure_policy(ce_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700865 }
Paul Crowley1a965262017-10-13 13:49:50 -0700866
867 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700868 // Now that credentials have been installed, we can run restorecon
869 // over these paths
870 // NOTE: these paths need to be kept in sync with libselinux
871 android::vold::RestoreconRecursive(system_ce_path);
872 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700873 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800874 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700875 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800876
Paul Crowley76107cb2016-02-09 10:04:39 +0000877 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800878}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600879
Paul Crowley3b71fc52017-10-09 10:55:21 -0700880bool e4crypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
881 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600882 << ", user " << user_id << ", flags " << flags;
883 bool res = true;
884
Paul Crowley82b41ff2017-10-20 08:17:54 -0700885 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
886
887 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700888 // CE_n key
889 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
890 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800891 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700892 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
893 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
894
895 res &= destroy_dir(media_ce_path);
896 res &= destroy_dir(user_ce_path);
897 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700898 res &= destroy_dir(system_ce_path);
899 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800900 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700901 } else {
902 if (e4crypt_is_native()) {
903 res &= destroy_volkey(misc_ce_path, volume_uuid);
904 }
Paul Crowley8e550662017-10-16 17:01:44 -0700905 }
906 }
907
Paul Crowley82b41ff2017-10-20 08:17:54 -0700908 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600909 // DE_sys key
910 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
911 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
912 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600913
914 // DE_n key
915 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
916 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800917 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600918 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
919
Paul Crowley8e550662017-10-16 17:01:44 -0700920 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700921 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600922 res &= destroy_dir(system_legacy_path);
923#if MANAGE_MISC_DIRS
924 res &= destroy_dir(misc_legacy_path);
925#endif
926 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600927 res &= destroy_dir(system_de_path);
928 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800929 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700930 } else {
931 if (e4crypt_is_native()) {
932 res &= destroy_volkey(misc_de_path, volume_uuid);
933 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600934 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600935 }
936
937 return res;
938}
Rubin Xu2436e272017-04-27 20:43:10 +0100939
Paul Crowleyc6433a22017-10-24 14:54:43 -0700940static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
941 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
942 if (!dirp) {
943 PLOG(ERROR) << "Unable to open directory: " + directory_path;
944 return false;
945 }
946 bool res = true;
947 for (;;) {
948 errno = 0;
949 auto const entry = readdir(dirp.get());
950 if (!entry) {
951 if (errno) {
952 PLOG(ERROR) << "Unable to read directory: " + directory_path;
953 return false;
954 }
955 break;
956 }
957 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
958 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
959 continue;
960 }
961 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
962 }
963 return res;
964}
965
966bool e4crypt_destroy_volume_keys(const std::string& volume_uuid) {
967 bool res = true;
968 LOG(DEBUG) << "e4crypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700969 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
970 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700971 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
972 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
973 return res;
974}