Commit 37da51ef authored by Zhu Yanjun's avatar Zhu Yanjun Committed by Leon Romanovsky

RDMA/rxe: Fix BUG: KASAN: null-ptr-deref in rxe_qp_do_cleanup

The function rxe_create_qp calls rxe_qp_from_init. If some error
occurs, the error handler of function rxe_qp_from_init will set
both scq and rcq to NULL.

Then rxe_create_qp calls rxe_put to handle qp. In the end,
rxe_qp_do_cleanup is called by rxe_put. rxe_qp_do_cleanup directly
accesses scq and rcq before checking them. This will cause
null-ptr-deref error.

The call graph is as below:

rxe_create_qp {
  ...
  rxe_qp_from_init {
    ...
  err1:
    ...
    qp->rcq = NULL;  <---rcq is set to NULL
    qp->scq = NULL;  <---scq is set to NULL
    ...
  }

qp_init:
  rxe_put{
    ...
    rxe_qp_do_cleanup {
      ...
      atomic_dec(&qp->scq->num_wq); <--- scq is accessed
      ...
      atomic_dec(&qp->rcq->num_wq); <--- rcq is accessed
    }
}

Fixes: 4703b4f0 ("RDMA/rxe: Enforce IBA C11-17")
Link: https://lore.kernel.org/r/20220705225414.315478-1-yanjun.zhu@linux.devSigned-off-by: default avatarZhu Yanjun <yanjun.zhu@linux.dev>
Reviewed-by: default avatarBob Pearson <rpearsonhpe@gmail.com>
Reviewed-by: default avatarMd Haris Iqbal <haris.iqbal@ionos.com>
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
parent 3056fc6c
...@@ -802,13 +802,15 @@ static void rxe_qp_do_cleanup(struct work_struct *work) ...@@ -802,13 +802,15 @@ static void rxe_qp_do_cleanup(struct work_struct *work)
if (qp->rq.queue) if (qp->rq.queue)
rxe_queue_cleanup(qp->rq.queue); rxe_queue_cleanup(qp->rq.queue);
atomic_dec(&qp->scq->num_wq); if (qp->scq) {
if (qp->scq) atomic_dec(&qp->scq->num_wq);
rxe_put(qp->scq); rxe_put(qp->scq);
}
atomic_dec(&qp->rcq->num_wq); if (qp->rcq) {
if (qp->rcq) atomic_dec(&qp->rcq->num_wq);
rxe_put(qp->rcq); rxe_put(qp->rcq);
}
if (qp->pd) if (qp->pd)
rxe_put(qp->pd); rxe_put(qp->pd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment