Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame^] | 1 | /* |
| 2 | * linux/fs/ext4/crypto_key.c |
| 3 | * |
| 4 | * Copyright (C) 2015, Google, Inc. |
| 5 | * |
| 6 | * This contains encryption key functions for ext4 |
| 7 | * |
| 8 | * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015. |
| 9 | */ |
| 10 | |
| 11 | #include <keys/encrypted-type.h> |
| 12 | #include <keys/user-type.h> |
| 13 | #include <linux/random.h> |
| 14 | #include <linux/scatterlist.h> |
| 15 | #include <uapi/linux/keyctl.h> |
| 16 | |
| 17 | #include "ext4.h" |
| 18 | #include "xattr.h" |
| 19 | |
| 20 | static void derive_crypt_complete(struct crypto_async_request *req, int rc) |
| 21 | { |
| 22 | struct ext4_completion_result *ecr = req->data; |
| 23 | |
| 24 | if (rc == -EINPROGRESS) |
| 25 | return; |
| 26 | |
| 27 | ecr->res = rc; |
| 28 | complete(&ecr->completion); |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * ext4_derive_key_aes() - Derive a key using AES-128-ECB |
| 33 | * @deriving_key: Encryption key used for derivation. |
| 34 | * @source_key: Source key to which to apply derivation. |
| 35 | * @derived_key: Derived key. |
| 36 | * |
| 37 | * Return: Zero on success; non-zero otherwise. |
| 38 | */ |
| 39 | static int ext4_derive_key_aes(char deriving_key[EXT4_AES_128_ECB_KEY_SIZE], |
| 40 | char source_key[EXT4_AES_256_XTS_KEY_SIZE], |
| 41 | char derived_key[EXT4_AES_256_XTS_KEY_SIZE]) |
| 42 | { |
| 43 | int res = 0; |
| 44 | struct ablkcipher_request *req = NULL; |
| 45 | DECLARE_EXT4_COMPLETION_RESULT(ecr); |
| 46 | struct scatterlist src_sg, dst_sg; |
| 47 | struct crypto_ablkcipher *tfm = crypto_alloc_ablkcipher("ecb(aes)", 0, |
| 48 | 0); |
| 49 | |
| 50 | if (IS_ERR(tfm)) { |
| 51 | res = PTR_ERR(tfm); |
| 52 | tfm = NULL; |
| 53 | goto out; |
| 54 | } |
| 55 | crypto_ablkcipher_set_flags(tfm, CRYPTO_TFM_REQ_WEAK_KEY); |
| 56 | req = ablkcipher_request_alloc(tfm, GFP_NOFS); |
| 57 | if (!req) { |
| 58 | res = -ENOMEM; |
| 59 | goto out; |
| 60 | } |
| 61 | ablkcipher_request_set_callback(req, |
| 62 | CRYPTO_TFM_REQ_MAY_BACKLOG | CRYPTO_TFM_REQ_MAY_SLEEP, |
| 63 | derive_crypt_complete, &ecr); |
| 64 | res = crypto_ablkcipher_setkey(tfm, deriving_key, |
| 65 | EXT4_AES_128_ECB_KEY_SIZE); |
| 66 | if (res < 0) |
| 67 | goto out; |
| 68 | sg_init_one(&src_sg, source_key, EXT4_AES_256_XTS_KEY_SIZE); |
| 69 | sg_init_one(&dst_sg, derived_key, EXT4_AES_256_XTS_KEY_SIZE); |
| 70 | ablkcipher_request_set_crypt(req, &src_sg, &dst_sg, |
| 71 | EXT4_AES_256_XTS_KEY_SIZE, NULL); |
| 72 | res = crypto_ablkcipher_encrypt(req); |
| 73 | if (res == -EINPROGRESS || res == -EBUSY) { |
| 74 | wait_for_completion(&ecr.completion); |
| 75 | res = ecr.res; |
| 76 | } |
| 77 | |
| 78 | out: |
| 79 | if (req) |
| 80 | ablkcipher_request_free(req); |
| 81 | if (tfm) |
| 82 | crypto_free_ablkcipher(tfm); |
| 83 | return res; |
| 84 | } |
| 85 | |
| 86 | void ext4_free_crypt_info(struct ext4_crypt_info *ci) |
| 87 | { |
| 88 | if (!ci) |
| 89 | return; |
| 90 | |
| 91 | crypto_free_ablkcipher(ci->ci_ctfm); |
| 92 | kmem_cache_free(ext4_crypt_info_cachep, ci); |
| 93 | } |
| 94 | |
| 95 | void ext4_free_encryption_info(struct inode *inode, |
| 96 | struct ext4_crypt_info *ci) |
| 97 | { |
| 98 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 99 | struct ext4_crypt_info *prev; |
| 100 | |
| 101 | if (ci == NULL) |
| 102 | ci = ACCESS_ONCE(ei->i_crypt_info); |
| 103 | if (ci == NULL) |
| 104 | return; |
| 105 | prev = cmpxchg(&ei->i_crypt_info, ci, NULL); |
| 106 | if (prev != ci) |
| 107 | return; |
| 108 | |
| 109 | ext4_free_crypt_info(ci); |
| 110 | } |
| 111 | |
| 112 | int ext4_get_encryption_info(struct inode *inode) |
| 113 | { |
| 114 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 115 | struct ext4_crypt_info *crypt_info; |
| 116 | char full_key_descriptor[EXT4_KEY_DESC_PREFIX_SIZE + |
| 117 | (EXT4_KEY_DESCRIPTOR_SIZE * 2) + 1]; |
| 118 | struct key *keyring_key = NULL; |
| 119 | struct ext4_encryption_key *master_key; |
| 120 | struct ext4_encryption_context ctx; |
| 121 | const struct user_key_payload *ukp; |
| 122 | struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb); |
| 123 | struct crypto_ablkcipher *ctfm; |
| 124 | const char *cipher_str; |
| 125 | char raw_key[EXT4_MAX_KEY_SIZE]; |
| 126 | char mode; |
| 127 | int res; |
| 128 | |
| 129 | if (ei->i_crypt_info) |
| 130 | return 0; |
| 131 | |
| 132 | if (!ext4_read_workqueue) { |
| 133 | res = ext4_init_crypto(); |
| 134 | if (res) |
| 135 | return res; |
| 136 | } |
| 137 | |
| 138 | res = ext4_xattr_get(inode, EXT4_XATTR_INDEX_ENCRYPTION, |
| 139 | EXT4_XATTR_NAME_ENCRYPTION_CONTEXT, |
| 140 | &ctx, sizeof(ctx)); |
| 141 | if (res < 0) { |
| 142 | if (!DUMMY_ENCRYPTION_ENABLED(sbi)) |
| 143 | return res; |
| 144 | ctx.contents_encryption_mode = EXT4_ENCRYPTION_MODE_AES_256_XTS; |
| 145 | ctx.filenames_encryption_mode = |
| 146 | EXT4_ENCRYPTION_MODE_AES_256_CTS; |
| 147 | ctx.flags = 0; |
| 148 | } else if (res != sizeof(ctx)) |
| 149 | return -EINVAL; |
| 150 | res = 0; |
| 151 | |
| 152 | crypt_info = kmem_cache_alloc(ext4_crypt_info_cachep, GFP_KERNEL); |
| 153 | if (!crypt_info) |
| 154 | return -ENOMEM; |
| 155 | |
| 156 | crypt_info->ci_flags = ctx.flags; |
| 157 | crypt_info->ci_data_mode = ctx.contents_encryption_mode; |
| 158 | crypt_info->ci_filename_mode = ctx.filenames_encryption_mode; |
| 159 | crypt_info->ci_ctfm = NULL; |
| 160 | memcpy(crypt_info->ci_master_key, ctx.master_key_descriptor, |
| 161 | sizeof(crypt_info->ci_master_key)); |
| 162 | if (S_ISREG(inode->i_mode)) |
| 163 | mode = crypt_info->ci_data_mode; |
| 164 | else if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) |
| 165 | mode = crypt_info->ci_filename_mode; |
| 166 | else |
| 167 | BUG(); |
| 168 | switch (mode) { |
| 169 | case EXT4_ENCRYPTION_MODE_AES_256_XTS: |
| 170 | cipher_str = "xts(aes)"; |
| 171 | break; |
| 172 | case EXT4_ENCRYPTION_MODE_AES_256_CTS: |
| 173 | cipher_str = "cts(cbc(aes))"; |
| 174 | break; |
| 175 | default: |
| 176 | printk_once(KERN_WARNING |
| 177 | "ext4: unsupported key mode %d (ino %u)\n", |
| 178 | mode, (unsigned) inode->i_ino); |
| 179 | res = -ENOKEY; |
| 180 | goto out; |
| 181 | } |
| 182 | if (DUMMY_ENCRYPTION_ENABLED(sbi)) { |
| 183 | memset(raw_key, 0x42, EXT4_AES_256_XTS_KEY_SIZE); |
| 184 | goto got_key; |
| 185 | } |
| 186 | memcpy(full_key_descriptor, EXT4_KEY_DESC_PREFIX, |
| 187 | EXT4_KEY_DESC_PREFIX_SIZE); |
| 188 | sprintf(full_key_descriptor + EXT4_KEY_DESC_PREFIX_SIZE, |
| 189 | "%*phN", EXT4_KEY_DESCRIPTOR_SIZE, |
| 190 | ctx.master_key_descriptor); |
| 191 | full_key_descriptor[EXT4_KEY_DESC_PREFIX_SIZE + |
| 192 | (2 * EXT4_KEY_DESCRIPTOR_SIZE)] = '\0'; |
| 193 | keyring_key = request_key(&key_type_logon, full_key_descriptor, NULL); |
| 194 | if (IS_ERR(keyring_key)) { |
| 195 | res = PTR_ERR(keyring_key); |
| 196 | keyring_key = NULL; |
| 197 | goto out; |
| 198 | } |
| 199 | if (keyring_key->type != &key_type_logon) { |
| 200 | printk_once(KERN_WARNING |
| 201 | "ext4: key type must be logon\n"); |
| 202 | res = -ENOKEY; |
| 203 | goto out; |
| 204 | } |
| 205 | down_read(&keyring_key->sem); |
| 206 | ukp = user_key_payload(keyring_key); |
| 207 | if (!ukp) { |
| 208 | /* key was revoked before we acquired its semaphore */ |
| 209 | res = -EKEYREVOKED; |
| 210 | up_read(&keyring_key->sem); |
| 211 | goto out; |
| 212 | } |
| 213 | if (ukp->datalen != sizeof(struct ext4_encryption_key)) { |
| 214 | res = -EINVAL; |
| 215 | up_read(&keyring_key->sem); |
| 216 | goto out; |
| 217 | } |
| 218 | master_key = (struct ext4_encryption_key *)ukp->data; |
| 219 | BUILD_BUG_ON(EXT4_AES_128_ECB_KEY_SIZE != |
| 220 | EXT4_KEY_DERIVATION_NONCE_SIZE); |
| 221 | if (master_key->size != EXT4_AES_256_XTS_KEY_SIZE) { |
| 222 | printk_once(KERN_WARNING |
| 223 | "ext4: key size incorrect: %d\n", |
| 224 | master_key->size); |
| 225 | res = -ENOKEY; |
| 226 | up_read(&keyring_key->sem); |
| 227 | goto out; |
| 228 | } |
| 229 | res = ext4_derive_key_aes(ctx.nonce, master_key->raw, |
| 230 | raw_key); |
| 231 | up_read(&keyring_key->sem); |
| 232 | if (res) |
| 233 | goto out; |
| 234 | got_key: |
| 235 | ctfm = crypto_alloc_ablkcipher(cipher_str, 0, 0); |
| 236 | if (!ctfm || IS_ERR(ctfm)) { |
| 237 | res = ctfm ? PTR_ERR(ctfm) : -ENOMEM; |
| 238 | printk(KERN_DEBUG |
| 239 | "%s: error %d (inode %u) allocating crypto tfm\n", |
| 240 | __func__, res, (unsigned) inode->i_ino); |
| 241 | goto out; |
| 242 | } |
| 243 | crypt_info->ci_ctfm = ctfm; |
| 244 | crypto_ablkcipher_clear_flags(ctfm, ~0); |
| 245 | crypto_tfm_set_flags(crypto_ablkcipher_tfm(ctfm), |
| 246 | CRYPTO_TFM_REQ_WEAK_KEY); |
| 247 | res = crypto_ablkcipher_setkey(ctfm, raw_key, |
| 248 | ext4_encryption_key_size(mode)); |
| 249 | if (res) |
| 250 | goto out; |
| 251 | |
| 252 | if (cmpxchg(&ei->i_crypt_info, NULL, crypt_info) == NULL) |
| 253 | crypt_info = NULL; |
| 254 | out: |
| 255 | if (res == -ENOKEY) |
| 256 | res = 0; |
| 257 | key_put(keyring_key); |
| 258 | ext4_free_crypt_info(crypt_info); |
| 259 | memzero_explicit(raw_key, sizeof(raw_key)); |
| 260 | return res; |
| 261 | } |
| 262 | |
| 263 | int ext4_has_encryption_key(struct inode *inode) |
| 264 | { |
| 265 | struct ext4_inode_info *ei = EXT4_I(inode); |
| 266 | |
| 267 | return (ei->i_crypt_info != NULL); |
| 268 | } |