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 "qemu/osdep.h"
12 #include "qapi/error.h"
14 #include "sysemu/block-backend.h"
15 #include "block/block.h"
16 #include "block/block_int.h" /* for info_f() */
17 #include "block/qapi.h"
18 #include "qemu/error-report.h"
19 #include "qemu/main-loop.h"
20 #include "qemu/timer.h"
21 #include "sysemu/block-backend.h"
22 #include "qemu/cutils.h"
24 #define CMD_NOFILE_OK 0x01
28 static cmdinfo_t
*cmdtab
;
31 static int compare_cmdname(const void *a
, const void *b
)
33 return strcmp(((const cmdinfo_t
*)a
)->name
,
34 ((const cmdinfo_t
*)b
)->name
);
37 void qemuio_add_command(const cmdinfo_t
*ci
)
39 cmdtab
= g_renew(cmdinfo_t
, cmdtab
, ++ncmds
);
40 cmdtab
[ncmds
- 1] = *ci
;
41 qsort(cmdtab
, ncmds
, sizeof(*cmdtab
), compare_cmdname
);
44 int qemuio_command_usage(const cmdinfo_t
*ci
)
46 printf("%s %s -- %s\n", ci
->name
, ci
->args
, ci
->oneline
);
50 static int init_check_command(BlockBackend
*blk
, const cmdinfo_t
*ct
)
52 if (ct
->flags
& CMD_FLAG_GLOBAL
) {
55 if (!(ct
->flags
& CMD_NOFILE_OK
) && !blk
) {
56 fprintf(stderr
, "no file open, try 'help open'\n");
62 static int command(BlockBackend
*blk
, const cmdinfo_t
*ct
, int argc
,
67 if (!init_check_command(blk
, ct
)) {
71 if (argc
- 1 < ct
->argmin
|| (ct
->argmax
!= -1 && argc
- 1 > ct
->argmax
)) {
72 if (ct
->argmax
== -1) {
74 "bad argument count %d to %s, expected at least %d arguments\n",
75 argc
-1, cmd
, ct
->argmin
);
76 } else if (ct
->argmin
== ct
->argmax
) {
78 "bad argument count %d to %s, expected %d arguments\n",
79 argc
-1, cmd
, ct
->argmin
);
82 "bad argument count %d to %s, expected between %d and %d arguments\n",
83 argc
-1, cmd
, ct
->argmin
, ct
->argmax
);
88 return ct
->cfunc(blk
, argc
, argv
);
91 static const cmdinfo_t
*find_command(const char *cmd
)
95 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
96 if (strcmp(ct
->name
, cmd
) == 0 ||
97 (ct
->altname
&& strcmp(ct
->altname
, cmd
) == 0))
99 return (const cmdinfo_t
*)ct
;
105 /* Invoke fn() for commands with a matching prefix */
106 void qemuio_complete_command(const char *input
,
107 void (*fn
)(const char *cmd
, void *opaque
),
111 size_t input_len
= strlen(input
);
113 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
114 if (strncmp(input
, ct
->name
, input_len
) == 0) {
115 fn(ct
->name
, opaque
);
120 static char **breakline(char *input
, int *count
)
124 char **rval
= g_new0(char *, 1);
126 while (rval
&& (p
= qemu_strsep(&input
, " ")) != NULL
) {
131 rval
= g_renew(char *, rval
, (c
+ 1));
139 static int64_t cvtnum(const char *s
)
144 ret
= qemu_strtosz_suffix(s
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
146 /* Detritus at the end of the string */
152 static void print_cvtnum_err(int64_t rc
, const char *arg
)
156 printf("Parsing error: non-numeric argument,"
157 " or extraneous/unrecognized suffix -- %s\n", arg
);
160 printf("Parsing error: argument too large -- %s\n", arg
);
163 printf("Parsing error: %s\n", arg
);
167 #define EXABYTES(x) ((long long)(x) << 60)
168 #define PETABYTES(x) ((long long)(x) << 50)
169 #define TERABYTES(x) ((long long)(x) << 40)
170 #define GIGABYTES(x) ((long long)(x) << 30)
171 #define MEGABYTES(x) ((long long)(x) << 20)
172 #define KILOBYTES(x) ((long long)(x) << 10)
174 #define TO_EXABYTES(x) ((x) / EXABYTES(1))
175 #define TO_PETABYTES(x) ((x) / PETABYTES(1))
176 #define TO_TERABYTES(x) ((x) / TERABYTES(1))
177 #define TO_GIGABYTES(x) ((x) / GIGABYTES(1))
178 #define TO_MEGABYTES(x) ((x) / MEGABYTES(1))
179 #define TO_KILOBYTES(x) ((x) / KILOBYTES(1))
181 static void cvtstr(double value
, char *str
, size_t size
)
186 if (value
>= EXABYTES(1)) {
188 snprintf(str
, size
- 4, "%.3f", TO_EXABYTES(value
));
189 } else if (value
>= PETABYTES(1)) {
191 snprintf(str
, size
- 4, "%.3f", TO_PETABYTES(value
));
192 } else if (value
>= TERABYTES(1)) {
194 snprintf(str
, size
- 4, "%.3f", TO_TERABYTES(value
));
195 } else if (value
>= GIGABYTES(1)) {
197 snprintf(str
, size
- 4, "%.3f", TO_GIGABYTES(value
));
198 } else if (value
>= MEGABYTES(1)) {
200 snprintf(str
, size
- 4, "%.3f", TO_MEGABYTES(value
));
201 } else if (value
>= KILOBYTES(1)) {
203 snprintf(str
, size
- 4, "%.3f", TO_KILOBYTES(value
));
206 snprintf(str
, size
- 6, "%f", value
);
209 trim
= strstr(str
, ".000");
211 strcpy(trim
, suffix
);
219 static struct timeval
tsub(struct timeval t1
, struct timeval t2
)
221 t1
.tv_usec
-= t2
.tv_usec
;
222 if (t1
.tv_usec
< 0) {
223 t1
.tv_usec
+= 1000000;
226 t1
.tv_sec
-= t2
.tv_sec
;
230 static double tdiv(double value
, struct timeval tv
)
232 return value
/ ((double)tv
.tv_sec
+ ((double)tv
.tv_usec
/ 1000000.0));
235 #define HOURS(sec) ((sec) / (60 * 60))
236 #define MINUTES(sec) (((sec) % (60 * 60)) / 60)
237 #define SECONDS(sec) ((sec) % 60)
241 TERSE_FIXED_TIME
= 0x1,
242 VERBOSE_FIXED_TIME
= 0x2,
245 static void timestr(struct timeval
*tv
, char *ts
, size_t size
, int format
)
247 double usec
= (double)tv
->tv_usec
/ 1000000.0;
249 if (format
& TERSE_FIXED_TIME
) {
250 if (!HOURS(tv
->tv_sec
)) {
251 snprintf(ts
, size
, "%u:%02u.%02u",
252 (unsigned int) MINUTES(tv
->tv_sec
),
253 (unsigned int) SECONDS(tv
->tv_sec
),
254 (unsigned int) (usec
* 100));
257 format
|= VERBOSE_FIXED_TIME
; /* fallback if hours needed */
260 if ((format
& VERBOSE_FIXED_TIME
) || tv
->tv_sec
) {
261 snprintf(ts
, size
, "%u:%02u:%02u.%02u",
262 (unsigned int) HOURS(tv
->tv_sec
),
263 (unsigned int) MINUTES(tv
->tv_sec
),
264 (unsigned int) SECONDS(tv
->tv_sec
),
265 (unsigned int) (usec
* 100));
267 snprintf(ts
, size
, "0.%04u sec", (unsigned int) (usec
* 10000));
272 * Parse the pattern argument to various sub-commands.
274 * Because the pattern is used as an argument to memset it must evaluate
275 * to an unsigned integer that fits into a single byte.
277 static int parse_pattern(const char *arg
)
282 pattern
= strtol(arg
, &endptr
, 0);
283 if (pattern
< 0 || pattern
> UCHAR_MAX
|| *endptr
!= '\0') {
284 printf("%s is not a valid pattern byte\n", arg
);
292 * Memory allocation helpers.
294 * Make sure memory is aligned by default, or purposefully misaligned if
295 * that is specified on the command line.
298 #define MISALIGN_OFFSET 16
299 static void *qemu_io_alloc(BlockBackend
*blk
, size_t len
, int pattern
)
303 if (qemuio_misalign
) {
304 len
+= MISALIGN_OFFSET
;
306 buf
= blk_blockalign(blk
, len
);
307 memset(buf
, pattern
, len
);
308 if (qemuio_misalign
) {
309 buf
+= MISALIGN_OFFSET
;
314 static void qemu_io_free(void *p
)
316 if (qemuio_misalign
) {
317 p
-= MISALIGN_OFFSET
;
322 static void dump_buffer(const void *buffer
, int64_t offset
, int64_t len
)
328 for (i
= 0, p
= buffer
; i
< len
; i
+= 16) {
329 const uint8_t *s
= p
;
331 printf("%08" PRIx64
": ", offset
+ i
);
332 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, p
++) {
336 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, s
++) {
347 static void print_report(const char *op
, struct timeval
*t
, int64_t offset
,
348 int64_t count
, int64_t total
, int cnt
, int Cflag
)
350 char s1
[64], s2
[64], ts
[64];
352 timestr(t
, ts
, sizeof(ts
), Cflag
? VERBOSE_FIXED_TIME
: 0);
354 cvtstr((double)total
, s1
, sizeof(s1
));
355 cvtstr(tdiv((double)total
, *t
), s2
, sizeof(s2
));
356 printf("%s %"PRId64
"/%"PRId64
" bytes at offset %" PRId64
"\n",
357 op
, total
, count
, offset
);
358 printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
359 s1
, cnt
, ts
, s2
, tdiv((double)cnt
, *t
));
360 } else {/* bytes,ops,time,bytes/sec,ops/sec */
361 printf("%"PRId64
",%d,%s,%.3f,%.3f\n",
363 tdiv((double)total
, *t
),
364 tdiv((double)cnt
, *t
));
369 * Parse multiple length statements for vectored I/O, and construct an I/O
370 * vector matching it.
373 create_iovec(BlockBackend
*blk
, QEMUIOVector
*qiov
, char **argv
, int nr_iov
,
376 size_t *sizes
= g_new0(size_t, nr_iov
);
382 for (i
= 0; i
< nr_iov
; i
++) {
388 print_cvtnum_err(len
, arg
);
392 /* should be SIZE_T_MAX, but that doesn't exist */
394 printf("Argument '%s' exceeds maximum size %d\n", arg
, INT_MAX
);
399 printf("length argument %" PRId64
400 " is not sector aligned\n", len
);
408 qemu_iovec_init(qiov
, nr_iov
);
410 buf
= p
= qemu_io_alloc(blk
, count
, pattern
);
412 for (i
= 0; i
< nr_iov
; i
++) {
413 qemu_iovec_add(qiov
, p
, sizes
[i
]);
422 static int do_read(BlockBackend
*blk
, char *buf
, int64_t offset
, int64_t count
,
427 if (count
>> 9 > INT_MAX
) {
431 ret
= blk_read(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
439 static int do_write(BlockBackend
*blk
, char *buf
, int64_t offset
, int64_t count
,
444 if (count
>> 9 > INT_MAX
) {
448 ret
= blk_write(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
456 static int do_pread(BlockBackend
*blk
, char *buf
, int64_t offset
,
457 int64_t count
, int64_t *total
)
459 if (count
> INT_MAX
) {
463 *total
= blk_pread(blk
, offset
, (uint8_t *)buf
, count
);
470 static int do_pwrite(BlockBackend
*blk
, char *buf
, int64_t offset
,
471 int64_t count
, int64_t *total
)
473 if (count
> INT_MAX
) {
477 *total
= blk_pwrite(blk
, offset
, (uint8_t *)buf
, count
, 0);
493 static void coroutine_fn
co_write_zeroes_entry(void *opaque
)
495 CoWriteZeroes
*data
= opaque
;
497 data
->ret
= blk_co_write_zeroes(data
->blk
, data
->offset
, data
->count
, 0);
500 *data
->total
= data
->ret
;
504 *data
->total
= data
->count
;
507 static int do_co_write_zeroes(BlockBackend
*blk
, int64_t offset
, int64_t count
,
511 CoWriteZeroes data
= {
519 if (count
>> BDRV_SECTOR_BITS
> INT_MAX
) {
523 co
= qemu_coroutine_create(co_write_zeroes_entry
);
524 qemu_coroutine_enter(co
, &data
);
526 aio_poll(blk_get_aio_context(blk
), true);
535 static int do_write_compressed(BlockBackend
*blk
, char *buf
, int64_t offset
,
536 int64_t count
, int64_t *total
)
540 if (count
>> 9 > INT_MAX
) {
544 ret
= blk_write_compressed(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
552 static int do_load_vmstate(BlockBackend
*blk
, char *buf
, int64_t offset
,
553 int64_t count
, int64_t *total
)
555 if (count
> INT_MAX
) {
559 *total
= blk_load_vmstate(blk
, (uint8_t *)buf
, offset
, count
);
566 static int do_save_vmstate(BlockBackend
*blk
, char *buf
, int64_t offset
,
567 int64_t count
, int64_t *total
)
569 if (count
> INT_MAX
) {
573 *total
= blk_save_vmstate(blk
, (uint8_t *)buf
, offset
, count
);
580 #define NOT_DONE 0x7fffffff
581 static void aio_rw_done(void *opaque
, int ret
)
583 *(int *)opaque
= ret
;
586 static int do_aio_readv(BlockBackend
*blk
, QEMUIOVector
*qiov
,
587 int64_t offset
, int *total
)
589 int async_ret
= NOT_DONE
;
591 blk_aio_readv(blk
, offset
>> 9, qiov
, qiov
->size
>> 9,
592 aio_rw_done
, &async_ret
);
593 while (async_ret
== NOT_DONE
) {
594 main_loop_wait(false);
598 return async_ret
< 0 ? async_ret
: 1;
601 static int do_aio_writev(BlockBackend
*blk
, QEMUIOVector
*qiov
,
602 int64_t offset
, int *total
)
604 int async_ret
= NOT_DONE
;
606 blk_aio_writev(blk
, offset
>> 9, qiov
, qiov
->size
>> 9,
607 aio_rw_done
, &async_ret
);
608 while (async_ret
== NOT_DONE
) {
609 main_loop_wait(false);
613 return async_ret
< 0 ? async_ret
: 1;
616 struct multiwrite_async_ret
{
621 static void multiwrite_cb(void *opaque
, int ret
)
623 struct multiwrite_async_ret
*async_ret
= opaque
;
625 async_ret
->num_done
++;
627 async_ret
->error
= ret
;
631 static int do_aio_multiwrite(BlockBackend
*blk
, BlockRequest
* reqs
,
632 int num_reqs
, int *total
)
635 struct multiwrite_async_ret async_ret
= {
641 for (i
= 0; i
< num_reqs
; i
++) {
642 reqs
[i
].cb
= multiwrite_cb
;
643 reqs
[i
].opaque
= &async_ret
;
644 *total
+= reqs
[i
].qiov
->size
;
647 ret
= blk_aio_multiwrite(blk
, reqs
, num_reqs
);
652 while (async_ret
.num_done
< num_reqs
) {
653 main_loop_wait(false);
656 return async_ret
.error
< 0 ? async_ret
.error
: 1;
659 static void read_help(void)
663 " reads a range of bytes from the given offset\n"
666 " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
668 " Reads a segment of the currently open file, optionally dumping it to the\n"
669 " standard output stream (with -v option) for subsequent inspection.\n"
670 " -b, -- read from the VM state rather than the virtual disk\n"
671 " -C, -- report statistics in a machine parsable format\n"
672 " -l, -- length for pattern verification (only with -P)\n"
673 " -p, -- use blk_pread to read the file\n"
674 " -P, -- use a pattern to verify read data\n"
675 " -q, -- quiet mode, do not show I/O statistics\n"
676 " -s, -- start offset for pattern verification (only with -P)\n"
677 " -v, -- dump buffer to standard output\n"
681 static int read_f(BlockBackend
*blk
, int argc
, char **argv
);
683 static const cmdinfo_t read_cmd
= {
689 .args
= "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
690 .oneline
= "reads a number of bytes at a specified offset",
694 static int read_f(BlockBackend
*blk
, int argc
, char **argv
)
696 struct timeval t1
, t2
;
697 int Cflag
= 0, pflag
= 0, qflag
= 0, vflag
= 0;
698 int Pflag
= 0, sflag
= 0, lflag
= 0, bflag
= 0;
703 /* Some compilers get confused and warn if this is not initialized. */
706 int64_t pattern_offset
= 0, pattern_count
= 0;
708 while ((c
= getopt(argc
, argv
, "bCl:pP:qs:v")) != -1) {
718 pattern_count
= cvtnum(optarg
);
719 if (pattern_count
< 0) {
720 print_cvtnum_err(pattern_count
, optarg
);
729 pattern
= parse_pattern(optarg
);
739 pattern_offset
= cvtnum(optarg
);
740 if (pattern_offset
< 0) {
741 print_cvtnum_err(pattern_offset
, optarg
);
749 return qemuio_command_usage(&read_cmd
);
753 if (optind
!= argc
- 2) {
754 return qemuio_command_usage(&read_cmd
);
757 if (bflag
&& pflag
) {
758 printf("-b and -p cannot be specified at the same time\n");
762 offset
= cvtnum(argv
[optind
]);
764 print_cvtnum_err(offset
, argv
[optind
]);
769 count
= cvtnum(argv
[optind
]);
771 print_cvtnum_err(count
, argv
[optind
]);
773 } else if (count
> SIZE_MAX
) {
774 printf("length cannot exceed %" PRIu64
", given %s\n",
775 (uint64_t) SIZE_MAX
, argv
[optind
]);
779 if (!Pflag
&& (lflag
|| sflag
)) {
780 return qemuio_command_usage(&read_cmd
);
784 pattern_count
= count
- pattern_offset
;
787 if ((pattern_count
< 0) || (pattern_count
+ pattern_offset
> count
)) {
788 printf("pattern verification range exceeds end of read data\n");
793 if (offset
& 0x1ff) {
794 printf("offset %" PRId64
" is not sector aligned\n",
799 printf("count %"PRId64
" is not sector aligned\n",
805 buf
= qemu_io_alloc(blk
, count
, 0xab);
807 gettimeofday(&t1
, NULL
);
809 cnt
= do_pread(blk
, buf
, offset
, count
, &total
);
811 cnt
= do_load_vmstate(blk
, buf
, offset
, count
, &total
);
813 cnt
= do_read(blk
, buf
, offset
, count
, &total
);
815 gettimeofday(&t2
, NULL
);
818 printf("read failed: %s\n", strerror(-cnt
));
823 void *cmp_buf
= g_malloc(pattern_count
);
824 memset(cmp_buf
, pattern
, pattern_count
);
825 if (memcmp(buf
+ pattern_offset
, cmp_buf
, pattern_count
)) {
826 printf("Pattern verification failed at offset %"
827 PRId64
", %"PRId64
" bytes\n",
828 offset
+ pattern_offset
, pattern_count
);
838 dump_buffer(buf
, offset
, count
);
841 /* Finally, report back -- -C gives a parsable format */
843 print_report("read", &t2
, offset
, count
, total
, cnt
, Cflag
);
851 static void readv_help(void)
855 " reads a range of bytes from the given offset into multiple buffers\n"
858 " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
860 " Reads a segment of the currently open file, optionally dumping it to the\n"
861 " standard output stream (with -v option) for subsequent inspection.\n"
862 " Uses multiple iovec buffers if more than one byte range is specified.\n"
863 " -C, -- report statistics in a machine parsable format\n"
864 " -P, -- use a pattern to verify read data\n"
865 " -v, -- dump buffer to standard output\n"
866 " -q, -- quiet mode, do not show I/O statistics\n"
870 static int readv_f(BlockBackend
*blk
, int argc
, char **argv
);
872 static const cmdinfo_t readv_cmd
= {
877 .args
= "[-Cqv] [-P pattern ] off len [len..]",
878 .oneline
= "reads a number of bytes at a specified offset",
882 static int readv_f(BlockBackend
*blk
, int argc
, char **argv
)
884 struct timeval t1
, t2
;
885 int Cflag
= 0, qflag
= 0, vflag
= 0;
889 /* Some compilers get confused and warn if this is not initialized. */
896 while ((c
= getopt(argc
, argv
, "CP:qv")) != -1) {
903 pattern
= parse_pattern(optarg
);
915 return qemuio_command_usage(&readv_cmd
);
919 if (optind
> argc
- 2) {
920 return qemuio_command_usage(&readv_cmd
);
924 offset
= cvtnum(argv
[optind
]);
926 print_cvtnum_err(offset
, argv
[optind
]);
931 if (offset
& 0x1ff) {
932 printf("offset %" PRId64
" is not sector aligned\n",
937 nr_iov
= argc
- optind
;
938 buf
= create_iovec(blk
, &qiov
, &argv
[optind
], nr_iov
, 0xab);
943 gettimeofday(&t1
, NULL
);
944 cnt
= do_aio_readv(blk
, &qiov
, offset
, &total
);
945 gettimeofday(&t2
, NULL
);
948 printf("readv failed: %s\n", strerror(-cnt
));
953 void *cmp_buf
= g_malloc(qiov
.size
);
954 memset(cmp_buf
, pattern
, qiov
.size
);
955 if (memcmp(buf
, cmp_buf
, qiov
.size
)) {
956 printf("Pattern verification failed at offset %"
957 PRId64
", %zd bytes\n", offset
, qiov
.size
);
967 dump_buffer(buf
, offset
, qiov
.size
);
970 /* Finally, report back -- -C gives a parsable format */
972 print_report("read", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
975 qemu_iovec_destroy(&qiov
);
980 static void write_help(void)
984 " writes a range of bytes from the given offset\n"
987 " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
989 " Writes into a segment of the currently open file, using a buffer\n"
990 " filled with a set pattern (0xcdcdcdcd).\n"
991 " -b, -- write to the VM state rather than the virtual disk\n"
992 " -c, -- write compressed data with blk_write_compressed\n"
993 " -p, -- use blk_pwrite to write the file\n"
994 " -P, -- use different pattern to fill file\n"
995 " -C, -- report statistics in a machine parsable format\n"
996 " -q, -- quiet mode, do not show I/O statistics\n"
997 " -z, -- write zeroes using blk_co_write_zeroes\n"
1001 static int write_f(BlockBackend
*blk
, int argc
, char **argv
);
1003 static const cmdinfo_t write_cmd
= {
1009 .args
= "[-bcCpqz] [-P pattern ] off len",
1010 .oneline
= "writes a number of bytes at a specified offset",
1014 static int write_f(BlockBackend
*blk
, int argc
, char **argv
)
1016 struct timeval t1
, t2
;
1017 int Cflag
= 0, pflag
= 0, qflag
= 0, bflag
= 0, Pflag
= 0, zflag
= 0;
1023 /* Some compilers get confused and warn if this is not initialized. */
1027 while ((c
= getopt(argc
, argv
, "bcCpP:qz")) != -1) {
1043 pattern
= parse_pattern(optarg
);
1055 return qemuio_command_usage(&write_cmd
);
1059 if (optind
!= argc
- 2) {
1060 return qemuio_command_usage(&write_cmd
);
1063 if (bflag
+ pflag
+ zflag
> 1) {
1064 printf("-b, -p, or -z cannot be specified at the same time\n");
1068 if (zflag
&& Pflag
) {
1069 printf("-z and -P cannot be specified at the same time\n");
1073 offset
= cvtnum(argv
[optind
]);
1075 print_cvtnum_err(offset
, argv
[optind
]);
1080 count
= cvtnum(argv
[optind
]);
1082 print_cvtnum_err(count
, argv
[optind
]);
1084 } else if (count
> SIZE_MAX
) {
1085 printf("length cannot exceed %" PRIu64
", given %s\n",
1086 (uint64_t) SIZE_MAX
, argv
[optind
]);
1091 if (offset
& 0x1ff) {
1092 printf("offset %" PRId64
" is not sector aligned\n",
1097 if (count
& 0x1ff) {
1098 printf("count %"PRId64
" is not sector aligned\n",
1105 buf
= qemu_io_alloc(blk
, count
, pattern
);
1108 gettimeofday(&t1
, NULL
);
1110 cnt
= do_pwrite(blk
, buf
, offset
, count
, &total
);
1112 cnt
= do_save_vmstate(blk
, buf
, offset
, count
, &total
);
1114 cnt
= do_co_write_zeroes(blk
, offset
, count
, &total
);
1116 cnt
= do_write_compressed(blk
, buf
, offset
, count
, &total
);
1118 cnt
= do_write(blk
, buf
, offset
, count
, &total
);
1120 gettimeofday(&t2
, NULL
);
1123 printf("write failed: %s\n", strerror(-cnt
));
1131 /* Finally, report back -- -C gives a parsable format */
1133 print_report("wrote", &t2
, offset
, count
, total
, cnt
, Cflag
);
1148 " writes a range of bytes from the given offset source from multiple buffers\n"
1151 " 'writev 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1153 " Writes into a segment of the currently open file, using a buffer\n"
1154 " filled with a set pattern (0xcdcdcdcd).\n"
1155 " -P, -- use different pattern to fill file\n"
1156 " -C, -- report statistics in a machine parsable format\n"
1157 " -q, -- quiet mode, do not show I/O statistics\n"
1161 static int writev_f(BlockBackend
*blk
, int argc
, char **argv
);
1163 static const cmdinfo_t writev_cmd
= {
1168 .args
= "[-Cq] [-P pattern ] off len [len..]",
1169 .oneline
= "writes a number of bytes at a specified offset",
1170 .help
= writev_help
,
1173 static int writev_f(BlockBackend
*blk
, int argc
, char **argv
)
1175 struct timeval t1
, t2
;
1176 int Cflag
= 0, qflag
= 0;
1180 /* Some compilers get confused and warn if this is not initialized. */
1186 while ((c
= getopt(argc
, argv
, "CqP:")) != -1) {
1195 pattern
= parse_pattern(optarg
);
1201 return qemuio_command_usage(&writev_cmd
);
1205 if (optind
> argc
- 2) {
1206 return qemuio_command_usage(&writev_cmd
);
1209 offset
= cvtnum(argv
[optind
]);
1211 print_cvtnum_err(offset
, argv
[optind
]);
1216 if (offset
& 0x1ff) {
1217 printf("offset %" PRId64
" is not sector aligned\n",
1222 nr_iov
= argc
- optind
;
1223 buf
= create_iovec(blk
, &qiov
, &argv
[optind
], nr_iov
, pattern
);
1228 gettimeofday(&t1
, NULL
);
1229 cnt
= do_aio_writev(blk
, &qiov
, offset
, &total
);
1230 gettimeofday(&t2
, NULL
);
1233 printf("writev failed: %s\n", strerror(-cnt
));
1241 /* Finally, report back -- -C gives a parsable format */
1243 print_report("wrote", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
1245 qemu_iovec_destroy(&qiov
);
1250 static void multiwrite_help(void)
1254 " writes a range of bytes from the given offset source from multiple buffers,\n"
1255 " in a batch of requests that may be merged by qemu\n"
1258 " 'multiwrite 512 1k 1k ; 4k 1k'\n"
1259 " writes 2 kB at 512 bytes and 1 kB at 4 kB into the open file\n"
1261 " Writes into a segment of the currently open file, using a buffer\n"
1262 " filled with a set pattern (0xcdcdcdcd). The pattern byte is increased\n"
1263 " by one for each request contained in the multiwrite command.\n"
1264 " -P, -- use different pattern to fill file\n"
1265 " -C, -- report statistics in a machine parsable format\n"
1266 " -q, -- quiet mode, do not show I/O statistics\n"
1270 static int multiwrite_f(BlockBackend
*blk
, int argc
, char **argv
);
1272 static const cmdinfo_t multiwrite_cmd
= {
1273 .name
= "multiwrite",
1274 .cfunc
= multiwrite_f
,
1277 .args
= "[-Cq] [-P pattern ] off len [len..] [; off len [len..]..]",
1278 .oneline
= "issues multiple write requests at once",
1279 .help
= multiwrite_help
,
1282 static int multiwrite_f(BlockBackend
*blk
, int argc
, char **argv
)
1284 struct timeval t1
, t2
;
1285 int Cflag
= 0, qflag
= 0;
1288 int64_t offset
, first_offset
= 0;
1289 /* Some compilers get confused and warn if this is not initialized. */
1294 QEMUIOVector
*qiovs
;
1298 while ((c
= getopt(argc
, argv
, "CqP:")) != -1) {
1307 pattern
= parse_pattern(optarg
);
1313 return qemuio_command_usage(&writev_cmd
);
1317 if (optind
> argc
- 2) {
1318 return qemuio_command_usage(&writev_cmd
);
1322 for (i
= optind
; i
< argc
; i
++) {
1323 if (!strcmp(argv
[i
], ";")) {
1328 reqs
= g_new0(BlockRequest
, nr_reqs
);
1329 buf
= g_new0(char *, nr_reqs
);
1330 qiovs
= g_new(QEMUIOVector
, nr_reqs
);
1332 for (i
= 0; i
< nr_reqs
&& optind
< argc
; i
++) {
1335 /* Read the offset of the request */
1336 offset
= cvtnum(argv
[optind
]);
1338 print_cvtnum_err(offset
, argv
[optind
]);
1343 if (offset
& 0x1ff) {
1344 printf("offset %lld is not sector aligned\n",
1350 first_offset
= offset
;
1353 /* Read lengths for qiov entries */
1354 for (j
= optind
; j
< argc
; j
++) {
1355 if (!strcmp(argv
[j
], ";")) {
1360 nr_iov
= j
- optind
;
1363 buf
[i
] = create_iovec(blk
, &qiovs
[i
], &argv
[optind
], nr_iov
, pattern
);
1364 if (buf
[i
] == NULL
) {
1368 reqs
[i
].qiov
= &qiovs
[i
];
1369 reqs
[i
].sector
= offset
>> 9;
1370 reqs
[i
].nb_sectors
= reqs
[i
].qiov
->size
>> 9;
1377 /* If there were empty requests at the end, ignore them */
1380 gettimeofday(&t1
, NULL
);
1381 cnt
= do_aio_multiwrite(blk
, reqs
, nr_reqs
, &total
);
1382 gettimeofday(&t2
, NULL
);
1385 printf("aio_multiwrite failed: %s\n", strerror(-cnt
));
1393 /* Finally, report back -- -C gives a parsable format */
1395 print_report("wrote", &t2
, first_offset
, total
, total
, cnt
, Cflag
);
1397 for (i
= 0; i
< nr_reqs
; i
++) {
1398 qemu_io_free(buf
[i
]);
1399 if (reqs
[i
].qiov
!= NULL
) {
1400 qemu_iovec_destroy(&qiovs
[i
]);
1419 BlockAcctCookie acct
;
1424 static void aio_write_done(void *opaque
, int ret
)
1426 struct aio_ctx
*ctx
= opaque
;
1429 gettimeofday(&t2
, NULL
);
1433 printf("aio_write failed: %s\n", strerror(-ret
));
1434 block_acct_failed(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1438 block_acct_done(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1444 /* Finally, report back -- -C gives a parsable format */
1445 t2
= tsub(t2
, ctx
->t1
);
1446 print_report("wrote", &t2
, ctx
->offset
, ctx
->qiov
.size
,
1447 ctx
->qiov
.size
, 1, ctx
->Cflag
);
1450 qemu_io_free(ctx
->buf
);
1451 qemu_iovec_destroy(&ctx
->qiov
);
1456 static void aio_read_done(void *opaque
, int ret
)
1458 struct aio_ctx
*ctx
= opaque
;
1461 gettimeofday(&t2
, NULL
);
1464 printf("readv failed: %s\n", strerror(-ret
));
1465 block_acct_failed(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1470 void *cmp_buf
= g_malloc(ctx
->qiov
.size
);
1472 memset(cmp_buf
, ctx
->pattern
, ctx
->qiov
.size
);
1473 if (memcmp(ctx
->buf
, cmp_buf
, ctx
->qiov
.size
)) {
1474 printf("Pattern verification failed at offset %"
1475 PRId64
", %zd bytes\n", ctx
->offset
, ctx
->qiov
.size
);
1480 block_acct_done(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1487 dump_buffer(ctx
->buf
, ctx
->offset
, ctx
->qiov
.size
);
1490 /* Finally, report back -- -C gives a parsable format */
1491 t2
= tsub(t2
, ctx
->t1
);
1492 print_report("read", &t2
, ctx
->offset
, ctx
->qiov
.size
,
1493 ctx
->qiov
.size
, 1, ctx
->Cflag
);
1495 qemu_io_free(ctx
->buf
);
1496 qemu_iovec_destroy(&ctx
->qiov
);
1500 static void aio_read_help(void)
1504 " asynchronously reads a range of bytes from the given offset\n"
1507 " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
1509 " Reads a segment of the currently open file, optionally dumping it to the\n"
1510 " standard output stream (with -v option) for subsequent inspection.\n"
1511 " The read is performed asynchronously and the aio_flush command must be\n"
1512 " used to ensure all outstanding aio requests have been completed.\n"
1513 " -C, -- report statistics in a machine parsable format\n"
1514 " -P, -- use a pattern to verify read data\n"
1515 " -v, -- dump buffer to standard output\n"
1516 " -q, -- quiet mode, do not show I/O statistics\n"
1520 static int aio_read_f(BlockBackend
*blk
, int argc
, char **argv
);
1522 static const cmdinfo_t aio_read_cmd
= {
1524 .cfunc
= aio_read_f
,
1527 .args
= "[-Cqv] [-P pattern ] off len [len..]",
1528 .oneline
= "asynchronously reads a number of bytes",
1529 .help
= aio_read_help
,
1532 static int aio_read_f(BlockBackend
*blk
, int argc
, char **argv
)
1535 struct aio_ctx
*ctx
= g_new0(struct aio_ctx
, 1);
1538 while ((c
= getopt(argc
, argv
, "CP:qv")) != -1) {
1545 ctx
->pattern
= parse_pattern(optarg
);
1546 if (ctx
->pattern
< 0) {
1559 return qemuio_command_usage(&aio_read_cmd
);
1563 if (optind
> argc
- 2) {
1565 return qemuio_command_usage(&aio_read_cmd
);
1568 ctx
->offset
= cvtnum(argv
[optind
]);
1569 if (ctx
->offset
< 0) {
1570 print_cvtnum_err(ctx
->offset
, argv
[optind
]);
1576 if (ctx
->offset
& 0x1ff) {
1577 printf("offset %" PRId64
" is not sector aligned\n",
1579 block_acct_invalid(blk_get_stats(blk
), BLOCK_ACCT_READ
);
1584 nr_iov
= argc
- optind
;
1585 ctx
->buf
= create_iovec(blk
, &ctx
->qiov
, &argv
[optind
], nr_iov
, 0xab);
1586 if (ctx
->buf
== NULL
) {
1587 block_acct_invalid(blk_get_stats(blk
), BLOCK_ACCT_READ
);
1592 gettimeofday(&ctx
->t1
, NULL
);
1593 block_acct_start(blk_get_stats(blk
), &ctx
->acct
, ctx
->qiov
.size
,
1595 blk_aio_readv(blk
, ctx
->offset
>> 9, &ctx
->qiov
,
1596 ctx
->qiov
.size
>> 9, aio_read_done
, ctx
);
1600 static void aio_write_help(void)
1604 " asynchronously writes a range of bytes from the given offset source\n"
1605 " from multiple buffers\n"
1608 " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1610 " Writes into a segment of the currently open file, using a buffer\n"
1611 " filled with a set pattern (0xcdcdcdcd).\n"
1612 " The write is performed asynchronously and the aio_flush command must be\n"
1613 " used to ensure all outstanding aio requests have been completed.\n"
1614 " -P, -- use different pattern to fill file\n"
1615 " -C, -- report statistics in a machine parsable format\n"
1616 " -q, -- quiet mode, do not show I/O statistics\n"
1617 " -z, -- write zeroes using blk_aio_write_zeroes\n"
1621 static int aio_write_f(BlockBackend
*blk
, int argc
, char **argv
);
1623 static const cmdinfo_t aio_write_cmd
= {
1624 .name
= "aio_write",
1625 .cfunc
= aio_write_f
,
1628 .args
= "[-Cqz] [-P pattern ] off len [len..]",
1629 .oneline
= "asynchronously writes a number of bytes",
1630 .help
= aio_write_help
,
1633 static int aio_write_f(BlockBackend
*blk
, int argc
, char **argv
)
1637 struct aio_ctx
*ctx
= g_new0(struct aio_ctx
, 1);
1640 while ((c
= getopt(argc
, argv
, "CqP:z")) != -1) {
1649 pattern
= parse_pattern(optarg
);
1660 return qemuio_command_usage(&aio_write_cmd
);
1664 if (optind
> argc
- 2) {
1666 return qemuio_command_usage(&aio_write_cmd
);
1669 if (ctx
->zflag
&& optind
!= argc
- 2) {
1670 printf("-z supports only a single length parameter\n");
1675 if (ctx
->zflag
&& ctx
->Pflag
) {
1676 printf("-z and -P cannot be specified at the same time\n");
1681 ctx
->offset
= cvtnum(argv
[optind
]);
1682 if (ctx
->offset
< 0) {
1683 print_cvtnum_err(ctx
->offset
, argv
[optind
]);
1689 if (ctx
->offset
& 0x1ff) {
1690 printf("offset %" PRId64
" is not sector aligned\n",
1692 block_acct_invalid(blk_get_stats(blk
), BLOCK_ACCT_WRITE
);
1698 int64_t count
= cvtnum(argv
[optind
]);
1700 print_cvtnum_err(count
, argv
[optind
]);
1705 ctx
->qiov
.size
= count
;
1706 blk_aio_write_zeroes(blk
, ctx
->offset
, count
, 0, aio_write_done
, ctx
);
1708 nr_iov
= argc
- optind
;
1709 ctx
->buf
= create_iovec(blk
, &ctx
->qiov
, &argv
[optind
], nr_iov
,
1711 if (ctx
->buf
== NULL
) {
1712 block_acct_invalid(blk_get_stats(blk
), BLOCK_ACCT_WRITE
);
1717 gettimeofday(&ctx
->t1
, NULL
);
1718 block_acct_start(blk_get_stats(blk
), &ctx
->acct
, ctx
->qiov
.size
,
1721 blk_aio_writev(blk
, ctx
->offset
>> 9, &ctx
->qiov
,
1722 ctx
->qiov
.size
>> 9, aio_write_done
, ctx
);
1727 static int aio_flush_f(BlockBackend
*blk
, int argc
, char **argv
)
1729 BlockAcctCookie cookie
;
1730 block_acct_start(blk_get_stats(blk
), &cookie
, 0, BLOCK_ACCT_FLUSH
);
1732 block_acct_done(blk_get_stats(blk
), &cookie
);
1736 static const cmdinfo_t aio_flush_cmd
= {
1737 .name
= "aio_flush",
1738 .cfunc
= aio_flush_f
,
1739 .oneline
= "completes all outstanding aio requests"
1742 static int flush_f(BlockBackend
*blk
, int argc
, char **argv
)
1748 static const cmdinfo_t flush_cmd
= {
1752 .oneline
= "flush all in-core file state to disk",
1755 static int truncate_f(BlockBackend
*blk
, int argc
, char **argv
)
1760 offset
= cvtnum(argv
[1]);
1762 print_cvtnum_err(offset
, argv
[1]);
1766 ret
= blk_truncate(blk
, offset
);
1768 printf("truncate: %s\n", strerror(-ret
));
1775 static const cmdinfo_t truncate_cmd
= {
1778 .cfunc
= truncate_f
,
1782 .oneline
= "truncates the current file at the given offset",
1785 static int length_f(BlockBackend
*blk
, int argc
, char **argv
)
1790 size
= blk_getlength(blk
);
1792 printf("getlength: %s\n", strerror(-size
));
1796 cvtstr(size
, s1
, sizeof(s1
));
1802 static const cmdinfo_t length_cmd
= {
1806 .oneline
= "gets the length of the current file",
1810 static int info_f(BlockBackend
*blk
, int argc
, char **argv
)
1812 BlockDriverState
*bs
= blk_bs(blk
);
1813 BlockDriverInfo bdi
;
1814 ImageInfoSpecific
*spec_info
;
1815 char s1
[64], s2
[64];
1818 if (bs
->drv
&& bs
->drv
->format_name
) {
1819 printf("format name: %s\n", bs
->drv
->format_name
);
1821 if (bs
->drv
&& bs
->drv
->protocol_name
) {
1822 printf("format name: %s\n", bs
->drv
->protocol_name
);
1825 ret
= bdrv_get_info(bs
, &bdi
);
1830 cvtstr(bdi
.cluster_size
, s1
, sizeof(s1
));
1831 cvtstr(bdi
.vm_state_offset
, s2
, sizeof(s2
));
1833 printf("cluster size: %s\n", s1
);
1834 printf("vm state offset: %s\n", s2
);
1836 spec_info
= bdrv_get_specific_info(bs
);
1838 printf("Format specific information:\n");
1839 bdrv_image_info_specific_dump(fprintf
, stdout
, spec_info
);
1840 qapi_free_ImageInfoSpecific(spec_info
);
1848 static const cmdinfo_t info_cmd
= {
1852 .oneline
= "prints information about the current file",
1855 static void discard_help(void)
1859 " discards a range of bytes from the given offset\n"
1862 " 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n"
1864 " Discards a segment of the currently open file.\n"
1865 " -C, -- report statistics in a machine parsable format\n"
1866 " -q, -- quiet mode, do not show I/O statistics\n"
1870 static int discard_f(BlockBackend
*blk
, int argc
, char **argv
);
1872 static const cmdinfo_t discard_cmd
= {
1878 .args
= "[-Cq] off len",
1879 .oneline
= "discards a number of bytes at a specified offset",
1880 .help
= discard_help
,
1883 static int discard_f(BlockBackend
*blk
, int argc
, char **argv
)
1885 struct timeval t1
, t2
;
1886 int Cflag
= 0, qflag
= 0;
1888 int64_t offset
, count
;
1890 while ((c
= getopt(argc
, argv
, "Cq")) != -1) {
1899 return qemuio_command_usage(&discard_cmd
);
1903 if (optind
!= argc
- 2) {
1904 return qemuio_command_usage(&discard_cmd
);
1907 offset
= cvtnum(argv
[optind
]);
1909 print_cvtnum_err(offset
, argv
[optind
]);
1914 count
= cvtnum(argv
[optind
]);
1916 print_cvtnum_err(count
, argv
[optind
]);
1918 } else if (count
>> BDRV_SECTOR_BITS
> INT_MAX
) {
1919 printf("length cannot exceed %"PRIu64
", given %s\n",
1920 (uint64_t)INT_MAX
<< BDRV_SECTOR_BITS
,
1925 gettimeofday(&t1
, NULL
);
1926 ret
= blk_discard(blk
, offset
>> BDRV_SECTOR_BITS
,
1927 count
>> BDRV_SECTOR_BITS
);
1928 gettimeofday(&t2
, NULL
);
1931 printf("discard failed: %s\n", strerror(-ret
));
1935 /* Finally, report back -- -C gives a parsable format */
1938 print_report("discard", &t2
, offset
, count
, count
, 1, Cflag
);
1945 static int alloc_f(BlockBackend
*blk
, int argc
, char **argv
)
1947 BlockDriverState
*bs
= blk_bs(blk
);
1948 int64_t offset
, sector_num
, nb_sectors
, remaining
;
1953 offset
= cvtnum(argv
[1]);
1955 print_cvtnum_err(offset
, argv
[1]);
1957 } else if (offset
& 0x1ff) {
1958 printf("offset %" PRId64
" is not sector aligned\n",
1964 nb_sectors
= cvtnum(argv
[2]);
1965 if (nb_sectors
< 0) {
1966 print_cvtnum_err(nb_sectors
, argv
[2]);
1968 } else if (nb_sectors
> INT_MAX
) {
1969 printf("length argument cannot exceed %d, given %s\n",
1977 remaining
= nb_sectors
;
1979 sector_num
= offset
>> 9;
1981 ret
= bdrv_is_allocated(bs
, sector_num
, remaining
, &num
);
1983 printf("is_allocated failed: %s\n", strerror(-ret
));
1992 nb_sectors
-= remaining
;
1997 cvtstr(offset
, s1
, sizeof(s1
));
1999 printf("%"PRId64
"/%"PRId64
" sectors allocated at offset %s\n",
2000 sum_alloc
, nb_sectors
, s1
);
2004 static const cmdinfo_t alloc_cmd
= {
2010 .args
= "off [sectors]",
2011 .oneline
= "checks if a sector is present in the file",
2015 static int map_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
2016 int64_t nb_sectors
, int64_t *pnum
)
2018 int num
, num_checked
;
2021 num_checked
= MIN(nb_sectors
, INT_MAX
);
2022 ret
= bdrv_is_allocated(bs
, sector_num
, num_checked
, &num
);
2030 while (nb_sectors
> 0 && ret
== firstret
) {
2034 num_checked
= MIN(nb_sectors
, INT_MAX
);
2035 ret
= bdrv_is_allocated(bs
, sector_num
, num_checked
, &num
);
2036 if (ret
== firstret
&& num
) {
2046 static int map_f(BlockBackend
*blk
, int argc
, char **argv
)
2049 int64_t nb_sectors
, total_sectors
;
2056 total_sectors
= blk_nb_sectors(blk
);
2057 if (total_sectors
< 0) {
2058 error_report("Failed to query image length: %s",
2059 strerror(-total_sectors
));
2063 nb_sectors
= total_sectors
;
2066 ret
= map_is_allocated(blk_bs(blk
), offset
, nb_sectors
, &num
);
2068 error_report("Failed to get allocation status: %s", strerror(-ret
));
2071 error_report("Unexpected end of image");
2075 retstr
= ret
? " allocated" : "not allocated";
2076 cvtstr(offset
<< 9ULL, s1
, sizeof(s1
));
2077 printf("[% 24" PRId64
"] % 8" PRId64
"/% 8" PRId64
" sectors %s "
2078 "at offset %s (%d)\n",
2079 offset
<< 9ULL, num
, nb_sectors
, retstr
, s1
, ret
);
2083 } while (offset
< total_sectors
);
2088 static const cmdinfo_t map_cmd
= {
2094 .oneline
= "prints the allocated areas of a file",
2097 static void reopen_help(void)
2101 " Changes the open options of an already opened image\n"
2104 " 'reopen -o lazy-refcounts=on' - activates lazy refcount writeback on a qcow2 image\n"
2106 " -r, -- Reopen the image read-only\n"
2107 " -c, -- Change the cache mode to the given value\n"
2108 " -o, -- Changes block driver options (cf. 'open' command)\n"
2112 static int reopen_f(BlockBackend
*blk
, int argc
, char **argv
);
2114 static QemuOptsList reopen_opts
= {
2116 .merge_lists
= true,
2117 .head
= QTAILQ_HEAD_INITIALIZER(reopen_opts
.head
),
2119 /* no elements => accept any params */
2120 { /* end of list */ }
2124 static const cmdinfo_t reopen_cmd
= {
2129 .args
= "[-r] [-c cache] [-o options]",
2130 .oneline
= "reopens an image with new options",
2131 .help
= reopen_help
,
2134 static int reopen_f(BlockBackend
*blk
, int argc
, char **argv
)
2136 BlockDriverState
*bs
= blk_bs(blk
);
2140 int flags
= bs
->open_flags
;
2141 bool writethrough
= !blk_enable_write_cache(blk
);
2143 BlockReopenQueue
*brq
;
2144 Error
*local_err
= NULL
;
2146 while ((c
= getopt(argc
, argv
, "c:o:r")) != -1) {
2149 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) < 0) {
2150 error_report("Invalid cache option: %s", optarg
);
2155 if (!qemu_opts_parse_noisily(&reopen_opts
, optarg
, 0)) {
2156 qemu_opts_reset(&reopen_opts
);
2161 flags
&= ~BDRV_O_RDWR
;
2164 qemu_opts_reset(&reopen_opts
);
2165 return qemuio_command_usage(&reopen_cmd
);
2169 if (optind
!= argc
) {
2170 qemu_opts_reset(&reopen_opts
);
2171 return qemuio_command_usage(&reopen_cmd
);
2174 if (writethrough
!= blk_enable_write_cache(blk
) &&
2175 blk_get_attached_dev(blk
))
2177 error_report("Cannot change cache.writeback: Device attached");
2178 qemu_opts_reset(&reopen_opts
);
2182 qopts
= qemu_opts_find(&reopen_opts
, NULL
);
2183 opts
= qopts
? qemu_opts_to_qdict(qopts
, NULL
) : NULL
;
2184 qemu_opts_reset(&reopen_opts
);
2186 brq
= bdrv_reopen_queue(NULL
, bs
, opts
, flags
);
2187 bdrv_reopen_multiple(brq
, &local_err
);
2189 error_report_err(local_err
);
2191 blk_set_enable_write_cache(blk
, !writethrough
);
2197 static int break_f(BlockBackend
*blk
, int argc
, char **argv
)
2201 ret
= bdrv_debug_breakpoint(blk_bs(blk
), argv
[1], argv
[2]);
2203 printf("Could not set breakpoint: %s\n", strerror(-ret
));
2209 static int remove_break_f(BlockBackend
*blk
, int argc
, char **argv
)
2213 ret
= bdrv_debug_remove_breakpoint(blk_bs(blk
), argv
[1]);
2215 printf("Could not remove breakpoint %s: %s\n", argv
[1], strerror(-ret
));
2221 static const cmdinfo_t break_cmd
= {
2226 .args
= "event tag",
2227 .oneline
= "sets a breakpoint on event and tags the stopped "
2231 static const cmdinfo_t remove_break_cmd
= {
2232 .name
= "remove_break",
2235 .cfunc
= remove_break_f
,
2237 .oneline
= "remove a breakpoint by tag",
2240 static int resume_f(BlockBackend
*blk
, int argc
, char **argv
)
2244 ret
= bdrv_debug_resume(blk_bs(blk
), argv
[1]);
2246 printf("Could not resume request: %s\n", strerror(-ret
));
2252 static const cmdinfo_t resume_cmd
= {
2258 .oneline
= "resumes the request tagged as tag",
2261 static int wait_break_f(BlockBackend
*blk
, int argc
, char **argv
)
2263 while (!bdrv_debug_is_suspended(blk_bs(blk
), argv
[1])) {
2264 aio_poll(blk_get_aio_context(blk
), true);
2270 static const cmdinfo_t wait_break_cmd
= {
2271 .name
= "wait_break",
2274 .cfunc
= wait_break_f
,
2276 .oneline
= "waits for the suspension of a request",
2279 static int abort_f(BlockBackend
*blk
, int argc
, char **argv
)
2284 static const cmdinfo_t abort_cmd
= {
2287 .flags
= CMD_NOFILE_OK
,
2288 .oneline
= "simulate a program crash using abort(3)",
2291 static void sigraise_help(void)
2295 " raises the given signal\n"
2298 " 'sigraise %i' - raises SIGTERM\n"
2300 " Invokes raise(signal), where \"signal\" is the mandatory integer argument\n"
2301 " given to sigraise.\n"
2305 static int sigraise_f(BlockBackend
*blk
, int argc
, char **argv
);
2307 static const cmdinfo_t sigraise_cmd
= {
2309 .cfunc
= sigraise_f
,
2312 .flags
= CMD_NOFILE_OK
,
2314 .oneline
= "raises a signal",
2315 .help
= sigraise_help
,
2318 static int sigraise_f(BlockBackend
*blk
, int argc
, char **argv
)
2320 int64_t sig
= cvtnum(argv
[1]);
2322 print_cvtnum_err(sig
, argv
[1]);
2324 } else if (sig
> NSIG
) {
2325 printf("signal argument '%s' is too large to be a valid signal\n",
2330 /* Using raise() to kill this process does not necessarily flush all open
2331 * streams. At least stdout and stderr (although the latter should be
2332 * non-buffered anyway) should be flushed, though. */
2340 static void sleep_cb(void *opaque
)
2342 bool *expired
= opaque
;
2346 static int sleep_f(BlockBackend
*blk
, int argc
, char **argv
)
2350 struct QEMUTimer
*timer
;
2351 bool expired
= false;
2353 ms
= strtol(argv
[1], &endptr
, 0);
2354 if (ms
< 0 || *endptr
!= '\0') {
2355 printf("%s is not a valid number\n", argv
[1]);
2359 timer
= timer_new_ns(QEMU_CLOCK_HOST
, sleep_cb
, &expired
);
2360 timer_mod(timer
, qemu_clock_get_ns(QEMU_CLOCK_HOST
) + SCALE_MS
* ms
);
2363 main_loop_wait(false);
2371 static const cmdinfo_t sleep_cmd
= {
2376 .flags
= CMD_NOFILE_OK
,
2377 .oneline
= "waits for the given value in milliseconds",
2380 static void help_oneline(const char *cmd
, const cmdinfo_t
*ct
)
2385 printf("%s ", ct
->name
);
2387 printf("(or %s) ", ct
->altname
);
2392 printf("%s ", ct
->args
);
2394 printf("-- %s\n", ct
->oneline
);
2397 static void help_onecmd(const char *cmd
, const cmdinfo_t
*ct
)
2399 help_oneline(cmd
, ct
);
2405 static void help_all(void)
2407 const cmdinfo_t
*ct
;
2409 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
2410 help_oneline(ct
->name
, ct
);
2412 printf("\nUse 'help commandname' for extended help.\n");
2415 static int help_f(BlockBackend
*blk
, int argc
, char **argv
)
2417 const cmdinfo_t
*ct
;
2424 ct
= find_command(argv
[1]);
2426 printf("command %s not found\n", argv
[1]);
2430 help_onecmd(argv
[1], ct
);
2434 static const cmdinfo_t help_cmd
= {
2440 .flags
= CMD_FLAG_GLOBAL
,
2441 .args
= "[command]",
2442 .oneline
= "help for one or all commands",
2445 bool qemuio_command(BlockBackend
*blk
, const char *cmd
)
2448 const cmdinfo_t
*ct
;
2453 input
= g_strdup(cmd
);
2454 v
= breakline(input
, &c
);
2456 ct
= find_command(v
[0]);
2458 done
= command(blk
, ct
, c
, v
);
2460 fprintf(stderr
, "command \"%s\" not found\n", v
[0]);
2469 static void __attribute((constructor
)) init_qemuio_commands(void)
2471 /* initialize commands */
2472 qemuio_add_command(&help_cmd
);
2473 qemuio_add_command(&read_cmd
);
2474 qemuio_add_command(&readv_cmd
);
2475 qemuio_add_command(&write_cmd
);
2476 qemuio_add_command(&writev_cmd
);
2477 qemuio_add_command(&multiwrite_cmd
);
2478 qemuio_add_command(&aio_read_cmd
);
2479 qemuio_add_command(&aio_write_cmd
);
2480 qemuio_add_command(&aio_flush_cmd
);
2481 qemuio_add_command(&flush_cmd
);
2482 qemuio_add_command(&truncate_cmd
);
2483 qemuio_add_command(&length_cmd
);
2484 qemuio_add_command(&info_cmd
);
2485 qemuio_add_command(&discard_cmd
);
2486 qemuio_add_command(&alloc_cmd
);
2487 qemuio_add_command(&map_cmd
);
2488 qemuio_add_command(&reopen_cmd
);
2489 qemuio_add_command(&break_cmd
);
2490 qemuio_add_command(&remove_break_cmd
);
2491 qemuio_add_command(&resume_cmd
);
2492 qemuio_add_command(&wait_break_cmd
);
2493 qemuio_add_command(&abort_cmd
);
2494 qemuio_add_command(&sleep_cmd
);
2495 qemuio_add_command(&sigraise_cmd
);