scsi-disk: Remove duplicate cdb parsing
[qemu/ar7.git] / qemu-io.c
blobff353ebba358885764db7d77dfa7fc43fbf223a2
1 /*
2 * Command line utility to exercise the QEMU I/O path.
4 * Copyright (C) 2009 Red Hat, Inc.
5 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 */
10 #include <sys/time.h>
11 #include <sys/types.h>
12 #include <stdarg.h>
13 #include <stdio.h>
14 #include <getopt.h>
15 #include <libgen.h>
17 #include "qemu-common.h"
18 #include "block_int.h"
19 #include "cmd.h"
21 #define VERSION "0.0.1"
23 #define CMD_NOFILE_OK 0x01
25 char *progname;
26 static BlockDriverState *bs;
28 static int misalign;
31 * Parse the pattern argument to various sub-commands.
33 * Because the pattern is used as an argument to memset it must evaluate
34 * to an unsigned integer that fits into a single byte.
36 static int parse_pattern(const char *arg)
38 char *endptr = NULL;
39 long pattern;
41 pattern = strtol(arg, &endptr, 0);
42 if (pattern < 0 || pattern > UCHAR_MAX || *endptr != '\0') {
43 printf("%s is not a valid pattern byte\n", arg);
44 return -1;
47 return pattern;
51 * Memory allocation helpers.
53 * Make sure memory is aligned by default, or purposefully misaligned if
54 * that is specified on the command line.
57 #define MISALIGN_OFFSET 16
58 static void *qemu_io_alloc(size_t len, int pattern)
60 void *buf;
62 if (misalign)
63 len += MISALIGN_OFFSET;
64 buf = qemu_blockalign(bs, len);
65 memset(buf, pattern, len);
66 if (misalign)
67 buf += MISALIGN_OFFSET;
68 return buf;
71 static void qemu_io_free(void *p)
73 if (misalign)
74 p -= MISALIGN_OFFSET;
75 qemu_vfree(p);
78 static void
79 dump_buffer(const void *buffer, int64_t offset, int len)
81 int i, j;
82 const uint8_t *p;
84 for (i = 0, p = buffer; i < len; i += 16) {
85 const uint8_t *s = p;
87 printf("%08" PRIx64 ": ", offset + i);
88 for (j = 0; j < 16 && i + j < len; j++, p++)
89 printf("%02x ", *p);
90 printf(" ");
91 for (j = 0; j < 16 && i + j < len; j++, s++) {
92 if (isalnum(*s))
93 printf("%c", *s);
94 else
95 printf(".");
97 printf("\n");
101 static void
102 print_report(const char *op, struct timeval *t, int64_t offset,
103 int count, int total, int cnt, int Cflag)
105 char s1[64], s2[64], ts[64];
107 timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0);
108 if (!Cflag) {
109 cvtstr((double)total, s1, sizeof(s1));
110 cvtstr(tdiv((double)total, *t), s2, sizeof(s2));
111 printf("%s %d/%d bytes at offset %" PRId64 "\n",
112 op, total, count, offset);
113 printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
114 s1, cnt, ts, s2, tdiv((double)cnt, *t));
115 } else {/* bytes,ops,time,bytes/sec,ops/sec */
116 printf("%d,%d,%s,%.3f,%.3f\n",
117 total, cnt, ts,
118 tdiv((double)total, *t),
119 tdiv((double)cnt, *t));
124 * Parse multiple length statements for vectored I/O, and construct an I/O
125 * vector matching it.
127 static void *
128 create_iovec(QEMUIOVector *qiov, char **argv, int nr_iov, int pattern)
130 size_t *sizes = calloc(nr_iov, sizeof(size_t));
131 size_t count = 0;
132 void *buf = NULL;
133 void *p;
134 int i;
136 for (i = 0; i < nr_iov; i++) {
137 char *arg = argv[i];
138 int64_t len;
140 len = cvtnum(arg);
141 if (len < 0) {
142 printf("non-numeric length argument -- %s\n", arg);
143 goto fail;
146 /* should be SIZE_T_MAX, but that doesn't exist */
147 if (len > INT_MAX) {
148 printf("too large length argument -- %s\n", arg);
149 goto fail;
152 if (len & 0x1ff) {
153 printf("length argument %" PRId64
154 " is not sector aligned\n", len);
155 goto fail;
158 sizes[i] = len;
159 count += len;
162 qemu_iovec_init(qiov, nr_iov);
164 buf = p = qemu_io_alloc(count, pattern);
166 for (i = 0; i < nr_iov; i++) {
167 qemu_iovec_add(qiov, p, sizes[i]);
168 p += sizes[i];
171 fail:
172 free(sizes);
173 return buf;
176 static int do_read(char *buf, int64_t offset, int count, int *total)
178 int ret;
180 ret = bdrv_read(bs, offset >> 9, (uint8_t *)buf, count >> 9);
181 if (ret < 0)
182 return ret;
183 *total = count;
184 return 1;
187 static int do_write(char *buf, int64_t offset, int count, int *total)
189 int ret;
191 ret = bdrv_write(bs, offset >> 9, (uint8_t *)buf, count >> 9);
192 if (ret < 0)
193 return ret;
194 *total = count;
195 return 1;
198 static int do_pread(char *buf, int64_t offset, int count, int *total)
200 *total = bdrv_pread(bs, offset, (uint8_t *)buf, count);
201 if (*total < 0)
202 return *total;
203 return 1;
206 static int do_pwrite(char *buf, int64_t offset, int count, int *total)
208 *total = bdrv_pwrite(bs, offset, (uint8_t *)buf, count);
209 if (*total < 0)
210 return *total;
211 return 1;
214 static int do_load_vmstate(char *buf, int64_t offset, int count, int *total)
216 *total = bdrv_load_vmstate(bs, (uint8_t *)buf, offset, count);
217 if (*total < 0)
218 return *total;
219 return 1;
222 static int do_save_vmstate(char *buf, int64_t offset, int count, int *total)
224 *total = bdrv_save_vmstate(bs, (uint8_t *)buf, offset, count);
225 if (*total < 0)
226 return *total;
227 return 1;
230 #define NOT_DONE 0x7fffffff
231 static void aio_rw_done(void *opaque, int ret)
233 *(int *)opaque = ret;
236 static int do_aio_readv(QEMUIOVector *qiov, int64_t offset, int *total)
238 BlockDriverAIOCB *acb;
239 int async_ret = NOT_DONE;
241 acb = bdrv_aio_readv(bs, offset >> 9, qiov, qiov->size >> 9,
242 aio_rw_done, &async_ret);
243 if (!acb)
244 return -EIO;
246 while (async_ret == NOT_DONE)
247 qemu_aio_wait();
249 *total = qiov->size;
250 return async_ret < 0 ? async_ret : 1;
253 static int do_aio_writev(QEMUIOVector *qiov, int64_t offset, int *total)
255 BlockDriverAIOCB *acb;
256 int async_ret = NOT_DONE;
258 acb = bdrv_aio_writev(bs, offset >> 9, qiov, qiov->size >> 9,
259 aio_rw_done, &async_ret);
260 if (!acb)
261 return -EIO;
263 while (async_ret == NOT_DONE)
264 qemu_aio_wait();
266 *total = qiov->size;
267 return async_ret < 0 ? async_ret : 1;
270 struct multiwrite_async_ret {
271 int num_done;
272 int error;
275 static void multiwrite_cb(void *opaque, int ret)
277 struct multiwrite_async_ret *async_ret = opaque;
279 async_ret->num_done++;
280 if (ret < 0) {
281 async_ret->error = ret;
285 static int do_aio_multiwrite(BlockRequest* reqs, int num_reqs, int *total)
287 int i, ret;
288 struct multiwrite_async_ret async_ret = {
289 .num_done = 0,
290 .error = 0,
293 *total = 0;
294 for (i = 0; i < num_reqs; i++) {
295 reqs[i].cb = multiwrite_cb;
296 reqs[i].opaque = &async_ret;
297 *total += reqs[i].qiov->size;
300 ret = bdrv_aio_multiwrite(bs, reqs, num_reqs);
301 if (ret < 0) {
302 return ret;
305 while (async_ret.num_done < num_reqs) {
306 qemu_aio_wait();
309 return async_ret.error < 0 ? async_ret.error : 1;
312 static void
313 read_help(void)
315 printf(
316 "\n"
317 " reads a range of bytes from the given offset\n"
318 "\n"
319 " Example:\n"
320 " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
321 "\n"
322 " Reads a segment of the currently open file, optionally dumping it to the\n"
323 " standard output stream (with -v option) for subsequent inspection.\n"
324 " -b, -- read from the VM state rather than the virtual disk\n"
325 " -C, -- report statistics in a machine parsable format\n"
326 " -l, -- length for pattern verification (only with -P)\n"
327 " -p, -- use bdrv_pread to read the file\n"
328 " -P, -- use a pattern to verify read data\n"
329 " -q, -- quite mode, do not show I/O statistics\n"
330 " -s, -- start offset for pattern verification (only with -P)\n"
331 " -v, -- dump buffer to standard output\n"
332 "\n");
335 static int read_f(int argc, char **argv);
337 static const cmdinfo_t read_cmd = {
338 .name = "read",
339 .altname = "r",
340 .cfunc = read_f,
341 .argmin = 2,
342 .argmax = -1,
343 .args = "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
344 .oneline = "reads a number of bytes at a specified offset",
345 .help = read_help,
348 static int
349 read_f(int argc, char **argv)
351 struct timeval t1, t2;
352 int Cflag = 0, pflag = 0, qflag = 0, vflag = 0;
353 int Pflag = 0, sflag = 0, lflag = 0, bflag = 0;
354 int c, cnt;
355 char *buf;
356 int64_t offset;
357 int count;
358 /* Some compilers get confused and warn if this is not initialized. */
359 int total = 0;
360 int pattern = 0, pattern_offset = 0, pattern_count = 0;
362 while ((c = getopt(argc, argv, "bCl:pP:qs:v")) != EOF) {
363 switch (c) {
364 case 'b':
365 bflag = 1;
366 break;
367 case 'C':
368 Cflag = 1;
369 break;
370 case 'l':
371 lflag = 1;
372 pattern_count = cvtnum(optarg);
373 if (pattern_count < 0) {
374 printf("non-numeric length argument -- %s\n", optarg);
375 return 0;
377 break;
378 case 'p':
379 pflag = 1;
380 break;
381 case 'P':
382 Pflag = 1;
383 pattern = parse_pattern(optarg);
384 if (pattern < 0)
385 return 0;
386 break;
387 case 'q':
388 qflag = 1;
389 break;
390 case 's':
391 sflag = 1;
392 pattern_offset = cvtnum(optarg);
393 if (pattern_offset < 0) {
394 printf("non-numeric length argument -- %s\n", optarg);
395 return 0;
397 break;
398 case 'v':
399 vflag = 1;
400 break;
401 default:
402 return command_usage(&read_cmd);
406 if (optind != argc - 2)
407 return command_usage(&read_cmd);
409 if (bflag && pflag) {
410 printf("-b and -p cannot be specified at the same time\n");
411 return 0;
414 offset = cvtnum(argv[optind]);
415 if (offset < 0) {
416 printf("non-numeric length argument -- %s\n", argv[optind]);
417 return 0;
420 optind++;
421 count = cvtnum(argv[optind]);
422 if (count < 0) {
423 printf("non-numeric length argument -- %s\n", argv[optind]);
424 return 0;
427 if (!Pflag && (lflag || sflag)) {
428 return command_usage(&read_cmd);
431 if (!lflag) {
432 pattern_count = count - pattern_offset;
435 if ((pattern_count < 0) || (pattern_count + pattern_offset > count)) {
436 printf("pattern verfication range exceeds end of read data\n");
437 return 0;
440 if (!pflag)
441 if (offset & 0x1ff) {
442 printf("offset %" PRId64 " is not sector aligned\n",
443 offset);
444 return 0;
446 if (count & 0x1ff) {
447 printf("count %d is not sector aligned\n",
448 count);
449 return 0;
453 buf = qemu_io_alloc(count, 0xab);
455 gettimeofday(&t1, NULL);
456 if (pflag)
457 cnt = do_pread(buf, offset, count, &total);
458 else if (bflag)
459 cnt = do_load_vmstate(buf, offset, count, &total);
460 else
461 cnt = do_read(buf, offset, count, &total);
462 gettimeofday(&t2, NULL);
464 if (cnt < 0) {
465 printf("read failed: %s\n", strerror(-cnt));
466 goto out;
469 if (Pflag) {
470 void* cmp_buf = malloc(pattern_count);
471 memset(cmp_buf, pattern, pattern_count);
472 if (memcmp(buf + pattern_offset, cmp_buf, pattern_count)) {
473 printf("Pattern verification failed at offset %"
474 PRId64 ", %d bytes\n",
475 offset + pattern_offset, pattern_count);
477 free(cmp_buf);
480 if (qflag)
481 goto out;
483 if (vflag)
484 dump_buffer(buf, offset, count);
486 /* Finally, report back -- -C gives a parsable format */
487 t2 = tsub(t2, t1);
488 print_report("read", &t2, offset, count, total, cnt, Cflag);
490 out:
491 qemu_io_free(buf);
493 return 0;
496 static void
497 readv_help(void)
499 printf(
500 "\n"
501 " reads a range of bytes from the given offset into multiple buffers\n"
502 "\n"
503 " Example:\n"
504 " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
505 "\n"
506 " Reads a segment of the currently open file, optionally dumping it to the\n"
507 " standard output stream (with -v option) for subsequent inspection.\n"
508 " Uses multiple iovec buffers if more than one byte range is specified.\n"
509 " -C, -- report statistics in a machine parsable format\n"
510 " -P, -- use a pattern to verify read data\n"
511 " -v, -- dump buffer to standard output\n"
512 " -q, -- quite mode, do not show I/O statistics\n"
513 "\n");
516 static int readv_f(int argc, char **argv);
518 static const cmdinfo_t readv_cmd = {
519 .name = "readv",
520 .cfunc = readv_f,
521 .argmin = 2,
522 .argmax = -1,
523 .args = "[-Cqv] [-P pattern ] off len [len..]",
524 .oneline = "reads a number of bytes at a specified offset",
525 .help = readv_help,
528 static int
529 readv_f(int argc, char **argv)
531 struct timeval t1, t2;
532 int Cflag = 0, qflag = 0, vflag = 0;
533 int c, cnt;
534 char *buf;
535 int64_t offset;
536 /* Some compilers get confused and warn if this is not initialized. */
537 int total = 0;
538 int nr_iov;
539 QEMUIOVector qiov;
540 int pattern = 0;
541 int Pflag = 0;
543 while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
544 switch (c) {
545 case 'C':
546 Cflag = 1;
547 break;
548 case 'P':
549 Pflag = 1;
550 pattern = parse_pattern(optarg);
551 if (pattern < 0)
552 return 0;
553 break;
554 case 'q':
555 qflag = 1;
556 break;
557 case 'v':
558 vflag = 1;
559 break;
560 default:
561 return command_usage(&readv_cmd);
565 if (optind > argc - 2)
566 return command_usage(&readv_cmd);
569 offset = cvtnum(argv[optind]);
570 if (offset < 0) {
571 printf("non-numeric length argument -- %s\n", argv[optind]);
572 return 0;
574 optind++;
576 if (offset & 0x1ff) {
577 printf("offset %" PRId64 " is not sector aligned\n",
578 offset);
579 return 0;
582 nr_iov = argc - optind;
583 buf = create_iovec(&qiov, &argv[optind], nr_iov, 0xab);
585 gettimeofday(&t1, NULL);
586 cnt = do_aio_readv(&qiov, offset, &total);
587 gettimeofday(&t2, NULL);
589 if (cnt < 0) {
590 printf("readv failed: %s\n", strerror(-cnt));
591 goto out;
594 if (Pflag) {
595 void* cmp_buf = malloc(qiov.size);
596 memset(cmp_buf, pattern, qiov.size);
597 if (memcmp(buf, cmp_buf, qiov.size)) {
598 printf("Pattern verification failed at offset %"
599 PRId64 ", %zd bytes\n",
600 offset, qiov.size);
602 free(cmp_buf);
605 if (qflag)
606 goto out;
608 if (vflag)
609 dump_buffer(buf, offset, qiov.size);
611 /* Finally, report back -- -C gives a parsable format */
612 t2 = tsub(t2, t1);
613 print_report("read", &t2, offset, qiov.size, total, cnt, Cflag);
615 out:
616 qemu_io_free(buf);
617 return 0;
620 static void
621 write_help(void)
623 printf(
624 "\n"
625 " writes a range of bytes from the given offset\n"
626 "\n"
627 " Example:\n"
628 " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
629 "\n"
630 " Writes into a segment of the currently open file, using a buffer\n"
631 " filled with a set pattern (0xcdcdcdcd).\n"
632 " -b, -- write to the VM state rather than the virtual disk\n"
633 " -p, -- use bdrv_pwrite to write the file\n"
634 " -P, -- use different pattern to fill file\n"
635 " -C, -- report statistics in a machine parsable format\n"
636 " -q, -- quite mode, do not show I/O statistics\n"
637 "\n");
640 static int write_f(int argc, char **argv);
642 static const cmdinfo_t write_cmd = {
643 .name = "write",
644 .altname = "w",
645 .cfunc = write_f,
646 .argmin = 2,
647 .argmax = -1,
648 .args = "[-abCpq] [-P pattern ] off len",
649 .oneline = "writes a number of bytes at a specified offset",
650 .help = write_help,
653 static int
654 write_f(int argc, char **argv)
656 struct timeval t1, t2;
657 int Cflag = 0, pflag = 0, qflag = 0, bflag = 0;
658 int c, cnt;
659 char *buf;
660 int64_t offset;
661 int count;
662 /* Some compilers get confused and warn if this is not initialized. */
663 int total = 0;
664 int pattern = 0xcd;
666 while ((c = getopt(argc, argv, "bCpP:q")) != EOF) {
667 switch (c) {
668 case 'b':
669 bflag = 1;
670 break;
671 case 'C':
672 Cflag = 1;
673 break;
674 case 'p':
675 pflag = 1;
676 break;
677 case 'P':
678 pattern = parse_pattern(optarg);
679 if (pattern < 0)
680 return 0;
681 break;
682 case 'q':
683 qflag = 1;
684 break;
685 default:
686 return command_usage(&write_cmd);
690 if (optind != argc - 2)
691 return command_usage(&write_cmd);
693 if (bflag && pflag) {
694 printf("-b and -p cannot be specified at the same time\n");
695 return 0;
698 offset = cvtnum(argv[optind]);
699 if (offset < 0) {
700 printf("non-numeric length argument -- %s\n", argv[optind]);
701 return 0;
704 optind++;
705 count = cvtnum(argv[optind]);
706 if (count < 0) {
707 printf("non-numeric length argument -- %s\n", argv[optind]);
708 return 0;
711 if (!pflag) {
712 if (offset & 0x1ff) {
713 printf("offset %" PRId64 " is not sector aligned\n",
714 offset);
715 return 0;
718 if (count & 0x1ff) {
719 printf("count %d is not sector aligned\n",
720 count);
721 return 0;
725 buf = qemu_io_alloc(count, pattern);
727 gettimeofday(&t1, NULL);
728 if (pflag)
729 cnt = do_pwrite(buf, offset, count, &total);
730 else if (bflag)
731 cnt = do_save_vmstate(buf, offset, count, &total);
732 else
733 cnt = do_write(buf, offset, count, &total);
734 gettimeofday(&t2, NULL);
736 if (cnt < 0) {
737 printf("write failed: %s\n", strerror(-cnt));
738 goto out;
741 if (qflag)
742 goto out;
744 /* Finally, report back -- -C gives a parsable format */
745 t2 = tsub(t2, t1);
746 print_report("wrote", &t2, offset, count, total, cnt, Cflag);
748 out:
749 qemu_io_free(buf);
751 return 0;
754 static void
755 writev_help(void)
757 printf(
758 "\n"
759 " writes a range of bytes from the given offset source from multiple buffers\n"
760 "\n"
761 " Example:\n"
762 " 'write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
763 "\n"
764 " Writes into a segment of the currently open file, using a buffer\n"
765 " filled with a set pattern (0xcdcdcdcd).\n"
766 " -P, -- use different pattern to fill file\n"
767 " -C, -- report statistics in a machine parsable format\n"
768 " -q, -- quite mode, do not show I/O statistics\n"
769 "\n");
772 static int writev_f(int argc, char **argv);
774 static const cmdinfo_t writev_cmd = {
775 .name = "writev",
776 .cfunc = writev_f,
777 .argmin = 2,
778 .argmax = -1,
779 .args = "[-Cq] [-P pattern ] off len [len..]",
780 .oneline = "writes a number of bytes at a specified offset",
781 .help = writev_help,
784 static int
785 writev_f(int argc, char **argv)
787 struct timeval t1, t2;
788 int Cflag = 0, qflag = 0;
789 int c, cnt;
790 char *buf;
791 int64_t offset;
792 /* Some compilers get confused and warn if this is not initialized. */
793 int total = 0;
794 int nr_iov;
795 int pattern = 0xcd;
796 QEMUIOVector qiov;
798 while ((c = getopt(argc, argv, "CqP:")) != EOF) {
799 switch (c) {
800 case 'C':
801 Cflag = 1;
802 break;
803 case 'q':
804 qflag = 1;
805 break;
806 case 'P':
807 pattern = parse_pattern(optarg);
808 if (pattern < 0)
809 return 0;
810 break;
811 default:
812 return command_usage(&writev_cmd);
816 if (optind > argc - 2)
817 return command_usage(&writev_cmd);
819 offset = cvtnum(argv[optind]);
820 if (offset < 0) {
821 printf("non-numeric length argument -- %s\n", argv[optind]);
822 return 0;
824 optind++;
826 if (offset & 0x1ff) {
827 printf("offset %" PRId64 " is not sector aligned\n",
828 offset);
829 return 0;
832 nr_iov = argc - optind;
833 buf = create_iovec(&qiov, &argv[optind], nr_iov, pattern);
835 gettimeofday(&t1, NULL);
836 cnt = do_aio_writev(&qiov, offset, &total);
837 gettimeofday(&t2, NULL);
839 if (cnt < 0) {
840 printf("writev failed: %s\n", strerror(-cnt));
841 goto out;
844 if (qflag)
845 goto out;
847 /* Finally, report back -- -C gives a parsable format */
848 t2 = tsub(t2, t1);
849 print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag);
850 out:
851 qemu_io_free(buf);
852 return 0;
855 static void
856 multiwrite_help(void)
858 printf(
859 "\n"
860 " writes a range of bytes from the given offset source from multiple buffers,\n"
861 " in a batch of requests that may be merged by qemu\n"
862 "\n"
863 " Example:\n"
864 " 'multiwrite 512 1k 1k ; 4k 1k' \n"
865 " writes 2 kB at 512 bytes and 1 kB at 4 kB into the open file\n"
866 "\n"
867 " Writes into a segment of the currently open file, using a buffer\n"
868 " filled with a set pattern (0xcdcdcdcd). The pattern byte is increased\n"
869 " by one for each request contained in the multiwrite command.\n"
870 " -P, -- use different pattern to fill file\n"
871 " -C, -- report statistics in a machine parsable format\n"
872 " -q, -- quiet mode, do not show I/O statistics\n"
873 "\n");
876 static int multiwrite_f(int argc, char **argv);
878 static const cmdinfo_t multiwrite_cmd = {
879 .name = "multiwrite",
880 .cfunc = multiwrite_f,
881 .argmin = 2,
882 .argmax = -1,
883 .args = "[-Cq] [-P pattern ] off len [len..] [; off len [len..]..]",
884 .oneline = "issues multiple write requests at once",
885 .help = multiwrite_help,
888 static int
889 multiwrite_f(int argc, char **argv)
891 struct timeval t1, t2;
892 int Cflag = 0, qflag = 0;
893 int c, cnt;
894 char **buf;
895 int64_t offset, first_offset = 0;
896 /* Some compilers get confused and warn if this is not initialized. */
897 int total = 0;
898 int nr_iov;
899 int nr_reqs;
900 int pattern = 0xcd;
901 QEMUIOVector *qiovs;
902 int i;
903 BlockRequest *reqs;
905 while ((c = getopt(argc, argv, "CqP:")) != EOF) {
906 switch (c) {
907 case 'C':
908 Cflag = 1;
909 break;
910 case 'q':
911 qflag = 1;
912 break;
913 case 'P':
914 pattern = parse_pattern(optarg);
915 if (pattern < 0)
916 return 0;
917 break;
918 default:
919 return command_usage(&writev_cmd);
923 if (optind > argc - 2)
924 return command_usage(&writev_cmd);
926 nr_reqs = 1;
927 for (i = optind; i < argc; i++) {
928 if (!strcmp(argv[i], ";")) {
929 nr_reqs++;
933 reqs = qemu_malloc(nr_reqs * sizeof(*reqs));
934 buf = qemu_malloc(nr_reqs * sizeof(*buf));
935 qiovs = qemu_malloc(nr_reqs * sizeof(*qiovs));
937 for (i = 0; i < nr_reqs; i++) {
938 int j;
940 /* Read the offset of the request */
941 offset = cvtnum(argv[optind]);
942 if (offset < 0) {
943 printf("non-numeric offset argument -- %s\n", argv[optind]);
944 return 0;
946 optind++;
948 if (offset & 0x1ff) {
949 printf("offset %lld is not sector aligned\n",
950 (long long)offset);
951 return 0;
954 if (i == 0) {
955 first_offset = offset;
958 /* Read lengths for qiov entries */
959 for (j = optind; j < argc; j++) {
960 if (!strcmp(argv[j], ";")) {
961 break;
965 nr_iov = j - optind;
967 /* Build request */
968 reqs[i].qiov = &qiovs[i];
969 buf[i] = create_iovec(reqs[i].qiov, &argv[optind], nr_iov, pattern);
970 reqs[i].sector = offset >> 9;
971 reqs[i].nb_sectors = reqs[i].qiov->size >> 9;
973 optind = j + 1;
975 offset += reqs[i].qiov->size;
976 pattern++;
979 gettimeofday(&t1, NULL);
980 cnt = do_aio_multiwrite(reqs, nr_reqs, &total);
981 gettimeofday(&t2, NULL);
983 if (cnt < 0) {
984 printf("aio_multiwrite failed: %s\n", strerror(-cnt));
985 goto out;
988 if (qflag)
989 goto out;
991 /* Finally, report back -- -C gives a parsable format */
992 t2 = tsub(t2, t1);
993 print_report("wrote", &t2, first_offset, total, total, cnt, Cflag);
994 out:
995 for (i = 0; i < nr_reqs; i++) {
996 qemu_io_free(buf[i]);
997 qemu_iovec_destroy(&qiovs[i]);
999 qemu_free(buf);
1000 qemu_free(reqs);
1001 qemu_free(qiovs);
1002 return 0;
1005 struct aio_ctx {
1006 QEMUIOVector qiov;
1007 int64_t offset;
1008 char *buf;
1009 int qflag;
1010 int vflag;
1011 int Cflag;
1012 int Pflag;
1013 int pattern;
1014 struct timeval t1;
1017 static void
1018 aio_write_done(void *opaque, int ret)
1020 struct aio_ctx *ctx = opaque;
1021 struct timeval t2;
1023 gettimeofday(&t2, NULL);
1026 if (ret < 0) {
1027 printf("aio_write failed: %s\n", strerror(-ret));
1028 goto out;
1031 if (ctx->qflag) {
1032 goto out;
1035 /* Finally, report back -- -C gives a parsable format */
1036 t2 = tsub(t2, ctx->t1);
1037 print_report("wrote", &t2, ctx->offset, ctx->qiov.size,
1038 ctx->qiov.size, 1, ctx->Cflag);
1039 out:
1040 qemu_io_free(ctx->buf);
1041 free(ctx);
1044 static void
1045 aio_read_done(void *opaque, int ret)
1047 struct aio_ctx *ctx = opaque;
1048 struct timeval t2;
1050 gettimeofday(&t2, NULL);
1052 if (ret < 0) {
1053 printf("readv failed: %s\n", strerror(-ret));
1054 goto out;
1057 if (ctx->Pflag) {
1058 void *cmp_buf = malloc(ctx->qiov.size);
1060 memset(cmp_buf, ctx->pattern, ctx->qiov.size);
1061 if (memcmp(ctx->buf, cmp_buf, ctx->qiov.size)) {
1062 printf("Pattern verification failed at offset %"
1063 PRId64 ", %zd bytes\n",
1064 ctx->offset, ctx->qiov.size);
1066 free(cmp_buf);
1069 if (ctx->qflag) {
1070 goto out;
1073 if (ctx->vflag) {
1074 dump_buffer(ctx->buf, ctx->offset, ctx->qiov.size);
1077 /* Finally, report back -- -C gives a parsable format */
1078 t2 = tsub(t2, ctx->t1);
1079 print_report("read", &t2, ctx->offset, ctx->qiov.size,
1080 ctx->qiov.size, 1, ctx->Cflag);
1081 out:
1082 qemu_io_free(ctx->buf);
1083 free(ctx);
1086 static void
1087 aio_read_help(void)
1089 printf(
1090 "\n"
1091 " asynchronously reads a range of bytes from the given offset\n"
1092 "\n"
1093 " Example:\n"
1094 " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
1095 "\n"
1096 " Reads a segment of the currently open file, optionally dumping it to the\n"
1097 " standard output stream (with -v option) for subsequent inspection.\n"
1098 " The read is performed asynchronously and the aio_flush command must be\n"
1099 " used to ensure all outstanding aio requests have been completed\n"
1100 " -C, -- report statistics in a machine parsable format\n"
1101 " -P, -- use a pattern to verify read data\n"
1102 " -v, -- dump buffer to standard output\n"
1103 " -q, -- quite mode, do not show I/O statistics\n"
1104 "\n");
1107 static int aio_read_f(int argc, char **argv);
1109 static const cmdinfo_t aio_read_cmd = {
1110 .name = "aio_read",
1111 .cfunc = aio_read_f,
1112 .argmin = 2,
1113 .argmax = -1,
1114 .args = "[-Cqv] [-P pattern ] off len [len..]",
1115 .oneline = "asynchronously reads a number of bytes",
1116 .help = aio_read_help,
1119 static int
1120 aio_read_f(int argc, char **argv)
1122 int nr_iov, c;
1123 struct aio_ctx *ctx = calloc(1, sizeof(struct aio_ctx));
1124 BlockDriverAIOCB *acb;
1126 while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
1127 switch (c) {
1128 case 'C':
1129 ctx->Cflag = 1;
1130 break;
1131 case 'P':
1132 ctx->Pflag = 1;
1133 ctx->pattern = parse_pattern(optarg);
1134 if (ctx->pattern < 0)
1135 return 0;
1136 break;
1137 case 'q':
1138 ctx->qflag = 1;
1139 break;
1140 case 'v':
1141 ctx->vflag = 1;
1142 break;
1143 default:
1144 free(ctx);
1145 return command_usage(&aio_read_cmd);
1149 if (optind > argc - 2) {
1150 free(ctx);
1151 return command_usage(&aio_read_cmd);
1154 ctx->offset = cvtnum(argv[optind]);
1155 if (ctx->offset < 0) {
1156 printf("non-numeric length argument -- %s\n", argv[optind]);
1157 free(ctx);
1158 return 0;
1160 optind++;
1162 if (ctx->offset & 0x1ff) {
1163 printf("offset %" PRId64 " is not sector aligned\n",
1164 ctx->offset);
1165 free(ctx);
1166 return 0;
1169 nr_iov = argc - optind;
1170 ctx->buf = create_iovec(&ctx->qiov, &argv[optind], nr_iov, 0xab);
1172 gettimeofday(&ctx->t1, NULL);
1173 acb = bdrv_aio_readv(bs, ctx->offset >> 9, &ctx->qiov,
1174 ctx->qiov.size >> 9, aio_read_done, ctx);
1175 if (!acb) {
1176 free(ctx->buf);
1177 free(ctx);
1178 return -EIO;
1181 return 0;
1184 static void
1185 aio_write_help(void)
1187 printf(
1188 "\n"
1189 " asynchronously writes a range of bytes from the given offset source \n"
1190 " from multiple buffers\n"
1191 "\n"
1192 " Example:\n"
1193 " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1194 "\n"
1195 " Writes into a segment of the currently open file, using a buffer\n"
1196 " filled with a set pattern (0xcdcdcdcd).\n"
1197 " The write is performed asynchronously and the aio_flush command must be\n"
1198 " used to ensure all outstanding aio requests have been completed\n"
1199 " -P, -- use different pattern to fill file\n"
1200 " -C, -- report statistics in a machine parsable format\n"
1201 " -q, -- quite mode, do not show I/O statistics\n"
1202 "\n");
1205 static int aio_write_f(int argc, char **argv);
1207 static const cmdinfo_t aio_write_cmd = {
1208 .name = "aio_write",
1209 .cfunc = aio_write_f,
1210 .argmin = 2,
1211 .argmax = -1,
1212 .args = "[-Cq] [-P pattern ] off len [len..]",
1213 .oneline = "asynchronously writes a number of bytes",
1214 .help = aio_write_help,
1217 static int
1218 aio_write_f(int argc, char **argv)
1220 int nr_iov, c;
1221 int pattern = 0xcd;
1222 struct aio_ctx *ctx = calloc(1, sizeof(struct aio_ctx));
1223 BlockDriverAIOCB *acb;
1225 while ((c = getopt(argc, argv, "CqP:")) != EOF) {
1226 switch (c) {
1227 case 'C':
1228 ctx->Cflag = 1;
1229 break;
1230 case 'q':
1231 ctx->qflag = 1;
1232 break;
1233 case 'P':
1234 pattern = parse_pattern(optarg);
1235 if (pattern < 0)
1236 return 0;
1237 break;
1238 default:
1239 free(ctx);
1240 return command_usage(&aio_write_cmd);
1244 if (optind > argc - 2) {
1245 free(ctx);
1246 return command_usage(&aio_write_cmd);
1249 ctx->offset = cvtnum(argv[optind]);
1250 if (ctx->offset < 0) {
1251 printf("non-numeric length argument -- %s\n", argv[optind]);
1252 free(ctx);
1253 return 0;
1255 optind++;
1257 if (ctx->offset & 0x1ff) {
1258 printf("offset %" PRId64 " is not sector aligned\n",
1259 ctx->offset);
1260 free(ctx);
1261 return 0;
1264 nr_iov = argc - optind;
1265 ctx->buf = create_iovec(&ctx->qiov, &argv[optind], nr_iov, pattern);
1267 gettimeofday(&ctx->t1, NULL);
1268 acb = bdrv_aio_writev(bs, ctx->offset >> 9, &ctx->qiov,
1269 ctx->qiov.size >> 9, aio_write_done, ctx);
1270 if (!acb) {
1271 free(ctx->buf);
1272 free(ctx);
1273 return -EIO;
1276 return 0;
1279 static int
1280 aio_flush_f(int argc, char **argv)
1282 qemu_aio_flush();
1283 return 0;
1286 static const cmdinfo_t aio_flush_cmd = {
1287 .name = "aio_flush",
1288 .cfunc = aio_flush_f,
1289 .oneline = "completes all outstanding aio requests"
1292 static int
1293 flush_f(int argc, char **argv)
1295 bdrv_flush(bs);
1296 return 0;
1299 static const cmdinfo_t flush_cmd = {
1300 .name = "flush",
1301 .altname = "f",
1302 .cfunc = flush_f,
1303 .oneline = "flush all in-core file state to disk",
1306 static int
1307 truncate_f(int argc, char **argv)
1309 int64_t offset;
1310 int ret;
1312 offset = cvtnum(argv[1]);
1313 if (offset < 0) {
1314 printf("non-numeric truncate argument -- %s\n", argv[1]);
1315 return 0;
1318 ret = bdrv_truncate(bs, offset);
1319 if (ret < 0) {
1320 printf("truncate: %s\n", strerror(-ret));
1321 return 0;
1324 return 0;
1327 static const cmdinfo_t truncate_cmd = {
1328 .name = "truncate",
1329 .altname = "t",
1330 .cfunc = truncate_f,
1331 .argmin = 1,
1332 .argmax = 1,
1333 .args = "off",
1334 .oneline = "truncates the current file at the given offset",
1337 static int
1338 length_f(int argc, char **argv)
1340 int64_t size;
1341 char s1[64];
1343 size = bdrv_getlength(bs);
1344 if (size < 0) {
1345 printf("getlength: %s\n", strerror(-size));
1346 return 0;
1349 cvtstr(size, s1, sizeof(s1));
1350 printf("%s\n", s1);
1351 return 0;
1355 static const cmdinfo_t length_cmd = {
1356 .name = "length",
1357 .altname = "l",
1358 .cfunc = length_f,
1359 .oneline = "gets the length of the current file",
1363 static int
1364 info_f(int argc, char **argv)
1366 BlockDriverInfo bdi;
1367 char s1[64], s2[64];
1368 int ret;
1370 if (bs->drv && bs->drv->format_name)
1371 printf("format name: %s\n", bs->drv->format_name);
1372 if (bs->drv && bs->drv->protocol_name)
1373 printf("format name: %s\n", bs->drv->protocol_name);
1375 ret = bdrv_get_info(bs, &bdi);
1376 if (ret)
1377 return 0;
1379 cvtstr(bdi.cluster_size, s1, sizeof(s1));
1380 cvtstr(bdi.vm_state_offset, s2, sizeof(s2));
1382 printf("cluster size: %s\n", s1);
1383 printf("vm state offset: %s\n", s2);
1385 return 0;
1390 static const cmdinfo_t info_cmd = {
1391 .name = "info",
1392 .altname = "i",
1393 .cfunc = info_f,
1394 .oneline = "prints information about the current file",
1397 static int
1398 alloc_f(int argc, char **argv)
1400 int64_t offset;
1401 int nb_sectors, remaining;
1402 char s1[64];
1403 int num, sum_alloc;
1404 int ret;
1406 offset = cvtnum(argv[1]);
1407 if (offset & 0x1ff) {
1408 printf("offset %" PRId64 " is not sector aligned\n",
1409 offset);
1410 return 0;
1413 if (argc == 3)
1414 nb_sectors = cvtnum(argv[2]);
1415 else
1416 nb_sectors = 1;
1418 remaining = nb_sectors;
1419 sum_alloc = 0;
1420 while (remaining) {
1421 ret = bdrv_is_allocated(bs, offset >> 9, nb_sectors, &num);
1422 remaining -= num;
1423 if (ret) {
1424 sum_alloc += num;
1428 cvtstr(offset, s1, sizeof(s1));
1430 printf("%d/%d sectors allocated at offset %s\n",
1431 sum_alloc, nb_sectors, s1);
1432 return 0;
1435 static const cmdinfo_t alloc_cmd = {
1436 .name = "alloc",
1437 .altname = "a",
1438 .argmin = 1,
1439 .argmax = 2,
1440 .cfunc = alloc_f,
1441 .args = "off [sectors]",
1442 .oneline = "checks if a sector is present in the file",
1445 static int
1446 map_f(int argc, char **argv)
1448 int64_t offset;
1449 int64_t nb_sectors;
1450 char s1[64];
1451 int num, num_checked;
1452 int ret;
1453 const char *retstr;
1455 offset = 0;
1456 nb_sectors = bs->total_sectors;
1458 do {
1459 num_checked = MIN(nb_sectors, INT_MAX);
1460 ret = bdrv_is_allocated(bs, offset, num_checked, &num);
1461 retstr = ret ? " allocated" : "not allocated";
1462 cvtstr(offset << 9ULL, s1, sizeof(s1));
1463 printf("[% 24" PRId64 "] % 8d/% 8d sectors %s at offset %s (%d)\n",
1464 offset << 9ULL, num, num_checked, retstr, s1, ret);
1466 offset += num;
1467 nb_sectors -= num;
1468 } while(offset < bs->total_sectors);
1470 return 0;
1473 static const cmdinfo_t map_cmd = {
1474 .name = "map",
1475 .argmin = 0,
1476 .argmax = 0,
1477 .cfunc = map_f,
1478 .args = "",
1479 .oneline = "prints the allocated areas of a file",
1483 static int
1484 close_f(int argc, char **argv)
1486 bdrv_close(bs);
1487 bs = NULL;
1488 return 0;
1491 static const cmdinfo_t close_cmd = {
1492 .name = "close",
1493 .altname = "c",
1494 .cfunc = close_f,
1495 .oneline = "close the current open file",
1498 static int openfile(char *name, int flags, int growable)
1500 if (bs) {
1501 fprintf(stderr, "file open already, try 'help close'\n");
1502 return 1;
1505 if (growable) {
1506 if (bdrv_file_open(&bs, name, flags)) {
1507 fprintf(stderr, "%s: can't open device %s\n", progname, name);
1508 return 1;
1510 } else {
1511 bs = bdrv_new("hda");
1512 if (!bs)
1513 return 1;
1515 if (bdrv_open(bs, name, flags, NULL) < 0) {
1516 fprintf(stderr, "%s: can't open device %s\n", progname, name);
1517 bs = NULL;
1518 return 1;
1522 return 0;
1525 static void
1526 open_help(void)
1528 printf(
1529 "\n"
1530 " opens a new file in the requested mode\n"
1531 "\n"
1532 " Example:\n"
1533 " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
1534 "\n"
1535 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
1536 " -r, -- open file read-only\n"
1537 " -s, -- use snapshot file\n"
1538 " -n, -- disable host cache\n"
1539 " -g, -- allow file to grow (only applies to protocols)"
1540 "\n");
1543 static int open_f(int argc, char **argv);
1545 static const cmdinfo_t open_cmd = {
1546 .name = "open",
1547 .altname = "o",
1548 .cfunc = open_f,
1549 .argmin = 1,
1550 .argmax = -1,
1551 .flags = CMD_NOFILE_OK,
1552 .args = "[-Crsn] [path]",
1553 .oneline = "open the file specified by path",
1554 .help = open_help,
1557 static int
1558 open_f(int argc, char **argv)
1560 int flags = 0;
1561 int readonly = 0;
1562 int growable = 0;
1563 int c;
1565 while ((c = getopt(argc, argv, "snrg")) != EOF) {
1566 switch (c) {
1567 case 's':
1568 flags |= BDRV_O_SNAPSHOT;
1569 break;
1570 case 'n':
1571 flags |= BDRV_O_NOCACHE;
1572 break;
1573 case 'r':
1574 readonly = 1;
1575 break;
1576 case 'g':
1577 growable = 1;
1578 break;
1579 default:
1580 return command_usage(&open_cmd);
1584 if (!readonly) {
1585 flags |= BDRV_O_RDWR;
1588 if (optind != argc - 1)
1589 return command_usage(&open_cmd);
1591 return openfile(argv[optind], flags, growable);
1594 static int
1595 init_args_command(
1596 int index)
1598 /* only one device allowed so far */
1599 if (index >= 1)
1600 return 0;
1601 return ++index;
1604 static int
1605 init_check_command(
1606 const cmdinfo_t *ct)
1608 if (ct->flags & CMD_FLAG_GLOBAL)
1609 return 1;
1610 if (!(ct->flags & CMD_NOFILE_OK) && !bs) {
1611 fprintf(stderr, "no file open, try 'help open'\n");
1612 return 0;
1614 return 1;
1617 static void usage(const char *name)
1619 printf(
1620 "Usage: %s [-h] [-V] [-rsnm] [-c cmd] ... [file]\n"
1621 "QEMU Disk exerciser\n"
1622 "\n"
1623 " -c, --cmd command to execute\n"
1624 " -r, --read-only export read-only\n"
1625 " -s, --snapshot use snapshot file\n"
1626 " -n, --nocache disable host cache\n"
1627 " -g, --growable allow file to grow (only applies to protocols)\n"
1628 " -m, --misalign misalign allocations for O_DIRECT\n"
1629 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
1630 " -h, --help display this help and exit\n"
1631 " -V, --version output version information and exit\n"
1632 "\n",
1633 name);
1637 int main(int argc, char **argv)
1639 int readonly = 0;
1640 int growable = 0;
1641 const char *sopt = "hVc:rsnmgk";
1642 const struct option lopt[] = {
1643 { "help", 0, NULL, 'h' },
1644 { "version", 0, NULL, 'V' },
1645 { "offset", 1, NULL, 'o' },
1646 { "cmd", 1, NULL, 'c' },
1647 { "read-only", 0, NULL, 'r' },
1648 { "snapshot", 0, NULL, 's' },
1649 { "nocache", 0, NULL, 'n' },
1650 { "misalign", 0, NULL, 'm' },
1651 { "growable", 0, NULL, 'g' },
1652 { "native-aio", 0, NULL, 'k' },
1653 { NULL, 0, NULL, 0 }
1655 int c;
1656 int opt_index = 0;
1657 int flags = 0;
1659 progname = basename(argv[0]);
1661 while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
1662 switch (c) {
1663 case 's':
1664 flags |= BDRV_O_SNAPSHOT;
1665 break;
1666 case 'n':
1667 flags |= BDRV_O_NOCACHE;
1668 break;
1669 case 'c':
1670 add_user_command(optarg);
1671 break;
1672 case 'r':
1673 readonly = 1;
1674 break;
1675 case 'm':
1676 misalign = 1;
1677 break;
1678 case 'g':
1679 growable = 1;
1680 break;
1681 case 'k':
1682 flags |= BDRV_O_NATIVE_AIO;
1683 break;
1684 case 'V':
1685 printf("%s version %s\n", progname, VERSION);
1686 exit(0);
1687 case 'h':
1688 usage(progname);
1689 exit(0);
1690 default:
1691 usage(progname);
1692 exit(1);
1696 if ((argc - optind) > 1) {
1697 usage(progname);
1698 exit(1);
1701 bdrv_init();
1703 /* initialize commands */
1704 quit_init();
1705 help_init();
1706 add_command(&open_cmd);
1707 add_command(&close_cmd);
1708 add_command(&read_cmd);
1709 add_command(&readv_cmd);
1710 add_command(&write_cmd);
1711 add_command(&writev_cmd);
1712 add_command(&multiwrite_cmd);
1713 add_command(&aio_read_cmd);
1714 add_command(&aio_write_cmd);
1715 add_command(&aio_flush_cmd);
1716 add_command(&flush_cmd);
1717 add_command(&truncate_cmd);
1718 add_command(&length_cmd);
1719 add_command(&info_cmd);
1720 add_command(&alloc_cmd);
1721 add_command(&map_cmd);
1723 add_args_command(init_args_command);
1724 add_check_command(init_check_command);
1726 /* open the device */
1727 if (!readonly) {
1728 flags |= BDRV_O_RDWR;
1731 if ((argc - optind) == 1)
1732 openfile(argv[optind], flags, growable);
1733 command_loop();
1736 * Make sure all outstanding requests get flushed the program exits.
1738 qemu_aio_flush();
1740 if (bs)
1741 bdrv_close(bs);
1742 return 0;