blob: cb13b629be29886b5dbfa4318102c7b05e7c1ca6 [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 Axboee8462bd2009-07-06 12:59:04 +020013#include "smalloc.h"
Jens Axboe0d29de82010-09-01 13:54:15 +020014#include "trim.h"
Jens Axboe637ef8d2010-06-21 20:39:38 +020015#include "lib/rand.h"
Jens Axboe51aa2da2013-01-21 10:55:02 -070016#include "lib/hweight.h"
Jens Axboee29d1b72006-10-18 15:43:15 +020017
Jens Axboeeef6eea2007-07-30 12:27:58 +020018#include "crc/md5.h"
19#include "crc/crc64.h"
20#include "crc/crc32.h"
Jens Axboebac39e02008-06-11 20:46:19 +020021#include "crc/crc32c.h"
Jens Axboeeef6eea2007-07-30 12:27:58 +020022#include "crc/crc16.h"
23#include "crc/crc7.h"
24#include "crc/sha256.h"
25#include "crc/sha512.h"
Jens Axboe7c353ce2009-08-09 22:40:33 +020026#include "crc/sha1.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
32void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed)
Jens Axboe90059d62007-07-30 09:33:12 +020033{
34 switch (td->o.verify_pattern_bytes) {
35 case 0:
Jens Axboebd6f78b2008-02-01 20:27:52 +010036 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
Jens Axboe7d9fb452011-01-11 22:16:49 +010037 if (use_seed)
38 __fill_random_buf(p, len, seed);
39 else
Jens Axboe3545a102011-08-31 15:20:15 -060040 io_u->rand_seed = fill_random_buf(&td->buf_state, p, len);
Jens Axboe90059d62007-07-30 09:33:12 +020041 break;
42 case 1:
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060043 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020044 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
45 return;
46 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010047 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010048 memset(p, td->o.verify_pattern[0], len);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020049 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020050 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010051 default: {
52 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020053 unsigned char *b = p;
54
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060055 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020056 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
57 td->o.verify_pattern_bytes, len);
58 return;
59 }
Jens Axboe81f03662012-02-02 09:20:09 +010060
Jens Axboebd6f78b2008-02-01 20:27:52 +010061 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
62 td->o.verify_pattern_bytes, len);
63
Jens Axboe90059d62007-07-30 09:33:12 +020064 while (i < len) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +010065 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;
Jens Axboe90059d62007-07-30 09:33:12 +020070 }
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020071 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020072 break;
73 }
74 }
75}
76
Jens Axboecfbcd0d2011-01-14 14:49:20 +010077static 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;
Jens Axboe8a99fdf2012-03-06 19:24:49 +010082 if (td->o.verify_interval && td->o.verify_interval <= io_u->buflen)
Jens Axboecfbcd0d2011-01-14 14:49:20 +010083 hdr_inc = td->o.verify_interval;
84
85 return hdr_inc;
86}
87
Jens Axboec50ca7b2011-01-12 08:31:54 +010088static 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
Jens Axboecfbcd0d2011-01-14 14:49:20 +010097 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboec50ca7b2011-01-12 08:31:54 +010098 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
Jens Axboe4764aec2007-08-23 09:03:38 +0200106static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +0200107{
Shawn Lewisdee6de72007-08-02 22:17:52 +0200108 char swap[200];
109
110 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200111
Shawn Lewis546a9142007-07-28 21:11:37 +0200112 memcpy(&swap, buf1, len);
113 memcpy(buf1, buf2, len);
114 memcpy(buf2, &swap, len);
115}
116
Jens Axboee29d1b72006-10-18 15:43:15 +0200117static void hexdump(void *buffer, int len)
118{
119 unsigned char *p = buffer;
120 int i;
121
122 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200123 log_err("%02x", p[i]);
124 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200125}
126
Jens Axboed9f2caf2007-07-28 21:22:03 +0200127/*
Jens Axboe87677832007-07-30 12:08:14 +0200128 * Prepare for seperation of verify_header and checksum header
129 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200130static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200131{
Bruce Cran03e20d62011-01-02 20:14:54 +0100132 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200133
Jens Axboe546dfd92007-07-30 12:23:05 +0200134 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;
Jens Axboebac39e02008-06-11 20:46:19 +0200145 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200146 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200147 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200148 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;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200162 case VERIFY_META:
163 len = sizeof(struct vhdr_meta);
164 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200165 case VERIFY_SHA1:
166 len = sizeof(struct vhdr_sha1);
167 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100168 case VERIFY_PATTERN:
169 len = 0;
170 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200171 default:
172 log_err("fio: unknown verify header!\n");
173 assert(0);
174 }
175
176 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200177}
178
179static inline unsigned int hdr_size(struct verify_header *hdr)
180{
Jens Axboe546dfd92007-07-30 12:23:05 +0200181 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);
Jens Axboe87677832007-07-30 12:08:14 +0200189}
190
191/*
Jens Axboe936216f2010-06-18 13:44:11 +0200192 * 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;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100201 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200202
203 /*
204 * Output, only valid in case of error
205 */
Jens Axboebfacf382010-06-18 14:29:52 +0200206 const char *name;
207 void *good_crc;
208 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200209 unsigned int crc_len;
210};
211
Jens Axboec50ca7b2011-01-12 08:31:54 +0100212static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
213 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100214{
Jens Axboe6f260b32011-01-13 18:57:54 +0100215 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100216 int ret, fd;
217
Jens Axboe6f260b32011-01-13 18:57:54 +0100218 ptr = strdup(f->file_name);
219 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100220
221 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100222
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);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100242 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100243 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100244}
245
Jens Axboec50ca7b2011-01-12 08:31:54 +0100246/*
247 * Dump the contents of the read block and re-generate the correct data
248 * and dump that too.
249 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100250static 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;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100255 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100256 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100257
Steven Lang0dce9bc2011-10-25 22:41:05 +0200258 if (!td->o.verify_dump)
259 return;
260
Jens Axboec50ca7b2011-01-12 08:31:54 +0100261 /*
262 * Dump the contents we just read off disk
263 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100264 hdr_offset = vc->hdr_num * hdr->len;
265
Jens Axboec50ca7b2011-01-12 08:31:54 +0100266 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
267 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100268
Jens Axboec50ca7b2011-01-12 08:31:54 +0100269 /*
270 * Allocate a new buf and re-generate the original data
271 */
272 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100273 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100274 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100275 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100276 dummy.buf_filled_len = 0;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100277
Jens Axboec50ca7b2011-01-12 08:31:54 +0100278 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100279
Jens Axboec50ca7b2011-01-12 08:31:54 +0100280 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
281 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100282 free(buf);
283}
284
Jens Axboebfacf382010-06-18 14:29:52 +0200285static 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;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200291 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);
Jens Axboebfacf382010-06-18 14:29:52 +0200293
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 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100300
301 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200302}
303
Jens Axboe936216f2010-06-18 13:44:11 +0200304/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200305 * Return data area 'header_num'
306 */
Jens Axboe936216f2010-06-18 13:44:11 +0200307static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200308{
Jens Axboe936216f2010-06-18 13:44:11 +0200309 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200310}
311
Jens Axboe92bf48d2011-01-14 21:20:42 +0100312static 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;
Jens Axboe2b13e712011-01-19 14:04:16 -0700317 unsigned int header_size = __hdr_size(td->o.verify);
Steven Lang9a2a86d2012-02-07 09:42:59 +0100318 unsigned int len, mod, i, size, pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100319
320 pattern = td->o.verify_pattern;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100321 pattern_size = td->o.verify_pattern_bytes;
322 if (pattern_size <= 1)
323 pattern_size = MAX_PATTERN_SIZE;
Jens Axboe2b13e712011-01-19 14:04:16 -0700324 buf = (void *) hdr + header_size;
325 len = get_hdr_inc(td, io_u) - header_size;
Steven Lang9a2a86d2012-02-07 09:42:59 +0100326 mod = header_size % pattern_size;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100327
Steven Lang9a2a86d2012-02-07 09:42:59 +0100328 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))
Jens Axboee4ad68b2012-02-23 08:35:04 +0100333 /* Let the slow compare find the first mismatch byte. */
Steven Lang9a2a86d2012-02-07 09:42:59 +0100334 break;
335 mod = 0;
336 }
337
338 for (; i < len; i++) {
Jens Axboe92bf48d2011-01-14 21:20:42 +0100339 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)
358{
359 struct thread_data *td = vc->td;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200360 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200361 struct io_u *io_u = vc->io_u;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100362 int ret = EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200363
Jens Axboebd6f78b2008-02-01 20:27:52 +0100364 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
365
Jens Axboebfacf382010-06-18 14:29:52 +0200366 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
Jens Axboe92bf48d2011-01-14 21:20:42 +0100367 ret = 0;
368
369 if (td->o.verify_pattern_bytes)
370 ret |= verify_io_u_pattern(hdr, vc);
371
372 if (!ret)
Jens Axboebfacf382010-06-18 14:29:52 +0200373 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200374
Jens Axboebfacf382010-06-18 14:29:52 +0200375 vc->name = "meta";
376 log_verify_failure(hdr, vc);
Jens Axboe92bf48d2011-01-14 21:20:42 +0100377 return ret;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200378}
379
Jens Axboe936216f2010-06-18 13:44:11 +0200380static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200381{
Jens Axboe936216f2010-06-18 13:44:11 +0200382 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200383 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200384 uint8_t sha512[128];
Jens Axboe25dfa842012-02-29 10:01:34 +0100385 struct fio_sha512_ctx sha512_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200386 .buf = sha512,
387 };
388
Jens Axboe936216f2010-06-18 13:44:11 +0200389 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100390
Jens Axboe25dfa842012-02-29 10:01:34 +0100391 fio_sha512_init(&sha512_ctx);
392 fio_sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200393
Jens Axboebfacf382010-06-18 14:29:52 +0200394 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
395 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200396
Jens Axboebfacf382010-06-18 14:29:52 +0200397 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;
Jens Axboecd14cc12007-07-30 10:59:33 +0200403}
404
Jens Axboe936216f2010-06-18 13:44:11 +0200405static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200406{
Jens Axboe936216f2010-06-18 13:44:11 +0200407 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200408 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100409 uint8_t sha256[64];
Jens Axboe25dfa842012-02-29 10:01:34 +0100410 struct fio_sha256_ctx sha256_ctx = {
Jens Axboecd14cc12007-07-30 10:59:33 +0200411 .buf = sha256,
412 };
413
Jens Axboe936216f2010-06-18 13:44:11 +0200414 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100415
Jens Axboe25dfa842012-02-29 10:01:34 +0100416 fio_sha256_init(&sha256_ctx);
417 fio_sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200418
Jens Axboebfacf382010-06-18 14:29:52 +0200419 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
420 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200421
Jens Axboebfacf382010-06-18 14:29:52 +0200422 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;
Jens Axboecd14cc12007-07-30 10:59:33 +0200428}
429
Jens Axboe936216f2010-06-18 13:44:11 +0200430static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200431{
Jens Axboe936216f2010-06-18 13:44:11 +0200432 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200433 struct vhdr_sha1 *vh = hdr_priv(hdr);
434 uint32_t sha1[5];
Jens Axboe25dfa842012-02-29 10:01:34 +0100435 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200436 .H = sha1,
437 };
438
Jens Axboe936216f2010-06-18 13:44:11 +0200439 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200440
Jens Axboe25dfa842012-02-29 10:01:34 +0100441 fio_sha1_init(&sha1_ctx);
442 fio_sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboe7c353ce2009-08-09 22:40:33 +0200443
Jens Axboebfacf382010-06-18 14:29:52 +0200444 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
445 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200446
Jens Axboebfacf382010-06-18 14:29:52 +0200447 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;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200453}
454
Jens Axboe936216f2010-06-18 13:44:11 +0200455static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200456{
Jens Axboe936216f2010-06-18 13:44:11 +0200457 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200458 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200459 unsigned char c;
460
Jens Axboe936216f2010-06-18 13:44:11 +0200461 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100462
Jens Axboe25dfa842012-02-29 10:01:34 +0100463 c = fio_crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200464
Jens Axboebfacf382010-06-18 14:29:52 +0200465 if (c == vh->crc7)
466 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200467
Jens Axboebfacf382010-06-18 14:29:52 +0200468 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;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200474}
475
Jens Axboe936216f2010-06-18 13:44:11 +0200476static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200477{
Jens Axboe936216f2010-06-18 13:44:11 +0200478 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200479 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200480 unsigned short c;
481
Jens Axboe936216f2010-06-18 13:44:11 +0200482 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100483
Jens Axboe25dfa842012-02-29 10:01:34 +0100484 c = fio_crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200485
Jens Axboebfacf382010-06-18 14:29:52 +0200486 if (c == vh->crc16)
487 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200488
Jens Axboebfacf382010-06-18 14:29:52 +0200489 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;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200495}
496
Jens Axboe936216f2010-06-18 13:44:11 +0200497static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200498{
Jens Axboe936216f2010-06-18 13:44:11 +0200499 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200500 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200501 unsigned long long c;
502
Jens Axboe936216f2010-06-18 13:44:11 +0200503 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100504
Jens Axboe25dfa842012-02-29 10:01:34 +0100505 c = fio_crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200506
Jens Axboebfacf382010-06-18 14:29:52 +0200507 if (c == vh->crc64)
508 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200509
Jens Axboebfacf382010-06-18 14:29:52 +0200510 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;
Jens Axboed77a7af2007-07-27 15:35:06 +0200516}
517
Jens Axboe936216f2010-06-18 13:44:11 +0200518static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200519{
Jens Axboe936216f2010-06-18 13:44:11 +0200520 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200521 struct vhdr_crc32 *vh = hdr_priv(hdr);
522 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200523
Jens Axboe936216f2010-06-18 13:44:11 +0200524 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100525
Jens Axboe25dfa842012-02-29 10:01:34 +0100526 c = fio_crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200527
Jens Axboebfacf382010-06-18 14:29:52 +0200528 if (c == vh->crc32)
529 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200530
Jens Axboebfacf382010-06-18 14:29:52 +0200531 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;
Jens Axboee29d1b72006-10-18 15:43:15 +0200537}
538
Jens Axboe936216f2010-06-18 13:44:11 +0200539static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200540{
Jens Axboe936216f2010-06-18 13:44:11 +0200541 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200542 struct vhdr_crc32 *vh = hdr_priv(hdr);
543 uint32_t c;
544
Jens Axboe936216f2010-06-18 13:44:11 +0200545 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200546
Jens Axboe25dfa842012-02-29 10:01:34 +0100547 c = fio_crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200548
Jens Axboebfacf382010-06-18 14:29:52 +0200549 if (c == vh->crc32)
550 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200551
Jens Axboebfacf382010-06-18 14:29:52 +0200552 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;
Jens Axboebac39e02008-06-11 20:46:19 +0200558}
559
Jens Axboe936216f2010-06-18 13:44:11 +0200560static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200561{
Jens Axboe936216f2010-06-18 13:44:11 +0200562 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200563 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200564 uint32_t hash[MD5_HASH_WORDS];
Jens Axboe25dfa842012-02-29 10:01:34 +0100565 struct fio_md5_ctx md5_ctx = {
Jens Axboe8c432322007-07-27 13:16:24 +0200566 .hash = hash,
567 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200568
Jens Axboe936216f2010-06-18 13:44:11 +0200569 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100570
Jens Axboe25dfa842012-02-29 10:01:34 +0100571 fio_md5_init(&md5_ctx);
572 fio_md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200573
Jens Axboebfacf382010-06-18 14:29:52 +0200574 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
575 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200576
Jens Axboebfacf382010-06-18 14:29:52 +0200577 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;
Jens Axboee29d1b72006-10-18 15:43:15 +0200583}
584
Jens Axboee8462bd2009-07-06 12:59:04 +0200585/*
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
Jens Axboee8462bd2009-07-06 12:59:04 +0200593 pthread_mutex_lock(&td->io_u_lock);
Steven Langd7ee2a72011-10-26 09:46:50 +0200594
Radha Ramachandran0c412142009-11-03 21:45:31 +0100595 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 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200599 flist_del(&io_u->list);
600 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100601 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200602 pthread_mutex_unlock(&td->io_u_lock);
603
604 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200605 return 0;
606}
607
Jens Axboe0d29de82010-09-01 13:54:15 +0200608static 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
Jens Axboea917a8b2010-09-02 13:23:20 +0200635 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,
Jens Axboe2f681242010-10-21 08:15:59 +0200638 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200639 return ret;
640}
641
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100642static int verify_header(struct io_u *io_u, struct verify_header *hdr)
Jens Axboef65d1c22012-02-22 20:11:57 +0100643{
644 void *p = hdr;
645 uint32_t crc;
646
Jens Axboeae38c0d2012-02-23 10:31:07 +0100647 if (hdr->magic != FIO_HDR_MAGIC)
648 return 0;
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100649 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 }
Jens Axboeae38c0d2012-02-23 10:31:07 +0100653
Jens Axboe25dfa842012-02-29 10:01:34 +0100654 crc = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100655 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
Jens Axboe36690c92007-03-26 10:23:34 +0200662int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200663{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200664 struct verify_header *hdr;
Jens Axboe2b13e712011-01-19 14:04:16 -0700665 unsigned int header_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200666 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200667 int ret;
668
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200669 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200670 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200671 if (io_u->flags & IO_U_F_TRIMMED) {
672 ret = verify_trimmed_io_u(td, io_u);
673 goto done;
674 }
Jens Axboe36690c92007-03-26 10:23:34 +0200675
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100676 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200677
Jens Axboea12a3b42007-08-09 10:20:54 +0200678 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100679 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
680 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200681 struct vcont vc = {
682 .io_u = io_u,
683 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100684 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200685 };
Jens Axboef00b2102012-11-30 09:39:02 +0100686 unsigned int verify_type;
Jens Axboe936216f2010-06-18 13:44:11 +0200687
Jens Axboef3e6cb92010-06-18 14:48:43 +0200688 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200689 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200690
Jens Axboe2b13e712011-01-19 14:04:16 -0700691 header_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200692 if (td->o.verify_offset)
Jens Axboe2b13e712011-01-19 14:04:16 -0700693 memswp(p, p + td->o.verify_offset, header_size);
Jens Axboe95646102007-07-28 21:17:50 +0200694 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200695
Jens Axboe0ae2c6e2012-03-06 17:46:44 +0100696 if (!verify_header(io_u, hdr)) {
Jens Axboeae38c0d2012-02-23 10:31:07 +0100697 log_err("verify: bad magic header %x, wanted %x at "
698 "file %s offset %llu, length %u\n",
Jens Axboed3a173a2012-02-23 08:23:18 +0100699 hdr->magic, FIO_HDR_MAGIC,
Jens Axboec9b44032010-06-18 14:46:06 +0200700 io_u->file->file_name,
701 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200702 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200703 }
704
Jens Axboef00b2102012-11-30 09:39:02 +0100705 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) {
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200711 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200712 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200713 break;
714 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200715 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200716 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200717 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200718 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200719 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200720 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200721 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200722 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200723 break;
724 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200725 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200726 break;
727 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200728 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200729 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200730 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200731 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200732 break;
733 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200734 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200735 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200736 case VERIFY_META:
Jens Axboe92bf48d2011-01-14 21:20:42 +0100737 ret = verify_io_u_meta(hdr, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200738 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200739 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200740 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200741 break;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100742 case VERIFY_PATTERN:
743 ret = verify_io_u_pattern(hdr, &vc);
744 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200745 default:
746 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200747 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200748 }
Jens Axboef00b2102012-11-30 09:39:02 +0100749
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);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200753 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100754
Jens Axboe0d29de82010-09-01 13:54:15 +0200755done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200756 if (ret && td->o.verify_fatal)
757 td->terminate = 1;
758
Jens Axboea12a3b42007-08-09 10:20:54 +0200759 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200760}
761
Shawn Lewis7437ee82007-08-02 21:05:58 +0200762static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100763 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200764{
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
Jens Axboecd14cc12007-07-30 10:59:33 +0200777static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
778{
Jens Axboe546dfd92007-07-30 12:23:05 +0200779 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100780 struct fio_sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200781 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200782 };
783
Jens Axboe25dfa842012-02-29 10:01:34 +0100784 fio_sha512_init(&sha512_ctx);
785 fio_sha512_update(&sha512_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200786}
787
788static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
789{
Jens Axboe546dfd92007-07-30 12:23:05 +0200790 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100791 struct fio_sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200792 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200793 };
794
Jens Axboe25dfa842012-02-29 10:01:34 +0100795 fio_sha256_init(&sha256_ctx);
796 fio_sha256_update(&sha256_ctx, p, len);
Jens Axboecd14cc12007-07-30 10:59:33 +0200797}
798
Jens Axboe7c353ce2009-08-09 22:40:33 +0200799static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
800{
801 struct vhdr_sha1 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100802 struct fio_sha1_ctx sha1_ctx = {
Jens Axboe7c353ce2009-08-09 22:40:33 +0200803 .H = vh->sha1,
804 };
805
Jens Axboe25dfa842012-02-29 10:01:34 +0100806 fio_sha1_init(&sha1_ctx);
807 fio_sha1_update(&sha1_ctx, p, len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200808}
809
Jens Axboe1e154bd2007-07-27 09:52:40 +0200810static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
811{
Jens Axboe546dfd92007-07-30 12:23:05 +0200812 struct vhdr_crc7 *vh = hdr_priv(hdr);
813
Jens Axboe25dfa842012-02-29 10:01:34 +0100814 vh->crc7 = fio_crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200815}
816
Jens Axboe969f7ed2007-07-27 09:07:17 +0200817static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
818{
Jens Axboe546dfd92007-07-30 12:23:05 +0200819 struct vhdr_crc16 *vh = hdr_priv(hdr);
820
Jens Axboe25dfa842012-02-29 10:01:34 +0100821 vh->crc16 = fio_crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200822}
823
Jens Axboee29d1b72006-10-18 15:43:15 +0200824static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
825{
Jens Axboe546dfd92007-07-30 12:23:05 +0200826 struct vhdr_crc32 *vh = hdr_priv(hdr);
827
Jens Axboe25dfa842012-02-29 10:01:34 +0100828 vh->crc32 = fio_crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200829}
830
Jens Axboebac39e02008-06-11 20:46:19 +0200831static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
832{
833 struct vhdr_crc32 *vh = hdr_priv(hdr);
834
Jens Axboe25dfa842012-02-29 10:01:34 +0100835 vh->crc32 = fio_crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200836}
837
Jens Axboed77a7af2007-07-27 15:35:06 +0200838static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
839{
Jens Axboe546dfd92007-07-30 12:23:05 +0200840 struct vhdr_crc64 *vh = hdr_priv(hdr);
841
Jens Axboe25dfa842012-02-29 10:01:34 +0100842 vh->crc64 = fio_crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200843}
844
Jens Axboee29d1b72006-10-18 15:43:15 +0200845static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
846{
Jens Axboe546dfd92007-07-30 12:23:05 +0200847 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe25dfa842012-02-29 10:01:34 +0100848 struct fio_md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200849 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200850 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200851
Jens Axboe25dfa842012-02-29 10:01:34 +0100852 fio_md5_init(&md5_ctx);
853 fio_md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200854}
855
Jens Axboe7d9fb452011-01-11 22:16:49 +0100856static 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
Jens Axboed3a173a2012-02-23 08:23:18 +0100865 hdr->magic = FIO_HDR_MAGIC;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100866 hdr->verify_type = td->o.verify;
Jens Axboed3a173a2012-02-23 08:23:18 +0100867 hdr->len = header_len;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100868 hdr->rand_seed = io_u->rand_seed;
Jens Axboe25dfa842012-02-29 10:01:34 +0100869 hdr->crc32 = fio_crc32c(p, offsetof(struct verify_header, crc32));
Jens Axboef65d1c22012-02-22 20:11:57 +0100870
Jens Axboe7d9fb452011-01-11 22:16:49 +0100871 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;
Jens Axboe92bf48d2011-01-14 21:20:42 +0100926 case VERIFY_PATTERN:
927 /* nothing to do here */
928 break;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100929 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
Jens Axboee29d1b72006-10-18 15:43:15 +0200937/*
938 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100939 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200940 */
941void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
942{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200943 if (td->o.verify == VERIFY_NULL)
944 return;
945
Jens Axboec50ca7b2011-01-12 08:31:54 +0100946 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200947}
948
949int get_next_verify(struct thread_data *td, struct io_u *io_u)
950{
Jens Axboe8de8f042007-03-27 10:36:12 +0200951 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200952
Jens Axboed2d7fa52007-02-19 13:21:35 +0100953 /*
954 * this io_u is from a requeue, we already filled the offsets
955 */
956 if (io_u->file)
957 return 0;
958
Jens Axboe8de8f042007-03-27 10:36:12 +0200959 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
960 struct rb_node *n = rb_first(&td->io_hist_tree);
961
Jens Axboe4b878982007-03-26 09:32:22 +0200962 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200963 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200964 assert(ipo->flags & IP_F_ONRB);
965 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200966 } 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);
Jens Axboea917a8b2010-09-02 13:23:20 +0200969 assert(ipo->flags & IP_F_ONLIST);
970 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200971 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200972
Jens Axboe8de8f042007-03-27 10:36:12 +0200973 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200974 td->io_hist_len--;
975
Jens Axboee29d1b72006-10-18 15:43:15 +0200976 io_u->offset = ipo->offset;
977 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100978 io_u->file = ipo->file;
Jens Axboe82af2a72012-03-13 13:45:58 +0100979 io_u->flags |= IO_U_F_VER_LIST;
Jens Axboe97af62c2007-05-22 11:12:13 +0200980
Jens Axboe0d29de82010-09-01 13:54:15 +0200981 if (ipo->flags & IP_F_TRIMMED)
982 io_u->flags |= IO_U_F_TRIMMED;
983
Jens Axboed6aed792009-06-03 08:41:15 +0200984 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200985 int r = td_io_open_file(td, io_u->file);
986
Jens Axboebd6f78b2008-02-01 20:27:52 +0100987 if (r) {
988 dprint(FD_VERIFY, "failed file %s open\n",
989 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200990 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100991 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200992 }
993
994 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200995 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200996 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100997 io_u->xfer_buf = io_u->buf;
998 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200999
1000 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +02001001 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +01001002 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +02001003 return 0;
1004 }
1005
Jens Axboebd6f78b2008-02-01 20:27:52 +01001006 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +02001007 return 1;
1008}
Jens Axboee8462bd2009-07-06 12:59:04 +02001009
1010static void *verify_async_thread(void *data)
1011{
1012 struct thread_data *td = data;
1013 struct io_u *io_u;
1014 int ret = 0;
1015
1016 if (td->o.verify_cpumask_set &&
1017 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
1018 log_err("fio: failed setting verify thread affinity\n");
1019 goto done;
1020 }
1021
1022 do {
Jens Axboee53ab272009-07-06 13:43:46 +02001023 FLIST_HEAD(list);
1024
Jens Axboee8462bd2009-07-06 12:59:04 +02001025 read_barrier();
1026 if (td->verify_thread_exit)
1027 break;
1028
1029 pthread_mutex_lock(&td->io_u_lock);
1030
1031 while (flist_empty(&td->verify_list) &&
1032 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001033 ret = pthread_cond_wait(&td->verify_cond,
1034 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001035 if (ret) {
1036 pthread_mutex_unlock(&td->io_u_lock);
1037 break;
1038 }
1039 }
1040
Jens Axboee53ab272009-07-06 13:43:46 +02001041 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001042 pthread_mutex_unlock(&td->io_u_lock);
1043
Jens Axboee53ab272009-07-06 13:43:46 +02001044 if (flist_empty(&list))
1045 continue;
1046
1047 while (!flist_empty(&list)) {
1048 io_u = flist_entry(list.next, struct io_u, list);
1049 flist_del_init(&io_u->list);
1050
Jens Axboed561f2a2009-07-06 13:51:05 +02001051 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001052 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001053 if (!ret)
1054 continue;
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001055 if (td_non_fatal_error(td, ERROR_TYPE_VERIFY_BIT, ret)) {
Jens Axboed561f2a2009-07-06 13:51:05 +02001056 update_error_count(td, ret);
1057 td_clear_error(td);
1058 ret = 0;
1059 }
Jens Axboee53ab272009-07-06 13:43:46 +02001060 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001061 } while (!ret);
1062
Jens Axboed561f2a2009-07-06 13:51:05 +02001063 if (ret) {
1064 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001065 if (td->o.verify_fatal)
1066 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001067 }
1068
Jens Axboee8462bd2009-07-06 12:59:04 +02001069done:
1070 pthread_mutex_lock(&td->io_u_lock);
1071 td->nr_verify_threads--;
1072 pthread_mutex_unlock(&td->io_u_lock);
1073
1074 pthread_cond_signal(&td->free_cond);
1075 return NULL;
1076}
1077
1078int verify_async_init(struct thread_data *td)
1079{
1080 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001081 pthread_attr_t attr;
1082
1083 pthread_attr_init(&attr);
1084 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001085
1086 td->verify_thread_exit = 0;
1087
1088 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1089 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001090 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001091 verify_async_thread, td);
1092 if (ret) {
1093 log_err("fio: async verify creation failed: %s\n",
1094 strerror(ret));
1095 break;
1096 }
1097 ret = pthread_detach(td->verify_threads[i]);
1098 if (ret) {
1099 log_err("fio: async verify thread detach failed: %s\n",
1100 strerror(ret));
1101 break;
1102 }
1103 td->nr_verify_threads++;
1104 }
1105
bart Van Assche304a47c2010-08-01 21:31:26 +02001106 pthread_attr_destroy(&attr);
1107
Jens Axboee8462bd2009-07-06 12:59:04 +02001108 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001109 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001110 td->verify_thread_exit = 1;
1111 write_barrier();
1112 pthread_cond_broadcast(&td->verify_cond);
1113 return 1;
1114 }
1115
1116 return 0;
1117}
1118
1119void verify_async_exit(struct thread_data *td)
1120{
1121 td->verify_thread_exit = 1;
1122 write_barrier();
1123 pthread_cond_broadcast(&td->verify_cond);
1124
1125 pthread_mutex_lock(&td->io_u_lock);
1126
1127 while (td->nr_verify_threads)
1128 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1129
1130 pthread_mutex_unlock(&td->io_u_lock);
1131 free(td->verify_threads);
1132 td->verify_threads = NULL;
1133}