All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] module: dups: don't hold mutex across synchronize_rcu()
@ 2026-06-02  4:17 Naveen Kumar Chaudhary
  2026-06-02  4:24 ` sashiko-bot
  2026-06-02  7:50 ` Petr Pavlu
  0 siblings, 2 replies; 3+ messages in thread
From: Naveen Kumar Chaudhary @ 2026-06-02  4:17 UTC (permalink / raw)
  To: mcgrof, petr.pavlu, da.gomez, samitolvanen, linux-modules

kmod_dup_request_delete() calls synchronize_rcu() while holding
kmod_dup_mutex. This is unnecessary since list_del_rcu() only needs
the mutex for list manipulation, and the RCU grace period just needs
to complete before kfree(). Holding the mutex across the grace period
blocks all other kmod_dup_mutex users for the duration, causing
unnecessary latency.

Move synchronize_rcu() after the mutex is released.

Signed-off-by: Naveen Kumar Chaudhary <naveen.osdev@gmail.com>
---
 kernel/module/dups.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/module/dups.c b/kernel/module/dups.c
index 1d720a5311ba..46e74c06ed52 100644
--- a/kernel/module/dups.c
+++ b/kernel/module/dups.c
@@ -88,8 +88,8 @@ static void kmod_dup_request_delete(struct work_struct *work)
 	 */
 	mutex_lock(&kmod_dup_mutex);
 	list_del_rcu(&kmod_req->list);
-	synchronize_rcu();
 	mutex_unlock(&kmod_dup_mutex);
+	synchronize_rcu();
 	kfree(kmod_req);
 }
 
-- 
2.43.0


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

* Re: [PATCH] module: dups: don't hold mutex across synchronize_rcu()
  2026-06-02  4:17 [PATCH] module: dups: don't hold mutex across synchronize_rcu() Naveen Kumar Chaudhary
@ 2026-06-02  4:24 ` sashiko-bot
  2026-06-02  7:50 ` Petr Pavlu
  1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-06-02  4:24 UTC (permalink / raw)
  To: Naveen Kumar Chaudhary; +Cc: linux-modules

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:

Pre-existing issues:
- [High] Use-After-Free due to missing reference counting on kmod_req.
--

commit 6715d39010e803da11ebd165eb2b1fa9278aa3d7
Author: Naveen Kumar Chaudhary <naveen.osdev@gmail.com>

module: dups: don't hold mutex across synchronize_rcu()

This commit optimizes kmod_dup_request_delete() by moving synchronize_rcu()
outside the kmod_dup_mutex critical section. This prevents blocking other
mutex users during the RCU grace period.

> diff --git a/kernel/module/dups.c b/kernel/module/dups.c
> index 1d720a5311ba0..46e74c06ed52d 100644
> --- a/kernel/module/dups.c
> +++ b/kernel/module/dups.c
> @@ -88,8 +88,8 @@ static void kmod_dup_request_delete(struct work_struct *work)
>  	 */
>  	mutex_lock(&kmod_dup_mutex);
>  	list_del_rcu(&kmod_req->list);
> -	synchronize_rcu();
>  	mutex_unlock(&kmod_dup_mutex);
> +	synchronize_rcu();
>  	kfree(kmod_req);

[Severity: High]
This is a pre-existing issue, but does this code leave kmod_req vulnerable
to a use-after-free since waiters don't hold a reference count?

In kmod_dup_request_exists_wait(), a duplicate requester drops kmod_dup_mutex
and blocks on wait_for_completion_state(&kmod_req->first_req_done). If the
original thread finishes loading and calls kmod_dup_request_complete(), it
queues this delete_work with an arbitrary 60-second delay.

If the waiter is preempted or otherwise delayed for more than 60 seconds
(either before blocking, or after waking up but before reading
kmod_req->dup_ret), kmod_dup_request_delete() will free kmod_req here.

The synchronize_rcu() call does not protect the waiter because the waiter
sleeps in wait_for_completion_state() and cannot hold an RCU read lock.
When the waiter resumes, it could attempt lock operations on the freed
completion structure's waitqueue lock, or read kmod_req->dup_ret, resulting
in a use-after-free.

Would it be safer to add explicit reference counting to kmod_req to ensure
it remains allocated until all waiters have resumed and finished reading?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/ajydyxgaea27rhcopp5eauji24znotu65d2b4uw344yvmwcc6f@7l5re6f2xcuk?part=1

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

* Re: [PATCH] module: dups: don't hold mutex across synchronize_rcu()
  2026-06-02  4:17 [PATCH] module: dups: don't hold mutex across synchronize_rcu() Naveen Kumar Chaudhary
  2026-06-02  4:24 ` sashiko-bot
@ 2026-06-02  7:50 ` Petr Pavlu
  1 sibling, 0 replies; 3+ messages in thread
From: Petr Pavlu @ 2026-06-02  7:50 UTC (permalink / raw)
  To: Naveen Kumar Chaudhary; +Cc: mcgrof, da.gomez, samitolvanen, linux-modules

On 6/2/26 6:17 AM, Naveen Kumar Chaudhary wrote:
> kmod_dup_request_delete() calls synchronize_rcu() while holding
> kmod_dup_mutex. This is unnecessary since list_del_rcu() only needs
> the mutex for list manipulation, and the RCU grace period just needs
> to complete before kfree(). Holding the mutex across the grace period
> blocks all other kmod_dup_mutex users for the duration, causing
> unnecessary latency.
> 
> Move synchronize_rcu() after the mutex is released.
> 
> Signed-off-by: Naveen Kumar Chaudhary <naveen.osdev@gmail.com>
> ---
>  kernel/module/dups.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/module/dups.c b/kernel/module/dups.c
> index 1d720a5311ba..46e74c06ed52 100644
> --- a/kernel/module/dups.c
> +++ b/kernel/module/dups.c
> @@ -88,8 +88,8 @@ static void kmod_dup_request_delete(struct work_struct *work)
>  	 */
>  	mutex_lock(&kmod_dup_mutex);
>  	list_del_rcu(&kmod_req->list);
> -	synchronize_rcu();
>  	mutex_unlock(&kmod_dup_mutex);
> +	synchronize_rcu();
>  	kfree(kmod_req);
>  }
>  

I think the way the module dups code works with kmod_dup_req entries is
generally off and should be properly reworked.

This synchronize_rcu() call doesn't actually synchronize with anything
because the code has no RCU read-side critical section. All lookups
performed by kmod_dup_request_lookup() are protected by kmod_dup_mutex.

On the other hand, I suspect that there is a use-after-free in
kmod_dup_request_exists_wait(), where the code releases kmod_dup_mutex
but continues using the obtained kmod_dup_req.

-- 
Thanks,
Petr

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

end of thread, other threads:[~2026-06-02  7:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-02  4:17 [PATCH] module: dups: don't hold mutex across synchronize_rcu() Naveen Kumar Chaudhary
2026-06-02  4:24 ` sashiko-bot
2026-06-02  7:50 ` Petr Pavlu

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.