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