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 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame^] | 17 | #ifndef ANDROID_VOLD_CRYPTFS_H |
| 18 | #define ANDROID_VOLD_CRYPTFS_H |
| 19 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 20 | /* This structure starts 16,384 bytes before the end of a hardware |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 21 | * partition that is encrypted, or in a separate partition. It's location |
| 22 | * is specified by a property set in init.<device>.rc. |
| 23 | * The structure allocates 48 bytes for a key, but the real key size is |
| 24 | * specified in the struct. Currently, the code is hardcoded to use 128 |
| 25 | * bit keys. |
| 26 | * The fields after salt are only valid in rev 1.1 and later stuctures. |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 27 | * Obviously, the filesystem does not include the last 16 kbytes |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 28 | * of the partition if the crypt_mnt_ftr lives at the end of the |
| 29 | * partition. |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 30 | */ |
| 31 | |
Paul Lawrence | 2f32cda | 2015-05-05 14:28:25 -0700 | [diff] [blame] | 32 | #include <stdbool.h> |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 33 | #include <cutils/properties.h> |
| 34 | |
Kenny Root | c96a5f8 | 2013-06-14 12:08:28 -0700 | [diff] [blame] | 35 | /* The current cryptfs version */ |
| 36 | #define CURRENT_MAJOR_VERSION 1 |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 37 | #define CURRENT_MINOR_VERSION 3 |
Kenny Root | c96a5f8 | 2013-06-14 12:08:28 -0700 | [diff] [blame] | 38 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 39 | #define CRYPT_FOOTER_OFFSET 0x4000 |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 40 | #define CRYPT_FOOTER_TO_PERSIST_OFFSET 0x1000 |
| 41 | #define CRYPT_PERSIST_DATA_SIZE 0x1000 |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 42 | |
| 43 | #define MAX_CRYPTO_TYPE_NAME_LEN 64 |
| 44 | |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 45 | #define MAX_KEY_LEN 48 |
Ken Sumrall | e874407 | 2011-01-18 22:01:55 -0800 | [diff] [blame] | 46 | #define SALT_LEN 16 |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 47 | #define SCRYPT_LEN 32 |
Ken Sumrall | e874407 | 2011-01-18 22:01:55 -0800 | [diff] [blame] | 48 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 49 | /* definitions of flags in the structure below */ |
| 50 | #define CRYPT_MNT_KEY_UNENCRYPTED 0x1 /* The key for the partition is not encrypted. */ |
Paul Lawrence | 6bfed20 | 2014-07-28 12:47:22 -0700 | [diff] [blame] | 51 | #define CRYPT_ENCRYPTION_IN_PROGRESS 0x2 /* Encryption partially completed, |
| 52 | encrypted_upto valid*/ |
| 53 | #define CRYPT_INCONSISTENT_STATE 0x4 /* Set when starting encryption, clear when |
| 54 | exit cleanly, either through success or |
| 55 | correctly marked partial encryption */ |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 56 | #define CRYPT_DATA_CORRUPT 0x8 /* Set when encryption is fine, but the |
| 57 | underlying volume is corrupt */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 58 | #define CRYPT_FORCE_ENCRYPTION 0x10 /* Set when it is time to encrypt this |
| 59 | volume on boot. Everything in this |
| 60 | structure is set up correctly as |
| 61 | though device is encrypted except |
| 62 | that the master key is encrypted with the |
| 63 | default password. */ |
| 64 | #define CRYPT_FORCE_COMPLETE 0x20 /* Set when the above encryption cycle is |
| 65 | complete. On next cryptkeeper entry, match |
| 66 | the password. If it matches fix the master |
| 67 | key and remove this flag. */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 68 | |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 69 | /* Allowed values for type in the structure below */ |
| 70 | #define CRYPT_TYPE_PASSWORD 0 /* master_key is encrypted with a password |
| 71 | * Must be zero to be compatible with pre-L |
| 72 | * devices where type is always password.*/ |
| 73 | #define CRYPT_TYPE_DEFAULT 1 /* master_key is encrypted with default |
| 74 | * password */ |
| 75 | #define CRYPT_TYPE_PATTERN 2 /* master_key is encrypted with a pattern */ |
| 76 | #define CRYPT_TYPE_PIN 3 /* master_key is encrypted with a pin */ |
| 77 | #define CRYPT_TYPE_MAX_TYPE 3 /* type cannot be larger than this value */ |
| 78 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 79 | #define CRYPT_MNT_MAGIC 0xD0B5B1C4 |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 80 | #define PERSIST_DATA_MAGIC 0xE950CD44 |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 81 | |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 82 | /* Key Derivation Function algorithms */ |
| 83 | #define KDF_PBKDF2 1 |
| 84 | #define KDF_SCRYPT 2 |
Paul Lawrence | db3730c | 2015-02-03 13:08:10 -0800 | [diff] [blame] | 85 | /* Algorithms 3 & 4 deprecated before shipping outside of google, so removed */ |
Shawn Willden | e17a9c4 | 2014-09-08 13:04:08 -0600 | [diff] [blame] | 86 | #define KDF_SCRYPT_KEYMASTER 5 |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 87 | |
| 88 | /* Maximum allowed keymaster blob size. */ |
| 89 | #define KEYMASTER_BLOB_SIZE 2048 |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 90 | |
Mark Salyzyn | 3e97127 | 2014-01-21 13:27:04 -0800 | [diff] [blame] | 91 | /* __le32 and __le16 defined in system/extras/ext4_utils/ext4_utils.h */ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 92 | #define __le8 unsigned char |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 93 | |
Adam Langley | 41405bb | 2015-01-22 16:45:28 -0800 | [diff] [blame] | 94 | #if !defined(SHA256_DIGEST_LENGTH) |
| 95 | #define SHA256_DIGEST_LENGTH 32 |
| 96 | #endif |
| 97 | |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 98 | struct crypt_mnt_ftr { |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 99 | __le32 magic; /* See above */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 100 | __le16 major_version; |
| 101 | __le16 minor_version; |
Paul Lawrence | f4faa57 | 2014-01-29 13:31:03 -0800 | [diff] [blame] | 102 | __le32 ftr_size; /* in bytes, not including key following */ |
| 103 | __le32 flags; /* See above */ |
| 104 | __le32 keysize; /* in bytes */ |
| 105 | __le32 crypt_type; /* how master_key is encrypted. Must be a |
| 106 | * CRYPT_TYPE_XXX value */ |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 107 | __le64 fs_size; /* Size of the encrypted fs, in 512 byte sectors */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 108 | __le32 failed_decrypt_count; /* count of # of failed attempts to decrypt and |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 109 | mount, set to 0 on successful mount */ |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 110 | unsigned char crypto_type_name[MAX_CRYPTO_TYPE_NAME_LEN]; /* The type of encryption |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 111 | needed to decrypt this |
| 112 | partition, null terminated */ |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 113 | __le32 spare2; /* ignored */ |
| 114 | unsigned char master_key[MAX_KEY_LEN]; /* The encrypted key for decrypting the filesystem */ |
| 115 | unsigned char salt[SALT_LEN]; /* The salt used for this encryption */ |
| 116 | __le64 persist_data_offset[2]; /* Absolute offset to both copies of crypt_persist_data |
| 117 | * on device with that info, either the footer of the |
| 118 | * real_blkdevice or the metadata partition. */ |
| 119 | |
| 120 | __le32 persist_data_size; /* The number of bytes allocated to each copy of the |
| 121 | * persistent data table*/ |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 122 | |
| 123 | __le8 kdf_type; /* The key derivation function used. */ |
| 124 | |
| 125 | /* scrypt parameters. See www.tarsnap.com/scrypt/scrypt.pdf */ |
| 126 | __le8 N_factor; /* (1 << N) */ |
| 127 | __le8 r_factor; /* (1 << r) */ |
| 128 | __le8 p_factor; /* (1 << p) */ |
Paul Lawrence | 8799917 | 2014-02-20 12:21:31 -0800 | [diff] [blame] | 129 | __le64 encrypted_upto; /* If we are in state CRYPT_ENCRYPTION_IN_PROGRESS and |
| 130 | we have to stop (e.g. power low) this is the last |
| 131 | encrypted 512 byte sector.*/ |
| 132 | __le8 hash_first_block[SHA256_DIGEST_LENGTH]; /* When CRYPT_ENCRYPTION_IN_PROGRESS |
| 133 | set, hash of first block, used |
| 134 | to validate before continuing*/ |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 135 | |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 136 | /* key_master key, used to sign the derived key which is then used to generate |
| 137 | * the intermediate key |
Paul Lawrence | 69f4ebd | 2014-04-14 12:17:14 -0700 | [diff] [blame] | 138 | * This key should be used for no other purposes! We use this key to sign unpadded |
| 139 | * data, which is acceptable but only if the key is not reused elsewhere. */ |
| 140 | __le8 keymaster_blob[KEYMASTER_BLOB_SIZE]; |
| 141 | __le32 keymaster_blob_size; |
Paul Lawrence | d0c7b17 | 2014-08-08 14:28:10 -0700 | [diff] [blame] | 142 | |
| 143 | /* Store scrypt of salted intermediate key. When decryption fails, we can |
| 144 | check if this matches, and if it does, we know that the problem is with the |
| 145 | drive, and there is no point in asking the user for more passwords. |
| 146 | |
| 147 | Note that if any part of this structure is corrupt, this will not match and |
| 148 | we will continue to believe the user entered the wrong password. In that |
| 149 | case the only solution is for the user to enter a password enough times to |
| 150 | force a wipe. |
| 151 | |
| 152 | Note also that there is no need to worry about migration. If this data is |
| 153 | wrong, we simply won't recognise a right password, and will continue to |
| 154 | prompt. On the first password change, this value will be populated and |
| 155 | then we will be OK. |
| 156 | */ |
| 157 | unsigned char scrypted_intermediate_key[SCRYPT_LEN]; |
Paul Lawrence | 3d99eba | 2015-11-20 07:07:19 -0800 | [diff] [blame] | 158 | |
| 159 | /* sha of this structure with this element set to zero |
| 160 | Used when encrypting on reboot to validate structure before doing something |
| 161 | fatal |
| 162 | */ |
| 163 | unsigned char sha256[SHA256_DIGEST_LENGTH]; |
Ken Sumrall | 160b4d6 | 2013-04-22 12:15:39 -0700 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | /* Persistant data that should be available before decryption. |
| 167 | * Things like airplane mode, locale and timezone are kept |
| 168 | * here and can be retrieved by the CryptKeeper UI to properly |
| 169 | * configure the phone before asking for the password |
| 170 | * This is only valid if the major and minor version above |
| 171 | * is set to 1.1 or higher. |
| 172 | * |
| 173 | * This is a 4K structure. There are 2 copies, and the code alternates |
| 174 | * writing one and then clearing the previous one. The reading |
| 175 | * code reads the first valid copy it finds, based on the magic number. |
| 176 | * The absolute offset to the first of the two copies is kept in rev 1.1 |
| 177 | * and higher crypt_mnt_ftr structures. |
| 178 | */ |
| 179 | struct crypt_persist_entry { |
| 180 | char key[PROPERTY_KEY_MAX]; |
| 181 | char val[PROPERTY_VALUE_MAX]; |
| 182 | }; |
| 183 | |
| 184 | /* Should be exactly 4K in size */ |
| 185 | struct crypt_persist_data { |
| 186 | __le32 persist_magic; |
| 187 | __le32 persist_valid_entries; |
| 188 | __le32 persist_spare[30]; |
| 189 | struct crypt_persist_entry persist_entry[0]; |
Ken Sumrall | 8f869aa | 2010-12-03 03:47:09 -0800 | [diff] [blame] | 190 | }; |
| 191 | |
JP Abgrall | 502dc74 | 2013-11-01 13:06:20 -0700 | [diff] [blame] | 192 | #define DATA_MNT_POINT "/data" |
| 193 | |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 194 | /* Return values for cryptfs_crypto_complete */ |
| 195 | #define CRYPTO_COMPLETE_NOT_ENCRYPTED 1 |
| 196 | #define CRYPTO_COMPLETE_ENCRYPTED 0 |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 197 | #define CRYPTO_COMPLETE_BAD_METADATA (-1) |
| 198 | #define CRYPTO_COMPLETE_PARTIAL (-2) |
| 199 | #define CRYPTO_COMPLETE_INCONSISTENT (-3) |
| 200 | #define CRYPTO_COMPLETE_CORRUPT (-4) |
Paul Lawrence | 74f29f1 | 2014-08-28 15:54:10 -0700 | [diff] [blame] | 201 | |
JP Abgrall | 7fc1de8 | 2014-10-10 18:43:41 -0700 | [diff] [blame] | 202 | /* Return values for cryptfs_enable_inplace*() */ |
| 203 | #define ENABLE_INPLACE_OK 0 |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 204 | #define ENABLE_INPLACE_ERR_OTHER (-1) |
| 205 | #define ENABLE_INPLACE_ERR_DEV (-2) /* crypto_blkdev issue */ |
JP Abgrall | 7fc1de8 | 2014-10-10 18:43:41 -0700 | [diff] [blame] | 206 | |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 207 | /* Return values for cryptfs_getfield */ |
| 208 | #define CRYPTO_GETFIELD_OK 0 |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 209 | #define CRYPTO_GETFIELD_ERROR_NO_FIELD (-1) |
| 210 | #define CRYPTO_GETFIELD_ERROR_OTHER (-2) |
| 211 | #define CRYPTO_GETFIELD_ERROR_BUF_TOO_SMALL (-3) |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 212 | |
| 213 | /* Return values for cryptfs_setfield */ |
| 214 | #define CRYPTO_SETFIELD_OK 0 |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 215 | #define CRYPTO_SETFIELD_ERROR_OTHER (-1) |
| 216 | #define CRYPTO_SETFIELD_ERROR_FIELD_TOO_LONG (-2) |
| 217 | #define CRYPTO_SETFIELD_ERROR_VALUE_TOO_LONG (-3) |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 218 | |
| 219 | /* Return values for persist_del_key */ |
| 220 | #define PERSIST_DEL_KEY_OK 0 |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 221 | #define PERSIST_DEL_KEY_ERROR_OTHER (-1) |
| 222 | #define PERSIST_DEL_KEY_ERROR_NO_FIELD (-2) |
Rubin Xu | 85c01f9 | 2014-10-13 12:49:54 +0100 | [diff] [blame] | 223 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame^] | 224 | int match_multi_entry(const char* key, const char* field, unsigned index); |
| 225 | int wait_and_unmount(const char* mountpoint, bool kill); |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 226 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame^] | 227 | typedef int (*kdf_func)(const char* passwd, const unsigned char* salt, unsigned char* ikey, |
| 228 | void* params); |
Paul Lawrence | 2f32cda | 2015-05-05 14:28:25 -0700 | [diff] [blame] | 229 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame^] | 230 | int cryptfs_crypto_complete(void); |
| 231 | int cryptfs_check_passwd(const char* pw); |
| 232 | int cryptfs_verify_passwd(const char* pw); |
| 233 | int cryptfs_restart(void); |
| 234 | int cryptfs_enable(const char* flag, int type, const char* passwd, int no_ui); |
| 235 | int cryptfs_changepw(int type, const char* newpw); |
| 236 | int cryptfs_enable_default(const char* flag, int no_ui); |
| 237 | int cryptfs_setup_ext_volume(const char* label, const char* real_blkdev, const unsigned char* key, |
| 238 | int keysize, char* out_crypto_blkdev); |
| 239 | int cryptfs_revert_ext_volume(const char* label); |
| 240 | int cryptfs_getfield(const char* fieldname, char* value, int len); |
| 241 | int cryptfs_setfield(const char* fieldname, const char* value); |
| 242 | int cryptfs_mount_default_encrypted(void); |
| 243 | int cryptfs_get_password_type(void); |
| 244 | const char* cryptfs_get_password(void); |
| 245 | void cryptfs_clear_password(void); |
| 246 | int cryptfs_isConvertibleToFBE(void); |
Kenny Root | c4c70f1 | 2013-06-14 12:11:38 -0700 | [diff] [blame] | 247 | |
Paul Crowley | b64933a | 2017-10-31 08:25:55 -0700 | [diff] [blame^] | 248 | #endif /* ANDROID_VOLD_CRYPTFS_H */ |