From: Mika Westerberg <mika.westerberg@linux.intel.com>
To: Duoming Zhou <duoming@zju.edu.cn>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
YehezkelShB@gmail.com, westeri@kernel.org,
michael.jamet@intel.com, andreas.noever@gmail.com
Subject: Re: [PATCH v2] thunderbolt: Fix use-after-free in tb_dp_dprx_work
Date: Tue, 23 Sep 2025 17:31:05 +0200 [thread overview]
Message-ID: <20250923153105.GA2912318@black.igk.intel.com> (raw)
In-Reply-To: <20250923051357.12206-1-duoming@zju.edu.cn>
Hi,
On Tue, Sep 23, 2025 at 01:13:57PM +0800, Duoming Zhou wrote:
> The original code relies on cancel_delayed_work() in tb_dp_dprx_stop(),
> which does not ensure that the delayed work item tunnel->dprx_work has
> fully completed if it was already running. This leads to use-after-free
> scenarios where tb_tunnel is deallocated by tb_tunnel_put(), while
> tunnel->dprx_work remains active and attempts to dereference tb_tunnel
> in tb_dp_dprx_work().
>
> A typical race condition is illustrated below:
>
> CPU 0 | CPU 1
> tb_dp_tunnel_active() |
> tb_deactivate_and_free_tunnel()| tb_dp_dprx_start()
> tb_tunnel_deactivate() | queue_delayed_work()
> tb_dp_activate() |
> tb_dp_dprx_stop() | tb_dp_dprx_work() //delayed worker
> cancel_delayed_work() |
> tb_tunnel_put(tunnel); |
> | tunnel = container_of(...); //UAF
> | tunnel-> //UAF
>
> Replacing cancel_delayed_work() with cancel_delayed_work_sync() is
> not feasible as it would introduce a deadlock: both tb_dp_dprx_work()
> and the cleanup path acquire tb->lock, and cancel_delayed_work_sync()
> would wait indefinitely for the work item that cannot proceed.
>
> Instead, implement proper reference counting:
> - If cancel_delayed_work() returns true (work is pending), we release
> the reference in the stop function.
> - If it returns false (work is executing or already completed), the
> reference is released in delayed work function itself.
>
> This ensures the tb_tunnel remains valid during work item execution
> while preventing memory leaks.
>
> This bug was found by static analysis.
>
> Fixes: d6d458d42e1e ("thunderbolt: Handle DisplayPort tunnel activation asynchronously")
> Signed-off-by: Duoming Zhou <duoming@zju.edu.cn>
Because it is pretty late in the cycle, I would like to get some exposure
for this one before it goes to stable trees. I applied this to my
thunderbolt.git/next now. Once it is pulled into mainline this will be
picked up by the stable machinery too.
Thanks!
prev parent reply other threads:[~2025-09-23 15:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-23 5:13 [PATCH v2] thunderbolt: Fix use-after-free in tb_dp_dprx_work Duoming Zhou
2025-09-23 15:31 ` Mika Westerberg [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250923153105.GA2912318@black.igk.intel.com \
--to=mika.westerberg@linux.intel.com \
--cc=YehezkelShB@gmail.com \
--cc=andreas.noever@gmail.com \
--cc=duoming@zju.edu.cn \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=michael.jamet@intel.com \
--cc=westeri@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.