]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sha256.c
Update to Zstandard 1.4.4
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / sha256.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 /*
26  * Copyright 2013 Saso Kiselkov. All rights reserved.
27  * Copyright (c) 2016 by Delphix. All rights reserved.
28  */
29 #include <sys/zfs_context.h>
30 #include <sys/zio.h>
31 #ifdef _KERNEL
32 #include <crypto/sha2/sha256.h>
33 #include <crypto/sha2/sha512t.h>
34 #else
35 #include <sha256.h>
36 #include <sha512t.h>
37 #endif
38 #include <sys/abd.h>
39
40 static int
41 sha256_incremental(void *buf, size_t size, void *arg)
42 {
43         SHA256_CTX *ctx = arg;
44         SHA256_Update(ctx, buf, size);
45         return (0);
46 }
47
48 static int
49 sha512_incremental(void *buf, size_t size, void *arg)
50 {
51         SHA512_CTX *ctx = arg;
52         SHA512_256_Update(ctx, buf, size);
53         return (0);
54 }
55
56 /*ARGSUSED*/
57 void
58 abd_checksum_SHA256(abd_t *abd, uint64_t size,
59     const void *ctx_template, zio_cksum_t *zcp)
60 {
61         SHA256_CTX ctx;
62         zio_cksum_t tmp;
63
64         SHA256_Init(&ctx);
65         (void) abd_iterate_func(abd, 0, size, sha256_incremental, &ctx);
66         SHA256_Final((unsigned char *)&tmp, &ctx);
67
68         /*
69          * A prior implementation of this function had a
70          * private SHA256 implementation always wrote things out in
71          * Big Endian and there wasn't a byteswap variant of it.
72          * To preserve on disk compatibility we need to force that
73          * behavior.
74          */
75         zcp->zc_word[0] = BE_64(tmp.zc_word[0]);
76         zcp->zc_word[1] = BE_64(tmp.zc_word[1]);
77         zcp->zc_word[2] = BE_64(tmp.zc_word[2]);
78         zcp->zc_word[3] = BE_64(tmp.zc_word[3]);
79 }
80
81 /*ARGSUSED*/
82 void
83 abd_checksum_SHA512_native(abd_t *abd, uint64_t size,
84     const void *ctx_template, zio_cksum_t *zcp)
85 {
86         SHA512_CTX      ctx;
87
88         SHA512_256_Init(&ctx);
89         (void) abd_iterate_func(abd, 0, size, sha512_incremental, &ctx);
90         SHA512_256_Final((unsigned char *)zcp, &ctx);
91 }
92
93 /*ARGSUSED*/
94 void
95 abd_checksum_SHA512_byteswap(abd_t *abd, uint64_t size,
96     const void *ctx_template, zio_cksum_t *zcp)
97 {
98         zio_cksum_t     tmp;
99
100         abd_checksum_SHA512_native(abd, size, ctx_template, &tmp);
101         zcp->zc_word[0] = BSWAP_64(tmp.zc_word[0]);
102         zcp->zc_word[1] = BSWAP_64(tmp.zc_word[1]);
103         zcp->zc_word[2] = BSWAP_64(tmp.zc_word[2]);
104         zcp->zc_word[3] = BSWAP_64(tmp.zc_word[3]);
105 }