blob: 6a3f028f765be90ee22fd4028440ec0fa351fd7f [file] [log] [blame]
Jens Axboee29d1b72006-10-18 15:43:15 +02001/*
2 * IO verification helpers
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
Jens Axboe97af62c2007-05-22 11:12:13 +02007#include <assert.h>
Jens Axboee8462bd2009-07-06 12:59:04 +02008#include <pthread.h>
Jens Axboe79402a12011-01-14 12:41:15 +01009#include <libgen.h>
Jens Axboee29d1b72006-10-18 15:43:15 +020010
11#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020012#include "verify.h"
Jens Axboe0d29de82010-09-01 13:54:15 +020013#include "trim.h"
Jens Axboe637ef8d2010-06-21 20:39:38 +020014#include "lib/rand.h"
Jens Axboe51aa2da2013-01-21 10:55:02 -070015#include "lib/hweight.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020016
Jens Axboeeef6eea2007-07-30 12:27:58 +020017#include "crc/md5.h"
18#include "crc/crc64.h"
19#include "crc/crc32.h"
Jens Axboebac39e02008-06-11 20:46:19 +020020#include "crc/crc32c.h"
Jens Axboeeef6eea2007-07-30 12:27:58 +020021#include "crc/crc16.h"
22#include "crc/crc7.h"
23#include "crc/sha256.h"
24#include "crc/sha512.h"
Jens Axboe7c353ce2009-08-09 22:40:33 +020025#include "crc/sha1.h"
Jens Axboe844ea602014-02-20 13:21:45 -080026#include "crc/xxhash.h"
Jens Axboecd14cc12007-07-30 10:59:33 +020027
Jens Axboe7d9fb452011-01-11 22:16:49 +010028static 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
Jens Axboece35b1e2014-01-14 15:35:58 -070032void fill_buffer_pattern(struct thread_data *td, void *p, unsigned int len)
33{
Jens Axboed18c0412014-12-03 19:25:13 -070034 fill_pattern(p, len, td->o.buffer_pattern, td->o.buffer_pattern_bytes);
Jens Axboece35b1e2014-01-14 15:35:58 -070035}
36
37void fill_verify_pattern(struct thread_data *td, void *p, unsigned int len,
38 struct io_u *io_u, unsigned long seed, int use_seed)
39{
Jens Axboee1457292014-12-04 15:40:32 -070040 struct thread_options *o = &td->o;
41
42 if (!o->verify_pattern_bytes) {
Jens Axboece35b1e2014-01-14 15:35:58 -070043 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
44
45 if (use_seed)
Jens Axboee1457292014-12-04 15:40:32 -070046 __fill_random_buf_percentage(seed, p, o->compress_percentage, len, len, o->buffer_pattern, o->buffer_pattern_bytes);
47 else {
48 struct frand_state *fs = &td->verify_state;
49
50 io_u->rand_seed = fill_random_buf_percentage(fs, p, o->compress_percentage, len, len, o->buffer_pattern, o->buffer_pattern_bytes);
51 }
Jens Axboece35b1e2014-01-14 15:35:58 -070052 return;
53 }
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -070054
Jens Axboece35b1e2014-01-14 15:35:58 -070055 if (io_u->buf_filled_len >= len) {
56 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
Jens Axboee1457292014-12-04 15:40:32 -070057 o->verify_pattern_bytes, len);
Jens Axboece35b1e2014-01-14 15:35:58 -070058 return;
59 }
60
Jens Axboee1457292014-12-04 15:40:32 -070061 fill_pattern(p, len, o->verify_pattern, o->verify_pattern_bytes);
Jens Axboece35b1e2014-01-14 15:35:58 -070062 io_u->buf_filled_len = len;
63}
64
Jens Axboecfbcd0d2011-01-14 14:49:20 +010065static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
66{
67 unsigned int hdr_inc;
68
69 hdr_inc = io_u->buflen;
Jens Axboe8a99fdf2012-03-06 19:24:49 +010070 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
Jens Axboecfbcd0d2011-01-14 14:49:20 +010071 hdr_inc = td->o.verify_interval;
72
73 return hdr_inc;
74}
75
Jens Axboec50ca7b2011-01-12 08:31:54 +010076static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
77 unsigned long seed, int use_seed)
78{
79 unsigned int hdr_inc, header_num;
80 struct verify_header *hdr;
81 void *p = io_u->buf;
82
Jens Axboece35b1e2014-01-14 15:35:58 -070083 fill_verify_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
Jens Axboec50ca7b2011-01-12 08:31:54 +010084
Jens Axboecfbcd0d2011-01-14 14:49:20 +010085 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboec50ca7b2011-01-12 08:31:54 +010086 header_num = 0;
87 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
88 hdr = p;
89 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
90 header_num++;
91 }
92}
93
Jens Axboe4764aec2007-08-23 09:03:38 +020094static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +020095{
Shawn Lewisdee6de72007-08-02 22:17:52 +020096 char swap[200];
97
98 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +020099
Shawn Lewis546a9142007-07-28 21:11:37 +0200100 memcpy(&swap, buf1, len);
101 memcpy(buf1, buf2, len);
102 memcpy(buf2, &swap, len);
103}
104
Jens Axboee29d1b72006-10-18 15:43:15 +0200105static void hexdump(void *buffer, int len)
106{
107 unsigned char *p = buffer;
108 int i;
109
110 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200111 log_err("%02x", p[i]);
112 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200113}
114
Jens Axboed9f2caf2007-07-28 21:22:03 +0200115/*
Anatol Pomozovde8f6de2013-09-26 16:31:34 -0700116 * Prepare for separation of verify_header and checksum header
Jens Axboe87677832007-07-30 12:08:14 +0200117 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200118static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200119{
Bruce Cran03e20d62011-01-02 20:14:54 +0100120 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200121
Jens Axboe546dfd92007-07-30 12:23:05 +0200122 switch (verify_type) {
123 case VERIFY_NONE:
124 case VERIFY_NULL:
125 len = 0;
126 break;
127 case VERIFY_MD5:
128 len = sizeof(struct vhdr_md5);
129 break;
130 case VERIFY_CRC64:
131 len = sizeof(struct vhdr_crc64);
132 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200133 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200134 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200135 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200136 len = sizeof(struct vhdr_crc32);
137 break;
138 case VERIFY_CRC16:
139 len = sizeof(struct vhdr_crc16);
140 break;
141 case VERIFY_CRC7:
142 len = sizeof(struct vhdr_crc7);
143 break;
144 case VERIFY_SHA256:
145 len = sizeof(struct vhdr_sha256);
146 break;
147 case VERIFY_SHA512:
148 len = sizeof(struct vhdr_sha512);
149 break;
Jens Axboe844ea602014-02-20 13:21:45 -0800150 case VERIFY_XXHASH:
151 len = sizeof(struct vhdr_xxhash);
152 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200153 case VERIFY_META:
154 len = sizeof(struct vhdr_meta);
155 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200156 case VERIFY_SHA1:
157 len = sizeof(struct vhdr_sha1);
158 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100159 case VERIFY_PATTERN:
160 len = 0;
161 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200162 default:
163 log_err("fio: unknown verify header!\n");
164 assert(0);
165 }
166
167 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200168}
169
170static inline unsigned int hdr_size(struct verify_header *hdr)
171{
Jens Axboe546dfd92007-07-30 12:23:05 +0200172 return __hdr_size(hdr->verify_type);
173}
174
175static void *hdr_priv(struct verify_header *hdr)
176{
177 void *priv = hdr;
178
179 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200180}
181
182/*
Jens Axboe936216f2010-06-18 13:44:11 +0200183 * Verify container, pass info to verify handlers and allow them to
184 * pass info back in case of error
185 */
186struct vcont {
187 /*
188 * Input
189 */
190 struct io_u *io_u;
191 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100192 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200193
194 /*
195 * Output, only valid in case of error
196 */
Jens Axboebfacf382010-06-18 14:29:52 +0200197 const char *name;
198 void *good_crc;
199 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200200 unsigned int crc_len;
201};
202
Jens Axboedacbbb82014-04-14 08:43:55 -0600203#define DUMP_BUF_SZ 255
204static int dump_buf_warned;
205
Jens Axboec50ca7b2011-01-12 08:31:54 +0100206static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
207 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100208{
Jens Axboedacbbb82014-04-14 08:43:55 -0600209 char *ptr, fname[DUMP_BUF_SZ];
210 size_t buf_left = DUMP_BUF_SZ;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100211 int ret, fd;
212
Jens Axboe6f260b32011-01-13 18:57:54 +0100213 ptr = strdup(f->file_name);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100214
Jens Axboedacbbb82014-04-14 08:43:55 -0600215 fname[DUMP_BUF_SZ - 1] = '\0';
216 strncpy(fname, basename(ptr), DUMP_BUF_SZ - 1);
217
218 buf_left -= strlen(fname);
219 if (buf_left <= 0) {
220 if (!dump_buf_warned) {
221 log_err("fio: verify failure dump buffer too small\n");
222 dump_buf_warned = 1;
223 }
224 free(ptr);
225 return;
226 }
227
228 snprintf(fname + strlen(fname), buf_left, ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100229
230 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
231 if (fd < 0) {
232 perror("open verify buf file");
233 return;
234 }
235
236 while (len) {
237 ret = write(fd, buf, len);
238 if (!ret)
239 break;
240 else if (ret < 0) {
241 perror("write verify buf file");
242 break;
243 }
244 len -= ret;
245 buf += ret;
246 }
247
248 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100249 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100250 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100251}
252
Jens Axboec50ca7b2011-01-12 08:31:54 +0100253/*
254 * Dump the contents of the read block and re-generate the correct data
255 * and dump that too.
256 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100257static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
258{
259 struct thread_data *td = vc->td;
260 struct io_u *io_u = vc->io_u;
261 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100262 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100263 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100264
Steven Lang0dce9bc2011-10-25 22:41:05 +0200265 if (!td->o.verify_dump)
266 return;
267
Jens Axboec50ca7b2011-01-12 08:31:54 +0100268 /*
269 * Dump the contents we just read off disk
270 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100271 hdr_offset = vc->hdr_num * hdr->len;
272
Jens Axboec50ca7b2011-01-12 08:31:54 +0100273 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
274 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100275
Jens Axboec50ca7b2011-01-12 08:31:54 +0100276 /*
277 * Allocate a new buf and re-generate the original data
278 */
279 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100280 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100281 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100282 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100283 dummy.buf_filled_len = 0;
Josef Bacik0d81daf2013-07-08 20:35:01 -0400284 dummy.buflen = io_u->buflen;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100285
Jens Axboec50ca7b2011-01-12 08:31:54 +0100286 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100287
Jens Axboec50ca7b2011-01-12 08:31:54 +0100288 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
289 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100290 free(buf);
291}
292
Jens Axboebfacf382010-06-18 14:29:52 +0200293static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
294{
295 unsigned long long offset;
296
297 offset = vc->io_u->offset;
298 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200299 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
300 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200301
302 if (vc->good_crc && vc->bad_crc) {
303 log_err(" Expected CRC: ");
304 hexdump(vc->good_crc, vc->crc_len);
305 log_err(" Received CRC: ");
306 hexdump(vc->bad_crc, vc->crc_len);
307 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100308
309 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200310}
311
Jens Axboe936216f2010-06-18 13:44:11 +0200312/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200313 * Return data area 'header_num'
314 */
Jens Axboe936216f2010-06-18 13:44:11 +0200315static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200316{
Jens Axboe936216f2010-06-18 13:44:11 +0200317 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200318}
319
Jens Axboe92bf48d2011-01-14 21:20:42 +0100320static int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
321{
322 struct thread_data *td = vc->td;
323 struct io_u *io_u = vc->io_u;
324 char *buf, *pattern;
Jens Axboe2b13e712011-01-19 14:04:16 -0700325 unsigned int header_size = __hdr_size(td->o.verify);
Steven Lang9a2a86d2012-02-07 09:42:59 +0100326 unsigned int len, mod, i, size, pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100327
328 pattern = td->o.verify_pattern;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100329 pattern_size = td->o.verify_pattern_bytes;
330 if (pattern_size <= 1)
331 pattern_size = MAX_PATTERN_SIZE;
Jens Axboe2b13e712011-01-19 14:04:16 -0700332 buf = (void *) hdr + header_size;
333 len = get_hdr_inc(td, io_u) - header_size;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100334 mod = header_size % pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100335
Steven Lang9a2a86d2012-02-07 09:42:59 +0100336 for (i = 0; i < len; i += size) {
337 size = pattern_size - mod;
338 if (size > (len - i))
339 size = len - i;
340 if (memcmp(buf + i, pattern + mod, size))
Jens Axboee4ad68b2012-02-23 08:35:04 +0100341 /* Let the slow compare find the first mismatch byte. */
Steven Lang9a2a86d2012-02-07 09:42:59 +0100342 break;
343 mod = 0;
344 }
345
346 for (; i < len; i++) {
Jens Axboe92bf48d2011-01-14 21:20:42 +0100347 if (buf[i] != pattern[mod]) {
348 unsigned int bits;
349
350 bits = hweight8(buf[i] ^ pattern[mod]);
351 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
352 buf[i], pattern[mod], bits);
353 log_err("fio: bad pattern block offset %u\n", i);
354 dump_verify_buffers(hdr, vc);
355 return EILSEQ;
356 }
357 mod++;
358 if (mod == td->o.verify_pattern_bytes)
359 mod = 0;
360 }
361
362 return 0;
363}
364
365static int verify_io_u_meta(struct verify_header *hdr, struct vcont *vc)
366{
367 struct thread_data *td = vc->td;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200368 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200369 struct io_u *io_u = vc->io_u;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100370 int ret = EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200371
Jens Axboebd6f78b2008-02-01 20:27:52 +0100372 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
373
Jens Axboebfacf382010-06-18 14:29:52 +0200374 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
Jens Axboe92bf48d2011-01-14 21:20:42 +0100375 ret = 0;
376
377 if (td->o.verify_pattern_bytes)
378 ret |= verify_io_u_pattern(hdr, vc);
379
Juan Casseda0a7bd2013-09-17 14:06:12 -0700380 /*
381 * For read-only workloads, the program cannot be certain of the
Jens Axboe984c8692014-07-21 11:31:49 +0200382 * last numberio written to a block. Checking of numberio will be
383 * done only for workloads that write data. For verify_only,
384 * numberio will be checked in the last iteration when the correct
385 * state of numberio, that would have been written to each block
386 * in a previous run of fio, has been reached.
Juan Casseda0a7bd2013-09-17 14:06:12 -0700387 */
Jens Axboe1fc351b2014-08-07 15:27:31 -0600388 if ((td_write(td) || td_rw(td)) && (td_min_bs(td) == td_max_bs(td)) &&
389 !td->o.time_based)
Juan Casse62167762013-09-17 14:06:13 -0700390 if (!td->o.verify_only || td->o.loops == 0)
391 if (vh->numberio != io_u->numberio)
392 ret = EILSEQ;
Juan Casseda0a7bd2013-09-17 14:06:12 -0700393
Jens Axboe92bf48d2011-01-14 21:20:42 +0100394 if (!ret)
Jens Axboebfacf382010-06-18 14:29:52 +0200395 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200396
Jens Axboebfacf382010-06-18 14:29:52 +0200397 vc->name = "meta";
398 log_verify_failure(hdr, vc);
Jens Axboe92bf48d2011-01-14 21:20:42 +0100399 return ret;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200400}
401
Jens Axboe844ea602014-02-20 13:21:45 -0800402static int verify_io_u_xxhash(struct verify_header *hdr, struct vcont *vc)
403{
404 void *p = io_u_verify_off(hdr, vc);
405 struct vhdr_xxhash *vh = hdr_priv(hdr);
406 uint32_t hash;
407 void *state;
408
409 dprint(FD_VERIFY, "xxhash verify io_u %p, len %u\n", vc->io_u, hdr->len);
410
411 state = XXH32_init(1);
412 XXH32_update(state, p, hdr->len - hdr_size(hdr));
413 hash = XXH32_digest(state);
414
415 if (vh->hash == hash)
416 return 0;
417
418 vc->name = "xxhash";
419 vc->good_crc = &vh->hash;
420 vc->bad_crc = &hash;
421 vc->crc_len = sizeof(hash);
422 log_verify_failure(hdr, vc);
423 return EILSEQ;
424}
425
Jens Axboe936216f2010-06-18 13:44:11 +0200426static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200427{
Jens Axboe936216f2010-06-18 13:44:11 +0200428 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200429 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200430 uint8_t sha512[128];
Jens Axboe25dfa842012-02-29 10:01:34 +0100431 struct fio_sha512_ctx sha512_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200432 .buf = sha512,
433 };
434
Jens Axboe936216f2010-06-18 13:44:11 +0200435 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100436
Jens Axboe25dfa842012-02-29 10:01:34 +0100437 fio_sha512_init(&sha512_ctx);
438 fio_sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200439
Jens Axboebfacf382010-06-18 14:29:52 +0200440 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
441 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200442
Jens Axboebfacf382010-06-18 14:29:52 +0200443 vc->name = "sha512";
444 vc->good_crc = vh->sha512;
445 vc->bad_crc = sha512_ctx.buf;
446 vc->crc_len = sizeof(vh->sha512);
447 log_verify_failure(hdr, vc);
448 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200449}
450
Jens Axboe936216f2010-06-18 13:44:11 +0200451static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200452{
Jens Axboe936216f2010-06-18 13:44:11 +0200453 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200454 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100455 uint8_t sha256[64];
Jens Axboe25dfa842012-02-29 10:01:34 +0100456 struct fio_sha256_ctx sha256_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200457 .buf = sha256,
458 };
459
Jens Axboe936216f2010-06-18 13:44:11 +0200460 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100461
Jens Axboe25dfa842012-02-29 10:01:34 +0100462 fio_sha256_init(&sha256_ctx);
463 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200464
Jens Axboebfacf382010-06-18 14:29:52 +0200465 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
466 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200467
Jens Axboebfacf382010-06-18 14:29:52 +0200468 vc->name = "sha256";
469 vc->good_crc = vh->sha256;
470 vc->bad_crc = sha256_ctx.buf;
471 vc->crc_len = sizeof(vh->sha256);
472 log_verify_failure(hdr, vc);
473 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200474}
475
Jens Axboe936216f2010-06-18 13:44:11 +0200476static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200477{
Jens Axboe936216f2010-06-18 13:44:11 +0200478 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200479 struct vhdr_sha1 *vh = hdr_priv(hdr);
480 uint32_t sha1[5];
Jens Axboe25dfa842012-02-29 10:01:34 +0100481 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200482 .H = sha1,
483 };
484
Jens Axboe936216f2010-06-18 13:44:11 +0200485 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200486
Jens Axboe25dfa842012-02-29 10:01:34 +0100487 fio_sha1_init(&sha1_ctx);
488 fio_sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboe7c353ce2009-08-09 22:40:33 +0200489
Jens Axboebfacf382010-06-18 14:29:52 +0200490 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
491 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200492
Jens Axboebfacf382010-06-18 14:29:52 +0200493 vc->name = "sha1";
494 vc->good_crc = vh->sha1;
495 vc->bad_crc = sha1_ctx.H;
496 vc->crc_len = sizeof(vh->sha1);
497 log_verify_failure(hdr, vc);
498 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200499}
500
Jens Axboe936216f2010-06-18 13:44:11 +0200501static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200502{
Jens Axboe936216f2010-06-18 13:44:11 +0200503 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200504 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200505 unsigned char c;
506
Jens Axboe936216f2010-06-18 13:44:11 +0200507 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100508
Jens Axboe25dfa842012-02-29 10:01:34 +0100509 c = fio_crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200510
Jens Axboebfacf382010-06-18 14:29:52 +0200511 if (c == vh->crc7)
512 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200513
Jens Axboebfacf382010-06-18 14:29:52 +0200514 vc->name = "crc7";
515 vc->good_crc = &vh->crc7;
516 vc->bad_crc = &c;
517 vc->crc_len = 1;
518 log_verify_failure(hdr, vc);
519 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200520}
521
Jens Axboe936216f2010-06-18 13:44:11 +0200522static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200523{
Jens Axboe936216f2010-06-18 13:44:11 +0200524 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200525 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200526 unsigned short c;
527
Jens Axboe936216f2010-06-18 13:44:11 +0200528 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100529
Jens Axboe25dfa842012-02-29 10:01:34 +0100530 c = fio_crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200531
Jens Axboebfacf382010-06-18 14:29:52 +0200532 if (c == vh->crc16)
533 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200534
Jens Axboebfacf382010-06-18 14:29:52 +0200535 vc->name = "crc16";
536 vc->good_crc = &vh->crc16;
537 vc->bad_crc = &c;
538 vc->crc_len = 2;
539 log_verify_failure(hdr, vc);
540 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200541}
542
Jens Axboe936216f2010-06-18 13:44:11 +0200543static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200544{
Jens Axboe936216f2010-06-18 13:44:11 +0200545 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200546 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200547 unsigned long long c;
548
Jens Axboe936216f2010-06-18 13:44:11 +0200549 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100550
Jens Axboe25dfa842012-02-29 10:01:34 +0100551 c = fio_crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200552
Jens Axboebfacf382010-06-18 14:29:52 +0200553 if (c == vh->crc64)
554 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200555
Jens Axboebfacf382010-06-18 14:29:52 +0200556 vc->name = "crc64";
557 vc->good_crc = &vh->crc64;
558 vc->bad_crc = &c;
559 vc->crc_len = 8;
560 log_verify_failure(hdr, vc);
561 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200562}
563
Jens Axboe936216f2010-06-18 13:44:11 +0200564static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200565{
Jens Axboe936216f2010-06-18 13:44:11 +0200566 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200567 struct vhdr_crc32 *vh = hdr_priv(hdr);
568 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200569
Jens Axboe936216f2010-06-18 13:44:11 +0200570 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100571
Jens Axboe25dfa842012-02-29 10:01:34 +0100572 c = fio_crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200573
Jens Axboebfacf382010-06-18 14:29:52 +0200574 if (c == vh->crc32)
575 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200576
Jens Axboebfacf382010-06-18 14:29:52 +0200577 vc->name = "crc32";
578 vc->good_crc = &vh->crc32;
579 vc->bad_crc = &c;
580 vc->crc_len = 4;
581 log_verify_failure(hdr, vc);
582 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200583}
584
Jens Axboe936216f2010-06-18 13:44:11 +0200585static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200586{
Jens Axboe936216f2010-06-18 13:44:11 +0200587 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200588 struct vhdr_crc32 *vh = hdr_priv(hdr);
589 uint32_t c;
590
Jens Axboe936216f2010-06-18 13:44:11 +0200591 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200592
Jens Axboe25dfa842012-02-29 10:01:34 +0100593 c = fio_crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200594
Jens Axboebfacf382010-06-18 14:29:52 +0200595 if (c == vh->crc32)
596 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200597
Jens Axboebfacf382010-06-18 14:29:52 +0200598 vc->name = "crc32c";
599 vc->good_crc = &vh->crc32;
600 vc->bad_crc = &c;
601 vc->crc_len = 4;
602 log_verify_failure(hdr, vc);
603 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200604}
605
Jens Axboe936216f2010-06-18 13:44:11 +0200606static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200607{
Jens Axboe936216f2010-06-18 13:44:11 +0200608 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200609 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200610 uint32_t hash[MD5_HASH_WORDS];
Jens Axboe25dfa842012-02-29 10:01:34 +0100611 struct fio_md5_ctx md5_ctx = {
Jens Axboe8c432322007-07-27 13:16:24 +0200612 .hash = hash,
613 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200614
Jens Axboe936216f2010-06-18 13:44:11 +0200615 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100616
Jens Axboe25dfa842012-02-29 10:01:34 +0100617 fio_md5_init(&md5_ctx);
618 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200619
Jens Axboebfacf382010-06-18 14:29:52 +0200620 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
621 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200622
Jens Axboebfacf382010-06-18 14:29:52 +0200623 vc->name = "md5";
624 vc->good_crc = vh->md5_digest;
625 vc->bad_crc = md5_ctx.hash;
626 vc->crc_len = sizeof(hash);
627 log_verify_failure(hdr, vc);
628 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200629}
630
Jens Axboee8462bd2009-07-06 12:59:04 +0200631/*
632 * Push IO verification to a separate thread
633 */
Jens Axboee69fdf72014-07-23 16:11:43 +0200634int verify_io_u_async(struct thread_data *td, struct io_u **io_u_ptr)
Jens Axboee8462bd2009-07-06 12:59:04 +0200635{
Jens Axboee69fdf72014-07-23 16:11:43 +0200636 struct io_u *io_u = *io_u_ptr;
Jens Axboee8462bd2009-07-06 12:59:04 +0200637
Jens Axboee8462bd2009-07-06 12:59:04 +0200638 pthread_mutex_lock(&td->io_u_lock);
Steven Langd7ee2a72011-10-26 09:46:50 +0200639
Jens Axboee69fdf72014-07-23 16:11:43 +0200640 if (io_u->file)
641 put_file_log(td, io_u->file);
642
Radha Ramachandran0c412142009-11-03 21:45:31 +0100643 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
644 td->cur_depth--;
645 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
646 }
Jens Axboe2ae0b202013-05-28 14:16:55 +0200647 flist_add_tail(&io_u->verify_list, &td->verify_list);
Jens Axboee69fdf72014-07-23 16:11:43 +0200648 *io_u_ptr = NULL;
Jens Axboee8462bd2009-07-06 12:59:04 +0200649 pthread_mutex_unlock(&td->io_u_lock);
650
651 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200652 return 0;
653}
654
Jens Axboe0d29de82010-09-01 13:54:15 +0200655static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
656{
657 static char zero_buf[1024];
658 unsigned int this_len, len;
659 int ret = 0;
660 void *p;
661
662 if (!td->o.trim_zero)
663 return 0;
664
665 len = io_u->buflen;
666 p = io_u->buf;
667 do {
668 this_len = sizeof(zero_buf);
669 if (this_len > len)
670 this_len = len;
671 if (memcmp(p, zero_buf, this_len)) {
672 ret = EILSEQ;
673 break;
674 }
675 len -= this_len;
676 p += this_len;
677 } while (len);
678
679 if (!ret)
680 return 0;
681
Jens Axboea917a8b2010-09-02 13:23:20 +0200682 log_err("trim: verify failed at file %s offset %llu, length %lu"
683 ", block offset %lu\n",
684 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200685 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200686 return ret;
687}
688
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200689static int verify_header(struct io_u *io_u, struct verify_header *hdr,
690 unsigned int hdr_num, unsigned int hdr_len)
Jens Axboef65d1c22012-02-22 20:11:57 +0100691{
692 void *p = hdr;
693 uint32_t crc;
694
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200695 if (hdr->magic != FIO_HDR_MAGIC) {
696 log_err("verify: bad magic header %x, wanted %x",
697 hdr->magic, FIO_HDR_MAGIC);
698 goto err;
699 }
Andreas Gruenbacher45474192014-06-26 19:25:30 +0200700 if (hdr->len != hdr_len) {
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200701 log_err("verify: bad header length %u, wanted %u",
702 hdr->len, hdr_len);
703 goto err;
704 }
705 if (hdr->rand_seed != io_u->rand_seed) {
706 log_err("verify: bad header rand_seed %"PRIu64
707 ", wanted %"PRIu64,
708 hdr->rand_seed, io_u->rand_seed);
709 goto err;
710 }
Jens Axboeae38c0d2012-02-23 10:31:07 +0100711
Jens Axboe25dfa842012-02-29 10:01:34 +0100712 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200713 if (crc != hdr->crc32) {
714 log_err("verify: bad header crc %x, calculated %x",
715 hdr->crc32, crc);
716 goto err;
717 }
718 return 0;
719
720err:
721 log_err(" at file %s offset %llu, length %u\n",
722 io_u->file->file_name,
723 io_u->offset + hdr_num * hdr_len, hdr_len);
724 return EILSEQ;
Jens Axboef65d1c22012-02-22 20:11:57 +0100725}
726
Jens Axboee69fdf72014-07-23 16:11:43 +0200727int verify_io_u(struct thread_data *td, struct io_u **io_u_ptr)
Jens Axboee29d1b72006-10-18 15:43:15 +0200728{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200729 struct verify_header *hdr;
Jens Axboee69fdf72014-07-23 16:11:43 +0200730 struct io_u *io_u = *io_u_ptr;
Jens Axboe2b13e712011-01-19 14:04:16 -0700731 unsigned int header_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200732 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200733 int ret;
734
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200735 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200736 return 0;
Jens Axboed9570702014-07-23 16:19:48 +0200737 /*
738 * If the IO engine is faking IO (like null), then just pretend
739 * we verified everything.
740 */
741 if (td->io_ops->flags & FIO_FAKEIO)
742 return 0;
743
Jens Axboe0d29de82010-09-01 13:54:15 +0200744 if (io_u->flags & IO_U_F_TRIMMED) {
745 ret = verify_trimmed_io_u(td, io_u);
746 goto done;
747 }
Jens Axboe36690c92007-03-26 10:23:34 +0200748
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100749 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200750
Jens Axboea12a3b42007-08-09 10:20:54 +0200751 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100752 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
753 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200754 struct vcont vc = {
755 .io_u = io_u,
756 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100757 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200758 };
Jens Axboef00b2102012-11-30 09:39:02 +0100759 unsigned int verify_type;
Jens Axboe936216f2010-06-18 13:44:11 +0200760
Jens Axboef3e6cb92010-06-18 14:48:43 +0200761 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200762 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200763
Jens Axboe2b13e712011-01-19 14:04:16 -0700764 header_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200765 if (td->o.verify_offset)
Jens Axboe2b13e712011-01-19 14:04:16 -0700766 memswp(p, p + td->o.verify_offset, header_size);
Jens Axboe95646102007-07-28 21:17:50 +0200767 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200768
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -0700769 /*
770 * Make rand_seed check pass when have verifysort or
771 * verify_backlog.
772 */
773 if (td->o.verifysort || (td->flags & TD_F_VER_BACKLOG))
774 io_u->rand_seed = hdr->rand_seed;
775
Andreas Gruenbacherbf654152014-06-24 22:13:50 +0200776 ret = verify_header(io_u, hdr, hdr_num, hdr_inc);
777 if (ret)
778 return ret;
Jens Axboe3f199b02007-08-09 10:16:31 +0200779
Jens Axboef00b2102012-11-30 09:39:02 +0100780 if (td->o.verify != VERIFY_NONE)
781 verify_type = td->o.verify;
782 else
783 verify_type = hdr->verify_type;
784
785 switch (verify_type) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200786 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200787 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200788 break;
789 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200790 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200791 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200792 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200793 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200794 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200795 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200796 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200797 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200798 break;
799 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200800 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200801 break;
802 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200803 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200804 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200805 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200806 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200807 break;
808 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200809 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200810 break;
Jens Axboe844ea602014-02-20 13:21:45 -0800811 case VERIFY_XXHASH:
812 ret = verify_io_u_xxhash(hdr, &vc);
813 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200814 case VERIFY_META:
Jens Axboe92bf48d2011-01-14 21:20:42 +0100815 ret = verify_io_u_meta(hdr, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200816 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200817 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200818 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200819 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100820 case VERIFY_PATTERN:
821 ret = verify_io_u_pattern(hdr, &vc);
822 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200823 default:
824 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200825 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200826 }
Jens Axboef00b2102012-11-30 09:39:02 +0100827
828 if (ret && verify_type != hdr->verify_type)
829 log_err("fio: verify type mismatch (%u media, %u given)\n",
830 hdr->verify_type, verify_type);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200831 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100832
Jens Axboe0d29de82010-09-01 13:54:15 +0200833done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200834 if (ret && td->o.verify_fatal)
Jens Axboe3b44e8b2014-07-09 11:24:12 +0200835 fio_mark_td_terminate(td);
Jens Axboef3e6cb92010-06-18 14:48:43 +0200836
Jens Axboea12a3b42007-08-09 10:20:54 +0200837 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200838}
839
Shawn Lewis7437ee82007-08-02 21:05:58 +0200840static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100841 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200842{
843 struct vhdr_meta *vh = hdr_priv(hdr);
844
845 vh->thread = td->thread_number;
846
847 vh->time_sec = io_u->start_time.tv_sec;
848 vh->time_usec = io_u->start_time.tv_usec;
849
Juan Casseda0a7bd2013-09-17 14:06:12 -0700850 vh->numberio = io_u->numberio;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200851
852 vh->offset = io_u->offset + header_num * td->o.verify_interval;
853}
854
Jens Axboe844ea602014-02-20 13:21:45 -0800855static void fill_xxhash(struct verify_header *hdr, void *p, unsigned int len)
856{
857 struct vhdr_xxhash *vh = hdr_priv(hdr);
858 void *state;
859
860 state = XXH32_init(1);
861 XXH32_update(state, p, len);
862 vh->hash = XXH32_digest(state);
863}
864
Jens Axboecd14cc12007-07-30 10:59:33 +0200865static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
866{
Jens Axboe546dfd92007-07-30 12:23:05 +0200867 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100868 struct fio_sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200869 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200870 };
871
Jens Axboe25dfa842012-02-29 10:01:34 +0100872 fio_sha512_init(&sha512_ctx);
873 fio_sha512_update(&sha512_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200874}
875
876static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
877{
Jens Axboe546dfd92007-07-30 12:23:05 +0200878 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100879 struct fio_sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200880 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200881 };
882
Jens Axboe25dfa842012-02-29 10:01:34 +0100883 fio_sha256_init(&sha256_ctx);
884 fio_sha256_update(&sha256_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200885}
886
Jens Axboe7c353ce2009-08-09 22:40:33 +0200887static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
888{
889 struct vhdr_sha1 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100890 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200891 .H = vh->sha1,
892 };
893
Jens Axboe25dfa842012-02-29 10:01:34 +0100894 fio_sha1_init(&sha1_ctx);
895 fio_sha1_update(&sha1_ctx, p, len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200896}
897
Jens Axboe1e154bd2007-07-27 09:52:40 +0200898static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
899{
Jens Axboe546dfd92007-07-30 12:23:05 +0200900 struct vhdr_crc7 *vh = hdr_priv(hdr);
901
Jens Axboe25dfa842012-02-29 10:01:34 +0100902 vh->crc7 = fio_crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200903}
904
Jens Axboe969f7ed2007-07-27 09:07:17 +0200905static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
906{
Jens Axboe546dfd92007-07-30 12:23:05 +0200907 struct vhdr_crc16 *vh = hdr_priv(hdr);
908
Jens Axboe25dfa842012-02-29 10:01:34 +0100909 vh->crc16 = fio_crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200910}
911
Jens Axboee29d1b72006-10-18 15:43:15 +0200912static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
913{
Jens Axboe546dfd92007-07-30 12:23:05 +0200914 struct vhdr_crc32 *vh = hdr_priv(hdr);
915
Jens Axboe25dfa842012-02-29 10:01:34 +0100916 vh->crc32 = fio_crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200917}
918
Jens Axboebac39e02008-06-11 20:46:19 +0200919static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
920{
921 struct vhdr_crc32 *vh = hdr_priv(hdr);
922
Jens Axboe25dfa842012-02-29 10:01:34 +0100923 vh->crc32 = fio_crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200924}
925
Jens Axboed77a7af2007-07-27 15:35:06 +0200926static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
927{
Jens Axboe546dfd92007-07-30 12:23:05 +0200928 struct vhdr_crc64 *vh = hdr_priv(hdr);
929
Jens Axboe25dfa842012-02-29 10:01:34 +0100930 vh->crc64 = fio_crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200931}
932
Jens Axboee29d1b72006-10-18 15:43:15 +0200933static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
934{
Jens Axboe546dfd92007-07-30 12:23:05 +0200935 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100936 struct fio_md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200937 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200938 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200939
Jens Axboe25dfa842012-02-29 10:01:34 +0100940 fio_md5_init(&md5_ctx);
941 fio_md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200942}
943
Jens Axboe7d9fb452011-01-11 22:16:49 +0100944static void populate_hdr(struct thread_data *td, struct io_u *io_u,
945 struct verify_header *hdr, unsigned int header_num,
946 unsigned int header_len)
947{
948 unsigned int data_len;
949 void *data, *p;
950
951 p = (void *) hdr;
952
Jens Axboed3a173a2012-02-23 08:23:18 +0100953 hdr->magic = FIO_HDR_MAGIC;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100954 hdr->verify_type = td->o.verify;
Jens Axboed3a173a2012-02-23 08:23:18 +0100955 hdr->len = header_len;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100956 hdr->rand_seed = io_u->rand_seed;
Jens Axboe25dfa842012-02-29 10:01:34 +0100957 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100958
Jens Axboe7d9fb452011-01-11 22:16:49 +0100959 data_len = header_len - hdr_size(hdr);
960
961 data = p + hdr_size(hdr);
962 switch (td->o.verify) {
963 case VERIFY_MD5:
964 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
965 io_u, hdr->len);
966 fill_md5(hdr, data, data_len);
967 break;
968 case VERIFY_CRC64:
969 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
970 io_u, hdr->len);
971 fill_crc64(hdr, data, data_len);
972 break;
973 case VERIFY_CRC32C:
974 case VERIFY_CRC32C_INTEL:
975 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
976 io_u, hdr->len);
977 fill_crc32c(hdr, data, data_len);
978 break;
979 case VERIFY_CRC32:
980 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
981 io_u, hdr->len);
982 fill_crc32(hdr, data, data_len);
983 break;
984 case VERIFY_CRC16:
985 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
986 io_u, hdr->len);
987 fill_crc16(hdr, data, data_len);
988 break;
989 case VERIFY_CRC7:
990 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
991 io_u, hdr->len);
992 fill_crc7(hdr, data, data_len);
993 break;
994 case VERIFY_SHA256:
995 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
996 io_u, hdr->len);
997 fill_sha256(hdr, data, data_len);
998 break;
999 case VERIFY_SHA512:
1000 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
1001 io_u, hdr->len);
1002 fill_sha512(hdr, data, data_len);
1003 break;
Jens Axboe844ea602014-02-20 13:21:45 -08001004 case VERIFY_XXHASH:
1005 dprint(FD_VERIFY, "fill xxhash io_u %p, len %u\n",
1006 io_u, hdr->len);
1007 fill_xxhash(hdr, data, data_len);
1008 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +01001009 case VERIFY_META:
1010 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
1011 io_u, hdr->len);
1012 fill_meta(hdr, td, io_u, header_num);
1013 break;
1014 case VERIFY_SHA1:
1015 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
1016 io_u, hdr->len);
1017 fill_sha1(hdr, data, data_len);
1018 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +01001019 case VERIFY_PATTERN:
1020 /* nothing to do here */
1021 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +01001022 default:
1023 log_err("fio: bad verify type: %d\n", td->o.verify);
1024 assert(0);
1025 }
1026 if (td->o.verify_offset)
1027 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
1028}
1029
Jens Axboee29d1b72006-10-18 15:43:15 +02001030/*
1031 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +01001032 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +02001033 */
1034void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
1035{
Jens Axboe9cc3d152007-03-26 10:32:30 +02001036 if (td->o.verify == VERIFY_NULL)
1037 return;
1038
Juan Casseda0a7bd2013-09-17 14:06:12 -07001039 io_u->numberio = td->io_issues[io_u->ddir];
1040
Jens Axboec50ca7b2011-01-12 08:31:54 +01001041 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +02001042}
1043
1044int get_next_verify(struct thread_data *td, struct io_u *io_u)
1045{
Jens Axboe8de8f042007-03-27 10:36:12 +02001046 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +02001047
Jens Axboed2d7fa52007-02-19 13:21:35 +01001048 /*
1049 * this io_u is from a requeue, we already filled the offsets
1050 */
1051 if (io_u->file)
1052 return 0;
1053
Jens Axboe8de8f042007-03-27 10:36:12 +02001054 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
1055 struct rb_node *n = rb_first(&td->io_hist_tree);
1056
Jens Axboe4b878982007-03-26 09:32:22 +02001057 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboef9401282014-02-06 12:17:37 -07001058
1059 /*
1060 * Ensure that the associated IO has completed
1061 */
1062 read_barrier();
1063 if (ipo->flags & IP_F_IN_FLIGHT)
1064 goto nothing;
1065
Jens Axboe4b878982007-03-26 09:32:22 +02001066 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +02001067 assert(ipo->flags & IP_F_ONRB);
1068 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +02001069 } else if (!flist_empty(&td->io_hist_list)) {
Jens Axboe12dbd062014-07-03 21:19:57 -06001070 ipo = flist_first_entry(&td->io_hist_list, struct io_piece, list);
Jens Axboef9401282014-02-06 12:17:37 -07001071
1072 /*
1073 * Ensure that the associated IO has completed
1074 */
1075 read_barrier();
1076 if (ipo->flags & IP_F_IN_FLIGHT)
1077 goto nothing;
1078
Jens Axboe01743ee2008-06-02 12:19:19 +02001079 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +02001080 assert(ipo->flags & IP_F_ONLIST);
1081 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +02001082 }
Jens Axboee29d1b72006-10-18 15:43:15 +02001083
Jens Axboe8de8f042007-03-27 10:36:12 +02001084 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +02001085 td->io_hist_len--;
1086
Jens Axboee29d1b72006-10-18 15:43:15 +02001087 io_u->offset = ipo->offset;
1088 io_u->buflen = ipo->len;
Juan Casseda0a7bd2013-09-17 14:06:12 -07001089 io_u->numberio = ipo->numberio;
Jens Axboe36167d82007-02-18 05:41:31 +01001090 io_u->file = ipo->file;
Jens Axboe82af2a72012-03-13 13:45:58 +01001091 io_u->flags |= IO_U_F_VER_LIST;
Jens Axboe97af62c2007-05-22 11:12:13 +02001092
Jens Axboe0d29de82010-09-01 13:54:15 +02001093 if (ipo->flags & IP_F_TRIMMED)
1094 io_u->flags |= IO_U_F_TRIMMED;
1095
Jens Axboed6aed792009-06-03 08:41:15 +02001096 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +02001097 int r = td_io_open_file(td, io_u->file);
1098
Jens Axboebd6f78b2008-02-01 20:27:52 +01001099 if (r) {
1100 dprint(FD_VERIFY, "failed file %s open\n",
1101 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +02001102 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +01001103 }
Jens Axboe97af62c2007-05-22 11:12:13 +02001104 }
1105
1106 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +02001107 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +02001108 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +01001109 io_u->xfer_buf = io_u->buf;
1110 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +02001111
1112 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +02001113 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001114 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -07001115
1116 if (!td->o.verify_pattern_bytes) {
Jens Axboef6787012014-11-05 18:39:23 -07001117 io_u->rand_seed = __rand(&td->verify_state);
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -07001118 if (sizeof(int) != sizeof(long *))
Jens Axboef6787012014-11-05 18:39:23 -07001119 io_u->rand_seed *= __rand(&td->verify_state);
Puthikorn Voravootivatc4b61172014-02-05 10:17:11 -07001120 }
Jens Axboee29d1b72006-10-18 15:43:15 +02001121 return 0;
1122 }
1123
Jens Axboef9401282014-02-06 12:17:37 -07001124nothing:
Jens Axboebd6f78b2008-02-01 20:27:52 +01001125 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +02001126 return 1;
1127}
Jens Axboee8462bd2009-07-06 12:59:04 +02001128
Jens Axboedc5bfbb2013-04-10 22:23:40 +02001129void fio_verify_init(struct thread_data *td)
1130{
1131 if (td->o.verify == VERIFY_CRC32C_INTEL ||
1132 td->o.verify == VERIFY_CRC32C) {
1133 crc32c_intel_probe();
1134 }
1135}
1136
Jens Axboee8462bd2009-07-06 12:59:04 +02001137static void *verify_async_thread(void *data)
1138{
1139 struct thread_data *td = data;
1140 struct io_u *io_u;
1141 int ret = 0;
1142
1143 if (td->o.verify_cpumask_set &&
1144 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1145 log_err("fio: failed setting verify thread affinity\n");
1146 goto done;
1147 }
1148
1149 do {
Jens Axboee53ab272009-07-06 13:43:46 +02001150 FLIST_HEAD(list);
1151
Jens Axboee8462bd2009-07-06 12:59:04 +02001152 read_barrier();
1153 if (td->verify_thread_exit)
1154 break;
1155
1156 pthread_mutex_lock(&td->io_u_lock);
1157
1158 while (flist_empty(&td->verify_list) &&
1159 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001160 ret = pthread_cond_wait(&td->verify_cond,
1161 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001162 if (ret) {
1163 pthread_mutex_unlock(&td->io_u_lock);
1164 break;
1165 }
1166 }
1167
Jens Axboee53ab272009-07-06 13:43:46 +02001168 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001169 pthread_mutex_unlock(&td->io_u_lock);
1170
Jens Axboee53ab272009-07-06 13:43:46 +02001171 if (flist_empty(&list))
1172 continue;
1173
1174 while (!flist_empty(&list)) {
Jens Axboe12dbd062014-07-03 21:19:57 -06001175 io_u = flist_first_entry(&list, struct io_u, verify_list);
Jens Axboee69fdf72014-07-23 16:11:43 +02001176 flist_del_init(&io_u->verify_list);
Jens Axboee53ab272009-07-06 13:43:46 +02001177
Jens Axboee69fdf72014-07-23 16:11:43 +02001178 io_u->flags |= IO_U_F_NO_FILE_PUT;
1179 ret = verify_io_u(td, &io_u);
1180
Jens Axboee53ab272009-07-06 13:43:46 +02001181 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001182 if (!ret)
1183 continue;
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001184 if (td_non_fatal_error(td, ERROR_TYPE_VERIFY_BIT, ret)) {
Jens Axboed561f2a2009-07-06 13:51:05 +02001185 update_error_count(td, ret);
1186 td_clear_error(td);
1187 ret = 0;
1188 }
Jens Axboee53ab272009-07-06 13:43:46 +02001189 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001190 } while (!ret);
1191
Jens Axboed561f2a2009-07-06 13:51:05 +02001192 if (ret) {
1193 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001194 if (td->o.verify_fatal)
Jens Axboe3b44e8b2014-07-09 11:24:12 +02001195 fio_mark_td_terminate(td);
Jens Axboed561f2a2009-07-06 13:51:05 +02001196 }
1197
Jens Axboee8462bd2009-07-06 12:59:04 +02001198done:
1199 pthread_mutex_lock(&td->io_u_lock);
1200 td->nr_verify_threads--;
1201 pthread_mutex_unlock(&td->io_u_lock);
1202
1203 pthread_cond_signal(&td->free_cond);
1204 return NULL;
1205}
1206
1207int verify_async_init(struct thread_data *td)
1208{
1209 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001210 pthread_attr_t attr;
1211
1212 pthread_attr_init(&attr);
1213 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001214
1215 td->verify_thread_exit = 0;
1216
1217 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1218 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001219 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001220 verify_async_thread, td);
1221 if (ret) {
1222 log_err("fio: async verify creation failed: %s\n",
1223 strerror(ret));
1224 break;
1225 }
1226 ret = pthread_detach(td->verify_threads[i]);
1227 if (ret) {
1228 log_err("fio: async verify thread detach failed: %s\n",
1229 strerror(ret));
1230 break;
1231 }
1232 td->nr_verify_threads++;
1233 }
1234
bart Van Assche304a47c2010-08-01 21:31:26 +02001235 pthread_attr_destroy(&attr);
1236
Jens Axboee8462bd2009-07-06 12:59:04 +02001237 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001238 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001239 td->verify_thread_exit = 1;
1240 write_barrier();
1241 pthread_cond_broadcast(&td->verify_cond);
1242 return 1;
1243 }
1244
1245 return 0;
1246}
1247
1248void verify_async_exit(struct thread_data *td)
1249{
1250 td->verify_thread_exit = 1;
1251 write_barrier();
1252 pthread_cond_broadcast(&td->verify_cond);
1253
1254 pthread_mutex_lock(&td->io_u_lock);
1255
1256 while (td->nr_verify_threads)
1257 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1258
1259 pthread_mutex_unlock(&td->io_u_lock);
1260 free(td->verify_threads);
1261 td->verify_threads = NULL;
1262}
Jens Axboede54cfd2014-11-10 20:34:00 -07001263
1264struct all_io_list *get_all_io_list(int save_mask, size_t *sz)
1265{
1266 struct all_io_list *rep;
1267 struct thread_data *td;
1268 size_t depth;
1269 void *next;
1270 int i, nr;
1271
1272 compiletime_assert(sizeof(struct all_io_list) == 8, "all_io_list");
1273
1274 /*
1275 * Calculate reply space needed. We need one 'io_state' per thread,
1276 * and the size will vary depending on depth.
1277 */
1278 depth = 0;
1279 nr = 0;
1280 for_each_td(td, i) {
1281 if (save_mask != IO_LIST_ALL && (i + 1) != save_mask)
1282 continue;
1283 td->stop_io = 1;
1284 td->flags |= TD_F_VSTATE_SAVED;
1285 depth += td->o.iodepth;
1286 nr++;
1287 }
1288
1289 if (!nr)
1290 return NULL;
1291
1292 *sz = sizeof(*rep);
1293 *sz += nr * sizeof(struct thread_io_list);
1294 *sz += depth * sizeof(uint64_t);
1295 rep = malloc(*sz);
1296
1297 rep->threads = cpu_to_le64((uint64_t) nr);
1298
1299 next = &rep->state[0];
1300 for_each_td(td, i) {
1301 struct thread_io_list *s = next;
1302 unsigned int comps;
1303
1304 if (save_mask != IO_LIST_ALL && (i + 1) != save_mask)
1305 continue;
1306
1307 if (td->last_write_comp) {
1308 int j, k;
1309
1310 if (td->io_blocks[DDIR_WRITE] < td->o.iodepth)
1311 comps = td->io_blocks[DDIR_WRITE];
1312 else
1313 comps = td->o.iodepth;
1314
1315 k = td->last_write_idx - 1;
1316 for (j = 0; j < comps; j++) {
1317 if (k == -1)
1318 k = td->o.iodepth - 1;
1319 s->offsets[j] = cpu_to_le64(td->last_write_comp[k]);
1320 k--;
1321 }
1322 } else
1323 comps = 0;
1324
1325 s->no_comps = cpu_to_le64((uint64_t) comps);
1326 s->depth = cpu_to_le64((uint64_t) td->o.iodepth);
1327 s->numberio = cpu_to_le64((uint64_t) td->io_issues[DDIR_WRITE]);
1328 s->index = cpu_to_le64((uint64_t) i);
1329 s->rand.s[0] = cpu_to_le32(td->random_state.s1);
1330 s->rand.s[1] = cpu_to_le32(td->random_state.s2);
1331 s->rand.s[2] = cpu_to_le32(td->random_state.s3);
1332 s->rand.s[3] = 0;
1333 strncpy((char *) s->name, td->o.name, sizeof(s->name));
1334 next = io_list_next(s);
1335 }
1336
1337 return rep;
1338}
1339
1340static int open_state_file(const char *name, const char *prefix, int num,
1341 int for_write)
1342{
1343 char out[64];
1344 int flags;
1345 int fd;
1346
1347 if (for_write)
1348 flags = O_CREAT | O_TRUNC | O_WRONLY | O_SYNC;
1349 else
1350 flags = O_RDONLY;
1351
Jens Axboe3ebcfd52014-11-11 20:51:37 -07001352 verify_state_gen_name(out, sizeof(out), name, prefix, num);
Jens Axboede54cfd2014-11-10 20:34:00 -07001353
1354 fd = open(out, flags, 0644);
1355 if (fd == -1) {
1356 perror("fio: open state file");
1357 return -1;
1358 }
1359
1360 return fd;
1361}
1362
1363static int write_thread_list_state(struct thread_io_list *s,
1364 const char *prefix)
1365{
1366 struct verify_state_hdr hdr;
1367 uint64_t crc;
1368 ssize_t ret;
1369 int fd;
1370
1371 fd = open_state_file((const char *) s->name, prefix, s->index, 1);
1372 if (fd == -1)
1373 return 1;
1374
1375 crc = fio_crc32c((void *)s, thread_io_list_sz(s));
1376
1377 hdr.version = cpu_to_le64((uint64_t) VSTATE_HDR_VERSION);
1378 hdr.size = cpu_to_le64((uint64_t) thread_io_list_sz(s));
1379 hdr.crc = cpu_to_le64(crc);
1380 ret = write(fd, &hdr, sizeof(hdr));
1381 if (ret != sizeof(hdr))
1382 goto write_fail;
1383
1384 ret = write(fd, s, thread_io_list_sz(s));
1385 if (ret != thread_io_list_sz(s)) {
1386write_fail:
1387 if (ret < 0)
1388 perror("fio: write state file");
1389 log_err("fio: failed to write state file\n");
1390 ret = 1;
1391 } else
1392 ret = 0;
1393
1394 close(fd);
1395 return ret;
1396}
1397
1398void __verify_save_state(struct all_io_list *state, const char *prefix)
1399{
1400 struct thread_io_list *s = &state->state[0];
1401 unsigned int i;
1402
1403 for (i = 0; i < le64_to_cpu(state->threads); i++) {
1404 write_thread_list_state(s, prefix);
1405 s = io_list_next(s);
1406 }
1407}
1408
1409void verify_save_state(void)
1410{
1411 struct all_io_list *state;
1412 size_t sz;
1413
1414 state = get_all_io_list(IO_LIST_ALL, &sz);
1415 if (state) {
1416 __verify_save_state(state, "local");
1417 free(state);
1418 }
1419}
1420
1421void verify_free_state(struct thread_data *td)
1422{
1423 if (td->vstate)
1424 free(td->vstate);
1425}
1426
1427void verify_convert_assign_state(struct thread_data *td,
1428 struct thread_io_list *s)
1429{
1430 int i;
1431
1432 s->no_comps = le64_to_cpu(s->no_comps);
1433 s->depth = le64_to_cpu(s->depth);
1434 s->numberio = le64_to_cpu(s->numberio);
1435 for (i = 0; i < 4; i++)
1436 s->rand.s[i] = le32_to_cpu(s->rand.s[i]);
1437 for (i = 0; i < s->no_comps; i++)
1438 s->offsets[i] = le64_to_cpu(s->offsets[i]);
1439
1440 td->vstate = s;
1441}
1442
1443int verify_state_hdr(struct verify_state_hdr *hdr, struct thread_io_list *s)
1444{
1445 uint64_t crc;
1446
1447 hdr->version = le64_to_cpu(hdr->version);
1448 hdr->size = le64_to_cpu(hdr->size);
1449 hdr->crc = le64_to_cpu(hdr->crc);
1450
1451 if (hdr->version != VSTATE_HDR_VERSION)
1452 return 1;
1453
1454 crc = fio_crc32c((void *)s, hdr->size);
1455 if (crc != hdr->crc)
1456 return 1;
1457
1458 return 0;
1459}
1460
1461int verify_load_state(struct thread_data *td, const char *prefix)
1462{
1463 struct thread_io_list *s = NULL;
1464 struct verify_state_hdr hdr;
1465 uint64_t crc;
1466 ssize_t ret;
1467 int fd;
1468
1469 if (!td->o.verify_state)
1470 return 0;
1471
1472 fd = open_state_file(td->o.name, prefix, td->thread_number - 1, 0);
1473 if (fd == -1)
1474 return 1;
1475
1476 ret = read(fd, &hdr, sizeof(hdr));
1477 if (ret != sizeof(hdr)) {
1478 if (ret < 0)
1479 td_verror(td, errno, "read verify state hdr");
1480 log_err("fio: failed reading verify state header\n");
1481 goto err;
1482 }
1483
1484 hdr.version = le64_to_cpu(hdr.version);
1485 hdr.size = le64_to_cpu(hdr.size);
1486 hdr.crc = le64_to_cpu(hdr.crc);
1487
1488 if (hdr.version != VSTATE_HDR_VERSION) {
1489 log_err("fio: bad version in verify state header\n");
1490 goto err;
1491 }
1492
1493 s = malloc(hdr.size);
1494 ret = read(fd, s, hdr.size);
1495 if (ret != hdr.size) {
1496 if (ret < 0)
1497 td_verror(td, errno, "read verify state");
1498 log_err("fio: failed reading verity state\n");
1499 goto err;
1500 }
1501
1502 crc = fio_crc32c((void *)s, hdr.size);
1503 if (crc != hdr.crc) {
1504 log_err("fio: verify state is corrupt\n");
1505 goto err;
1506 }
1507
1508 close(fd);
1509
1510 verify_convert_assign_state(td, s);
1511 return 0;
1512err:
1513 if (s)
1514 free(s);
1515 close(fd);
1516 return 1;
1517}
1518
1519/*
1520 * Use the loaded verify state to know when to stop doing verification
1521 */
1522int verify_state_should_stop(struct thread_data *td, struct io_u *io_u)
1523{
1524 struct thread_io_list *s = td->vstate;
1525 int i;
1526
1527 if (!s)
1528 return 0;
1529
1530 /*
1531 * If we're not into the window of issues - depth yet, continue
1532 */
1533 if (td->io_blocks[DDIR_READ] < s->depth ||
1534 s->numberio - td->io_blocks[DDIR_READ] > s->depth)
1535 return 0;
1536
1537 /*
1538 * We're in the window of having to check if this io was
1539 * completed or not. If the IO was seen as completed, then
1540 * lets verify it.
1541 */
1542 for (i = 0; i < s->no_comps; i++)
1543 if (io_u->offset == s->offsets[i])
1544 return 0;
1545
1546 /*
1547 * Not found, we have to stop
1548 */
1549 return 1;
1550}