Add test case for previous verify crash
[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>
e8462bd8 8#include <pthread.h>
79402a12 9#include <libgen.h>
e29d1b70
JA
10
11#include "fio.h"
4f5af7b2 12#include "verify.h"
0d29de83 13#include "trim.h"
637ef8d9 14#include "lib/rand.h"
51aa2da8 15#include "lib/hweight.h"
e29d1b70 16
eef6eea1
JA
17#include "crc/md5.h"
18#include "crc/crc64.h"
19#include "crc/crc32.h"
bac39e0e 20#include "crc/crc32c.h"
eef6eea1
JA
21#include "crc/crc16.h"
22#include "crc/crc7.h"
23#include "crc/sha256.h"
24#include "crc/sha512.h"
7c353ceb 25#include "crc/sha1.h"
844ea602 26#include "crc/xxhash.h"
cd14cc10 27
7d9fb455
JA
28static void populate_hdr(struct thread_data *td, struct io_u *io_u,
29 struct verify_header *hdr, unsigned int header_num,
30 unsigned int header_len);
31
ce35b1ec
JA
32static void fill_pattern(struct thread_data *td, void *p, unsigned int len,
33 char *pattern, unsigned int pattern_bytes)
90059d65 34{
ce35b1ec 35 switch (pattern_bytes) {
90059d65 36 case 0:
ce35b1ec 37 assert(0);
90059d65
JA
38 break;
39 case 1:
bd6f78b2 40 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
ce35b1ec 41 memset(p, pattern[0], len);
90059d65 42 break;
0e92f873
RR
43 default: {
44 unsigned int i = 0, size = 0;
90059d65
JA
45 unsigned char *b = p;
46
bd6f78b2 47 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
ce35b1ec 48 pattern_bytes, len);
bd6f78b2 49
90059d65 50 while (i < len) {
ce35b1ec 51 size = pattern_bytes;
0e92f873
RR
52 if (size > (len - i))
53 size = len - i;
ce35b1ec 54 memcpy(b+i, pattern, size);
0e92f873 55 i += size;
90059d65
JA
56 }
57 break;
58 }
59 }
60}
61
ce35b1ec
JA
62void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len)
63{
64 fill_pattern(td, p, len, td->o.buffer_pattern, td->o.buffer_pattern_bytes);
65}
66
67void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len,
68 struct io_u *io_u, unsigned long seed, int use_seed)
69{
70 if (!td->o.verify_pattern_bytes) {
71 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
72
73 if (use_seed)
74 __fill_random_buf(p, len, seed);
75 else
c4b6117b 76 io_u->rand_seed = fill_random_buf(&td->__verify_state, p, len);
ce35b1ec
JA
77 return;
78 }
c4b6117b 79
ce35b1ec
JA
80 if (io_u->buf_filled_len >= len) {
81 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
82 td->o.verify_pattern_bytes, len);
83 return;
84 }
85
86 fill_pattern(td, p, len, td->o.verify_pattern, td->o.verify_pattern_bytes);
87
88 io_u->buf_filled_len = len;
89}
90
cfbcd0dc
JA
91static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
92{
93 unsigned int hdr_inc;
94
95 hdr_inc = io_u->buflen;
8a99fdf6 96 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
cfbcd0dc
JA
97 hdr_inc = td->o.verify_interval;
98
99 return hdr_inc;
100}
101
c50ca7bd
JA
102static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
103 unsigned long seed, int use_seed)
104{
105 unsigned int hdr_inc, header_num;
106 struct verify_header *hdr;
107 void *p = io_u->buf;
108
ce35b1ec 109 fill_verify_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
c50ca7bd 110
cfbcd0dc 111 hdr_inc = get_hdr_inc(td, io_u);
c50ca7bd
JA
112 header_num = 0;
113 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
114 hdr = p;
115 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
116 header_num++;
117 }
118}
119
4764aec9 120static void memswp(void *buf1, void *buf2, unsigned int len)
546a9142 121{
dee6de74
SL
122 char swap[200];
123
124 assert(len <= sizeof(swap));
90059d65 125
546a9142
SL
126 memcpy(&swap, buf1, len);
127 memcpy(buf1, buf2, len);
128 memcpy(buf2, &swap, len);
129}
130
e29d1b70
JA
131static void hexdump(void *buffer, int len)
132{
133 unsigned char *p = buffer;
134 int i;
135
136 for (i = 0; i < len; i++)
bfacf389
JA
137 log_err("%02x", p[i]);
138 log_err("\n");
e29d1b70
JA
139}
140
87677832 141/*
de8f6de9 142 * Prepare for separation of verify_header and checksum header
87677832 143 */
546dfd9f 144static inline unsigned int __hdr_size(int verify_type)
87677832 145{
03e20d68 146 unsigned int len = 0;
87677832 147
546dfd9f
JA
148 switch (verify_type) {
149 case VERIFY_NONE:
150 case VERIFY_NULL:
151 len = 0;
152 break;
153 case VERIFY_MD5:
154 len = sizeof(struct vhdr_md5);
155 break;
156 case VERIFY_CRC64:
157 len = sizeof(struct vhdr_crc64);
158 break;
bac39e0e 159 case VERIFY_CRC32C:
546dfd9f 160 case VERIFY_CRC32:
3845591f 161 case VERIFY_CRC32C_INTEL:
546dfd9f
JA
162 len = sizeof(struct vhdr_crc32);
163 break;
164 case VERIFY_CRC16:
165 len = sizeof(struct vhdr_crc16);
166 break;
167 case VERIFY_CRC7:
168 len = sizeof(struct vhdr_crc7);
169 break;
170 case VERIFY_SHA256:
171 len = sizeof(struct vhdr_sha256);
172 break;
173 case VERIFY_SHA512:
174 len = sizeof(struct vhdr_sha512);
175 break;
844ea602
JA
176 case VERIFY_XXHASH:
177 len = sizeof(struct vhdr_xxhash);
178 break;
7437ee87
SL
179 case VERIFY_META:
180 len = sizeof(struct vhdr_meta);
181 break;
7c353ceb
JA
182 case VERIFY_SHA1:
183 len = sizeof(struct vhdr_sha1);
184 break;
92bf48d5
JA
185 case VERIFY_PATTERN:
186 len = 0;
187 break;
546dfd9f
JA
188 default:
189 log_err("fio: unknown verify header!\n");
190 assert(0);
191 }
192
193 return len + sizeof(struct verify_header);
87677832
JA
194}
195
196static inline unsigned int hdr_size(struct verify_header *hdr)
197{
546dfd9f
JA
198 return __hdr_size(hdr->verify_type);
199}
200
201static void *hdr_priv(struct verify_header *hdr)
202{
203 void *priv = hdr;
204
205 return priv + sizeof(struct verify_header);
87677832
JA
206}
207
936216f8
JA
208/*
209 * Verify container, pass info to verify handlers and allow them to
210 * pass info back in case of error
211 */
212struct vcont {
213 /*
214 * Input
215 */
216 struct io_u *io_u;
217 unsigned int hdr_num;
7d9fb455 218 struct thread_data *td;
936216f8
JA
219
220 /*
221 * Output, only valid in case of error
222 */
bfacf389
JA
223 const char *name;
224 void *good_crc;
225 void *bad_crc;
936216f8
JA
226 unsigned int crc_len;
227};
228
dacbbb88
JA
229#define DUMP_BUF_SZ 255
230static int dump_buf_warned;
231
c50ca7bd
JA
232static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
233 const char *type, struct fio_file *f)
7d9fb455 234{
dacbbb88
JA
235 char *ptr, fname[DUMP_BUF_SZ];
236 size_t buf_left = DUMP_BUF_SZ;
7d9fb455
JA
237 int ret, fd;
238
6f260b31 239 ptr = strdup(f->file_name);
c50ca7bd 240
dacbbb88
JA
241 fname[DUMP_BUF_SZ - 1] = '\0';
242 strncpy(fname, basename(ptr), DUMP_BUF_SZ - 1);
243
244 buf_left -= strlen(fname);
245 if (buf_left <= 0) {
246 if (!dump_buf_warned) {
247 log_err("fio: verify failure dump buffer too small\n");
248 dump_buf_warned = 1;
249 }
250 free(ptr);
251 return;
252 }
253
254 snprintf(fname + strlen(fname), buf_left, ".%llu.%s", offset, type);
7d9fb455
JA
255
256 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
257 if (fd < 0) {
258 perror("open verify buf file");
259 return;
260 }
261
262 while (len) {
263 ret = write(fd, buf, len);
264 if (!ret)
265 break;
266 else if (ret < 0) {
267 perror("write verify buf file");
268 break;
269 }
270 len -= ret;
271 buf += ret;
272 }
273
274 close(fd);
c50ca7bd 275 log_err(" %s data dumped as %s\n", type, fname);
6f260b31 276 free(ptr);
7d9fb455
JA
277}
278
c50ca7bd
JA
279/*
280 * Dump the contents of the read block and re-generate the correct data
281 * and dump that too.
282 */
7d9fb455
JA
283static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
284{
285 struct thread_data *td = vc->td;
286 struct io_u *io_u = vc->io_u;
287 unsigned long hdr_offset;
7d9fb455 288 struct io_u dummy;
c50ca7bd 289 void *buf;
7d9fb455 290
0dce9bc9
SL
291 if (!td->o.verify_dump)
292 return;
293
c50ca7bd
JA
294 /*
295 * Dump the contents we just read off disk
296 */
7d9fb455
JA
297 hdr_offset = vc->hdr_num * hdr->len;
298
c50ca7bd
JA
299 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
300 "received", vc->io_u->file);
7d9fb455 301
c50ca7bd
JA
302 /*
303 * Allocate a new buf and re-generate the original data
304 */
305 buf = malloc(io_u->buflen);
7d9fb455 306 dummy = *io_u;
c50ca7bd 307 dummy.buf = buf;
4aae38a6 308 dummy.rand_seed = hdr->rand_seed;
cfbcd0dc 309 dummy.buf_filled_len = 0;
0d81daf9 310 dummy.buflen = io_u->buflen;
7d9fb455 311
c50ca7bd 312 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
7d9fb455 313
c50ca7bd
JA
314 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
315 "expected", vc->io_u->file);
7d9fb455
JA
316 free(buf);
317}
318
bfacf389
JA
319static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
320{
321 unsigned long long offset;
322
323 offset = vc->io_u->offset;
324 offset += vc->hdr_num * hdr->len;
32c17adf
JA
325 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
326 vc->name, vc->io_u->file->file_name, offset, hdr->len);
bfacf389
JA
327
328 if (vc->good_crc && vc->bad_crc) {
329 log_err(" Expected CRC: ");
330 hexdump(vc->good_crc, vc->crc_len);
331 log_err(" Received CRC: ");
332 hexdump(vc->bad_crc, vc->crc_len);
333 }
7d9fb455
JA
334
335 dump_verify_buffers(hdr, vc);
bfacf389
JA
336}
337
d9f2caf3
JA
338/*
339 * Return data area 'header_num'
340 */
936216f8 341static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
d9f2caf3 342{
936216f8 343 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
d9f2caf3
JA
344}
345
92bf48d5
JA
346static int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
347{
348 struct thread_data *td = vc->td;
349 struct io_u *io_u = vc->io_u;
350 char *buf, *pattern;
2b13e716 351 unsigned int header_size = __hdr_size(td->o.verify);
9a2a86d0 352 unsigned int len, mod, i, size, pattern_size;
92bf48d5
JA
353
354 pattern = td->o.verify_pattern;
9a2a86d0
SL
355 pattern_size = td->o.verify_pattern_bytes;
356 if (pattern_size <= 1)
357 pattern_size = MAX_PATTERN_SIZE;
2b13e716
JA
358 buf = (void *) hdr + header_size;
359 len = get_hdr_inc(td, io_u) - header_size;
9a2a86d0
SL
360 mod = header_size % pattern_size;
361
362 for (i = 0; i < len; i += size) {
363 size = pattern_size - mod;
364 if (size > (len - i))
365 size = len - i;
366 if (memcmp(buf + i, pattern + mod, size))
e4ad68b1 367 /* Let the slow compare find the first mismatch byte. */
9a2a86d0
SL
368 break;
369 mod = 0;
370 }
92bf48d5 371
9a2a86d0 372 for (; i < len; i++) {
92bf48d5
JA
373 if (buf[i] != pattern[mod]) {
374 unsigned int bits;
375
376 bits = hweight8(buf[i] ^ pattern[mod]);
377 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
378 buf[i], pattern[mod], bits);
379 log_err("fio: bad pattern block offset %u\n", i);
380 dump_verify_buffers(hdr, vc);
381 return EILSEQ;
382 }
383 mod++;
384 if (mod == td->o.verify_pattern_bytes)
385 mod = 0;
386 }
387
388 return 0;
389}
390
391static int verify_io_u_meta(struct verify_header *hdr, struct vcont *vc)
7437ee87 392{
92bf48d5 393 struct thread_data *td = vc->td;
7437ee87 394 struct vhdr_meta *vh = hdr_priv(hdr);
936216f8 395 struct io_u *io_u = vc->io_u;
92bf48d5 396 int ret = EILSEQ;
7437ee87 397
bd6f78b2
JA
398 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
399
bfacf389 400 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
92bf48d5
JA
401 ret = 0;
402
403 if (td->o.verify_pattern_bytes)
404 ret |= verify_io_u_pattern(hdr, vc);
405
da0a7bd2
JC
406 /*
407 * For read-only workloads, the program cannot be certain of the
8bca6016
JA
408 * last numberio written to a block. Checking of numberio will be
409 * done only for workloads that write data. For verify_only,
410 * numberio will be checked in the last iteration when the correct
411 * state of numberio, that would have been written to each block
412 * in a previous run of fio, has been reached.
da0a7bd2 413 */
8bca6016 414 if ((td_write(td) || td_rw(td)) && (td_min_bs(td) == td_max_bs(td)))
62167762
JC
415 if (!td->o.verify_only || td->o.loops == 0)
416 if (vh->numberio != io_u->numberio)
417 ret = EILSEQ;
da0a7bd2 418
92bf48d5 419 if (!ret)
bfacf389 420 return 0;
7437ee87 421
bfacf389
JA
422 vc->name = "meta";
423 log_verify_failure(hdr, vc);
92bf48d5 424 return ret;
7437ee87
SL
425}
426
844ea602
JA
427static int verify_io_u_xxhash(struct verify_header *hdr, struct vcont *vc)
428{
429 void *p = io_u_verify_off(hdr, vc);
430 struct vhdr_xxhash *vh = hdr_priv(hdr);
431 uint32_t hash;
432 void *state;
433
434 dprint(FD_VERIFY, "xxhash verify io_u %p, len %u\n", vc->io_u, hdr->len);
435
436 state = XXH32_init(1);
437 XXH32_update(state, p, hdr->len - hdr_size(hdr));
438 hash = XXH32_digest(state);
439
440 if (vh->hash == hash)
441 return 0;
442
443 vc->name = "xxhash";
444 vc->good_crc = &vh->hash;
445 vc->bad_crc = &hash;
446 vc->crc_len = sizeof(hash);
447 log_verify_failure(hdr, vc);
448 return EILSEQ;
449}
450
936216f8 451static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
cd14cc10 452{
936216f8 453 void *p = io_u_verify_off(hdr, vc);
546dfd9f 454 struct vhdr_sha512 *vh = hdr_priv(hdr);
cd14cc10 455 uint8_t sha512[128];
25dfa848 456 struct fio_sha512_ctx sha512_ctx = {
cd14cc10
JA
457 .buf = sha512,
458 };
459
936216f8 460 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 461
25dfa848
JA
462 fio_sha512_init(&sha512_ctx);
463 fio_sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
cd14cc10 464
bfacf389
JA
465 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
466 return 0;
cd14cc10 467
bfacf389
JA
468 vc->name = "sha512";
469 vc->good_crc = vh->sha512;
470 vc->bad_crc = sha512_ctx.buf;
471 vc->crc_len = sizeof(vh->sha512);
472 log_verify_failure(hdr, vc);
473 return EILSEQ;
cd14cc10
JA
474}
475
936216f8 476static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
cd14cc10 477{
936216f8 478 void *p = io_u_verify_off(hdr, vc);
546dfd9f 479 struct vhdr_sha256 *vh = hdr_priv(hdr);
bc77f56f 480 uint8_t sha256[64];
25dfa848 481 struct fio_sha256_ctx sha256_ctx = {
cd14cc10
JA
482 .buf = sha256,
483 };
484
936216f8 485 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 486
25dfa848
JA
487 fio_sha256_init(&sha256_ctx);
488 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
cd14cc10 489
bfacf389
JA
490 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
491 return 0;
cd14cc10 492
bfacf389
JA
493 vc->name = "sha256";
494 vc->good_crc = vh->sha256;
495 vc->bad_crc = sha256_ctx.buf;
496 vc->crc_len = sizeof(vh->sha256);
497 log_verify_failure(hdr, vc);
498 return EILSEQ;
cd14cc10
JA
499}
500
936216f8 501static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
7c353ceb 502{
936216f8 503 void *p = io_u_verify_off(hdr, vc);
7c353ceb
JA
504 struct vhdr_sha1 *vh = hdr_priv(hdr);
505 uint32_t sha1[5];
25dfa848 506 struct fio_sha1_ctx sha1_ctx = {
7c353ceb
JA
507 .H = sha1,
508 };
509
936216f8 510 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
7c353ceb 511
25dfa848
JA
512 fio_sha1_init(&sha1_ctx);
513 fio_sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
7c353ceb 514
bfacf389
JA
515 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
516 return 0;
7c353ceb 517
bfacf389
JA
518 vc->name = "sha1";
519 vc->good_crc = vh->sha1;
520 vc->bad_crc = sha1_ctx.H;
521 vc->crc_len = sizeof(vh->sha1);
522 log_verify_failure(hdr, vc);
523 return EILSEQ;
7c353ceb
JA
524}
525
936216f8 526static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
1e154bdb 527{
936216f8 528 void *p = io_u_verify_off(hdr, vc);
546dfd9f 529 struct vhdr_crc7 *vh = hdr_priv(hdr);
1e154bdb
JA
530 unsigned char c;
531
936216f8 532 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 533
25dfa848 534 c = fio_crc7(p, hdr->len - hdr_size(hdr));
1e154bdb 535
bfacf389
JA
536 if (c == vh->crc7)
537 return 0;
1e154bdb 538
bfacf389
JA
539 vc->name = "crc7";
540 vc->good_crc = &vh->crc7;
541 vc->bad_crc = &c;
542 vc->crc_len = 1;
543 log_verify_failure(hdr, vc);
544 return EILSEQ;
1e154bdb
JA
545}
546
936216f8 547static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
969f7ed3 548{
936216f8 549 void *p = io_u_verify_off(hdr, vc);
546dfd9f 550 struct vhdr_crc16 *vh = hdr_priv(hdr);
969f7ed3
JA
551 unsigned short c;
552
936216f8 553 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 554
25dfa848 555 c = fio_crc16(p, hdr->len - hdr_size(hdr));
969f7ed3 556
bfacf389
JA
557 if (c == vh->crc16)
558 return 0;
969f7ed3 559
bfacf389
JA
560 vc->name = "crc16";
561 vc->good_crc = &vh->crc16;
562 vc->bad_crc = &c;
563 vc->crc_len = 2;
564 log_verify_failure(hdr, vc);
565 return EILSEQ;
969f7ed3
JA
566}
567
936216f8 568static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
d77a7af3 569{
936216f8 570 void *p = io_u_verify_off(hdr, vc);
546dfd9f 571 struct vhdr_crc64 *vh = hdr_priv(hdr);
d77a7af3
JA
572 unsigned long long c;
573
936216f8 574 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 575
25dfa848 576 c = fio_crc64(p, hdr->len - hdr_size(hdr));
d77a7af3 577
bfacf389
JA
578 if (c == vh->crc64)
579 return 0;
d77a7af3 580
bfacf389
JA
581 vc->name = "crc64";
582 vc->good_crc = &vh->crc64;
583 vc->bad_crc = &c;
584 vc->crc_len = 8;
585 log_verify_failure(hdr, vc);
586 return EILSEQ;
d77a7af3
JA
587}
588
936216f8 589static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
e29d1b70 590{
936216f8 591 void *p = io_u_verify_off(hdr, vc);
546dfd9f
JA
592 struct vhdr_crc32 *vh = hdr_priv(hdr);
593 uint32_t c;
e29d1b70 594
936216f8 595 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 596
25dfa848 597 c = fio_crc32(p, hdr->len - hdr_size(hdr));
e29d1b70 598
bfacf389
JA
599 if (c == vh->crc32)
600 return 0;
e29d1b70 601
bfacf389
JA
602 vc->name = "crc32";
603 vc->good_crc = &vh->crc32;
604 vc->bad_crc = &c;
605 vc->crc_len = 4;
606 log_verify_failure(hdr, vc);
607 return EILSEQ;
e29d1b70
JA
608}
609
936216f8 610static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
bac39e0e 611{
936216f8 612 void *p = io_u_verify_off(hdr, vc);
bac39e0e
JA
613 struct vhdr_crc32 *vh = hdr_priv(hdr);
614 uint32_t c;
615
936216f8 616 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
bac39e0e 617
25dfa848 618 c = fio_crc32c(p, hdr->len - hdr_size(hdr));
bac39e0e 619
bfacf389
JA
620 if (c == vh->crc32)
621 return 0;
bac39e0e 622
bfacf389
JA
623 vc->name = "crc32c";
624 vc->good_crc = &vh->crc32;
625 vc->bad_crc = &c;
626 vc->crc_len = 4;
627 log_verify_failure(hdr, vc);
628 return EILSEQ;
bac39e0e
JA
629}
630
936216f8 631static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
e29d1b70 632{
936216f8 633 void *p = io_u_verify_off(hdr, vc);
546dfd9f 634 struct vhdr_md5 *vh = hdr_priv(hdr);
8c432325 635 uint32_t hash[MD5_HASH_WORDS];
25dfa848 636 struct fio_md5_ctx md5_ctx = {
8c432325
JA
637 .hash = hash,
638 };
e29d1b70 639
936216f8 640 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
bd6f78b2 641
25dfa848
JA
642 fio_md5_init(&md5_ctx);
643 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
e29d1b70 644
bfacf389
JA
645 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
646 return 0;
e29d1b70 647
bfacf389
JA
648 vc->name = "md5";
649 vc->good_crc = vh->md5_digest;
650 vc->bad_crc = md5_ctx.hash;
651 vc->crc_len = sizeof(hash);
652 log_verify_failure(hdr, vc);
653 return EILSEQ;
e29d1b70
JA
654}
655
e8462bd8
JA
656/*
657 * Push IO verification to a separate thread
658 */
f8b0bd10 659int verify_io_u_async(struct thread_data *td, struct io_u **io_u_ptr)
e8462bd8 660{
f8b0bd10 661 struct io_u *io_u = *io_u_ptr;
e8462bd8 662
e8462bd8 663 pthread_mutex_lock(&td->io_u_lock);
d7ee2a7d 664
f8b0bd10
JA
665 if (io_u->file)
666 put_file_log(td, io_u->file);
667
0c41214f
RR
668 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
669 td->cur_depth--;
670 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
671 }
2ae0b204 672 flist_add_tail(&io_u->verify_list, &td->verify_list);
f8b0bd10 673 *io_u_ptr = NULL;
e8462bd8
JA
674 pthread_mutex_unlock(&td->io_u_lock);
675
676 pthread_cond_signal(&td->verify_cond);
e8462bd8
JA
677 return 0;
678}
679
0d29de83
JA
680static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
681{
682 static char zero_buf[1024];
683 unsigned int this_len, len;
684 int ret = 0;
685 void *p;
686
687 if (!td->o.trim_zero)
688 return 0;
689
690 len = io_u->buflen;
691 p = io_u->buf;
692 do {
693 this_len = sizeof(zero_buf);
694 if (this_len > len)
695 this_len = len;
696 if (memcmp(p, zero_buf, this_len)) {
697 ret = EILSEQ;
698 break;
699 }
700 len -= this_len;
701 p += this_len;
702 } while (len);
703
704 if (!ret)
705 return 0;
706
a917a8b3
JA
707 log_err("trim: verify failed at file %s offset %llu, length %lu"
708 ", block offset %lu\n",
709 io_u->file->file_name, io_u->offset, io_u->buflen,
2f68124f 710 (unsigned long) (p - io_u->buf));
0d29de83
JA
711 return ret;
712}
713
5964842c
AG
714static int verify_header(struct io_u *io_u, struct verify_header *hdr,
715 unsigned int hdr_num, unsigned int hdr_len)
f65d1c26
JA
716{
717 void *p = hdr;
718 uint32_t crc;
719
5964842c
AG
720 if (hdr->magic != FIO_HDR_MAGIC) {
721 log_err("verify: bad magic header %x, wanted %x",
722 hdr->magic, FIO_HDR_MAGIC);
723 goto err;
724 }
4445856a 725 if (hdr->len != hdr_len) {
5964842c
AG
726 log_err("verify: bad header length %u, wanted %u",
727 hdr->len, hdr_len);
728 goto err;
729 }
730 if (hdr->rand_seed != io_u->rand_seed) {
731 log_err("verify: bad header rand_seed %"PRIu64
732 ", wanted %"PRIu64,
733 hdr->rand_seed, io_u->rand_seed);
734 goto err;
735 }
ae38c0dc 736
25dfa848 737 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
5964842c
AG
738 if (crc != hdr->crc32) {
739 log_err("verify: bad header crc %x, calculated %x",
740 hdr->crc32, crc);
741 goto err;
742 }
743 return 0;
744
745err:
746 log_err(" at file %s offset %llu, length %u\n",
747 io_u->file->file_name,
748 io_u->offset + hdr_num * hdr_len, hdr_len);
749 return EILSEQ;
f65d1c26
JA
750}
751
f8b0bd10 752int verify_io_u(struct thread_data *td, struct io_u **io_u_ptr)
e29d1b70 753{
3f9f4e26 754 struct verify_header *hdr;
f8b0bd10 755 struct io_u *io_u = *io_u_ptr;
2b13e716 756 unsigned int header_size, hdr_inc, hdr_num = 0;
95646108 757 void *p;
e29d1b70
JA
758 int ret;
759
1dcc0498 760 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
36690c9b 761 return 0;
5c57c084
JA
762 /*
763 * If the IO engine is faking IO (like null), then just pretend
764 * we verified everything.
765 */
766 if (td->io_ops->flags & FIO_FAKEIO)
767 return 0;
768
0d29de83
JA
769 if (io_u->flags & IO_U_F_TRIMMED) {
770 ret = verify_trimmed_io_u(td, io_u);
771 goto done;
772 }
36690c9b 773
cfbcd0dc 774 hdr_inc = get_hdr_inc(td, io_u);
e29d1b70 775
a12a3b4d 776 ret = 0;
5ec10eaa
JA
777 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
778 p += hdr_inc, hdr_num++) {
bfacf389
JA
779 struct vcont vc = {
780 .io_u = io_u,
781 .hdr_num = hdr_num,
7d9fb455 782 .td = td,
bfacf389 783 };
f00b210f 784 unsigned int verify_type;
936216f8 785
f3e6cb95 786 if (ret && td->o.verify_fatal)
a12a3b4d 787 break;
f3e6cb95 788
2b13e716 789 header_size = __hdr_size(td->o.verify);
a59e170d 790 if (td->o.verify_offset)
2b13e716 791 memswp(p, p + td->o.verify_offset, header_size);
95646108 792 hdr = p;
e29d1b70 793
c4b6117b
PV
794 /*
795 * Make rand_seed check pass when have verifysort or
796 * verify_backlog.
797 */
798 if (td->o.verifysort || (td->flags & TD_F_VER_BACKLOG))
799 io_u->rand_seed = hdr->rand_seed;
800
5964842c
AG
801 ret = verify_header(io_u, hdr, hdr_num, hdr_inc);
802 if (ret)
803 return ret;
3f199b01 804
f00b210f
JA
805 if (td->o.verify != VERIFY_NONE)
806 verify_type = td->o.verify;
807 else
808 verify_type = hdr->verify_type;
809
810 switch (verify_type) {
3f9f4e26 811 case VERIFY_MD5:
936216f8 812 ret = verify_io_u_md5(hdr, &vc);
3f9f4e26
SL
813 break;
814 case VERIFY_CRC64:
936216f8 815 ret = verify_io_u_crc64(hdr, &vc);
3f9f4e26 816 break;
bac39e0e 817 case VERIFY_CRC32C:
3845591f 818 case VERIFY_CRC32C_INTEL:
936216f8 819 ret = verify_io_u_crc32c(hdr, &vc);
bac39e0e 820 break;
3f9f4e26 821 case VERIFY_CRC32:
936216f8 822 ret = verify_io_u_crc32(hdr, &vc);
3f9f4e26
SL
823 break;
824 case VERIFY_CRC16:
936216f8 825 ret = verify_io_u_crc16(hdr, &vc);
3f9f4e26
SL
826 break;
827 case VERIFY_CRC7:
936216f8 828 ret = verify_io_u_crc7(hdr, &vc);
3f9f4e26 829 break;
cd14cc10 830 case VERIFY_SHA256:
936216f8 831 ret = verify_io_u_sha256(hdr, &vc);
cd14cc10
JA
832 break;
833 case VERIFY_SHA512:
936216f8 834 ret = verify_io_u_sha512(hdr, &vc);
cd14cc10 835 break;
844ea602
JA
836 case VERIFY_XXHASH:
837 ret = verify_io_u_xxhash(hdr, &vc);
838 break;
7437ee87 839 case VERIFY_META:
92bf48d5 840 ret = verify_io_u_meta(hdr, &vc);
7437ee87 841 break;
7c353ceb 842 case VERIFY_SHA1:
936216f8 843 ret = verify_io_u_sha1(hdr, &vc);
7c353ceb 844 break;
92bf48d5
JA
845 case VERIFY_PATTERN:
846 ret = verify_io_u_pattern(hdr, &vc);
847 break;
3f9f4e26
SL
848 default:
849 log_err("Bad verify type %u\n", hdr->verify_type);
d16d4e09 850 ret = EINVAL;
3f9f4e26 851 }
f00b210f
JA
852
853 if (ret && verify_type != hdr->verify_type)
854 log_err("fio: verify type mismatch (%u media, %u given)\n",
855 hdr->verify_type, verify_type);
3f9f4e26 856 }
a7dfe862 857
0d29de83 858done:
f3e6cb95 859 if (ret && td->o.verify_fatal)
ebea2133 860 fio_mark_td_terminate(td);
f3e6cb95 861
a12a3b4d 862 return ret;
e29d1b70
JA
863}
864
7437ee87 865static void fill_meta(struct verify_header *hdr, struct thread_data *td,
5ec10eaa 866 struct io_u *io_u, unsigned int header_num)
7437ee87
SL
867{
868 struct vhdr_meta *vh = hdr_priv(hdr);
869
870 vh->thread = td->thread_number;
871
872 vh->time_sec = io_u->start_time.tv_sec;
873 vh->time_usec = io_u->start_time.tv_usec;
874
da0a7bd2 875 vh->numberio = io_u->numberio;
7437ee87
SL
876
877 vh->offset = io_u->offset + header_num * td->o.verify_interval;
878}
879
844ea602
JA
880static void fill_xxhash(struct verify_header *hdr, void *p, unsigned int len)
881{
882 struct vhdr_xxhash *vh = hdr_priv(hdr);
883 void *state;
884
885 state = XXH32_init(1);
886 XXH32_update(state, p, len);
887 vh->hash = XXH32_digest(state);
888}
889
cd14cc10
JA
890static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
891{
546dfd9f 892 struct vhdr_sha512 *vh = hdr_priv(hdr);
25dfa848 893 struct fio_sha512_ctx sha512_ctx = {
546dfd9f 894 .buf = vh->sha512,
cd14cc10
JA
895 };
896
25dfa848
JA
897 fio_sha512_init(&sha512_ctx);
898 fio_sha512_update(&sha512_ctx, p, len);
cd14cc10
JA
899}
900
901static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
902{
546dfd9f 903 struct vhdr_sha256 *vh = hdr_priv(hdr);
25dfa848 904 struct fio_sha256_ctx sha256_ctx = {
546dfd9f 905 .buf = vh->sha256,
cd14cc10
JA
906 };
907
25dfa848
JA
908 fio_sha256_init(&sha256_ctx);
909 fio_sha256_update(&sha256_ctx, p, len);
cd14cc10
JA
910}
911
7c353ceb
JA
912static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
913{
914 struct vhdr_sha1 *vh = hdr_priv(hdr);
25dfa848 915 struct fio_sha1_ctx sha1_ctx = {
7c353ceb
JA
916 .H = vh->sha1,
917 };
918
25dfa848
JA
919 fio_sha1_init(&sha1_ctx);
920 fio_sha1_update(&sha1_ctx, p, len);
7c353ceb
JA
921}
922
1e154bdb
JA
923static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
924{
546dfd9f
JA
925 struct vhdr_crc7 *vh = hdr_priv(hdr);
926
25dfa848 927 vh->crc7 = fio_crc7(p, len);
1e154bdb
JA
928}
929
969f7ed3
JA
930static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
931{
546dfd9f
JA
932 struct vhdr_crc16 *vh = hdr_priv(hdr);
933
25dfa848 934 vh->crc16 = fio_crc16(p, len);
969f7ed3
JA
935}
936
e29d1b70
JA
937static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
938{
546dfd9f
JA
939 struct vhdr_crc32 *vh = hdr_priv(hdr);
940
25dfa848 941 vh->crc32 = fio_crc32(p, len);
e29d1b70
JA
942}
943
bac39e0e
JA
944static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
945{
946 struct vhdr_crc32 *vh = hdr_priv(hdr);
947
25dfa848 948 vh->crc32 = fio_crc32c(p, len);
bac39e0e
JA
949}
950
d77a7af3
JA
951static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
952{
546dfd9f
JA
953 struct vhdr_crc64 *vh = hdr_priv(hdr);
954
25dfa848 955 vh->crc64 = fio_crc64(p, len);
d77a7af3
JA
956}
957
e29d1b70
JA
958static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
959{
546dfd9f 960 struct vhdr_md5 *vh = hdr_priv(hdr);
25dfa848 961 struct fio_md5_ctx md5_ctx = {
546dfd9f 962 .hash = (uint32_t *) vh->md5_digest,
8c432325 963 };
e29d1b70 964
25dfa848
JA
965 fio_md5_init(&md5_ctx);
966 fio_md5_update(&md5_ctx, p, len);
e29d1b70
JA
967}
968
7d9fb455
JA
969static void populate_hdr(struct thread_data *td, struct io_u *io_u,
970 struct verify_header *hdr, unsigned int header_num,
971 unsigned int header_len)
972{
973 unsigned int data_len;
974 void *data, *p;
975
976 p = (void *) hdr;
977
d3a173a9 978 hdr->magic = FIO_HDR_MAGIC;
7d9fb455 979 hdr->verify_type = td->o.verify;
d3a173a9 980 hdr->len = header_len;
7d9fb455 981 hdr->rand_seed = io_u->rand_seed;
25dfa848 982 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
f65d1c26 983
7d9fb455
JA
984 data_len = header_len - hdr_size(hdr);
985
986 data = p + hdr_size(hdr);
987 switch (td->o.verify) {
988 case VERIFY_MD5:
989 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
990 io_u, hdr->len);
991 fill_md5(hdr, data, data_len);
992 break;
993 case VERIFY_CRC64:
994 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
995 io_u, hdr->len);
996 fill_crc64(hdr, data, data_len);
997 break;
998 case VERIFY_CRC32C:
999 case VERIFY_CRC32C_INTEL:
1000 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
1001 io_u, hdr->len);
1002 fill_crc32c(hdr, data, data_len);
1003 break;
1004 case VERIFY_CRC32:
1005 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
1006 io_u, hdr->len);
1007 fill_crc32(hdr, data, data_len);
1008 break;
1009 case VERIFY_CRC16:
1010 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
1011 io_u, hdr->len);
1012 fill_crc16(hdr, data, data_len);
1013 break;
1014 case VERIFY_CRC7:
1015 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
1016 io_u, hdr->len);
1017 fill_crc7(hdr, data, data_len);
1018 break;
1019 case VERIFY_SHA256:
1020 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
1021 io_u, hdr->len);
1022 fill_sha256(hdr, data, data_len);
1023 break;
1024 case VERIFY_SHA512:
1025 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
1026 io_u, hdr->len);
1027 fill_sha512(hdr, data, data_len);
1028 break;
844ea602
JA
1029 case VERIFY_XXHASH:
1030 dprint(FD_VERIFY, "fill xxhash io_u %p, len %u\n",
1031 io_u, hdr->len);
1032 fill_xxhash(hdr, data, data_len);
1033 break;
7d9fb455
JA
1034 case VERIFY_META:
1035 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
1036 io_u, hdr->len);
1037 fill_meta(hdr, td, io_u, header_num);
1038 break;
1039 case VERIFY_SHA1:
1040 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
1041 io_u, hdr->len);
1042 fill_sha1(hdr, data, data_len);
1043 break;
92bf48d5
JA
1044 case VERIFY_PATTERN:
1045 /* nothing to do here */
1046 break;
7d9fb455
JA
1047 default:
1048 log_err("fio: bad verify type: %d\n", td->o.verify);
1049 assert(0);
1050 }
1051 if (td->o.verify_offset)
1052 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
1053}
1054
e29d1b70
JA
1055/*
1056 * fill body of io_u->buf with random data and add a header with the
c50ca7bd 1057 * checksum of choice
e29d1b70
JA
1058 */
1059void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
1060{
9cc3d150
JA
1061 if (td->o.verify == VERIFY_NULL)
1062 return;
1063
da0a7bd2
JC
1064 io_u->numberio = td->io_issues[io_u->ddir];
1065
c50ca7bd 1066 fill_pattern_headers(td, io_u, 0, 0);
e29d1b70
JA
1067}
1068
1069int get_next_verify(struct thread_data *td, struct io_u *io_u)
1070{
8de8f047 1071 struct io_piece *ipo = NULL;
e29d1b70 1072
d2d7fa53
JA
1073 /*
1074 * this io_u is from a requeue, we already filled the offsets
1075 */
1076 if (io_u->file)
1077 return 0;
1078
8de8f047
JA
1079 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
1080 struct rb_node *n = rb_first(&td->io_hist_tree);
e29d1b70 1081
8de8f047 1082 ipo = rb_entry(n, struct io_piece, rb_node);
f9401285
JA
1083
1084 /*
1085 * Ensure that the associated IO has completed
1086 */
1087 read_barrier();
1088 if (ipo->flags & IP_F_IN_FLIGHT)
1089 goto nothing;
1090
4b87898e 1091 rb_erase(n, &td->io_hist_tree);
a917a8b3
JA
1092 assert(ipo->flags & IP_F_ONRB);
1093 ipo->flags &= ~IP_F_ONRB;
01743ee1 1094 } else if (!flist_empty(&td->io_hist_list)) {
9342d5f8 1095 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
f9401285
JA
1096
1097 /*
1098 * Ensure that the associated IO has completed
1099 */
1100 read_barrier();
1101 if (ipo->flags & IP_F_IN_FLIGHT)
1102 goto nothing;
1103
01743ee1 1104 flist_del(&ipo->list);
a917a8b3
JA
1105 assert(ipo->flags & IP_F_ONLIST);
1106 ipo->flags &= ~IP_F_ONLIST;
8de8f047 1107 }
e29d1b70 1108
8de8f047 1109 if (ipo) {
0d29de83
JA
1110 td->io_hist_len--;
1111
e29d1b70
JA
1112 io_u->offset = ipo->offset;
1113 io_u->buflen = ipo->len;
da0a7bd2 1114 io_u->numberio = ipo->numberio;
36167d82 1115 io_u->file = ipo->file;
82af2a7c 1116 io_u->flags |= IO_U_F_VER_LIST;
97af62ce 1117
0d29de83
JA
1118 if (ipo->flags & IP_F_TRIMMED)
1119 io_u->flags |= IO_U_F_TRIMMED;
1120
d6aed795 1121 if (!fio_file_open(io_u->file)) {
97af62ce
JA
1122 int r = td_io_open_file(td, io_u->file);
1123
bd6f78b2
JA
1124 if (r) {
1125 dprint(FD_VERIFY, "failed file %s open\n",
1126 io_u->file->file_name);
97af62ce 1127 return 1;
bd6f78b2 1128 }
97af62ce
JA
1129 }
1130
1131 get_file(ipo->file);
d6aed795 1132 assert(fio_file_open(io_u->file));
e29d1b70 1133 io_u->ddir = DDIR_READ;
36167d82
JA
1134 io_u->xfer_buf = io_u->buf;
1135 io_u->xfer_buflen = io_u->buflen;
0d29de83
JA
1136
1137 remove_trim_entry(td, ipo);
e29d1b70 1138 free(ipo);
bd6f78b2 1139 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
c4b6117b
PV
1140
1141 if (!td->o.verify_pattern_bytes) {
1142 io_u->rand_seed = __rand(&td->__verify_state);
1143 if (sizeof(int) != sizeof(long *))
1144 io_u->rand_seed *= __rand(&td->__verify_state);
1145 }
e29d1b70
JA
1146 return 0;
1147 }
1148
f9401285 1149nothing:
bd6f78b2 1150 dprint(FD_VERIFY, "get_next_verify: empty\n");
e29d1b70
JA
1151 return 1;
1152}
e8462bd8 1153
dc5bfbb2
JA
1154void fio_verify_init(struct thread_data *td)
1155{
1156 if (td->o.verify == VERIFY_CRC32C_INTEL ||
1157 td->o.verify == VERIFY_CRC32C) {
1158 crc32c_intel_probe();
1159 }
1160}
1161
e8462bd8
JA
1162static void *verify_async_thread(void *data)
1163{
1164 struct thread_data *td = data;
1165 struct io_u *io_u;
1166 int ret = 0;
1167
1168 if (td->o.verify_cpumask_set &&
1169 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1170 log_err("fio: failed setting verify thread affinity\n");
1171 goto done;
1172 }
1173
1174 do {
e53ab27c
JA
1175 FLIST_HEAD(list);
1176
e8462bd8
JA
1177 read_barrier();
1178 if (td->verify_thread_exit)
1179 break;
1180
1181 pthread_mutex_lock(&td->io_u_lock);
1182
1183 while (flist_empty(&td->verify_list) &&
1184 !td->verify_thread_exit) {
b36e298b
JA
1185 ret = pthread_cond_wait(&td->verify_cond,
1186 &td->io_u_lock);
e8462bd8
JA
1187 if (ret) {
1188 pthread_mutex_unlock(&td->io_u_lock);
1189 break;
1190 }
1191 }
1192
e53ab27c
JA
1193 flist_splice_init(&td->verify_list, &list);
1194 pthread_mutex_unlock(&td->io_u_lock);
1195
1196 if (flist_empty(&list))
e8462bd8 1197 continue;
e8462bd8 1198
e53ab27c 1199 while (!flist_empty(&list)) {
9342d5f8 1200 io_u = flist_first_entry(&list, struct io_u, verify_list);
f8b0bd10
JA
1201 flist_del_init(&io_u->verify_list);
1202
1203 io_u->flags |= IO_U_F_NO_FILE_PUT;
1204 ret = verify_io_u(td, &io_u);
e8462bd8 1205
e53ab27c 1206 put_io_u(td, io_u);
d561f2ab
JA
1207 if (!ret)
1208 continue;
8b28bd41 1209 if (td_non_fatal_error(td, ERROR_TYPE_VERIFY_BIT, ret)) {
d561f2ab
JA
1210 update_error_count(td, ret);
1211 td_clear_error(td);
1212 ret = 0;
1213 }
e53ab27c 1214 }
e8462bd8
JA
1215 } while (!ret);
1216
d561f2ab
JA
1217 if (ret) {
1218 td_verror(td, ret, "async_verify");
f3e6cb95 1219 if (td->o.verify_fatal)
ebea2133 1220 fio_mark_td_terminate(td);
d561f2ab
JA
1221 }
1222
e8462bd8
JA
1223done:
1224 pthread_mutex_lock(&td->io_u_lock);
1225 td->nr_verify_threads--;
1226 pthread_mutex_unlock(&td->io_u_lock);
1227
1228 pthread_cond_signal(&td->free_cond);
1229 return NULL;
1230}
1231
1232int verify_async_init(struct thread_data *td)
1233{
1234 int i, ret;
304a47c7
VA
1235 pthread_attr_t attr;
1236
1237 pthread_attr_init(&attr);
1238 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
e8462bd8
JA
1239
1240 td->verify_thread_exit = 0;
1241
1242 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1243 for (i = 0; i < td->o.verify_async; i++) {
304a47c7 1244 ret = pthread_create(&td->verify_threads[i], &attr,
e8462bd8
JA
1245 verify_async_thread, td);
1246 if (ret) {
1247 log_err("fio: async verify creation failed: %s\n",
1248 strerror(ret));
1249 break;
1250 }
1251 ret = pthread_detach(td->verify_threads[i]);
1252 if (ret) {
1253 log_err("fio: async verify thread detach failed: %s\n",
1254 strerror(ret));
1255 break;
1256 }
1257 td->nr_verify_threads++;
1258 }
1259
304a47c7
VA
1260 pthread_attr_destroy(&attr);
1261
e8462bd8 1262 if (i != td->o.verify_async) {
e40823b1 1263 log_err("fio: only %d verify threads started, exiting\n", i);
e8462bd8
JA
1264 td->verify_thread_exit = 1;
1265 write_barrier();
1266 pthread_cond_broadcast(&td->verify_cond);
1267 return 1;
1268 }
1269
1270 return 0;
1271}
1272
1273void verify_async_exit(struct thread_data *td)
1274{
1275 td->verify_thread_exit = 1;
1276 write_barrier();
1277 pthread_cond_broadcast(&td->verify_cond);
1278
1279 pthread_mutex_lock(&td->io_u_lock);
1280
1281 while (td->nr_verify_threads)
1282 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1283
1284 pthread_mutex_unlock(&td->io_u_lock);
1285 free(td->verify_threads);
1286 td->verify_threads = NULL;
1287}