2008-11-20 20:01:55 +00:00
|
|
|
/*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
|
|
* or http://www.opensolaris.org/os/licensing.
|
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
/*
|
2010-05-28 20:45:14 +00:00
|
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
2016-07-22 15:52:49 +00:00
|
|
|
* Copyright (c) 2013, 2016 by Delphix. All rights reserved.
|
2017-01-31 01:12:58 +00:00
|
|
|
* Copyright 2013 Saso Kiselkov. All rights reserved.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/zfs_context.h>
|
|
|
|
#include <sys/spa.h>
|
2016-06-15 22:47:05 +00:00
|
|
|
#include <sys/spa_impl.h>
|
2008-11-20 20:01:55 +00:00
|
|
|
#include <sys/zio.h>
|
|
|
|
#include <sys/zio_checksum.h>
|
2010-05-28 20:45:14 +00:00
|
|
|
#include <sys/zil.h>
|
2016-07-22 15:52:49 +00:00
|
|
|
#include <sys/abd.h>
|
2010-05-28 20:45:14 +00:00
|
|
|
#include <zfs_fletcher.h>
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Checksum vectors.
|
|
|
|
*
|
|
|
|
* In the SPA, everything is checksummed. We support checksum vectors
|
|
|
|
* for three distinct reasons:
|
|
|
|
*
|
|
|
|
* 1. Different kinds of data need different levels of protection.
|
|
|
|
* For SPA metadata, we always want a very strong checksum.
|
|
|
|
* For user data, we let users make the trade-off between speed
|
|
|
|
* and checksum strength.
|
|
|
|
*
|
|
|
|
* 2. Cryptographic hash and MAC algorithms are an area of active research.
|
|
|
|
* It is likely that in future hash functions will be at least as strong
|
|
|
|
* as current best-of-breed, and may be substantially faster as well.
|
|
|
|
* We want the ability to take advantage of these new hashes as soon as
|
|
|
|
* they become available.
|
|
|
|
*
|
|
|
|
* 3. If someone develops hardware that can compute a strong hash quickly,
|
|
|
|
* we want the ability to take advantage of that hardware.
|
|
|
|
*
|
|
|
|
* Of course, we don't want a checksum upgrade to invalidate existing
|
2010-05-28 20:45:14 +00:00
|
|
|
* data, so we store the checksum *function* in eight bits of the bp.
|
|
|
|
* This gives us room for up to 256 different checksum functions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*
|
|
|
|
* When writing a block, we always checksum it with the latest-and-greatest
|
|
|
|
* checksum function of the appropriate strength. When reading a block,
|
|
|
|
* we compare the expected checksum against the actual checksum, which we
|
2010-05-28 20:45:14 +00:00
|
|
|
* compute via the checksum function specified by BP_GET_CHECKSUM(bp).
|
2016-06-15 22:47:05 +00:00
|
|
|
*
|
|
|
|
* SALTED CHECKSUMS
|
|
|
|
*
|
|
|
|
* To enable the use of less secure hash algorithms with dedup, we
|
|
|
|
* introduce the notion of salted checksums (MACs, really). A salted
|
|
|
|
* checksum is fed both a random 256-bit value (the salt) and the data
|
|
|
|
* to be checksummed. This salt is kept secret (stored on the pool, but
|
|
|
|
* never shown to the user). Thus even if an attacker knew of collision
|
|
|
|
* weaknesses in the hash algorithm, they won't be able to mount a known
|
|
|
|
* plaintext attack on the DDT, since the actual hash value cannot be
|
|
|
|
* known ahead of time. How the salt is used is algorithm-specific
|
|
|
|
* (some might simply prefix it to the data block, others might need to
|
|
|
|
* utilize a full-blown HMAC). On disk the salt is stored in a ZAP
|
|
|
|
* object in the MOS (DMU_POOL_CHECKSUM_SALT).
|
|
|
|
*
|
|
|
|
* CONTEXT TEMPLATES
|
|
|
|
*
|
|
|
|
* Some hashing algorithms need to perform a substantial amount of
|
|
|
|
* initialization work (e.g. salted checksums above may need to pre-hash
|
|
|
|
* the salt) before being able to process data. Performing this
|
|
|
|
* redundant work for each block would be wasteful, so we instead allow
|
|
|
|
* a checksum algorithm to do the work once (the first time it's used)
|
|
|
|
* and then keep this pre-initialized context as a template inside the
|
|
|
|
* spa_t (spa_cksum_tmpls). If the zio_checksum_info_t contains
|
|
|
|
* non-NULL ci_tmpl_init and ci_tmpl_free callbacks, they are used to
|
|
|
|
* construct and destruct the pre-initialized checksum context. The
|
|
|
|
* pre-initialized context is then reused during each checksum
|
|
|
|
* invocation and passed to the checksum function.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
static void
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_checksum_off(abd_t *abd, uint64_t size,
|
2017-01-20 21:17:55 +00:00
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
ZIO_SET_CHECKSUM(zcp, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2016-07-22 15:52:49 +00:00
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
abd_fletcher_2_native(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
|
|
|
fletcher_init(zcp);
|
|
|
|
(void) abd_iterate_func(abd, 0, size,
|
|
|
|
fletcher_2_incremental_native, zcp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
abd_fletcher_2_byteswap(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
|
|
|
fletcher_init(zcp);
|
|
|
|
(void) abd_iterate_func(abd, 0, size,
|
|
|
|
fletcher_2_incremental_byteswap, zcp);
|
|
|
|
}
|
|
|
|
|
2017-02-01 17:34:22 +00:00
|
|
|
static inline void
|
|
|
|
abd_fletcher_4_impl(abd_t *abd, uint64_t size, zio_abd_checksum_data_t *acdp)
|
|
|
|
{
|
|
|
|
fletcher_4_abd_ops.acf_init(acdp);
|
|
|
|
abd_iterate_func(abd, 0, size, fletcher_4_abd_ops.acf_iter, acdp);
|
|
|
|
fletcher_4_abd_ops.acf_fini(acdp);
|
|
|
|
}
|
|
|
|
|
2016-07-22 15:52:49 +00:00
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
abd_fletcher_4_native(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2017-02-01 17:34:22 +00:00
|
|
|
fletcher_4_ctx_t ctx;
|
|
|
|
|
|
|
|
zio_abd_checksum_data_t acd = {
|
|
|
|
.acd_byteorder = ZIO_CHECKSUM_NATIVE,
|
|
|
|
.acd_zcp = zcp,
|
|
|
|
.acd_ctx = &ctx
|
|
|
|
};
|
|
|
|
|
|
|
|
abd_fletcher_4_impl(abd, size, &acd);
|
|
|
|
|
2016-07-22 15:52:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
abd_fletcher_4_byteswap(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2017-02-01 17:34:22 +00:00
|
|
|
fletcher_4_ctx_t ctx;
|
|
|
|
|
|
|
|
zio_abd_checksum_data_t acd = {
|
|
|
|
.acd_byteorder = ZIO_CHECKSUM_BYTESWAP,
|
|
|
|
.acd_zcp = zcp,
|
|
|
|
.acd_ctx = &ctx
|
|
|
|
};
|
|
|
|
|
|
|
|
abd_fletcher_4_impl(abd, size, &acd);
|
2016-07-22 15:52:49 +00:00
|
|
|
}
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
zio_checksum_info_t zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS] = {
|
2016-06-15 22:47:05 +00:00
|
|
|
{{NULL, NULL}, NULL, NULL, 0, "inherit"},
|
|
|
|
{{NULL, NULL}, NULL, NULL, 0, "on"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_off, abd_checksum_off},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, 0, "off"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_SHA256, abd_checksum_SHA256},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_EMBEDDED,
|
|
|
|
"label"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_SHA256, abd_checksum_SHA256},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_EMBEDDED,
|
|
|
|
"gang_header"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_fletcher_2_native, abd_fletcher_2_byteswap},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_EMBEDDED, "zilog"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_fletcher_2_native, abd_fletcher_2_byteswap},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, 0, "fletcher2"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_fletcher_4_native, abd_fletcher_4_byteswap},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA, "fletcher4"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_SHA256, abd_checksum_SHA256},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "sha256"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_fletcher_4_native, abd_fletcher_4_byteswap},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_EMBEDDED, "zilog2"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_off, abd_checksum_off},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, 0, "noparity"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_SHA512_native, abd_checksum_SHA512_byteswap},
|
2016-06-15 22:47:05 +00:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "sha512"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_skein_native, abd_checksum_skein_byteswap},
|
|
|
|
abd_checksum_skein_tmpl_init, abd_checksum_skein_tmpl_free,
|
2016-06-15 22:47:05 +00:00
|
|
|
ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_SALTED | ZCHECKSUM_FLAG_NOPWRITE, "skein"},
|
2016-07-22 15:52:49 +00:00
|
|
|
{{abd_checksum_edonr_native, abd_checksum_edonr_byteswap},
|
|
|
|
abd_checksum_edonr_tmpl_init, abd_checksum_edonr_tmpl_free,
|
2016-06-15 22:47:05 +00:00
|
|
|
ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_SALTED |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "edonr"},
|
2008-11-20 20:01:55 +00:00
|
|
|
};
|
|
|
|
|
2016-01-26 07:41:11 +00:00
|
|
|
/*
|
|
|
|
* The flag corresponding to the "verify" in dedup=[checksum,]verify
|
|
|
|
* must be cleared first, so callers should use ZIO_CHECKSUM_MASK.
|
|
|
|
*/
|
2016-06-15 22:47:05 +00:00
|
|
|
spa_feature_t
|
|
|
|
zio_checksum_to_feature(enum zio_checksum cksum)
|
|
|
|
{
|
2016-01-26 07:41:11 +00:00
|
|
|
VERIFY((cksum & ~ZIO_CHECKSUM_MASK) == 0);
|
|
|
|
|
2016-06-15 22:47:05 +00:00
|
|
|
switch (cksum) {
|
|
|
|
case ZIO_CHECKSUM_SHA512:
|
|
|
|
return (SPA_FEATURE_SHA512);
|
|
|
|
case ZIO_CHECKSUM_SKEIN:
|
|
|
|
return (SPA_FEATURE_SKEIN);
|
|
|
|
case ZIO_CHECKSUM_EDONR:
|
|
|
|
return (SPA_FEATURE_EDONR);
|
|
|
|
default:
|
|
|
|
return (SPA_FEATURE_NONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
enum zio_checksum
|
|
|
|
zio_checksum_select(enum zio_checksum child, enum zio_checksum parent)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
ASSERT(child < ZIO_CHECKSUM_FUNCTIONS);
|
|
|
|
ASSERT(parent < ZIO_CHECKSUM_FUNCTIONS);
|
|
|
|
ASSERT(parent != ZIO_CHECKSUM_INHERIT && parent != ZIO_CHECKSUM_ON);
|
|
|
|
|
|
|
|
if (child == ZIO_CHECKSUM_INHERIT)
|
|
|
|
return (parent);
|
|
|
|
|
|
|
|
if (child == ZIO_CHECKSUM_ON)
|
|
|
|
return (ZIO_CHECKSUM_ON_VALUE);
|
|
|
|
|
|
|
|
return (child);
|
|
|
|
}
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
enum zio_checksum
|
|
|
|
zio_checksum_dedup_select(spa_t *spa, enum zio_checksum child,
|
|
|
|
enum zio_checksum parent)
|
|
|
|
{
|
|
|
|
ASSERT((child & ZIO_CHECKSUM_MASK) < ZIO_CHECKSUM_FUNCTIONS);
|
|
|
|
ASSERT((parent & ZIO_CHECKSUM_MASK) < ZIO_CHECKSUM_FUNCTIONS);
|
|
|
|
ASSERT(parent != ZIO_CHECKSUM_INHERIT && parent != ZIO_CHECKSUM_ON);
|
|
|
|
|
|
|
|
if (child == ZIO_CHECKSUM_INHERIT)
|
|
|
|
return (parent);
|
|
|
|
|
|
|
|
if (child == ZIO_CHECKSUM_ON)
|
|
|
|
return (spa_dedup_checksum(spa));
|
|
|
|
|
|
|
|
if (child == (ZIO_CHECKSUM_ON | ZIO_CHECKSUM_VERIFY))
|
|
|
|
return (spa_dedup_checksum(spa) | ZIO_CHECKSUM_VERIFY);
|
|
|
|
|
2016-06-15 22:47:05 +00:00
|
|
|
ASSERT((zio_checksum_table[child & ZIO_CHECKSUM_MASK].ci_flags &
|
|
|
|
ZCHECKSUM_FLAG_DEDUP) ||
|
2010-05-28 20:45:14 +00:00
|
|
|
(child & ZIO_CHECKSUM_VERIFY) || child == ZIO_CHECKSUM_OFF);
|
|
|
|
|
|
|
|
return (child);
|
|
|
|
}
|
|
|
|
|
2008-12-03 20:09:06 +00:00
|
|
|
/*
|
|
|
|
* Set the external verifier for a gang block based on <vdev, offset, txg>,
|
|
|
|
* a tuple which is guaranteed to be unique for the life of the pool.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zio_checksum_gang_verifier(zio_cksum_t *zcp, blkptr_t *bp)
|
|
|
|
{
|
2014-06-05 21:19:08 +00:00
|
|
|
const dva_t *dva = BP_IDENTITY(bp);
|
2010-05-28 20:45:14 +00:00
|
|
|
uint64_t txg = BP_PHYSICAL_BIRTH(bp);
|
2008-12-03 20:09:06 +00:00
|
|
|
|
|
|
|
ASSERT(BP_IS_GANG(bp));
|
|
|
|
|
|
|
|
ZIO_SET_CHECKSUM(zcp, DVA_GET_VDEV(dva), DVA_GET_OFFSET(dva), txg, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the external verifier for a label block based on its offset.
|
|
|
|
* The vdev is implicit, and the txg is unknowable at pool open time --
|
|
|
|
* hence the logic in vdev_uberblock_load() to find the most recent copy.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zio_checksum_label_verifier(zio_cksum_t *zcp, uint64_t offset)
|
|
|
|
{
|
|
|
|
ZIO_SET_CHECKSUM(zcp, offset, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2016-06-15 22:47:05 +00:00
|
|
|
/*
|
|
|
|
* Calls the template init function of a checksum which supports context
|
|
|
|
* templates and installs the template into the spa_t.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zio_checksum_template_init(enum zio_checksum checksum, spa_t *spa)
|
|
|
|
{
|
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
|
|
|
|
|
|
|
if (ci->ci_tmpl_init == NULL)
|
|
|
|
return;
|
|
|
|
if (spa->spa_cksum_tmpls[checksum] != NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
VERIFY(ci->ci_tmpl_free != NULL);
|
|
|
|
mutex_enter(&spa->spa_cksum_tmpls_lock);
|
|
|
|
if (spa->spa_cksum_tmpls[checksum] == NULL) {
|
|
|
|
spa->spa_cksum_tmpls[checksum] =
|
|
|
|
ci->ci_tmpl_init(&spa->spa_cksum_salt);
|
|
|
|
VERIFY(spa->spa_cksum_tmpls[checksum] != NULL);
|
|
|
|
}
|
|
|
|
mutex_exit(&spa->spa_cksum_tmpls_lock);
|
|
|
|
}
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
/*
|
|
|
|
* Generate the checksum.
|
|
|
|
*/
|
|
|
|
void
|
2008-12-03 20:09:06 +00:00
|
|
|
zio_checksum_compute(zio_t *zio, enum zio_checksum checksum,
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_t *abd, uint64_t size)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
2008-12-03 20:09:06 +00:00
|
|
|
blkptr_t *bp = zio->io_bp;
|
|
|
|
uint64_t offset = zio->io_offset;
|
2008-11-20 20:01:55 +00:00
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
2010-05-28 20:45:14 +00:00
|
|
|
zio_cksum_t cksum;
|
2016-06-15 22:47:05 +00:00
|
|
|
spa_t *spa = zio->io_spa;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2008-12-03 20:09:06 +00:00
|
|
|
ASSERT((uint_t)checksum < ZIO_CHECKSUM_FUNCTIONS);
|
2008-11-20 20:01:55 +00:00
|
|
|
ASSERT(ci->ci_func[0] != NULL);
|
|
|
|
|
2016-06-15 22:47:05 +00:00
|
|
|
zio_checksum_template_init(checksum, spa);
|
|
|
|
|
|
|
|
if (ci->ci_flags & ZCHECKSUM_FLAG_EMBEDDED) {
|
2010-05-28 20:45:14 +00:00
|
|
|
zio_eck_t *eck;
|
2016-07-22 15:52:49 +00:00
|
|
|
void *data = abd_to_buf(abd);
|
2010-05-28 20:45:14 +00:00
|
|
|
|
|
|
|
if (checksum == ZIO_CHECKSUM_ZILOG2) {
|
|
|
|
zil_chain_t *zilc = data;
|
|
|
|
|
|
|
|
size = P2ROUNDUP_TYPED(zilc->zc_nused, ZIL_MIN_BLKSZ,
|
|
|
|
uint64_t);
|
|
|
|
eck = &zilc->zc_eck;
|
|
|
|
} else {
|
|
|
|
eck = (zio_eck_t *)((char *)data + size) - 1;
|
|
|
|
}
|
2008-12-03 20:09:06 +00:00
|
|
|
if (checksum == ZIO_CHECKSUM_GANG_HEADER)
|
2010-05-28 20:45:14 +00:00
|
|
|
zio_checksum_gang_verifier(&eck->zec_cksum, bp);
|
2008-12-03 20:09:06 +00:00
|
|
|
else if (checksum == ZIO_CHECKSUM_LABEL)
|
2010-05-28 20:45:14 +00:00
|
|
|
zio_checksum_label_verifier(&eck->zec_cksum, offset);
|
2008-12-03 20:09:06 +00:00
|
|
|
else
|
2010-05-28 20:45:14 +00:00
|
|
|
bp->blk_cksum = eck->zec_cksum;
|
|
|
|
eck->zec_magic = ZEC_MAGIC;
|
2016-07-22 15:52:49 +00:00
|
|
|
ci->ci_func[0](abd, size, spa->spa_cksum_tmpls[checksum],
|
2016-06-15 22:47:05 +00:00
|
|
|
&cksum);
|
2010-05-28 20:45:14 +00:00
|
|
|
eck->zec_cksum = cksum;
|
2008-11-20 20:01:55 +00:00
|
|
|
} else {
|
2016-07-22 15:52:49 +00:00
|
|
|
ci->ci_func[0](abd, size, spa->spa_cksum_tmpls[checksum],
|
2016-06-15 22:47:05 +00:00
|
|
|
&bp->blk_cksum);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2016-06-02 04:04:53 +00:00
|
|
|
zio_checksum_error_impl(spa_t *spa, blkptr_t *bp, enum zio_checksum checksum,
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_t *abd, uint64_t size, uint64_t offset, zio_bad_cksum_t *info)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
2016-06-02 04:04:53 +00:00
|
|
|
int byteswap;
|
2016-06-15 22:47:05 +00:00
|
|
|
zio_cksum_t actual_cksum, expected_cksum;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
if (checksum >= ZIO_CHECKSUM_FUNCTIONS || ci->ci_func[0] == NULL)
|
2013-03-08 18:41:28 +00:00
|
|
|
return (SET_ERROR(EINVAL));
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2016-06-15 22:47:05 +00:00
|
|
|
zio_checksum_template_init(checksum, spa);
|
|
|
|
|
|
|
|
if (ci->ci_flags & ZCHECKSUM_FLAG_EMBEDDED) {
|
2010-05-28 20:45:14 +00:00
|
|
|
zio_eck_t *eck;
|
2016-06-02 04:04:53 +00:00
|
|
|
zio_cksum_t verifier;
|
2016-07-22 15:52:49 +00:00
|
|
|
size_t eck_offset;
|
|
|
|
uint64_t data_size = size;
|
|
|
|
void *data = abd_borrow_buf_copy(abd, data_size);
|
2010-05-28 20:45:14 +00:00
|
|
|
|
|
|
|
if (checksum == ZIO_CHECKSUM_ZILOG2) {
|
|
|
|
zil_chain_t *zilc = data;
|
|
|
|
uint64_t nused;
|
|
|
|
|
|
|
|
eck = &zilc->zc_eck;
|
2016-07-22 15:52:49 +00:00
|
|
|
if (eck->zec_magic == ZEC_MAGIC) {
|
2010-05-28 20:45:14 +00:00
|
|
|
nused = zilc->zc_nused;
|
2016-07-22 15:52:49 +00:00
|
|
|
} else if (eck->zec_magic == BSWAP_64(ZEC_MAGIC)) {
|
2010-05-28 20:45:14 +00:00
|
|
|
nused = BSWAP_64(zilc->zc_nused);
|
2016-07-22 15:52:49 +00:00
|
|
|
} else {
|
|
|
|
abd_return_buf(abd, data, data_size);
|
2013-03-08 18:41:28 +00:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2016-07-22 15:52:49 +00:00
|
|
|
}
|
2010-05-28 20:45:14 +00:00
|
|
|
|
2016-07-22 15:52:49 +00:00
|
|
|
if (nused > data_size) {
|
|
|
|
abd_return_buf(abd, data, data_size);
|
2013-03-08 18:41:28 +00:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2016-07-22 15:52:49 +00:00
|
|
|
}
|
2010-05-28 20:45:14 +00:00
|
|
|
|
|
|
|
size = P2ROUNDUP_TYPED(nused, ZIL_MIN_BLKSZ, uint64_t);
|
|
|
|
} else {
|
2016-07-22 15:52:49 +00:00
|
|
|
eck = (zio_eck_t *)((char *)data + data_size) - 1;
|
2010-05-28 20:45:14 +00:00
|
|
|
}
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
if (checksum == ZIO_CHECKSUM_GANG_HEADER)
|
2008-12-03 20:09:06 +00:00
|
|
|
zio_checksum_gang_verifier(&verifier, bp);
|
|
|
|
else if (checksum == ZIO_CHECKSUM_LABEL)
|
|
|
|
zio_checksum_label_verifier(&verifier, offset);
|
|
|
|
else
|
|
|
|
verifier = bp->blk_cksum;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
byteswap = (eck->zec_magic == BSWAP_64(ZEC_MAGIC));
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2008-12-03 20:09:06 +00:00
|
|
|
if (byteswap)
|
|
|
|
byteswap_uint64_array(&verifier, sizeof (zio_cksum_t));
|
|
|
|
|
2016-07-22 15:52:49 +00:00
|
|
|
eck_offset = (size_t)(&eck->zec_cksum) - (size_t)data;
|
2010-05-28 20:45:14 +00:00
|
|
|
expected_cksum = eck->zec_cksum;
|
|
|
|
eck->zec_cksum = verifier;
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_return_buf_copy(abd, data, data_size);
|
|
|
|
|
|
|
|
ci->ci_func[byteswap](abd, size,
|
2016-06-15 22:47:05 +00:00
|
|
|
spa->spa_cksum_tmpls[checksum], &actual_cksum);
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_copy_from_buf_off(abd, &expected_cksum,
|
|
|
|
eck_offset, sizeof (zio_cksum_t));
|
2008-12-03 20:09:06 +00:00
|
|
|
|
2016-06-02 04:04:53 +00:00
|
|
|
if (byteswap) {
|
2008-11-20 20:01:55 +00:00
|
|
|
byteswap_uint64_array(&expected_cksum,
|
|
|
|
sizeof (zio_cksum_t));
|
2016-06-02 04:04:53 +00:00
|
|
|
}
|
2008-11-20 20:01:55 +00:00
|
|
|
} else {
|
2008-12-03 20:09:06 +00:00
|
|
|
byteswap = BP_SHOULD_BYTESWAP(bp);
|
|
|
|
expected_cksum = bp->blk_cksum;
|
2016-07-22 15:52:49 +00:00
|
|
|
ci->ci_func[byteswap](abd, size,
|
2016-06-15 22:47:05 +00:00
|
|
|
spa->spa_cksum_tmpls[checksum], &actual_cksum);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-02 04:04:53 +00:00
|
|
|
if (info != NULL) {
|
|
|
|
info->zbc_expected = expected_cksum;
|
|
|
|
info->zbc_actual = actual_cksum;
|
|
|
|
info->zbc_checksum_name = ci->ci_name;
|
|
|
|
info->zbc_byteswapped = byteswap;
|
|
|
|
info->zbc_injected = 0;
|
|
|
|
info->zbc_has_cksum = 1;
|
|
|
|
}
|
2010-05-28 20:45:14 +00:00
|
|
|
|
2008-12-03 20:09:06 +00:00
|
|
|
if (!ZIO_CHECKSUM_EQUAL(actual_cksum, expected_cksum))
|
2013-03-08 18:41:28 +00:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2016-06-02 04:04:53 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
zio_checksum_error(zio_t *zio, zio_bad_cksum_t *info)
|
|
|
|
{
|
|
|
|
blkptr_t *bp = zio->io_bp;
|
|
|
|
uint_t checksum = (bp == NULL ? zio->io_prop.zp_checksum :
|
|
|
|
(BP_IS_GANG(bp) ? ZIO_CHECKSUM_GANG_HEADER : BP_GET_CHECKSUM(bp)));
|
|
|
|
int error;
|
|
|
|
uint64_t size = (bp == NULL ? zio->io_size :
|
|
|
|
(BP_IS_GANG(bp) ? SPA_GANGBLOCKSIZE : BP_GET_PSIZE(bp)));
|
|
|
|
uint64_t offset = zio->io_offset;
|
2016-07-22 15:52:49 +00:00
|
|
|
abd_t *data = zio->io_abd;
|
2016-06-02 04:04:53 +00:00
|
|
|
spa_t *spa = zio->io_spa;
|
|
|
|
|
|
|
|
error = zio_checksum_error_impl(spa, bp, checksum, data, size,
|
|
|
|
offset, info);
|
2010-05-28 20:45:14 +00:00
|
|
|
|
2017-01-31 01:12:58 +00:00
|
|
|
if (zio_injection_enabled && error == 0 && zio->io_error == 0) {
|
|
|
|
error = zio_handle_fault_injection(zio, ECKSUM);
|
|
|
|
if (error != 0)
|
|
|
|
info->zbc_injected = 1;
|
2010-05-28 20:45:14 +00:00
|
|
|
}
|
2017-01-31 01:12:58 +00:00
|
|
|
|
2016-06-02 04:04:53 +00:00
|
|
|
return (error);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
2016-06-15 22:47:05 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Called by a spa_t that's about to be deallocated. This steps through
|
|
|
|
* all of the checksum context templates and deallocates any that were
|
|
|
|
* initialized using the algorithm-specific template init function.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
zio_checksum_templates_free(spa_t *spa)
|
|
|
|
{
|
|
|
|
enum zio_checksum checksum;
|
|
|
|
for (checksum = 0; checksum < ZIO_CHECKSUM_FUNCTIONS;
|
|
|
|
checksum++) {
|
|
|
|
if (spa->spa_cksum_tmpls[checksum] != NULL) {
|
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
|
|
|
|
|
|
|
VERIFY(ci->ci_tmpl_free != NULL);
|
|
|
|
ci->ci_tmpl_free(spa->spa_cksum_tmpls[checksum]);
|
|
|
|
spa->spa_cksum_tmpls[checksum] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|