]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
RDMA/irdma: Fix double free related to rereg_user_mr
authorJacob Moroni <jmoroni@google.com>
Fri, 27 Feb 2026 15:27:43 +0000 (15:27 +0000)
committerLeon Romanovsky <leon@kernel.org>
Wed, 4 Mar 2026 07:44:01 +0000 (02:44 -0500)
If IB_MR_REREG_TRANS is set during rereg_user_mr, the
umem will be released and a new one will be allocated
in irdma_rereg_mr_trans. If any step of irdma_rereg_mr_trans
fails after the new umem is allocated, it releases the umem,
but does not set iwmr->region to NULL. The problem is that
this failure is propagated to the user, who will then call
ibv_dereg_mr (as they should). Then, the dereg_mr path will
see a non-NULL umem and attempt to call ib_umem_release again.

Fix this by setting iwmr->region to NULL after ib_umem_release.

Fixed: 5ac388db27c4 ("RDMA/irdma: Add support to re-register a memory region")
Signed-off-by: Jacob Moroni <jmoroni@google.com>
Link: https://patch.msgid.link/20260227152743.1183388-1-jmoroni@google.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
drivers/infiniband/hw/irdma/verbs.c

index 7251cd7a21471e80e821210341f118257d3370ed..a20d25585993ad5ba4af450f07d8896e44478c39 100644 (file)
@@ -3723,6 +3723,7 @@ static int irdma_rereg_mr_trans(struct irdma_mr *iwmr, u64 start, u64 len,
 
 err:
        ib_umem_release(region);
+       iwmr->region = NULL;
        return err;
 }