linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs: do not push freeing inode to b_dirty_time list
@ 2022-11-13 15:24 Svyatoslav Feldsherov
  2022-11-14 10:46 ` Jan Kara
  0 siblings, 1 reply; 9+ messages in thread
From: Svyatoslav Feldsherov @ 2022-11-13 15:24 UTC (permalink / raw)
  To: Alexander Viro, Lukas Czerner, Theodore Ts'o, Jan Kara
  Cc: syzbot+6ba92bd00d5093f7e371, oferz, linux-fsdevel, linux-kernel,
	Svyatoslav Feldsherov

After commit cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode
already has I_DIRTY_INODE") writeiback_single_inode can push inode with
I_DIRTY_TIME set to b_dirty_time list. In case of freeing inode with
I_DIRTY_TIME set this can happened after deletion of inode io_list at
evict. Stack trace is following.

evict
fat_evict_inode
fat_truncate_blocks
fat_flush_inodes
writeback_inode
sync_inode_metadata
writeback_single_inode

This will lead to use after free in flusher thread.

Fixes: cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE")
Reported-by: syzbot+6ba92bd00d5093f7e371@syzkaller.appspotmail.com
Signed-off-by: Svyatoslav Feldsherov <feldsherov@google.com>
---
 fs/fs-writeback.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
index 443f83382b9b..31c93cbdb3fe 100644
--- a/fs/fs-writeback.c
+++ b/fs/fs-writeback.c
@@ -1718,7 +1718,7 @@ static int writeback_single_inode(struct inode *inode,
 	 */
 	if (!(inode->i_state & I_DIRTY_ALL))
 		inode_cgwb_move_to_attached(inode, wb);
-	else if (!(inode->i_state & I_SYNC_QUEUED)) {
+	else if (!(inode->i_state & (I_SYNC_QUEUED | I_FREEING))) {
 		if ((inode->i_state & I_DIRTY))
 			redirty_tail_locked(inode, wb);
 		else if (inode->i_state & I_DIRTY_TIME) {
-- 
2.38.1.431.g37b22c650d-goog


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

end of thread, other threads:[~2022-11-15 20:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-13 15:24 [PATCH] fs: do not push freeing inode to b_dirty_time list Svyatoslav Feldsherov
2022-11-14 10:46 ` Jan Kara
2022-11-14 17:43   ` Svyatoslav Feldsherov
2022-11-14 19:21     ` Jan Kara
2022-11-14 21:21       ` [PATCH v2] fs: do not update freeing inode io_list Svyatoslav Feldsherov
2022-11-14 21:25         ` Randy Dunlap
2022-11-15  9:19           ` Svyatoslav Feldsherov
2022-11-15 10:55         ` Jan Kara
2022-11-15 20:28           ` Svyatoslav Feldsherov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).