Make sure that pattern verifies also dump contents
[fio.git] / verify.h
CommitLineData
4f5af7b2
JA
1#ifndef FIO_VERIFY_H
2#define FIO_VERIFY_H
3
03e20d68
BC
4#include <stdint.h>
5
4f5af7b2
JA
6#define FIO_HDR_MAGIC 0xf00baaef
7
8enum {
9 VERIFY_NONE = 0, /* no verification */
10 VERIFY_MD5, /* md5 sum data blocks */
11 VERIFY_CRC64, /* crc64 sum data blocks */
12 VERIFY_CRC32, /* crc32 sum data blocks */
13 VERIFY_CRC32C, /* crc32c sum data blocks */
14 VERIFY_CRC32C_INTEL, /* crc32c sum data blocks with hw */
15 VERIFY_CRC16, /* crc16 sum data blocks */
16 VERIFY_CRC7, /* crc7 sum data blocks */
17 VERIFY_SHA256, /* sha256 sum data blocks */
18 VERIFY_SHA512, /* sha512 sum data blocks */
19 VERIFY_META, /* block_num, timestamp etc. */
7c353ceb 20 VERIFY_SHA1, /* sha1 sum data blocks */
4f5af7b2
JA
21 VERIFY_NULL, /* pretend to verify */
22};
23
24/*
25 * A header structure associated with each checksummed data block. It is
26 * followed by a checksum specific header that contains the verification
27 * data.
28 */
29struct verify_header {
30 unsigned int fio_magic;
31 unsigned int len;
32 unsigned int verify_type;
7d9fb455 33 unsigned long rand_seed;
4f5af7b2
JA
34};
35
36struct vhdr_md5 {
34644af5 37 uint32_t md5_digest[4];
4f5af7b2
JA
38};
39struct vhdr_sha512 {
40 uint8_t sha512[128];
41};
42struct vhdr_sha256 {
bc77f56f 43 uint8_t sha256[64];
4f5af7b2 44};
7c353ceb
JA
45struct vhdr_sha1 {
46 uint32_t sha1[5];
47};
4f5af7b2
JA
48struct vhdr_crc64 {
49 uint64_t crc64;
50};
51struct vhdr_crc32 {
52 uint32_t crc32;
53};
54struct vhdr_crc16 {
55 uint16_t crc16;
56};
57struct vhdr_crc7 {
58 uint8_t crc7;
59};
60struct vhdr_meta {
61 uint64_t offset;
62 unsigned char thread;
63 unsigned short numberio;
64 unsigned long time_sec;
65 unsigned long time_usec;
66};
67
68/*
69 * Verify helpers
70 */
71extern void populate_verify_io_u(struct thread_data *, struct io_u *);
72extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
73extern int __must_check verify_io_u(struct thread_data *, struct io_u *);
e8462bd8 74extern int verify_io_u_async(struct thread_data *, struct io_u *);
7d9fb455 75extern void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed);
e8462bd8
JA
76
77/*
78 * Async verify offload
79 */
80extern int verify_async_init(struct thread_data *);
81extern void verify_async_exit(struct thread_data *);
4f5af7b2
JA
82
83#endif