* [PATCH rdma-next] RDMA/irdma: Prevent user-triggered null deref on QP create
@ 2026-06-17 16:40 Jacob Moroni
2026-06-17 19:59 ` David Hu
0 siblings, 1 reply; 2+ messages in thread
From: Jacob Moroni @ 2026-06-17 16:40 UTC (permalink / raw)
To: tatyana.e.nikolova, jgg, leon; +Cc: linux-rdma, Jacob Moroni
Previously, the user QP creation path would only attempt to
populate iwqp->iwpbl if the user-provided req.user_wqe_bufs
field was non-zero. The problem is that iwqp->iwpbl is
unconditionally dereferenced later on in irdma_setup_virt_qp.
While there was a check for iwqp->iwpbl != NULL, this check
would only occur if req.user_wqe_bufs was non-zero. The end
result is that a user could send a zero user_wqe_bufs value
and trigger a null ptr deref.
Fix this by unconditionally calling irdma_get_pbl and bailing
if it fails, similar to the CQ and SRQ paths.
Fixes: b48c24c2d710 ("RDMA/irdma: Implement device supported verb APIs")
Signed-off-by: Jacob Moroni <jmoroni@google.com>
---
drivers/infiniband/hw/irdma/verbs.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/drivers/infiniband/hw/irdma/verbs.c b/drivers/infiniband/hw/irdma/verbs.c
index 4c0ea7c9b9..4124e4d732 100644
--- a/drivers/infiniband/hw/irdma/verbs.c
+++ b/drivers/infiniband/hw/irdma/verbs.c
@@ -638,17 +638,16 @@ static int irdma_setup_umode_qp(struct ib_udata *udata,
iwqp->ctx_info.qp_compl_ctx = req.user_compl_ctx;
iwqp->user_mode = 1;
- if (req.user_wqe_bufs) {
- spin_lock_irqsave(&ucontext->qp_reg_mem_list_lock, flags);
- iwqp->iwpbl = irdma_get_pbl((unsigned long)req.user_wqe_bufs,
- &ucontext->qp_reg_mem_list);
- spin_unlock_irqrestore(&ucontext->qp_reg_mem_list_lock, flags);
-
- if (!iwqp->iwpbl) {
- ret = -ENODATA;
- ibdev_dbg(&iwdev->ibdev, "VERBS: no pbl info\n");
- return ret;
- }
+
+ spin_lock_irqsave(&ucontext->qp_reg_mem_list_lock, flags);
+ iwqp->iwpbl = irdma_get_pbl((unsigned long)req.user_wqe_bufs,
+ &ucontext->qp_reg_mem_list);
+ spin_unlock_irqrestore(&ucontext->qp_reg_mem_list_lock, flags);
+
+ if (!iwqp->iwpbl) {
+ ret = -ENODATA;
+ ibdev_dbg(&iwdev->ibdev, "VERBS: no pbl info\n");
+ return ret;
}
if (!ucontext->use_raw_attrs) {
--
2.54.0.1189.g8c84645362-goog
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH rdma-next] RDMA/irdma: Prevent user-triggered null deref on QP create
2026-06-17 16:40 [PATCH rdma-next] RDMA/irdma: Prevent user-triggered null deref on QP create Jacob Moroni
@ 2026-06-17 19:59 ` David Hu
0 siblings, 0 replies; 2+ messages in thread
From: David Hu @ 2026-06-17 19:59 UTC (permalink / raw)
To: Jacob Moroni; +Cc: tatyana.e.nikolova, jgg, leon, linux-rdma
On Wed, Jun 17, 2026 at 12:40 PM Jacob Moroni <jmoroni@google.com> wrote:
> diff --git a/drivers/infiniband/hw/irdma/verbs.c b/drivers/infiniband/hw/irdma/verbs.c
> index 4c0ea7c9b9..4124e4d732 100644
> --- a/drivers/infiniband/hw/irdma/verbs.c
> +++ b/drivers/infiniband/hw/irdma/verbs.c
> @@ -638,17 +638,16 @@ static int irdma_setup_umode_qp(struct ib_udata *udata,
>
> iwqp->ctx_info.qp_compl_ctx = req.user_compl_ctx;
> iwqp->user_mode = 1;
> - if (req.user_wqe_bufs) {
> - spin_lock_irqsave(&ucontext->qp_reg_mem_list_lock, flags);
> - iwqp->iwpbl = irdma_get_pbl((unsigned long)req.user_wqe_bufs,
> - &ucontext->qp_reg_mem_list);
> - spin_unlock_irqrestore(&ucontext->qp_reg_mem_list_lock, flags);
> -
> - if (!iwqp->iwpbl) {
> - ret = -ENODATA;
> - ibdev_dbg(&iwdev->ibdev, "VERBS: no pbl info\n");
> - return ret;
> - }
> +
> + spin_lock_irqsave(&ucontext->qp_reg_mem_list_lock, flags);
> + iwqp->iwpbl = irdma_get_pbl((unsigned long)req.user_wqe_bufs,
> + &ucontext->qp_reg_mem_list);
> + spin_unlock_irqrestore(&ucontext->qp_reg_mem_list_lock, flags);
> +
> + if (!iwqp->iwpbl) {
> + ret = -ENODATA;
> + ibdev_dbg(&iwdev->ibdev, "VERBS: no pbl info\n");
> + return ret;
Unconditional pbl lookup and bailing out early appears to be a clean
fix without any leak. Taking the spinlock unconditionally in the slow
path to validate input also appears appropriate. Guarding the check
within `irdma_setup_virt_qp()` might be an alternative, but enforcing
that a QP has a proper pbl upfront makes sense.
0x00000 does not appear to be a practical address in the real world.
If it were, the original code would break anyway.
Nit: -EINVAL might be an alternative return for an invalid address.
Reviewed-by: David Hu <xuehaohu@google.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-06-17 19:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-17 16:40 [PATCH rdma-next] RDMA/irdma: Prevent user-triggered null deref on QP create Jacob Moroni
2026-06-17 19:59 ` David Hu
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.