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 "unencrypted_properties.h" |
| 42 | #include "key_control.h" |
| 43 | #include "cryptfs.h" |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 44 | #include "ext4_crypt_init_extensions.h" |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 45 | |
| 46 | #define LOG_TAG "Ext4Crypt" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 47 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 48 | #define EMULATED_USES_SELINUX 0 |
| 49 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 50 | #include <cutils/fs.h> |
| 51 | #include <cutils/log.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 52 | #include <cutils/klog.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 53 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 54 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 55 | #include <android-base/logging.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 56 | #include <android-base/stringprintf.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 57 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 58 | // TODO - remove when switch to using keymaster keys for device data |
| 59 | static int e4crypt_check_passwd(const char* path, const char* password); |
| 60 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 61 | using android::base::StringPrintf; |
| 62 | |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 63 | static bool e4crypt_is_native() { |
| 64 | char value[PROPERTY_VALUE_MAX]; |
| 65 | property_get("ro.crypto.type", value, "none"); |
| 66 | return !strcmp(value, "file"); |
| 67 | } |
| 68 | |
| 69 | static bool e4crypt_is_emulated() { |
| 70 | return property_get_bool("persist.sys.emulate_fbe", false); |
| 71 | } |
Jeff Sharkey | c79fb89 | 2015-11-12 20:18:02 -0800 | [diff] [blame] | 72 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 73 | namespace { |
| 74 | // Key length in bits |
| 75 | const int key_length = 128; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 76 | static_assert(key_length % 8 == 0, |
| 77 | "Key length must be multiple of 8 bits"); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 78 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 79 | 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] | 80 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 81 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 82 | bool s_enabled = false; |
| 83 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 84 | // Some users are ephemeral, don't try to wipe their keys from disk |
| 85 | std::set<userid_t> s_ephemeral_users; |
| 86 | // Map user ids to key references |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 87 | std::map<userid_t, std::string> s_de_key_raw_refs; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 88 | std::map<userid_t, std::string> s_ce_key_raw_refs; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 89 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 90 | // ext4enc:TODO get this const from somewhere good |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 91 | const int EXT4_KEY_DESCRIPTOR_SIZE = 8; |
| 92 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 93 | // ext4enc:TODO Include structure from somewhere sensible |
| 94 | // MUST be in sync with ext4_crypto.c in kernel |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 95 | const int EXT4_MAX_KEY_SIZE = 64; |
| 96 | const int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 97 | struct ext4_encryption_key { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 98 | uint32_t mode; |
| 99 | char raw[EXT4_MAX_KEY_SIZE]; |
| 100 | uint32_t size; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | namespace tag { |
| 104 | const char* magic = "magic"; |
| 105 | const char* major_version = "major_version"; |
| 106 | const char* minor_version = "minor_version"; |
| 107 | const char* flags = "flags"; |
| 108 | const char* crypt_type = "crypt_type"; |
| 109 | const char* failed_decrypt_count = "failed_decrypt_count"; |
| 110 | const char* crypto_type_name = "crypto_type_name"; |
| 111 | const char* master_key = "master_key"; |
| 112 | const char* salt = "salt"; |
| 113 | const char* kdf_type = "kdf_type"; |
| 114 | const char* N_factor = "N_factor"; |
| 115 | const char* r_factor = "r_factor"; |
| 116 | const char* p_factor = "p_factor"; |
| 117 | const char* keymaster_blob = "keymaster_blob"; |
| 118 | const char* scrypted_intermediate_key = "scrypted_intermediate_key"; |
| 119 | } |
| 120 | } |
| 121 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 122 | static bool install_key(const std::string &key, std::string &raw_ref); |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 123 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 124 | static int put_crypt_ftr_and_key(const crypt_mnt_ftr& crypt_ftr, |
| 125 | UnencryptedProperties& props) |
| 126 | { |
| 127 | SLOGI("Putting crypt footer"); |
| 128 | |
| 129 | bool success = props.Set<int>(tag::magic, crypt_ftr.magic) |
| 130 | && props.Set<int>(tag::major_version, crypt_ftr.major_version) |
| 131 | && props.Set<int>(tag::minor_version, crypt_ftr.minor_version) |
| 132 | && props.Set<int>(tag::flags, crypt_ftr.flags) |
| 133 | && props.Set<int>(tag::crypt_type, crypt_ftr.crypt_type) |
| 134 | && props.Set<int>(tag::failed_decrypt_count, |
| 135 | crypt_ftr.failed_decrypt_count) |
| 136 | && props.Set<std::string>(tag::crypto_type_name, |
| 137 | std::string(reinterpret_cast<const char*>(crypt_ftr.crypto_type_name))) |
| 138 | && props.Set<std::string>(tag::master_key, |
| 139 | std::string((const char*) crypt_ftr.master_key, |
| 140 | crypt_ftr.keysize)) |
| 141 | && props.Set<std::string>(tag::salt, |
| 142 | std::string((const char*) crypt_ftr.salt, |
| 143 | SALT_LEN)) |
| 144 | && props.Set<int>(tag::kdf_type, crypt_ftr.kdf_type) |
| 145 | && props.Set<int>(tag::N_factor, crypt_ftr.N_factor) |
| 146 | && props.Set<int>(tag::r_factor, crypt_ftr.r_factor) |
| 147 | && props.Set<int>(tag::p_factor, crypt_ftr.p_factor) |
| 148 | && props.Set<std::string>(tag::keymaster_blob, |
| 149 | std::string((const char*) crypt_ftr.keymaster_blob, |
| 150 | crypt_ftr.keymaster_blob_size)) |
| 151 | && props.Set<std::string>(tag::scrypted_intermediate_key, |
| 152 | std::string((const char*) crypt_ftr.scrypted_intermediate_key, |
| 153 | SCRYPT_LEN)); |
| 154 | return success ? 0 : -1; |
| 155 | } |
| 156 | |
| 157 | static int get_crypt_ftr_and_key(crypt_mnt_ftr& crypt_ftr, |
| 158 | const UnencryptedProperties& props) |
| 159 | { |
| 160 | memset(&crypt_ftr, 0, sizeof(crypt_ftr)); |
| 161 | crypt_ftr.magic = props.Get<int>(tag::magic); |
| 162 | crypt_ftr.major_version = props.Get<int>(tag::major_version); |
| 163 | crypt_ftr.minor_version = props.Get<int>(tag::minor_version); |
Paul Lawrence | 0d9cd9e | 2015-05-05 15:58:27 -0700 | [diff] [blame] | 164 | crypt_ftr.ftr_size = sizeof(crypt_ftr); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 165 | crypt_ftr.flags = props.Get<int>(tag::flags); |
| 166 | crypt_ftr.crypt_type = props.Get<int>(tag::crypt_type); |
| 167 | crypt_ftr.failed_decrypt_count = props.Get<int>(tag::failed_decrypt_count); |
| 168 | std::string crypto_type_name = props.Get<std::string>(tag::crypto_type_name); |
| 169 | strlcpy(reinterpret_cast<char*>(crypt_ftr.crypto_type_name), |
| 170 | crypto_type_name.c_str(), |
| 171 | sizeof(crypt_ftr.crypto_type_name)); |
| 172 | std::string master_key = props.Get<std::string>(tag::master_key); |
| 173 | crypt_ftr.keysize = master_key.size(); |
| 174 | if (crypt_ftr.keysize > sizeof(crypt_ftr.master_key)) { |
| 175 | SLOGE("Master key size too long"); |
| 176 | return -1; |
| 177 | } |
| 178 | memcpy(crypt_ftr.master_key, &master_key[0], crypt_ftr.keysize); |
| 179 | std::string salt = props.Get<std::string>(tag::salt); |
| 180 | if (salt.size() != SALT_LEN) { |
| 181 | SLOGE("Salt wrong length"); |
| 182 | return -1; |
| 183 | } |
| 184 | memcpy(crypt_ftr.salt, &salt[0], SALT_LEN); |
| 185 | crypt_ftr.kdf_type = props.Get<int>(tag::kdf_type); |
| 186 | crypt_ftr.N_factor = props.Get<int>(tag::N_factor); |
| 187 | crypt_ftr.r_factor = props.Get<int>(tag::r_factor); |
| 188 | crypt_ftr.p_factor = props.Get<int>(tag::p_factor); |
| 189 | std::string keymaster_blob = props.Get<std::string>(tag::keymaster_blob); |
| 190 | crypt_ftr.keymaster_blob_size = keymaster_blob.size(); |
| 191 | if (crypt_ftr.keymaster_blob_size > sizeof(crypt_ftr.keymaster_blob)) { |
| 192 | SLOGE("Keymaster blob too long"); |
| 193 | return -1; |
| 194 | } |
| 195 | memcpy(crypt_ftr.keymaster_blob, &keymaster_blob[0], |
| 196 | crypt_ftr.keymaster_blob_size); |
| 197 | std::string scrypted_intermediate_key = props.Get<std::string>(tag::scrypted_intermediate_key); |
| 198 | if (scrypted_intermediate_key.size() != SCRYPT_LEN) { |
| 199 | SLOGE("scrypted intermediate key wrong length"); |
| 200 | return -1; |
| 201 | } |
| 202 | memcpy(crypt_ftr.scrypted_intermediate_key, &scrypted_intermediate_key[0], |
| 203 | SCRYPT_LEN); |
| 204 | |
| 205 | return 0; |
| 206 | } |
| 207 | |
| 208 | static UnencryptedProperties GetProps(const char* path) |
| 209 | { |
| 210 | return UnencryptedProperties(path); |
| 211 | } |
| 212 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 213 | int e4crypt_enable(const char* path) |
| 214 | { |
| 215 | // Already enabled? |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 216 | if (s_enabled) { |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | // Not an encryptable device? |
| 221 | UnencryptedProperties key_props = GetProps(path).GetChild(properties::key); |
| 222 | if (!key_props.OK()) { |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | if (key_props.Get<std::string>(tag::master_key).empty()) { |
| 227 | crypt_mnt_ftr ftr; |
| 228 | if (cryptfs_create_default_ftr(&ftr, key_length)) { |
| 229 | SLOGE("Failed to create crypto footer"); |
| 230 | return -1; |
| 231 | } |
| 232 | |
Paul Lawrence | 0d9cd9e | 2015-05-05 15:58:27 -0700 | [diff] [blame] | 233 | // Scrub fields not used by ext4enc |
| 234 | ftr.persist_data_offset[0] = 0; |
| 235 | ftr.persist_data_offset[1] = 0; |
| 236 | ftr.persist_data_size = 0; |
| 237 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 238 | if (put_crypt_ftr_and_key(ftr, key_props)) { |
| 239 | SLOGE("Failed to write crypto footer"); |
| 240 | return -1; |
| 241 | } |
| 242 | |
| 243 | crypt_mnt_ftr ftr2; |
| 244 | if (get_crypt_ftr_and_key(ftr2, key_props)) { |
| 245 | SLOGE("Failed to read crypto footer back"); |
| 246 | return -1; |
| 247 | } |
| 248 | |
| 249 | if (memcmp(&ftr, &ftr2, sizeof(ftr)) != 0) { |
| 250 | SLOGE("Crypto footer not correctly written"); |
Paul Lawrence | 0d9cd9e | 2015-05-05 15:58:27 -0700 | [diff] [blame] | 251 | return -1; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 252 | } |
| 253 | } |
| 254 | |
| 255 | if (!UnencryptedProperties(path).Remove(properties::ref)) { |
| 256 | SLOGE("Failed to remove key ref"); |
| 257 | return -1; |
| 258 | } |
| 259 | |
| 260 | return e4crypt_check_passwd(path, ""); |
| 261 | } |
| 262 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 263 | int e4crypt_crypto_complete(const char* path) |
| 264 | { |
| 265 | SLOGI("ext4 crypto complete called on %s", path); |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 266 | auto key_props = GetProps(path).GetChild(properties::key); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 267 | if (key_props.Get<std::string>(tag::master_key).empty()) { |
| 268 | SLOGI("No master key, so not ext4enc"); |
| 269 | return -1; |
| 270 | } |
| 271 | |
| 272 | return 0; |
| 273 | } |
| 274 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 275 | // Get raw keyref - used to make keyname and to pass to ioctl |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 276 | static std::string generate_key_ref(const char* key, int length) |
| 277 | { |
| 278 | SHA512_CTX c; |
| 279 | |
| 280 | SHA512_Init(&c); |
| 281 | SHA512_Update(&c, key, length); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 282 | unsigned char key_ref1[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 283 | SHA512_Final(key_ref1, &c); |
| 284 | |
| 285 | SHA512_Init(&c); |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 286 | SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH); |
| 287 | unsigned char key_ref2[SHA512_DIGEST_LENGTH]; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 288 | SHA512_Final(key_ref2, &c); |
| 289 | |
| 290 | return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE); |
| 291 | } |
| 292 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 293 | static int e4crypt_check_passwd(const char* path, const char* password) |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 294 | { |
| 295 | SLOGI("e4crypt_check_password"); |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 296 | auto props = GetProps(path); |
Paul Lawrence | a56d313 | 2015-05-04 15:48:24 -0700 | [diff] [blame] | 297 | auto key_props = props.GetChild(properties::key); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 298 | |
| 299 | crypt_mnt_ftr ftr; |
| 300 | if (get_crypt_ftr_and_key(ftr, key_props)) { |
| 301 | SLOGE("Failed to read crypto footer back"); |
| 302 | return -1; |
| 303 | } |
| 304 | |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 305 | unsigned char master_key_bytes[key_length / 8]; |
| 306 | if (cryptfs_get_master_key (&ftr, password, master_key_bytes)){ |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 307 | SLOGI("Incorrect password"); |
Paul Lawrence | c78c71b | 2015-04-14 15:26:29 -0700 | [diff] [blame] | 308 | ftr.failed_decrypt_count++; |
| 309 | if (put_crypt_ftr_and_key(ftr, key_props)) { |
| 310 | SLOGW("Failed to update failed_decrypt_count"); |
| 311 | } |
| 312 | return ftr.failed_decrypt_count; |
| 313 | } |
| 314 | |
| 315 | if (ftr.failed_decrypt_count) { |
| 316 | ftr.failed_decrypt_count = 0; |
| 317 | if (put_crypt_ftr_and_key(ftr, key_props)) { |
| 318 | SLOGW("Failed to reset failed_decrypt_count"); |
| 319 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 320 | } |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 321 | std::string master_key(reinterpret_cast<char*>(master_key_bytes), |
| 322 | sizeof(master_key_bytes)); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 323 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 324 | std::string raw_ref; |
| 325 | if (!install_key(master_key, raw_ref)) { |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 326 | return -1; |
| 327 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 328 | SLOGD("Installed master key"); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 329 | |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 330 | // Save reference to key so we can set policy later |
| 331 | if (!props.Set(properties::ref, raw_ref)) { |
| 332 | SLOGE("Cannot save key reference"); |
| 333 | return -1; |
| 334 | } |
| 335 | |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 336 | s_enabled = true; |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 337 | return 0; |
| 338 | } |
| 339 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 340 | static ext4_encryption_key fill_key(const std::string &key) |
Paul Crowley | f25a35a | 2015-05-06 13:38:53 +0100 | [diff] [blame] | 341 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 342 | // ext4enc:TODO Currently raw key is required to be of length |
| 343 | // sizeof(ext4_key.raw) == EXT4_MAX_KEY_SIZE, so zero pad to |
| 344 | // this length. Change when kernel bug is fixed. |
| 345 | ext4_encryption_key ext4_key = {EXT4_ENCRYPTION_MODE_AES_256_XTS, |
| 346 | {0}, |
| 347 | sizeof(ext4_key.raw)}; |
| 348 | memset(ext4_key.raw, 0, sizeof(ext4_key.raw)); |
| 349 | static_assert(key_length / 8 <= sizeof(ext4_key.raw), |
| 350 | "Key too long!"); |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 351 | memcpy(ext4_key.raw, &key[0], key.size()); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 352 | return ext4_key; |
| 353 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 354 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 355 | static std::string keyname(const std::string &raw_ref) |
| 356 | { |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 357 | std::ostringstream o; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 358 | o << "ext4:"; |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 359 | for (auto i = raw_ref.begin(); i != raw_ref.end(); ++i) { |
| 360 | o << std::hex << std::setw(2) << std::setfill('0') << (int)*i; |
| 361 | } |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 362 | return o.str(); |
| 363 | } |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 364 | |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 365 | // Get the keyring we store all keys in |
| 366 | static key_serial_t e4crypt_keyring() |
| 367 | { |
| 368 | return keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0); |
| 369 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 370 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 371 | // Install password into global keyring |
| 372 | // Return raw key reference for use in policy |
| 373 | static bool install_key(const std::string &key, std::string &raw_ref) |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 374 | { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 375 | if (key.size() != key_length/8) { |
| 376 | LOG(ERROR) << "Wrong size key " << key.size(); |
| 377 | return false; |
| 378 | } |
| 379 | auto ext4_key = fill_key(key); |
| 380 | raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size); |
| 381 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 382 | key_serial_t device_keyring = e4crypt_keyring(); |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 383 | key_serial_t key_id = add_key("logon", ref.c_str(), |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 384 | (void*)&ext4_key, sizeof(ext4_key), |
| 385 | device_keyring); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 386 | if (key_id == -1) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 387 | PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 388 | return false; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 389 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 390 | LOG(INFO) << "Added key " << key_id << " (" << ref << ") to keyring " |
| 391 | << device_keyring << " in process " << getpid(); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 392 | return true; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 395 | int e4crypt_get_field(const char* path, const char* fieldname, |
| 396 | char* value, size_t len) |
| 397 | { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 398 | auto v = GetProps(path).GetChild(properties::props) |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 399 | .Get<std::string>(fieldname); |
| 400 | |
| 401 | if (v == "") { |
| 402 | return CRYPTO_GETFIELD_ERROR_NO_FIELD; |
| 403 | } |
| 404 | |
| 405 | if (v.length() >= len) { |
| 406 | return CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL; |
| 407 | } |
| 408 | |
| 409 | strlcpy(value, v.c_str(), len); |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | int e4crypt_set_field(const char* path, const char* fieldname, |
| 414 | const char* value) |
| 415 | { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame^] | 416 | return GetProps(path).GetChild(properties::props) |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 417 | .Set(fieldname, std::string(value)) ? 0 : -1; |
| 418 | } |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 419 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 420 | static std::string get_de_key_path(userid_t user_id) { |
| 421 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 422 | } |
| 423 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 424 | static std::string get_ce_key_path(userid_t user_id) { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 425 | 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] | 426 | } |
| 427 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 428 | static bool read_and_install_key(const std::string &key_path, std::string &raw_ref) |
| 429 | { |
| 430 | std::string key; |
| 431 | if (!android::vold::retrieveKey(key_path, key)) return false; |
| 432 | if (!install_key(key, raw_ref)) return false; |
| 433 | return true; |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 434 | } |
| 435 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 436 | static bool read_and_install_user_ce_key(userid_t user_id) |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 437 | { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 438 | if (s_ce_key_raw_refs.count(user_id) != 0) return true; |
| 439 | const auto key_path = get_ce_key_path(user_id); |
| 440 | std::string raw_ref; |
| 441 | if (!read_and_install_key(key_path, raw_ref)) return false; |
| 442 | s_ce_key_raw_refs[user_id] = raw_ref; |
| 443 | LOG(DEBUG) << "Installed ce key for user " << user_id; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 444 | return true; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 447 | 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] | 448 | LOG(DEBUG) << "Preparing: " << dir; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 449 | if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) { |
| 450 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 451 | return false; |
| 452 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 453 | return true; |
| 454 | } |
| 455 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 456 | static bool random_key(std::string &key) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 457 | if (android::vold::ReadRandomBytes(key_length / 8, key) != 0) { |
| 458 | // TODO status_t plays badly with PLOG, fix it. |
| 459 | LOG(ERROR) << "Random read failed"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 460 | return false; |
| 461 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 462 | return true; |
| 463 | } |
| 464 | |
| 465 | static bool path_exists(const std::string &path) { |
| 466 | return access(path.c_str(), F_OK) == 0; |
| 467 | } |
| 468 | |
| 469 | // NB this assumes that there is only one thread listening for crypt commands, because |
| 470 | // it creates keys in a fixed location. |
| 471 | static bool store_key(const std::string &key_path, const std::string &key) { |
| 472 | if (path_exists(key_path)) { |
| 473 | LOG(ERROR) << "Already exists, cannot create key at: " << key_path; |
| 474 | return false; |
| 475 | } |
| 476 | if (path_exists(user_key_temp)) { |
| 477 | android::vold::destroyKey(user_key_temp); |
| 478 | } |
| 479 | if (!android::vold::storeKey(user_key_temp, key)) return false; |
| 480 | if (rename(user_key_temp.c_str(), key_path.c_str()) != 0) { |
| 481 | PLOG(ERROR) << "Unable to move new key to location: " << key_path; |
| 482 | return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 483 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 484 | LOG(DEBUG) << "Created key " << key_path; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 485 | return true; |
| 486 | } |
| 487 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 488 | static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) { |
| 489 | std::string de_key, ce_key; |
| 490 | if (!random_key(de_key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 491 | if (!random_key(ce_key)) return false; |
| 492 | if (create_ephemeral) { |
| 493 | // If the key should be created as ephemeral, don't store it. |
| 494 | s_ephemeral_users.insert(user_id); |
| 495 | } else { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 496 | if (!store_key(get_de_key_path(user_id), de_key)) return false; |
| 497 | if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id), |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 498 | 0700, AID_ROOT, AID_ROOT)) return false; |
| 499 | if (!store_key(get_ce_key_path(user_id), ce_key)) return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 500 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 501 | std::string de_raw_ref; |
| 502 | if (!install_key(de_key, de_raw_ref)) return false; |
| 503 | s_de_key_raw_refs[user_id] = de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 504 | std::string ce_raw_ref; |
| 505 | if (!install_key(ce_key, ce_raw_ref)) return false; |
| 506 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 507 | LOG(DEBUG) << "Created keys for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 508 | return true; |
| 509 | } |
| 510 | |
| 511 | static bool lookup_key_ref(const std::map<userid_t, std::string> &key_map, |
| 512 | userid_t user_id, std::string &raw_ref) { |
| 513 | auto refi = key_map.find(user_id); |
| 514 | if (refi == key_map.end()) { |
| 515 | LOG(ERROR) << "Cannot find key for " << user_id; |
| 516 | return false; |
| 517 | } |
| 518 | raw_ref = refi->second; |
| 519 | return true; |
| 520 | } |
| 521 | |
| 522 | static bool set_policy(const std::string &raw_ref, const std::string& path) { |
| 523 | if (do_policy_set(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) { |
| 524 | LOG(ERROR) << "Failed to set policy on: " << path; |
| 525 | return false; |
| 526 | } |
| 527 | return true; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 528 | } |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 529 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 530 | static bool is_numeric(const char *name) { |
| 531 | for (const char *p = name; *p != '\0'; p++) { |
| 532 | if (!isdigit(*p)) |
| 533 | return false; |
| 534 | } |
| 535 | return true; |
| 536 | } |
| 537 | |
| 538 | static bool load_all_de_keys() { |
| 539 | auto de_dir = user_key_dir + "/de"; |
| 540 | auto dirp = std::unique_ptr<DIR, int(*)(DIR*)>(opendir(de_dir.c_str()), closedir); |
| 541 | if (!dirp) { |
| 542 | PLOG(ERROR) << "Unable to read de key directory"; |
| 543 | return false; |
| 544 | } |
| 545 | for (;;) { |
| 546 | errno = 0; |
| 547 | auto entry = readdir(dirp.get()); |
| 548 | if (!entry) { |
| 549 | if (errno) { |
| 550 | PLOG(ERROR) << "Unable to read de key directory"; |
| 551 | return false; |
| 552 | } |
| 553 | break; |
| 554 | } |
| 555 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 556 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 557 | continue; |
| 558 | } |
| 559 | userid_t user_id = atoi(entry->d_name); |
| 560 | if (s_de_key_raw_refs.count(user_id) == 0) { |
| 561 | std::string raw_ref; |
| 562 | if (!read_and_install_key(de_dir + "/" + entry->d_name, raw_ref)) return false; |
| 563 | s_de_key_raw_refs[user_id] = raw_ref; |
| 564 | LOG(DEBUG) << "Installed de key for user " << user_id; |
| 565 | } |
| 566 | } |
| 567 | // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the |
| 568 | // correct policy set on them, and that no rogue ones exist. |
| 569 | return true; |
| 570 | } |
| 571 | |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 572 | int e4crypt_init_user0() { |
| 573 | LOG(DEBUG) << "e4crypt_init_user0"; |
| 574 | if (e4crypt_is_native()) { |
| 575 | 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] | 576 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 577 | if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return -1; |
| 578 | auto de_path = get_de_key_path(0); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 579 | auto ce_path = get_ce_key_path(0); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 580 | if (!path_exists(de_path) || !path_exists(ce_path)) { |
| 581 | if (path_exists(de_path)) { |
| 582 | android::vold::destroyKey(de_path); // Ignore failure |
| 583 | } |
| 584 | if (path_exists(ce_path)) { |
| 585 | android::vold::destroyKey(ce_path); // Ignore failure |
| 586 | } |
| 587 | if (!create_and_install_user_keys(0, false)) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 588 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 589 | if (!load_all_de_keys()) return -1; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 590 | } |
| 591 | // Ignore failures. FIXME this is horrid |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 592 | // FIXME: we need an idempotent policy-setting call, which simply verifies the |
| 593 | // policy is already set on a second run, even if the directory is nonempty. |
| 594 | // Then we need to call it all the time. |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 595 | e4crypt_prepare_user_storage(nullptr, 0, 0, false); |
| 596 | return 0; |
| 597 | } |
| 598 | |
Paul Crowley | 27cbce9 | 2015-12-10 14:51:30 +0000 | [diff] [blame] | 599 | 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] | 600 | LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 601 | if (!e4crypt_is_native()) { |
| 602 | return 0; |
| 603 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 604 | // FIXME test for existence of key that is not loaded yet |
| 605 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 606 | LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " |
| 607 | << user_id << " serial " << serial; |
| 608 | // FIXME should we fail the command? |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 609 | return 0; |
| 610 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 611 | if (!create_and_install_user_keys(user_id, ephemeral)) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 612 | return -1; |
| 613 | } |
| 614 | // TODO: create second key for user_de data |
| 615 | return 0; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 616 | } |
| 617 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 618 | static bool evict_key(const std::string &raw_ref) { |
| 619 | auto ref = keyname(raw_ref); |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 620 | auto key_serial = keyctl_search(e4crypt_keyring(), "logon", ref.c_str(), 0); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 621 | if (keyctl_revoke(key_serial) != 0) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 622 | PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 623 | return false; |
Paul Crowley | 9336348 | 2015-07-07 15:17:22 +0100 | [diff] [blame] | 624 | } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 625 | LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref; |
| 626 | return true; |
| 627 | } |
| 628 | |
| 629 | int e4crypt_destroy_user_key(userid_t user_id) { |
| 630 | LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")"; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 631 | if (!e4crypt_is_native()) { |
| 632 | return 0; |
| 633 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 634 | bool success = true; |
| 635 | std::string raw_ref; |
| 636 | success &= lookup_key_ref(s_ce_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 637 | success &= lookup_key_ref(s_de_key_raw_refs, user_id, raw_ref) && evict_key(raw_ref); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 638 | auto it = s_ephemeral_users.find(user_id); |
| 639 | if (it != s_ephemeral_users.end()) { |
| 640 | s_ephemeral_users.erase(it); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 641 | } else { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 642 | success &= android::vold::destroyKey(get_ce_key_path(user_id)); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 643 | success &= android::vold::destroyKey(get_de_key_path(user_id)); |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 644 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 645 | return success ? 0 : -1; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 646 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 647 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 648 | static int emulated_lock(const std::string& path) { |
| 649 | if (chmod(path.c_str(), 0000) != 0) { |
| 650 | PLOG(ERROR) << "Failed to chmod " << path; |
| 651 | return -1; |
| 652 | } |
| 653 | #if EMULATED_USES_SELINUX |
| 654 | if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) { |
| 655 | PLOG(WARNING) << "Failed to setfilecon " << path; |
| 656 | return -1; |
| 657 | } |
| 658 | #endif |
| 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | static int emulated_unlock(const std::string& path, mode_t mode) { |
| 663 | if (chmod(path.c_str(), mode) != 0) { |
| 664 | PLOG(ERROR) << "Failed to chmod " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 665 | // FIXME temporary workaround for b/26713622 |
| 666 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 667 | } |
| 668 | #if EMULATED_USES_SELINUX |
| 669 | if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) { |
| 670 | PLOG(WARNING) << "Failed to restorecon " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 671 | // FIXME temporary workaround for b/26713622 |
| 672 | if (e4crypt_is_emulated()) return -1; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 673 | } |
| 674 | #endif |
| 675 | return 0; |
| 676 | } |
| 677 | |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 678 | int e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token) { |
| 679 | LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " " << (token != nullptr); |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 680 | if (e4crypt_is_native()) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 681 | if (!read_and_install_user_ce_key(user_id)) { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 682 | LOG(ERROR) << "Couldn't read key for " << user_id; |
| 683 | return -1; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 684 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 685 | } else { |
| 686 | // When in emulation mode, we just use chmod. However, we also |
| 687 | // unlock directories when not in emulation mode, to bring devices |
| 688 | // back into a known-good state. |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 689 | if (emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) || |
| 690 | emulated_unlock(android::vold::BuildDataMediaPath(nullptr, user_id), 0770) || |
| 691 | emulated_unlock(android::vold::BuildDataUserPath(nullptr, user_id), 0771)) { |
| 692 | LOG(ERROR) << "Failed to unlock user " << user_id; |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 693 | return -1; |
| 694 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 695 | } |
| 696 | return 0; |
| 697 | } |
| 698 | |
| 699 | int e4crypt_lock_user_key(userid_t user_id) { |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 700 | if (e4crypt_is_native()) { |
| 701 | // TODO: remove from kernel keyring |
| 702 | } else if (e4crypt_is_emulated()) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 703 | // When in emulation mode, we just use chmod |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 704 | if (emulated_lock(android::vold::BuildDataSystemCePath(user_id)) || |
| 705 | emulated_lock(android::vold::BuildDataMediaPath(nullptr, user_id)) || |
| 706 | emulated_lock(android::vold::BuildDataUserPath(nullptr, user_id))) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 707 | PLOG(ERROR) << "Failed to lock user " << user_id; |
| 708 | return -1; |
| 709 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 710 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 711 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 712 | return 0; |
| 713 | } |
| 714 | |
Lenka Trochtova | 9ad4369 | 2015-12-11 13:27:26 +0100 | [diff] [blame] | 715 | int e4crypt_prepare_user_storage(const char* volume_uuid, |
| 716 | userid_t user_id, |
| 717 | int serial, |
| 718 | bool ephemeral) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 719 | if (volume_uuid) { |
| 720 | LOG(DEBUG) << "e4crypt_prepare_user_storage " << volume_uuid << " " << user_id; |
| 721 | } else { |
| 722 | LOG(DEBUG) << "e4crypt_prepare_user_storage, null volume " << user_id; |
| 723 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 724 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 725 | auto media_ce_path = android::vold::BuildDataMediaPath(volume_uuid, user_id); |
| 726 | auto user_ce_path = android::vold::BuildDataUserPath(volume_uuid, user_id); |
| 727 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 728 | |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 729 | // FIXME: should this be 0770 or 0700? |
| 730 | if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return -1; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 731 | if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return -1; |
| 732 | if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
| 733 | if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return -1; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 734 | |
| 735 | if (e4crypt_crypto_complete(DATA_MNT_POINT) == 0) { |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 736 | std::string ce_raw_ref, de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 737 | if (!lookup_key_ref(s_ce_key_raw_refs, user_id, ce_raw_ref)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 738 | if (!lookup_key_ref(s_de_key_raw_refs, user_id, de_raw_ref)) return -1; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 739 | if (!set_policy(ce_raw_ref, system_ce_path)) return -1; |
| 740 | if (!set_policy(ce_raw_ref, media_ce_path)) return -1; |
| 741 | if (!set_policy(ce_raw_ref, user_ce_path)) return -1; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 742 | if (!set_policy(de_raw_ref, user_de_path)) return -1; |
| 743 | // FIXME I thought there were more DE directories than this |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | return 0; |
| 747 | } |