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