blob: d02d2972c250f6052cde39644b78cef173f0a865 [file] [log] [blame]
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2019 Google LLC
4 */
5
6/*
7 * Refer to Documentation/block/inline-encryption.rst for detailed explanation.
8 */
9
10#define pr_fmt(fmt) "blk-crypto-fallback: " fmt
11
12#include <crypto/skcipher.h>
13#include <linux/blk-cgroup.h>
14#include <linux/blk-crypto.h>
Satya Tangiralac2b86b72020-06-16 14:33:37 -070015#include <linux/blkdev.h>
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080016#include <linux/crypto.h>
17#include <linux/keyslot-manager.h>
18#include <linux/mempool.h>
19#include <linux/module.h>
20#include <linux/random.h>
21
22#include "blk-crypto-internal.h"
23
24static unsigned int num_prealloc_bounce_pg = 32;
25module_param(num_prealloc_bounce_pg, uint, 0);
26MODULE_PARM_DESC(num_prealloc_bounce_pg,
27 "Number of preallocated bounce pages for the blk-crypto crypto API fallback");
28
29static unsigned int blk_crypto_num_keyslots = 100;
30module_param_named(num_keyslots, blk_crypto_num_keyslots, uint, 0);
31MODULE_PARM_DESC(num_keyslots,
32 "Number of keyslots for the blk-crypto crypto API fallback");
33
34static unsigned int num_prealloc_fallback_crypt_ctxs = 128;
35module_param(num_prealloc_fallback_crypt_ctxs, uint, 0);
36MODULE_PARM_DESC(num_prealloc_crypt_fallback_ctxs,
37 "Number of preallocated bio fallback crypto contexts for blk-crypto to use during crypto API fallback");
38
39struct bio_fallback_crypt_ctx {
40 struct bio_crypt_ctx crypt_ctx;
41 /*
42 * Copy of the bvec_iter when this bio was submitted.
43 * We only want to en/decrypt the part of the bio as described by the
44 * bvec_iter upon submission because bio might be split before being
45 * resubmitted
46 */
47 struct bvec_iter crypt_iter;
Satya Tangiralac2b86b72020-06-16 14:33:37 -070048 union {
49 struct {
50 struct work_struct work;
51 struct bio *bio;
52 };
53 struct {
54 void *bi_private_orig;
55 bio_end_io_t *bi_end_io_orig;
56 };
57 };
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080058};
59
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080060static struct kmem_cache *bio_fallback_crypt_ctx_cache;
61static mempool_t *bio_fallback_crypt_ctx_pool;
62
63/*
64 * Allocating a crypto tfm during I/O can deadlock, so we have to preallocate
65 * all of a mode's tfms when that mode starts being used. Since each mode may
66 * need all the keyslots at some point, each mode needs its own tfm for each
67 * keyslot; thus, a keyslot may contain tfms for multiple modes. However, to
68 * match the behavior of real inline encryption hardware (which only supports a
69 * single encryption context per keyslot), we only allow one tfm per keyslot to
70 * be used at a time - the rest of the unused tfms have their keys cleared.
71 */
72static DEFINE_MUTEX(tfms_init_lock);
73static bool tfms_inited[BLK_ENCRYPTION_MODE_MAX];
74
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080075static struct blk_crypto_keyslot {
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080076 enum blk_crypto_mode_num crypto_mode;
77 struct crypto_skcipher *tfms[BLK_ENCRYPTION_MODE_MAX];
78} *blk_crypto_keyslots;
79
Satya Tangiralac2b86b72020-06-16 14:33:37 -070080static struct blk_keyslot_manager blk_crypto_ksm;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080081static struct workqueue_struct *blk_crypto_wq;
82static mempool_t *blk_crypto_bounce_page_pool;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -080083
84/*
85 * This is the key we set when evicting a keyslot. This *should* be the all 0's
86 * key, but AES-XTS rejects that key, so we use some random bytes instead.
87 */
88static u8 blank_key[BLK_CRYPTO_MAX_KEY_SIZE];
89
90static void blk_crypto_evict_keyslot(unsigned int slot)
91{
92 struct blk_crypto_keyslot *slotp = &blk_crypto_keyslots[slot];
93 enum blk_crypto_mode_num crypto_mode = slotp->crypto_mode;
94 int err;
95
96 WARN_ON(slotp->crypto_mode == BLK_ENCRYPTION_MODE_INVALID);
97
98 /* Clear the key in the skcipher */
99 err = crypto_skcipher_setkey(slotp->tfms[crypto_mode], blank_key,
100 blk_crypto_modes[crypto_mode].keysize);
101 WARN_ON(err);
102 slotp->crypto_mode = BLK_ENCRYPTION_MODE_INVALID;
103}
104
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700105static int blk_crypto_keyslot_program(struct blk_keyslot_manager *ksm,
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800106 const struct blk_crypto_key *key,
107 unsigned int slot)
108{
109 struct blk_crypto_keyslot *slotp = &blk_crypto_keyslots[slot];
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700110 const enum blk_crypto_mode_num crypto_mode =
111 key->crypto_cfg.crypto_mode;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800112 int err;
113
114 if (crypto_mode != slotp->crypto_mode &&
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700115 slotp->crypto_mode != BLK_ENCRYPTION_MODE_INVALID)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800116 blk_crypto_evict_keyslot(slot);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800117
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800118 slotp->crypto_mode = crypto_mode;
119 err = crypto_skcipher_setkey(slotp->tfms[crypto_mode], key->raw,
120 key->size);
121 if (err) {
122 blk_crypto_evict_keyslot(slot);
123 return err;
124 }
125 return 0;
126}
127
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700128static int blk_crypto_keyslot_evict(struct blk_keyslot_manager *ksm,
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800129 const struct blk_crypto_key *key,
130 unsigned int slot)
131{
132 blk_crypto_evict_keyslot(slot);
133 return 0;
134}
135
136/*
137 * The crypto API fallback KSM ops - only used for a bio when it specifies a
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700138 * blk_crypto_key that was not supported by the device's inline encryption
139 * hardware.
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800140 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700141static const struct blk_ksm_ll_ops blk_crypto_ksm_ll_ops = {
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800142 .keyslot_program = blk_crypto_keyslot_program,
143 .keyslot_evict = blk_crypto_keyslot_evict,
144};
145
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700146static void blk_crypto_fallback_encrypt_endio(struct bio *enc_bio)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800147{
148 struct bio *src_bio = enc_bio->bi_private;
149 int i;
150
151 for (i = 0; i < enc_bio->bi_vcnt; i++)
152 mempool_free(enc_bio->bi_io_vec[i].bv_page,
153 blk_crypto_bounce_page_pool);
154
155 src_bio->bi_status = enc_bio->bi_status;
156
157 bio_put(enc_bio);
158 bio_endio(src_bio);
159}
160
161static struct bio *blk_crypto_clone_bio(struct bio *bio_src)
162{
163 struct bvec_iter iter;
164 struct bio_vec bv;
165 struct bio *bio;
166
167 bio = bio_alloc_bioset(GFP_NOIO, bio_segments(bio_src), NULL);
168 if (!bio)
169 return NULL;
170 bio->bi_disk = bio_src->bi_disk;
171 bio->bi_opf = bio_src->bi_opf;
172 bio->bi_ioprio = bio_src->bi_ioprio;
173 bio->bi_write_hint = bio_src->bi_write_hint;
174 bio->bi_iter.bi_sector = bio_src->bi_iter.bi_sector;
175 bio->bi_iter.bi_size = bio_src->bi_iter.bi_size;
176
177 bio_for_each_segment(bv, bio_src, iter)
178 bio->bi_io_vec[bio->bi_vcnt++] = bv;
179
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800180 bio_clone_blkg_association(bio, bio_src);
181 blkcg_bio_issue_init(bio);
182
Eric Biggerscb39ec02020-01-21 09:27:47 -0800183 bio_clone_skip_dm_default_key(bio, bio_src);
184
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800185 return bio;
186}
187
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700188static bool blk_crypto_alloc_cipher_req(struct blk_ksm_keyslot *slot,
189 struct skcipher_request **ciph_req_ret,
190 struct crypto_wait *wait)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800191{
192 struct skcipher_request *ciph_req;
193 const struct blk_crypto_keyslot *slotp;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700194 int keyslot_idx = blk_ksm_get_slot_idx(slot);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800195
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700196 slotp = &blk_crypto_keyslots[keyslot_idx];
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800197 ciph_req = skcipher_request_alloc(slotp->tfms[slotp->crypto_mode],
198 GFP_NOIO);
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700199 if (!ciph_req)
200 return false;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800201
202 skcipher_request_set_callback(ciph_req,
203 CRYPTO_TFM_REQ_MAY_BACKLOG |
204 CRYPTO_TFM_REQ_MAY_SLEEP,
205 crypto_req_done, wait);
206 *ciph_req_ret = ciph_req;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700207
208 return true;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800209}
210
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700211static bool blk_crypto_split_bio_if_needed(struct bio **bio_ptr)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800212{
213 struct bio *bio = *bio_ptr;
214 unsigned int i = 0;
215 unsigned int num_sectors = 0;
216 struct bio_vec bv;
217 struct bvec_iter iter;
218
219 bio_for_each_segment(bv, bio, iter) {
220 num_sectors += bv.bv_len >> SECTOR_SHIFT;
221 if (++i == BIO_MAX_PAGES)
222 break;
223 }
224 if (num_sectors < bio_sectors(bio)) {
225 struct bio *split_bio;
226
227 split_bio = bio_split(bio, num_sectors, GFP_NOIO, NULL);
228 if (!split_bio) {
229 bio->bi_status = BLK_STS_RESOURCE;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700230 return false;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800231 }
232 bio_chain(split_bio, bio);
Christoph Hellwiged00aab2020-07-01 10:59:44 +0200233 submit_bio_noacct(bio);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800234 *bio_ptr = split_bio;
235 }
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700236
237 return true;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800238}
239
240union blk_crypto_iv {
241 __le64 dun[BLK_CRYPTO_DUN_ARRAY_SIZE];
242 u8 bytes[BLK_CRYPTO_MAX_IV_SIZE];
243};
244
245static void blk_crypto_dun_to_iv(const u64 dun[BLK_CRYPTO_DUN_ARRAY_SIZE],
246 union blk_crypto_iv *iv)
247{
248 int i;
249
250 for (i = 0; i < BLK_CRYPTO_DUN_ARRAY_SIZE; i++)
251 iv->dun[i] = cpu_to_le64(dun[i]);
252}
253
254/*
255 * The crypto API fallback's encryption routine.
256 * Allocate a bounce bio for encryption, encrypt the input bio using crypto API,
257 * and replace *bio_ptr with the bounce bio. May split input bio if it's too
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700258 * large. Returns true on success. Returns false and sets bio->bi_status on
259 * error.
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800260 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700261static bool blk_crypto_fallback_encrypt_bio(struct bio **bio_ptr)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800262{
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700263 struct bio *src_bio, *enc_bio;
264 struct bio_crypt_ctx *bc;
265 struct blk_ksm_keyslot *slot;
266 int data_unit_size;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800267 struct skcipher_request *ciph_req = NULL;
268 DECLARE_CRYPTO_WAIT(wait);
269 u64 curr_dun[BLK_CRYPTO_DUN_ARRAY_SIZE];
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800270 struct scatterlist src, dst;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700271 union blk_crypto_iv iv;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800272 unsigned int i, j;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700273 bool ret = false;
274 blk_status_t blk_st;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800275
276 /* Split the bio if it's too big for single page bvec */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700277 if (!blk_crypto_split_bio_if_needed(bio_ptr))
278 return false;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800279
280 src_bio = *bio_ptr;
281 bc = src_bio->bi_crypt_context;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700282 data_unit_size = bc->bc_key->crypto_cfg.data_unit_size;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800283
284 /* Allocate bounce bio for encryption */
285 enc_bio = blk_crypto_clone_bio(src_bio);
286 if (!enc_bio) {
287 src_bio->bi_status = BLK_STS_RESOURCE;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700288 return false;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800289 }
290
291 /*
292 * Use the crypto API fallback keyslot manager to get a crypto_skcipher
293 * for the algorithm and key specified for this bio.
294 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700295 blk_st = blk_ksm_get_slot_for_key(&blk_crypto_ksm, bc->bc_key, &slot);
296 if (blk_st != BLK_STS_OK) {
297 src_bio->bi_status = blk_st;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800298 goto out_put_enc_bio;
299 }
300
301 /* and then allocate an skcipher_request for it */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700302 if (!blk_crypto_alloc_cipher_req(slot, &ciph_req, &wait)) {
303 src_bio->bi_status = BLK_STS_RESOURCE;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800304 goto out_release_keyslot;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700305 }
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800306
307 memcpy(curr_dun, bc->bc_dun, sizeof(curr_dun));
308 sg_init_table(&src, 1);
309 sg_init_table(&dst, 1);
310
311 skcipher_request_set_crypt(ciph_req, &src, &dst, data_unit_size,
312 iv.bytes);
313
314 /* Encrypt each page in the bounce bio */
315 for (i = 0; i < enc_bio->bi_vcnt; i++) {
316 struct bio_vec *enc_bvec = &enc_bio->bi_io_vec[i];
317 struct page *plaintext_page = enc_bvec->bv_page;
318 struct page *ciphertext_page =
319 mempool_alloc(blk_crypto_bounce_page_pool, GFP_NOIO);
320
321 enc_bvec->bv_page = ciphertext_page;
322
323 if (!ciphertext_page) {
324 src_bio->bi_status = BLK_STS_RESOURCE;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800325 goto out_free_bounce_pages;
326 }
327
328 sg_set_page(&src, plaintext_page, data_unit_size,
329 enc_bvec->bv_offset);
330 sg_set_page(&dst, ciphertext_page, data_unit_size,
331 enc_bvec->bv_offset);
332
333 /* Encrypt each data unit in this page */
334 for (j = 0; j < enc_bvec->bv_len; j += data_unit_size) {
335 blk_crypto_dun_to_iv(curr_dun, &iv);
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700336 if (crypto_wait_req(crypto_skcipher_encrypt(ciph_req),
337 &wait)) {
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800338 i++;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700339 src_bio->bi_status = BLK_STS_IOERR;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800340 goto out_free_bounce_pages;
341 }
342 bio_crypt_dun_increment(curr_dun, 1);
343 src.offset += data_unit_size;
344 dst.offset += data_unit_size;
345 }
346 }
347
348 enc_bio->bi_private = src_bio;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700349 enc_bio->bi_end_io = blk_crypto_fallback_encrypt_endio;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800350 *bio_ptr = enc_bio;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700351 ret = true;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800352
353 enc_bio = NULL;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800354 goto out_free_ciph_req;
355
356out_free_bounce_pages:
357 while (i > 0)
358 mempool_free(enc_bio->bi_io_vec[--i].bv_page,
359 blk_crypto_bounce_page_pool);
360out_free_ciph_req:
361 skcipher_request_free(ciph_req);
362out_release_keyslot:
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700363 blk_ksm_put_slot(slot);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800364out_put_enc_bio:
365 if (enc_bio)
366 bio_put(enc_bio);
367
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700368 return ret;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800369}
370
371/*
372 * The crypto API fallback's main decryption routine.
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700373 * Decrypts input bio in place, and calls bio_endio on the bio.
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800374 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700375static void blk_crypto_fallback_decrypt_bio(struct work_struct *work)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800376{
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700377 struct bio_fallback_crypt_ctx *f_ctx =
378 container_of(work, struct bio_fallback_crypt_ctx, work);
379 struct bio *bio = f_ctx->bio;
380 struct bio_crypt_ctx *bc = &f_ctx->crypt_ctx;
381 struct blk_ksm_keyslot *slot;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800382 struct skcipher_request *ciph_req = NULL;
383 DECLARE_CRYPTO_WAIT(wait);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800384 u64 curr_dun[BLK_CRYPTO_DUN_ARRAY_SIZE];
385 union blk_crypto_iv iv;
386 struct scatterlist sg;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700387 struct bio_vec bv;
388 struct bvec_iter iter;
389 const int data_unit_size = bc->bc_key->crypto_cfg.data_unit_size;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800390 unsigned int i;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700391 blk_status_t blk_st;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800392
393 /*
394 * Use the crypto API fallback keyslot manager to get a crypto_skcipher
395 * for the algorithm and key specified for this bio.
396 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700397 blk_st = blk_ksm_get_slot_for_key(&blk_crypto_ksm, bc->bc_key, &slot);
398 if (blk_st != BLK_STS_OK) {
399 bio->bi_status = blk_st;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800400 goto out_no_keyslot;
401 }
402
403 /* and then allocate an skcipher_request for it */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700404 if (!blk_crypto_alloc_cipher_req(slot, &ciph_req, &wait)) {
405 bio->bi_status = BLK_STS_RESOURCE;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800406 goto out;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700407 }
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800408
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700409 memcpy(curr_dun, bc->bc_dun, sizeof(curr_dun));
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800410 sg_init_table(&sg, 1);
411 skcipher_request_set_crypt(ciph_req, &sg, &sg, data_unit_size,
412 iv.bytes);
413
414 /* Decrypt each segment in the bio */
415 __bio_for_each_segment(bv, bio, iter, f_ctx->crypt_iter) {
416 struct page *page = bv.bv_page;
417
418 sg_set_page(&sg, page, data_unit_size, bv.bv_offset);
419
420 /* Decrypt each data unit in the segment */
421 for (i = 0; i < bv.bv_len; i += data_unit_size) {
422 blk_crypto_dun_to_iv(curr_dun, &iv);
423 if (crypto_wait_req(crypto_skcipher_decrypt(ciph_req),
424 &wait)) {
425 bio->bi_status = BLK_STS_IOERR;
426 goto out;
427 }
428 bio_crypt_dun_increment(curr_dun, 1);
429 sg.offset += data_unit_size;
430 }
431 }
432
433out:
434 skcipher_request_free(ciph_req);
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700435 blk_ksm_put_slot(slot);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800436out_no_keyslot:
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700437 mempool_free(f_ctx, bio_fallback_crypt_ctx_pool);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800438 bio_endio(bio);
439}
440
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700441/**
442 * blk_crypto_fallback_decrypt_endio - queue bio for fallback decryption
443 *
444 * @bio: the bio to queue
445 *
446 * Restore bi_private and bi_end_io, and queue the bio for decryption into a
447 * workqueue, since this function will be called from an atomic context.
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800448 */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700449static void blk_crypto_fallback_decrypt_endio(struct bio *bio)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800450{
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700451 struct bio_fallback_crypt_ctx *f_ctx = bio->bi_private;
452
453 bio->bi_private = f_ctx->bi_private_orig;
454 bio->bi_end_io = f_ctx->bi_end_io_orig;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800455
456 /* If there was an IO error, don't queue for decrypt. */
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700457 if (bio->bi_status) {
458 mempool_free(f_ctx, bio_fallback_crypt_ctx_pool);
459 bio_endio(bio);
460 return;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800461 }
462
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700463 INIT_WORK(&f_ctx->work, blk_crypto_fallback_decrypt_bio);
464 f_ctx->bio = bio;
465 queue_work(blk_crypto_wq, &f_ctx->work);
466}
467
468/**
469 * blk_crypto_fallback_bio_prep - Prepare a bio to use fallback en/decryption
470 *
471 * @bio_ptr: pointer to the bio to prepare
472 *
473 * If bio is doing a WRITE operation, this splits the bio into two parts if it's
474 * too big (see blk_crypto_split_bio_if_needed). It then allocates a bounce bio
475 * for the first part, encrypts it, and update bio_ptr to point to the bounce
476 * bio.
477 *
478 * For a READ operation, we mark the bio for decryption by using bi_private and
479 * bi_end_io.
480 *
481 * In either case, this function will make the bio look like a regular bio (i.e.
482 * as if no encryption context was ever specified) for the purposes of the rest
483 * of the stack except for blk-integrity (blk-integrity and blk-crypto are not
484 * currently supported together).
485 *
486 * Return: true on success. Sets bio->bi_status and returns false on error.
487 */
488bool blk_crypto_fallback_bio_prep(struct bio **bio_ptr)
489{
490 struct bio *bio = *bio_ptr;
491 struct bio_crypt_ctx *bc = bio->bi_crypt_context;
492 struct bio_fallback_crypt_ctx *f_ctx;
493
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700494 if (WARN_ON_ONCE(!tfms_inited[bc->bc_key->crypto_cfg.crypto_mode])) {
495 /* User didn't call blk_crypto_start_using_key() first */
496 bio->bi_status = BLK_STS_IOERR;
497 return false;
498 }
499
500 if (!blk_ksm_crypto_cfg_supported(&blk_crypto_ksm,
501 &bc->bc_key->crypto_cfg)) {
502 bio->bi_status = BLK_STS_NOTSUPP;
503 return false;
504 }
505
506 if (bio_data_dir(bio) == WRITE)
507 return blk_crypto_fallback_encrypt_bio(bio_ptr);
508
509 /*
510 * bio READ case: Set up a f_ctx in the bio's bi_private and set the
511 * bi_end_io appropriately to trigger decryption when the bio is ended.
512 */
513 f_ctx = mempool_alloc(bio_fallback_crypt_ctx_pool, GFP_NOIO);
514 f_ctx->crypt_ctx = *bc;
515 f_ctx->crypt_iter = bio->bi_iter;
516 f_ctx->bi_private_orig = bio->bi_private;
517 f_ctx->bi_end_io_orig = bio->bi_end_io;
518 bio->bi_private = (void *)f_ctx;
519 bio->bi_end_io = blk_crypto_fallback_decrypt_endio;
520 bio_crypt_free_ctx(bio);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800521
522 return true;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700523}
524
525int blk_crypto_fallback_evict_key(const struct blk_crypto_key *key)
526{
527 return blk_ksm_evict_key(&blk_crypto_ksm, key);
528}
529
530static bool blk_crypto_fallback_inited;
531static int blk_crypto_fallback_init(void)
532{
533 int i;
Colin Ian Kinge7ecc1422020-05-26 23:49:02 +0100534 int err;
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700535
536 if (blk_crypto_fallback_inited)
537 return 0;
538
539 prandom_bytes(blank_key, BLK_CRYPTO_MAX_KEY_SIZE);
540
541 err = blk_ksm_init(&blk_crypto_ksm, blk_crypto_num_keyslots);
542 if (err)
543 goto out;
544 err = -ENOMEM;
545
546 blk_crypto_ksm.ksm_ll_ops = blk_crypto_ksm_ll_ops;
547 blk_crypto_ksm.max_dun_bytes_supported = BLK_CRYPTO_MAX_IV_SIZE;
548 blk_crypto_ksm.features = BLK_CRYPTO_FEATURE_STANDARD_KEYS;
549
550 /* All blk-crypto modes have a crypto API fallback. */
551 for (i = 0; i < BLK_ENCRYPTION_MODE_MAX; i++)
552 blk_crypto_ksm.crypto_modes_supported[i] = 0xFFFFFFFF;
553 blk_crypto_ksm.crypto_modes_supported[BLK_ENCRYPTION_MODE_INVALID] = 0;
554
555 blk_crypto_wq = alloc_workqueue("blk_crypto_wq",
556 WQ_UNBOUND | WQ_HIGHPRI |
557 WQ_MEM_RECLAIM, num_online_cpus());
558 if (!blk_crypto_wq)
559 goto fail_free_ksm;
560
561 blk_crypto_keyslots = kcalloc(blk_crypto_num_keyslots,
562 sizeof(blk_crypto_keyslots[0]),
563 GFP_KERNEL);
564 if (!blk_crypto_keyslots)
565 goto fail_free_wq;
566
567 blk_crypto_bounce_page_pool =
568 mempool_create_page_pool(num_prealloc_bounce_pg, 0);
569 if (!blk_crypto_bounce_page_pool)
570 goto fail_free_keyslots;
571
572 bio_fallback_crypt_ctx_cache = KMEM_CACHE(bio_fallback_crypt_ctx, 0);
573 if (!bio_fallback_crypt_ctx_cache)
574 goto fail_free_bounce_page_pool;
575
576 bio_fallback_crypt_ctx_pool =
577 mempool_create_slab_pool(num_prealloc_fallback_crypt_ctxs,
578 bio_fallback_crypt_ctx_cache);
579 if (!bio_fallback_crypt_ctx_pool)
580 goto fail_free_crypt_ctx_cache;
581
582 blk_crypto_fallback_inited = true;
583
584 return 0;
585fail_free_crypt_ctx_cache:
586 kmem_cache_destroy(bio_fallback_crypt_ctx_cache);
587fail_free_bounce_page_pool:
588 mempool_destroy(blk_crypto_bounce_page_pool);
589fail_free_keyslots:
590 kfree(blk_crypto_keyslots);
591fail_free_wq:
592 destroy_workqueue(blk_crypto_wq);
593fail_free_ksm:
594 blk_ksm_destroy(&blk_crypto_ksm);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800595out:
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700596 return err;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800597}
598
Eric Biggersfca1165b2020-04-03 12:06:10 -0700599/*
600 * Prepare blk-crypto-fallback for the specified crypto mode.
601 * Returns -ENOPKG if the needed crypto API support is missing.
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800602 */
Eric Biggersfca1165b2020-04-03 12:06:10 -0700603int blk_crypto_fallback_start_using_mode(enum blk_crypto_mode_num mode_num)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800604{
Eric Biggersfca1165b2020-04-03 12:06:10 -0700605 const char *cipher_str = blk_crypto_modes[mode_num].cipher_str;
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800606 struct blk_crypto_keyslot *slotp;
607 unsigned int i;
608 int err = 0;
609
610 /*
611 * Fast path
612 * Ensure that updates to blk_crypto_keyslots[i].tfms[mode_num]
613 * for each i are visible before we try to access them.
614 */
615 if (likely(smp_load_acquire(&tfms_inited[mode_num])))
616 return 0;
617
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800618 mutex_lock(&tfms_init_lock);
Satya Tangiralac2b86b72020-06-16 14:33:37 -0700619 if (tfms_inited[mode_num])
620 goto out;
621
622 err = blk_crypto_fallback_init();
623 if (err)
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800624 goto out;
625
626 for (i = 0; i < blk_crypto_num_keyslots; i++) {
627 slotp = &blk_crypto_keyslots[i];
Eric Biggersfca1165b2020-04-03 12:06:10 -0700628 slotp->tfms[mode_num] = crypto_alloc_skcipher(cipher_str, 0, 0);
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800629 if (IS_ERR(slotp->tfms[mode_num])) {
630 err = PTR_ERR(slotp->tfms[mode_num]);
Eric Biggersfca1165b2020-04-03 12:06:10 -0700631 if (err == -ENOENT) {
632 pr_warn_once("Missing crypto API support for \"%s\"\n",
633 cipher_str);
634 err = -ENOPKG;
635 }
Satya Tangiralacfd7e6c2019-12-17 14:26:29 -0800636 slotp->tfms[mode_num] = NULL;
637 goto out_free_tfms;
638 }
639
640 crypto_skcipher_set_flags(slotp->tfms[mode_num],
641 CRYPTO_TFM_REQ_FORBID_WEAK_KEYS);
642 }
643
644 /*
645 * Ensure that updates to blk_crypto_keyslots[i].tfms[mode_num]
646 * for each i are visible before we set tfms_inited[mode_num].
647 */
648 smp_store_release(&tfms_inited[mode_num], true);
649 goto out;
650
651out_free_tfms:
652 for (i = 0; i < blk_crypto_num_keyslots; i++) {
653 slotp = &blk_crypto_keyslots[i];
654 crypto_free_skcipher(slotp->tfms[mode_num]);
655 slotp->tfms[mode_num] = NULL;
656 }
657out:
658 mutex_unlock(&tfms_init_lock);
659 return err;
660}