blob: 8b664ac6a16540fac45961749a7a1a6ccb759e10 [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"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080020#include "Utils.h"
21
Paul Lawrencefd7db732015-04-10 07:48:51 -070022#include <iomanip>
Paul Lawrence731a7a22015-04-28 22:14:15 +000023#include <map>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000024#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070025#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080026#include <string>
Paul Lawrence731a7a22015-04-28 22:14:15 +000027
Paul Crowleydf528a72016-03-09 09:31:37 -080028#include <dirent.h>
29#include <errno.h>
30#include <fcntl.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070031#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070032#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080033#include <stdio.h>
34#include <sys/mount.h>
35#include <sys/stat.h>
36#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000037
Paul Crowley480fcd22015-08-24 14:53:28 +010038#include <private/android_filesystem_config.h>
39
Paul Lawrence01f1bc72016-05-05 11:02:07 -070040#include <fs_mgr.h>
41
Paul Lawrence731a7a22015-04-28 22:14:15 +000042#include "cryptfs.h"
Jeff Sharkey47695b22016-02-01 17:02:29 -070043#include "ext4_crypt.h"
Paul Crowleydf528a72016-03-09 09:31:37 -080044#include "key_control.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000045
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060047#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050
Elliott Hughes7e128fb2015-12-04 15:50:53 -080051#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080052#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080053#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000054
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000056using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080057
Jeff Sharkey47695b22016-02-01 17:02:29 -070058// NOTE: keep in sync with StorageManager
59static constexpr int FLAG_STORAGE_DE = 1 << 0;
60static constexpr int FLAG_STORAGE_CE = 1 << 1;
61
Paul Lawrence01f1bc72016-05-05 11:02:07 -070062// Vile hack to get fstab entries for file encryption type
63extern struct fstab *fstab;
64
Paul Lawrence731a7a22015-04-28 22:14:15 +000065namespace {
Paul Crowley4d2d5242016-04-27 10:25:12 -070066const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080067const std::string device_key_path = device_key_dir + "/key";
68const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080069
Paul Crowleydf528a72016-03-09 09:31:37 -080070const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
71const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000072
Paul Crowleydf528a72016-03-09 09:31:37 -080073bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080074
Paul Crowleydf528a72016-03-09 09:31:37 -080075// Some users are ephemeral, don't try to wipe their keys from disk
76std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080077
Paul Crowleydf528a72016-03-09 09:31:37 -080078// Map user ids to key references
79std::map<userid_t, std::string> s_de_key_raw_refs;
80std::map<userid_t, std::string> s_ce_key_raw_refs;
81// TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory.
82// See b/26948053
83std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000084
Paul Crowleydf528a72016-03-09 09:31:37 -080085// ext4enc:TODO get this const from somewhere good
86const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070087
Paul Crowleydf528a72016-03-09 09:31:37 -080088// ext4enc:TODO Include structure from somewhere sensible
89// MUST be in sync with ext4_crypto.c in kernel
90constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
91constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
92constexpr int EXT4_MAX_KEY_SIZE = 64;
93struct ext4_encryption_key {
94 uint32_t mode;
95 char raw[EXT4_MAX_KEY_SIZE];
96 uint32_t size;
97};
Paul Lawrence731a7a22015-04-28 22:14:15 +000098}
99
Paul Lawrence01f1bc72016-05-05 11:02:07 -0700100#define XATTR_NAME_ENCRYPTION_POLICY "encryption.policy"
101#define EXT4_KEYREF_DELIMITER ((char)'.')
102
103// ext4enc:TODO Include structure from somewhere sensible
104// MUST be in sync with ext4_crypto.c in kernel
105#define EXT4_KEY_DESCRIPTOR_SIZE 8
106#define EXT4_KEY_DESCRIPTOR_SIZE_HEX 17
107
108struct ext4_encryption_policy {
109 char version;
110 char contents_encryption_mode;
111 char filenames_encryption_mode;
112 char flags;
113 char master_key_descriptor[EXT4_KEY_DESCRIPTOR_SIZE];
114} __attribute__((__packed__));
115
116#define EXT4_ENCRYPTION_MODE_AES_256_XTS 1
117#define EXT4_ENCRYPTION_MODE_AES_256_CTS 4
118#define EXT4_ENCRYPTION_MODE_PRIVATE 127
119
120// ext4enc:TODO Get value from somewhere sensible
121#define EXT4_IOC_SET_ENCRYPTION_POLICY _IOR('f', 19, struct ext4_encryption_policy)
122#define EXT4_IOC_GET_ENCRYPTION_POLICY _IOW('f', 21, struct ext4_encryption_policy)
123
124#define HEX_LOOKUP "0123456789abcdef"
125
126static void policy_to_hex(const char* policy, char* hex) {
127 for (size_t i = 0, j = 0; i < EXT4_KEY_DESCRIPTOR_SIZE; i++) {
128 hex[j++] = HEX_LOOKUP[(policy[i] & 0xF0) >> 4];
129 hex[j++] = HEX_LOOKUP[policy[i] & 0x0F];
130 }
131 hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX - 1] = '\0';
132}
133
134static bool is_dir_empty(const char *dirname, bool *is_empty)
135{
136 int n = 0;
137 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(dirname), closedir);
138 if (!dirp) {
139 PLOG(ERROR) << "Unable to read directory: " << dirname;
140 return false;
141 }
142 for (;;) {
143 errno = 0;
144 auto entry = readdir(dirp.get());
145 if (!entry) {
146 if (errno) {
147 PLOG(ERROR) << "Unable to read directory: " << dirname;
148 return false;
149 }
150 break;
151 }
152 if (strcmp(entry->d_name, "lost+found") != 0) { // Skip lost+found
153 ++n;
154 if (n > 2) {
155 *is_empty = false;
156 return true;
157 }
158 }
159 }
160 *is_empty = true;
161 return true;
162}
163
164static bool e4crypt_policy_set(const char *directory, const char *policy,
165 size_t policy_length, int contents_encryption_type) {
166 if (policy_length != EXT4_KEY_DESCRIPTOR_SIZE) {
167 LOG(ERROR) << "Policy wrong length: " << policy_length;
168 return false;
169 }
170 int fd = open(directory, O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
171 if (fd == -1) {
172 PLOG(ERROR) << "Failed to open directory " << directory;
173 return false;
174 }
175
176 ext4_encryption_policy eep;
177 eep.version = 0;
178 eep.contents_encryption_mode = contents_encryption_type;
179 eep.filenames_encryption_mode = EXT4_ENCRYPTION_MODE_AES_256_CTS;
180 eep.flags = 0;
181 memcpy(eep.master_key_descriptor, policy, EXT4_KEY_DESCRIPTOR_SIZE);
182 if (ioctl(fd, EXT4_IOC_SET_ENCRYPTION_POLICY, &eep)) {
183 PLOG(ERROR) << "Failed to set encryption policy for " << directory;
184 close(fd);
185 return false;
186 }
187 close(fd);
188
189 char policy_hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX];
190 policy_to_hex(policy, policy_hex);
191 LOG(INFO) << "Policy for " << directory << " set to " << policy_hex;
192 return true;
193}
194
195static bool e4crypt_policy_get(const char *directory, char *policy,
196 size_t policy_length, int contents_encryption_type) {
197 if (policy_length != EXT4_KEY_DESCRIPTOR_SIZE) {
198 LOG(ERROR) << "Policy wrong length: " << policy_length;
199 return false;
200 }
201
202 int fd = open(directory, O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
203 if (fd == -1) {
204 PLOG(ERROR) << "Failed to open directory " << directory;
205 return false;
206 }
207
208 ext4_encryption_policy eep;
209 memset(&eep, 0, sizeof(ext4_encryption_policy));
210 if (ioctl(fd, EXT4_IOC_GET_ENCRYPTION_POLICY, &eep) != 0) {
211 PLOG(ERROR) << "Failed to get encryption policy for " << directory;
212 close(fd);
213 return -1;
214 }
215 close(fd);
216
217 if ((eep.version != 0)
218 || (eep.contents_encryption_mode != contents_encryption_type)
219 || (eep.filenames_encryption_mode != EXT4_ENCRYPTION_MODE_AES_256_CTS)
220 || (eep.flags != 0)) {
221 LOG(ERROR) << "Failed to find matching encryption policy for " << directory;
222 return false;
223 }
224 memcpy(policy, eep.master_key_descriptor, EXT4_KEY_DESCRIPTOR_SIZE);
225
226 return true;
227}
228
229static bool e4crypt_policy_check(const char *directory, const char *policy,
230 size_t policy_length, int contents_encryption_type) {
231 if (policy_length != EXT4_KEY_DESCRIPTOR_SIZE) {
232 LOG(ERROR) << "Policy wrong length: " << policy_length;
233 return false;
234 }
235 char existing_policy[EXT4_KEY_DESCRIPTOR_SIZE];
236 if (!e4crypt_policy_get(directory, existing_policy, EXT4_KEY_DESCRIPTOR_SIZE,
237 contents_encryption_type)) {
238 return false;
239 }
240 char existing_policy_hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX];
241
242 policy_to_hex(existing_policy, existing_policy_hex);
243
244 if (memcmp(policy, existing_policy, EXT4_KEY_DESCRIPTOR_SIZE) != 0) {
245 char policy_hex[EXT4_KEY_DESCRIPTOR_SIZE_HEX];
246 policy_to_hex(policy, policy_hex);
247 LOG(ERROR) << "Found policy " << existing_policy_hex << " at " << directory
248 << " which doesn't match expected value " << policy_hex;
249 return false;
250 }
251 LOG(INFO) << "Found policy " << existing_policy_hex << " at " << directory
252 << " which matches expected value";
253 return true;
254}
255
256int e4crypt_policy_ensure(const char* directory, const char* policy, int policy_length)
257{
258 static int contents_encryption_type = 0;
259 if (contents_encryption_type == 0) {
260 // Get file_encryption_type from fstab
261 struct fstab_rec *rec = fs_mgr_get_entry_for_mount_point(fstab, "/data");
262 if (rec == 0) {
263 return -1;
264 }
265
266 // Translate file_encryption_type to ext4 contents encryption type
267 switch (rec->file_encryption_type)
268 {
269 case ET_SOFTWARE:
270 contents_encryption_type = EXT4_ENCRYPTION_MODE_AES_256_XTS;
271 break;
272
273 case ET_ICE:
274 contents_encryption_type = EXT4_ENCRYPTION_MODE_PRIVATE;
275 break;
276
277 default:
278 return -1;
279 }
280 }
281
282 bool is_empty;
283 if (!is_dir_empty(directory, &is_empty)) return -1;
284 if (is_empty) {
285 if (!e4crypt_policy_set(directory, policy, policy_length,
286 contents_encryption_type)) {
287 return -1;
288 }
289 } else {
290 if (!e4crypt_policy_check(directory, policy, policy_length,
291 contents_encryption_type)) {
292 return -1;
293 }
294 }
295 return 0;
296}
297
298bool e4crypt_hex_policy_ensure(const char* dir, const char* hex_policy)
299{
300 std::string hex = hex_policy;
301 if (hex.substr(0, 2) != "0x") {
302 return false;
303 }
304 std::string policy;
305 if (android::vold::HexToStr(hex.substr(2), policy)) {
306 return false;
307 }
308
309 return e4crypt_policy_ensure(dir, policy.c_str(), policy.length()) == 0;
310}
311
Paul Crowley38132a12016-02-09 09:50:32 +0000312static bool e4crypt_is_emulated() {
313 return property_get_bool("persist.sys.emulate_fbe", false);
314}
315
316static const char* escape_null(const char* value) {
317 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000318}
319
Paul Crowley93363482015-07-07 15:17:22 +0100320// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800321static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700322 SHA512_CTX c;
323
324 SHA512_Init(&c);
325 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000326 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700327 SHA512_Final(key_ref1, &c);
328
329 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000330 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
331 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700332 SHA512_Final(key_ref2, &c);
333
Paul Crowleyd9b92952016-03-04 13:45:00 -0800334 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800335 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700336 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
337}
338
Paul Crowleydf528a72016-03-09 09:31:37 -0800339static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800340 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
341 LOG(ERROR) << "Wrong size key " << key.size();
342 return false;
343 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800344 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800345 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
346 ext4_key->size = key.size();
347 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
348 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800349 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100350}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000351
Paul Crowleydf528a72016-03-09 09:31:37 -0800352static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700353 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100354 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800355 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800356 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700357 }
Paul Crowley93363482015-07-07 15:17:22 +0100358 return o.str();
359}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700360
Paul Crowley93363482015-07-07 15:17:22 +0100361// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800362static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800363 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
364 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800365 PLOG(ERROR) << "Unable to find device keyring";
366 return false;
367 }
368 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100369}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000370
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000371// Install password into global keyring
372// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800373static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800374 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800375 if (!fill_key(key, &ext4_key)) return false;
376 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
377 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800378 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800379 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800380 key_serial_t key_id =
381 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000382 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000383 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000384 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000385 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800386 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
387 << " in process " << getpid();
Paul Lawrence85e3d8c2016-04-26 12:50:53 -0700388
389 // *TODO* Remove this code when kernel is fixed - see b/28373400
390 // Kernel preserves caches across a key insertion with ext4ice, which leads
391 // to contradictory dirents
392 if (!android::base::WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
393 PLOG(ERROR) << "Failed to drop_caches";
394 }
395
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000396 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000397}
398
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000399static std::string get_de_key_path(userid_t user_id) {
400 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
401}
402
Paul Crowleyd4023892016-05-10 20:36:43 +0000403static std::string get_ce_key_path(userid_t user_id) {
404 return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id);
Paul Crowleyb33e8872015-05-19 12:34:09 +0100405}
406
Paul Crowleydf528a72016-03-09 09:31:37 -0800407static bool read_and_install_user_ce_key(userid_t user_id,
408 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000409 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowleyd4023892016-05-10 20:36:43 +0000410 const auto ce_key_path = get_ce_key_path(user_id);
Paul Crowley05720802016-02-08 15:55:41 +0000411 std::string ce_key;
Paul Crowleyd4023892016-05-10 20:36:43 +0000412 if (!android::vold::retrieveKey(ce_key_path, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000413 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800414 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000415 s_ce_keys[user_id] = ce_key;
416 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000417 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000418 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000419}
420
Paul Crowleydf528a72016-03-09 09:31:37 -0800421static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000422 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000423 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
424 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000425 return false;
426 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000427 return true;
428}
429
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600430static bool destroy_dir(const std::string& dir) {
431 LOG(DEBUG) << "Destroying: " << dir;
432 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
433 PLOG(ERROR) << "Failed to destroy " << dir;
434 return false;
435 }
436 return true;
437}
438
Paul Crowleydf528a72016-03-09 09:31:37 -0800439static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800440 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000441 // TODO status_t plays badly with PLOG, fix it.
442 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000443 return false;
444 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000445 return true;
446}
447
Paul Crowleydf528a72016-03-09 09:31:37 -0800448static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000449 return access(path.c_str(), F_OK) == 0;
450}
451
452// NB this assumes that there is only one thread listening for crypt commands, because
453// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800454static bool store_key(const std::string& key_path, const std::string& tmp_path,
455 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000456 if (path_exists(key_path)) {
457 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
458 return false;
459 }
Paul Crowley38132a12016-02-09 09:50:32 +0000460 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800461 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000462 }
Paul Crowley38132a12016-02-09 09:50:32 +0000463 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
464 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000465 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
466 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100467 }
Paul Crowley285956f2016-01-20 13:12:38 +0000468 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100469 return true;
470}
471
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000472static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
473 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800474 if (!random_key(&de_key)) return false;
475 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000476 if (create_ephemeral) {
477 // If the key should be created as ephemeral, don't store it.
478 s_ephemeral_users.insert(user_id);
479 } else {
Paul Crowley38132a12016-02-09 09:50:32 +0000480 if (!store_key(get_de_key_path(user_id), user_key_temp,
481 kEmptyAuthentication, de_key)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000482 if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id),
483 0700, AID_ROOT, AID_ROOT)) return false;
484 if (!store_key(get_ce_key_path(user_id), user_key_temp,
485 kEmptyAuthentication, ce_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100486 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000487 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800488 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000489 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000490 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800491 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000492 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000493 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000494 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000495 return true;
496}
497
Paul Crowleydf528a72016-03-09 09:31:37 -0800498static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
499 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000500 auto refi = key_map.find(user_id);
501 if (refi == key_map.end()) {
502 LOG(ERROR) << "Cannot find key for " << user_id;
503 return false;
504 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800505 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000506 return true;
507}
508
Paul Crowleydf528a72016-03-09 09:31:37 -0800509static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700510 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000511 LOG(ERROR) << "Failed to set policy on: " << path;
512 return false;
513 }
514 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100515}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100516
Paul Crowleydf528a72016-03-09 09:31:37 -0800517static bool is_numeric(const char* name) {
518 for (const char* p = name; *p != '\0'; p++) {
519 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000520 }
521 return true;
522}
523
524static bool load_all_de_keys() {
525 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800526 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000527 if (!dirp) {
528 PLOG(ERROR) << "Unable to read de key directory";
529 return false;
530 }
531 for (;;) {
532 errno = 0;
533 auto entry = readdir(dirp.get());
534 if (!entry) {
535 if (errno) {
536 PLOG(ERROR) << "Unable to read de key directory";
537 return false;
538 }
539 break;
540 }
541 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
542 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
543 continue;
544 }
545 userid_t user_id = atoi(entry->d_name);
546 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000547 auto key_path = de_dir + "/" + entry->d_name;
548 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800549 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000550 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800551 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000552 s_de_key_raw_refs[user_id] = raw_ref;
553 LOG(DEBUG) << "Installed de key for user " << user_id;
554 }
555 }
556 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
557 // correct policy set on them, and that no rogue ones exist.
558 return true;
559}
560
Paul Crowleydf528a72016-03-09 09:31:37 -0800561bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000562 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800563
Paul Crowley38132a12016-02-09 09:50:32 +0000564 if (s_global_de_initialized) {
565 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000566 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800567 }
568
569 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000570 if (path_exists(device_key_path)) {
571 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800572 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000573 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800574 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800575 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000576 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000577 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800578 }
579
580 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800581 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800582 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000583 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800584 }
585
Paul Lawrencef10544d2016-02-04 08:18:52 -0800586 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
587 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
588 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000589 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800590 }
591
Paul Crowley38132a12016-02-09 09:50:32 +0000592 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800594}
595
Paul Crowley76107cb2016-02-09 10:04:39 +0000596bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000597 LOG(DEBUG) << "e4crypt_init_user0";
598 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000599 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
600 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
601 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000602 auto de_path = get_de_key_path(0);
603 auto ce_path = get_ce_key_path(0);
604 if (!path_exists(de_path) || !path_exists(ce_path)) {
605 if (path_exists(de_path)) {
606 android::vold::destroyKey(de_path); // May be partially created so ignore errors
607 }
608 if (path_exists(ce_path)) {
609 android::vold::destroyKey(ce_path); // May be partially created so ignore errors
610 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000611 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000612 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700613 // TODO: switch to loading only DE_0 here once framework makes
614 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000615 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000616 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700617 // We can only safely prepare DE storage here, since CE keys are probably
618 // entangled with user credentials. The framework will always prepare CE
619 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000620 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700621 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000622 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700623 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700624
625 // If this is a non-FBE device that recently left an emulated mode,
626 // restore user data directories to known-good state.
627 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700628 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700629 }
630
Paul Crowley76107cb2016-02-09 10:04:39 +0000631 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000632}
633
Paul Crowley76107cb2016-02-09 10:04:39 +0000634bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000635 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000636 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000637 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000638 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000639 // FIXME test for existence of key that is not loaded yet
640 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800641 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
642 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000643 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000644 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800645 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000646 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000647 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000648 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000649 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800650}
651
Paul Crowleydf528a72016-03-09 09:31:37 -0800652static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000653 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800654 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800655 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800656 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000657 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000658 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000659 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100660 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000661 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
662 return true;
663}
664
Paul Crowley76107cb2016-02-09 10:04:39 +0000665bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000666 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000667 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000668 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000669 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000670 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000671 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000672 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700673 // If we haven't loaded the CE key, no need to evict it.
674 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
675 success &= evict_key(raw_ref);
676 }
Paul Crowley05720802016-02-08 15:55:41 +0000677 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800678 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000679 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000680 auto it = s_ephemeral_users.find(user_id);
681 if (it != s_ephemeral_users.end()) {
682 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000683 } else {
Paul Crowleyd4023892016-05-10 20:36:43 +0000684 success &= android::vold::destroyKey(get_ce_key_path(user_id));
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000685 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100686 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000687 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100688}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800689
Paul Crowley76107cb2016-02-09 10:04:39 +0000690static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700691 if (chmod(path.c_str(), 0000) != 0) {
692 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000693 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700694 }
695#if EMULATED_USES_SELINUX
696 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
697 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000698 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700699 }
700#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000701 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700702}
703
Paul Crowley76107cb2016-02-09 10:04:39 +0000704static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700705 if (chmod(path.c_str(), mode) != 0) {
706 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000707 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000708 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700709 }
710#if EMULATED_USES_SELINUX
711 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
712 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000713 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000714 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700715 }
716#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000717 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700718}
719
Paul Crowleydf528a72016-03-09 09:31:37 -0800720static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000721 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800722 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000723 return true;
724 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800725 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800726 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000727 return false;
728 }
729 return true;
730}
731
Paul Crowleyd4023892016-05-10 20:36:43 +0000732bool e4crypt_change_user_key(userid_t user_id, int serial, const char* token_hex,
733 const char* old_secret_hex, const char* new_secret_hex) {
734 LOG(DEBUG) << "e4crypt_change_user_key " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800735 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000736 if (!e4crypt_is_native()) return true;
737 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleyd4023892016-05-10 20:36:43 +0000738 std::string token, old_secret, new_secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800739 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000740 if (!parse_hex(old_secret_hex, &old_secret)) return false;
741 if (!parse_hex(new_secret_hex, &new_secret)) return false;
742 auto old_auth = old_secret.empty() ? kEmptyAuthentication
743 : android::vold::KeyAuthentication(token, old_secret);
744 auto new_auth = new_secret.empty() ? kEmptyAuthentication
745 : android::vold::KeyAuthentication(token, new_secret);
Paul Crowley05720802016-02-08 15:55:41 +0000746 auto it = s_ce_keys.find(user_id);
747 if (it == s_ce_keys.end()) {
748 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000749 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000750 }
751 auto ce_key = it->second;
Paul Crowleyd4023892016-05-10 20:36:43 +0000752 auto ce_key_path = get_ce_key_path(user_id);
753 std::string trial_key;
754 if (!android::vold::retrieveKey(ce_key_path, old_auth, &trial_key)) {
755 LOG(WARNING) << "change_user_key wasn't given enough info to reconstruct the key";
756 } else if (ce_key != trial_key) {
757 LOG(WARNING) << "Reconstructed key != stored key";
Paul Crowleyad2eb642016-02-10 17:56:05 +0000758 }
Paul Crowleyd4023892016-05-10 20:36:43 +0000759 android::vold::destroyKey(ce_key_path);
760 if (!store_key(ce_key_path, user_key_temp, new_auth, ce_key)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000761 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000762}
763
Jeff Sharkey47695b22016-02-01 17:02:29 -0700764// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800765bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
766 const char* secret_hex) {
767 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
768 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700769 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000770 if (s_ce_key_raw_refs.count(user_id) != 0) {
771 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000772 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000773 }
774 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800775 if (!parse_hex(token_hex, &token)) return false;
776 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000777 android::vold::KeyAuthentication auth(token, secret);
778 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000779 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000780 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800781 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700782 } else {
783 // When in emulation mode, we just use chmod. However, we also
784 // unlock directories when not in emulation mode, to bring devices
785 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000786 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800787 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600788 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
789 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700790 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000791 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700792 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800793 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000794 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800795}
796
Jeff Sharkey47695b22016-02-01 17:02:29 -0700797// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000798bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700799 if (e4crypt_is_native()) {
800 // TODO: remove from kernel keyring
801 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800802 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000803 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800804 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600805 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
806 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000807 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000808 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800809 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800810 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700811
Paul Crowley76107cb2016-02-09 10:04:39 +0000812 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800813}
814
Paul Crowleydf528a72016-03-09 09:31:37 -0800815bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600816 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700817 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800818 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700819
820 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600821 // DE_sys key
822 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
823 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
824 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
825 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
826
827 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700828 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
829 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
830 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
831
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600832 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
833#if MANAGE_MISC_DIRS
834 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
835 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
836#endif
837 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
838 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
839
Paul Crowley76107cb2016-02-09 10:04:39 +0000840 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
841 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
842 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000843
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600844 // For now, FBE is only supported on internal storage
845 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700846 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800847 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000848 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
849 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
850 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700851 }
Paul Crowley285956f2016-01-20 13:12:38 +0000852 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800853
Jeff Sharkey47695b22016-02-01 17:02:29 -0700854 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600855 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700856 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
857 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600858 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
859 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800860
Paul Crowley76107cb2016-02-09 10:04:39 +0000861 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
862 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
863 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
864 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700865
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600866 // For now, FBE is only supported on internal storage
867 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700868 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800869 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000870 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
871 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
872 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
873 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700874 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800875 }
876
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
880bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
881 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
882 << ", user " << user_id << ", flags " << flags;
883 bool res = true;
884
885 if (flags & FLAG_STORAGE_DE) {
886 // DE_sys key
887 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
888 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
889 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
890 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
891
892 // DE_n key
893 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
894 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
895 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
896
897 if (volume_uuid == nullptr) {
898 res &= destroy_dir(system_legacy_path);
899#if MANAGE_MISC_DIRS
900 res &= destroy_dir(misc_legacy_path);
901#endif
902 res &= destroy_dir(profiles_de_path);
903 res &= destroy_dir(foreign_de_path);
904 res &= destroy_dir(system_de_path);
905 res &= destroy_dir(misc_de_path);
906 }
907 res &= destroy_dir(user_de_path);
908 }
909
910 if (flags & FLAG_STORAGE_CE) {
911 // CE_n key
912 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
913 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
914 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
915 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
916
917 if (volume_uuid == nullptr) {
918 res &= destroy_dir(system_ce_path);
919 res &= destroy_dir(misc_ce_path);
920 }
921 res &= destroy_dir(media_ce_path);
922 res &= destroy_dir(user_ce_path);
923 }
924
925 return res;
926}