All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] f2fs: fix to avoid accessing uninitialized field of inode page in is_alive()
@ 2019-09-06 10:54 ` Chao Yu
  0 siblings, 0 replies; 24+ messages in thread
From: Chao Yu @ 2019-09-06 10:54 UTC (permalink / raw)
  To: jaegeuk; +Cc: linux-f2fs-devel, linux-kernel, chao, Chao Yu

If inode is newly created, inode page may not synchronize with inode cache,
so fields like .i_inline or .i_extra_isize could be wrong, in below call
path, we may access such wrong fields, result in failing to migrate valid
target block.

- gc_data_segment
 - is_alive
  - datablock_addr
   - offset_in_addr

Fixes: 7a2af766af15 ("f2fs: enhance on-disk inode structure scalability")
Signed-off-by: Chao Yu <yuchao0@huawei.com>
---
 fs/f2fs/dir.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/f2fs/dir.c b/fs/f2fs/dir.c
index 765f13354d3f..b1840852967e 100644
--- a/fs/f2fs/dir.c
+++ b/fs/f2fs/dir.c
@@ -479,6 +479,9 @@ struct page *f2fs_init_inode_metadata(struct inode *inode, struct inode *dir,
 		if (IS_ERR(page))
 			return page;
 
+		/* synchronize inode page's data from inode cache */
+		f2fs_update_inode(inode, page);
+
 		if (S_ISDIR(inode->i_mode)) {
 			/* in order to handle error case */
 			get_page(page);
-- 
2.18.0.rc1


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

end of thread, other threads:[~2019-09-10  1:01 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-06 10:54 [PATCH] f2fs: fix to avoid accessing uninitialized field of inode page in is_alive() Chao Yu
2019-09-06 10:54 ` [f2fs-dev] " Chao Yu
2019-09-06 23:48 ` Jaegeuk Kim
2019-09-06 23:48   ` [f2fs-dev] " Jaegeuk Kim
2019-09-07  1:23   ` Chao Yu
2019-09-07  1:23     ` [f2fs-dev] " Chao Yu
2019-09-09  7:44     ` Jaegeuk Kim
2019-09-09  7:44       ` [f2fs-dev] " Jaegeuk Kim
2019-09-09  7:58       ` Chao Yu
2019-09-09  7:58         ` [f2fs-dev] " Chao Yu
2019-09-09  8:16         ` Chao Yu
2019-09-09  8:16           ` [f2fs-dev] " Chao Yu
2019-09-09  8:37           ` Jaegeuk Kim
2019-09-09  8:37             ` [f2fs-dev] " Jaegeuk Kim
2019-09-09  9:18             ` Chao Yu
2019-09-09  9:18               ` [f2fs-dev] " Chao Yu
2019-09-09  9:33               ` Jaegeuk Kim
2019-09-09  9:33                 ` [f2fs-dev] " Jaegeuk Kim
2019-09-09 11:05                 ` Chao Yu
2019-09-09 11:05                   ` [f2fs-dev] " Chao Yu
2019-09-09 14:37                   ` Jaegeuk Kim
2019-09-09 14:37                     ` [f2fs-dev] " Jaegeuk Kim
2019-09-10  0:59                     ` Chao Yu
2019-09-10  0:59                       ` [f2fs-dev] " Chao Yu

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.