Merge branch 'master' into gfio
[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"
e8462bd8 13#include "smalloc.h"
0d29de83 14#include "trim.h"
637ef8d9 15#include "lib/rand.h"
51aa2da8 16#include "lib/hweight.h"
e29d1b70 17
eef6eea1
JA
18#include "crc/md5.h"
19#include "crc/crc64.h"
20#include "crc/crc32.h"
bac39e0e 21#include "crc/crc32c.h"
eef6eea1
JA
22#include "crc/crc16.h"
23#include "crc/crc7.h"
24#include "crc/sha256.h"
25#include "crc/sha512.h"
7c353ceb 26#include "crc/sha1.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
32void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed)
90059d65
JA
33{
34 switch (td->o.verify_pattern_bytes) {
35 case 0:
bd6f78b2 36 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
7d9fb455
JA
37 if (use_seed)
38 __fill_random_buf(p, len, seed);
39 else
3545a109 40 io_u->rand_seed = fill_random_buf(&td->buf_state, p, len);
90059d65
JA
41 break;
42 case 1:
10e8a7b3 43 if (io_u->buf_filled_len >= len) {
cbe8d756
RR
44 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
45 return;
46 }
bd6f78b2 47 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
0e92f873 48 memset(p, td->o.verify_pattern[0], len);
cbe8d756 49 io_u->buf_filled_len = len;
90059d65 50 break;
0e92f873
RR
51 default: {
52 unsigned int i = 0, size = 0;
90059d65
JA
53 unsigned char *b = p;
54
10e8a7b3 55 if (io_u->buf_filled_len >= len) {
cbe8d756
RR
56 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
57 td->o.verify_pattern_bytes, len);
58 return;
59 }
81f0366c 60
bd6f78b2
JA
61 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
62 td->o.verify_pattern_bytes, len);
63
90059d65 64 while (i < len) {
0e92f873
RR
65 size = td->o.verify_pattern_bytes;
66 if (size > (len - i))
67 size = len - i;
68 memcpy(b+i, td->o.verify_pattern, size);
69 i += size;
90059d65 70 }
cbe8d756 71 io_u->buf_filled_len = len;
90059d65
JA
72 break;
73 }
74 }
75}
76
cfbcd0dc
JA
77static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
78{
79 unsigned int hdr_inc;
80
81 hdr_inc = io_u->buflen;
8a99fdf6 82 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
cfbcd0dc
JA
83 hdr_inc = td->o.verify_interval;
84
85 return hdr_inc;
86}
87
c50ca7bd
JA
88static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
89 unsigned long seed, int use_seed)
90{
91 unsigned int hdr_inc, header_num;
92 struct verify_header *hdr;
93 void *p = io_u->buf;
94
95 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
96
cfbcd0dc 97 hdr_inc = get_hdr_inc(td, io_u);
c50ca7bd
JA
98 header_num = 0;
99 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
100 hdr = p;
101 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
102 header_num++;
103 }
104}
105
4764aec9 106static void memswp(void *buf1, void *buf2, unsigned int len)
546a9142 107{
dee6de74
SL
108 char swap[200];
109
110 assert(len <= sizeof(swap));
90059d65 111
546a9142
SL
112 memcpy(&swap, buf1, len);
113 memcpy(buf1, buf2, len);
114 memcpy(buf2, &swap, len);
115}
116
e29d1b70
JA
117static void hexdump(void *buffer, int len)
118{
119 unsigned char *p = buffer;
120 int i;
121
122 for (i = 0; i < len; i++)
bfacf389
JA
123 log_err("%02x", p[i]);
124 log_err("\n");
e29d1b70
JA
125}
126
87677832
JA
127/*
128 * Prepare for seperation of verify_header and checksum header
129 */
546dfd9f 130static inline unsigned int __hdr_size(int verify_type)
87677832 131{
03e20d68 132 unsigned int len = 0;
87677832 133
546dfd9f
JA
134 switch (verify_type) {
135 case VERIFY_NONE:
136 case VERIFY_NULL:
137 len = 0;
138 break;
139 case VERIFY_MD5:
140 len = sizeof(struct vhdr_md5);
141 break;
142 case VERIFY_CRC64:
143 len = sizeof(struct vhdr_crc64);
144 break;
bac39e0e 145 case VERIFY_CRC32C:
546dfd9f 146 case VERIFY_CRC32:
3845591f 147 case VERIFY_CRC32C_INTEL:
546dfd9f
JA
148 len = sizeof(struct vhdr_crc32);
149 break;
150 case VERIFY_CRC16:
151 len = sizeof(struct vhdr_crc16);
152 break;
153 case VERIFY_CRC7:
154 len = sizeof(struct vhdr_crc7);
155 break;
156 case VERIFY_SHA256:
157 len = sizeof(struct vhdr_sha256);
158 break;
159 case VERIFY_SHA512:
160 len = sizeof(struct vhdr_sha512);
161 break;
7437ee87
SL
162 case VERIFY_META:
163 len = sizeof(struct vhdr_meta);
164 break;
7c353ceb
JA
165 case VERIFY_SHA1:
166 len = sizeof(struct vhdr_sha1);
167 break;
92bf48d5
JA
168 case VERIFY_PATTERN:
169 len = 0;
170 break;
546dfd9f
JA
171 default:
172 log_err("fio: unknown verify header!\n");
173 assert(0);
174 }
175
176 return len + sizeof(struct verify_header);
87677832
JA
177}
178
179static inline unsigned int hdr_size(struct verify_header *hdr)
180{
546dfd9f
JA
181 return __hdr_size(hdr->verify_type);
182}
183
184static void *hdr_priv(struct verify_header *hdr)
185{
186 void *priv = hdr;
187
188 return priv + sizeof(struct verify_header);
87677832
JA
189}
190
936216f8
JA
191/*
192 * Verify container, pass info to verify handlers and allow them to
193 * pass info back in case of error
194 */
195struct vcont {
196 /*
197 * Input
198 */
199 struct io_u *io_u;
200 unsigned int hdr_num;
7d9fb455 201 struct thread_data *td;
936216f8
JA
202
203 /*
204 * Output, only valid in case of error
205 */
bfacf389
JA
206 const char *name;
207 void *good_crc;
208 void *bad_crc;
936216f8
JA
209 unsigned int crc_len;
210};
211
c50ca7bd
JA
212static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
213 const char *type, struct fio_file *f)
7d9fb455 214{
6f260b31 215 char *ptr, fname[256];
7d9fb455
JA
216 int ret, fd;
217
6f260b31
JA
218 ptr = strdup(f->file_name);
219 strcpy(fname, basename(ptr));
c50ca7bd
JA
220
221 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
7d9fb455
JA
222
223 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
224 if (fd < 0) {
225 perror("open verify buf file");
226 return;
227 }
228
229 while (len) {
230 ret = write(fd, buf, len);
231 if (!ret)
232 break;
233 else if (ret < 0) {
234 perror("write verify buf file");
235 break;
236 }
237 len -= ret;
238 buf += ret;
239 }
240
241 close(fd);
c50ca7bd 242 log_err(" %s data dumped as %s\n", type, fname);
6f260b31 243 free(ptr);
7d9fb455
JA
244}
245
c50ca7bd
JA
246/*
247 * Dump the contents of the read block and re-generate the correct data
248 * and dump that too.
249 */
7d9fb455
JA
250static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
251{
252 struct thread_data *td = vc->td;
253 struct io_u *io_u = vc->io_u;
254 unsigned long hdr_offset;
7d9fb455 255 struct io_u dummy;
c50ca7bd 256 void *buf;
7d9fb455 257
0dce9bc9
SL
258 if (!td->o.verify_dump)
259 return;
260
c50ca7bd
JA
261 /*
262 * Dump the contents we just read off disk
263 */
7d9fb455
JA
264 hdr_offset = vc->hdr_num * hdr->len;
265
c50ca7bd
JA
266 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
267 "received", vc->io_u->file);
7d9fb455 268
c50ca7bd
JA
269 /*
270 * Allocate a new buf and re-generate the original data
271 */
272 buf = malloc(io_u->buflen);
7d9fb455 273 dummy = *io_u;
c50ca7bd 274 dummy.buf = buf;
4aae38a6 275 dummy.rand_seed = hdr->rand_seed;
cfbcd0dc 276 dummy.buf_filled_len = 0;
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 }
e8462bd8
JA
599 flist_del(&io_u->list);
600 flist_add_tail(&io_u->list, &td->verify_list);
2ecc1b57 601 io_u->flags |= IO_U_F_FREE_DEF;
e8462bd8
JA
602 pthread_mutex_unlock(&td->io_u_lock);
603
604 pthread_cond_signal(&td->verify_cond);
e8462bd8
JA
605 return 0;
606}
607
0d29de83
JA
608static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
609{
610 static char zero_buf[1024];
611 unsigned int this_len, len;
612 int ret = 0;
613 void *p;
614
615 if (!td->o.trim_zero)
616 return 0;
617
618 len = io_u->buflen;
619 p = io_u->buf;
620 do {
621 this_len = sizeof(zero_buf);
622 if (this_len > len)
623 this_len = len;
624 if (memcmp(p, zero_buf, this_len)) {
625 ret = EILSEQ;
626 break;
627 }
628 len -= this_len;
629 p += this_len;
630 } while (len);
631
632 if (!ret)
633 return 0;
634
a917a8b3
JA
635 log_err("trim: verify failed at file %s offset %llu, length %lu"
636 ", block offset %lu\n",
637 io_u->file->file_name, io_u->offset, io_u->buflen,
2f68124f 638 (unsigned long) (p - io_u->buf));
0d29de83
JA
639 return ret;
640}
641
0ae2c6e1 642static int verify_header(struct io_u *io_u, struct verify_header *hdr)
f65d1c26
JA
643{
644 void *p = hdr;
645 uint32_t crc;
646
ae38c0dc
JA
647 if (hdr->magic != FIO_HDR_MAGIC)
648 return 0;
0ae2c6e1
JA
649 if (hdr->len > io_u->buflen) {
650 log_err("fio: verify header exceeds buffer length (%u > %lu)\n", hdr->len, io_u->buflen);
651 return 0;
652 }
ae38c0dc 653
25dfa848 654 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
f65d1c26
JA
655 if (crc == hdr->crc32)
656 return 1;
657
658 log_err("fio: verify header crc %x, calculated %x\n", hdr->crc32, crc);
659 return 0;
660}
661
36690c9b 662int verify_io_u(struct thread_data *td, struct io_u *io_u)
e29d1b70 663{
3f9f4e26 664 struct verify_header *hdr;
2b13e716 665 unsigned int header_size, hdr_inc, hdr_num = 0;
95646108 666 void *p;
e29d1b70
JA
667 int ret;
668
1dcc0498 669 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
36690c9b 670 return 0;
0d29de83
JA
671 if (io_u->flags & IO_U_F_TRIMMED) {
672 ret = verify_trimmed_io_u(td, io_u);
673 goto done;
674 }
36690c9b 675
cfbcd0dc 676 hdr_inc = get_hdr_inc(td, io_u);
e29d1b70 677
a12a3b4d 678 ret = 0;
5ec10eaa
JA
679 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
680 p += hdr_inc, hdr_num++) {
bfacf389
JA
681 struct vcont vc = {
682 .io_u = io_u,
683 .hdr_num = hdr_num,
7d9fb455 684 .td = td,
bfacf389 685 };
f00b210f 686 unsigned int verify_type;
936216f8 687
f3e6cb95 688 if (ret && td->o.verify_fatal)
a12a3b4d 689 break;
f3e6cb95 690
2b13e716 691 header_size = __hdr_size(td->o.verify);
a59e170d 692 if (td->o.verify_offset)
2b13e716 693 memswp(p, p + td->o.verify_offset, header_size);
95646108 694 hdr = p;
e29d1b70 695
0ae2c6e1 696 if (!verify_header(io_u, hdr)) {
ae38c0dc
JA
697 log_err("verify: bad magic header %x, wanted %x at "
698 "file %s offset %llu, length %u\n",
d3a173a9 699 hdr->magic, FIO_HDR_MAGIC,
c9b44031
JA
700 io_u->file->file_name,
701 io_u->offset + hdr_num * hdr->len, hdr->len);
9fd18969 702 return EILSEQ;
3f199b01
JA
703 }
704
f00b210f
JA
705 if (td->o.verify != VERIFY_NONE)
706 verify_type = td->o.verify;
707 else
708 verify_type = hdr->verify_type;
709
710 switch (verify_type) {
3f9f4e26 711 case VERIFY_MD5:
936216f8 712 ret = verify_io_u_md5(hdr, &vc);
3f9f4e26
SL
713 break;
714 case VERIFY_CRC64:
936216f8 715 ret = verify_io_u_crc64(hdr, &vc);
3f9f4e26 716 break;
bac39e0e 717 case VERIFY_CRC32C:
3845591f 718 case VERIFY_CRC32C_INTEL:
936216f8 719 ret = verify_io_u_crc32c(hdr, &vc);
bac39e0e 720 break;
3f9f4e26 721 case VERIFY_CRC32:
936216f8 722 ret = verify_io_u_crc32(hdr, &vc);
3f9f4e26
SL
723 break;
724 case VERIFY_CRC16:
936216f8 725 ret = verify_io_u_crc16(hdr, &vc);
3f9f4e26
SL
726 break;
727 case VERIFY_CRC7:
936216f8 728 ret = verify_io_u_crc7(hdr, &vc);
3f9f4e26 729 break;
cd14cc10 730 case VERIFY_SHA256:
936216f8 731 ret = verify_io_u_sha256(hdr, &vc);
cd14cc10
JA
732 break;
733 case VERIFY_SHA512:
936216f8 734 ret = verify_io_u_sha512(hdr, &vc);
cd14cc10 735 break;
7437ee87 736 case VERIFY_META:
92bf48d5 737 ret = verify_io_u_meta(hdr, &vc);
7437ee87 738 break;
7c353ceb 739 case VERIFY_SHA1:
936216f8 740 ret = verify_io_u_sha1(hdr, &vc);
7c353ceb 741 break;
92bf48d5
JA
742 case VERIFY_PATTERN:
743 ret = verify_io_u_pattern(hdr, &vc);
744 break;
3f9f4e26
SL
745 default:
746 log_err("Bad verify type %u\n", hdr->verify_type);
d16d4e09 747 ret = EINVAL;
3f9f4e26 748 }
f00b210f
JA
749
750 if (ret && verify_type != hdr->verify_type)
751 log_err("fio: verify type mismatch (%u media, %u given)\n",
752 hdr->verify_type, verify_type);
3f9f4e26 753 }
a7dfe862 754
0d29de83 755done:
f3e6cb95
JA
756 if (ret && td->o.verify_fatal)
757 td->terminate = 1;
758
a12a3b4d 759 return ret;
e29d1b70
JA
760}
761
7437ee87 762static void fill_meta(struct verify_header *hdr, struct thread_data *td,
5ec10eaa 763 struct io_u *io_u, unsigned int header_num)
7437ee87
SL
764{
765 struct vhdr_meta *vh = hdr_priv(hdr);
766
767 vh->thread = td->thread_number;
768
769 vh->time_sec = io_u->start_time.tv_sec;
770 vh->time_usec = io_u->start_time.tv_usec;
771
772 vh->numberio = td->io_issues[DDIR_WRITE];
773
774 vh->offset = io_u->offset + header_num * td->o.verify_interval;
775}
776
cd14cc10
JA
777static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
778{
546dfd9f 779 struct vhdr_sha512 *vh = hdr_priv(hdr);
25dfa848 780 struct fio_sha512_ctx sha512_ctx = {
546dfd9f 781 .buf = vh->sha512,
cd14cc10
JA
782 };
783
25dfa848
JA
784 fio_sha512_init(&sha512_ctx);
785 fio_sha512_update(&sha512_ctx, p, len);
cd14cc10
JA
786}
787
788static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
789{
546dfd9f 790 struct vhdr_sha256 *vh = hdr_priv(hdr);
25dfa848 791 struct fio_sha256_ctx sha256_ctx = {
546dfd9f 792 .buf = vh->sha256,
cd14cc10
JA
793 };
794
25dfa848
JA
795 fio_sha256_init(&sha256_ctx);
796 fio_sha256_update(&sha256_ctx, p, len);
cd14cc10
JA
797}
798
7c353ceb
JA
799static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
800{
801 struct vhdr_sha1 *vh = hdr_priv(hdr);
25dfa848 802 struct fio_sha1_ctx sha1_ctx = {
7c353ceb
JA
803 .H = vh->sha1,
804 };
805
25dfa848
JA
806 fio_sha1_init(&sha1_ctx);
807 fio_sha1_update(&sha1_ctx, p, len);
7c353ceb
JA
808}
809
1e154bdb
JA
810static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
811{
546dfd9f
JA
812 struct vhdr_crc7 *vh = hdr_priv(hdr);
813
25dfa848 814 vh->crc7 = fio_crc7(p, len);
1e154bdb
JA
815}
816
969f7ed3
JA
817static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
818{
546dfd9f
JA
819 struct vhdr_crc16 *vh = hdr_priv(hdr);
820
25dfa848 821 vh->crc16 = fio_crc16(p, len);
969f7ed3
JA
822}
823
e29d1b70
JA
824static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
825{
546dfd9f
JA
826 struct vhdr_crc32 *vh = hdr_priv(hdr);
827
25dfa848 828 vh->crc32 = fio_crc32(p, len);
e29d1b70
JA
829}
830
bac39e0e
JA
831static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
832{
833 struct vhdr_crc32 *vh = hdr_priv(hdr);
834
25dfa848 835 vh->crc32 = fio_crc32c(p, len);
bac39e0e
JA
836}
837
d77a7af3
JA
838static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
839{
546dfd9f
JA
840 struct vhdr_crc64 *vh = hdr_priv(hdr);
841
25dfa848 842 vh->crc64 = fio_crc64(p, len);
d77a7af3
JA
843}
844
e29d1b70
JA
845static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
846{
546dfd9f 847 struct vhdr_md5 *vh = hdr_priv(hdr);
25dfa848 848 struct fio_md5_ctx md5_ctx = {
546dfd9f 849 .hash = (uint32_t *) vh->md5_digest,
8c432325 850 };
e29d1b70 851
25dfa848
JA
852 fio_md5_init(&md5_ctx);
853 fio_md5_update(&md5_ctx, p, len);
e29d1b70
JA
854}
855
7d9fb455
JA
856static void populate_hdr(struct thread_data *td, struct io_u *io_u,
857 struct verify_header *hdr, unsigned int header_num,
858 unsigned int header_len)
859{
860 unsigned int data_len;
861 void *data, *p;
862
863 p = (void *) hdr;
864
d3a173a9 865 hdr->magic = FIO_HDR_MAGIC;
7d9fb455 866 hdr->verify_type = td->o.verify;
d3a173a9 867 hdr->len = header_len;
7d9fb455 868 hdr->rand_seed = io_u->rand_seed;
25dfa848 869 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
f65d1c26 870
7d9fb455
JA
871 data_len = header_len - hdr_size(hdr);
872
873 data = p + hdr_size(hdr);
874 switch (td->o.verify) {
875 case VERIFY_MD5:
876 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
877 io_u, hdr->len);
878 fill_md5(hdr, data, data_len);
879 break;
880 case VERIFY_CRC64:
881 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
882 io_u, hdr->len);
883 fill_crc64(hdr, data, data_len);
884 break;
885 case VERIFY_CRC32C:
886 case VERIFY_CRC32C_INTEL:
887 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
888 io_u, hdr->len);
889 fill_crc32c(hdr, data, data_len);
890 break;
891 case VERIFY_CRC32:
892 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
893 io_u, hdr->len);
894 fill_crc32(hdr, data, data_len);
895 break;
896 case VERIFY_CRC16:
897 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
898 io_u, hdr->len);
899 fill_crc16(hdr, data, data_len);
900 break;
901 case VERIFY_CRC7:
902 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
903 io_u, hdr->len);
904 fill_crc7(hdr, data, data_len);
905 break;
906 case VERIFY_SHA256:
907 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
908 io_u, hdr->len);
909 fill_sha256(hdr, data, data_len);
910 break;
911 case VERIFY_SHA512:
912 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
913 io_u, hdr->len);
914 fill_sha512(hdr, data, data_len);
915 break;
916 case VERIFY_META:
917 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
918 io_u, hdr->len);
919 fill_meta(hdr, td, io_u, header_num);
920 break;
921 case VERIFY_SHA1:
922 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
923 io_u, hdr->len);
924 fill_sha1(hdr, data, data_len);
925 break;
92bf48d5
JA
926 case VERIFY_PATTERN:
927 /* nothing to do here */
928 break;
7d9fb455
JA
929 default:
930 log_err("fio: bad verify type: %d\n", td->o.verify);
931 assert(0);
932 }
933 if (td->o.verify_offset)
934 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
935}
936
e29d1b70
JA
937/*
938 * fill body of io_u->buf with random data and add a header with the
c50ca7bd 939 * checksum of choice
e29d1b70
JA
940 */
941void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
942{
9cc3d150
JA
943 if (td->o.verify == VERIFY_NULL)
944 return;
945
c50ca7bd 946 fill_pattern_headers(td, io_u, 0, 0);
e29d1b70
JA
947}
948
949int get_next_verify(struct thread_data *td, struct io_u *io_u)
950{
8de8f047 951 struct io_piece *ipo = NULL;
e29d1b70 952
d2d7fa53
JA
953 /*
954 * this io_u is from a requeue, we already filled the offsets
955 */
956 if (io_u->file)
957 return 0;
958
8de8f047
JA
959 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
960 struct rb_node *n = rb_first(&td->io_hist_tree);
e29d1b70 961
8de8f047 962 ipo = rb_entry(n, struct io_piece, rb_node);
4b87898e 963 rb_erase(n, &td->io_hist_tree);
a917a8b3
JA
964 assert(ipo->flags & IP_F_ONRB);
965 ipo->flags &= ~IP_F_ONRB;
01743ee1
JA
966 } else if (!flist_empty(&td->io_hist_list)) {
967 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
968 flist_del(&ipo->list);
a917a8b3
JA
969 assert(ipo->flags & IP_F_ONLIST);
970 ipo->flags &= ~IP_F_ONLIST;
8de8f047 971 }
e29d1b70 972
8de8f047 973 if (ipo) {
0d29de83
JA
974 td->io_hist_len--;
975
e29d1b70
JA
976 io_u->offset = ipo->offset;
977 io_u->buflen = ipo->len;
36167d82 978 io_u->file = ipo->file;
82af2a7c 979 io_u->flags |= IO_U_F_VER_LIST;
97af62ce 980
0d29de83
JA
981 if (ipo->flags & IP_F_TRIMMED)
982 io_u->flags |= IO_U_F_TRIMMED;
983
d6aed795 984 if (!fio_file_open(io_u->file)) {
97af62ce
JA
985 int r = td_io_open_file(td, io_u->file);
986
bd6f78b2
JA
987 if (r) {
988 dprint(FD_VERIFY, "failed file %s open\n",
989 io_u->file->file_name);
97af62ce 990 return 1;
bd6f78b2 991 }
97af62ce
JA
992 }
993
994 get_file(ipo->file);
d6aed795 995 assert(fio_file_open(io_u->file));
e29d1b70 996 io_u->ddir = DDIR_READ;
36167d82
JA
997 io_u->xfer_buf = io_u->buf;
998 io_u->xfer_buflen = io_u->buflen;
0d29de83
JA
999
1000 remove_trim_entry(td, ipo);
e29d1b70 1001 free(ipo);
bd6f78b2 1002 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
e29d1b70
JA
1003 return 0;
1004 }
1005
bd6f78b2 1006 dprint(FD_VERIFY, "get_next_verify: empty\n");
e29d1b70
JA
1007 return 1;
1008}
e8462bd8 1009
83ea422a
JA
1010void fio_verify_init(struct thread_data *td)
1011{
1012 if (td->o.verify == VERIFY_CRC32C_INTEL ||
1013 td->o.verify == VERIFY_CRC32C) {
1014 crc32c_intel_probe();
1015 }
1016}
1017
e8462bd8
JA
1018static void *verify_async_thread(void *data)
1019{
1020 struct thread_data *td = data;
1021 struct io_u *io_u;
1022 int ret = 0;
1023
1024 if (td->o.verify_cpumask_set &&
1025 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1026 log_err("fio: failed setting verify thread affinity\n");
1027 goto done;
1028 }
1029
1030 do {
e53ab27c
JA
1031 FLIST_HEAD(list);
1032
e8462bd8
JA
1033 read_barrier();
1034 if (td->verify_thread_exit)
1035 break;
1036
1037 pthread_mutex_lock(&td->io_u_lock);
1038
1039 while (flist_empty(&td->verify_list) &&
1040 !td->verify_thread_exit) {
b36e298b
JA
1041 ret = pthread_cond_wait(&td->verify_cond,
1042 &td->io_u_lock);
e8462bd8
JA
1043 if (ret) {
1044 pthread_mutex_unlock(&td->io_u_lock);
1045 break;
1046 }
1047 }
1048
e53ab27c
JA
1049 flist_splice_init(&td->verify_list, &list);
1050 pthread_mutex_unlock(&td->io_u_lock);
1051
1052 if (flist_empty(&list))
e8462bd8 1053 continue;
e8462bd8 1054
e53ab27c
JA
1055 while (!flist_empty(&list)) {
1056 io_u = flist_entry(list.next, struct io_u, list);
1057 flist_del_init(&io_u->list);
e8462bd8 1058
d561f2ab 1059 ret = verify_io_u(td, io_u);
e53ab27c 1060 put_io_u(td, io_u);
d561f2ab
JA
1061 if (!ret)
1062 continue;
8b28bd41 1063 if (td_non_fatal_error(td, ERROR_TYPE_VERIFY_BIT, ret)) {
d561f2ab
JA
1064 update_error_count(td, ret);
1065 td_clear_error(td);
1066 ret = 0;
1067 }
e53ab27c 1068 }
e8462bd8
JA
1069 } while (!ret);
1070
d561f2ab
JA
1071 if (ret) {
1072 td_verror(td, ret, "async_verify");
f3e6cb95
JA
1073 if (td->o.verify_fatal)
1074 td->terminate = 1;
d561f2ab
JA
1075 }
1076
e8462bd8
JA
1077done:
1078 pthread_mutex_lock(&td->io_u_lock);
1079 td->nr_verify_threads--;
1080 pthread_mutex_unlock(&td->io_u_lock);
1081
1082 pthread_cond_signal(&td->free_cond);
1083 return NULL;
1084}
1085
1086int verify_async_init(struct thread_data *td)
1087{
1088 int i, ret;
304a47c7
VA
1089 pthread_attr_t attr;
1090
1091 pthread_attr_init(&attr);
1092 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
e8462bd8
JA
1093
1094 td->verify_thread_exit = 0;
1095
1096 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1097 for (i = 0; i < td->o.verify_async; i++) {
304a47c7 1098 ret = pthread_create(&td->verify_threads[i], &attr,
e8462bd8
JA
1099 verify_async_thread, td);
1100 if (ret) {
1101 log_err("fio: async verify creation failed: %s\n",
1102 strerror(ret));
1103 break;
1104 }
1105 ret = pthread_detach(td->verify_threads[i]);
1106 if (ret) {
1107 log_err("fio: async verify thread detach failed: %s\n",
1108 strerror(ret));
1109 break;
1110 }
1111 td->nr_verify_threads++;
1112 }
1113
304a47c7
VA
1114 pthread_attr_destroy(&attr);
1115
e8462bd8 1116 if (i != td->o.verify_async) {
e40823b1 1117 log_err("fio: only %d verify threads started, exiting\n", i);
e8462bd8
JA
1118 td->verify_thread_exit = 1;
1119 write_barrier();
1120 pthread_cond_broadcast(&td->verify_cond);
1121 return 1;
1122 }
1123
1124 return 0;
1125}
1126
1127void verify_async_exit(struct thread_data *td)
1128{
1129 td->verify_thread_exit = 1;
1130 write_barrier();
1131 pthread_cond_broadcast(&td->verify_cond);
1132
1133 pthread_mutex_lock(&td->io_u_lock);
1134
1135 while (td->nr_verify_threads)
1136 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1137
1138 pthread_mutex_unlock(&td->io_u_lock);
1139 free(td->verify_threads);
1140 td->verify_threads = NULL;
1141}