First snapshot of FIO for Windows
[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;
33};
34
35struct vhdr_md5 {
34644af5 36 uint32_t md5_digest[4];
4f5af7b2
JA
37};
38struct vhdr_sha512 {
39 uint8_t sha512[128];
40};
41struct vhdr_sha256 {
bc77f56f 42 uint8_t sha256[64];
4f5af7b2 43};
7c353ceb
JA
44struct vhdr_sha1 {
45 uint32_t sha1[5];
46};
4f5af7b2
JA
47struct vhdr_crc64 {
48 uint64_t crc64;
49};
50struct vhdr_crc32 {
51 uint32_t crc32;
52};
53struct vhdr_crc16 {
54 uint16_t crc16;
55};
56struct vhdr_crc7 {
57 uint8_t crc7;
58};
59struct vhdr_meta {
60 uint64_t offset;
61 unsigned char thread;
62 unsigned short numberio;
63 unsigned long time_sec;
64 unsigned long time_usec;
65};
66
67/*
68 * Verify helpers
69 */
70extern void populate_verify_io_u(struct thread_data *, struct io_u *);
71extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
72extern int __must_check verify_io_u(struct thread_data *, struct io_u *);
e8462bd8 73extern int verify_io_u_async(struct thread_data *, struct io_u *);
cbe8d756 74extern void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u);
e8462bd8
JA
75
76/*
77 * Async verify offload
78 */
79extern int verify_async_init(struct thread_data *);
80extern void verify_async_exit(struct thread_data *);
4f5af7b2
JA
81
82#endif