From patchwork Mon Oct 17 01:27:38 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 9378377 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 67D6060487 for ; Mon, 17 Oct 2016 01:28:37 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5D7BC28CCD for ; Mon, 17 Oct 2016 01:28:37 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 514AB28E4A; Mon, 17 Oct 2016 01:28:37 +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 C098B28CCD for ; Mon, 17 Oct 2016 01:28:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932389AbcJQB2b (ORCPT ); Sun, 16 Oct 2016 21:28:31 -0400 Received: from cn.fujitsu.com ([222.73.24.84]:3381 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S932286AbcJQB2S (ORCPT ); Sun, 16 Oct 2016 21:28:18 -0400 X-IronPort-AV: E=Sophos;i="5.20,367,1444665600"; d="scan'208";a="901594" Received: from unknown (HELO cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 17 Oct 2016 09:27:52 +0800 Received: from adam-work.localdomain (unknown [10.167.226.34]) by cn.fujitsu.com (Postfix) with ESMTP id 638CB41B4BC7 for ; Mon, 17 Oct 2016 09:27:50 +0800 (CST) From: Qu Wenruo To: linux-btrfs@vger.kernel.org Subject: [RFC PATCH v0.8 09/14] btrfs-progs: check/scrub: Introduce function to verify parities Date: Mon, 17 Oct 2016 09:27:38 +0800 Message-Id: <20161017012743.9692-10-quwenruo@cn.fujitsu.com> X-Mailer: git-send-email 2.10.0 In-Reply-To: <20161017012743.9692-1-quwenruo@cn.fujitsu.com> References: <20161017012743.9692-1-quwenruo@cn.fujitsu.com> MIME-Version: 1.0 X-yoursite-MailScanner-ID: 638CB41B4BC7.AE929 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 new function, verify_parities(), to check if parities matches for full stripe which all data stripes matches with their csum. Signed-off-by: Qu Wenruo --- check/scrub.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/check/scrub.c b/check/scrub.c index f29effa..d8182d6 100644 --- a/check/scrub.c +++ b/check/scrub.c @@ -408,3 +408,62 @@ out: btrfs_free_path(path); return ret; } + +static int verify_parities(struct btrfs_fs_info *fs_info, + struct btrfs_scrub_progress *scrub_ctx, + struct scrub_full_stripe *fstripe) +{ + void **ptrs; + void *ondisk_p = NULL; + void *ondisk_q = NULL; + void *buf_p; + void *buf_q; + int nr_stripes = fstripe->nr_stripes; + int stripe_len = BTRFS_STRIPE_LEN; + int i; + int ret; + + ptrs = malloc(sizeof(void *) * fstripe->nr_stripes); + buf_p = malloc(fstripe->stripe_len); + buf_q = malloc(fstripe->stripe_len); + if (!ptrs || !buf_p || !buf_q) { + ret = -ENOMEM; + goto out; + } + + for (i = 0; i < fstripe->nr_stripes; i++) { + struct scrub_stripe *stripe = &fstripe->stripes[i]; + + if (stripe->logical == BTRFS_RAID5_P_STRIPE) { + ondisk_p = stripe->data; + ptrs[i] = buf_p; + continue; + } else if (stripe->logical == BTRFS_RAID6_Q_STRIPE) { + ondisk_q = stripe->data; + ptrs[i] = buf_q; + continue; + } else { + ptrs[i] = stripe->data; + continue; + } + } + /* RAID6 */ + if (ondisk_q) { + raid6_gen_syndrome(nr_stripes, stripe_len, ptrs); + if (memcmp(ondisk_q, ptrs[nr_stripes - 1], stripe_len) || + memcmp(ondisk_p, ptrs[nr_stripes - 2], stripe_len)) + ret = -EIO; + } else { + ret = raid5_gen_result(nr_stripes, stripe_len, nr_stripes - 1, + ptrs); + if (ret < 0) + goto out; + if (memcmp(ondisk_p, ptrs[nr_stripes - 1], stripe_len)) + ret = -EIO; + } +out: + free(buf_p); + free(buf_q); + free(ptrs); + return ret; +}