* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 11:09 ` [PATCH v2] block: add check that partition length needs to be aligned with block size Min Li
@ 2023-06-27 4:19 ` Chaitanya Kulkarni
2023-06-27 4:39 ` Damien Le Moal
2023-06-27 4:59 ` Christoph Hellwig
2 siblings, 0 replies; 9+ messages in thread
From: Chaitanya Kulkarni @ 2023-06-27 4:19 UTC (permalink / raw)
To: Min Li, axboe@kernel.dk, willy@infradead.org, hch@lst.de,
dlemoal@kernel.org, gregkh@linuxfoundation.org
Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org
On 6/27/2023 4:09 AM, Min Li wrote:
> Before calling add partition or resize partition, there is no check
> on whether the length is aligned with the logical block size.
> If the logical block size of the disk is larger than 512 bytes,
> then the partition size maybe not the multiple of the logical block size,
> and when the last sector is read, bio_truncate() will adjust the bio size,
> resulting in an IO error if the size of the read command is smaller than
> the logical block size.If integrity data is supported, this will also
> result in a null pointer dereference when calling bio_integrity_free.
>
> Signed-off-by: Min Li <min15.li@samsung.com>
>
> ---
> Changes from v1:
>
> - Add a space after /* and before */.
> - Move length alignment check before the "start = p.start >> SECTOR_SHIFT"
> - Move check for p.start being aligned together with this length alignment check.
> ---
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
-ck
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 11:09 ` [PATCH v2] block: add check that partition length needs to be aligned with block size Min Li
2023-06-27 4:19 ` Chaitanya Kulkarni
@ 2023-06-27 4:39 ` Damien Le Moal
2023-06-27 4:59 ` Christoph Hellwig
2023-06-27 8:13 ` Pankaj Raghav
2023-06-27 4:59 ` Christoph Hellwig
2 siblings, 2 replies; 9+ messages in thread
From: Damien Le Moal @ 2023-06-27 4:39 UTC (permalink / raw)
To: Min Li, axboe, willy, hch, gregkh; +Cc: linux-block, linux-kernel
On 6/27/23 20:09, Min Li wrote:
> Before calling add partition or resize partition, there is no check
> on whether the length is aligned with the logical block size.
> If the logical block size of the disk is larger than 512 bytes,
> then the partition size maybe not the multiple of the logical block size,
> and when the last sector is read, bio_truncate() will adjust the bio size,
> resulting in an IO error if the size of the read command is smaller than
> the logical block size.If integrity data is supported, this will also
> result in a null pointer dereference when calling bio_integrity_free.
>
> Signed-off-by: Min Li <min15.li@samsung.com>
See Greg's comment: this likely need a "Fixes:" tag. And I think that the tag
is: fa9156ae597c ("block: refactor blkpg_ioctl"). But please double check.
>
> ---
> Changes from v1:
>
> - Add a space after /* and before */.
> - Move length alignment check before the "start = p.start >> SECTOR_SHIFT"
> - Move check for p.start being aligned together with this length alignment check.
> ---
> block/ioctl.c | 10 +++++++---
> 1 file changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/block/ioctl.c b/block/ioctl.c
> index 3be11941fb2d..c40b382dd58f 100644
> --- a/block/ioctl.c
> +++ b/block/ioctl.c
> @@ -33,14 +33,18 @@ static int blkpg_do_ioctl(struct block_device *bdev,
> if (op == BLKPG_DEL_PARTITION)
> return bdev_del_partition(disk, p.pno);
>
> + /* check if partition is aligned to blocksize */
> + if (p.start & (bdev_logical_block_size(bdev) - 1))
> + return -EINVAL;
> + /* check if length is aligned to blocksize */
> + if (p.length & (bdev_logical_block_size(bdev) - 1))
> + return -EINVAL;
long long blksz_mask = bdev_logical_block_size(bdev) - 1;
/* Check that the partition is aligned to the block size */
if ((p.start & blksz_mask) || (p.length & blksz_mask))
return -EINVAL;
would be cleaner and avoid the rather redundant comments.
> +
> start = p.start >> SECTOR_SHIFT;
> length = p.length >> SECTOR_SHIFT;
>
> switch (op) {
> case BLKPG_ADD_PARTITION:
> - /* check if partition is aligned to blocksize */
> - if (p.start & (bdev_logical_block_size(bdev) - 1))
> - return -EINVAL;
> return bdev_add_partition(disk, p.pno, start, length);
> case BLKPG_RESIZE_PARTITION:
> return bdev_resize_partition(disk, p.pno, start, length);
--
Damien Le Moal
Western Digital Research
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 4:39 ` Damien Le Moal
@ 2023-06-27 4:59 ` Christoph Hellwig
2023-06-27 6:18 ` Greg KH
2023-06-27 8:13 ` Pankaj Raghav
1 sibling, 1 reply; 9+ messages in thread
From: Christoph Hellwig @ 2023-06-27 4:59 UTC (permalink / raw)
To: Damien Le Moal
Cc: Min Li, axboe, willy, hch, gregkh, linux-block, linux-kernel
On Tue, Jun 27, 2023 at 01:39:26PM +0900, Damien Le Moal wrote:
> See Greg's comment: this likely need a "Fixes:" tag. And I think that the tag
> is: fa9156ae597c ("block: refactor blkpg_ioctl"). But please double check.
No, the lack of checks goes back all the way to when this code was
added long before git was a thing. So I don't think a Fixes tag makes
all that much sense here.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 11:09 ` [PATCH v2] block: add check that partition length needs to be aligned with block size Min Li
2023-06-27 4:19 ` Chaitanya Kulkarni
2023-06-27 4:39 ` Damien Le Moal
@ 2023-06-27 4:59 ` Christoph Hellwig
2 siblings, 0 replies; 9+ messages in thread
From: Christoph Hellwig @ 2023-06-27 4:59 UTC (permalink / raw)
To: Min Li; +Cc: axboe, willy, hch, dlemoal, gregkh, linux-block, linux-kernel
Looks good:
Reviewed-by: Christoph Hellwig <hch@lst.de>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 4:59 ` Christoph Hellwig
@ 2023-06-27 6:18 ` Greg KH
2023-06-27 6:21 ` Christoph Hellwig
0 siblings, 1 reply; 9+ messages in thread
From: Greg KH @ 2023-06-27 6:18 UTC (permalink / raw)
To: Christoph Hellwig
Cc: Damien Le Moal, Min Li, axboe, willy, linux-block, linux-kernel
On Tue, Jun 27, 2023 at 06:59:24AM +0200, Christoph Hellwig wrote:
> On Tue, Jun 27, 2023 at 01:39:26PM +0900, Damien Le Moal wrote:
> > See Greg's comment: this likely need a "Fixes:" tag. And I think that the tag
> > is: fa9156ae597c ("block: refactor blkpg_ioctl"). But please double check.
>
> No, the lack of checks goes back all the way to when this code was
> added long before git was a thing. So I don't think a Fixes tag makes
> all that much sense here.
Ok, then how about a normal "cc: stable@kernel.org" added to the s-o-b
area so it gets picked up for all stable trees as this is an issue that
has always been there?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 6:18 ` Greg KH
@ 2023-06-27 6:21 ` Christoph Hellwig
0 siblings, 0 replies; 9+ messages in thread
From: Christoph Hellwig @ 2023-06-27 6:21 UTC (permalink / raw)
To: Greg KH
Cc: Christoph Hellwig, Damien Le Moal, Min Li, axboe, willy,
linux-block, linux-kernel
On Tue, Jun 27, 2023 at 08:18:32AM +0200, Greg KH wrote:
> > No, the lack of checks goes back all the way to when this code was
> > added long before git was a thing. So I don't think a Fixes tag makes
> > all that much sense here.
>
> Ok, then how about a normal "cc: stable@kernel.org" added to the s-o-b
> area so it gets picked up for all stable trees as this is an issue that
> has always been there?
Yes, that sounds sensible.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 4:39 ` Damien Le Moal
2023-06-27 4:59 ` Christoph Hellwig
@ 2023-06-27 8:13 ` Pankaj Raghav
2023-06-27 17:53 ` Matthew Wilcox
1 sibling, 1 reply; 9+ messages in thread
From: Pankaj Raghav @ 2023-06-27 8:13 UTC (permalink / raw)
To: Damien Le Moal
Cc: Min Li, axboe, willy, hch, gregkh, linux-block, linux-kernel
On Tue, Jun 27, 2023 at 01:39:26PM +0900, Damien Le Moal wrote:
> > diff --git a/block/ioctl.c b/block/ioctl.c
> > index 3be11941fb2d..c40b382dd58f 100644
> > --- a/block/ioctl.c
> > +++ b/block/ioctl.c
> > @@ -33,14 +33,18 @@ static int blkpg_do_ioctl(struct block_device *bdev,
> > if (op == BLKPG_DEL_PARTITION)
> > return bdev_del_partition(disk, p.pno);
> >
> > + /* check if partition is aligned to blocksize */
> > + if (p.start & (bdev_logical_block_size(bdev) - 1))
> > + return -EINVAL;
> > + /* check if length is aligned to blocksize */
> > + if (p.length & (bdev_logical_block_size(bdev) - 1))
> > + return -EINVAL;
>
> long long blksz_mask = bdev_logical_block_size(bdev) - 1;
>
> /* Check that the partition is aligned to the block size */
> if ((p.start & blksz_mask) || (p.length & blksz_mask))
> return -EINVAL;
A Minor nit on top of your comment:
unsigned int blksz = bdev_logical_block_size(bdev);
/* Check that the partition is aligned to the block size */
if (!IS_ALIGNED(p.start, blksz) || !IS_ALIGNED(p.length, blksz))
return -EINVAL;
>
> would be cleaner and avoid the rather redundant comments.
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2] block: add check that partition length needs to be aligned with block size
[not found] <CGME20230627031105epcas5p3010432ebd447ad865c3ddd986b3ffee0@epcas5p3.samsung.com>
@ 2023-06-27 11:09 ` Min Li
2023-06-27 4:19 ` Chaitanya Kulkarni
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Min Li @ 2023-06-27 11:09 UTC (permalink / raw)
To: axboe, willy, hch, dlemoal, gregkh; +Cc: linux-block, linux-kernel, Min Li
Before calling add partition or resize partition, there is no check
on whether the length is aligned with the logical block size.
If the logical block size of the disk is larger than 512 bytes,
then the partition size maybe not the multiple of the logical block size,
and when the last sector is read, bio_truncate() will adjust the bio size,
resulting in an IO error if the size of the read command is smaller than
the logical block size.If integrity data is supported, this will also
result in a null pointer dereference when calling bio_integrity_free.
Signed-off-by: Min Li <min15.li@samsung.com>
---
Changes from v1:
- Add a space after /* and before */.
- Move length alignment check before the "start = p.start >> SECTOR_SHIFT"
- Move check for p.start being aligned together with this length alignment check.
---
block/ioctl.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/block/ioctl.c b/block/ioctl.c
index 3be11941fb2d..c40b382dd58f 100644
--- a/block/ioctl.c
+++ b/block/ioctl.c
@@ -33,14 +33,18 @@ static int blkpg_do_ioctl(struct block_device *bdev,
if (op == BLKPG_DEL_PARTITION)
return bdev_del_partition(disk, p.pno);
+ /* check if partition is aligned to blocksize */
+ if (p.start & (bdev_logical_block_size(bdev) - 1))
+ return -EINVAL;
+ /* check if length is aligned to blocksize */
+ if (p.length & (bdev_logical_block_size(bdev) - 1))
+ return -EINVAL;
+
start = p.start >> SECTOR_SHIFT;
length = p.length >> SECTOR_SHIFT;
switch (op) {
case BLKPG_ADD_PARTITION:
- /* check if partition is aligned to blocksize */
- if (p.start & (bdev_logical_block_size(bdev) - 1))
- return -EINVAL;
return bdev_add_partition(disk, p.pno, start, length);
case BLKPG_RESIZE_PARTITION:
return bdev_resize_partition(disk, p.pno, start, length);
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v2] block: add check that partition length needs to be aligned with block size
2023-06-27 8:13 ` Pankaj Raghav
@ 2023-06-27 17:53 ` Matthew Wilcox
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Wilcox @ 2023-06-27 17:53 UTC (permalink / raw)
To: Pankaj Raghav
Cc: Damien Le Moal, Min Li, axboe, hch, gregkh, linux-block,
linux-kernel
On Tue, Jun 27, 2023 at 10:13:39AM +0200, Pankaj Raghav wrote:
> On Tue, Jun 27, 2023 at 01:39:26PM +0900, Damien Le Moal wrote:
> > > diff --git a/block/ioctl.c b/block/ioctl.c
> > > index 3be11941fb2d..c40b382dd58f 100644
> > > --- a/block/ioctl.c
> > > +++ b/block/ioctl.c
> > > @@ -33,14 +33,18 @@ static int blkpg_do_ioctl(struct block_device *bdev,
> > > if (op == BLKPG_DEL_PARTITION)
> > > return bdev_del_partition(disk, p.pno);
> > >
> > > + /* check if partition is aligned to blocksize */
> > > + if (p.start & (bdev_logical_block_size(bdev) - 1))
> > > + return -EINVAL;
> > > + /* check if length is aligned to blocksize */
> > > + if (p.length & (bdev_logical_block_size(bdev) - 1))
> > > + return -EINVAL;
> >
> > long long blksz_mask = bdev_logical_block_size(bdev) - 1;
> >
> > /* Check that the partition is aligned to the block size */
> > if ((p.start & blksz_mask) || (p.length & blksz_mask))
> > return -EINVAL;
>
> A Minor nit on top of your comment:
>
> unsigned int blksz = bdev_logical_block_size(bdev);
>
> /* Check that the partition is aligned to the block size */
> if (!IS_ALIGNED(p.start, blksz) || !IS_ALIGNED(p.length, blksz))
> return -EINVAL;
or you can even do ...
if (!IS_ALIGNED(p.start | p.length), blksz)
Do I win the code golf trophy?
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-06-27 17:53 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <CGME20230627031105epcas5p3010432ebd447ad865c3ddd986b3ffee0@epcas5p3.samsung.com>
2023-06-27 11:09 ` [PATCH v2] block: add check that partition length needs to be aligned with block size Min Li
2023-06-27 4:19 ` Chaitanya Kulkarni
2023-06-27 4:39 ` Damien Le Moal
2023-06-27 4:59 ` Christoph Hellwig
2023-06-27 6:18 ` Greg KH
2023-06-27 6:21 ` Christoph Hellwig
2023-06-27 8:13 ` Pankaj Raghav
2023-06-27 17:53 ` Matthew Wilcox
2023-06-27 4:59 ` Christoph Hellwig
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox