1 // SPDX-License-Identifier: GPL-2.0
3 * key management facility for FS encryption support.
5 * Copyright (C) 2015, Google, Inc.
7 * This contains encryption key functions.
9 * Written by Michael Halcrow, Ildar Muslukhov, and Uday Savagaonkar, 2015.
12 #include <keys/user-type.h>
13 #include <linux/scatterlist.h>
14 #include <linux/ratelimit.h>
15 #include <crypto/aes.h>
16 #include <crypto/sha.h>
17 #include <crypto/skcipher.h>
18 #include "fscrypt_private.h"
20 static struct crypto_shash
*essiv_hash_tfm
;
23 * derive_key_aes() - Derive a key using AES-128-ECB
24 * @deriving_key: Encryption key used for derivation.
25 * @source_key: Source key to which to apply derivation.
26 * @derived_raw_key: Derived raw key.
28 * Return: Zero on success; non-zero otherwise.
30 static int derive_key_aes(u8 deriving_key
[FS_AES_128_ECB_KEY_SIZE
],
31 const struct fscrypt_key
*source_key
,
32 u8 derived_raw_key
[FS_MAX_KEY_SIZE
])
35 struct skcipher_request
*req
= NULL
;
36 DECLARE_CRYPTO_WAIT(wait
);
37 struct scatterlist src_sg
, dst_sg
;
38 struct crypto_skcipher
*tfm
= crypto_alloc_skcipher("ecb(aes)", 0, 0);
45 crypto_skcipher_set_flags(tfm
, CRYPTO_TFM_REQ_WEAK_KEY
);
46 req
= skcipher_request_alloc(tfm
, GFP_NOFS
);
51 skcipher_request_set_callback(req
,
52 CRYPTO_TFM_REQ_MAY_BACKLOG
| CRYPTO_TFM_REQ_MAY_SLEEP
,
53 crypto_req_done
, &wait
);
54 res
= crypto_skcipher_setkey(tfm
, deriving_key
,
55 FS_AES_128_ECB_KEY_SIZE
);
59 sg_init_one(&src_sg
, source_key
->raw
, source_key
->size
);
60 sg_init_one(&dst_sg
, derived_raw_key
, source_key
->size
);
61 skcipher_request_set_crypt(req
, &src_sg
, &dst_sg
, source_key
->size
,
63 res
= crypto_wait_req(crypto_skcipher_encrypt(req
), &wait
);
65 skcipher_request_free(req
);
66 crypto_free_skcipher(tfm
);
70 static int validate_user_key(struct fscrypt_info
*crypt_info
,
71 struct fscrypt_context
*ctx
, u8
*raw_key
,
72 const char *prefix
, int min_keysize
)
75 struct key
*keyring_key
;
76 struct fscrypt_key
*master_key
;
77 const struct user_key_payload
*ukp
;
80 description
= kasprintf(GFP_NOFS
, "%s%*phN", prefix
,
81 FS_KEY_DESCRIPTOR_SIZE
,
82 ctx
->master_key_descriptor
);
86 keyring_key
= request_key(&key_type_logon
, description
, NULL
);
88 if (IS_ERR(keyring_key
))
89 return PTR_ERR(keyring_key
);
90 down_read(&keyring_key
->sem
);
92 if (keyring_key
->type
!= &key_type_logon
) {
93 printk_once(KERN_WARNING
94 "%s: key type must be logon\n", __func__
);
98 ukp
= user_key_payload_locked(keyring_key
);
100 /* key was revoked before we acquired its semaphore */
104 if (ukp
->datalen
!= sizeof(struct fscrypt_key
)) {
108 master_key
= (struct fscrypt_key
*)ukp
->data
;
109 BUILD_BUG_ON(FS_AES_128_ECB_KEY_SIZE
!= FS_KEY_DERIVATION_NONCE_SIZE
);
111 if (master_key
->size
< min_keysize
|| master_key
->size
> FS_MAX_KEY_SIZE
112 || master_key
->size
% AES_BLOCK_SIZE
!= 0) {
113 printk_once(KERN_WARNING
114 "%s: key size incorrect: %d\n",
115 __func__
, master_key
->size
);
119 res
= derive_key_aes(ctx
->nonce
, master_key
, raw_key
);
121 up_read(&keyring_key
->sem
);
122 key_put(keyring_key
);
126 static const struct {
127 const char *cipher_str
;
129 } available_modes
[] = {
130 [FS_ENCRYPTION_MODE_AES_256_XTS
] = { "xts(aes)",
131 FS_AES_256_XTS_KEY_SIZE
},
132 [FS_ENCRYPTION_MODE_AES_256_CTS
] = { "cts(cbc(aes))",
133 FS_AES_256_CTS_KEY_SIZE
},
134 [FS_ENCRYPTION_MODE_AES_128_CBC
] = { "cbc(aes)",
135 FS_AES_128_CBC_KEY_SIZE
},
136 [FS_ENCRYPTION_MODE_AES_128_CTS
] = { "cts(cbc(aes))",
137 FS_AES_128_CTS_KEY_SIZE
},
140 static int determine_cipher_type(struct fscrypt_info
*ci
, struct inode
*inode
,
141 const char **cipher_str_ret
, int *keysize_ret
)
145 if (!fscrypt_valid_enc_modes(ci
->ci_data_mode
, ci
->ci_filename_mode
)) {
146 pr_warn_ratelimited("fscrypt: inode %lu uses unsupported encryption modes (contents mode %d, filenames mode %d)\n",
148 ci
->ci_data_mode
, ci
->ci_filename_mode
);
152 if (S_ISREG(inode
->i_mode
)) {
153 mode
= ci
->ci_data_mode
;
154 } else if (S_ISDIR(inode
->i_mode
) || S_ISLNK(inode
->i_mode
)) {
155 mode
= ci
->ci_filename_mode
;
157 WARN_ONCE(1, "fscrypt: filesystem tried to load encryption info for inode %lu, which is not encryptable (file type %d)\n",
158 inode
->i_ino
, (inode
->i_mode
& S_IFMT
));
162 *cipher_str_ret
= available_modes
[mode
].cipher_str
;
163 *keysize_ret
= available_modes
[mode
].keysize
;
167 static void put_crypt_info(struct fscrypt_info
*ci
)
172 crypto_free_skcipher(ci
->ci_ctfm
);
173 crypto_free_cipher(ci
->ci_essiv_tfm
);
174 kmem_cache_free(fscrypt_info_cachep
, ci
);
177 static int derive_essiv_salt(const u8
*key
, int keysize
, u8
*salt
)
179 struct crypto_shash
*tfm
= READ_ONCE(essiv_hash_tfm
);
181 /* init hash transform on demand */
182 if (unlikely(!tfm
)) {
183 struct crypto_shash
*prev_tfm
;
185 tfm
= crypto_alloc_shash("sha256", 0, 0);
187 pr_warn_ratelimited("fscrypt: error allocating SHA-256 transform: %ld\n",
191 prev_tfm
= cmpxchg(&essiv_hash_tfm
, NULL
, tfm
);
193 crypto_free_shash(tfm
);
199 SHASH_DESC_ON_STACK(desc
, tfm
);
203 return crypto_shash_digest(desc
, key
, keysize
, salt
);
207 static int init_essiv_generator(struct fscrypt_info
*ci
, const u8
*raw_key
,
211 struct crypto_cipher
*essiv_tfm
;
212 u8 salt
[SHA256_DIGEST_SIZE
];
214 essiv_tfm
= crypto_alloc_cipher("aes", 0, 0);
215 if (IS_ERR(essiv_tfm
))
216 return PTR_ERR(essiv_tfm
);
218 ci
->ci_essiv_tfm
= essiv_tfm
;
220 err
= derive_essiv_salt(raw_key
, keysize
, salt
);
225 * Using SHA256 to derive the salt/key will result in AES-256 being
226 * used for IV generation. File contents encryption will still use the
227 * configured keysize (AES-128) nevertheless.
229 err
= crypto_cipher_setkey(essiv_tfm
, salt
, sizeof(salt
));
234 memzero_explicit(salt
, sizeof(salt
));
238 void __exit
fscrypt_essiv_cleanup(void)
240 crypto_free_shash(essiv_hash_tfm
);
243 int fscrypt_get_encryption_info(struct inode
*inode
)
245 struct fscrypt_info
*crypt_info
;
246 struct fscrypt_context ctx
;
247 struct crypto_skcipher
*ctfm
;
248 const char *cipher_str
;
253 if (inode
->i_crypt_info
)
256 res
= fscrypt_initialize(inode
->i_sb
->s_cop
->flags
);
260 res
= inode
->i_sb
->s_cop
->get_context(inode
, &ctx
, sizeof(ctx
));
262 if (!fscrypt_dummy_context_enabled(inode
) ||
265 /* Fake up a context for an unencrypted directory */
266 memset(&ctx
, 0, sizeof(ctx
));
267 ctx
.format
= FS_ENCRYPTION_CONTEXT_FORMAT_V1
;
268 ctx
.contents_encryption_mode
= FS_ENCRYPTION_MODE_AES_256_XTS
;
269 ctx
.filenames_encryption_mode
= FS_ENCRYPTION_MODE_AES_256_CTS
;
270 memset(ctx
.master_key_descriptor
, 0x42, FS_KEY_DESCRIPTOR_SIZE
);
271 } else if (res
!= sizeof(ctx
)) {
275 if (ctx
.format
!= FS_ENCRYPTION_CONTEXT_FORMAT_V1
)
278 if (ctx
.flags
& ~FS_POLICY_FLAGS_VALID
)
281 crypt_info
= kmem_cache_alloc(fscrypt_info_cachep
, GFP_NOFS
);
285 crypt_info
->ci_flags
= ctx
.flags
;
286 crypt_info
->ci_data_mode
= ctx
.contents_encryption_mode
;
287 crypt_info
->ci_filename_mode
= ctx
.filenames_encryption_mode
;
288 crypt_info
->ci_ctfm
= NULL
;
289 crypt_info
->ci_essiv_tfm
= NULL
;
290 memcpy(crypt_info
->ci_master_key
, ctx
.master_key_descriptor
,
291 sizeof(crypt_info
->ci_master_key
));
293 res
= determine_cipher_type(crypt_info
, inode
, &cipher_str
, &keysize
);
298 * This cannot be a stack buffer because it is passed to the scatterlist
299 * crypto API as part of key derivation.
302 raw_key
= kmalloc(FS_MAX_KEY_SIZE
, GFP_NOFS
);
306 res
= validate_user_key(crypt_info
, &ctx
, raw_key
, FS_KEY_DESC_PREFIX
,
308 if (res
&& inode
->i_sb
->s_cop
->key_prefix
) {
309 int res2
= validate_user_key(crypt_info
, &ctx
, raw_key
,
310 inode
->i_sb
->s_cop
->key_prefix
,
320 ctfm
= crypto_alloc_skcipher(cipher_str
, 0, 0);
321 if (!ctfm
|| IS_ERR(ctfm
)) {
322 res
= ctfm
? PTR_ERR(ctfm
) : -ENOMEM
;
323 pr_debug("%s: error %d (inode %lu) allocating crypto tfm\n",
324 __func__
, res
, inode
->i_ino
);
327 crypt_info
->ci_ctfm
= ctfm
;
328 crypto_skcipher_clear_flags(ctfm
, ~0);
329 crypto_skcipher_set_flags(ctfm
, CRYPTO_TFM_REQ_WEAK_KEY
);
331 * if the provided key is longer than keysize, we use the first
332 * keysize bytes of the derived key only
334 res
= crypto_skcipher_setkey(ctfm
, raw_key
, keysize
);
338 if (S_ISREG(inode
->i_mode
) &&
339 crypt_info
->ci_data_mode
== FS_ENCRYPTION_MODE_AES_128_CBC
) {
340 res
= init_essiv_generator(crypt_info
, raw_key
, keysize
);
342 pr_debug("%s: error %d (inode %lu) allocating essiv tfm\n",
343 __func__
, res
, inode
->i_ino
);
347 if (cmpxchg(&inode
->i_crypt_info
, NULL
, crypt_info
) == NULL
)
352 put_crypt_info(crypt_info
);
356 EXPORT_SYMBOL(fscrypt_get_encryption_info
);
358 void fscrypt_put_encryption_info(struct inode
*inode
)
360 put_crypt_info(inode
->i_crypt_info
);
361 inode
->i_crypt_info
= NULL
;
363 EXPORT_SYMBOL(fscrypt_put_encryption_info
);