From: kensanya@163.com
To: linux-rdma@vger.kernel.org, target-devel@vger.kernel.org
Cc: bvanassche@acm.org, jgg@ziepe.ca, leon@kernel.org
Subject: [QUESTION] RDMA/srpt: is target_send_busy() safe before target_init_cmd()?
Date: Fri, 17 Jul 2026 10:54:02 +0800 [thread overview]
Message-ID: <20260717025402.64054-1-kensanya@163.com> (raw)
Hi,
While working on an unrelated target/stat change, Sashiko flagged a
pre-existing issue in ib_srpt.c:
https://lore.kernel.org/all/20260709073426.5E7021F000E9@smtp.kernel.org/
I would like to confirm with RDMA/srpt maintainers whether this is a real
bug.
In srpt_handle_cmd():
rc = srpt_get_desc_tbl(...);
if (rc)
goto busy;
rc = target_init_cmd(...);
if (rc != 0)
goto busy;
...
busy:
target_send_busy(cmd);
srpt_get_send_ioctx() zero-initializes se_cmd with memset(). cmd->se_tfo
appears to be set only later in target_init_cmd() -> __target_init_cmd().
So if srpt_get_desc_tbl() fails, target_send_busy() may run with
cmd->se_tfo still NULL:
target_send_busy()
-> cmd->se_tfo->queue_status(cmd)
Also, target_send_busy() is documented as:
"Only call this function if target_submit_cmd*() failed."
That seems to cover the target_init_cmd() failure path, but not the
srpt_get_desc_tbl() failure path before init.
This goes back to:
8b8807b9e982 ("scsi: RDMA/srpt: Fix handling of command / TMF submission failure")
Questions:
1. Is calling target_send_busy() before target_init_cmd() intentional /
known-safe?
2. If not, should ib_srpt.c send a fabric-local SRP_RSP BUSY (or otherwise
free the send ioctx) when se_tfo is unset, and keep target_send_busy()
only for the post-init failure path?
I have not reproduced a crash on hardware yet; this is from code review of
the Sashiko report.
Thanks,
TanZheng
next reply other threads:[~2026-07-17 2:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-17 2:54 kensanya [this message]
2026-07-17 17:59 ` [QUESTION] RDMA/srpt: is target_send_busy() safe before target_init_cmd()? Bart Van Assche
2026-07-20 2:10 ` kensanya
2026-07-20 3:05 ` kensanya
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=20260717025402.64054-1-kensanya@163.com \
--to=kensanya@163.com \
--cc=bvanassche@acm.org \
--cc=jgg@ziepe.ca \
--cc=leon@kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=target-devel@vger.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox