Skip to content

Commit 1a0bd28

Browse files
chaseyuJaegeuk Kim
authored and
Jaegeuk Kim
committed
f2fs: atomic: fix to avoid racing w/ GC
Case #1: SQLite App GC Thread Kworker Shrinker - f2fs_ioc_start_atomic_write - f2fs_ioc_commit_atomic_write - f2fs_commit_atomic_write - filemap_write_and_wait_range : write atomic_file's data to cow_inode echo 3 > drop_caches to drop atomic_file's cache. - f2fs_gc - gc_data_segment - move_data_page - set_page_dirty - writepages - f2fs_do_write_data_page : overwrite atomic_file's data to cow_inode - f2fs_down_write(&fi->i_gc_rwsem[WRITE]) - __f2fs_commit_atomic_write - f2fs_up_write(&fi->i_gc_rwsem[WRITE]) Case #2: SQLite App GC Thread Kworker - f2fs_ioc_start_atomic_write - __writeback_single_inode - do_writepages - f2fs_write_cache_pages - f2fs_write_single_data_page - f2fs_do_write_data_page : write atomic_file's data to cow_inode - f2fs_gc - gc_data_segment - move_data_page - set_page_dirty - writepages - f2fs_do_write_data_page : overwrite atomic_file's data to cow_inode - f2fs_ioc_commit_atomic_write In above cases racing in between atomic_write and GC, previous data in atomic_file may be overwrited to cow_file, result in data corruption. This patch introduces PAGE_PRIVATE_ATOMIC_WRITE bit flag in page.private, and use it to indicate that there is last dirty data in atomic file, and the data should be writebacked into cow_file, if the flag is not tagged in page, we should never write data across files. Fixes: 3db1de0 ("f2fs: change the current atomic write way") Cc: Daeho Jeong <[email protected]> Signed-off-by: Chao Yu <[email protected]> Signed-off-by: Jaegeuk Kim <[email protected]>
1 parent d72750e commit 1a0bd28

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

fs/f2fs/data.c

+9-1
Original file line numberDiff line numberDiff line change
@@ -2650,10 +2650,13 @@ int f2fs_do_write_data_page(struct f2fs_io_info *fio)
26502650
struct dnode_of_data dn;
26512651
struct node_info ni;
26522652
bool ipu_force = false;
2653+
bool atomic_commit;
26532654
int err = 0;
26542655

26552656
/* Use COW inode to make dnode_of_data for atomic write */
2656-
if (f2fs_is_atomic_file(inode))
2657+
atomic_commit = f2fs_is_atomic_file(inode) &&
2658+
page_private_atomic(fio->page);
2659+
if (atomic_commit)
26572660
set_new_dnode(&dn, F2FS_I(inode)->cow_inode, NULL, NULL, 0);
26582661
else
26592662
set_new_dnode(&dn, inode, NULL, NULL, 0);
@@ -2752,6 +2755,8 @@ int f2fs_do_write_data_page(struct f2fs_io_info *fio)
27522755
f2fs_outplace_write_data(&dn, fio);
27532756
trace_f2fs_do_write_data_page(page_folio(page), OPU);
27542757
set_inode_flag(inode, FI_APPEND_WRITE);
2758+
if (atomic_commit)
2759+
clear_page_private_atomic(page);
27552760
out_writepage:
27562761
f2fs_put_dnode(&dn);
27572762
out:
@@ -3721,6 +3726,9 @@ static int f2fs_write_end(struct file *file,
37213726

37223727
set_page_dirty(page);
37233728

3729+
if (f2fs_is_atomic_file(inode))
3730+
set_page_private_atomic(page);
3731+
37243732
if (pos + copied > i_size_read(inode) &&
37253733
!f2fs_verity_in_progress(inode)) {
37263734
f2fs_i_size_write(inode, pos + copied);

fs/f2fs/f2fs.h

+7-1
Original file line numberDiff line numberDiff line change
@@ -1424,7 +1424,8 @@ static inline void f2fs_clear_bit(unsigned int nr, char *addr);
14241424
* bit 1 PAGE_PRIVATE_ONGOING_MIGRATION
14251425
* bit 2 PAGE_PRIVATE_INLINE_INODE
14261426
* bit 3 PAGE_PRIVATE_REF_RESOURCE
1427-
* bit 4- f2fs private data
1427+
* bit 4 PAGE_PRIVATE_ATOMIC_WRITE
1428+
* bit 5- f2fs private data
14281429
*
14291430
* Layout B: lowest bit should be 0
14301431
* page.private is a wrapped pointer.
@@ -1434,6 +1435,7 @@ enum {
14341435
PAGE_PRIVATE_ONGOING_MIGRATION, /* data page which is on-going migrating */
14351436
PAGE_PRIVATE_INLINE_INODE, /* inode page contains inline data */
14361437
PAGE_PRIVATE_REF_RESOURCE, /* dirty page has referenced resources */
1438+
PAGE_PRIVATE_ATOMIC_WRITE, /* data page from atomic write path */
14371439
PAGE_PRIVATE_MAX
14381440
};
14391441

@@ -2404,14 +2406,17 @@ static inline void clear_page_private_##name(struct page *page) \
24042406
PAGE_PRIVATE_GET_FUNC(nonpointer, NOT_POINTER);
24052407
PAGE_PRIVATE_GET_FUNC(inline, INLINE_INODE);
24062408
PAGE_PRIVATE_GET_FUNC(gcing, ONGOING_MIGRATION);
2409+
PAGE_PRIVATE_GET_FUNC(atomic, ATOMIC_WRITE);
24072410

24082411
PAGE_PRIVATE_SET_FUNC(reference, REF_RESOURCE);
24092412
PAGE_PRIVATE_SET_FUNC(inline, INLINE_INODE);
24102413
PAGE_PRIVATE_SET_FUNC(gcing, ONGOING_MIGRATION);
2414+
PAGE_PRIVATE_SET_FUNC(atomic, ATOMIC_WRITE);
24112415

24122416
PAGE_PRIVATE_CLEAR_FUNC(reference, REF_RESOURCE);
24132417
PAGE_PRIVATE_CLEAR_FUNC(inline, INLINE_INODE);
24142418
PAGE_PRIVATE_CLEAR_FUNC(gcing, ONGOING_MIGRATION);
2419+
PAGE_PRIVATE_CLEAR_FUNC(atomic, ATOMIC_WRITE);
24152420

24162421
static inline unsigned long get_page_private_data(struct page *page)
24172422
{
@@ -2443,6 +2448,7 @@ static inline void clear_page_private_all(struct page *page)
24432448
clear_page_private_reference(page);
24442449
clear_page_private_gcing(page);
24452450
clear_page_private_inline(page);
2451+
clear_page_private_atomic(page);
24462452

24472453
f2fs_bug_on(F2FS_P_SB(page), page_private(page));
24482454
}

0 commit comments

Comments
 (0)