blob: b4434b9ec50d20e78e99f92695769348353d451f [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 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 Axboecd14cc12007-07-30 10:59:33 +020026
Jens Axboe7d9fb452011-01-11 22:16:49 +010027static void populate_hdr(struct thread_data *td, struct io_u *io_u,
28 struct verify_header *hdr, unsigned int header_num,
29 unsigned int header_len);
30
31void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u *io_u, unsigned long seed, int use_seed)
Jens Axboe90059d62007-07-30 09:33:12 +020032{
33 switch (td->o.verify_pattern_bytes) {
34 case 0:
Jens Axboebd6f78b2008-02-01 20:27:52 +010035 dprint(FD_VERIFY, "fill random bytes len=%u\n", len);
Jens Axboe7d9fb452011-01-11 22:16:49 +010036 if (use_seed)
37 __fill_random_buf(p, len, seed);
38 else
39 io_u->rand_seed = fill_random_buf(p, len);
Jens Axboe90059d62007-07-30 09:33:12 +020040 break;
41 case 1:
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060042 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020043 dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len);
44 return;
45 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010046 dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len);
Radha Ramachandran0e92f872009-10-27 20:14:27 +010047 memset(p, td->o.verify_pattern[0], len);
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020048 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020049 break;
Radha Ramachandran0e92f872009-10-27 20:14:27 +010050 default: {
51 unsigned int i = 0, size = 0;
Jens Axboe90059d62007-07-30 09:33:12 +020052 unsigned char *b = p;
53
Radha Ramachandran10e8a7b2010-07-14 17:39:05 -060054 if (io_u->buf_filled_len >= len) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020055 dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n",
56 td->o.verify_pattern_bytes, len);
57 return;
58 }
Jens Axboebd6f78b2008-02-01 20:27:52 +010059 dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n",
60 td->o.verify_pattern_bytes, len);
61
Jens Axboe90059d62007-07-30 09:33:12 +020062 while (i < len) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +010063 size = td->o.verify_pattern_bytes;
64 if (size > (len - i))
65 size = len - i;
66 memcpy(b+i, td->o.verify_pattern, size);
67 i += size;
Jens Axboe90059d62007-07-30 09:33:12 +020068 }
Radha Ramachandrancbe8d752010-07-14 08:36:07 +020069 io_u->buf_filled_len = len;
Jens Axboe90059d62007-07-30 09:33:12 +020070 break;
71 }
72 }
73}
74
Jens Axboec50ca7b2011-01-12 08:31:54 +010075static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
76 unsigned long seed, int use_seed)
77{
78 unsigned int hdr_inc, header_num;
79 struct verify_header *hdr;
80 void *p = io_u->buf;
81
82 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
83
84 hdr_inc = io_u->buflen;
85 if (td->o.verify_interval)
86 hdr_inc = td->o.verify_interval;
87
88 header_num = 0;
89 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
90 hdr = p;
91 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
92 header_num++;
93 }
94}
95
Jens Axboe4764aec2007-08-23 09:03:38 +020096static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +020097{
Shawn Lewisdee6de72007-08-02 22:17:52 +020098 char swap[200];
99
100 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200101
Shawn Lewis546a9142007-07-28 21:11:37 +0200102 memcpy(&swap, buf1, len);
103 memcpy(buf1, buf2, len);
104 memcpy(buf2, &swap, len);
105}
106
Jens Axboee29d1b72006-10-18 15:43:15 +0200107static void hexdump(void *buffer, int len)
108{
109 unsigned char *p = buffer;
110 int i;
111
112 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200113 log_err("%02x", p[i]);
114 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200115}
116
Jens Axboed9f2caf2007-07-28 21:22:03 +0200117/*
Jens Axboe87677832007-07-30 12:08:14 +0200118 * Prepare for seperation of verify_header and checksum header
119 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200120static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200121{
Bruce Cran03e20d62011-01-02 20:14:54 +0100122 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200123
Jens Axboe546dfd92007-07-30 12:23:05 +0200124 switch (verify_type) {
125 case VERIFY_NONE:
126 case VERIFY_NULL:
127 len = 0;
128 break;
129 case VERIFY_MD5:
130 len = sizeof(struct vhdr_md5);
131 break;
132 case VERIFY_CRC64:
133 len = sizeof(struct vhdr_crc64);
134 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200135 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200136 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200137 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200138 len = sizeof(struct vhdr_crc32);
139 break;
140 case VERIFY_CRC16:
141 len = sizeof(struct vhdr_crc16);
142 break;
143 case VERIFY_CRC7:
144 len = sizeof(struct vhdr_crc7);
145 break;
146 case VERIFY_SHA256:
147 len = sizeof(struct vhdr_sha256);
148 break;
149 case VERIFY_SHA512:
150 len = sizeof(struct vhdr_sha512);
151 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200152 case VERIFY_META:
153 len = sizeof(struct vhdr_meta);
154 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200155 case VERIFY_SHA1:
156 len = sizeof(struct vhdr_sha1);
157 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200158 default:
159 log_err("fio: unknown verify header!\n");
160 assert(0);
161 }
162
163 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200164}
165
166static inline unsigned int hdr_size(struct verify_header *hdr)
167{
Jens Axboe546dfd92007-07-30 12:23:05 +0200168 return __hdr_size(hdr->verify_type);
169}
170
171static void *hdr_priv(struct verify_header *hdr)
172{
173 void *priv = hdr;
174
175 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200176}
177
178/*
Jens Axboe936216f2010-06-18 13:44:11 +0200179 * Verify container, pass info to verify handlers and allow them to
180 * pass info back in case of error
181 */
182struct vcont {
183 /*
184 * Input
185 */
186 struct io_u *io_u;
187 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100188 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200189
190 /*
191 * Output, only valid in case of error
192 */
Jens Axboebfacf382010-06-18 14:29:52 +0200193 const char *name;
194 void *good_crc;
195 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200196 unsigned int crc_len;
197};
198
Jens Axboec50ca7b2011-01-12 08:31:54 +0100199static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
200 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100201{
Jens Axboe6f260b32011-01-13 18:57:54 +0100202 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100203 int ret, fd;
204
Jens Axboe6f260b32011-01-13 18:57:54 +0100205 ptr = strdup(f->file_name);
206 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100207
208 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100209
210 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
211 if (fd < 0) {
212 perror("open verify buf file");
213 return;
214 }
215
216 while (len) {
217 ret = write(fd, buf, len);
218 if (!ret)
219 break;
220 else if (ret < 0) {
221 perror("write verify buf file");
222 break;
223 }
224 len -= ret;
225 buf += ret;
226 }
227
228 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100229 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100230 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100231}
232
Jens Axboec50ca7b2011-01-12 08:31:54 +0100233/*
234 * Dump the contents of the read block and re-generate the correct data
235 * and dump that too.
236 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100237static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
238{
239 struct thread_data *td = vc->td;
240 struct io_u *io_u = vc->io_u;
241 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100242 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100243 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100244
Jens Axboec50ca7b2011-01-12 08:31:54 +0100245 /*
246 * Dump the contents we just read off disk
247 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100248 hdr_offset = vc->hdr_num * hdr->len;
249
Jens Axboec50ca7b2011-01-12 08:31:54 +0100250 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
251 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100252
Jens Axboec50ca7b2011-01-12 08:31:54 +0100253 /*
254 * Allocate a new buf and re-generate the original data
255 */
256 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100257 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100258 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100259 dummy.rand_seed = hdr->rand_seed;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100260
Jens Axboec50ca7b2011-01-12 08:31:54 +0100261 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100262
Jens Axboec50ca7b2011-01-12 08:31:54 +0100263 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
264 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100265 free(buf);
266}
267
Jens Axboebfacf382010-06-18 14:29:52 +0200268static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
269{
270 unsigned long long offset;
271
272 offset = vc->io_u->offset;
273 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200274 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
275 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200276
277 if (vc->good_crc && vc->bad_crc) {
278 log_err(" Expected CRC: ");
279 hexdump(vc->good_crc, vc->crc_len);
280 log_err(" Received CRC: ");
281 hexdump(vc->bad_crc, vc->crc_len);
282 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100283
284 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200285}
286
Jens Axboe936216f2010-06-18 13:44:11 +0200287/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200288 * Return data area 'header_num'
289 */
Jens Axboe936216f2010-06-18 13:44:11 +0200290static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200291{
Jens Axboe936216f2010-06-18 13:44:11 +0200292 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200293}
294
Shawn Lewis7437ee82007-08-02 21:05:58 +0200295static int verify_io_u_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe936216f2010-06-18 13:44:11 +0200296 struct vcont *vc)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200297{
298 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200299 struct io_u *io_u = vc->io_u;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200300
Jens Axboebd6f78b2008-02-01 20:27:52 +0100301 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
302
Jens Axboebfacf382010-06-18 14:29:52 +0200303 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
304 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200305
Jens Axboebfacf382010-06-18 14:29:52 +0200306 vc->name = "meta";
307 log_verify_failure(hdr, vc);
308 return EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200309}
310
Jens Axboe936216f2010-06-18 13:44:11 +0200311static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200312{
Jens Axboe936216f2010-06-18 13:44:11 +0200313 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200314 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200315 uint8_t sha512[128];
316 struct sha512_ctx sha512_ctx = {
317 .buf = sha512,
318 };
319
Jens Axboe936216f2010-06-18 13:44:11 +0200320 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100321
Jens Axboecd14cc12007-07-30 10:59:33 +0200322 sha512_init(&sha512_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200323 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200324
Jens Axboebfacf382010-06-18 14:29:52 +0200325 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
326 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200327
Jens Axboebfacf382010-06-18 14:29:52 +0200328 vc->name = "sha512";
329 vc->good_crc = vh->sha512;
330 vc->bad_crc = sha512_ctx.buf;
331 vc->crc_len = sizeof(vh->sha512);
332 log_verify_failure(hdr, vc);
333 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200334}
335
Jens Axboe936216f2010-06-18 13:44:11 +0200336static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200337{
Jens Axboe936216f2010-06-18 13:44:11 +0200338 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200339 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100340 uint8_t sha256[64];
Jens Axboecd14cc12007-07-30 10:59:33 +0200341 struct sha256_ctx sha256_ctx = {
342 .buf = sha256,
343 };
344
Jens Axboe936216f2010-06-18 13:44:11 +0200345 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100346
Jens Axboecd14cc12007-07-30 10:59:33 +0200347 sha256_init(&sha256_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200348 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200349
Jens Axboebfacf382010-06-18 14:29:52 +0200350 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
351 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200352
Jens Axboebfacf382010-06-18 14:29:52 +0200353 vc->name = "sha256";
354 vc->good_crc = vh->sha256;
355 vc->bad_crc = sha256_ctx.buf;
356 vc->crc_len = sizeof(vh->sha256);
357 log_verify_failure(hdr, vc);
358 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200359}
360
Jens Axboe936216f2010-06-18 13:44:11 +0200361static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200362{
Jens Axboe936216f2010-06-18 13:44:11 +0200363 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200364 struct vhdr_sha1 *vh = hdr_priv(hdr);
365 uint32_t sha1[5];
366 struct sha1_ctx sha1_ctx = {
367 .H = sha1,
368 };
369
Jens Axboe936216f2010-06-18 13:44:11 +0200370 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200371
372 sha1_init(&sha1_ctx);
373 sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
374
Jens Axboebfacf382010-06-18 14:29:52 +0200375 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
376 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200377
Jens Axboebfacf382010-06-18 14:29:52 +0200378 vc->name = "sha1";
379 vc->good_crc = vh->sha1;
380 vc->bad_crc = sha1_ctx.H;
381 vc->crc_len = sizeof(vh->sha1);
382 log_verify_failure(hdr, vc);
383 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200384}
385
Jens Axboe936216f2010-06-18 13:44:11 +0200386static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200387{
Jens Axboe936216f2010-06-18 13:44:11 +0200388 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200389 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200390 unsigned char c;
391
Jens Axboe936216f2010-06-18 13:44:11 +0200392 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100393
Jens Axboe87677832007-07-30 12:08:14 +0200394 c = crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200395
Jens Axboebfacf382010-06-18 14:29:52 +0200396 if (c == vh->crc7)
397 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200398
Jens Axboebfacf382010-06-18 14:29:52 +0200399 vc->name = "crc7";
400 vc->good_crc = &vh->crc7;
401 vc->bad_crc = &c;
402 vc->crc_len = 1;
403 log_verify_failure(hdr, vc);
404 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200405}
406
Jens Axboe936216f2010-06-18 13:44:11 +0200407static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200408{
Jens Axboe936216f2010-06-18 13:44:11 +0200409 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200410 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200411 unsigned short c;
412
Jens Axboe936216f2010-06-18 13:44:11 +0200413 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100414
Jens Axboe87677832007-07-30 12:08:14 +0200415 c = crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200416
Jens Axboebfacf382010-06-18 14:29:52 +0200417 if (c == vh->crc16)
418 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200419
Jens Axboebfacf382010-06-18 14:29:52 +0200420 vc->name = "crc16";
421 vc->good_crc = &vh->crc16;
422 vc->bad_crc = &c;
423 vc->crc_len = 2;
424 log_verify_failure(hdr, vc);
425 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200426}
427
Jens Axboe936216f2010-06-18 13:44:11 +0200428static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200429{
Jens Axboe936216f2010-06-18 13:44:11 +0200430 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200431 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200432 unsigned long long c;
433
Jens Axboe936216f2010-06-18 13:44:11 +0200434 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100435
Jens Axboe87677832007-07-30 12:08:14 +0200436 c = crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200437
Jens Axboebfacf382010-06-18 14:29:52 +0200438 if (c == vh->crc64)
439 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200440
Jens Axboebfacf382010-06-18 14:29:52 +0200441 vc->name = "crc64";
442 vc->good_crc = &vh->crc64;
443 vc->bad_crc = &c;
444 vc->crc_len = 8;
445 log_verify_failure(hdr, vc);
446 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200447}
448
Jens Axboe936216f2010-06-18 13:44:11 +0200449static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200450{
Jens Axboe936216f2010-06-18 13:44:11 +0200451 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200452 struct vhdr_crc32 *vh = hdr_priv(hdr);
453 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200454
Jens Axboe936216f2010-06-18 13:44:11 +0200455 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100456
Jens Axboe87677832007-07-30 12:08:14 +0200457 c = crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200458
Jens Axboebfacf382010-06-18 14:29:52 +0200459 if (c == vh->crc32)
460 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200461
Jens Axboebfacf382010-06-18 14:29:52 +0200462 vc->name = "crc32";
463 vc->good_crc = &vh->crc32;
464 vc->bad_crc = &c;
465 vc->crc_len = 4;
466 log_verify_failure(hdr, vc);
467 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200468}
469
Jens Axboe936216f2010-06-18 13:44:11 +0200470static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200471{
Jens Axboe936216f2010-06-18 13:44:11 +0200472 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200473 struct vhdr_crc32 *vh = hdr_priv(hdr);
474 uint32_t c;
475
Jens Axboe936216f2010-06-18 13:44:11 +0200476 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200477
Jens Axboe38455912008-08-04 15:35:26 +0200478 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
479 c = crc32c_intel(p, hdr->len - hdr_size(hdr));
480 else
481 c = crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200482
Jens Axboebfacf382010-06-18 14:29:52 +0200483 if (c == vh->crc32)
484 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200485
Jens Axboebfacf382010-06-18 14:29:52 +0200486 vc->name = "crc32c";
487 vc->good_crc = &vh->crc32;
488 vc->bad_crc = &c;
489 vc->crc_len = 4;
490 log_verify_failure(hdr, vc);
491 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200492}
493
Jens Axboe936216f2010-06-18 13:44:11 +0200494static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200495{
Jens Axboe936216f2010-06-18 13:44:11 +0200496 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200497 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200498 uint32_t hash[MD5_HASH_WORDS];
499 struct md5_ctx md5_ctx = {
500 .hash = hash,
501 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200502
Jens Axboe936216f2010-06-18 13:44:11 +0200503 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100504
Jens Axboe61f821f2007-07-30 10:18:06 +0200505 md5_init(&md5_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200506 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200507
Jens Axboebfacf382010-06-18 14:29:52 +0200508 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
509 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200510
Jens Axboebfacf382010-06-18 14:29:52 +0200511 vc->name = "md5";
512 vc->good_crc = vh->md5_digest;
513 vc->bad_crc = md5_ctx.hash;
514 vc->crc_len = sizeof(hash);
515 log_verify_failure(hdr, vc);
516 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200517}
518
Jens Axboe3f199b02007-08-09 10:16:31 +0200519static unsigned int hweight8(unsigned int w)
520{
521 unsigned int res = w - ((w >> 1) & 0x55);
522
523 res = (res & 0x33) + ((res >> 2) & 0x33);
524 return (res + (res >> 4)) & 0x0F;
525}
526
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100527int verify_io_u_pattern(char *pattern, unsigned long pattern_size,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100528 char *buf, unsigned int len, unsigned int mod)
Shawn Lewisa944e332007-08-02 22:18:29 +0200529{
530 unsigned int i;
Shawn Lewisa944e332007-08-02 22:18:29 +0200531
532 for (i = 0; i < len; i++) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100533 if (buf[i] != pattern[mod]) {
Jens Axboe3f199b02007-08-09 10:16:31 +0200534 unsigned int bits;
535
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100536 bits = hweight8(buf[i] ^ pattern[mod]);
Jens Axboe3f199b02007-08-09 10:16:31 +0200537 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100538 buf[i], pattern[mod], bits);
Jens Axboe3f199b02007-08-09 10:16:31 +0200539 log_err("fio: bad pattern block offset %u\n", i);
Jens Axboe9fd18962009-05-19 10:35:38 +0200540 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200541 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200542 mod++;
543 if (mod == pattern_size)
544 mod = 0;
545 }
546
547 return 0;
548}
549
Jens Axboee8462bd2009-07-06 12:59:04 +0200550/*
551 * Push IO verification to a separate thread
552 */
553int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
554{
555 if (io_u->file)
556 put_file_log(td, io_u->file);
557
558 io_u->file = NULL;
559
560 pthread_mutex_lock(&td->io_u_lock);
Radha Ramachandran0c412142009-11-03 21:45:31 +0100561
562 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
563 td->cur_depth--;
564 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
565 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200566 flist_del(&io_u->list);
567 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100568 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200569 pthread_mutex_unlock(&td->io_u_lock);
570
571 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200572 return 0;
573}
574
Jens Axboe0d29de82010-09-01 13:54:15 +0200575static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
576{
577 static char zero_buf[1024];
578 unsigned int this_len, len;
579 int ret = 0;
580 void *p;
581
582 if (!td->o.trim_zero)
583 return 0;
584
585 len = io_u->buflen;
586 p = io_u->buf;
587 do {
588 this_len = sizeof(zero_buf);
589 if (this_len > len)
590 this_len = len;
591 if (memcmp(p, zero_buf, this_len)) {
592 ret = EILSEQ;
593 break;
594 }
595 len -= this_len;
596 p += this_len;
597 } while (len);
598
599 if (!ret)
600 return 0;
601
Jens Axboea917a8b2010-09-02 13:23:20 +0200602 log_err("trim: verify failed at file %s offset %llu, length %lu"
603 ", block offset %lu\n",
604 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200605 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200606 return ret;
607}
608
Jens Axboe36690c92007-03-26 10:23:34 +0200609int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200610{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200611 struct verify_header *hdr;
Shawn Lewisa944e332007-08-02 22:18:29 +0200612 unsigned int hdr_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200613 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200614 int ret;
615
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200616 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200617 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200618 if (io_u->flags & IO_U_F_TRIMMED) {
619 ret = verify_trimmed_io_u(td, io_u);
620 goto done;
621 }
Jens Axboe36690c92007-03-26 10:23:34 +0200622
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200623 hdr_inc = io_u->buflen;
Jens Axboea59e1702007-07-30 08:53:27 +0200624 if (td->o.verify_interval)
625 hdr_inc = td->o.verify_interval;
Jens Axboee29d1b72006-10-18 15:43:15 +0200626
Jens Axboea12a3b42007-08-09 10:20:54 +0200627 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100628 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
629 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200630 struct vcont vc = {
631 .io_u = io_u,
632 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100633 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200634 };
Jens Axboe936216f2010-06-18 13:44:11 +0200635
Jens Axboef3e6cb92010-06-18 14:48:43 +0200636 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200637 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200638
Shawn Lewisa944e332007-08-02 22:18:29 +0200639 hdr_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200640 if (td->o.verify_offset)
Shawn Lewisa944e332007-08-02 22:18:29 +0200641 memswp(p, p + td->o.verify_offset, hdr_size);
Jens Axboe95646102007-07-28 21:17:50 +0200642 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200643
Jens Axboe3f199b02007-08-09 10:16:31 +0200644 if (hdr->fio_magic != FIO_HDR_MAGIC) {
Jens Axboec9b44032010-06-18 14:46:06 +0200645 log_err("verify: bad magic header %x, wanted %x at file %s offset %llu, length %u\n",
646 hdr->fio_magic, FIO_HDR_MAGIC,
647 io_u->file->file_name,
648 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200649 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200650 }
651
Shawn Lewise28218f2008-01-16 11:01:33 +0100652 if (td->o.verify_pattern_bytes) {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100653 dprint(FD_VERIFY, "pattern verify io_u %p, len %u\n",
654 io_u, hdr->len);
Shawn Lewise28218f2008-01-16 11:01:33 +0100655 ret = verify_io_u_pattern(td->o.verify_pattern,
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100656 td->o.verify_pattern_bytes,
657 p + hdr_size,
658 hdr_inc - hdr_size,
659 hdr_size % td->o.verify_pattern_bytes);
Jens Axboec9b44032010-06-18 14:46:06 +0200660
661 if (ret) {
662 log_err("pattern: verify failed at file %s offset %llu, length %u\n",
663 io_u->file->file_name,
664 io_u->offset + hdr_num * hdr->len,
665 hdr->len);
666 }
667
Radha Ramachandrane92d3d72009-07-27 12:27:55 +0200668 /*
669 * Also verify the meta data, if applicable
670 */
671 if (hdr->verify_type == VERIFY_META)
Jens Axboe936216f2010-06-18 13:44:11 +0200672 ret |= verify_io_u_meta(hdr, td, &vc);
Shawn Lewise28218f2008-01-16 11:01:33 +0100673 continue;
674 }
675
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200676 switch (hdr->verify_type) {
677 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200678 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200679 break;
680 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200681 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200682 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200683 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200684 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200685 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200686 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200687 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200688 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200689 break;
690 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200691 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200692 break;
693 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200694 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200695 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200696 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200697 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200698 break;
699 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200700 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200701 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200702 case VERIFY_META:
Jens Axboe936216f2010-06-18 13:44:11 +0200703 ret = verify_io_u_meta(hdr, td, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200704 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200705 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200706 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200707 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200708 default:
709 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200710 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200711 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200712 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100713
Jens Axboe0d29de82010-09-01 13:54:15 +0200714done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200715 if (ret && td->o.verify_fatal)
716 td->terminate = 1;
717
Jens Axboea12a3b42007-08-09 10:20:54 +0200718 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200719}
720
Shawn Lewis7437ee82007-08-02 21:05:58 +0200721static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100722 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200723{
724 struct vhdr_meta *vh = hdr_priv(hdr);
725
726 vh->thread = td->thread_number;
727
728 vh->time_sec = io_u->start_time.tv_sec;
729 vh->time_usec = io_u->start_time.tv_usec;
730
731 vh->numberio = td->io_issues[DDIR_WRITE];
732
733 vh->offset = io_u->offset + header_num * td->o.verify_interval;
734}
735
Jens Axboecd14cc12007-07-30 10:59:33 +0200736static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
737{
Jens Axboe546dfd92007-07-30 12:23:05 +0200738 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200739 struct sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200740 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200741 };
742
743 sha512_init(&sha512_ctx);
744 sha512_update(&sha512_ctx, p, len);
745}
746
747static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
748{
Jens Axboe546dfd92007-07-30 12:23:05 +0200749 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200750 struct sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200751 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200752 };
753
754 sha256_init(&sha256_ctx);
755 sha256_update(&sha256_ctx, p, len);
756}
757
Jens Axboe7c353ce2009-08-09 22:40:33 +0200758static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
759{
760 struct vhdr_sha1 *vh = hdr_priv(hdr);
761 struct sha1_ctx sha1_ctx = {
762 .H = vh->sha1,
763 };
764
765 sha1_init(&sha1_ctx);
766 sha1_update(&sha1_ctx, p, len);
767}
768
Jens Axboe1e154bd2007-07-27 09:52:40 +0200769static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
770{
Jens Axboe546dfd92007-07-30 12:23:05 +0200771 struct vhdr_crc7 *vh = hdr_priv(hdr);
772
773 vh->crc7 = crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200774}
775
Jens Axboe969f7ed2007-07-27 09:07:17 +0200776static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
777{
Jens Axboe546dfd92007-07-30 12:23:05 +0200778 struct vhdr_crc16 *vh = hdr_priv(hdr);
779
780 vh->crc16 = crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200781}
782
Jens Axboee29d1b72006-10-18 15:43:15 +0200783static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
784{
Jens Axboe546dfd92007-07-30 12:23:05 +0200785 struct vhdr_crc32 *vh = hdr_priv(hdr);
786
787 vh->crc32 = crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200788}
789
Jens Axboebac39e02008-06-11 20:46:19 +0200790static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
791{
792 struct vhdr_crc32 *vh = hdr_priv(hdr);
793
Jens Axboe38455912008-08-04 15:35:26 +0200794 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
795 vh->crc32 = crc32c_intel(p, len);
796 else
797 vh->crc32 = crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200798}
799
Jens Axboed77a7af2007-07-27 15:35:06 +0200800static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
801{
Jens Axboe546dfd92007-07-30 12:23:05 +0200802 struct vhdr_crc64 *vh = hdr_priv(hdr);
803
804 vh->crc64 = crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200805}
806
Jens Axboee29d1b72006-10-18 15:43:15 +0200807static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
808{
Jens Axboe546dfd92007-07-30 12:23:05 +0200809 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200810 struct md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200811 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200812 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200813
Jens Axboe61f821f2007-07-30 10:18:06 +0200814 md5_init(&md5_ctx);
Jens Axboee29d1b72006-10-18 15:43:15 +0200815 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200816}
817
Jens Axboe7d9fb452011-01-11 22:16:49 +0100818static void populate_hdr(struct thread_data *td, struct io_u *io_u,
819 struct verify_header *hdr, unsigned int header_num,
820 unsigned int header_len)
821{
822 unsigned int data_len;
823 void *data, *p;
824
825 p = (void *) hdr;
826
827 hdr->fio_magic = FIO_HDR_MAGIC;
828 hdr->len = header_len;
829 hdr->verify_type = td->o.verify;
830 hdr->rand_seed = io_u->rand_seed;
831 data_len = header_len - hdr_size(hdr);
832
833 data = p + hdr_size(hdr);
834 switch (td->o.verify) {
835 case VERIFY_MD5:
836 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
837 io_u, hdr->len);
838 fill_md5(hdr, data, data_len);
839 break;
840 case VERIFY_CRC64:
841 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
842 io_u, hdr->len);
843 fill_crc64(hdr, data, data_len);
844 break;
845 case VERIFY_CRC32C:
846 case VERIFY_CRC32C_INTEL:
847 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
848 io_u, hdr->len);
849 fill_crc32c(hdr, data, data_len);
850 break;
851 case VERIFY_CRC32:
852 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
853 io_u, hdr->len);
854 fill_crc32(hdr, data, data_len);
855 break;
856 case VERIFY_CRC16:
857 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
858 io_u, hdr->len);
859 fill_crc16(hdr, data, data_len);
860 break;
861 case VERIFY_CRC7:
862 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
863 io_u, hdr->len);
864 fill_crc7(hdr, data, data_len);
865 break;
866 case VERIFY_SHA256:
867 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
868 io_u, hdr->len);
869 fill_sha256(hdr, data, data_len);
870 break;
871 case VERIFY_SHA512:
872 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
873 io_u, hdr->len);
874 fill_sha512(hdr, data, data_len);
875 break;
876 case VERIFY_META:
877 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
878 io_u, hdr->len);
879 fill_meta(hdr, td, io_u, header_num);
880 break;
881 case VERIFY_SHA1:
882 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
883 io_u, hdr->len);
884 fill_sha1(hdr, data, data_len);
885 break;
886 default:
887 log_err("fio: bad verify type: %d\n", td->o.verify);
888 assert(0);
889 }
890 if (td->o.verify_offset)
891 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
892}
893
Jens Axboee29d1b72006-10-18 15:43:15 +0200894/*
895 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100896 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200897 */
898void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
899{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200900 if (td->o.verify == VERIFY_NULL)
901 return;
902
Jens Axboec50ca7b2011-01-12 08:31:54 +0100903 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200904}
905
906int get_next_verify(struct thread_data *td, struct io_u *io_u)
907{
Jens Axboe8de8f042007-03-27 10:36:12 +0200908 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200909
Jens Axboed2d7fa52007-02-19 13:21:35 +0100910 /*
911 * this io_u is from a requeue, we already filled the offsets
912 */
913 if (io_u->file)
914 return 0;
915
Jens Axboe8de8f042007-03-27 10:36:12 +0200916 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
917 struct rb_node *n = rb_first(&td->io_hist_tree);
918
Jens Axboe4b878982007-03-26 09:32:22 +0200919 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200920 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200921 assert(ipo->flags & IP_F_ONRB);
922 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200923 } else if (!flist_empty(&td->io_hist_list)) {
924 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
925 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +0200926 assert(ipo->flags & IP_F_ONLIST);
927 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200928 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200929
Jens Axboe8de8f042007-03-27 10:36:12 +0200930 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200931 td->io_hist_len--;
932
Jens Axboee29d1b72006-10-18 15:43:15 +0200933 io_u->offset = ipo->offset;
934 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100935 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200936
Jens Axboe0d29de82010-09-01 13:54:15 +0200937 if (ipo->flags & IP_F_TRIMMED)
938 io_u->flags |= IO_U_F_TRIMMED;
939
Jens Axboed6aed792009-06-03 08:41:15 +0200940 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200941 int r = td_io_open_file(td, io_u->file);
942
Jens Axboebd6f78b2008-02-01 20:27:52 +0100943 if (r) {
944 dprint(FD_VERIFY, "failed file %s open\n",
945 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200946 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100947 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200948 }
949
950 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200951 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200952 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100953 io_u->xfer_buf = io_u->buf;
954 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200955
956 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +0200957 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100958 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200959 return 0;
960 }
961
Jens Axboebd6f78b2008-02-01 20:27:52 +0100962 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200963 return 1;
964}
Jens Axboee8462bd2009-07-06 12:59:04 +0200965
966static void *verify_async_thread(void *data)
967{
968 struct thread_data *td = data;
969 struct io_u *io_u;
970 int ret = 0;
971
972 if (td->o.verify_cpumask_set &&
973 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
974 log_err("fio: failed setting verify thread affinity\n");
975 goto done;
976 }
977
978 do {
Jens Axboee53ab272009-07-06 13:43:46 +0200979 FLIST_HEAD(list);
980
Jens Axboee8462bd2009-07-06 12:59:04 +0200981 read_barrier();
982 if (td->verify_thread_exit)
983 break;
984
985 pthread_mutex_lock(&td->io_u_lock);
986
987 while (flist_empty(&td->verify_list) &&
988 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +0200989 ret = pthread_cond_wait(&td->verify_cond,
990 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +0200991 if (ret) {
992 pthread_mutex_unlock(&td->io_u_lock);
993 break;
994 }
995 }
996
Jens Axboee53ab272009-07-06 13:43:46 +0200997 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +0200998 pthread_mutex_unlock(&td->io_u_lock);
999
Jens Axboee53ab272009-07-06 13:43:46 +02001000 if (flist_empty(&list))
1001 continue;
1002
1003 while (!flist_empty(&list)) {
1004 io_u = flist_entry(list.next, struct io_u, list);
1005 flist_del_init(&io_u->list);
1006
Jens Axboed561f2a2009-07-06 13:51:05 +02001007 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001008 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001009 if (!ret)
1010 continue;
1011 if (td->o.continue_on_error &&
1012 td_non_fatal_error(ret)) {
1013 update_error_count(td, ret);
1014 td_clear_error(td);
1015 ret = 0;
1016 }
Jens Axboee53ab272009-07-06 13:43:46 +02001017 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001018 } while (!ret);
1019
Jens Axboed561f2a2009-07-06 13:51:05 +02001020 if (ret) {
1021 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001022 if (td->o.verify_fatal)
1023 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001024 }
1025
Jens Axboee8462bd2009-07-06 12:59:04 +02001026done:
1027 pthread_mutex_lock(&td->io_u_lock);
1028 td->nr_verify_threads--;
1029 pthread_mutex_unlock(&td->io_u_lock);
1030
1031 pthread_cond_signal(&td->free_cond);
1032 return NULL;
1033}
1034
1035int verify_async_init(struct thread_data *td)
1036{
1037 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001038 pthread_attr_t attr;
1039
1040 pthread_attr_init(&attr);
1041 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001042
1043 td->verify_thread_exit = 0;
1044
1045 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1046 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001047 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001048 verify_async_thread, td);
1049 if (ret) {
1050 log_err("fio: async verify creation failed: %s\n",
1051 strerror(ret));
1052 break;
1053 }
1054 ret = pthread_detach(td->verify_threads[i]);
1055 if (ret) {
1056 log_err("fio: async verify thread detach failed: %s\n",
1057 strerror(ret));
1058 break;
1059 }
1060 td->nr_verify_threads++;
1061 }
1062
bart Van Assche304a47c2010-08-01 21:31:26 +02001063 pthread_attr_destroy(&attr);
1064
Jens Axboee8462bd2009-07-06 12:59:04 +02001065 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001066 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001067 td->verify_thread_exit = 1;
1068 write_barrier();
1069 pthread_cond_broadcast(&td->verify_cond);
1070 return 1;
1071 }
1072
1073 return 0;
1074}
1075
1076void verify_async_exit(struct thread_data *td)
1077{
1078 td->verify_thread_exit = 1;
1079 write_barrier();
1080 pthread_cond_broadcast(&td->verify_cond);
1081
1082 pthread_mutex_lock(&td->io_u_lock);
1083
1084 while (td->nr_verify_threads)
1085 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1086
1087 pthread_mutex_unlock(&td->io_u_lock);
1088 free(td->verify_threads);
1089 td->verify_threads = NULL;
1090}