From: Stefano Stabellini <sstabellini@kernel.org>
To: Yifei Gao <gyf161023@gmail.com>
Cc: Eric Van Hensbergen <ericvh@kernel.org>,
Latchesar Ionkov <lucho@ionkov.net>,
Dominique Martinet <asmadeus@codewreck.org>,
v9fs@lists.linux.dev,
Christian Schoenebeck <linux_oss@crudebyte.com>,
Juergen Gross <jgross@suse.com>,
Boris Ostrovsky <boris.ostrovsky@oracle.com>,
Stefano Stabellini <sstabellini@kernel.org>,
xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] 9p/xen: fix refcount leak in p9_xen_response() on wrong tag
Date: Tue, 4 Aug 2026 17:06:53 -0700 (PDT) [thread overview]
Message-ID: <ebcebd30-68e2-1650-f0e6-b69e4239619c@kernel.org> (raw)
In-Reply-To: <20260804213550.3409638-1-gyf161023@gmail.com>
On Tue, 4 Aug 2026, Yifei Gao wrote:
> p9_xen_response() looks up the request for an incoming reply with
> p9_tag_lookup(), which takes a reference on the returned p9_req_t. When
> the tag does not resolve to a request in REQ_STATUS_SENT, the function
> warns and continues the loop without dropping that reference, permanently
> leaking the p9_req_t and its msize buffers. The reply header, including
> the tag, is supplied by the backend, so a malicious or buggy 9P backend
> can leak kernel memory on every crafted response.
Most backend are trusted, including this. So I would avoid "malicious".
> Drop the reference before continuing, mirroring the equivalent path in
> trans_fd.c.
It doesn't look like trans_fd.c behaves like this patch?
> Fixes: f66c72bea129 ("xen/9pfs: receive responses")
This should be 728356dedeff
Aside from the above, the code change looks correct
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
> Cc: stable@vger.kernel.org
> Assisted-by: Claude:claude-opus-4-8
> Signed-off-by: Yifei Gao <gyf161023@gmail.com>
> ---
> net/9p/trans_xen.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/net/9p/trans_xen.c b/net/9p/trans_xen.c
> index f9fb2db7a066..8eea0da8797f 100644
> --- a/net/9p/trans_xen.c
> +++ b/net/9p/trans_xen.c
> @@ -203,6 +203,8 @@ static void p9_xen_response(struct work_struct *work)
> req = p9_tag_lookup(priv->client, h.tag);
> if (!req || req->status != REQ_STATUS_SENT) {
> dev_warn(&priv->dev->dev, "Wrong req tag=%x\n", h.tag);
> + if (req)
> + p9_req_put(priv->client, req);
> cons += h.size;
> virt_mb();
> ring->intf->in_cons = cons;
> --
> 2.43.0
>
next prev parent reply other threads:[~2026-08-05 0:06 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-04 21:35 Yifei Gao
2026-08-05 0:06 ` Stefano Stabellini [this message]
2026-08-05 7:13 ` Jürgen Groß
2026-08-06 14:42 ` [PATCH v2] " Yifei Gao
2026-09-13 9:57 ` Dominique Martinet
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=ebcebd30-68e2-1650-f0e6-b69e4239619c@kernel.org \
--to=sstabellini@kernel.org \
--cc=asmadeus@codewreck.org \
--cc=boris.ostrovsky@oracle.com \
--cc=ericvh@kernel.org \
--cc=gyf161023@gmail.com \
--cc=jgross@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux_oss@crudebyte.com \
--cc=lucho@ionkov.net \
--cc=stable@vger.kernel.org \
--cc=v9fs@lists.linux.dev \
--cc=xen-devel@lists.xenproject.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®