]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
block: fix argument type of bio_trim()
authorChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Wed, 21 Jul 2021 12:43:32 +0000 (21:43 +0900)
committerDavid Sterba <dsterba@suse.com>
Mon, 23 Aug 2021 11:19:08 +0000 (13:19 +0200)
The function bio_trim has offset and size arguments that are declared
as int.

The callers of this function use sector_t type when passing the offset
and size, e.g. drivers/md/raid1.c:narrow_write_error() and
drivers/md/raid1.c:narrow_write_error().

Change offset and size arguments to sector_t type for bio_trim(). Also,
add WARN_ON_ONCE() to catch their overflow.

Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
block/bio.c
include/linux/bio.h
include/linux/blk_types.h

index 1fab762e079be5ab0c1e41d67701209c8ddf3af9..77cadcba93b9ff965355dd08b7585c0b7fc787f1 100644 (file)
@@ -1463,12 +1463,15 @@ EXPORT_SYMBOL(bio_split);
  * @bio:       bio to trim
  * @offset:    number of sectors to trim from the front of @bio
  * @size:      size we want to trim @bio to, in sectors
+ *
+ * This function is typically used for bios that are cloned and submitted
+ * to the underlying device in parts.
  */
-void bio_trim(struct bio *bio, int offset, int size)
+void bio_trim(struct bio *bio, sector_t offset, sector_t size)
 {
-       /* 'bio' is a cloned bio which we need to trim to match
-        * the given offset and size.
-        */
+       if (WARN_ON_ONCE(offset > BIO_MAX_SECTORS || size > BIO_MAX_SECTORS ||
+                        offset + size > bio->bi_iter.bi_size))
+               return;
 
        size <<= 9;
        if (offset == 0 && size == bio->bi_iter.bi_size)
@@ -1479,7 +1482,6 @@ void bio_trim(struct bio *bio, int offset, int size)
 
        if (bio_integrity(bio))
                bio_integrity_trim(bio);
-
 }
 EXPORT_SYMBOL_GPL(bio_trim);
 
index 2203b686e1f03432fc36ca7873cafed81be29da6..8a451d77b57348c2a22fe69a95eb005f1661993c 100644 (file)
@@ -375,7 +375,7 @@ static inline void bip_set_seed(struct bio_integrity_payload *bip,
 
 #endif /* CONFIG_BLK_DEV_INTEGRITY */
 
-extern void bio_trim(struct bio *bio, int offset, int size);
+void bio_trim(struct bio *bio, sector_t offset, sector_t size);
 extern struct bio *bio_split(struct bio *bio, int sectors,
                             gfp_t gfp, struct bio_set *bs);
 
index 290f9061b29ac8d62febda52f3f7c69f9fed6372..bca4d33876d45d805d8b1295b669436854358752 100644 (file)
@@ -281,6 +281,7 @@ struct bio {
 };
 
 #define BIO_RESET_BYTES                offsetof(struct bio, bi_max_vecs)
+#define BIO_MAX_SECTORS                (UINT_MAX >> SECTOR_SHIFT)
 
 /*
  * bio flags