From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@lst.de>
Cc: Jens Axboe <axboe@kernel.dk>,
Christian Brauner <brauner@kernel.org>,
Carlos Maiolino <cem@kernel.org>,
Tal Zussman <tz2294@columbia.edu>,
Anuj Gupta <anuj20.g@samsung.com>,
linux-block@vger.kernel.org, linux-xfs@vger.kernel.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 10/17] block,iomap: fix protection information verification with initial bvec offset
Date: Mon, 31 Aug 2026 10:52:22 -0700 [thread overview]
Message-ID: <20260831175222.GD1933798@frogsfrogsfrogs> (raw)
In-Reply-To: <20260831064010.2574896-11-hch@lst.de>
On Mon, Aug 31, 2026 at 09:39:58AM +0300, Christoph Hellwig wrote:
> When reconstructing a bvec_iter from an ioend for protection information
> verification, iomap currently ignores the offset into the initial
> bio_vec.
>
> This can't happen for buffered I/O an direct I/O to user addresses, but
"...buffered I/O or a direct I/O..." ?
> is exercised by split on O_DIRECT file descriptors or when using the loop
> driver.
>
> Fortunately the only file system PI user (XFS) currently always bounce
> buffers, so this can't actually be triggered yet. But we'll want to make
> the bounce buffering conditional soon, for which this needs to be fixed.
>
> Store the initial offset in struct iomap_ioend, and pass a
> pre-constructed bvec_iter to fs_bio_integrity_verify. For the
> synchronous read case the fix is even simpler as this path can
> simply stash away the original bvec_iter.
>
> Fixes: 0bde8a12b554 ("block: add fs_bio_integrity helpers")
> Signed-off-by: Christoph Hellwig <hch@lst.de>
With that fixed, this seems reasonable to me.
Reviewed-by: "Darrick J. Wong" <djwong@kernel.org>
--D
> ---
> block/bio-integrity-fs.c | 13 +++++--------
> fs/iomap/bio.c | 4 +++-
> fs/iomap/ioend.c | 14 ++++++++++----
> include/linux/bio-integrity.h | 3 +--
> include/linux/iomap.h | 8 ++++++++
> 5 files changed, 27 insertions(+), 15 deletions(-)
>
> diff --git a/block/bio-integrity-fs.c b/block/bio-integrity-fs.c
> index 4f67b34bf289..c8e91ada8ca6 100644
> --- a/block/bio-integrity-fs.c
> +++ b/block/bio-integrity-fs.c
> @@ -54,14 +54,10 @@ void fs_bio_integrity_generate(struct bio *bio)
> }
> EXPORT_SYMBOL_GPL(fs_bio_integrity_generate);
>
> -int fs_bio_integrity_verify(struct bio *bio, sector_t sector, unsigned int size)
> +int fs_bio_integrity_verify(struct bio *bio, struct bvec_iter *data_iter)
> {
> struct blk_integrity *bi = blk_get_integrity(bio->bi_bdev->bd_disk);
> struct bio_integrity_payload *bip = bio_integrity(bio);
> - struct bvec_iter data_iter = {
> - .bi_sector = sector,
> - .bi_size = size,
> - };
>
> if (!bip || !(bip->bip_flags & BIP_CHECK_FLAGS))
> return 0;
> @@ -73,9 +69,10 @@ int fs_bio_integrity_verify(struct bio *bio, sector_t sector, unsigned int size)
> * bio. Requires the submitter to remember the sector and the size.
> */
> memset(&bip->bip_iter, 0, sizeof(bip->bip_iter));
> - bip->bip_iter.bi_sector = sector;
> - bip->bip_iter.bi_size = bio_integrity_bytes(bi, size >> SECTOR_SHIFT);
> - return blk_status_to_errno(bio_integrity_verify(bio, &data_iter));
> + bip->bip_iter.bi_sector = data_iter->bi_sector;
> + bip->bip_iter.bi_size =
> + bio_integrity_bytes(bi, data_iter->bi_size >> SECTOR_SHIFT);
> + return blk_status_to_errno(bio_integrity_verify(bio, data_iter));
> }
>
> static int __init fs_bio_integrity_init(void)
> diff --git a/fs/iomap/bio.c b/fs/iomap/bio.c
> index 48100c614431..d46c2f8ea18c 100644
> --- a/fs/iomap/bio.c
> +++ b/fs/iomap/bio.c
> @@ -169,6 +169,7 @@ int iomap_bio_read_folio_range_sync(const struct iomap_iter *iter,
> {
> const struct iomap *srcmap = iomap_iter_srcmap(iter);
> sector_t sector = iomap_sector(srcmap, pos);
> + struct bvec_iter saved_iter;
> struct bio_vec bvec;
> struct bio bio;
> int error;
> @@ -178,10 +179,11 @@ int iomap_bio_read_folio_range_sync(const struct iomap_iter *iter,
> bio_add_folio_nofail(&bio, folio, len, offset_in_folio(folio, pos));
> if (srcmap->flags & IOMAP_F_INTEGRITY)
> fs_bio_integrity_alloc(&bio);
> + saved_iter = bio.bi_iter;
> error = submit_bio_wait(&bio);
> if (bio_integrity(&bio)) {
> if (!error)
> - error = fs_bio_integrity_verify(&bio, sector, len);
> + error = fs_bio_integrity_verify(&bio, &saved_iter);
> fs_bio_integrity_free(&bio);
> }
> bio_uninit(&bio);
> diff --git a/fs/iomap/ioend.c b/fs/iomap/ioend.c
> index 573fa89c1632..332dbfb2230f 100644
> --- a/fs/iomap/ioend.c
> +++ b/fs/iomap/ioend.c
> @@ -25,6 +25,7 @@ struct iomap_ioend *iomap_init_ioend(struct inode *inode,
> ioend->io_parent = NULL;
> INIT_LIST_HEAD(&ioend->io_list);
> ioend->io_flags = ioend_flags;
> + ioend->io_bvec_offset = bio->bi_iter.bi_offset;
> ioend->io_inode = inode;
> ioend->io_offset = file_offset;
> ioend->io_size = bio->bi_iter.bi_size;
> @@ -308,6 +309,13 @@ ssize_t iomap_add_to_ioend(struct iomap_writepage_ctx *wpc, struct folio *folio,
> }
> EXPORT_SYMBOL_GPL(iomap_add_to_ioend);
>
> +static int iomap_ioend_integrity_verify(struct iomap_ioend *ioend)
> +{
> + struct bvec_iter data_iter = BVEC_ITER_IOEND(ioend);
> +
> + return fs_bio_integrity_verify(&ioend->io_bio, &data_iter);
> +}
> +
> static u32 iomap_finish_ioend(struct iomap_ioend *ioend, int error)
> {
> if (ioend->io_parent) {
> @@ -325,10 +333,8 @@ static u32 iomap_finish_ioend(struct iomap_ioend *ioend, int error)
>
> if (!ioend->io_error &&
> bio_integrity(&ioend->io_bio) &&
> - bio_op(&ioend->io_bio) == REQ_OP_READ) {
> - ioend->io_error = fs_bio_integrity_verify(&ioend->io_bio,
> - ioend->io_sector, ioend->io_size);
> - }
> + bio_op(&ioend->io_bio) == REQ_OP_READ)
> + ioend->io_error = iomap_ioend_integrity_verify(ioend);
>
> if (ioend->io_flags & IOMAP_IOEND_DIRECT)
> return iomap_finish_ioend_direct(ioend);
> diff --git a/include/linux/bio-integrity.h b/include/linux/bio-integrity.h
> index 0ea2a8bf7efb..a954c97be0b3 100644
> --- a/include/linux/bio-integrity.h
> +++ b/include/linux/bio-integrity.h
> @@ -151,7 +151,6 @@ void bio_integrity_setup_default(struct bio *bio);
> unsigned int fs_bio_integrity_alloc(struct bio *bio);
> void fs_bio_integrity_free(struct bio *bio);
> void fs_bio_integrity_generate(struct bio *bio);
> -int fs_bio_integrity_verify(struct bio *bio, sector_t sector,
> - unsigned int size);
> +int fs_bio_integrity_verify(struct bio *bio, struct bvec_iter *data_iter);
>
> #endif /* _LINUX_BIO_INTEGRITY_H */
> diff --git a/include/linux/iomap.h b/include/linux/iomap.h
> index 1cc9a35fd5cc..bffdc217ad85 100644
> --- a/include/linux/iomap.h
> +++ b/include/linux/iomap.h
> @@ -522,6 +522,7 @@ static inline u16 iomap_ioend_flags(const struct iomap *iomap)
> struct iomap_ioend {
> struct list_head io_list; /* next ioend in chain */
> u16 io_flags; /* IOMAP_IOEND_* */
> + u32 io_bvec_offset; /* offset into first bvec */
> struct inode *io_inode; /* file being written to */
> size_t io_size; /* size of the extent */
> atomic_t io_remaining; /* completetion defer count */
> @@ -539,6 +540,13 @@ static inline struct iomap_ioend *iomap_ioend_from_bio(struct bio *bio)
> return container_of(bio, struct iomap_ioend, io_bio);
> }
>
> +#define BVEC_ITER_IOEND(_ioend) \
> +{ \
> + .bi_sector = (_ioend)->io_sector, \
> + .bi_size = (_ioend)->io_size, \
> + .bi_offset = (_ioend)->io_bvec_offset, \
> +}
> +
> struct iomap_writeback_ops {
> /*
> * Performs writeback on the passed in range
> --
> 2.53.0
>
>
next prev parent reply other threads:[~2026-08-31 17:52 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-31 6:39 lazy bounce buffering for checksummed reads V2 Christoph Hellwig
2026-08-31 6:39 ` [PATCH 01/17] block: pass a maxlen argument to bio_iov_iter_get_pages Christoph Hellwig
2026-08-31 18:04 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 02/17] block: warn on too larger integrity allocations Christoph Hellwig
2026-08-31 18:01 ` Darrick J. Wong
2026-09-01 8:12 ` Christoph Hellwig
2026-08-31 6:39 ` [PATCH 03/17] block: split bio_iov_iter_bounce_write Christoph Hellwig
2026-08-31 17:58 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 04/17] block: export fs_bio_integrity_{alloc,free} Christoph Hellwig
2026-08-31 17:57 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 05/17] iomap: respect maximum I/O size in iomap_dio_bio_iter_one Christoph Hellwig
2026-08-31 17:55 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 06/17] iomap: add a iomap_ioend_flags helper Christoph Hellwig
2026-08-31 6:39 ` [PATCH 07/17] iomap: add a IOMAP_IOEND_INTEGRITY flag Christoph Hellwig
2026-08-31 6:39 ` [PATCH 08/17] iomap,xfs: move T10 PI handling for direct I/O into ->submit_io Christoph Hellwig
2026-08-31 6:39 ` [PATCH 09/17] xfs: move PI generation into xfs_submit_zoned_bio Christoph Hellwig
2026-08-31 17:53 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 10/17] block,iomap: fix protection information verification with initial bvec offset Christoph Hellwig
2026-08-31 17:52 ` Darrick J. Wong [this message]
2026-09-01 8:12 ` Christoph Hellwig
2026-09-01 14:06 ` Darrick J. Wong
2026-08-31 6:39 ` [PATCH 11/17] iomap: better read bounce buffering support Christoph Hellwig
2026-08-31 6:40 ` [PATCH 12/17] xfs: use BIO_COMPLETE_IN_TASK for bounce buffered read I/Os Christoph Hellwig
2026-08-31 6:40 ` [PATCH 13/17] iomap,xfs: move integrity verification to the file system Christoph Hellwig
2026-08-31 6:40 ` [PATCH 14/17] xfs: add support for lazy direct read bounce buffering Christoph Hellwig
2026-08-31 17:47 ` Darrick J. Wong
2026-09-02 18:24 ` Anuj Gupta
2026-08-31 6:40 ` [PATCH 15/17] xfs: add error injection for lazy " Christoph Hellwig
2026-09-02 18:26 ` Anuj Gupta
2026-08-31 6:40 ` [PATCH 16/17] xfs: log a message at mount time when using integrity protection Christoph Hellwig
2026-08-31 6:40 ` [PATCH 17/17] block,iomap: remove the old read side bounce buffering support Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260831175222.GD1933798@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=anuj20.g@samsung.com \
--cc=axboe@kernel.dk \
--cc=brauner@kernel.org \
--cc=cem@kernel.org \
--cc=hch@lst.de \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=tz2294@columbia.edu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox