Fix off-by-one in io_u_plat[] array sizing
[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 */
92bf48d5 21 VERIFY_PATTERN, /* verify specific patterns */
4f5af7b2
JA
22 VERIFY_NULL, /* pretend to verify */
23};
24
25/*
26 * A header structure associated with each checksummed data block. It is
27 * followed by a checksum specific header that contains the verification
28 * data.
29 */
30struct verify_header {
31 unsigned int fio_magic;
32 unsigned int len;
33 unsigned int verify_type;
7d9fb455 34 unsigned long rand_seed;
4f5af7b2
JA
35};
36
37struct vhdr_md5 {
34644af5 38 uint32_t md5_digest[4];
4f5af7b2
JA
39};
40struct vhdr_sha512 {
41 uint8_t sha512[128];
42};
43struct vhdr_sha256 {
bc77f56f 44 uint8_t sha256[64];
4f5af7b2 45};
7c353ceb
JA
46struct vhdr_sha1 {
47 uint32_t sha1[5];
48};
4f5af7b2
JA
49struct vhdr_crc64 {
50 uint64_t crc64;
51};
52struct vhdr_crc32 {
53 uint32_t crc32;
54};
55struct vhdr_crc16 {
56 uint16_t crc16;
57};
58struct vhdr_crc7 {
59 uint8_t crc7;
60};
61struct vhdr_meta {
62 uint64_t offset;
63 unsigned char thread;
64 unsigned short numberio;
65 unsigned long time_sec;
66 unsigned long time_usec;
67};
68
69/*
70 * Verify helpers
71 */
72extern void populate_verify_io_u(struct thread_data *, struct io_u *);
73extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
74extern int __must_check verify_io_u(struct thread_data *, struct io_u *);
e8462bd8 75extern int verify_io_u_async(struct thread_data *, struct io_u *);
7d9fb455 76extern 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
77
78/*
79 * Async verify offload
80 */
81extern int verify_async_init(struct thread_data *);
82extern void verify_async_exit(struct thread_data *);
4f5af7b2
JA
83
84#endif