Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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 | |
| 17 | /* TO DO: |
| 18 | * 1. Perhaps keep several copies of the encrypted key, in case something |
| 19 | * goes horribly wrong? |
| 20 | * |
| 21 | */ |
| 22 | |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 23 | #define LOG_TAG "Cryptfs" |
| 24 | |
| 25 | #include "cryptfs.h" |
| 26 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 27 | #include "Checkpoint.h" |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 28 | #include "EncryptInplace.h" |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 29 | #include "FsCrypt.h" |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 30 | #include "Keymaster.h" |
| 31 | #include "Process.h" |
| 32 | #include "ScryptParameters.h" |
Paul Crowley | cfe3972 | 2018-10-30 15:59:24 -0700 | [diff] [blame] | 33 | #include "Utils.h" |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 34 | #include "VoldUtil.h" |
| 35 | #include "VolumeManager.h" |
| 36 | #include "secontext.h" |
| 37 | |
Logan Chien | 3f2b122 | 2018-05-02 11:39:03 +0800 | [diff] [blame] | 38 | #include <android-base/properties.h> |
Greg Kaiser | ab1e84a | 2018-12-11 12:40:51 -0800 | [diff] [blame] | 39 | #include <android-base/stringprintf.h> |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 40 | #include <bootloader_message/bootloader_message.h> |
Logan Chien | 3f2b122 | 2018-05-02 11:39:03 +0800 | [diff] [blame] | 41 | #include <cutils/android_reboot.h> |
Logan Chien | 3f2b122 | 2018-05-02 11:39:03 +0800 | [diff] [blame] | 42 | #include <cutils/properties.h> |
Tao Bao | 5a95ddb | 2016-10-05 18:01:19 -0700 | [diff] [blame] | 43 | #include <ext4_utils/ext4_utils.h> |
Logan Chien | 3f2b122 | 2018-05-02 11:39:03 +0800 | [diff] [blame] | 44 | #include <f2fs_sparseblock.h> |
Ken Sumrall | e5032c4 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 45 | #include <fs_mgr.h> |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 46 | #include <fscrypt/fscrypt.h> |
Logan Chien | 3f2b122 | 2018-05-02 11:39:03 +0800 | [diff] [blame] | 47 | #include <hardware_legacy/power.h> |
Logan Chien | 188b0ab | 2018-04-23 13:37:39 +0800 | [diff] [blame] | 48 | #include <log/log.h> |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 49 | #include <logwrap/logwrap.h> |
| 50 | #include <openssl/evp.h> |
| 51 | #include <openssl/sha.h> |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 52 | #include <selinux/selinux.h> |
Logan Chien | d557d76 | 2018-05-02 11:36:45 +0800 | [diff] [blame] | 53 | |
| 54 | #include <ctype.h> |
| 55 | #include <errno.h> |
| 56 | #include <fcntl.h> |
| 57 | #include <inttypes.h> |
| 58 | #include <libgen.h> |
| 59 | #include <linux/dm-ioctl.h> |
| 60 | #include <linux/kdev_t.h> |
| 61 | #include <math.h> |
| 62 | #include <stdio.h> |
| 63 | #include <stdlib.h> |
| 64 | #include <string.h> |
| 65 | #include <sys/ioctl.h> |
| 66 | #include <sys/mount.h> |
| 67 | #include <sys/param.h> |
| 68 | #include <sys/stat.h> |
| 69 | #include <sys/types.h> |
| 70 | #include <sys/wait.h> |
| 71 | #include <time.h> |
| 72 | #include <unistd.h> |
| 73 | |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 74 | extern "C" { |
| 75 | #include <crypto_scrypt.h> |
| 76 | } |
Mark Salyzyn | 3e97127 | 2014-01-21 13:27:04 -0800 | [diff] [blame] | 77 | |
Greg Kaiser | ab1e84a | 2018-12-11 12:40:51 -0800 | [diff] [blame] | 78 | using android::base::StringPrintf; |
Paul Crowley | cfe3972 | 2018-10-30 15:59:24 -0700 | [diff] [blame] | 79 | using namespace std::chrono_literals; |
| 80 | |
Mark Salyzyn | 5eecc44 | 2014-02-12 14:16:14 -0800 | [diff] [blame] | 81 | #define UNUSED __attribute__((unused)) |
| 82 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 83 | #define DM_CRYPT_BUF_SIZE 4096 |
| 84 | |
Jason parks | 70a4b3f | 2011-01-28 10:10:47 -0600 | [diff] [blame] | 85 | #define HASH_COUNT 2000 |
Greg Kaiser | c0de9c7 | 2018-02-14 20:05:54 -0800 | [diff] [blame] | 86 | |
| 87 | constexpr size_t INTERMEDIATE_KEY_LEN_BYTES = 16; |
| 88 | constexpr size_t INTERMEDIATE_IV_LEN_BYTES = 16; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 89 | constexpr size_t INTERMEDIATE_BUF_SIZE = (INTERMEDIATE_KEY_LEN_BYTES + INTERMEDIATE_IV_LEN_BYTES); |
Greg Kaiser | c0de9c7 | 2018-02-14 20:05:54 -0800 | [diff] [blame] | 90 | |
| 91 | // SCRYPT_LEN is used by struct crypt_mnt_ftr for its intermediate key. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 92 | static_assert(INTERMEDIATE_BUF_SIZE == SCRYPT_LEN, "Mismatch of intermediate key sizes"); |
Jason parks | 70a4b3f | 2011-01-28 10:10:47 -0600 | [diff] [blame] | 93 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 94 | #define KEY_IN_FOOTER "footer" |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 95 | |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 96 | #define DEFAULT_PASSWORD "default_password" |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 97 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 98 | #define CRYPTO_BLOCK_DEVICE "userdata" |
| 99 | |
| 100 | #define BREADCRUMB_FILE "/data/misc/vold/convert_fde" |
| 101 | |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 102 | #define EXT4_FS 1 |
JP Abgrall | 62c7af3 | 2014-06-16 13:01:23 -0700 | [diff] [blame] | 103 | #define F2FS_FS 2 |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 104 | |
Ken Sumrall | e919efe | 2012-09-29 17:07:41 -0700 | [diff] [blame] | 105 | #define TABLE_LOAD_RETRIES 10 |
| 106 | |
Shawn Willden | 47ba10d | 2014-09-03 17:07:06 -0600 | [diff] [blame] | 107 | #define RSA_KEY_SIZE 2048 |
| 108 | #define RSA_KEY_SIZE_BYTES (RSA_KEY_SIZE / 8) |
| 109 | #define RSA_EXPONENT 0x10001 |
Shawn Willden | da6e899 | 2015-06-03 09:40:45 -0600 | [diff] [blame] | 110 | #define KEYMASTER_CRYPTFS_RATE_LIMIT 1 // Maximum one try per second |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 111 | |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 112 | #define RETRY_MOUNT_ATTEMPTS 10 |
| 113 | #define RETRY_MOUNT_DELAY_SECONDS 1 |
| 114 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 115 | #define CREATE_CRYPTO_BLK_DEV_FLAGS_ALLOW_ENCRYPT_OVERRIDE (1) |
| 116 | |
Paul Crowley | 7347333 | 2017-11-21 15:43:51 -0800 | [diff] [blame] | 117 | static int put_crypt_ftr_and_key(struct crypt_mnt_ftr* crypt_ftr); |
| 118 | |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 119 | static unsigned char saved_master_key[MAX_KEY_LEN]; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 120 | static char* saved_mount_point; |
| 121 | static int master_key_saved = 0; |
| 122 | static struct crypt_persist_data* persist_data = NULL; |
Ken Sumrall | 56ad03c | 2013-02-13 13:00:19 -0800 | [diff] [blame] | 123 | |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 124 | /* Should we use keymaster? */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 125 | static int keymaster_check_compatibility() { |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 126 | return keymaster_compatibility_cryptfs_scrypt(); |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | /* Create a new keymaster key and store it in this footer */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 130 | static int keymaster_create_key(struct crypt_mnt_ftr* ftr) { |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 131 | if (ftr->keymaster_blob_size) { |
| 132 | SLOGI("Already have key"); |
| 133 | return 0; |
| 134 | } |
| 135 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 136 | int rc = keymaster_create_key_for_cryptfs_scrypt( |
| 137 | RSA_KEY_SIZE, RSA_EXPONENT, KEYMASTER_CRYPTFS_RATE_LIMIT, ftr->keymaster_blob, |
| 138 | KEYMASTER_BLOB_SIZE, &ftr->keymaster_blob_size); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 139 | if (rc) { |
| 140 | if (ftr->keymaster_blob_size > KEYMASTER_BLOB_SIZE) { |
Paul Crowley | 7347333 | 2017-11-21 15:43:51 -0800 | [diff] [blame] | 141 | SLOGE("Keymaster key blob too large"); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 142 | ftr->keymaster_blob_size = 0; |
| 143 | } |
| 144 | SLOGE("Failed to generate keypair"); |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 145 | return -1; |
| 146 | } |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 147 | return 0; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 148 | } |
| 149 | |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 150 | /* This signs the given object using the keymaster key. */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 151 | static int keymaster_sign_object(struct crypt_mnt_ftr* ftr, const unsigned char* object, |
| 152 | const size_t object_size, unsigned char** signature, |
| 153 | size_t* signature_size) { |
Shawn Willden | 47ba10d | 2014-09-03 17:07:06 -0600 | [diff] [blame] | 154 | unsigned char to_sign[RSA_KEY_SIZE_BYTES]; |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 155 | size_t to_sign_size = sizeof(to_sign); |
Shawn Willden | 47ba10d | 2014-09-03 17:07:06 -0600 | [diff] [blame] | 156 | memset(to_sign, 0, RSA_KEY_SIZE_BYTES); |
Shawn Willden | 47ba10d | 2014-09-03 17:07:06 -0600 | [diff] [blame] | 157 | |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 158 | // To sign a message with RSA, the message must satisfy two |
| 159 | // constraints: |
| 160 | // |
| 161 | // 1. The message, when interpreted as a big-endian numeric value, must |
| 162 | // be strictly less than the public modulus of the RSA key. Note |
| 163 | // that because the most significant bit of the public modulus is |
| 164 | // guaranteed to be 1 (else it's an (n-1)-bit key, not an n-bit |
| 165 | // key), an n-bit message with most significant bit 0 always |
| 166 | // satisfies this requirement. |
| 167 | // |
| 168 | // 2. The message must have the same length in bits as the public |
| 169 | // modulus of the RSA key. This requirement isn't mathematically |
| 170 | // necessary, but is necessary to ensure consistency in |
| 171 | // implementations. |
| 172 | switch (ftr->kdf_type) { |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 173 | case KDF_SCRYPT_KEYMASTER: |
| 174 | // This ensures the most significant byte of the signed message |
| 175 | // is zero. We could have zero-padded to the left instead, but |
| 176 | // this approach is slightly more robust against changes in |
| 177 | // object size. However, it's still broken (but not unusably |
Shawn Willden | da6e899 | 2015-06-03 09:40:45 -0600 | [diff] [blame] | 178 | // so) because we really should be using a proper deterministic |
| 179 | // RSA padding function, such as PKCS1. |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 180 | memcpy(to_sign + 1, object, std::min((size_t)RSA_KEY_SIZE_BYTES - 1, object_size)); |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 181 | SLOGI("Signing safely-padded object"); |
| 182 | break; |
| 183 | default: |
| 184 | SLOGE("Unknown KDF type %d", ftr->kdf_type); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 185 | return -1; |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 186 | } |
Paul Crowley | 7347333 | 2017-11-21 15:43:51 -0800 | [diff] [blame] | 187 | for (;;) { |
| 188 | auto result = keymaster_sign_object_for_cryptfs_scrypt( |
| 189 | ftr->keymaster_blob, ftr->keymaster_blob_size, KEYMASTER_CRYPTFS_RATE_LIMIT, to_sign, |
| 190 | to_sign_size, signature, signature_size); |
| 191 | switch (result) { |
| 192 | case KeymasterSignResult::ok: |
| 193 | return 0; |
| 194 | case KeymasterSignResult::upgrade: |
| 195 | break; |
| 196 | default: |
| 197 | return -1; |
| 198 | } |
| 199 | SLOGD("Upgrading key"); |
| 200 | if (keymaster_upgrade_key_for_cryptfs_scrypt( |
| 201 | RSA_KEY_SIZE, RSA_EXPONENT, KEYMASTER_CRYPTFS_RATE_LIMIT, ftr->keymaster_blob, |
| 202 | ftr->keymaster_blob_size, ftr->keymaster_blob, KEYMASTER_BLOB_SIZE, |
| 203 | &ftr->keymaster_blob_size) != 0) { |
| 204 | SLOGE("Failed to upgrade key"); |
| 205 | return -1; |
| 206 | } |
| 207 | if (put_crypt_ftr_and_key(ftr) != 0) { |
| 208 | SLOGE("Failed to write upgraded key to disk"); |
| 209 | } |
| 210 | SLOGD("Key upgraded successfully"); |
| 211 | } |
Shawn Willden | 47ba10d | 2014-09-03 17:07:06 -0600 | [diff] [blame] | 212 | } |
| 213 | |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 214 | /* Store password when userdata is successfully decrypted and mounted. |
| 215 | * Cleared by cryptfs_clear_password |
| 216 | * |
| 217 | * To avoid a double prompt at boot, we need to store the CryptKeeper |
| 218 | * password and pass it to KeyGuard, which uses it to unlock KeyStore. |
| 219 | * Since the entire framework is torn down and rebuilt after encryption, |
| 220 | * we have to use a daemon or similar to store the password. Since vold |
| 221 | * is secured against IPC except from system processes, it seems a reasonable |
| 222 | * place to store this. |
| 223 | * |
| 224 | * password should be cleared once it has been used. |
| 225 | * |
| 226 | * password is aged out after password_max_age_seconds seconds. |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 227 | */ |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 228 | static char* password = 0; |
| 229 | static int password_expiry_time = 0; |
| 230 | static const int password_max_age_seconds = 60; |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 231 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 232 | enum class RebootType { reboot, recovery, shutdown }; |
| 233 | static void cryptfs_reboot(RebootType rt) { |
| 234 | switch (rt) { |
| 235 | case RebootType::reboot: |
| 236 | property_set(ANDROID_RB_PROPERTY, "reboot"); |
| 237 | break; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 238 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 239 | case RebootType::recovery: |
| 240 | property_set(ANDROID_RB_PROPERTY, "reboot,recovery"); |
| 241 | break; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 242 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 243 | case RebootType::shutdown: |
| 244 | property_set(ANDROID_RB_PROPERTY, "shutdown"); |
| 245 | break; |
Ken Sumrall | adfba36 | 2013-06-04 16:37:52 -0700 | [diff] [blame] | 246 | } |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 247 | |
Ken Sumrall | adfba36 | 2013-06-04 16:37:52 -0700 | [diff] [blame] | 248 | sleep(20); |
| 249 | |
| 250 | /* Shouldn't get here, reboot should happen before sleep times out */ |
| 251 | return; |
| 252 | } |
| 253 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 254 | static void ioctl_init(struct dm_ioctl* io, size_t dataSize, const char* name, unsigned flags) { |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 255 | memset(io, 0, dataSize); |
| 256 | io->data_size = dataSize; |
| 257 | io->data_start = sizeof(struct dm_ioctl); |
| 258 | io->version[0] = 4; |
| 259 | io->version[1] = 0; |
| 260 | io->version[2] = 0; |
| 261 | io->flags = flags; |
| 262 | if (name) { |
Marek Pola | 5e6b914 | 2015-02-05 14:22:34 +0100 | [diff] [blame] | 263 | strlcpy(io->name, name, sizeof(io->name)); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 267 | namespace { |
| 268 | |
| 269 | struct CryptoType; |
| 270 | |
| 271 | // Use to get the CryptoType in use on this device. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 272 | const CryptoType& get_crypto_type(); |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 273 | |
| 274 | struct CryptoType { |
| 275 | // We should only be constructing CryptoTypes as part of |
| 276 | // supported_crypto_types[]. We do it via this pseudo-builder pattern, |
| 277 | // which isn't pure or fully protected as a concession to being able to |
| 278 | // do it all at compile time. Add new CryptoTypes in |
| 279 | // supported_crypto_types[] below. |
| 280 | constexpr CryptoType() : CryptoType(nullptr, nullptr, 0xFFFFFFFF) {} |
| 281 | constexpr CryptoType set_keysize(uint32_t size) const { |
| 282 | return CryptoType(this->property_name, this->crypto_name, size); |
| 283 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 284 | constexpr CryptoType set_property_name(const char* property) const { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 285 | return CryptoType(property, this->crypto_name, this->keysize); |
| 286 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 287 | constexpr CryptoType set_crypto_name(const char* crypto) const { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 288 | return CryptoType(this->property_name, crypto, this->keysize); |
| 289 | } |
| 290 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 291 | constexpr const char* get_property_name() const { return property_name; } |
| 292 | constexpr const char* get_crypto_name() const { return crypto_name; } |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 293 | constexpr uint32_t get_keysize() const { return keysize; } |
| 294 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 295 | private: |
| 296 | const char* property_name; |
| 297 | const char* crypto_name; |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 298 | uint32_t keysize; |
| 299 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 300 | constexpr CryptoType(const char* property, const char* crypto, uint32_t ksize) |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 301 | : property_name(property), crypto_name(crypto), keysize(ksize) {} |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 302 | friend const CryptoType& get_crypto_type(); |
| 303 | static const CryptoType& get_device_crypto_algorithm(); |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 304 | }; |
| 305 | |
| 306 | // We only want to parse this read-only property once. But we need to wait |
| 307 | // until the system is initialized before we can read it. So we use a static |
| 308 | // scoped within this function to get it only once. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 309 | const CryptoType& get_crypto_type() { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 310 | static CryptoType crypto_type = CryptoType::get_device_crypto_algorithm(); |
| 311 | return crypto_type; |
| 312 | } |
| 313 | |
| 314 | constexpr CryptoType default_crypto_type = CryptoType() |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 315 | .set_property_name("AES-128-CBC") |
| 316 | .set_crypto_name("aes-cbc-essiv:sha256") |
| 317 | .set_keysize(16); |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 318 | |
| 319 | constexpr CryptoType supported_crypto_types[] = { |
| 320 | default_crypto_type, |
Greg Kaiser | 8cb4c9f | 2018-12-03 11:23:19 -0800 | [diff] [blame] | 321 | CryptoType() |
| 322 | .set_property_name("adiantum") |
| 323 | .set_crypto_name("xchacha12,aes-adiantum-plain64") |
| 324 | .set_keysize(32), |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 325 | // Add new CryptoTypes here. Order is not important. |
| 326 | }; |
| 327 | |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 328 | // ---------- START COMPILE-TIME SANITY CHECK BLOCK ------------------------- |
| 329 | // We confirm all supported_crypto_types have a small enough keysize and |
| 330 | // had both set_property_name() and set_crypto_name() called. |
| 331 | |
| 332 | template <typename T, size_t N> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 333 | constexpr size_t array_length(T (&)[N]) { |
| 334 | return N; |
| 335 | } |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 336 | |
| 337 | constexpr bool indexOutOfBoundsForCryptoTypes(size_t index) { |
| 338 | return (index >= array_length(supported_crypto_types)); |
| 339 | } |
| 340 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 341 | constexpr bool isValidCryptoType(const CryptoType& crypto_type) { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 342 | return ((crypto_type.get_property_name() != nullptr) && |
| 343 | (crypto_type.get_crypto_name() != nullptr) && |
| 344 | (crypto_type.get_keysize() <= MAX_KEY_LEN)); |
| 345 | } |
| 346 | |
| 347 | // Note in C++11 that constexpr functions can only have a single line. |
| 348 | // So our code is a bit convoluted (using recursion instead of a loop), |
| 349 | // but it's asserting at compile time that all of our key lengths are valid. |
| 350 | constexpr bool validateSupportedCryptoTypes(size_t index) { |
| 351 | return indexOutOfBoundsForCryptoTypes(index) || |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 352 | (isValidCryptoType(supported_crypto_types[index]) && |
| 353 | validateSupportedCryptoTypes(index + 1)); |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | static_assert(validateSupportedCryptoTypes(0), |
| 357 | "We have a CryptoType with keysize > MAX_KEY_LEN or which was " |
| 358 | "incompletely constructed."); |
| 359 | // ---------- END COMPILE-TIME SANITY CHECK BLOCK ------------------------- |
| 360 | |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 361 | // Don't call this directly, use get_crypto_type(), which caches this result. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 362 | const CryptoType& CryptoType::get_device_crypto_algorithm() { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 363 | constexpr char CRYPT_ALGO_PROP[] = "ro.crypto.fde_algorithm"; |
| 364 | char paramstr[PROPERTY_VALUE_MAX]; |
| 365 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 366 | property_get(CRYPT_ALGO_PROP, paramstr, default_crypto_type.get_property_name()); |
| 367 | for (auto const& ctype : supported_crypto_types) { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 368 | if (strcmp(paramstr, ctype.get_property_name()) == 0) { |
| 369 | return ctype; |
| 370 | } |
| 371 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 372 | ALOGE("Invalid name (%s) for %s. Defaulting to %s\n", paramstr, CRYPT_ALGO_PROP, |
| 373 | default_crypto_type.get_property_name()); |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 374 | return default_crypto_type; |
| 375 | } |
| 376 | |
| 377 | } // namespace |
| 378 | |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 379 | /** |
| 380 | * Gets the default device scrypt parameters for key derivation time tuning. |
| 381 | * The parameters should lead to about one second derivation time for the |
| 382 | * given device. |
| 383 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 384 | static void get_device_scrypt_params(struct crypt_mnt_ftr* ftr) { |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 385 | char paramstr[PROPERTY_VALUE_MAX]; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 386 | int Nf, rf, pf; |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 387 | |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 388 | property_get(SCRYPT_PROP, paramstr, SCRYPT_DEFAULTS); |
| 389 | if (!parse_scrypt_parameters(paramstr, &Nf, &rf, &pf)) { |
| 390 | SLOGW("bad scrypt parameters '%s' should be like '12:8:1'; using defaults", paramstr); |
| 391 | parse_scrypt_parameters(SCRYPT_DEFAULTS, &Nf, &rf, &pf); |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 392 | } |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 393 | ftr->N_factor = Nf; |
| 394 | ftr->r_factor = rf; |
| 395 | ftr->p_factor = pf; |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 398 | uint32_t cryptfs_get_keysize() { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 399 | return get_crypto_type().get_keysize(); |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 400 | } |
| 401 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 402 | const char* cryptfs_get_crypto_name() { |
Greg Kaiser | 38723f2 | 2018-02-16 13:35:35 -0800 | [diff] [blame] | 403 | return get_crypto_type().get_crypto_name(); |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 404 | } |
| 405 | |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 406 | static uint64_t get_fs_size(char* dev) { |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 407 | int fd, block_size; |
| 408 | struct ext4_super_block sb; |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 409 | uint64_t len; |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 410 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 411 | if ((fd = open(dev, O_RDONLY | O_CLOEXEC)) < 0) { |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 412 | SLOGE("Cannot open device to get filesystem size "); |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | if (lseek64(fd, 1024, SEEK_SET) < 0) { |
| 417 | SLOGE("Cannot seek to superblock"); |
| 418 | return 0; |
| 419 | } |
| 420 | |
| 421 | if (read(fd, &sb, sizeof(sb)) != sizeof(sb)) { |
| 422 | SLOGE("Cannot read superblock"); |
| 423 | return 0; |
| 424 | } |
| 425 | |
| 426 | close(fd); |
| 427 | |
Daniel Rosenberg | e82df16 | 2014-08-15 22:19:23 +0000 | [diff] [blame] | 428 | if (le32_to_cpu(sb.s_magic) != EXT4_SUPER_MAGIC) { |
| 429 | SLOGE("Not a valid ext4 superblock"); |
| 430 | return 0; |
| 431 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 432 | block_size = 1024 << sb.s_log_block_size; |
| 433 | /* compute length in bytes */ |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 434 | len = (((uint64_t)sb.s_blocks_count_hi << 32) + sb.s_blocks_count_lo) * block_size; |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 435 | |
| 436 | /* return length in sectors */ |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 437 | return len / 512; |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 438 | } |
| 439 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 440 | static int get_crypt_ftr_info(char** metadata_fname, off64_t* off) { |
| 441 | static int cached_data = 0; |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 442 | static uint64_t cached_off = 0; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 443 | static char cached_metadata_fname[PROPERTY_VALUE_MAX] = ""; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 444 | char key_loc[PROPERTY_VALUE_MAX]; |
| 445 | char real_blkdev[PROPERTY_VALUE_MAX]; |
| 446 | int rc = -1; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 447 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 448 | if (!cached_data) { |
| 449 | fs_mgr_get_crypt_info(fstab_default, key_loc, real_blkdev, sizeof(key_loc)); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 450 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 451 | if (!strcmp(key_loc, KEY_IN_FOOTER)) { |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 452 | if (android::vold::GetBlockDevSize(real_blkdev, &cached_off) == android::OK) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 453 | /* If it's an encrypted Android partition, the last 16 Kbytes contain the |
| 454 | * encryption info footer and key, and plenty of bytes to spare for future |
| 455 | * growth. |
| 456 | */ |
| 457 | strlcpy(cached_metadata_fname, real_blkdev, sizeof(cached_metadata_fname)); |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 458 | cached_off -= CRYPT_FOOTER_OFFSET; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 459 | cached_data = 1; |
| 460 | } else { |
| 461 | SLOGE("Cannot get size of block device %s\n", real_blkdev); |
| 462 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 463 | } else { |
| 464 | strlcpy(cached_metadata_fname, key_loc, sizeof(cached_metadata_fname)); |
| 465 | cached_off = 0; |
| 466 | cached_data = 1; |
| 467 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 468 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 469 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 470 | if (cached_data) { |
| 471 | if (metadata_fname) { |
| 472 | *metadata_fname = cached_metadata_fname; |
| 473 | } |
| 474 | if (off) { |
| 475 | *off = cached_off; |
| 476 | } |
| 477 | rc = 0; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 478 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 479 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 480 | return rc; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 483 | /* Set sha256 checksum in structure */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 484 | static void set_ftr_sha(struct crypt_mnt_ftr* crypt_ftr) { |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 485 | SHA256_CTX c; |
| 486 | SHA256_Init(&c); |
| 487 | memset(crypt_ftr->sha256, 0, sizeof(crypt_ftr->sha256)); |
| 488 | SHA256_Update(&c, crypt_ftr, sizeof(*crypt_ftr)); |
| 489 | SHA256_Final(crypt_ftr->sha256, &c); |
| 490 | } |
| 491 | |
Ken Sumrall | e874407 | 2011-01-18 22:01:55 -0800 | [diff] [blame] | 492 | /* key or salt can be NULL, in which case just skip writing that value. Useful to |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 493 | * update the failed mount count but not change the key. |
| 494 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 495 | static int put_crypt_ftr_and_key(struct crypt_mnt_ftr* crypt_ftr) { |
| 496 | int fd; |
| 497 | unsigned int cnt; |
| 498 | /* starting_off is set to the SEEK_SET offset |
| 499 | * where the crypto structure starts |
| 500 | */ |
| 501 | off64_t starting_off; |
| 502 | int rc = -1; |
| 503 | char* fname = NULL; |
| 504 | struct stat statbuf; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 505 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 506 | set_ftr_sha(crypt_ftr); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 507 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 508 | if (get_crypt_ftr_info(&fname, &starting_off)) { |
| 509 | SLOGE("Unable to get crypt_ftr_info\n"); |
| 510 | return -1; |
Ken Sumrall | e874407 | 2011-01-18 22:01:55 -0800 | [diff] [blame] | 511 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 512 | if (fname[0] != '/') { |
| 513 | SLOGE("Unexpected value for crypto key location\n"); |
| 514 | return -1; |
| 515 | } |
| 516 | if ((fd = open(fname, O_RDWR | O_CREAT | O_CLOEXEC, 0600)) < 0) { |
| 517 | SLOGE("Cannot open footer file %s for put\n", fname); |
| 518 | return -1; |
| 519 | } |
Ken Sumrall | e874407 | 2011-01-18 22:01:55 -0800 | [diff] [blame] | 520 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 521 | /* Seek to the start of the crypt footer */ |
| 522 | if (lseek64(fd, starting_off, SEEK_SET) == -1) { |
| 523 | SLOGE("Cannot seek to real block device footer\n"); |
| 524 | goto errout; |
| 525 | } |
| 526 | |
| 527 | if ((cnt = write(fd, crypt_ftr, sizeof(struct crypt_mnt_ftr))) != sizeof(struct crypt_mnt_ftr)) { |
| 528 | SLOGE("Cannot write real block device footer\n"); |
| 529 | goto errout; |
| 530 | } |
| 531 | |
| 532 | fstat(fd, &statbuf); |
| 533 | /* If the keys are kept on a raw block device, do not try to truncate it. */ |
| 534 | if (S_ISREG(statbuf.st_mode)) { |
| 535 | if (ftruncate(fd, 0x4000)) { |
| 536 | SLOGE("Cannot set footer file size\n"); |
| 537 | goto errout; |
| 538 | } |
| 539 | } |
| 540 | |
| 541 | /* Success! */ |
| 542 | rc = 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 543 | |
| 544 | errout: |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 545 | close(fd); |
| 546 | return rc; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 547 | } |
| 548 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 549 | static bool check_ftr_sha(const struct crypt_mnt_ftr* crypt_ftr) { |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 550 | struct crypt_mnt_ftr copy; |
| 551 | memcpy(©, crypt_ftr, sizeof(copy)); |
| 552 | set_ftr_sha(©); |
| 553 | return memcmp(copy.sha256, crypt_ftr->sha256, sizeof(copy.sha256)) == 0; |
| 554 | } |
| 555 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 556 | static inline int unix_read(int fd, void* buff, int len) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 557 | return TEMP_FAILURE_RETRY(read(fd, buff, len)); |
| 558 | } |
| 559 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 560 | static inline int unix_write(int fd, const void* buff, int len) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 561 | return TEMP_FAILURE_RETRY(write(fd, buff, len)); |
| 562 | } |
| 563 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 564 | static void init_empty_persist_data(struct crypt_persist_data* pdata, int len) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 565 | memset(pdata, 0, len); |
| 566 | pdata->persist_magic = PERSIST_DATA_MAGIC; |
| 567 | pdata->persist_valid_entries = 0; |
| 568 | } |
| 569 | |
| 570 | /* A routine to update the passed in crypt_ftr to the lastest version. |
| 571 | * fd is open read/write on the device that holds the crypto footer and persistent |
| 572 | * data, crypt_ftr is a pointer to the struct to be updated, and offset is the |
| 573 | * absolute offset to the start of the crypt_mnt_ftr on the passed in fd. |
| 574 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 575 | static void upgrade_crypt_ftr(int fd, struct crypt_mnt_ftr* crypt_ftr, off64_t offset) { |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 576 | int orig_major = crypt_ftr->major_version; |
| 577 | int orig_minor = crypt_ftr->minor_version; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 578 | |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 579 | if ((crypt_ftr->major_version == 1) && (crypt_ftr->minor_version == 0)) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 580 | struct crypt_persist_data* pdata; |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 581 | off64_t pdata_offset = offset + CRYPT_FOOTER_TO_PERSIST_OFFSET; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 582 | |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 583 | SLOGW("upgrading crypto footer to 1.1"); |
| 584 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 585 | pdata = (crypt_persist_data*)malloc(CRYPT_PERSIST_DATA_SIZE); |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 586 | if (pdata == NULL) { |
| 587 | SLOGE("Cannot allocate persisent data\n"); |
| 588 | return; |
| 589 | } |
| 590 | memset(pdata, 0, CRYPT_PERSIST_DATA_SIZE); |
| 591 | |
| 592 | /* Need to initialize the persistent data area */ |
| 593 | if (lseek64(fd, pdata_offset, SEEK_SET) == -1) { |
| 594 | SLOGE("Cannot seek to persisent data offset\n"); |
Henrik Baard | 9106463 | 2015-02-05 15:09:17 +0100 | [diff] [blame] | 595 | free(pdata); |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 596 | return; |
| 597 | } |
| 598 | /* Write all zeros to the first copy, making it invalid */ |
| 599 | unix_write(fd, pdata, CRYPT_PERSIST_DATA_SIZE); |
| 600 | |
| 601 | /* Write a valid but empty structure to the second copy */ |
| 602 | init_empty_persist_data(pdata, CRYPT_PERSIST_DATA_SIZE); |
| 603 | unix_write(fd, pdata, CRYPT_PERSIST_DATA_SIZE); |
| 604 | |
| 605 | /* Update the footer */ |
| 606 | crypt_ftr->persist_data_size = CRYPT_PERSIST_DATA_SIZE; |
| 607 | crypt_ftr->persist_data_offset[0] = pdata_offset; |
| 608 | crypt_ftr->persist_data_offset[1] = pdata_offset + CRYPT_PERSIST_DATA_SIZE; |
| 609 | crypt_ftr->minor_version = 1; |
Henrik Baard | 9106463 | 2015-02-05 15:09:17 +0100 | [diff] [blame] | 610 | free(pdata); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 613 | if ((crypt_ftr->major_version == 1) && (crypt_ftr->minor_version == 1)) { |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 614 | SLOGW("upgrading crypto footer to 1.2"); |
JP Abgrall | 7bdfa52 | 2013-11-15 13:42:56 -0800 | [diff] [blame] | 615 | /* But keep the old kdf_type. |
| 616 | * It will get updated later to KDF_SCRYPT after the password has been verified. |
| 617 | */ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 618 | crypt_ftr->kdf_type = KDF_PBKDF2; |
| 619 | get_device_scrypt_params(crypt_ftr); |
| 620 | crypt_ftr->minor_version = 2; |
| 621 | } |
| 622 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 623 | if ((crypt_ftr->major_version == 1) && (crypt_ftr->minor_version == 2)) { |
| 624 | SLOGW("upgrading crypto footer to 1.3"); |
| 625 | crypt_ftr->crypt_type = CRYPT_TYPE_PASSWORD; |
| 626 | crypt_ftr->minor_version = 3; |
| 627 | } |
| 628 | |
Kenny Root | 7434b31 | 2013-06-14 11:29:53 -0700 | [diff] [blame] | 629 | if ((orig_major != crypt_ftr->major_version) || (orig_minor != crypt_ftr->minor_version)) { |
| 630 | if (lseek64(fd, offset, SEEK_SET) == -1) { |
| 631 | SLOGE("Cannot seek to crypt footer\n"); |
| 632 | return; |
| 633 | } |
| 634 | unix_write(fd, crypt_ftr, sizeof(struct crypt_mnt_ftr)); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 635 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 636 | } |
| 637 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 638 | static int get_crypt_ftr_and_key(struct crypt_mnt_ftr* crypt_ftr) { |
| 639 | int fd; |
| 640 | unsigned int cnt; |
| 641 | off64_t starting_off; |
| 642 | int rc = -1; |
| 643 | char* fname = NULL; |
| 644 | struct stat statbuf; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 645 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 646 | if (get_crypt_ftr_info(&fname, &starting_off)) { |
| 647 | SLOGE("Unable to get crypt_ftr_info\n"); |
| 648 | return -1; |
| 649 | } |
| 650 | if (fname[0] != '/') { |
| 651 | SLOGE("Unexpected value for crypto key location\n"); |
| 652 | return -1; |
| 653 | } |
| 654 | if ((fd = open(fname, O_RDWR | O_CLOEXEC)) < 0) { |
| 655 | SLOGE("Cannot open footer file %s for get\n", fname); |
| 656 | return -1; |
| 657 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 658 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 659 | /* Make sure it's 16 Kbytes in length */ |
| 660 | fstat(fd, &statbuf); |
| 661 | if (S_ISREG(statbuf.st_mode) && (statbuf.st_size != 0x4000)) { |
| 662 | SLOGE("footer file %s is not the expected size!\n", fname); |
| 663 | goto errout; |
| 664 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 665 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 666 | /* Seek to the start of the crypt footer */ |
| 667 | if (lseek64(fd, starting_off, SEEK_SET) == -1) { |
| 668 | SLOGE("Cannot seek to real block device footer\n"); |
| 669 | goto errout; |
| 670 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 671 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 672 | if ((cnt = read(fd, crypt_ftr, sizeof(struct crypt_mnt_ftr))) != sizeof(struct crypt_mnt_ftr)) { |
| 673 | SLOGE("Cannot read real block device footer\n"); |
| 674 | goto errout; |
| 675 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 676 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 677 | if (crypt_ftr->magic != CRYPT_MNT_MAGIC) { |
| 678 | SLOGE("Bad magic for real block device %s\n", fname); |
| 679 | goto errout; |
| 680 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 681 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 682 | if (crypt_ftr->major_version != CURRENT_MAJOR_VERSION) { |
| 683 | SLOGE("Cannot understand major version %d real block device footer; expected %d\n", |
| 684 | crypt_ftr->major_version, CURRENT_MAJOR_VERSION); |
| 685 | goto errout; |
| 686 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 687 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 688 | // We risk buffer overflows with oversized keys, so we just reject them. |
| 689 | // 0-sized keys are problematic (essentially by-passing encryption), and |
| 690 | // AES-CBC key wrapping only works for multiples of 16 bytes. |
| 691 | if ((crypt_ftr->keysize == 0) || ((crypt_ftr->keysize % 16) != 0) || |
| 692 | (crypt_ftr->keysize > MAX_KEY_LEN)) { |
| 693 | SLOGE( |
| 694 | "Invalid keysize (%u) for block device %s; Must be non-zero, " |
| 695 | "divisible by 16, and <= %d\n", |
| 696 | crypt_ftr->keysize, fname, MAX_KEY_LEN); |
| 697 | goto errout; |
| 698 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 699 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 700 | if (crypt_ftr->minor_version > CURRENT_MINOR_VERSION) { |
| 701 | SLOGW("Warning: crypto footer minor version %d, expected <= %d, continuing...\n", |
| 702 | crypt_ftr->minor_version, CURRENT_MINOR_VERSION); |
| 703 | } |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 704 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 705 | /* If this is a verion 1.0 crypt_ftr, make it a 1.1 crypt footer, and update the |
| 706 | * copy on disk before returning. |
| 707 | */ |
| 708 | if (crypt_ftr->minor_version < CURRENT_MINOR_VERSION) { |
| 709 | upgrade_crypt_ftr(fd, crypt_ftr, starting_off); |
| 710 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 711 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 712 | /* Success! */ |
| 713 | rc = 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 714 | |
| 715 | errout: |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 716 | close(fd); |
| 717 | return rc; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 718 | } |
| 719 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 720 | static int validate_persistent_data_storage(struct crypt_mnt_ftr* crypt_ftr) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 721 | if (crypt_ftr->persist_data_offset[0] + crypt_ftr->persist_data_size > |
| 722 | crypt_ftr->persist_data_offset[1]) { |
| 723 | SLOGE("Crypt_ftr persist data regions overlap"); |
| 724 | return -1; |
| 725 | } |
| 726 | |
| 727 | if (crypt_ftr->persist_data_offset[0] >= crypt_ftr->persist_data_offset[1]) { |
| 728 | SLOGE("Crypt_ftr persist data region 0 starts after region 1"); |
| 729 | return -1; |
| 730 | } |
| 731 | |
| 732 | if (((crypt_ftr->persist_data_offset[1] + crypt_ftr->persist_data_size) - |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 733 | (crypt_ftr->persist_data_offset[0] - CRYPT_FOOTER_TO_PERSIST_OFFSET)) > |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 734 | CRYPT_FOOTER_OFFSET) { |
| 735 | SLOGE("Persistent data extends past crypto footer"); |
| 736 | return -1; |
| 737 | } |
| 738 | |
| 739 | return 0; |
| 740 | } |
| 741 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 742 | static int load_persistent_data(void) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 743 | struct crypt_mnt_ftr crypt_ftr; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 744 | struct crypt_persist_data* pdata = NULL; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 745 | char encrypted_state[PROPERTY_VALUE_MAX]; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 746 | char* fname; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 747 | int found = 0; |
| 748 | int fd; |
| 749 | int ret; |
| 750 | int i; |
| 751 | |
| 752 | if (persist_data) { |
| 753 | /* Nothing to do, we've already loaded or initialized it */ |
| 754 | return 0; |
| 755 | } |
| 756 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 757 | /* If not encrypted, just allocate an empty table and initialize it */ |
| 758 | property_get("ro.crypto.state", encrypted_state, ""); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 759 | if (strcmp(encrypted_state, "encrypted")) { |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 760 | pdata = (crypt_persist_data*)malloc(CRYPT_PERSIST_DATA_SIZE); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 761 | if (pdata) { |
| 762 | init_empty_persist_data(pdata, CRYPT_PERSIST_DATA_SIZE); |
| 763 | persist_data = pdata; |
| 764 | return 0; |
| 765 | } |
| 766 | return -1; |
| 767 | } |
| 768 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 769 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 770 | return -1; |
| 771 | } |
| 772 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 773 | if ((crypt_ftr.major_version < 1) || |
| 774 | (crypt_ftr.major_version == 1 && crypt_ftr.minor_version < 1)) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 775 | SLOGE("Crypt_ftr version doesn't support persistent data"); |
| 776 | return -1; |
| 777 | } |
| 778 | |
| 779 | if (get_crypt_ftr_info(&fname, NULL)) { |
| 780 | return -1; |
| 781 | } |
| 782 | |
| 783 | ret = validate_persistent_data_storage(&crypt_ftr); |
| 784 | if (ret) { |
| 785 | return -1; |
| 786 | } |
| 787 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 788 | fd = open(fname, O_RDONLY | O_CLOEXEC); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 789 | if (fd < 0) { |
| 790 | SLOGE("Cannot open %s metadata file", fname); |
| 791 | return -1; |
| 792 | } |
| 793 | |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 794 | pdata = (crypt_persist_data*)malloc(crypt_ftr.persist_data_size); |
Paul Lawrence | 300dae7 | 2016-03-11 11:02:52 -0800 | [diff] [blame] | 795 | if (pdata == NULL) { |
| 796 | SLOGE("Cannot allocate memory for persistent data"); |
| 797 | goto err; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | for (i = 0; i < 2; i++) { |
| 801 | if (lseek64(fd, crypt_ftr.persist_data_offset[i], SEEK_SET) < 0) { |
| 802 | SLOGE("Cannot seek to read persistent data on %s", fname); |
| 803 | goto err2; |
| 804 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 805 | if (unix_read(fd, pdata, crypt_ftr.persist_data_size) < 0) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 806 | SLOGE("Error reading persistent data on iteration %d", i); |
| 807 | goto err2; |
| 808 | } |
| 809 | if (pdata->persist_magic == PERSIST_DATA_MAGIC) { |
| 810 | found = 1; |
| 811 | break; |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | if (!found) { |
| 816 | SLOGI("Could not find valid persistent data, creating"); |
| 817 | init_empty_persist_data(pdata, crypt_ftr.persist_data_size); |
| 818 | } |
| 819 | |
| 820 | /* Success */ |
| 821 | persist_data = pdata; |
| 822 | close(fd); |
| 823 | return 0; |
| 824 | |
| 825 | err2: |
| 826 | free(pdata); |
| 827 | |
| 828 | err: |
| 829 | close(fd); |
| 830 | return -1; |
| 831 | } |
| 832 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 833 | static int save_persistent_data(void) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 834 | struct crypt_mnt_ftr crypt_ftr; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 835 | struct crypt_persist_data* pdata; |
| 836 | char* fname; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 837 | off64_t write_offset; |
| 838 | off64_t erase_offset; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 839 | int fd; |
| 840 | int ret; |
| 841 | |
| 842 | if (persist_data == NULL) { |
| 843 | SLOGE("No persistent data to save"); |
| 844 | return -1; |
| 845 | } |
| 846 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 847 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 848 | return -1; |
| 849 | } |
| 850 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 851 | if ((crypt_ftr.major_version < 1) || |
| 852 | (crypt_ftr.major_version == 1 && crypt_ftr.minor_version < 1)) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 853 | SLOGE("Crypt_ftr version doesn't support persistent data"); |
| 854 | return -1; |
| 855 | } |
| 856 | |
| 857 | ret = validate_persistent_data_storage(&crypt_ftr); |
| 858 | if (ret) { |
| 859 | return -1; |
| 860 | } |
| 861 | |
| 862 | if (get_crypt_ftr_info(&fname, NULL)) { |
| 863 | return -1; |
| 864 | } |
| 865 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 866 | fd = open(fname, O_RDWR | O_CLOEXEC); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 867 | if (fd < 0) { |
| 868 | SLOGE("Cannot open %s metadata file", fname); |
| 869 | return -1; |
| 870 | } |
| 871 | |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 872 | pdata = (crypt_persist_data*)malloc(crypt_ftr.persist_data_size); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 873 | if (pdata == NULL) { |
| 874 | SLOGE("Cannot allocate persistant data"); |
| 875 | goto err; |
| 876 | } |
| 877 | |
| 878 | if (lseek64(fd, crypt_ftr.persist_data_offset[0], SEEK_SET) < 0) { |
| 879 | SLOGE("Cannot seek to read persistent data on %s", fname); |
| 880 | goto err2; |
| 881 | } |
| 882 | |
| 883 | if (unix_read(fd, pdata, crypt_ftr.persist_data_size) < 0) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 884 | SLOGE("Error reading persistent data before save"); |
| 885 | goto err2; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | if (pdata->persist_magic == PERSIST_DATA_MAGIC) { |
| 889 | /* The first copy is the curent valid copy, so write to |
| 890 | * the second copy and erase this one */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 891 | write_offset = crypt_ftr.persist_data_offset[1]; |
| 892 | erase_offset = crypt_ftr.persist_data_offset[0]; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 893 | } else { |
| 894 | /* The second copy must be the valid copy, so write to |
| 895 | * the first copy, and erase the second */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 896 | write_offset = crypt_ftr.persist_data_offset[0]; |
| 897 | erase_offset = crypt_ftr.persist_data_offset[1]; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | /* Write the new copy first, if successful, then erase the old copy */ |
Björn Landström | 96dbee7 | 2015-01-20 12:43:56 +0100 | [diff] [blame] | 901 | if (lseek64(fd, write_offset, SEEK_SET) < 0) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 902 | SLOGE("Cannot seek to write persistent data"); |
| 903 | goto err2; |
| 904 | } |
| 905 | if (unix_write(fd, persist_data, crypt_ftr.persist_data_size) == |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 906 | (int)crypt_ftr.persist_data_size) { |
Björn Landström | 96dbee7 | 2015-01-20 12:43:56 +0100 | [diff] [blame] | 907 | if (lseek64(fd, erase_offset, SEEK_SET) < 0) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 908 | SLOGE("Cannot seek to erase previous persistent data"); |
| 909 | goto err2; |
| 910 | } |
| 911 | fsync(fd); |
| 912 | memset(pdata, 0, crypt_ftr.persist_data_size); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 913 | if (unix_write(fd, pdata, crypt_ftr.persist_data_size) != (int)crypt_ftr.persist_data_size) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 914 | SLOGE("Cannot write to erase previous persistent data"); |
| 915 | goto err2; |
| 916 | } |
| 917 | fsync(fd); |
| 918 | } else { |
| 919 | SLOGE("Cannot write to save persistent data"); |
| 920 | goto err2; |
| 921 | } |
| 922 | |
| 923 | /* Success */ |
| 924 | free(pdata); |
| 925 | close(fd); |
| 926 | return 0; |
| 927 | |
| 928 | err2: |
| 929 | free(pdata); |
| 930 | err: |
| 931 | close(fd); |
| 932 | return -1; |
| 933 | } |
| 934 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 935 | /* Convert a binary key of specified length into an ascii hex string equivalent, |
| 936 | * without the leading 0x and with null termination |
| 937 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 938 | static void convert_key_to_hex_ascii(const unsigned char* master_key, unsigned int keysize, |
| 939 | char* master_key_ascii) { |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 940 | unsigned int i, a; |
| 941 | unsigned char nibble; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 942 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 943 | for (i = 0, a = 0; i < keysize; i++, a += 2) { |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 944 | /* For each byte, write out two ascii hex digits */ |
| 945 | nibble = (master_key[i] >> 4) & 0xf; |
| 946 | master_key_ascii[a] = nibble + (nibble > 9 ? 0x37 : 0x30); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 947 | |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 948 | nibble = master_key[i] & 0xf; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 949 | master_key_ascii[a + 1] = nibble + (nibble > 9 ? 0x37 : 0x30); |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 950 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 951 | |
Paul Lawrence | 3bd36d5 | 2015-06-09 13:37:44 -0700 | [diff] [blame] | 952 | /* Add the null termination */ |
| 953 | master_key_ascii[a] = '\0'; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 954 | } |
| 955 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 956 | static int load_crypto_mapping_table(struct crypt_mnt_ftr* crypt_ftr, |
| 957 | const unsigned char* master_key, const char* real_blk_name, |
| 958 | const char* name, int fd, const char* extra_params) { |
| 959 | alignas(struct dm_ioctl) char buffer[DM_CRYPT_BUF_SIZE]; |
| 960 | struct dm_ioctl* io; |
| 961 | struct dm_target_spec* tgt; |
| 962 | char* crypt_params; |
| 963 | // We need two ASCII characters to represent each byte, and need space for |
| 964 | // the '\0' terminator. |
| 965 | char master_key_ascii[MAX_KEY_LEN * 2 + 1]; |
| 966 | size_t buff_offset; |
| 967 | int i; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 968 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 969 | io = (struct dm_ioctl*)buffer; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 970 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 971 | /* Load the mapping table for this device */ |
| 972 | tgt = (struct dm_target_spec*)&buffer[sizeof(struct dm_ioctl)]; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 973 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 974 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
| 975 | io->target_count = 1; |
| 976 | tgt->status = 0; |
| 977 | tgt->sector_start = 0; |
| 978 | tgt->length = crypt_ftr->fs_size; |
| 979 | strlcpy(tgt->target_type, "crypt", DM_MAX_TYPE_NAME); |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 980 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 981 | crypt_params = buffer + sizeof(struct dm_ioctl) + sizeof(struct dm_target_spec); |
| 982 | convert_key_to_hex_ascii(master_key, crypt_ftr->keysize, master_key_ascii); |
George Burgess IV | 605d7ae | 2016-02-29 13:39:17 -0800 | [diff] [blame] | 983 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 984 | buff_offset = crypt_params - buffer; |
| 985 | SLOGI("Extra parameters for dm_crypt: %s\n", extra_params); |
| 986 | snprintf(crypt_params, sizeof(buffer) - buff_offset, "%s %s 0 %s 0 %s", |
| 987 | crypt_ftr->crypto_type_name, master_key_ascii, real_blk_name, extra_params); |
| 988 | crypt_params += strlen(crypt_params) + 1; |
| 989 | crypt_params = |
| 990 | (char*)(((unsigned long)crypt_params + 7) & ~8); /* Align to an 8 byte boundary */ |
| 991 | tgt->next = crypt_params - buffer; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 992 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 993 | for (i = 0; i < TABLE_LOAD_RETRIES; i++) { |
| 994 | if (!ioctl(fd, DM_TABLE_LOAD, io)) { |
| 995 | break; |
| 996 | } |
| 997 | usleep(500000); |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 998 | } |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 999 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1000 | if (i == TABLE_LOAD_RETRIES) { |
| 1001 | /* We failed to load the table, return an error */ |
| 1002 | return -1; |
| 1003 | } else { |
| 1004 | return i + 1; |
| 1005 | } |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1006 | } |
| 1007 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1008 | static int get_dm_crypt_version(int fd, const char* name, int* version) { |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1009 | char buffer[DM_CRYPT_BUF_SIZE]; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1010 | struct dm_ioctl* io; |
| 1011 | struct dm_target_versions* v; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1012 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1013 | io = (struct dm_ioctl*)buffer; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1014 | |
| 1015 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
| 1016 | |
| 1017 | if (ioctl(fd, DM_LIST_VERSIONS, io)) { |
| 1018 | return -1; |
| 1019 | } |
| 1020 | |
| 1021 | /* Iterate over the returned versions, looking for name of "crypt". |
| 1022 | * When found, get and return the version. |
| 1023 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1024 | v = (struct dm_target_versions*)&buffer[sizeof(struct dm_ioctl)]; |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1025 | while (v->next) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1026 | if (!strcmp(v->name, "crypt")) { |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1027 | /* We found the crypt driver, return the version, and get out */ |
| 1028 | version[0] = v->version[0]; |
| 1029 | version[1] = v->version[1]; |
| 1030 | version[2] = v->version[2]; |
| 1031 | return 0; |
| 1032 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1033 | v = (struct dm_target_versions*)(((char*)v) + v->next); |
Ken Sumrall | db5e026 | 2013-02-05 17:39:48 -0800 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | return -1; |
| 1037 | } |
| 1038 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1039 | static std::string extra_params_as_string(const std::vector<std::string>& extra_params_vec) { |
| 1040 | if (extra_params_vec.empty()) return ""; |
| 1041 | std::string extra_params = std::to_string(extra_params_vec.size()); |
| 1042 | for (const auto& p : extra_params_vec) { |
| 1043 | extra_params.append(" "); |
| 1044 | extra_params.append(p); |
| 1045 | } |
| 1046 | return extra_params; |
| 1047 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1048 | |
Greg Kaiser | ab1e84a | 2018-12-11 12:40:51 -0800 | [diff] [blame] | 1049 | // Only adds parameters if the property is set. |
| 1050 | static void add_sector_size_param(std::vector<std::string>* extra_params_vec) { |
| 1051 | constexpr char DM_CRYPT_SECTOR_SIZE[] = "ro.crypto.fde_sector_size"; |
| 1052 | char sector_size[PROPERTY_VALUE_MAX]; |
| 1053 | |
| 1054 | if (property_get(DM_CRYPT_SECTOR_SIZE, sector_size, "") > 0) { |
| 1055 | std::string param = StringPrintf("sector_size:%s", sector_size); |
| 1056 | extra_params_vec->push_back(std::move(param)); |
| 1057 | |
| 1058 | // With this option, IVs will match the sector numbering, instead |
| 1059 | // of being hard-coded to being based on 512-byte sectors. |
| 1060 | extra_params_vec->emplace_back("iv_large_sectors"); |
| 1061 | } |
| 1062 | } |
| 1063 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1064 | static int create_crypto_blk_dev(struct crypt_mnt_ftr* crypt_ftr, const unsigned char* master_key, |
| 1065 | const char* real_blk_name, char* crypto_blk_name, const char* name, |
| 1066 | uint32_t flags) { |
| 1067 | char buffer[DM_CRYPT_BUF_SIZE]; |
| 1068 | struct dm_ioctl* io; |
| 1069 | unsigned int minor; |
| 1070 | int fd = 0; |
| 1071 | int err; |
| 1072 | int retval = -1; |
| 1073 | int version[3]; |
| 1074 | int load_count; |
| 1075 | std::vector<std::string> extra_params_vec; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1076 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1077 | if ((fd = open("/dev/device-mapper", O_RDWR | O_CLOEXEC)) < 0) { |
| 1078 | SLOGE("Cannot open device-mapper\n"); |
| 1079 | goto errout; |
| 1080 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1081 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1082 | io = (struct dm_ioctl*)buffer; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1083 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1084 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
| 1085 | err = ioctl(fd, DM_DEV_CREATE, io); |
| 1086 | if (err) { |
| 1087 | SLOGE("Cannot create dm-crypt device %s: %s\n", name, strerror(errno)); |
| 1088 | goto errout; |
| 1089 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1090 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1091 | /* Get the device status, in particular, the name of it's device file */ |
| 1092 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
| 1093 | if (ioctl(fd, DM_DEV_STATUS, io)) { |
| 1094 | SLOGE("Cannot retrieve dm-crypt device status\n"); |
| 1095 | goto errout; |
| 1096 | } |
| 1097 | minor = (io->dev & 0xff) | ((io->dev >> 12) & 0xfff00); |
| 1098 | snprintf(crypto_blk_name, MAXPATHLEN, "/dev/block/dm-%u", minor); |
Ken Sumrall | e919efe | 2012-09-29 17:07:41 -0700 | [diff] [blame] | 1099 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1100 | if (!get_dm_crypt_version(fd, name, version)) { |
| 1101 | /* Support for allow_discards was added in version 1.11.0 */ |
| 1102 | if ((version[0] >= 2) || ((version[0] == 1) && (version[1] >= 11))) { |
| 1103 | extra_params_vec.emplace_back("allow_discards"); |
| 1104 | } |
| 1105 | } |
| 1106 | if (flags & CREATE_CRYPTO_BLK_DEV_FLAGS_ALLOW_ENCRYPT_OVERRIDE) { |
| 1107 | extra_params_vec.emplace_back("allow_encrypt_override"); |
| 1108 | } |
Greg Kaiser | ab1e84a | 2018-12-11 12:40:51 -0800 | [diff] [blame] | 1109 | add_sector_size_param(&extra_params_vec); |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1110 | load_count = load_crypto_mapping_table(crypt_ftr, master_key, real_blk_name, name, fd, |
| 1111 | extra_params_as_string(extra_params_vec).c_str()); |
| 1112 | if (load_count < 0) { |
| 1113 | SLOGE("Cannot load dm-crypt mapping table.\n"); |
| 1114 | goto errout; |
| 1115 | } else if (load_count > 1) { |
| 1116 | SLOGI("Took %d tries to load dmcrypt table.\n", load_count); |
| 1117 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1118 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1119 | /* Resume this device to activate it */ |
| 1120 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1121 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1122 | if (ioctl(fd, DM_DEV_SUSPEND, io)) { |
| 1123 | SLOGE("Cannot resume the dm-crypt device\n"); |
| 1124 | goto errout; |
| 1125 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1126 | |
Paul Crowley | cfe3972 | 2018-10-30 15:59:24 -0700 | [diff] [blame] | 1127 | /* Ensure the dm device has been created before returning. */ |
| 1128 | if (android::vold::WaitForFile(crypto_blk_name, 1s) < 0) { |
| 1129 | // WaitForFile generates a suitable log message |
| 1130 | goto errout; |
| 1131 | } |
| 1132 | |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 1133 | /* We made it here with no errors. Woot! */ |
| 1134 | retval = 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1135 | |
| 1136 | errout: |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1137 | close(fd); /* If fd is <0 from a failed open call, it's safe to just ignore the close error */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1138 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1139 | return retval; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1140 | } |
| 1141 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1142 | static int delete_crypto_blk_dev(const char* name) { |
| 1143 | int fd; |
| 1144 | char buffer[DM_CRYPT_BUF_SIZE]; |
| 1145 | struct dm_ioctl* io; |
| 1146 | int retval = -1; |
Yue Hu | 9d6cc18 | 2018-12-17 17:09:55 +0800 | [diff] [blame] | 1147 | int err; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1148 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1149 | if ((fd = open("/dev/device-mapper", O_RDWR | O_CLOEXEC)) < 0) { |
| 1150 | SLOGE("Cannot open device-mapper\n"); |
| 1151 | goto errout; |
| 1152 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1153 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1154 | io = (struct dm_ioctl*)buffer; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1155 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1156 | ioctl_init(io, DM_CRYPT_BUF_SIZE, name, 0); |
Yue Hu | 9d6cc18 | 2018-12-17 17:09:55 +0800 | [diff] [blame] | 1157 | err = ioctl(fd, DM_DEV_REMOVE, io); |
| 1158 | if (err) { |
| 1159 | SLOGE("Cannot remove dm-crypt device %s: %s\n", name, strerror(errno)); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1160 | goto errout; |
| 1161 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1162 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1163 | /* We made it here with no errors. Woot! */ |
| 1164 | retval = 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1165 | |
| 1166 | errout: |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1167 | close(fd); /* If fd is <0 from a failed open call, it's safe to just ignore the close error */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1168 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1169 | return retval; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1170 | } |
| 1171 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1172 | static int pbkdf2(const char* passwd, const unsigned char* salt, unsigned char* ikey, |
| 1173 | void* params UNUSED) { |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1174 | SLOGI("Using pbkdf2 for cryptfs KDF"); |
| 1175 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1176 | /* Turn the password into a key and IV that can decrypt the master key */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1177 | return PKCS5_PBKDF2_HMAC_SHA1(passwd, strlen(passwd), salt, SALT_LEN, HASH_COUNT, |
| 1178 | INTERMEDIATE_BUF_SIZE, ikey) != 1; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1179 | } |
| 1180 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1181 | static int scrypt(const char* passwd, const unsigned char* salt, unsigned char* ikey, void* params) { |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1182 | SLOGI("Using scrypt for cryptfs KDF"); |
| 1183 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1184 | struct crypt_mnt_ftr* ftr = (struct crypt_mnt_ftr*)params; |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1185 | |
| 1186 | int N = 1 << ftr->N_factor; |
| 1187 | int r = 1 << ftr->r_factor; |
| 1188 | int p = 1 << ftr->p_factor; |
| 1189 | |
| 1190 | /* Turn the password into a key and IV that can decrypt the master key */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1191 | crypto_scrypt((const uint8_t*)passwd, strlen(passwd), salt, SALT_LEN, N, r, p, ikey, |
Greg Kaiser | c0de9c7 | 2018-02-14 20:05:54 -0800 | [diff] [blame] | 1192 | INTERMEDIATE_BUF_SIZE); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1193 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1194 | return 0; |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1195 | } |
| 1196 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1197 | static int scrypt_keymaster(const char* passwd, const unsigned char* salt, unsigned char* ikey, |
| 1198 | void* params) { |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1199 | SLOGI("Using scrypt with keymaster for cryptfs KDF"); |
| 1200 | |
| 1201 | int rc; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1202 | size_t signature_size; |
| 1203 | unsigned char* signature; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1204 | struct crypt_mnt_ftr* ftr = (struct crypt_mnt_ftr*)params; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1205 | |
| 1206 | int N = 1 << ftr->N_factor; |
| 1207 | int r = 1 << ftr->r_factor; |
| 1208 | int p = 1 << ftr->p_factor; |
| 1209 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1210 | rc = crypto_scrypt((const uint8_t*)passwd, strlen(passwd), salt, SALT_LEN, N, r, p, ikey, |
Greg Kaiser | c0de9c7 | 2018-02-14 20:05:54 -0800 | [diff] [blame] | 1211 | INTERMEDIATE_BUF_SIZE); |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1212 | |
| 1213 | if (rc) { |
| 1214 | SLOGE("scrypt failed"); |
| 1215 | return -1; |
| 1216 | } |
| 1217 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1218 | if (keymaster_sign_object(ftr, ikey, INTERMEDIATE_BUF_SIZE, &signature, &signature_size)) { |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 1219 | SLOGE("Signing failed"); |
| 1220 | return -1; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1221 | } |
| 1222 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1223 | rc = crypto_scrypt(signature, signature_size, salt, SALT_LEN, N, r, p, ikey, |
| 1224 | INTERMEDIATE_BUF_SIZE); |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1225 | free(signature); |
| 1226 | |
| 1227 | if (rc) { |
| 1228 | SLOGE("scrypt failed"); |
| 1229 | return -1; |
| 1230 | } |
| 1231 | |
| 1232 | return 0; |
| 1233 | } |
| 1234 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1235 | static int encrypt_master_key(const char* passwd, const unsigned char* salt, |
| 1236 | const unsigned char* decrypted_master_key, |
| 1237 | unsigned char* encrypted_master_key, struct crypt_mnt_ftr* crypt_ftr) { |
| 1238 | unsigned char ikey[INTERMEDIATE_BUF_SIZE] = {0}; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1239 | EVP_CIPHER_CTX e_ctx; |
| 1240 | int encrypted_len, final_len; |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1241 | int rc = 0; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1242 | |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1243 | /* Turn the password into an intermediate key and IV that can decrypt the master key */ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1244 | get_device_scrypt_params(crypt_ftr); |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1245 | |
| 1246 | switch (crypt_ftr->kdf_type) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1247 | case KDF_SCRYPT_KEYMASTER: |
| 1248 | if (keymaster_create_key(crypt_ftr)) { |
| 1249 | SLOGE("keymaster_create_key failed"); |
| 1250 | return -1; |
| 1251 | } |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1252 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1253 | if (scrypt_keymaster(passwd, salt, ikey, crypt_ftr)) { |
| 1254 | SLOGE("scrypt failed"); |
| 1255 | return -1; |
| 1256 | } |
| 1257 | break; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1258 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1259 | case KDF_SCRYPT: |
| 1260 | if (scrypt(passwd, salt, ikey, crypt_ftr)) { |
| 1261 | SLOGE("scrypt failed"); |
| 1262 | return -1; |
| 1263 | } |
| 1264 | break; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1265 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1266 | default: |
| 1267 | SLOGE("Invalid kdf_type"); |
| 1268 | return -1; |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1269 | } |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1270 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1271 | /* Initialize the decryption engine */ |
Adam Langley | 889c4f1 | 2014-09-03 14:23:13 -0700 | [diff] [blame] | 1272 | EVP_CIPHER_CTX_init(&e_ctx); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1273 | if (!EVP_EncryptInit_ex(&e_ctx, EVP_aes_128_cbc(), NULL, ikey, |
| 1274 | ikey + INTERMEDIATE_KEY_LEN_BYTES)) { |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1275 | SLOGE("EVP_EncryptInit failed\n"); |
| 1276 | return -1; |
| 1277 | } |
| 1278 | EVP_CIPHER_CTX_set_padding(&e_ctx, 0); /* Turn off padding as our data is block aligned */ |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1279 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1280 | /* Encrypt the master key */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1281 | if (!EVP_EncryptUpdate(&e_ctx, encrypted_master_key, &encrypted_len, decrypted_master_key, |
| 1282 | crypt_ftr->keysize)) { |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1283 | SLOGE("EVP_EncryptUpdate failed\n"); |
| 1284 | return -1; |
| 1285 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1286 | if (!EVP_EncryptFinal_ex(&e_ctx, encrypted_master_key + encrypted_len, &final_len)) { |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1287 | SLOGE("EVP_EncryptFinal failed\n"); |
| 1288 | return -1; |
| 1289 | } |
| 1290 | |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 1291 | if (encrypted_len + final_len != static_cast<int>(crypt_ftr->keysize)) { |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1292 | SLOGE("EVP_Encryption length check failed with %d, %d bytes\n", encrypted_len, final_len); |
| 1293 | return -1; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1294 | } |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1295 | |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1296 | /* Store the scrypt of the intermediate key, so we can validate if it's a |
| 1297 | password error or mount error when things go wrong. |
| 1298 | Note there's no need to check for errors, since if this is incorrect, we |
| 1299 | simply won't wipe userdata, which is the correct default behavior |
| 1300 | */ |
| 1301 | int N = 1 << crypt_ftr->N_factor; |
| 1302 | int r = 1 << crypt_ftr->r_factor; |
| 1303 | int p = 1 << crypt_ftr->p_factor; |
| 1304 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1305 | rc = crypto_scrypt(ikey, INTERMEDIATE_KEY_LEN_BYTES, crypt_ftr->salt, sizeof(crypt_ftr->salt), |
| 1306 | N, r, p, crypt_ftr->scrypted_intermediate_key, |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1307 | sizeof(crypt_ftr->scrypted_intermediate_key)); |
| 1308 | |
| 1309 | if (rc) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1310 | SLOGE("encrypt_master_key: crypto_scrypt failed"); |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1311 | } |
| 1312 | |
Thurston Hou Yeen Dang | 06dc311 | 2016-07-18 14:16:37 -0700 | [diff] [blame] | 1313 | EVP_CIPHER_CTX_cleanup(&e_ctx); |
| 1314 | |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1315 | return 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1316 | } |
| 1317 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1318 | static int decrypt_master_key_aux(const char* passwd, unsigned char* salt, |
| 1319 | const unsigned char* encrypted_master_key, size_t keysize, |
| 1320 | unsigned char* decrypted_master_key, kdf_func kdf, |
| 1321 | void* kdf_params, unsigned char** intermediate_key, |
| 1322 | size_t* intermediate_key_size) { |
| 1323 | unsigned char ikey[INTERMEDIATE_BUF_SIZE] = {0}; |
| 1324 | EVP_CIPHER_CTX d_ctx; |
| 1325 | int decrypted_len, final_len; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1326 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1327 | /* Turn the password into an intermediate key and IV that can decrypt the |
| 1328 | master key */ |
| 1329 | if (kdf(passwd, salt, ikey, kdf_params)) { |
| 1330 | SLOGE("kdf failed"); |
| 1331 | return -1; |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1332 | } |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1333 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1334 | /* Initialize the decryption engine */ |
| 1335 | EVP_CIPHER_CTX_init(&d_ctx); |
| 1336 | if (!EVP_DecryptInit_ex(&d_ctx, EVP_aes_128_cbc(), NULL, ikey, |
| 1337 | ikey + INTERMEDIATE_KEY_LEN_BYTES)) { |
| 1338 | return -1; |
| 1339 | } |
| 1340 | EVP_CIPHER_CTX_set_padding(&d_ctx, 0); /* Turn off padding as our data is block aligned */ |
| 1341 | /* Decrypt the master key */ |
| 1342 | if (!EVP_DecryptUpdate(&d_ctx, decrypted_master_key, &decrypted_len, encrypted_master_key, |
| 1343 | keysize)) { |
| 1344 | return -1; |
| 1345 | } |
| 1346 | if (!EVP_DecryptFinal_ex(&d_ctx, decrypted_master_key + decrypted_len, &final_len)) { |
| 1347 | return -1; |
| 1348 | } |
Thurston Hou Yeen Dang | 06dc311 | 2016-07-18 14:16:37 -0700 | [diff] [blame] | 1349 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1350 | if (decrypted_len + final_len != static_cast<int>(keysize)) { |
| 1351 | return -1; |
| 1352 | } |
| 1353 | |
| 1354 | /* Copy intermediate key if needed by params */ |
| 1355 | if (intermediate_key && intermediate_key_size) { |
| 1356 | *intermediate_key = (unsigned char*)malloc(INTERMEDIATE_KEY_LEN_BYTES); |
| 1357 | if (*intermediate_key) { |
| 1358 | memcpy(*intermediate_key, ikey, INTERMEDIATE_KEY_LEN_BYTES); |
| 1359 | *intermediate_key_size = INTERMEDIATE_KEY_LEN_BYTES; |
| 1360 | } |
| 1361 | } |
| 1362 | |
| 1363 | EVP_CIPHER_CTX_cleanup(&d_ctx); |
| 1364 | |
| 1365 | return 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1366 | } |
| 1367 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1368 | static void get_kdf_func(struct crypt_mnt_ftr* ftr, kdf_func* kdf, void** kdf_params) { |
Paul Lawrence | db3730c | 2015-02-03 13:08:10 -0800 | [diff] [blame] | 1369 | if (ftr->kdf_type == KDF_SCRYPT_KEYMASTER) { |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 1370 | *kdf = scrypt_keymaster; |
| 1371 | *kdf_params = ftr; |
| 1372 | } else if (ftr->kdf_type == KDF_SCRYPT) { |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1373 | *kdf = scrypt; |
| 1374 | *kdf_params = ftr; |
| 1375 | } else { |
| 1376 | *kdf = pbkdf2; |
| 1377 | *kdf_params = NULL; |
| 1378 | } |
| 1379 | } |
| 1380 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1381 | static int decrypt_master_key(const char* passwd, unsigned char* decrypted_master_key, |
| 1382 | struct crypt_mnt_ftr* crypt_ftr, unsigned char** intermediate_key, |
| 1383 | size_t* intermediate_key_size) { |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1384 | kdf_func kdf; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1385 | void* kdf_params; |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1386 | int ret; |
| 1387 | |
| 1388 | get_kdf_func(crypt_ftr, &kdf, &kdf_params); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1389 | ret = decrypt_master_key_aux(passwd, crypt_ftr->salt, crypt_ftr->master_key, crypt_ftr->keysize, |
| 1390 | decrypted_master_key, kdf, kdf_params, intermediate_key, |
| 1391 | intermediate_key_size); |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1392 | if (ret != 0) { |
| 1393 | SLOGW("failure decrypting master key"); |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | return ret; |
| 1397 | } |
| 1398 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1399 | static int create_encrypted_random_key(const char* passwd, unsigned char* master_key, |
| 1400 | unsigned char* salt, struct crypt_mnt_ftr* crypt_ftr) { |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 1401 | unsigned char key_buf[MAX_KEY_LEN]; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1402 | |
Eric Biggers | 3a2f7db | 2019-01-16 13:05:34 -0800 | [diff] [blame^] | 1403 | /* Get some random bits for a key and salt */ |
| 1404 | if (android::vold::ReadRandomBytes(sizeof(key_buf), reinterpret_cast<char*>(key_buf)) != 0) { |
| 1405 | return -1; |
| 1406 | } |
| 1407 | if (android::vold::ReadRandomBytes(SALT_LEN, reinterpret_cast<char*>(salt)) != 0) { |
| 1408 | return -1; |
| 1409 | } |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1410 | |
| 1411 | /* Now encrypt it with the password */ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 1412 | return encrypt_master_key(passwd, salt, key_buf, master_key, crypt_ftr); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1413 | } |
| 1414 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1415 | int wait_and_unmount(const char* mountpoint, bool kill) { |
Greg Hackmann | 955653e | 2014-09-24 14:55:20 -0700 | [diff] [blame] | 1416 | int i, err, rc; |
Ken Sumrall | 2eaf713 | 2011-01-14 12:45:48 -0800 | [diff] [blame] | 1417 | #define WAIT_UNMOUNT_COUNT 20 |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1418 | |
| 1419 | /* Now umount the tmpfs filesystem */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1420 | for (i = 0; i < WAIT_UNMOUNT_COUNT; i++) { |
Greg Hackmann | 6e8440f | 2014-10-02 17:18:20 -0700 | [diff] [blame] | 1421 | if (umount(mountpoint) == 0) { |
| 1422 | break; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1423 | } |
Greg Hackmann | 6e8440f | 2014-10-02 17:18:20 -0700 | [diff] [blame] | 1424 | |
| 1425 | if (errno == EINVAL) { |
| 1426 | /* EINVAL is returned if the directory is not a mountpoint, |
| 1427 | * i.e. there is no filesystem mounted there. So just get out. |
| 1428 | */ |
| 1429 | break; |
| 1430 | } |
| 1431 | |
| 1432 | err = errno; |
| 1433 | |
| 1434 | /* If allowed, be increasingly aggressive before the last two retries */ |
| 1435 | if (kill) { |
| 1436 | if (i == (WAIT_UNMOUNT_COUNT - 3)) { |
| 1437 | SLOGW("sending SIGHUP to processes with open files\n"); |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1438 | android::vold::KillProcessesWithOpenFiles(mountpoint, SIGTERM); |
Greg Hackmann | 6e8440f | 2014-10-02 17:18:20 -0700 | [diff] [blame] | 1439 | } else if (i == (WAIT_UNMOUNT_COUNT - 2)) { |
| 1440 | SLOGW("sending SIGKILL to processes with open files\n"); |
Jeff Sharkey | 3472e52 | 2017-10-06 18:02:53 -0600 | [diff] [blame] | 1441 | android::vold::KillProcessesWithOpenFiles(mountpoint, SIGKILL); |
Greg Hackmann | 6e8440f | 2014-10-02 17:18:20 -0700 | [diff] [blame] | 1442 | } |
| 1443 | } |
| 1444 | |
| 1445 | sleep(1); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1446 | } |
| 1447 | |
| 1448 | if (i < WAIT_UNMOUNT_COUNT) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1449 | SLOGD("unmounting %s succeeded\n", mountpoint); |
| 1450 | rc = 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1451 | } else { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1452 | android::vold::KillProcessesWithOpenFiles(mountpoint, 0); |
| 1453 | SLOGE("unmounting %s failed: %s\n", mountpoint, strerror(err)); |
| 1454 | rc = -1; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | return rc; |
| 1458 | } |
| 1459 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1460 | static void prep_data_fs(void) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 1461 | // NOTE: post_fs_data results in init calling back around to vold, so all |
| 1462 | // callers to this method must be async |
| 1463 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1464 | /* Do the prep of the /data filesystem */ |
| 1465 | property_set("vold.post_fs_data_done", "0"); |
| 1466 | property_set("vold.decrypt", "trigger_post_fs_data"); |
Wei Wang | 42e3810 | 2017-06-07 10:46:12 -0700 | [diff] [blame] | 1467 | SLOGD("Just triggered post_fs_data"); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1468 | |
Ken Sumrall | c587269 | 2013-05-14 15:26:31 -0700 | [diff] [blame] | 1469 | /* Wait a max of 50 seconds, hopefully it takes much less */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1470 | while (!android::base::WaitForProperty("vold.post_fs_data_done", "1", std::chrono::seconds(15))) { |
Wei Wang | 42e3810 | 2017-06-07 10:46:12 -0700 | [diff] [blame] | 1471 | /* We timed out to prep /data in time. Continue wait. */ |
| 1472 | SLOGE("waited 15s for vold.post_fs_data_done, still waiting..."); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1473 | } |
Wei Wang | 42e3810 | 2017-06-07 10:46:12 -0700 | [diff] [blame] | 1474 | SLOGD("post_fs_data done"); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 1475 | } |
| 1476 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1477 | static void cryptfs_set_corrupt() { |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1478 | // Mark the footer as bad |
| 1479 | struct crypt_mnt_ftr crypt_ftr; |
| 1480 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
| 1481 | SLOGE("Failed to get crypto footer - panic"); |
| 1482 | return; |
| 1483 | } |
| 1484 | |
| 1485 | crypt_ftr.flags |= CRYPT_DATA_CORRUPT; |
| 1486 | if (put_crypt_ftr_and_key(&crypt_ftr)) { |
| 1487 | SLOGE("Failed to set crypto footer - panic"); |
| 1488 | return; |
| 1489 | } |
| 1490 | } |
| 1491 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1492 | static void cryptfs_trigger_restart_min_framework() { |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1493 | if (fs_mgr_do_tmpfs_mount(DATA_MNT_POINT)) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1494 | SLOGE("Failed to mount tmpfs on data - panic"); |
| 1495 | return; |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | if (property_set("vold.decrypt", "trigger_post_fs_data")) { |
| 1499 | SLOGE("Failed to trigger post fs data - panic"); |
| 1500 | return; |
| 1501 | } |
| 1502 | |
| 1503 | if (property_set("vold.decrypt", "trigger_restart_min_framework")) { |
| 1504 | SLOGE("Failed to trigger restart min framework - panic"); |
| 1505 | return; |
| 1506 | } |
| 1507 | } |
| 1508 | |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1509 | /* returns < 0 on failure */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1510 | static int cryptfs_restart_internal(int restart_main) { |
Ken Sumrall | 6864b7e | 2011-01-14 15:20:02 -0800 | [diff] [blame] | 1511 | char crypto_blkdev[MAXPATHLEN]; |
Tim Murray | 8439dc9 | 2014-12-15 11:56:11 -0800 | [diff] [blame] | 1512 | int rc = -1; |
Ken Sumrall | 0cc1663 | 2011-01-18 20:32:26 -0800 | [diff] [blame] | 1513 | static int restart_successful = 0; |
| 1514 | |
| 1515 | /* Validate that it's OK to call this routine */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1516 | if (!master_key_saved) { |
Ken Sumrall | 0cc1663 | 2011-01-18 20:32:26 -0800 | [diff] [blame] | 1517 | SLOGE("Encrypted filesystem not validated, aborting"); |
| 1518 | return -1; |
| 1519 | } |
| 1520 | |
| 1521 | if (restart_successful) { |
| 1522 | SLOGE("System already restarted with encrypted disk, aborting"); |
| 1523 | return -1; |
| 1524 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1525 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1526 | if (restart_main) { |
| 1527 | /* Here is where we shut down the framework. The init scripts |
| 1528 | * start all services in one of three classes: core, main or late_start. |
| 1529 | * On boot, we start core and main. Now, we stop main, but not core, |
| 1530 | * as core includes vold and a few other really important things that |
| 1531 | * we need to keep running. Once main has stopped, we should be able |
| 1532 | * to umount the tmpfs /data, then mount the encrypted /data. |
| 1533 | * We then restart the class main, and also the class late_start. |
| 1534 | * At the moment, I've only put a few things in late_start that I know |
| 1535 | * are not needed to bring up the framework, and that also cause problems |
| 1536 | * with unmounting the tmpfs /data, but I hope to add add more services |
| 1537 | * to the late_start class as we optimize this to decrease the delay |
| 1538 | * till the user is asked for the password to the filesystem. |
| 1539 | */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1540 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1541 | /* The init files are setup to stop the class main when vold.decrypt is |
| 1542 | * set to trigger_reset_main. |
| 1543 | */ |
| 1544 | property_set("vold.decrypt", "trigger_reset_main"); |
| 1545 | SLOGD("Just asked init to shut down class main\n"); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1546 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1547 | /* Ugh, shutting down the framework is not synchronous, so until it |
| 1548 | * can be fixed, this horrible hack will wait a moment for it all to |
| 1549 | * shut down before proceeding. Without it, some devices cannot |
| 1550 | * restart the graphics services. |
| 1551 | */ |
| 1552 | sleep(2); |
| 1553 | } |
Ken Sumrall | 9dedfd4 | 2012-10-09 14:16:59 -0700 | [diff] [blame] | 1554 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1555 | /* Now that the framework is shutdown, we should be able to umount() |
| 1556 | * the tmpfs filesystem, and mount the real one. |
| 1557 | */ |
| 1558 | |
Ken Sumrall | 6864b7e | 2011-01-14 15:20:02 -0800 | [diff] [blame] | 1559 | property_get("ro.crypto.fs_crypto_blkdev", crypto_blkdev, ""); |
| 1560 | if (strlen(crypto_blkdev) == 0) { |
| 1561 | SLOGE("fs_crypto_blkdev not set\n"); |
| 1562 | return -1; |
| 1563 | } |
| 1564 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1565 | if (!(rc = wait_and_unmount(DATA_MNT_POINT, true))) { |
Doug Zongker | 6fd5771 | 2013-12-17 09:43:23 -0800 | [diff] [blame] | 1566 | /* If ro.crypto.readonly is set to 1, mount the decrypted |
| 1567 | * filesystem readonly. This is used when /data is mounted by |
| 1568 | * recovery mode. |
| 1569 | */ |
| 1570 | char ro_prop[PROPERTY_VALUE_MAX]; |
| 1571 | property_get("ro.crypto.readonly", ro_prop, ""); |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 1572 | if (strlen(ro_prop) > 0 && std::stoi(ro_prop)) { |
Paul Crowley | e2ee152 | 2017-09-26 14:05:26 -0700 | [diff] [blame] | 1573 | struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT); |
Luis Hector Chavez | bbb512d | 2018-05-30 15:47:50 -0700 | [diff] [blame] | 1574 | if (rec) { |
| 1575 | rec->flags |= MS_RDONLY; |
| 1576 | } |
Doug Zongker | 6fd5771 | 2013-12-17 09:43:23 -0800 | [diff] [blame] | 1577 | } |
JP Abgrall | 62c7af3 | 2014-06-16 13:01:23 -0700 | [diff] [blame] | 1578 | |
Ken Sumrall | e5032c4 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 1579 | /* If that succeeded, then mount the decrypted filesystem */ |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1580 | int retries = RETRY_MOUNT_ATTEMPTS; |
| 1581 | int mount_rc; |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 1582 | |
| 1583 | /* |
| 1584 | * fs_mgr_do_mount runs fsck. Use setexeccon to run trusted |
| 1585 | * partitions in the fsck domain. |
| 1586 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1587 | if (setexeccon(secontextFsck())) { |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 1588 | SLOGE("Failed to setexeccon"); |
| 1589 | return -1; |
| 1590 | } |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 1591 | bool needs_cp = android::vold::cp_needsCheckpoint(); |
| 1592 | while ((mount_rc = fs_mgr_do_mount(fstab_default, DATA_MNT_POINT, crypto_blkdev, 0, |
| 1593 | needs_cp)) != 0) { |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1594 | if (mount_rc == FS_MGR_DOMNT_BUSY) { |
| 1595 | /* TODO: invoke something similar to |
| 1596 | Process::killProcessWithOpenFiles(DATA_MNT_POINT, |
| 1597 | retries > RETRY_MOUNT_ATTEMPT/2 ? 1 : 2 ) */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1598 | SLOGI("Failed to mount %s because it is busy - waiting", crypto_blkdev); |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1599 | if (--retries) { |
| 1600 | sleep(RETRY_MOUNT_DELAY_SECONDS); |
| 1601 | } else { |
| 1602 | /* Let's hope that a reboot clears away whatever is keeping |
| 1603 | the mount busy */ |
Josh Gao | fec4437 | 2017-08-28 13:22:55 -0700 | [diff] [blame] | 1604 | cryptfs_reboot(RebootType::reboot); |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1605 | } |
| 1606 | } else { |
| 1607 | SLOGE("Failed to mount decrypted data"); |
| 1608 | cryptfs_set_corrupt(); |
| 1609 | cryptfs_trigger_restart_min_framework(); |
| 1610 | SLOGI("Started framework to offer wipe"); |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 1611 | if (setexeccon(NULL)) { |
| 1612 | SLOGE("Failed to setexeccon"); |
| 1613 | } |
Paul Lawrence | 8e3f451 | 2014-09-08 10:11:17 -0700 | [diff] [blame] | 1614 | return -1; |
| 1615 | } |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1616 | } |
Jeff Vander Stoep | df72575 | 2016-01-29 15:34:43 -0800 | [diff] [blame] | 1617 | if (setexeccon(NULL)) { |
| 1618 | SLOGE("Failed to setexeccon"); |
| 1619 | return -1; |
| 1620 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1621 | |
Ken Sumrall | e5032c4 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 1622 | /* Create necessary paths on /data */ |
Wei Wang | 42e3810 | 2017-06-07 10:46:12 -0700 | [diff] [blame] | 1623 | prep_data_fs(); |
Seigo Nonaka | e2ef0c0 | 2016-06-20 17:05:40 +0900 | [diff] [blame] | 1624 | property_set("vold.decrypt", "trigger_load_persist_props"); |
Ken Sumrall | e5032c4 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 1625 | |
| 1626 | /* startup service classes main and late_start */ |
| 1627 | property_set("vold.decrypt", "trigger_restart_framework"); |
| 1628 | SLOGD("Just triggered restart_framework\n"); |
| 1629 | |
| 1630 | /* Give it a few moments to get started */ |
| 1631 | sleep(1); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1632 | } |
| 1633 | |
Ken Sumrall | 0cc1663 | 2011-01-18 20:32:26 -0800 | [diff] [blame] | 1634 | if (rc == 0) { |
| 1635 | restart_successful = 1; |
| 1636 | } |
| 1637 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1638 | return rc; |
| 1639 | } |
| 1640 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1641 | int cryptfs_restart(void) { |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 1642 | SLOGI("cryptfs_restart"); |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1643 | if (fscrypt_is_native()) { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 1644 | SLOGE("cryptfs_restart not valid for file encryption:"); |
| 1645 | return -1; |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 1646 | } |
| 1647 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1648 | /* Call internal implementation forcing a restart of main service group */ |
| 1649 | return cryptfs_restart_internal(1); |
| 1650 | } |
| 1651 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1652 | static int do_crypto_complete(const char* mount_point) { |
| 1653 | struct crypt_mnt_ftr crypt_ftr; |
| 1654 | char encrypted_state[PROPERTY_VALUE_MAX]; |
| 1655 | char key_loc[PROPERTY_VALUE_MAX]; |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 1656 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1657 | property_get("ro.crypto.state", encrypted_state, ""); |
| 1658 | if (strcmp(encrypted_state, "encrypted")) { |
| 1659 | SLOGE("not running with encryption, aborting"); |
| 1660 | return CRYPTO_COMPLETE_NOT_ENCRYPTED; |
Ken Sumrall | e1a4585 | 2011-12-14 21:24:27 -0800 | [diff] [blame] | 1661 | } |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 1662 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1663 | // crypto_complete is full disk encrypted status |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1664 | if (fscrypt_is_native()) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1665 | return CRYPTO_COMPLETE_NOT_ENCRYPTED; |
| 1666 | } |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1667 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1668 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
| 1669 | fs_mgr_get_crypt_info(fstab_default, key_loc, 0, sizeof(key_loc)); |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1670 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1671 | /* |
| 1672 | * Only report this error if key_loc is a file and it exists. |
| 1673 | * If the device was never encrypted, and /data is not mountable for |
| 1674 | * some reason, returning 1 should prevent the UI from presenting the |
| 1675 | * a "enter password" screen, or worse, a "press button to wipe the |
| 1676 | * device" screen. |
| 1677 | */ |
| 1678 | if ((key_loc[0] == '/') && (access("key_loc", F_OK) == -1)) { |
| 1679 | SLOGE("master key file does not exist, aborting"); |
| 1680 | return CRYPTO_COMPLETE_NOT_ENCRYPTED; |
| 1681 | } else { |
| 1682 | SLOGE("Error getting crypt footer and key\n"); |
| 1683 | return CRYPTO_COMPLETE_BAD_METADATA; |
| 1684 | } |
| 1685 | } |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 1686 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1687 | // Test for possible error flags |
| 1688 | if (crypt_ftr.flags & CRYPT_ENCRYPTION_IN_PROGRESS) { |
| 1689 | SLOGE("Encryption process is partway completed\n"); |
| 1690 | return CRYPTO_COMPLETE_PARTIAL; |
| 1691 | } |
| 1692 | |
| 1693 | if (crypt_ftr.flags & CRYPT_INCONSISTENT_STATE) { |
| 1694 | SLOGE("Encryption process was interrupted but cannot continue\n"); |
| 1695 | return CRYPTO_COMPLETE_INCONSISTENT; |
| 1696 | } |
| 1697 | |
| 1698 | if (crypt_ftr.flags & CRYPT_DATA_CORRUPT) { |
| 1699 | SLOGE("Encryption is successful but data is corrupt\n"); |
| 1700 | return CRYPTO_COMPLETE_CORRUPT; |
| 1701 | } |
| 1702 | |
| 1703 | /* We passed the test! We shall diminish, and return to the west */ |
| 1704 | return CRYPTO_COMPLETE_ENCRYPTED; |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 1705 | } |
| 1706 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1707 | static int test_mount_encrypted_fs(struct crypt_mnt_ftr* crypt_ftr, const char* passwd, |
| 1708 | const char* mount_point, const char* label) { |
| 1709 | unsigned char decrypted_master_key[MAX_KEY_LEN]; |
| 1710 | char crypto_blkdev[MAXPATHLEN]; |
| 1711 | char real_blkdev[MAXPATHLEN]; |
| 1712 | char tmp_mount_point[64]; |
| 1713 | unsigned int orig_failed_decrypt_count; |
| 1714 | int rc; |
| 1715 | int use_keymaster = 0; |
| 1716 | int upgrade = 0; |
| 1717 | unsigned char* intermediate_key = 0; |
| 1718 | size_t intermediate_key_size = 0; |
| 1719 | int N = 1 << crypt_ftr->N_factor; |
| 1720 | int r = 1 << crypt_ftr->r_factor; |
| 1721 | int p = 1 << crypt_ftr->p_factor; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1722 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1723 | SLOGD("crypt_ftr->fs_size = %lld\n", crypt_ftr->fs_size); |
| 1724 | orig_failed_decrypt_count = crypt_ftr->failed_decrypt_count; |
Ken Sumrall | 0cc1663 | 2011-01-18 20:32:26 -0800 | [diff] [blame] | 1725 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1726 | if (!(crypt_ftr->flags & CRYPT_MNT_KEY_UNENCRYPTED)) { |
| 1727 | if (decrypt_master_key(passwd, decrypted_master_key, crypt_ftr, &intermediate_key, |
| 1728 | &intermediate_key_size)) { |
| 1729 | SLOGE("Failed to decrypt master key\n"); |
| 1730 | rc = -1; |
| 1731 | goto errout; |
| 1732 | } |
JP Abgrall | 7bdfa52 | 2013-11-15 13:42:56 -0800 | [diff] [blame] | 1733 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1734 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1735 | fs_mgr_get_crypt_info(fstab_default, 0, real_blkdev, sizeof(real_blkdev)); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1736 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1737 | // Create crypto block device - all (non fatal) code paths |
| 1738 | // need it |
| 1739 | if (create_crypto_blk_dev(crypt_ftr, decrypted_master_key, real_blkdev, crypto_blkdev, label, |
| 1740 | 0)) { |
| 1741 | SLOGE("Error creating decrypted block device\n"); |
| 1742 | rc = -1; |
| 1743 | goto errout; |
| 1744 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1745 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1746 | /* Work out if the problem is the password or the data */ |
| 1747 | unsigned char scrypted_intermediate_key[sizeof(crypt_ftr->scrypted_intermediate_key)]; |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1748 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1749 | rc = crypto_scrypt(intermediate_key, intermediate_key_size, crypt_ftr->salt, |
| 1750 | sizeof(crypt_ftr->salt), N, r, p, scrypted_intermediate_key, |
| 1751 | sizeof(scrypted_intermediate_key)); |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1752 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1753 | // Does the key match the crypto footer? |
| 1754 | if (rc == 0 && memcmp(scrypted_intermediate_key, crypt_ftr->scrypted_intermediate_key, |
| 1755 | sizeof(scrypted_intermediate_key)) == 0) { |
| 1756 | SLOGI("Password matches"); |
| 1757 | rc = 0; |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1758 | } else { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1759 | /* Try mounting the file system anyway, just in case the problem's with |
| 1760 | * the footer, not the key. */ |
| 1761 | snprintf(tmp_mount_point, sizeof(tmp_mount_point), "%s/tmp_mnt", mount_point); |
| 1762 | mkdir(tmp_mount_point, 0755); |
| 1763 | if (fs_mgr_do_mount(fstab_default, DATA_MNT_POINT, crypto_blkdev, tmp_mount_point)) { |
| 1764 | SLOGE("Error temp mounting decrypted block device\n"); |
| 1765 | delete_crypto_blk_dev(label); |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 1766 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1767 | rc = ++crypt_ftr->failed_decrypt_count; |
| 1768 | put_crypt_ftr_and_key(crypt_ftr); |
| 1769 | } else { |
| 1770 | /* Success! */ |
| 1771 | SLOGI("Password did not match but decrypted drive mounted - continue"); |
| 1772 | umount(tmp_mount_point); |
| 1773 | rc = 0; |
Paul Lawrence | b2f682b | 2014-09-08 11:28:19 -0700 | [diff] [blame] | 1774 | } |
JP Abgrall | 7bdfa52 | 2013-11-15 13:42:56 -0800 | [diff] [blame] | 1775 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1776 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1777 | if (rc == 0) { |
| 1778 | crypt_ftr->failed_decrypt_count = 0; |
| 1779 | if (orig_failed_decrypt_count != 0) { |
| 1780 | put_crypt_ftr_and_key(crypt_ftr); |
| 1781 | } |
| 1782 | |
| 1783 | /* Save the name of the crypto block device |
| 1784 | * so we can mount it when restarting the framework. */ |
| 1785 | property_set("ro.crypto.fs_crypto_blkdev", crypto_blkdev); |
| 1786 | |
| 1787 | /* Also save a the master key so we can reencrypted the key |
| 1788 | * the key when we want to change the password on it. */ |
| 1789 | memcpy(saved_master_key, decrypted_master_key, crypt_ftr->keysize); |
| 1790 | saved_mount_point = strdup(mount_point); |
| 1791 | master_key_saved = 1; |
| 1792 | SLOGD("%s(): Master key saved\n", __FUNCTION__); |
| 1793 | rc = 0; |
| 1794 | |
| 1795 | // Upgrade if we're not using the latest KDF. |
| 1796 | use_keymaster = keymaster_check_compatibility(); |
| 1797 | if (crypt_ftr->kdf_type == KDF_SCRYPT_KEYMASTER) { |
| 1798 | // Don't allow downgrade |
| 1799 | } else if (use_keymaster == 1 && crypt_ftr->kdf_type != KDF_SCRYPT_KEYMASTER) { |
| 1800 | crypt_ftr->kdf_type = KDF_SCRYPT_KEYMASTER; |
| 1801 | upgrade = 1; |
| 1802 | } else if (use_keymaster == 0 && crypt_ftr->kdf_type != KDF_SCRYPT) { |
| 1803 | crypt_ftr->kdf_type = KDF_SCRYPT; |
| 1804 | upgrade = 1; |
| 1805 | } |
| 1806 | |
| 1807 | if (upgrade) { |
| 1808 | rc = encrypt_master_key(passwd, crypt_ftr->salt, saved_master_key, |
| 1809 | crypt_ftr->master_key, crypt_ftr); |
| 1810 | if (!rc) { |
| 1811 | rc = put_crypt_ftr_and_key(crypt_ftr); |
| 1812 | } |
| 1813 | SLOGD("Key Derivation Function upgrade: rc=%d\n", rc); |
| 1814 | |
| 1815 | // Do not fail even if upgrade failed - machine is bootable |
| 1816 | // Note that if this code is ever hit, there is a *serious* problem |
| 1817 | // since KDFs should never fail. You *must* fix the kdf before |
| 1818 | // proceeding! |
| 1819 | if (rc) { |
| 1820 | SLOGW( |
| 1821 | "Upgrade failed with error %d," |
| 1822 | " but continuing with previous state", |
| 1823 | rc); |
| 1824 | rc = 0; |
| 1825 | } |
| 1826 | } |
| 1827 | } |
| 1828 | |
| 1829 | errout: |
| 1830 | if (intermediate_key) { |
| 1831 | memset(intermediate_key, 0, intermediate_key_size); |
| 1832 | free(intermediate_key); |
| 1833 | } |
| 1834 | return rc; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1835 | } |
| 1836 | |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1837 | /* |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1838 | * Called by vold when it's asked to mount an encrypted external |
| 1839 | * storage volume. The incoming partition has no crypto header/footer, |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 1840 | * as any metadata is been stored in a separate, small partition. We |
| 1841 | * assume it must be using our same crypt type and keysize. |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1842 | * |
| 1843 | * out_crypto_blkdev must be MAXPATHLEN. |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1844 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1845 | int cryptfs_setup_ext_volume(const char* label, const char* real_blkdev, const unsigned char* key, |
| 1846 | char* out_crypto_blkdev) { |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 1847 | uint64_t nr_sec = 0; |
| 1848 | if (android::vold::GetBlockDev512Sectors(real_blkdev, &nr_sec) != android::OK) { |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1849 | SLOGE("Failed to get size of %s: %s", real_blkdev, strerror(errno)); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1850 | return -1; |
| 1851 | } |
| 1852 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1853 | struct crypt_mnt_ftr ext_crypt_ftr; |
| 1854 | memset(&ext_crypt_ftr, 0, sizeof(ext_crypt_ftr)); |
| 1855 | ext_crypt_ftr.fs_size = nr_sec; |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 1856 | ext_crypt_ftr.keysize = cryptfs_get_keysize(); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1857 | strlcpy((char*)ext_crypt_ftr.crypto_type_name, cryptfs_get_crypto_name(), |
Jeff Sharkey | 32ebb73 | 2017-03-27 16:18:50 -0600 | [diff] [blame] | 1858 | MAX_CRYPTO_TYPE_NAME_LEN); |
Paul Crowley | 385cb8c | 2018-03-29 13:27:23 -0700 | [diff] [blame] | 1859 | uint32_t flags = 0; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1860 | if (fscrypt_is_native() && |
Paul Crowley | 385cb8c | 2018-03-29 13:27:23 -0700 | [diff] [blame] | 1861 | android::base::GetBoolProperty("ro.crypto.allow_encrypt_override", false)) |
| 1862 | flags |= CREATE_CRYPTO_BLK_DEV_FLAGS_ALLOW_ENCRYPT_OVERRIDE; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1863 | |
Paul Crowley | 385cb8c | 2018-03-29 13:27:23 -0700 | [diff] [blame] | 1864 | return create_crypto_blk_dev(&ext_crypt_ftr, key, real_blkdev, out_crypto_blkdev, label, flags); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1865 | } |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1866 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 1867 | /* |
| 1868 | * Called by vold when it's asked to unmount an encrypted external |
| 1869 | * storage volume. |
| 1870 | */ |
| 1871 | int cryptfs_revert_ext_volume(const char* label) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1872 | return delete_crypto_blk_dev((char*)label); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 1873 | } |
| 1874 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1875 | int cryptfs_crypto_complete(void) { |
| 1876 | return do_crypto_complete("/data"); |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 1877 | } |
| 1878 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1879 | int check_unmounted_and_get_ftr(struct crypt_mnt_ftr* crypt_ftr) { |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1880 | char encrypted_state[PROPERTY_VALUE_MAX]; |
| 1881 | property_get("ro.crypto.state", encrypted_state, ""); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1882 | if (master_key_saved || strcmp(encrypted_state, "encrypted")) { |
| 1883 | SLOGE( |
| 1884 | "encrypted fs already validated or not running with encryption," |
| 1885 | " aborting"); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1886 | return -1; |
| 1887 | } |
| 1888 | |
| 1889 | if (get_crypt_ftr_and_key(crypt_ftr)) { |
| 1890 | SLOGE("Error getting crypt footer and key"); |
| 1891 | return -1; |
| 1892 | } |
| 1893 | |
| 1894 | return 0; |
| 1895 | } |
| 1896 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1897 | int cryptfs_check_passwd(const char* passwd) { |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 1898 | SLOGI("cryptfs_check_passwd"); |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1899 | if (fscrypt_is_native()) { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 1900 | SLOGE("cryptfs_check_passwd not valid for file encryption"); |
| 1901 | return -1; |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 1902 | } |
| 1903 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1904 | struct crypt_mnt_ftr crypt_ftr; |
| 1905 | int rc; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1906 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1907 | rc = check_unmounted_and_get_ftr(&crypt_ftr); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 1908 | if (rc) { |
| 1909 | SLOGE("Could not get footer"); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 1910 | return rc; |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 1911 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1912 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1913 | rc = test_mount_encrypted_fs(&crypt_ftr, passwd, DATA_MNT_POINT, CRYPTO_BLOCK_DEVICE); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 1914 | if (rc) { |
| 1915 | SLOGE("Password did not match"); |
| 1916 | return rc; |
| 1917 | } |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 1918 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 1919 | if (crypt_ftr.flags & CRYPT_FORCE_COMPLETE) { |
| 1920 | // Here we have a default actual password but a real password |
| 1921 | // we must test against the scrypted value |
| 1922 | // First, we must delete the crypto block device that |
| 1923 | // test_mount_encrypted_fs leaves behind as a side effect |
| 1924 | delete_crypto_blk_dev(CRYPTO_BLOCK_DEVICE); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1925 | rc = test_mount_encrypted_fs(&crypt_ftr, DEFAULT_PASSWORD, DATA_MNT_POINT, |
| 1926 | CRYPTO_BLOCK_DEVICE); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 1927 | if (rc) { |
| 1928 | SLOGE("Default password did not match on reboot encryption"); |
| 1929 | return rc; |
| 1930 | } |
| 1931 | |
| 1932 | crypt_ftr.flags &= ~CRYPT_FORCE_COMPLETE; |
| 1933 | put_crypt_ftr_and_key(&crypt_ftr); |
| 1934 | rc = cryptfs_changepw(crypt_ftr.crypt_type, passwd); |
| 1935 | if (rc) { |
| 1936 | SLOGE("Could not change password on reboot encryption"); |
| 1937 | return rc; |
| 1938 | } |
| 1939 | } |
| 1940 | |
| 1941 | if (crypt_ftr.crypt_type != CRYPT_TYPE_DEFAULT) { |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 1942 | cryptfs_clear_password(); |
| 1943 | password = strdup(passwd); |
| 1944 | struct timespec now; |
| 1945 | clock_gettime(CLOCK_BOOTTIME, &now); |
| 1946 | password_expiry_time = now.tv_sec + password_max_age_seconds; |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 1947 | } |
| 1948 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1949 | return rc; |
| 1950 | } |
| 1951 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1952 | int cryptfs_verify_passwd(const char* passwd) { |
Ken Sumrall | 3ad9072 | 2011-10-04 20:38:29 -0700 | [diff] [blame] | 1953 | struct crypt_mnt_ftr crypt_ftr; |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 1954 | unsigned char decrypted_master_key[MAX_KEY_LEN]; |
Ken Sumrall | 3ad9072 | 2011-10-04 20:38:29 -0700 | [diff] [blame] | 1955 | char encrypted_state[PROPERTY_VALUE_MAX]; |
| 1956 | int rc; |
| 1957 | |
| 1958 | property_get("ro.crypto.state", encrypted_state, ""); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 1959 | if (strcmp(encrypted_state, "encrypted")) { |
Ken Sumrall | 3ad9072 | 2011-10-04 20:38:29 -0700 | [diff] [blame] | 1960 | SLOGE("device not encrypted, aborting"); |
| 1961 | return -2; |
| 1962 | } |
| 1963 | |
| 1964 | if (!master_key_saved) { |
| 1965 | SLOGE("encrypted fs not yet mounted, aborting"); |
| 1966 | return -1; |
| 1967 | } |
| 1968 | |
| 1969 | if (!saved_mount_point) { |
| 1970 | SLOGE("encrypted fs failed to save mount point, aborting"); |
| 1971 | return -1; |
| 1972 | } |
| 1973 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 1974 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
Ken Sumrall | 3ad9072 | 2011-10-04 20:38:29 -0700 | [diff] [blame] | 1975 | SLOGE("Error getting crypt footer and key\n"); |
| 1976 | return -1; |
| 1977 | } |
| 1978 | |
| 1979 | if (crypt_ftr.flags & CRYPT_MNT_KEY_UNENCRYPTED) { |
| 1980 | /* If the device has no password, then just say the password is valid */ |
| 1981 | rc = 0; |
| 1982 | } else { |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 1983 | decrypt_master_key(passwd, decrypted_master_key, &crypt_ftr, 0, 0); |
Ken Sumrall | 3ad9072 | 2011-10-04 20:38:29 -0700 | [diff] [blame] | 1984 | if (!memcmp(decrypted_master_key, saved_master_key, crypt_ftr.keysize)) { |
| 1985 | /* They match, the password is correct */ |
| 1986 | rc = 0; |
| 1987 | } else { |
| 1988 | /* If incorrect, sleep for a bit to prevent dictionary attacks */ |
| 1989 | sleep(1); |
| 1990 | rc = 1; |
| 1991 | } |
| 1992 | } |
| 1993 | |
| 1994 | return rc; |
| 1995 | } |
| 1996 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1997 | /* Initialize a crypt_mnt_ftr structure. The keysize is |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 1998 | * defaulted to cryptfs_get_keysize() bytes, and the filesystem size to 0. |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 1999 | * Presumably, at a minimum, the caller will update the |
| 2000 | * filesystem size and crypto_type_name after calling this function. |
| 2001 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2002 | static int cryptfs_init_crypt_mnt_ftr(struct crypt_mnt_ftr* ftr) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2003 | off64_t off; |
| 2004 | |
| 2005 | memset(ftr, 0, sizeof(struct crypt_mnt_ftr)); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2006 | ftr->magic = CRYPT_MNT_MAGIC; |
Kenny Root | c96a5f8 | 2013-06-14 12:08:28 -0700 | [diff] [blame] | 2007 | ftr->major_version = CURRENT_MAJOR_VERSION; |
| 2008 | ftr->minor_version = CURRENT_MINOR_VERSION; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2009 | ftr->ftr_size = sizeof(struct crypt_mnt_ftr); |
Greg Kaiser | 57f9af6 | 2018-02-16 13:13:58 -0800 | [diff] [blame] | 2010 | ftr->keysize = cryptfs_get_keysize(); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2011 | |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2012 | switch (keymaster_check_compatibility()) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2013 | case 1: |
| 2014 | ftr->kdf_type = KDF_SCRYPT_KEYMASTER; |
| 2015 | break; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2016 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2017 | case 0: |
| 2018 | ftr->kdf_type = KDF_SCRYPT; |
| 2019 | break; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2020 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2021 | default: |
| 2022 | SLOGE("keymaster_check_compatibility failed"); |
| 2023 | return -1; |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2024 | } |
| 2025 | |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 2026 | get_device_scrypt_params(ftr); |
| 2027 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2028 | ftr->persist_data_size = CRYPT_PERSIST_DATA_SIZE; |
| 2029 | if (get_crypt_ftr_info(NULL, &off) == 0) { |
| 2030 | ftr->persist_data_offset[0] = off + CRYPT_FOOTER_TO_PERSIST_OFFSET; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2031 | ftr->persist_data_offset[1] = off + CRYPT_FOOTER_TO_PERSIST_OFFSET + ftr->persist_data_size; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2032 | } |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2033 | |
| 2034 | return 0; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2035 | } |
| 2036 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2037 | #define FRAMEWORK_BOOT_WAIT 60 |
| 2038 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2039 | static int cryptfs_SHA256_fileblock(const char* filename, __le8* buf) { |
| 2040 | int fd = open(filename, O_RDONLY | O_CLOEXEC); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2041 | if (fd == -1) { |
| 2042 | SLOGE("Error opening file %s", filename); |
| 2043 | return -1; |
| 2044 | } |
| 2045 | |
| 2046 | char block[CRYPT_INPLACE_BUFSIZE]; |
| 2047 | memset(block, 0, sizeof(block)); |
| 2048 | if (unix_read(fd, block, sizeof(block)) < 0) { |
| 2049 | SLOGE("Error reading file %s", filename); |
| 2050 | close(fd); |
| 2051 | return -1; |
| 2052 | } |
| 2053 | |
| 2054 | close(fd); |
| 2055 | |
| 2056 | SHA256_CTX c; |
| 2057 | SHA256_Init(&c); |
| 2058 | SHA256_Update(&c, block, sizeof(block)); |
| 2059 | SHA256_Final(buf, &c); |
| 2060 | |
| 2061 | return 0; |
| 2062 | } |
| 2063 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2064 | static int cryptfs_enable_all_volumes(struct crypt_mnt_ftr* crypt_ftr, char* crypto_blkdev, |
| 2065 | char* real_blkdev, int previously_encrypted_upto) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2066 | off64_t cur_encryption_done = 0, tot_encryption_size = 0; |
Tim Murray | 8439dc9 | 2014-12-15 11:56:11 -0800 | [diff] [blame] | 2067 | int rc = -1; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2068 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2069 | /* The size of the userdata partition, and add in the vold volumes below */ |
| 2070 | tot_encryption_size = crypt_ftr->fs_size; |
| 2071 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2072 | rc = cryptfs_enable_inplace(crypto_blkdev, real_blkdev, crypt_ftr->fs_size, &cur_encryption_done, |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 2073 | tot_encryption_size, previously_encrypted_upto, true); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2074 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2075 | if (rc == ENABLE_INPLACE_ERR_DEV) { |
| 2076 | /* Hack for b/17898962 */ |
| 2077 | SLOGE("cryptfs_enable: crypto block dev failure. Must reboot...\n"); |
| 2078 | cryptfs_reboot(RebootType::reboot); |
| 2079 | } |
JP Abgrall | 7fc1de8 | 2014-10-10 18:43:41 -0700 | [diff] [blame] | 2080 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2081 | if (!rc) { |
| 2082 | crypt_ftr->encrypted_upto = cur_encryption_done; |
| 2083 | } |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2084 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2085 | if (!rc && crypt_ftr->encrypted_upto == crypt_ftr->fs_size) { |
| 2086 | /* The inplace routine never actually sets the progress to 100% due |
| 2087 | * to the round down nature of integer division, so set it here */ |
| 2088 | property_set("vold.encrypt_progress", "100"); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2089 | } |
| 2090 | |
| 2091 | return rc; |
| 2092 | } |
| 2093 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame] | 2094 | static int vold_unmountAll(void) { |
| 2095 | VolumeManager* vm = VolumeManager::Instance(); |
| 2096 | return vm->unmountAll(); |
| 2097 | } |
| 2098 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2099 | int cryptfs_enable_internal(int crypt_type, const char* passwd, int no_ui) { |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2100 | char crypto_blkdev[MAXPATHLEN], real_blkdev[MAXPATHLEN]; |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 2101 | unsigned char decrypted_master_key[MAX_KEY_LEN]; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2102 | int rc = -1, i; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2103 | struct crypt_mnt_ftr crypt_ftr; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2104 | struct crypt_persist_data* pdata; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2105 | char encrypted_state[PROPERTY_VALUE_MAX]; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2106 | char lockid[32] = {0}; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2107 | char key_loc[PROPERTY_VALUE_MAX]; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2108 | int num_vols; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2109 | off64_t previously_encrypted_upto = 0; |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2110 | bool rebootEncryption = false; |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 2111 | bool onlyCreateHeader = false; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2112 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2113 | if (get_crypt_ftr_and_key(&crypt_ftr) == 0) { |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2114 | if (crypt_ftr.flags & CRYPT_ENCRYPTION_IN_PROGRESS) { |
| 2115 | /* An encryption was underway and was interrupted */ |
| 2116 | previously_encrypted_upto = crypt_ftr.encrypted_upto; |
| 2117 | crypt_ftr.encrypted_upto = 0; |
| 2118 | crypt_ftr.flags &= ~CRYPT_ENCRYPTION_IN_PROGRESS; |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2119 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2120 | /* At this point, we are in an inconsistent state. Until we successfully |
| 2121 | complete encryption, a reboot will leave us broken. So mark the |
| 2122 | encryption failed in case that happens. |
| 2123 | On successfully completing encryption, remove this flag */ |
| 2124 | crypt_ftr.flags |= CRYPT_INCONSISTENT_STATE; |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2125 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2126 | put_crypt_ftr_and_key(&crypt_ftr); |
| 2127 | } else if (crypt_ftr.flags & CRYPT_FORCE_ENCRYPTION) { |
| 2128 | if (!check_ftr_sha(&crypt_ftr)) { |
| 2129 | memset(&crypt_ftr, 0, sizeof(crypt_ftr)); |
| 2130 | put_crypt_ftr_and_key(&crypt_ftr); |
| 2131 | goto error_unencrypted; |
| 2132 | } |
| 2133 | |
| 2134 | /* Doing a reboot-encryption*/ |
| 2135 | crypt_ftr.flags &= ~CRYPT_FORCE_ENCRYPTION; |
| 2136 | crypt_ftr.flags |= CRYPT_FORCE_COMPLETE; |
| 2137 | rebootEncryption = true; |
| 2138 | } |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 2139 | } else { |
| 2140 | // We don't want to accidentally reference invalid data. |
| 2141 | memset(&crypt_ftr, 0, sizeof(crypt_ftr)); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | property_get("ro.crypto.state", encrypted_state, ""); |
| 2145 | if (!strcmp(encrypted_state, "encrypted") && !previously_encrypted_upto) { |
| 2146 | SLOGE("Device is already running encrypted, aborting"); |
| 2147 | goto error_unencrypted; |
| 2148 | } |
| 2149 | |
| 2150 | // TODO refactor fs_mgr_get_crypt_info to get both in one call |
Paul Crowley | e2ee152 | 2017-09-26 14:05:26 -0700 | [diff] [blame] | 2151 | fs_mgr_get_crypt_info(fstab_default, key_loc, 0, sizeof(key_loc)); |
| 2152 | fs_mgr_get_crypt_info(fstab_default, 0, real_blkdev, sizeof(real_blkdev)); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2153 | |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2154 | /* Get the size of the real block device */ |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 2155 | uint64_t nr_sec; |
| 2156 | if (android::vold::GetBlockDev512Sectors(real_blkdev, &nr_sec) != android::OK) { |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2157 | SLOGE("Cannot get size of block device %s\n", real_blkdev); |
| 2158 | goto error_unencrypted; |
| 2159 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2160 | |
| 2161 | /* If doing inplace encryption, make sure the orig fs doesn't include the crypto footer */ |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2162 | if (!strcmp(key_loc, KEY_IN_FOOTER)) { |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 2163 | uint64_t fs_size_sec, max_fs_size_sec; |
Jim Miller | a70abc6 | 2014-08-15 02:00:45 +0000 | [diff] [blame] | 2164 | fs_size_sec = get_fs_size(real_blkdev); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2165 | if (fs_size_sec == 0) fs_size_sec = get_f2fs_filesystem_size_sec(real_blkdev); |
Daniel Rosenberg | e82df16 | 2014-08-15 22:19:23 +0000 | [diff] [blame] | 2166 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2167 | max_fs_size_sec = nr_sec - (CRYPT_FOOTER_OFFSET / CRYPT_SECTOR_SIZE); |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2168 | |
| 2169 | if (fs_size_sec > max_fs_size_sec) { |
| 2170 | SLOGE("Orig filesystem overlaps crypto footer region. Cannot encrypt in place."); |
| 2171 | goto error_unencrypted; |
| 2172 | } |
| 2173 | } |
| 2174 | |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 2175 | /* Get a wakelock as this may take a while, and we don't want the |
| 2176 | * device to sleep on us. We'll grab a partial wakelock, and if the UI |
| 2177 | * wants to keep the screen on, it can grab a full wakelock. |
| 2178 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2179 | snprintf(lockid, sizeof(lockid), "enablecrypto%d", (int)getpid()); |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 2180 | acquire_wake_lock(PARTIAL_WAKE_LOCK, lockid); |
| 2181 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2182 | /* The init files are setup to stop the class main and late start when |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2183 | * vold sets trigger_shutdown_framework. |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2184 | */ |
| 2185 | property_set("vold.decrypt", "trigger_shutdown_framework"); |
| 2186 | SLOGD("Just asked init to shut down class main\n"); |
| 2187 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 2188 | /* Ask vold to unmount all devices that it manages */ |
| 2189 | if (vold_unmountAll()) { |
| 2190 | SLOGE("Failed to unmount all vold managed devices"); |
Ken Sumrall | 2eaf713 | 2011-01-14 12:45:48 -0800 | [diff] [blame] | 2191 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2192 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2193 | /* no_ui means we are being called from init, not settings. |
| 2194 | Now we always reboot from settings, so !no_ui means reboot |
| 2195 | */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2196 | if (!no_ui) { |
| 2197 | /* Try fallback, which is to reboot and try there */ |
| 2198 | onlyCreateHeader = true; |
| 2199 | FILE* breadcrumb = fopen(BREADCRUMB_FILE, "we"); |
| 2200 | if (breadcrumb == 0) { |
| 2201 | SLOGE("Failed to create breadcrumb file"); |
| 2202 | goto error_shutting_down; |
| 2203 | } |
| 2204 | fclose(breadcrumb); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2205 | } |
| 2206 | |
| 2207 | /* Do extra work for a better UX when doing the long inplace encryption */ |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2208 | if (!onlyCreateHeader) { |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2209 | /* Now that /data is unmounted, we need to mount a tmpfs |
| 2210 | * /data, set a property saying we're doing inplace encryption, |
| 2211 | * and restart the framework. |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2212 | */ |
Ken Sumrall | e5032c4 | 2012-04-01 23:58:44 -0700 | [diff] [blame] | 2213 | if (fs_mgr_do_tmpfs_mount(DATA_MNT_POINT)) { |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2214 | goto error_shutting_down; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2215 | } |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2216 | /* Tells the framework that inplace encryption is starting */ |
Ken Sumrall | 7df8412 | 2011-01-18 14:04:08 -0800 | [diff] [blame] | 2217 | property_set("vold.encrypt_progress", "0"); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2218 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2219 | /* restart the framework. */ |
| 2220 | /* Create necessary paths on /data */ |
Wei Wang | 42e3810 | 2017-06-07 10:46:12 -0700 | [diff] [blame] | 2221 | prep_data_fs(); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2222 | |
Ken Sumrall | 92736ef | 2012-10-17 20:57:14 -0700 | [diff] [blame] | 2223 | /* Ugh, shutting down the framework is not synchronous, so until it |
| 2224 | * can be fixed, this horrible hack will wait a moment for it all to |
| 2225 | * shut down before proceeding. Without it, some devices cannot |
| 2226 | * restart the graphics services. |
| 2227 | */ |
| 2228 | sleep(2); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2229 | } |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2230 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2231 | /* Start the actual work of making an encrypted filesystem */ |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2232 | /* Initialize a crypt_mnt_ftr for the partition */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2233 | if (previously_encrypted_upto == 0 && !rebootEncryption) { |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 2234 | if (cryptfs_init_crypt_mnt_ftr(&crypt_ftr)) { |
| 2235 | goto error_shutting_down; |
| 2236 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2237 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2238 | if (!strcmp(key_loc, KEY_IN_FOOTER)) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2239 | crypt_ftr.fs_size = nr_sec - (CRYPT_FOOTER_OFFSET / CRYPT_SECTOR_SIZE); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2240 | } else { |
| 2241 | crypt_ftr.fs_size = nr_sec; |
| 2242 | } |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2243 | /* At this point, we are in an inconsistent state. Until we successfully |
| 2244 | complete encryption, a reboot will leave us broken. So mark the |
| 2245 | encryption failed in case that happens. |
| 2246 | On successfully completing encryption, remove this flag */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2247 | if (onlyCreateHeader) { |
| 2248 | crypt_ftr.flags |= CRYPT_FORCE_ENCRYPTION; |
| 2249 | } else { |
| 2250 | crypt_ftr.flags |= CRYPT_INCONSISTENT_STATE; |
| 2251 | } |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2252 | crypt_ftr.crypt_type = crypt_type; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2253 | strlcpy((char*)crypt_ftr.crypto_type_name, cryptfs_get_crypto_name(), |
| 2254 | MAX_CRYPTO_TYPE_NAME_LEN); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2255 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2256 | /* Make an encrypted master key */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2257 | if (create_encrypted_random_key(onlyCreateHeader ? DEFAULT_PASSWORD : passwd, |
| 2258 | crypt_ftr.master_key, crypt_ftr.salt, &crypt_ftr)) { |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2259 | SLOGE("Cannot create encrypted master key\n"); |
| 2260 | goto error_shutting_down; |
| 2261 | } |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2262 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2263 | /* Replace scrypted intermediate key if we are preparing for a reboot */ |
| 2264 | if (onlyCreateHeader) { |
Greg Kaiser | 59ad018 | 2018-02-16 13:01:36 -0800 | [diff] [blame] | 2265 | unsigned char fake_master_key[MAX_KEY_LEN]; |
| 2266 | unsigned char encrypted_fake_master_key[MAX_KEY_LEN]; |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2267 | memset(fake_master_key, 0, sizeof(fake_master_key)); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2268 | encrypt_master_key(passwd, crypt_ftr.salt, fake_master_key, encrypted_fake_master_key, |
| 2269 | &crypt_ftr); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2270 | } |
| 2271 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2272 | /* Write the key to the end of the partition */ |
| 2273 | put_crypt_ftr_and_key(&crypt_ftr); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2274 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2275 | /* If any persistent data has been remembered, save it. |
| 2276 | * If none, create a valid empty table and save that. |
| 2277 | */ |
| 2278 | if (!persist_data) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2279 | pdata = (crypt_persist_data*)malloc(CRYPT_PERSIST_DATA_SIZE); |
| 2280 | if (pdata) { |
| 2281 | init_empty_persist_data(pdata, CRYPT_PERSIST_DATA_SIZE); |
| 2282 | persist_data = pdata; |
| 2283 | } |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2284 | } |
| 2285 | if (persist_data) { |
| 2286 | save_persistent_data(); |
| 2287 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2288 | } |
| 2289 | |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2290 | if (onlyCreateHeader) { |
| 2291 | sleep(2); |
Josh Gao | fec4437 | 2017-08-28 13:22:55 -0700 | [diff] [blame] | 2292 | cryptfs_reboot(RebootType::reboot); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2293 | } |
| 2294 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2295 | if (!no_ui || rebootEncryption) { |
Ajay Dudani | 87701e2 | 2014-09-17 21:02:52 -0700 | [diff] [blame] | 2296 | /* startup service classes main and late_start */ |
| 2297 | property_set("vold.decrypt", "trigger_restart_min_framework"); |
| 2298 | SLOGD("Just triggered restart_min_framework\n"); |
| 2299 | |
| 2300 | /* OK, the framework is restarted and will soon be showing a |
| 2301 | * progress bar. Time to setup an encrypted mapping, and |
| 2302 | * either write a new filesystem, or encrypt in place updating |
| 2303 | * the progress bar as we work. |
| 2304 | */ |
| 2305 | } |
| 2306 | |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 2307 | decrypt_master_key(passwd, decrypted_master_key, &crypt_ftr, 0, 0); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2308 | create_crypto_blk_dev(&crypt_ftr, decrypted_master_key, real_blkdev, crypto_blkdev, |
Paul Crowley | 5afbc62 | 2017-11-27 09:42:17 -0800 | [diff] [blame] | 2309 | CRYPTO_BLOCK_DEVICE, 0); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2310 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2311 | /* If we are continuing, check checksums match */ |
| 2312 | rc = 0; |
| 2313 | if (previously_encrypted_upto) { |
| 2314 | __le8 hash_first_block[SHA256_DIGEST_LENGTH]; |
| 2315 | rc = cryptfs_SHA256_fileblock(crypto_blkdev, hash_first_block); |
Ken Sumrall | 128626f | 2011-06-28 18:45:14 -0700 | [diff] [blame] | 2316 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2317 | if (!rc && |
| 2318 | memcmp(hash_first_block, crypt_ftr.hash_first_block, sizeof(hash_first_block)) != 0) { |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2319 | SLOGE("Checksums do not match - trigger wipe"); |
| 2320 | rc = -1; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2321 | } |
| 2322 | } |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2323 | |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2324 | if (!rc) { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2325 | rc = cryptfs_enable_all_volumes(&crypt_ftr, crypto_blkdev, real_blkdev, |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2326 | previously_encrypted_upto); |
| 2327 | } |
| 2328 | |
| 2329 | /* Calculate checksum if we are not finished */ |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2330 | if (!rc && crypt_ftr.encrypted_upto != crypt_ftr.fs_size) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2331 | rc = cryptfs_SHA256_fileblock(crypto_blkdev, crypt_ftr.hash_first_block); |
Paul Lawrence | 73d7a02 | 2014-06-09 14:10:09 -0700 | [diff] [blame] | 2332 | if (rc) { |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2333 | SLOGE("Error calculating checksum for continuing encryption"); |
| 2334 | rc = -1; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2335 | } |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2336 | } |
| 2337 | |
| 2338 | /* Undo the dm-crypt mapping whether we succeed or not */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2339 | delete_crypto_blk_dev(CRYPTO_BLOCK_DEVICE); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 2340 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2341 | if (!rc) { |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2342 | /* Success */ |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2343 | crypt_ftr.flags &= ~CRYPT_INCONSISTENT_STATE; |
Ken Sumrall | 7f7dbaa | 2011-02-01 15:46:41 -0800 | [diff] [blame] | 2344 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2345 | if (crypt_ftr.encrypted_upto != crypt_ftr.fs_size) { |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2346 | SLOGD("Encrypted up to sector %lld - will continue after reboot", |
| 2347 | crypt_ftr.encrypted_upto); |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2348 | crypt_ftr.flags |= CRYPT_ENCRYPTION_IN_PROGRESS; |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2349 | } |
Paul Lawrence | 73d7a02 | 2014-06-09 14:10:09 -0700 | [diff] [blame] | 2350 | |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2351 | put_crypt_ftr_and_key(&crypt_ftr); |
Ken Sumrall | d33d417 | 2011-02-01 00:49:13 -0800 | [diff] [blame] | 2352 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2353 | if (crypt_ftr.encrypted_upto == crypt_ftr.fs_size) { |
| 2354 | char value[PROPERTY_VALUE_MAX]; |
| 2355 | property_get("ro.crypto.state", value, ""); |
| 2356 | if (!strcmp(value, "")) { |
| 2357 | /* default encryption - continue first boot sequence */ |
| 2358 | property_set("ro.crypto.state", "encrypted"); |
| 2359 | property_set("ro.crypto.type", "block"); |
| 2360 | release_wake_lock(lockid); |
| 2361 | if (rebootEncryption && crypt_ftr.crypt_type != CRYPT_TYPE_DEFAULT) { |
| 2362 | // Bring up cryptkeeper that will check the password and set it |
| 2363 | property_set("vold.decrypt", "trigger_shutdown_framework"); |
| 2364 | sleep(2); |
| 2365 | property_set("vold.encrypt_progress", ""); |
| 2366 | cryptfs_trigger_restart_min_framework(); |
| 2367 | } else { |
| 2368 | cryptfs_check_passwd(DEFAULT_PASSWORD); |
| 2369 | cryptfs_restart_internal(1); |
| 2370 | } |
| 2371 | return 0; |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2372 | } else { |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2373 | sleep(2); /* Give the UI a chance to show 100% progress */ |
| 2374 | cryptfs_reboot(RebootType::reboot); |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 2375 | } |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2376 | } else { |
Paul Lawrence | b6672e1 | 2014-08-15 07:37:28 -0700 | [diff] [blame] | 2377 | sleep(2); /* Partially encrypted, ensure writes flushed to ssd */ |
Josh Gao | fec4437 | 2017-08-28 13:22:55 -0700 | [diff] [blame] | 2378 | cryptfs_reboot(RebootType::shutdown); |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 2379 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2380 | } else { |
Mike Lockwood | ee6d8c4 | 2012-02-15 13:43:28 -0800 | [diff] [blame] | 2381 | char value[PROPERTY_VALUE_MAX]; |
| 2382 | |
Ken Sumrall | 319369a | 2012-06-27 16:30:18 -0700 | [diff] [blame] | 2383 | property_get("ro.vold.wipe_on_crypt_fail", value, "0"); |
Mike Lockwood | ee6d8c4 | 2012-02-15 13:43:28 -0800 | [diff] [blame] | 2384 | if (!strcmp(value, "1")) { |
| 2385 | /* wipe data if encryption failed */ |
| 2386 | SLOGE("encryption failed - rebooting into recovery to wipe data\n"); |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 2387 | std::string err; |
| 2388 | const std::vector<std::string> options = { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2389 | "--wipe_data\n--reason=cryptfs_enable_internal\n"}; |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 2390 | if (!write_bootloader_message(options, &err)) { |
| 2391 | SLOGE("could not write bootloader message: %s", err.c_str()); |
Mike Lockwood | ee6d8c4 | 2012-02-15 13:43:28 -0800 | [diff] [blame] | 2392 | } |
Josh Gao | fec4437 | 2017-08-28 13:22:55 -0700 | [diff] [blame] | 2393 | cryptfs_reboot(RebootType::recovery); |
Mike Lockwood | ee6d8c4 | 2012-02-15 13:43:28 -0800 | [diff] [blame] | 2394 | } else { |
| 2395 | /* set property to trigger dialog */ |
| 2396 | property_set("vold.encrypt_progress", "error_partially_encrypted"); |
| 2397 | release_wake_lock(lockid); |
| 2398 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2399 | return -1; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2400 | } |
| 2401 | |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2402 | /* hrm, the encrypt step claims success, but the reboot failed. |
| 2403 | * This should not happen. |
| 2404 | * Set the property and return. Hope the framework can deal with it. |
| 2405 | */ |
| 2406 | property_set("vold.encrypt_progress", "error_reboot_failed"); |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 2407 | release_wake_lock(lockid); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2408 | return rc; |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2409 | |
| 2410 | error_unencrypted: |
| 2411 | property_set("vold.encrypt_progress", "error_not_encrypted"); |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 2412 | if (lockid[0]) { |
| 2413 | release_wake_lock(lockid); |
| 2414 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2415 | return -1; |
| 2416 | |
| 2417 | error_shutting_down: |
| 2418 | /* we failed, and have not encrypted anthing, so the users's data is still intact, |
| 2419 | * but the framework is stopped and not restarted to show the error, so it's up to |
| 2420 | * vold to restart the system. |
| 2421 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2422 | SLOGE( |
| 2423 | "Error enabling encryption after framework is shutdown, no data changed, restarting " |
| 2424 | "system"); |
Josh Gao | fec4437 | 2017-08-28 13:22:55 -0700 | [diff] [blame] | 2425 | cryptfs_reboot(RebootType::reboot); |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2426 | |
| 2427 | /* shouldn't get here */ |
| 2428 | property_set("vold.encrypt_progress", "error_shutting_down"); |
Ken Sumrall | 5d4c68e | 2011-01-30 19:06:03 -0800 | [diff] [blame] | 2429 | if (lockid[0]) { |
| 2430 | release_wake_lock(lockid); |
| 2431 | } |
Ken Sumrall | 3ed8236 | 2011-01-28 23:31:16 -0800 | [diff] [blame] | 2432 | return -1; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2433 | } |
| 2434 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2435 | int cryptfs_enable(int type, const char* passwd, int no_ui) { |
| 2436 | return cryptfs_enable_internal(type, passwd, no_ui); |
Paul Lawrence | 1348603 | 2014-02-03 13:28:11 -0800 | [diff] [blame] | 2437 | } |
| 2438 | |
Paul Lawrence | 7ee87cf | 2017-12-22 10:12:06 -0800 | [diff] [blame] | 2439 | int cryptfs_enable_default(int no_ui) { |
| 2440 | return cryptfs_enable_internal(CRYPT_TYPE_DEFAULT, DEFAULT_PASSWORD, no_ui); |
Paul Lawrence | 1348603 | 2014-02-03 13:28:11 -0800 | [diff] [blame] | 2441 | } |
| 2442 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2443 | int cryptfs_changepw(int crypt_type, const char* newpw) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 2444 | if (fscrypt_is_native()) { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 2445 | SLOGE("cryptfs_changepw not valid for file encryption"); |
| 2446 | return -1; |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 2447 | } |
| 2448 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2449 | struct crypt_mnt_ftr crypt_ftr; |
JP Abgrall | 933216c | 2015-02-11 13:44:32 -0800 | [diff] [blame] | 2450 | int rc; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2451 | |
| 2452 | /* This is only allowed after we've successfully decrypted the master key */ |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2453 | if (!master_key_saved) { |
Ken Sumrall | 0cc1663 | 2011-01-18 20:32:26 -0800 | [diff] [blame] | 2454 | SLOGE("Key not saved, aborting"); |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2455 | return -1; |
| 2456 | } |
| 2457 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2458 | if (crypt_type < 0 || crypt_type > CRYPT_TYPE_MAX_TYPE) { |
| 2459 | SLOGE("Invalid crypt_type %d", crypt_type); |
| 2460 | return -1; |
| 2461 | } |
| 2462 | |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2463 | /* get key */ |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2464 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2465 | SLOGE("Error getting crypt footer and key"); |
| 2466 | return -1; |
Ken Sumrall | 8ddbe40 | 2011-01-17 15:26:29 -0800 | [diff] [blame] | 2467 | } |
| 2468 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2469 | crypt_ftr.crypt_type = crypt_type; |
| 2470 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2471 | rc = encrypt_master_key(crypt_type == CRYPT_TYPE_DEFAULT ? DEFAULT_PASSWORD : newpw, |
| 2472 | crypt_ftr.salt, saved_master_key, crypt_ftr.master_key, &crypt_ftr); |
JP Abgrall | 933216c | 2015-02-11 13:44:32 -0800 | [diff] [blame] | 2473 | if (rc) { |
| 2474 | SLOGE("Encrypt master key failed: %d", rc); |
| 2475 | return -1; |
| 2476 | } |
Jason parks | 70a4b3f | 2011-01-28 10:10:47 -0600 | [diff] [blame] | 2477 | /* save the key */ |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2478 | put_crypt_ftr_and_key(&crypt_ftr); |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 2479 | |
| 2480 | return 0; |
| 2481 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2482 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2483 | static unsigned int persist_get_max_entries(int encrypted) { |
| 2484 | struct crypt_mnt_ftr crypt_ftr; |
| 2485 | unsigned int dsize; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2486 | |
| 2487 | /* If encrypted, use the values from the crypt_ftr, otherwise |
| 2488 | * use the values for the current spec. |
| 2489 | */ |
| 2490 | if (encrypted) { |
| 2491 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
Rubin Xu | f83cc61 | 2018-10-09 16:13:38 +0100 | [diff] [blame] | 2492 | /* Something is wrong, assume no space for entries */ |
| 2493 | return 0; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2494 | } |
| 2495 | dsize = crypt_ftr.persist_data_size; |
| 2496 | } else { |
| 2497 | dsize = CRYPT_PERSIST_DATA_SIZE; |
| 2498 | } |
| 2499 | |
Rubin Xu | f83cc61 | 2018-10-09 16:13:38 +0100 | [diff] [blame] | 2500 | if (dsize > sizeof(struct crypt_persist_data)) { |
| 2501 | return (dsize - sizeof(struct crypt_persist_data)) / sizeof(struct crypt_persist_entry); |
| 2502 | } else { |
| 2503 | return 0; |
| 2504 | } |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2505 | } |
| 2506 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2507 | static int persist_get_key(const char* fieldname, char* value) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2508 | unsigned int i; |
| 2509 | |
| 2510 | if (persist_data == NULL) { |
| 2511 | return -1; |
| 2512 | } |
| 2513 | for (i = 0; i < persist_data->persist_valid_entries; i++) { |
| 2514 | if (!strncmp(persist_data->persist_entry[i].key, fieldname, PROPERTY_KEY_MAX)) { |
| 2515 | /* We found it! */ |
| 2516 | strlcpy(value, persist_data->persist_entry[i].val, PROPERTY_VALUE_MAX); |
| 2517 | return 0; |
| 2518 | } |
| 2519 | } |
| 2520 | |
| 2521 | return -1; |
| 2522 | } |
| 2523 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2524 | static int persist_set_key(const char* fieldname, const char* value, int encrypted) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2525 | unsigned int i; |
| 2526 | unsigned int num; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2527 | unsigned int max_persistent_entries; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2528 | |
| 2529 | if (persist_data == NULL) { |
| 2530 | return -1; |
| 2531 | } |
| 2532 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2533 | max_persistent_entries = persist_get_max_entries(encrypted); |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2534 | |
| 2535 | num = persist_data->persist_valid_entries; |
| 2536 | |
| 2537 | for (i = 0; i < num; i++) { |
| 2538 | if (!strncmp(persist_data->persist_entry[i].key, fieldname, PROPERTY_KEY_MAX)) { |
| 2539 | /* We found an existing entry, update it! */ |
| 2540 | memset(persist_data->persist_entry[i].val, 0, PROPERTY_VALUE_MAX); |
| 2541 | strlcpy(persist_data->persist_entry[i].val, value, PROPERTY_VALUE_MAX); |
| 2542 | return 0; |
| 2543 | } |
| 2544 | } |
| 2545 | |
| 2546 | /* We didn't find it, add it to the end, if there is room */ |
| 2547 | if (persist_data->persist_valid_entries < max_persistent_entries) { |
| 2548 | memset(&persist_data->persist_entry[num], 0, sizeof(struct crypt_persist_entry)); |
| 2549 | strlcpy(persist_data->persist_entry[num].key, fieldname, PROPERTY_KEY_MAX); |
| 2550 | strlcpy(persist_data->persist_entry[num].val, value, PROPERTY_VALUE_MAX); |
| 2551 | persist_data->persist_valid_entries++; |
| 2552 | return 0; |
| 2553 | } |
| 2554 | |
| 2555 | return -1; |
| 2556 | } |
| 2557 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2558 | /** |
| 2559 | * Test if key is part of the multi-entry (field, index) sequence. Return non-zero if key is in the |
| 2560 | * sequence and its index is greater than or equal to index. Return 0 otherwise. |
| 2561 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2562 | int match_multi_entry(const char* key, const char* field, unsigned index) { |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 2563 | std::string key_ = key; |
| 2564 | std::string field_ = field; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2565 | |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 2566 | std::string parsed_field; |
| 2567 | unsigned parsed_index; |
| 2568 | |
| 2569 | std::string::size_type split = key_.find_last_of('_'); |
| 2570 | if (split == std::string::npos) { |
| 2571 | parsed_field = key_; |
| 2572 | parsed_index = 0; |
| 2573 | } else { |
| 2574 | parsed_field = key_.substr(0, split); |
| 2575 | parsed_index = std::stoi(key_.substr(split + 1)); |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2576 | } |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 2577 | |
| 2578 | return parsed_field == field_ && parsed_index >= index; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2579 | } |
| 2580 | |
| 2581 | /* |
| 2582 | * Delete entry/entries from persist_data. If the entries are part of a multi-segment field, all |
| 2583 | * remaining entries starting from index will be deleted. |
| 2584 | * returns PERSIST_DEL_KEY_OK if deletion succeeds, |
| 2585 | * PERSIST_DEL_KEY_ERROR_NO_FIELD if the field does not exist, |
| 2586 | * and PERSIST_DEL_KEY_ERROR_OTHER if error occurs. |
| 2587 | * |
| 2588 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2589 | static int persist_del_keys(const char* fieldname, unsigned index) { |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2590 | unsigned int i; |
| 2591 | unsigned int j; |
| 2592 | unsigned int num; |
| 2593 | |
| 2594 | if (persist_data == NULL) { |
| 2595 | return PERSIST_DEL_KEY_ERROR_OTHER; |
| 2596 | } |
| 2597 | |
| 2598 | num = persist_data->persist_valid_entries; |
| 2599 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2600 | j = 0; // points to the end of non-deleted entries. |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2601 | // Filter out to-be-deleted entries in place. |
| 2602 | for (i = 0; i < num; i++) { |
| 2603 | if (!match_multi_entry(persist_data->persist_entry[i].key, fieldname, index)) { |
| 2604 | persist_data->persist_entry[j] = persist_data->persist_entry[i]; |
| 2605 | j++; |
| 2606 | } |
| 2607 | } |
| 2608 | |
| 2609 | if (j < num) { |
| 2610 | persist_data->persist_valid_entries = j; |
| 2611 | // Zeroise the remaining entries |
| 2612 | memset(&persist_data->persist_entry[j], 0, (num - j) * sizeof(struct crypt_persist_entry)); |
| 2613 | return PERSIST_DEL_KEY_OK; |
| 2614 | } else { |
| 2615 | // Did not find an entry matching the given fieldname |
| 2616 | return PERSIST_DEL_KEY_ERROR_NO_FIELD; |
| 2617 | } |
| 2618 | } |
| 2619 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2620 | static int persist_count_keys(const char* fieldname) { |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2621 | unsigned int i; |
| 2622 | unsigned int count; |
| 2623 | |
| 2624 | if (persist_data == NULL) { |
| 2625 | return -1; |
| 2626 | } |
| 2627 | |
| 2628 | count = 0; |
| 2629 | for (i = 0; i < persist_data->persist_valid_entries; i++) { |
| 2630 | if (match_multi_entry(persist_data->persist_entry[i].key, fieldname, 0)) { |
| 2631 | count++; |
| 2632 | } |
| 2633 | } |
| 2634 | |
| 2635 | return count; |
| 2636 | } |
| 2637 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2638 | /* Return the value of the specified field. */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2639 | int cryptfs_getfield(const char* fieldname, char* value, int len) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 2640 | if (fscrypt_is_native()) { |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 2641 | SLOGE("Cannot get field when file encrypted"); |
| 2642 | return -1; |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 2643 | } |
| 2644 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2645 | char temp_value[PROPERTY_VALUE_MAX]; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2646 | /* CRYPTO_GETFIELD_OK is success, |
| 2647 | * CRYPTO_GETFIELD_ERROR_NO_FIELD is value not set, |
| 2648 | * CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL is buffer (as given by len) too small, |
| 2649 | * CRYPTO_GETFIELD_ERROR_OTHER is any other error |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2650 | */ |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2651 | int rc = CRYPTO_GETFIELD_ERROR_OTHER; |
| 2652 | int i; |
| 2653 | char temp_field[PROPERTY_KEY_MAX]; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2654 | |
| 2655 | if (persist_data == NULL) { |
| 2656 | load_persistent_data(); |
| 2657 | if (persist_data == NULL) { |
| 2658 | SLOGE("Getfield error, cannot load persistent data"); |
| 2659 | goto out; |
| 2660 | } |
| 2661 | } |
| 2662 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2663 | // Read value from persistent entries. If the original value is split into multiple entries, |
| 2664 | // stitch them back together. |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2665 | if (!persist_get_key(fieldname, temp_value)) { |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2666 | // We found it, copy it to the caller's buffer and keep going until all entries are read. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2667 | if (strlcpy(value, temp_value, len) >= (unsigned)len) { |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2668 | // value too small |
| 2669 | rc = CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL; |
| 2670 | goto out; |
| 2671 | } |
| 2672 | rc = CRYPTO_GETFIELD_OK; |
| 2673 | |
| 2674 | for (i = 1; /* break explicitly */; i++) { |
| 2675 | if (snprintf(temp_field, sizeof(temp_field), "%s_%d", fieldname, i) >= |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2676 | (int)sizeof(temp_field)) { |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2677 | // If the fieldname is very long, we stop as soon as it begins to overflow the |
| 2678 | // maximum field length. At this point we have in fact fully read out the original |
| 2679 | // value because cryptfs_setfield would not allow fields with longer names to be |
| 2680 | // written in the first place. |
| 2681 | break; |
| 2682 | } |
| 2683 | if (!persist_get_key(temp_field, temp_value)) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2684 | if (strlcat(value, temp_value, len) >= (unsigned)len) { |
| 2685 | // value too small. |
| 2686 | rc = CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL; |
| 2687 | goto out; |
| 2688 | } |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2689 | } else { |
| 2690 | // Exhaust all entries. |
| 2691 | break; |
| 2692 | } |
| 2693 | } |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2694 | } else { |
| 2695 | /* Sadness, it's not there. Return the error */ |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2696 | rc = CRYPTO_GETFIELD_ERROR_NO_FIELD; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2697 | } |
| 2698 | |
| 2699 | out: |
| 2700 | return rc; |
| 2701 | } |
| 2702 | |
| 2703 | /* Set the value of the specified field. */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2704 | int cryptfs_setfield(const char* fieldname, const char* value) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 2705 | if (fscrypt_is_native()) { |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 2706 | SLOGE("Cannot set field when file encrypted"); |
| 2707 | return -1; |
Paul Lawrence | 368d794 | 2015-04-15 14:12:00 -0700 | [diff] [blame] | 2708 | } |
| 2709 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2710 | char encrypted_state[PROPERTY_VALUE_MAX]; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2711 | /* 0 is success, negative values are error */ |
| 2712 | int rc = CRYPTO_SETFIELD_ERROR_OTHER; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2713 | int encrypted = 0; |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2714 | unsigned int field_id; |
| 2715 | char temp_field[PROPERTY_KEY_MAX]; |
| 2716 | unsigned int num_entries; |
| 2717 | unsigned int max_keylen; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2718 | |
| 2719 | if (persist_data == NULL) { |
| 2720 | load_persistent_data(); |
| 2721 | if (persist_data == NULL) { |
| 2722 | SLOGE("Setfield error, cannot load persistent data"); |
| 2723 | goto out; |
| 2724 | } |
| 2725 | } |
| 2726 | |
| 2727 | property_get("ro.crypto.state", encrypted_state, ""); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2728 | if (!strcmp(encrypted_state, "encrypted")) { |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2729 | encrypted = 1; |
| 2730 | } |
| 2731 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2732 | // Compute the number of entries required to store value, each entry can store up to |
| 2733 | // (PROPERTY_VALUE_MAX - 1) chars |
| 2734 | if (strlen(value) == 0) { |
| 2735 | // Empty value also needs one entry to store. |
| 2736 | num_entries = 1; |
| 2737 | } else { |
| 2738 | num_entries = (strlen(value) + (PROPERTY_VALUE_MAX - 1) - 1) / (PROPERTY_VALUE_MAX - 1); |
| 2739 | } |
| 2740 | |
| 2741 | max_keylen = strlen(fieldname); |
| 2742 | if (num_entries > 1) { |
| 2743 | // Need an extra "_%d" suffix. |
| 2744 | max_keylen += 1 + log10(num_entries); |
| 2745 | } |
| 2746 | if (max_keylen > PROPERTY_KEY_MAX - 1) { |
| 2747 | rc = CRYPTO_SETFIELD_ERROR_FIELD_TOO_LONG; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2748 | goto out; |
| 2749 | } |
| 2750 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2751 | // Make sure we have enough space to write the new value |
| 2752 | if (persist_data->persist_valid_entries + num_entries - persist_count_keys(fieldname) > |
| 2753 | persist_get_max_entries(encrypted)) { |
| 2754 | rc = CRYPTO_SETFIELD_ERROR_VALUE_TOO_LONG; |
| 2755 | goto out; |
| 2756 | } |
| 2757 | |
| 2758 | // Now that we know persist_data has enough space for value, let's delete the old field first |
| 2759 | // to make up space. |
| 2760 | persist_del_keys(fieldname, 0); |
| 2761 | |
| 2762 | if (persist_set_key(fieldname, value, encrypted)) { |
| 2763 | // fail to set key, should not happen as we have already checked the available space |
| 2764 | SLOGE("persist_set_key() error during setfield()"); |
| 2765 | goto out; |
| 2766 | } |
| 2767 | |
| 2768 | for (field_id = 1; field_id < num_entries; field_id++) { |
Greg Kaiser | b610e77 | 2018-02-09 09:19:54 -0800 | [diff] [blame] | 2769 | snprintf(temp_field, sizeof(temp_field), "%s_%u", fieldname, field_id); |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2770 | |
| 2771 | if (persist_set_key(temp_field, value + field_id * (PROPERTY_VALUE_MAX - 1), encrypted)) { |
| 2772 | // fail to set key, should not happen as we have already checked the available space. |
| 2773 | SLOGE("persist_set_key() error during setfield()"); |
| 2774 | goto out; |
| 2775 | } |
| 2776 | } |
| 2777 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2778 | /* If we are running encrypted, save the persistent data now */ |
| 2779 | if (encrypted) { |
| 2780 | if (save_persistent_data()) { |
| 2781 | SLOGE("Setfield error, cannot save persistent data"); |
| 2782 | goto out; |
| 2783 | } |
| 2784 | } |
| 2785 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 2786 | rc = CRYPTO_SETFIELD_OK; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 2787 | |
| 2788 | out: |
| 2789 | return rc; |
| 2790 | } |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2791 | |
| 2792 | /* Checks userdata. Attempt to mount the volume if default- |
| 2793 | * encrypted. |
| 2794 | * On success trigger next init phase and return 0. |
| 2795 | * Currently do not handle failure - see TODO below. |
| 2796 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2797 | int cryptfs_mount_default_encrypted(void) { |
Paul Lawrence | 84274cc | 2016-04-15 15:41:33 -0700 | [diff] [blame] | 2798 | int crypt_type = cryptfs_get_password_type(); |
| 2799 | if (crypt_type < 0 || crypt_type > CRYPT_TYPE_MAX_TYPE) { |
| 2800 | SLOGE("Bad crypt type - error"); |
| 2801 | } else if (crypt_type != CRYPT_TYPE_DEFAULT) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2802 | SLOGD( |
| 2803 | "Password is not default - " |
| 2804 | "starting min framework to prompt"); |
Paul Lawrence | 84274cc | 2016-04-15 15:41:33 -0700 | [diff] [blame] | 2805 | property_set("vold.decrypt", "trigger_restart_min_framework"); |
| 2806 | return 0; |
| 2807 | } else if (cryptfs_check_passwd(DEFAULT_PASSWORD) == 0) { |
| 2808 | SLOGD("Password is default - restarting filesystem"); |
| 2809 | cryptfs_restart_internal(0); |
| 2810 | return 0; |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2811 | } else { |
Paul Lawrence | 84274cc | 2016-04-15 15:41:33 -0700 | [diff] [blame] | 2812 | SLOGE("Encrypted, default crypt type but can't decrypt"); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2813 | } |
| 2814 | |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2815 | /** Corrupt. Allow us to boot into framework, which will detect bad |
| 2816 | crypto when it calls do_crypto_complete, then do a factory reset |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2817 | */ |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2818 | property_set("vold.decrypt", "trigger_restart_min_framework"); |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2819 | return 0; |
| 2820 | } |
| 2821 | |
| 2822 | /* Returns type of the password, default, pattern, pin or password. |
| 2823 | */ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2824 | int cryptfs_get_password_type(void) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 2825 | if (fscrypt_is_native()) { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 2826 | SLOGE("cryptfs_get_password_type not valid for file encryption"); |
| 2827 | return -1; |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 2828 | } |
| 2829 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2830 | struct crypt_mnt_ftr crypt_ftr; |
| 2831 | |
| 2832 | if (get_crypt_ftr_and_key(&crypt_ftr)) { |
| 2833 | SLOGE("Error getting crypt footer and key\n"); |
| 2834 | return -1; |
| 2835 | } |
| 2836 | |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 2837 | if (crypt_ftr.flags & CRYPT_INCONSISTENT_STATE) { |
| 2838 | return -1; |
| 2839 | } |
| 2840 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 2841 | return crypt_ftr.crypt_type; |
| 2842 | } |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 2843 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2844 | const char* cryptfs_get_password() { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 2845 | if (fscrypt_is_native()) { |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 2846 | SLOGE("cryptfs_get_password not valid for file encryption"); |
| 2847 | return 0; |
Paul Lawrence | 05335c3 | 2015-03-05 09:46:23 -0800 | [diff] [blame] | 2848 | } |
| 2849 | |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 2850 | struct timespec now; |
Paul Lawrence | ef2b5be | 2014-11-11 12:47:03 -0800 | [diff] [blame] | 2851 | clock_gettime(CLOCK_BOOTTIME, &now); |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 2852 | if (now.tv_sec < password_expiry_time) { |
| 2853 | return password; |
| 2854 | } else { |
| 2855 | cryptfs_clear_password(); |
| 2856 | return 0; |
| 2857 | } |
| 2858 | } |
| 2859 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2860 | void cryptfs_clear_password() { |
Paul Lawrence | 399317e | 2014-03-10 13:20:50 -0700 | [diff] [blame] | 2861 | if (password) { |
| 2862 | size_t len = strlen(password); |
| 2863 | memset(password, 0, len); |
| 2864 | free(password); |
| 2865 | password = 0; |
| 2866 | password_expiry_time = 0; |
| 2867 | } |
Paul Lawrence | 684dbdf | 2014-02-07 12:07:22 -0800 | [diff] [blame] | 2868 | } |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 2869 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 2870 | int cryptfs_isConvertibleToFBE() { |
Paul Crowley | e2ee152 | 2017-09-26 14:05:26 -0700 | [diff] [blame] | 2871 | struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT); |
Luis Hector Chavez | bbb512d | 2018-05-30 15:47:50 -0700 | [diff] [blame] | 2872 | return (rec && fs_mgr_is_convertible_to_fbe(rec)) ? 1 : 0; |
Paul Lawrence | 0c24746 | 2015-10-29 10:30:57 -0700 | [diff] [blame] | 2873 | } |