From patchwork Thu Mar 30 06:21:08 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 9652937 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 2B386602BD for ; Thu, 30 Mar 2017 06:21:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1B08E2856C for ; Thu, 30 Mar 2017 06:21:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0FE5C28571; Thu, 30 Mar 2017 06:21:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id ACE152856C for ; Thu, 30 Mar 2017 06:21:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932595AbdC3GVd (ORCPT ); Thu, 30 Mar 2017 02:21:33 -0400 Received: from cn.fujitsu.com ([59.151.112.132]:13217 "EHLO heian.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S932097AbdC3GVb (ORCPT ); Thu, 30 Mar 2017 02:21:31 -0400 X-IronPort-AV: E=Sophos;i="5.22,518,1449504000"; d="scan'208";a="17165837" Received: from unknown (HELO cn.fujitsu.com) ([10.167.33.5]) by heian.cn.fujitsu.com with ESMTP; 30 Mar 2017 14:21:29 +0800 Received: from G08CNEXCHPEKD01.g08.fujitsu.local (unknown [10.167.33.80]) by cn.fujitsu.com (Postfix) with ESMTP id 83EA947EE219 for ; Thu, 30 Mar 2017 14:21:25 +0800 (CST) Received: from localhost.localdomain (10.167.226.34) by G08CNEXCHPEKD01.g08.fujitsu.local (10.167.33.89) with Microsoft SMTP Server (TLS) id 14.3.319.2; Thu, 30 Mar 2017 14:21:25 +0800 From: Qu Wenruo To: Subject: [PATCH v3 12/19] btrfs-progs: scrub: Introduce function to scrub one extent Date: Thu, 30 Mar 2017 14:21:08 +0800 Message-ID: <20170330062116.14379-13-quwenruo@cn.fujitsu.com> X-Mailer: git-send-email 2.12.1 In-Reply-To: <20170330062116.14379-1-quwenruo@cn.fujitsu.com> References: <20170330062116.14379-1-quwenruo@cn.fujitsu.com> MIME-Version: 1.0 X-Originating-IP: [10.167.226.34] X-yoursite-MailScanner-ID: 83EA947EE219.AF9E0 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: quwenruo@cn.fujitsu.com Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Introduce a new function, scrub_one_extent(), as a wrapper to check one extent. It will accept a btrfs_path parameter @path, which must points to a META/EXTENT_ITEM. And @start, @len, which must be a subset of META/EXTENT_ITEM. Parameter @report will determine if we output error. Since the function will be reused by RAID56 code, we want it able to be silent. Signed-off-by: Qu Wenruo --- scrub.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/scrub.c b/scrub.c index d59be25d..2e4850df 100644 --- a/scrub.c +++ b/scrub.c @@ -288,3 +288,82 @@ out: return -EIO; return ret; } + +/* + * Check all copies of range @start, @len. + * Caller must ensure the range is covered by EXTENT_ITEM/METADATA_ITEM + * specified by leaf of @path. + * And @start, @len must be a subset of the EXTENT_ITEM/METADATA_ITEM. + * + * If @report is set, it will report if the range is recoverable or totally + * corrupted if it has corrupted mirror. + * This parameter is used for silent verification for RAID5/6 recovery code. + * + * Return 0 if the range is all OK or recoverable. + * Return <0 if the range can't be recoverable. + */ +static int scrub_one_extent(struct btrfs_fs_info *fs_info, + struct btrfs_scrub_progress *scrub_ctx, + struct btrfs_path *path, u64 start, u64 len, + int report) +{ + struct btrfs_key key; + struct btrfs_extent_item *ei; + struct extent_buffer *leaf = path->nodes[0]; + int slot = path->slots[0]; + int num_copies; + int corrupted = 0; + u64 extent_start; + u64 extent_len; + int metadata = 0; + int i; + int ret; + + btrfs_item_key_to_cpu(leaf, &key, slot); + if (key.type != BTRFS_METADATA_ITEM_KEY && + key.type != BTRFS_EXTENT_ITEM_KEY) + goto invalid_arg; + + extent_start = key.objectid; + if (key.type == BTRFS_METADATA_ITEM_KEY) { + extent_len = fs_info->tree_root->nodesize; + metadata = 1; + } else { + extent_len = key.offset; + ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item); + if (btrfs_extent_flags(leaf, ei) & BTRFS_EXTENT_FLAG_TREE_BLOCK) + metadata = 1; + } + if (start >= extent_start + extent_len || + start + len <= extent_start) + goto invalid_arg; + num_copies = btrfs_num_copies(&fs_info->mapping_tree, start, len); + for (i = 1; i <= num_copies; i++) { + if (metadata) { + ret = scrub_tree_mirror(fs_info, scrub_ctx, + NULL, extent_start, i); + scrub_ctx->tree_extents_scrubbed++; + } else { + ret = scrub_data_mirror(fs_info, scrub_ctx, NULL, + start, len, i); + scrub_ctx->data_extents_scrubbed++; + } + if (ret < 0) + corrupted++; + } + + if (report) { + if (corrupted && corrupted < num_copies) + printf("bytenr %llu len %llu has corrupted mirror, but is recoverable\n", + start, len); + else if (corrupted >= num_copies) + error("bytenr %llu len %llu has corrupted mirror, can't be recovered", + start, len); + } + if (corrupted < num_copies) + return 0; + return -EIO; +invalid_arg: + error("invalid parameter for %s", __func__); + return -EINVAL; +}