From nobody Sat Apr 4 03:19:48 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 23C6238BF6C; Fri, 20 Mar 2026 22:40:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774046418; cv=none; b=DC6ZkBjK8Yl9U5+fkJI9uf0NjVgzfRB8sWzh8zGl43rhDCHNYGbAey6QCjQcuuvJhn0ShaOJ9o5rlDFxkqMUKBWLSw/nWlAbIkEtRI9Ad6NsuNOaO8wKXApfbarhE+7bRoGHj2N1pfJ/NhEyXnnqDVYkXb9Z24htQbgFe1QCAps= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774046418; c=relaxed/simple; bh=L0GQ2G+rRvGPAFrt5sDMa8oj/FKKHLhal+DfkgK7NEA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Q4UD/HTt4TIh7KhDU2iUKNkDDK6SOvZHowHZIhcBkyM1BamNT+V5RaMiRJyXxoXgaL+jkOUTNd3BB0Pui5NiyraFWiF8r4WahdAxUNrV1fk7X3/CQJKOAQ+uuW2R/HvXvx8RRqfZltl3ixS5mcNOtKS0iiJGtp0UPsJh1cYLoDE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bFVvmSaq; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bFVvmSaq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 32A85C2BC9E; Fri, 20 Mar 2026 22:40:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774046417; bh=L0GQ2G+rRvGPAFrt5sDMa8oj/FKKHLhal+DfkgK7NEA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bFVvmSaqDqJLoDlg+6noI1Wxcf1pqHJkBZjp3o48gNpg4DH44rSaBGPbLYz/qYZkM Nd8QwUFV1MaXSsj8jMMIjACmWtdO9Y/w9/2x+JJoanOvv9XyP9qFBdKZZkxb1A4iHC tkLQhKpN3alMVayVyEb9I/udX19c+sGN7XDtcaIOMLn6nekaglVJYw11nFmLwGrBc4 hsCpEv1VvOJUhXrUrciA2il+pJ/sMHTGafOaYgDrjovh6SCT8n/MXsfdX3tgBGQOS2 ldB6CM957Gunm1xRN2e3elhZJR5PM4eGqJVCx4WeRxsCBdQ44ZurTnPnt2jh0taBlN sszGTQBOqqiOA== From: "Lorenzo Stoakes (Oracle)" To: Andrew Morton Cc: Jonathan Corbet , Clemens Ladisch , Arnd Bergmann , Greg Kroah-Hartman , "K . Y . Srinivasan" , Haiyang Zhang , Wei Liu , Dexuan Cui , Long Li , Alexander Shishkin , Maxime Coquelin , Alexandre Torgue , Miquel Raynal , Richard Weinberger , Vignesh Raghavendra , Bodo Stroesser , "Martin K . Petersen" , David Howells , Marc Dionne , Alexander Viro , Christian Brauner , Jan Kara , David Hildenbrand , "Liam R . Howlett" , Vlastimil Babka , Mike Rapoport , Suren Baghdasaryan , Michal Hocko , Jann Horn , Pedro Falcato , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-hyperv@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com, linux-arm-kernel@lists.infradead.org, linux-mtd@lists.infradead.org, linux-staging@lists.linux.dev, linux-scsi@vger.kernel.org, target-devel@vger.kernel.org, linux-afs@lists.infradead.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, Ryan Roberts Subject: [PATCH v4 04/21] mm: avoid deadlock when holding rmap on mmap_prepare error Date: Fri, 20 Mar 2026 22:39:30 +0000 Message-ID: X-Mailer: git-send-email 2.53.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Commit ac0a3fc9c07d ("mm: add ability to take further action in vm_area_desc") added the ability for drivers to instruct mm to take actions after the .mmap_prepare callback is complete. To make life simpler and safer, this is done before the VMA/mmap write lock is dropped but when the VMA is completely established. So on error, we simply munmap() the VMA. As part of this implementation, unfortunately a horrible hack had to be implemented to support some questionable behaviour hugetlb relies upon - that is that the file rmap lock is held until the operation is complete. The implementation, for convenience, did this in mmap_action_finish() so both the VMA and mmap_prepare compatibility layer paths would have this correctly handled. However, it turns out there is a mistake here - the rmap lock cannot be held on munmap, as free_pgtables() -> unlink_file_vma_batch_add() -> unlink_file_vma_batch_process() takes the file rmap lock. We therefore currently have a deadlock issue that might arise. Resolve this by leaving it to callers to handle the unmap. The compatibility layer does not support this rmap behaviour, so we simply have it unmap on error after calling mmap_action_complete(). In the VMA implementation, we only perform the unmap after the rmap lock is dropped. This resolves the issue by ensuring the rmap lock is always dropped when the unmap occurs. Fixes: ac0a3fc9c07d ("mm: add ability to take further action in vm_area_des= c") Cc: Signed-off-by: Lorenzo Stoakes (Oracle) Acked-by: Vlastimil Babka (SUSE) --- mm/util.c | 12 +++++++----- mm/vma.c | 13 ++++++++++--- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/mm/util.c b/mm/util.c index 73c97a748d8e..a2cfa0d77c35 100644 --- a/mm/util.c +++ b/mm/util.c @@ -1215,7 +1215,13 @@ int compat_vma_mmap(struct file *file, struct vm_are= a_struct *vma) return err; =20 set_vma_from_desc(vma, &desc); - return mmap_action_complete(vma, &desc.action); + err =3D mmap_action_complete(vma, &desc.action); + if (err) { + const size_t len =3D vma_pages(vma) << PAGE_SHIFT; + + do_munmap(current->mm, vma->vm_start, len, NULL); + } + return err; } EXPORT_SYMBOL(compat_vma_mmap); =20 @@ -1316,10 +1322,6 @@ static int mmap_action_finish(struct vm_area_struct = *vma, * invoked if we do NOT merge, so we only clean up the VMA we created. */ if (err) { - const size_t len =3D vma_pages(vma) << PAGE_SHIFT; - - do_munmap(current->mm, vma->vm_start, len, NULL); - if (action->error_hook) { /* We may want to filter the error. */ err =3D action->error_hook(err); diff --git a/mm/vma.c b/mm/vma.c index ee91f2b76acf..3fc5fe4f1a7c 100644 --- a/mm/vma.c +++ b/mm/vma.c @@ -2736,9 +2736,9 @@ static int call_action_complete(struct mmap_state *ma= p, struct mmap_action *action, struct vm_area_struct *vma) { - int ret; + int err; =20 - ret =3D mmap_action_complete(vma, action); + err =3D mmap_action_complete(vma, action); =20 /* If we held the file rmap we need to release it. */ if (map->hold_file_rmap_lock) { @@ -2746,7 +2746,14 @@ static int call_action_complete(struct mmap_state *m= ap, =20 i_mmap_unlock_write(file->f_mapping); } - return ret; + + if (err) { + const size_t len =3D vma_pages(vma) << PAGE_SHIFT; + + do_munmap(current->mm, vma->vm_start, len, NULL); + } + + return err; } =20 static unsigned long __mmap_region(struct file *file, unsigned long addr, --=20 2.53.0