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.
12 #include "sysemu/block-backend.h"
13 #include "block/block.h"
14 #include "block/block_int.h" /* for info_f() */
15 #include "block/qapi.h"
16 #include "qemu/error-report.h"
17 #include "qemu/main-loop.h"
18 #include "qemu/timer.h"
19 #include "sysemu/block-backend.h"
21 #define CMD_NOFILE_OK 0x01
25 static cmdinfo_t
*cmdtab
;
28 static int compare_cmdname(const void *a
, const void *b
)
30 return strcmp(((const cmdinfo_t
*)a
)->name
,
31 ((const cmdinfo_t
*)b
)->name
);
34 void qemuio_add_command(const cmdinfo_t
*ci
)
36 cmdtab
= g_renew(cmdinfo_t
, cmdtab
, ++ncmds
);
37 cmdtab
[ncmds
- 1] = *ci
;
38 qsort(cmdtab
, ncmds
, sizeof(*cmdtab
), compare_cmdname
);
41 int qemuio_command_usage(const cmdinfo_t
*ci
)
43 printf("%s %s -- %s\n", ci
->name
, ci
->args
, ci
->oneline
);
47 static int init_check_command(BlockBackend
*blk
, const cmdinfo_t
*ct
)
49 if (ct
->flags
& CMD_FLAG_GLOBAL
) {
52 if (!(ct
->flags
& CMD_NOFILE_OK
) && !blk
) {
53 fprintf(stderr
, "no file open, try 'help open'\n");
59 static int command(BlockBackend
*blk
, const cmdinfo_t
*ct
, int argc
,
64 if (!init_check_command(blk
, ct
)) {
68 if (argc
- 1 < ct
->argmin
|| (ct
->argmax
!= -1 && argc
- 1 > ct
->argmax
)) {
69 if (ct
->argmax
== -1) {
71 "bad argument count %d to %s, expected at least %d arguments\n",
72 argc
-1, cmd
, ct
->argmin
);
73 } else if (ct
->argmin
== ct
->argmax
) {
75 "bad argument count %d to %s, expected %d arguments\n",
76 argc
-1, cmd
, ct
->argmin
);
79 "bad argument count %d to %s, expected between %d and %d arguments\n",
80 argc
-1, cmd
, ct
->argmin
, ct
->argmax
);
85 return ct
->cfunc(blk
, argc
, argv
);
88 static const cmdinfo_t
*find_command(const char *cmd
)
92 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
93 if (strcmp(ct
->name
, cmd
) == 0 ||
94 (ct
->altname
&& strcmp(ct
->altname
, cmd
) == 0))
96 return (const cmdinfo_t
*)ct
;
102 /* Invoke fn() for commands with a matching prefix */
103 void qemuio_complete_command(const char *input
,
104 void (*fn
)(const char *cmd
, void *opaque
),
108 size_t input_len
= strlen(input
);
110 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
111 if (strncmp(input
, ct
->name
, input_len
) == 0) {
112 fn(ct
->name
, opaque
);
117 static char **breakline(char *input
, int *count
)
121 char **rval
= g_new0(char *, 1);
123 while (rval
&& (p
= qemu_strsep(&input
, " ")) != NULL
) {
128 rval
= g_renew(char *, rval
, (c
+ 1));
136 static int64_t cvtnum(const char *s
)
141 ret
= qemu_strtosz_suffix(s
, &end
, QEMU_STRTOSZ_DEFSUFFIX_B
);
143 /* Detritus at the end of the string */
149 static void print_cvtnum_err(int64_t rc
, const char *arg
)
153 printf("Parsing error: non-numeric argument,"
154 " or extraneous/unrecognized suffix -- %s\n", arg
);
157 printf("Parsing error: argument too large -- %s\n", arg
);
160 printf("Parsing error: %s\n", arg
);
164 #define EXABYTES(x) ((long long)(x) << 60)
165 #define PETABYTES(x) ((long long)(x) << 50)
166 #define TERABYTES(x) ((long long)(x) << 40)
167 #define GIGABYTES(x) ((long long)(x) << 30)
168 #define MEGABYTES(x) ((long long)(x) << 20)
169 #define KILOBYTES(x) ((long long)(x) << 10)
171 #define TO_EXABYTES(x) ((x) / EXABYTES(1))
172 #define TO_PETABYTES(x) ((x) / PETABYTES(1))
173 #define TO_TERABYTES(x) ((x) / TERABYTES(1))
174 #define TO_GIGABYTES(x) ((x) / GIGABYTES(1))
175 #define TO_MEGABYTES(x) ((x) / MEGABYTES(1))
176 #define TO_KILOBYTES(x) ((x) / KILOBYTES(1))
178 static void cvtstr(double value
, char *str
, size_t size
)
183 if (value
>= EXABYTES(1)) {
185 snprintf(str
, size
- 4, "%.3f", TO_EXABYTES(value
));
186 } else if (value
>= PETABYTES(1)) {
188 snprintf(str
, size
- 4, "%.3f", TO_PETABYTES(value
));
189 } else if (value
>= TERABYTES(1)) {
191 snprintf(str
, size
- 4, "%.3f", TO_TERABYTES(value
));
192 } else if (value
>= GIGABYTES(1)) {
194 snprintf(str
, size
- 4, "%.3f", TO_GIGABYTES(value
));
195 } else if (value
>= MEGABYTES(1)) {
197 snprintf(str
, size
- 4, "%.3f", TO_MEGABYTES(value
));
198 } else if (value
>= KILOBYTES(1)) {
200 snprintf(str
, size
- 4, "%.3f", TO_KILOBYTES(value
));
203 snprintf(str
, size
- 6, "%f", value
);
206 trim
= strstr(str
, ".000");
208 strcpy(trim
, suffix
);
216 static struct timeval
tsub(struct timeval t1
, struct timeval t2
)
218 t1
.tv_usec
-= t2
.tv_usec
;
219 if (t1
.tv_usec
< 0) {
220 t1
.tv_usec
+= 1000000;
223 t1
.tv_sec
-= t2
.tv_sec
;
227 static double tdiv(double value
, struct timeval tv
)
229 return value
/ ((double)tv
.tv_sec
+ ((double)tv
.tv_usec
/ 1000000.0));
232 #define HOURS(sec) ((sec) / (60 * 60))
233 #define MINUTES(sec) (((sec) % (60 * 60)) / 60)
234 #define SECONDS(sec) ((sec) % 60)
238 TERSE_FIXED_TIME
= 0x1,
239 VERBOSE_FIXED_TIME
= 0x2,
242 static void timestr(struct timeval
*tv
, char *ts
, size_t size
, int format
)
244 double usec
= (double)tv
->tv_usec
/ 1000000.0;
246 if (format
& TERSE_FIXED_TIME
) {
247 if (!HOURS(tv
->tv_sec
)) {
248 snprintf(ts
, size
, "%u:%02u.%02u",
249 (unsigned int) MINUTES(tv
->tv_sec
),
250 (unsigned int) SECONDS(tv
->tv_sec
),
251 (unsigned int) (usec
* 100));
254 format
|= VERBOSE_FIXED_TIME
; /* fallback if hours needed */
257 if ((format
& VERBOSE_FIXED_TIME
) || tv
->tv_sec
) {
258 snprintf(ts
, size
, "%u:%02u:%02u.%02u",
259 (unsigned int) HOURS(tv
->tv_sec
),
260 (unsigned int) MINUTES(tv
->tv_sec
),
261 (unsigned int) SECONDS(tv
->tv_sec
),
262 (unsigned int) (usec
* 100));
264 snprintf(ts
, size
, "0.%04u sec", (unsigned int) (usec
* 10000));
269 * Parse the pattern argument to various sub-commands.
271 * Because the pattern is used as an argument to memset it must evaluate
272 * to an unsigned integer that fits into a single byte.
274 static int parse_pattern(const char *arg
)
279 pattern
= strtol(arg
, &endptr
, 0);
280 if (pattern
< 0 || pattern
> UCHAR_MAX
|| *endptr
!= '\0') {
281 printf("%s is not a valid pattern byte\n", arg
);
289 * Memory allocation helpers.
291 * Make sure memory is aligned by default, or purposefully misaligned if
292 * that is specified on the command line.
295 #define MISALIGN_OFFSET 16
296 static void *qemu_io_alloc(BlockBackend
*blk
, size_t len
, int pattern
)
300 if (qemuio_misalign
) {
301 len
+= MISALIGN_OFFSET
;
303 buf
= blk_blockalign(blk
, len
);
304 memset(buf
, pattern
, len
);
305 if (qemuio_misalign
) {
306 buf
+= MISALIGN_OFFSET
;
311 static void qemu_io_free(void *p
)
313 if (qemuio_misalign
) {
314 p
-= MISALIGN_OFFSET
;
319 static void dump_buffer(const void *buffer
, int64_t offset
, int64_t len
)
325 for (i
= 0, p
= buffer
; i
< len
; i
+= 16) {
326 const uint8_t *s
= p
;
328 printf("%08" PRIx64
": ", offset
+ i
);
329 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, p
++) {
333 for (j
= 0; j
< 16 && i
+ j
< len
; j
++, s
++) {
344 static void print_report(const char *op
, struct timeval
*t
, int64_t offset
,
345 int64_t count
, int64_t total
, int cnt
, int Cflag
)
347 char s1
[64], s2
[64], ts
[64];
349 timestr(t
, ts
, sizeof(ts
), Cflag
? VERBOSE_FIXED_TIME
: 0);
351 cvtstr((double)total
, s1
, sizeof(s1
));
352 cvtstr(tdiv((double)total
, *t
), s2
, sizeof(s2
));
353 printf("%s %"PRId64
"/%"PRId64
" bytes at offset %" PRId64
"\n",
354 op
, total
, count
, offset
);
355 printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
356 s1
, cnt
, ts
, s2
, tdiv((double)cnt
, *t
));
357 } else {/* bytes,ops,time,bytes/sec,ops/sec */
358 printf("%"PRId64
",%d,%s,%.3f,%.3f\n",
360 tdiv((double)total
, *t
),
361 tdiv((double)cnt
, *t
));
366 * Parse multiple length statements for vectored I/O, and construct an I/O
367 * vector matching it.
370 create_iovec(BlockBackend
*blk
, QEMUIOVector
*qiov
, char **argv
, int nr_iov
,
373 size_t *sizes
= g_new0(size_t, nr_iov
);
379 for (i
= 0; i
< nr_iov
; i
++) {
385 print_cvtnum_err(len
, arg
);
389 /* should be SIZE_T_MAX, but that doesn't exist */
391 printf("Argument '%s' exceeds maximum size %d\n", arg
, INT_MAX
);
396 printf("length argument %" PRId64
397 " is not sector aligned\n", len
);
405 qemu_iovec_init(qiov
, nr_iov
);
407 buf
= p
= qemu_io_alloc(blk
, count
, pattern
);
409 for (i
= 0; i
< nr_iov
; i
++) {
410 qemu_iovec_add(qiov
, p
, sizes
[i
]);
419 static int do_read(BlockBackend
*blk
, char *buf
, int64_t offset
, int64_t count
,
424 if (count
>> 9 > INT_MAX
) {
428 ret
= blk_read(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
436 static int do_write(BlockBackend
*blk
, char *buf
, int64_t offset
, int64_t count
,
441 if (count
>> 9 > INT_MAX
) {
445 ret
= blk_write(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
453 static int do_pread(BlockBackend
*blk
, char *buf
, int64_t offset
,
454 int64_t count
, int64_t *total
)
456 if (count
> INT_MAX
) {
460 *total
= blk_pread(blk
, offset
, (uint8_t *)buf
, count
);
467 static int do_pwrite(BlockBackend
*blk
, char *buf
, int64_t offset
,
468 int64_t count
, int64_t *total
)
470 if (count
> INT_MAX
) {
474 *total
= blk_pwrite(blk
, offset
, (uint8_t *)buf
, count
);
490 static void coroutine_fn
co_write_zeroes_entry(void *opaque
)
492 CoWriteZeroes
*data
= opaque
;
494 data
->ret
= blk_co_write_zeroes(data
->blk
, data
->offset
/ BDRV_SECTOR_SIZE
,
495 data
->count
/ BDRV_SECTOR_SIZE
, 0);
498 *data
->total
= data
->ret
;
502 *data
->total
= data
->count
;
505 static int do_co_write_zeroes(BlockBackend
*blk
, int64_t offset
, int64_t count
,
509 CoWriteZeroes data
= {
517 if (count
>> BDRV_SECTOR_BITS
> INT_MAX
) {
521 co
= qemu_coroutine_create(co_write_zeroes_entry
);
522 qemu_coroutine_enter(co
, &data
);
524 aio_poll(blk_get_aio_context(blk
), true);
533 static int do_write_compressed(BlockBackend
*blk
, char *buf
, int64_t offset
,
534 int64_t count
, int64_t *total
)
538 if (count
>> 9 > INT_MAX
) {
542 ret
= blk_write_compressed(blk
, offset
>> 9, (uint8_t *)buf
, count
>> 9);
550 static int do_load_vmstate(BlockBackend
*blk
, char *buf
, int64_t offset
,
551 int64_t count
, int64_t *total
)
553 if (count
> INT_MAX
) {
557 *total
= blk_load_vmstate(blk
, (uint8_t *)buf
, offset
, count
);
564 static int do_save_vmstate(BlockBackend
*blk
, char *buf
, int64_t offset
,
565 int64_t count
, int64_t *total
)
567 if (count
> INT_MAX
) {
571 *total
= blk_save_vmstate(blk
, (uint8_t *)buf
, offset
, count
);
578 #define NOT_DONE 0x7fffffff
579 static void aio_rw_done(void *opaque
, int ret
)
581 *(int *)opaque
= ret
;
584 static int do_aio_readv(BlockBackend
*blk
, QEMUIOVector
*qiov
,
585 int64_t offset
, int *total
)
587 int async_ret
= NOT_DONE
;
589 blk_aio_readv(blk
, offset
>> 9, qiov
, qiov
->size
>> 9,
590 aio_rw_done
, &async_ret
);
591 while (async_ret
== NOT_DONE
) {
592 main_loop_wait(false);
596 return async_ret
< 0 ? async_ret
: 1;
599 static int do_aio_writev(BlockBackend
*blk
, QEMUIOVector
*qiov
,
600 int64_t offset
, int *total
)
602 int async_ret
= NOT_DONE
;
604 blk_aio_writev(blk
, offset
>> 9, qiov
, qiov
->size
>> 9,
605 aio_rw_done
, &async_ret
);
606 while (async_ret
== NOT_DONE
) {
607 main_loop_wait(false);
611 return async_ret
< 0 ? async_ret
: 1;
614 struct multiwrite_async_ret
{
619 static void multiwrite_cb(void *opaque
, int ret
)
621 struct multiwrite_async_ret
*async_ret
= opaque
;
623 async_ret
->num_done
++;
625 async_ret
->error
= ret
;
629 static int do_aio_multiwrite(BlockBackend
*blk
, BlockRequest
* reqs
,
630 int num_reqs
, int *total
)
633 struct multiwrite_async_ret async_ret
= {
639 for (i
= 0; i
< num_reqs
; i
++) {
640 reqs
[i
].cb
= multiwrite_cb
;
641 reqs
[i
].opaque
= &async_ret
;
642 *total
+= reqs
[i
].qiov
->size
;
645 ret
= blk_aio_multiwrite(blk
, reqs
, num_reqs
);
650 while (async_ret
.num_done
< num_reqs
) {
651 main_loop_wait(false);
654 return async_ret
.error
< 0 ? async_ret
.error
: 1;
657 static void read_help(void)
661 " reads a range of bytes from the given offset\n"
664 " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
666 " Reads a segment of the currently open file, optionally dumping it to the\n"
667 " standard output stream (with -v option) for subsequent inspection.\n"
668 " -b, -- read from the VM state rather than the virtual disk\n"
669 " -C, -- report statistics in a machine parsable format\n"
670 " -l, -- length for pattern verification (only with -P)\n"
671 " -p, -- use blk_pread to read the file\n"
672 " -P, -- use a pattern to verify read data\n"
673 " -q, -- quiet mode, do not show I/O statistics\n"
674 " -s, -- start offset for pattern verification (only with -P)\n"
675 " -v, -- dump buffer to standard output\n"
679 static int read_f(BlockBackend
*blk
, int argc
, char **argv
);
681 static const cmdinfo_t read_cmd
= {
687 .args
= "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
688 .oneline
= "reads a number of bytes at a specified offset",
692 static int read_f(BlockBackend
*blk
, int argc
, char **argv
)
694 struct timeval t1
, t2
;
695 int Cflag
= 0, pflag
= 0, qflag
= 0, vflag
= 0;
696 int Pflag
= 0, sflag
= 0, lflag
= 0, bflag
= 0;
701 /* Some compilers get confused and warn if this is not initialized. */
704 int64_t pattern_offset
= 0, pattern_count
= 0;
706 while ((c
= getopt(argc
, argv
, "bCl:pP:qs:v")) != -1) {
716 pattern_count
= cvtnum(optarg
);
717 if (pattern_count
< 0) {
718 print_cvtnum_err(pattern_count
, optarg
);
727 pattern
= parse_pattern(optarg
);
737 pattern_offset
= cvtnum(optarg
);
738 if (pattern_offset
< 0) {
739 print_cvtnum_err(pattern_offset
, optarg
);
747 return qemuio_command_usage(&read_cmd
);
751 if (optind
!= argc
- 2) {
752 return qemuio_command_usage(&read_cmd
);
755 if (bflag
&& pflag
) {
756 printf("-b and -p cannot be specified at the same time\n");
760 offset
= cvtnum(argv
[optind
]);
762 print_cvtnum_err(offset
, argv
[optind
]);
767 count
= cvtnum(argv
[optind
]);
769 print_cvtnum_err(count
, argv
[optind
]);
771 } else if (count
> SIZE_MAX
) {
772 printf("length cannot exceed %" PRIu64
", given %s\n",
773 (uint64_t) SIZE_MAX
, argv
[optind
]);
777 if (!Pflag
&& (lflag
|| sflag
)) {
778 return qemuio_command_usage(&read_cmd
);
782 pattern_count
= count
- pattern_offset
;
785 if ((pattern_count
< 0) || (pattern_count
+ pattern_offset
> count
)) {
786 printf("pattern verification range exceeds end of read data\n");
791 if (offset
& 0x1ff) {
792 printf("offset %" PRId64
" is not sector aligned\n",
797 printf("count %"PRId64
" is not sector aligned\n",
803 buf
= qemu_io_alloc(blk
, count
, 0xab);
805 gettimeofday(&t1
, NULL
);
807 cnt
= do_pread(blk
, buf
, offset
, count
, &total
);
809 cnt
= do_load_vmstate(blk
, buf
, offset
, count
, &total
);
811 cnt
= do_read(blk
, buf
, offset
, count
, &total
);
813 gettimeofday(&t2
, NULL
);
816 printf("read failed: %s\n", strerror(-cnt
));
821 void *cmp_buf
= g_malloc(pattern_count
);
822 memset(cmp_buf
, pattern
, pattern_count
);
823 if (memcmp(buf
+ pattern_offset
, cmp_buf
, pattern_count
)) {
824 printf("Pattern verification failed at offset %"
825 PRId64
", %"PRId64
" bytes\n",
826 offset
+ pattern_offset
, pattern_count
);
836 dump_buffer(buf
, offset
, count
);
839 /* Finally, report back -- -C gives a parsable format */
841 print_report("read", &t2
, offset
, count
, total
, cnt
, Cflag
);
849 static void readv_help(void)
853 " reads a range of bytes from the given offset into multiple buffers\n"
856 " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
858 " Reads a segment of the currently open file, optionally dumping it to the\n"
859 " standard output stream (with -v option) for subsequent inspection.\n"
860 " Uses multiple iovec buffers if more than one byte range is specified.\n"
861 " -C, -- report statistics in a machine parsable format\n"
862 " -P, -- use a pattern to verify read data\n"
863 " -v, -- dump buffer to standard output\n"
864 " -q, -- quiet mode, do not show I/O statistics\n"
868 static int readv_f(BlockBackend
*blk
, int argc
, char **argv
);
870 static const cmdinfo_t readv_cmd
= {
875 .args
= "[-Cqv] [-P pattern ] off len [len..]",
876 .oneline
= "reads a number of bytes at a specified offset",
880 static int readv_f(BlockBackend
*blk
, int argc
, char **argv
)
882 struct timeval t1
, t2
;
883 int Cflag
= 0, qflag
= 0, vflag
= 0;
887 /* Some compilers get confused and warn if this is not initialized. */
894 while ((c
= getopt(argc
, argv
, "CP:qv")) != -1) {
901 pattern
= parse_pattern(optarg
);
913 return qemuio_command_usage(&readv_cmd
);
917 if (optind
> argc
- 2) {
918 return qemuio_command_usage(&readv_cmd
);
922 offset
= cvtnum(argv
[optind
]);
924 print_cvtnum_err(offset
, argv
[optind
]);
929 if (offset
& 0x1ff) {
930 printf("offset %" PRId64
" is not sector aligned\n",
935 nr_iov
= argc
- optind
;
936 buf
= create_iovec(blk
, &qiov
, &argv
[optind
], nr_iov
, 0xab);
941 gettimeofday(&t1
, NULL
);
942 cnt
= do_aio_readv(blk
, &qiov
, offset
, &total
);
943 gettimeofday(&t2
, NULL
);
946 printf("readv failed: %s\n", strerror(-cnt
));
951 void *cmp_buf
= g_malloc(qiov
.size
);
952 memset(cmp_buf
, pattern
, qiov
.size
);
953 if (memcmp(buf
, cmp_buf
, qiov
.size
)) {
954 printf("Pattern verification failed at offset %"
955 PRId64
", %zd bytes\n", offset
, qiov
.size
);
965 dump_buffer(buf
, offset
, qiov
.size
);
968 /* Finally, report back -- -C gives a parsable format */
970 print_report("read", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
973 qemu_iovec_destroy(&qiov
);
978 static void write_help(void)
982 " writes a range of bytes from the given offset\n"
985 " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
987 " Writes into a segment of the currently open file, using a buffer\n"
988 " filled with a set pattern (0xcdcdcdcd).\n"
989 " -b, -- write to the VM state rather than the virtual disk\n"
990 " -c, -- write compressed data with blk_write_compressed\n"
991 " -p, -- use blk_pwrite to write the file\n"
992 " -P, -- use different pattern to fill file\n"
993 " -C, -- report statistics in a machine parsable format\n"
994 " -q, -- quiet mode, do not show I/O statistics\n"
995 " -z, -- write zeroes using blk_co_write_zeroes\n"
999 static int write_f(BlockBackend
*blk
, int argc
, char **argv
);
1001 static const cmdinfo_t write_cmd
= {
1007 .args
= "[-bcCpqz] [-P pattern ] off len",
1008 .oneline
= "writes a number of bytes at a specified offset",
1012 static int write_f(BlockBackend
*blk
, int argc
, char **argv
)
1014 struct timeval t1
, t2
;
1015 int Cflag
= 0, pflag
= 0, qflag
= 0, bflag
= 0, Pflag
= 0, zflag
= 0;
1021 /* Some compilers get confused and warn if this is not initialized. */
1025 while ((c
= getopt(argc
, argv
, "bcCpP:qz")) != -1) {
1041 pattern
= parse_pattern(optarg
);
1053 return qemuio_command_usage(&write_cmd
);
1057 if (optind
!= argc
- 2) {
1058 return qemuio_command_usage(&write_cmd
);
1061 if (bflag
+ pflag
+ zflag
> 1) {
1062 printf("-b, -p, or -z cannot be specified at the same time\n");
1066 if (zflag
&& Pflag
) {
1067 printf("-z and -P cannot be specified at the same time\n");
1071 offset
= cvtnum(argv
[optind
]);
1073 print_cvtnum_err(offset
, argv
[optind
]);
1078 count
= cvtnum(argv
[optind
]);
1080 print_cvtnum_err(count
, argv
[optind
]);
1082 } else if (count
> SIZE_MAX
) {
1083 printf("length cannot exceed %" PRIu64
", given %s\n",
1084 (uint64_t) SIZE_MAX
, argv
[optind
]);
1089 if (offset
& 0x1ff) {
1090 printf("offset %" PRId64
" is not sector aligned\n",
1095 if (count
& 0x1ff) {
1096 printf("count %"PRId64
" is not sector aligned\n",
1103 buf
= qemu_io_alloc(blk
, count
, pattern
);
1106 gettimeofday(&t1
, NULL
);
1108 cnt
= do_pwrite(blk
, buf
, offset
, count
, &total
);
1110 cnt
= do_save_vmstate(blk
, buf
, offset
, count
, &total
);
1112 cnt
= do_co_write_zeroes(blk
, offset
, count
, &total
);
1114 cnt
= do_write_compressed(blk
, buf
, offset
, count
, &total
);
1116 cnt
= do_write(blk
, buf
, offset
, count
, &total
);
1118 gettimeofday(&t2
, NULL
);
1121 printf("write failed: %s\n", strerror(-cnt
));
1129 /* Finally, report back -- -C gives a parsable format */
1131 print_report("wrote", &t2
, offset
, count
, total
, cnt
, Cflag
);
1146 " writes a range of bytes from the given offset source from multiple buffers\n"
1149 " 'writev 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1151 " Writes into a segment of the currently open file, using a buffer\n"
1152 " filled with a set pattern (0xcdcdcdcd).\n"
1153 " -P, -- use different pattern to fill file\n"
1154 " -C, -- report statistics in a machine parsable format\n"
1155 " -q, -- quiet mode, do not show I/O statistics\n"
1159 static int writev_f(BlockBackend
*blk
, int argc
, char **argv
);
1161 static const cmdinfo_t writev_cmd
= {
1166 .args
= "[-Cq] [-P pattern ] off len [len..]",
1167 .oneline
= "writes a number of bytes at a specified offset",
1168 .help
= writev_help
,
1171 static int writev_f(BlockBackend
*blk
, int argc
, char **argv
)
1173 struct timeval t1
, t2
;
1174 int Cflag
= 0, qflag
= 0;
1178 /* Some compilers get confused and warn if this is not initialized. */
1184 while ((c
= getopt(argc
, argv
, "CqP:")) != -1) {
1193 pattern
= parse_pattern(optarg
);
1199 return qemuio_command_usage(&writev_cmd
);
1203 if (optind
> argc
- 2) {
1204 return qemuio_command_usage(&writev_cmd
);
1207 offset
= cvtnum(argv
[optind
]);
1209 print_cvtnum_err(offset
, argv
[optind
]);
1214 if (offset
& 0x1ff) {
1215 printf("offset %" PRId64
" is not sector aligned\n",
1220 nr_iov
= argc
- optind
;
1221 buf
= create_iovec(blk
, &qiov
, &argv
[optind
], nr_iov
, pattern
);
1226 gettimeofday(&t1
, NULL
);
1227 cnt
= do_aio_writev(blk
, &qiov
, offset
, &total
);
1228 gettimeofday(&t2
, NULL
);
1231 printf("writev failed: %s\n", strerror(-cnt
));
1239 /* Finally, report back -- -C gives a parsable format */
1241 print_report("wrote", &t2
, offset
, qiov
.size
, total
, cnt
, Cflag
);
1243 qemu_iovec_destroy(&qiov
);
1248 static void multiwrite_help(void)
1252 " writes a range of bytes from the given offset source from multiple buffers,\n"
1253 " in a batch of requests that may be merged by qemu\n"
1256 " 'multiwrite 512 1k 1k ; 4k 1k'\n"
1257 " writes 2 kB at 512 bytes and 1 kB at 4 kB into the open file\n"
1259 " Writes into a segment of the currently open file, using a buffer\n"
1260 " filled with a set pattern (0xcdcdcdcd). The pattern byte is increased\n"
1261 " by one for each request contained in the multiwrite command.\n"
1262 " -P, -- use different pattern to fill file\n"
1263 " -C, -- report statistics in a machine parsable format\n"
1264 " -q, -- quiet mode, do not show I/O statistics\n"
1268 static int multiwrite_f(BlockBackend
*blk
, int argc
, char **argv
);
1270 static const cmdinfo_t multiwrite_cmd
= {
1271 .name
= "multiwrite",
1272 .cfunc
= multiwrite_f
,
1275 .args
= "[-Cq] [-P pattern ] off len [len..] [; off len [len..]..]",
1276 .oneline
= "issues multiple write requests at once",
1277 .help
= multiwrite_help
,
1280 static int multiwrite_f(BlockBackend
*blk
, int argc
, char **argv
)
1282 struct timeval t1
, t2
;
1283 int Cflag
= 0, qflag
= 0;
1286 int64_t offset
, first_offset
= 0;
1287 /* Some compilers get confused and warn if this is not initialized. */
1292 QEMUIOVector
*qiovs
;
1296 while ((c
= getopt(argc
, argv
, "CqP:")) != -1) {
1305 pattern
= parse_pattern(optarg
);
1311 return qemuio_command_usage(&writev_cmd
);
1315 if (optind
> argc
- 2) {
1316 return qemuio_command_usage(&writev_cmd
);
1320 for (i
= optind
; i
< argc
; i
++) {
1321 if (!strcmp(argv
[i
], ";")) {
1326 reqs
= g_new0(BlockRequest
, nr_reqs
);
1327 buf
= g_new0(char *, nr_reqs
);
1328 qiovs
= g_new(QEMUIOVector
, nr_reqs
);
1330 for (i
= 0; i
< nr_reqs
&& optind
< argc
; i
++) {
1333 /* Read the offset of the request */
1334 offset
= cvtnum(argv
[optind
]);
1336 print_cvtnum_err(offset
, argv
[optind
]);
1341 if (offset
& 0x1ff) {
1342 printf("offset %lld is not sector aligned\n",
1348 first_offset
= offset
;
1351 /* Read lengths for qiov entries */
1352 for (j
= optind
; j
< argc
; j
++) {
1353 if (!strcmp(argv
[j
], ";")) {
1358 nr_iov
= j
- optind
;
1361 buf
[i
] = create_iovec(blk
, &qiovs
[i
], &argv
[optind
], nr_iov
, pattern
);
1362 if (buf
[i
] == NULL
) {
1366 reqs
[i
].qiov
= &qiovs
[i
];
1367 reqs
[i
].sector
= offset
>> 9;
1368 reqs
[i
].nb_sectors
= reqs
[i
].qiov
->size
>> 9;
1375 /* If there were empty requests at the end, ignore them */
1378 gettimeofday(&t1
, NULL
);
1379 cnt
= do_aio_multiwrite(blk
, reqs
, nr_reqs
, &total
);
1380 gettimeofday(&t2
, NULL
);
1383 printf("aio_multiwrite failed: %s\n", strerror(-cnt
));
1391 /* Finally, report back -- -C gives a parsable format */
1393 print_report("wrote", &t2
, first_offset
, total
, total
, cnt
, Cflag
);
1395 for (i
= 0; i
< nr_reqs
; i
++) {
1396 qemu_io_free(buf
[i
]);
1397 if (reqs
[i
].qiov
!= NULL
) {
1398 qemu_iovec_destroy(&qiovs
[i
]);
1416 BlockAcctCookie acct
;
1421 static void aio_write_done(void *opaque
, int ret
)
1423 struct aio_ctx
*ctx
= opaque
;
1426 gettimeofday(&t2
, NULL
);
1430 printf("aio_write failed: %s\n", strerror(-ret
));
1434 block_acct_done(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1440 /* Finally, report back -- -C gives a parsable format */
1441 t2
= tsub(t2
, ctx
->t1
);
1442 print_report("wrote", &t2
, ctx
->offset
, ctx
->qiov
.size
,
1443 ctx
->qiov
.size
, 1, ctx
->Cflag
);
1445 qemu_io_free(ctx
->buf
);
1446 qemu_iovec_destroy(&ctx
->qiov
);
1450 static void aio_read_done(void *opaque
, int ret
)
1452 struct aio_ctx
*ctx
= opaque
;
1455 gettimeofday(&t2
, NULL
);
1458 printf("readv failed: %s\n", strerror(-ret
));
1463 void *cmp_buf
= g_malloc(ctx
->qiov
.size
);
1465 memset(cmp_buf
, ctx
->pattern
, ctx
->qiov
.size
);
1466 if (memcmp(ctx
->buf
, cmp_buf
, ctx
->qiov
.size
)) {
1467 printf("Pattern verification failed at offset %"
1468 PRId64
", %zd bytes\n", ctx
->offset
, ctx
->qiov
.size
);
1473 block_acct_done(blk_get_stats(ctx
->blk
), &ctx
->acct
);
1480 dump_buffer(ctx
->buf
, ctx
->offset
, ctx
->qiov
.size
);
1483 /* Finally, report back -- -C gives a parsable format */
1484 t2
= tsub(t2
, ctx
->t1
);
1485 print_report("read", &t2
, ctx
->offset
, ctx
->qiov
.size
,
1486 ctx
->qiov
.size
, 1, ctx
->Cflag
);
1488 qemu_io_free(ctx
->buf
);
1489 qemu_iovec_destroy(&ctx
->qiov
);
1493 static void aio_read_help(void)
1497 " asynchronously reads a range of bytes from the given offset\n"
1500 " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
1502 " Reads a segment of the currently open file, optionally dumping it to the\n"
1503 " standard output stream (with -v option) for subsequent inspection.\n"
1504 " The read is performed asynchronously and the aio_flush command must be\n"
1505 " used to ensure all outstanding aio requests have been completed.\n"
1506 " -C, -- report statistics in a machine parsable format\n"
1507 " -P, -- use a pattern to verify read data\n"
1508 " -v, -- dump buffer to standard output\n"
1509 " -q, -- quiet mode, do not show I/O statistics\n"
1513 static int aio_read_f(BlockBackend
*blk
, int argc
, char **argv
);
1515 static const cmdinfo_t aio_read_cmd
= {
1517 .cfunc
= aio_read_f
,
1520 .args
= "[-Cqv] [-P pattern ] off len [len..]",
1521 .oneline
= "asynchronously reads a number of bytes",
1522 .help
= aio_read_help
,
1525 static int aio_read_f(BlockBackend
*blk
, int argc
, char **argv
)
1528 struct aio_ctx
*ctx
= g_new0(struct aio_ctx
, 1);
1531 while ((c
= getopt(argc
, argv
, "CP:qv")) != -1) {
1538 ctx
->pattern
= parse_pattern(optarg
);
1539 if (ctx
->pattern
< 0) {
1552 return qemuio_command_usage(&aio_read_cmd
);
1556 if (optind
> argc
- 2) {
1558 return qemuio_command_usage(&aio_read_cmd
);
1561 ctx
->offset
= cvtnum(argv
[optind
]);
1562 if (ctx
->offset
< 0) {
1563 print_cvtnum_err(ctx
->offset
, argv
[optind
]);
1569 if (ctx
->offset
& 0x1ff) {
1570 printf("offset %" PRId64
" is not sector aligned\n",
1576 nr_iov
= argc
- optind
;
1577 ctx
->buf
= create_iovec(blk
, &ctx
->qiov
, &argv
[optind
], nr_iov
, 0xab);
1578 if (ctx
->buf
== NULL
) {
1583 gettimeofday(&ctx
->t1
, NULL
);
1584 block_acct_start(blk_get_stats(blk
), &ctx
->acct
, ctx
->qiov
.size
,
1586 blk_aio_readv(blk
, ctx
->offset
>> 9, &ctx
->qiov
,
1587 ctx
->qiov
.size
>> 9, aio_read_done
, ctx
);
1591 static void aio_write_help(void)
1595 " asynchronously writes a range of bytes from the given offset source\n"
1596 " from multiple buffers\n"
1599 " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1601 " Writes into a segment of the currently open file, using a buffer\n"
1602 " filled with a set pattern (0xcdcdcdcd).\n"
1603 " The write is performed asynchronously and the aio_flush command must be\n"
1604 " used to ensure all outstanding aio requests have been completed.\n"
1605 " -P, -- use different pattern to fill file\n"
1606 " -C, -- report statistics in a machine parsable format\n"
1607 " -q, -- quiet mode, do not show I/O statistics\n"
1611 static int aio_write_f(BlockBackend
*blk
, int argc
, char **argv
);
1613 static const cmdinfo_t aio_write_cmd
= {
1614 .name
= "aio_write",
1615 .cfunc
= aio_write_f
,
1618 .args
= "[-Cq] [-P pattern ] off len [len..]",
1619 .oneline
= "asynchronously writes a number of bytes",
1620 .help
= aio_write_help
,
1623 static int aio_write_f(BlockBackend
*blk
, int argc
, char **argv
)
1627 struct aio_ctx
*ctx
= g_new0(struct aio_ctx
, 1);
1630 while ((c
= getopt(argc
, argv
, "CqP:")) != -1) {
1639 pattern
= parse_pattern(optarg
);
1647 return qemuio_command_usage(&aio_write_cmd
);
1651 if (optind
> argc
- 2) {
1653 return qemuio_command_usage(&aio_write_cmd
);
1656 ctx
->offset
= cvtnum(argv
[optind
]);
1657 if (ctx
->offset
< 0) {
1658 print_cvtnum_err(ctx
->offset
, argv
[optind
]);
1664 if (ctx
->offset
& 0x1ff) {
1665 printf("offset %" PRId64
" is not sector aligned\n",
1671 nr_iov
= argc
- optind
;
1672 ctx
->buf
= create_iovec(blk
, &ctx
->qiov
, &argv
[optind
], nr_iov
, pattern
);
1673 if (ctx
->buf
== NULL
) {
1678 gettimeofday(&ctx
->t1
, NULL
);
1679 block_acct_start(blk_get_stats(blk
), &ctx
->acct
, ctx
->qiov
.size
,
1681 blk_aio_writev(blk
, ctx
->offset
>> 9, &ctx
->qiov
,
1682 ctx
->qiov
.size
>> 9, aio_write_done
, ctx
);
1686 static int aio_flush_f(BlockBackend
*blk
, int argc
, char **argv
)
1692 static const cmdinfo_t aio_flush_cmd
= {
1693 .name
= "aio_flush",
1694 .cfunc
= aio_flush_f
,
1695 .oneline
= "completes all outstanding aio requests"
1698 static int flush_f(BlockBackend
*blk
, int argc
, char **argv
)
1704 static const cmdinfo_t flush_cmd
= {
1708 .oneline
= "flush all in-core file state to disk",
1711 static int truncate_f(BlockBackend
*blk
, int argc
, char **argv
)
1716 offset
= cvtnum(argv
[1]);
1718 print_cvtnum_err(offset
, argv
[1]);
1722 ret
= blk_truncate(blk
, offset
);
1724 printf("truncate: %s\n", strerror(-ret
));
1731 static const cmdinfo_t truncate_cmd
= {
1734 .cfunc
= truncate_f
,
1738 .oneline
= "truncates the current file at the given offset",
1741 static int length_f(BlockBackend
*blk
, int argc
, char **argv
)
1746 size
= blk_getlength(blk
);
1748 printf("getlength: %s\n", strerror(-size
));
1752 cvtstr(size
, s1
, sizeof(s1
));
1758 static const cmdinfo_t length_cmd
= {
1762 .oneline
= "gets the length of the current file",
1766 static int info_f(BlockBackend
*blk
, int argc
, char **argv
)
1768 BlockDriverState
*bs
= blk_bs(blk
);
1769 BlockDriverInfo bdi
;
1770 ImageInfoSpecific
*spec_info
;
1771 char s1
[64], s2
[64];
1774 if (bs
->drv
&& bs
->drv
->format_name
) {
1775 printf("format name: %s\n", bs
->drv
->format_name
);
1777 if (bs
->drv
&& bs
->drv
->protocol_name
) {
1778 printf("format name: %s\n", bs
->drv
->protocol_name
);
1781 ret
= bdrv_get_info(bs
, &bdi
);
1786 cvtstr(bdi
.cluster_size
, s1
, sizeof(s1
));
1787 cvtstr(bdi
.vm_state_offset
, s2
, sizeof(s2
));
1789 printf("cluster size: %s\n", s1
);
1790 printf("vm state offset: %s\n", s2
);
1792 spec_info
= bdrv_get_specific_info(bs
);
1794 printf("Format specific information:\n");
1795 bdrv_image_info_specific_dump(fprintf
, stdout
, spec_info
);
1796 qapi_free_ImageInfoSpecific(spec_info
);
1804 static const cmdinfo_t info_cmd
= {
1808 .oneline
= "prints information about the current file",
1811 static void discard_help(void)
1815 " discards a range of bytes from the given offset\n"
1818 " 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n"
1820 " Discards a segment of the currently open file.\n"
1821 " -C, -- report statistics in a machine parsable format\n"
1822 " -q, -- quiet mode, do not show I/O statistics\n"
1826 static int discard_f(BlockBackend
*blk
, int argc
, char **argv
);
1828 static const cmdinfo_t discard_cmd
= {
1834 .args
= "[-Cq] off len",
1835 .oneline
= "discards a number of bytes at a specified offset",
1836 .help
= discard_help
,
1839 static int discard_f(BlockBackend
*blk
, int argc
, char **argv
)
1841 struct timeval t1
, t2
;
1842 int Cflag
= 0, qflag
= 0;
1844 int64_t offset
, count
;
1846 while ((c
= getopt(argc
, argv
, "Cq")) != -1) {
1855 return qemuio_command_usage(&discard_cmd
);
1859 if (optind
!= argc
- 2) {
1860 return qemuio_command_usage(&discard_cmd
);
1863 offset
= cvtnum(argv
[optind
]);
1865 print_cvtnum_err(offset
, argv
[optind
]);
1870 count
= cvtnum(argv
[optind
]);
1872 print_cvtnum_err(count
, argv
[optind
]);
1874 } else if (count
>> BDRV_SECTOR_BITS
> INT_MAX
) {
1875 printf("length cannot exceed %"PRIu64
", given %s\n",
1876 (uint64_t)INT_MAX
<< BDRV_SECTOR_BITS
,
1881 gettimeofday(&t1
, NULL
);
1882 ret
= blk_discard(blk
, offset
>> BDRV_SECTOR_BITS
,
1883 count
>> BDRV_SECTOR_BITS
);
1884 gettimeofday(&t2
, NULL
);
1887 printf("discard failed: %s\n", strerror(-ret
));
1891 /* Finally, report back -- -C gives a parsable format */
1894 print_report("discard", &t2
, offset
, count
, count
, 1, Cflag
);
1901 static int alloc_f(BlockBackend
*blk
, int argc
, char **argv
)
1903 BlockDriverState
*bs
= blk_bs(blk
);
1904 int64_t offset
, sector_num
, nb_sectors
, remaining
;
1909 offset
= cvtnum(argv
[1]);
1911 print_cvtnum_err(offset
, argv
[1]);
1913 } else if (offset
& 0x1ff) {
1914 printf("offset %" PRId64
" is not sector aligned\n",
1920 nb_sectors
= cvtnum(argv
[2]);
1921 if (nb_sectors
< 0) {
1922 print_cvtnum_err(nb_sectors
, argv
[2]);
1924 } else if (nb_sectors
> INT_MAX
) {
1925 printf("length argument cannot exceed %d, given %s\n",
1933 remaining
= nb_sectors
;
1935 sector_num
= offset
>> 9;
1937 ret
= bdrv_is_allocated(bs
, sector_num
, remaining
, &num
);
1939 printf("is_allocated failed: %s\n", strerror(-ret
));
1948 nb_sectors
-= remaining
;
1953 cvtstr(offset
, s1
, sizeof(s1
));
1955 printf("%"PRId64
"/%"PRId64
" sectors allocated at offset %s\n",
1956 sum_alloc
, nb_sectors
, s1
);
1960 static const cmdinfo_t alloc_cmd
= {
1966 .args
= "off [sectors]",
1967 .oneline
= "checks if a sector is present in the file",
1971 static int map_is_allocated(BlockDriverState
*bs
, int64_t sector_num
,
1972 int64_t nb_sectors
, int64_t *pnum
)
1974 int num
, num_checked
;
1977 num_checked
= MIN(nb_sectors
, INT_MAX
);
1978 ret
= bdrv_is_allocated(bs
, sector_num
, num_checked
, &num
);
1986 while (nb_sectors
> 0 && ret
== firstret
) {
1990 num_checked
= MIN(nb_sectors
, INT_MAX
);
1991 ret
= bdrv_is_allocated(bs
, sector_num
, num_checked
, &num
);
1992 if (ret
== firstret
&& num
) {
2002 static int map_f(BlockBackend
*blk
, int argc
, char **argv
)
2005 int64_t nb_sectors
, total_sectors
;
2012 total_sectors
= blk_nb_sectors(blk
);
2013 if (total_sectors
< 0) {
2014 error_report("Failed to query image length: %s",
2015 strerror(-total_sectors
));
2019 nb_sectors
= total_sectors
;
2022 ret
= map_is_allocated(blk_bs(blk
), offset
, nb_sectors
, &num
);
2024 error_report("Failed to get allocation status: %s", strerror(-ret
));
2027 error_report("Unexpected end of image");
2031 retstr
= ret
? " allocated" : "not allocated";
2032 cvtstr(offset
<< 9ULL, s1
, sizeof(s1
));
2033 printf("[% 24" PRId64
"] % 8" PRId64
"/% 8" PRId64
" sectors %s "
2034 "at offset %s (%d)\n",
2035 offset
<< 9ULL, num
, nb_sectors
, retstr
, s1
, ret
);
2039 } while (offset
< total_sectors
);
2044 static const cmdinfo_t map_cmd
= {
2050 .oneline
= "prints the allocated areas of a file",
2053 static void reopen_help(void)
2057 " Changes the open options of an already opened image\n"
2060 " 'reopen -o lazy-refcounts=on' - activates lazy refcount writeback on a qcow2 image\n"
2062 " -r, -- Reopen the image read-only\n"
2063 " -c, -- Change the cache mode to the given value\n"
2064 " -o, -- Changes block driver options (cf. 'open' command)\n"
2068 static int reopen_f(BlockBackend
*blk
, int argc
, char **argv
);
2070 static QemuOptsList reopen_opts
= {
2072 .merge_lists
= true,
2073 .head
= QTAILQ_HEAD_INITIALIZER(reopen_opts
.head
),
2075 /* no elements => accept any params */
2076 { /* end of list */ }
2080 static const cmdinfo_t reopen_cmd
= {
2085 .args
= "[-r] [-c cache] [-o options]",
2086 .oneline
= "reopens an image with new options",
2087 .help
= reopen_help
,
2090 static int reopen_f(BlockBackend
*blk
, int argc
, char **argv
)
2092 BlockDriverState
*bs
= blk_bs(blk
);
2096 int flags
= bs
->open_flags
;
2098 BlockReopenQueue
*brq
;
2099 Error
*local_err
= NULL
;
2101 while ((c
= getopt(argc
, argv
, "c:o:r")) != -1) {
2104 if (bdrv_parse_cache_flags(optarg
, &flags
) < 0) {
2105 error_report("Invalid cache option: %s", optarg
);
2110 if (!qemu_opts_parse_noisily(&reopen_opts
, optarg
, 0)) {
2111 qemu_opts_reset(&reopen_opts
);
2116 flags
&= ~BDRV_O_RDWR
;
2119 qemu_opts_reset(&reopen_opts
);
2120 return qemuio_command_usage(&reopen_cmd
);
2124 if (optind
!= argc
) {
2125 qemu_opts_reset(&reopen_opts
);
2126 return qemuio_command_usage(&reopen_cmd
);
2129 qopts
= qemu_opts_find(&reopen_opts
, NULL
);
2130 opts
= qopts
? qemu_opts_to_qdict(qopts
, NULL
) : NULL
;
2131 qemu_opts_reset(&reopen_opts
);
2133 brq
= bdrv_reopen_queue(NULL
, bs
, opts
, flags
);
2134 bdrv_reopen_multiple(brq
, &local_err
);
2136 error_report_err(local_err
);
2142 static int break_f(BlockBackend
*blk
, int argc
, char **argv
)
2146 ret
= bdrv_debug_breakpoint(blk_bs(blk
), argv
[1], argv
[2]);
2148 printf("Could not set breakpoint: %s\n", strerror(-ret
));
2154 static int remove_break_f(BlockBackend
*blk
, int argc
, char **argv
)
2158 ret
= bdrv_debug_remove_breakpoint(blk_bs(blk
), argv
[1]);
2160 printf("Could not remove breakpoint %s: %s\n", argv
[1], strerror(-ret
));
2166 static const cmdinfo_t break_cmd
= {
2171 .args
= "event tag",
2172 .oneline
= "sets a breakpoint on event and tags the stopped "
2176 static const cmdinfo_t remove_break_cmd
= {
2177 .name
= "remove_break",
2180 .cfunc
= remove_break_f
,
2182 .oneline
= "remove a breakpoint by tag",
2185 static int resume_f(BlockBackend
*blk
, int argc
, char **argv
)
2189 ret
= bdrv_debug_resume(blk_bs(blk
), argv
[1]);
2191 printf("Could not resume request: %s\n", strerror(-ret
));
2197 static const cmdinfo_t resume_cmd
= {
2203 .oneline
= "resumes the request tagged as tag",
2206 static int wait_break_f(BlockBackend
*blk
, int argc
, char **argv
)
2208 while (!bdrv_debug_is_suspended(blk_bs(blk
), argv
[1])) {
2209 aio_poll(blk_get_aio_context(blk
), true);
2215 static const cmdinfo_t wait_break_cmd
= {
2216 .name
= "wait_break",
2219 .cfunc
= wait_break_f
,
2221 .oneline
= "waits for the suspension of a request",
2224 static int abort_f(BlockBackend
*blk
, int argc
, char **argv
)
2229 static const cmdinfo_t abort_cmd
= {
2232 .flags
= CMD_NOFILE_OK
,
2233 .oneline
= "simulate a program crash using abort(3)",
2236 static void sigraise_help(void)
2240 " raises the given signal\n"
2243 " 'sigraise %i' - raises SIGTERM\n"
2245 " Invokes raise(signal), where \"signal\" is the mandatory integer argument\n"
2246 " given to sigraise.\n"
2250 static int sigraise_f(BlockBackend
*blk
, int argc
, char **argv
);
2252 static const cmdinfo_t sigraise_cmd
= {
2254 .cfunc
= sigraise_f
,
2257 .flags
= CMD_NOFILE_OK
,
2259 .oneline
= "raises a signal",
2260 .help
= sigraise_help
,
2263 static int sigraise_f(BlockBackend
*blk
, int argc
, char **argv
)
2265 int64_t sig
= cvtnum(argv
[1]);
2267 print_cvtnum_err(sig
, argv
[1]);
2269 } else if (sig
> NSIG
) {
2270 printf("signal argument '%s' is too large to be a valid signal\n",
2275 /* Using raise() to kill this process does not necessarily flush all open
2276 * streams. At least stdout and stderr (although the latter should be
2277 * non-buffered anyway) should be flushed, though. */
2285 static void sleep_cb(void *opaque
)
2287 bool *expired
= opaque
;
2291 static int sleep_f(BlockBackend
*blk
, int argc
, char **argv
)
2295 struct QEMUTimer
*timer
;
2296 bool expired
= false;
2298 ms
= strtol(argv
[1], &endptr
, 0);
2299 if (ms
< 0 || *endptr
!= '\0') {
2300 printf("%s is not a valid number\n", argv
[1]);
2304 timer
= timer_new_ns(QEMU_CLOCK_HOST
, sleep_cb
, &expired
);
2305 timer_mod(timer
, qemu_clock_get_ns(QEMU_CLOCK_HOST
) + SCALE_MS
* ms
);
2308 main_loop_wait(false);
2316 static const cmdinfo_t sleep_cmd
= {
2321 .flags
= CMD_NOFILE_OK
,
2322 .oneline
= "waits for the given value in milliseconds",
2325 static void help_oneline(const char *cmd
, const cmdinfo_t
*ct
)
2330 printf("%s ", ct
->name
);
2332 printf("(or %s) ", ct
->altname
);
2337 printf("%s ", ct
->args
);
2339 printf("-- %s\n", ct
->oneline
);
2342 static void help_onecmd(const char *cmd
, const cmdinfo_t
*ct
)
2344 help_oneline(cmd
, ct
);
2350 static void help_all(void)
2352 const cmdinfo_t
*ct
;
2354 for (ct
= cmdtab
; ct
< &cmdtab
[ncmds
]; ct
++) {
2355 help_oneline(ct
->name
, ct
);
2357 printf("\nUse 'help commandname' for extended help.\n");
2360 static int help_f(BlockBackend
*blk
, int argc
, char **argv
)
2362 const cmdinfo_t
*ct
;
2369 ct
= find_command(argv
[1]);
2371 printf("command %s not found\n", argv
[1]);
2375 help_onecmd(argv
[1], ct
);
2379 static const cmdinfo_t help_cmd
= {
2385 .flags
= CMD_FLAG_GLOBAL
,
2386 .args
= "[command]",
2387 .oneline
= "help for one or all commands",
2390 bool qemuio_command(BlockBackend
*blk
, const char *cmd
)
2393 const cmdinfo_t
*ct
;
2398 input
= g_strdup(cmd
);
2399 v
= breakline(input
, &c
);
2401 ct
= find_command(v
[0]);
2403 done
= command(blk
, ct
, c
, v
);
2405 fprintf(stderr
, "command \"%s\" not found\n", v
[0]);
2414 static void __attribute((constructor
)) init_qemuio_commands(void)
2416 /* initialize commands */
2417 qemuio_add_command(&help_cmd
);
2418 qemuio_add_command(&read_cmd
);
2419 qemuio_add_command(&readv_cmd
);
2420 qemuio_add_command(&write_cmd
);
2421 qemuio_add_command(&writev_cmd
);
2422 qemuio_add_command(&multiwrite_cmd
);
2423 qemuio_add_command(&aio_read_cmd
);
2424 qemuio_add_command(&aio_write_cmd
);
2425 qemuio_add_command(&aio_flush_cmd
);
2426 qemuio_add_command(&flush_cmd
);
2427 qemuio_add_command(&truncate_cmd
);
2428 qemuio_add_command(&length_cmd
);
2429 qemuio_add_command(&info_cmd
);
2430 qemuio_add_command(&discard_cmd
);
2431 qemuio_add_command(&alloc_cmd
);
2432 qemuio_add_command(&map_cmd
);
2433 qemuio_add_command(&reopen_cmd
);
2434 qemuio_add_command(&break_cmd
);
2435 qemuio_add_command(&remove_break_cmd
);
2436 qemuio_add_command(&resume_cmd
);
2437 qemuio_add_command(&wait_break_cmd
);
2438 qemuio_add_command(&abort_cmd
);
2439 qemuio_add_command(&sleep_cmd
);
2440 qemuio_add_command(&sigraise_cmd
);