Document parser int taking hex input
[fio.git] / verify.c
CommitLineData
e29d1b70
JA
1/*
2 * IO verification helpers
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
97af62ce 7#include <assert.h>
e29d1b70
JA
8
9#include "fio.h"
e29d1b70
JA
10
11static void fill_random_bytes(struct thread_data *td,
95646108 12 void *p, unsigned int len)
e29d1b70
JA
13{
14 unsigned int todo;
4c5946c6 15 int r;
e29d1b70
JA
16
17 while (len) {
4c5946c6 18 r = os_random_long(&td->verify_state);
e29d1b70
JA
19
20 /*
21 * lrand48_r seems to be broken and only fill the bottom
22 * 32-bits, even on 64-bit archs with 64-bit longs
23 */
24 todo = sizeof(r);
25 if (todo > len)
26 todo = len;
27
28 memcpy(p, &r, todo);
29
30 len -= todo;
31 p += todo;
32 }
33}
34
546a9142
SL
35void memswp(void* buf1, void* buf2, unsigned int len)
36{
37 struct verify_header swap;
38 memcpy(&swap, buf1, len);
39 memcpy(buf1, buf2, len);
40 memcpy(buf2, &swap, len);
41}
42
e29d1b70
JA
43static void hexdump(void *buffer, int len)
44{
45 unsigned char *p = buffer;
46 int i;
47
48 for (i = 0; i < len; i++)
6d86144d
JA
49 log_info("%02x", p[i]);
50 log_info("\n");
e29d1b70
JA
51}
52
d9f2caf3
JA
53/*
54 * Return data area 'header_num'
55 */
56static inline void *io_u_verify_off(struct verify_header *hdr,
57 struct io_u *io_u,
58 unsigned char header_num)
59{
60 return io_u->buf + sizeof(*hdr) + header_num * hdr->len;
61}
62
3f9f4e26
SL
63static int verify_io_u_crc7(struct verify_header *hdr, struct io_u *io_u,
64 unsigned char header_num)
1e154bdb 65{
d9f2caf3 66 void *p = io_u_verify_off(hdr, io_u, header_num);
1e154bdb
JA
67 unsigned char c;
68
1e154bdb
JA
69 c = crc7(p, hdr->len - sizeof(*hdr));
70
71 if (c != hdr->crc7) {
3f9f4e26
SL
72 log_err("crc7: verify failed at %llu/%u\n",
73 io_u->offset + header_num * hdr->len,
74 hdr->len);
1e154bdb
JA
75 log_err("crc7: wanted %x, got %x\n", hdr->crc7, c);
76 return 1;
77 }
78
79 return 0;
80}
81
3f9f4e26
SL
82static int verify_io_u_crc16(struct verify_header *hdr, struct io_u *io_u,
83 unsigned int header_num)
969f7ed3 84{
d9f2caf3 85 void *p = io_u_verify_off(hdr, io_u, header_num);
969f7ed3
JA
86 unsigned short c;
87
969f7ed3
JA
88 c = crc16(p, hdr->len - sizeof(*hdr));
89
90 if (c != hdr->crc16) {
3f9f4e26
SL
91 log_err("crc16: verify failed at %llu/%u\n",
92 io_u->offset + header_num * hdr->len,
93 hdr->len);
1f24ea44 94 log_err("crc16: wanted %x, got %x\n", hdr->crc16, c);
969f7ed3
JA
95 return 1;
96 }
97
98 return 0;
99}
100
3f9f4e26
SL
101static int verify_io_u_crc64(struct verify_header *hdr, struct io_u *io_u,
102 unsigned int header_num)
d77a7af3 103{
d9f2caf3 104 void *p = io_u_verify_off(hdr, io_u, header_num);
d77a7af3
JA
105 unsigned long long c;
106
107 c = crc64(p, hdr->len - sizeof(*hdr));
108
109 if (c != hdr->crc64) {
3f9f4e26
SL
110 log_err("crc64: verify failed at %llu/%u\n",
111 io_u->offset + header_num * hdr->len,
112 hdr->len);
d77a7af3
JA
113 log_err("crc64: wanted %llx, got %llx\n", hdr->crc64, c);
114 return 1;
115 }
116
117 return 0;
118}
119
3f9f4e26
SL
120static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u,
121 unsigned int header_num)
e29d1b70 122{
d9f2caf3 123 void *p = io_u_verify_off(hdr, io_u, header_num);
e29d1b70
JA
124 unsigned long c;
125
e29d1b70
JA
126 c = crc32(p, hdr->len - sizeof(*hdr));
127
128 if (c != hdr->crc32) {
3f9f4e26
SL
129 log_err("crc32: verify failed at %llu/%u\n",
130 io_u->offset + header_num * hdr->len,
131 hdr->len);
e29d1b70
JA
132 log_err("crc32: wanted %lx, got %lx\n", hdr->crc32, c);
133 return 1;
134 }
135
136 return 0;
137}
138
3f9f4e26
SL
139static int verify_io_u_md5(struct verify_header *hdr, struct io_u *io_u,
140 unsigned int header_num)
e29d1b70 141{
d9f2caf3 142 void *p = io_u_verify_off(hdr, io_u, header_num);
8c432325
JA
143 uint32_t hash[MD5_HASH_WORDS];
144 struct md5_ctx md5_ctx = {
145 .hash = hash,
146 };
e29d1b70 147
fd00954c 148 memset(md5_ctx.hash, 0, sizeof(hdr->md5_digest));
e29d1b70
JA
149 md5_update(&md5_ctx, p, hdr->len - sizeof(*hdr));
150
c9b3fdf3 151 if (memcmp(hdr->md5_digest, md5_ctx.hash, sizeof(hash))) {
3f9f4e26
SL
152 log_err("md5: verify failed at %llu/%u\n",
153 io_u->offset + header_num * hdr->len,
154 hdr->len);
e29d1b70 155 hexdump(hdr->md5_digest, sizeof(hdr->md5_digest));
8c432325 156 hexdump(md5_ctx.hash, sizeof(hash));
e29d1b70
JA
157 return 1;
158 }
159
160 return 0;
161}
162
36690c9b 163int verify_io_u(struct thread_data *td, struct io_u *io_u)
e29d1b70 164{
3f9f4e26
SL
165 struct verify_header *hdr;
166 unsigned int hdr_inc, hdr_num = 0;
95646108 167 void *p;
e29d1b70
JA
168 int ret;
169
1dcc0498 170 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
36690c9b
JA
171 return 0;
172
3f9f4e26 173 hdr_inc = io_u->buflen;
a59e170d
JA
174 if (td->o.verify_interval)
175 hdr_inc = td->o.verify_interval;
e29d1b70 176
95646108 177 for (p = io_u->buf; p < io_u->buf + io_u->buflen; p += hdr_inc) {
a59e170d
JA
178 if (td->o.verify_offset)
179 memswp(p, p + td->o.verify_offset, sizeof(*hdr));
546a9142 180
95646108 181 hdr = p;
e29d1b70 182
3f9f4e26
SL
183 if (hdr->fio_magic != FIO_HDR_MAGIC) {
184 log_err("Bad verify header %x\n", hdr->fio_magic);
185 return EIO;
186 }
187
188 switch (hdr->verify_type) {
189 case VERIFY_MD5:
190 ret = verify_io_u_md5(hdr, io_u, hdr_num);
191 break;
192 case VERIFY_CRC64:
193 ret = verify_io_u_crc64(hdr, io_u, hdr_num);
194 break;
195 case VERIFY_CRC32:
196 ret = verify_io_u_crc32(hdr, io_u, hdr_num);
197 break;
198 case VERIFY_CRC16:
199 ret = verify_io_u_crc16(hdr, io_u, hdr_num);
200 break;
201 case VERIFY_CRC7:
202 ret = verify_io_u_crc7(hdr, io_u, hdr_num);
203 break;
204 default:
205 log_err("Bad verify type %u\n", hdr->verify_type);
206 ret = 1;
207 }
208 hdr_num++;
209 }
a7dfe862
JA
210
211 return 0;
e29d1b70
JA
212}
213
1e154bdb
JA
214static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
215{
216 hdr->crc7 = crc7(p, len);
217}
218
969f7ed3
JA
219static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
220{
221 hdr->crc16 = crc16(p, len);
222}
223
e29d1b70
JA
224static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
225{
226 hdr->crc32 = crc32(p, len);
227}
228
d77a7af3
JA
229static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
230{
231 hdr->crc64 = crc64(p, len);
232}
233
e29d1b70
JA
234static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
235{
8c432325
JA
236 struct md5_ctx md5_ctx = {
237 .hash = (uint32_t *) hdr->md5_digest,
238 };
e29d1b70 239
fd00954c 240 memset(md5_ctx.hash, 0, sizeof(hdr->md5_digest));
e29d1b70 241 md5_update(&md5_ctx, p, len);
e29d1b70
JA
242}
243
244/*
245 * fill body of io_u->buf with random data and add a header with the
246 * crc32 or md5 sum of that data.
247 */
248void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
249{
baefa9be 250 struct verify_header *hdr;
95646108 251 void *p = io_u->buf, *data;
546a9142 252 unsigned int hdr_inc, data_len;
e29d1b70 253
9cc3d150
JA
254 if (td->o.verify == VERIFY_NULL)
255 return;
256
546a9142
SL
257 fill_random_bytes(td, p, io_u->buflen);
258
259 hdr_inc = io_u->buflen;
a59e170d
JA
260 if (td->o.verify_interval)
261 hdr_inc = td->o.verify_interval;
546a9142 262 data_len = hdr_inc - sizeof(*hdr);
baefa9be 263
95646108
JA
264 for (;p < io_u->buf + io_u->buflen; p += hdr_inc) {
265 hdr = p;
3f9f4e26
SL
266
267 hdr->fio_magic = FIO_HDR_MAGIC;
268 hdr->verify_type = td->o.verify;
546a9142 269 hdr->len = hdr_inc;
3f9f4e26
SL
270
271 data = p + sizeof(*hdr);
3f9f4e26
SL
272 switch (td->o.verify) {
273 case VERIFY_MD5:
274 fill_md5(hdr, data, data_len);
275 break;
276 case VERIFY_CRC64:
277 fill_crc64(hdr, data, data_len);
278 break;
279 case VERIFY_CRC32:
280 fill_crc32(hdr, data, data_len);
281 break;
282 case VERIFY_CRC16:
283 fill_crc16(hdr, data, data_len);
284 break;
285 case VERIFY_CRC7:
286 fill_crc7(hdr, data, data_len);
287 break;
288 default:
289 log_err("fio: bad verify type: %d\n", td->o.verify);
290 assert(0);
291 }
a59e170d
JA
292 if (td->o.verify_offset)
293 memswp(p, p + td->o.verify_offset, sizeof(*hdr));
e29d1b70 294 }
e29d1b70
JA
295}
296
297int get_next_verify(struct thread_data *td, struct io_u *io_u)
298{
8de8f047 299 struct io_piece *ipo = NULL;
e29d1b70 300
d2d7fa53
JA
301 /*
302 * this io_u is from a requeue, we already filled the offsets
303 */
304 if (io_u->file)
305 return 0;
306
8de8f047
JA
307 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
308 struct rb_node *n = rb_first(&td->io_hist_tree);
e29d1b70 309
8de8f047 310 ipo = rb_entry(n, struct io_piece, rb_node);
4b87898e 311 rb_erase(n, &td->io_hist_tree);
8de8f047
JA
312 } else if (!list_empty(&td->io_hist_list)) {
313 ipo = list_entry(td->io_hist_list.next, struct io_piece, list);
314 list_del(&ipo->list);
315 }
e29d1b70 316
8de8f047 317 if (ipo) {
e29d1b70
JA
318 io_u->offset = ipo->offset;
319 io_u->buflen = ipo->len;
36167d82 320 io_u->file = ipo->file;
97af62ce
JA
321
322 if ((io_u->file->flags & FIO_FILE_OPEN) == 0) {
323 int r = td_io_open_file(td, io_u->file);
324
325 if (r)
326 return 1;
327 }
328
329 get_file(ipo->file);
330 assert(io_u->file->flags & FIO_FILE_OPEN);
e29d1b70 331 io_u->ddir = DDIR_READ;
36167d82
JA
332 io_u->xfer_buf = io_u->buf;
333 io_u->xfer_buflen = io_u->buflen;
e29d1b70
JA
334 free(ipo);
335 return 0;
336 }
337
338 return 1;
339}