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.
11 #include <sys/types.h>
17 #include "qemu-common.h"
18 #include "block_int.h"
21 #define VERSION "0.0.1"
23 #define CMD_NOFILE_OK 0x01
26 static BlockDriverState
*bs
;
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
)
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
);
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
)
63 len
+= MISALIGN_OFFSET
;
64 buf
= qemu_memalign(512, len
);
65 memset(buf
, pattern
, len
);
67 buf
+= MISALIGN_OFFSET
;
71 static void qemu_io_free(void *p
)
79 dump_buffer(const void *buffer
, int64_t offset
, int len
)
84 for (i
= 0, p
= buffer
; i
< len
; i
+= 16) {
87 printf("%08llx: ", (unsigned long long)offset
+ i
);
88 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, p
++)
91 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, s
++) {
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);
109 cvtstr((double)total
, s1
, sizeof(s1
));
110 cvtstr(tdiv((double)total
, *t
), s2
, sizeof(s2
));
111 printf("%s %d/%d bytes at offset %lld\n",
112 op
, total
, count
, (long long)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",
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.
128 create_iovec(QEMUIOVector
*qiov
, char **argv
, int nr_iov
, int pattern
)
130 size_t *sizes
= calloc(nr_iov
, sizeof(size_t));
136 for (i
= 0; i
< nr_iov
; i
++) {
142 printf("non-numeric length argument -- %s\n", arg
);
146 /* should be SIZE_T_MAX, but that doesn't exist */
147 if (len
> UINT_MAX
) {
148 printf("too large length argument -- %s\n", arg
);
153 printf("length argument %lld is not sector aligned\n",
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
]);
176 static int do_read(char *buf
, int64_t offset
, int count
, int *total
)
180 ret
= bdrv_read(bs
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
187 static int do_write(char *buf
, int64_t offset
, int count
, int *total
)
191 ret
= bdrv_write(bs
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
198 static int do_pread(char *buf
, int64_t offset
, int count
, int *total
)
200 *total
= bdrv_pread(bs
, offset
, (uint8_t *)buf
, count
);
206 static int do_pwrite(char *buf
, int64_t offset
, int count
, int *total
)
208 *total
= bdrv_pwrite(bs
, offset
, (uint8_t *)buf
, count
);
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
);
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
);
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
);
246 while (async_ret
== NOT_DONE
)
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
);
263 while (async_ret
== NOT_DONE
)
267 return async_ret
< 0 ? async_ret
: 1;
276 " reads a range of bytes from the given offset\n"
279 " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
281 " Reads a segment of the currently open file, optionally dumping it to the\n"
282 " standard output stream (with -v option) for subsequent inspection.\n"
283 " -b, -- read from the VM state rather than the virtual disk\n"
284 " -C, -- report statistics in a machine parsable format\n"
285 " -l, -- length for pattern verification (only with -P)\n"
286 " -p, -- use bdrv_pread to read the file\n"
287 " -P, -- use a pattern to verify read data\n"
288 " -q, -- quite mode, do not show I/O statistics\n"
289 " -s, -- start offset for pattern verification (only with -P)\n"
290 " -v, -- dump buffer to standard output\n"
294 static int read_f(int argc
, char **argv
);
296 static const cmdinfo_t read_cmd
= {
302 .args
= "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
303 .oneline
= "reads a number of bytes at a specified offset",
308 read_f(int argc
, char **argv
)
310 struct timeval t1
, t2
;
311 int Cflag
= 0, pflag
= 0, qflag
= 0, vflag
= 0;
312 int Pflag
= 0, sflag
= 0, lflag
= 0, bflag
= 0;
317 /* Some compilers get confused and warn if this is not initialized. */
319 int pattern
= 0, pattern_offset
= 0, pattern_count
= 0;
321 while ((c
= getopt(argc
, argv
, "bCl:pP:qs:v")) != EOF
) {
331 pattern_count
= cvtnum(optarg
);
332 if (pattern_count
< 0) {
333 printf("non-numeric length argument -- %s\n", optarg
);
342 pattern
= parse_pattern(optarg
);
351 pattern_offset
= cvtnum(optarg
);
352 if (pattern_offset
< 0) {
353 printf("non-numeric length argument -- %s\n", optarg
);
361 return command_usage(&read_cmd
);
365 if (optind
!= argc
- 2)
366 return command_usage(&read_cmd
);
368 if (bflag
&& pflag
) {
369 printf("-b and -p cannot be specified at the same time\n");
373 offset
= cvtnum(argv
[optind
]);
375 printf("non-numeric length argument -- %s\n", argv
[optind
]);
380 count
= cvtnum(argv
[optind
]);
382 printf("non-numeric length argument -- %s\n", argv
[optind
]);
386 if (!Pflag
&& (lflag
|| sflag
)) {
387 return command_usage(&read_cmd
);
391 pattern_count
= count
- pattern_offset
;
394 if ((pattern_count
< 0) || (pattern_count
+ pattern_offset
> count
)) {
395 printf("pattern verfication range exceeds end of read data\n");
400 if (offset
& 0x1ff) {
401 printf("offset %lld is not sector aligned\n",
406 printf("count %d is not sector aligned\n",
412 buf
= qemu_io_alloc(count
, 0xab);
414 gettimeofday(&t1
, NULL
);
416 cnt
= do_pread(buf
, offset
, count
, &total
);
418 cnt
= do_load_vmstate(buf
, offset
, count
, &total
);
420 cnt
= do_read(buf
, offset
, count
, &total
);
421 gettimeofday(&t2
, NULL
);
424 printf("read failed: %s\n", strerror(-cnt
));
429 void* cmp_buf
= malloc(pattern_count
);
430 memset(cmp_buf
, pattern
, pattern_count
);
431 if (memcmp(buf
+ pattern_offset
, cmp_buf
, pattern_count
)) {
432 printf("Pattern verification failed at offset %lld, "
434 (long long) offset
+ pattern_offset
, pattern_count
);
443 dump_buffer(buf
, offset
, count
);
445 /* Finally, report back -- -C gives a parsable format */
447 print_report("read", &t2
, offset
, count
, total
, cnt
, Cflag
);
460 " reads a range of bytes from the given offset into multiple buffers\n"
463 " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
465 " Reads a segment of the currently open file, optionally dumping it to the\n"
466 " standard output stream (with -v option) for subsequent inspection.\n"
467 " Uses multiple iovec buffers if more than one byte range is specified.\n"
468 " -C, -- report statistics in a machine parsable format\n"
469 " -P, -- use a pattern to verify read data\n"
470 " -v, -- dump buffer to standard output\n"
471 " -q, -- quite mode, do not show I/O statistics\n"
475 static int readv_f(int argc
, char **argv
);
477 static const cmdinfo_t readv_cmd
= {
482 .args
= "[-Cqv] [-P pattern ] off len [len..]",
483 .oneline
= "reads a number of bytes at a specified offset",
488 readv_f(int argc
, char **argv
)
490 struct timeval t1
, t2
;
491 int Cflag
= 0, qflag
= 0, vflag
= 0;
501 while ((c
= getopt(argc
, argv
, "CP:qv")) != EOF
) {
508 pattern
= parse_pattern(optarg
);
519 return command_usage(&readv_cmd
);
523 if (optind
> argc
- 2)
524 return command_usage(&readv_cmd
);
527 offset
= cvtnum(argv
[optind
]);
529 printf("non-numeric length argument -- %s\n", argv
[optind
]);
534 if (offset
& 0x1ff) {
535 printf("offset %lld is not sector aligned\n",
540 nr_iov
= argc
- optind
;
541 buf
= create_iovec(&qiov
, &argv
[optind
], nr_iov
, 0xab);
543 gettimeofday(&t1
, NULL
);
544 cnt
= do_aio_readv(&qiov
, offset
, &total
);
545 gettimeofday(&t2
, NULL
);
548 printf("readv failed: %s\n", strerror(-cnt
));
553 void* cmp_buf
= malloc(qiov
.size
);
554 memset(cmp_buf
, pattern
, qiov
.size
);
555 if (memcmp(buf
, cmp_buf
, qiov
.size
)) {
556 printf("Pattern verification failed at offset %lld, "
558 (long long) offset
, qiov
.size
);
567 dump_buffer(buf
, offset
, qiov
.size
);
569 /* Finally, report back -- -C gives a parsable format */
571 print_report("read", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
583 " writes a range of bytes from the given offset\n"
586 " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
588 " Writes into a segment of the currently open file, using a buffer\n"
589 " filled with a set pattern (0xcdcdcdcd).\n"
590 " -b, -- write to the VM state rather than the virtual disk\n"
591 " -p, -- use bdrv_pwrite to write the file\n"
592 " -P, -- use different pattern to fill file\n"
593 " -C, -- report statistics in a machine parsable format\n"
594 " -q, -- quite mode, do not show I/O statistics\n"
598 static int write_f(int argc
, char **argv
);
600 static const cmdinfo_t write_cmd
= {
606 .args
= "[-abCpq] [-P pattern ] off len",
607 .oneline
= "writes a number of bytes at a specified offset",
612 write_f(int argc
, char **argv
)
614 struct timeval t1
, t2
;
615 int Cflag
= 0, pflag
= 0, qflag
= 0, bflag
= 0;
620 /* Some compilers get confused and warn if this is not initialized. */
624 while ((c
= getopt(argc
, argv
, "bCpP:q")) != EOF
) {
636 pattern
= parse_pattern(optarg
);
644 return command_usage(&write_cmd
);
648 if (optind
!= argc
- 2)
649 return command_usage(&write_cmd
);
651 if (bflag
&& pflag
) {
652 printf("-b and -p cannot be specified at the same time\n");
656 offset
= cvtnum(argv
[optind
]);
658 printf("non-numeric length argument -- %s\n", argv
[optind
]);
663 count
= cvtnum(argv
[optind
]);
665 printf("non-numeric length argument -- %s\n", argv
[optind
]);
670 if (offset
& 0x1ff) {
671 printf("offset %lld is not sector aligned\n",
677 printf("count %d is not sector aligned\n",
683 buf
= qemu_io_alloc(count
, pattern
);
685 gettimeofday(&t1
, NULL
);
687 cnt
= do_pwrite(buf
, offset
, count
, &total
);
689 cnt
= do_save_vmstate(buf
, offset
, count
, &total
);
691 cnt
= do_write(buf
, offset
, count
, &total
);
692 gettimeofday(&t2
, NULL
);
695 printf("write failed: %s\n", strerror(-cnt
));
702 /* Finally, report back -- -C gives a parsable format */
704 print_report("wrote", &t2
, offset
, count
, total
, cnt
, Cflag
);
717 " writes a range of bytes from the given offset source from multiple buffers\n"
720 " 'write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
722 " Writes into a segment of the currently open file, using a buffer\n"
723 " filled with a set pattern (0xcdcdcdcd).\n"
724 " -P, -- use different pattern to fill file\n"
725 " -C, -- report statistics in a machine parsable format\n"
726 " -q, -- quite mode, do not show I/O statistics\n"
730 static int writev_f(int argc
, char **argv
);
732 static const cmdinfo_t writev_cmd
= {
737 .args
= "[-Cq] [-P pattern ] off len [len..]",
738 .oneline
= "writes a number of bytes at a specified offset",
743 writev_f(int argc
, char **argv
)
745 struct timeval t1
, t2
;
746 int Cflag
= 0, qflag
= 0;
755 while ((c
= getopt(argc
, argv
, "CqP:")) != EOF
) {
764 pattern
= parse_pattern(optarg
);
769 return command_usage(&writev_cmd
);
773 if (optind
> argc
- 2)
774 return command_usage(&writev_cmd
);
776 offset
= cvtnum(argv
[optind
]);
778 printf("non-numeric length argument -- %s\n", argv
[optind
]);
783 if (offset
& 0x1ff) {
784 printf("offset %lld is not sector aligned\n",
789 nr_iov
= argc
- optind
;
790 buf
= create_iovec(&qiov
, &argv
[optind
], nr_iov
, pattern
);
792 gettimeofday(&t1
, NULL
);
793 cnt
= do_aio_writev(&qiov
, offset
, &total
);
794 gettimeofday(&t2
, NULL
);
797 printf("writev failed: %s\n", strerror(-cnt
));
804 /* Finally, report back -- -C gives a parsable format */
806 print_report("wrote", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
825 aio_write_done(void *opaque
, int ret
)
827 struct aio_ctx
*ctx
= opaque
;
830 gettimeofday(&t2
, NULL
);
834 printf("aio_write failed: %s\n", strerror(-ret
));
842 /* Finally, report back -- -C gives a parsable format */
843 t2
= tsub(t2
, ctx
->t1
);
844 print_report("wrote", &t2
, ctx
->offset
, ctx
->qiov
.size
,
845 ctx
->qiov
.size
, 1, ctx
->Cflag
);
847 qemu_io_free(ctx
->buf
);
852 aio_read_done(void *opaque
, int ret
)
854 struct aio_ctx
*ctx
= opaque
;
857 gettimeofday(&t2
, NULL
);
860 printf("readv failed: %s\n", strerror(-ret
));
865 void *cmp_buf
= malloc(ctx
->qiov
.size
);
867 memset(cmp_buf
, ctx
->pattern
, ctx
->qiov
.size
);
868 if (memcmp(ctx
->buf
, cmp_buf
, ctx
->qiov
.size
)) {
869 printf("Pattern verification failed at offset %lld, "
871 (long long) ctx
->offset
, ctx
->qiov
.size
);
881 dump_buffer(ctx
->buf
, ctx
->offset
, ctx
->qiov
.size
);
884 /* Finally, report back -- -C gives a parsable format */
885 t2
= tsub(t2
, ctx
->t1
);
886 print_report("read", &t2
, ctx
->offset
, ctx
->qiov
.size
,
887 ctx
->qiov
.size
, 1, ctx
->Cflag
);
889 qemu_io_free(ctx
->buf
);
898 " asynchronously reads a range of bytes from the given offset\n"
901 " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
903 " Reads a segment of the currently open file, optionally dumping it to the\n"
904 " standard output stream (with -v option) for subsequent inspection.\n"
905 " The read is performed asynchronously and should the aio_flush command \n"
906 " should be used to ensure all outstanding aio requests have been completed\n"
907 " -C, -- report statistics in a machine parsable format\n"
908 " -P, -- use a pattern to verify read data\n"
909 " -v, -- dump buffer to standard output\n"
910 " -q, -- quite mode, do not show I/O statistics\n"
914 static int aio_read_f(int argc
, char **argv
);
916 static const cmdinfo_t aio_read_cmd
= {
921 .args
= "[-Cqv] [-P pattern ] off len [len..]",
922 .oneline
= "asynchronously reads a number of bytes",
923 .help
= aio_read_help
,
927 aio_read_f(int argc
, char **argv
)
930 struct aio_ctx
*ctx
= calloc(1, sizeof(struct aio_ctx
));
931 BlockDriverAIOCB
*acb
;
933 while ((c
= getopt(argc
, argv
, "CP:qv")) != EOF
) {
940 ctx
->pattern
= parse_pattern(optarg
);
941 if (ctx
->pattern
< 0)
952 return command_usage(&aio_read_cmd
);
956 if (optind
> argc
- 2) {
958 return command_usage(&aio_read_cmd
);
961 ctx
->offset
= cvtnum(argv
[optind
]);
962 if (ctx
->offset
< 0) {
963 printf("non-numeric length argument -- %s\n", argv
[optind
]);
969 if (ctx
->offset
& 0x1ff) {
970 printf("offset %lld is not sector aligned\n",
971 (long long)ctx
->offset
);
976 nr_iov
= argc
- optind
;
977 ctx
->buf
= create_iovec(&ctx
->qiov
, &argv
[optind
], nr_iov
, 0xab);
979 gettimeofday(&ctx
->t1
, NULL
);
980 acb
= bdrv_aio_readv(bs
, ctx
->offset
>> 9, &ctx
->qiov
,
981 ctx
->qiov
.size
>> 9, aio_read_done
, ctx
);
996 " asynchronously writes a range of bytes from the given offset source \n"
997 " from multiple buffers\n"
1000 " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1002 " Writes into a segment of the currently open file, using a buffer\n"
1003 " filled with a set pattern (0xcdcdcdcd).\n"
1004 " The write is performed asynchronously and should the aio_flush command \n"
1005 " should be used to ensure all outstanding aio requests have been completed\n"
1006 " -P, -- use different pattern to fill file\n"
1007 " -C, -- report statistics in a machine parsable format\n"
1008 " -q, -- quite mode, do not show I/O statistics\n"
1012 static int aio_write_f(int argc
, char **argv
);
1014 static const cmdinfo_t aio_write_cmd
= {
1015 .name
= "aio_write",
1016 .cfunc
= aio_write_f
,
1019 .args
= "[-Cq] [-P pattern ] off len [len..]",
1020 .oneline
= "asynchronously writes a number of bytes",
1021 .help
= aio_write_help
,
1025 aio_write_f(int argc
, char **argv
)
1029 struct aio_ctx
*ctx
= calloc(1, sizeof(struct aio_ctx
));
1030 BlockDriverAIOCB
*acb
;
1032 while ((c
= getopt(argc
, argv
, "CqP:")) != EOF
) {
1041 pattern
= parse_pattern(optarg
);
1047 return command_usage(&aio_write_cmd
);
1051 if (optind
> argc
- 2) {
1053 return command_usage(&aio_write_cmd
);
1056 ctx
->offset
= cvtnum(argv
[optind
]);
1057 if (ctx
->offset
< 0) {
1058 printf("non-numeric length argument -- %s\n", argv
[optind
]);
1064 if (ctx
->offset
& 0x1ff) {
1065 printf("offset %lld is not sector aligned\n",
1066 (long long)ctx
->offset
);
1071 nr_iov
= argc
- optind
;
1072 ctx
->buf
= create_iovec(&ctx
->qiov
, &argv
[optind
], nr_iov
, pattern
);
1074 gettimeofday(&ctx
->t1
, NULL
);
1075 acb
= bdrv_aio_writev(bs
, ctx
->offset
>> 9, &ctx
->qiov
,
1076 ctx
->qiov
.size
>> 9, aio_write_done
, ctx
);
1087 aio_flush_f(int argc
, char **argv
)
1093 static const cmdinfo_t aio_flush_cmd
= {
1094 .name
= "aio_flush",
1095 .cfunc
= aio_flush_f
,
1096 .oneline
= "completes all outstanding aio requets"
1100 flush_f(int argc
, char **argv
)
1106 static const cmdinfo_t flush_cmd
= {
1110 .oneline
= "flush all in-core file state to disk",
1114 truncate_f(int argc
, char **argv
)
1119 offset
= cvtnum(argv
[1]);
1121 printf("non-numeric truncate argument -- %s\n", argv
[1]);
1125 ret
= bdrv_truncate(bs
, offset
);
1127 printf("truncate: %s", strerror(ret
));
1134 static const cmdinfo_t truncate_cmd
= {
1137 .cfunc
= truncate_f
,
1141 .oneline
= "truncates the current file at the given offset",
1145 length_f(int argc
, char **argv
)
1150 size
= bdrv_getlength(bs
);
1152 printf("getlength: %s", strerror(size
));
1156 cvtstr(size
, s1
, sizeof(s1
));
1162 static const cmdinfo_t length_cmd
= {
1166 .oneline
= "gets the length of the current file",
1171 info_f(int argc
, char **argv
)
1173 BlockDriverInfo bdi
;
1174 char s1
[64], s2
[64];
1177 if (bs
->drv
&& bs
->drv
->format_name
)
1178 printf("format name: %s\n", bs
->drv
->format_name
);
1179 if (bs
->drv
&& bs
->drv
->protocol_name
)
1180 printf("format name: %s\n", bs
->drv
->protocol_name
);
1182 ret
= bdrv_get_info(bs
, &bdi
);
1186 cvtstr(bdi
.cluster_size
, s1
, sizeof(s1
));
1187 cvtstr(bdi
.vm_state_offset
, s2
, sizeof(s2
));
1189 printf("cluster size: %s\n", s1
);
1190 printf("vm state offset: %s\n", s2
);
1197 static const cmdinfo_t info_cmd
= {
1201 .oneline
= "prints information about the current file",
1205 alloc_f(int argc
, char **argv
)
1208 int nb_sectors
, remaining
;
1213 offset
= cvtnum(argv
[1]);
1214 if (offset
& 0x1ff) {
1215 printf("offset %lld is not sector aligned\n",
1221 nb_sectors
= cvtnum(argv
[2]);
1225 remaining
= nb_sectors
;
1228 ret
= bdrv_is_allocated(bs
, offset
>> 9, nb_sectors
, &num
);
1235 cvtstr(offset
, s1
, sizeof(s1
));
1237 if (nb_sectors
== 1)
1238 printf("sector allocated at offset %s\n", s1
);
1240 printf("%d/%d sectors allocated at offset %s\n",
1241 sum_alloc
, nb_sectors
, s1
);
1245 static const cmdinfo_t alloc_cmd
= {
1251 .args
= "off [sectors]",
1252 .oneline
= "checks if a sector is present in the file",
1256 close_f(int argc
, char **argv
)
1263 static const cmdinfo_t close_cmd
= {
1267 .oneline
= "close the current open file",
1270 static int openfile(char *name
, int flags
, int growable
)
1273 fprintf(stderr
, "file open already, try 'help close'\n");
1277 bs
= bdrv_new("hda");
1282 flags
|= BDRV_O_FILE
;
1285 if (bdrv_open(bs
, name
, flags
) == -1) {
1286 fprintf(stderr
, "%s: can't open device %s\n", progname
, name
);
1302 " opens a new file in the requested mode\n"
1305 " 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
1307 " Opens a file for subsequent use by all of the other qemu-io commands.\n"
1308 " -C, -- create new file if it doesn't exist\n"
1309 " -r, -- open file read-only\n"
1310 " -s, -- use snapshot file\n"
1311 " -n, -- disable host cache\n"
1312 " -g, -- allow file to grow (only applies to protocols)"
1316 static int open_f(int argc
, char **argv
);
1318 static const cmdinfo_t open_cmd
= {
1324 .flags
= CMD_NOFILE_OK
,
1325 .args
= "[-Crsn] [path]",
1326 .oneline
= "open the file specified by path",
1331 open_f(int argc
, char **argv
)
1338 while ((c
= getopt(argc
, argv
, "snCrg")) != EOF
) {
1341 flags
|= BDRV_O_SNAPSHOT
;
1344 flags
|= BDRV_O_NOCACHE
;
1347 flags
|= BDRV_O_CREAT
;
1356 return command_usage(&open_cmd
);
1361 flags
|= BDRV_O_RDONLY
;
1363 flags
|= BDRV_O_RDWR
;
1365 if (optind
!= argc
- 1)
1366 return command_usage(&open_cmd
);
1368 return openfile(argv
[optind
], flags
, growable
);
1375 /* only one device allowed so far */
1383 const cmdinfo_t
*ct
)
1385 if (ct
->flags
& CMD_FLAG_GLOBAL
)
1387 if (!(ct
->flags
& CMD_NOFILE_OK
) && !bs
) {
1388 fprintf(stderr
, "no file open, try 'help open'\n");
1394 static void usage(const char *name
)
1397 "Usage: %s [-h] [-V] [-Crsnm] [-c cmd] ... [file]\n"
1398 "QEMU Disk exerciser\n"
1400 " -C, --create create new file if it doesn't exist\n"
1401 " -c, --cmd command to execute\n"
1402 " -r, --read-only export read-only\n"
1403 " -s, --snapshot use snapshot file\n"
1404 " -n, --nocache disable host cache\n"
1405 " -g, --growable allow file to grow (only applies to protocols)\n"
1406 " -m, --misalign misalign allocations for O_DIRECT\n"
1407 " -k, --native-aio use kernel AIO implementation (on Linux only)\n"
1408 " -h, --help display this help and exit\n"
1409 " -V, --version output version information and exit\n"
1415 int main(int argc
, char **argv
)
1419 const char *sopt
= "hVc:Crsnmgk";
1420 struct option lopt
[] = {
1421 { "help", 0, NULL
, 'h' },
1422 { "version", 0, NULL
, 'V' },
1423 { "offset", 1, NULL
, 'o' },
1424 { "cmd", 1, NULL
, 'c' },
1425 { "create", 0, NULL
, 'C' },
1426 { "read-only", 0, NULL
, 'r' },
1427 { "snapshot", 0, NULL
, 's' },
1428 { "nocache", 0, NULL
, 'n' },
1429 { "misalign", 0, NULL
, 'm' },
1430 { "growable", 0, NULL
, 'g' },
1431 { "native-aio", 0, NULL
, 'k' },
1432 { NULL
, 0, NULL
, 0 }
1438 progname
= basename(argv
[0]);
1440 while ((c
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_index
)) != -1) {
1443 flags
|= BDRV_O_SNAPSHOT
;
1446 flags
|= BDRV_O_NOCACHE
;
1449 add_user_command(optarg
);
1452 flags
|= BDRV_O_CREAT
;
1464 flags
|= BDRV_O_NATIVE_AIO
;
1467 printf("%s version %s\n", progname
, VERSION
);
1478 if ((argc
- optind
) > 1) {
1485 /* initialize commands */
1488 add_command(&open_cmd
);
1489 add_command(&close_cmd
);
1490 add_command(&read_cmd
);
1491 add_command(&readv_cmd
);
1492 add_command(&write_cmd
);
1493 add_command(&writev_cmd
);
1494 add_command(&aio_read_cmd
);
1495 add_command(&aio_write_cmd
);
1496 add_command(&aio_flush_cmd
);
1497 add_command(&flush_cmd
);
1498 add_command(&truncate_cmd
);
1499 add_command(&length_cmd
);
1500 add_command(&info_cmd
);
1501 add_command(&alloc_cmd
);
1503 add_args_command(init_args_command
);
1504 add_check_command(init_check_command
);
1506 /* open the device */
1508 flags
|= BDRV_O_RDONLY
;
1510 flags
|= BDRV_O_RDWR
;
1512 if ((argc
- optind
) == 1)
1513 openfile(argv
[optind
], flags
, growable
);
1517 * Make sure all outstanding requests get flushed the program exits.