1797ac58cSKevin Wolf /* 2797ac58cSKevin Wolf * Command line utility to exercise the QEMU I/O path. 3797ac58cSKevin Wolf * 4093ea232SEric Blake * Copyright (C) 2009-2016 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 1180c71a24SPeter Maydell #include "qemu/osdep.h" 12da34e65cSMarkus Armbruster #include "qapi/error.h" 13dc900c35SAlberto Garcia #include "qapi/qmp/qdict.h" 143d21994fSKevin Wolf #include "qemu-io.h" 154c7b7e9bSMax Reitz #include "sysemu/block-backend.h" 164c7b7e9bSMax Reitz #include "block/block.h" 174c7b7e9bSMax Reitz #include "block/block_int.h" /* for info_f() */ 18a8d8ecb7SMax Reitz #include "block/qapi.h" 19d49b6836SMarkus Armbruster #include "qemu/error-report.h" 206a1751b7SAlex Bligh #include "qemu/main-loop.h" 21922a01a0SMarkus Armbruster #include "qemu/option.h" 22cd33d02aSKevin Wolf #include "qemu/timer.h" 23f348b6d1SVeronia Bahaa #include "qemu/cutils.h" 245df022cfSPeter Maydell #include "qemu/memalign.h" 25797ac58cSKevin Wolf 26797ac58cSKevin Wolf #define CMD_NOFILE_OK 0x01 27797ac58cSKevin Wolf 28f9883880SStefan Weil bool qemuio_misalign; 29797ac58cSKevin Wolf 30c2cdf5c5SKevin Wolf static cmdinfo_t *cmdtab; 31c2cdf5c5SKevin Wolf static int ncmds; 32c2cdf5c5SKevin Wolf 33c2cdf5c5SKevin Wolf static int compare_cmdname(const void *a, const void *b) 34c2cdf5c5SKevin Wolf { 35c2cdf5c5SKevin Wolf return strcmp(((const cmdinfo_t *)a)->name, 36c2cdf5c5SKevin Wolf ((const cmdinfo_t *)b)->name); 37c2cdf5c5SKevin Wolf } 38c2cdf5c5SKevin Wolf 39c2cdf5c5SKevin Wolf void qemuio_add_command(const cmdinfo_t *ci) 40c2cdf5c5SKevin Wolf { 416aabeb58SPeter Maydell /* ci->perm assumes a file is open, but the GLOBAL and NOFILE_OK 426aabeb58SPeter Maydell * flags allow it not to be, so that combination is invalid. 436aabeb58SPeter Maydell * Catch it now rather than letting it manifest as a crash if a 446aabeb58SPeter Maydell * particular set of command line options are used. 456aabeb58SPeter Maydell */ 466aabeb58SPeter Maydell assert(ci->perm == 0 || 476aabeb58SPeter Maydell (ci->flags & (CMD_FLAG_GLOBAL | CMD_NOFILE_OK)) == 0); 4802c4f26bSMarkus Armbruster cmdtab = g_renew(cmdinfo_t, cmdtab, ++ncmds); 49c2cdf5c5SKevin Wolf cmdtab[ncmds - 1] = *ci; 50c2cdf5c5SKevin Wolf qsort(cmdtab, ncmds, sizeof(*cmdtab), compare_cmdname); 51c2cdf5c5SKevin Wolf } 52c2cdf5c5SKevin Wolf 53b444d0e9SMax Reitz void qemuio_command_usage(const cmdinfo_t *ci) 54c2cdf5c5SKevin Wolf { 55c2cdf5c5SKevin Wolf printf("%s %s -- %s\n", ci->name, ci->args, ci->oneline); 56c2cdf5c5SKevin Wolf } 57c2cdf5c5SKevin Wolf 584c7b7e9bSMax Reitz static int init_check_command(BlockBackend *blk, const cmdinfo_t *ct) 59c2cdf5c5SKevin Wolf { 60c2cdf5c5SKevin Wolf if (ct->flags & CMD_FLAG_GLOBAL) { 61c2cdf5c5SKevin Wolf return 1; 62c2cdf5c5SKevin Wolf } 634c7b7e9bSMax Reitz if (!(ct->flags & CMD_NOFILE_OK) && !blk) { 64c2cdf5c5SKevin Wolf fprintf(stderr, "no file open, try 'help open'\n"); 65c2cdf5c5SKevin Wolf return 0; 66c2cdf5c5SKevin Wolf } 67c2cdf5c5SKevin Wolf return 1; 68c2cdf5c5SKevin Wolf } 69c2cdf5c5SKevin Wolf 70b32d7a39SMax Reitz static int command(BlockBackend *blk, const cmdinfo_t *ct, int argc, 713d21994fSKevin Wolf char **argv) 72c2cdf5c5SKevin Wolf { 73c2cdf5c5SKevin Wolf char *cmd = argv[0]; 74c2cdf5c5SKevin Wolf 754c7b7e9bSMax Reitz if (!init_check_command(blk, ct)) { 76b32d7a39SMax Reitz return -EINVAL; 77c2cdf5c5SKevin Wolf } 78c2cdf5c5SKevin Wolf 79c2cdf5c5SKevin Wolf if (argc - 1 < ct->argmin || (ct->argmax != -1 && argc - 1 > ct->argmax)) { 80c2cdf5c5SKevin Wolf if (ct->argmax == -1) { 81c2cdf5c5SKevin Wolf fprintf(stderr, 82c2cdf5c5SKevin Wolf "bad argument count %d to %s, expected at least %d arguments\n", 83c2cdf5c5SKevin Wolf argc-1, cmd, ct->argmin); 84c2cdf5c5SKevin Wolf } else if (ct->argmin == ct->argmax) { 85c2cdf5c5SKevin Wolf fprintf(stderr, 86c2cdf5c5SKevin Wolf "bad argument count %d to %s, expected %d arguments\n", 87c2cdf5c5SKevin Wolf argc-1, cmd, ct->argmin); 88c2cdf5c5SKevin Wolf } else { 89c2cdf5c5SKevin Wolf fprintf(stderr, 90c2cdf5c5SKevin Wolf "bad argument count %d to %s, expected between %d and %d arguments\n", 91c2cdf5c5SKevin Wolf argc-1, cmd, ct->argmin, ct->argmax); 92c2cdf5c5SKevin Wolf } 93b32d7a39SMax Reitz return -EINVAL; 94c2cdf5c5SKevin Wolf } 95887354bdSKevin Wolf 968eaf1018SVladimir Sementsov-Ogievskiy /* 978eaf1018SVladimir Sementsov-Ogievskiy * Request additional permissions if necessary for this command. The caller 98887354bdSKevin Wolf * is responsible for restoring the original permissions afterwards if this 998eaf1018SVladimir Sementsov-Ogievskiy * is what it wants. 1008eaf1018SVladimir Sementsov-Ogievskiy * 1018eaf1018SVladimir Sementsov-Ogievskiy * Coverity thinks that blk may be NULL in the following if condition. It's 1028eaf1018SVladimir Sementsov-Ogievskiy * not so: in init_check_command() we fail if blk is NULL for command with 1038eaf1018SVladimir Sementsov-Ogievskiy * both CMD_FLAG_GLOBAL and CMD_NOFILE_OK flags unset. And in 1048eaf1018SVladimir Sementsov-Ogievskiy * qemuio_add_command() we assert that command with non-zero .perm field 1058eaf1018SVladimir Sementsov-Ogievskiy * doesn't set this flags. So, the following assertion is to silence 1068eaf1018SVladimir Sementsov-Ogievskiy * Coverity: 1078eaf1018SVladimir Sementsov-Ogievskiy */ 1088eaf1018SVladimir Sementsov-Ogievskiy assert(blk || !ct->perm); 109887354bdSKevin Wolf if (ct->perm && blk_is_available(blk)) { 110887354bdSKevin Wolf uint64_t orig_perm, orig_shared_perm; 111887354bdSKevin Wolf blk_get_perm(blk, &orig_perm, &orig_shared_perm); 112887354bdSKevin Wolf 113887354bdSKevin Wolf if (ct->perm & ~orig_perm) { 114887354bdSKevin Wolf uint64_t new_perm; 115887354bdSKevin Wolf Error *local_err = NULL; 116887354bdSKevin Wolf int ret; 117887354bdSKevin Wolf 118887354bdSKevin Wolf new_perm = orig_perm | ct->perm; 119887354bdSKevin Wolf 120887354bdSKevin Wolf ret = blk_set_perm(blk, new_perm, orig_shared_perm, &local_err); 121887354bdSKevin Wolf if (ret < 0) { 122887354bdSKevin Wolf error_report_err(local_err); 123b32d7a39SMax Reitz return ret; 124887354bdSKevin Wolf } 125887354bdSKevin Wolf } 126887354bdSKevin Wolf } 127887354bdSKevin Wolf 128d339d766SRichard W.M. Jones qemu_reset_optind(); 129b32d7a39SMax Reitz return ct->cfunc(blk, argc, argv); 130c2cdf5c5SKevin Wolf } 131c2cdf5c5SKevin Wolf 132c2cdf5c5SKevin Wolf static const cmdinfo_t *find_command(const char *cmd) 133c2cdf5c5SKevin Wolf { 134c2cdf5c5SKevin Wolf cmdinfo_t *ct; 135c2cdf5c5SKevin Wolf 136c2cdf5c5SKevin Wolf for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { 137c2cdf5c5SKevin Wolf if (strcmp(ct->name, cmd) == 0 || 138c2cdf5c5SKevin Wolf (ct->altname && strcmp(ct->altname, cmd) == 0)) 139c2cdf5c5SKevin Wolf { 140c2cdf5c5SKevin Wolf return (const cmdinfo_t *)ct; 141c2cdf5c5SKevin Wolf } 142c2cdf5c5SKevin Wolf } 143c2cdf5c5SKevin Wolf return NULL; 144c2cdf5c5SKevin Wolf } 145c2cdf5c5SKevin Wolf 1464694020dSStefan Hajnoczi /* Invoke fn() for commands with a matching prefix */ 1474694020dSStefan Hajnoczi void qemuio_complete_command(const char *input, 1484694020dSStefan Hajnoczi void (*fn)(const char *cmd, void *opaque), 1494694020dSStefan Hajnoczi void *opaque) 1504694020dSStefan Hajnoczi { 1514694020dSStefan Hajnoczi cmdinfo_t *ct; 1524694020dSStefan Hajnoczi size_t input_len = strlen(input); 1534694020dSStefan Hajnoczi 1544694020dSStefan Hajnoczi for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { 1554694020dSStefan Hajnoczi if (strncmp(input, ct->name, input_len) == 0) { 1564694020dSStefan Hajnoczi fn(ct->name, opaque); 1574694020dSStefan Hajnoczi } 1584694020dSStefan Hajnoczi } 1594694020dSStefan Hajnoczi } 1604694020dSStefan Hajnoczi 161c2cdf5c5SKevin Wolf static char **breakline(char *input, int *count) 162c2cdf5c5SKevin Wolf { 163c2cdf5c5SKevin Wolf int c = 0; 164c2cdf5c5SKevin Wolf char *p; 1655839e53bSMarkus Armbruster char **rval = g_new0(char *, 1); 166c2cdf5c5SKevin Wolf 167c2cdf5c5SKevin Wolf while (rval && (p = qemu_strsep(&input, " ")) != NULL) { 168c2cdf5c5SKevin Wolf if (!*p) { 169c2cdf5c5SKevin Wolf continue; 170c2cdf5c5SKevin Wolf } 171c2cdf5c5SKevin Wolf c++; 17208193dd5SMarkus Armbruster rval = g_renew(char *, rval, (c + 1)); 173c2cdf5c5SKevin Wolf rval[c - 1] = p; 174c2cdf5c5SKevin Wolf rval[c] = NULL; 175c2cdf5c5SKevin Wolf } 176c2cdf5c5SKevin Wolf *count = c; 177c2cdf5c5SKevin Wolf return rval; 178c2cdf5c5SKevin Wolf } 179c2cdf5c5SKevin Wolf 180797ac58cSKevin Wolf static int64_t cvtnum(const char *s) 181797ac58cSKevin Wolf { 182f17fd4fdSMarkus Armbruster int err; 183f46bfdbfSMarkus Armbruster uint64_t value; 184ef5a7885SJohn Snow 185f17fd4fdSMarkus Armbruster err = qemu_strtosz(s, NULL, &value); 186f17fd4fdSMarkus Armbruster if (err < 0) { 187f17fd4fdSMarkus Armbruster return err; 188f17fd4fdSMarkus Armbruster } 189f46bfdbfSMarkus Armbruster if (value > INT64_MAX) { 190f46bfdbfSMarkus Armbruster return -ERANGE; 191f46bfdbfSMarkus Armbruster } 192f17fd4fdSMarkus Armbruster return value; 193797ac58cSKevin Wolf } 194797ac58cSKevin Wolf 195a9ecfa00SJohn Snow static void print_cvtnum_err(int64_t rc, const char *arg) 196a9ecfa00SJohn Snow { 197a9ecfa00SJohn Snow switch (rc) { 198a9ecfa00SJohn Snow case -EINVAL: 199a9ecfa00SJohn Snow printf("Parsing error: non-numeric argument," 200a9ecfa00SJohn Snow " or extraneous/unrecognized suffix -- %s\n", arg); 201a9ecfa00SJohn Snow break; 202a9ecfa00SJohn Snow case -ERANGE: 203a9ecfa00SJohn Snow printf("Parsing error: argument too large -- %s\n", arg); 204a9ecfa00SJohn Snow break; 205a9ecfa00SJohn Snow default: 206a9ecfa00SJohn Snow printf("Parsing error: %s\n", arg); 207a9ecfa00SJohn Snow } 208a9ecfa00SJohn Snow } 209a9ecfa00SJohn Snow 2100b613881SKevin Wolf #define EXABYTES(x) ((long long)(x) << 60) 2110b613881SKevin Wolf #define PETABYTES(x) ((long long)(x) << 50) 2120b613881SKevin Wolf #define TERABYTES(x) ((long long)(x) << 40) 2130b613881SKevin Wolf #define GIGABYTES(x) ((long long)(x) << 30) 2140b613881SKevin Wolf #define MEGABYTES(x) ((long long)(x) << 20) 2150b613881SKevin Wolf #define KILOBYTES(x) ((long long)(x) << 10) 2160b613881SKevin Wolf 2170b613881SKevin Wolf #define TO_EXABYTES(x) ((x) / EXABYTES(1)) 2180b613881SKevin Wolf #define TO_PETABYTES(x) ((x) / PETABYTES(1)) 2190b613881SKevin Wolf #define TO_TERABYTES(x) ((x) / TERABYTES(1)) 2200b613881SKevin Wolf #define TO_GIGABYTES(x) ((x) / GIGABYTES(1)) 2210b613881SKevin Wolf #define TO_MEGABYTES(x) ((x) / MEGABYTES(1)) 2220b613881SKevin Wolf #define TO_KILOBYTES(x) ((x) / KILOBYTES(1)) 2230b613881SKevin Wolf 2240b613881SKevin Wolf static void cvtstr(double value, char *str, size_t size) 2250b613881SKevin Wolf { 2260b613881SKevin Wolf char *trim; 2270b613881SKevin Wolf const char *suffix; 2280b613881SKevin Wolf 2290b613881SKevin Wolf if (value >= EXABYTES(1)) { 2300b613881SKevin Wolf suffix = " EiB"; 2310b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_EXABYTES(value)); 2320b613881SKevin Wolf } else if (value >= PETABYTES(1)) { 2330b613881SKevin Wolf suffix = " PiB"; 2340b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_PETABYTES(value)); 2350b613881SKevin Wolf } else if (value >= TERABYTES(1)) { 2360b613881SKevin Wolf suffix = " TiB"; 2370b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_TERABYTES(value)); 2380b613881SKevin Wolf } else if (value >= GIGABYTES(1)) { 2390b613881SKevin Wolf suffix = " GiB"; 2400b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_GIGABYTES(value)); 2410b613881SKevin Wolf } else if (value >= MEGABYTES(1)) { 2420b613881SKevin Wolf suffix = " MiB"; 2430b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_MEGABYTES(value)); 2440b613881SKevin Wolf } else if (value >= KILOBYTES(1)) { 2450b613881SKevin Wolf suffix = " KiB"; 2460b613881SKevin Wolf snprintf(str, size - 4, "%.3f", TO_KILOBYTES(value)); 2470b613881SKevin Wolf } else { 2480b613881SKevin Wolf suffix = " bytes"; 2490b613881SKevin Wolf snprintf(str, size - 6, "%f", value); 2500b613881SKevin Wolf } 2510b613881SKevin Wolf 2520b613881SKevin Wolf trim = strstr(str, ".000"); 2530b613881SKevin Wolf if (trim) { 2540b613881SKevin Wolf strcpy(trim, suffix); 2550b613881SKevin Wolf } else { 2560b613881SKevin Wolf strcat(str, suffix); 2570b613881SKevin Wolf } 2580b613881SKevin Wolf } 2590b613881SKevin Wolf 2600b613881SKevin Wolf 2610b613881SKevin Wolf 26250290c00SAlex Bennée static struct timespec tsub(struct timespec t1, struct timespec t2) 2630b613881SKevin Wolf { 26450290c00SAlex Bennée t1.tv_nsec -= t2.tv_nsec; 26550290c00SAlex Bennée if (t1.tv_nsec < 0) { 26650290c00SAlex Bennée t1.tv_nsec += NANOSECONDS_PER_SECOND; 2670b613881SKevin Wolf t1.tv_sec--; 2680b613881SKevin Wolf } 2690b613881SKevin Wolf t1.tv_sec -= t2.tv_sec; 2700b613881SKevin Wolf return t1; 2710b613881SKevin Wolf } 2720b613881SKevin Wolf 27350290c00SAlex Bennée static double tdiv(double value, struct timespec tv) 2740b613881SKevin Wolf { 27550290c00SAlex Bennée double seconds = tv.tv_sec + (tv.tv_nsec / 1e9); 27650290c00SAlex Bennée return value / seconds; 2770b613881SKevin Wolf } 2780b613881SKevin Wolf 2790b613881SKevin Wolf #define HOURS(sec) ((sec) / (60 * 60)) 2800b613881SKevin Wolf #define MINUTES(sec) (((sec) % (60 * 60)) / 60) 2810b613881SKevin Wolf #define SECONDS(sec) ((sec) % 60) 2820b613881SKevin Wolf 2830b613881SKevin Wolf enum { 2840b613881SKevin Wolf DEFAULT_TIME = 0x0, 2850b613881SKevin Wolf TERSE_FIXED_TIME = 0x1, 2860b613881SKevin Wolf VERBOSE_FIXED_TIME = 0x2, 2870b613881SKevin Wolf }; 2880b613881SKevin Wolf 28950290c00SAlex Bennée static void timestr(struct timespec *tv, char *ts, size_t size, int format) 2900b613881SKevin Wolf { 29150290c00SAlex Bennée double frac_sec = tv->tv_nsec / 1e9; 2920b613881SKevin Wolf 2930b613881SKevin Wolf if (format & TERSE_FIXED_TIME) { 2940b613881SKevin Wolf if (!HOURS(tv->tv_sec)) { 29550290c00SAlex Bennée snprintf(ts, size, "%u:%05.2f", 2960b613881SKevin Wolf (unsigned int) MINUTES(tv->tv_sec), 29750290c00SAlex Bennée SECONDS(tv->tv_sec) + frac_sec); 2980b613881SKevin Wolf return; 2990b613881SKevin Wolf } 3000b613881SKevin Wolf format |= VERBOSE_FIXED_TIME; /* fallback if hours needed */ 3010b613881SKevin Wolf } 3020b613881SKevin Wolf 3030b613881SKevin Wolf if ((format & VERBOSE_FIXED_TIME) || tv->tv_sec) { 30450290c00SAlex Bennée snprintf(ts, size, "%u:%02u:%05.2f", 3050b613881SKevin Wolf (unsigned int) HOURS(tv->tv_sec), 3060b613881SKevin Wolf (unsigned int) MINUTES(tv->tv_sec), 30750290c00SAlex Bennée SECONDS(tv->tv_sec) + frac_sec); 3080b613881SKevin Wolf } else { 30950290c00SAlex Bennée snprintf(ts, size, "%05.2f sec", frac_sec); 3100b613881SKevin Wolf } 3110b613881SKevin Wolf } 3120b613881SKevin Wolf 313797ac58cSKevin Wolf /* 314797ac58cSKevin Wolf * Parse the pattern argument to various sub-commands. 315797ac58cSKevin Wolf * 316797ac58cSKevin Wolf * Because the pattern is used as an argument to memset it must evaluate 317797ac58cSKevin Wolf * to an unsigned integer that fits into a single byte. 318797ac58cSKevin Wolf */ 319797ac58cSKevin Wolf static int parse_pattern(const char *arg) 320797ac58cSKevin Wolf { 321797ac58cSKevin Wolf char *endptr = NULL; 322797ac58cSKevin Wolf long pattern; 323797ac58cSKevin Wolf 324797ac58cSKevin Wolf pattern = strtol(arg, &endptr, 0); 325797ac58cSKevin Wolf if (pattern < 0 || pattern > UCHAR_MAX || *endptr != '\0') { 326797ac58cSKevin Wolf printf("%s is not a valid pattern byte\n", arg); 327797ac58cSKevin Wolf return -1; 328797ac58cSKevin Wolf } 329797ac58cSKevin Wolf 330797ac58cSKevin Wolf return pattern; 331797ac58cSKevin Wolf } 332797ac58cSKevin Wolf 333797ac58cSKevin Wolf /* 334797ac58cSKevin Wolf * Memory allocation helpers. 335797ac58cSKevin Wolf * 336797ac58cSKevin Wolf * Make sure memory is aligned by default, or purposefully misaligned if 337797ac58cSKevin Wolf * that is specified on the command line. 338797ac58cSKevin Wolf */ 339797ac58cSKevin Wolf 340797ac58cSKevin Wolf #define MISALIGN_OFFSET 16 3414c7b7e9bSMax Reitz static void *qemu_io_alloc(BlockBackend *blk, size_t len, int pattern) 342797ac58cSKevin Wolf { 343797ac58cSKevin Wolf void *buf; 344797ac58cSKevin Wolf 345797ac58cSKevin Wolf if (qemuio_misalign) { 346797ac58cSKevin Wolf len += MISALIGN_OFFSET; 347797ac58cSKevin Wolf } 3484c7b7e9bSMax Reitz buf = blk_blockalign(blk, len); 349797ac58cSKevin Wolf memset(buf, pattern, len); 350797ac58cSKevin Wolf if (qemuio_misalign) { 351797ac58cSKevin Wolf buf += MISALIGN_OFFSET; 352797ac58cSKevin Wolf } 353797ac58cSKevin Wolf return buf; 354797ac58cSKevin Wolf } 355797ac58cSKevin Wolf 356797ac58cSKevin Wolf static void qemu_io_free(void *p) 357797ac58cSKevin Wolf { 358797ac58cSKevin Wolf if (qemuio_misalign) { 359797ac58cSKevin Wolf p -= MISALIGN_OFFSET; 360797ac58cSKevin Wolf } 361797ac58cSKevin Wolf qemu_vfree(p); 362797ac58cSKevin Wolf } 363797ac58cSKevin Wolf 3644d731510SDenis Plotnikov /* 3654d731510SDenis Plotnikov * qemu_io_alloc_from_file() 3664d731510SDenis Plotnikov * 3674d731510SDenis Plotnikov * Allocates the buffer and populates it with the content of the given file 3684d731510SDenis Plotnikov * up to @len bytes. If the file length is less than @len, then the buffer 3694d731510SDenis Plotnikov * is populated with the file content cyclically. 3704d731510SDenis Plotnikov * 3714d731510SDenis Plotnikov * @blk - the block backend where the buffer content is going to be written to 3724d731510SDenis Plotnikov * @len - the buffer length 3734d731510SDenis Plotnikov * @file_name - the file to read the content from 3744d731510SDenis Plotnikov * 3754d731510SDenis Plotnikov * Returns: the buffer pointer on success 3764d731510SDenis Plotnikov * NULL on error 3774d731510SDenis Plotnikov */ 3784d731510SDenis Plotnikov static void *qemu_io_alloc_from_file(BlockBackend *blk, size_t len, 3794d731510SDenis Plotnikov const char *file_name) 3804d731510SDenis Plotnikov { 3814d731510SDenis Plotnikov char *buf, *buf_origin; 3824d731510SDenis Plotnikov FILE *f = fopen(file_name, "r"); 3834d731510SDenis Plotnikov int pattern_len; 3844d731510SDenis Plotnikov 3854d731510SDenis Plotnikov if (!f) { 3864d731510SDenis Plotnikov perror(file_name); 3874d731510SDenis Plotnikov return NULL; 3884d731510SDenis Plotnikov } 3894d731510SDenis Plotnikov 3904d731510SDenis Plotnikov if (qemuio_misalign) { 3914d731510SDenis Plotnikov len += MISALIGN_OFFSET; 3924d731510SDenis Plotnikov } 3934d731510SDenis Plotnikov 3944d731510SDenis Plotnikov buf_origin = buf = blk_blockalign(blk, len); 3954d731510SDenis Plotnikov 3964d731510SDenis Plotnikov if (qemuio_misalign) { 3974d731510SDenis Plotnikov buf_origin += MISALIGN_OFFSET; 3984d731510SDenis Plotnikov buf += MISALIGN_OFFSET; 3994d731510SDenis Plotnikov len -= MISALIGN_OFFSET; 4004d731510SDenis Plotnikov } 4014d731510SDenis Plotnikov 4024d731510SDenis Plotnikov pattern_len = fread(buf_origin, 1, len, f); 4034d731510SDenis Plotnikov 4044d731510SDenis Plotnikov if (ferror(f)) { 4054d731510SDenis Plotnikov perror(file_name); 4064d731510SDenis Plotnikov goto error; 4074d731510SDenis Plotnikov } 4084d731510SDenis Plotnikov 4094d731510SDenis Plotnikov if (pattern_len == 0) { 4104d731510SDenis Plotnikov fprintf(stderr, "%s: file is empty\n", file_name); 4114d731510SDenis Plotnikov goto error; 4124d731510SDenis Plotnikov } 4134d731510SDenis Plotnikov 4144d731510SDenis Plotnikov fclose(f); 415c8e68b43SKevin Wolf f = NULL; 4164d731510SDenis Plotnikov 4174d731510SDenis Plotnikov if (len > pattern_len) { 4184d731510SDenis Plotnikov len -= pattern_len; 4194d731510SDenis Plotnikov buf += pattern_len; 4204d731510SDenis Plotnikov 4214d731510SDenis Plotnikov while (len > 0) { 4224d731510SDenis Plotnikov size_t len_to_copy = MIN(pattern_len, len); 4234d731510SDenis Plotnikov 4244d731510SDenis Plotnikov memcpy(buf, buf_origin, len_to_copy); 4254d731510SDenis Plotnikov 4264d731510SDenis Plotnikov len -= len_to_copy; 4274d731510SDenis Plotnikov buf += len_to_copy; 4284d731510SDenis Plotnikov } 4294d731510SDenis Plotnikov } 4304d731510SDenis Plotnikov 4314d731510SDenis Plotnikov return buf_origin; 4324d731510SDenis Plotnikov 4334d731510SDenis Plotnikov error: 4344d731510SDenis Plotnikov qemu_io_free(buf_origin); 435c8e68b43SKevin Wolf if (f) { 436c8e68b43SKevin Wolf fclose(f); 437c8e68b43SKevin Wolf } 4384d731510SDenis Plotnikov return NULL; 4394d731510SDenis Plotnikov } 4404d731510SDenis Plotnikov 4419b0beaf3SJohn Snow static void dump_buffer(const void *buffer, int64_t offset, int64_t len) 442797ac58cSKevin Wolf { 4439b0beaf3SJohn Snow uint64_t i; 4449b0beaf3SJohn Snow int j; 445797ac58cSKevin Wolf const uint8_t *p; 446797ac58cSKevin Wolf 447797ac58cSKevin Wolf for (i = 0, p = buffer; i < len; i += 16) { 448797ac58cSKevin Wolf const uint8_t *s = p; 449797ac58cSKevin Wolf 450797ac58cSKevin Wolf printf("%08" PRIx64 ": ", offset + i); 451797ac58cSKevin Wolf for (j = 0; j < 16 && i + j < len; j++, p++) { 452797ac58cSKevin Wolf printf("%02x ", *p); 453797ac58cSKevin Wolf } 454797ac58cSKevin Wolf printf(" "); 455797ac58cSKevin Wolf for (j = 0; j < 16 && i + j < len; j++, s++) { 456797ac58cSKevin Wolf if (isalnum(*s)) { 457797ac58cSKevin Wolf printf("%c", *s); 458797ac58cSKevin Wolf } else { 459797ac58cSKevin Wolf printf("."); 460797ac58cSKevin Wolf } 461797ac58cSKevin Wolf } 462797ac58cSKevin Wolf printf("\n"); 463797ac58cSKevin Wolf } 464797ac58cSKevin Wolf } 465797ac58cSKevin Wolf 46650290c00SAlex Bennée static void print_report(const char *op, struct timespec *t, int64_t offset, 467dc38852aSEric Blake int64_t count, int64_t total, int cnt, bool Cflag) 468797ac58cSKevin Wolf { 469797ac58cSKevin Wolf char s1[64], s2[64], ts[64]; 470797ac58cSKevin Wolf 471797ac58cSKevin Wolf timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0); 472797ac58cSKevin Wolf if (!Cflag) { 473797ac58cSKevin Wolf cvtstr((double)total, s1, sizeof(s1)); 474797ac58cSKevin Wolf cvtstr(tdiv((double)total, *t), s2, sizeof(s2)); 4759b0beaf3SJohn Snow printf("%s %"PRId64"/%"PRId64" bytes at offset %" PRId64 "\n", 476797ac58cSKevin Wolf op, total, count, offset); 477797ac58cSKevin Wolf printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n", 478797ac58cSKevin Wolf s1, cnt, ts, s2, tdiv((double)cnt, *t)); 479797ac58cSKevin Wolf } else {/* bytes,ops,time,bytes/sec,ops/sec */ 4809b0beaf3SJohn Snow printf("%"PRId64",%d,%s,%.3f,%.3f\n", 481797ac58cSKevin Wolf total, cnt, ts, 482797ac58cSKevin Wolf tdiv((double)total, *t), 483797ac58cSKevin Wolf tdiv((double)cnt, *t)); 484797ac58cSKevin Wolf } 485797ac58cSKevin Wolf } 486797ac58cSKevin Wolf 487797ac58cSKevin Wolf /* 488797ac58cSKevin Wolf * Parse multiple length statements for vectored I/O, and construct an I/O 489797ac58cSKevin Wolf * vector matching it. 490797ac58cSKevin Wolf */ 491797ac58cSKevin Wolf static void * 4924c7b7e9bSMax Reitz create_iovec(BlockBackend *blk, QEMUIOVector *qiov, char **argv, int nr_iov, 493797ac58cSKevin Wolf int pattern) 494797ac58cSKevin Wolf { 495797ac58cSKevin Wolf size_t *sizes = g_new0(size_t, nr_iov); 496797ac58cSKevin Wolf size_t count = 0; 497797ac58cSKevin Wolf void *buf = NULL; 498797ac58cSKevin Wolf void *p; 499797ac58cSKevin Wolf int i; 500797ac58cSKevin Wolf 501797ac58cSKevin Wolf for (i = 0; i < nr_iov; i++) { 502797ac58cSKevin Wolf char *arg = argv[i]; 503797ac58cSKevin Wolf int64_t len; 504797ac58cSKevin Wolf 505797ac58cSKevin Wolf len = cvtnum(arg); 506797ac58cSKevin Wolf if (len < 0) { 507a9ecfa00SJohn Snow print_cvtnum_err(len, arg); 508797ac58cSKevin Wolf goto fail; 509797ac58cSKevin Wolf } 510797ac58cSKevin Wolf 5113026c468SAlberto Garcia if (len > BDRV_REQUEST_MAX_BYTES) { 5123026c468SAlberto Garcia printf("Argument '%s' exceeds maximum size %" PRIu64 "\n", arg, 5133026c468SAlberto Garcia (uint64_t)BDRV_REQUEST_MAX_BYTES); 5143026c468SAlberto Garcia goto fail; 5153026c468SAlberto Garcia } 5163026c468SAlberto Garcia 5173026c468SAlberto Garcia if (count > BDRV_REQUEST_MAX_BYTES - len) { 5183026c468SAlberto Garcia printf("The total number of bytes exceed the maximum size %" PRIu64 5193026c468SAlberto Garcia "\n", (uint64_t)BDRV_REQUEST_MAX_BYTES); 520797ac58cSKevin Wolf goto fail; 521797ac58cSKevin Wolf } 522797ac58cSKevin Wolf 523797ac58cSKevin Wolf sizes[i] = len; 524797ac58cSKevin Wolf count += len; 525797ac58cSKevin Wolf } 526797ac58cSKevin Wolf 527797ac58cSKevin Wolf qemu_iovec_init(qiov, nr_iov); 528797ac58cSKevin Wolf 5294c7b7e9bSMax Reitz buf = p = qemu_io_alloc(blk, count, pattern); 530797ac58cSKevin Wolf 531797ac58cSKevin Wolf for (i = 0; i < nr_iov; i++) { 532797ac58cSKevin Wolf qemu_iovec_add(qiov, p, sizes[i]); 533797ac58cSKevin Wolf p += sizes[i]; 534797ac58cSKevin Wolf } 535797ac58cSKevin Wolf 536797ac58cSKevin Wolf fail: 537797ac58cSKevin Wolf g_free(sizes); 538797ac58cSKevin Wolf return buf; 539797ac58cSKevin Wolf } 540797ac58cSKevin Wolf 5419b0beaf3SJohn Snow static int do_pread(BlockBackend *blk, char *buf, int64_t offset, 542f5a5ca79SManos Pitsidianakis int64_t bytes, int64_t *total) 543797ac58cSKevin Wolf { 544bf5b16faSAlberto Faria int ret; 545bf5b16faSAlberto Faria 546f5a5ca79SManos Pitsidianakis if (bytes > INT_MAX) { 5479b0beaf3SJohn Snow return -ERANGE; 5489b0beaf3SJohn Snow } 5499b0beaf3SJohn Snow 550a9262f55SAlberto Faria ret = blk_pread(blk, offset, bytes, (uint8_t *)buf, 0); 551bf5b16faSAlberto Faria if (ret < 0) { 552bf5b16faSAlberto Faria return ret; 553797ac58cSKevin Wolf } 554bf5b16faSAlberto Faria *total = bytes; 555797ac58cSKevin Wolf return 1; 556797ac58cSKevin Wolf } 557797ac58cSKevin Wolf 5589b0beaf3SJohn Snow static int do_pwrite(BlockBackend *blk, char *buf, int64_t offset, 559f5a5ca79SManos Pitsidianakis int64_t bytes, int flags, int64_t *total) 560797ac58cSKevin Wolf { 561bf5b16faSAlberto Faria int ret; 562bf5b16faSAlberto Faria 563f5a5ca79SManos Pitsidianakis if (bytes > INT_MAX) { 5649b0beaf3SJohn Snow return -ERANGE; 5659b0beaf3SJohn Snow } 5669b0beaf3SJohn Snow 567a9262f55SAlberto Faria ret = blk_pwrite(blk, offset, bytes, (uint8_t *)buf, flags); 568bf5b16faSAlberto Faria if (ret < 0) { 569bf5b16faSAlberto Faria return ret; 570797ac58cSKevin Wolf } 571bf5b16faSAlberto Faria *total = bytes; 572797ac58cSKevin Wolf return 1; 573797ac58cSKevin Wolf } 574797ac58cSKevin Wolf 575797ac58cSKevin Wolf typedef struct { 5764c7b7e9bSMax Reitz BlockBackend *blk; 577797ac58cSKevin Wolf int64_t offset; 578f5a5ca79SManos Pitsidianakis int64_t bytes; 5799b0beaf3SJohn Snow int64_t *total; 580770e0e0eSEric Blake int flags; 581797ac58cSKevin Wolf int ret; 582797ac58cSKevin Wolf bool done; 583797ac58cSKevin Wolf } CoWriteZeroes; 584797ac58cSKevin Wolf 585d004bd52SEric Blake static void coroutine_fn co_pwrite_zeroes_entry(void *opaque) 586797ac58cSKevin Wolf { 587797ac58cSKevin Wolf CoWriteZeroes *data = opaque; 588797ac58cSKevin Wolf 589f5a5ca79SManos Pitsidianakis data->ret = blk_co_pwrite_zeroes(data->blk, data->offset, data->bytes, 590770e0e0eSEric Blake data->flags); 591797ac58cSKevin Wolf data->done = true; 592797ac58cSKevin Wolf if (data->ret < 0) { 593797ac58cSKevin Wolf *data->total = data->ret; 594797ac58cSKevin Wolf return; 595797ac58cSKevin Wolf } 596797ac58cSKevin Wolf 597f5a5ca79SManos Pitsidianakis *data->total = data->bytes; 598797ac58cSKevin Wolf } 599797ac58cSKevin Wolf 600d004bd52SEric Blake static int do_co_pwrite_zeroes(BlockBackend *blk, int64_t offset, 601f5a5ca79SManos Pitsidianakis int64_t bytes, int flags, int64_t *total) 602797ac58cSKevin Wolf { 603797ac58cSKevin Wolf Coroutine *co; 604797ac58cSKevin Wolf CoWriteZeroes data = { 6054c7b7e9bSMax Reitz .blk = blk, 606797ac58cSKevin Wolf .offset = offset, 607f5a5ca79SManos Pitsidianakis .bytes = bytes, 608797ac58cSKevin Wolf .total = total, 609770e0e0eSEric Blake .flags = flags, 610797ac58cSKevin Wolf .done = false, 611797ac58cSKevin Wolf }; 612797ac58cSKevin Wolf 6130b8b8753SPaolo Bonzini co = qemu_coroutine_create(co_pwrite_zeroes_entry, &data); 614324ec3e4SFam Zheng bdrv_coroutine_enter(blk_bs(blk), co); 615797ac58cSKevin Wolf while (!data.done) { 6164c7b7e9bSMax Reitz aio_poll(blk_get_aio_context(blk), true); 617797ac58cSKevin Wolf } 618797ac58cSKevin Wolf if (data.ret < 0) { 619797ac58cSKevin Wolf return data.ret; 620797ac58cSKevin Wolf } else { 621797ac58cSKevin Wolf return 1; 622797ac58cSKevin Wolf } 623797ac58cSKevin Wolf } 624797ac58cSKevin Wolf 6254c7b7e9bSMax Reitz static int do_write_compressed(BlockBackend *blk, char *buf, int64_t offset, 626f5a5ca79SManos Pitsidianakis int64_t bytes, int64_t *total) 627797ac58cSKevin Wolf { 628797ac58cSKevin Wolf int ret; 629797ac58cSKevin Wolf 63041ae31e3SAlberto Garcia if (bytes > BDRV_REQUEST_MAX_BYTES) { 6319b0beaf3SJohn Snow return -ERANGE; 6329b0beaf3SJohn Snow } 6339b0beaf3SJohn Snow 634*0cadf2c8SAlberto Faria ret = blk_pwrite_compressed(blk, offset, bytes, buf); 635797ac58cSKevin Wolf if (ret < 0) { 636797ac58cSKevin Wolf return ret; 637797ac58cSKevin Wolf } 638f5a5ca79SManos Pitsidianakis *total = bytes; 639797ac58cSKevin Wolf return 1; 640797ac58cSKevin Wolf } 641797ac58cSKevin Wolf 6424c7b7e9bSMax Reitz static int do_load_vmstate(BlockBackend *blk, char *buf, int64_t offset, 6439b0beaf3SJohn Snow int64_t count, int64_t *total) 644797ac58cSKevin Wolf { 6459b0beaf3SJohn Snow if (count > INT_MAX) { 6469b0beaf3SJohn Snow return -ERANGE; 6479b0beaf3SJohn Snow } 6489b0beaf3SJohn Snow 6494c7b7e9bSMax Reitz *total = blk_load_vmstate(blk, (uint8_t *)buf, offset, count); 650797ac58cSKevin Wolf if (*total < 0) { 651797ac58cSKevin Wolf return *total; 652797ac58cSKevin Wolf } 653797ac58cSKevin Wolf return 1; 654797ac58cSKevin Wolf } 655797ac58cSKevin Wolf 6564c7b7e9bSMax Reitz static int do_save_vmstate(BlockBackend *blk, char *buf, int64_t offset, 6579b0beaf3SJohn Snow int64_t count, int64_t *total) 658797ac58cSKevin Wolf { 6599b0beaf3SJohn Snow if (count > INT_MAX) { 6609b0beaf3SJohn Snow return -ERANGE; 6619b0beaf3SJohn Snow } 6629b0beaf3SJohn Snow 6634c7b7e9bSMax Reitz *total = blk_save_vmstate(blk, (uint8_t *)buf, offset, count); 664797ac58cSKevin Wolf if (*total < 0) { 665797ac58cSKevin Wolf return *total; 666797ac58cSKevin Wolf } 667797ac58cSKevin Wolf return 1; 668797ac58cSKevin Wolf } 669797ac58cSKevin Wolf 670797ac58cSKevin Wolf #define NOT_DONE 0x7fffffff 671797ac58cSKevin Wolf static void aio_rw_done(void *opaque, int ret) 672797ac58cSKevin Wolf { 673797ac58cSKevin Wolf *(int *)opaque = ret; 674797ac58cSKevin Wolf } 675797ac58cSKevin Wolf 6764c7b7e9bSMax Reitz static int do_aio_readv(BlockBackend *blk, QEMUIOVector *qiov, 677797ac58cSKevin Wolf int64_t offset, int *total) 678797ac58cSKevin Wolf { 679797ac58cSKevin Wolf int async_ret = NOT_DONE; 680797ac58cSKevin Wolf 6817b3f9712SEric Blake blk_aio_preadv(blk, offset, qiov, 0, aio_rw_done, &async_ret); 682797ac58cSKevin Wolf while (async_ret == NOT_DONE) { 683797ac58cSKevin Wolf main_loop_wait(false); 684797ac58cSKevin Wolf } 685797ac58cSKevin Wolf 686797ac58cSKevin Wolf *total = qiov->size; 687797ac58cSKevin Wolf return async_ret < 0 ? async_ret : 1; 688797ac58cSKevin Wolf } 689797ac58cSKevin Wolf 6904c7b7e9bSMax Reitz static int do_aio_writev(BlockBackend *blk, QEMUIOVector *qiov, 691770e0e0eSEric Blake int64_t offset, int flags, int *total) 692797ac58cSKevin Wolf { 693797ac58cSKevin Wolf int async_ret = NOT_DONE; 694797ac58cSKevin Wolf 695770e0e0eSEric Blake blk_aio_pwritev(blk, offset, qiov, flags, aio_rw_done, &async_ret); 696797ac58cSKevin Wolf while (async_ret == NOT_DONE) { 697797ac58cSKevin Wolf main_loop_wait(false); 698797ac58cSKevin Wolf } 699797ac58cSKevin Wolf 700797ac58cSKevin Wolf *total = qiov->size; 701797ac58cSKevin Wolf return async_ret < 0 ? async_ret : 1; 702797ac58cSKevin Wolf } 703797ac58cSKevin Wolf 704797ac58cSKevin Wolf static void read_help(void) 705797ac58cSKevin Wolf { 706797ac58cSKevin Wolf printf( 707797ac58cSKevin Wolf "\n" 708797ac58cSKevin Wolf " reads a range of bytes from the given offset\n" 709797ac58cSKevin Wolf "\n" 710797ac58cSKevin Wolf " Example:\n" 711797ac58cSKevin Wolf " 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n" 712797ac58cSKevin Wolf "\n" 713797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n" 714797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n" 715797ac58cSKevin Wolf " -b, -- read from the VM state rather than the virtual disk\n" 716797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 717797ac58cSKevin Wolf " -l, -- length for pattern verification (only with -P)\n" 718093ea232SEric Blake " -p, -- ignored for backwards compatibility\n" 719797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n" 720797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 721797ac58cSKevin Wolf " -s, -- start offset for pattern verification (only with -P)\n" 722797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n" 723797ac58cSKevin Wolf "\n"); 724797ac58cSKevin Wolf } 725797ac58cSKevin Wolf 726b32d7a39SMax Reitz static int read_f(BlockBackend *blk, int argc, char **argv); 727797ac58cSKevin Wolf 728797ac58cSKevin Wolf static const cmdinfo_t read_cmd = { 729797ac58cSKevin Wolf .name = "read", 730797ac58cSKevin Wolf .altname = "r", 731797ac58cSKevin Wolf .cfunc = read_f, 732797ac58cSKevin Wolf .argmin = 2, 733797ac58cSKevin Wolf .argmax = -1, 734093ea232SEric Blake .args = "[-abCqv] [-P pattern [-s off] [-l len]] off len", 735797ac58cSKevin Wolf .oneline = "reads a number of bytes at a specified offset", 736797ac58cSKevin Wolf .help = read_help, 737797ac58cSKevin Wolf }; 738797ac58cSKevin Wolf 739b32d7a39SMax Reitz static int read_f(BlockBackend *blk, int argc, char **argv) 740797ac58cSKevin Wolf { 74150290c00SAlex Bennée struct timespec t1, t2; 742093ea232SEric Blake bool Cflag = false, qflag = false, vflag = false; 743dc38852aSEric Blake bool Pflag = false, sflag = false, lflag = false, bflag = false; 744b32d7a39SMax Reitz int c, cnt, ret; 745797ac58cSKevin Wolf char *buf; 746797ac58cSKevin Wolf int64_t offset; 7479b0beaf3SJohn Snow int64_t count; 748797ac58cSKevin Wolf /* Some compilers get confused and warn if this is not initialized. */ 7499b0beaf3SJohn Snow int64_t total = 0; 7509b0beaf3SJohn Snow int pattern = 0; 7519b0beaf3SJohn Snow int64_t pattern_offset = 0, pattern_count = 0; 752797ac58cSKevin Wolf 753b062ad86SEric Blake while ((c = getopt(argc, argv, "bCl:pP:qs:v")) != -1) { 754797ac58cSKevin Wolf switch (c) { 755797ac58cSKevin Wolf case 'b': 756dc38852aSEric Blake bflag = true; 757797ac58cSKevin Wolf break; 758797ac58cSKevin Wolf case 'C': 759dc38852aSEric Blake Cflag = true; 760797ac58cSKevin Wolf break; 761797ac58cSKevin Wolf case 'l': 762dc38852aSEric Blake lflag = true; 763797ac58cSKevin Wolf pattern_count = cvtnum(optarg); 764797ac58cSKevin Wolf if (pattern_count < 0) { 765a9ecfa00SJohn Snow print_cvtnum_err(pattern_count, optarg); 766b32d7a39SMax Reitz return pattern_count; 767797ac58cSKevin Wolf } 768797ac58cSKevin Wolf break; 769797ac58cSKevin Wolf case 'p': 770093ea232SEric Blake /* Ignored for backwards compatibility */ 771797ac58cSKevin Wolf break; 772797ac58cSKevin Wolf case 'P': 773dc38852aSEric Blake Pflag = true; 774797ac58cSKevin Wolf pattern = parse_pattern(optarg); 775797ac58cSKevin Wolf if (pattern < 0) { 776b32d7a39SMax Reitz return -EINVAL; 777797ac58cSKevin Wolf } 778797ac58cSKevin Wolf break; 779797ac58cSKevin Wolf case 'q': 780dc38852aSEric Blake qflag = true; 781797ac58cSKevin Wolf break; 782797ac58cSKevin Wolf case 's': 783dc38852aSEric Blake sflag = true; 784797ac58cSKevin Wolf pattern_offset = cvtnum(optarg); 785797ac58cSKevin Wolf if (pattern_offset < 0) { 786a9ecfa00SJohn Snow print_cvtnum_err(pattern_offset, optarg); 787b32d7a39SMax Reitz return pattern_offset; 788797ac58cSKevin Wolf } 789797ac58cSKevin Wolf break; 790797ac58cSKevin Wolf case 'v': 791dc38852aSEric Blake vflag = true; 792797ac58cSKevin Wolf break; 793797ac58cSKevin Wolf default: 794b444d0e9SMax Reitz qemuio_command_usage(&read_cmd); 795b32d7a39SMax Reitz return -EINVAL; 796797ac58cSKevin Wolf } 797797ac58cSKevin Wolf } 798797ac58cSKevin Wolf 799797ac58cSKevin Wolf if (optind != argc - 2) { 800b444d0e9SMax Reitz qemuio_command_usage(&read_cmd); 801b32d7a39SMax Reitz return -EINVAL; 802797ac58cSKevin Wolf } 803797ac58cSKevin Wolf 804797ac58cSKevin Wolf offset = cvtnum(argv[optind]); 805797ac58cSKevin Wolf if (offset < 0) { 806a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[optind]); 807b32d7a39SMax Reitz return offset; 808797ac58cSKevin Wolf } 809797ac58cSKevin Wolf 810797ac58cSKevin Wolf optind++; 811797ac58cSKevin Wolf count = cvtnum(argv[optind]); 812797ac58cSKevin Wolf if (count < 0) { 813a9ecfa00SJohn Snow print_cvtnum_err(count, argv[optind]); 814b32d7a39SMax Reitz return count; 8153026c468SAlberto Garcia } else if (count > BDRV_REQUEST_MAX_BYTES) { 8169b0beaf3SJohn Snow printf("length cannot exceed %" PRIu64 ", given %s\n", 8173026c468SAlberto Garcia (uint64_t)BDRV_REQUEST_MAX_BYTES, argv[optind]); 818b32d7a39SMax Reitz return -EINVAL; 819797ac58cSKevin Wolf } 820797ac58cSKevin Wolf 821797ac58cSKevin Wolf if (!Pflag && (lflag || sflag)) { 822b444d0e9SMax Reitz qemuio_command_usage(&read_cmd); 823b32d7a39SMax Reitz return -EINVAL; 824797ac58cSKevin Wolf } 825797ac58cSKevin Wolf 826797ac58cSKevin Wolf if (!lflag) { 827797ac58cSKevin Wolf pattern_count = count - pattern_offset; 828797ac58cSKevin Wolf } 829797ac58cSKevin Wolf 830797ac58cSKevin Wolf if ((pattern_count < 0) || (pattern_count + pattern_offset > count)) { 831797ac58cSKevin Wolf printf("pattern verification range exceeds end of read data\n"); 832b32d7a39SMax Reitz return -EINVAL; 833797ac58cSKevin Wolf } 834797ac58cSKevin Wolf 835093ea232SEric Blake if (bflag) { 8361bce6b4cSEric Blake if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) { 8371bce6b4cSEric Blake printf("%" PRId64 " is not a sector-aligned value for 'offset'\n", 838797ac58cSKevin Wolf offset); 839b32d7a39SMax Reitz return -EINVAL; 840797ac58cSKevin Wolf } 8411bce6b4cSEric Blake if (!QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE)) { 8421bce6b4cSEric Blake printf("%"PRId64" is not a sector-aligned value for 'count'\n", 843797ac58cSKevin Wolf count); 844b32d7a39SMax Reitz return -EINVAL; 845797ac58cSKevin Wolf } 846797ac58cSKevin Wolf } 847797ac58cSKevin Wolf 8484c7b7e9bSMax Reitz buf = qemu_io_alloc(blk, count, 0xab); 849797ac58cSKevin Wolf 85050290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t1); 8517b3f9712SEric Blake if (bflag) { 852b32d7a39SMax Reitz ret = do_load_vmstate(blk, buf, offset, count, &total); 853797ac58cSKevin Wolf } else { 854b32d7a39SMax Reitz ret = do_pread(blk, buf, offset, count, &total); 855797ac58cSKevin Wolf } 85650290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 857797ac58cSKevin Wolf 858b32d7a39SMax Reitz if (ret < 0) { 859b32d7a39SMax Reitz printf("read failed: %s\n", strerror(-ret)); 860797ac58cSKevin Wolf goto out; 861797ac58cSKevin Wolf } 862b32d7a39SMax Reitz cnt = ret; 863b32d7a39SMax Reitz 864b32d7a39SMax Reitz ret = 0; 865797ac58cSKevin Wolf 866797ac58cSKevin Wolf if (Pflag) { 867797ac58cSKevin Wolf void *cmp_buf = g_malloc(pattern_count); 868797ac58cSKevin Wolf memset(cmp_buf, pattern, pattern_count); 869797ac58cSKevin Wolf if (memcmp(buf + pattern_offset, cmp_buf, pattern_count)) { 870797ac58cSKevin Wolf printf("Pattern verification failed at offset %" 8719b0beaf3SJohn Snow PRId64 ", %"PRId64" bytes\n", 872797ac58cSKevin Wolf offset + pattern_offset, pattern_count); 873b32d7a39SMax Reitz ret = -EINVAL; 874797ac58cSKevin Wolf } 875797ac58cSKevin Wolf g_free(cmp_buf); 876797ac58cSKevin Wolf } 877797ac58cSKevin Wolf 878797ac58cSKevin Wolf if (qflag) { 879797ac58cSKevin Wolf goto out; 880797ac58cSKevin Wolf } 881797ac58cSKevin Wolf 882797ac58cSKevin Wolf if (vflag) { 883797ac58cSKevin Wolf dump_buffer(buf, offset, count); 884797ac58cSKevin Wolf } 885797ac58cSKevin Wolf 886797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 887797ac58cSKevin Wolf t2 = tsub(t2, t1); 888797ac58cSKevin Wolf print_report("read", &t2, offset, count, total, cnt, Cflag); 889797ac58cSKevin Wolf 890797ac58cSKevin Wolf out: 891797ac58cSKevin Wolf qemu_io_free(buf); 892b32d7a39SMax Reitz return ret; 893797ac58cSKevin Wolf } 894797ac58cSKevin Wolf 895797ac58cSKevin Wolf static void readv_help(void) 896797ac58cSKevin Wolf { 897797ac58cSKevin Wolf printf( 898797ac58cSKevin Wolf "\n" 899797ac58cSKevin Wolf " reads a range of bytes from the given offset into multiple buffers\n" 900797ac58cSKevin Wolf "\n" 901797ac58cSKevin Wolf " Example:\n" 902797ac58cSKevin Wolf " 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n" 903797ac58cSKevin Wolf "\n" 904797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n" 905797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n" 906797ac58cSKevin Wolf " Uses multiple iovec buffers if more than one byte range is specified.\n" 907797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 908797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n" 909797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n" 910797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 911797ac58cSKevin Wolf "\n"); 912797ac58cSKevin Wolf } 913797ac58cSKevin Wolf 914b32d7a39SMax Reitz static int readv_f(BlockBackend *blk, int argc, char **argv); 915797ac58cSKevin Wolf 916797ac58cSKevin Wolf static const cmdinfo_t readv_cmd = { 917797ac58cSKevin Wolf .name = "readv", 918797ac58cSKevin Wolf .cfunc = readv_f, 919797ac58cSKevin Wolf .argmin = 2, 920797ac58cSKevin Wolf .argmax = -1, 921797ac58cSKevin Wolf .args = "[-Cqv] [-P pattern] off len [len..]", 922797ac58cSKevin Wolf .oneline = "reads a number of bytes at a specified offset", 923797ac58cSKevin Wolf .help = readv_help, 924797ac58cSKevin Wolf }; 925797ac58cSKevin Wolf 926b32d7a39SMax Reitz static int readv_f(BlockBackend *blk, int argc, char **argv) 927797ac58cSKevin Wolf { 92850290c00SAlex Bennée struct timespec t1, t2; 929dc38852aSEric Blake bool Cflag = false, qflag = false, vflag = false; 930b32d7a39SMax Reitz int c, cnt, ret; 931797ac58cSKevin Wolf char *buf; 932797ac58cSKevin Wolf int64_t offset; 933797ac58cSKevin Wolf /* Some compilers get confused and warn if this is not initialized. */ 934797ac58cSKevin Wolf int total = 0; 935797ac58cSKevin Wolf int nr_iov; 936797ac58cSKevin Wolf QEMUIOVector qiov; 937797ac58cSKevin Wolf int pattern = 0; 938dc38852aSEric Blake bool Pflag = false; 939797ac58cSKevin Wolf 940b062ad86SEric Blake while ((c = getopt(argc, argv, "CP:qv")) != -1) { 941797ac58cSKevin Wolf switch (c) { 942797ac58cSKevin Wolf case 'C': 943dc38852aSEric Blake Cflag = true; 944797ac58cSKevin Wolf break; 945797ac58cSKevin Wolf case 'P': 946dc38852aSEric Blake Pflag = true; 947797ac58cSKevin Wolf pattern = parse_pattern(optarg); 948797ac58cSKevin Wolf if (pattern < 0) { 949b32d7a39SMax Reitz return -EINVAL; 950797ac58cSKevin Wolf } 951797ac58cSKevin Wolf break; 952797ac58cSKevin Wolf case 'q': 953dc38852aSEric Blake qflag = true; 954797ac58cSKevin Wolf break; 955797ac58cSKevin Wolf case 'v': 956dc38852aSEric Blake vflag = true; 957797ac58cSKevin Wolf break; 958797ac58cSKevin Wolf default: 959b444d0e9SMax Reitz qemuio_command_usage(&readv_cmd); 960b32d7a39SMax Reitz return -EINVAL; 961797ac58cSKevin Wolf } 962797ac58cSKevin Wolf } 963797ac58cSKevin Wolf 964797ac58cSKevin Wolf if (optind > argc - 2) { 965b444d0e9SMax Reitz qemuio_command_usage(&readv_cmd); 966b32d7a39SMax Reitz return -EINVAL; 967797ac58cSKevin Wolf } 968797ac58cSKevin Wolf 969797ac58cSKevin Wolf 970797ac58cSKevin Wolf offset = cvtnum(argv[optind]); 971797ac58cSKevin Wolf if (offset < 0) { 972a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[optind]); 973b32d7a39SMax Reitz return offset; 974797ac58cSKevin Wolf } 975797ac58cSKevin Wolf optind++; 976797ac58cSKevin Wolf 977797ac58cSKevin Wolf nr_iov = argc - optind; 9784c7b7e9bSMax Reitz buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, 0xab); 979797ac58cSKevin Wolf if (buf == NULL) { 980b32d7a39SMax Reitz return -EINVAL; 981797ac58cSKevin Wolf } 982797ac58cSKevin Wolf 98350290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t1); 984b32d7a39SMax Reitz ret = do_aio_readv(blk, &qiov, offset, &total); 98550290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 986797ac58cSKevin Wolf 987b32d7a39SMax Reitz if (ret < 0) { 988b32d7a39SMax Reitz printf("readv failed: %s\n", strerror(-ret)); 989797ac58cSKevin Wolf goto out; 990797ac58cSKevin Wolf } 991b32d7a39SMax Reitz cnt = ret; 992b32d7a39SMax Reitz 993b32d7a39SMax Reitz ret = 0; 994797ac58cSKevin Wolf 995797ac58cSKevin Wolf if (Pflag) { 996797ac58cSKevin Wolf void *cmp_buf = g_malloc(qiov.size); 997797ac58cSKevin Wolf memset(cmp_buf, pattern, qiov.size); 998797ac58cSKevin Wolf if (memcmp(buf, cmp_buf, qiov.size)) { 999797ac58cSKevin Wolf printf("Pattern verification failed at offset %" 1000cf67b692SStefan Weil PRId64 ", %zu bytes\n", offset, qiov.size); 1001b32d7a39SMax Reitz ret = -EINVAL; 1002797ac58cSKevin Wolf } 1003797ac58cSKevin Wolf g_free(cmp_buf); 1004797ac58cSKevin Wolf } 1005797ac58cSKevin Wolf 1006797ac58cSKevin Wolf if (qflag) { 1007797ac58cSKevin Wolf goto out; 1008797ac58cSKevin Wolf } 1009797ac58cSKevin Wolf 1010797ac58cSKevin Wolf if (vflag) { 1011797ac58cSKevin Wolf dump_buffer(buf, offset, qiov.size); 1012797ac58cSKevin Wolf } 1013797ac58cSKevin Wolf 1014797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1015797ac58cSKevin Wolf t2 = tsub(t2, t1); 1016797ac58cSKevin Wolf print_report("read", &t2, offset, qiov.size, total, cnt, Cflag); 1017797ac58cSKevin Wolf 1018797ac58cSKevin Wolf out: 1019797ac58cSKevin Wolf qemu_iovec_destroy(&qiov); 1020797ac58cSKevin Wolf qemu_io_free(buf); 1021b32d7a39SMax Reitz return ret; 1022797ac58cSKevin Wolf } 1023797ac58cSKevin Wolf 1024797ac58cSKevin Wolf static void write_help(void) 1025797ac58cSKevin Wolf { 1026797ac58cSKevin Wolf printf( 1027797ac58cSKevin Wolf "\n" 1028797ac58cSKevin Wolf " writes a range of bytes from the given offset\n" 1029797ac58cSKevin Wolf "\n" 1030797ac58cSKevin Wolf " Example:\n" 1031797ac58cSKevin Wolf " 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n" 1032797ac58cSKevin Wolf "\n" 1033797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n" 1034797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n" 1035797ac58cSKevin Wolf " -b, -- write to the VM state rather than the virtual disk\n" 10364c7b7e9bSMax Reitz " -c, -- write compressed data with blk_write_compressed\n" 1037770e0e0eSEric Blake " -f, -- use Force Unit Access semantics\n" 1038c6e3f520SKevin Wolf " -n, -- with -z, don't allow slow fallback\n" 1039093ea232SEric Blake " -p, -- ignored for backwards compatibility\n" 1040797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n" 10414d731510SDenis Plotnikov " -s, -- use a pattern file to fill the write buffer\n" 1042797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 1043797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 1044c2e001ccSEric Blake " -u, -- with -z, allow unmapping\n" 1045d004bd52SEric Blake " -z, -- write zeroes using blk_co_pwrite_zeroes\n" 1046797ac58cSKevin Wolf "\n"); 1047797ac58cSKevin Wolf } 1048797ac58cSKevin Wolf 1049b32d7a39SMax Reitz static int write_f(BlockBackend *blk, int argc, char **argv); 1050797ac58cSKevin Wolf 1051797ac58cSKevin Wolf static const cmdinfo_t write_cmd = { 1052797ac58cSKevin Wolf .name = "write", 1053797ac58cSKevin Wolf .altname = "w", 1054797ac58cSKevin Wolf .cfunc = write_f, 1055887354bdSKevin Wolf .perm = BLK_PERM_WRITE, 1056797ac58cSKevin Wolf .argmin = 2, 1057797ac58cSKevin Wolf .argmax = -1, 10584d731510SDenis Plotnikov .args = "[-bcCfnquz] [-P pattern | -s source_file] off len", 1059797ac58cSKevin Wolf .oneline = "writes a number of bytes at a specified offset", 1060797ac58cSKevin Wolf .help = write_help, 1061797ac58cSKevin Wolf }; 1062797ac58cSKevin Wolf 1063b32d7a39SMax Reitz static int write_f(BlockBackend *blk, int argc, char **argv) 1064797ac58cSKevin Wolf { 106550290c00SAlex Bennée struct timespec t1, t2; 1066093ea232SEric Blake bool Cflag = false, qflag = false, bflag = false; 10674d731510SDenis Plotnikov bool Pflag = false, zflag = false, cflag = false, sflag = false; 1068770e0e0eSEric Blake int flags = 0; 1069b32d7a39SMax Reitz int c, cnt, ret; 1070797ac58cSKevin Wolf char *buf = NULL; 1071797ac58cSKevin Wolf int64_t offset; 10729b0beaf3SJohn Snow int64_t count; 1073797ac58cSKevin Wolf /* Some compilers get confused and warn if this is not initialized. */ 10749b0beaf3SJohn Snow int64_t total = 0; 1075797ac58cSKevin Wolf int pattern = 0xcd; 10764d731510SDenis Plotnikov const char *file_name = NULL; 1077797ac58cSKevin Wolf 10784d731510SDenis Plotnikov while ((c = getopt(argc, argv, "bcCfnpP:qs:uz")) != -1) { 1079797ac58cSKevin Wolf switch (c) { 1080797ac58cSKevin Wolf case 'b': 1081dc38852aSEric Blake bflag = true; 1082797ac58cSKevin Wolf break; 1083797ac58cSKevin Wolf case 'c': 1084dc38852aSEric Blake cflag = true; 1085797ac58cSKevin Wolf break; 1086797ac58cSKevin Wolf case 'C': 1087dc38852aSEric Blake Cflag = true; 1088797ac58cSKevin Wolf break; 1089770e0e0eSEric Blake case 'f': 1090770e0e0eSEric Blake flags |= BDRV_REQ_FUA; 1091770e0e0eSEric Blake break; 1092c6e3f520SKevin Wolf case 'n': 1093c6e3f520SKevin Wolf flags |= BDRV_REQ_NO_FALLBACK; 1094c6e3f520SKevin Wolf break; 1095797ac58cSKevin Wolf case 'p': 1096093ea232SEric Blake /* Ignored for backwards compatibility */ 1097797ac58cSKevin Wolf break; 1098797ac58cSKevin Wolf case 'P': 1099dc38852aSEric Blake Pflag = true; 1100797ac58cSKevin Wolf pattern = parse_pattern(optarg); 1101797ac58cSKevin Wolf if (pattern < 0) { 1102b32d7a39SMax Reitz return -EINVAL; 1103797ac58cSKevin Wolf } 1104797ac58cSKevin Wolf break; 1105797ac58cSKevin Wolf case 'q': 1106dc38852aSEric Blake qflag = true; 1107797ac58cSKevin Wolf break; 11084d731510SDenis Plotnikov case 's': 11094d731510SDenis Plotnikov sflag = true; 11104d731510SDenis Plotnikov file_name = optarg; 11114d731510SDenis Plotnikov break; 1112c2e001ccSEric Blake case 'u': 1113c2e001ccSEric Blake flags |= BDRV_REQ_MAY_UNMAP; 1114c2e001ccSEric Blake break; 1115797ac58cSKevin Wolf case 'z': 1116dc38852aSEric Blake zflag = true; 1117797ac58cSKevin Wolf break; 1118797ac58cSKevin Wolf default: 1119b444d0e9SMax Reitz qemuio_command_usage(&write_cmd); 1120b32d7a39SMax Reitz return -EINVAL; 1121797ac58cSKevin Wolf } 1122797ac58cSKevin Wolf } 1123797ac58cSKevin Wolf 1124797ac58cSKevin Wolf if (optind != argc - 2) { 1125b444d0e9SMax Reitz qemuio_command_usage(&write_cmd); 1126b32d7a39SMax Reitz return -EINVAL; 1127797ac58cSKevin Wolf } 1128797ac58cSKevin Wolf 1129093ea232SEric Blake if (bflag && zflag) { 1130093ea232SEric Blake printf("-b and -z cannot be specified at the same time\n"); 1131b32d7a39SMax Reitz return -EINVAL; 1132797ac58cSKevin Wolf } 1133797ac58cSKevin Wolf 1134770e0e0eSEric Blake if ((flags & BDRV_REQ_FUA) && (bflag || cflag)) { 1135770e0e0eSEric Blake printf("-f and -b or -c cannot be specified at the same time\n"); 1136b32d7a39SMax Reitz return -EINVAL; 1137770e0e0eSEric Blake } 1138770e0e0eSEric Blake 1139c6e3f520SKevin Wolf if ((flags & BDRV_REQ_NO_FALLBACK) && !zflag) { 1140c6e3f520SKevin Wolf printf("-n requires -z to be specified\n"); 1141c6e3f520SKevin Wolf return -EINVAL; 1142c6e3f520SKevin Wolf } 1143c6e3f520SKevin Wolf 1144c2e001ccSEric Blake if ((flags & BDRV_REQ_MAY_UNMAP) && !zflag) { 1145c2e001ccSEric Blake printf("-u requires -z to be specified\n"); 1146b32d7a39SMax Reitz return -EINVAL; 1147c2e001ccSEric Blake } 1148c2e001ccSEric Blake 11494d731510SDenis Plotnikov if (zflag + Pflag + sflag > 1) { 11504d731510SDenis Plotnikov printf("Only one of -z, -P, and -s " 11514d731510SDenis Plotnikov "can be specified at the same time\n"); 1152b32d7a39SMax Reitz return -EINVAL; 1153797ac58cSKevin Wolf } 1154797ac58cSKevin Wolf 1155797ac58cSKevin Wolf offset = cvtnum(argv[optind]); 1156797ac58cSKevin Wolf if (offset < 0) { 1157a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[optind]); 1158b32d7a39SMax Reitz return offset; 1159797ac58cSKevin Wolf } 1160797ac58cSKevin Wolf 1161797ac58cSKevin Wolf optind++; 1162797ac58cSKevin Wolf count = cvtnum(argv[optind]); 1163797ac58cSKevin Wolf if (count < 0) { 1164a9ecfa00SJohn Snow print_cvtnum_err(count, argv[optind]); 1165b32d7a39SMax Reitz return count; 1166395aecd0SEric Blake } else if (count > BDRV_REQUEST_MAX_BYTES && 1167395aecd0SEric Blake !(flags & BDRV_REQ_NO_FALLBACK)) { 1168395aecd0SEric Blake printf("length cannot exceed %" PRIu64 " without -n, given %s\n", 11693026c468SAlberto Garcia (uint64_t)BDRV_REQUEST_MAX_BYTES, argv[optind]); 1170b32d7a39SMax Reitz return -EINVAL; 1171797ac58cSKevin Wolf } 1172797ac58cSKevin Wolf 1173093ea232SEric Blake if (bflag || cflag) { 11741bce6b4cSEric Blake if (!QEMU_IS_ALIGNED(offset, BDRV_SECTOR_SIZE)) { 11751bce6b4cSEric Blake printf("%" PRId64 " is not a sector-aligned value for 'offset'\n", 1176797ac58cSKevin Wolf offset); 1177b32d7a39SMax Reitz return -EINVAL; 1178797ac58cSKevin Wolf } 1179797ac58cSKevin Wolf 11801bce6b4cSEric Blake if (!QEMU_IS_ALIGNED(count, BDRV_SECTOR_SIZE)) { 11811bce6b4cSEric Blake printf("%"PRId64" is not a sector-aligned value for 'count'\n", 1182797ac58cSKevin Wolf count); 1183b32d7a39SMax Reitz return -EINVAL; 1184797ac58cSKevin Wolf } 1185797ac58cSKevin Wolf } 1186797ac58cSKevin Wolf 1187797ac58cSKevin Wolf if (!zflag) { 11884d731510SDenis Plotnikov if (sflag) { 11894d731510SDenis Plotnikov buf = qemu_io_alloc_from_file(blk, count, file_name); 11904d731510SDenis Plotnikov if (!buf) { 11914d731510SDenis Plotnikov return -EINVAL; 11924d731510SDenis Plotnikov } 11934d731510SDenis Plotnikov } else { 11944c7b7e9bSMax Reitz buf = qemu_io_alloc(blk, count, pattern); 1195797ac58cSKevin Wolf } 11964d731510SDenis Plotnikov } 1197797ac58cSKevin Wolf 119850290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t1); 11997b3f9712SEric Blake if (bflag) { 1200b32d7a39SMax Reitz ret = do_save_vmstate(blk, buf, offset, count, &total); 1201797ac58cSKevin Wolf } else if (zflag) { 1202b32d7a39SMax Reitz ret = do_co_pwrite_zeroes(blk, offset, count, flags, &total); 1203797ac58cSKevin Wolf } else if (cflag) { 1204b32d7a39SMax Reitz ret = do_write_compressed(blk, buf, offset, count, &total); 1205797ac58cSKevin Wolf } else { 1206b32d7a39SMax Reitz ret = do_pwrite(blk, buf, offset, count, flags, &total); 1207797ac58cSKevin Wolf } 120850290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 1209797ac58cSKevin Wolf 1210b32d7a39SMax Reitz if (ret < 0) { 1211b32d7a39SMax Reitz printf("write failed: %s\n", strerror(-ret)); 1212797ac58cSKevin Wolf goto out; 1213797ac58cSKevin Wolf } 1214b32d7a39SMax Reitz cnt = ret; 1215b32d7a39SMax Reitz 1216b32d7a39SMax Reitz ret = 0; 1217797ac58cSKevin Wolf 1218797ac58cSKevin Wolf if (qflag) { 1219797ac58cSKevin Wolf goto out; 1220797ac58cSKevin Wolf } 1221797ac58cSKevin Wolf 1222797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1223797ac58cSKevin Wolf t2 = tsub(t2, t1); 1224797ac58cSKevin Wolf print_report("wrote", &t2, offset, count, total, cnt, Cflag); 1225797ac58cSKevin Wolf 1226797ac58cSKevin Wolf out: 1227797ac58cSKevin Wolf if (!zflag) { 1228797ac58cSKevin Wolf qemu_io_free(buf); 1229797ac58cSKevin Wolf } 1230b32d7a39SMax Reitz return ret; 1231797ac58cSKevin Wolf } 1232797ac58cSKevin Wolf 1233797ac58cSKevin Wolf static void 1234797ac58cSKevin Wolf writev_help(void) 1235797ac58cSKevin Wolf { 1236797ac58cSKevin Wolf printf( 1237797ac58cSKevin Wolf "\n" 1238797ac58cSKevin Wolf " writes a range of bytes from the given offset source from multiple buffers\n" 1239797ac58cSKevin Wolf "\n" 1240797ac58cSKevin Wolf " Example:\n" 12416e6507c0SMaria Kustova " 'writev 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n" 1242797ac58cSKevin Wolf "\n" 1243797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n" 1244797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n" 1245797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n" 1246797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 1247770e0e0eSEric Blake " -f, -- use Force Unit Access semantics\n" 1248797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 1249797ac58cSKevin Wolf "\n"); 1250797ac58cSKevin Wolf } 1251797ac58cSKevin Wolf 1252b32d7a39SMax Reitz static int writev_f(BlockBackend *blk, int argc, char **argv); 1253797ac58cSKevin Wolf 1254797ac58cSKevin Wolf static const cmdinfo_t writev_cmd = { 1255797ac58cSKevin Wolf .name = "writev", 1256797ac58cSKevin Wolf .cfunc = writev_f, 1257887354bdSKevin Wolf .perm = BLK_PERM_WRITE, 1258797ac58cSKevin Wolf .argmin = 2, 1259797ac58cSKevin Wolf .argmax = -1, 1260770e0e0eSEric Blake .args = "[-Cfq] [-P pattern] off len [len..]", 1261797ac58cSKevin Wolf .oneline = "writes a number of bytes at a specified offset", 1262797ac58cSKevin Wolf .help = writev_help, 1263797ac58cSKevin Wolf }; 1264797ac58cSKevin Wolf 1265b32d7a39SMax Reitz static int writev_f(BlockBackend *blk, int argc, char **argv) 1266797ac58cSKevin Wolf { 126750290c00SAlex Bennée struct timespec t1, t2; 1268dc38852aSEric Blake bool Cflag = false, qflag = false; 1269770e0e0eSEric Blake int flags = 0; 1270b32d7a39SMax Reitz int c, cnt, ret; 1271797ac58cSKevin Wolf char *buf; 1272797ac58cSKevin Wolf int64_t offset; 1273797ac58cSKevin Wolf /* Some compilers get confused and warn if this is not initialized. */ 1274797ac58cSKevin Wolf int total = 0; 1275797ac58cSKevin Wolf int nr_iov; 1276797ac58cSKevin Wolf int pattern = 0xcd; 1277797ac58cSKevin Wolf QEMUIOVector qiov; 1278797ac58cSKevin Wolf 12794ca1d340SEric Blake while ((c = getopt(argc, argv, "CfqP:")) != -1) { 1280797ac58cSKevin Wolf switch (c) { 1281797ac58cSKevin Wolf case 'C': 1282dc38852aSEric Blake Cflag = true; 1283797ac58cSKevin Wolf break; 1284770e0e0eSEric Blake case 'f': 1285770e0e0eSEric Blake flags |= BDRV_REQ_FUA; 1286770e0e0eSEric Blake break; 1287797ac58cSKevin Wolf case 'q': 1288dc38852aSEric Blake qflag = true; 1289797ac58cSKevin Wolf break; 1290797ac58cSKevin Wolf case 'P': 1291797ac58cSKevin Wolf pattern = parse_pattern(optarg); 1292797ac58cSKevin Wolf if (pattern < 0) { 1293b32d7a39SMax Reitz return -EINVAL; 1294797ac58cSKevin Wolf } 1295797ac58cSKevin Wolf break; 1296797ac58cSKevin Wolf default: 1297b444d0e9SMax Reitz qemuio_command_usage(&writev_cmd); 1298b32d7a39SMax Reitz return -EINVAL; 1299797ac58cSKevin Wolf } 1300797ac58cSKevin Wolf } 1301797ac58cSKevin Wolf 1302797ac58cSKevin Wolf if (optind > argc - 2) { 1303b444d0e9SMax Reitz qemuio_command_usage(&writev_cmd); 1304b32d7a39SMax Reitz return -EINVAL; 1305797ac58cSKevin Wolf } 1306797ac58cSKevin Wolf 1307797ac58cSKevin Wolf offset = cvtnum(argv[optind]); 1308797ac58cSKevin Wolf if (offset < 0) { 1309a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[optind]); 1310b32d7a39SMax Reitz return offset; 1311797ac58cSKevin Wolf } 1312797ac58cSKevin Wolf optind++; 1313797ac58cSKevin Wolf 1314797ac58cSKevin Wolf nr_iov = argc - optind; 13154c7b7e9bSMax Reitz buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, pattern); 1316797ac58cSKevin Wolf if (buf == NULL) { 1317b32d7a39SMax Reitz return -EINVAL; 1318797ac58cSKevin Wolf } 1319797ac58cSKevin Wolf 132050290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t1); 1321b32d7a39SMax Reitz ret = do_aio_writev(blk, &qiov, offset, flags, &total); 132250290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 1323797ac58cSKevin Wolf 1324b32d7a39SMax Reitz if (ret < 0) { 1325b32d7a39SMax Reitz printf("writev failed: %s\n", strerror(-ret)); 1326797ac58cSKevin Wolf goto out; 1327797ac58cSKevin Wolf } 1328b32d7a39SMax Reitz cnt = ret; 1329b32d7a39SMax Reitz 1330b32d7a39SMax Reitz ret = 0; 1331797ac58cSKevin Wolf 1332797ac58cSKevin Wolf if (qflag) { 1333797ac58cSKevin Wolf goto out; 1334797ac58cSKevin Wolf } 1335797ac58cSKevin Wolf 1336797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1337797ac58cSKevin Wolf t2 = tsub(t2, t1); 1338797ac58cSKevin Wolf print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag); 1339797ac58cSKevin Wolf out: 1340797ac58cSKevin Wolf qemu_iovec_destroy(&qiov); 1341797ac58cSKevin Wolf qemu_io_free(buf); 1342b32d7a39SMax Reitz return ret; 1343797ac58cSKevin Wolf } 1344797ac58cSKevin Wolf 1345797ac58cSKevin Wolf struct aio_ctx { 13464c7b7e9bSMax Reitz BlockBackend *blk; 1347797ac58cSKevin Wolf QEMUIOVector qiov; 1348797ac58cSKevin Wolf int64_t offset; 1349797ac58cSKevin Wolf char *buf; 1350dc38852aSEric Blake bool qflag; 1351dc38852aSEric Blake bool vflag; 1352dc38852aSEric Blake bool Cflag; 1353dc38852aSEric Blake bool Pflag; 1354dc38852aSEric Blake bool zflag; 1355a91f9584SFam Zheng BlockAcctCookie acct; 1356797ac58cSKevin Wolf int pattern; 135750290c00SAlex Bennée struct timespec t1; 1358797ac58cSKevin Wolf }; 1359797ac58cSKevin Wolf 1360797ac58cSKevin Wolf static void aio_write_done(void *opaque, int ret) 1361797ac58cSKevin Wolf { 1362797ac58cSKevin Wolf struct aio_ctx *ctx = opaque; 136350290c00SAlex Bennée struct timespec t2; 1364797ac58cSKevin Wolf 136550290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 1366797ac58cSKevin Wolf 1367797ac58cSKevin Wolf 1368797ac58cSKevin Wolf if (ret < 0) { 1369797ac58cSKevin Wolf printf("aio_write failed: %s\n", strerror(-ret)); 1370556c2b60SAlberto Garcia block_acct_failed(blk_get_stats(ctx->blk), &ctx->acct); 1371797ac58cSKevin Wolf goto out; 1372797ac58cSKevin Wolf } 1373797ac58cSKevin Wolf 13744c7b7e9bSMax Reitz block_acct_done(blk_get_stats(ctx->blk), &ctx->acct); 1375a91f9584SFam Zheng 1376797ac58cSKevin Wolf if (ctx->qflag) { 1377797ac58cSKevin Wolf goto out; 1378797ac58cSKevin Wolf } 1379797ac58cSKevin Wolf 1380797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1381797ac58cSKevin Wolf t2 = tsub(t2, ctx->t1); 1382797ac58cSKevin Wolf print_report("wrote", &t2, ctx->offset, ctx->qiov.size, 1383797ac58cSKevin Wolf ctx->qiov.size, 1, ctx->Cflag); 1384797ac58cSKevin Wolf out: 13855ceb7765SKevin Wolf if (!ctx->zflag) { 1386797ac58cSKevin Wolf qemu_io_free(ctx->buf); 1387797ac58cSKevin Wolf qemu_iovec_destroy(&ctx->qiov); 13885ceb7765SKevin Wolf } 1389797ac58cSKevin Wolf g_free(ctx); 1390797ac58cSKevin Wolf } 1391797ac58cSKevin Wolf 1392797ac58cSKevin Wolf static void aio_read_done(void *opaque, int ret) 1393797ac58cSKevin Wolf { 1394797ac58cSKevin Wolf struct aio_ctx *ctx = opaque; 139550290c00SAlex Bennée struct timespec t2; 1396797ac58cSKevin Wolf 139750290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 1398797ac58cSKevin Wolf 1399797ac58cSKevin Wolf if (ret < 0) { 1400797ac58cSKevin Wolf printf("readv failed: %s\n", strerror(-ret)); 1401556c2b60SAlberto Garcia block_acct_failed(blk_get_stats(ctx->blk), &ctx->acct); 1402797ac58cSKevin Wolf goto out; 1403797ac58cSKevin Wolf } 1404797ac58cSKevin Wolf 1405797ac58cSKevin Wolf if (ctx->Pflag) { 1406797ac58cSKevin Wolf void *cmp_buf = g_malloc(ctx->qiov.size); 1407797ac58cSKevin Wolf 1408797ac58cSKevin Wolf memset(cmp_buf, ctx->pattern, ctx->qiov.size); 1409797ac58cSKevin Wolf if (memcmp(ctx->buf, cmp_buf, ctx->qiov.size)) { 1410797ac58cSKevin Wolf printf("Pattern verification failed at offset %" 1411cf67b692SStefan Weil PRId64 ", %zu bytes\n", ctx->offset, ctx->qiov.size); 1412797ac58cSKevin Wolf } 1413797ac58cSKevin Wolf g_free(cmp_buf); 1414797ac58cSKevin Wolf } 1415797ac58cSKevin Wolf 14164c7b7e9bSMax Reitz block_acct_done(blk_get_stats(ctx->blk), &ctx->acct); 1417a91f9584SFam Zheng 1418797ac58cSKevin Wolf if (ctx->qflag) { 1419797ac58cSKevin Wolf goto out; 1420797ac58cSKevin Wolf } 1421797ac58cSKevin Wolf 1422797ac58cSKevin Wolf if (ctx->vflag) { 1423797ac58cSKevin Wolf dump_buffer(ctx->buf, ctx->offset, ctx->qiov.size); 1424797ac58cSKevin Wolf } 1425797ac58cSKevin Wolf 1426797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1427797ac58cSKevin Wolf t2 = tsub(t2, ctx->t1); 1428797ac58cSKevin Wolf print_report("read", &t2, ctx->offset, ctx->qiov.size, 1429797ac58cSKevin Wolf ctx->qiov.size, 1, ctx->Cflag); 1430797ac58cSKevin Wolf out: 1431797ac58cSKevin Wolf qemu_io_free(ctx->buf); 1432797ac58cSKevin Wolf qemu_iovec_destroy(&ctx->qiov); 1433797ac58cSKevin Wolf g_free(ctx); 1434797ac58cSKevin Wolf } 1435797ac58cSKevin Wolf 1436797ac58cSKevin Wolf static void aio_read_help(void) 1437797ac58cSKevin Wolf { 1438797ac58cSKevin Wolf printf( 1439797ac58cSKevin Wolf "\n" 1440797ac58cSKevin Wolf " asynchronously reads a range of bytes from the given offset\n" 1441797ac58cSKevin Wolf "\n" 1442797ac58cSKevin Wolf " Example:\n" 1443797ac58cSKevin Wolf " 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n" 1444797ac58cSKevin Wolf "\n" 1445797ac58cSKevin Wolf " Reads a segment of the currently open file, optionally dumping it to the\n" 1446797ac58cSKevin Wolf " standard output stream (with -v option) for subsequent inspection.\n" 1447797ac58cSKevin Wolf " The read is performed asynchronously and the aio_flush command must be\n" 1448797ac58cSKevin Wolf " used to ensure all outstanding aio requests have been completed.\n" 1449b32d7a39SMax Reitz " Note that due to its asynchronous nature, this command will be\n" 1450b32d7a39SMax Reitz " considered successful once the request is submitted, independently\n" 1451b32d7a39SMax Reitz " of potential I/O errors or pattern mismatches.\n" 1452797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 1453797ac58cSKevin Wolf " -P, -- use a pattern to verify read data\n" 145437546ff2SEric Blake " -i, -- treat request as invalid, for exercising stats\n" 1455797ac58cSKevin Wolf " -v, -- dump buffer to standard output\n" 1456797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 1457797ac58cSKevin Wolf "\n"); 1458797ac58cSKevin Wolf } 1459797ac58cSKevin Wolf 1460b32d7a39SMax Reitz static int aio_read_f(BlockBackend *blk, int argc, char **argv); 1461797ac58cSKevin Wolf 1462797ac58cSKevin Wolf static const cmdinfo_t aio_read_cmd = { 1463797ac58cSKevin Wolf .name = "aio_read", 1464797ac58cSKevin Wolf .cfunc = aio_read_f, 1465797ac58cSKevin Wolf .argmin = 2, 1466797ac58cSKevin Wolf .argmax = -1, 146737546ff2SEric Blake .args = "[-Ciqv] [-P pattern] off len [len..]", 1468797ac58cSKevin Wolf .oneline = "asynchronously reads a number of bytes", 1469797ac58cSKevin Wolf .help = aio_read_help, 1470797ac58cSKevin Wolf }; 1471797ac58cSKevin Wolf 1472b32d7a39SMax Reitz static int aio_read_f(BlockBackend *blk, int argc, char **argv) 1473797ac58cSKevin Wolf { 1474797ac58cSKevin Wolf int nr_iov, c; 1475797ac58cSKevin Wolf struct aio_ctx *ctx = g_new0(struct aio_ctx, 1); 1476797ac58cSKevin Wolf 14774c7b7e9bSMax Reitz ctx->blk = blk; 147837546ff2SEric Blake while ((c = getopt(argc, argv, "CP:iqv")) != -1) { 1479797ac58cSKevin Wolf switch (c) { 1480797ac58cSKevin Wolf case 'C': 1481dc38852aSEric Blake ctx->Cflag = true; 1482797ac58cSKevin Wolf break; 1483797ac58cSKevin Wolf case 'P': 1484dc38852aSEric Blake ctx->Pflag = true; 1485797ac58cSKevin Wolf ctx->pattern = parse_pattern(optarg); 1486797ac58cSKevin Wolf if (ctx->pattern < 0) { 1487797ac58cSKevin Wolf g_free(ctx); 1488b32d7a39SMax Reitz return -EINVAL; 1489797ac58cSKevin Wolf } 1490797ac58cSKevin Wolf break; 149137546ff2SEric Blake case 'i': 149237546ff2SEric Blake printf("injecting invalid read request\n"); 149337546ff2SEric Blake block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_READ); 149437546ff2SEric Blake g_free(ctx); 1495b32d7a39SMax Reitz return 0; 1496797ac58cSKevin Wolf case 'q': 1497dc38852aSEric Blake ctx->qflag = true; 1498797ac58cSKevin Wolf break; 1499797ac58cSKevin Wolf case 'v': 1500dc38852aSEric Blake ctx->vflag = true; 1501797ac58cSKevin Wolf break; 1502797ac58cSKevin Wolf default: 1503797ac58cSKevin Wolf g_free(ctx); 1504b444d0e9SMax Reitz qemuio_command_usage(&aio_read_cmd); 1505b32d7a39SMax Reitz return -EINVAL; 1506797ac58cSKevin Wolf } 1507797ac58cSKevin Wolf } 1508797ac58cSKevin Wolf 1509797ac58cSKevin Wolf if (optind > argc - 2) { 1510797ac58cSKevin Wolf g_free(ctx); 1511b444d0e9SMax Reitz qemuio_command_usage(&aio_read_cmd); 1512b32d7a39SMax Reitz return -EINVAL; 1513797ac58cSKevin Wolf } 1514797ac58cSKevin Wolf 1515797ac58cSKevin Wolf ctx->offset = cvtnum(argv[optind]); 1516797ac58cSKevin Wolf if (ctx->offset < 0) { 1517b32d7a39SMax Reitz int ret = ctx->offset; 1518b32d7a39SMax Reitz print_cvtnum_err(ret, argv[optind]); 1519797ac58cSKevin Wolf g_free(ctx); 1520b32d7a39SMax Reitz return ret; 1521797ac58cSKevin Wolf } 1522797ac58cSKevin Wolf optind++; 1523797ac58cSKevin Wolf 1524797ac58cSKevin Wolf nr_iov = argc - optind; 15254c7b7e9bSMax Reitz ctx->buf = create_iovec(blk, &ctx->qiov, &argv[optind], nr_iov, 0xab); 1526797ac58cSKevin Wolf if (ctx->buf == NULL) { 1527556c2b60SAlberto Garcia block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_READ); 1528797ac58cSKevin Wolf g_free(ctx); 1529b32d7a39SMax Reitz return -EINVAL; 1530797ac58cSKevin Wolf } 1531797ac58cSKevin Wolf 153250290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &ctx->t1); 15334c7b7e9bSMax Reitz block_acct_start(blk_get_stats(blk), &ctx->acct, ctx->qiov.size, 15344c7b7e9bSMax Reitz BLOCK_ACCT_READ); 15357b3f9712SEric Blake blk_aio_preadv(blk, ctx->offset, &ctx->qiov, 0, aio_read_done, ctx); 1536b32d7a39SMax Reitz return 0; 1537797ac58cSKevin Wolf } 1538797ac58cSKevin Wolf 1539797ac58cSKevin Wolf static void aio_write_help(void) 1540797ac58cSKevin Wolf { 1541797ac58cSKevin Wolf printf( 1542797ac58cSKevin Wolf "\n" 1543797ac58cSKevin Wolf " asynchronously writes a range of bytes from the given offset source\n" 1544797ac58cSKevin Wolf " from multiple buffers\n" 1545797ac58cSKevin Wolf "\n" 1546797ac58cSKevin Wolf " Example:\n" 1547797ac58cSKevin Wolf " 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n" 1548797ac58cSKevin Wolf "\n" 1549797ac58cSKevin Wolf " Writes into a segment of the currently open file, using a buffer\n" 1550797ac58cSKevin Wolf " filled with a set pattern (0xcdcdcdcd).\n" 1551797ac58cSKevin Wolf " The write is performed asynchronously and the aio_flush command must be\n" 1552797ac58cSKevin Wolf " used to ensure all outstanding aio requests have been completed.\n" 1553b32d7a39SMax Reitz " Note that due to its asynchronous nature, this command will be\n" 1554b32d7a39SMax Reitz " considered successful once the request is submitted, independently\n" 1555b32d7a39SMax Reitz " of potential I/O errors or pattern mismatches.\n" 1556797ac58cSKevin Wolf " -P, -- use different pattern to fill file\n" 1557797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 1558770e0e0eSEric Blake " -f, -- use Force Unit Access semantics\n" 155937546ff2SEric Blake " -i, -- treat request as invalid, for exercising stats\n" 1560797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 1561c2e001ccSEric Blake " -u, -- with -z, allow unmapping\n" 1562d004bd52SEric Blake " -z, -- write zeroes using blk_aio_pwrite_zeroes\n" 1563797ac58cSKevin Wolf "\n"); 1564797ac58cSKevin Wolf } 1565797ac58cSKevin Wolf 1566b32d7a39SMax Reitz static int aio_write_f(BlockBackend *blk, int argc, char **argv); 1567797ac58cSKevin Wolf 1568797ac58cSKevin Wolf static const cmdinfo_t aio_write_cmd = { 1569797ac58cSKevin Wolf .name = "aio_write", 1570797ac58cSKevin Wolf .cfunc = aio_write_f, 1571887354bdSKevin Wolf .perm = BLK_PERM_WRITE, 1572797ac58cSKevin Wolf .argmin = 2, 1573797ac58cSKevin Wolf .argmax = -1, 157437546ff2SEric Blake .args = "[-Cfiquz] [-P pattern] off len [len..]", 1575797ac58cSKevin Wolf .oneline = "asynchronously writes a number of bytes", 1576797ac58cSKevin Wolf .help = aio_write_help, 1577797ac58cSKevin Wolf }; 1578797ac58cSKevin Wolf 1579b32d7a39SMax Reitz static int aio_write_f(BlockBackend *blk, int argc, char **argv) 1580797ac58cSKevin Wolf { 1581797ac58cSKevin Wolf int nr_iov, c; 1582797ac58cSKevin Wolf int pattern = 0xcd; 1583797ac58cSKevin Wolf struct aio_ctx *ctx = g_new0(struct aio_ctx, 1); 1584770e0e0eSEric Blake int flags = 0; 1585797ac58cSKevin Wolf 15864c7b7e9bSMax Reitz ctx->blk = blk; 158737546ff2SEric Blake while ((c = getopt(argc, argv, "CfiqP:uz")) != -1) { 1588797ac58cSKevin Wolf switch (c) { 1589797ac58cSKevin Wolf case 'C': 1590dc38852aSEric Blake ctx->Cflag = true; 1591797ac58cSKevin Wolf break; 1592770e0e0eSEric Blake case 'f': 1593770e0e0eSEric Blake flags |= BDRV_REQ_FUA; 1594770e0e0eSEric Blake break; 1595797ac58cSKevin Wolf case 'q': 1596dc38852aSEric Blake ctx->qflag = true; 1597797ac58cSKevin Wolf break; 1598c2e001ccSEric Blake case 'u': 1599c2e001ccSEric Blake flags |= BDRV_REQ_MAY_UNMAP; 1600c2e001ccSEric Blake break; 1601797ac58cSKevin Wolf case 'P': 1602797ac58cSKevin Wolf pattern = parse_pattern(optarg); 1603797ac58cSKevin Wolf if (pattern < 0) { 1604797ac58cSKevin Wolf g_free(ctx); 1605b32d7a39SMax Reitz return -EINVAL; 1606797ac58cSKevin Wolf } 1607797ac58cSKevin Wolf break; 160837546ff2SEric Blake case 'i': 160937546ff2SEric Blake printf("injecting invalid write request\n"); 161037546ff2SEric Blake block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_WRITE); 161137546ff2SEric Blake g_free(ctx); 1612b32d7a39SMax Reitz return 0; 16135ceb7765SKevin Wolf case 'z': 1614dc38852aSEric Blake ctx->zflag = true; 16155ceb7765SKevin Wolf break; 1616797ac58cSKevin Wolf default: 1617797ac58cSKevin Wolf g_free(ctx); 1618b444d0e9SMax Reitz qemuio_command_usage(&aio_write_cmd); 1619b32d7a39SMax Reitz return -EINVAL; 1620797ac58cSKevin Wolf } 1621797ac58cSKevin Wolf } 1622797ac58cSKevin Wolf 1623797ac58cSKevin Wolf if (optind > argc - 2) { 1624797ac58cSKevin Wolf g_free(ctx); 1625b444d0e9SMax Reitz qemuio_command_usage(&aio_write_cmd); 1626b32d7a39SMax Reitz return -EINVAL; 1627797ac58cSKevin Wolf } 1628797ac58cSKevin Wolf 16295ceb7765SKevin Wolf if (ctx->zflag && optind != argc - 2) { 16305ceb7765SKevin Wolf printf("-z supports only a single length parameter\n"); 16315ceb7765SKevin Wolf g_free(ctx); 1632b32d7a39SMax Reitz return -EINVAL; 16335ceb7765SKevin Wolf } 16345ceb7765SKevin Wolf 1635c2e001ccSEric Blake if ((flags & BDRV_REQ_MAY_UNMAP) && !ctx->zflag) { 1636c2e001ccSEric Blake printf("-u requires -z to be specified\n"); 16374ca1d340SEric Blake g_free(ctx); 1638b32d7a39SMax Reitz return -EINVAL; 1639c2e001ccSEric Blake } 1640c2e001ccSEric Blake 16415ceb7765SKevin Wolf if (ctx->zflag && ctx->Pflag) { 16425ceb7765SKevin Wolf printf("-z and -P cannot be specified at the same time\n"); 16435ceb7765SKevin Wolf g_free(ctx); 1644b32d7a39SMax Reitz return -EINVAL; 16455ceb7765SKevin Wolf } 16465ceb7765SKevin Wolf 1647797ac58cSKevin Wolf ctx->offset = cvtnum(argv[optind]); 1648797ac58cSKevin Wolf if (ctx->offset < 0) { 1649b32d7a39SMax Reitz int ret = ctx->offset; 1650b32d7a39SMax Reitz print_cvtnum_err(ret, argv[optind]); 1651797ac58cSKevin Wolf g_free(ctx); 1652b32d7a39SMax Reitz return ret; 1653797ac58cSKevin Wolf } 1654797ac58cSKevin Wolf optind++; 1655797ac58cSKevin Wolf 16565ceb7765SKevin Wolf if (ctx->zflag) { 16575ceb7765SKevin Wolf int64_t count = cvtnum(argv[optind]); 16585ceb7765SKevin Wolf if (count < 0) { 16595ceb7765SKevin Wolf print_cvtnum_err(count, argv[optind]); 16600e01b76eSKevin Wolf g_free(ctx); 1661b32d7a39SMax Reitz return count; 16625ceb7765SKevin Wolf } 16635ceb7765SKevin Wolf 16645ceb7765SKevin Wolf ctx->qiov.size = count; 1665d004bd52SEric Blake blk_aio_pwrite_zeroes(blk, ctx->offset, count, flags, aio_write_done, 1666770e0e0eSEric Blake ctx); 16675ceb7765SKevin Wolf } else { 1668797ac58cSKevin Wolf nr_iov = argc - optind; 16695ceb7765SKevin Wolf ctx->buf = create_iovec(blk, &ctx->qiov, &argv[optind], nr_iov, 16705ceb7765SKevin Wolf pattern); 1671797ac58cSKevin Wolf if (ctx->buf == NULL) { 1672556c2b60SAlberto Garcia block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_WRITE); 1673797ac58cSKevin Wolf g_free(ctx); 1674b32d7a39SMax Reitz return -EINVAL; 1675797ac58cSKevin Wolf } 1676797ac58cSKevin Wolf 167750290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &ctx->t1); 16784c7b7e9bSMax Reitz block_acct_start(blk_get_stats(blk), &ctx->acct, ctx->qiov.size, 16794c7b7e9bSMax Reitz BLOCK_ACCT_WRITE); 16805ceb7765SKevin Wolf 1681770e0e0eSEric Blake blk_aio_pwritev(blk, ctx->offset, &ctx->qiov, flags, aio_write_done, 1682770e0e0eSEric Blake ctx); 16835ceb7765SKevin Wolf } 1684b32d7a39SMax Reitz 1685b32d7a39SMax Reitz return 0; 1686797ac58cSKevin Wolf } 1687797ac58cSKevin Wolf 1688b32d7a39SMax Reitz static int aio_flush_f(BlockBackend *blk, int argc, char **argv) 1689797ac58cSKevin Wolf { 1690556c2b60SAlberto Garcia BlockAcctCookie cookie; 1691556c2b60SAlberto Garcia block_acct_start(blk_get_stats(blk), &cookie, 0, BLOCK_ACCT_FLUSH); 16924c7b7e9bSMax Reitz blk_drain_all(); 1693556c2b60SAlberto Garcia block_acct_done(blk_get_stats(blk), &cookie); 1694b32d7a39SMax Reitz return 0; 1695797ac58cSKevin Wolf } 1696797ac58cSKevin Wolf 1697797ac58cSKevin Wolf static const cmdinfo_t aio_flush_cmd = { 1698797ac58cSKevin Wolf .name = "aio_flush", 1699797ac58cSKevin Wolf .cfunc = aio_flush_f, 1700797ac58cSKevin Wolf .oneline = "completes all outstanding aio requests" 1701797ac58cSKevin Wolf }; 1702797ac58cSKevin Wolf 1703b32d7a39SMax Reitz static int flush_f(BlockBackend *blk, int argc, char **argv) 1704797ac58cSKevin Wolf { 1705b32d7a39SMax Reitz return blk_flush(blk); 1706797ac58cSKevin Wolf } 1707797ac58cSKevin Wolf 1708797ac58cSKevin Wolf static const cmdinfo_t flush_cmd = { 1709797ac58cSKevin Wolf .name = "flush", 1710797ac58cSKevin Wolf .altname = "f", 1711797ac58cSKevin Wolf .cfunc = flush_f, 1712797ac58cSKevin Wolf .oneline = "flush all in-core file state to disk", 1713797ac58cSKevin Wolf }; 1714797ac58cSKevin Wolf 171542ba0225SVladimir Sementsov-Ogievskiy static int truncate_f(BlockBackend *blk, int argc, char **argv); 171642ba0225SVladimir Sementsov-Ogievskiy static const cmdinfo_t truncate_cmd = { 171742ba0225SVladimir Sementsov-Ogievskiy .name = "truncate", 171842ba0225SVladimir Sementsov-Ogievskiy .altname = "t", 171942ba0225SVladimir Sementsov-Ogievskiy .cfunc = truncate_f, 172042ba0225SVladimir Sementsov-Ogievskiy .perm = BLK_PERM_WRITE | BLK_PERM_RESIZE, 172142ba0225SVladimir Sementsov-Ogievskiy .argmin = 1, 172242ba0225SVladimir Sementsov-Ogievskiy .argmax = 3, 172342ba0225SVladimir Sementsov-Ogievskiy .args = "[-m prealloc_mode] off", 172442ba0225SVladimir Sementsov-Ogievskiy .oneline = "truncates the current file at the given offset", 172542ba0225SVladimir Sementsov-Ogievskiy }; 172642ba0225SVladimir Sementsov-Ogievskiy 1727b32d7a39SMax Reitz static int truncate_f(BlockBackend *blk, int argc, char **argv) 1728797ac58cSKevin Wolf { 1729ed3d2ec9SMax Reitz Error *local_err = NULL; 1730797ac58cSKevin Wolf int64_t offset; 173142ba0225SVladimir Sementsov-Ogievskiy int c, ret; 173242ba0225SVladimir Sementsov-Ogievskiy PreallocMode prealloc = PREALLOC_MODE_OFF; 1733797ac58cSKevin Wolf 173442ba0225SVladimir Sementsov-Ogievskiy while ((c = getopt(argc, argv, "m:")) != -1) { 173542ba0225SVladimir Sementsov-Ogievskiy switch (c) { 173642ba0225SVladimir Sementsov-Ogievskiy case 'm': 173742ba0225SVladimir Sementsov-Ogievskiy prealloc = qapi_enum_parse(&PreallocMode_lookup, optarg, 173842ba0225SVladimir Sementsov-Ogievskiy PREALLOC_MODE__MAX, NULL); 173942ba0225SVladimir Sementsov-Ogievskiy if (prealloc == PREALLOC_MODE__MAX) { 174042ba0225SVladimir Sementsov-Ogievskiy error_report("Invalid preallocation mode '%s'", optarg); 174142ba0225SVladimir Sementsov-Ogievskiy return -EINVAL; 174242ba0225SVladimir Sementsov-Ogievskiy } 174342ba0225SVladimir Sementsov-Ogievskiy break; 174442ba0225SVladimir Sementsov-Ogievskiy default: 174542ba0225SVladimir Sementsov-Ogievskiy qemuio_command_usage(&truncate_cmd); 174642ba0225SVladimir Sementsov-Ogievskiy return -EINVAL; 174742ba0225SVladimir Sementsov-Ogievskiy } 174842ba0225SVladimir Sementsov-Ogievskiy } 174942ba0225SVladimir Sementsov-Ogievskiy 175042ba0225SVladimir Sementsov-Ogievskiy offset = cvtnum(argv[optind]); 1751797ac58cSKevin Wolf if (offset < 0) { 1752a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[1]); 1753b32d7a39SMax Reitz return offset; 1754797ac58cSKevin Wolf } 1755797ac58cSKevin Wolf 1756e8d04f92SMax Reitz /* 1757e8d04f92SMax Reitz * qemu-io is a debugging tool, so let us be strict here and pass 1758e8d04f92SMax Reitz * exact=true. It is better to err on the "emit more errors" side 1759e8d04f92SMax Reitz * than to be overly permissive. 1760e8d04f92SMax Reitz */ 176142ba0225SVladimir Sementsov-Ogievskiy ret = blk_truncate(blk, offset, false, prealloc, 0, &local_err); 1762797ac58cSKevin Wolf if (ret < 0) { 1763ed3d2ec9SMax Reitz error_report_err(local_err); 1764b32d7a39SMax Reitz return ret; 1765797ac58cSKevin Wolf } 1766b32d7a39SMax Reitz 1767b32d7a39SMax Reitz return 0; 1768797ac58cSKevin Wolf } 1769797ac58cSKevin Wolf 1770b32d7a39SMax Reitz static int length_f(BlockBackend *blk, int argc, char **argv) 1771797ac58cSKevin Wolf { 1772797ac58cSKevin Wolf int64_t size; 1773797ac58cSKevin Wolf char s1[64]; 1774797ac58cSKevin Wolf 17754c7b7e9bSMax Reitz size = blk_getlength(blk); 1776797ac58cSKevin Wolf if (size < 0) { 1777797ac58cSKevin Wolf printf("getlength: %s\n", strerror(-size)); 1778b32d7a39SMax Reitz return size; 1779797ac58cSKevin Wolf } 1780797ac58cSKevin Wolf 1781797ac58cSKevin Wolf cvtstr(size, s1, sizeof(s1)); 1782797ac58cSKevin Wolf printf("%s\n", s1); 1783b32d7a39SMax Reitz return 0; 1784797ac58cSKevin Wolf } 1785797ac58cSKevin Wolf 1786797ac58cSKevin Wolf 1787797ac58cSKevin Wolf static const cmdinfo_t length_cmd = { 1788797ac58cSKevin Wolf .name = "length", 1789797ac58cSKevin Wolf .altname = "l", 1790797ac58cSKevin Wolf .cfunc = length_f, 1791797ac58cSKevin Wolf .oneline = "gets the length of the current file", 1792797ac58cSKevin Wolf }; 1793797ac58cSKevin Wolf 1794797ac58cSKevin Wolf 1795b32d7a39SMax Reitz static int info_f(BlockBackend *blk, int argc, char **argv) 1796797ac58cSKevin Wolf { 17974c7b7e9bSMax Reitz BlockDriverState *bs = blk_bs(blk); 1798797ac58cSKevin Wolf BlockDriverInfo bdi; 1799a8d8ecb7SMax Reitz ImageInfoSpecific *spec_info; 18001bf6e9caSAndrey Shinkevich Error *local_err = NULL; 1801797ac58cSKevin Wolf char s1[64], s2[64]; 1802797ac58cSKevin Wolf int ret; 1803797ac58cSKevin Wolf 1804797ac58cSKevin Wolf if (bs->drv && bs->drv->format_name) { 1805797ac58cSKevin Wolf printf("format name: %s\n", bs->drv->format_name); 1806797ac58cSKevin Wolf } 1807797ac58cSKevin Wolf if (bs->drv && bs->drv->protocol_name) { 1808797ac58cSKevin Wolf printf("format name: %s\n", bs->drv->protocol_name); 1809797ac58cSKevin Wolf } 1810797ac58cSKevin Wolf 1811797ac58cSKevin Wolf ret = bdrv_get_info(bs, &bdi); 1812797ac58cSKevin Wolf if (ret) { 1813b32d7a39SMax Reitz return ret; 1814797ac58cSKevin Wolf } 1815797ac58cSKevin Wolf 1816797ac58cSKevin Wolf cvtstr(bdi.cluster_size, s1, sizeof(s1)); 1817797ac58cSKevin Wolf cvtstr(bdi.vm_state_offset, s2, sizeof(s2)); 1818797ac58cSKevin Wolf 1819797ac58cSKevin Wolf printf("cluster size: %s\n", s1); 1820797ac58cSKevin Wolf printf("vm state offset: %s\n", s2); 1821797ac58cSKevin Wolf 18221bf6e9caSAndrey Shinkevich spec_info = bdrv_get_specific_info(bs, &local_err); 18231bf6e9caSAndrey Shinkevich if (local_err) { 18241bf6e9caSAndrey Shinkevich error_report_err(local_err); 18251bf6e9caSAndrey Shinkevich return -EIO; 18261bf6e9caSAndrey Shinkevich } 1827a8d8ecb7SMax Reitz if (spec_info) { 1828a8d8ecb7SMax Reitz printf("Format specific information:\n"); 1829e1ce7d74SMarkus Armbruster bdrv_image_info_specific_dump(spec_info); 1830a8d8ecb7SMax Reitz qapi_free_ImageInfoSpecific(spec_info); 1831a8d8ecb7SMax Reitz } 1832b32d7a39SMax Reitz 1833b32d7a39SMax Reitz return 0; 1834797ac58cSKevin Wolf } 1835797ac58cSKevin Wolf 1836797ac58cSKevin Wolf 1837797ac58cSKevin Wolf 1838797ac58cSKevin Wolf static const cmdinfo_t info_cmd = { 1839797ac58cSKevin Wolf .name = "info", 1840797ac58cSKevin Wolf .altname = "i", 1841797ac58cSKevin Wolf .cfunc = info_f, 1842797ac58cSKevin Wolf .oneline = "prints information about the current file", 1843797ac58cSKevin Wolf }; 1844797ac58cSKevin Wolf 1845797ac58cSKevin Wolf static void discard_help(void) 1846797ac58cSKevin Wolf { 1847797ac58cSKevin Wolf printf( 1848797ac58cSKevin Wolf "\n" 1849797ac58cSKevin Wolf " discards a range of bytes from the given offset\n" 1850797ac58cSKevin Wolf "\n" 1851797ac58cSKevin Wolf " Example:\n" 1852797ac58cSKevin Wolf " 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n" 1853797ac58cSKevin Wolf "\n" 1854797ac58cSKevin Wolf " Discards a segment of the currently open file.\n" 1855797ac58cSKevin Wolf " -C, -- report statistics in a machine parsable format\n" 1856797ac58cSKevin Wolf " -q, -- quiet mode, do not show I/O statistics\n" 1857797ac58cSKevin Wolf "\n"); 1858797ac58cSKevin Wolf } 1859797ac58cSKevin Wolf 1860b32d7a39SMax Reitz static int discard_f(BlockBackend *blk, int argc, char **argv); 1861797ac58cSKevin Wolf 1862797ac58cSKevin Wolf static const cmdinfo_t discard_cmd = { 1863797ac58cSKevin Wolf .name = "discard", 1864797ac58cSKevin Wolf .altname = "d", 1865797ac58cSKevin Wolf .cfunc = discard_f, 1866887354bdSKevin Wolf .perm = BLK_PERM_WRITE, 1867797ac58cSKevin Wolf .argmin = 2, 1868797ac58cSKevin Wolf .argmax = -1, 1869797ac58cSKevin Wolf .args = "[-Cq] off len", 1870797ac58cSKevin Wolf .oneline = "discards a number of bytes at a specified offset", 1871797ac58cSKevin Wolf .help = discard_help, 1872797ac58cSKevin Wolf }; 1873797ac58cSKevin Wolf 1874b32d7a39SMax Reitz static int discard_f(BlockBackend *blk, int argc, char **argv) 1875797ac58cSKevin Wolf { 187650290c00SAlex Bennée struct timespec t1, t2; 1877dc38852aSEric Blake bool Cflag = false, qflag = false; 1878797ac58cSKevin Wolf int c, ret; 1879f5a5ca79SManos Pitsidianakis int64_t offset, bytes; 1880797ac58cSKevin Wolf 1881b062ad86SEric Blake while ((c = getopt(argc, argv, "Cq")) != -1) { 1882797ac58cSKevin Wolf switch (c) { 1883797ac58cSKevin Wolf case 'C': 1884dc38852aSEric Blake Cflag = true; 1885797ac58cSKevin Wolf break; 1886797ac58cSKevin Wolf case 'q': 1887dc38852aSEric Blake qflag = true; 1888797ac58cSKevin Wolf break; 1889797ac58cSKevin Wolf default: 1890b444d0e9SMax Reitz qemuio_command_usage(&discard_cmd); 1891b32d7a39SMax Reitz return -EINVAL; 1892797ac58cSKevin Wolf } 1893797ac58cSKevin Wolf } 1894797ac58cSKevin Wolf 1895797ac58cSKevin Wolf if (optind != argc - 2) { 1896b444d0e9SMax Reitz qemuio_command_usage(&discard_cmd); 1897b32d7a39SMax Reitz return -EINVAL; 1898797ac58cSKevin Wolf } 1899797ac58cSKevin Wolf 1900797ac58cSKevin Wolf offset = cvtnum(argv[optind]); 1901797ac58cSKevin Wolf if (offset < 0) { 1902a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[optind]); 1903b32d7a39SMax Reitz return offset; 1904797ac58cSKevin Wolf } 1905797ac58cSKevin Wolf 1906797ac58cSKevin Wolf optind++; 1907f5a5ca79SManos Pitsidianakis bytes = cvtnum(argv[optind]); 1908f5a5ca79SManos Pitsidianakis if (bytes < 0) { 1909f5a5ca79SManos Pitsidianakis print_cvtnum_err(bytes, argv[optind]); 1910b32d7a39SMax Reitz return bytes; 191141ae31e3SAlberto Garcia } else if (bytes > BDRV_REQUEST_MAX_BYTES) { 19129b0beaf3SJohn Snow printf("length cannot exceed %"PRIu64", given %s\n", 191341ae31e3SAlberto Garcia (uint64_t)BDRV_REQUEST_MAX_BYTES, argv[optind]); 1914b32d7a39SMax Reitz return -EINVAL; 1915797ac58cSKevin Wolf } 1916797ac58cSKevin Wolf 191750290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t1); 1918f5a5ca79SManos Pitsidianakis ret = blk_pdiscard(blk, offset, bytes); 191950290c00SAlex Bennée clock_gettime(CLOCK_MONOTONIC, &t2); 1920797ac58cSKevin Wolf 1921797ac58cSKevin Wolf if (ret < 0) { 1922797ac58cSKevin Wolf printf("discard failed: %s\n", strerror(-ret)); 1923b32d7a39SMax Reitz return ret; 1924797ac58cSKevin Wolf } 1925797ac58cSKevin Wolf 1926797ac58cSKevin Wolf /* Finally, report back -- -C gives a parsable format */ 1927797ac58cSKevin Wolf if (!qflag) { 1928797ac58cSKevin Wolf t2 = tsub(t2, t1); 1929f5a5ca79SManos Pitsidianakis print_report("discard", &t2, offset, bytes, bytes, 1, Cflag); 1930797ac58cSKevin Wolf } 1931b32d7a39SMax Reitz 1932b32d7a39SMax Reitz return 0; 1933797ac58cSKevin Wolf } 1934797ac58cSKevin Wolf 1935b32d7a39SMax Reitz static int alloc_f(BlockBackend *blk, int argc, char **argv) 1936797ac58cSKevin Wolf { 19374c7b7e9bSMax Reitz BlockDriverState *bs = blk_bs(blk); 1938d6a644bbSEric Blake int64_t offset, start, remaining, count; 1939797ac58cSKevin Wolf char s1[64]; 1940d6a644bbSEric Blake int ret; 1941d6a644bbSEric Blake int64_t num, sum_alloc; 1942797ac58cSKevin Wolf 1943d6a644bbSEric Blake start = offset = cvtnum(argv[1]); 1944797ac58cSKevin Wolf if (offset < 0) { 1945a9ecfa00SJohn Snow print_cvtnum_err(offset, argv[1]); 1946b32d7a39SMax Reitz return offset; 1947797ac58cSKevin Wolf } 1948797ac58cSKevin Wolf 1949797ac58cSKevin Wolf if (argc == 3) { 19504401fdc7SEric Blake count = cvtnum(argv[2]); 19514401fdc7SEric Blake if (count < 0) { 19524401fdc7SEric Blake print_cvtnum_err(count, argv[2]); 1953b32d7a39SMax Reitz return count; 1954797ac58cSKevin Wolf } 1955797ac58cSKevin Wolf } else { 19564401fdc7SEric Blake count = BDRV_SECTOR_SIZE; 1957797ac58cSKevin Wolf } 1958797ac58cSKevin Wolf 1959d6a644bbSEric Blake remaining = count; 1960797ac58cSKevin Wolf sum_alloc = 0; 1961797ac58cSKevin Wolf while (remaining) { 1962d6a644bbSEric Blake ret = bdrv_is_allocated(bs, offset, remaining, &num); 1963d663640cSPaolo Bonzini if (ret < 0) { 1964d663640cSPaolo Bonzini printf("is_allocated failed: %s\n", strerror(-ret)); 1965b32d7a39SMax Reitz return ret; 1966d663640cSPaolo Bonzini } 1967d6a644bbSEric Blake offset += num; 1968797ac58cSKevin Wolf remaining -= num; 1969797ac58cSKevin Wolf if (ret) { 1970797ac58cSKevin Wolf sum_alloc += num; 1971797ac58cSKevin Wolf } 1972797ac58cSKevin Wolf if (num == 0) { 1973d6a644bbSEric Blake count -= remaining; 1974797ac58cSKevin Wolf remaining = 0; 1975797ac58cSKevin Wolf } 1976797ac58cSKevin Wolf } 1977797ac58cSKevin Wolf 1978d6a644bbSEric Blake cvtstr(start, s1, sizeof(s1)); 1979797ac58cSKevin Wolf 19804401fdc7SEric Blake printf("%"PRId64"/%"PRId64" bytes allocated at offset %s\n", 1981d6a644bbSEric Blake sum_alloc, count, s1); 1982b32d7a39SMax Reitz return 0; 1983797ac58cSKevin Wolf } 1984797ac58cSKevin Wolf 1985797ac58cSKevin Wolf static const cmdinfo_t alloc_cmd = { 1986797ac58cSKevin Wolf .name = "alloc", 1987797ac58cSKevin Wolf .altname = "a", 1988797ac58cSKevin Wolf .argmin = 1, 1989797ac58cSKevin Wolf .argmax = 2, 1990797ac58cSKevin Wolf .cfunc = alloc_f, 19914401fdc7SEric Blake .args = "offset [count]", 19924401fdc7SEric Blake .oneline = "checks if offset is allocated in the file", 1993797ac58cSKevin Wolf }; 1994797ac58cSKevin Wolf 1995797ac58cSKevin Wolf 1996d6a644bbSEric Blake static int map_is_allocated(BlockDriverState *bs, int64_t offset, 1997d6a644bbSEric Blake int64_t bytes, int64_t *pnum) 1998797ac58cSKevin Wolf { 1999d6a644bbSEric Blake int64_t num; 2000797ac58cSKevin Wolf int ret, firstret; 2001797ac58cSKevin Wolf 2002087f2fb3SEric Blake ret = bdrv_is_allocated(bs, offset, bytes, &num); 2003797ac58cSKevin Wolf if (ret < 0) { 2004797ac58cSKevin Wolf return ret; 2005797ac58cSKevin Wolf } 2006797ac58cSKevin Wolf 2007797ac58cSKevin Wolf firstret = ret; 2008797ac58cSKevin Wolf *pnum = num; 2009797ac58cSKevin Wolf 2010d6a644bbSEric Blake while (bytes > 0 && ret == firstret) { 2011d6a644bbSEric Blake offset += num; 2012d6a644bbSEric Blake bytes -= num; 2013797ac58cSKevin Wolf 2014087f2fb3SEric Blake ret = bdrv_is_allocated(bs, offset, bytes, &num); 20154b25bbc4SMax Reitz if (ret == firstret && num) { 2016797ac58cSKevin Wolf *pnum += num; 2017797ac58cSKevin Wolf } else { 2018797ac58cSKevin Wolf break; 2019797ac58cSKevin Wolf } 2020797ac58cSKevin Wolf } 2021797ac58cSKevin Wolf 2022797ac58cSKevin Wolf return firstret; 2023797ac58cSKevin Wolf } 2024797ac58cSKevin Wolf 2025b32d7a39SMax Reitz static int map_f(BlockBackend *blk, int argc, char **argv) 2026797ac58cSKevin Wolf { 2027d6a644bbSEric Blake int64_t offset, bytes; 20286f3c90afSEric Blake char s1[64], s2[64]; 2029797ac58cSKevin Wolf int64_t num; 2030797ac58cSKevin Wolf int ret; 2031797ac58cSKevin Wolf const char *retstr; 2032797ac58cSKevin Wolf 2033797ac58cSKevin Wolf offset = 0; 2034d6a644bbSEric Blake bytes = blk_getlength(blk); 2035d6a644bbSEric Blake if (bytes < 0) { 2036d6a644bbSEric Blake error_report("Failed to query image length: %s", strerror(-bytes)); 2037b32d7a39SMax Reitz return bytes; 20384c7b7e9bSMax Reitz } 20394c7b7e9bSMax Reitz 2040d6a644bbSEric Blake while (bytes) { 2041d6a644bbSEric Blake ret = map_is_allocated(blk_bs(blk), offset, bytes, &num); 2042797ac58cSKevin Wolf if (ret < 0) { 2043797ac58cSKevin Wolf error_report("Failed to get allocation status: %s", strerror(-ret)); 2044b32d7a39SMax Reitz return ret; 20454b25bbc4SMax Reitz } else if (!num) { 20464b25bbc4SMax Reitz error_report("Unexpected end of image"); 2047b32d7a39SMax Reitz return -EIO; 2048797ac58cSKevin Wolf } 2049797ac58cSKevin Wolf 2050797ac58cSKevin Wolf retstr = ret ? " allocated" : "not allocated"; 2051d6a644bbSEric Blake cvtstr(num, s1, sizeof(s1)); 2052d6a644bbSEric Blake cvtstr(offset, s2, sizeof(s2)); 20536f3c90afSEric Blake printf("%s (0x%" PRIx64 ") bytes %s at offset %s (0x%" PRIx64 ")\n", 2054d6a644bbSEric Blake s1, num, retstr, s2, offset); 2055797ac58cSKevin Wolf 2056797ac58cSKevin Wolf offset += num; 2057d6a644bbSEric Blake bytes -= num; 2058d6a644bbSEric Blake } 2059b32d7a39SMax Reitz 2060b32d7a39SMax Reitz return 0; 2061797ac58cSKevin Wolf } 2062797ac58cSKevin Wolf 2063797ac58cSKevin Wolf static const cmdinfo_t map_cmd = { 2064797ac58cSKevin Wolf .name = "map", 2065797ac58cSKevin Wolf .argmin = 0, 2066797ac58cSKevin Wolf .argmax = 0, 2067797ac58cSKevin Wolf .cfunc = map_f, 2068797ac58cSKevin Wolf .args = "", 2069797ac58cSKevin Wolf .oneline = "prints the allocated areas of a file", 2070797ac58cSKevin Wolf }; 2071797ac58cSKevin Wolf 20725bbd2e59SKevin Wolf static void reopen_help(void) 20735bbd2e59SKevin Wolf { 20745bbd2e59SKevin Wolf printf( 20755bbd2e59SKevin Wolf "\n" 20765bbd2e59SKevin Wolf " Changes the open options of an already opened image\n" 20775bbd2e59SKevin Wolf "\n" 20785bbd2e59SKevin Wolf " Example:\n" 20795bbd2e59SKevin Wolf " 'reopen -o lazy-refcounts=on' - activates lazy refcount writeback on a qcow2 image\n" 20805bbd2e59SKevin Wolf "\n" 20815bbd2e59SKevin Wolf " -r, -- Reopen the image read-only\n" 2082ea92203cSKevin Wolf " -w, -- Reopen the image read-write\n" 20835bbd2e59SKevin Wolf " -c, -- Change the cache mode to the given value\n" 20845bbd2e59SKevin Wolf " -o, -- Changes block driver options (cf. 'open' command)\n" 20855bbd2e59SKevin Wolf "\n"); 20865bbd2e59SKevin Wolf } 20875bbd2e59SKevin Wolf 2088b32d7a39SMax Reitz static int reopen_f(BlockBackend *blk, int argc, char **argv); 20895bbd2e59SKevin Wolf 20905bbd2e59SKevin Wolf static QemuOptsList reopen_opts = { 20915bbd2e59SKevin Wolf .name = "reopen", 20925bbd2e59SKevin Wolf .merge_lists = true, 20935bbd2e59SKevin Wolf .head = QTAILQ_HEAD_INITIALIZER(reopen_opts.head), 20945bbd2e59SKevin Wolf .desc = { 20955bbd2e59SKevin Wolf /* no elements => accept any params */ 20965bbd2e59SKevin Wolf { /* end of list */ } 20975bbd2e59SKevin Wolf }, 20985bbd2e59SKevin Wolf }; 20995bbd2e59SKevin Wolf 21005bbd2e59SKevin Wolf static const cmdinfo_t reopen_cmd = { 21015bbd2e59SKevin Wolf .name = "reopen", 21025bbd2e59SKevin Wolf .argmin = 0, 21035bbd2e59SKevin Wolf .argmax = -1, 21045bbd2e59SKevin Wolf .cfunc = reopen_f, 2105ea92203cSKevin Wolf .args = "[(-r|-w)] [-c cache] [-o options]", 21065bbd2e59SKevin Wolf .oneline = "reopens an image with new options", 21075bbd2e59SKevin Wolf .help = reopen_help, 21085bbd2e59SKevin Wolf }; 21095bbd2e59SKevin Wolf 2110b32d7a39SMax Reitz static int reopen_f(BlockBackend *blk, int argc, char **argv) 21115bbd2e59SKevin Wolf { 21125bbd2e59SKevin Wolf BlockDriverState *bs = blk_bs(blk); 21135bbd2e59SKevin Wolf QemuOpts *qopts; 21145bbd2e59SKevin Wolf QDict *opts; 21155bbd2e59SKevin Wolf int c; 21165bbd2e59SKevin Wolf int flags = bs->open_flags; 211719dbecdcSKevin Wolf bool writethrough = !blk_enable_write_cache(blk); 2118ea92203cSKevin Wolf bool has_rw_option = false; 2119dc900c35SAlberto Garcia bool has_cache_option = false; 21205bbd2e59SKevin Wolf Error *local_err = NULL; 21215bbd2e59SKevin Wolf 2122ea92203cSKevin Wolf while ((c = getopt(argc, argv, "c:o:rw")) != -1) { 21235bbd2e59SKevin Wolf switch (c) { 21245bbd2e59SKevin Wolf case 'c': 212519dbecdcSKevin Wolf if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) { 21265bbd2e59SKevin Wolf error_report("Invalid cache option: %s", optarg); 2127b32d7a39SMax Reitz return -EINVAL; 21285bbd2e59SKevin Wolf } 2129dc900c35SAlberto Garcia has_cache_option = true; 21305bbd2e59SKevin Wolf break; 21315bbd2e59SKevin Wolf case 'o': 21325bbd2e59SKevin Wolf if (!qemu_opts_parse_noisily(&reopen_opts, optarg, 0)) { 21335bbd2e59SKevin Wolf qemu_opts_reset(&reopen_opts); 2134b32d7a39SMax Reitz return -EINVAL; 21355bbd2e59SKevin Wolf } 21365bbd2e59SKevin Wolf break; 21375bbd2e59SKevin Wolf case 'r': 2138ea92203cSKevin Wolf if (has_rw_option) { 2139ea92203cSKevin Wolf error_report("Only one -r/-w option may be given"); 2140b32d7a39SMax Reitz return -EINVAL; 2141ea92203cSKevin Wolf } 21425bbd2e59SKevin Wolf flags &= ~BDRV_O_RDWR; 2143ea92203cSKevin Wolf has_rw_option = true; 2144ea92203cSKevin Wolf break; 2145ea92203cSKevin Wolf case 'w': 2146ea92203cSKevin Wolf if (has_rw_option) { 2147ea92203cSKevin Wolf error_report("Only one -r/-w option may be given"); 2148b32d7a39SMax Reitz return -EINVAL; 2149ea92203cSKevin Wolf } 2150ea92203cSKevin Wolf flags |= BDRV_O_RDWR; 2151ea92203cSKevin Wolf has_rw_option = true; 21525bbd2e59SKevin Wolf break; 21535bbd2e59SKevin Wolf default: 21545bbd2e59SKevin Wolf qemu_opts_reset(&reopen_opts); 2155b444d0e9SMax Reitz qemuio_command_usage(&reopen_cmd); 2156b32d7a39SMax Reitz return -EINVAL; 21575bbd2e59SKevin Wolf } 21585bbd2e59SKevin Wolf } 21595bbd2e59SKevin Wolf 21605bbd2e59SKevin Wolf if (optind != argc) { 21615bbd2e59SKevin Wolf qemu_opts_reset(&reopen_opts); 2162b444d0e9SMax Reitz qemuio_command_usage(&reopen_cmd); 2163b32d7a39SMax Reitz return -EINVAL; 21645bbd2e59SKevin Wolf } 21655bbd2e59SKevin Wolf 2166a8003ec4SAlberto Garcia if (!writethrough != blk_enable_write_cache(blk) && 216719dbecdcSKevin Wolf blk_get_attached_dev(blk)) 216819dbecdcSKevin Wolf { 216919dbecdcSKevin Wolf error_report("Cannot change cache.writeback: Device attached"); 217019dbecdcSKevin Wolf qemu_opts_reset(&reopen_opts); 2171b32d7a39SMax Reitz return -EBUSY; 217219dbecdcSKevin Wolf } 217319dbecdcSKevin Wolf 2174f3adefb2SKevin Wolf if (!(flags & BDRV_O_RDWR)) { 2175f3adefb2SKevin Wolf uint64_t orig_perm, orig_shared_perm; 2176f3adefb2SKevin Wolf 2177f3adefb2SKevin Wolf bdrv_drain(bs); 2178f3adefb2SKevin Wolf 2179f3adefb2SKevin Wolf blk_get_perm(blk, &orig_perm, &orig_shared_perm); 2180f3adefb2SKevin Wolf blk_set_perm(blk, 2181f3adefb2SKevin Wolf orig_perm & ~(BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED), 2182f3adefb2SKevin Wolf orig_shared_perm, 2183f3adefb2SKevin Wolf &error_abort); 2184f3adefb2SKevin Wolf } 2185f3adefb2SKevin Wolf 21865bbd2e59SKevin Wolf qopts = qemu_opts_find(&reopen_opts, NULL); 2187dc900c35SAlberto Garcia opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : qdict_new(); 21885bbd2e59SKevin Wolf qemu_opts_reset(&reopen_opts); 21895bbd2e59SKevin Wolf 2190dc900c35SAlberto Garcia if (qdict_haskey(opts, BDRV_OPT_READ_ONLY)) { 2191dc900c35SAlberto Garcia if (has_rw_option) { 2192dc900c35SAlberto Garcia error_report("Cannot set both -r/-w and '" BDRV_OPT_READ_ONLY "'"); 2193dc900c35SAlberto Garcia qobject_unref(opts); 2194dc900c35SAlberto Garcia return -EINVAL; 2195dc900c35SAlberto Garcia } 2196dc900c35SAlberto Garcia } else { 2197dc900c35SAlberto Garcia qdict_put_bool(opts, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR)); 2198dc900c35SAlberto Garcia } 2199dc900c35SAlberto Garcia 2200dc900c35SAlberto Garcia if (qdict_haskey(opts, BDRV_OPT_CACHE_DIRECT) || 2201dc900c35SAlberto Garcia qdict_haskey(opts, BDRV_OPT_CACHE_NO_FLUSH)) { 2202dc900c35SAlberto Garcia if (has_cache_option) { 2203dc900c35SAlberto Garcia error_report("Cannot set both -c and the cache options"); 2204dc900c35SAlberto Garcia qobject_unref(opts); 2205dc900c35SAlberto Garcia return -EINVAL; 2206dc900c35SAlberto Garcia } 2207dc900c35SAlberto Garcia } else { 2208dc900c35SAlberto Garcia qdict_put_bool(opts, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE); 2209dc900c35SAlberto Garcia qdict_put_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, flags & BDRV_O_NO_FLUSH); 2210dc900c35SAlberto Garcia } 2211dc900c35SAlberto Garcia 22126cf42ca2SKevin Wolf bdrv_reopen(bs, opts, true, &local_err); 22131a63a907SKevin Wolf 22145bbd2e59SKevin Wolf if (local_err) { 22155bbd2e59SKevin Wolf error_report_err(local_err); 2216b32d7a39SMax Reitz return -EINVAL; 22175bbd2e59SKevin Wolf } 22185bbd2e59SKevin Wolf 2219b32d7a39SMax Reitz blk_set_enable_write_cache(blk, !writethrough); 2220b32d7a39SMax Reitz return 0; 2221b32d7a39SMax Reitz } 2222b32d7a39SMax Reitz 2223b32d7a39SMax Reitz static int break_f(BlockBackend *blk, int argc, char **argv) 2224797ac58cSKevin Wolf { 2225797ac58cSKevin Wolf int ret; 2226797ac58cSKevin Wolf 22274c7b7e9bSMax Reitz ret = bdrv_debug_breakpoint(blk_bs(blk), argv[1], argv[2]); 2228797ac58cSKevin Wolf if (ret < 0) { 2229797ac58cSKevin Wolf printf("Could not set breakpoint: %s\n", strerror(-ret)); 2230b32d7a39SMax Reitz return ret; 2231797ac58cSKevin Wolf } 2232797ac58cSKevin Wolf 2233b32d7a39SMax Reitz return 0; 2234b32d7a39SMax Reitz } 2235b32d7a39SMax Reitz 2236b32d7a39SMax Reitz static int remove_break_f(BlockBackend *blk, int argc, char **argv) 22374cc70e93SFam Zheng { 22384cc70e93SFam Zheng int ret; 22394cc70e93SFam Zheng 22404c7b7e9bSMax Reitz ret = bdrv_debug_remove_breakpoint(blk_bs(blk), argv[1]); 22414cc70e93SFam Zheng if (ret < 0) { 22424cc70e93SFam Zheng printf("Could not remove breakpoint %s: %s\n", argv[1], strerror(-ret)); 2243b32d7a39SMax Reitz return ret; 22444cc70e93SFam Zheng } 2245b32d7a39SMax Reitz 2246b32d7a39SMax Reitz return 0; 22474cc70e93SFam Zheng } 22484cc70e93SFam Zheng 2249797ac58cSKevin Wolf static const cmdinfo_t break_cmd = { 2250797ac58cSKevin Wolf .name = "break", 2251797ac58cSKevin Wolf .argmin = 2, 2252797ac58cSKevin Wolf .argmax = 2, 2253797ac58cSKevin Wolf .cfunc = break_f, 2254797ac58cSKevin Wolf .args = "event tag", 2255797ac58cSKevin Wolf .oneline = "sets a breakpoint on event and tags the stopped " 2256797ac58cSKevin Wolf "request as tag", 2257797ac58cSKevin Wolf }; 2258797ac58cSKevin Wolf 22594cc70e93SFam Zheng static const cmdinfo_t remove_break_cmd = { 22604cc70e93SFam Zheng .name = "remove_break", 22614cc70e93SFam Zheng .argmin = 1, 22624cc70e93SFam Zheng .argmax = 1, 22634cc70e93SFam Zheng .cfunc = remove_break_f, 22644cc70e93SFam Zheng .args = "tag", 22654cc70e93SFam Zheng .oneline = "remove a breakpoint by tag", 22664cc70e93SFam Zheng }; 22674cc70e93SFam Zheng 2268b32d7a39SMax Reitz static int resume_f(BlockBackend *blk, int argc, char **argv) 2269797ac58cSKevin Wolf { 2270797ac58cSKevin Wolf int ret; 2271797ac58cSKevin Wolf 22724c7b7e9bSMax Reitz ret = bdrv_debug_resume(blk_bs(blk), argv[1]); 2273797ac58cSKevin Wolf if (ret < 0) { 2274797ac58cSKevin Wolf printf("Could not resume request: %s\n", strerror(-ret)); 2275b32d7a39SMax Reitz return ret; 2276797ac58cSKevin Wolf } 2277b32d7a39SMax Reitz 2278b32d7a39SMax Reitz return 0; 2279797ac58cSKevin Wolf } 2280797ac58cSKevin Wolf 2281797ac58cSKevin Wolf static const cmdinfo_t resume_cmd = { 2282797ac58cSKevin Wolf .name = "resume", 2283797ac58cSKevin Wolf .argmin = 1, 2284797ac58cSKevin Wolf .argmax = 1, 2285797ac58cSKevin Wolf .cfunc = resume_f, 2286797ac58cSKevin Wolf .args = "tag", 2287797ac58cSKevin Wolf .oneline = "resumes the request tagged as tag", 2288797ac58cSKevin Wolf }; 2289797ac58cSKevin Wolf 2290b32d7a39SMax Reitz static int wait_break_f(BlockBackend *blk, int argc, char **argv) 2291797ac58cSKevin Wolf { 22924c7b7e9bSMax Reitz while (!bdrv_debug_is_suspended(blk_bs(blk), argv[1])) { 22934c7b7e9bSMax Reitz aio_poll(blk_get_aio_context(blk), true); 2294797ac58cSKevin Wolf } 2295b32d7a39SMax Reitz return 0; 2296797ac58cSKevin Wolf } 2297797ac58cSKevin Wolf 2298797ac58cSKevin Wolf static const cmdinfo_t wait_break_cmd = { 2299797ac58cSKevin Wolf .name = "wait_break", 2300797ac58cSKevin Wolf .argmin = 1, 2301797ac58cSKevin Wolf .argmax = 1, 2302797ac58cSKevin Wolf .cfunc = wait_break_f, 2303797ac58cSKevin Wolf .args = "tag", 2304797ac58cSKevin Wolf .oneline = "waits for the suspension of a request", 2305797ac58cSKevin Wolf }; 2306797ac58cSKevin Wolf 2307b32d7a39SMax Reitz static int abort_f(BlockBackend *blk, int argc, char **argv) 2308797ac58cSKevin Wolf { 2309797ac58cSKevin Wolf abort(); 2310797ac58cSKevin Wolf } 2311797ac58cSKevin Wolf 2312797ac58cSKevin Wolf static const cmdinfo_t abort_cmd = { 2313797ac58cSKevin Wolf .name = "abort", 2314797ac58cSKevin Wolf .cfunc = abort_f, 2315797ac58cSKevin Wolf .flags = CMD_NOFILE_OK, 2316797ac58cSKevin Wolf .oneline = "simulate a program crash using abort(3)", 2317797ac58cSKevin Wolf }; 2318797ac58cSKevin Wolf 23190e82dc7bSMax Reitz static void sigraise_help(void) 23200e82dc7bSMax Reitz { 23210e82dc7bSMax Reitz printf( 23220e82dc7bSMax Reitz "\n" 23230e82dc7bSMax Reitz " raises the given signal\n" 23240e82dc7bSMax Reitz "\n" 23250e82dc7bSMax Reitz " Example:\n" 23260e82dc7bSMax Reitz " 'sigraise %i' - raises SIGTERM\n" 23270e82dc7bSMax Reitz "\n" 23280e82dc7bSMax Reitz " Invokes raise(signal), where \"signal\" is the mandatory integer argument\n" 23290e82dc7bSMax Reitz " given to sigraise.\n" 23300e82dc7bSMax Reitz "\n", SIGTERM); 23310e82dc7bSMax Reitz } 23320e82dc7bSMax Reitz 2333b32d7a39SMax Reitz static int sigraise_f(BlockBackend *blk, int argc, char **argv); 23340e82dc7bSMax Reitz 23350e82dc7bSMax Reitz static const cmdinfo_t sigraise_cmd = { 23360e82dc7bSMax Reitz .name = "sigraise", 23370e82dc7bSMax Reitz .cfunc = sigraise_f, 23380e82dc7bSMax Reitz .argmin = 1, 23390e82dc7bSMax Reitz .argmax = 1, 23400e82dc7bSMax Reitz .flags = CMD_NOFILE_OK, 23410e82dc7bSMax Reitz .args = "signal", 23420e82dc7bSMax Reitz .oneline = "raises a signal", 23430e82dc7bSMax Reitz .help = sigraise_help, 23440e82dc7bSMax Reitz }; 23450e82dc7bSMax Reitz 2346b32d7a39SMax Reitz static int sigraise_f(BlockBackend *blk, int argc, char **argv) 23470e82dc7bSMax Reitz { 23489b0beaf3SJohn Snow int64_t sig = cvtnum(argv[1]); 23490e82dc7bSMax Reitz if (sig < 0) { 2350a9ecfa00SJohn Snow print_cvtnum_err(sig, argv[1]); 2351b32d7a39SMax Reitz return sig; 23529b0beaf3SJohn Snow } else if (sig > NSIG) { 23539b0beaf3SJohn Snow printf("signal argument '%s' is too large to be a valid signal\n", 23549b0beaf3SJohn Snow argv[1]); 2355b32d7a39SMax Reitz return -EINVAL; 23560e82dc7bSMax Reitz } 23570e82dc7bSMax Reitz 23580e82dc7bSMax Reitz /* Using raise() to kill this process does not necessarily flush all open 23590e82dc7bSMax Reitz * streams. At least stdout and stderr (although the latter should be 23600e82dc7bSMax Reitz * non-buffered anyway) should be flushed, though. */ 23610e82dc7bSMax Reitz fflush(stdout); 23620e82dc7bSMax Reitz fflush(stderr); 23630e82dc7bSMax Reitz 23640e82dc7bSMax Reitz raise(sig); 2365b32d7a39SMax Reitz 2366b32d7a39SMax Reitz return 0; 23670e82dc7bSMax Reitz } 23680e82dc7bSMax Reitz 2369cd33d02aSKevin Wolf static void sleep_cb(void *opaque) 2370cd33d02aSKevin Wolf { 2371cd33d02aSKevin Wolf bool *expired = opaque; 2372cd33d02aSKevin Wolf *expired = true; 2373cd33d02aSKevin Wolf } 2374cd33d02aSKevin Wolf 2375b32d7a39SMax Reitz static int sleep_f(BlockBackend *blk, int argc, char **argv) 2376cd33d02aSKevin Wolf { 2377cd33d02aSKevin Wolf char *endptr; 2378cd33d02aSKevin Wolf long ms; 2379cd33d02aSKevin Wolf struct QEMUTimer *timer; 2380cd33d02aSKevin Wolf bool expired = false; 2381cd33d02aSKevin Wolf 2382cd33d02aSKevin Wolf ms = strtol(argv[1], &endptr, 0); 2383cd33d02aSKevin Wolf if (ms < 0 || *endptr != '\0') { 2384cd33d02aSKevin Wolf printf("%s is not a valid number\n", argv[1]); 2385b32d7a39SMax Reitz return -EINVAL; 2386cd33d02aSKevin Wolf } 2387cd33d02aSKevin Wolf 2388cd33d02aSKevin Wolf timer = timer_new_ns(QEMU_CLOCK_HOST, sleep_cb, &expired); 2389cd33d02aSKevin Wolf timer_mod(timer, qemu_clock_get_ns(QEMU_CLOCK_HOST) + SCALE_MS * ms); 2390cd33d02aSKevin Wolf 2391cd33d02aSKevin Wolf while (!expired) { 2392cd33d02aSKevin Wolf main_loop_wait(false); 2393cd33d02aSKevin Wolf } 2394cd33d02aSKevin Wolf 2395cd33d02aSKevin Wolf timer_free(timer); 2396b32d7a39SMax Reitz return 0; 2397cd33d02aSKevin Wolf } 2398cd33d02aSKevin Wolf 2399cd33d02aSKevin Wolf static const cmdinfo_t sleep_cmd = { 2400cd33d02aSKevin Wolf .name = "sleep", 2401cd33d02aSKevin Wolf .argmin = 1, 2402cd33d02aSKevin Wolf .argmax = 1, 2403cd33d02aSKevin Wolf .cfunc = sleep_f, 2404cd33d02aSKevin Wolf .flags = CMD_NOFILE_OK, 2405cd33d02aSKevin Wolf .oneline = "waits for the given value in milliseconds", 2406cd33d02aSKevin Wolf }; 2407cd33d02aSKevin Wolf 2408f18a834aSKevin Wolf static void help_oneline(const char *cmd, const cmdinfo_t *ct) 2409f18a834aSKevin Wolf { 2410f18a834aSKevin Wolf printf("%s ", cmd); 2411f18a834aSKevin Wolf 2412f18a834aSKevin Wolf if (ct->args) { 2413f18a834aSKevin Wolf printf("%s ", ct->args); 2414f18a834aSKevin Wolf } 2415f18a834aSKevin Wolf printf("-- %s\n", ct->oneline); 2416f18a834aSKevin Wolf } 2417f18a834aSKevin Wolf 2418f18a834aSKevin Wolf static void help_onecmd(const char *cmd, const cmdinfo_t *ct) 2419f18a834aSKevin Wolf { 2420f18a834aSKevin Wolf help_oneline(cmd, ct); 2421f18a834aSKevin Wolf if (ct->help) { 2422f18a834aSKevin Wolf ct->help(); 2423f18a834aSKevin Wolf } 2424f18a834aSKevin Wolf } 2425f18a834aSKevin Wolf 2426f18a834aSKevin Wolf static void help_all(void) 2427f18a834aSKevin Wolf { 2428f18a834aSKevin Wolf const cmdinfo_t *ct; 2429f18a834aSKevin Wolf 2430f18a834aSKevin Wolf for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) { 2431f18a834aSKevin Wolf help_oneline(ct->name, ct); 2432f18a834aSKevin Wolf } 2433f18a834aSKevin Wolf printf("\nUse 'help commandname' for extended help.\n"); 2434f18a834aSKevin Wolf } 2435f18a834aSKevin Wolf 2436b32d7a39SMax Reitz static int help_f(BlockBackend *blk, int argc, char **argv) 2437f18a834aSKevin Wolf { 2438f18a834aSKevin Wolf const cmdinfo_t *ct; 2439f18a834aSKevin Wolf 2440da16f4b8SDr. David Alan Gilbert if (argc < 2) { 2441f18a834aSKevin Wolf help_all(); 2442b32d7a39SMax Reitz return 0; 2443f18a834aSKevin Wolf } 2444f18a834aSKevin Wolf 2445f18a834aSKevin Wolf ct = find_command(argv[1]); 2446f18a834aSKevin Wolf if (ct == NULL) { 2447f18a834aSKevin Wolf printf("command %s not found\n", argv[1]); 2448b32d7a39SMax Reitz return -EINVAL; 2449f18a834aSKevin Wolf } 2450f18a834aSKevin Wolf 2451f18a834aSKevin Wolf help_onecmd(argv[1], ct); 2452b32d7a39SMax Reitz return 0; 2453f18a834aSKevin Wolf } 2454f18a834aSKevin Wolf 2455f18a834aSKevin Wolf static const cmdinfo_t help_cmd = { 2456f18a834aSKevin Wolf .name = "help", 2457f18a834aSKevin Wolf .altname = "?", 2458f18a834aSKevin Wolf .cfunc = help_f, 2459f18a834aSKevin Wolf .argmin = 0, 2460f18a834aSKevin Wolf .argmax = 1, 2461f18a834aSKevin Wolf .flags = CMD_FLAG_GLOBAL, 2462f18a834aSKevin Wolf .args = "[command]", 2463f18a834aSKevin Wolf .oneline = "help for one or all commands", 2464f18a834aSKevin Wolf }; 2465f18a834aSKevin Wolf 246678632a3dSVladimir Sementsov-Ogievskiy /* 246778632a3dSVladimir Sementsov-Ogievskiy * Called with aio context of blk acquired. Or with qemu_get_aio_context() 246878632a3dSVladimir Sementsov-Ogievskiy * context acquired if blk is NULL. 246978632a3dSVladimir Sementsov-Ogievskiy */ 2470b32d7a39SMax Reitz int qemuio_command(BlockBackend *blk, const char *cmd) 2471dd583296SKevin Wolf { 2472dd583296SKevin Wolf char *input; 2473dd583296SKevin Wolf const cmdinfo_t *ct; 2474dd583296SKevin Wolf char **v; 2475dd583296SKevin Wolf int c; 2476b32d7a39SMax Reitz int ret = 0; 2477dd583296SKevin Wolf 2478dd583296SKevin Wolf input = g_strdup(cmd); 2479dd583296SKevin Wolf v = breakline(input, &c); 2480dd583296SKevin Wolf if (c) { 2481dd583296SKevin Wolf ct = find_command(v[0]); 2482dd583296SKevin Wolf if (ct) { 2483b32d7a39SMax Reitz ret = command(blk, ct, c, v); 2484dd583296SKevin Wolf } else { 2485dd583296SKevin Wolf fprintf(stderr, "command \"%s\" not found\n", v[0]); 2486b32d7a39SMax Reitz ret = -EINVAL; 2487dd583296SKevin Wolf } 2488dd583296SKevin Wolf } 2489dd583296SKevin Wolf g_free(input); 2490dd583296SKevin Wolf g_free(v); 2491b32d7a39SMax Reitz 2492b32d7a39SMax Reitz return ret; 2493dd583296SKevin Wolf } 2494dd583296SKevin Wolf 2495797ac58cSKevin Wolf static void __attribute((constructor)) init_qemuio_commands(void) 2496797ac58cSKevin Wolf { 2497797ac58cSKevin Wolf /* initialize commands */ 2498c2cdf5c5SKevin Wolf qemuio_add_command(&help_cmd); 2499c2cdf5c5SKevin Wolf qemuio_add_command(&read_cmd); 2500c2cdf5c5SKevin Wolf qemuio_add_command(&readv_cmd); 2501c2cdf5c5SKevin Wolf qemuio_add_command(&write_cmd); 2502c2cdf5c5SKevin Wolf qemuio_add_command(&writev_cmd); 2503c2cdf5c5SKevin Wolf qemuio_add_command(&aio_read_cmd); 2504c2cdf5c5SKevin Wolf qemuio_add_command(&aio_write_cmd); 2505c2cdf5c5SKevin Wolf qemuio_add_command(&aio_flush_cmd); 2506c2cdf5c5SKevin Wolf qemuio_add_command(&flush_cmd); 2507c2cdf5c5SKevin Wolf qemuio_add_command(&truncate_cmd); 2508c2cdf5c5SKevin Wolf qemuio_add_command(&length_cmd); 2509c2cdf5c5SKevin Wolf qemuio_add_command(&info_cmd); 2510c2cdf5c5SKevin Wolf qemuio_add_command(&discard_cmd); 2511c2cdf5c5SKevin Wolf qemuio_add_command(&alloc_cmd); 2512c2cdf5c5SKevin Wolf qemuio_add_command(&map_cmd); 25135bbd2e59SKevin Wolf qemuio_add_command(&reopen_cmd); 2514c2cdf5c5SKevin Wolf qemuio_add_command(&break_cmd); 25154cc70e93SFam Zheng qemuio_add_command(&remove_break_cmd); 2516c2cdf5c5SKevin Wolf qemuio_add_command(&resume_cmd); 2517c2cdf5c5SKevin Wolf qemuio_add_command(&wait_break_cmd); 2518c2cdf5c5SKevin Wolf qemuio_add_command(&abort_cmd); 2519cd33d02aSKevin Wolf qemuio_add_command(&sleep_cmd); 25200e82dc7bSMax Reitz qemuio_add_command(&sigraise_cmd); 2521797ac58cSKevin Wolf } 2522