crc: add support for sha3 variants
[fio.git] / verify.h
... / ...
CommitLineData
1#ifndef FIO_VERIFY_H
2#define FIO_VERIFY_H
3
4#include <stdint.h>
5#include "verify-state.h"
6
7#define FIO_HDR_MAGIC 0xacca
8
9enum {
10 VERIFY_NONE = 0, /* no verification */
11 VERIFY_HDR_ONLY, /* verify header only, kept for sake of
12 * compatibility with old configurations
13 * which use 'verify=meta' */
14 VERIFY_MD5, /* md5 sum data blocks */
15 VERIFY_CRC64, /* crc64 sum data blocks */
16 VERIFY_CRC32, /* crc32 sum data blocks */
17 VERIFY_CRC32C, /* crc32c sum data blocks */
18 VERIFY_CRC32C_INTEL, /* crc32c sum data blocks with hw */
19 VERIFY_CRC16, /* crc16 sum data blocks */
20 VERIFY_CRC7, /* crc7 sum data blocks */
21 VERIFY_SHA256, /* sha256 sum data blocks */
22 VERIFY_SHA512, /* sha512 sum data blocks */
23 VERIFY_XXHASH, /* xxhash sum data blocks */
24 VERIFY_SHA1, /* sha1 sum data blocks */
25 VERIFY_PATTERN, /* verify specific patterns */
26 VERIFY_PATTERN_NO_HDR, /* verify specific patterns, no hdr */
27 VERIFY_NULL, /* pretend to verify */
28};
29
30/*
31 * A header structure associated with each checksummed data block. It is
32 * followed by a checksum specific header that contains the verification
33 * data.
34 */
35struct verify_header {
36 uint16_t magic;
37 uint16_t verify_type;
38 uint32_t len;
39 uint64_t rand_seed;
40 uint64_t offset;
41 uint32_t time_sec;
42 uint32_t time_usec;
43 uint16_t thread;
44 uint16_t numberio;
45 uint32_t crc32;
46};
47
48struct vhdr_md5 {
49 uint32_t md5_digest[4];
50};
51struct vhdr_sha512 {
52 uint8_t sha512[128];
53};
54struct vhdr_sha256 {
55 uint8_t sha256[64];
56};
57struct vhdr_sha1 {
58 uint32_t sha1[5];
59};
60struct vhdr_crc64 {
61 uint64_t crc64;
62};
63struct vhdr_crc32 {
64 uint32_t crc32;
65};
66struct vhdr_crc16 {
67 uint16_t crc16;
68};
69struct vhdr_crc7 {
70 uint8_t crc7;
71};
72struct vhdr_xxhash {
73 uint32_t hash;
74};
75
76/*
77 * Verify helpers
78 */
79extern void populate_verify_io_u(struct thread_data *, struct io_u *);
80extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
81extern int __must_check verify_io_u(struct thread_data *, struct io_u **);
82extern int verify_io_u_async(struct thread_data *, struct io_u **);
83extern void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed);
84extern void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len);
85extern void fio_verify_init(struct thread_data *td);
86
87/*
88 * Async verify offload
89 */
90extern int verify_async_init(struct thread_data *);
91extern void verify_async_exit(struct thread_data *);
92
93/*
94 * Callbacks for pasting formats in the pattern buffer
95 */
96extern int paste_blockoff(char *buf, unsigned int len, void *priv);
97
98#endif