xref: /qemu/qemu-io-cmds.c (revision 4694020d)
1797ac58cSKevin Wolf /*
2797ac58cSKevin Wolf  * Command line utility to exercise the QEMU I/O path.
3797ac58cSKevin Wolf  *
4797ac58cSKevin Wolf  * Copyright (C) 2009 Red Hat, Inc.
5797ac58cSKevin Wolf  * Copyright (c) 2003-2005 Silicon Graphics, Inc.
6797ac58cSKevin Wolf  *
7797ac58cSKevin Wolf  * This work is licensed under the terms of the GNU GPL, version 2 or later.
8797ac58cSKevin Wolf  * See the COPYING file in the top-level directory.
9797ac58cSKevin Wolf  */
10797ac58cSKevin Wolf 
113d21994fSKevin Wolf #include "qemu-io.h"
12797ac58cSKevin Wolf #include "block/block_int.h"
13a8d8ecb7SMax Reitz #include "block/qapi.h"
146a1751b7SAlex Bligh #include "qemu/main-loop.h"
15797ac58cSKevin Wolf 
16797ac58cSKevin Wolf #define CMD_NOFILE_OK   0x01
17797ac58cSKevin Wolf 
18797ac58cSKevin Wolf int qemuio_misalign;
19797ac58cSKevin Wolf 
20c2cdf5c5SKevin Wolf static cmdinfo_t *cmdtab;
21c2cdf5c5SKevin Wolf static int ncmds;
22c2cdf5c5SKevin Wolf 
23c2cdf5c5SKevin Wolf static int compare_cmdname(const void *a, const void *b)
24c2cdf5c5SKevin Wolf {
25c2cdf5c5SKevin Wolf     return strcmp(((const cmdinfo_t *)a)->name,
26c2cdf5c5SKevin Wolf                   ((const cmdinfo_t *)b)->name);
27c2cdf5c5SKevin Wolf }
28c2cdf5c5SKevin Wolf 
29c2cdf5c5SKevin Wolf void qemuio_add_command(const cmdinfo_t *ci)
30c2cdf5c5SKevin Wolf {
31c2cdf5c5SKevin Wolf     cmdtab = g_realloc(cmdtab, ++ncmds * sizeof(*cmdtab));
32c2cdf5c5SKevin Wolf     cmdtab[ncmds - 1] = *ci;
33c2cdf5c5SKevin Wolf     qsort(cmdtab, ncmds, sizeof(*cmdtab), compare_cmdname);
34c2cdf5c5SKevin Wolf }
35c2cdf5c5SKevin Wolf 
36c2cdf5c5SKevin Wolf int qemuio_command_usage(const cmdinfo_t *ci)
37c2cdf5c5SKevin Wolf {
38c2cdf5c5SKevin Wolf     printf("%s %s -- %s\n", ci->name, ci->args, ci->oneline);
39c2cdf5c5SKevin Wolf     return 0;
40c2cdf5c5SKevin Wolf }
41c2cdf5c5SKevin Wolf 
42c2cdf5c5SKevin Wolf static int init_check_command(BlockDriverState *bs, const cmdinfo_t *ct)
43c2cdf5c5SKevin Wolf {
44c2cdf5c5SKevin Wolf     if (ct->flags & CMD_FLAG_GLOBAL) {
45c2cdf5c5SKevin Wolf         return 1;
46c2cdf5c5SKevin Wolf     }
47c2cdf5c5SKevin Wolf     if (!(ct->flags & CMD_NOFILE_OK) && !bs) {
48c2cdf5c5SKevin Wolf         fprintf(stderr, "no file open, try 'help open'\n");
49c2cdf5c5SKevin Wolf         return 0;
50c2cdf5c5SKevin Wolf     }
51c2cdf5c5SKevin Wolf     return 1;
52c2cdf5c5SKevin Wolf }
53c2cdf5c5SKevin Wolf 
543d21994fSKevin Wolf static int command(BlockDriverState *bs, const cmdinfo_t *ct, int argc,
553d21994fSKevin Wolf                    char **argv)
56c2cdf5c5SKevin Wolf {
57c2cdf5c5SKevin Wolf     char *cmd = argv[0];
58c2cdf5c5SKevin Wolf 
593d21994fSKevin Wolf     if (!init_check_command(bs, ct)) {
60c2cdf5c5SKevin Wolf         return 0;
61c2cdf5c5SKevin Wolf     }
62c2cdf5c5SKevin Wolf 
63c2cdf5c5SKevin Wolf     if (argc - 1 < ct->argmin || (ct->argmax != -1 && argc - 1 > ct->argmax)) {
64c2cdf5c5SKevin Wolf         if (ct->argmax == -1) {
65c2cdf5c5SKevin Wolf             fprintf(stderr,
66c2cdf5c5SKevin Wolf                     "bad argument count %d to %s, expected at least %d arguments\n",
67c2cdf5c5SKevin Wolf                     argc-1, cmd, ct->argmin);
68c2cdf5c5SKevin Wolf         } else if (ct->argmin == ct->argmax) {
69c2cdf5c5SKevin Wolf             fprintf(stderr,
70c2cdf5c5SKevin Wolf                     "bad argument count %d to %s, expected %d arguments\n",
71c2cdf5c5SKevin Wolf                     argc-1, cmd, ct->argmin);
72c2cdf5c5SKevin Wolf         } else {
73c2cdf5c5SKevin Wolf             fprintf(stderr,
74c2cdf5c5SKevin Wolf                     "bad argument count %d to %s, expected between %d and %d arguments\n",
75c2cdf5c5SKevin Wolf                     argc-1, cmd, ct->argmin, ct->argmax);
76c2cdf5c5SKevin Wolf         }
77c2cdf5c5SKevin Wolf         return 0;
78c2cdf5c5SKevin Wolf     }
79c2cdf5c5SKevin Wolf     optind = 0;
803d21994fSKevin Wolf     return ct->cfunc(bs, argc, argv);
81c2cdf5c5SKevin Wolf }
82c2cdf5c5SKevin Wolf 
83c2cdf5c5SKevin Wolf static const cmdinfo_t *find_command(const char *cmd)
84c2cdf5c5SKevin Wolf {
85c2cdf5c5SKevin Wolf     cmdinfo_t *ct;
86c2cdf5c5SKevin Wolf 
87c2cdf5c5SKevin Wolf     for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
88c2cdf5c5SKevin Wolf         if (strcmp(ct->name, cmd) == 0 ||
89c2cdf5c5SKevin Wolf             (ct->altname && strcmp(ct->altname, cmd) == 0))
90c2cdf5c5SKevin Wolf         {
91c2cdf5c5SKevin Wolf             return (const cmdinfo_t *)ct;
92c2cdf5c5SKevin Wolf         }
93c2cdf5c5SKevin Wolf     }
94c2cdf5c5SKevin Wolf     return NULL;
95c2cdf5c5SKevin Wolf }
96c2cdf5c5SKevin Wolf 
97*4694020dSStefan Hajnoczi /* Invoke fn() for commands with a matching prefix */
98*4694020dSStefan Hajnoczi void qemuio_complete_command(const char *input,
99*4694020dSStefan Hajnoczi                              void (*fn)(const char *cmd, void *opaque),
100*4694020dSStefan Hajnoczi                              void *opaque)
101*4694020dSStefan Hajnoczi {
102*4694020dSStefan Hajnoczi     cmdinfo_t *ct;
103*4694020dSStefan Hajnoczi     size_t input_len = strlen(input);
104*4694020dSStefan Hajnoczi 
105*4694020dSStefan Hajnoczi     for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
106*4694020dSStefan Hajnoczi         if (strncmp(input, ct->name, input_len) == 0) {
107*4694020dSStefan Hajnoczi             fn(ct->name, opaque);
108*4694020dSStefan Hajnoczi         }
109*4694020dSStefan Hajnoczi     }
110*4694020dSStefan Hajnoczi }
111*4694020dSStefan Hajnoczi 
112c2cdf5c5SKevin Wolf static char **breakline(char *input, int *count)
113c2cdf5c5SKevin Wolf {
114c2cdf5c5SKevin Wolf     int c = 0;
115c2cdf5c5SKevin Wolf     char *p;
116c2cdf5c5SKevin Wolf     char **rval = g_malloc0(sizeof(char *));
117c2cdf5c5SKevin Wolf     char **tmp;
118c2cdf5c5SKevin Wolf 
119c2cdf5c5SKevin Wolf     while (rval && (p = qemu_strsep(&input, " ")) != NULL) {
120c2cdf5c5SKevin Wolf         if (!*p) {
121c2cdf5c5SKevin Wolf             continue;
122c2cdf5c5SKevin Wolf         }
123c2cdf5c5SKevin Wolf         c++;
124c2cdf5c5SKevin Wolf         tmp = g_realloc(rval, sizeof(*rval) * (c + 1));
125c2cdf5c5SKevin Wolf         if (!tmp) {
126c2cdf5c5SKevin Wolf             g_free(rval);
127c2cdf5c5SKevin Wolf             rval = NULL;
128c2cdf5c5SKevin Wolf             c = 0;
129c2cdf5c5SKevin Wolf             break;
130c2cdf5c5SKevin Wolf         } else {
131c2cdf5c5SKevin Wolf             rval = tmp;
132c2cdf5c5SKevin Wolf         }
133c2cdf5c5SKevin Wolf         rval[c - 1] = p;
134c2cdf5c5SKevin Wolf         rval[c] = NULL;
135c2cdf5c5SKevin Wolf     }
136c2cdf5c5SKevin Wolf     *count = c;
137c2cdf5c5SKevin Wolf     return rval;
138c2cdf5c5SKevin Wolf }
139c2cdf5c5SKevin Wolf 
140797ac58cSKevin Wolf static int64_t cvtnum(const char *s)
141797ac58cSKevin Wolf {
142797ac58cSKevin Wolf     char *end;
143797ac58cSKevin Wolf     return strtosz_suffix(s, &end, STRTOSZ_DEFSUFFIX_B);
144797ac58cSKevin Wolf }
145797ac58cSKevin Wolf 
1460b613881SKevin Wolf #define EXABYTES(x)     ((long long)(x) << 60)
1470b613881SKevin Wolf #define PETABYTES(x)    ((long long)(x) << 50)
1480b613881SKevin Wolf #define TERABYTES(x)    ((long long)(x) << 40)
1490b613881SKevin Wolf #define GIGABYTES(x)    ((long long)(x) << 30)
1500b613881SKevin Wolf #define MEGABYTES(x)    ((long long)(x) << 20)
1510b613881SKevin Wolf #define KILOBYTES(x)    ((long long)(x) << 10)
1520b613881SKevin Wolf 
1530b613881SKevin Wolf #define TO_EXABYTES(x)  ((x) / EXABYTES(1))
1540b613881SKevin Wolf #define TO_PETABYTES(x) ((x) / PETABYTES(1))
1550b613881SKevin Wolf #define TO_TERABYTES(x) ((x) / TERABYTES(1))
1560b613881SKevin Wolf #define TO_GIGABYTES(x) ((x) / GIGABYTES(1))
1570b613881SKevin Wolf #define TO_MEGABYTES(x) ((x) / MEGABYTES(1))
1580b613881SKevin Wolf #define TO_KILOBYTES(x) ((x) / KILOBYTES(1))
1590b613881SKevin Wolf 
1600b613881SKevin Wolf static void cvtstr(double value, char *str, size_t size)
1610b613881SKevin Wolf {
1620b613881SKevin Wolf     char *trim;
1630b613881SKevin Wolf     const char *suffix;
1640b613881SKevin Wolf 
1650b613881SKevin Wolf     if (value >= EXABYTES(1)) {
1660b613881SKevin Wolf         suffix = " EiB";
1670b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_EXABYTES(value));
1680b613881SKevin Wolf     } else if (value >= PETABYTES(1)) {
1690b613881SKevin Wolf         suffix = " PiB";
1700b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_PETABYTES(value));
1710b613881SKevin Wolf     } else if (value >= TERABYTES(1)) {
1720b613881SKevin Wolf         suffix = " TiB";
1730b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_TERABYTES(value));
1740b613881SKevin Wolf     } else if (value >= GIGABYTES(1)) {
1750b613881SKevin Wolf         suffix = " GiB";
1760b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_GIGABYTES(value));
1770b613881SKevin Wolf     } else if (value >= MEGABYTES(1)) {
1780b613881SKevin Wolf         suffix = " MiB";
1790b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_MEGABYTES(value));
1800b613881SKevin Wolf     } else if (value >= KILOBYTES(1)) {
1810b613881SKevin Wolf         suffix = " KiB";
1820b613881SKevin Wolf         snprintf(str, size - 4, "%.3f", TO_KILOBYTES(value));
1830b613881SKevin Wolf     } else {
1840b613881SKevin Wolf         suffix = " bytes";
1850b613881SKevin Wolf         snprintf(str, size - 6, "%f", value);
1860b613881SKevin Wolf     }
1870b613881SKevin Wolf 
1880b613881SKevin Wolf     trim = strstr(str, ".000");
1890b613881SKevin Wolf     if (trim) {
1900b613881SKevin Wolf         strcpy(trim, suffix);
1910b613881SKevin Wolf     } else {
1920b613881SKevin Wolf         strcat(str, suffix);
1930b613881SKevin Wolf     }
1940b613881SKevin Wolf }
1950b613881SKevin Wolf 
1960b613881SKevin Wolf 
1970b613881SKevin Wolf 
1980b613881SKevin Wolf static struct timeval tsub(struct timeval t1, struct timeval t2)
1990b613881SKevin Wolf {
2000b613881SKevin Wolf     t1.tv_usec -= t2.tv_usec;
2010b613881SKevin Wolf     if (t1.tv_usec < 0) {
2020b613881SKevin Wolf         t1.tv_usec += 1000000;
2030b613881SKevin Wolf         t1.tv_sec--;
2040b613881SKevin Wolf     }
2050b613881SKevin Wolf     t1.tv_sec -= t2.tv_sec;
2060b613881SKevin Wolf     return t1;
2070b613881SKevin Wolf }
2080b613881SKevin Wolf 
2090b613881SKevin Wolf static double tdiv(double value, struct timeval tv)
2100b613881SKevin Wolf {
2110b613881SKevin Wolf     return value / ((double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0));
2120b613881SKevin Wolf }
2130b613881SKevin Wolf 
2140b613881SKevin Wolf #define HOURS(sec)      ((sec) / (60 * 60))
2150b613881SKevin Wolf #define MINUTES(sec)    (((sec) % (60 * 60)) / 60)
2160b613881SKevin Wolf #define SECONDS(sec)    ((sec) % 60)
2170b613881SKevin Wolf 
2180b613881SKevin Wolf enum {
2190b613881SKevin Wolf     DEFAULT_TIME        = 0x0,
2200b613881SKevin Wolf     TERSE_FIXED_TIME    = 0x1,
2210b613881SKevin Wolf     VERBOSE_FIXED_TIME  = 0x2,
2220b613881SKevin Wolf };
2230b613881SKevin Wolf 
2240b613881SKevin Wolf static void timestr(struct timeval *tv, char *ts, size_t size, int format)
2250b613881SKevin Wolf {
2260b613881SKevin Wolf     double usec = (double)tv->tv_usec / 1000000.0;
2270b613881SKevin Wolf 
2280b613881SKevin Wolf     if (format & TERSE_FIXED_TIME) {
2290b613881SKevin Wolf         if (!HOURS(tv->tv_sec)) {
2300b613881SKevin Wolf             snprintf(ts, size, "%u:%02u.%02u",
2310b613881SKevin Wolf                     (unsigned int) MINUTES(tv->tv_sec),
2320b613881SKevin Wolf                     (unsigned int) SECONDS(tv->tv_sec),
2330b613881SKevin Wolf                     (unsigned int) (usec * 100));
2340b613881SKevin Wolf             return;
2350b613881SKevin Wolf         }
2360b613881SKevin Wolf         format |= VERBOSE_FIXED_TIME; /* fallback if hours needed */
2370b613881SKevin Wolf     }
2380b613881SKevin Wolf 
2390b613881SKevin Wolf     if ((format & VERBOSE_FIXED_TIME) || tv->tv_sec) {
2400b613881SKevin Wolf         snprintf(ts, size, "%u:%02u:%02u.%02u",
2410b613881SKevin Wolf                 (unsigned int) HOURS(tv->tv_sec),
2420b613881SKevin Wolf                 (unsigned int) MINUTES(tv->tv_sec),
2430b613881SKevin Wolf                 (unsigned int) SECONDS(tv->tv_sec),
2440b613881SKevin Wolf                 (unsigned int) (usec * 100));
2450b613881SKevin Wolf     } else {
2460b613881SKevin Wolf         snprintf(ts, size, "0.%04u sec", (unsigned int) (usec * 10000));
2470b613881SKevin Wolf     }
2480b613881SKevin Wolf }
2490b613881SKevin Wolf 
250797ac58cSKevin Wolf /*
251797ac58cSKevin Wolf  * Parse the pattern argument to various sub-commands.
252797ac58cSKevin Wolf  *
253797ac58cSKevin Wolf  * Because the pattern is used as an argument to memset it must evaluate
254797ac58cSKevin Wolf  * to an unsigned integer that fits into a single byte.
255797ac58cSKevin Wolf  */
256797ac58cSKevin Wolf static int parse_pattern(const char *arg)
257797ac58cSKevin Wolf {
258797ac58cSKevin Wolf     char *endptr = NULL;
259797ac58cSKevin Wolf     long pattern;
260797ac58cSKevin Wolf 
261797ac58cSKevin Wolf     pattern = strtol(arg, &endptr, 0);
262797ac58cSKevin Wolf     if (pattern < 0 || pattern > UCHAR_MAX || *endptr != '\0') {
263797ac58cSKevin Wolf         printf("%s is not a valid pattern byte\n", arg);
264797ac58cSKevin Wolf         return -1;
265797ac58cSKevin Wolf     }
266797ac58cSKevin Wolf 
267797ac58cSKevin Wolf     return pattern;
268797ac58cSKevin Wolf }
269797ac58cSKevin Wolf 
270797ac58cSKevin Wolf /*
271797ac58cSKevin Wolf  * Memory allocation helpers.
272797ac58cSKevin Wolf  *
273797ac58cSKevin Wolf  * Make sure memory is aligned by default, or purposefully misaligned if
274797ac58cSKevin Wolf  * that is specified on the command line.
275797ac58cSKevin Wolf  */
276797ac58cSKevin Wolf 
277797ac58cSKevin Wolf #define MISALIGN_OFFSET     16
278797ac58cSKevin Wolf static void *qemu_io_alloc(BlockDriverState *bs, size_t len, int pattern)
279797ac58cSKevin Wolf {
280797ac58cSKevin Wolf     void *buf;
281797ac58cSKevin Wolf 
282797ac58cSKevin Wolf     if (qemuio_misalign) {
283797ac58cSKevin Wolf         len += MISALIGN_OFFSET;
284797ac58cSKevin Wolf     }
285797ac58cSKevin Wolf     buf = qemu_blockalign(bs, len);
286797ac58cSKevin Wolf     memset(buf, pattern, len);
287797ac58cSKevin Wolf     if (qemuio_misalign) {
288797ac58cSKevin Wolf         buf += MISALIGN_OFFSET;
289797ac58cSKevin Wolf     }
290797ac58cSKevin Wolf     return buf;
291797ac58cSKevin Wolf }
292797ac58cSKevin Wolf 
293797ac58cSKevin Wolf static void qemu_io_free(void *p)
294797ac58cSKevin Wolf {
295797ac58cSKevin Wolf     if (qemuio_misalign) {
296797ac58cSKevin Wolf         p -= MISALIGN_OFFSET;
297797ac58cSKevin Wolf     }
298797ac58cSKevin Wolf     qemu_vfree(p);
299797ac58cSKevin Wolf }
300797ac58cSKevin Wolf 
301797ac58cSKevin Wolf static void dump_buffer(const void *buffer, int64_t offset, int len)
302797ac58cSKevin Wolf {
303797ac58cSKevin Wolf     int i, j;
304797ac58cSKevin Wolf     const uint8_t *p;
305797ac58cSKevin Wolf 
306797ac58cSKevin Wolf     for (i = 0, p = buffer; i < len; i += 16) {
307797ac58cSKevin Wolf         const uint8_t *s = p;
308797ac58cSKevin Wolf 
309797ac58cSKevin Wolf         printf("%08" PRIx64 ":  ", offset + i);
310797ac58cSKevin Wolf         for (j = 0; j < 16 && i + j < len; j++, p++) {
311797ac58cSKevin Wolf             printf("%02x ", *p);
312797ac58cSKevin Wolf         }
313797ac58cSKevin Wolf         printf(" ");
314797ac58cSKevin Wolf         for (j = 0; j < 16 && i + j < len; j++, s++) {
315797ac58cSKevin Wolf             if (isalnum(*s)) {
316797ac58cSKevin Wolf                 printf("%c", *s);
317797ac58cSKevin Wolf             } else {
318797ac58cSKevin Wolf                 printf(".");
319797ac58cSKevin Wolf             }
320797ac58cSKevin Wolf         }
321797ac58cSKevin Wolf         printf("\n");
322797ac58cSKevin Wolf     }
323797ac58cSKevin Wolf }
324797ac58cSKevin Wolf 
325797ac58cSKevin Wolf static void print_report(const char *op, struct timeval *t, int64_t offset,
326797ac58cSKevin Wolf                          int count, int total, int cnt, int Cflag)
327797ac58cSKevin Wolf {
328797ac58cSKevin Wolf     char s1[64], s2[64], ts[64];
329797ac58cSKevin Wolf 
330797ac58cSKevin Wolf     timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0);
331797ac58cSKevin Wolf     if (!Cflag) {
332797ac58cSKevin Wolf         cvtstr((double)total, s1, sizeof(s1));
333797ac58cSKevin Wolf         cvtstr(tdiv((double)total, *t), s2, sizeof(s2));
334797ac58cSKevin Wolf         printf("%s %d/%d bytes at offset %" PRId64 "\n",
335797ac58cSKevin Wolf                op, total, count, offset);
336797ac58cSKevin Wolf         printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
337797ac58cSKevin Wolf                s1, cnt, ts, s2, tdiv((double)cnt, *t));
338797ac58cSKevin Wolf     } else {/* bytes,ops,time,bytes/sec,ops/sec */
339797ac58cSKevin Wolf         printf("%d,%d,%s,%.3f,%.3f\n",
340797ac58cSKevin Wolf             total, cnt, ts,
341797ac58cSKevin Wolf             tdiv((double)total, *t),
342797ac58cSKevin Wolf             tdiv((double)cnt, *t));
343797ac58cSKevin Wolf     }
344797ac58cSKevin Wolf }
345797ac58cSKevin Wolf 
346797ac58cSKevin Wolf /*
347797ac58cSKevin Wolf  * Parse multiple length statements for vectored I/O, and construct an I/O
348797ac58cSKevin Wolf  * vector matching it.
349797ac58cSKevin Wolf  */
350797ac58cSKevin Wolf static void *
351797ac58cSKevin Wolf create_iovec(BlockDriverState *bs, QEMUIOVector *qiov, char **argv, int nr_iov,
352797ac58cSKevin Wolf              int pattern)
353797ac58cSKevin Wolf {
354797ac58cSKevin Wolf     size_t *sizes = g_new0(size_t, nr_iov);
355797ac58cSKevin Wolf     size_t count = 0;
356797ac58cSKevin Wolf     void *buf = NULL;
357797ac58cSKevin Wolf     void *p;
358797ac58cSKevin Wolf     int i;
359797ac58cSKevin Wolf 
360797ac58cSKevin Wolf     for (i = 0; i < nr_iov; i++) {
361797ac58cSKevin Wolf         char *arg = argv[i];
362797ac58cSKevin Wolf         int64_t len;
363797ac58cSKevin Wolf 
364797ac58cSKevin Wolf         len = cvtnum(arg);
365797ac58cSKevin Wolf         if (len < 0) {
366797ac58cSKevin Wolf             printf("non-numeric length argument -- %s\n", arg);
367797ac58cSKevin Wolf             goto fail;
368797ac58cSKevin Wolf         }
369797ac58cSKevin Wolf 
370797ac58cSKevin Wolf         /* should be SIZE_T_MAX, but that doesn't exist */
371797ac58cSKevin Wolf         if (len > INT_MAX) {
372797ac58cSKevin Wolf             printf("too large length argument -- %s\n", arg);
373797ac58cSKevin Wolf             goto fail;
374797ac58cSKevin Wolf         }
375797ac58cSKevin Wolf 
376797ac58cSKevin Wolf         if (len & 0x1ff) {
377797ac58cSKevin Wolf             printf("length argument %" PRId64
378797ac58cSKevin Wolf                    " is not sector aligned\n", len);
379797ac58cSKevin Wolf             goto fail;
380797ac58cSKevin Wolf         }
381797ac58cSKevin Wolf 
382797ac58cSKevin Wolf         sizes[i] = len;
383797ac58cSKevin Wolf         count += len;
384797ac58cSKevin Wolf     }
385797ac58cSKevin Wolf 
386797ac58cSKevin Wolf     qemu_iovec_init(qiov, nr_iov);
387797ac58cSKevin Wolf 
388797ac58cSKevin Wolf     buf = p = qemu_io_alloc(bs, count, pattern);
389797ac58cSKevin Wolf 
390797ac58cSKevin Wolf     for (i = 0; i < nr_iov; i++) {
391797ac58cSKevin Wolf         qemu_iovec_add(qiov, p, sizes[i]);
392797ac58cSKevin Wolf         p += sizes[i];
393797ac58cSKevin Wolf     }
394797ac58cSKevin Wolf 
395797ac58cSKevin Wolf fail:
396797ac58cSKevin Wolf     g_free(sizes);
397797ac58cSKevin Wolf     return buf;
398797ac58cSKevin Wolf }
399797ac58cSKevin Wolf 
400797ac58cSKevin Wolf static int do_read(BlockDriverState *bs, char *buf, int64_t offset, int count,
401797ac58cSKevin Wolf                    int *total)
402797ac58cSKevin Wolf {
403797ac58cSKevin Wolf     int ret;
404797ac58cSKevin Wolf 
405797ac58cSKevin Wolf     ret = bdrv_read(bs, offset >> 9, (uint8_t *)buf, count >> 9);
406797ac58cSKevin Wolf     if (ret < 0) {
407797ac58cSKevin Wolf         return ret;
408797ac58cSKevin Wolf     }
409797ac58cSKevin Wolf     *total = count;
410797ac58cSKevin Wolf     return 1;
411797ac58cSKevin Wolf }
412797ac58cSKevin Wolf 
413797ac58cSKevin Wolf static int do_write(BlockDriverState *bs, char *buf, int64_t offset, int count,
414797ac58cSKevin Wolf                     int *total)
415797ac58cSKevin Wolf {
416797ac58cSKevin Wolf     int ret;
417797ac58cSKevin Wolf 
418797ac58cSKevin Wolf     ret = bdrv_write(bs, offset >> 9, (uint8_t *)buf, count >> 9);
419797ac58cSKevin Wolf     if (ret < 0) {
420797ac58cSKevin Wolf         return ret;
421797ac58cSKevin Wolf     }
422797ac58cSKevin Wolf     *total = count;
423797ac58cSKevin Wolf     return 1;
424797ac58cSKevin Wolf }
425797ac58cSKevin Wolf 
426797ac58cSKevin Wolf static int do_pread(BlockDriverState *bs, char *buf, int64_t offset, int count,
427797ac58cSKevin Wolf                     int *total)
428797ac58cSKevin Wolf {
429797ac58cSKevin Wolf     *total = bdrv_pread(bs, offset, (uint8_t *)buf, count);
430797ac58cSKevin Wolf     if (*total < 0) {
431797ac58cSKevin Wolf         return *total;
432797ac58cSKevin Wolf     }
433797ac58cSKevin Wolf     return 1;
434797ac58cSKevin Wolf }
435797ac58cSKevin Wolf 
436797ac58cSKevin Wolf static int do_pwrite(BlockDriverState *bs, char *buf, int64_t offset, int count,
437797ac58cSKevin Wolf                      int *total)
438797ac58cSKevin Wolf {
439797ac58cSKevin Wolf     *total = bdrv_pwrite(bs, offset, (uint8_t *)buf, count);
440797ac58cSKevin Wolf     if (*total < 0) {
441797ac58cSKevin Wolf         return *total;
442797ac58cSKevin Wolf     }
443797ac58cSKevin Wolf     return 1;
444797ac58cSKevin Wolf }
445797ac58cSKevin Wolf 
446797ac58cSKevin Wolf typedef struct {
447797ac58cSKevin Wolf     BlockDriverState *bs;
448797ac58cSKevin Wolf     int64_t offset;
449797ac58cSKevin Wolf     int count;
450797ac58cSKevin Wolf     int *total;
451797ac58cSKevin Wolf     int ret;
452797ac58cSKevin Wolf     bool done;
453797ac58cSKevin Wolf } CoWriteZeroes;
454797ac58cSKevin Wolf 
455797ac58cSKevin Wolf static void coroutine_fn co_write_zeroes_entry(void *opaque)
456797ac58cSKevin Wolf {
457797ac58cSKevin Wolf     CoWriteZeroes *data = opaque;
458797ac58cSKevin Wolf 
459797ac58cSKevin Wolf     data->ret = bdrv_co_write_zeroes(data->bs, data->offset / BDRV_SECTOR_SIZE,
460aa7bfbffSPeter Lieven                                      data->count / BDRV_SECTOR_SIZE, 0);
461797ac58cSKevin Wolf     data->done = true;
462797ac58cSKevin Wolf     if (data->ret < 0) {
463797ac58cSKevin Wolf         *data->total = data->ret;
464797ac58cSKevin Wolf         return;
465797ac58cSKevin Wolf     }
466797ac58cSKevin Wolf 
467797ac58cSKevin Wolf     *data->total = data->count;
468797ac58cSKevin Wolf }
469797ac58cSKevin Wolf 
470797ac58cSKevin Wolf static int do_co_write_zeroes(BlockDriverState *bs, int64_t offset, int count,
471797ac58cSKevin Wolf                               int *total)
472797ac58cSKevin Wolf {
473797ac58cSKevin Wolf     Coroutine *co;
474797ac58cSKevin Wolf     CoWriteZeroes data = {
475797ac58cSKevin Wolf         .bs     = bs,
476797ac58cSKevin Wolf         .offset = offset,
477797ac58cSKevin Wolf         .count  = count,
478797ac58cSKevin Wolf         .total  = total,
479797ac58cSKevin Wolf         .done   = false,
480797ac58cSKevin Wolf     };
481797ac58cSKevin Wolf 
482797ac58cSKevin Wolf     co = qemu_coroutine_create(co_write_zeroes_entry);
483797ac58cSKevin Wolf     qemu_coroutine_enter(co, &data);
484797ac58cSKevin Wolf     while (!data.done) {
485797ac58cSKevin Wolf         qemu_aio_wait();
486797ac58cSKevin Wolf     }
487797ac58cSKevin Wolf     if (data.ret < 0) {
488797ac58cSKevin Wolf         return data.ret;
489797ac58cSKevin Wolf     } else {
490797ac58cSKevin Wolf         return 1;
491797ac58cSKevin Wolf     }
492797ac58cSKevin Wolf }
493797ac58cSKevin Wolf 
494797ac58cSKevin Wolf static int do_write_compressed(BlockDriverState *bs, char *buf, int64_t offset,
495797ac58cSKevin Wolf                                int count, int *total)
496797ac58cSKevin Wolf {
497797ac58cSKevin Wolf     int ret;
498797ac58cSKevin Wolf 
499797ac58cSKevin Wolf     ret = bdrv_write_compressed(bs, offset >> 9, (uint8_t *)buf, count >> 9);
500797ac58cSKevin Wolf     if (ret < 0) {
501797ac58cSKevin Wolf         return ret;
502797ac58cSKevin Wolf     }
503797ac58cSKevin Wolf     *total = count;
504797ac58cSKevin Wolf     return 1;
505797ac58cSKevin Wolf }
506797ac58cSKevin Wolf 
507797ac58cSKevin Wolf static int do_load_vmstate(BlockDriverState *bs, char *buf, int64_t offset,
508797ac58cSKevin Wolf                            int count, int *total)
509797ac58cSKevin Wolf {
510797ac58cSKevin Wolf     *total = bdrv_load_vmstate(bs, (uint8_t *)buf, offset, count);
511797ac58cSKevin Wolf     if (*total < 0) {
512797ac58cSKevin Wolf         return *total;
513797ac58cSKevin Wolf     }
514797ac58cSKevin Wolf     return 1;
515797ac58cSKevin Wolf }
516797ac58cSKevin Wolf 
517797ac58cSKevin Wolf static int do_save_vmstate(BlockDriverState *bs, char *buf, int64_t offset,
518797ac58cSKevin Wolf                            int count, int *total)
519797ac58cSKevin Wolf {
520797ac58cSKevin Wolf     *total = bdrv_save_vmstate(bs, (uint8_t *)buf, offset, count);
521797ac58cSKevin Wolf     if (*total < 0) {
522797ac58cSKevin Wolf         return *total;
523797ac58cSKevin Wolf     }
524797ac58cSKevin Wolf     return 1;
525797ac58cSKevin Wolf }
526797ac58cSKevin Wolf 
527797ac58cSKevin Wolf #define NOT_DONE 0x7fffffff
528797ac58cSKevin Wolf static void aio_rw_done(void *opaque, int ret)
529797ac58cSKevin Wolf {
530797ac58cSKevin Wolf     *(int *)opaque = ret;
531797ac58cSKevin Wolf }
532797ac58cSKevin Wolf 
533797ac58cSKevin Wolf static int do_aio_readv(BlockDriverState *bs, QEMUIOVector *qiov,
534797ac58cSKevin Wolf                         int64_t offset, int *total)
535797ac58cSKevin Wolf {
536797ac58cSKevin Wolf     int async_ret = NOT_DONE;
537797ac58cSKevin Wolf 
538797ac58cSKevin Wolf     bdrv_aio_readv(bs, offset >> 9, qiov, qiov->size >> 9,
539797ac58cSKevin Wolf                    aio_rw_done, &async_ret);
540797ac58cSKevin Wolf     while (async_ret == NOT_DONE) {
541797ac58cSKevin Wolf         main_loop_wait(false);
542797ac58cSKevin Wolf     }
543797ac58cSKevin Wolf 
544797ac58cSKevin Wolf     *total = qiov->size;
545797ac58cSKevin Wolf     return async_ret < 0 ? async_ret : 1;
546797ac58cSKevin Wolf }
547797ac58cSKevin Wolf 
548797ac58cSKevin Wolf static int do_aio_writev(BlockDriverState *bs, QEMUIOVector *qiov,
549797ac58cSKevin Wolf                          int64_t offset, int *total)
550797ac58cSKevin Wolf {
551797ac58cSKevin Wolf     int async_ret = NOT_DONE;
552797ac58cSKevin Wolf 
553797ac58cSKevin Wolf     bdrv_aio_writev(bs, offset >> 9, qiov, qiov->size >> 9,
554797ac58cSKevin Wolf                     aio_rw_done, &async_ret);
555797ac58cSKevin Wolf     while (async_ret == NOT_DONE) {
556797ac58cSKevin Wolf         main_loop_wait(false);
557797ac58cSKevin Wolf     }
558797ac58cSKevin Wolf 
559797ac58cSKevin Wolf     *total = qiov->size;
560797ac58cSKevin Wolf     return async_ret < 0 ? async_ret : 1;
561797ac58cSKevin Wolf }
562797ac58cSKevin Wolf 
563797ac58cSKevin Wolf struct multiwrite_async_ret {
564797ac58cSKevin Wolf     int num_done;
565797ac58cSKevin Wolf     int error;
566797ac58cSKevin Wolf };
567797ac58cSKevin Wolf 
568797ac58cSKevin Wolf static void multiwrite_cb(void *opaque, int ret)
569797ac58cSKevin Wolf {
570797ac58cSKevin Wolf     struct multiwrite_async_ret *async_ret = opaque;
571797ac58cSKevin Wolf 
572797ac58cSKevin Wolf     async_ret->num_done++;
573797ac58cSKevin Wolf     if (ret < 0) {
574797ac58cSKevin Wolf         async_ret->error = ret;
575797ac58cSKevin Wolf     }
576797ac58cSKevin Wolf }
577797ac58cSKevin Wolf 
578797ac58cSKevin Wolf static int do_aio_multiwrite(BlockDriverState *bs, BlockRequest* reqs,
579797ac58cSKevin Wolf                              int num_reqs, int *total)
580797ac58cSKevin Wolf {
581797ac58cSKevin Wolf     int i, ret;
582797ac58cSKevin Wolf     struct multiwrite_async_ret async_ret = {
583797ac58cSKevin Wolf         .num_done = 0,
584797ac58cSKevin Wolf         .error = 0,
585797ac58cSKevin Wolf     };
586797ac58cSKevin Wolf 
587797ac58cSKevin Wolf     *total = 0;
588797ac58cSKevin Wolf     for (i = 0; i < num_reqs; i++) {
589797ac58cSKevin Wolf         reqs[i].cb = multiwrite_cb;
590797ac58cSKevin Wolf         reqs[i].opaque = &async_ret;
591797ac58cSKevin Wolf         *total += reqs[i].qiov->size;
592797ac58cSKevin Wolf     }
593797ac58cSKevin Wolf 
594797ac58cSKevin Wolf     ret = bdrv_aio_multiwrite(bs, reqs, num_reqs);
595797ac58cSKevin Wolf     if (ret < 0) {
596797ac58cSKevin Wolf         return ret;
597797ac58cSKevin Wolf     }
598797ac58cSKevin Wolf 
599797ac58cSKevin Wolf     while (async_ret.num_done < num_reqs) {
600797ac58cSKevin Wolf         main_loop_wait(false);
601797ac58cSKevin Wolf     }
602797ac58cSKevin Wolf 
603797ac58cSKevin Wolf     return async_ret.error < 0 ? async_ret.error : 1;
604797ac58cSKevin Wolf }
605797ac58cSKevin Wolf 
606797ac58cSKevin Wolf static void read_help(void)
607797ac58cSKevin Wolf {
608797ac58cSKevin Wolf     printf(
609797ac58cSKevin Wolf "\n"
610797ac58cSKevin Wolf " reads a range of bytes from the given offset\n"
611797ac58cSKevin Wolf "\n"
612797ac58cSKevin Wolf " Example:\n"
613797ac58cSKevin Wolf " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
614797ac58cSKevin Wolf "\n"
615797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n"
616797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n"
617797ac58cSKevin Wolf " -b, -- read from the VM state rather than the virtual disk\n"
618797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
619797ac58cSKevin Wolf " -l, -- length for pattern verification (only with -P)\n"
620797ac58cSKevin Wolf " -p, -- use bdrv_pread to read the file\n"
621797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n"
622797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
623797ac58cSKevin Wolf " -s, -- start offset for pattern verification (only with -P)\n"
624797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n"
625797ac58cSKevin Wolf "\n");
626797ac58cSKevin Wolf }
627797ac58cSKevin Wolf 
628797ac58cSKevin Wolf static int read_f(BlockDriverState *bs, int argc, char **argv);
629797ac58cSKevin Wolf 
630797ac58cSKevin Wolf static const cmdinfo_t read_cmd = {
631797ac58cSKevin Wolf     .name       = "read",
632797ac58cSKevin Wolf     .altname    = "r",
633797ac58cSKevin Wolf     .cfunc      = read_f,
634797ac58cSKevin Wolf     .argmin     = 2,
635797ac58cSKevin Wolf     .argmax     = -1,
636797ac58cSKevin Wolf     .args       = "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
637797ac58cSKevin Wolf     .oneline    = "reads a number of bytes at a specified offset",
638797ac58cSKevin Wolf     .help       = read_help,
639797ac58cSKevin Wolf };
640797ac58cSKevin Wolf 
641797ac58cSKevin Wolf static int read_f(BlockDriverState *bs, int argc, char **argv)
642797ac58cSKevin Wolf {
643797ac58cSKevin Wolf     struct timeval t1, t2;
644797ac58cSKevin Wolf     int Cflag = 0, pflag = 0, qflag = 0, vflag = 0;
645797ac58cSKevin Wolf     int Pflag = 0, sflag = 0, lflag = 0, bflag = 0;
646797ac58cSKevin Wolf     int c, cnt;
647797ac58cSKevin Wolf     char *buf;
648797ac58cSKevin Wolf     int64_t offset;
649797ac58cSKevin Wolf     int count;
650797ac58cSKevin Wolf     /* Some compilers get confused and warn if this is not initialized.  */
651797ac58cSKevin Wolf     int total = 0;
652797ac58cSKevin Wolf     int pattern = 0, pattern_offset = 0, pattern_count = 0;
653797ac58cSKevin Wolf 
654797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "bCl:pP:qs:v")) != EOF) {
655797ac58cSKevin Wolf         switch (c) {
656797ac58cSKevin Wolf         case 'b':
657797ac58cSKevin Wolf             bflag = 1;
658797ac58cSKevin Wolf             break;
659797ac58cSKevin Wolf         case 'C':
660797ac58cSKevin Wolf             Cflag = 1;
661797ac58cSKevin Wolf             break;
662797ac58cSKevin Wolf         case 'l':
663797ac58cSKevin Wolf             lflag = 1;
664797ac58cSKevin Wolf             pattern_count = cvtnum(optarg);
665797ac58cSKevin Wolf             if (pattern_count < 0) {
666797ac58cSKevin Wolf                 printf("non-numeric length argument -- %s\n", optarg);
667797ac58cSKevin Wolf                 return 0;
668797ac58cSKevin Wolf             }
669797ac58cSKevin Wolf             break;
670797ac58cSKevin Wolf         case 'p':
671797ac58cSKevin Wolf             pflag = 1;
672797ac58cSKevin Wolf             break;
673797ac58cSKevin Wolf         case 'P':
674797ac58cSKevin Wolf             Pflag = 1;
675797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
676797ac58cSKevin Wolf             if (pattern < 0) {
677797ac58cSKevin Wolf                 return 0;
678797ac58cSKevin Wolf             }
679797ac58cSKevin Wolf             break;
680797ac58cSKevin Wolf         case 'q':
681797ac58cSKevin Wolf             qflag = 1;
682797ac58cSKevin Wolf             break;
683797ac58cSKevin Wolf         case 's':
684797ac58cSKevin Wolf             sflag = 1;
685797ac58cSKevin Wolf             pattern_offset = cvtnum(optarg);
686797ac58cSKevin Wolf             if (pattern_offset < 0) {
687797ac58cSKevin Wolf                 printf("non-numeric length argument -- %s\n", optarg);
688797ac58cSKevin Wolf                 return 0;
689797ac58cSKevin Wolf             }
690797ac58cSKevin Wolf             break;
691797ac58cSKevin Wolf         case 'v':
692797ac58cSKevin Wolf             vflag = 1;
693797ac58cSKevin Wolf             break;
694797ac58cSKevin Wolf         default:
695c2cdf5c5SKevin Wolf             return qemuio_command_usage(&read_cmd);
696797ac58cSKevin Wolf         }
697797ac58cSKevin Wolf     }
698797ac58cSKevin Wolf 
699797ac58cSKevin Wolf     if (optind != argc - 2) {
700c2cdf5c5SKevin Wolf         return qemuio_command_usage(&read_cmd);
701797ac58cSKevin Wolf     }
702797ac58cSKevin Wolf 
703797ac58cSKevin Wolf     if (bflag && pflag) {
704797ac58cSKevin Wolf         printf("-b and -p cannot be specified at the same time\n");
705797ac58cSKevin Wolf         return 0;
706797ac58cSKevin Wolf     }
707797ac58cSKevin Wolf 
708797ac58cSKevin Wolf     offset = cvtnum(argv[optind]);
709797ac58cSKevin Wolf     if (offset < 0) {
710797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
711797ac58cSKevin Wolf         return 0;
712797ac58cSKevin Wolf     }
713797ac58cSKevin Wolf 
714797ac58cSKevin Wolf     optind++;
715797ac58cSKevin Wolf     count = cvtnum(argv[optind]);
716797ac58cSKevin Wolf     if (count < 0) {
717797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
718797ac58cSKevin Wolf         return 0;
719797ac58cSKevin Wolf     }
720797ac58cSKevin Wolf 
721797ac58cSKevin Wolf     if (!Pflag && (lflag || sflag)) {
722c2cdf5c5SKevin Wolf         return qemuio_command_usage(&read_cmd);
723797ac58cSKevin Wolf     }
724797ac58cSKevin Wolf 
725797ac58cSKevin Wolf     if (!lflag) {
726797ac58cSKevin Wolf         pattern_count = count - pattern_offset;
727797ac58cSKevin Wolf     }
728797ac58cSKevin Wolf 
729797ac58cSKevin Wolf     if ((pattern_count < 0) || (pattern_count + pattern_offset > count))  {
730797ac58cSKevin Wolf         printf("pattern verification range exceeds end of read data\n");
731797ac58cSKevin Wolf         return 0;
732797ac58cSKevin Wolf     }
733797ac58cSKevin Wolf 
734797ac58cSKevin Wolf     if (!pflag) {
735797ac58cSKevin Wolf         if (offset & 0x1ff) {
736797ac58cSKevin Wolf             printf("offset %" PRId64 " is not sector aligned\n",
737797ac58cSKevin Wolf                    offset);
738797ac58cSKevin Wolf             return 0;
739797ac58cSKevin Wolf         }
740797ac58cSKevin Wolf         if (count & 0x1ff) {
741797ac58cSKevin Wolf             printf("count %d is not sector aligned\n",
742797ac58cSKevin Wolf                    count);
743797ac58cSKevin Wolf             return 0;
744797ac58cSKevin Wolf         }
745797ac58cSKevin Wolf     }
746797ac58cSKevin Wolf 
747797ac58cSKevin Wolf     buf = qemu_io_alloc(bs, count, 0xab);
748797ac58cSKevin Wolf 
749797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
750797ac58cSKevin Wolf     if (pflag) {
751797ac58cSKevin Wolf         cnt = do_pread(bs, buf, offset, count, &total);
752797ac58cSKevin Wolf     } else if (bflag) {
753797ac58cSKevin Wolf         cnt = do_load_vmstate(bs, buf, offset, count, &total);
754797ac58cSKevin Wolf     } else {
755797ac58cSKevin Wolf         cnt = do_read(bs, buf, offset, count, &total);
756797ac58cSKevin Wolf     }
757797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
758797ac58cSKevin Wolf 
759797ac58cSKevin Wolf     if (cnt < 0) {
760797ac58cSKevin Wolf         printf("read failed: %s\n", strerror(-cnt));
761797ac58cSKevin Wolf         goto out;
762797ac58cSKevin Wolf     }
763797ac58cSKevin Wolf 
764797ac58cSKevin Wolf     if (Pflag) {
765797ac58cSKevin Wolf         void *cmp_buf = g_malloc(pattern_count);
766797ac58cSKevin Wolf         memset(cmp_buf, pattern, pattern_count);
767797ac58cSKevin Wolf         if (memcmp(buf + pattern_offset, cmp_buf, pattern_count)) {
768797ac58cSKevin Wolf             printf("Pattern verification failed at offset %"
769797ac58cSKevin Wolf                    PRId64 ", %d bytes\n",
770797ac58cSKevin Wolf                    offset + pattern_offset, pattern_count);
771797ac58cSKevin Wolf         }
772797ac58cSKevin Wolf         g_free(cmp_buf);
773797ac58cSKevin Wolf     }
774797ac58cSKevin Wolf 
775797ac58cSKevin Wolf     if (qflag) {
776797ac58cSKevin Wolf         goto out;
777797ac58cSKevin Wolf     }
778797ac58cSKevin Wolf 
779797ac58cSKevin Wolf     if (vflag) {
780797ac58cSKevin Wolf         dump_buffer(buf, offset, count);
781797ac58cSKevin Wolf     }
782797ac58cSKevin Wolf 
783797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
784797ac58cSKevin Wolf     t2 = tsub(t2, t1);
785797ac58cSKevin Wolf     print_report("read", &t2, offset, count, total, cnt, Cflag);
786797ac58cSKevin Wolf 
787797ac58cSKevin Wolf out:
788797ac58cSKevin Wolf     qemu_io_free(buf);
789797ac58cSKevin Wolf 
790797ac58cSKevin Wolf     return 0;
791797ac58cSKevin Wolf }
792797ac58cSKevin Wolf 
793797ac58cSKevin Wolf static void readv_help(void)
794797ac58cSKevin Wolf {
795797ac58cSKevin Wolf     printf(
796797ac58cSKevin Wolf "\n"
797797ac58cSKevin Wolf " reads a range of bytes from the given offset into multiple buffers\n"
798797ac58cSKevin Wolf "\n"
799797ac58cSKevin Wolf " Example:\n"
800797ac58cSKevin Wolf " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
801797ac58cSKevin Wolf "\n"
802797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n"
803797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n"
804797ac58cSKevin Wolf " Uses multiple iovec buffers if more than one byte range is specified.\n"
805797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
806797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n"
807797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n"
808797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
809797ac58cSKevin Wolf "\n");
810797ac58cSKevin Wolf }
811797ac58cSKevin Wolf 
812797ac58cSKevin Wolf static int readv_f(BlockDriverState *bs, int argc, char **argv);
813797ac58cSKevin Wolf 
814797ac58cSKevin Wolf static const cmdinfo_t readv_cmd = {
815797ac58cSKevin Wolf     .name       = "readv",
816797ac58cSKevin Wolf     .cfunc      = readv_f,
817797ac58cSKevin Wolf     .argmin     = 2,
818797ac58cSKevin Wolf     .argmax     = -1,
819797ac58cSKevin Wolf     .args       = "[-Cqv] [-P pattern ] off len [len..]",
820797ac58cSKevin Wolf     .oneline    = "reads a number of bytes at a specified offset",
821797ac58cSKevin Wolf     .help       = readv_help,
822797ac58cSKevin Wolf };
823797ac58cSKevin Wolf 
824797ac58cSKevin Wolf static int readv_f(BlockDriverState *bs, int argc, char **argv)
825797ac58cSKevin Wolf {
826797ac58cSKevin Wolf     struct timeval t1, t2;
827797ac58cSKevin Wolf     int Cflag = 0, qflag = 0, vflag = 0;
828797ac58cSKevin Wolf     int c, cnt;
829797ac58cSKevin Wolf     char *buf;
830797ac58cSKevin Wolf     int64_t offset;
831797ac58cSKevin Wolf     /* Some compilers get confused and warn if this is not initialized.  */
832797ac58cSKevin Wolf     int total = 0;
833797ac58cSKevin Wolf     int nr_iov;
834797ac58cSKevin Wolf     QEMUIOVector qiov;
835797ac58cSKevin Wolf     int pattern = 0;
836797ac58cSKevin Wolf     int Pflag = 0;
837797ac58cSKevin Wolf 
838797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
839797ac58cSKevin Wolf         switch (c) {
840797ac58cSKevin Wolf         case 'C':
841797ac58cSKevin Wolf             Cflag = 1;
842797ac58cSKevin Wolf             break;
843797ac58cSKevin Wolf         case 'P':
844797ac58cSKevin Wolf             Pflag = 1;
845797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
846797ac58cSKevin Wolf             if (pattern < 0) {
847797ac58cSKevin Wolf                 return 0;
848797ac58cSKevin Wolf             }
849797ac58cSKevin Wolf             break;
850797ac58cSKevin Wolf         case 'q':
851797ac58cSKevin Wolf             qflag = 1;
852797ac58cSKevin Wolf             break;
853797ac58cSKevin Wolf         case 'v':
854797ac58cSKevin Wolf             vflag = 1;
855797ac58cSKevin Wolf             break;
856797ac58cSKevin Wolf         default:
857c2cdf5c5SKevin Wolf             return qemuio_command_usage(&readv_cmd);
858797ac58cSKevin Wolf         }
859797ac58cSKevin Wolf     }
860797ac58cSKevin Wolf 
861797ac58cSKevin Wolf     if (optind > argc - 2) {
862c2cdf5c5SKevin Wolf         return qemuio_command_usage(&readv_cmd);
863797ac58cSKevin Wolf     }
864797ac58cSKevin Wolf 
865797ac58cSKevin Wolf 
866797ac58cSKevin Wolf     offset = cvtnum(argv[optind]);
867797ac58cSKevin Wolf     if (offset < 0) {
868797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
869797ac58cSKevin Wolf         return 0;
870797ac58cSKevin Wolf     }
871797ac58cSKevin Wolf     optind++;
872797ac58cSKevin Wolf 
873797ac58cSKevin Wolf     if (offset & 0x1ff) {
874797ac58cSKevin Wolf         printf("offset %" PRId64 " is not sector aligned\n",
875797ac58cSKevin Wolf                offset);
876797ac58cSKevin Wolf         return 0;
877797ac58cSKevin Wolf     }
878797ac58cSKevin Wolf 
879797ac58cSKevin Wolf     nr_iov = argc - optind;
880797ac58cSKevin Wolf     buf = create_iovec(bs, &qiov, &argv[optind], nr_iov, 0xab);
881797ac58cSKevin Wolf     if (buf == NULL) {
882797ac58cSKevin Wolf         return 0;
883797ac58cSKevin Wolf     }
884797ac58cSKevin Wolf 
885797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
886797ac58cSKevin Wolf     cnt = do_aio_readv(bs, &qiov, offset, &total);
887797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
888797ac58cSKevin Wolf 
889797ac58cSKevin Wolf     if (cnt < 0) {
890797ac58cSKevin Wolf         printf("readv failed: %s\n", strerror(-cnt));
891797ac58cSKevin Wolf         goto out;
892797ac58cSKevin Wolf     }
893797ac58cSKevin Wolf 
894797ac58cSKevin Wolf     if (Pflag) {
895797ac58cSKevin Wolf         void *cmp_buf = g_malloc(qiov.size);
896797ac58cSKevin Wolf         memset(cmp_buf, pattern, qiov.size);
897797ac58cSKevin Wolf         if (memcmp(buf, cmp_buf, qiov.size)) {
898797ac58cSKevin Wolf             printf("Pattern verification failed at offset %"
899797ac58cSKevin Wolf                    PRId64 ", %zd bytes\n", offset, qiov.size);
900797ac58cSKevin Wolf         }
901797ac58cSKevin Wolf         g_free(cmp_buf);
902797ac58cSKevin Wolf     }
903797ac58cSKevin Wolf 
904797ac58cSKevin Wolf     if (qflag) {
905797ac58cSKevin Wolf         goto out;
906797ac58cSKevin Wolf     }
907797ac58cSKevin Wolf 
908797ac58cSKevin Wolf     if (vflag) {
909797ac58cSKevin Wolf         dump_buffer(buf, offset, qiov.size);
910797ac58cSKevin Wolf     }
911797ac58cSKevin Wolf 
912797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
913797ac58cSKevin Wolf     t2 = tsub(t2, t1);
914797ac58cSKevin Wolf     print_report("read", &t2, offset, qiov.size, total, cnt, Cflag);
915797ac58cSKevin Wolf 
916797ac58cSKevin Wolf out:
917797ac58cSKevin Wolf     qemu_iovec_destroy(&qiov);
918797ac58cSKevin Wolf     qemu_io_free(buf);
919797ac58cSKevin Wolf     return 0;
920797ac58cSKevin Wolf }
921797ac58cSKevin Wolf 
922797ac58cSKevin Wolf static void write_help(void)
923797ac58cSKevin Wolf {
924797ac58cSKevin Wolf     printf(
925797ac58cSKevin Wolf "\n"
926797ac58cSKevin Wolf " writes a range of bytes from the given offset\n"
927797ac58cSKevin Wolf "\n"
928797ac58cSKevin Wolf " Example:\n"
929797ac58cSKevin Wolf " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
930797ac58cSKevin Wolf "\n"
931797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n"
932797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n"
933797ac58cSKevin Wolf " -b, -- write to the VM state rather than the virtual disk\n"
934797ac58cSKevin Wolf " -c, -- write compressed data with bdrv_write_compressed\n"
935797ac58cSKevin Wolf " -p, -- use bdrv_pwrite to write the file\n"
936797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n"
937797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
938797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
939797ac58cSKevin Wolf " -z, -- write zeroes using bdrv_co_write_zeroes\n"
940797ac58cSKevin Wolf "\n");
941797ac58cSKevin Wolf }
942797ac58cSKevin Wolf 
943797ac58cSKevin Wolf static int write_f(BlockDriverState *bs, int argc, char **argv);
944797ac58cSKevin Wolf 
945797ac58cSKevin Wolf static const cmdinfo_t write_cmd = {
946797ac58cSKevin Wolf     .name       = "write",
947797ac58cSKevin Wolf     .altname    = "w",
948797ac58cSKevin Wolf     .cfunc      = write_f,
949797ac58cSKevin Wolf     .argmin     = 2,
950797ac58cSKevin Wolf     .argmax     = -1,
951797ac58cSKevin Wolf     .args       = "[-bcCpqz] [-P pattern ] off len",
952797ac58cSKevin Wolf     .oneline    = "writes a number of bytes at a specified offset",
953797ac58cSKevin Wolf     .help       = write_help,
954797ac58cSKevin Wolf };
955797ac58cSKevin Wolf 
956797ac58cSKevin Wolf static int write_f(BlockDriverState *bs, int argc, char **argv)
957797ac58cSKevin Wolf {
958797ac58cSKevin Wolf     struct timeval t1, t2;
959797ac58cSKevin Wolf     int Cflag = 0, pflag = 0, qflag = 0, bflag = 0, Pflag = 0, zflag = 0;
960797ac58cSKevin Wolf     int cflag = 0;
961797ac58cSKevin Wolf     int c, cnt;
962797ac58cSKevin Wolf     char *buf = NULL;
963797ac58cSKevin Wolf     int64_t offset;
964797ac58cSKevin Wolf     int count;
965797ac58cSKevin Wolf     /* Some compilers get confused and warn if this is not initialized.  */
966797ac58cSKevin Wolf     int total = 0;
967797ac58cSKevin Wolf     int pattern = 0xcd;
968797ac58cSKevin Wolf 
969797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "bcCpP:qz")) != EOF) {
970797ac58cSKevin Wolf         switch (c) {
971797ac58cSKevin Wolf         case 'b':
972797ac58cSKevin Wolf             bflag = 1;
973797ac58cSKevin Wolf             break;
974797ac58cSKevin Wolf         case 'c':
975797ac58cSKevin Wolf             cflag = 1;
976797ac58cSKevin Wolf             break;
977797ac58cSKevin Wolf         case 'C':
978797ac58cSKevin Wolf             Cflag = 1;
979797ac58cSKevin Wolf             break;
980797ac58cSKevin Wolf         case 'p':
981797ac58cSKevin Wolf             pflag = 1;
982797ac58cSKevin Wolf             break;
983797ac58cSKevin Wolf         case 'P':
984797ac58cSKevin Wolf             Pflag = 1;
985797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
986797ac58cSKevin Wolf             if (pattern < 0) {
987797ac58cSKevin Wolf                 return 0;
988797ac58cSKevin Wolf             }
989797ac58cSKevin Wolf             break;
990797ac58cSKevin Wolf         case 'q':
991797ac58cSKevin Wolf             qflag = 1;
992797ac58cSKevin Wolf             break;
993797ac58cSKevin Wolf         case 'z':
994797ac58cSKevin Wolf             zflag = 1;
995797ac58cSKevin Wolf             break;
996797ac58cSKevin Wolf         default:
997c2cdf5c5SKevin Wolf             return qemuio_command_usage(&write_cmd);
998797ac58cSKevin Wolf         }
999797ac58cSKevin Wolf     }
1000797ac58cSKevin Wolf 
1001797ac58cSKevin Wolf     if (optind != argc - 2) {
1002c2cdf5c5SKevin Wolf         return qemuio_command_usage(&write_cmd);
1003797ac58cSKevin Wolf     }
1004797ac58cSKevin Wolf 
1005797ac58cSKevin Wolf     if (bflag + pflag + zflag > 1) {
1006797ac58cSKevin Wolf         printf("-b, -p, or -z cannot be specified at the same time\n");
1007797ac58cSKevin Wolf         return 0;
1008797ac58cSKevin Wolf     }
1009797ac58cSKevin Wolf 
1010797ac58cSKevin Wolf     if (zflag && Pflag) {
1011797ac58cSKevin Wolf         printf("-z and -P cannot be specified at the same time\n");
1012797ac58cSKevin Wolf         return 0;
1013797ac58cSKevin Wolf     }
1014797ac58cSKevin Wolf 
1015797ac58cSKevin Wolf     offset = cvtnum(argv[optind]);
1016797ac58cSKevin Wolf     if (offset < 0) {
1017797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1018797ac58cSKevin Wolf         return 0;
1019797ac58cSKevin Wolf     }
1020797ac58cSKevin Wolf 
1021797ac58cSKevin Wolf     optind++;
1022797ac58cSKevin Wolf     count = cvtnum(argv[optind]);
1023797ac58cSKevin Wolf     if (count < 0) {
1024797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1025797ac58cSKevin Wolf         return 0;
1026797ac58cSKevin Wolf     }
1027797ac58cSKevin Wolf 
1028797ac58cSKevin Wolf     if (!pflag) {
1029797ac58cSKevin Wolf         if (offset & 0x1ff) {
1030797ac58cSKevin Wolf             printf("offset %" PRId64 " is not sector aligned\n",
1031797ac58cSKevin Wolf                    offset);
1032797ac58cSKevin Wolf             return 0;
1033797ac58cSKevin Wolf         }
1034797ac58cSKevin Wolf 
1035797ac58cSKevin Wolf         if (count & 0x1ff) {
1036797ac58cSKevin Wolf             printf("count %d is not sector aligned\n",
1037797ac58cSKevin Wolf                    count);
1038797ac58cSKevin Wolf             return 0;
1039797ac58cSKevin Wolf         }
1040797ac58cSKevin Wolf     }
1041797ac58cSKevin Wolf 
1042797ac58cSKevin Wolf     if (!zflag) {
1043797ac58cSKevin Wolf         buf = qemu_io_alloc(bs, count, pattern);
1044797ac58cSKevin Wolf     }
1045797ac58cSKevin Wolf 
1046797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
1047797ac58cSKevin Wolf     if (pflag) {
1048797ac58cSKevin Wolf         cnt = do_pwrite(bs, buf, offset, count, &total);
1049797ac58cSKevin Wolf     } else if (bflag) {
1050797ac58cSKevin Wolf         cnt = do_save_vmstate(bs, buf, offset, count, &total);
1051797ac58cSKevin Wolf     } else if (zflag) {
1052797ac58cSKevin Wolf         cnt = do_co_write_zeroes(bs, offset, count, &total);
1053797ac58cSKevin Wolf     } else if (cflag) {
1054797ac58cSKevin Wolf         cnt = do_write_compressed(bs, buf, offset, count, &total);
1055797ac58cSKevin Wolf     } else {
1056797ac58cSKevin Wolf         cnt = do_write(bs, buf, offset, count, &total);
1057797ac58cSKevin Wolf     }
1058797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1059797ac58cSKevin Wolf 
1060797ac58cSKevin Wolf     if (cnt < 0) {
1061797ac58cSKevin Wolf         printf("write failed: %s\n", strerror(-cnt));
1062797ac58cSKevin Wolf         goto out;
1063797ac58cSKevin Wolf     }
1064797ac58cSKevin Wolf 
1065797ac58cSKevin Wolf     if (qflag) {
1066797ac58cSKevin Wolf         goto out;
1067797ac58cSKevin Wolf     }
1068797ac58cSKevin Wolf 
1069797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1070797ac58cSKevin Wolf     t2 = tsub(t2, t1);
1071797ac58cSKevin Wolf     print_report("wrote", &t2, offset, count, total, cnt, Cflag);
1072797ac58cSKevin Wolf 
1073797ac58cSKevin Wolf out:
1074797ac58cSKevin Wolf     if (!zflag) {
1075797ac58cSKevin Wolf         qemu_io_free(buf);
1076797ac58cSKevin Wolf     }
1077797ac58cSKevin Wolf 
1078797ac58cSKevin Wolf     return 0;
1079797ac58cSKevin Wolf }
1080797ac58cSKevin Wolf 
1081797ac58cSKevin Wolf static void
1082797ac58cSKevin Wolf writev_help(void)
1083797ac58cSKevin Wolf {
1084797ac58cSKevin Wolf     printf(
1085797ac58cSKevin Wolf "\n"
1086797ac58cSKevin Wolf " writes a range of bytes from the given offset source from multiple buffers\n"
1087797ac58cSKevin Wolf "\n"
1088797ac58cSKevin Wolf " Example:\n"
1089797ac58cSKevin Wolf " 'write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1090797ac58cSKevin Wolf "\n"
1091797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n"
1092797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n"
1093797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n"
1094797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
1095797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
1096797ac58cSKevin Wolf "\n");
1097797ac58cSKevin Wolf }
1098797ac58cSKevin Wolf 
1099797ac58cSKevin Wolf static int writev_f(BlockDriverState *bs, int argc, char **argv);
1100797ac58cSKevin Wolf 
1101797ac58cSKevin Wolf static const cmdinfo_t writev_cmd = {
1102797ac58cSKevin Wolf     .name       = "writev",
1103797ac58cSKevin Wolf     .cfunc      = writev_f,
1104797ac58cSKevin Wolf     .argmin     = 2,
1105797ac58cSKevin Wolf     .argmax     = -1,
1106797ac58cSKevin Wolf     .args       = "[-Cq] [-P pattern ] off len [len..]",
1107797ac58cSKevin Wolf     .oneline    = "writes a number of bytes at a specified offset",
1108797ac58cSKevin Wolf     .help       = writev_help,
1109797ac58cSKevin Wolf };
1110797ac58cSKevin Wolf 
1111797ac58cSKevin Wolf static int writev_f(BlockDriverState *bs, int argc, char **argv)
1112797ac58cSKevin Wolf {
1113797ac58cSKevin Wolf     struct timeval t1, t2;
1114797ac58cSKevin Wolf     int Cflag = 0, qflag = 0;
1115797ac58cSKevin Wolf     int c, cnt;
1116797ac58cSKevin Wolf     char *buf;
1117797ac58cSKevin Wolf     int64_t offset;
1118797ac58cSKevin Wolf     /* Some compilers get confused and warn if this is not initialized.  */
1119797ac58cSKevin Wolf     int total = 0;
1120797ac58cSKevin Wolf     int nr_iov;
1121797ac58cSKevin Wolf     int pattern = 0xcd;
1122797ac58cSKevin Wolf     QEMUIOVector qiov;
1123797ac58cSKevin Wolf 
1124797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "CqP:")) != EOF) {
1125797ac58cSKevin Wolf         switch (c) {
1126797ac58cSKevin Wolf         case 'C':
1127797ac58cSKevin Wolf             Cflag = 1;
1128797ac58cSKevin Wolf             break;
1129797ac58cSKevin Wolf         case 'q':
1130797ac58cSKevin Wolf             qflag = 1;
1131797ac58cSKevin Wolf             break;
1132797ac58cSKevin Wolf         case 'P':
1133797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
1134797ac58cSKevin Wolf             if (pattern < 0) {
1135797ac58cSKevin Wolf                 return 0;
1136797ac58cSKevin Wolf             }
1137797ac58cSKevin Wolf             break;
1138797ac58cSKevin Wolf         default:
1139c2cdf5c5SKevin Wolf             return qemuio_command_usage(&writev_cmd);
1140797ac58cSKevin Wolf         }
1141797ac58cSKevin Wolf     }
1142797ac58cSKevin Wolf 
1143797ac58cSKevin Wolf     if (optind > argc - 2) {
1144c2cdf5c5SKevin Wolf         return qemuio_command_usage(&writev_cmd);
1145797ac58cSKevin Wolf     }
1146797ac58cSKevin Wolf 
1147797ac58cSKevin Wolf     offset = cvtnum(argv[optind]);
1148797ac58cSKevin Wolf     if (offset < 0) {
1149797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1150797ac58cSKevin Wolf         return 0;
1151797ac58cSKevin Wolf     }
1152797ac58cSKevin Wolf     optind++;
1153797ac58cSKevin Wolf 
1154797ac58cSKevin Wolf     if (offset & 0x1ff) {
1155797ac58cSKevin Wolf         printf("offset %" PRId64 " is not sector aligned\n",
1156797ac58cSKevin Wolf                offset);
1157797ac58cSKevin Wolf         return 0;
1158797ac58cSKevin Wolf     }
1159797ac58cSKevin Wolf 
1160797ac58cSKevin Wolf     nr_iov = argc - optind;
1161797ac58cSKevin Wolf     buf = create_iovec(bs, &qiov, &argv[optind], nr_iov, pattern);
1162797ac58cSKevin Wolf     if (buf == NULL) {
1163797ac58cSKevin Wolf         return 0;
1164797ac58cSKevin Wolf     }
1165797ac58cSKevin Wolf 
1166797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
1167797ac58cSKevin Wolf     cnt = do_aio_writev(bs, &qiov, offset, &total);
1168797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1169797ac58cSKevin Wolf 
1170797ac58cSKevin Wolf     if (cnt < 0) {
1171797ac58cSKevin Wolf         printf("writev failed: %s\n", strerror(-cnt));
1172797ac58cSKevin Wolf         goto out;
1173797ac58cSKevin Wolf     }
1174797ac58cSKevin Wolf 
1175797ac58cSKevin Wolf     if (qflag) {
1176797ac58cSKevin Wolf         goto out;
1177797ac58cSKevin Wolf     }
1178797ac58cSKevin Wolf 
1179797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1180797ac58cSKevin Wolf     t2 = tsub(t2, t1);
1181797ac58cSKevin Wolf     print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag);
1182797ac58cSKevin Wolf out:
1183797ac58cSKevin Wolf     qemu_iovec_destroy(&qiov);
1184797ac58cSKevin Wolf     qemu_io_free(buf);
1185797ac58cSKevin Wolf     return 0;
1186797ac58cSKevin Wolf }
1187797ac58cSKevin Wolf 
1188797ac58cSKevin Wolf static void multiwrite_help(void)
1189797ac58cSKevin Wolf {
1190797ac58cSKevin Wolf     printf(
1191797ac58cSKevin Wolf "\n"
1192797ac58cSKevin Wolf " writes a range of bytes from the given offset source from multiple buffers,\n"
1193797ac58cSKevin Wolf " in a batch of requests that may be merged by qemu\n"
1194797ac58cSKevin Wolf "\n"
1195797ac58cSKevin Wolf " Example:\n"
1196797ac58cSKevin Wolf " 'multiwrite 512 1k 1k ; 4k 1k'\n"
1197797ac58cSKevin Wolf "  writes 2 kB at 512 bytes and 1 kB at 4 kB into the open file\n"
1198797ac58cSKevin Wolf "\n"
1199797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n"
1200797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd). The pattern byte is increased\n"
1201797ac58cSKevin Wolf " by one for each request contained in the multiwrite command.\n"
1202797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n"
1203797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
1204797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
1205797ac58cSKevin Wolf "\n");
1206797ac58cSKevin Wolf }
1207797ac58cSKevin Wolf 
1208797ac58cSKevin Wolf static int multiwrite_f(BlockDriverState *bs, int argc, char **argv);
1209797ac58cSKevin Wolf 
1210797ac58cSKevin Wolf static const cmdinfo_t multiwrite_cmd = {
1211797ac58cSKevin Wolf     .name       = "multiwrite",
1212797ac58cSKevin Wolf     .cfunc      = multiwrite_f,
1213797ac58cSKevin Wolf     .argmin     = 2,
1214797ac58cSKevin Wolf     .argmax     = -1,
1215797ac58cSKevin Wolf     .args       = "[-Cq] [-P pattern ] off len [len..] [; off len [len..]..]",
1216797ac58cSKevin Wolf     .oneline    = "issues multiple write requests at once",
1217797ac58cSKevin Wolf     .help       = multiwrite_help,
1218797ac58cSKevin Wolf };
1219797ac58cSKevin Wolf 
1220797ac58cSKevin Wolf static int multiwrite_f(BlockDriverState *bs, int argc, char **argv)
1221797ac58cSKevin Wolf {
1222797ac58cSKevin Wolf     struct timeval t1, t2;
1223797ac58cSKevin Wolf     int Cflag = 0, qflag = 0;
1224797ac58cSKevin Wolf     int c, cnt;
1225797ac58cSKevin Wolf     char **buf;
1226797ac58cSKevin Wolf     int64_t offset, first_offset = 0;
1227797ac58cSKevin Wolf     /* Some compilers get confused and warn if this is not initialized.  */
1228797ac58cSKevin Wolf     int total = 0;
1229797ac58cSKevin Wolf     int nr_iov;
1230797ac58cSKevin Wolf     int nr_reqs;
1231797ac58cSKevin Wolf     int pattern = 0xcd;
1232797ac58cSKevin Wolf     QEMUIOVector *qiovs;
1233797ac58cSKevin Wolf     int i;
1234797ac58cSKevin Wolf     BlockRequest *reqs;
1235797ac58cSKevin Wolf 
1236797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "CqP:")) != EOF) {
1237797ac58cSKevin Wolf         switch (c) {
1238797ac58cSKevin Wolf         case 'C':
1239797ac58cSKevin Wolf             Cflag = 1;
1240797ac58cSKevin Wolf             break;
1241797ac58cSKevin Wolf         case 'q':
1242797ac58cSKevin Wolf             qflag = 1;
1243797ac58cSKevin Wolf             break;
1244797ac58cSKevin Wolf         case 'P':
1245797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
1246797ac58cSKevin Wolf             if (pattern < 0) {
1247797ac58cSKevin Wolf                 return 0;
1248797ac58cSKevin Wolf             }
1249797ac58cSKevin Wolf             break;
1250797ac58cSKevin Wolf         default:
1251c2cdf5c5SKevin Wolf             return qemuio_command_usage(&writev_cmd);
1252797ac58cSKevin Wolf         }
1253797ac58cSKevin Wolf     }
1254797ac58cSKevin Wolf 
1255797ac58cSKevin Wolf     if (optind > argc - 2) {
1256c2cdf5c5SKevin Wolf         return qemuio_command_usage(&writev_cmd);
1257797ac58cSKevin Wolf     }
1258797ac58cSKevin Wolf 
1259797ac58cSKevin Wolf     nr_reqs = 1;
1260797ac58cSKevin Wolf     for (i = optind; i < argc; i++) {
1261797ac58cSKevin Wolf         if (!strcmp(argv[i], ";")) {
1262797ac58cSKevin Wolf             nr_reqs++;
1263797ac58cSKevin Wolf         }
1264797ac58cSKevin Wolf     }
1265797ac58cSKevin Wolf 
1266797ac58cSKevin Wolf     reqs = g_malloc0(nr_reqs * sizeof(*reqs));
1267797ac58cSKevin Wolf     buf = g_malloc0(nr_reqs * sizeof(*buf));
1268797ac58cSKevin Wolf     qiovs = g_malloc(nr_reqs * sizeof(*qiovs));
1269797ac58cSKevin Wolf 
1270797ac58cSKevin Wolf     for (i = 0; i < nr_reqs && optind < argc; i++) {
1271797ac58cSKevin Wolf         int j;
1272797ac58cSKevin Wolf 
1273797ac58cSKevin Wolf         /* Read the offset of the request */
1274797ac58cSKevin Wolf         offset = cvtnum(argv[optind]);
1275797ac58cSKevin Wolf         if (offset < 0) {
1276797ac58cSKevin Wolf             printf("non-numeric offset argument -- %s\n", argv[optind]);
1277797ac58cSKevin Wolf             goto out;
1278797ac58cSKevin Wolf         }
1279797ac58cSKevin Wolf         optind++;
1280797ac58cSKevin Wolf 
1281797ac58cSKevin Wolf         if (offset & 0x1ff) {
1282797ac58cSKevin Wolf             printf("offset %lld is not sector aligned\n",
1283797ac58cSKevin Wolf                    (long long)offset);
1284797ac58cSKevin Wolf             goto out;
1285797ac58cSKevin Wolf         }
1286797ac58cSKevin Wolf 
1287797ac58cSKevin Wolf         if (i == 0) {
1288797ac58cSKevin Wolf             first_offset = offset;
1289797ac58cSKevin Wolf         }
1290797ac58cSKevin Wolf 
1291797ac58cSKevin Wolf         /* Read lengths for qiov entries */
1292797ac58cSKevin Wolf         for (j = optind; j < argc; j++) {
1293797ac58cSKevin Wolf             if (!strcmp(argv[j], ";")) {
1294797ac58cSKevin Wolf                 break;
1295797ac58cSKevin Wolf             }
1296797ac58cSKevin Wolf         }
1297797ac58cSKevin Wolf 
1298797ac58cSKevin Wolf         nr_iov = j - optind;
1299797ac58cSKevin Wolf 
1300797ac58cSKevin Wolf         /* Build request */
1301797ac58cSKevin Wolf         buf[i] = create_iovec(bs, &qiovs[i], &argv[optind], nr_iov, pattern);
1302797ac58cSKevin Wolf         if (buf[i] == NULL) {
1303797ac58cSKevin Wolf             goto out;
1304797ac58cSKevin Wolf         }
1305797ac58cSKevin Wolf 
1306797ac58cSKevin Wolf         reqs[i].qiov = &qiovs[i];
1307797ac58cSKevin Wolf         reqs[i].sector = offset >> 9;
1308797ac58cSKevin Wolf         reqs[i].nb_sectors = reqs[i].qiov->size >> 9;
1309797ac58cSKevin Wolf 
1310797ac58cSKevin Wolf         optind = j + 1;
1311797ac58cSKevin Wolf 
1312797ac58cSKevin Wolf         pattern++;
1313797ac58cSKevin Wolf     }
1314797ac58cSKevin Wolf 
1315797ac58cSKevin Wolf     /* If there were empty requests at the end, ignore them */
1316797ac58cSKevin Wolf     nr_reqs = i;
1317797ac58cSKevin Wolf 
1318797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
1319797ac58cSKevin Wolf     cnt = do_aio_multiwrite(bs, reqs, nr_reqs, &total);
1320797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1321797ac58cSKevin Wolf 
1322797ac58cSKevin Wolf     if (cnt < 0) {
1323797ac58cSKevin Wolf         printf("aio_multiwrite failed: %s\n", strerror(-cnt));
1324797ac58cSKevin Wolf         goto out;
1325797ac58cSKevin Wolf     }
1326797ac58cSKevin Wolf 
1327797ac58cSKevin Wolf     if (qflag) {
1328797ac58cSKevin Wolf         goto out;
1329797ac58cSKevin Wolf     }
1330797ac58cSKevin Wolf 
1331797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1332797ac58cSKevin Wolf     t2 = tsub(t2, t1);
1333797ac58cSKevin Wolf     print_report("wrote", &t2, first_offset, total, total, cnt, Cflag);
1334797ac58cSKevin Wolf out:
1335797ac58cSKevin Wolf     for (i = 0; i < nr_reqs; i++) {
1336797ac58cSKevin Wolf         qemu_io_free(buf[i]);
1337797ac58cSKevin Wolf         if (reqs[i].qiov != NULL) {
1338797ac58cSKevin Wolf             qemu_iovec_destroy(&qiovs[i]);
1339797ac58cSKevin Wolf         }
1340797ac58cSKevin Wolf     }
1341797ac58cSKevin Wolf     g_free(buf);
1342797ac58cSKevin Wolf     g_free(reqs);
1343797ac58cSKevin Wolf     g_free(qiovs);
1344797ac58cSKevin Wolf     return 0;
1345797ac58cSKevin Wolf }
1346797ac58cSKevin Wolf 
1347797ac58cSKevin Wolf struct aio_ctx {
1348797ac58cSKevin Wolf     QEMUIOVector qiov;
1349797ac58cSKevin Wolf     int64_t offset;
1350797ac58cSKevin Wolf     char *buf;
1351797ac58cSKevin Wolf     int qflag;
1352797ac58cSKevin Wolf     int vflag;
1353797ac58cSKevin Wolf     int Cflag;
1354797ac58cSKevin Wolf     int Pflag;
1355797ac58cSKevin Wolf     int pattern;
1356797ac58cSKevin Wolf     struct timeval t1;
1357797ac58cSKevin Wolf };
1358797ac58cSKevin Wolf 
1359797ac58cSKevin Wolf static void aio_write_done(void *opaque, int ret)
1360797ac58cSKevin Wolf {
1361797ac58cSKevin Wolf     struct aio_ctx *ctx = opaque;
1362797ac58cSKevin Wolf     struct timeval t2;
1363797ac58cSKevin Wolf 
1364797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1365797ac58cSKevin Wolf 
1366797ac58cSKevin Wolf 
1367797ac58cSKevin Wolf     if (ret < 0) {
1368797ac58cSKevin Wolf         printf("aio_write failed: %s\n", strerror(-ret));
1369797ac58cSKevin Wolf         goto out;
1370797ac58cSKevin Wolf     }
1371797ac58cSKevin Wolf 
1372797ac58cSKevin Wolf     if (ctx->qflag) {
1373797ac58cSKevin Wolf         goto out;
1374797ac58cSKevin Wolf     }
1375797ac58cSKevin Wolf 
1376797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1377797ac58cSKevin Wolf     t2 = tsub(t2, ctx->t1);
1378797ac58cSKevin Wolf     print_report("wrote", &t2, ctx->offset, ctx->qiov.size,
1379797ac58cSKevin Wolf                  ctx->qiov.size, 1, ctx->Cflag);
1380797ac58cSKevin Wolf out:
1381797ac58cSKevin Wolf     qemu_io_free(ctx->buf);
1382797ac58cSKevin Wolf     qemu_iovec_destroy(&ctx->qiov);
1383797ac58cSKevin Wolf     g_free(ctx);
1384797ac58cSKevin Wolf }
1385797ac58cSKevin Wolf 
1386797ac58cSKevin Wolf static void aio_read_done(void *opaque, int ret)
1387797ac58cSKevin Wolf {
1388797ac58cSKevin Wolf     struct aio_ctx *ctx = opaque;
1389797ac58cSKevin Wolf     struct timeval t2;
1390797ac58cSKevin Wolf 
1391797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1392797ac58cSKevin Wolf 
1393797ac58cSKevin Wolf     if (ret < 0) {
1394797ac58cSKevin Wolf         printf("readv failed: %s\n", strerror(-ret));
1395797ac58cSKevin Wolf         goto out;
1396797ac58cSKevin Wolf     }
1397797ac58cSKevin Wolf 
1398797ac58cSKevin Wolf     if (ctx->Pflag) {
1399797ac58cSKevin Wolf         void *cmp_buf = g_malloc(ctx->qiov.size);
1400797ac58cSKevin Wolf 
1401797ac58cSKevin Wolf         memset(cmp_buf, ctx->pattern, ctx->qiov.size);
1402797ac58cSKevin Wolf         if (memcmp(ctx->buf, cmp_buf, ctx->qiov.size)) {
1403797ac58cSKevin Wolf             printf("Pattern verification failed at offset %"
1404797ac58cSKevin Wolf                    PRId64 ", %zd bytes\n", ctx->offset, ctx->qiov.size);
1405797ac58cSKevin Wolf         }
1406797ac58cSKevin Wolf         g_free(cmp_buf);
1407797ac58cSKevin Wolf     }
1408797ac58cSKevin Wolf 
1409797ac58cSKevin Wolf     if (ctx->qflag) {
1410797ac58cSKevin Wolf         goto out;
1411797ac58cSKevin Wolf     }
1412797ac58cSKevin Wolf 
1413797ac58cSKevin Wolf     if (ctx->vflag) {
1414797ac58cSKevin Wolf         dump_buffer(ctx->buf, ctx->offset, ctx->qiov.size);
1415797ac58cSKevin Wolf     }
1416797ac58cSKevin Wolf 
1417797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1418797ac58cSKevin Wolf     t2 = tsub(t2, ctx->t1);
1419797ac58cSKevin Wolf     print_report("read", &t2, ctx->offset, ctx->qiov.size,
1420797ac58cSKevin Wolf                  ctx->qiov.size, 1, ctx->Cflag);
1421797ac58cSKevin Wolf out:
1422797ac58cSKevin Wolf     qemu_io_free(ctx->buf);
1423797ac58cSKevin Wolf     qemu_iovec_destroy(&ctx->qiov);
1424797ac58cSKevin Wolf     g_free(ctx);
1425797ac58cSKevin Wolf }
1426797ac58cSKevin Wolf 
1427797ac58cSKevin Wolf static void aio_read_help(void)
1428797ac58cSKevin Wolf {
1429797ac58cSKevin Wolf     printf(
1430797ac58cSKevin Wolf "\n"
1431797ac58cSKevin Wolf " asynchronously reads a range of bytes from the given offset\n"
1432797ac58cSKevin Wolf "\n"
1433797ac58cSKevin Wolf " Example:\n"
1434797ac58cSKevin Wolf " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
1435797ac58cSKevin Wolf "\n"
1436797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n"
1437797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n"
1438797ac58cSKevin Wolf " The read is performed asynchronously and the aio_flush command must be\n"
1439797ac58cSKevin Wolf " used to ensure all outstanding aio requests have been completed.\n"
1440797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
1441797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n"
1442797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n"
1443797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
1444797ac58cSKevin Wolf "\n");
1445797ac58cSKevin Wolf }
1446797ac58cSKevin Wolf 
1447797ac58cSKevin Wolf static int aio_read_f(BlockDriverState *bs, int argc, char **argv);
1448797ac58cSKevin Wolf 
1449797ac58cSKevin Wolf static const cmdinfo_t aio_read_cmd = {
1450797ac58cSKevin Wolf     .name       = "aio_read",
1451797ac58cSKevin Wolf     .cfunc      = aio_read_f,
1452797ac58cSKevin Wolf     .argmin     = 2,
1453797ac58cSKevin Wolf     .argmax     = -1,
1454797ac58cSKevin Wolf     .args       = "[-Cqv] [-P pattern ] off len [len..]",
1455797ac58cSKevin Wolf     .oneline    = "asynchronously reads a number of bytes",
1456797ac58cSKevin Wolf     .help       = aio_read_help,
1457797ac58cSKevin Wolf };
1458797ac58cSKevin Wolf 
1459797ac58cSKevin Wolf static int aio_read_f(BlockDriverState *bs, int argc, char **argv)
1460797ac58cSKevin Wolf {
1461797ac58cSKevin Wolf     int nr_iov, c;
1462797ac58cSKevin Wolf     struct aio_ctx *ctx = g_new0(struct aio_ctx, 1);
1463797ac58cSKevin Wolf 
1464797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
1465797ac58cSKevin Wolf         switch (c) {
1466797ac58cSKevin Wolf         case 'C':
1467797ac58cSKevin Wolf             ctx->Cflag = 1;
1468797ac58cSKevin Wolf             break;
1469797ac58cSKevin Wolf         case 'P':
1470797ac58cSKevin Wolf             ctx->Pflag = 1;
1471797ac58cSKevin Wolf             ctx->pattern = parse_pattern(optarg);
1472797ac58cSKevin Wolf             if (ctx->pattern < 0) {
1473797ac58cSKevin Wolf                 g_free(ctx);
1474797ac58cSKevin Wolf                 return 0;
1475797ac58cSKevin Wolf             }
1476797ac58cSKevin Wolf             break;
1477797ac58cSKevin Wolf         case 'q':
1478797ac58cSKevin Wolf             ctx->qflag = 1;
1479797ac58cSKevin Wolf             break;
1480797ac58cSKevin Wolf         case 'v':
1481797ac58cSKevin Wolf             ctx->vflag = 1;
1482797ac58cSKevin Wolf             break;
1483797ac58cSKevin Wolf         default:
1484797ac58cSKevin Wolf             g_free(ctx);
1485c2cdf5c5SKevin Wolf             return qemuio_command_usage(&aio_read_cmd);
1486797ac58cSKevin Wolf         }
1487797ac58cSKevin Wolf     }
1488797ac58cSKevin Wolf 
1489797ac58cSKevin Wolf     if (optind > argc - 2) {
1490797ac58cSKevin Wolf         g_free(ctx);
1491c2cdf5c5SKevin Wolf         return qemuio_command_usage(&aio_read_cmd);
1492797ac58cSKevin Wolf     }
1493797ac58cSKevin Wolf 
1494797ac58cSKevin Wolf     ctx->offset = cvtnum(argv[optind]);
1495797ac58cSKevin Wolf     if (ctx->offset < 0) {
1496797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1497797ac58cSKevin Wolf         g_free(ctx);
1498797ac58cSKevin Wolf         return 0;
1499797ac58cSKevin Wolf     }
1500797ac58cSKevin Wolf     optind++;
1501797ac58cSKevin Wolf 
1502797ac58cSKevin Wolf     if (ctx->offset & 0x1ff) {
1503797ac58cSKevin Wolf         printf("offset %" PRId64 " is not sector aligned\n",
1504797ac58cSKevin Wolf                ctx->offset);
1505797ac58cSKevin Wolf         g_free(ctx);
1506797ac58cSKevin Wolf         return 0;
1507797ac58cSKevin Wolf     }
1508797ac58cSKevin Wolf 
1509797ac58cSKevin Wolf     nr_iov = argc - optind;
1510797ac58cSKevin Wolf     ctx->buf = create_iovec(bs, &ctx->qiov, &argv[optind], nr_iov, 0xab);
1511797ac58cSKevin Wolf     if (ctx->buf == NULL) {
1512797ac58cSKevin Wolf         g_free(ctx);
1513797ac58cSKevin Wolf         return 0;
1514797ac58cSKevin Wolf     }
1515797ac58cSKevin Wolf 
1516797ac58cSKevin Wolf     gettimeofday(&ctx->t1, NULL);
1517797ac58cSKevin Wolf     bdrv_aio_readv(bs, ctx->offset >> 9, &ctx->qiov,
1518797ac58cSKevin Wolf                    ctx->qiov.size >> 9, aio_read_done, ctx);
1519797ac58cSKevin Wolf     return 0;
1520797ac58cSKevin Wolf }
1521797ac58cSKevin Wolf 
1522797ac58cSKevin Wolf static void aio_write_help(void)
1523797ac58cSKevin Wolf {
1524797ac58cSKevin Wolf     printf(
1525797ac58cSKevin Wolf "\n"
1526797ac58cSKevin Wolf " asynchronously writes a range of bytes from the given offset source\n"
1527797ac58cSKevin Wolf " from multiple buffers\n"
1528797ac58cSKevin Wolf "\n"
1529797ac58cSKevin Wolf " Example:\n"
1530797ac58cSKevin Wolf " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1531797ac58cSKevin Wolf "\n"
1532797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n"
1533797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n"
1534797ac58cSKevin Wolf " The write is performed asynchronously and the aio_flush command must be\n"
1535797ac58cSKevin Wolf " used to ensure all outstanding aio requests have been completed.\n"
1536797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n"
1537797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
1538797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
1539797ac58cSKevin Wolf "\n");
1540797ac58cSKevin Wolf }
1541797ac58cSKevin Wolf 
1542797ac58cSKevin Wolf static int aio_write_f(BlockDriverState *bs, int argc, char **argv);
1543797ac58cSKevin Wolf 
1544797ac58cSKevin Wolf static const cmdinfo_t aio_write_cmd = {
1545797ac58cSKevin Wolf     .name       = "aio_write",
1546797ac58cSKevin Wolf     .cfunc      = aio_write_f,
1547797ac58cSKevin Wolf     .argmin     = 2,
1548797ac58cSKevin Wolf     .argmax     = -1,
1549797ac58cSKevin Wolf     .args       = "[-Cq] [-P pattern ] off len [len..]",
1550797ac58cSKevin Wolf     .oneline    = "asynchronously writes a number of bytes",
1551797ac58cSKevin Wolf     .help       = aio_write_help,
1552797ac58cSKevin Wolf };
1553797ac58cSKevin Wolf 
1554797ac58cSKevin Wolf static int aio_write_f(BlockDriverState *bs, int argc, char **argv)
1555797ac58cSKevin Wolf {
1556797ac58cSKevin Wolf     int nr_iov, c;
1557797ac58cSKevin Wolf     int pattern = 0xcd;
1558797ac58cSKevin Wolf     struct aio_ctx *ctx = g_new0(struct aio_ctx, 1);
1559797ac58cSKevin Wolf 
1560797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "CqP:")) != EOF) {
1561797ac58cSKevin Wolf         switch (c) {
1562797ac58cSKevin Wolf         case 'C':
1563797ac58cSKevin Wolf             ctx->Cflag = 1;
1564797ac58cSKevin Wolf             break;
1565797ac58cSKevin Wolf         case 'q':
1566797ac58cSKevin Wolf             ctx->qflag = 1;
1567797ac58cSKevin Wolf             break;
1568797ac58cSKevin Wolf         case 'P':
1569797ac58cSKevin Wolf             pattern = parse_pattern(optarg);
1570797ac58cSKevin Wolf             if (pattern < 0) {
1571797ac58cSKevin Wolf                 g_free(ctx);
1572797ac58cSKevin Wolf                 return 0;
1573797ac58cSKevin Wolf             }
1574797ac58cSKevin Wolf             break;
1575797ac58cSKevin Wolf         default:
1576797ac58cSKevin Wolf             g_free(ctx);
1577c2cdf5c5SKevin Wolf             return qemuio_command_usage(&aio_write_cmd);
1578797ac58cSKevin Wolf         }
1579797ac58cSKevin Wolf     }
1580797ac58cSKevin Wolf 
1581797ac58cSKevin Wolf     if (optind > argc - 2) {
1582797ac58cSKevin Wolf         g_free(ctx);
1583c2cdf5c5SKevin Wolf         return qemuio_command_usage(&aio_write_cmd);
1584797ac58cSKevin Wolf     }
1585797ac58cSKevin Wolf 
1586797ac58cSKevin Wolf     ctx->offset = cvtnum(argv[optind]);
1587797ac58cSKevin Wolf     if (ctx->offset < 0) {
1588797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1589797ac58cSKevin Wolf         g_free(ctx);
1590797ac58cSKevin Wolf         return 0;
1591797ac58cSKevin Wolf     }
1592797ac58cSKevin Wolf     optind++;
1593797ac58cSKevin Wolf 
1594797ac58cSKevin Wolf     if (ctx->offset & 0x1ff) {
1595797ac58cSKevin Wolf         printf("offset %" PRId64 " is not sector aligned\n",
1596797ac58cSKevin Wolf                ctx->offset);
1597797ac58cSKevin Wolf         g_free(ctx);
1598797ac58cSKevin Wolf         return 0;
1599797ac58cSKevin Wolf     }
1600797ac58cSKevin Wolf 
1601797ac58cSKevin Wolf     nr_iov = argc - optind;
1602797ac58cSKevin Wolf     ctx->buf = create_iovec(bs, &ctx->qiov, &argv[optind], nr_iov, pattern);
1603797ac58cSKevin Wolf     if (ctx->buf == NULL) {
1604797ac58cSKevin Wolf         g_free(ctx);
1605797ac58cSKevin Wolf         return 0;
1606797ac58cSKevin Wolf     }
1607797ac58cSKevin Wolf 
1608797ac58cSKevin Wolf     gettimeofday(&ctx->t1, NULL);
1609797ac58cSKevin Wolf     bdrv_aio_writev(bs, ctx->offset >> 9, &ctx->qiov,
1610797ac58cSKevin Wolf                     ctx->qiov.size >> 9, aio_write_done, ctx);
1611797ac58cSKevin Wolf     return 0;
1612797ac58cSKevin Wolf }
1613797ac58cSKevin Wolf 
1614797ac58cSKevin Wolf static int aio_flush_f(BlockDriverState *bs, int argc, char **argv)
1615797ac58cSKevin Wolf {
1616797ac58cSKevin Wolf     bdrv_drain_all();
1617797ac58cSKevin Wolf     return 0;
1618797ac58cSKevin Wolf }
1619797ac58cSKevin Wolf 
1620797ac58cSKevin Wolf static const cmdinfo_t aio_flush_cmd = {
1621797ac58cSKevin Wolf     .name       = "aio_flush",
1622797ac58cSKevin Wolf     .cfunc      = aio_flush_f,
1623797ac58cSKevin Wolf     .oneline    = "completes all outstanding aio requests"
1624797ac58cSKevin Wolf };
1625797ac58cSKevin Wolf 
1626797ac58cSKevin Wolf static int flush_f(BlockDriverState *bs, int argc, char **argv)
1627797ac58cSKevin Wolf {
1628797ac58cSKevin Wolf     bdrv_flush(bs);
1629797ac58cSKevin Wolf     return 0;
1630797ac58cSKevin Wolf }
1631797ac58cSKevin Wolf 
1632797ac58cSKevin Wolf static const cmdinfo_t flush_cmd = {
1633797ac58cSKevin Wolf     .name       = "flush",
1634797ac58cSKevin Wolf     .altname    = "f",
1635797ac58cSKevin Wolf     .cfunc      = flush_f,
1636797ac58cSKevin Wolf     .oneline    = "flush all in-core file state to disk",
1637797ac58cSKevin Wolf };
1638797ac58cSKevin Wolf 
1639797ac58cSKevin Wolf static int truncate_f(BlockDriverState *bs, int argc, char **argv)
1640797ac58cSKevin Wolf {
1641797ac58cSKevin Wolf     int64_t offset;
1642797ac58cSKevin Wolf     int ret;
1643797ac58cSKevin Wolf 
1644797ac58cSKevin Wolf     offset = cvtnum(argv[1]);
1645797ac58cSKevin Wolf     if (offset < 0) {
1646797ac58cSKevin Wolf         printf("non-numeric truncate argument -- %s\n", argv[1]);
1647797ac58cSKevin Wolf         return 0;
1648797ac58cSKevin Wolf     }
1649797ac58cSKevin Wolf 
1650797ac58cSKevin Wolf     ret = bdrv_truncate(bs, offset);
1651797ac58cSKevin Wolf     if (ret < 0) {
1652797ac58cSKevin Wolf         printf("truncate: %s\n", strerror(-ret));
1653797ac58cSKevin Wolf         return 0;
1654797ac58cSKevin Wolf     }
1655797ac58cSKevin Wolf 
1656797ac58cSKevin Wolf     return 0;
1657797ac58cSKevin Wolf }
1658797ac58cSKevin Wolf 
1659797ac58cSKevin Wolf static const cmdinfo_t truncate_cmd = {
1660797ac58cSKevin Wolf     .name       = "truncate",
1661797ac58cSKevin Wolf     .altname    = "t",
1662797ac58cSKevin Wolf     .cfunc      = truncate_f,
1663797ac58cSKevin Wolf     .argmin     = 1,
1664797ac58cSKevin Wolf     .argmax     = 1,
1665797ac58cSKevin Wolf     .args       = "off",
1666797ac58cSKevin Wolf     .oneline    = "truncates the current file at the given offset",
1667797ac58cSKevin Wolf };
1668797ac58cSKevin Wolf 
1669797ac58cSKevin Wolf static int length_f(BlockDriverState *bs, int argc, char **argv)
1670797ac58cSKevin Wolf {
1671797ac58cSKevin Wolf     int64_t size;
1672797ac58cSKevin Wolf     char s1[64];
1673797ac58cSKevin Wolf 
1674797ac58cSKevin Wolf     size = bdrv_getlength(bs);
1675797ac58cSKevin Wolf     if (size < 0) {
1676797ac58cSKevin Wolf         printf("getlength: %s\n", strerror(-size));
1677797ac58cSKevin Wolf         return 0;
1678797ac58cSKevin Wolf     }
1679797ac58cSKevin Wolf 
1680797ac58cSKevin Wolf     cvtstr(size, s1, sizeof(s1));
1681797ac58cSKevin Wolf     printf("%s\n", s1);
1682797ac58cSKevin Wolf     return 0;
1683797ac58cSKevin Wolf }
1684797ac58cSKevin Wolf 
1685797ac58cSKevin Wolf 
1686797ac58cSKevin Wolf static const cmdinfo_t length_cmd = {
1687797ac58cSKevin Wolf     .name   = "length",
1688797ac58cSKevin Wolf     .altname    = "l",
1689797ac58cSKevin Wolf     .cfunc      = length_f,
1690797ac58cSKevin Wolf     .oneline    = "gets the length of the current file",
1691797ac58cSKevin Wolf };
1692797ac58cSKevin Wolf 
1693797ac58cSKevin Wolf 
1694797ac58cSKevin Wolf static int info_f(BlockDriverState *bs, int argc, char **argv)
1695797ac58cSKevin Wolf {
1696797ac58cSKevin Wolf     BlockDriverInfo bdi;
1697a8d8ecb7SMax Reitz     ImageInfoSpecific *spec_info;
1698797ac58cSKevin Wolf     char s1[64], s2[64];
1699797ac58cSKevin Wolf     int ret;
1700797ac58cSKevin Wolf 
1701797ac58cSKevin Wolf     if (bs->drv && bs->drv->format_name) {
1702797ac58cSKevin Wolf         printf("format name: %s\n", bs->drv->format_name);
1703797ac58cSKevin Wolf     }
1704797ac58cSKevin Wolf     if (bs->drv && bs->drv->protocol_name) {
1705797ac58cSKevin Wolf         printf("format name: %s\n", bs->drv->protocol_name);
1706797ac58cSKevin Wolf     }
1707797ac58cSKevin Wolf 
1708797ac58cSKevin Wolf     ret = bdrv_get_info(bs, &bdi);
1709797ac58cSKevin Wolf     if (ret) {
1710797ac58cSKevin Wolf         return 0;
1711797ac58cSKevin Wolf     }
1712797ac58cSKevin Wolf 
1713797ac58cSKevin Wolf     cvtstr(bdi.cluster_size, s1, sizeof(s1));
1714797ac58cSKevin Wolf     cvtstr(bdi.vm_state_offset, s2, sizeof(s2));
1715797ac58cSKevin Wolf 
1716797ac58cSKevin Wolf     printf("cluster size: %s\n", s1);
1717797ac58cSKevin Wolf     printf("vm state offset: %s\n", s2);
1718797ac58cSKevin Wolf 
1719a8d8ecb7SMax Reitz     spec_info = bdrv_get_specific_info(bs);
1720a8d8ecb7SMax Reitz     if (spec_info) {
1721a8d8ecb7SMax Reitz         printf("Format specific information:\n");
1722a8d8ecb7SMax Reitz         bdrv_image_info_specific_dump(fprintf, stdout, spec_info);
1723a8d8ecb7SMax Reitz         qapi_free_ImageInfoSpecific(spec_info);
1724a8d8ecb7SMax Reitz     }
1725a8d8ecb7SMax Reitz 
1726797ac58cSKevin Wolf     return 0;
1727797ac58cSKevin Wolf }
1728797ac58cSKevin Wolf 
1729797ac58cSKevin Wolf 
1730797ac58cSKevin Wolf 
1731797ac58cSKevin Wolf static const cmdinfo_t info_cmd = {
1732797ac58cSKevin Wolf     .name       = "info",
1733797ac58cSKevin Wolf     .altname    = "i",
1734797ac58cSKevin Wolf     .cfunc      = info_f,
1735797ac58cSKevin Wolf     .oneline    = "prints information about the current file",
1736797ac58cSKevin Wolf };
1737797ac58cSKevin Wolf 
1738797ac58cSKevin Wolf static void discard_help(void)
1739797ac58cSKevin Wolf {
1740797ac58cSKevin Wolf     printf(
1741797ac58cSKevin Wolf "\n"
1742797ac58cSKevin Wolf " discards a range of bytes from the given offset\n"
1743797ac58cSKevin Wolf "\n"
1744797ac58cSKevin Wolf " Example:\n"
1745797ac58cSKevin Wolf " 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n"
1746797ac58cSKevin Wolf "\n"
1747797ac58cSKevin Wolf " Discards a segment of the currently open file.\n"
1748797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n"
1749797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n"
1750797ac58cSKevin Wolf "\n");
1751797ac58cSKevin Wolf }
1752797ac58cSKevin Wolf 
1753797ac58cSKevin Wolf static int discard_f(BlockDriverState *bs, int argc, char **argv);
1754797ac58cSKevin Wolf 
1755797ac58cSKevin Wolf static const cmdinfo_t discard_cmd = {
1756797ac58cSKevin Wolf     .name       = "discard",
1757797ac58cSKevin Wolf     .altname    = "d",
1758797ac58cSKevin Wolf     .cfunc      = discard_f,
1759797ac58cSKevin Wolf     .argmin     = 2,
1760797ac58cSKevin Wolf     .argmax     = -1,
1761797ac58cSKevin Wolf     .args       = "[-Cq] off len",
1762797ac58cSKevin Wolf     .oneline    = "discards a number of bytes at a specified offset",
1763797ac58cSKevin Wolf     .help       = discard_help,
1764797ac58cSKevin Wolf };
1765797ac58cSKevin Wolf 
1766797ac58cSKevin Wolf static int discard_f(BlockDriverState *bs, int argc, char **argv)
1767797ac58cSKevin Wolf {
1768797ac58cSKevin Wolf     struct timeval t1, t2;
1769797ac58cSKevin Wolf     int Cflag = 0, qflag = 0;
1770797ac58cSKevin Wolf     int c, ret;
1771797ac58cSKevin Wolf     int64_t offset;
1772797ac58cSKevin Wolf     int count;
1773797ac58cSKevin Wolf 
1774797ac58cSKevin Wolf     while ((c = getopt(argc, argv, "Cq")) != EOF) {
1775797ac58cSKevin Wolf         switch (c) {
1776797ac58cSKevin Wolf         case 'C':
1777797ac58cSKevin Wolf             Cflag = 1;
1778797ac58cSKevin Wolf             break;
1779797ac58cSKevin Wolf         case 'q':
1780797ac58cSKevin Wolf             qflag = 1;
1781797ac58cSKevin Wolf             break;
1782797ac58cSKevin Wolf         default:
1783c2cdf5c5SKevin Wolf             return qemuio_command_usage(&discard_cmd);
1784797ac58cSKevin Wolf         }
1785797ac58cSKevin Wolf     }
1786797ac58cSKevin Wolf 
1787797ac58cSKevin Wolf     if (optind != argc - 2) {
1788c2cdf5c5SKevin Wolf         return qemuio_command_usage(&discard_cmd);
1789797ac58cSKevin Wolf     }
1790797ac58cSKevin Wolf 
1791797ac58cSKevin Wolf     offset = cvtnum(argv[optind]);
1792797ac58cSKevin Wolf     if (offset < 0) {
1793797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1794797ac58cSKevin Wolf         return 0;
1795797ac58cSKevin Wolf     }
1796797ac58cSKevin Wolf 
1797797ac58cSKevin Wolf     optind++;
1798797ac58cSKevin Wolf     count = cvtnum(argv[optind]);
1799797ac58cSKevin Wolf     if (count < 0) {
1800797ac58cSKevin Wolf         printf("non-numeric length argument -- %s\n", argv[optind]);
1801797ac58cSKevin Wolf         return 0;
1802797ac58cSKevin Wolf     }
1803797ac58cSKevin Wolf 
1804797ac58cSKevin Wolf     gettimeofday(&t1, NULL);
1805797ac58cSKevin Wolf     ret = bdrv_discard(bs, offset >> BDRV_SECTOR_BITS,
1806797ac58cSKevin Wolf                        count >> BDRV_SECTOR_BITS);
1807797ac58cSKevin Wolf     gettimeofday(&t2, NULL);
1808797ac58cSKevin Wolf 
1809797ac58cSKevin Wolf     if (ret < 0) {
1810797ac58cSKevin Wolf         printf("discard failed: %s\n", strerror(-ret));
1811797ac58cSKevin Wolf         goto out;
1812797ac58cSKevin Wolf     }
1813797ac58cSKevin Wolf 
1814797ac58cSKevin Wolf     /* Finally, report back -- -C gives a parsable format */
1815797ac58cSKevin Wolf     if (!qflag) {
1816797ac58cSKevin Wolf         t2 = tsub(t2, t1);
1817797ac58cSKevin Wolf         print_report("discard", &t2, offset, count, count, 1, Cflag);
1818797ac58cSKevin Wolf     }
1819797ac58cSKevin Wolf 
1820797ac58cSKevin Wolf out:
1821797ac58cSKevin Wolf     return 0;
1822797ac58cSKevin Wolf }
1823797ac58cSKevin Wolf 
1824797ac58cSKevin Wolf static int alloc_f(BlockDriverState *bs, int argc, char **argv)
1825797ac58cSKevin Wolf {
1826797ac58cSKevin Wolf     int64_t offset, sector_num;
1827797ac58cSKevin Wolf     int nb_sectors, remaining;
1828797ac58cSKevin Wolf     char s1[64];
1829797ac58cSKevin Wolf     int num, sum_alloc;
1830797ac58cSKevin Wolf     int ret;
1831797ac58cSKevin Wolf 
1832797ac58cSKevin Wolf     offset = cvtnum(argv[1]);
1833797ac58cSKevin Wolf     if (offset < 0) {
1834797ac58cSKevin Wolf         printf("non-numeric offset argument -- %s\n", argv[1]);
1835797ac58cSKevin Wolf         return 0;
1836797ac58cSKevin Wolf     } else if (offset & 0x1ff) {
1837797ac58cSKevin Wolf         printf("offset %" PRId64 " is not sector aligned\n",
1838797ac58cSKevin Wolf                offset);
1839797ac58cSKevin Wolf         return 0;
1840797ac58cSKevin Wolf     }
1841797ac58cSKevin Wolf 
1842797ac58cSKevin Wolf     if (argc == 3) {
1843797ac58cSKevin Wolf         nb_sectors = cvtnum(argv[2]);
1844797ac58cSKevin Wolf         if (nb_sectors < 0) {
1845797ac58cSKevin Wolf             printf("non-numeric length argument -- %s\n", argv[2]);
1846797ac58cSKevin Wolf             return 0;
1847797ac58cSKevin Wolf         }
1848797ac58cSKevin Wolf     } else {
1849797ac58cSKevin Wolf         nb_sectors = 1;
1850797ac58cSKevin Wolf     }
1851797ac58cSKevin Wolf 
1852797ac58cSKevin Wolf     remaining = nb_sectors;
1853797ac58cSKevin Wolf     sum_alloc = 0;
1854797ac58cSKevin Wolf     sector_num = offset >> 9;
1855797ac58cSKevin Wolf     while (remaining) {
1856797ac58cSKevin Wolf         ret = bdrv_is_allocated(bs, sector_num, remaining, &num);
1857d663640cSPaolo Bonzini         if (ret < 0) {
1858d663640cSPaolo Bonzini             printf("is_allocated failed: %s\n", strerror(-ret));
1859d663640cSPaolo Bonzini             return 0;
1860d663640cSPaolo Bonzini         }
1861797ac58cSKevin Wolf         sector_num += num;
1862797ac58cSKevin Wolf         remaining -= num;
1863797ac58cSKevin Wolf         if (ret) {
1864797ac58cSKevin Wolf             sum_alloc += num;
1865797ac58cSKevin Wolf         }
1866797ac58cSKevin Wolf         if (num == 0) {
1867797ac58cSKevin Wolf             nb_sectors -= remaining;
1868797ac58cSKevin Wolf             remaining = 0;
1869797ac58cSKevin Wolf         }
1870797ac58cSKevin Wolf     }
1871797ac58cSKevin Wolf 
1872797ac58cSKevin Wolf     cvtstr(offset, s1, sizeof(s1));
1873797ac58cSKevin Wolf 
1874797ac58cSKevin Wolf     printf("%d/%d sectors allocated at offset %s\n",
1875797ac58cSKevin Wolf            sum_alloc, nb_sectors, s1);
1876797ac58cSKevin Wolf     return 0;
1877797ac58cSKevin Wolf }
1878797ac58cSKevin Wolf 
1879797ac58cSKevin Wolf static const cmdinfo_t alloc_cmd = {
1880797ac58cSKevin Wolf     .name       = "alloc",
1881797ac58cSKevin Wolf     .altname    = "a",
1882797ac58cSKevin Wolf     .argmin     = 1,
1883797ac58cSKevin Wolf     .argmax     = 2,
1884797ac58cSKevin Wolf     .cfunc      = alloc_f,
1885797ac58cSKevin Wolf     .args       = "off [sectors]",
1886797ac58cSKevin Wolf     .oneline    = "checks if a sector is present in the file",
1887797ac58cSKevin Wolf };
1888797ac58cSKevin Wolf 
1889797ac58cSKevin Wolf 
1890797ac58cSKevin Wolf static int map_is_allocated(BlockDriverState *bs, int64_t sector_num,
1891797ac58cSKevin Wolf                             int64_t nb_sectors, int64_t *pnum)
1892797ac58cSKevin Wolf {
1893797ac58cSKevin Wolf     int num, num_checked;
1894797ac58cSKevin Wolf     int ret, firstret;
1895797ac58cSKevin Wolf 
1896797ac58cSKevin Wolf     num_checked = MIN(nb_sectors, INT_MAX);
1897797ac58cSKevin Wolf     ret = bdrv_is_allocated(bs, sector_num, num_checked, &num);
1898797ac58cSKevin Wolf     if (ret < 0) {
1899797ac58cSKevin Wolf         return ret;
1900797ac58cSKevin Wolf     }
1901797ac58cSKevin Wolf 
1902797ac58cSKevin Wolf     firstret = ret;
1903797ac58cSKevin Wolf     *pnum = num;
1904797ac58cSKevin Wolf 
1905797ac58cSKevin Wolf     while (nb_sectors > 0 && ret == firstret) {
1906797ac58cSKevin Wolf         sector_num += num;
1907797ac58cSKevin Wolf         nb_sectors -= num;
1908797ac58cSKevin Wolf 
1909797ac58cSKevin Wolf         num_checked = MIN(nb_sectors, INT_MAX);
1910797ac58cSKevin Wolf         ret = bdrv_is_allocated(bs, sector_num, num_checked, &num);
1911797ac58cSKevin Wolf         if (ret == firstret) {
1912797ac58cSKevin Wolf             *pnum += num;
1913797ac58cSKevin Wolf         } else {
1914797ac58cSKevin Wolf             break;
1915797ac58cSKevin Wolf         }
1916797ac58cSKevin Wolf     }
1917797ac58cSKevin Wolf 
1918797ac58cSKevin Wolf     return firstret;
1919797ac58cSKevin Wolf }
1920797ac58cSKevin Wolf 
1921797ac58cSKevin Wolf static int map_f(BlockDriverState *bs, int argc, char **argv)
1922797ac58cSKevin Wolf {
1923797ac58cSKevin Wolf     int64_t offset;
1924797ac58cSKevin Wolf     int64_t nb_sectors;
1925797ac58cSKevin Wolf     char s1[64];
1926797ac58cSKevin Wolf     int64_t num;
1927797ac58cSKevin Wolf     int ret;
1928797ac58cSKevin Wolf     const char *retstr;
1929797ac58cSKevin Wolf 
1930797ac58cSKevin Wolf     offset = 0;
1931797ac58cSKevin Wolf     nb_sectors = bs->total_sectors;
1932797ac58cSKevin Wolf 
1933797ac58cSKevin Wolf     do {
1934797ac58cSKevin Wolf         ret = map_is_allocated(bs, offset, nb_sectors, &num);
1935797ac58cSKevin Wolf         if (ret < 0) {
1936797ac58cSKevin Wolf             error_report("Failed to get allocation status: %s", strerror(-ret));
1937797ac58cSKevin Wolf             return 0;
1938797ac58cSKevin Wolf         }
1939797ac58cSKevin Wolf 
1940797ac58cSKevin Wolf         retstr = ret ? "    allocated" : "not allocated";
1941797ac58cSKevin Wolf         cvtstr(offset << 9ULL, s1, sizeof(s1));
1942797ac58cSKevin Wolf         printf("[% 24" PRId64 "] % 8" PRId64 "/% 8" PRId64 " sectors %s "
1943797ac58cSKevin Wolf                "at offset %s (%d)\n",
1944797ac58cSKevin Wolf                offset << 9ULL, num, nb_sectors, retstr, s1, ret);
1945797ac58cSKevin Wolf 
1946797ac58cSKevin Wolf         offset += num;
1947797ac58cSKevin Wolf         nb_sectors -= num;
1948797ac58cSKevin Wolf     } while (offset < bs->total_sectors);
1949797ac58cSKevin Wolf 
1950797ac58cSKevin Wolf     return 0;
1951797ac58cSKevin Wolf }
1952797ac58cSKevin Wolf 
1953797ac58cSKevin Wolf static const cmdinfo_t map_cmd = {
1954797ac58cSKevin Wolf        .name           = "map",
1955797ac58cSKevin Wolf        .argmin         = 0,
1956797ac58cSKevin Wolf        .argmax         = 0,
1957797ac58cSKevin Wolf        .cfunc          = map_f,
1958797ac58cSKevin Wolf        .args           = "",
1959797ac58cSKevin Wolf        .oneline        = "prints the allocated areas of a file",
1960797ac58cSKevin Wolf };
1961797ac58cSKevin Wolf 
1962797ac58cSKevin Wolf static int break_f(BlockDriverState *bs, int argc, char **argv)
1963797ac58cSKevin Wolf {
1964797ac58cSKevin Wolf     int ret;
1965797ac58cSKevin Wolf 
1966797ac58cSKevin Wolf     ret = bdrv_debug_breakpoint(bs, argv[1], argv[2]);
1967797ac58cSKevin Wolf     if (ret < 0) {
1968797ac58cSKevin Wolf         printf("Could not set breakpoint: %s\n", strerror(-ret));
1969797ac58cSKevin Wolf     }
1970797ac58cSKevin Wolf 
1971797ac58cSKevin Wolf     return 0;
1972797ac58cSKevin Wolf }
1973797ac58cSKevin Wolf 
19744cc70e93SFam Zheng static int remove_break_f(BlockDriverState *bs, int argc, char **argv)
19754cc70e93SFam Zheng {
19764cc70e93SFam Zheng     int ret;
19774cc70e93SFam Zheng 
19784cc70e93SFam Zheng     ret = bdrv_debug_remove_breakpoint(bs, argv[1]);
19794cc70e93SFam Zheng     if (ret < 0) {
19804cc70e93SFam Zheng         printf("Could not remove breakpoint %s: %s\n", argv[1], strerror(-ret));
19814cc70e93SFam Zheng     }
19824cc70e93SFam Zheng 
19834cc70e93SFam Zheng     return 0;
19844cc70e93SFam Zheng }
19854cc70e93SFam Zheng 
1986797ac58cSKevin Wolf static const cmdinfo_t break_cmd = {
1987797ac58cSKevin Wolf        .name           = "break",
1988797ac58cSKevin Wolf        .argmin         = 2,
1989797ac58cSKevin Wolf        .argmax         = 2,
1990797ac58cSKevin Wolf        .cfunc          = break_f,
1991797ac58cSKevin Wolf        .args           = "event tag",
1992797ac58cSKevin Wolf        .oneline        = "sets a breakpoint on event and tags the stopped "
1993797ac58cSKevin Wolf                          "request as tag",
1994797ac58cSKevin Wolf };
1995797ac58cSKevin Wolf 
19964cc70e93SFam Zheng static const cmdinfo_t remove_break_cmd = {
19974cc70e93SFam Zheng        .name           = "remove_break",
19984cc70e93SFam Zheng        .argmin         = 1,
19994cc70e93SFam Zheng        .argmax         = 1,
20004cc70e93SFam Zheng        .cfunc          = remove_break_f,
20014cc70e93SFam Zheng        .args           = "tag",
20024cc70e93SFam Zheng        .oneline        = "remove a breakpoint by tag",
20034cc70e93SFam Zheng };
20044cc70e93SFam Zheng 
2005797ac58cSKevin Wolf static int resume_f(BlockDriverState *bs, int argc, char **argv)
2006797ac58cSKevin Wolf {
2007797ac58cSKevin Wolf     int ret;
2008797ac58cSKevin Wolf 
2009797ac58cSKevin Wolf     ret = bdrv_debug_resume(bs, argv[1]);
2010797ac58cSKevin Wolf     if (ret < 0) {
2011797ac58cSKevin Wolf         printf("Could not resume request: %s\n", strerror(-ret));
2012797ac58cSKevin Wolf     }
2013797ac58cSKevin Wolf 
2014797ac58cSKevin Wolf     return 0;
2015797ac58cSKevin Wolf }
2016797ac58cSKevin Wolf 
2017797ac58cSKevin Wolf static const cmdinfo_t resume_cmd = {
2018797ac58cSKevin Wolf        .name           = "resume",
2019797ac58cSKevin Wolf        .argmin         = 1,
2020797ac58cSKevin Wolf        .argmax         = 1,
2021797ac58cSKevin Wolf        .cfunc          = resume_f,
2022797ac58cSKevin Wolf        .args           = "tag",
2023797ac58cSKevin Wolf        .oneline        = "resumes the request tagged as tag",
2024797ac58cSKevin Wolf };
2025797ac58cSKevin Wolf 
2026797ac58cSKevin Wolf static int wait_break_f(BlockDriverState *bs, int argc, char **argv)
2027797ac58cSKevin Wolf {
2028797ac58cSKevin Wolf     while (!bdrv_debug_is_suspended(bs, argv[1])) {
2029797ac58cSKevin Wolf         qemu_aio_wait();
2030797ac58cSKevin Wolf     }
2031797ac58cSKevin Wolf 
2032797ac58cSKevin Wolf     return 0;
2033797ac58cSKevin Wolf }
2034797ac58cSKevin Wolf 
2035797ac58cSKevin Wolf static const cmdinfo_t wait_break_cmd = {
2036797ac58cSKevin Wolf        .name           = "wait_break",
2037797ac58cSKevin Wolf        .argmin         = 1,
2038797ac58cSKevin Wolf        .argmax         = 1,
2039797ac58cSKevin Wolf        .cfunc          = wait_break_f,
2040797ac58cSKevin Wolf        .args           = "tag",
2041797ac58cSKevin Wolf        .oneline        = "waits for the suspension of a request",
2042797ac58cSKevin Wolf };
2043797ac58cSKevin Wolf 
2044797ac58cSKevin Wolf static int abort_f(BlockDriverState *bs, int argc, char **argv)
2045797ac58cSKevin Wolf {
2046797ac58cSKevin Wolf     abort();
2047797ac58cSKevin Wolf }
2048797ac58cSKevin Wolf 
2049797ac58cSKevin Wolf static const cmdinfo_t abort_cmd = {
2050797ac58cSKevin Wolf        .name           = "abort",
2051797ac58cSKevin Wolf        .cfunc          = abort_f,
2052797ac58cSKevin Wolf        .flags          = CMD_NOFILE_OK,
2053797ac58cSKevin Wolf        .oneline        = "simulate a program crash using abort(3)",
2054797ac58cSKevin Wolf };
2055797ac58cSKevin Wolf 
2056f18a834aSKevin Wolf static void help_oneline(const char *cmd, const cmdinfo_t *ct)
2057f18a834aSKevin Wolf {
2058f18a834aSKevin Wolf     if (cmd) {
2059f18a834aSKevin Wolf         printf("%s ", cmd);
2060f18a834aSKevin Wolf     } else {
2061f18a834aSKevin Wolf         printf("%s ", ct->name);
2062f18a834aSKevin Wolf         if (ct->altname) {
2063f18a834aSKevin Wolf             printf("(or %s) ", ct->altname);
2064f18a834aSKevin Wolf         }
2065f18a834aSKevin Wolf     }
2066f18a834aSKevin Wolf 
2067f18a834aSKevin Wolf     if (ct->args) {
2068f18a834aSKevin Wolf         printf("%s ", ct->args);
2069f18a834aSKevin Wolf     }
2070f18a834aSKevin Wolf     printf("-- %s\n", ct->oneline);
2071f18a834aSKevin Wolf }
2072f18a834aSKevin Wolf 
2073f18a834aSKevin Wolf static void help_onecmd(const char *cmd, const cmdinfo_t *ct)
2074f18a834aSKevin Wolf {
2075f18a834aSKevin Wolf     help_oneline(cmd, ct);
2076f18a834aSKevin Wolf     if (ct->help) {
2077f18a834aSKevin Wolf         ct->help();
2078f18a834aSKevin Wolf     }
2079f18a834aSKevin Wolf }
2080f18a834aSKevin Wolf 
2081f18a834aSKevin Wolf static void help_all(void)
2082f18a834aSKevin Wolf {
2083f18a834aSKevin Wolf     const cmdinfo_t *ct;
2084f18a834aSKevin Wolf 
2085f18a834aSKevin Wolf     for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
2086f18a834aSKevin Wolf         help_oneline(ct->name, ct);
2087f18a834aSKevin Wolf     }
2088f18a834aSKevin Wolf     printf("\nUse 'help commandname' for extended help.\n");
2089f18a834aSKevin Wolf }
2090f18a834aSKevin Wolf 
2091f18a834aSKevin Wolf static int help_f(BlockDriverState *bs, int argc, char **argv)
2092f18a834aSKevin Wolf {
2093f18a834aSKevin Wolf     const cmdinfo_t *ct;
2094f18a834aSKevin Wolf 
2095f18a834aSKevin Wolf     if (argc == 1) {
2096f18a834aSKevin Wolf         help_all();
2097f18a834aSKevin Wolf         return 0;
2098f18a834aSKevin Wolf     }
2099f18a834aSKevin Wolf 
2100f18a834aSKevin Wolf     ct = find_command(argv[1]);
2101f18a834aSKevin Wolf     if (ct == NULL) {
2102f18a834aSKevin Wolf         printf("command %s not found\n", argv[1]);
2103f18a834aSKevin Wolf         return 0;
2104f18a834aSKevin Wolf     }
2105f18a834aSKevin Wolf 
2106f18a834aSKevin Wolf     help_onecmd(argv[1], ct);
2107f18a834aSKevin Wolf     return 0;
2108f18a834aSKevin Wolf }
2109f18a834aSKevin Wolf 
2110f18a834aSKevin Wolf static const cmdinfo_t help_cmd = {
2111f18a834aSKevin Wolf     .name       = "help",
2112f18a834aSKevin Wolf     .altname    = "?",
2113f18a834aSKevin Wolf     .cfunc      = help_f,
2114f18a834aSKevin Wolf     .argmin     = 0,
2115f18a834aSKevin Wolf     .argmax     = 1,
2116f18a834aSKevin Wolf     .flags      = CMD_FLAG_GLOBAL,
2117f18a834aSKevin Wolf     .args       = "[command]",
2118f18a834aSKevin Wolf     .oneline    = "help for one or all commands",
2119f18a834aSKevin Wolf };
2120f18a834aSKevin Wolf 
21213d21994fSKevin Wolf bool qemuio_command(BlockDriverState *bs, const char *cmd)
2122dd583296SKevin Wolf {
2123dd583296SKevin Wolf     char *input;
2124dd583296SKevin Wolf     const cmdinfo_t *ct;
2125dd583296SKevin Wolf     char **v;
2126dd583296SKevin Wolf     int c;
2127dd583296SKevin Wolf     bool done = false;
2128dd583296SKevin Wolf 
2129dd583296SKevin Wolf     input = g_strdup(cmd);
2130dd583296SKevin Wolf     v = breakline(input, &c);
2131dd583296SKevin Wolf     if (c) {
2132dd583296SKevin Wolf         ct = find_command(v[0]);
2133dd583296SKevin Wolf         if (ct) {
21343d21994fSKevin Wolf             done = command(bs, ct, c, v);
2135dd583296SKevin Wolf         } else {
2136dd583296SKevin Wolf             fprintf(stderr, "command \"%s\" not found\n", v[0]);
2137dd583296SKevin Wolf         }
2138dd583296SKevin Wolf     }
2139dd583296SKevin Wolf     g_free(input);
2140dd583296SKevin Wolf     g_free(v);
2141dd583296SKevin Wolf 
2142dd583296SKevin Wolf     return done;
2143dd583296SKevin Wolf }
2144dd583296SKevin Wolf 
2145797ac58cSKevin Wolf static void __attribute((constructor)) init_qemuio_commands(void)
2146797ac58cSKevin Wolf {
2147797ac58cSKevin Wolf     /* initialize commands */
2148c2cdf5c5SKevin Wolf     qemuio_add_command(&help_cmd);
2149c2cdf5c5SKevin Wolf     qemuio_add_command(&read_cmd);
2150c2cdf5c5SKevin Wolf     qemuio_add_command(&readv_cmd);
2151c2cdf5c5SKevin Wolf     qemuio_add_command(&write_cmd);
2152c2cdf5c5SKevin Wolf     qemuio_add_command(&writev_cmd);
2153c2cdf5c5SKevin Wolf     qemuio_add_command(&multiwrite_cmd);
2154c2cdf5c5SKevin Wolf     qemuio_add_command(&aio_read_cmd);
2155c2cdf5c5SKevin Wolf     qemuio_add_command(&aio_write_cmd);
2156c2cdf5c5SKevin Wolf     qemuio_add_command(&aio_flush_cmd);
2157c2cdf5c5SKevin Wolf     qemuio_add_command(&flush_cmd);
2158c2cdf5c5SKevin Wolf     qemuio_add_command(&truncate_cmd);
2159c2cdf5c5SKevin Wolf     qemuio_add_command(&length_cmd);
2160c2cdf5c5SKevin Wolf     qemuio_add_command(&info_cmd);
2161c2cdf5c5SKevin Wolf     qemuio_add_command(&discard_cmd);
2162c2cdf5c5SKevin Wolf     qemuio_add_command(&alloc_cmd);
2163c2cdf5c5SKevin Wolf     qemuio_add_command(&map_cmd);
2164c2cdf5c5SKevin Wolf     qemuio_add_command(&break_cmd);
21654cc70e93SFam Zheng     qemuio_add_command(&remove_break_cmd);
2166c2cdf5c5SKevin Wolf     qemuio_add_command(&resume_cmd);
2167c2cdf5c5SKevin Wolf     qemuio_add_command(&wait_break_cmd);
2168c2cdf5c5SKevin Wolf     qemuio_add_command(&abort_cmd);
2169797ac58cSKevin Wolf }
2170