Skip to content

Commit be4edd1

Browse files
chaseyubrauner
authored andcommitted
hfsplus: fix to avoid false alarm of circular locking
Syzbot report potential ABBA deadlock as below: loop0: detected capacity change from 0 to 1024 ====================================================== WARNING: possible circular locking dependency detected 6.9.0-syzkaller-10323-g8f6a15f095a6 #0 Not tainted ------------------------------------------------------ syz-executor171/5344 is trying to acquire lock: ffff88807cb980b0 (&tree->tree_lock){+.+.}-{3:3}, at: hfsplus_file_truncate+0x811/0xb50 fs/hfsplus/extents.c:595 but task is already holding lock: ffff88807a930108 (&HFSPLUS_I(inode)->extents_lock){+.+.}-{3:3}, at: hfsplus_file_truncate+0x2da/0xb50 fs/hfsplus/extents.c:576 which lock already depends on the new lock. the existing dependency chain (in reverse order) is: -> #1 (&HFSPLUS_I(inode)->extents_lock){+.+.}-{3:3}: lock_acquire+0x1ed/0x550 kernel/locking/lockdep.c:5754 __mutex_lock_common kernel/locking/mutex.c:608 [inline] __mutex_lock+0x136/0xd70 kernel/locking/mutex.c:752 hfsplus_file_extend+0x21b/0x1b70 fs/hfsplus/extents.c:457 hfsplus_bmap_reserve+0x105/0x4e0 fs/hfsplus/btree.c:358 hfsplus_rename_cat+0x1d0/0x1050 fs/hfsplus/catalog.c:456 hfsplus_rename+0x12e/0x1c0 fs/hfsplus/dir.c:552 vfs_rename+0xbdb/0xf00 fs/namei.c:4887 do_renameat2+0xd94/0x13f0 fs/namei.c:5044 __do_sys_rename fs/namei.c:5091 [inline] __se_sys_rename fs/namei.c:5089 [inline] __x64_sys_rename+0x86/0xa0 fs/namei.c:5089 do_syscall_x64 arch/x86/entry/common.c:52 [inline] do_syscall_64+0xf5/0x240 arch/x86/entry/common.c:83 entry_SYSCALL_64_after_hwframe+0x77/0x7f -> #0 (&tree->tree_lock){+.+.}-{3:3}: check_prev_add kernel/locking/lockdep.c:3134 [inline] check_prevs_add kernel/locking/lockdep.c:3253 [inline] validate_chain+0x18cb/0x58e0 kernel/locking/lockdep.c:3869 __lock_acquire+0x1346/0x1fd0 kernel/locking/lockdep.c:5137 lock_acquire+0x1ed/0x550 kernel/locking/lockdep.c:5754 __mutex_lock_common kernel/locking/mutex.c:608 [inline] __mutex_lock+0x136/0xd70 kernel/locking/mutex.c:752 hfsplus_file_truncate+0x811/0xb50 fs/hfsplus/extents.c:595 hfsplus_setattr+0x1ce/0x280 fs/hfsplus/inode.c:265 notify_change+0xb9d/0xe70 fs/attr.c:497 do_truncate+0x220/0x310 fs/open.c:65 handle_truncate fs/namei.c:3308 [inline] do_open fs/namei.c:3654 [inline] path_openat+0x2a3d/0x3280 fs/namei.c:3807 do_filp_open+0x235/0x490 fs/namei.c:3834 do_sys_openat2+0x13e/0x1d0 fs/open.c:1406 do_sys_open fs/open.c:1421 [inline] __do_sys_creat fs/open.c:1497 [inline] __se_sys_creat fs/open.c:1491 [inline] __x64_sys_creat+0x123/0x170 fs/open.c:1491 do_syscall_x64 arch/x86/entry/common.c:52 [inline] do_syscall_64+0xf5/0x240 arch/x86/entry/common.c:83 entry_SYSCALL_64_after_hwframe+0x77/0x7f other info that might help us debug this: Possible unsafe locking scenario: CPU0 CPU1 ---- ---- lock(&HFSPLUS_I(inode)->extents_lock); lock(&tree->tree_lock); lock(&HFSPLUS_I(inode)->extents_lock); lock(&tree->tree_lock); This is a false alarm as tree_lock mutex are different, one is from sbi->cat_tree, and another is from sbi->ext_tree: Thread A Thread B - hfsplus_rename - hfsplus_rename_cat - hfs_find_init - mutext_lock(cat_tree->tree_lock) - hfsplus_setattr - hfsplus_file_truncate - mutex_lock(hip->extents_lock) - hfs_find_init - mutext_lock(ext_tree->tree_lock) - hfs_bmap_reserve - hfsplus_file_extend - mutex_lock(hip->extents_lock) So, let's call mutex_lock_nested for tree_lock mutex lock, and pass correct lock class for it. Fixes: 31651c6 ("hfsplus: avoid deadlock on file truncation") Reported-by: syzbot+6030b3b1b9bf70e538c4@syzkaller.appspotmail.com Closes: https://lore.kernel.org/linux-fsdevel/000000000000e37a4005ef129563@google.com Cc: Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com> Signed-off-by: Chao Yu <chao@kernel.org> Link: https://lore.kernel.org/r/20240607142304.455441-1-chao@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
1 parent deebbd5 commit be4edd1

File tree

3 files changed

+29
-16
lines changed

3 files changed

+29
-16
lines changed

fs/hfsplus/bfind.c

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,8 @@ int hfs_find_init(struct hfs_btree *tree, struct hfs_find_data *fd)
2525
fd->key = ptr + tree->max_key_len + 2;
2626
hfs_dbg(BNODE_REFS, "find_init: %d (%p)\n",
2727
tree->cnid, __builtin_return_address(0));
28-
switch (tree->cnid) {
29-
case HFSPLUS_CAT_CNID:
30-
mutex_lock_nested(&tree->tree_lock, CATALOG_BTREE_MUTEX);
31-
break;
32-
case HFSPLUS_EXT_CNID:
33-
mutex_lock_nested(&tree->tree_lock, EXTENTS_BTREE_MUTEX);
34-
break;
35-
case HFSPLUS_ATTR_CNID:
36-
mutex_lock_nested(&tree->tree_lock, ATTR_BTREE_MUTEX);
37-
break;
38-
default:
39-
BUG();
40-
}
28+
mutex_lock_nested(&tree->tree_lock,
29+
hfsplus_btree_lock_class(tree));
4130
return 0;
4231
}
4332

fs/hfsplus/extents.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,8 @@ int hfsplus_free_fork(struct super_block *sb, u32 cnid,
430430
hfsplus_free_extents(sb, ext_entry, total_blocks - start,
431431
total_blocks);
432432
total_blocks = start;
433-
mutex_lock(&fd.tree->tree_lock);
433+
mutex_lock_nested(&fd.tree->tree_lock,
434+
hfsplus_btree_lock_class(fd.tree));
434435
} while (total_blocks > blocks);
435436
hfs_find_exit(&fd);
436437

@@ -592,7 +593,8 @@ void hfsplus_file_truncate(struct inode *inode)
592593
alloc_cnt, alloc_cnt - blk_cnt);
593594
hfsplus_dump_extent(hip->first_extents);
594595
hip->first_blocks = blk_cnt;
595-
mutex_lock(&fd.tree->tree_lock);
596+
mutex_lock_nested(&fd.tree->tree_lock,
597+
hfsplus_btree_lock_class(fd.tree));
596598
break;
597599
}
598600
res = __hfsplus_ext_cache_extent(&fd, inode, alloc_cnt);
@@ -606,7 +608,8 @@ void hfsplus_file_truncate(struct inode *inode)
606608
hfsplus_free_extents(sb, hip->cached_extents,
607609
alloc_cnt - start, alloc_cnt - blk_cnt);
608610
hfsplus_dump_extent(hip->cached_extents);
609-
mutex_lock(&fd.tree->tree_lock);
611+
mutex_lock_nested(&fd.tree->tree_lock,
612+
hfsplus_btree_lock_class(fd.tree));
610613
if (blk_cnt > start) {
611614
hip->extent_state |= HFSPLUS_EXT_DIRTY;
612615
break;

fs/hfsplus/hfsplus_fs.h

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,27 @@ static inline __be32 __hfsp_ut2mt(time64_t ut)
553553
return cpu_to_be32(lower_32_bits(ut) + HFSPLUS_UTC_OFFSET);
554554
}
555555

556+
static inline enum hfsplus_btree_mutex_classes
557+
hfsplus_btree_lock_class(struct hfs_btree *tree)
558+
{
559+
enum hfsplus_btree_mutex_classes class;
560+
561+
switch (tree->cnid) {
562+
case HFSPLUS_CAT_CNID:
563+
class = CATALOG_BTREE_MUTEX;
564+
break;
565+
case HFSPLUS_EXT_CNID:
566+
class = EXTENTS_BTREE_MUTEX;
567+
break;
568+
case HFSPLUS_ATTR_CNID:
569+
class = ATTR_BTREE_MUTEX;
570+
break;
571+
default:
572+
BUG();
573+
}
574+
return class;
575+
}
576+
556577
/* compatibility */
557578
#define hfsp_mt2ut(t) (struct timespec64){ .tv_sec = __hfsp_mt2ut(t) }
558579
#define hfsp_ut2mt(t) __hfsp_ut2mt((t).tv_sec)

0 commit comments

Comments
 (0)