The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] sched: fix potential use-after-free with cfs bandwidth
@ 2025-02-10 19:51 Josh Don
  2025-02-14  4:07 ` K Prateek Nayak
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Josh Don @ 2025-02-10 19:51 UTC (permalink / raw)
  To: Ingo Molnar, Peter Zijlstra, Juri Lelli, Vincent Guittot
  Cc: Dietmar Eggemann, Steven Rostedt, Ben Segall, Mel Gorman,
	Daniel Bristot de Oliveira, Valentin Schneider, linux-kernel,
	Josh Don

We remove the cfs_rq throttled_csd_list entry *before* doing the
unthrottle. The problem with that is that destroy_bandwidth() does a
lockless scan of the system for any non-empty CSD lists. As a result,
it is possible that destroy_bandwidth() returns while we still have a
cfs_rq from the task group about to be unthrottled.

For full correctness, we should avoid removal from the list until after
we're done unthrottling in __cfsb_csd_unthrottle().

For consistency, we make the same change to distribute_cfs_runtime(),
even though this should already be safe due to destroy_bandwidth()
cancelling the bandwidth hrtimers.

Signed-off-by: Josh Don <joshdon@google.com>
---
 kernel/sched/fair.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index 34fe6e9490c2..78f542ab03cf 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5917,10 +5917,10 @@ static void __cfsb_csd_unthrottle(void *arg)
 
 	list_for_each_entry_safe(cursor, tmp, &rq->cfsb_csd_list,
 				 throttled_csd_list) {
-		list_del_init(&cursor->throttled_csd_list);
-
 		if (cfs_rq_throttled(cursor))
 			unthrottle_cfs_rq(cursor);
+
+		list_del_init(&cursor->throttled_csd_list);
 	}
 
 	rcu_read_unlock();
@@ -6034,11 +6034,11 @@ static bool distribute_cfs_runtime(struct cfs_bandwidth *cfs_b)
 
 		rq_lock_irqsave(rq, &rf);
 
-		list_del_init(&cfs_rq->throttled_csd_list);
-
 		if (cfs_rq_throttled(cfs_rq))
 			unthrottle_cfs_rq(cfs_rq);
 
+		list_del_init(&cfs_rq->throttled_csd_list);
+
 		rq_unlock_irqrestore(rq, &rf);
 	}
 	SCHED_WARN_ON(!list_empty(&local_unthrottle));
-- 
2.48.1.502.g6dc24dfdaf-goog


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

* Re: [PATCH] sched: fix potential use-after-free with cfs bandwidth
  2025-02-10 19:51 [PATCH] sched: fix potential use-after-free with cfs bandwidth Josh Don
@ 2025-02-14  4:07 ` K Prateek Nayak
  2025-02-19  9:26 ` Chengming Zhou
  2025-02-19 20:10 ` Markus Elfring
  2 siblings, 0 replies; 5+ messages in thread
From: K Prateek Nayak @ 2025-02-14  4:07 UTC (permalink / raw)
  To: Josh Don, Ingo Molnar, Peter Zijlstra, Juri Lelli,
	Vincent Guittot
  Cc: Dietmar Eggemann, Steven Rostedt, Ben Segall, Mel Gorman,
	Daniel Bristot de Oliveira, Valentin Schneider, linux-kernel

Hello Josh,

On 2/11/2025 1:21 AM, Josh Don wrote:
> We remove the cfs_rq throttled_csd_list entry *before* doing the
> unthrottle. The problem with that is that destroy_bandwidth() does a
> lockless scan of the system for any non-empty CSD lists. As a result,
> it is possible that destroy_bandwidth() returns while we still have a
> cfs_rq from the task group about to be unthrottled.
> 
> For full correctness, we should avoid removal from the list until after
> we're done unthrottling in __cfsb_csd_unthrottle().
> 
> For consistency, we make the same change to distribute_cfs_runtime(),
> even though this should already be safe due to destroy_bandwidth()
> cancelling the bandwidth hrtimers.
> 
> Signed-off-by: Josh Don <joshdon@google.com>

Other than a small nit: s/destroy_bandwidth/destroy_cfs_bandwidth/g
please feel free to add:

Reviewed-and-tested-by: K Prateek Nayak <kprateek.nayak@amd.com>

-- 
Thanks and Regards,
Prateek

> ---
>   kernel/sched/fair.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 34fe6e9490c2..78f542ab03cf 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -5917,10 +5917,10 @@ static void __cfsb_csd_unthrottle(void *arg)
>   
>   	list_for_each_entry_safe(cursor, tmp, &rq->cfsb_csd_list,
>   				 throttled_csd_list) {
> -		list_del_init(&cursor->throttled_csd_list);
> -
>   		if (cfs_rq_throttled(cursor))
>   			unthrottle_cfs_rq(cursor);
> +
> +		list_del_init(&cursor->throttled_csd_list);
>   	}
>   
>   	rcu_read_unlock();
> @@ -6034,11 +6034,11 @@ static bool distribute_cfs_runtime(struct cfs_bandwidth *cfs_b)
>   
>   		rq_lock_irqsave(rq, &rf);
>   
> -		list_del_init(&cfs_rq->throttled_csd_list);
> -
>   		if (cfs_rq_throttled(cfs_rq))
>   			unthrottle_cfs_rq(cfs_rq);
>   
> +		list_del_init(&cfs_rq->throttled_csd_list);
> +
>   		rq_unlock_irqrestore(rq, &rf);
>   	}
>   	SCHED_WARN_ON(!list_empty(&local_unthrottle));

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

* Re: [PATCH] sched: fix potential use-after-free with cfs bandwidth
  2025-02-10 19:51 [PATCH] sched: fix potential use-after-free with cfs bandwidth Josh Don
  2025-02-14  4:07 ` K Prateek Nayak
@ 2025-02-19  9:26 ` Chengming Zhou
  2025-02-19 20:10 ` Markus Elfring
  2 siblings, 0 replies; 5+ messages in thread
From: Chengming Zhou @ 2025-02-19  9:26 UTC (permalink / raw)
  To: Josh Don, Ingo Molnar, Peter Zijlstra, Juri Lelli,
	Vincent Guittot
  Cc: Dietmar Eggemann, Steven Rostedt, Ben Segall, Mel Gorman,
	Daniel Bristot de Oliveira, Valentin Schneider, linux-kernel

On 2025/2/11 03:51, Josh Don wrote:
> We remove the cfs_rq throttled_csd_list entry *before* doing the
> unthrottle. The problem with that is that destroy_bandwidth() does a
> lockless scan of the system for any non-empty CSD lists. As a result,
> it is possible that destroy_bandwidth() returns while we still have a
> cfs_rq from the task group about to be unthrottled.
> 
> For full correctness, we should avoid removal from the list until after
> we're done unthrottling in __cfsb_csd_unthrottle().
> 
> For consistency, we make the same change to distribute_cfs_runtime(),
> even though this should already be safe due to destroy_bandwidth()
> cancelling the bandwidth hrtimers.
> 
> Signed-off-by: Josh Don <joshdon@google.com>

Good catch!

Reviewed-by: Chengming Zhou <chengming.zhou@linux.dev>

BTW, I just drew the cfs_rq UAF as below:

CPU0                            CPU1
__cfsb_csd_unthrottle()
     rq lock
     for each cfs_rq on list
         list_del_init from list
                                 unregister_fair_sched_group()
                                     destroy_cfs_bandwidth()
                                         if (list_empty(&rq->cfsb_csd_list))
                                             continue; // skip rq0
                                     if (cfs_rq->on_list) // maybe false
     	unthrottle_cfs_rq()
             add cfs_rq to list
     rq unlock
                                 cfs_rq freed after RCU grace period
cfs_rq UAF!

Thanks!

> ---
>   kernel/sched/fair.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index 34fe6e9490c2..78f542ab03cf 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -5917,10 +5917,10 @@ static void __cfsb_csd_unthrottle(void *arg)
>   
>   	list_for_each_entry_safe(cursor, tmp, &rq->cfsb_csd_list,
>   				 throttled_csd_list) {
> -		list_del_init(&cursor->throttled_csd_list);
> -
>   		if (cfs_rq_throttled(cursor))
>   			unthrottle_cfs_rq(cursor);
> +
> +		list_del_init(&cursor->throttled_csd_list);
>   	}
>   
>   	rcu_read_unlock();
> @@ -6034,11 +6034,11 @@ static bool distribute_cfs_runtime(struct cfs_bandwidth *cfs_b)
>   
>   		rq_lock_irqsave(rq, &rf);
>   
> -		list_del_init(&cfs_rq->throttled_csd_list);
> -
>   		if (cfs_rq_throttled(cfs_rq))
>   			unthrottle_cfs_rq(cfs_rq);
>   
> +		list_del_init(&cfs_rq->throttled_csd_list);
> +
>   		rq_unlock_irqrestore(rq, &rf);
>   	}
>   	SCHED_WARN_ON(!list_empty(&local_unthrottle));

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

* Re: [PATCH] sched: fix potential use-after-free with cfs bandwidth
  2025-02-10 19:51 [PATCH] sched: fix potential use-after-free with cfs bandwidth Josh Don
  2025-02-14  4:07 ` K Prateek Nayak
  2025-02-19  9:26 ` Chengming Zhou
@ 2025-02-19 20:10 ` Markus Elfring
  2025-02-21  1:17   ` Josh Don
  2 siblings, 1 reply; 5+ messages in thread
From: Markus Elfring @ 2025-02-19 20:10 UTC (permalink / raw)
  To: Josh Don, kernel-janitors, Ingo Molnar, Juri Lelli,
	Peter Zijlstra, Vincent Guittot
  Cc: LKML, Ben Segall, Chengming Zhou, Daniel Bristot de Oliveira,
	Dietmar Eggemann, K Prateek Nayak, Mel Gorman, Steven Rostedt,
	Valentin Schneider

…
> For full correctness, we should avoid removal from the list until after
> we're done unthrottling in __cfsb_csd_unthrottle().
…

How do you think about to add any tags (like “Fixes” and “Cc”) accordingly?
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.14-rc3#n145

Regards,
Markus

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

* Re: [PATCH] sched: fix potential use-after-free with cfs bandwidth
  2025-02-19 20:10 ` Markus Elfring
@ 2025-02-21  1:17   ` Josh Don
  0 siblings, 0 replies; 5+ messages in thread
From: Josh Don @ 2025-02-21  1:17 UTC (permalink / raw)
  To: Markus Elfring
  Cc: kernel-janitors, Ingo Molnar, Juri Lelli, Peter Zijlstra,
	Vincent Guittot, LKML, Ben Segall, Chengming Zhou,
	Daniel Bristot de Oliveira, Dietmar Eggemann, K Prateek Nayak,
	Mel Gorman, Steven Rostedt, Valentin Schneider

On Wed, Feb 19, 2025 at 12:11 PM Markus Elfring <Markus.Elfring@web.de> wrote:
>
> …
> > For full correctness, we should avoid removal from the list until after
> > we're done unthrottling in __cfsb_csd_unthrottle().
> …
>
> How do you think about to add any tags (like “Fixes” and “Cc”) accordingly?
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/process/submitting-patches.rst?h=v6.14-rc3#n145

Thanks, yea I'll resend with the fixes tag and with all the additional
review tags collected.

Best,
Josh

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

end of thread, other threads:[~2025-02-21  1:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-10 19:51 [PATCH] sched: fix potential use-after-free with cfs bandwidth Josh Don
2025-02-14  4:07 ` K Prateek Nayak
2025-02-19  9:26 ` Chengming Zhou
2025-02-19 20:10 ` Markus Elfring
2025-02-21  1:17   ` Josh Don

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox