Deleted Added
full compact
zio_checksum.h (286705) zio_checksum.h (289422)
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

--- 6 unchanged lines hidden (view full) ---

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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
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

--- 6 unchanged lines hidden (view full) ---

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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2014 by Delphix. All rights reserved.
23 * Copyright (c) 2014, 2015 by Delphix. All rights reserved.
24 * Copyright Saso Kiselkov 2013, All rights reserved.
24 */
25
26#ifndef _SYS_ZIO_CHECKSUM_H
27#define _SYS_ZIO_CHECKSUM_H
28
29#include <sys/zio.h>
25 */
26
27#ifndef _SYS_ZIO_CHECKSUM_H
28#define _SYS_ZIO_CHECKSUM_H
29
30#include <sys/zio.h>
31#include <zfeature_common.h>
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35/*
36 * Signature for checksum functions.
37 */
32
33#ifdef __cplusplus
34extern "C" {
35#endif
36
37/*
38 * Signature for checksum functions.
39 */
38typedef void zio_checksum_func_t(const void *, uint64_t, zio_cksum_t *);
40typedef void zio_checksum_t(const void *data, uint64_t size,
41 const void *ctx_template, zio_cksum_t *zcp);
42typedef void *zio_checksum_tmpl_init_t(const zio_cksum_salt_t *salt);
43typedef void zio_checksum_tmpl_free_t(void *ctx_template);
39
44
45typedef enum zio_checksum_flags {
46 /* Strong enough for metadata? */
47 ZCHECKSUM_FLAG_METADATA = (1 << 1),
48 /* ZIO embedded checksum */
49 ZCHECKSUM_FLAG_EMBEDDED = (1 << 2),
50 /* Strong enough for dedup (without verification)? */
51 ZCHECKSUM_FLAG_DEDUP = (1 << 3),
52 /* Uses salt value */
53 ZCHECKSUM_FLAG_SALTED = (1 << 4),
54 /* Strong enough for nopwrite? */
55 ZCHECKSUM_FLAG_NOPWRITE = (1 << 5)
56} zio_checksum_flags_t;
57
40/*
41 * Information about each checksum function.
42 */
43typedef struct zio_checksum_info {
58/*
59 * Information about each checksum function.
60 */
61typedef struct zio_checksum_info {
44 zio_checksum_func_t *ci_func[2]; /* checksum function per byteorder */
45 int ci_correctable; /* number of correctable bits */
46 int ci_eck; /* uses zio embedded checksum? */
47 boolean_t ci_dedup; /* strong enough for dedup? */
48 char *ci_name; /* descriptive name */
62 /* checksum function for each byteorder */
63 zio_checksum_t *ci_func[2];
64 zio_checksum_tmpl_init_t *ci_tmpl_init;
65 zio_checksum_tmpl_free_t *ci_tmpl_free;
66 zio_checksum_flags_t ci_flags;
67 char *ci_name; /* descriptive name */
49} zio_checksum_info_t;
50
51typedef struct zio_bad_cksum {
52 zio_cksum_t zbc_expected;
53 zio_cksum_t zbc_actual;
54 const char *zbc_checksum_name;
55 uint8_t zbc_byteswapped;
56 uint8_t zbc_injected;
57 uint8_t zbc_has_cksum; /* expected/actual valid */
58} zio_bad_cksum_t;
59
60extern zio_checksum_info_t zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS];
61
62/*
63 * Checksum routines.
64 */
68} zio_checksum_info_t;
69
70typedef struct zio_bad_cksum {
71 zio_cksum_t zbc_expected;
72 zio_cksum_t zbc_actual;
73 const char *zbc_checksum_name;
74 uint8_t zbc_byteswapped;
75 uint8_t zbc_injected;
76 uint8_t zbc_has_cksum; /* expected/actual valid */
77} zio_bad_cksum_t;
78
79extern zio_checksum_info_t zio_checksum_table[ZIO_CHECKSUM_FUNCTIONS];
80
81/*
82 * Checksum routines.
83 */
65extern zio_checksum_func_t zio_checksum_SHA256;
84extern zio_checksum_t zio_checksum_SHA256;
85#ifdef illumos
86extern zio_checksum_t zio_checksum_SHA512_native;
87extern zio_checksum_t zio_checksum_SHA512_byteswap;
66
88
89/* Skein */
90extern zio_checksum_t zio_checksum_skein_native;
91extern zio_checksum_t zio_checksum_skein_byteswap;
92extern zio_checksum_tmpl_init_t zio_checksum_skein_tmpl_init;
93extern zio_checksum_tmpl_free_t zio_checksum_skein_tmpl_free;
94
95/* Edon-R */
96extern zio_checksum_t zio_checksum_edonr_native;
97extern zio_checksum_t zio_checksum_edonr_byteswap;
98extern zio_checksum_tmpl_init_t zio_checksum_edonr_tmpl_init;
99extern zio_checksum_tmpl_free_t zio_checksum_edonr_tmpl_free;
100#endif
101
67extern void zio_checksum_compute(zio_t *zio, enum zio_checksum checksum,
68 void *data, uint64_t size);
69extern int zio_checksum_error(zio_t *zio, zio_bad_cksum_t *out);
70extern enum zio_checksum spa_dedup_checksum(spa_t *spa);
102extern void zio_checksum_compute(zio_t *zio, enum zio_checksum checksum,
103 void *data, uint64_t size);
104extern int zio_checksum_error(zio_t *zio, zio_bad_cksum_t *out);
105extern enum zio_checksum spa_dedup_checksum(spa_t *spa);
106extern void zio_checksum_templates_free(spa_t *spa);
107extern spa_feature_t zio_checksum_to_feature(enum zio_checksum cksum);
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif /* _SYS_ZIO_CHECKSUM_H */
108
109#ifdef __cplusplus
110}
111#endif
112
113#endif /* _SYS_ZIO_CHECKSUM_H */