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);
|
|
|
|
}
|
|
|
|
|
2024-07-02 15:10:23 +00:00
|
|
|
/**
|
|
|
|
* bio_integrity_free - Free bio integrity payload
|
|
|
|
* @bio: bio containing bip to be freed
|
|
|
|
*
|
|
|
|
* Description: Free the integrity portion of a bio.
|
|
|
|
*/
|
|
|
|
void bio_integrity_free(struct bio *bio)
|
2020-06-24 10:21:39 +00:00
|
|
|
{
|
2024-07-02 15:10:23 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
|
|
|
struct bio_set *bs = bio->bi_pool;
|
|
|
|
|
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);
|
|
|
|
}
|
2024-07-02 15:10:23 +00:00
|
|
|
bio->bi_integrity = NULL;
|
|
|
|
bio->bi_opf &= ~REQ_INTEGRITY;
|
2020-06-24 10:21:39 +00:00
|
|
|
}
|
|
|
|
|
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));
|
|
|
|
|
2023-11-30 21:53:06 +00:00
|
|
|
/* always report as many vecs as asked explicitly, not inline vecs */
|
|
|
|
bip->bip_max_vcnt = nr_vecs;
|
2012-10-12 22:29:33 +00:00
|
|
|
if (nr_vecs > inline_vecs) {
|
2021-02-02 17:19:29 +00:00
|
|
|
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;
|
2024-07-02 10:07:53 +00:00
|
|
|
} else if (nr_vecs) {
|
2012-10-12 22:29:33 +00:00
|
|
|
bip->bip_vec = bip->bip_inline_vecs;
|
|
|
|
}
|
|
|
|
|
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:
|
2024-07-02 15:10:23 +00:00
|
|
|
if (bs && mempool_initialized(&bs->bio_integrity_pool))
|
|
|
|
mempool_free(bip, &bs->bio_integrity_pool);
|
|
|
|
else
|
|
|
|
kfree(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);
|
|
|
|
|
2023-11-30 21:53:06 +00:00
|
|
|
static void bio_integrity_unpin_bvec(struct bio_vec *bv, int nr_vecs,
|
|
|
|
bool dirty)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < nr_vecs; i++) {
|
|
|
|
if (dirty && !PageCompound(bv[i].bv_page))
|
|
|
|
set_page_dirty_lock(bv[i].bv_page);
|
|
|
|
unpin_user_page(bv[i].bv_page);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bio_integrity_uncopy_user(struct bio_integrity_payload *bip)
|
|
|
|
{
|
|
|
|
unsigned short nr_vecs = bip->bip_max_vcnt - 1;
|
|
|
|
struct bio_vec *copy = &bip->bip_vec[1];
|
|
|
|
size_t bytes = bip->bip_iter.bi_size;
|
|
|
|
struct iov_iter iter;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
iov_iter_bvec(&iter, ITER_DEST, copy, nr_vecs, bytes);
|
|
|
|
ret = copy_to_iter(bvec_virt(bip->bip_vec), bytes, &iter);
|
|
|
|
WARN_ON_ONCE(ret != bytes);
|
|
|
|
|
|
|
|
bio_integrity_unpin_bvec(copy, nr_vecs, true);
|
|
|
|
}
|
|
|
|
|
2008-06-30 18:04:41 +00:00
|
|
|
/**
|
2024-07-02 15:10:24 +00:00
|
|
|
* bio_integrity_unmap_user - Unmap user integrity payload
|
|
|
|
* @bio: bio containing bip to be unmapped
|
2008-06-30 18:04:41 +00:00
|
|
|
*
|
2024-07-02 15:10:24 +00:00
|
|
|
* Unmap the user mapped integrity portion of a bio.
|
2008-06-30 18:04:41 +00:00
|
|
|
*/
|
2024-07-02 15:10:24 +00:00
|
|
|
void bio_integrity_unmap_user(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
|
|
|
|
2023-11-30 21:53:06 +00:00
|
|
|
if (bip->bip_flags & BIP_COPY_USER) {
|
2024-07-02 15:10:24 +00:00
|
|
|
if (bio_data_dir(bio) == READ)
|
2023-11-30 21:53:06 +00:00
|
|
|
bio_integrity_uncopy_user(bip);
|
2021-08-04 09:56:21 +00:00
|
|
|
kfree(bvec_virt(bip->bip_vec));
|
2024-06-10 11:11:44 +00:00
|
|
|
return;
|
2023-11-30 21:53:06 +00:00
|
|
|
}
|
|
|
|
|
2024-07-02 15:10:24 +00:00
|
|
|
bio_integrity_unpin_bvec(bip->bip_vec, bip->bip_max_vcnt,
|
|
|
|
bio_data_dir(bio) == READ);
|
2024-06-10 11:11:44 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2023-08-03 02:52:02 +00:00
|
|
|
struct request_queue *q = bdev_get_queue(bio->bi_bdev);
|
2014-09-26 23:19:56 +00:00
|
|
|
struct bio_integrity_payload *bip = bio_integrity(bio);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2023-08-03 02:52:02 +00:00
|
|
|
if (bip->bip_vcnt > 0) {
|
|
|
|
struct bio_vec *bv = &bip->bip_vec[bip->bip_vcnt - 1];
|
|
|
|
bool same_page = false;
|
|
|
|
|
|
|
|
if (bvec_try_merge_hw_page(q, bv, page, len, offset,
|
|
|
|
&same_page)) {
|
|
|
|
bip->bip_iter.bi_size += len;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bip->bip_vcnt >=
|
|
|
|
min(bip->bip_max_vcnt, queue_max_integrity_segments(q)))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the queue doesn't support SG gaps and adding this segment
|
|
|
|
* would create a gap, disallow it.
|
|
|
|
*/
|
|
|
|
if (bvec_gap_to_prev(&q->limits, bv, offset))
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-08 15:33:35 +00:00
|
|
|
|
2023-02-03 15:06:12 +00:00
|
|
|
bvec_set_page(&bip->bip_vec[bip->bip_vcnt], page, len, offset);
|
2008-06-30 18:04:41 +00:00
|
|
|
bip->bip_vcnt++;
|
2023-08-03 02:49:56 +00:00
|
|
|
bip->bip_iter.bi_size += len;
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(bio_integrity_add_page);
|
|
|
|
|
2023-11-30 21:53:06 +00:00
|
|
|
static int bio_integrity_copy_user(struct bio *bio, struct bio_vec *bvec,
|
|
|
|
int nr_vecs, unsigned int len,
|
|
|
|
unsigned int direction, u32 seed)
|
|
|
|
{
|
|
|
|
bool write = direction == ITER_SOURCE;
|
|
|
|
struct bio_integrity_payload *bip;
|
|
|
|
struct iov_iter iter;
|
|
|
|
void *buf;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
buf = kmalloc(len, GFP_KERNEL);
|
|
|
|
if (!buf)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
if (write) {
|
|
|
|
iov_iter_bvec(&iter, direction, bvec, nr_vecs, len);
|
|
|
|
if (!copy_from_iter_full(buf, len, &iter)) {
|
|
|
|
ret = -EFAULT;
|
|
|
|
goto free_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
bip = bio_integrity_alloc(bio, GFP_KERNEL, 1);
|
|
|
|
} else {
|
|
|
|
memset(buf, 0, len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We need to preserve the original bvec and the number of vecs
|
|
|
|
* in it for completion handling
|
|
|
|
*/
|
|
|
|
bip = bio_integrity_alloc(bio, GFP_KERNEL, nr_vecs + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IS_ERR(bip)) {
|
|
|
|
ret = PTR_ERR(bip);
|
|
|
|
goto free_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (write)
|
|
|
|
bio_integrity_unpin_bvec(bvec, nr_vecs, false);
|
|
|
|
else
|
|
|
|
memcpy(&bip->bip_vec[1], bvec, nr_vecs * sizeof(*bvec));
|
|
|
|
|
|
|
|
ret = bio_integrity_add_page(bio, virt_to_page(buf), len,
|
|
|
|
offset_in_page(buf));
|
|
|
|
if (ret != len) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto free_bip;
|
|
|
|
}
|
|
|
|
|
2024-07-02 15:10:23 +00:00
|
|
|
bip->bip_flags |= BIP_COPY_USER;
|
2023-11-30 21:53:06 +00:00
|
|
|
bip->bip_iter.bi_sector = seed;
|
2024-06-26 10:06:52 +00:00
|
|
|
bip->bip_vcnt = nr_vecs;
|
2023-11-30 21:53:06 +00:00
|
|
|
return 0;
|
|
|
|
free_bip:
|
|
|
|
bio_integrity_free(bio);
|
|
|
|
free_buf:
|
|
|
|
kfree(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int bio_integrity_init_user(struct bio *bio, struct bio_vec *bvec,
|
|
|
|
int nr_vecs, unsigned int len, u32 seed)
|
|
|
|
{
|
|
|
|
struct bio_integrity_payload *bip;
|
|
|
|
|
|
|
|
bip = bio_integrity_alloc(bio, GFP_KERNEL, nr_vecs);
|
|
|
|
if (IS_ERR(bip))
|
|
|
|
return PTR_ERR(bip);
|
|
|
|
|
|
|
|
memcpy(bip->bip_vec, bvec, nr_vecs * sizeof(*bvec));
|
|
|
|
bip->bip_iter.bi_sector = seed;
|
|
|
|
bip->bip_iter.bi_size = len;
|
2024-06-26 10:06:52 +00:00
|
|
|
bip->bip_vcnt = nr_vecs;
|
2023-11-30 21:53:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int bvec_from_pages(struct bio_vec *bvec, struct page **pages,
|
|
|
|
int nr_vecs, ssize_t bytes, ssize_t offset)
|
|
|
|
{
|
|
|
|
unsigned int nr_bvecs = 0;
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
for (i = 0; i < nr_vecs; i = j) {
|
|
|
|
size_t size = min_t(size_t, bytes, PAGE_SIZE - offset);
|
|
|
|
struct folio *folio = page_folio(pages[i]);
|
|
|
|
|
|
|
|
bytes -= size;
|
|
|
|
for (j = i + 1; j < nr_vecs; j++) {
|
|
|
|
size_t next = min_t(size_t, PAGE_SIZE, bytes);
|
|
|
|
|
|
|
|
if (page_folio(pages[j]) != folio ||
|
|
|
|
pages[j] != pages[j - 1] + 1)
|
|
|
|
break;
|
|
|
|
unpin_user_page(pages[j]);
|
|
|
|
size += next;
|
|
|
|
bytes -= next;
|
|
|
|
}
|
|
|
|
|
|
|
|
bvec_set_page(&bvec[nr_bvecs], pages[i], size, offset);
|
|
|
|
offset = 0;
|
|
|
|
nr_bvecs++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nr_bvecs;
|
|
|
|
}
|
|
|
|
|
|
|
|
int bio_integrity_map_user(struct bio *bio, void __user *ubuf, ssize_t bytes,
|
|
|
|
u32 seed)
|
|
|
|
{
|
|
|
|
struct request_queue *q = bdev_get_queue(bio->bi_bdev);
|
2024-06-26 14:26:29 +00:00
|
|
|
unsigned int align = blk_lim_dma_alignment_and_pad(&q->limits);
|
2023-11-30 21:53:06 +00:00
|
|
|
struct page *stack_pages[UIO_FASTIOV], **pages = stack_pages;
|
|
|
|
struct bio_vec stack_vec[UIO_FASTIOV], *bvec = stack_vec;
|
|
|
|
unsigned int direction, nr_bvecs;
|
|
|
|
struct iov_iter iter;
|
|
|
|
int ret, nr_vecs;
|
|
|
|
size_t offset;
|
|
|
|
bool copy;
|
|
|
|
|
|
|
|
if (bio_integrity(bio))
|
|
|
|
return -EINVAL;
|
|
|
|
if (bytes >> SECTOR_SHIFT > queue_max_hw_sectors(q))
|
|
|
|
return -E2BIG;
|
|
|
|
|
|
|
|
if (bio_data_dir(bio) == READ)
|
|
|
|
direction = ITER_DEST;
|
|
|
|
else
|
|
|
|
direction = ITER_SOURCE;
|
|
|
|
|
|
|
|
iov_iter_ubuf(&iter, direction, ubuf, bytes);
|
|
|
|
nr_vecs = iov_iter_npages(&iter, BIO_MAX_VECS + 1);
|
|
|
|
if (nr_vecs > BIO_MAX_VECS)
|
|
|
|
return -E2BIG;
|
|
|
|
if (nr_vecs > UIO_FASTIOV) {
|
2024-01-16 14:34:31 +00:00
|
|
|
bvec = kcalloc(nr_vecs, sizeof(*bvec), GFP_KERNEL);
|
2023-11-30 21:53:06 +00:00
|
|
|
if (!bvec)
|
|
|
|
return -ENOMEM;
|
|
|
|
pages = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
copy = !iov_iter_is_aligned(&iter, align, align);
|
|
|
|
ret = iov_iter_extract_pages(&iter, &pages, bytes, nr_vecs, 0, &offset);
|
|
|
|
if (unlikely(ret < 0))
|
|
|
|
goto free_bvec;
|
|
|
|
|
|
|
|
nr_bvecs = bvec_from_pages(bvec, pages, nr_vecs, bytes, offset);
|
|
|
|
if (pages != stack_pages)
|
|
|
|
kvfree(pages);
|
|
|
|
if (nr_bvecs > queue_max_integrity_segments(q))
|
|
|
|
copy = true;
|
|
|
|
|
|
|
|
if (copy)
|
|
|
|
ret = bio_integrity_copy_user(bio, bvec, nr_bvecs, bytes,
|
|
|
|
direction, seed);
|
|
|
|
else
|
|
|
|
ret = bio_integrity_init_user(bio, bvec, nr_bvecs, bytes, seed);
|
|
|
|
if (ret)
|
|
|
|
goto release_pages;
|
|
|
|
if (bvec != stack_vec)
|
|
|
|
kfree(bvec);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
release_pages:
|
|
|
|
bio_integrity_unpin_bvec(bvec, nr_bvecs, false);
|
|
|
|
free_bvec:
|
|
|
|
if (bvec != stack_vec)
|
|
|
|
kfree(bvec);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(bio_integrity_map_user);
|
|
|
|
|
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);
|
2024-06-26 04:59:35 +00:00
|
|
|
unsigned int len;
|
2008-06-30 18:04:41 +00:00
|
|
|
void *buf;
|
2024-06-13 08:48:11 +00:00
|
|
|
gfp_t gfp = GFP_NOIO;
|
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_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;
|
|
|
|
|
2024-06-26 04:59:37 +00:00
|
|
|
switch (bio_op(bio)) {
|
|
|
|
case REQ_OP_READ:
|
2024-06-13 08:48:21 +00:00
|
|
|
if (bi->flags & BLK_INTEGRITY_NOVERIFY)
|
2017-06-29 18:31:11 +00:00
|
|
|
return true;
|
2024-06-26 04:59:37 +00:00
|
|
|
break;
|
|
|
|
case REQ_OP_WRITE:
|
2024-06-13 08:48:21 +00:00
|
|
|
if (bi->flags & BLK_INTEGRITY_NOGENERATE)
|
2017-06-29 18:31:11 +00:00
|
|
|
return true;
|
2024-06-13 08:48:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Zero the memory allocated to not leak uninitialized kernel
|
2024-06-26 04:59:34 +00:00
|
|
|
* memory to disk for non-integrity metadata where nothing else
|
|
|
|
* initializes the memory.
|
2024-06-13 08:48:11 +00:00
|
|
|
*/
|
2024-06-26 04:59:34 +00:00
|
|
|
if (bi->csum_type == BLK_INTEGRITY_CSUM_NONE)
|
|
|
|
gfp |= __GFP_ZERO;
|
2024-06-26 04:59:37 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return true;
|
2017-06-29 18:31:11 +00:00
|
|
|
}
|
2008-06-30 18:04:41 +00:00
|
|
|
|
|
|
|
/* Allocate kernel buffer for protection data */
|
2023-07-19 12:16:08 +00:00
|
|
|
len = bio_integrity_bytes(bi, bio_sectors(bio));
|
2024-06-13 08:48:11 +00:00
|
|
|
buf = kmalloc(len, gfp);
|
2008-06-30 18:04:41 +00:00
|
|
|
if (unlikely(buf == NULL)) {
|
2017-06-29 18:31:11 +00:00
|
|
|
goto err_end_io;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
2024-06-26 04:59:35 +00:00
|
|
|
bip = bio_integrity_alloc(bio, GFP_NOIO, 1);
|
2015-12-09 10:21:23 +00:00
|
|
|
if (IS_ERR(bip)) {
|
2008-06-30 18:04:41 +00:00
|
|
|
kfree(buf);
|
2017-06-29 18:31:11 +00:00
|
|
|
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;
|
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
|
|
|
|
2024-06-13 08:48:15 +00:00
|
|
|
if (bi->csum_type == BLK_INTEGRITY_CSUM_IP)
|
2014-09-26 23:20:05 +00:00
|
|
|
bip->bip_flags |= BIP_IP_CHECKSUM;
|
|
|
|
|
2024-06-26 04:59:35 +00:00
|
|
|
if (bio_integrity_add_page(bio, virt_to_page(buf), len,
|
|
|
|
offset_in_page(buf)) < len) {
|
|
|
|
printk(KERN_ERR "could not attach integrity payload\n");
|
|
|
|
goto err_end_io;
|
2008-06-30 18:04:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Auto-generate integrity metadata if this is a write */
|
2024-06-13 08:48:15 +00:00
|
|
|
if (bio_data_dir(bio) == WRITE)
|
2024-06-26 04:59:38 +00:00
|
|
|
blk_integrity_generate(bio);
|
2024-06-13 08:48:15 +00:00
|
|
|
else
|
2018-09-05 21:45:54 +00:00
|
|
|
bip->bio_iter = bio->bi_iter;
|
2017-06-29 18:31:11 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
err_end_io:
|
2023-07-25 05:18:39 +00:00
|
|
|
bio->bi_status = BLK_STS_RESOURCE;
|
2017-06-29 18:31:11 +00:00
|
|
|
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;
|
2017-06-29 18:31:15 +00:00
|
|
|
|
2024-06-26 04:59:38 +00:00
|
|
|
blk_integrity_verify(bio);
|
2024-07-02 15:10:23 +00:00
|
|
|
|
|
|
|
kfree(bvec_virt(bip->bip_vec));
|
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
|
|
|
|
2024-07-02 15:10:23 +00:00
|
|
|
if (bio_op(bio) == REQ_OP_READ && !bio->bi_status && bi->csum_type) {
|
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
|
|
|
}
|
|
|
|
|
2024-07-02 15:10:23 +00:00
|
|
|
kfree(bvec_virt(bip->bip_vec));
|
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);
|
|
|
|
|
2024-07-02 10:07:53 +00:00
|
|
|
bip = bio_integrity_alloc(bio, gfp_mask, 0);
|
2015-12-09 10:21:23 +00:00
|
|
|
if (IS_ERR(bip))
|
|
|
|
return PTR_ERR(bip);
|
2008-06-30 18:04:41 +00:00
|
|
|
|
2024-07-02 10:07:53 +00:00
|
|
|
bip->bip_vec = bip_src->bip_vec;
|
2013-11-24 01:20:16 +00:00
|
|
|
bip->bip_iter = bip_src->bip_iter;
|
2023-02-15 17:18:01 +00:00
|
|
|
bip->bip_flags = bip_src->bip_flags & ~BIP_BLOCK_INTEGRITY;
|
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
|
|
|
}
|