blob: eb8da58e3f2bdfdabc905886b709f02eaab20919 [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 Axboecfbcd0d2011-01-14 14:49:20 +010075static unsigned int get_hdr_inc(struct thread_data *td, struct io_u *io_u)
76{
77 unsigned int hdr_inc;
78
79 hdr_inc = io_u->buflen;
80 if (td->o.verify_interval)
81 hdr_inc = td->o.verify_interval;
82
83 return hdr_inc;
84}
85
Jens Axboec50ca7b2011-01-12 08:31:54 +010086static void fill_pattern_headers(struct thread_data *td, struct io_u *io_u,
87 unsigned long seed, int use_seed)
88{
89 unsigned int hdr_inc, header_num;
90 struct verify_header *hdr;
91 void *p = io_u->buf;
92
93 fill_pattern(td, p, io_u->buflen, io_u, seed, use_seed);
94
Jens Axboecfbcd0d2011-01-14 14:49:20 +010095 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboec50ca7b2011-01-12 08:31:54 +010096 header_num = 0;
97 for (; p < io_u->buf + io_u->buflen; p += hdr_inc) {
98 hdr = p;
99 populate_hdr(td, io_u, hdr, header_num, hdr_inc);
100 header_num++;
101 }
102}
103
Jens Axboe4764aec2007-08-23 09:03:38 +0200104static void memswp(void *buf1, void *buf2, unsigned int len)
Shawn Lewis546a9142007-07-28 21:11:37 +0200105{
Shawn Lewisdee6de72007-08-02 22:17:52 +0200106 char swap[200];
107
108 assert(len <= sizeof(swap));
Jens Axboe90059d62007-07-30 09:33:12 +0200109
Shawn Lewis546a9142007-07-28 21:11:37 +0200110 memcpy(&swap, buf1, len);
111 memcpy(buf1, buf2, len);
112 memcpy(buf2, &swap, len);
113}
114
Jens Axboee29d1b72006-10-18 15:43:15 +0200115static void hexdump(void *buffer, int len)
116{
117 unsigned char *p = buffer;
118 int i;
119
120 for (i = 0; i < len; i++)
Jens Axboebfacf382010-06-18 14:29:52 +0200121 log_err("%02x", p[i]);
122 log_err("\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200123}
124
Jens Axboed9f2caf2007-07-28 21:22:03 +0200125/*
Jens Axboe87677832007-07-30 12:08:14 +0200126 * Prepare for seperation of verify_header and checksum header
127 */
Jens Axboe546dfd92007-07-30 12:23:05 +0200128static inline unsigned int __hdr_size(int verify_type)
Jens Axboe87677832007-07-30 12:08:14 +0200129{
Bruce Cran03e20d62011-01-02 20:14:54 +0100130 unsigned int len = 0;
Jens Axboe87677832007-07-30 12:08:14 +0200131
Jens Axboe546dfd92007-07-30 12:23:05 +0200132 switch (verify_type) {
133 case VERIFY_NONE:
134 case VERIFY_NULL:
135 len = 0;
136 break;
137 case VERIFY_MD5:
138 len = sizeof(struct vhdr_md5);
139 break;
140 case VERIFY_CRC64:
141 len = sizeof(struct vhdr_crc64);
142 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200143 case VERIFY_CRC32C:
Jens Axboe546dfd92007-07-30 12:23:05 +0200144 case VERIFY_CRC32:
Jens Axboe38455912008-08-04 15:35:26 +0200145 case VERIFY_CRC32C_INTEL:
Jens Axboe546dfd92007-07-30 12:23:05 +0200146 len = sizeof(struct vhdr_crc32);
147 break;
148 case VERIFY_CRC16:
149 len = sizeof(struct vhdr_crc16);
150 break;
151 case VERIFY_CRC7:
152 len = sizeof(struct vhdr_crc7);
153 break;
154 case VERIFY_SHA256:
155 len = sizeof(struct vhdr_sha256);
156 break;
157 case VERIFY_SHA512:
158 len = sizeof(struct vhdr_sha512);
159 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200160 case VERIFY_META:
161 len = sizeof(struct vhdr_meta);
162 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200163 case VERIFY_SHA1:
164 len = sizeof(struct vhdr_sha1);
165 break;
Jens Axboe546dfd92007-07-30 12:23:05 +0200166 default:
167 log_err("fio: unknown verify header!\n");
168 assert(0);
169 }
170
171 return len + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200172}
173
174static inline unsigned int hdr_size(struct verify_header *hdr)
175{
Jens Axboe546dfd92007-07-30 12:23:05 +0200176 return __hdr_size(hdr->verify_type);
177}
178
179static void *hdr_priv(struct verify_header *hdr)
180{
181 void *priv = hdr;
182
183 return priv + sizeof(struct verify_header);
Jens Axboe87677832007-07-30 12:08:14 +0200184}
185
186/*
Jens Axboe936216f2010-06-18 13:44:11 +0200187 * Verify container, pass info to verify handlers and allow them to
188 * pass info back in case of error
189 */
190struct vcont {
191 /*
192 * Input
193 */
194 struct io_u *io_u;
195 unsigned int hdr_num;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100196 struct thread_data *td;
Jens Axboe936216f2010-06-18 13:44:11 +0200197
198 /*
199 * Output, only valid in case of error
200 */
Jens Axboebfacf382010-06-18 14:29:52 +0200201 const char *name;
202 void *good_crc;
203 void *bad_crc;
Jens Axboe936216f2010-06-18 13:44:11 +0200204 unsigned int crc_len;
205};
206
Jens Axboec50ca7b2011-01-12 08:31:54 +0100207static void dump_buf(char *buf, unsigned int len, unsigned long long offset,
208 const char *type, struct fio_file *f)
Jens Axboe7d9fb452011-01-11 22:16:49 +0100209{
Jens Axboe6f260b32011-01-13 18:57:54 +0100210 char *ptr, fname[256];
Jens Axboe7d9fb452011-01-11 22:16:49 +0100211 int ret, fd;
212
Jens Axboe6f260b32011-01-13 18:57:54 +0100213 ptr = strdup(f->file_name);
214 strcpy(fname, basename(ptr));
Jens Axboec50ca7b2011-01-12 08:31:54 +0100215
216 sprintf(fname + strlen(fname), ".%llu.%s", offset, type);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100217
218 fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 0644);
219 if (fd < 0) {
220 perror("open verify buf file");
221 return;
222 }
223
224 while (len) {
225 ret = write(fd, buf, len);
226 if (!ret)
227 break;
228 else if (ret < 0) {
229 perror("write verify buf file");
230 break;
231 }
232 len -= ret;
233 buf += ret;
234 }
235
236 close(fd);
Jens Axboec50ca7b2011-01-12 08:31:54 +0100237 log_err(" %s data dumped as %s\n", type, fname);
Jens Axboe6f260b32011-01-13 18:57:54 +0100238 free(ptr);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100239}
240
Jens Axboec50ca7b2011-01-12 08:31:54 +0100241/*
242 * Dump the contents of the read block and re-generate the correct data
243 * and dump that too.
244 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100245static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc)
246{
247 struct thread_data *td = vc->td;
248 struct io_u *io_u = vc->io_u;
249 unsigned long hdr_offset;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100250 struct io_u dummy;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100251 void *buf;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100252
Jens Axboec50ca7b2011-01-12 08:31:54 +0100253 /*
254 * Dump the contents we just read off disk
255 */
Jens Axboe7d9fb452011-01-11 22:16:49 +0100256 hdr_offset = vc->hdr_num * hdr->len;
257
Jens Axboec50ca7b2011-01-12 08:31:54 +0100258 dump_buf(io_u->buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
259 "received", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100260
Jens Axboec50ca7b2011-01-12 08:31:54 +0100261 /*
262 * Allocate a new buf and re-generate the original data
263 */
264 buf = malloc(io_u->buflen);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100265 dummy = *io_u;
Jens Axboec50ca7b2011-01-12 08:31:54 +0100266 dummy.buf = buf;
Jens Axboe4aae38a2011-01-12 08:59:12 +0100267 dummy.rand_seed = hdr->rand_seed;
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100268 dummy.buf_filled_len = 0;
Jens Axboe7d9fb452011-01-11 22:16:49 +0100269
Jens Axboec50ca7b2011-01-12 08:31:54 +0100270 fill_pattern_headers(td, &dummy, hdr->rand_seed, 1);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100271
Jens Axboec50ca7b2011-01-12 08:31:54 +0100272 dump_buf(buf + hdr_offset, hdr->len, io_u->offset + hdr_offset,
273 "expected", vc->io_u->file);
Jens Axboe7d9fb452011-01-11 22:16:49 +0100274 free(buf);
275}
276
Jens Axboebfacf382010-06-18 14:29:52 +0200277static void log_verify_failure(struct verify_header *hdr, struct vcont *vc)
278{
279 unsigned long long offset;
280
281 offset = vc->io_u->offset;
282 offset += vc->hdr_num * hdr->len;
Jens Axboe32c17ad2010-06-18 14:32:21 +0200283 log_err("%.8s: verify failed at file %s offset %llu, length %u\n",
284 vc->name, vc->io_u->file->file_name, offset, hdr->len);
Jens Axboebfacf382010-06-18 14:29:52 +0200285
286 if (vc->good_crc && vc->bad_crc) {
287 log_err(" Expected CRC: ");
288 hexdump(vc->good_crc, vc->crc_len);
289 log_err(" Received CRC: ");
290 hexdump(vc->bad_crc, vc->crc_len);
291 }
Jens Axboe7d9fb452011-01-11 22:16:49 +0100292
293 dump_verify_buffers(hdr, vc);
Jens Axboebfacf382010-06-18 14:29:52 +0200294}
295
Jens Axboe936216f2010-06-18 13:44:11 +0200296/*
Jens Axboed9f2caf2007-07-28 21:22:03 +0200297 * Return data area 'header_num'
298 */
Jens Axboe936216f2010-06-18 13:44:11 +0200299static inline void *io_u_verify_off(struct verify_header *hdr, struct vcont *vc)
Jens Axboed9f2caf2007-07-28 21:22:03 +0200300{
Jens Axboe936216f2010-06-18 13:44:11 +0200301 return vc->io_u->buf + vc->hdr_num * hdr->len + hdr_size(hdr);
Jens Axboed9f2caf2007-07-28 21:22:03 +0200302}
303
Shawn Lewis7437ee82007-08-02 21:05:58 +0200304static int verify_io_u_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe936216f2010-06-18 13:44:11 +0200305 struct vcont *vc)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200306{
307 struct vhdr_meta *vh = hdr_priv(hdr);
Jens Axboe936216f2010-06-18 13:44:11 +0200308 struct io_u *io_u = vc->io_u;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200309
Jens Axboebd6f78b2008-02-01 20:27:52 +0100310 dprint(FD_VERIFY, "meta verify io_u %p, len %u\n", io_u, hdr->len);
311
Jens Axboebfacf382010-06-18 14:29:52 +0200312 if (vh->offset == io_u->offset + vc->hdr_num * td->o.verify_interval)
313 return 0;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200314
Jens Axboebfacf382010-06-18 14:29:52 +0200315 vc->name = "meta";
316 log_verify_failure(hdr, vc);
317 return EILSEQ;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200318}
319
Jens Axboe936216f2010-06-18 13:44:11 +0200320static int verify_io_u_sha512(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200321{
Jens Axboe936216f2010-06-18 13:44:11 +0200322 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200323 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200324 uint8_t sha512[128];
325 struct sha512_ctx sha512_ctx = {
326 .buf = sha512,
327 };
328
Jens Axboe936216f2010-06-18 13:44:11 +0200329 dprint(FD_VERIFY, "sha512 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100330
Jens Axboecd14cc12007-07-30 10:59:33 +0200331 sha512_init(&sha512_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200332 sha512_update(&sha512_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200333
Jens Axboebfacf382010-06-18 14:29:52 +0200334 if (!memcmp(vh->sha512, sha512_ctx.buf, sizeof(sha512)))
335 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200336
Jens Axboebfacf382010-06-18 14:29:52 +0200337 vc->name = "sha512";
338 vc->good_crc = vh->sha512;
339 vc->bad_crc = sha512_ctx.buf;
340 vc->crc_len = sizeof(vh->sha512);
341 log_verify_failure(hdr, vc);
342 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200343}
344
Jens Axboe936216f2010-06-18 13:44:11 +0200345static int verify_io_u_sha256(struct verify_header *hdr, struct vcont *vc)
Jens Axboecd14cc12007-07-30 10:59:33 +0200346{
Jens Axboe936216f2010-06-18 13:44:11 +0200347 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200348 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboebc77f562010-02-23 10:36:21 +0100349 uint8_t sha256[64];
Jens Axboecd14cc12007-07-30 10:59:33 +0200350 struct sha256_ctx sha256_ctx = {
351 .buf = sha256,
352 };
353
Jens Axboe936216f2010-06-18 13:44:11 +0200354 dprint(FD_VERIFY, "sha256 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100355
Jens Axboecd14cc12007-07-30 10:59:33 +0200356 sha256_init(&sha256_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200357 sha256_update(&sha256_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboecd14cc12007-07-30 10:59:33 +0200358
Jens Axboebfacf382010-06-18 14:29:52 +0200359 if (!memcmp(vh->sha256, sha256_ctx.buf, sizeof(sha256)))
360 return 0;
Jens Axboecd14cc12007-07-30 10:59:33 +0200361
Jens Axboebfacf382010-06-18 14:29:52 +0200362 vc->name = "sha256";
363 vc->good_crc = vh->sha256;
364 vc->bad_crc = sha256_ctx.buf;
365 vc->crc_len = sizeof(vh->sha256);
366 log_verify_failure(hdr, vc);
367 return EILSEQ;
Jens Axboecd14cc12007-07-30 10:59:33 +0200368}
369
Jens Axboe936216f2010-06-18 13:44:11 +0200370static int verify_io_u_sha1(struct verify_header *hdr, struct vcont *vc)
Jens Axboe7c353ce2009-08-09 22:40:33 +0200371{
Jens Axboe936216f2010-06-18 13:44:11 +0200372 void *p = io_u_verify_off(hdr, vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200373 struct vhdr_sha1 *vh = hdr_priv(hdr);
374 uint32_t sha1[5];
375 struct sha1_ctx sha1_ctx = {
376 .H = sha1,
377 };
378
Jens Axboe936216f2010-06-18 13:44:11 +0200379 dprint(FD_VERIFY, "sha1 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200380
381 sha1_init(&sha1_ctx);
382 sha1_update(&sha1_ctx, p, hdr->len - hdr_size(hdr));
383
Jens Axboebfacf382010-06-18 14:29:52 +0200384 if (!memcmp(vh->sha1, sha1_ctx.H, sizeof(sha1)))
385 return 0;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200386
Jens Axboebfacf382010-06-18 14:29:52 +0200387 vc->name = "sha1";
388 vc->good_crc = vh->sha1;
389 vc->bad_crc = sha1_ctx.H;
390 vc->crc_len = sizeof(vh->sha1);
391 log_verify_failure(hdr, vc);
392 return EILSEQ;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200393}
394
Jens Axboe936216f2010-06-18 13:44:11 +0200395static int verify_io_u_crc7(struct verify_header *hdr, struct vcont *vc)
Jens Axboe1e154bd2007-07-27 09:52:40 +0200396{
Jens Axboe936216f2010-06-18 13:44:11 +0200397 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200398 struct vhdr_crc7 *vh = hdr_priv(hdr);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200399 unsigned char c;
400
Jens Axboe936216f2010-06-18 13:44:11 +0200401 dprint(FD_VERIFY, "crc7 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100402
Jens Axboe87677832007-07-30 12:08:14 +0200403 c = crc7(p, hdr->len - hdr_size(hdr));
Jens Axboe1e154bd2007-07-27 09:52:40 +0200404
Jens Axboebfacf382010-06-18 14:29:52 +0200405 if (c == vh->crc7)
406 return 0;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200407
Jens Axboebfacf382010-06-18 14:29:52 +0200408 vc->name = "crc7";
409 vc->good_crc = &vh->crc7;
410 vc->bad_crc = &c;
411 vc->crc_len = 1;
412 log_verify_failure(hdr, vc);
413 return EILSEQ;
Jens Axboe1e154bd2007-07-27 09:52:40 +0200414}
415
Jens Axboe936216f2010-06-18 13:44:11 +0200416static int verify_io_u_crc16(struct verify_header *hdr, struct vcont *vc)
Jens Axboe969f7ed2007-07-27 09:07:17 +0200417{
Jens Axboe936216f2010-06-18 13:44:11 +0200418 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200419 struct vhdr_crc16 *vh = hdr_priv(hdr);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200420 unsigned short c;
421
Jens Axboe936216f2010-06-18 13:44:11 +0200422 dprint(FD_VERIFY, "crc16 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100423
Jens Axboe87677832007-07-30 12:08:14 +0200424 c = crc16(p, hdr->len - hdr_size(hdr));
Jens Axboe969f7ed2007-07-27 09:07:17 +0200425
Jens Axboebfacf382010-06-18 14:29:52 +0200426 if (c == vh->crc16)
427 return 0;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200428
Jens Axboebfacf382010-06-18 14:29:52 +0200429 vc->name = "crc16";
430 vc->good_crc = &vh->crc16;
431 vc->bad_crc = &c;
432 vc->crc_len = 2;
433 log_verify_failure(hdr, vc);
434 return EILSEQ;
Jens Axboe969f7ed2007-07-27 09:07:17 +0200435}
436
Jens Axboe936216f2010-06-18 13:44:11 +0200437static int verify_io_u_crc64(struct verify_header *hdr, struct vcont *vc)
Jens Axboed77a7af2007-07-27 15:35:06 +0200438{
Jens Axboe936216f2010-06-18 13:44:11 +0200439 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200440 struct vhdr_crc64 *vh = hdr_priv(hdr);
Jens Axboed77a7af2007-07-27 15:35:06 +0200441 unsigned long long c;
442
Jens Axboe936216f2010-06-18 13:44:11 +0200443 dprint(FD_VERIFY, "crc64 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100444
Jens Axboe87677832007-07-30 12:08:14 +0200445 c = crc64(p, hdr->len - hdr_size(hdr));
Jens Axboed77a7af2007-07-27 15:35:06 +0200446
Jens Axboebfacf382010-06-18 14:29:52 +0200447 if (c == vh->crc64)
448 return 0;
Jens Axboed77a7af2007-07-27 15:35:06 +0200449
Jens Axboebfacf382010-06-18 14:29:52 +0200450 vc->name = "crc64";
451 vc->good_crc = &vh->crc64;
452 vc->bad_crc = &c;
453 vc->crc_len = 8;
454 log_verify_failure(hdr, vc);
455 return EILSEQ;
Jens Axboed77a7af2007-07-27 15:35:06 +0200456}
457
Jens Axboe936216f2010-06-18 13:44:11 +0200458static int verify_io_u_crc32(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200459{
Jens Axboe936216f2010-06-18 13:44:11 +0200460 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200461 struct vhdr_crc32 *vh = hdr_priv(hdr);
462 uint32_t c;
Jens Axboee29d1b72006-10-18 15:43:15 +0200463
Jens Axboe936216f2010-06-18 13:44:11 +0200464 dprint(FD_VERIFY, "crc32 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100465
Jens Axboe87677832007-07-30 12:08:14 +0200466 c = crc32(p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200467
Jens Axboebfacf382010-06-18 14:29:52 +0200468 if (c == vh->crc32)
469 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200470
Jens Axboebfacf382010-06-18 14:29:52 +0200471 vc->name = "crc32";
472 vc->good_crc = &vh->crc32;
473 vc->bad_crc = &c;
474 vc->crc_len = 4;
475 log_verify_failure(hdr, vc);
476 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200477}
478
Jens Axboe936216f2010-06-18 13:44:11 +0200479static int verify_io_u_crc32c(struct verify_header *hdr, struct vcont *vc)
Jens Axboebac39e02008-06-11 20:46:19 +0200480{
Jens Axboe936216f2010-06-18 13:44:11 +0200481 void *p = io_u_verify_off(hdr, vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200482 struct vhdr_crc32 *vh = hdr_priv(hdr);
483 uint32_t c;
484
Jens Axboe936216f2010-06-18 13:44:11 +0200485 dprint(FD_VERIFY, "crc32c verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebac39e02008-06-11 20:46:19 +0200486
Jens Axboe38455912008-08-04 15:35:26 +0200487 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
488 c = crc32c_intel(p, hdr->len - hdr_size(hdr));
489 else
490 c = crc32c(p, hdr->len - hdr_size(hdr));
Jens Axboebac39e02008-06-11 20:46:19 +0200491
Jens Axboebfacf382010-06-18 14:29:52 +0200492 if (c == vh->crc32)
493 return 0;
Jens Axboebac39e02008-06-11 20:46:19 +0200494
Jens Axboebfacf382010-06-18 14:29:52 +0200495 vc->name = "crc32c";
496 vc->good_crc = &vh->crc32;
497 vc->bad_crc = &c;
498 vc->crc_len = 4;
499 log_verify_failure(hdr, vc);
500 return EILSEQ;
Jens Axboebac39e02008-06-11 20:46:19 +0200501}
502
Jens Axboe936216f2010-06-18 13:44:11 +0200503static int verify_io_u_md5(struct verify_header *hdr, struct vcont *vc)
Jens Axboee29d1b72006-10-18 15:43:15 +0200504{
Jens Axboe936216f2010-06-18 13:44:11 +0200505 void *p = io_u_verify_off(hdr, vc);
Jens Axboe546dfd92007-07-30 12:23:05 +0200506 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200507 uint32_t hash[MD5_HASH_WORDS];
508 struct md5_ctx md5_ctx = {
509 .hash = hash,
510 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200511
Jens Axboe936216f2010-06-18 13:44:11 +0200512 dprint(FD_VERIFY, "md5 verify io_u %p, len %u\n", vc->io_u, hdr->len);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100513
Jens Axboe61f821f2007-07-30 10:18:06 +0200514 md5_init(&md5_ctx);
Jens Axboe87677832007-07-30 12:08:14 +0200515 md5_update(&md5_ctx, p, hdr->len - hdr_size(hdr));
Jens Axboee29d1b72006-10-18 15:43:15 +0200516
Jens Axboebfacf382010-06-18 14:29:52 +0200517 if (!memcmp(vh->md5_digest, md5_ctx.hash, sizeof(hash)))
518 return 0;
Jens Axboee29d1b72006-10-18 15:43:15 +0200519
Jens Axboebfacf382010-06-18 14:29:52 +0200520 vc->name = "md5";
521 vc->good_crc = vh->md5_digest;
522 vc->bad_crc = md5_ctx.hash;
523 vc->crc_len = sizeof(hash);
524 log_verify_failure(hdr, vc);
525 return EILSEQ;
Jens Axboee29d1b72006-10-18 15:43:15 +0200526}
527
Jens Axboe3f199b02007-08-09 10:16:31 +0200528static unsigned int hweight8(unsigned int w)
529{
530 unsigned int res = w - ((w >> 1) & 0x55);
531
532 res = (res & 0x33) + ((res >> 2) & 0x33);
533 return (res + (res >> 4)) & 0x0F;
534}
535
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100536int verify_io_u_pattern(struct verify_header *hdr, struct vcont *vc)
Shawn Lewisa944e332007-08-02 22:18:29 +0200537{
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100538 struct thread_data *td = vc->td;
539 struct io_u *io_u = vc->io_u;
540 char *pattern = td->o.verify_pattern;
541 unsigned long pattern_size = td->o.verify_pattern_bytes;
542 unsigned int hdr_size = __hdr_size(td->o.verify);
543 char *buf = (void *) hdr + hdr_size;
544 unsigned int hdr_inc = get_hdr_inc(td, io_u);
545 unsigned int len = hdr_inc - hdr_size;
546 unsigned int mod = hdr_size % pattern_size;
Shawn Lewisa944e332007-08-02 22:18:29 +0200547 unsigned int i;
Shawn Lewisa944e332007-08-02 22:18:29 +0200548
549 for (i = 0; i < len; i++) {
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100550 if (buf[i] != pattern[mod]) {
Jens Axboe3f199b02007-08-09 10:16:31 +0200551 unsigned int bits;
552
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100553 bits = hweight8(buf[i] ^ pattern[mod]);
Jens Axboe3f199b02007-08-09 10:16:31 +0200554 log_err("fio: got pattern %x, wanted %x. Bad bits %d\n",
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100555 buf[i], pattern[mod], bits);
Jens Axboe3f199b02007-08-09 10:16:31 +0200556 log_err("fio: bad pattern block offset %u\n", i);
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100557 dump_verify_buffers(hdr, vc);
Jens Axboe9fd18962009-05-19 10:35:38 +0200558 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200559 }
Shawn Lewisa944e332007-08-02 22:18:29 +0200560 mod++;
561 if (mod == pattern_size)
562 mod = 0;
563 }
564
565 return 0;
566}
567
Jens Axboee8462bd2009-07-06 12:59:04 +0200568/*
569 * Push IO verification to a separate thread
570 */
571int verify_io_u_async(struct thread_data *td, struct io_u *io_u)
572{
573 if (io_u->file)
574 put_file_log(td, io_u->file);
575
576 io_u->file = NULL;
577
578 pthread_mutex_lock(&td->io_u_lock);
Radha Ramachandran0c412142009-11-03 21:45:31 +0100579
580 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
581 td->cur_depth--;
582 io_u->flags &= ~IO_U_F_IN_CUR_DEPTH;
583 }
Jens Axboee8462bd2009-07-06 12:59:04 +0200584 flist_del(&io_u->list);
585 flist_add_tail(&io_u->list, &td->verify_list);
Jens Axboe2ecc1b52009-11-04 20:58:09 +0100586 io_u->flags |= IO_U_F_FREE_DEF;
Jens Axboee8462bd2009-07-06 12:59:04 +0200587 pthread_mutex_unlock(&td->io_u_lock);
588
589 pthread_cond_signal(&td->verify_cond);
Jens Axboee8462bd2009-07-06 12:59:04 +0200590 return 0;
591}
592
Jens Axboe0d29de82010-09-01 13:54:15 +0200593static int verify_trimmed_io_u(struct thread_data *td, struct io_u *io_u)
594{
595 static char zero_buf[1024];
596 unsigned int this_len, len;
597 int ret = 0;
598 void *p;
599
600 if (!td->o.trim_zero)
601 return 0;
602
603 len = io_u->buflen;
604 p = io_u->buf;
605 do {
606 this_len = sizeof(zero_buf);
607 if (this_len > len)
608 this_len = len;
609 if (memcmp(p, zero_buf, this_len)) {
610 ret = EILSEQ;
611 break;
612 }
613 len -= this_len;
614 p += this_len;
615 } while (len);
616
617 if (!ret)
618 return 0;
619
Jens Axboea917a8b2010-09-02 13:23:20 +0200620 log_err("trim: verify failed at file %s offset %llu, length %lu"
621 ", block offset %lu\n",
622 io_u->file->file_name, io_u->offset, io_u->buflen,
Jens Axboe2f681242010-10-21 08:15:59 +0200623 (unsigned long) (p - io_u->buf));
Jens Axboe0d29de82010-09-01 13:54:15 +0200624 return ret;
625}
626
Jens Axboe36690c92007-03-26 10:23:34 +0200627int verify_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboee29d1b72006-10-18 15:43:15 +0200628{
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200629 struct verify_header *hdr;
Shawn Lewisa944e332007-08-02 22:18:29 +0200630 unsigned int hdr_size, hdr_inc, hdr_num = 0;
Jens Axboe95646102007-07-28 21:17:50 +0200631 void *p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200632 int ret;
633
Shawn Lewis1dcc0492007-07-27 08:02:45 +0200634 if (td->o.verify == VERIFY_NULL || io_u->ddir != DDIR_READ)
Jens Axboe36690c92007-03-26 10:23:34 +0200635 return 0;
Jens Axboe0d29de82010-09-01 13:54:15 +0200636 if (io_u->flags & IO_U_F_TRIMMED) {
637 ret = verify_trimmed_io_u(td, io_u);
638 goto done;
639 }
Jens Axboe36690c92007-03-26 10:23:34 +0200640
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100641 hdr_inc = get_hdr_inc(td, io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200642
Jens Axboea12a3b42007-08-09 10:20:54 +0200643 ret = 0;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100644 for (p = io_u->buf; p < io_u->buf + io_u->buflen;
645 p += hdr_inc, hdr_num++) {
Jens Axboebfacf382010-06-18 14:29:52 +0200646 struct vcont vc = {
647 .io_u = io_u,
648 .hdr_num = hdr_num,
Jens Axboe7d9fb452011-01-11 22:16:49 +0100649 .td = td,
Jens Axboebfacf382010-06-18 14:29:52 +0200650 };
Jens Axboe936216f2010-06-18 13:44:11 +0200651
Jens Axboef3e6cb92010-06-18 14:48:43 +0200652 if (ret && td->o.verify_fatal)
Jens Axboea12a3b42007-08-09 10:20:54 +0200653 break;
Jens Axboef3e6cb92010-06-18 14:48:43 +0200654
Shawn Lewisa944e332007-08-02 22:18:29 +0200655 hdr_size = __hdr_size(td->o.verify);
Jens Axboea59e1702007-07-30 08:53:27 +0200656 if (td->o.verify_offset)
Shawn Lewisa944e332007-08-02 22:18:29 +0200657 memswp(p, p + td->o.verify_offset, hdr_size);
Jens Axboe95646102007-07-28 21:17:50 +0200658 hdr = p;
Jens Axboee29d1b72006-10-18 15:43:15 +0200659
Jens Axboe3f199b02007-08-09 10:16:31 +0200660 if (hdr->fio_magic != FIO_HDR_MAGIC) {
Jens Axboec9b44032010-06-18 14:46:06 +0200661 log_err("verify: bad magic header %x, wanted %x at file %s offset %llu, length %u\n",
662 hdr->fio_magic, FIO_HDR_MAGIC,
663 io_u->file->file_name,
664 io_u->offset + hdr_num * hdr->len, hdr->len);
Jens Axboe9fd18962009-05-19 10:35:38 +0200665 return EILSEQ;
Jens Axboe3f199b02007-08-09 10:16:31 +0200666 }
667
Shawn Lewise28218f2008-01-16 11:01:33 +0100668 if (td->o.verify_pattern_bytes) {
Jens Axboebd6f78b2008-02-01 20:27:52 +0100669 dprint(FD_VERIFY, "pattern verify io_u %p, len %u\n",
670 io_u, hdr->len);
Jens Axboecfbcd0d2011-01-14 14:49:20 +0100671 ret = verify_io_u_pattern(hdr, &vc);
Jens Axboec9b44032010-06-18 14:46:06 +0200672 if (ret) {
673 log_err("pattern: verify failed at file %s offset %llu, length %u\n",
674 io_u->file->file_name,
675 io_u->offset + hdr_num * hdr->len,
676 hdr->len);
677 }
678
Radha Ramachandrane92d3d72009-07-27 12:27:55 +0200679 /*
680 * Also verify the meta data, if applicable
681 */
682 if (hdr->verify_type == VERIFY_META)
Jens Axboe936216f2010-06-18 13:44:11 +0200683 ret |= verify_io_u_meta(hdr, td, &vc);
Shawn Lewise28218f2008-01-16 11:01:33 +0100684 continue;
685 }
686
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200687 switch (hdr->verify_type) {
688 case VERIFY_MD5:
Jens Axboe936216f2010-06-18 13:44:11 +0200689 ret = verify_io_u_md5(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200690 break;
691 case VERIFY_CRC64:
Jens Axboe936216f2010-06-18 13:44:11 +0200692 ret = verify_io_u_crc64(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200693 break;
Jens Axboebac39e02008-06-11 20:46:19 +0200694 case VERIFY_CRC32C:
Jens Axboe38455912008-08-04 15:35:26 +0200695 case VERIFY_CRC32C_INTEL:
Jens Axboe936216f2010-06-18 13:44:11 +0200696 ret = verify_io_u_crc32c(hdr, &vc);
Jens Axboebac39e02008-06-11 20:46:19 +0200697 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200698 case VERIFY_CRC32:
Jens Axboe936216f2010-06-18 13:44:11 +0200699 ret = verify_io_u_crc32(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200700 break;
701 case VERIFY_CRC16:
Jens Axboe936216f2010-06-18 13:44:11 +0200702 ret = verify_io_u_crc16(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200703 break;
704 case VERIFY_CRC7:
Jens Axboe936216f2010-06-18 13:44:11 +0200705 ret = verify_io_u_crc7(hdr, &vc);
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200706 break;
Jens Axboecd14cc12007-07-30 10:59:33 +0200707 case VERIFY_SHA256:
Jens Axboe936216f2010-06-18 13:44:11 +0200708 ret = verify_io_u_sha256(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200709 break;
710 case VERIFY_SHA512:
Jens Axboe936216f2010-06-18 13:44:11 +0200711 ret = verify_io_u_sha512(hdr, &vc);
Jens Axboecd14cc12007-07-30 10:59:33 +0200712 break;
Shawn Lewis7437ee82007-08-02 21:05:58 +0200713 case VERIFY_META:
Jens Axboe936216f2010-06-18 13:44:11 +0200714 ret = verify_io_u_meta(hdr, td, &vc);
Shawn Lewis7437ee82007-08-02 21:05:58 +0200715 break;
Jens Axboe7c353ce2009-08-09 22:40:33 +0200716 case VERIFY_SHA1:
Jens Axboe936216f2010-06-18 13:44:11 +0200717 ret = verify_io_u_sha1(hdr, &vc);
Jens Axboe7c353ce2009-08-09 22:40:33 +0200718 break;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200719 default:
720 log_err("Bad verify type %u\n", hdr->verify_type);
Jens Axboed16d4e02007-09-06 16:16:44 +0200721 ret = EINVAL;
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200722 }
Shawn Lewis3f9f4e22007-07-28 21:10:37 +0200723 }
Jens Axboea7dfe862007-03-12 10:05:08 +0100724
Jens Axboe0d29de82010-09-01 13:54:15 +0200725done:
Jens Axboef3e6cb92010-06-18 14:48:43 +0200726 if (ret && td->o.verify_fatal)
727 td->terminate = 1;
728
Jens Axboea12a3b42007-08-09 10:20:54 +0200729 return ret;
Jens Axboee29d1b72006-10-18 15:43:15 +0200730}
731
Shawn Lewis7437ee82007-08-02 21:05:58 +0200732static void fill_meta(struct verify_header *hdr, struct thread_data *td,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100733 struct io_u *io_u, unsigned int header_num)
Shawn Lewis7437ee82007-08-02 21:05:58 +0200734{
735 struct vhdr_meta *vh = hdr_priv(hdr);
736
737 vh->thread = td->thread_number;
738
739 vh->time_sec = io_u->start_time.tv_sec;
740 vh->time_usec = io_u->start_time.tv_usec;
741
742 vh->numberio = td->io_issues[DDIR_WRITE];
743
744 vh->offset = io_u->offset + header_num * td->o.verify_interval;
745}
746
Jens Axboecd14cc12007-07-30 10:59:33 +0200747static void fill_sha512(struct verify_header *hdr, void *p, unsigned int len)
748{
Jens Axboe546dfd92007-07-30 12:23:05 +0200749 struct vhdr_sha512 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200750 struct sha512_ctx sha512_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200751 .buf = vh->sha512,
Jens Axboecd14cc12007-07-30 10:59:33 +0200752 };
753
754 sha512_init(&sha512_ctx);
755 sha512_update(&sha512_ctx, p, len);
756}
757
758static void fill_sha256(struct verify_header *hdr, void *p, unsigned int len)
759{
Jens Axboe546dfd92007-07-30 12:23:05 +0200760 struct vhdr_sha256 *vh = hdr_priv(hdr);
Jens Axboecd14cc12007-07-30 10:59:33 +0200761 struct sha256_ctx sha256_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200762 .buf = vh->sha256,
Jens Axboecd14cc12007-07-30 10:59:33 +0200763 };
764
765 sha256_init(&sha256_ctx);
766 sha256_update(&sha256_ctx, p, len);
767}
768
Jens Axboe7c353ce2009-08-09 22:40:33 +0200769static void fill_sha1(struct verify_header *hdr, void *p, unsigned int len)
770{
771 struct vhdr_sha1 *vh = hdr_priv(hdr);
772 struct sha1_ctx sha1_ctx = {
773 .H = vh->sha1,
774 };
775
776 sha1_init(&sha1_ctx);
777 sha1_update(&sha1_ctx, p, len);
778}
779
Jens Axboe1e154bd2007-07-27 09:52:40 +0200780static void fill_crc7(struct verify_header *hdr, void *p, unsigned int len)
781{
Jens Axboe546dfd92007-07-30 12:23:05 +0200782 struct vhdr_crc7 *vh = hdr_priv(hdr);
783
784 vh->crc7 = crc7(p, len);
Jens Axboe1e154bd2007-07-27 09:52:40 +0200785}
786
Jens Axboe969f7ed2007-07-27 09:07:17 +0200787static void fill_crc16(struct verify_header *hdr, void *p, unsigned int len)
788{
Jens Axboe546dfd92007-07-30 12:23:05 +0200789 struct vhdr_crc16 *vh = hdr_priv(hdr);
790
791 vh->crc16 = crc16(p, len);
Jens Axboe969f7ed2007-07-27 09:07:17 +0200792}
793
Jens Axboee29d1b72006-10-18 15:43:15 +0200794static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)
795{
Jens Axboe546dfd92007-07-30 12:23:05 +0200796 struct vhdr_crc32 *vh = hdr_priv(hdr);
797
798 vh->crc32 = crc32(p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200799}
800
Jens Axboebac39e02008-06-11 20:46:19 +0200801static void fill_crc32c(struct verify_header *hdr, void *p, unsigned int len)
802{
803 struct vhdr_crc32 *vh = hdr_priv(hdr);
804
Jens Axboe38455912008-08-04 15:35:26 +0200805 if (hdr->verify_type == VERIFY_CRC32C_INTEL)
806 vh->crc32 = crc32c_intel(p, len);
807 else
808 vh->crc32 = crc32c(p, len);
Jens Axboebac39e02008-06-11 20:46:19 +0200809}
810
Jens Axboed77a7af2007-07-27 15:35:06 +0200811static void fill_crc64(struct verify_header *hdr, void *p, unsigned int len)
812{
Jens Axboe546dfd92007-07-30 12:23:05 +0200813 struct vhdr_crc64 *vh = hdr_priv(hdr);
814
815 vh->crc64 = crc64(p, len);
Jens Axboed77a7af2007-07-27 15:35:06 +0200816}
817
Jens Axboee29d1b72006-10-18 15:43:15 +0200818static void fill_md5(struct verify_header *hdr, void *p, unsigned int len)
819{
Jens Axboe546dfd92007-07-30 12:23:05 +0200820 struct vhdr_md5 *vh = hdr_priv(hdr);
Jens Axboe8c432322007-07-27 13:16:24 +0200821 struct md5_ctx md5_ctx = {
Jens Axboe546dfd92007-07-30 12:23:05 +0200822 .hash = (uint32_t *) vh->md5_digest,
Jens Axboe8c432322007-07-27 13:16:24 +0200823 };
Jens Axboee29d1b72006-10-18 15:43:15 +0200824
Jens Axboe61f821f2007-07-30 10:18:06 +0200825 md5_init(&md5_ctx);
Jens Axboee29d1b72006-10-18 15:43:15 +0200826 md5_update(&md5_ctx, p, len);
Jens Axboee29d1b72006-10-18 15:43:15 +0200827}
828
Jens Axboe7d9fb452011-01-11 22:16:49 +0100829static void populate_hdr(struct thread_data *td, struct io_u *io_u,
830 struct verify_header *hdr, unsigned int header_num,
831 unsigned int header_len)
832{
833 unsigned int data_len;
834 void *data, *p;
835
836 p = (void *) hdr;
837
838 hdr->fio_magic = FIO_HDR_MAGIC;
839 hdr->len = header_len;
840 hdr->verify_type = td->o.verify;
841 hdr->rand_seed = io_u->rand_seed;
842 data_len = header_len - hdr_size(hdr);
843
844 data = p + hdr_size(hdr);
845 switch (td->o.verify) {
846 case VERIFY_MD5:
847 dprint(FD_VERIFY, "fill md5 io_u %p, len %u\n",
848 io_u, hdr->len);
849 fill_md5(hdr, data, data_len);
850 break;
851 case VERIFY_CRC64:
852 dprint(FD_VERIFY, "fill crc64 io_u %p, len %u\n",
853 io_u, hdr->len);
854 fill_crc64(hdr, data, data_len);
855 break;
856 case VERIFY_CRC32C:
857 case VERIFY_CRC32C_INTEL:
858 dprint(FD_VERIFY, "fill crc32c io_u %p, len %u\n",
859 io_u, hdr->len);
860 fill_crc32c(hdr, data, data_len);
861 break;
862 case VERIFY_CRC32:
863 dprint(FD_VERIFY, "fill crc32 io_u %p, len %u\n",
864 io_u, hdr->len);
865 fill_crc32(hdr, data, data_len);
866 break;
867 case VERIFY_CRC16:
868 dprint(FD_VERIFY, "fill crc16 io_u %p, len %u\n",
869 io_u, hdr->len);
870 fill_crc16(hdr, data, data_len);
871 break;
872 case VERIFY_CRC7:
873 dprint(FD_VERIFY, "fill crc7 io_u %p, len %u\n",
874 io_u, hdr->len);
875 fill_crc7(hdr, data, data_len);
876 break;
877 case VERIFY_SHA256:
878 dprint(FD_VERIFY, "fill sha256 io_u %p, len %u\n",
879 io_u, hdr->len);
880 fill_sha256(hdr, data, data_len);
881 break;
882 case VERIFY_SHA512:
883 dprint(FD_VERIFY, "fill sha512 io_u %p, len %u\n",
884 io_u, hdr->len);
885 fill_sha512(hdr, data, data_len);
886 break;
887 case VERIFY_META:
888 dprint(FD_VERIFY, "fill meta io_u %p, len %u\n",
889 io_u, hdr->len);
890 fill_meta(hdr, td, io_u, header_num);
891 break;
892 case VERIFY_SHA1:
893 dprint(FD_VERIFY, "fill sha1 io_u %p, len %u\n",
894 io_u, hdr->len);
895 fill_sha1(hdr, data, data_len);
896 break;
897 default:
898 log_err("fio: bad verify type: %d\n", td->o.verify);
899 assert(0);
900 }
901 if (td->o.verify_offset)
902 memswp(p, p + td->o.verify_offset, hdr_size(hdr));
903}
904
Jens Axboee29d1b72006-10-18 15:43:15 +0200905/*
906 * fill body of io_u->buf with random data and add a header with the
Jens Axboec50ca7b2011-01-12 08:31:54 +0100907 * checksum of choice
Jens Axboee29d1b72006-10-18 15:43:15 +0200908 */
909void populate_verify_io_u(struct thread_data *td, struct io_u *io_u)
910{
Jens Axboe9cc3d152007-03-26 10:32:30 +0200911 if (td->o.verify == VERIFY_NULL)
912 return;
913
Jens Axboec50ca7b2011-01-12 08:31:54 +0100914 fill_pattern_headers(td, io_u, 0, 0);
Jens Axboee29d1b72006-10-18 15:43:15 +0200915}
916
917int get_next_verify(struct thread_data *td, struct io_u *io_u)
918{
Jens Axboe8de8f042007-03-27 10:36:12 +0200919 struct io_piece *ipo = NULL;
Jens Axboee29d1b72006-10-18 15:43:15 +0200920
Jens Axboed2d7fa52007-02-19 13:21:35 +0100921 /*
922 * this io_u is from a requeue, we already filled the offsets
923 */
924 if (io_u->file)
925 return 0;
926
Jens Axboe8de8f042007-03-27 10:36:12 +0200927 if (!RB_EMPTY_ROOT(&td->io_hist_tree)) {
928 struct rb_node *n = rb_first(&td->io_hist_tree);
929
Jens Axboe4b878982007-03-26 09:32:22 +0200930 ipo = rb_entry(n, struct io_piece, rb_node);
Jens Axboe4b878982007-03-26 09:32:22 +0200931 rb_erase(n, &td->io_hist_tree);
Jens Axboea917a8b2010-09-02 13:23:20 +0200932 assert(ipo->flags & IP_F_ONRB);
933 ipo->flags &= ~IP_F_ONRB;
Jens Axboe01743ee2008-06-02 12:19:19 +0200934 } else if (!flist_empty(&td->io_hist_list)) {
935 ipo = flist_entry(td->io_hist_list.next, struct io_piece, list);
936 flist_del(&ipo->list);
Jens Axboea917a8b2010-09-02 13:23:20 +0200937 assert(ipo->flags & IP_F_ONLIST);
938 ipo->flags &= ~IP_F_ONLIST;
Jens Axboe8de8f042007-03-27 10:36:12 +0200939 }
Jens Axboee29d1b72006-10-18 15:43:15 +0200940
Jens Axboe8de8f042007-03-27 10:36:12 +0200941 if (ipo) {
Jens Axboe0d29de82010-09-01 13:54:15 +0200942 td->io_hist_len--;
943
Jens Axboee29d1b72006-10-18 15:43:15 +0200944 io_u->offset = ipo->offset;
945 io_u->buflen = ipo->len;
Jens Axboe36167d82007-02-18 05:41:31 +0100946 io_u->file = ipo->file;
Jens Axboe97af62c2007-05-22 11:12:13 +0200947
Jens Axboe0d29de82010-09-01 13:54:15 +0200948 if (ipo->flags & IP_F_TRIMMED)
949 io_u->flags |= IO_U_F_TRIMMED;
950
Jens Axboed6aed792009-06-03 08:41:15 +0200951 if (!fio_file_open(io_u->file)) {
Jens Axboe97af62c2007-05-22 11:12:13 +0200952 int r = td_io_open_file(td, io_u->file);
953
Jens Axboebd6f78b2008-02-01 20:27:52 +0100954 if (r) {
955 dprint(FD_VERIFY, "failed file %s open\n",
956 io_u->file->file_name);
Jens Axboe97af62c2007-05-22 11:12:13 +0200957 return 1;
Jens Axboebd6f78b2008-02-01 20:27:52 +0100958 }
Jens Axboe97af62c2007-05-22 11:12:13 +0200959 }
960
961 get_file(ipo->file);
Jens Axboed6aed792009-06-03 08:41:15 +0200962 assert(fio_file_open(io_u->file));
Jens Axboee29d1b72006-10-18 15:43:15 +0200963 io_u->ddir = DDIR_READ;
Jens Axboe36167d82007-02-18 05:41:31 +0100964 io_u->xfer_buf = io_u->buf;
965 io_u->xfer_buflen = io_u->buflen;
Jens Axboe0d29de82010-09-01 13:54:15 +0200966
967 remove_trim_entry(td, ipo);
Jens Axboee29d1b72006-10-18 15:43:15 +0200968 free(ipo);
Jens Axboebd6f78b2008-02-01 20:27:52 +0100969 dprint(FD_VERIFY, "get_next_verify: ret io_u %p\n", io_u);
Jens Axboee29d1b72006-10-18 15:43:15 +0200970 return 0;
971 }
972
Jens Axboebd6f78b2008-02-01 20:27:52 +0100973 dprint(FD_VERIFY, "get_next_verify: empty\n");
Jens Axboee29d1b72006-10-18 15:43:15 +0200974 return 1;
975}
Jens Axboee8462bd2009-07-06 12:59:04 +0200976
977static void *verify_async_thread(void *data)
978{
979 struct thread_data *td = data;
980 struct io_u *io_u;
981 int ret = 0;
982
983 if (td->o.verify_cpumask_set &&
984 fio_setaffinity(td->pid, td->o.verify_cpumask)) {
985 log_err("fio: failed setting verify thread affinity\n");
986 goto done;
987 }
988
989 do {
Jens Axboee53ab272009-07-06 13:43:46 +0200990 FLIST_HEAD(list);
991
Jens Axboee8462bd2009-07-06 12:59:04 +0200992 read_barrier();
993 if (td->verify_thread_exit)
994 break;
995
996 pthread_mutex_lock(&td->io_u_lock);
997
998 while (flist_empty(&td->verify_list) &&
999 !td->verify_thread_exit) {
Jens Axboeb36e2982009-07-06 14:12:52 +02001000 ret = pthread_cond_wait(&td->verify_cond,
1001 &td->io_u_lock);
Jens Axboee8462bd2009-07-06 12:59:04 +02001002 if (ret) {
1003 pthread_mutex_unlock(&td->io_u_lock);
1004 break;
1005 }
1006 }
1007
Jens Axboee53ab272009-07-06 13:43:46 +02001008 flist_splice_init(&td->verify_list, &list);
Jens Axboee8462bd2009-07-06 12:59:04 +02001009 pthread_mutex_unlock(&td->io_u_lock);
1010
Jens Axboee53ab272009-07-06 13:43:46 +02001011 if (flist_empty(&list))
1012 continue;
1013
1014 while (!flist_empty(&list)) {
1015 io_u = flist_entry(list.next, struct io_u, list);
1016 flist_del_init(&io_u->list);
1017
Jens Axboed561f2a2009-07-06 13:51:05 +02001018 ret = verify_io_u(td, io_u);
Jens Axboee53ab272009-07-06 13:43:46 +02001019 put_io_u(td, io_u);
Jens Axboed561f2a2009-07-06 13:51:05 +02001020 if (!ret)
1021 continue;
1022 if (td->o.continue_on_error &&
1023 td_non_fatal_error(ret)) {
1024 update_error_count(td, ret);
1025 td_clear_error(td);
1026 ret = 0;
1027 }
Jens Axboee53ab272009-07-06 13:43:46 +02001028 }
Jens Axboee8462bd2009-07-06 12:59:04 +02001029 } while (!ret);
1030
Jens Axboed561f2a2009-07-06 13:51:05 +02001031 if (ret) {
1032 td_verror(td, ret, "async_verify");
Jens Axboef3e6cb92010-06-18 14:48:43 +02001033 if (td->o.verify_fatal)
1034 td->terminate = 1;
Jens Axboed561f2a2009-07-06 13:51:05 +02001035 }
1036
Jens Axboee8462bd2009-07-06 12:59:04 +02001037done:
1038 pthread_mutex_lock(&td->io_u_lock);
1039 td->nr_verify_threads--;
1040 pthread_mutex_unlock(&td->io_u_lock);
1041
1042 pthread_cond_signal(&td->free_cond);
1043 return NULL;
1044}
1045
1046int verify_async_init(struct thread_data *td)
1047{
1048 int i, ret;
bart Van Assche304a47c2010-08-01 21:31:26 +02001049 pthread_attr_t attr;
1050
1051 pthread_attr_init(&attr);
1052 pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
Jens Axboee8462bd2009-07-06 12:59:04 +02001053
1054 td->verify_thread_exit = 0;
1055
1056 td->verify_threads = malloc(sizeof(pthread_t) * td->o.verify_async);
1057 for (i = 0; i < td->o.verify_async; i++) {
bart Van Assche304a47c2010-08-01 21:31:26 +02001058 ret = pthread_create(&td->verify_threads[i], &attr,
Jens Axboee8462bd2009-07-06 12:59:04 +02001059 verify_async_thread, td);
1060 if (ret) {
1061 log_err("fio: async verify creation failed: %s\n",
1062 strerror(ret));
1063 break;
1064 }
1065 ret = pthread_detach(td->verify_threads[i]);
1066 if (ret) {
1067 log_err("fio: async verify thread detach failed: %s\n",
1068 strerror(ret));
1069 break;
1070 }
1071 td->nr_verify_threads++;
1072 }
1073
bart Van Assche304a47c2010-08-01 21:31:26 +02001074 pthread_attr_destroy(&attr);
1075
Jens Axboee8462bd2009-07-06 12:59:04 +02001076 if (i != td->o.verify_async) {
Jens Axboee40823b2009-07-06 14:28:21 +02001077 log_err("fio: only %d verify threads started, exiting\n", i);
Jens Axboee8462bd2009-07-06 12:59:04 +02001078 td->verify_thread_exit = 1;
1079 write_barrier();
1080 pthread_cond_broadcast(&td->verify_cond);
1081 return 1;
1082 }
1083
1084 return 0;
1085}
1086
1087void verify_async_exit(struct thread_data *td)
1088{
1089 td->verify_thread_exit = 1;
1090 write_barrier();
1091 pthread_cond_broadcast(&td->verify_cond);
1092
1093 pthread_mutex_lock(&td->io_u_lock);
1094
1095 while (td->nr_verify_threads)
1096 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1097
1098 pthread_mutex_unlock(&td->io_u_lock);
1099 free(td->verify_threads);
1100 td->verify_threads = NULL;
1101}