* [PATCH v2] bus: mhi: host: Detect events pointing to unexpected TREs
@ 2025-07-14 16:30 Youssef Samir
2025-07-16 5:42 ` Manivannan Sadhasivam
0 siblings, 1 reply; 2+ messages in thread
From: Youssef Samir @ 2025-07-14 16:30 UTC (permalink / raw)
To: mani, jeff.hugo, quic_carlv, quic_thanson
Cc: mhi, linux-arm-msm, youssef.abdulrahman
When a remote device sends a completion event to the host, it contains a
pointer to the consumed TRE. The host uses this pointer to process all of
the TREs between it and the host's local copy of the ring's read pointer.
This works when processing completion for chained transactions, but can
lead to nasty results if the device sends an event for a single-element
transaction with a read pointer that is multiple elements ahead of the
host's read pointer.
For instance, if the host accesses an event ring while the device is
updating it, the pointer inside of the event might still point to an old
TRE. If the host uses the channel's xfer_cb() to directly free the buffer
pointed to by the TRE, the buffer will be double-freed.
This behavior was observed on an ep that used drivers/bus/mhi/ep/ without
'commit 6f18d174b73d ("bus: mhi: ep: Update read pointer only after buffer is written")'.
Where the device updated the events ring pointer before updating the event
contents, so it left a window where the host was able to access the stale
data the event pointed to, before the device had the chance to update them.
The usual pattern was that the host received an event pointing to a TRE
that is not immediately after the last processed one, so it got treated as
if it was a chained transaction, processing all of the TREs in between the
two read pointers.
This patch aims to harden the host by ensuring transactions where the event
points to a TRE that isn't local_rp + 1 are chained.
Fixes: 1d3173a3bae7 ("bus: mhi: core: Add support for processing events from client device")
Signed-off-by: Youssef Samir <quic_yabdulra@quicinc.com>
---
Changes in v2:
- Update the commit message
- Link to v1: https://lore.kernel.org/mhi/20250521163110.571893-1-quic_yabdulra@quicinc.com/
---
drivers/bus/mhi/host/main.c | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/drivers/bus/mhi/host/main.c b/drivers/bus/mhi/host/main.c
index aa8a0ef697c7..57dc9c5c0d84 100644
--- a/drivers/bus/mhi/host/main.c
+++ b/drivers/bus/mhi/host/main.c
@@ -602,7 +602,7 @@ static int parse_xfer_event(struct mhi_controller *mhi_cntrl,
{
dma_addr_t ptr = MHI_TRE_GET_EV_PTR(event);
struct mhi_ring_element *local_rp, *ev_tre;
- void *dev_rp;
+ void *dev_rp, *next_rp;
struct mhi_buf_info *buf_info;
u16 xfer_len;
@@ -621,6 +621,16 @@ static int parse_xfer_event(struct mhi_controller *mhi_cntrl,
result.dir = mhi_chan->dir;
local_rp = tre_ring->rp;
+
+ next_rp = local_rp + 1;
+ if (next_rp >= tre_ring->base + tre_ring->len)
+ next_rp = tre_ring->base;
+ if (dev_rp != next_rp && !MHI_TRE_DATA_GET_CHAIN(local_rp)) {
+ dev_err(&mhi_cntrl->mhi_dev->dev,
+ "Event element points to an unexpected tre\n");
+ break;
+ }
+
while (local_rp != dev_rp) {
buf_info = buf_ring->rp;
/* If it's the last TRE, get length from the event */
--
2.25.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] bus: mhi: host: Detect events pointing to unexpected TREs
2025-07-14 16:30 [PATCH v2] bus: mhi: host: Detect events pointing to unexpected TREs Youssef Samir
@ 2025-07-16 5:42 ` Manivannan Sadhasivam
0 siblings, 0 replies; 2+ messages in thread
From: Manivannan Sadhasivam @ 2025-07-16 5:42 UTC (permalink / raw)
To: mani, jeff.hugo, quic_carlv, quic_thanson, Youssef Samir
Cc: mhi, linux-arm-msm, youssef.abdulrahman
On Mon, 14 Jul 2025 18:30:39 +0200, Youssef Samir wrote:
> When a remote device sends a completion event to the host, it contains a
> pointer to the consumed TRE. The host uses this pointer to process all of
> the TREs between it and the host's local copy of the ring's read pointer.
> This works when processing completion for chained transactions, but can
> lead to nasty results if the device sends an event for a single-element
> transaction with a read pointer that is multiple elements ahead of the
> host's read pointer.
>
> [...]
Applied, thanks!
[1/1] bus: mhi: host: Detect events pointing to unexpected TREs
commit: 0bfe192d90fea2c1b523868a9c110d176a2be741
Best regards,
--
Manivannan Sadhasivam <manivannan.sadhasivam@oss.qualcomm.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-07-16 5:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-14 16:30 [PATCH v2] bus: mhi: host: Detect events pointing to unexpected TREs Youssef Samir
2025-07-16 5:42 ` Manivannan Sadhasivam
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).