iolog: fix --bandwidth-log segfaults
[fio.git] / verify.h
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
9 enum {
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  */
35 struct 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
48 struct vhdr_md5 {
49         uint32_t md5_digest[4];
50 };
51 struct vhdr_sha512 {
52         uint8_t sha512[128];
53 };
54 struct vhdr_sha256 {
55         uint8_t sha256[64];
56 };
57 struct vhdr_sha1 {
58         uint32_t sha1[5];
59 };
60 struct vhdr_crc64 {
61         uint64_t crc64;
62 };
63 struct vhdr_crc32 {
64         uint32_t crc32;
65 };
66 struct vhdr_crc16 {
67         uint16_t crc16;
68 };
69 struct vhdr_crc7 {
70         uint8_t crc7;
71 };
72 struct vhdr_xxhash {
73         uint32_t hash;
74 };
75
76 /*
77  * Verify helpers
78  */
79 extern void populate_verify_io_u(struct thread_data *, struct io_u *);
80 extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
81 extern int __must_check verify_io_u(struct thread_data *, struct io_u **);
82 extern int verify_io_u_async(struct thread_data *, struct io_u **);
83 extern void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed);
84 extern void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len);
85 extern void fio_verify_init(struct thread_data *td);
86
87 /*
88  * Async verify offload
89  */
90 extern int verify_async_init(struct thread_data *);
91 extern void verify_async_exit(struct thread_data *);
92
93 /*
94  * Callbacks for pasting formats in the pattern buffer
95  */
96 extern int paste_blockoff(char *buf, unsigned int len, void *priv);
97
98 #endif