2008-11-20 23:01:55 +03: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
|
2022-07-12 00:16:13 +03:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2008-11-20 23:01:55 +03:00
|
|
|
* 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-29 00:45:14 +04:00
|
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
2016-07-22 18:52:49 +03:00
|
|
|
* Copyright (c) 2013, 2016 by Delphix. All rights reserved.
|
2017-01-31 04:12:58 +03:00
|
|
|
* Copyright 2013 Saso Kiselkov. All rights reserved.
|
2008-11-20 23:01:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/zfs_context.h>
|
|
|
|
#include <sys/spa.h>
|
2016-06-16 01:47:05 +03:00
|
|
|
#include <sys/spa_impl.h>
|
2008-11-20 23:01:55 +03:00
|
|
|
#include <sys/zio.h>
|
|
|
|
#include <sys/zio_checksum.h>
|
2010-05-29 00:45:14 +04:00
|
|
|
#include <sys/zil.h>
|
2016-07-22 18:52:49 +03:00
|
|
|
#include <sys/abd.h>
|
2010-05-29 00:45:14 +04:00
|
|
|
#include <zfs_fletcher.h>
|
2008-11-20 23:01:55 +03: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-29 00:45:14 +04: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 23:01:55 +03: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-29 00:45:14 +04:00
|
|
|
* compute via the checksum function specified by BP_GET_CHECKSUM(bp).
|
2016-06-16 01:47:05 +03: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 23:01:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static void
|
2016-07-22 18:52:49 +03:00
|
|
|
abd_checksum_off(abd_t *abd, uint64_t size,
|
2017-01-21 00:17:55 +03:00
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
2008-11-20 23:01:55 +03:00
|
|
|
{
|
2021-12-12 18:06:44 +03:00
|
|
|
(void) abd, (void) size, (void) ctx_template;
|
2008-11-20 23:01:55 +03:00
|
|
|
ZIO_SET_CHECKSUM(zcp, 0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2020-06-15 21:30:37 +03:00
|
|
|
static void
|
2016-07-22 18:52:49 +03:00
|
|
|
abd_fletcher_2_native(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2021-12-12 18:06:44 +03:00
|
|
|
(void) ctx_template;
|
2016-07-22 18:52:49 +03:00
|
|
|
fletcher_init(zcp);
|
|
|
|
(void) abd_iterate_func(abd, 0, size,
|
|
|
|
fletcher_2_incremental_native, zcp);
|
|
|
|
}
|
|
|
|
|
2020-06-15 21:30:37 +03:00
|
|
|
static void
|
2016-07-22 18:52:49 +03:00
|
|
|
abd_fletcher_2_byteswap(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2021-12-12 18:06:44 +03:00
|
|
|
(void) ctx_template;
|
2016-07-22 18:52:49 +03:00
|
|
|
fletcher_init(zcp);
|
|
|
|
(void) abd_iterate_func(abd, 0, size,
|
|
|
|
fletcher_2_incremental_byteswap, zcp);
|
|
|
|
}
|
|
|
|
|
2017-02-01 20:34:22 +03: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 18:52:49 +03:00
|
|
|
void
|
|
|
|
abd_fletcher_4_native(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2021-12-12 18:06:44 +03:00
|
|
|
(void) ctx_template;
|
2017-02-01 20:34:22 +03: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 18:52:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
abd_fletcher_4_byteswap(abd_t *abd, uint64_t size,
|
|
|
|
const void *ctx_template, zio_cksum_t *zcp)
|
|
|
|
{
|
2021-12-12 18:06:44 +03:00
|
|
|
(void) ctx_template;
|
2017-02-01 20:34:22 +03: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 18:52:49 +03:00
|
|
|
}
|
|
|
|
|
2022-10-01 01:34:39 +03:00
|
|
|
zio_checksum_info_t zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS] = {
|
2016-06-16 01:47:05 +03:00
|
|
|
{{NULL, NULL}, NULL, NULL, 0, "inherit"},
|
|
|
|
{{NULL, NULL}, NULL, NULL, 0, "on"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_checksum_off, abd_checksum_off},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, 0, "off"},
|
Add generic implementation handling and SHA2 impl
The skeleton file module/icp/include/generic_impl.c can be used for
iterating over different implementations of algorithms.
It is used by SHA256, SHA512 and BLAKE3 currently.
The Solaris SHA2 implementation got replaced with a version which is
based on public domain code of cppcrypto v0.10.
These assembly files are taken from current openssl master:
- sha256-x86_64.S: x64, SSSE3, AVX, AVX2, SHA-NI (x86_64)
- sha512-x86_64.S: x64, AVX, AVX2 (x86_64)
- sha256-armv7.S: ARMv7, NEON, ARMv8-CE (arm)
- sha512-armv7.S: ARMv7, NEON (arm)
- sha256-armv8.S: ARMv7, NEON, ARMv8-CE (aarch64)
- sha512-armv8.S: ARMv7, ARMv8-CE (aarch64)
- sha256-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha512-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha256-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
- sha512-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
Tested-by: Rich Ercolani <rincebrain@gmail.com>
Tested-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #13741
2023-03-01 11:40:28 +03:00
|
|
|
{{abd_checksum_sha256, abd_checksum_sha256},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_EMBEDDED,
|
|
|
|
"label"},
|
Add generic implementation handling and SHA2 impl
The skeleton file module/icp/include/generic_impl.c can be used for
iterating over different implementations of algorithms.
It is used by SHA256, SHA512 and BLAKE3 currently.
The Solaris SHA2 implementation got replaced with a version which is
based on public domain code of cppcrypto v0.10.
These assembly files are taken from current openssl master:
- sha256-x86_64.S: x64, SSSE3, AVX, AVX2, SHA-NI (x86_64)
- sha512-x86_64.S: x64, AVX, AVX2 (x86_64)
- sha256-armv7.S: ARMv7, NEON, ARMv8-CE (arm)
- sha512-armv7.S: ARMv7, NEON (arm)
- sha256-armv8.S: ARMv7, NEON, ARMv8-CE (aarch64)
- sha512-armv8.S: ARMv7, ARMv8-CE (aarch64)
- sha256-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha512-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha256-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
- sha512-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
Tested-by: Rich Ercolani <rincebrain@gmail.com>
Tested-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #13741
2023-03-01 11:40:28 +03:00
|
|
|
{{abd_checksum_sha256, abd_checksum_sha256},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_EMBEDDED,
|
|
|
|
"gang_header"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_fletcher_2_native, abd_fletcher_2_byteswap},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_EMBEDDED, "zilog"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_fletcher_2_native, abd_fletcher_2_byteswap},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, 0, "fletcher2"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_fletcher_4_native, abd_fletcher_4_byteswap},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA, "fletcher4"},
|
Add generic implementation handling and SHA2 impl
The skeleton file module/icp/include/generic_impl.c can be used for
iterating over different implementations of algorithms.
It is used by SHA256, SHA512 and BLAKE3 currently.
The Solaris SHA2 implementation got replaced with a version which is
based on public domain code of cppcrypto v0.10.
These assembly files are taken from current openssl master:
- sha256-x86_64.S: x64, SSSE3, AVX, AVX2, SHA-NI (x86_64)
- sha512-x86_64.S: x64, AVX, AVX2 (x86_64)
- sha256-armv7.S: ARMv7, NEON, ARMv8-CE (arm)
- sha512-armv7.S: ARMv7, NEON (arm)
- sha256-armv8.S: ARMv7, NEON, ARMv8-CE (aarch64)
- sha512-armv8.S: ARMv7, ARMv8-CE (aarch64)
- sha256-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha512-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha256-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
- sha512-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
Tested-by: Rich Ercolani <rincebrain@gmail.com>
Tested-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #13741
2023-03-01 11:40:28 +03:00
|
|
|
{{abd_checksum_sha256, abd_checksum_sha256},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "sha256"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_fletcher_4_native, abd_fletcher_4_byteswap},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_EMBEDDED, "zilog2"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_checksum_off, abd_checksum_off},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, 0, "noparity"},
|
Add generic implementation handling and SHA2 impl
The skeleton file module/icp/include/generic_impl.c can be used for
iterating over different implementations of algorithms.
It is used by SHA256, SHA512 and BLAKE3 currently.
The Solaris SHA2 implementation got replaced with a version which is
based on public domain code of cppcrypto v0.10.
These assembly files are taken from current openssl master:
- sha256-x86_64.S: x64, SSSE3, AVX, AVX2, SHA-NI (x86_64)
- sha512-x86_64.S: x64, AVX, AVX2 (x86_64)
- sha256-armv7.S: ARMv7, NEON, ARMv8-CE (arm)
- sha512-armv7.S: ARMv7, NEON (arm)
- sha256-armv8.S: ARMv7, NEON, ARMv8-CE (aarch64)
- sha512-armv8.S: ARMv7, ARMv8-CE (aarch64)
- sha256-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha512-ppc.S: Generic PPC64 LE/BE (ppc64)
- sha256-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
- sha512-p8.S: Power8 ISA Version 2.07 LE/BE (ppc64)
Tested-by: Rich Ercolani <rincebrain@gmail.com>
Tested-by: Sebastian Gottschall <s.gottschall@dd-wrt.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Closes #13741
2023-03-01 11:40:28 +03:00
|
|
|
{{abd_checksum_sha512_native, abd_checksum_sha512_byteswap},
|
2016-06-16 01:47:05 +03:00
|
|
|
NULL, NULL, ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "sha512"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_checksum_skein_native, abd_checksum_skein_byteswap},
|
|
|
|
abd_checksum_skein_tmpl_init, abd_checksum_skein_tmpl_free,
|
2016-06-16 01:47:05 +03:00
|
|
|
ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_SALTED | ZCHECKSUM_FLAG_NOPWRITE, "skein"},
|
2016-07-22 18:52:49 +03:00
|
|
|
{{abd_checksum_edonr_native, abd_checksum_edonr_byteswap},
|
|
|
|
abd_checksum_edonr_tmpl_init, abd_checksum_edonr_tmpl_free,
|
2016-06-16 01:47:05 +03:00
|
|
|
ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_SALTED |
|
|
|
|
ZCHECKSUM_FLAG_NOPWRITE, "edonr"},
|
Introduce BLAKE3 checksums as an OpenZFS feature
This commit adds BLAKE3 checksums to OpenZFS, it has similar
performance to Edon-R, but without the caveats around the latter.
Homepage of BLAKE3: https://github.com/BLAKE3-team/BLAKE3
Wikipedia: https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE3
Short description of Wikipedia:
BLAKE3 is a cryptographic hash function based on Bao and BLAKE2,
created by Jack O'Connor, Jean-Philippe Aumasson, Samuel Neves, and
Zooko Wilcox-O'Hearn. It was announced on January 9, 2020, at Real
World Crypto. BLAKE3 is a single algorithm with many desirable
features (parallelism, XOF, KDF, PRF and MAC), in contrast to BLAKE
and BLAKE2, which are algorithm families with multiple variants.
BLAKE3 has a binary tree structure, so it supports a practically
unlimited degree of parallelism (both SIMD and multithreading) given
enough input. The official Rust and C implementations are
dual-licensed as public domain (CC0) and the Apache License.
Along with adding the BLAKE3 hash into the OpenZFS infrastructure a
new benchmarking file called chksum_bench was introduced. When read
it reports the speed of the available checksum functions.
On Linux: cat /proc/spl/kstat/zfs/chksum_bench
On FreeBSD: sysctl kstat.zfs.misc.chksum_bench
This is an example output of an i3-1005G1 test system with Debian 11:
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1196 1602 1761 1749 1762 1759 1751
skein-generic 546 591 608 615 619 612 616
sha256-generic 240 300 316 314 304 285 276
sha512-generic 353 441 467 476 472 467 426
blake3-generic 308 313 313 313 312 313 312
blake3-sse2 402 1289 1423 1446 1432 1458 1413
blake3-sse41 427 1470 1625 1704 1679 1607 1629
blake3-avx2 428 1920 3095 3343 3356 3318 3204
blake3-avx512 473 2687 4905 5836 5844 5643 5374
Output on Debian 5.10.0-10-amd64 system: (Ryzen 7 5800X)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1840 2458 2665 2719 2711 2723 2693
skein-generic 870 966 996 992 1003 1005 1009
sha256-generic 415 442 453 455 457 457 457
sha512-generic 608 690 711 718 719 720 721
blake3-generic 301 313 311 309 309 310 310
blake3-sse2 343 1865 2124 2188 2180 2181 2186
blake3-sse41 364 2091 2396 2509 2463 2482 2488
blake3-avx2 365 2590 4399 4971 4915 4802 4764
Output on Debian 5.10.0-9-powerpc64le system: (POWER 9)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1213 1703 1889 1918 1957 1902 1907
skein-generic 434 492 520 522 511 525 525
sha256-generic 167 183 187 188 188 187 188
sha512-generic 186 216 222 221 225 224 224
blake3-generic 153 152 154 153 151 153 153
blake3-sse2 391 1170 1366 1406 1428 1426 1414
blake3-sse41 352 1049 1212 1174 1262 1258 1259
Output on Debian 5.10.0-11-arm64 system: (Pi400)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 487 603 629 639 643 641 641
skein-generic 271 299 303 308 309 309 307
sha256-generic 117 127 128 130 130 129 130
sha512-generic 145 165 170 172 173 174 175
blake3-generic 81 29 71 89 89 89 89
blake3-sse2 112 323 368 379 380 371 374
blake3-sse41 101 315 357 368 369 364 360
Structurally, the new code is mainly split into these parts:
- 1x cross platform generic c variant: blake3_generic.c
- 4x assembly for X86-64 (SSE2, SSE4.1, AVX2, AVX512)
- 2x assembly for ARMv8 (NEON converted from SSE2)
- 2x assembly for PPC64-LE (POWER8 converted from SSE2)
- one file for switching between the implementations
Note the PPC64 assembly requires the VSX instruction set and the
kfpu_begin() / kfpu_end() calls on PowerPC were updated accordingly.
Reviewed-by: Felix Dörre <felix@dogcraft.de>
Reviewed-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Co-authored-by: Rich Ercolani <rincebrain@gmail.com>
Closes #10058
Closes #12918
2022-06-09 01:55:57 +03:00
|
|
|
{{abd_checksum_blake3_native, abd_checksum_blake3_byteswap},
|
|
|
|
abd_checksum_blake3_tmpl_init, abd_checksum_blake3_tmpl_free,
|
|
|
|
ZCHECKSUM_FLAG_METADATA | ZCHECKSUM_FLAG_DEDUP |
|
|
|
|
ZCHECKSUM_FLAG_SALTED | ZCHECKSUM_FLAG_NOPWRITE, "blake3"},
|
2008-11-20 23:01:55 +03:00
|
|
|
};
|
|
|
|
|
2016-01-26 10:41:11 +03:00
|
|
|
/*
|
|
|
|
* The flag corresponding to the "verify" in dedup=[checksum,]verify
|
|
|
|
* must be cleared first, so callers should use ZIO_CHECKSUM_MASK.
|
|
|
|
*/
|
2016-06-16 01:47:05 +03:00
|
|
|
spa_feature_t
|
|
|
|
zio_checksum_to_feature(enum zio_checksum cksum)
|
|
|
|
{
|
2016-01-26 10:41:11 +03:00
|
|
|
VERIFY((cksum & ~ZIO_CHECKSUM_MASK) == 0);
|
|
|
|
|
2016-06-16 01:47:05 +03:00
|
|
|
switch (cksum) {
|
Introduce BLAKE3 checksums as an OpenZFS feature
This commit adds BLAKE3 checksums to OpenZFS, it has similar
performance to Edon-R, but without the caveats around the latter.
Homepage of BLAKE3: https://github.com/BLAKE3-team/BLAKE3
Wikipedia: https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE3
Short description of Wikipedia:
BLAKE3 is a cryptographic hash function based on Bao and BLAKE2,
created by Jack O'Connor, Jean-Philippe Aumasson, Samuel Neves, and
Zooko Wilcox-O'Hearn. It was announced on January 9, 2020, at Real
World Crypto. BLAKE3 is a single algorithm with many desirable
features (parallelism, XOF, KDF, PRF and MAC), in contrast to BLAKE
and BLAKE2, which are algorithm families with multiple variants.
BLAKE3 has a binary tree structure, so it supports a practically
unlimited degree of parallelism (both SIMD and multithreading) given
enough input. The official Rust and C implementations are
dual-licensed as public domain (CC0) and the Apache License.
Along with adding the BLAKE3 hash into the OpenZFS infrastructure a
new benchmarking file called chksum_bench was introduced. When read
it reports the speed of the available checksum functions.
On Linux: cat /proc/spl/kstat/zfs/chksum_bench
On FreeBSD: sysctl kstat.zfs.misc.chksum_bench
This is an example output of an i3-1005G1 test system with Debian 11:
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1196 1602 1761 1749 1762 1759 1751
skein-generic 546 591 608 615 619 612 616
sha256-generic 240 300 316 314 304 285 276
sha512-generic 353 441 467 476 472 467 426
blake3-generic 308 313 313 313 312 313 312
blake3-sse2 402 1289 1423 1446 1432 1458 1413
blake3-sse41 427 1470 1625 1704 1679 1607 1629
blake3-avx2 428 1920 3095 3343 3356 3318 3204
blake3-avx512 473 2687 4905 5836 5844 5643 5374
Output on Debian 5.10.0-10-amd64 system: (Ryzen 7 5800X)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1840 2458 2665 2719 2711 2723 2693
skein-generic 870 966 996 992 1003 1005 1009
sha256-generic 415 442 453 455 457 457 457
sha512-generic 608 690 711 718 719 720 721
blake3-generic 301 313 311 309 309 310 310
blake3-sse2 343 1865 2124 2188 2180 2181 2186
blake3-sse41 364 2091 2396 2509 2463 2482 2488
blake3-avx2 365 2590 4399 4971 4915 4802 4764
Output on Debian 5.10.0-9-powerpc64le system: (POWER 9)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 1213 1703 1889 1918 1957 1902 1907
skein-generic 434 492 520 522 511 525 525
sha256-generic 167 183 187 188 188 187 188
sha512-generic 186 216 222 221 225 224 224
blake3-generic 153 152 154 153 151 153 153
blake3-sse2 391 1170 1366 1406 1428 1426 1414
blake3-sse41 352 1049 1212 1174 1262 1258 1259
Output on Debian 5.10.0-11-arm64 system: (Pi400)
implementation 1k 4k 16k 64k 256k 1m 4m
edonr-generic 487 603 629 639 643 641 641
skein-generic 271 299 303 308 309 309 307
sha256-generic 117 127 128 130 130 129 130
sha512-generic 145 165 170 172 173 174 175
blake3-generic 81 29 71 89 89 89 89
blake3-sse2 112 323 368 379 380 371 374
blake3-sse41 101 315 357 368 369 364 360
Structurally, the new code is mainly split into these parts:
- 1x cross platform generic c variant: blake3_generic.c
- 4x assembly for X86-64 (SSE2, SSE4.1, AVX2, AVX512)
- 2x assembly for ARMv8 (NEON converted from SSE2)
- 2x assembly for PPC64-LE (POWER8 converted from SSE2)
- one file for switching between the implementations
Note the PPC64 assembly requires the VSX instruction set and the
kfpu_begin() / kfpu_end() calls on PowerPC were updated accordingly.
Reviewed-by: Felix Dörre <felix@dogcraft.de>
Reviewed-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tino Reichardt <milky-zfs@mcmilk.de>
Co-authored-by: Rich Ercolani <rincebrain@gmail.com>
Closes #10058
Closes #12918
2022-06-09 01:55:57 +03:00
|
|
|
case ZIO_CHECKSUM_BLAKE3:
|
|
|
|
return (SPA_FEATURE_BLAKE3);
|
2016-06-16 01:47:05 +03:00
|
|
|
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-29 00:45:14 +04:00
|
|
|
enum zio_checksum
|
|
|
|
zio_checksum_select(enum zio_checksum child, enum zio_checksum parent)
|
2008-11-20 23:01:55 +03: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-29 00:45:14 +04: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-16 01:47:05 +03:00
|
|
|
ASSERT((zio_checksum_table[child & ZIO_CHECKSUM_MASK].ci_flags &
|
|
|
|
ZCHECKSUM_FLAG_DEDUP) ||
|
2010-05-29 00:45:14 +04:00
|
|
|
(child & ZIO_CHECKSUM_VERIFY) || child == ZIO_CHECKSUM_OFF);
|
|
|
|
|
|
|
|
return (child);
|
|
|
|
}
|
|
|
|
|
2008-12-03 23:09:06 +03: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
|
2017-01-05 22:10:07 +03:00
|
|
|
zio_checksum_gang_verifier(zio_cksum_t *zcp, const blkptr_t *bp)
|
2008-12-03 23:09:06 +03:00
|
|
|
{
|
2014-06-06 01:19:08 +04:00
|
|
|
const dva_t *dva = BP_IDENTITY(bp);
|
2024-03-26 01:01:54 +03:00
|
|
|
uint64_t txg = BP_GET_BIRTH(bp);
|
2008-12-03 23:09:06 +03: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-16 01:47:05 +03: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);
|
|
|
|
}
|
|
|
|
|
2019-09-03 03:56:41 +03:00
|
|
|
/* convenience function to update a checksum to accommodate an encryption MAC */
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
static void
|
|
|
|
zio_checksum_handle_crypt(zio_cksum_t *cksum, zio_cksum_t *saved, boolean_t xor)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Weak checksums do not have their entropy spread evenly
|
|
|
|
* across the bits of the checksum. Therefore, when truncating
|
|
|
|
* a weak checksum we XOR the first 2 words with the last 2 so
|
|
|
|
* that we don't "lose" any entropy unnecessarily.
|
|
|
|
*/
|
|
|
|
if (xor) {
|
|
|
|
cksum->zc_word[0] ^= cksum->zc_word[2];
|
|
|
|
cksum->zc_word[1] ^= cksum->zc_word[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
cksum->zc_word[2] = saved->zc_word[2];
|
|
|
|
cksum->zc_word[3] = saved->zc_word[3];
|
|
|
|
}
|
|
|
|
|
2008-11-20 23:01:55 +03:00
|
|
|
/*
|
|
|
|
* Generate the checksum.
|
|
|
|
*/
|
|
|
|
void
|
2008-12-03 23:09:06 +03:00
|
|
|
zio_checksum_compute(zio_t *zio, enum zio_checksum checksum,
|
2016-07-22 18:52:49 +03:00
|
|
|
abd_t *abd, uint64_t size)
|
2008-11-20 23:01:55 +03:00
|
|
|
{
|
2017-01-05 22:10:07 +03:00
|
|
|
static const uint64_t zec_magic = ZEC_MAGIC;
|
2008-12-03 23:09:06 +03:00
|
|
|
blkptr_t *bp = zio->io_bp;
|
|
|
|
uint64_t offset = zio->io_offset;
|
2008-11-20 23:01:55 +03:00
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
zio_cksum_t cksum, saved;
|
2016-06-16 01:47:05 +03:00
|
|
|
spa_t *spa = zio->io_spa;
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
boolean_t insecure = (ci->ci_flags & ZCHECKSUM_FLAG_DEDUP) == 0;
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2008-12-03 23:09:06 +03:00
|
|
|
ASSERT((uint_t)checksum < ZIO_CHECKSUM_FUNCTIONS);
|
2008-11-20 23:01:55 +03:00
|
|
|
ASSERT(ci->ci_func[0] != NULL);
|
|
|
|
|
2016-06-16 01:47:05 +03:00
|
|
|
zio_checksum_template_init(checksum, spa);
|
|
|
|
|
|
|
|
if (ci->ci_flags & ZCHECKSUM_FLAG_EMBEDDED) {
|
2017-01-05 22:10:07 +03:00
|
|
|
zio_eck_t eck;
|
|
|
|
size_t eck_offset;
|
2010-05-29 00:45:14 +04:00
|
|
|
|
2022-02-25 16:26:54 +03:00
|
|
|
memset(&saved, 0, sizeof (zio_cksum_t));
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
|
2010-05-29 00:45:14 +04:00
|
|
|
if (checksum == ZIO_CHECKSUM_ZILOG2) {
|
2017-01-05 22:10:07 +03:00
|
|
|
zil_chain_t zilc;
|
|
|
|
abd_copy_to_buf(&zilc, abd, sizeof (zil_chain_t));
|
2010-05-29 00:45:14 +04:00
|
|
|
|
2023-11-29 00:35:14 +03:00
|
|
|
uint64_t nused = P2ROUNDUP_TYPED(zilc.zc_nused,
|
|
|
|
ZIL_MIN_BLKSZ, uint64_t);
|
|
|
|
ASSERT3U(size, >=, nused);
|
|
|
|
size = nused;
|
2017-01-05 22:10:07 +03:00
|
|
|
eck = zilc.zc_eck;
|
|
|
|
eck_offset = offsetof(zil_chain_t, zc_eck);
|
2010-05-29 00:45:14 +04:00
|
|
|
} else {
|
2023-11-29 00:35:14 +03:00
|
|
|
ASSERT3U(size, >=, sizeof (zio_eck_t));
|
2017-01-05 22:10:07 +03:00
|
|
|
eck_offset = size - sizeof (zio_eck_t);
|
|
|
|
abd_copy_to_buf_off(&eck, abd, eck_offset,
|
|
|
|
sizeof (zio_eck_t));
|
2010-05-29 00:45:14 +04:00
|
|
|
}
|
2017-01-05 22:10:07 +03:00
|
|
|
|
|
|
|
if (checksum == ZIO_CHECKSUM_GANG_HEADER) {
|
|
|
|
zio_checksum_gang_verifier(&eck.zec_cksum, bp);
|
|
|
|
} else if (checksum == ZIO_CHECKSUM_LABEL) {
|
|
|
|
zio_checksum_label_verifier(&eck.zec_cksum, offset);
|
|
|
|
} else {
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
saved = eck.zec_cksum;
|
|
|
|
eck.zec_cksum = bp->blk_cksum;
|
2017-01-05 22:10:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
abd_copy_from_buf_off(abd, &zec_magic,
|
|
|
|
eck_offset + offsetof(zio_eck_t, zec_magic),
|
|
|
|
sizeof (zec_magic));
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
abd_copy_from_buf_off(abd, &eck.zec_cksum,
|
|
|
|
eck_offset + offsetof(zio_eck_t, zec_cksum),
|
|
|
|
sizeof (zio_cksum_t));
|
2017-01-05 22:10:07 +03:00
|
|
|
|
2016-07-22 18:52:49 +03:00
|
|
|
ci->ci_func[0](abd, size, spa->spa_cksum_tmpls[checksum],
|
2016-06-16 01:47:05 +03:00
|
|
|
&cksum);
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
if (bp != NULL && BP_USES_CRYPT(bp) &&
|
|
|
|
BP_GET_TYPE(bp) != DMU_OT_OBJSET)
|
|
|
|
zio_checksum_handle_crypt(&cksum, &saved, insecure);
|
2017-01-05 22:10:07 +03:00
|
|
|
|
|
|
|
abd_copy_from_buf_off(abd, &cksum,
|
|
|
|
eck_offset + offsetof(zio_eck_t, zec_cksum),
|
|
|
|
sizeof (zio_cksum_t));
|
2008-11-20 23:01:55 +03:00
|
|
|
} else {
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
saved = bp->blk_cksum;
|
2016-07-22 18:52:49 +03:00
|
|
|
ci->ci_func[0](abd, size, spa->spa_cksum_tmpls[checksum],
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
&cksum);
|
|
|
|
if (BP_USES_CRYPT(bp) && BP_GET_TYPE(bp) != DMU_OT_OBJSET)
|
|
|
|
zio_checksum_handle_crypt(&cksum, &saved, insecure);
|
|
|
|
bp->blk_cksum = cksum;
|
2008-11-20 23:01:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2017-01-05 22:10:07 +03:00
|
|
|
zio_checksum_error_impl(spa_t *spa, const blkptr_t *bp,
|
|
|
|
enum zio_checksum checksum, abd_t *abd, uint64_t size, uint64_t offset,
|
|
|
|
zio_bad_cksum_t *info)
|
2008-11-20 23:01:55 +03:00
|
|
|
{
|
|
|
|
zio_checksum_info_t *ci = &zio_checksum_table[checksum];
|
2016-06-16 01:47:05 +03:00
|
|
|
zio_cksum_t actual_cksum, expected_cksum;
|
2017-01-05 22:10:07 +03:00
|
|
|
zio_eck_t eck;
|
|
|
|
int byteswap;
|
2008-11-20 23:01:55 +03:00
|
|
|
|
|
|
|
if (checksum >= ZIO_CHECKSUM_FUNCTIONS || ci->ci_func[0] == NULL)
|
2013-03-08 22:41:28 +04:00
|
|
|
return (SET_ERROR(EINVAL));
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2016-06-16 01:47:05 +03:00
|
|
|
zio_checksum_template_init(checksum, spa);
|
|
|
|
|
2023-02-07 10:38:45 +03:00
|
|
|
IMPLY(bp == NULL, ci->ci_flags & ZCHECKSUM_FLAG_EMBEDDED);
|
|
|
|
IMPLY(bp == NULL, checksum == ZIO_CHECKSUM_LABEL);
|
|
|
|
|
2016-06-16 01:47:05 +03:00
|
|
|
if (ci->ci_flags & ZCHECKSUM_FLAG_EMBEDDED) {
|
2016-06-02 07:04:53 +03:00
|
|
|
zio_cksum_t verifier;
|
2016-07-22 18:52:49 +03:00
|
|
|
size_t eck_offset;
|
2010-05-29 00:45:14 +04:00
|
|
|
|
|
|
|
if (checksum == ZIO_CHECKSUM_ZILOG2) {
|
2017-01-05 22:10:07 +03:00
|
|
|
zil_chain_t zilc;
|
2010-05-29 00:45:14 +04:00
|
|
|
uint64_t nused;
|
|
|
|
|
2017-01-05 22:10:07 +03:00
|
|
|
abd_copy_to_buf(&zilc, abd, sizeof (zil_chain_t));
|
|
|
|
|
|
|
|
eck = zilc.zc_eck;
|
|
|
|
eck_offset = offsetof(zil_chain_t, zc_eck) +
|
|
|
|
offsetof(zio_eck_t, zec_cksum);
|
|
|
|
|
|
|
|
if (eck.zec_magic == ZEC_MAGIC) {
|
|
|
|
nused = zilc.zc_nused;
|
|
|
|
} else if (eck.zec_magic == BSWAP_64(ZEC_MAGIC)) {
|
|
|
|
nused = BSWAP_64(zilc.zc_nused);
|
2016-07-22 18:52:49 +03:00
|
|
|
} else {
|
2013-03-08 22:41:28 +04:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2016-07-22 18:52:49 +03:00
|
|
|
}
|
2010-05-29 00:45:14 +04:00
|
|
|
|
2023-11-29 00:35:14 +03:00
|
|
|
nused = P2ROUNDUP_TYPED(nused, ZIL_MIN_BLKSZ, uint64_t);
|
|
|
|
if (size < nused)
|
2013-03-08 22:41:28 +04:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2023-11-29 00:35:14 +03:00
|
|
|
size = nused;
|
2010-05-29 00:45:14 +04:00
|
|
|
} else {
|
2023-11-29 00:35:14 +03:00
|
|
|
if (size < sizeof (zio_eck_t))
|
|
|
|
return (SET_ERROR(ECKSUM));
|
2017-01-05 22:10:07 +03:00
|
|
|
eck_offset = size - sizeof (zio_eck_t);
|
|
|
|
abd_copy_to_buf_off(&eck, abd, eck_offset,
|
|
|
|
sizeof (zio_eck_t));
|
|
|
|
eck_offset += offsetof(zio_eck_t, zec_cksum);
|
2010-05-29 00:45:14 +04:00
|
|
|
}
|
|
|
|
|
2008-11-20 23:01:55 +03:00
|
|
|
if (checksum == ZIO_CHECKSUM_GANG_HEADER)
|
2008-12-03 23:09:06 +03:00
|
|
|
zio_checksum_gang_verifier(&verifier, bp);
|
|
|
|
else if (checksum == ZIO_CHECKSUM_LABEL)
|
|
|
|
zio_checksum_label_verifier(&verifier, offset);
|
|
|
|
else
|
|
|
|
verifier = bp->blk_cksum;
|
|
|
|
|
2017-01-05 22:10:07 +03:00
|
|
|
byteswap = (eck.zec_magic == BSWAP_64(ZEC_MAGIC));
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2008-12-03 23:09:06 +03:00
|
|
|
if (byteswap)
|
|
|
|
byteswap_uint64_array(&verifier, sizeof (zio_cksum_t));
|
|
|
|
|
2017-01-05 22:10:07 +03:00
|
|
|
expected_cksum = eck.zec_cksum;
|
|
|
|
|
|
|
|
abd_copy_from_buf_off(abd, &verifier, eck_offset,
|
|
|
|
sizeof (zio_cksum_t));
|
2016-07-22 18:52:49 +03:00
|
|
|
|
|
|
|
ci->ci_func[byteswap](abd, size,
|
2016-06-16 01:47:05 +03:00
|
|
|
spa->spa_cksum_tmpls[checksum], &actual_cksum);
|
2017-01-05 22:10:07 +03:00
|
|
|
|
|
|
|
abd_copy_from_buf_off(abd, &expected_cksum, eck_offset,
|
|
|
|
sizeof (zio_cksum_t));
|
2008-12-03 23:09:06 +03:00
|
|
|
|
2016-06-02 07:04:53 +03:00
|
|
|
if (byteswap) {
|
2008-11-20 23:01:55 +03:00
|
|
|
byteswap_uint64_array(&expected_cksum,
|
|
|
|
sizeof (zio_cksum_t));
|
2016-06-02 07:04:53 +03:00
|
|
|
}
|
2008-11-20 23:01:55 +03:00
|
|
|
} else {
|
2008-12-03 23:09:06 +03:00
|
|
|
byteswap = BP_SHOULD_BYTESWAP(bp);
|
|
|
|
expected_cksum = bp->blk_cksum;
|
2016-07-22 18:52:49 +03:00
|
|
|
ci->ci_func[byteswap](abd, size,
|
2016-06-16 01:47:05 +03:00
|
|
|
spa->spa_cksum_tmpls[checksum], &actual_cksum);
|
2008-11-20 23:01:55 +03:00
|
|
|
}
|
|
|
|
|
Native Encryption for ZFS on Linux
This change incorporates three major pieces:
The first change is a keystore that manages wrapping
and encryption keys for encrypted datasets. These
commands mostly involve manipulating the new
DSL Crypto Key ZAP Objects that live in the MOS. Each
encrypted dataset has its own DSL Crypto Key that is
protected with a user's key. This level of indirection
allows users to change their keys without re-encrypting
their entire datasets. The change implements the new
subcommands "zfs load-key", "zfs unload-key" and
"zfs change-key" which allow the user to manage their
encryption keys and settings. In addition, several new
flags and properties have been added to allow dataset
creation and to make mounting and unmounting more
convenient.
The second piece of this patch provides the ability to
encrypt, decyrpt, and authenticate protected datasets.
Each object set maintains a Merkel tree of Message
Authentication Codes that protect the lower layers,
similarly to how checksums are maintained. This part
impacts the zio layer, which handles the actual
encryption and generation of MACs, as well as the ARC
and DMU, which need to be able to handle encrypted
buffers and protected data.
The last addition is the ability to do raw, encrypted
sends and receives. The idea here is to send raw
encrypted and compressed data and receive it exactly
as is on a backup system. This means that the dataset
on the receiving system is protected using the same
user key that is in use on the sending side. By doing
so, datasets can be efficiently backed up to an
untrusted system without fear of data being
compromised.
Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Jorgen Lundman <lundman@lundman.net>
Signed-off-by: Tom Caputi <tcaputi@datto.com>
Closes #494
Closes #5769
2017-08-14 20:36:48 +03:00
|
|
|
/*
|
|
|
|
* MAC checksums are a special case since half of this checksum will
|
|
|
|
* actually be the encryption MAC. This will be verified by the
|
|
|
|
* decryption process, so we just check the truncated checksum now.
|
|
|
|
* Objset blocks use embedded MACs so we don't truncate the checksum
|
|
|
|
* for them.
|
|
|
|
*/
|
|
|
|
if (bp != NULL && BP_USES_CRYPT(bp) &&
|
|
|
|
BP_GET_TYPE(bp) != DMU_OT_OBJSET) {
|
|
|
|
if (!(ci->ci_flags & ZCHECKSUM_FLAG_DEDUP)) {
|
|
|
|
actual_cksum.zc_word[0] ^= actual_cksum.zc_word[2];
|
|
|
|
actual_cksum.zc_word[1] ^= actual_cksum.zc_word[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
actual_cksum.zc_word[2] = 0;
|
|
|
|
actual_cksum.zc_word[3] = 0;
|
|
|
|
expected_cksum.zc_word[2] = 0;
|
|
|
|
expected_cksum.zc_word[3] = 0;
|
|
|
|
}
|
|
|
|
|
2016-06-02 07:04:53 +03:00
|
|
|
if (info != NULL) {
|
|
|
|
info->zbc_checksum_name = ci->ci_name;
|
|
|
|
info->zbc_byteswapped = byteswap;
|
|
|
|
info->zbc_injected = 0;
|
|
|
|
info->zbc_has_cksum = 1;
|
|
|
|
}
|
2010-05-29 00:45:14 +04:00
|
|
|
|
2008-12-03 23:09:06 +03:00
|
|
|
if (!ZIO_CHECKSUM_EQUAL(actual_cksum, expected_cksum))
|
2013-03-08 22:41:28 +04:00
|
|
|
return (SET_ERROR(ECKSUM));
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2016-06-02 07:04:53 +03: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 18:52:49 +03:00
|
|
|
abd_t *data = zio->io_abd;
|
2016-06-02 07:04:53 +03:00
|
|
|
spa_t *spa = zio->io_spa;
|
|
|
|
|
|
|
|
error = zio_checksum_error_impl(spa, bp, checksum, data, size,
|
|
|
|
offset, info);
|
2010-05-29 00:45:14 +04:00
|
|
|
|
2017-01-31 04:12:58 +03: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-29 00:45:14 +04:00
|
|
|
}
|
2017-01-31 04:12:58 +03:00
|
|
|
|
2016-06-02 07:04:53 +03:00
|
|
|
return (error);
|
2008-11-20 23:01:55 +03:00
|
|
|
}
|
2016-06-16 01:47:05 +03: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)
|
|
|
|
{
|
2017-11-04 23:25:13 +03:00
|
|
|
for (enum zio_checksum checksum = 0;
|
|
|
|
checksum < ZIO_CHECKSUM_FUNCTIONS; checksum++) {
|
2016-06-16 01:47:05 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|