Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1 | /* |
| 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 Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 17 | #include "Ext4Crypt.h" |
| 18 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 19 | #include "KeyStorage.h" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 20 | #include "Utils.h" |
| 21 | |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 22 | #include <iomanip> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 23 | #include <map> |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 24 | #include <set> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 25 | #include <string> |
| 26 | #include <sstream> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 27 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 28 | #include <stdio.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 29 | #include <errno.h> |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 30 | #include <dirent.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 31 | #include <sys/mount.h> |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 32 | #include <sys/types.h> |
| 33 | #include <sys/stat.h> |
| 34 | #include <fcntl.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 35 | #include <cutils/properties.h> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 36 | #include <openssl/sha.h> |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 37 | #include <selinux/android.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 38 | |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 39 | #include <private/android_filesystem_config.h> |
| 40 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 41 | #include "key_control.h" |
| 42 | #include "cryptfs.h" |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 43 | #include "ext4_crypt.h" |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 44 | |
| 45 | #define LOG_TAG "Ext4Crypt" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 46 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 47 | #define EMULATED_USES_SELINUX 0 |
| 48 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 49 | #include <cutils/fs.h> |
| 50 | #include <cutils/log.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 51 | #include <cutils/klog.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 52 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 53 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 54 | #include <android-base/logging.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 55 | #include <android-base/stringprintf.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 56 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 57 | using android::base::StringPrintf; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 58 | using android::vold::kEmptyAuthentication; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 59 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 60 | // NOTE: keep in sync with StorageManager |
| 61 | static constexpr int FLAG_STORAGE_DE = 1 << 0; |
| 62 | static constexpr int FLAG_STORAGE_CE = 1 << 1; |
| 63 | |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 64 | static bool e4crypt_is_native() { |
| 65 | char value[PROPERTY_VALUE_MAX]; |
| 66 | property_get("ro.crypto.type", value, "none"); |
| 67 | return !strcmp(value, "file"); |
| 68 | } |
| 69 | |
| 70 | static bool e4crypt_is_emulated() { |
| 71 | return property_get_bool("persist.sys.emulate_fbe", false); |
| 72 | } |
Jeff Sharkey | c79fb89 | 2015-11-12 20:18:02 -0800 | [diff] [blame] | 73 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 74 | static const char* escape_null(const char* value) { |
| 75 | return (value == nullptr) ? "null" : value; |
| 76 | } |
| 77 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 78 | namespace { |
| 79 | // Key length in bits |
| 80 | const int key_length = 128; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 81 | static_assert(key_length % 8 == 0, |
| 82 | "Key length must be multiple of 8 bits"); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 83 | |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 84 | const std::string device_key_leaf = "/unencrypted/key"; |
| 85 | const std::string device_key_temp = "/unencrypted/temp"; |
| 86 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 87 | const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys"; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 88 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 89 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 90 | bool s_enabled = false; |
| 91 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 92 | // Some users are ephemeral, don't try to wipe their keys from disk |
| 93 | std::set<userid_t> s_ephemeral_users; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 94 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 95 | // Map user ids to key references |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 96 | std::map<userid_t, std::string> s_de_key_raw_refs; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 97 | std::map<userid_t, std::string> s_ce_key_raw_refs; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 98 | // TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory. |
| 99 | // See b/26948053 |
| 100 | std::map<userid_t, std::string> s_ce_keys; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 101 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 102 | // ext4enc:TODO get this const from somewhere good |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 103 | const int EXT4_KEY_DESCRIPTOR_SIZE = 8; |
| 104 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 105 | // ext4enc:TODO Include structure from somewhere sensible |
| 106 | // MUST be in sync with ext4_crypto.c in kernel |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 107 | const int EXT4_MAX_KEY_SIZE = 64; |
| 108 | const int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 109 | struct ext4_encryption_key { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 110 | uint32_t mode; |
| 111 | char raw[EXT4_MAX_KEY_SIZE]; |
| 112 | uint32_t size; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 113 | }; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Paul Lawrence | f10544d | 2016-02-04 08:18:52 -0800 | [diff] [blame] | 116 | // TODO replace with proper function to test for file encryption |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 117 | int e4crypt_crypto_complete(const char* path) |
| 118 | { |
Paul Lawrence | f10544d | 2016-02-04 08:18:52 -0800 | [diff] [blame] | 119 | return e4crypt_is_native() ? 0 : -1; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 120 | } |
| 121 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 122 | // Get raw keyref - used to make keyname and to pass to ioctl |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 123 | static std::string generate_key_ref(const char* key, int length) |
| 124 | { |
| 125 | SHA512_CTX c; |
| 126 | |
| 127 | SHA512_Init(&c); |
| 128 | SHA512_Update(&c, key, length); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 129 | unsigned char key_ref1[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 130 | SHA512_Final(key_ref1, &c); |
| 131 | |
| 132 | SHA512_Init(&c); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 133 | SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH); |
| 134 | unsigned char key_ref2[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 135 | SHA512_Final(key_ref2, &c); |
| 136 | |
| 137 | return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE); |
| 138 | } |
| 139 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 140 | static ext4_encryption_key fill_key(const std::string &key) |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 141 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 142 | // ext4enc:TODO Currently raw key is required to be of length |
| 143 | // sizeof(ext4_key.raw) == EXT4_MAX_KEY_SIZE, so zero pad to |
| 144 | // this length. Change when kernel bug is fixed. |
| 145 | ext4_encryption_key ext4_key = {EXT4_ENCRYPTION_MODE_AES_256_XTS, |
| 146 | {0}, |
| 147 | sizeof(ext4_key.raw)}; |
| 148 | memset(ext4_key.raw, 0, sizeof(ext4_key.raw)); |
| 149 | static_assert(key_length / 8 <= sizeof(ext4_key.raw), |
| 150 | "Key too long!"); |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 151 | memcpy(ext4_key.raw, &key[0], key.size()); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 152 | return ext4_key; |
| 153 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 154 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 155 | static std::string keyname(const std::string &raw_ref) |
| 156 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 157 | std::ostringstream o; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 158 | o << "ext4:"; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 159 | for (auto i = raw_ref.begin(); i != raw_ref.end(); ++i) { |
| 160 | o << std::hex << std::setw(2) << std::setfill('0') << (int)*i; |
| 161 | } |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 162 | return o.str(); |
| 163 | } |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 164 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 165 | // Get the keyring we store all keys in |
| 166 | static key_serial_t e4crypt_keyring() |
| 167 | { |
| 168 | return keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0); |
| 169 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 170 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 171 | // Install password into global keyring |
| 172 | // Return raw key reference for use in policy |
| 173 | static bool install_key(const std::string &key, std::string &raw_ref) |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 174 | { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 175 | if (key.size() != key_length/8) { |
| 176 | LOG(ERROR) << "Wrong size key " << key.size(); |
| 177 | return false; |
| 178 | } |
| 179 | auto ext4_key = fill_key(key); |
| 180 | raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size); |
| 181 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 182 | key_serial_t device_keyring = e4crypt_keyring(); |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 183 | key_serial_t key_id = add_key("logon", ref.c_str(), |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 184 | (void*)&ext4_key, sizeof(ext4_key), |
| 185 | device_keyring); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 186 | if (key_id == -1) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 187 | PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 188 | return false; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 189 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 190 | LOG(INFO) << "Added key " << key_id << " (" << ref << ") to keyring " |
| 191 | << device_keyring << " in process " << getpid(); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 192 | return true; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 195 | static std::string get_de_key_path(userid_t user_id) { |
| 196 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 197 | } |
| 198 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 199 | static std::string get_ce_key_path(userid_t user_id) { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 200 | return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id); |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 201 | } |
| 202 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 203 | static bool read_and_install_user_ce_key( |
| 204 | userid_t user_id, const android::vold::KeyAuthentication &auth) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 205 | if (s_ce_key_raw_refs.count(user_id) != 0) return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 206 | const auto ce_key_path = get_ce_key_path(user_id); |
| 207 | std::string ce_key; |
| 208 | if (!android::vold::retrieveKey(ce_key_path, auth, ce_key)) return false; |
| 209 | std::string ce_raw_ref; |
| 210 | if (!install_key(ce_key, ce_raw_ref)) return false; |
| 211 | s_ce_keys[user_id] = ce_key; |
| 212 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 213 | LOG(DEBUG) << "Installed ce key for user " << user_id; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 214 | return true; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 215 | } |
| 216 | |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 217 | static bool prepare_dir(const std::string &dir, mode_t mode, uid_t uid, gid_t gid) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 218 | LOG(DEBUG) << "Preparing: " << dir; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 219 | if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) { |
| 220 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 221 | return false; |
| 222 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 223 | return true; |
| 224 | } |
| 225 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 226 | static bool random_key(std::string &key) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 227 | if (android::vold::ReadRandomBytes(key_length / 8, key) != 0) { |
| 228 | // TODO status_t plays badly with PLOG, fix it. |
| 229 | LOG(ERROR) << "Random read failed"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 230 | return false; |
| 231 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 232 | return true; |
| 233 | } |
| 234 | |
| 235 | static bool path_exists(const std::string &path) { |
| 236 | return access(path.c_str(), F_OK) == 0; |
| 237 | } |
| 238 | |
| 239 | // NB this assumes that there is only one thread listening for crypt commands, because |
| 240 | // it creates keys in a fixed location. |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 241 | static bool store_key(const std::string &key_path, |
| 242 | const android::vold::KeyAuthentication &auth, const std::string &key) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 243 | if (path_exists(key_path)) { |
| 244 | LOG(ERROR) << "Already exists, cannot create key at: " << key_path; |
| 245 | return false; |
| 246 | } |
| 247 | if (path_exists(user_key_temp)) { |
| 248 | android::vold::destroyKey(user_key_temp); |
| 249 | } |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 250 | if (!android::vold::storeKey(user_key_temp, auth, key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 251 | if (rename(user_key_temp.c_str(), key_path.c_str()) != 0) { |
| 252 | PLOG(ERROR) << "Unable to move new key to location: " << key_path; |
| 253 | return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 254 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 255 | LOG(DEBUG) << "Created key " << key_path; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 256 | return true; |
| 257 | } |
| 258 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 259 | static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) { |
| 260 | std::string de_key, ce_key; |
| 261 | if (!random_key(de_key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 262 | if (!random_key(ce_key)) return false; |
| 263 | if (create_ephemeral) { |
| 264 | // If the key should be created as ephemeral, don't store it. |
| 265 | s_ephemeral_users.insert(user_id); |
| 266 | } else { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 267 | if (!store_key(get_de_key_path(user_id), kEmptyAuthentication, de_key)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 268 | if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id), |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 269 | 0700, AID_ROOT, AID_ROOT)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 270 | if (!store_key(get_ce_key_path(user_id), kEmptyAuthentication, ce_key)) return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 271 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 272 | std::string de_raw_ref; |
| 273 | if (!install_key(de_key, de_raw_ref)) return false; |
| 274 | s_de_key_raw_refs[user_id] = de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 275 | std::string ce_raw_ref; |
| 276 | if (!install_key(ce_key, ce_raw_ref)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 277 | s_ce_keys[user_id] = ce_key; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 278 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 279 | LOG(DEBUG) << "Created keys for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 280 | return true; |
| 281 | } |
| 282 | |
| 283 | static bool lookup_key_ref(const std::map<userid_t, std::string> &key_map, |
| 284 | userid_t user_id, std::string &raw_ref) { |
| 285 | auto refi = key_map.find(user_id); |
| 286 | if (refi == key_map.end()) { |
| 287 | LOG(ERROR) << "Cannot find key for " << user_id; |
| 288 | return false; |
| 289 | } |
| 290 | raw_ref = refi->second; |
| 291 | return true; |
| 292 | } |
| 293 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 294 | static bool ensure_policy(const std::string &raw_ref, const std::string& path) { |
| 295 | if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 296 | LOG(ERROR) << "Failed to set policy on: " << path; |
| 297 | return false; |
| 298 | } |
| 299 | return true; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 300 | } |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 301 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 302 | static bool is_numeric(const char *name) { |
| 303 | for (const char *p = name; *p != '\0'; p++) { |
| 304 | if (!isdigit(*p)) |
| 305 | return false; |
| 306 | } |
| 307 | return true; |
| 308 | } |
| 309 | |
| 310 | static bool load_all_de_keys() { |
| 311 | auto de_dir = user_key_dir + "/de"; |
| 312 | auto dirp = std::unique_ptr<DIR, int(*)(DIR*)>(opendir(de_dir.c_str()), closedir); |
| 313 | if (!dirp) { |
| 314 | PLOG(ERROR) << "Unable to read de key directory"; |
| 315 | return false; |
| 316 | } |
| 317 | for (;;) { |
| 318 | errno = 0; |
| 319 | auto entry = readdir(dirp.get()); |
| 320 | if (!entry) { |
| 321 | if (errno) { |
| 322 | PLOG(ERROR) << "Unable to read de key directory"; |
| 323 | return false; |
| 324 | } |
| 325 | break; |
| 326 | } |
| 327 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 328 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 329 | continue; |
| 330 | } |
| 331 | userid_t user_id = atoi(entry->d_name); |
| 332 | if (s_de_key_raw_refs.count(user_id) == 0) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 333 | auto key_path = de_dir + "/" + entry->d_name; |
| 334 | std::string key; |
| 335 | if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, key)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 336 | std::string raw_ref; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 337 | if (!install_key(key, raw_ref)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 338 | s_de_key_raw_refs[user_id] = raw_ref; |
| 339 | LOG(DEBUG) << "Installed de key for user " << user_id; |
| 340 | } |
| 341 | } |
| 342 | // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the |
| 343 | // correct policy set on them, and that no rogue ones exist. |
| 344 | return true; |
| 345 | } |
| 346 | |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 347 | int e4crypt_enable(const char* path) |
| 348 | { |
| 349 | LOG(INFO) << "e4crypt_enable"; |
| 350 | |
| 351 | if (s_enabled) { |
| 352 | LOG(INFO) << "Already enabled"; |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | std::string device_key; |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 357 | std::string device_key_path = std::string(path) + device_key_leaf; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 358 | if (!android::vold::retrieveKey(device_key_path, kEmptyAuthentication, device_key)) { |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 359 | LOG(INFO) << "Creating new key"; |
| 360 | if (!random_key(device_key)) { |
| 361 | return -1; |
| 362 | } |
| 363 | |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 364 | std::string key_temp = std::string(path) + device_key_temp; |
| 365 | if (path_exists(key_temp)) { |
| 366 | android::vold::destroyKey(key_temp); |
| 367 | } |
| 368 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 369 | if (!android::vold::storeKey(key_temp, kEmptyAuthentication, device_key)) return false; |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 370 | if (rename(key_temp.c_str(), device_key_path.c_str()) != 0) { |
| 371 | PLOG(ERROR) << "Unable to move new key to location: " |
| 372 | << device_key_path; |
| 373 | return false; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | |
| 377 | std::string device_key_ref; |
| 378 | if (!install_key(device_key, device_key_ref)) { |
| 379 | LOG(ERROR) << "Failed to install device key"; |
| 380 | return -1; |
| 381 | } |
| 382 | |
Paul Lawrence | f10544d | 2016-02-04 08:18:52 -0800 | [diff] [blame] | 383 | std::string ref_filename = std::string("/data") + e4crypt_key_ref; |
| 384 | if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) { |
| 385 | PLOG(ERROR) << "Cannot save key reference"; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 386 | return -1; |
| 387 | } |
| 388 | |
| 389 | s_enabled = true; |
| 390 | return 0; |
| 391 | } |
| 392 | |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 393 | int e4crypt_init_user0() { |
| 394 | LOG(DEBUG) << "e4crypt_init_user0"; |
| 395 | if (e4crypt_is_native()) { |
| 396 | if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 397 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 398 | if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 399 | auto de_path = get_de_key_path(0); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 400 | auto ce_path = get_ce_key_path(0); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 401 | if (!path_exists(de_path) || !path_exists(ce_path)) { |
| 402 | if (path_exists(de_path)) { |
| 403 | android::vold::destroyKey(de_path); // Ignore failure |
| 404 | } |
| 405 | if (path_exists(ce_path)) { |
| 406 | android::vold::destroyKey(ce_path); // Ignore failure |
| 407 | } |
| 408 | if (!create_and_install_user_keys(0, false)) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 409 | } |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 410 | // TODO: switch to loading only DE_0 here once framework makes |
| 411 | // explicit calls to install DE keys for secondary users |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 412 | if (!load_all_de_keys()) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 413 | } |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 414 | // We can only safely prepare DE storage here, since CE keys are probably |
| 415 | // entangled with user credentials. The framework will always prepare CE |
| 416 | // storage once CE keys are installed. |
| 417 | if (e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE) != 0) { |
| 418 | LOG(ERROR) << "Failed to prepare user 0 storage"; |
| 419 | return -1; |
| 420 | } |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 421 | return 0; |
| 422 | } |
| 423 | |
Paul Crowley | 27cbce9 | 2015-12-10 14:51:30 +0000 | [diff] [blame] | 424 | int e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 425 | LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 426 | if (!e4crypt_is_native()) { |
| 427 | return 0; |
| 428 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 429 | // FIXME test for existence of key that is not loaded yet |
| 430 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 431 | LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " |
| 432 | << user_id << " serial " << serial; |
| 433 | // FIXME should we fail the command? |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 434 | return 0; |
| 435 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 436 | if (!create_and_install_user_keys(user_id, ephemeral)) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 437 | return -1; |
| 438 | } |
| 439 | // TODO: create second key for user_de data |
| 440 | return 0; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 441 | } |
| 442 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 443 | static bool evict_key(const std::string &raw_ref) { |
| 444 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 445 | auto key_serial = keyctl_search(e4crypt_keyring(), "logon", ref.c_str(), 0); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 446 | if (keyctl_revoke(key_serial) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 447 | PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 448 | return false; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 449 | } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 450 | LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref; |
| 451 | return true; |
| 452 | } |
| 453 | |
| 454 | int e4crypt_destroy_user_key(userid_t user_id) { |
| 455 | LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")"; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 456 | if (!e4crypt_is_native()) { |
| 457 | return 0; |
| 458 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 459 | bool success = true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 460 | s_ce_keys.erase(user_id); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 461 | std::string raw_ref; |
| 462 | success &= lookup_key_ref(s_ce_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 463 | s_ce_key_raw_refs.erase(user_id); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 464 | success &= lookup_key_ref(s_de_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 465 | s_de_key_raw_refs.erase(user_id); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 466 | auto it = s_ephemeral_users.find(user_id); |
| 467 | if (it != s_ephemeral_users.end()) { |
| 468 | s_ephemeral_users.erase(it); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 469 | } else { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 470 | success &= android::vold::destroyKey(get_ce_key_path(user_id)); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 471 | success &= android::vold::destroyKey(get_de_key_path(user_id)); |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 472 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 473 | return success ? 0 : -1; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 474 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 475 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 476 | static int emulated_lock(const std::string& path) { |
| 477 | if (chmod(path.c_str(), 0000) != 0) { |
| 478 | PLOG(ERROR) << "Failed to chmod " << path; |
| 479 | return -1; |
| 480 | } |
| 481 | #if EMULATED_USES_SELINUX |
| 482 | if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) { |
| 483 | PLOG(WARNING) << "Failed to setfilecon " << path; |
| 484 | return -1; |
| 485 | } |
| 486 | #endif |
| 487 | return 0; |
| 488 | } |
| 489 | |
| 490 | static int emulated_unlock(const std::string& path, mode_t mode) { |
| 491 | if (chmod(path.c_str(), mode) != 0) { |
| 492 | PLOG(ERROR) << "Failed to chmod " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 493 | // FIXME temporary workaround for b/26713622 |
| 494 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 495 | } |
| 496 | #if EMULATED_USES_SELINUX |
| 497 | if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) { |
| 498 | PLOG(WARNING) << "Failed to restorecon " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 499 | // FIXME temporary workaround for b/26713622 |
| 500 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 501 | } |
| 502 | #endif |
| 503 | return 0; |
| 504 | } |
| 505 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 506 | static bool parse_hex(const char *hex, std::string &result) { |
| 507 | if (strcmp("!", hex) == 0) { |
| 508 | result = ""; |
| 509 | return true; |
| 510 | } |
| 511 | if (android::vold::HexToStr(hex, result) != 0) { |
| 512 | LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons |
| 513 | return false; |
| 514 | } |
| 515 | return true; |
| 516 | } |
| 517 | |
| 518 | int e4crypt_change_user_key(userid_t user_id, int serial, |
| 519 | const char* token_hex, const char* old_secret_hex, const char* new_secret_hex) { |
| 520 | LOG(DEBUG) << "e4crypt_change_user_key " << user_id << " serial=" << serial << |
| 521 | " token_present=" << (strcmp(token_hex, "!") != 0); |
| 522 | if (!e4crypt_is_native()) return 0; |
| 523 | if (s_ephemeral_users.count(user_id) != 0) return 0; |
| 524 | std::string token, old_secret, new_secret; |
| 525 | if (!parse_hex(token_hex, token)) return -1; |
| 526 | if (!parse_hex(old_secret_hex, old_secret)) return -1; |
| 527 | if (!parse_hex(new_secret_hex, new_secret)) return -1; |
| 528 | auto auth = new_secret.empty() |
| 529 | ? kEmptyAuthentication |
| 530 | : android::vold::KeyAuthentication(token, new_secret); |
| 531 | auto it = s_ce_keys.find(user_id); |
| 532 | if (it == s_ce_keys.end()) { |
| 533 | LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id; |
| 534 | return -1; |
| 535 | } |
| 536 | auto ce_key = it->second; |
| 537 | auto ce_key_path = get_ce_key_path(user_id); |
| 538 | android::vold::destroyKey(ce_key_path); |
| 539 | if (!store_key(ce_key_path, auth, ce_key)) return -1; |
| 540 | return 0; |
| 541 | } |
| 542 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 543 | // TODO: rename to 'install' for consistency, and take flags to know which keys to install |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 544 | int e4crypt_unlock_user_key(userid_t user_id, int serial, |
| 545 | const char* token_hex, const char* secret_hex) { |
| 546 | LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial << |
| 547 | " token_present=" << (strcmp(token_hex, "!") != 0); |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 548 | if (e4crypt_is_native()) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame^] | 549 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
| 550 | LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id; |
| 551 | return 0; |
| 552 | } |
| 553 | std::string token, secret; |
| 554 | if (!parse_hex(token_hex, token)) return false; |
| 555 | if (!parse_hex(secret_hex, secret)) return false; |
| 556 | android::vold::KeyAuthentication auth(token, secret); |
| 557 | if (!read_and_install_user_ce_key(user_id, auth)) { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 558 | LOG(ERROR) << "Couldn't read key for " << user_id; |
| 559 | return -1; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 560 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 561 | } else { |
| 562 | // When in emulation mode, we just use chmod. However, we also |
| 563 | // unlock directories when not in emulation mode, to bring devices |
| 564 | // back into a known-good state. |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 565 | if (emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) || |
| 566 | emulated_unlock(android::vold::BuildDataMediaPath(nullptr, user_id), 0770) || |
| 567 | emulated_unlock(android::vold::BuildDataUserPath(nullptr, user_id), 0771)) { |
| 568 | LOG(ERROR) << "Failed to unlock user " << user_id; |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 569 | return -1; |
| 570 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 571 | } |
| 572 | return 0; |
| 573 | } |
| 574 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 575 | // TODO: rename to 'evict' for consistency |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 576 | int e4crypt_lock_user_key(userid_t user_id) { |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 577 | if (e4crypt_is_native()) { |
| 578 | // TODO: remove from kernel keyring |
| 579 | } else if (e4crypt_is_emulated()) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 580 | // When in emulation mode, we just use chmod |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 581 | if (emulated_lock(android::vold::BuildDataSystemCePath(user_id)) || |
| 582 | emulated_lock(android::vold::BuildDataMediaPath(nullptr, user_id)) || |
| 583 | emulated_lock(android::vold::BuildDataUserPath(nullptr, user_id))) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 584 | PLOG(ERROR) << "Failed to lock user " << user_id; |
| 585 | return -1; |
| 586 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 587 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 588 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 589 | return 0; |
| 590 | } |
| 591 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 592 | int e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, |
| 593 | int serial, int flags) { |
| 594 | LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid) |
| 595 | << ", user " << user_id << ", serial " << serial << ", flags " << flags; |
| 596 | |
| 597 | if (flags & FLAG_STORAGE_DE) { |
| 598 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
| 599 | auto misc_de_path = android::vold::BuildDataMiscDePath(user_id); |
| 600 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 601 | |
| 602 | if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 603 | if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return -1; |
| 604 | if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 605 | |
| 606 | if (e4crypt_crypto_complete(DATA_MNT_POINT) == 0) { |
| 607 | std::string de_raw_ref; |
| 608 | if (!lookup_key_ref(s_de_key_raw_refs, user_id, de_raw_ref)) return -1; |
| 609 | if (!ensure_policy(de_raw_ref, system_de_path)) return -1; |
| 610 | if (!ensure_policy(de_raw_ref, misc_de_path)) return -1; |
| 611 | if (!ensure_policy(de_raw_ref, user_de_path)) return -1; |
| 612 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 613 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 614 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 615 | if (flags & FLAG_STORAGE_CE) { |
| 616 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 617 | auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id); |
| 618 | auto media_ce_path = android::vold::BuildDataMediaPath(volume_uuid, user_id); |
| 619 | auto user_ce_path = android::vold::BuildDataUserPath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 620 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 621 | if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 622 | if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return -1; |
| 623 | if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return -1; |
| 624 | if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 625 | |
| 626 | if (e4crypt_crypto_complete(DATA_MNT_POINT) == 0) { |
| 627 | std::string ce_raw_ref; |
| 628 | if (!lookup_key_ref(s_ce_key_raw_refs, user_id, ce_raw_ref)) return -1; |
| 629 | if (!ensure_policy(ce_raw_ref, system_ce_path)) return -1; |
| 630 | if (!ensure_policy(ce_raw_ref, misc_ce_path)) return -1; |
| 631 | if (!ensure_policy(ce_raw_ref, media_ce_path)) return -1; |
| 632 | if (!ensure_policy(ce_raw_ref, user_ce_path)) return -1; |
| 633 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 634 | } |
| 635 | |
| 636 | return 0; |
| 637 | } |