* [PATCH v3] fs: do not update freeing inode i_io_list
@ 2022-11-15 20:20 Svyatoslav Feldsherov
2022-11-16 11:15 ` Jan Kara
0 siblings, 1 reply; 3+ messages in thread
From: Svyatoslav Feldsherov @ 2022-11-15 20:20 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") writeback_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 happen after deletion of inode from i_io_list
at evict. Stack trace is following.
evict
fat_evict_inode
fat_truncate_blocks
fat_flush_inodes
writeback_inode
sync_inode_metadata(inode, sync=0)
writeback_single_inode(inode, wbc) <- wbc->sync_mode == WB_SYNC_NONE
This will lead to use after free in flusher thread.
Similar issue can be triggered if writeback_single_inode in the
stack trace update inode->i_io_list. Add explicit check to avoid it.
Fixes: cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE")
Reported-by: syzbot+6ba92bd00d5093f7e371@syzkaller.appspotmail.com
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Svyatoslav Feldsherov <feldsherov@google.com>
---
V2 -> V3:
- fix grammar in commit message and comments
V1 -> V2:
- address review comments
- skip inode_cgwb_move_to_attached for freeing inode
fs/fs-writeback.c | 30 +++++++++++++++++++-----------
1 file changed, 19 insertions(+), 11 deletions(-)
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
index 443f83382b9b..9958d4020771 100644
--- a/fs/fs-writeback.c
+++ b/fs/fs-writeback.c
@@ -1712,18 +1712,26 @@ static int writeback_single_inode(struct inode *inode,
wb = inode_to_wb_and_lock_list(inode);
spin_lock(&inode->i_lock);
/*
- * If the inode is now fully clean, then it can be safely removed from
- * its writeback list (if any). Otherwise the flusher threads are
- * responsible for the writeback lists.
+ * If the inode is freeing, its i_io_list shoudn't be updated
+ * as it can be finally deleted at this moment.
*/
- if (!(inode->i_state & I_DIRTY_ALL))
- inode_cgwb_move_to_attached(inode, wb);
- else if (!(inode->i_state & I_SYNC_QUEUED)) {
- if ((inode->i_state & I_DIRTY))
- redirty_tail_locked(inode, wb);
- else if (inode->i_state & I_DIRTY_TIME) {
- inode->dirtied_when = jiffies;
- inode_io_list_move_locked(inode, wb, &wb->b_dirty_time);
+ if (!(inode->i_state & I_FREEING)) {
+ /*
+ * If the inode is now fully clean, then it can be safely
+ * removed from its writeback list (if any). Otherwise the
+ * flusher threads are responsible for the writeback lists.
+ */
+ if (!(inode->i_state & I_DIRTY_ALL))
+ inode_cgwb_move_to_attached(inode, wb);
+ else if (!(inode->i_state & I_SYNC_QUEUED)) {
+ if ((inode->i_state & I_DIRTY))
+ redirty_tail_locked(inode, wb);
+ else if (inode->i_state & I_DIRTY_TIME) {
+ inode->dirtied_when = jiffies;
+ inode_io_list_move_locked(inode,
+ wb,
+ &wb->b_dirty_time);
+ }
}
}
--
2.38.1.431.g37b22c650d-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v3] fs: do not update freeing inode i_io_list
2022-11-15 20:20 [PATCH v3] fs: do not update freeing inode i_io_list Svyatoslav Feldsherov
@ 2022-11-16 11:15 ` Jan Kara
2022-11-28 19:19 ` Theodore Ts'o
0 siblings, 1 reply; 3+ messages in thread
From: Jan Kara @ 2022-11-16 11:15 UTC (permalink / raw)
To: Ted Tso
Cc: Alexander Viro, Lukas Czerner, Svyatoslav Feldsherov, Jan Kara,
syzbot+6ba92bd00d5093f7e371, oferz, linux-fsdevel, linux-kernel
On Tue 15-11-22 20:20:01, Svyatoslav Feldsherov wrote:
> After commit cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode
> already has I_DIRTY_INODE") writeback_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 happen after deletion of inode from i_io_list
> at evict. Stack trace is following.
>
> evict
> fat_evict_inode
> fat_truncate_blocks
> fat_flush_inodes
> writeback_inode
> sync_inode_metadata(inode, sync=0)
> writeback_single_inode(inode, wbc) <- wbc->sync_mode == WB_SYNC_NONE
>
> This will lead to use after free in flusher thread.
>
> Similar issue can be triggered if writeback_single_inode in the
> stack trace update inode->i_io_list. Add explicit check to avoid it.
>
> Fixes: cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE")
> Reported-by: syzbot+6ba92bd00d5093f7e371@syzkaller.appspotmail.com
> Reviewed-by: Jan Kara <jack@suse.cz>
> Signed-off-by: Svyatoslav Feldsherov <feldsherov@google.com>
Ted, I guess you will merge this patch since you've merged the one from
Lukas this patch is fixing?
Honza
> ---
> V2 -> V3:
> - fix grammar in commit message and comments
>
> V1 -> V2:
> - address review comments
> - skip inode_cgwb_move_to_attached for freeing inode
>
> fs/fs-writeback.c | 30 +++++++++++++++++++-----------
> 1 file changed, 19 insertions(+), 11 deletions(-)
>
> diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c
> index 443f83382b9b..9958d4020771 100644
> --- a/fs/fs-writeback.c
> +++ b/fs/fs-writeback.c
> @@ -1712,18 +1712,26 @@ static int writeback_single_inode(struct inode *inode,
> wb = inode_to_wb_and_lock_list(inode);
> spin_lock(&inode->i_lock);
> /*
> - * If the inode is now fully clean, then it can be safely removed from
> - * its writeback list (if any). Otherwise the flusher threads are
> - * responsible for the writeback lists.
> + * If the inode is freeing, its i_io_list shoudn't be updated
> + * as it can be finally deleted at this moment.
> */
> - if (!(inode->i_state & I_DIRTY_ALL))
> - inode_cgwb_move_to_attached(inode, wb);
> - else if (!(inode->i_state & I_SYNC_QUEUED)) {
> - if ((inode->i_state & I_DIRTY))
> - redirty_tail_locked(inode, wb);
> - else if (inode->i_state & I_DIRTY_TIME) {
> - inode->dirtied_when = jiffies;
> - inode_io_list_move_locked(inode, wb, &wb->b_dirty_time);
> + if (!(inode->i_state & I_FREEING)) {
> + /*
> + * If the inode is now fully clean, then it can be safely
> + * removed from its writeback list (if any). Otherwise the
> + * flusher threads are responsible for the writeback lists.
> + */
> + if (!(inode->i_state & I_DIRTY_ALL))
> + inode_cgwb_move_to_attached(inode, wb);
> + else if (!(inode->i_state & I_SYNC_QUEUED)) {
> + if ((inode->i_state & I_DIRTY))
> + redirty_tail_locked(inode, wb);
> + else if (inode->i_state & I_DIRTY_TIME) {
> + inode->dirtied_when = jiffies;
> + inode_io_list_move_locked(inode,
> + wb,
> + &wb->b_dirty_time);
> + }
> }
> }
>
> --
> 2.38.1.431.g37b22c650d-goog
>
--
Jan Kara <jack@suse.com>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v3] fs: do not update freeing inode i_io_list
2022-11-16 11:15 ` Jan Kara
@ 2022-11-28 19:19 ` Theodore Ts'o
0 siblings, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2022-11-28 19:19 UTC (permalink / raw)
To: Jan Kara
Cc: Alexander Viro, Lukas Czerner, Svyatoslav Feldsherov,
syzbot+6ba92bd00d5093f7e371, oferz, linux-fsdevel, linux-kernel
On Wed, Nov 16, 2022 at 12:15:39PM +0100, Jan Kara wrote:
> On Tue 15-11-22 20:20:01, Svyatoslav Feldsherov wrote:
> > After commit cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode
> > already has I_DIRTY_INODE") writeback_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 happen after deletion of inode from i_io_list
> > at evict. Stack trace is following.
> >
> > evict
> > fat_evict_inode
> > fat_truncate_blocks
> > fat_flush_inodes
> > writeback_inode
> > sync_inode_metadata(inode, sync=0)
> > writeback_single_inode(inode, wbc) <- wbc->sync_mode == WB_SYNC_NONE
> >
> > This will lead to use after free in flusher thread.
> >
> > Similar issue can be triggered if writeback_single_inode in the
> > stack trace update inode->i_io_list. Add explicit check to avoid it.
> >
> > Fixes: cbfecb927f42 ("fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE")
> > Reported-by: syzbot+6ba92bd00d5093f7e371@syzkaller.appspotmail.com
> > Reviewed-by: Jan Kara <jack@suse.cz>
> > Signed-off-by: Svyatoslav Feldsherov <feldsherov@google.com>
>
> Ted, I guess you will merge this patch since you've merged the one from
> Lukas this patch is fixing?
Sorry, I forgot to ack this earlier, but this was pushed to Linus and
it's in 6.1-rc7.
- Ted
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-28 19:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-15 20:20 [PATCH v3] fs: do not update freeing inode i_io_list Svyatoslav Feldsherov
2022-11-16 11:15 ` Jan Kara
2022-11-28 19:19 ` Theodore Ts'o
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).