2019-04-30 18:42:39 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-06-30 18:04:41 +00:00
|
|
|
/*
|
|
|
|
* bio-integrity.c - bio data integrity extensions
|
|
|
|
*
|
2009-06-26 13:37:49 +00:00
|
|
|
* Copyright (C) 2007, 2008, 2009 Oracle Corporation
|
2008-06-30 18:04:41 +00:00
|
|
|
* Written by: Martin K. Petersen <martin.petersen@oracle.com>
|
|
|
|
*/
|
|
|
|
|
2021-09-20 12:33:27 +00:00
|
|
|
#include <linux/blk-integrity.h>
|
2008-06-30 18:04:41 +00:00
|
|
|
#include <linux/mempool.h>
|
2011-05-26 20:00:52 +00:00
|
|
|
#include <linux/export.h>
|
2008-06-30 18:04:41 +00:00
|
|
|
#include <linux/bio.h>
|
|
|
|
#include <linux/workqueue.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2016-06-14 15:03:45 +00:00
|
|
|
#include "blk.h"
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2012-10-12 22:29:33 +00:00
|
|
|
static struct kmem_cache *bip_slab;
|
2008-06-30 18:04:41 +00:00
|
|
|
static struct workqueue_struct *kintegrityd_wq;
|
|
|
|
|
2015-10-21 17:20:23 +00:00
|
|
|
void blk_flush_integrity(void)
|
|
|
|
{
|
|
|
|
flush_workqueue(kintegrityd_wq);
|
|
|
|
}
|
|
|
|
|
2020-07-02 05:35:43 +00:00
|
|
|
static void __bio_integrity_free(struct bio_set *bs,
|
|
|
|
struct bio_integrity_payload *bip)
|
2020-06-24 10:21:39 +00:00
|
|
|
{
|
|
|
|
if (bs && mempool_initialized(&bs->bio_integrity_pool)) {
|
|
|
|
if (bip->bip_vec)
|
|
|
|
bvec_free(&bs->bvec_integrity_pool, bip->bip_vec,
|
2021-02-02 17:19:29 +00:00
|
|
|
bip->bip_max_vcnt);
|
2020-06-24 10:21:39 +00:00
|
|
|
mempool_free(bip, &bs->bio_integrity_pool);
|
|
|
|
} else {
|
|
|
|
kfree(bip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
/**
|
2012-09-06 22:34:56 +00:00
|
|
|
* bio_integrity_alloc - Allocate integrity payload and attach it to bio
|
2008-06-30 18:04:41 +00:00
|
|
|
* @bio: bio to attach integrity metadata to
|
|
|
|
* @gfp_mask: Memory allocation mask
|
|
|
|
* @nr_vecs: Number of integrity metadata scatter-gather elements
|
|
|
|
*
|
|
|
|
* Description: This function prepares a bio for attaching integrity
|
|
|
|
* metadata. nr_vecs specifies the maximum number of pages containing
|
|
|
|
* integrity metadata that can be attached.
|
|
|
|
*/
|
2012-09-06 22:34:56 +00:00
|
|
|
struct bio_integrity_payload *bio_integrity_alloc(struct bio *bio,
|
|
|
|
gfp_t gfp_mask,
|
|
|
|
unsigned int nr_vecs)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
|
|
|
struct bio_integrity_payload *bip;
|
2012-09-06 22:34:56 +00:00
|
|
|
struct bio_set *bs = bio->bi_pool;
|
2012-10-12 22:29:33 +00:00
|
|
|
unsigned inline_vecs;
|
|
|
|
|
2020-05-14 00:37:19 +00:00
|
|
|
if (WARN_ON_ONCE(bio_has_crypt_ctx(bio)))
|
|
|
|
return ERR_PTR(-EOPNOTSUPP);
|
|
|
|
|
2018-05-09 01:33:50 +00:00
|
|
|
if (!bs || !mempool_initialized(&bs->bio_integrity_pool)) {
|
2019-05-15 08:52:19 +00:00
|
|
|
bip = kmalloc(struct_size(bip, bip_inline_vecs, nr_vecs), gfp_mask);
|
2012-10-12 22:29:33 +00:00
|
|
|
inline_vecs = nr_vecs;
|
|
|
|
} else {
|
2018-05-09 01:33:50 +00:00
|
|
|
bip = mempool_alloc(&bs->bio_integrity_pool, gfp_mask);
|
2021-02-02 17:19:19 +00:00
|
|
|
inline_vecs = BIO_INLINE_VECS;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
2012-10-12 22:29:33 +00:00
|
|
|
if (unlikely(!bip))
|
2015-12-03 16:32:21 +00:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2012-10-12 22:29:33 +00:00
|
|
|
|
2009-06-26 13:37:49 +00:00
|
|
|
memset(bip, 0, sizeof(*bip));
|
|
|
|
|
2012-10-12 22:29:33 +00:00
|
|
|
if (nr_vecs > inline_vecs) {
|
2021-02-02 17:19:29 +00:00
|
|
|
bip->bip_max_vcnt = nr_vecs;
|
|
|
|
bip->bip_vec = bvec_alloc(&bs->bvec_integrity_pool,
|
|
|
|
&bip->bip_max_vcnt, gfp_mask);
|
2012-10-12 22:29:33 +00:00
|
|
|
if (!bip->bip_vec)
|
|
|
|
goto err;
|
|
|
|
} else {
|
|
|
|
bip->bip_vec = bip->bip_inline_vecs;
|
2014-07-01 16:36:47 +00:00
|
|
|
bip->bip_max_vcnt = inline_vecs;
|
2012-10-12 22:29:33 +00:00
|
|
|
}
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
bip->bip_bio = bio;
|
|
|
|
bio->bi_integrity = bip;
|
2016-08-05 21:35:16 +00:00
|
|
|
bio->bi_opf |= REQ_INTEGRITY;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
return bip;
|
2012-10-12 22:29:33 +00:00
|
|
|
err:
|
2020-06-24 10:21:39 +00:00
|
|
|
__bio_integrity_free(bs, bip);
|
2015-12-03 16:32:21 +00:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bio_integrity_alloc);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_free - Free bio integrity payload
|
|
|
|
* @bio: bio containing bip to be freed
|
|
|
|
*
|
|
|
|
* Description: Used to free the integrity portion of a bio. Usually
|
|
|
|
* called from bio_free().
|
|
|
|
*/
|
2019-12-05 02:09:01 +00:00
|
|
|
void bio_integrity_free(struct bio *bio)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2012-09-06 22:34:56 +00:00
|
|
|
struct bio_set *bs = bio->bi_pool;
|
|
|
|
|
2014-09-26 23:20:04 +00:00
|
|
|
if (bip->bip_flags & BIP_BLOCK_INTEGRITY)
|
2021-08-04 09:56:21 +00:00
|
|
|
kfree(bvec_virt(bip->bip_vec));
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2020-06-24 10:21:39 +00:00
|
|
|
__bio_integrity_free(bs, bip);
|
2008-06-30 18:04:41 +00:00
|
|
|
bio->bi_integrity = NULL;
|
2017-07-03 22:58:43 +00:00
|
|
|
bio->bi_opf &= ~REQ_INTEGRITY;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_add_page - Attach integrity metadata
|
|
|
|
* @bio: bio to update
|
|
|
|
* @page: page containing integrity metadata
|
|
|
|
* @len: number of bytes of integrity metadata in page
|
|
|
|
* @offset: start offset within page
|
|
|
|
*
|
|
|
|
* Description: Attach a page containing integrity metadata to bio.
|
|
|
|
*/
|
|
|
|
int bio_integrity_add_page(struct bio *bio, struct page *page,
|
|
|
|
unsigned int len, unsigned int offset)
|
|
|
|
{
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2008-06-30 18:04:41 +00:00
|
|
|
struct bio_vec *iv;
|
|
|
|
|
2014-07-01 16:36:47 +00:00
|
|
|
if (bip->bip_vcnt >= bip->bip_max_vcnt) {
|
2008-06-30 18:04:41 +00:00
|
|
|
printk(KERN_ERR "%s: bip_vec full\n", __func__);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-11-24 01:20:16 +00:00
|
|
|
iv = bip->bip_vec + bip->bip_vcnt;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2015-09-08 15:33:35 +00:00
|
|
|
if (bip->bip_vcnt &&
|
2021-10-14 14:03:30 +00:00
|
|
|
bvec_gap_to_prev(bdev_get_queue(bio->bi_bdev),
|
2015-09-08 15:33:35 +00:00
|
|
|
&bip->bip_vec[bip->bip_vcnt - 1], offset))
|
|
|
|
return 0;
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
iv->bv_page = page;
|
|
|
|
iv->bv_len = len;
|
|
|
|
iv->bv_offset = offset;
|
|
|
|
bip->bip_vcnt++;
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bio_integrity_add_page);
|
|
|
|
|
|
|
|
/**
|
2014-09-26 23:20:01 +00:00
|
|
|
* bio_integrity_process - Process integrity metadata for a bio
|
2014-02-21 10:10:59 +00:00
|
|
|
* @bio: bio to generate/verify integrity metadata for
|
2017-06-29 18:31:15 +00:00
|
|
|
* @proc_iter: iterator to process
|
2014-09-26 23:20:01 +00:00
|
|
|
* @proc_fn: Pointer to the relevant processing function
|
2008-06-30 18:04:41 +00:00
|
|
|
*/
|
2017-06-03 07:38:06 +00:00
|
|
|
static blk_status_t bio_integrity_process(struct bio *bio,
|
2017-06-29 18:31:15 +00:00
|
|
|
struct bvec_iter *proc_iter, integrity_processing_fn *proc_fn)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2014-09-26 23:20:01 +00:00
|
|
|
struct blk_integrity_iter iter;
|
2014-11-26 01:40:25 +00:00
|
|
|
struct bvec_iter bviter;
|
|
|
|
struct bio_vec bv;
|
2014-09-26 23:19:58 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2017-06-03 07:38:06 +00:00
|
|
|
blk_status_t ret = BLK_STS_OK;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2021-01-24 10:02:34 +00:00
|
|
|
iter.disk_name = bio->bi_bdev->bd_disk->disk_name;
|
2015-10-21 17:19:38 +00:00
|
|
|
iter.interval = 1 << bi->interval_exp;
|
2022-03-03 20:13:05 +00:00
|
|
|
iter.tuple_size = bi->tuple_size;
|
2017-06-29 18:31:15 +00:00
|
|
|
iter.seed = proc_iter->bi_sector;
|
2021-08-04 09:56:21 +00:00
|
|
|
iter.prot_buf = bvec_virt(bip->bip_vec);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2017-06-29 18:31:15 +00:00
|
|
|
__bio_for_each_segment(bv, bio, bviter, *proc_iter) {
|
2021-07-27 05:56:46 +00:00
|
|
|
void *kaddr = bvec_kmap_local(&bv);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2021-07-27 05:56:46 +00:00
|
|
|
iter.data_buf = kaddr;
|
2014-11-26 01:40:25 +00:00
|
|
|
iter.data_size = bv.bv_len;
|
2014-09-26 23:20:01 +00:00
|
|
|
ret = proc_fn(&iter);
|
2021-07-27 05:56:46 +00:00
|
|
|
kunmap_local(kaddr);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
break;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
}
|
2014-02-21 10:10:59 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
/**
|
|
|
|
* bio_integrity_prep - Prepare bio for integrity I/O
|
|
|
|
* @bio: bio to prepare
|
|
|
|
*
|
2017-06-29 18:31:11 +00:00
|
|
|
* Description: Checks if the bio already has an integrity payload attached.
|
|
|
|
* If it does, the payload has been generated by another kernel subsystem,
|
|
|
|
* and we just pass it through. Otherwise allocates integrity payload.
|
|
|
|
* The bio must have data direction, target device and start sector set priot
|
|
|
|
* to calling. In the WRITE case, integrity metadata will be generated using
|
|
|
|
* the block device's integrity function. In the READ case, the buffer
|
2008-06-30 18:04:41 +00:00
|
|
|
* will be prepared for DMA and a suitable end_io handler set up.
|
|
|
|
*/
|
2017-06-29 18:31:11 +00:00
|
|
|
bool bio_integrity_prep(struct bio *bio)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
|
|
|
struct bio_integrity_payload *bip;
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2008-06-30 18:04:41 +00:00
|
|
|
void *buf;
|
|
|
|
unsigned long start, end;
|
|
|
|
unsigned int len, nr_pages;
|
|
|
|
unsigned int bytes, offset, i;
|
2014-09-26 23:19:59 +00:00
|
|
|
unsigned int intervals;
|
2017-06-29 18:31:11 +00:00
|
|
|
blk_status_t status;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2017-08-09 15:48:08 +00:00
|
|
|
if (!bi)
|
|
|
|
return true;
|
|
|
|
|
2017-06-29 18:31:11 +00:00
|
|
|
if (bio_op(bio) != REQ_OP_READ && bio_op(bio) != REQ_OP_WRITE)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!bio_sectors(bio))
|
|
|
|
return true;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2017-06-29 18:31:11 +00:00
|
|
|
/* Already protected? */
|
|
|
|
if (bio_integrity(bio))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (bio_data_dir(bio) == READ) {
|
|
|
|
if (!bi->profile->verify_fn ||
|
|
|
|
!(bi->flags & BLK_INTEGRITY_VERIFY))
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if (!bi->profile->generate_fn ||
|
|
|
|
!(bi->flags & BLK_INTEGRITY_GENERATE))
|
|
|
|
return true;
|
|
|
|
}
|
2014-09-26 23:19:59 +00:00
|
|
|
intervals = bio_integrity_intervals(bi, bio_sectors(bio));
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
/* Allocate kernel buffer for protection data */
|
2014-09-26 23:19:59 +00:00
|
|
|
len = intervals * bi->tuple_size;
|
2021-03-31 07:29:59 +00:00
|
|
|
buf = kmalloc(len, GFP_NOIO);
|
2017-06-29 18:31:11 +00:00
|
|
|
status = BLK_STS_RESOURCE;
|
2008-06-30 18:04:41 +00:00
|
|
|
if (unlikely(buf == NULL)) {
|
|
|
|
printk(KERN_ERR "could not allocate integrity buffer\n");
|
2017-06-29 18:31:11 +00:00
|
|
|
goto err_end_io;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
end = (((unsigned long) buf) + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
|
|
start = ((unsigned long) buf) >> PAGE_SHIFT;
|
|
|
|
nr_pages = end - start;
|
|
|
|
|
|
|
|
/* Allocate bio integrity payload and integrity vectors */
|
|
|
|
bip = bio_integrity_alloc(bio, GFP_NOIO, nr_pages);
|
2015-12-09 10:21:23 +00:00
|
|
|
if (IS_ERR(bip)) {
|
2008-06-30 18:04:41 +00:00
|
|
|
printk(KERN_ERR "could not allocate data integrity bioset\n");
|
|
|
|
kfree(buf);
|
2017-06-29 18:31:11 +00:00
|
|
|
status = BLK_STS_RESOURCE;
|
|
|
|
goto err_end_io;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
2014-09-26 23:20:04 +00:00
|
|
|
bip->bip_flags |= BIP_BLOCK_INTEGRITY;
|
2013-11-24 01:20:16 +00:00
|
|
|
bip->bip_iter.bi_size = len;
|
2014-09-26 23:20:01 +00:00
|
|
|
bip_set_seed(bip, bio->bi_iter.bi_sector);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2014-09-26 23:20:05 +00:00
|
|
|
if (bi->flags & BLK_INTEGRITY_IP_CHECKSUM)
|
|
|
|
bip->bip_flags |= BIP_IP_CHECKSUM;
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
/* Map it */
|
|
|
|
offset = offset_in_page(buf);
|
|
|
|
for (i = 0 ; i < nr_pages ; i++) {
|
|
|
|
int ret;
|
|
|
|
bytes = PAGE_SIZE - offset;
|
|
|
|
|
|
|
|
if (len <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (bytes > len)
|
|
|
|
bytes = len;
|
|
|
|
|
|
|
|
ret = bio_integrity_add_page(bio, virt_to_page(buf),
|
|
|
|
bytes, offset);
|
|
|
|
|
2019-07-11 19:22:02 +00:00
|
|
|
if (ret == 0) {
|
|
|
|
printk(KERN_ERR "could not attach integrity payload\n");
|
|
|
|
status = BLK_STS_RESOURCE;
|
|
|
|
goto err_end_io;
|
|
|
|
}
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
if (ret < bytes)
|
|
|
|
break;
|
|
|
|
|
|
|
|
buf += bytes;
|
|
|
|
len -= bytes;
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Auto-generate integrity metadata if this is a write */
|
2017-06-29 18:31:15 +00:00
|
|
|
if (bio_data_dir(bio) == WRITE) {
|
|
|
|
bio_integrity_process(bio, &bio->bi_iter,
|
|
|
|
bi->profile->generate_fn);
|
2018-09-05 21:45:54 +00:00
|
|
|
} else {
|
|
|
|
bip->bio_iter = bio->bi_iter;
|
2017-06-29 18:31:15 +00:00
|
|
|
}
|
2017-06-29 18:31:11 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
err_end_io:
|
|
|
|
bio->bi_status = status;
|
|
|
|
bio_endio(bio);
|
|
|
|
return false;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bio_integrity_prep);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_verify_fn - Integrity I/O completion worker
|
|
|
|
* @work: Work struct stored in bio to be verified
|
|
|
|
*
|
|
|
|
* Description: This workqueue function is called to complete a READ
|
|
|
|
* request. The function verifies the transferred integrity metadata
|
|
|
|
* and then calls the original bio end_io function.
|
|
|
|
*/
|
|
|
|
static void bio_integrity_verify_fn(struct work_struct *work)
|
|
|
|
{
|
2008-06-17 17:05:48 +00:00
|
|
|
struct bio_integrity_payload *bip =
|
2008-06-30 18:04:41 +00:00
|
|
|
container_of(work, struct bio_integrity_payload, bip_work);
|
|
|
|
struct bio *bio = bip->bip_bio;
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2017-06-29 18:31:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* At the moment verify is called bio's iterator was advanced
|
|
|
|
* during split and completion, we need to rewind iterator to
|
|
|
|
* it's original position.
|
|
|
|
*/
|
2018-09-05 21:45:54 +00:00
|
|
|
bio->bi_status = bio_integrity_process(bio, &bip->bio_iter,
|
|
|
|
bi->profile->verify_fn);
|
2017-07-03 22:58:43 +00:00
|
|
|
bio_integrity_free(bio);
|
2015-07-20 13:29:37 +00:00
|
|
|
bio_endio(bio);
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-03 22:58:43 +00:00
|
|
|
* __bio_integrity_endio - Integrity I/O completion function
|
2008-06-30 18:04:41 +00:00
|
|
|
* @bio: Protected bio
|
|
|
|
*
|
|
|
|
* Description: Completion for integrity I/O
|
|
|
|
*
|
|
|
|
* Normally I/O completion is done in interrupt context. However,
|
|
|
|
* verifying I/O integrity is a time-consuming task which must be run
|
|
|
|
* in process context. This function postpones completion
|
|
|
|
* accordingly.
|
|
|
|
*/
|
2017-07-03 22:58:43 +00:00
|
|
|
bool __bio_integrity_endio(struct bio *bio)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2017-08-09 15:47:27 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2017-08-09 15:47:26 +00:00
|
|
|
|
|
|
|
if (bio_op(bio) == REQ_OP_READ && !bio->bi_status &&
|
2017-08-09 15:47:27 +00:00
|
|
|
(bip->bip_flags & BIP_BLOCK_INTEGRITY) && bi->profile->verify_fn) {
|
2017-07-03 22:58:43 +00:00
|
|
|
INIT_WORK(&bip->bip_work, bio_integrity_verify_fn);
|
|
|
|
queue_work(kintegrityd_wq, &bip->bip_work);
|
|
|
|
return false;
|
2009-01-04 07:43:38 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 22:58:43 +00:00
|
|
|
bio_integrity_free(bio);
|
|
|
|
return true;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_advance - Advance integrity vector
|
|
|
|
* @bio: bio whose integrity vector to update
|
|
|
|
* @bytes_done: number of data bytes that have been completed
|
|
|
|
*
|
|
|
|
* Description: This function calculates how many integrity bytes the
|
|
|
|
* number of completed data bytes correspond to and advances the
|
|
|
|
* integrity vector accordingly.
|
|
|
|
*/
|
|
|
|
void bio_integrity_advance(struct bio *bio, unsigned int bytes_done)
|
|
|
|
{
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2013-11-24 01:20:16 +00:00
|
|
|
unsigned bytes = bio_integrity_bytes(bi, bytes_done >> 9);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2022-02-04 03:42:09 +00:00
|
|
|
bip->bip_iter.bi_sector += bio_integrity_intervals(bi, bytes_done >> 9);
|
2013-11-24 01:20:16 +00:00
|
|
|
bvec_iter_advance(bip->bip_vec, &bip->bip_iter, bytes);
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_trim - Trim integrity vector
|
|
|
|
* @bio: bio whose integrity vector to update
|
|
|
|
*
|
|
|
|
* Description: Used to trim the integrity vector in a cloned bio.
|
|
|
|
*/
|
2017-06-29 18:31:10 +00:00
|
|
|
void bio_integrity_trim(struct bio *bio)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2021-01-24 10:02:34 +00:00
|
|
|
struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2017-06-29 18:31:10 +00:00
|
|
|
bip->bip_iter.bi_size = bio_integrity_bytes(bi, bio_sectors(bio));
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bio_integrity_trim);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* bio_integrity_clone - Callback for cloning bios with integrity metadata
|
|
|
|
* @bio: New bio
|
|
|
|
* @bio_src: Original bio
|
2009-03-09 09:40:52 +00:00
|
|
|
* @gfp_mask: Memory allocation mask
|
2008-06-30 18:04:41 +00:00
|
|
|
*
|
|
|
|
* Description: Called to allocate a bip when cloning a bio
|
|
|
|
*/
|
2009-06-26 13:37:49 +00:00
|
|
|
int bio_integrity_clone(struct bio *bio, struct bio *bio_src,
|
2012-09-06 22:34:56 +00:00
|
|
|
gfp_t gfp_mask)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip_src = bio_integrity(bio_src);
|
2008-06-30 18:04:41 +00:00
|
|
|
struct bio_integrity_payload *bip;
|
|
|
|
|
|
|
|
BUG_ON(bip_src == NULL);
|
|
|
|
|
2012-09-06 22:34:56 +00:00
|
|
|
bip = bio_integrity_alloc(bio, gfp_mask, bip_src->bip_vcnt);
|
2015-12-09 10:21:23 +00:00
|
|
|
if (IS_ERR(bip))
|
|
|
|
return PTR_ERR(bip);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
memcpy(bip->bip_vec, bip_src->bip_vec,
|
|
|
|
bip_src->bip_vcnt * sizeof(struct bio_vec));
|
|
|
|
|
|
|
|
bip->bip_vcnt = bip_src->bip_vcnt;
|
2013-11-24 01:20:16 +00:00
|
|
|
bip->bip_iter = bip_src->bip_iter;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-26 13:37:49 +00:00
|
|
|
int bioset_integrity_create(struct bio_set *bs, int pool_size)
|
2008-06-30 18:04:41 +00:00
|
|
|
{
|
2018-05-09 01:33:50 +00:00
|
|
|
if (mempool_initialized(&bs->bio_integrity_pool))
|
2011-03-17 10:11:05 +00:00
|
|
|
return 0;
|
|
|
|
|
2018-05-09 01:33:50 +00:00
|
|
|
if (mempool_init_slab_pool(&bs->bio_integrity_pool,
|
|
|
|
pool_size, bip_slab))
|
2012-10-12 22:29:33 +00:00
|
|
|
return -1;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2018-05-09 01:33:50 +00:00
|
|
|
if (biovec_init_pool(&bs->bvec_integrity_pool, pool_size)) {
|
|
|
|
mempool_exit(&bs->bio_integrity_pool);
|
2009-06-26 13:37:49 +00:00
|
|
|
return -1;
|
2013-09-11 21:23:21 +00:00
|
|
|
}
|
2009-06-26 13:37:49 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bioset_integrity_create);
|
|
|
|
|
|
|
|
void bioset_integrity_free(struct bio_set *bs)
|
|
|
|
{
|
2018-05-09 01:33:50 +00:00
|
|
|
mempool_exit(&bs->bio_integrity_pool);
|
|
|
|
mempool_exit(&bs->bvec_integrity_pool);
|
2009-06-26 13:37:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init bio_integrity_init(void)
|
|
|
|
{
|
2011-01-03 14:01:48 +00:00
|
|
|
/*
|
|
|
|
* kintegrityd won't block much but may burn a lot of CPU cycles.
|
|
|
|
* Make it highpri CPU intensive wq with max concurrency of 1.
|
|
|
|
*/
|
|
|
|
kintegrityd_wq = alloc_workqueue("kintegrityd", WQ_MEM_RECLAIM |
|
|
|
|
WQ_HIGHPRI | WQ_CPU_INTENSIVE, 1);
|
2009-03-10 07:27:39 +00:00
|
|
|
if (!kintegrityd_wq)
|
|
|
|
panic("Failed to create kintegrityd\n");
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2012-10-12 22:29:33 +00:00
|
|
|
bip_slab = kmem_cache_create("bio_integrity_payload",
|
|
|
|
sizeof(struct bio_integrity_payload) +
|
2021-02-02 17:19:19 +00:00
|
|
|
sizeof(struct bio_vec) * BIO_INLINE_VECS,
|
2012-10-12 22:29:33 +00:00
|
|
|
0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|