Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751917AbeADGyK (ORCPT + 1 other); Thu, 4 Jan 2018 01:54:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:56552 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750746AbeADGyJ (ORCPT ); Thu, 4 Jan 2018 01:54:09 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C231C21873 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=jaegeuk@kernel.org Date: Wed, 3 Jan 2018 22:54:08 -0800 From: Jaegeuk Kim To: Yunlong Song Cc: chao@kernel.org, yuchao0@huawei.com, yunlong.song@icloud.com, miaoxie@huawei.com, bintian.wang@huawei.com, shengyong1@huawei.com, heyunlei@huawei.com, linux-fsdevel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3] f2fs: check segment type in __f2fs_replace_block Message-ID: <20180104065408.GC54234@jaegeuk-macbookpro.roam.corp.google.com> References: <1514619768-134531-1-git-send-email-yunlong.song@huawei.com> <1515047076-27582-1-git-send-email-yunlong.song@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1515047076-27582-1-git-send-email-yunlong.song@huawei.com> User-Agent: Mutt/1.8.2 (2017-04-18) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 01/04, Yunlong Song wrote: > In some case, the node blocks has wrong blkaddr whose segment type is > NODE, e.g., recover inode has missing xattr flag and the blkaddr is in > the xattr range. Since fsck.f2fs does not check the recovery nodes, this > will cause __f2fs_replace_block change the curseg of node and do the > update_sit_entry(sbi, new_blkaddr, 1) with no next_blkoff refresh, as a > result, when recovery process write checkpoint and sync nodes, the > next_blkoff of curseg is used in the segment bit map, then it will > cause f2fs_bug_on. So let's check segment type in __f2fs_replace_block. > > Signed-off-by: Yunlong Song > --- > fs/f2fs/segment.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c > index 890d483..6c6d2dd 100644 > --- a/fs/f2fs/segment.c > +++ b/fs/f2fs/segment.c > @@ -2719,6 +2719,8 @@ void __f2fs_replace_block(struct f2fs_sb_info *sbi, struct f2fs_summary *sum, > se = get_seg_entry(sbi, segno); > type = se->type; > > + f2fs_bug_on(sbi, se->valid_blocks && !IS_DATASEG(type)); > + Need to cover se->valid_blocks by the below curseg_lock at least? > down_write(&SM_I(sbi)->curseg_lock); > > if (!recover_curseg) { > -- > 1.8.5.2