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