All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] blk-iocost: Fix shift-out-of-bounds in iocg_kick_delay()
@ 2024-04-10 19:36 Breno Leitao
  2024-04-10 19:53 ` Tejun Heo
  0 siblings, 1 reply; 3+ messages in thread
From: Breno Leitao @ 2024-04-10 19:36 UTC (permalink / raw)
  To: Tejun Heo, Josef Bacik, Jens Axboe
  Cc: leit, open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO),
	open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO), open list

When running iocg_kick_delay(), iocg->delay_at could be way behind "now",
which causes a huge tdelta difference.

The tdelta value is used to shift some bits around, raising the
following UBSAN splat:

	UBSAN: shift-out-of-bounds in block/blk-iocost.c:1366:23

Debugging this, these are some values I got in my machine with 6.9-rc3.

 now = 3626064295
 iocg->delay_at = 3275794093

Fix this by validating that the shift if valid, otherwise bail out,
similarly to commit 2a427b49d029 ("blk-iocost: Fix an UBSAN
shift-out-of-bounds warning")

Signed-off-by: Breno Leitao <leitao@debian.org>
---
 block/blk-iocost.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/block/blk-iocost.c b/block/blk-iocost.c
index 9a85bfbbc45a..398fe19db4ca 100644
--- a/block/blk-iocost.c
+++ b/block/blk-iocost.c
@@ -1347,7 +1347,7 @@ static bool iocg_kick_delay(struct ioc_gq *iocg, struct ioc_now *now)
 {
 	struct ioc *ioc = iocg->ioc;
 	struct blkcg_gq *blkg = iocg_to_blkg(iocg);
-	u64 tdelta, delay, new_delay;
+	u64 tdelta, delay, new_delay, shift;
 	s64 vover, vover_pct;
 	u32 hwa;
 
@@ -1362,8 +1362,13 @@ static bool iocg_kick_delay(struct ioc_gq *iocg, struct ioc_now *now)
 
 	/* calculate the current delay in effect - 1/2 every second */
 	tdelta = now->now - iocg->delay_at;
+
+	shift = div64_u64(tdelta, USEC_PER_SEC);
+	if (shift >= BITS_PER_LONG)
+		return false;
+
 	if (iocg->delay)
-		delay = iocg->delay >> div64_u64(tdelta, USEC_PER_SEC);
+		delay = iocg->delay >> shift;
 	else
 		delay = 0;
 
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] blk-iocost: Fix shift-out-of-bounds in iocg_kick_delay()
  2024-04-10 19:36 [PATCH] blk-iocost: Fix shift-out-of-bounds in iocg_kick_delay() Breno Leitao
@ 2024-04-10 19:53 ` Tejun Heo
  2024-04-11 13:33   ` Breno Leitao
  0 siblings, 1 reply; 3+ messages in thread
From: Tejun Heo @ 2024-04-10 19:53 UTC (permalink / raw)
  To: Breno Leitao
  Cc: Josef Bacik, Jens Axboe, leit,
	open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO),
	open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO), open list

Hello, Breno.

On Wed, Apr 10, 2024 at 12:36:41PM -0700, Breno Leitao wrote:
> When running iocg_kick_delay(), iocg->delay_at could be way behind "now",
> which causes a huge tdelta difference.
> 
> The tdelta value is used to shift some bits around, raising the
> following UBSAN splat:
> 
> 	UBSAN: shift-out-of-bounds in block/blk-iocost.c:1366:23
> 
> Debugging this, these are some values I got in my machine with 6.9-rc3.
> 
>  now = 3626064295
>  iocg->delay_at = 3275794093
> 
> Fix this by validating that the shift if valid, otherwise bail out,
> similarly to commit 2a427b49d029 ("blk-iocost: Fix an UBSAN
> shift-out-of-bounds warning")

Rik alreaady sent a fix:

  http://lkml.kernel.org/r/20240404123253.0f58010f@imladris.surriel.com

which got commited as beaa51b36012fad5a4d3c18b88a617aea7a9b96d.

Thanks.

-- 
tejun

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] blk-iocost: Fix shift-out-of-bounds in iocg_kick_delay()
  2024-04-10 19:53 ` Tejun Heo
@ 2024-04-11 13:33   ` Breno Leitao
  0 siblings, 0 replies; 3+ messages in thread
From: Breno Leitao @ 2024-04-11 13:33 UTC (permalink / raw)
  To: Tejun Heo
  Cc: Josef Bacik, Jens Axboe, leit,
	open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO),
	open list:CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO), open list

On Wed, Apr 10, 2024 at 09:53:52AM -1000, Tejun Heo wrote:
> Hello, Breno.
> 
> On Wed, Apr 10, 2024 at 12:36:41PM -0700, Breno Leitao wrote:
> > When running iocg_kick_delay(), iocg->delay_at could be way behind "now",
> > which causes a huge tdelta difference.
> > 
> > The tdelta value is used to shift some bits around, raising the
> > following UBSAN splat:
> > 
> > 	UBSAN: shift-out-of-bounds in block/blk-iocost.c:1366:23
> > 
> > Debugging this, these are some values I got in my machine with 6.9-rc3.
> > 
> >  now = 3626064295
> >  iocg->delay_at = 3275794093
> > 
> > Fix this by validating that the shift if valid, otherwise bail out,
> > similarly to commit 2a427b49d029 ("blk-iocost: Fix an UBSAN
> > shift-out-of-bounds warning")
> 
> Rik alreaady sent a fix:
> 
>   http://lkml.kernel.org/r/20240404123253.0f58010f@imladris.surriel.com
> 
> which got commited as beaa51b36012fad5a4d3c18b88a617aea7a9b96d.

Even easier then. Thanks!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-11 13:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-10 19:36 [PATCH] blk-iocost: Fix shift-out-of-bounds in iocg_kick_delay() Breno Leitao
2024-04-10 19:53 ` Tejun Heo
2024-04-11 13:33   ` Breno Leitao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.