blob: b18202d2fe55d13fc73a2d7f514da89a583b42bc [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 <string>
26#include <sstream>
Paul Lawrence731a7a22015-04-28 22:14:15 +000027
Paul Crowleyb1f3d242016-01-28 10:09:46 +000028#include <stdio.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000029#include <errno.h>
Paul Crowley95376d62015-05-06 15:04:43 +010030#include <dirent.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031#include <sys/mount.h>
Paul Crowley95376d62015-05-06 15:04:43 +010032#include <sys/types.h>
33#include <sys/stat.h>
34#include <fcntl.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000035#include <cutils/properties.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070036#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070037#include <selinux/android.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000038
Paul Crowley480fcd22015-08-24 14:53:28 +010039#include <private/android_filesystem_config.h>
40
Paul Lawrence731a7a22015-04-28 22:14:15 +000041#include "key_control.h"
42#include "cryptfs.h"
Jeff Sharkey47695b22016-02-01 17:02:29 -070043#include "ext4_crypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000044
45#define LOG_TAG "Ext4Crypt"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080046
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
48
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
50#include <cutils/log.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000051#include <cutils/klog.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080052
Elliott Hughes7e128fb2015-12-04 15:50:53 -080053#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080054#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080055#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000056
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080057using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000058using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080059
Jeff Sharkey47695b22016-02-01 17:02:29 -070060// NOTE: keep in sync with StorageManager
61static constexpr int FLAG_STORAGE_DE = 1 << 0;
62static constexpr int FLAG_STORAGE_CE = 1 << 1;
63
Paul Lawrence731a7a22015-04-28 22:14:15 +000064namespace {
65 // Key length in bits
66 const int key_length = 128;
Paul Lawrencefd7db732015-04-10 07:48:51 -070067 static_assert(key_length % 8 == 0,
68 "Key length must be multiple of 8 bits");
Paul Lawrence731a7a22015-04-28 22:14:15 +000069
Paul Crowley38132a12016-02-09 09:50:32 +000070 const std::string device_key_dir = std::string() + DATA_MNT_POINT + "/unencrypted";
71 const std::string device_key_path = device_key_dir + "/key";
72 const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080073
Paul Crowley285956f2016-01-20 13:12:38 +000074 const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
Paul Crowleyb1f3d242016-01-28 10:09:46 +000075 const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000076
Paul Crowley38132a12016-02-09 09:50:32 +000077 bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080078
Paul Crowleyb1f3d242016-01-28 10:09:46 +000079 // Some users are ephemeral, don't try to wipe their keys from disk
80 std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080081
Paul Crowleyb1f3d242016-01-28 10:09:46 +000082 // Map user ids to key references
Paul Crowleyb92f83c2016-02-01 14:10:43 +000083 std::map<userid_t, std::string> s_de_key_raw_refs;
Paul Crowleyb1f3d242016-01-28 10:09:46 +000084 std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley05720802016-02-08 15:55:41 +000085 // TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory.
86 // See b/26948053
87 std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000088
Paul Crowley285956f2016-01-20 13:12:38 +000089 // ext4enc:TODO get this const from somewhere good
Paul Lawrencefd7db732015-04-10 07:48:51 -070090 const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
91
Paul Lawrence731a7a22015-04-28 22:14:15 +000092 // ext4enc:TODO Include structure from somewhere sensible
93 // MUST be in sync with ext4_crypto.c in kernel
Paul Lawrencefd7db732015-04-10 07:48:51 -070094 const int EXT4_MAX_KEY_SIZE = 64;
95 const int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
Paul Lawrence731a7a22015-04-28 22:14:15 +000096 struct ext4_encryption_key {
Paul Lawrencefd7db732015-04-10 07:48:51 -070097 uint32_t mode;
98 char raw[EXT4_MAX_KEY_SIZE];
99 uint32_t size;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000100 };
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101}
102
Paul Lawrencef10544d2016-02-04 08:18:52 -0800103// TODO replace with proper function to test for file encryption
Paul Crowley38132a12016-02-09 09:50:32 +0000104bool e4crypt_is_native() {
105 char value[PROPERTY_VALUE_MAX];
106 property_get("ro.crypto.type", value, "none");
107 return !strcmp(value, "file");
108}
109
110static bool e4crypt_is_emulated() {
111 return property_get_bool("persist.sys.emulate_fbe", false);
112}
113
114static const char* escape_null(const char* value) {
115 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000116}
117
Paul Crowley93363482015-07-07 15:17:22 +0100118// Get raw keyref - used to make keyname and to pass to ioctl
Paul Lawrencefd7db732015-04-10 07:48:51 -0700119static std::string generate_key_ref(const char* key, int length)
120{
121 SHA512_CTX c;
122
123 SHA512_Init(&c);
124 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000125 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700126 SHA512_Final(key_ref1, &c);
127
128 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000129 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
130 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700131 SHA512_Final(key_ref2, &c);
132
133 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
134}
135
Paul Crowley93363482015-07-07 15:17:22 +0100136static ext4_encryption_key fill_key(const std::string &key)
Paul Crowleyf25a35a2015-05-06 13:38:53 +0100137{
Paul Lawrencefd7db732015-04-10 07:48:51 -0700138 // ext4enc:TODO Currently raw key is required to be of length
139 // sizeof(ext4_key.raw) == EXT4_MAX_KEY_SIZE, so zero pad to
140 // this length. Change when kernel bug is fixed.
141 ext4_encryption_key ext4_key = {EXT4_ENCRYPTION_MODE_AES_256_XTS,
142 {0},
143 sizeof(ext4_key.raw)};
144 memset(ext4_key.raw, 0, sizeof(ext4_key.raw));
145 static_assert(key_length / 8 <= sizeof(ext4_key.raw),
146 "Key too long!");
Paul Crowley95376d62015-05-06 15:04:43 +0100147 memcpy(ext4_key.raw, &key[0], key.size());
Paul Crowley93363482015-07-07 15:17:22 +0100148 return ext4_key;
149}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000150
Paul Crowley93363482015-07-07 15:17:22 +0100151static std::string keyname(const std::string &raw_ref)
152{
Paul Lawrencefd7db732015-04-10 07:48:51 -0700153 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100154 o << "ext4:";
Paul Lawrencefd7db732015-04-10 07:48:51 -0700155 for (auto i = raw_ref.begin(); i != raw_ref.end(); ++i) {
156 o << std::hex << std::setw(2) << std::setfill('0') << (int)*i;
157 }
Paul Crowley93363482015-07-07 15:17:22 +0100158 return o.str();
159}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700160
Paul Crowley93363482015-07-07 15:17:22 +0100161// Get the keyring we store all keys in
162static key_serial_t e4crypt_keyring()
163{
164 return keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
165}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000166
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000167// Install password into global keyring
168// Return raw key reference for use in policy
169static bool install_key(const std::string &key, std::string &raw_ref)
Paul Crowley93363482015-07-07 15:17:22 +0100170{
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000171 if (key.size() != key_length/8) {
172 LOG(ERROR) << "Wrong size key " << key.size();
173 return false;
174 }
175 auto ext4_key = fill_key(key);
176 raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
177 auto ref = keyname(raw_ref);
Paul Crowley93363482015-07-07 15:17:22 +0100178 key_serial_t device_keyring = e4crypt_keyring();
Paul Lawrencefd7db732015-04-10 07:48:51 -0700179 key_serial_t key_id = add_key("logon", ref.c_str(),
Paul Lawrence731a7a22015-04-28 22:14:15 +0000180 (void*)&ext4_key, sizeof(ext4_key),
181 device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000182 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000183 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000184 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000185 }
Paul Crowley285956f2016-01-20 13:12:38 +0000186 LOG(INFO) << "Added key " << key_id << " (" << ref << ") to keyring "
187 << device_keyring << " in process " << getpid();
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000188 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000189}
190
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000191static std::string get_de_key_path(userid_t user_id) {
192 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
193}
194
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000195static std::string get_ce_key_path(userid_t user_id) {
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000196 return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id);
Paul Crowleyb33e8872015-05-19 12:34:09 +0100197}
198
Paul Crowley05720802016-02-08 15:55:41 +0000199static bool read_and_install_user_ce_key(
200 userid_t user_id, const android::vold::KeyAuthentication &auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000201 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000202 const auto ce_key_path = get_ce_key_path(user_id);
203 std::string ce_key;
204 if (!android::vold::retrieveKey(ce_key_path, auth, ce_key)) return false;
205 std::string ce_raw_ref;
206 if (!install_key(ce_key, ce_raw_ref)) return false;
207 s_ce_keys[user_id] = ce_key;
208 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000209 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000210 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000211}
212
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000213static bool prepare_dir(const std::string &dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000214 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000215 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
216 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000217 return false;
218 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000219 return true;
220}
221
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000222static bool random_key(std::string &key) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000223 if (android::vold::ReadRandomBytes(key_length / 8, key) != 0) {
224 // TODO status_t plays badly with PLOG, fix it.
225 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000226 return false;
227 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000228 return true;
229}
230
231static bool path_exists(const std::string &path) {
232 return access(path.c_str(), F_OK) == 0;
233}
234
235// NB this assumes that there is only one thread listening for crypt commands, because
236// it creates keys in a fixed location.
Paul Crowley38132a12016-02-09 09:50:32 +0000237static bool store_key(const std::string &key_path, const std::string &tmp_path,
Paul Crowley05720802016-02-08 15:55:41 +0000238 const android::vold::KeyAuthentication &auth, const std::string &key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000239 if (path_exists(key_path)) {
240 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
241 return false;
242 }
Paul Crowley38132a12016-02-09 09:50:32 +0000243 if (path_exists(tmp_path)) {
244 android::vold::destroyKey(tmp_path);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000245 }
Paul Crowley38132a12016-02-09 09:50:32 +0000246 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
247 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000248 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
249 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100250 }
Paul Crowley285956f2016-01-20 13:12:38 +0000251 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100252 return true;
253}
254
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000255static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
256 std::string de_key, ce_key;
257 if (!random_key(de_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000258 if (!random_key(ce_key)) return false;
259 if (create_ephemeral) {
260 // If the key should be created as ephemeral, don't store it.
261 s_ephemeral_users.insert(user_id);
262 } else {
Paul Crowley38132a12016-02-09 09:50:32 +0000263 if (!store_key(get_de_key_path(user_id), user_key_temp,
264 kEmptyAuthentication, de_key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000265 if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id),
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000266 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000267 if (!store_key(get_ce_key_path(user_id), user_key_temp,
268 kEmptyAuthentication, ce_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100269 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000270 std::string de_raw_ref;
271 if (!install_key(de_key, de_raw_ref)) return false;
272 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000273 std::string ce_raw_ref;
274 if (!install_key(ce_key, ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000275 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000276 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000277 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000278 return true;
279}
280
281static bool lookup_key_ref(const std::map<userid_t, std::string> &key_map,
282 userid_t user_id, std::string &raw_ref) {
283 auto refi = key_map.find(user_id);
284 if (refi == key_map.end()) {
285 LOG(ERROR) << "Cannot find key for " << user_id;
286 return false;
287 }
288 raw_ref = refi->second;
289 return true;
290}
291
Jeff Sharkey47695b22016-02-01 17:02:29 -0700292static bool ensure_policy(const std::string &raw_ref, const std::string& path) {
293 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000294 LOG(ERROR) << "Failed to set policy on: " << path;
295 return false;
296 }
297 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100298}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100299
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000300static bool is_numeric(const char *name) {
301 for (const char *p = name; *p != '\0'; p++) {
302 if (!isdigit(*p))
303 return false;
304 }
305 return true;
306}
307
308static bool load_all_de_keys() {
309 auto de_dir = user_key_dir + "/de";
310 auto dirp = std::unique_ptr<DIR, int(*)(DIR*)>(opendir(de_dir.c_str()), closedir);
311 if (!dirp) {
312 PLOG(ERROR) << "Unable to read de key directory";
313 return false;
314 }
315 for (;;) {
316 errno = 0;
317 auto entry = readdir(dirp.get());
318 if (!entry) {
319 if (errno) {
320 PLOG(ERROR) << "Unable to read de key directory";
321 return false;
322 }
323 break;
324 }
325 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
326 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
327 continue;
328 }
329 userid_t user_id = atoi(entry->d_name);
330 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000331 auto key_path = de_dir + "/" + entry->d_name;
332 std::string key;
333 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000334 std::string raw_ref;
Paul Crowley05720802016-02-08 15:55:41 +0000335 if (!install_key(key, raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000336 s_de_key_raw_refs[user_id] = raw_ref;
337 LOG(DEBUG) << "Installed de key for user " << user_id;
338 }
339 }
340 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
341 // correct policy set on them, and that no rogue ones exist.
342 return true;
343}
344
Paul Crowley38132a12016-02-09 09:50:32 +0000345int e4crypt_initialize_global_de()
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800346{
Paul Crowley38132a12016-02-09 09:50:32 +0000347 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800348
Paul Crowley38132a12016-02-09 09:50:32 +0000349 if (s_global_de_initialized) {
350 LOG(INFO) << "Already initialized";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800351 return 0;
352 }
353
354 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000355 if (path_exists(device_key_path)) {
356 if (!android::vold::retrieveKey(device_key_path,
357 kEmptyAuthentication, device_key)) return -1;
358 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800359 LOG(INFO) << "Creating new key";
Paul Crowley38132a12016-02-09 09:50:32 +0000360 if (!random_key(device_key)) return -1;
361 if (!store_key(device_key_path, device_key_temp,
362 kEmptyAuthentication, device_key)) return -1;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800363 }
364
365 std::string device_key_ref;
366 if (!install_key(device_key, device_key_ref)) {
367 LOG(ERROR) << "Failed to install device key";
368 return -1;
369 }
370
Paul Lawrencef10544d2016-02-04 08:18:52 -0800371 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
372 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
373 PLOG(ERROR) << "Cannot save key reference";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800374 return -1;
375 }
376
Paul Crowley38132a12016-02-09 09:50:32 +0000377 s_global_de_initialized = true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800378 return 0;
379}
380
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000381int e4crypt_init_user0() {
382 LOG(DEBUG) << "e4crypt_init_user0";
383 if (e4crypt_is_native()) {
384 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return -1;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000385 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return -1;
386 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return -1;
387 auto de_path = get_de_key_path(0);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000388 auto ce_path = get_ce_key_path(0);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000389 if (!path_exists(de_path) || !path_exists(ce_path)) {
390 if (path_exists(de_path)) {
391 android::vold::destroyKey(de_path); // Ignore failure
392 }
393 if (path_exists(ce_path)) {
394 android::vold::destroyKey(ce_path); // Ignore failure
395 }
396 if (!create_and_install_user_keys(0, false)) return -1;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000397 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700398 // TODO: switch to loading only DE_0 here once framework makes
399 // explicit calls to install DE keys for secondary users
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000400 if (!load_all_de_keys()) return -1;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000401 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700402 // We can only safely prepare DE storage here, since CE keys are probably
403 // entangled with user credentials. The framework will always prepare CE
404 // storage once CE keys are installed.
405 if (e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE) != 0) {
406 LOG(ERROR) << "Failed to prepare user 0 storage";
407 return -1;
408 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700409
410 // If this is a non-FBE device that recently left an emulated mode,
411 // restore user data directories to known-good state.
412 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700413 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700414 }
415
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000416 return 0;
417}
418
Paul Crowley27cbce92015-12-10 14:51:30 +0000419int e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000420 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000421 if (!e4crypt_is_native()) {
422 return 0;
423 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000424 // FIXME test for existence of key that is not loaded yet
425 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000426 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for "
427 << user_id << " serial " << serial;
428 // FIXME should we fail the command?
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800429 return 0;
430 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000431 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley285956f2016-01-20 13:12:38 +0000432 return -1;
433 }
434 // TODO: create second key for user_de data
435 return 0;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800436}
437
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000438static bool evict_key(const std::string &raw_ref) {
439 auto ref = keyname(raw_ref);
Paul Crowley93363482015-07-07 15:17:22 +0100440 auto key_serial = keyctl_search(e4crypt_keyring(), "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000441 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000442 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000443 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100444 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000445 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
446 return true;
447}
448
449int e4crypt_destroy_user_key(userid_t user_id) {
450 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000451 if (!e4crypt_is_native()) {
452 return 0;
453 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000454 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000455 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000456 std::string raw_ref;
457 success &= lookup_key_ref(s_ce_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000458 s_ce_key_raw_refs.erase(user_id);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000459 success &= lookup_key_ref(s_de_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000460 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000461 auto it = s_ephemeral_users.find(user_id);
462 if (it != s_ephemeral_users.end()) {
463 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000464 } else {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000465 success &= android::vold::destroyKey(get_ce_key_path(user_id));
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000466 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100467 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000468 return success ? 0 : -1;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100469}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800470
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700471static int emulated_lock(const std::string& path) {
472 if (chmod(path.c_str(), 0000) != 0) {
473 PLOG(ERROR) << "Failed to chmod " << path;
474 return -1;
475 }
476#if EMULATED_USES_SELINUX
477 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
478 PLOG(WARNING) << "Failed to setfilecon " << path;
479 return -1;
480 }
481#endif
482 return 0;
483}
484
485static int emulated_unlock(const std::string& path, mode_t mode) {
486 if (chmod(path.c_str(), mode) != 0) {
487 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000488 // FIXME temporary workaround for b/26713622
489 if (e4crypt_is_emulated()) return -1;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700490 }
491#if EMULATED_USES_SELINUX
492 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
493 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000494 // FIXME temporary workaround for b/26713622
495 if (e4crypt_is_emulated()) return -1;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700496 }
497#endif
498 return 0;
499}
500
Paul Crowley05720802016-02-08 15:55:41 +0000501static bool parse_hex(const char *hex, std::string &result) {
502 if (strcmp("!", hex) == 0) {
503 result = "";
504 return true;
505 }
506 if (android::vold::HexToStr(hex, result) != 0) {
507 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
508 return false;
509 }
510 return true;
511}
512
513int e4crypt_change_user_key(userid_t user_id, int serial,
514 const char* token_hex, const char* old_secret_hex, const char* new_secret_hex) {
515 LOG(DEBUG) << "e4crypt_change_user_key " << user_id << " serial=" << serial <<
516 " token_present=" << (strcmp(token_hex, "!") != 0);
517 if (!e4crypt_is_native()) return 0;
518 if (s_ephemeral_users.count(user_id) != 0) return 0;
519 std::string token, old_secret, new_secret;
520 if (!parse_hex(token_hex, token)) return -1;
521 if (!parse_hex(old_secret_hex, old_secret)) return -1;
522 if (!parse_hex(new_secret_hex, new_secret)) return -1;
523 auto auth = new_secret.empty()
524 ? kEmptyAuthentication
525 : android::vold::KeyAuthentication(token, new_secret);
526 auto it = s_ce_keys.find(user_id);
527 if (it == s_ce_keys.end()) {
528 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
529 return -1;
530 }
531 auto ce_key = it->second;
532 auto ce_key_path = get_ce_key_path(user_id);
533 android::vold::destroyKey(ce_key_path);
Paul Crowley38132a12016-02-09 09:50:32 +0000534 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return -1;
Paul Crowley05720802016-02-08 15:55:41 +0000535 return 0;
536}
537
Jeff Sharkey47695b22016-02-01 17:02:29 -0700538// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowley05720802016-02-08 15:55:41 +0000539int e4crypt_unlock_user_key(userid_t user_id, int serial,
540 const char* token_hex, const char* secret_hex) {
541 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial <<
542 " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700543 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000544 if (s_ce_key_raw_refs.count(user_id) != 0) {
545 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
546 return 0;
547 }
548 std::string token, secret;
549 if (!parse_hex(token_hex, token)) return false;
550 if (!parse_hex(secret_hex, secret)) return false;
551 android::vold::KeyAuthentication auth(token, secret);
552 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000553 LOG(ERROR) << "Couldn't read key for " << user_id;
554 return -1;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800555 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700556 } else {
557 // When in emulation mode, we just use chmod. However, we also
558 // unlock directories when not in emulation mode, to bring devices
559 // back into a known-good state.
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700560 if (emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Jeff Sharkey0754a452016-02-08 12:21:42 -0700561 emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700562 emulated_unlock(android::vold::BuildDataMediaPath(nullptr, user_id), 0770) ||
563 emulated_unlock(android::vold::BuildDataUserPath(nullptr, user_id), 0771)) {
564 LOG(ERROR) << "Failed to unlock user " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700565 return -1;
566 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800567 }
568 return 0;
569}
570
Jeff Sharkey47695b22016-02-01 17:02:29 -0700571// TODO: rename to 'evict' for consistency
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800572int e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700573 if (e4crypt_is_native()) {
574 // TODO: remove from kernel keyring
575 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800576 // When in emulation mode, we just use chmod
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700577 if (emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Jeff Sharkey0754a452016-02-08 12:21:42 -0700578 emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700579 emulated_lock(android::vold::BuildDataMediaPath(nullptr, user_id)) ||
580 emulated_lock(android::vold::BuildDataUserPath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000581 LOG(ERROR) << "Failed to lock user " << user_id;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800582 return -1;
583 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800584 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700585
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800586 return 0;
587}
588
Jeff Sharkey47695b22016-02-01 17:02:29 -0700589int e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id,
590 int serial, int flags) {
591 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
592 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
593
594 if (flags & FLAG_STORAGE_DE) {
595 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
596 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
597 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
598
599 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1;
600 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return -1;
601 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1;
602
Paul Crowley38132a12016-02-09 09:50:32 +0000603 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700604 std::string de_raw_ref;
605 if (!lookup_key_ref(s_de_key_raw_refs, user_id, de_raw_ref)) return -1;
606 if (!ensure_policy(de_raw_ref, system_de_path)) return -1;
607 if (!ensure_policy(de_raw_ref, misc_de_path)) return -1;
608 if (!ensure_policy(de_raw_ref, user_de_path)) return -1;
609 }
Paul Crowley285956f2016-01-20 13:12:38 +0000610 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800611
Jeff Sharkey47695b22016-02-01 17:02:29 -0700612 if (flags & FLAG_STORAGE_CE) {
613 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
614 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
615 auto media_ce_path = android::vold::BuildDataMediaPath(volume_uuid, user_id);
616 auto user_ce_path = android::vold::BuildDataUserPath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800617
Jeff Sharkey47695b22016-02-01 17:02:29 -0700618 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1;
619 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return -1;
620 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return -1;
621 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1;
622
Paul Crowley38132a12016-02-09 09:50:32 +0000623 if (e4crypt_is_native()) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700624 std::string ce_raw_ref;
625 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, ce_raw_ref)) return -1;
626 if (!ensure_policy(ce_raw_ref, system_ce_path)) return -1;
627 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return -1;
628 if (!ensure_policy(ce_raw_ref, media_ce_path)) return -1;
629 if (!ensure_policy(ce_raw_ref, user_ce_path)) return -1;
630 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800631 }
632
633 return 0;
634}