All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode
@ 2025-06-30  8:35 Pranav Tyagi
  2025-07-01  1:15 ` Sasha Levin
  2025-07-12 13:46 ` Greg KH
  0 siblings, 2 replies; 4+ messages in thread
From: Pranav Tyagi @ 2025-06-30  8:35 UTC (permalink / raw)
  To: ocfs2-devel, linux-kernel
  Cc: mark, jlbec, joseph.qi, pvmohammedanees2003, akpm, gregkh, sashal,
	skhan, stable, linux-kernel-mentees, syzbot+e0055ea09f1f5e6fabdd,
	Junxiao Bi, Changwei Ge, Gang He, Jun Piao, Pranav Tyagi

From: Mohammed Anees <pvmohammedanees2003@gmail.com>

[ Upstream commit 7bf1823e010e8db2fb649c790bd1b449a75f52d8 ]

syzbot has found a possible deadlock in ocfs2_get_system_file_inode [1].

The scenario is depicted here,

	CPU0					CPU1
lock(&ocfs2_file_ip_alloc_sem_key);
                               lock(&osb->system_file_mutex);
                               lock(&ocfs2_file_ip_alloc_sem_key);
lock(&osb->system_file_mutex);

The function calls which could lead to this are:

CPU0
ocfs2_mknod - lock(&ocfs2_file_ip_alloc_sem_key);
.
.
.
ocfs2_get_system_file_inode - lock(&osb->system_file_mutex);

CPU1 -
ocfs2_fill_super - lock(&osb->system_file_mutex);
.
.
.
ocfs2_read_virt_blocks - lock(&ocfs2_file_ip_alloc_sem_key);

This issue can be resolved by making the down_read -> down_read_try
in the ocfs2_read_virt_blocks.

[1] https://syzkaller.appspot.com/bug?extid=e0055ea09f1f5e6fabdd

[ Backport to 5.15: context cleanly applied with no semantic changes.
Build-tested. ]

Link: https://lkml.kernel.org/r/20240924093257.7181-1-pvmohammedanees2003@gmail.com
Signed-off-by: Mohammed Anees <pvmohammedanees2003@gmail.com>
Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
Reported-by: <syzbot+e0055ea09f1f5e6fabdd@syzkaller.appspotmail.com>
Closes: https://syzkaller.appspot.com/bug?extid=e0055ea09f1f5e6fabdd
Tested-by: syzbot+e0055ea09f1f5e6fabdd@syzkaller.appspotmail.com
Cc: Mark Fasheh <mark@fasheh.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Changwei Ge <gechangwei@live.cn>
Cc: Gang He <ghe@suse.com>
Cc: Jun Piao <piaojun@huawei.com>
Cc:  <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
---
 fs/ocfs2/extent_map.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/fs/ocfs2/extent_map.c b/fs/ocfs2/extent_map.c
index 70a768b623cf..f7672472fa82 100644
--- a/fs/ocfs2/extent_map.c
+++ b/fs/ocfs2/extent_map.c
@@ -973,7 +973,13 @@ int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr,
 	}
 
 	while (done < nr) {
-		down_read(&OCFS2_I(inode)->ip_alloc_sem);
+		if (!down_read_trylock(&OCFS2_I(inode)->ip_alloc_sem)) {
+			rc = -EAGAIN;
+			mlog(ML_ERROR,
+				 "Inode #%llu ip_alloc_sem is temporarily unavailable\n",
+				 (unsigned long long)OCFS2_I(inode)->ip_blkno);
+			break;
+		}
 		rc = ocfs2_extent_map_get_blocks(inode, v_block + done,
 						 &p_block, &p_count, NULL);
 		up_read(&OCFS2_I(inode)->ip_alloc_sem);
-- 
2.49.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode
  2025-06-30  8:35 [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode Pranav Tyagi
@ 2025-07-01  1:15 ` Sasha Levin
  2025-07-12 13:46 ` Greg KH
  1 sibling, 0 replies; 4+ messages in thread
From: Sasha Levin @ 2025-07-01  1:15 UTC (permalink / raw)
  To: stable; +Cc: Pranav Tyagi, Sasha Levin

[ Sasha's backport helper bot ]

Hi,

✅ All tests passed successfully. No issues detected.
No action required from the submitter.

The upstream commit SHA1 provided is correct: 7bf1823e010e8db2fb649c790bd1b449a75f52d8

WARNING: Author mismatch between patch and upstream commit:
Backport author: Pranav Tyagi<pranav.tyagi03@gmail.com>
Commit author: Mohammed Anees<pvmohammedanees2003@gmail.com>

Status in newer kernel trees:
6.15.y | Present (exact SHA1)
6.12.y | Present (exact SHA1)
6.6.y | Present (different SHA1: ec3e32de2d8a)
6.1.y | Not found

Note: The patch differs from the upstream commit:
---
1:  7bf1823e010e8 ! 1:  8b2350f85e550 ocfs2: fix deadlock in ocfs2_get_system_file_inode
    @@ Metadata
      ## Commit message ##
         ocfs2: fix deadlock in ocfs2_get_system_file_inode
     
    +    [ Upstream commit 7bf1823e010e8db2fb649c790bd1b449a75f52d8 ]
    +
         syzbot has found a possible deadlock in ocfs2_get_system_file_inode [1].
     
         The scenario is depicted here,
    @@ Commit message
     
         [1] https://syzkaller.appspot.com/bug?extid=e0055ea09f1f5e6fabdd
     
    +    [ Backport to 5.15: context cleanly applied with no semantic changes.
    +    Build-tested. ]
    +
         Link: https://lkml.kernel.org/r/20240924093257.7181-1-pvmohammedanees2003@gmail.com
         Signed-off-by: Mohammed Anees <pvmohammedanees2003@gmail.com>
         Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
    @@ Commit message
         Cc: Jun Piao <piaojun@huawei.com>
         Cc:  <stable@vger.kernel.org>
         Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
    +    Signed-off-by: Pranav Tyagi <pranav.tyagi03@gmail.com>
     
      ## fs/ocfs2/extent_map.c ##
     @@ fs/ocfs2/extent_map.c: int ocfs2_read_virt_blocks(struct inode *inode, u64 v_block, int nr,
---

Results of testing on various branches:

| Branch                    | Patch Apply | Build Test |
|---------------------------|-------------|------------|
| stable/linux-5.15.y       |  Success    |  Success   |

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode
  2025-06-30  8:35 [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode Pranav Tyagi
  2025-07-01  1:15 ` Sasha Levin
@ 2025-07-12 13:46 ` Greg KH
  2025-07-12 17:11   ` Pranav Tyagi
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2025-07-12 13:46 UTC (permalink / raw)
  To: Pranav Tyagi
  Cc: ocfs2-devel, linux-kernel, mark, jlbec, joseph.qi,
	pvmohammedanees2003, akpm, sashal, skhan, stable,
	linux-kernel-mentees, syzbot+e0055ea09f1f5e6fabdd, Junxiao Bi,
	Changwei Ge, Gang He, Jun Piao

On Mon, Jun 30, 2025 at 02:05:42PM +0530, Pranav Tyagi wrote:
> From: Mohammed Anees <pvmohammedanees2003@gmail.com>
> 
> [ Upstream commit 7bf1823e010e8db2fb649c790bd1b449a75f52d8 ]
> 
> syzbot has found a possible deadlock in ocfs2_get_system_file_inode [1].
> 
> The scenario is depicted here,
> 
> 	CPU0					CPU1
> lock(&ocfs2_file_ip_alloc_sem_key);
>                                lock(&osb->system_file_mutex);
>                                lock(&ocfs2_file_ip_alloc_sem_key);
> lock(&osb->system_file_mutex);
> 
> The function calls which could lead to this are:
> 
> CPU0
> ocfs2_mknod - lock(&ocfs2_file_ip_alloc_sem_key);
> .
> .
> .
> ocfs2_get_system_file_inode - lock(&osb->system_file_mutex);
> 
> CPU1 -
> ocfs2_fill_super - lock(&osb->system_file_mutex);
> .
> .
> .
> ocfs2_read_virt_blocks - lock(&ocfs2_file_ip_alloc_sem_key);
> 
> This issue can be resolved by making the down_read -> down_read_try
> in the ocfs2_read_virt_blocks.
> 
> [1] https://syzkaller.appspot.com/bug?extid=e0055ea09f1f5e6fabdd
> 
> [ Backport to 5.15: context cleanly applied with no semantic changes.
> Build-tested. ]

We can't take a 5.15.y version, without it being in 6.1.y first, sorry
:(


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode
  2025-07-12 13:46 ` Greg KH
@ 2025-07-12 17:11   ` Pranav Tyagi
  0 siblings, 0 replies; 4+ messages in thread
From: Pranav Tyagi @ 2025-07-12 17:11 UTC (permalink / raw)
  To: Greg KH
  Cc: ocfs2-devel, linux-kernel, mark, jlbec, joseph.qi,
	pvmohammedanees2003, akpm, sashal, skhan, stable,
	linux-kernel-mentees, syzbot+e0055ea09f1f5e6fabdd, Junxiao Bi,
	Changwei Ge, Gang He, Jun Piao

On Sat, Jul 12, 2025 at 7:16 PM Greg KH <gregkh@linuxfoundation.org> wrote:
>
> On Mon, Jun 30, 2025 at 02:05:42PM +0530, Pranav Tyagi wrote:
> > From: Mohammed Anees <pvmohammedanees2003@gmail.com>
> >
> > [ Upstream commit 7bf1823e010e8db2fb649c790bd1b449a75f52d8 ]
> >
> > syzbot has found a possible deadlock in ocfs2_get_system_file_inode [1].
> >
> > The scenario is depicted here,
> >
> >       CPU0                                    CPU1
> > lock(&ocfs2_file_ip_alloc_sem_key);
> >                                lock(&osb->system_file_mutex);
> >                                lock(&ocfs2_file_ip_alloc_sem_key);
> > lock(&osb->system_file_mutex);
> >
> > The function calls which could lead to this are:
> >
> > CPU0
> > ocfs2_mknod - lock(&ocfs2_file_ip_alloc_sem_key);
> > .
> > .
> > .
> > ocfs2_get_system_file_inode - lock(&osb->system_file_mutex);
> >
> > CPU1 -
> > ocfs2_fill_super - lock(&osb->system_file_mutex);
> > .
> > .
> > .
> > ocfs2_read_virt_blocks - lock(&ocfs2_file_ip_alloc_sem_key);
> >
> > This issue can be resolved by making the down_read -> down_read_try
> > in the ocfs2_read_virt_blocks.
> >
> > [1] https://syzkaller.appspot.com/bug?extid=e0055ea09f1f5e6fabdd
> >
> > [ Backport to 5.15: context cleanly applied with no semantic changes.
> > Build-tested. ]
>
> We can't take a 5.15.y version, without it being in 6.1.y first, sorry
> :(
>

Hi,

Thanks for pointing that out. I wasn’t aware of the 6.1.y prerequisite
for 5.15.y backports. Learned something new today. I’ll make sure to get
it into 6.1.y first.

Regards
Pranav Tyagi

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-07-12 17:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30  8:35 [PATCH 5.15.y] ocfs2: fix deadlock in ocfs2_get_system_file_inode Pranav Tyagi
2025-07-01  1:15 ` Sasha Levin
2025-07-12 13:46 ` Greg KH
2025-07-12 17:11   ` Pranav Tyagi

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.