blob: e766791ffcc571dc8058408edef88c8b0f629df6 [file] [log] [blame]
Kevin Wolf797ac582013-06-05 14:19:31 +02001/*
2 * Command line utility to exercise the QEMU I/O path.
3 *
Eric Blake093ea232016-05-07 21:16:43 -06004 * Copyright (C) 2009-2016 Red Hat, Inc.
Kevin Wolf797ac582013-06-05 14:19:31 +02005 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 */
10
Peter Maydell80c71a22016-01-18 18:01:42 +000011#include "qemu/osdep.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010012#include "qapi/error.h"
Kevin Wolf3d219942013-06-05 14:19:39 +020013#include "qemu-io.h"
Max Reitz4c7b7e92015-02-05 13:58:22 -050014#include "sysemu/block-backend.h"
15#include "block/block.h"
16#include "block/block_int.h" /* for info_f() */
Max Reitza8d8ecb2013-10-09 10:46:17 +020017#include "block/qapi.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010018#include "qemu/error-report.h"
Alex Bligh6a1751b2013-08-21 16:02:47 +010019#include "qemu/main-loop.h"
Kevin Wolfcd33d022014-01-15 15:39:10 +010020#include "qemu/timer.h"
Fam Zhenga91f9582015-01-30 10:49:42 +080021#include "sysemu/block-backend.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020022#include "qemu/cutils.h"
Kevin Wolf797ac582013-06-05 14:19:31 +020023
24#define CMD_NOFILE_OK 0x01
25
Stefan Weilf9883882014-03-05 22:23:00 +010026bool qemuio_misalign;
Kevin Wolf797ac582013-06-05 14:19:31 +020027
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020028static cmdinfo_t *cmdtab;
29static int ncmds;
30
31static int compare_cmdname(const void *a, const void *b)
32{
33 return strcmp(((const cmdinfo_t *)a)->name,
34 ((const cmdinfo_t *)b)->name);
35}
36
37void qemuio_add_command(const cmdinfo_t *ci)
38{
Markus Armbruster02c4f262014-08-19 10:31:09 +020039 cmdtab = g_renew(cmdinfo_t, cmdtab, ++ncmds);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020040 cmdtab[ncmds - 1] = *ci;
41 qsort(cmdtab, ncmds, sizeof(*cmdtab), compare_cmdname);
42}
43
44int qemuio_command_usage(const cmdinfo_t *ci)
45{
46 printf("%s %s -- %s\n", ci->name, ci->args, ci->oneline);
47 return 0;
48}
49
Max Reitz4c7b7e92015-02-05 13:58:22 -050050static int init_check_command(BlockBackend *blk, const cmdinfo_t *ct)
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020051{
52 if (ct->flags & CMD_FLAG_GLOBAL) {
53 return 1;
54 }
Max Reitz4c7b7e92015-02-05 13:58:22 -050055 if (!(ct->flags & CMD_NOFILE_OK) && !blk) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020056 fprintf(stderr, "no file open, try 'help open'\n");
57 return 0;
58 }
59 return 1;
60}
61
Max Reitz4c7b7e92015-02-05 13:58:22 -050062static int command(BlockBackend *blk, const cmdinfo_t *ct, int argc,
Kevin Wolf3d219942013-06-05 14:19:39 +020063 char **argv)
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020064{
65 char *cmd = argv[0];
66
Max Reitz4c7b7e92015-02-05 13:58:22 -050067 if (!init_check_command(blk, ct)) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020068 return 0;
69 }
70
71 if (argc - 1 < ct->argmin || (ct->argmax != -1 && argc - 1 > ct->argmax)) {
72 if (ct->argmax == -1) {
73 fprintf(stderr,
74 "bad argument count %d to %s, expected at least %d arguments\n",
75 argc-1, cmd, ct->argmin);
76 } else if (ct->argmin == ct->argmax) {
77 fprintf(stderr,
78 "bad argument count %d to %s, expected %d arguments\n",
79 argc-1, cmd, ct->argmin);
80 } else {
81 fprintf(stderr,
82 "bad argument count %d to %s, expected between %d and %d arguments\n",
83 argc-1, cmd, ct->argmin, ct->argmax);
84 }
85 return 0;
86 }
87 optind = 0;
Max Reitz4c7b7e92015-02-05 13:58:22 -050088 return ct->cfunc(blk, argc, argv);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +020089}
90
91static const cmdinfo_t *find_command(const char *cmd)
92{
93 cmdinfo_t *ct;
94
95 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
96 if (strcmp(ct->name, cmd) == 0 ||
97 (ct->altname && strcmp(ct->altname, cmd) == 0))
98 {
99 return (const cmdinfo_t *)ct;
100 }
101 }
102 return NULL;
103}
104
Stefan Hajnoczi46940202013-11-14 11:54:18 +0100105/* Invoke fn() for commands with a matching prefix */
106void qemuio_complete_command(const char *input,
107 void (*fn)(const char *cmd, void *opaque),
108 void *opaque)
109{
110 cmdinfo_t *ct;
111 size_t input_len = strlen(input);
112
113 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
114 if (strncmp(input, ct->name, input_len) == 0) {
115 fn(ct->name, opaque);
116 }
117 }
118}
119
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200120static char **breakline(char *input, int *count)
121{
122 int c = 0;
123 char *p;
Markus Armbruster5839e532014-08-19 10:31:08 +0200124 char **rval = g_new0(char *, 1);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200125
126 while (rval && (p = qemu_strsep(&input, " ")) != NULL) {
127 if (!*p) {
128 continue;
129 }
130 c++;
Markus Armbruster08193dd2014-08-19 10:31:10 +0200131 rval = g_renew(char *, rval, (c + 1));
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200132 rval[c - 1] = p;
133 rval[c] = NULL;
134 }
135 *count = c;
136 return rval;
137}
138
Kevin Wolf797ac582013-06-05 14:19:31 +0200139static int64_t cvtnum(const char *s)
140{
141 char *end;
John Snowef5a7882015-11-05 18:53:03 -0500142 int64_t ret;
143
144 ret = qemu_strtosz_suffix(s, &end, QEMU_STRTOSZ_DEFSUFFIX_B);
145 if (*end != '\0') {
146 /* Detritus at the end of the string */
147 return -EINVAL;
148 }
149 return ret;
Kevin Wolf797ac582013-06-05 14:19:31 +0200150}
151
John Snowa9ecfa02015-11-05 18:53:04 -0500152static void print_cvtnum_err(int64_t rc, const char *arg)
153{
154 switch (rc) {
155 case -EINVAL:
156 printf("Parsing error: non-numeric argument,"
157 " or extraneous/unrecognized suffix -- %s\n", arg);
158 break;
159 case -ERANGE:
160 printf("Parsing error: argument too large -- %s\n", arg);
161 break;
162 default:
163 printf("Parsing error: %s\n", arg);
164 }
165}
166
Kevin Wolf0b613882013-06-05 14:19:38 +0200167#define EXABYTES(x) ((long long)(x) << 60)
168#define PETABYTES(x) ((long long)(x) << 50)
169#define TERABYTES(x) ((long long)(x) << 40)
170#define GIGABYTES(x) ((long long)(x) << 30)
171#define MEGABYTES(x) ((long long)(x) << 20)
172#define KILOBYTES(x) ((long long)(x) << 10)
173
174#define TO_EXABYTES(x) ((x) / EXABYTES(1))
175#define TO_PETABYTES(x) ((x) / PETABYTES(1))
176#define TO_TERABYTES(x) ((x) / TERABYTES(1))
177#define TO_GIGABYTES(x) ((x) / GIGABYTES(1))
178#define TO_MEGABYTES(x) ((x) / MEGABYTES(1))
179#define TO_KILOBYTES(x) ((x) / KILOBYTES(1))
180
181static void cvtstr(double value, char *str, size_t size)
182{
183 char *trim;
184 const char *suffix;
185
186 if (value >= EXABYTES(1)) {
187 suffix = " EiB";
188 snprintf(str, size - 4, "%.3f", TO_EXABYTES(value));
189 } else if (value >= PETABYTES(1)) {
190 suffix = " PiB";
191 snprintf(str, size - 4, "%.3f", TO_PETABYTES(value));
192 } else if (value >= TERABYTES(1)) {
193 suffix = " TiB";
194 snprintf(str, size - 4, "%.3f", TO_TERABYTES(value));
195 } else if (value >= GIGABYTES(1)) {
196 suffix = " GiB";
197 snprintf(str, size - 4, "%.3f", TO_GIGABYTES(value));
198 } else if (value >= MEGABYTES(1)) {
199 suffix = " MiB";
200 snprintf(str, size - 4, "%.3f", TO_MEGABYTES(value));
201 } else if (value >= KILOBYTES(1)) {
202 suffix = " KiB";
203 snprintf(str, size - 4, "%.3f", TO_KILOBYTES(value));
204 } else {
205 suffix = " bytes";
206 snprintf(str, size - 6, "%f", value);
207 }
208
209 trim = strstr(str, ".000");
210 if (trim) {
211 strcpy(trim, suffix);
212 } else {
213 strcat(str, suffix);
214 }
215}
216
217
218
219static struct timeval tsub(struct timeval t1, struct timeval t2)
220{
221 t1.tv_usec -= t2.tv_usec;
222 if (t1.tv_usec < 0) {
223 t1.tv_usec += 1000000;
224 t1.tv_sec--;
225 }
226 t1.tv_sec -= t2.tv_sec;
227 return t1;
228}
229
230static double tdiv(double value, struct timeval tv)
231{
232 return value / ((double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0));
233}
234
235#define HOURS(sec) ((sec) / (60 * 60))
236#define MINUTES(sec) (((sec) % (60 * 60)) / 60)
237#define SECONDS(sec) ((sec) % 60)
238
239enum {
240 DEFAULT_TIME = 0x0,
241 TERSE_FIXED_TIME = 0x1,
242 VERBOSE_FIXED_TIME = 0x2,
243};
244
245static void timestr(struct timeval *tv, char *ts, size_t size, int format)
246{
247 double usec = (double)tv->tv_usec / 1000000.0;
248
249 if (format & TERSE_FIXED_TIME) {
250 if (!HOURS(tv->tv_sec)) {
251 snprintf(ts, size, "%u:%02u.%02u",
252 (unsigned int) MINUTES(tv->tv_sec),
253 (unsigned int) SECONDS(tv->tv_sec),
254 (unsigned int) (usec * 100));
255 return;
256 }
257 format |= VERBOSE_FIXED_TIME; /* fallback if hours needed */
258 }
259
260 if ((format & VERBOSE_FIXED_TIME) || tv->tv_sec) {
261 snprintf(ts, size, "%u:%02u:%02u.%02u",
262 (unsigned int) HOURS(tv->tv_sec),
263 (unsigned int) MINUTES(tv->tv_sec),
264 (unsigned int) SECONDS(tv->tv_sec),
265 (unsigned int) (usec * 100));
266 } else {
267 snprintf(ts, size, "0.%04u sec", (unsigned int) (usec * 10000));
268 }
269}
270
Kevin Wolf797ac582013-06-05 14:19:31 +0200271/*
272 * Parse the pattern argument to various sub-commands.
273 *
274 * Because the pattern is used as an argument to memset it must evaluate
275 * to an unsigned integer that fits into a single byte.
276 */
277static int parse_pattern(const char *arg)
278{
279 char *endptr = NULL;
280 long pattern;
281
282 pattern = strtol(arg, &endptr, 0);
283 if (pattern < 0 || pattern > UCHAR_MAX || *endptr != '\0') {
284 printf("%s is not a valid pattern byte\n", arg);
285 return -1;
286 }
287
288 return pattern;
289}
290
291/*
292 * Memory allocation helpers.
293 *
294 * Make sure memory is aligned by default, or purposefully misaligned if
295 * that is specified on the command line.
296 */
297
298#define MISALIGN_OFFSET 16
Max Reitz4c7b7e92015-02-05 13:58:22 -0500299static void *qemu_io_alloc(BlockBackend *blk, size_t len, int pattern)
Kevin Wolf797ac582013-06-05 14:19:31 +0200300{
301 void *buf;
302
303 if (qemuio_misalign) {
304 len += MISALIGN_OFFSET;
305 }
Max Reitz4c7b7e92015-02-05 13:58:22 -0500306 buf = blk_blockalign(blk, len);
Kevin Wolf797ac582013-06-05 14:19:31 +0200307 memset(buf, pattern, len);
308 if (qemuio_misalign) {
309 buf += MISALIGN_OFFSET;
310 }
311 return buf;
312}
313
314static void qemu_io_free(void *p)
315{
316 if (qemuio_misalign) {
317 p -= MISALIGN_OFFSET;
318 }
319 qemu_vfree(p);
320}
321
John Snow9b0beaf2015-11-05 18:53:02 -0500322static void dump_buffer(const void *buffer, int64_t offset, int64_t len)
Kevin Wolf797ac582013-06-05 14:19:31 +0200323{
John Snow9b0beaf2015-11-05 18:53:02 -0500324 uint64_t i;
325 int j;
Kevin Wolf797ac582013-06-05 14:19:31 +0200326 const uint8_t *p;
327
328 for (i = 0, p = buffer; i < len; i += 16) {
329 const uint8_t *s = p;
330
331 printf("%08" PRIx64 ": ", offset + i);
332 for (j = 0; j < 16 && i + j < len; j++, p++) {
333 printf("%02x ", *p);
334 }
335 printf(" ");
336 for (j = 0; j < 16 && i + j < len; j++, s++) {
337 if (isalnum(*s)) {
338 printf("%c", *s);
339 } else {
340 printf(".");
341 }
342 }
343 printf("\n");
344 }
345}
346
347static void print_report(const char *op, struct timeval *t, int64_t offset,
Eric Blakedc388522016-05-07 21:16:42 -0600348 int64_t count, int64_t total, int cnt, bool Cflag)
Kevin Wolf797ac582013-06-05 14:19:31 +0200349{
350 char s1[64], s2[64], ts[64];
351
352 timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0);
353 if (!Cflag) {
354 cvtstr((double)total, s1, sizeof(s1));
355 cvtstr(tdiv((double)total, *t), s2, sizeof(s2));
John Snow9b0beaf2015-11-05 18:53:02 -0500356 printf("%s %"PRId64"/%"PRId64" bytes at offset %" PRId64 "\n",
Kevin Wolf797ac582013-06-05 14:19:31 +0200357 op, total, count, offset);
358 printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
359 s1, cnt, ts, s2, tdiv((double)cnt, *t));
360 } else {/* bytes,ops,time,bytes/sec,ops/sec */
John Snow9b0beaf2015-11-05 18:53:02 -0500361 printf("%"PRId64",%d,%s,%.3f,%.3f\n",
Kevin Wolf797ac582013-06-05 14:19:31 +0200362 total, cnt, ts,
363 tdiv((double)total, *t),
364 tdiv((double)cnt, *t));
365 }
366}
367
368/*
369 * Parse multiple length statements for vectored I/O, and construct an I/O
370 * vector matching it.
371 */
372static void *
Max Reitz4c7b7e92015-02-05 13:58:22 -0500373create_iovec(BlockBackend *blk, QEMUIOVector *qiov, char **argv, int nr_iov,
Kevin Wolf797ac582013-06-05 14:19:31 +0200374 int pattern)
375{
376 size_t *sizes = g_new0(size_t, nr_iov);
377 size_t count = 0;
378 void *buf = NULL;
379 void *p;
380 int i;
381
382 for (i = 0; i < nr_iov; i++) {
383 char *arg = argv[i];
384 int64_t len;
385
386 len = cvtnum(arg);
387 if (len < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500388 print_cvtnum_err(len, arg);
Kevin Wolf797ac582013-06-05 14:19:31 +0200389 goto fail;
390 }
391
392 /* should be SIZE_T_MAX, but that doesn't exist */
393 if (len > INT_MAX) {
John Snowa9ecfa02015-11-05 18:53:04 -0500394 printf("Argument '%s' exceeds maximum size %d\n", arg, INT_MAX);
Kevin Wolf797ac582013-06-05 14:19:31 +0200395 goto fail;
396 }
397
Kevin Wolf797ac582013-06-05 14:19:31 +0200398 sizes[i] = len;
399 count += len;
400 }
401
402 qemu_iovec_init(qiov, nr_iov);
403
Max Reitz4c7b7e92015-02-05 13:58:22 -0500404 buf = p = qemu_io_alloc(blk, count, pattern);
Kevin Wolf797ac582013-06-05 14:19:31 +0200405
406 for (i = 0; i < nr_iov; i++) {
407 qemu_iovec_add(qiov, p, sizes[i]);
408 p += sizes[i];
409 }
410
411fail:
412 g_free(sizes);
413 return buf;
414}
415
John Snow9b0beaf2015-11-05 18:53:02 -0500416static int do_pread(BlockBackend *blk, char *buf, int64_t offset,
417 int64_t count, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200418{
John Snow9b0beaf2015-11-05 18:53:02 -0500419 if (count > INT_MAX) {
420 return -ERANGE;
421 }
422
Max Reitz4c7b7e92015-02-05 13:58:22 -0500423 *total = blk_pread(blk, offset, (uint8_t *)buf, count);
Kevin Wolf797ac582013-06-05 14:19:31 +0200424 if (*total < 0) {
425 return *total;
426 }
427 return 1;
428}
429
John Snow9b0beaf2015-11-05 18:53:02 -0500430static int do_pwrite(BlockBackend *blk, char *buf, int64_t offset,
Eric Blake770e0e02016-05-07 21:16:44 -0600431 int64_t count, int flags, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200432{
John Snow9b0beaf2015-11-05 18:53:02 -0500433 if (count > INT_MAX) {
434 return -ERANGE;
435 }
436
Eric Blake770e0e02016-05-07 21:16:44 -0600437 *total = blk_pwrite(blk, offset, (uint8_t *)buf, count, flags);
Kevin Wolf797ac582013-06-05 14:19:31 +0200438 if (*total < 0) {
439 return *total;
440 }
441 return 1;
442}
443
444typedef struct {
Max Reitz4c7b7e92015-02-05 13:58:22 -0500445 BlockBackend *blk;
Kevin Wolf797ac582013-06-05 14:19:31 +0200446 int64_t offset;
John Snow9b0beaf2015-11-05 18:53:02 -0500447 int64_t count;
448 int64_t *total;
Eric Blake770e0e02016-05-07 21:16:44 -0600449 int flags;
Kevin Wolf797ac582013-06-05 14:19:31 +0200450 int ret;
451 bool done;
452} CoWriteZeroes;
453
454static void coroutine_fn co_write_zeroes_entry(void *opaque)
455{
456 CoWriteZeroes *data = opaque;
457
Eric Blake770e0e02016-05-07 21:16:44 -0600458 data->ret = blk_co_write_zeroes(data->blk, data->offset, data->count,
459 data->flags);
Kevin Wolf797ac582013-06-05 14:19:31 +0200460 data->done = true;
461 if (data->ret < 0) {
462 *data->total = data->ret;
463 return;
464 }
465
466 *data->total = data->count;
467}
468
John Snow9b0beaf2015-11-05 18:53:02 -0500469static int do_co_write_zeroes(BlockBackend *blk, int64_t offset, int64_t count,
Eric Blake770e0e02016-05-07 21:16:44 -0600470 int flags, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200471{
472 Coroutine *co;
473 CoWriteZeroes data = {
Max Reitz4c7b7e92015-02-05 13:58:22 -0500474 .blk = blk,
Kevin Wolf797ac582013-06-05 14:19:31 +0200475 .offset = offset,
476 .count = count,
477 .total = total,
Eric Blake770e0e02016-05-07 21:16:44 -0600478 .flags = flags,
Kevin Wolf797ac582013-06-05 14:19:31 +0200479 .done = false,
480 };
481
John Snow9b0beaf2015-11-05 18:53:02 -0500482 if (count >> BDRV_SECTOR_BITS > INT_MAX) {
483 return -ERANGE;
484 }
485
Kevin Wolf797ac582013-06-05 14:19:31 +0200486 co = qemu_coroutine_create(co_write_zeroes_entry);
487 qemu_coroutine_enter(co, &data);
488 while (!data.done) {
Max Reitz4c7b7e92015-02-05 13:58:22 -0500489 aio_poll(blk_get_aio_context(blk), true);
Kevin Wolf797ac582013-06-05 14:19:31 +0200490 }
491 if (data.ret < 0) {
492 return data.ret;
493 } else {
494 return 1;
495 }
496}
497
Max Reitz4c7b7e92015-02-05 13:58:22 -0500498static int do_write_compressed(BlockBackend *blk, char *buf, int64_t offset,
John Snow9b0beaf2015-11-05 18:53:02 -0500499 int64_t count, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200500{
501 int ret;
502
John Snow9b0beaf2015-11-05 18:53:02 -0500503 if (count >> 9 > INT_MAX) {
504 return -ERANGE;
505 }
506
Max Reitz4c7b7e92015-02-05 13:58:22 -0500507 ret = blk_write_compressed(blk, offset >> 9, (uint8_t *)buf, count >> 9);
Kevin Wolf797ac582013-06-05 14:19:31 +0200508 if (ret < 0) {
509 return ret;
510 }
511 *total = count;
512 return 1;
513}
514
Max Reitz4c7b7e92015-02-05 13:58:22 -0500515static int do_load_vmstate(BlockBackend *blk, char *buf, int64_t offset,
John Snow9b0beaf2015-11-05 18:53:02 -0500516 int64_t count, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200517{
John Snow9b0beaf2015-11-05 18:53:02 -0500518 if (count > INT_MAX) {
519 return -ERANGE;
520 }
521
Max Reitz4c7b7e92015-02-05 13:58:22 -0500522 *total = blk_load_vmstate(blk, (uint8_t *)buf, offset, count);
Kevin Wolf797ac582013-06-05 14:19:31 +0200523 if (*total < 0) {
524 return *total;
525 }
526 return 1;
527}
528
Max Reitz4c7b7e92015-02-05 13:58:22 -0500529static int do_save_vmstate(BlockBackend *blk, char *buf, int64_t offset,
John Snow9b0beaf2015-11-05 18:53:02 -0500530 int64_t count, int64_t *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200531{
John Snow9b0beaf2015-11-05 18:53:02 -0500532 if (count > INT_MAX) {
533 return -ERANGE;
534 }
535
Max Reitz4c7b7e92015-02-05 13:58:22 -0500536 *total = blk_save_vmstate(blk, (uint8_t *)buf, offset, count);
Kevin Wolf797ac582013-06-05 14:19:31 +0200537 if (*total < 0) {
538 return *total;
539 }
540 return 1;
541}
542
543#define NOT_DONE 0x7fffffff
544static void aio_rw_done(void *opaque, int ret)
545{
546 *(int *)opaque = ret;
547}
548
Max Reitz4c7b7e92015-02-05 13:58:22 -0500549static int do_aio_readv(BlockBackend *blk, QEMUIOVector *qiov,
Kevin Wolf797ac582013-06-05 14:19:31 +0200550 int64_t offset, int *total)
551{
552 int async_ret = NOT_DONE;
553
Eric Blake7b3f9712016-05-06 10:26:44 -0600554 blk_aio_preadv(blk, offset, qiov, 0, aio_rw_done, &async_ret);
Kevin Wolf797ac582013-06-05 14:19:31 +0200555 while (async_ret == NOT_DONE) {
556 main_loop_wait(false);
557 }
558
559 *total = qiov->size;
560 return async_ret < 0 ? async_ret : 1;
561}
562
Max Reitz4c7b7e92015-02-05 13:58:22 -0500563static int do_aio_writev(BlockBackend *blk, QEMUIOVector *qiov,
Eric Blake770e0e02016-05-07 21:16:44 -0600564 int64_t offset, int flags, int *total)
Kevin Wolf797ac582013-06-05 14:19:31 +0200565{
566 int async_ret = NOT_DONE;
567
Eric Blake770e0e02016-05-07 21:16:44 -0600568 blk_aio_pwritev(blk, offset, qiov, flags, aio_rw_done, &async_ret);
Kevin Wolf797ac582013-06-05 14:19:31 +0200569 while (async_ret == NOT_DONE) {
570 main_loop_wait(false);
571 }
572
573 *total = qiov->size;
574 return async_ret < 0 ? async_ret : 1;
575}
576
Kevin Wolf797ac582013-06-05 14:19:31 +0200577static void read_help(void)
578{
579 printf(
580"\n"
581" reads a range of bytes from the given offset\n"
582"\n"
583" Example:\n"
584" 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
585"\n"
586" Reads a segment of the currently open file, optionally dumping it to the\n"
587" standard output stream (with -v option) for subsequent inspection.\n"
588" -b, -- read from the VM state rather than the virtual disk\n"
589" -C, -- report statistics in a machine parsable format\n"
590" -l, -- length for pattern verification (only with -P)\n"
Eric Blake093ea232016-05-07 21:16:43 -0600591" -p, -- ignored for backwards compatibility\n"
Kevin Wolf797ac582013-06-05 14:19:31 +0200592" -P, -- use a pattern to verify read data\n"
593" -q, -- quiet mode, do not show I/O statistics\n"
594" -s, -- start offset for pattern verification (only with -P)\n"
595" -v, -- dump buffer to standard output\n"
596"\n");
597}
598
Max Reitz4c7b7e92015-02-05 13:58:22 -0500599static int read_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +0200600
601static const cmdinfo_t read_cmd = {
602 .name = "read",
603 .altname = "r",
604 .cfunc = read_f,
605 .argmin = 2,
606 .argmax = -1,
Eric Blake093ea232016-05-07 21:16:43 -0600607 .args = "[-abCqv] [-P pattern [-s off] [-l len]] off len",
Kevin Wolf797ac582013-06-05 14:19:31 +0200608 .oneline = "reads a number of bytes at a specified offset",
609 .help = read_help,
610};
611
Max Reitz4c7b7e92015-02-05 13:58:22 -0500612static int read_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +0200613{
614 struct timeval t1, t2;
Eric Blake093ea232016-05-07 21:16:43 -0600615 bool Cflag = false, qflag = false, vflag = false;
Eric Blakedc388522016-05-07 21:16:42 -0600616 bool Pflag = false, sflag = false, lflag = false, bflag = false;
Kevin Wolf797ac582013-06-05 14:19:31 +0200617 int c, cnt;
618 char *buf;
619 int64_t offset;
John Snow9b0beaf2015-11-05 18:53:02 -0500620 int64_t count;
Kevin Wolf797ac582013-06-05 14:19:31 +0200621 /* Some compilers get confused and warn if this is not initialized. */
John Snow9b0beaf2015-11-05 18:53:02 -0500622 int64_t total = 0;
623 int pattern = 0;
624 int64_t pattern_offset = 0, pattern_count = 0;
Kevin Wolf797ac582013-06-05 14:19:31 +0200625
Eric Blakeb062ad82015-05-12 09:10:56 -0600626 while ((c = getopt(argc, argv, "bCl:pP:qs:v")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +0200627 switch (c) {
628 case 'b':
Eric Blakedc388522016-05-07 21:16:42 -0600629 bflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200630 break;
631 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -0600632 Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200633 break;
634 case 'l':
Eric Blakedc388522016-05-07 21:16:42 -0600635 lflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200636 pattern_count = cvtnum(optarg);
637 if (pattern_count < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500638 print_cvtnum_err(pattern_count, optarg);
Kevin Wolf797ac582013-06-05 14:19:31 +0200639 return 0;
640 }
641 break;
642 case 'p':
Eric Blake093ea232016-05-07 21:16:43 -0600643 /* Ignored for backwards compatibility */
Kevin Wolf797ac582013-06-05 14:19:31 +0200644 break;
645 case 'P':
Eric Blakedc388522016-05-07 21:16:42 -0600646 Pflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200647 pattern = parse_pattern(optarg);
648 if (pattern < 0) {
649 return 0;
650 }
651 break;
652 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -0600653 qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200654 break;
655 case 's':
Eric Blakedc388522016-05-07 21:16:42 -0600656 sflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200657 pattern_offset = cvtnum(optarg);
658 if (pattern_offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500659 print_cvtnum_err(pattern_offset, optarg);
Kevin Wolf797ac582013-06-05 14:19:31 +0200660 return 0;
661 }
662 break;
663 case 'v':
Eric Blakedc388522016-05-07 21:16:42 -0600664 vflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200665 break;
666 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200667 return qemuio_command_usage(&read_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200668 }
669 }
670
671 if (optind != argc - 2) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200672 return qemuio_command_usage(&read_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200673 }
674
Kevin Wolf797ac582013-06-05 14:19:31 +0200675 offset = cvtnum(argv[optind]);
676 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500677 print_cvtnum_err(offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +0200678 return 0;
679 }
680
681 optind++;
682 count = cvtnum(argv[optind]);
683 if (count < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500684 print_cvtnum_err(count, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +0200685 return 0;
John Snow9b0beaf2015-11-05 18:53:02 -0500686 } else if (count > SIZE_MAX) {
687 printf("length cannot exceed %" PRIu64 ", given %s\n",
688 (uint64_t) SIZE_MAX, argv[optind]);
689 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +0200690 }
691
692 if (!Pflag && (lflag || sflag)) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200693 return qemuio_command_usage(&read_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200694 }
695
696 if (!lflag) {
697 pattern_count = count - pattern_offset;
698 }
699
700 if ((pattern_count < 0) || (pattern_count + pattern_offset > count)) {
701 printf("pattern verification range exceeds end of read data\n");
702 return 0;
703 }
704
Eric Blake093ea232016-05-07 21:16:43 -0600705 if (bflag) {
Kevin Wolf797ac582013-06-05 14:19:31 +0200706 if (offset & 0x1ff) {
707 printf("offset %" PRId64 " is not sector aligned\n",
708 offset);
709 return 0;
710 }
711 if (count & 0x1ff) {
John Snow9b0beaf2015-11-05 18:53:02 -0500712 printf("count %"PRId64" is not sector aligned\n",
Kevin Wolf797ac582013-06-05 14:19:31 +0200713 count);
714 return 0;
715 }
716 }
717
Max Reitz4c7b7e92015-02-05 13:58:22 -0500718 buf = qemu_io_alloc(blk, count, 0xab);
Kevin Wolf797ac582013-06-05 14:19:31 +0200719
720 gettimeofday(&t1, NULL);
Eric Blake7b3f9712016-05-06 10:26:44 -0600721 if (bflag) {
Max Reitz4c7b7e92015-02-05 13:58:22 -0500722 cnt = do_load_vmstate(blk, buf, offset, count, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +0200723 } else {
Eric Blake7b3f9712016-05-06 10:26:44 -0600724 cnt = do_pread(blk, buf, offset, count, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +0200725 }
726 gettimeofday(&t2, NULL);
727
728 if (cnt < 0) {
729 printf("read failed: %s\n", strerror(-cnt));
730 goto out;
731 }
732
733 if (Pflag) {
734 void *cmp_buf = g_malloc(pattern_count);
735 memset(cmp_buf, pattern, pattern_count);
736 if (memcmp(buf + pattern_offset, cmp_buf, pattern_count)) {
737 printf("Pattern verification failed at offset %"
John Snow9b0beaf2015-11-05 18:53:02 -0500738 PRId64 ", %"PRId64" bytes\n",
Kevin Wolf797ac582013-06-05 14:19:31 +0200739 offset + pattern_offset, pattern_count);
740 }
741 g_free(cmp_buf);
742 }
743
744 if (qflag) {
745 goto out;
746 }
747
748 if (vflag) {
749 dump_buffer(buf, offset, count);
750 }
751
752 /* Finally, report back -- -C gives a parsable format */
753 t2 = tsub(t2, t1);
754 print_report("read", &t2, offset, count, total, cnt, Cflag);
755
756out:
757 qemu_io_free(buf);
758
759 return 0;
760}
761
762static void readv_help(void)
763{
764 printf(
765"\n"
766" reads a range of bytes from the given offset into multiple buffers\n"
767"\n"
768" Example:\n"
769" 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
770"\n"
771" Reads a segment of the currently open file, optionally dumping it to the\n"
772" standard output stream (with -v option) for subsequent inspection.\n"
773" Uses multiple iovec buffers if more than one byte range is specified.\n"
774" -C, -- report statistics in a machine parsable format\n"
775" -P, -- use a pattern to verify read data\n"
776" -v, -- dump buffer to standard output\n"
777" -q, -- quiet mode, do not show I/O statistics\n"
778"\n");
779}
780
Max Reitz4c7b7e92015-02-05 13:58:22 -0500781static int readv_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +0200782
783static const cmdinfo_t readv_cmd = {
784 .name = "readv",
785 .cfunc = readv_f,
786 .argmin = 2,
787 .argmax = -1,
Eric Blake093ea232016-05-07 21:16:43 -0600788 .args = "[-Cqv] [-P pattern] off len [len..]",
Kevin Wolf797ac582013-06-05 14:19:31 +0200789 .oneline = "reads a number of bytes at a specified offset",
790 .help = readv_help,
791};
792
Max Reitz4c7b7e92015-02-05 13:58:22 -0500793static int readv_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +0200794{
795 struct timeval t1, t2;
Eric Blakedc388522016-05-07 21:16:42 -0600796 bool Cflag = false, qflag = false, vflag = false;
Kevin Wolf797ac582013-06-05 14:19:31 +0200797 int c, cnt;
798 char *buf;
799 int64_t offset;
800 /* Some compilers get confused and warn if this is not initialized. */
801 int total = 0;
802 int nr_iov;
803 QEMUIOVector qiov;
804 int pattern = 0;
Eric Blakedc388522016-05-07 21:16:42 -0600805 bool Pflag = false;
Kevin Wolf797ac582013-06-05 14:19:31 +0200806
Eric Blakeb062ad82015-05-12 09:10:56 -0600807 while ((c = getopt(argc, argv, "CP:qv")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +0200808 switch (c) {
809 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -0600810 Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200811 break;
812 case 'P':
Eric Blakedc388522016-05-07 21:16:42 -0600813 Pflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200814 pattern = parse_pattern(optarg);
815 if (pattern < 0) {
816 return 0;
817 }
818 break;
819 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -0600820 qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200821 break;
822 case 'v':
Eric Blakedc388522016-05-07 21:16:42 -0600823 vflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200824 break;
825 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200826 return qemuio_command_usage(&readv_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200827 }
828 }
829
830 if (optind > argc - 2) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200831 return qemuio_command_usage(&readv_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200832 }
833
834
835 offset = cvtnum(argv[optind]);
836 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500837 print_cvtnum_err(offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +0200838 return 0;
839 }
840 optind++;
841
Kevin Wolf797ac582013-06-05 14:19:31 +0200842 nr_iov = argc - optind;
Max Reitz4c7b7e92015-02-05 13:58:22 -0500843 buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, 0xab);
Kevin Wolf797ac582013-06-05 14:19:31 +0200844 if (buf == NULL) {
845 return 0;
846 }
847
848 gettimeofday(&t1, NULL);
Max Reitz4c7b7e92015-02-05 13:58:22 -0500849 cnt = do_aio_readv(blk, &qiov, offset, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +0200850 gettimeofday(&t2, NULL);
851
852 if (cnt < 0) {
853 printf("readv failed: %s\n", strerror(-cnt));
854 goto out;
855 }
856
857 if (Pflag) {
858 void *cmp_buf = g_malloc(qiov.size);
859 memset(cmp_buf, pattern, qiov.size);
860 if (memcmp(buf, cmp_buf, qiov.size)) {
861 printf("Pattern verification failed at offset %"
862 PRId64 ", %zd bytes\n", offset, qiov.size);
863 }
864 g_free(cmp_buf);
865 }
866
867 if (qflag) {
868 goto out;
869 }
870
871 if (vflag) {
872 dump_buffer(buf, offset, qiov.size);
873 }
874
875 /* Finally, report back -- -C gives a parsable format */
876 t2 = tsub(t2, t1);
877 print_report("read", &t2, offset, qiov.size, total, cnt, Cflag);
878
879out:
880 qemu_iovec_destroy(&qiov);
881 qemu_io_free(buf);
882 return 0;
883}
884
885static void write_help(void)
886{
887 printf(
888"\n"
889" writes a range of bytes from the given offset\n"
890"\n"
891" Example:\n"
892" 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
893"\n"
894" Writes into a segment of the currently open file, using a buffer\n"
895" filled with a set pattern (0xcdcdcdcd).\n"
896" -b, -- write to the VM state rather than the virtual disk\n"
Max Reitz4c7b7e92015-02-05 13:58:22 -0500897" -c, -- write compressed data with blk_write_compressed\n"
Eric Blake770e0e02016-05-07 21:16:44 -0600898" -f, -- use Force Unit Access semantics\n"
Eric Blake093ea232016-05-07 21:16:43 -0600899" -p, -- ignored for backwards compatibility\n"
Kevin Wolf797ac582013-06-05 14:19:31 +0200900" -P, -- use different pattern to fill file\n"
901" -C, -- report statistics in a machine parsable format\n"
902" -q, -- quiet mode, do not show I/O statistics\n"
Eric Blakec2e001c2016-05-07 21:16:45 -0600903" -u, -- with -z, allow unmapping\n"
Max Reitz4c7b7e92015-02-05 13:58:22 -0500904" -z, -- write zeroes using blk_co_write_zeroes\n"
Kevin Wolf797ac582013-06-05 14:19:31 +0200905"\n");
906}
907
Max Reitz4c7b7e92015-02-05 13:58:22 -0500908static int write_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +0200909
910static const cmdinfo_t write_cmd = {
911 .name = "write",
912 .altname = "w",
913 .cfunc = write_f,
914 .argmin = 2,
915 .argmax = -1,
Eric Blakec2e001c2016-05-07 21:16:45 -0600916 .args = "[-bcCfquz] [-P pattern] off len",
Kevin Wolf797ac582013-06-05 14:19:31 +0200917 .oneline = "writes a number of bytes at a specified offset",
918 .help = write_help,
919};
920
Max Reitz4c7b7e92015-02-05 13:58:22 -0500921static int write_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +0200922{
923 struct timeval t1, t2;
Eric Blake093ea232016-05-07 21:16:43 -0600924 bool Cflag = false, qflag = false, bflag = false;
Eric Blakedc388522016-05-07 21:16:42 -0600925 bool Pflag = false, zflag = false, cflag = false;
Eric Blake770e0e02016-05-07 21:16:44 -0600926 int flags = 0;
Kevin Wolf797ac582013-06-05 14:19:31 +0200927 int c, cnt;
928 char *buf = NULL;
929 int64_t offset;
John Snow9b0beaf2015-11-05 18:53:02 -0500930 int64_t count;
Kevin Wolf797ac582013-06-05 14:19:31 +0200931 /* Some compilers get confused and warn if this is not initialized. */
John Snow9b0beaf2015-11-05 18:53:02 -0500932 int64_t total = 0;
Kevin Wolf797ac582013-06-05 14:19:31 +0200933 int pattern = 0xcd;
934
Eric Blakec2e001c2016-05-07 21:16:45 -0600935 while ((c = getopt(argc, argv, "bcCfpP:quz")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +0200936 switch (c) {
937 case 'b':
Eric Blakedc388522016-05-07 21:16:42 -0600938 bflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200939 break;
940 case 'c':
Eric Blakedc388522016-05-07 21:16:42 -0600941 cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200942 break;
943 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -0600944 Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200945 break;
Eric Blake770e0e02016-05-07 21:16:44 -0600946 case 'f':
947 flags |= BDRV_REQ_FUA;
948 break;
Kevin Wolf797ac582013-06-05 14:19:31 +0200949 case 'p':
Eric Blake093ea232016-05-07 21:16:43 -0600950 /* Ignored for backwards compatibility */
Kevin Wolf797ac582013-06-05 14:19:31 +0200951 break;
952 case 'P':
Eric Blakedc388522016-05-07 21:16:42 -0600953 Pflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200954 pattern = parse_pattern(optarg);
955 if (pattern < 0) {
956 return 0;
957 }
958 break;
959 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -0600960 qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200961 break;
Eric Blakec2e001c2016-05-07 21:16:45 -0600962 case 'u':
963 flags |= BDRV_REQ_MAY_UNMAP;
964 break;
Kevin Wolf797ac582013-06-05 14:19:31 +0200965 case 'z':
Eric Blakedc388522016-05-07 21:16:42 -0600966 zflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +0200967 break;
968 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200969 return qemuio_command_usage(&write_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200970 }
971 }
972
973 if (optind != argc - 2) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +0200974 return qemuio_command_usage(&write_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +0200975 }
976
Eric Blake093ea232016-05-07 21:16:43 -0600977 if (bflag && zflag) {
978 printf("-b and -z cannot be specified at the same time\n");
Kevin Wolf797ac582013-06-05 14:19:31 +0200979 return 0;
980 }
981
Eric Blake770e0e02016-05-07 21:16:44 -0600982 if ((flags & BDRV_REQ_FUA) && (bflag || cflag)) {
983 printf("-f and -b or -c cannot be specified at the same time\n");
984 return 0;
985 }
986
Eric Blakec2e001c2016-05-07 21:16:45 -0600987 if ((flags & BDRV_REQ_MAY_UNMAP) && !zflag) {
988 printf("-u requires -z to be specified\n");
989 return 0;
990 }
991
Kevin Wolf797ac582013-06-05 14:19:31 +0200992 if (zflag && Pflag) {
993 printf("-z and -P cannot be specified at the same time\n");
994 return 0;
995 }
996
997 offset = cvtnum(argv[optind]);
998 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -0500999 print_cvtnum_err(offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001000 return 0;
1001 }
1002
1003 optind++;
1004 count = cvtnum(argv[optind]);
1005 if (count < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001006 print_cvtnum_err(count, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001007 return 0;
John Snow9b0beaf2015-11-05 18:53:02 -05001008 } else if (count > SIZE_MAX) {
1009 printf("length cannot exceed %" PRIu64 ", given %s\n",
1010 (uint64_t) SIZE_MAX, argv[optind]);
1011 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001012 }
1013
Eric Blake093ea232016-05-07 21:16:43 -06001014 if (bflag || cflag) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001015 if (offset & 0x1ff) {
1016 printf("offset %" PRId64 " is not sector aligned\n",
1017 offset);
1018 return 0;
1019 }
1020
1021 if (count & 0x1ff) {
John Snow9b0beaf2015-11-05 18:53:02 -05001022 printf("count %"PRId64" is not sector aligned\n",
Kevin Wolf797ac582013-06-05 14:19:31 +02001023 count);
1024 return 0;
1025 }
1026 }
1027
1028 if (!zflag) {
Max Reitz4c7b7e92015-02-05 13:58:22 -05001029 buf = qemu_io_alloc(blk, count, pattern);
Kevin Wolf797ac582013-06-05 14:19:31 +02001030 }
1031
1032 gettimeofday(&t1, NULL);
Eric Blake7b3f9712016-05-06 10:26:44 -06001033 if (bflag) {
Max Reitz4c7b7e92015-02-05 13:58:22 -05001034 cnt = do_save_vmstate(blk, buf, offset, count, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +02001035 } else if (zflag) {
Eric Blake770e0e02016-05-07 21:16:44 -06001036 cnt = do_co_write_zeroes(blk, offset, count, flags, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +02001037 } else if (cflag) {
Max Reitz4c7b7e92015-02-05 13:58:22 -05001038 cnt = do_write_compressed(blk, buf, offset, count, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +02001039 } else {
Eric Blake770e0e02016-05-07 21:16:44 -06001040 cnt = do_pwrite(blk, buf, offset, count, flags, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +02001041 }
1042 gettimeofday(&t2, NULL);
1043
1044 if (cnt < 0) {
1045 printf("write failed: %s\n", strerror(-cnt));
1046 goto out;
1047 }
1048
1049 if (qflag) {
1050 goto out;
1051 }
1052
1053 /* Finally, report back -- -C gives a parsable format */
1054 t2 = tsub(t2, t1);
1055 print_report("wrote", &t2, offset, count, total, cnt, Cflag);
1056
1057out:
1058 if (!zflag) {
1059 qemu_io_free(buf);
1060 }
1061
1062 return 0;
1063}
1064
1065static void
1066writev_help(void)
1067{
1068 printf(
1069"\n"
1070" writes a range of bytes from the given offset source from multiple buffers\n"
1071"\n"
1072" Example:\n"
Maria Kustova6e6507c2014-03-18 09:59:17 +04001073" 'writev 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
Kevin Wolf797ac582013-06-05 14:19:31 +02001074"\n"
1075" Writes into a segment of the currently open file, using a buffer\n"
1076" filled with a set pattern (0xcdcdcdcd).\n"
1077" -P, -- use different pattern to fill file\n"
1078" -C, -- report statistics in a machine parsable format\n"
Eric Blake770e0e02016-05-07 21:16:44 -06001079" -f, -- use Force Unit Access semantics\n"
Kevin Wolf797ac582013-06-05 14:19:31 +02001080" -q, -- quiet mode, do not show I/O statistics\n"
1081"\n");
1082}
1083
Max Reitz4c7b7e92015-02-05 13:58:22 -05001084static int writev_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +02001085
1086static const cmdinfo_t writev_cmd = {
1087 .name = "writev",
1088 .cfunc = writev_f,
1089 .argmin = 2,
1090 .argmax = -1,
Eric Blake770e0e02016-05-07 21:16:44 -06001091 .args = "[-Cfq] [-P pattern] off len [len..]",
Kevin Wolf797ac582013-06-05 14:19:31 +02001092 .oneline = "writes a number of bytes at a specified offset",
1093 .help = writev_help,
1094};
1095
Max Reitz4c7b7e92015-02-05 13:58:22 -05001096static int writev_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001097{
1098 struct timeval t1, t2;
Eric Blakedc388522016-05-07 21:16:42 -06001099 bool Cflag = false, qflag = false;
Eric Blake770e0e02016-05-07 21:16:44 -06001100 int flags = 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001101 int c, cnt;
1102 char *buf;
1103 int64_t offset;
1104 /* Some compilers get confused and warn if this is not initialized. */
1105 int total = 0;
1106 int nr_iov;
1107 int pattern = 0xcd;
1108 QEMUIOVector qiov;
1109
Eric Blake4ca1d342016-05-16 10:43:01 -06001110 while ((c = getopt(argc, argv, "CfqP:")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001111 switch (c) {
1112 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -06001113 Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001114 break;
Eric Blake770e0e02016-05-07 21:16:44 -06001115 case 'f':
1116 flags |= BDRV_REQ_FUA;
1117 break;
Kevin Wolf797ac582013-06-05 14:19:31 +02001118 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -06001119 qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001120 break;
1121 case 'P':
1122 pattern = parse_pattern(optarg);
1123 if (pattern < 0) {
1124 return 0;
1125 }
1126 break;
1127 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001128 return qemuio_command_usage(&writev_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001129 }
1130 }
1131
1132 if (optind > argc - 2) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001133 return qemuio_command_usage(&writev_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001134 }
1135
1136 offset = cvtnum(argv[optind]);
1137 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001138 print_cvtnum_err(offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001139 return 0;
1140 }
1141 optind++;
1142
Kevin Wolf797ac582013-06-05 14:19:31 +02001143 nr_iov = argc - optind;
Max Reitz4c7b7e92015-02-05 13:58:22 -05001144 buf = create_iovec(blk, &qiov, &argv[optind], nr_iov, pattern);
Kevin Wolf797ac582013-06-05 14:19:31 +02001145 if (buf == NULL) {
1146 return 0;
1147 }
1148
1149 gettimeofday(&t1, NULL);
Eric Blake770e0e02016-05-07 21:16:44 -06001150 cnt = do_aio_writev(blk, &qiov, offset, flags, &total);
Kevin Wolf797ac582013-06-05 14:19:31 +02001151 gettimeofday(&t2, NULL);
1152
1153 if (cnt < 0) {
1154 printf("writev failed: %s\n", strerror(-cnt));
1155 goto out;
1156 }
1157
1158 if (qflag) {
1159 goto out;
1160 }
1161
1162 /* Finally, report back -- -C gives a parsable format */
1163 t2 = tsub(t2, t1);
1164 print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag);
1165out:
1166 qemu_iovec_destroy(&qiov);
1167 qemu_io_free(buf);
1168 return 0;
1169}
1170
Kevin Wolf797ac582013-06-05 14:19:31 +02001171struct aio_ctx {
Max Reitz4c7b7e92015-02-05 13:58:22 -05001172 BlockBackend *blk;
Kevin Wolf797ac582013-06-05 14:19:31 +02001173 QEMUIOVector qiov;
1174 int64_t offset;
1175 char *buf;
Eric Blakedc388522016-05-07 21:16:42 -06001176 bool qflag;
1177 bool vflag;
1178 bool Cflag;
1179 bool Pflag;
1180 bool zflag;
Fam Zhenga91f9582015-01-30 10:49:42 +08001181 BlockAcctCookie acct;
Kevin Wolf797ac582013-06-05 14:19:31 +02001182 int pattern;
1183 struct timeval t1;
1184};
1185
1186static void aio_write_done(void *opaque, int ret)
1187{
1188 struct aio_ctx *ctx = opaque;
1189 struct timeval t2;
1190
1191 gettimeofday(&t2, NULL);
1192
1193
1194 if (ret < 0) {
1195 printf("aio_write failed: %s\n", strerror(-ret));
Alberto Garcia556c2b62015-10-28 17:33:08 +02001196 block_acct_failed(blk_get_stats(ctx->blk), &ctx->acct);
Kevin Wolf797ac582013-06-05 14:19:31 +02001197 goto out;
1198 }
1199
Max Reitz4c7b7e92015-02-05 13:58:22 -05001200 block_acct_done(blk_get_stats(ctx->blk), &ctx->acct);
Fam Zhenga91f9582015-01-30 10:49:42 +08001201
Kevin Wolf797ac582013-06-05 14:19:31 +02001202 if (ctx->qflag) {
1203 goto out;
1204 }
1205
1206 /* Finally, report back -- -C gives a parsable format */
1207 t2 = tsub(t2, ctx->t1);
1208 print_report("wrote", &t2, ctx->offset, ctx->qiov.size,
1209 ctx->qiov.size, 1, ctx->Cflag);
1210out:
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001211 if (!ctx->zflag) {
1212 qemu_io_free(ctx->buf);
1213 qemu_iovec_destroy(&ctx->qiov);
1214 }
Kevin Wolf797ac582013-06-05 14:19:31 +02001215 g_free(ctx);
1216}
1217
1218static void aio_read_done(void *opaque, int ret)
1219{
1220 struct aio_ctx *ctx = opaque;
1221 struct timeval t2;
1222
1223 gettimeofday(&t2, NULL);
1224
1225 if (ret < 0) {
1226 printf("readv failed: %s\n", strerror(-ret));
Alberto Garcia556c2b62015-10-28 17:33:08 +02001227 block_acct_failed(blk_get_stats(ctx->blk), &ctx->acct);
Kevin Wolf797ac582013-06-05 14:19:31 +02001228 goto out;
1229 }
1230
1231 if (ctx->Pflag) {
1232 void *cmp_buf = g_malloc(ctx->qiov.size);
1233
1234 memset(cmp_buf, ctx->pattern, ctx->qiov.size);
1235 if (memcmp(ctx->buf, cmp_buf, ctx->qiov.size)) {
1236 printf("Pattern verification failed at offset %"
1237 PRId64 ", %zd bytes\n", ctx->offset, ctx->qiov.size);
1238 }
1239 g_free(cmp_buf);
1240 }
1241
Max Reitz4c7b7e92015-02-05 13:58:22 -05001242 block_acct_done(blk_get_stats(ctx->blk), &ctx->acct);
Fam Zhenga91f9582015-01-30 10:49:42 +08001243
Kevin Wolf797ac582013-06-05 14:19:31 +02001244 if (ctx->qflag) {
1245 goto out;
1246 }
1247
1248 if (ctx->vflag) {
1249 dump_buffer(ctx->buf, ctx->offset, ctx->qiov.size);
1250 }
1251
1252 /* Finally, report back -- -C gives a parsable format */
1253 t2 = tsub(t2, ctx->t1);
1254 print_report("read", &t2, ctx->offset, ctx->qiov.size,
1255 ctx->qiov.size, 1, ctx->Cflag);
1256out:
1257 qemu_io_free(ctx->buf);
1258 qemu_iovec_destroy(&ctx->qiov);
1259 g_free(ctx);
1260}
1261
1262static void aio_read_help(void)
1263{
1264 printf(
1265"\n"
1266" asynchronously reads a range of bytes from the given offset\n"
1267"\n"
1268" Example:\n"
1269" 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
1270"\n"
1271" Reads a segment of the currently open file, optionally dumping it to the\n"
1272" standard output stream (with -v option) for subsequent inspection.\n"
1273" The read is performed asynchronously and the aio_flush command must be\n"
1274" used to ensure all outstanding aio requests have been completed.\n"
1275" -C, -- report statistics in a machine parsable format\n"
1276" -P, -- use a pattern to verify read data\n"
Eric Blake37546ff2016-05-16 10:43:03 -06001277" -i, -- treat request as invalid, for exercising stats\n"
Kevin Wolf797ac582013-06-05 14:19:31 +02001278" -v, -- dump buffer to standard output\n"
1279" -q, -- quiet mode, do not show I/O statistics\n"
1280"\n");
1281}
1282
Max Reitz4c7b7e92015-02-05 13:58:22 -05001283static int aio_read_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +02001284
1285static const cmdinfo_t aio_read_cmd = {
1286 .name = "aio_read",
1287 .cfunc = aio_read_f,
1288 .argmin = 2,
1289 .argmax = -1,
Eric Blake37546ff2016-05-16 10:43:03 -06001290 .args = "[-Ciqv] [-P pattern] off len [len..]",
Kevin Wolf797ac582013-06-05 14:19:31 +02001291 .oneline = "asynchronously reads a number of bytes",
1292 .help = aio_read_help,
1293};
1294
Max Reitz4c7b7e92015-02-05 13:58:22 -05001295static int aio_read_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001296{
1297 int nr_iov, c;
1298 struct aio_ctx *ctx = g_new0(struct aio_ctx, 1);
1299
Max Reitz4c7b7e92015-02-05 13:58:22 -05001300 ctx->blk = blk;
Eric Blake37546ff2016-05-16 10:43:03 -06001301 while ((c = getopt(argc, argv, "CP:iqv")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001302 switch (c) {
1303 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -06001304 ctx->Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001305 break;
1306 case 'P':
Eric Blakedc388522016-05-07 21:16:42 -06001307 ctx->Pflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001308 ctx->pattern = parse_pattern(optarg);
1309 if (ctx->pattern < 0) {
1310 g_free(ctx);
1311 return 0;
1312 }
1313 break;
Eric Blake37546ff2016-05-16 10:43:03 -06001314 case 'i':
1315 printf("injecting invalid read request\n");
1316 block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_READ);
1317 g_free(ctx);
1318 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001319 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -06001320 ctx->qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001321 break;
1322 case 'v':
Eric Blakedc388522016-05-07 21:16:42 -06001323 ctx->vflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001324 break;
1325 default:
1326 g_free(ctx);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001327 return qemuio_command_usage(&aio_read_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001328 }
1329 }
1330
1331 if (optind > argc - 2) {
1332 g_free(ctx);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001333 return qemuio_command_usage(&aio_read_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001334 }
1335
1336 ctx->offset = cvtnum(argv[optind]);
1337 if (ctx->offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001338 print_cvtnum_err(ctx->offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001339 g_free(ctx);
1340 return 0;
1341 }
1342 optind++;
1343
Kevin Wolf797ac582013-06-05 14:19:31 +02001344 nr_iov = argc - optind;
Max Reitz4c7b7e92015-02-05 13:58:22 -05001345 ctx->buf = create_iovec(blk, &ctx->qiov, &argv[optind], nr_iov, 0xab);
Kevin Wolf797ac582013-06-05 14:19:31 +02001346 if (ctx->buf == NULL) {
Alberto Garcia556c2b62015-10-28 17:33:08 +02001347 block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_READ);
Kevin Wolf797ac582013-06-05 14:19:31 +02001348 g_free(ctx);
1349 return 0;
1350 }
1351
1352 gettimeofday(&ctx->t1, NULL);
Max Reitz4c7b7e92015-02-05 13:58:22 -05001353 block_acct_start(blk_get_stats(blk), &ctx->acct, ctx->qiov.size,
1354 BLOCK_ACCT_READ);
Eric Blake7b3f9712016-05-06 10:26:44 -06001355 blk_aio_preadv(blk, ctx->offset, &ctx->qiov, 0, aio_read_done, ctx);
Kevin Wolf797ac582013-06-05 14:19:31 +02001356 return 0;
1357}
1358
1359static void aio_write_help(void)
1360{
1361 printf(
1362"\n"
1363" asynchronously writes a range of bytes from the given offset source\n"
1364" from multiple buffers\n"
1365"\n"
1366" Example:\n"
1367" 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
1368"\n"
1369" Writes into a segment of the currently open file, using a buffer\n"
1370" filled with a set pattern (0xcdcdcdcd).\n"
1371" The write is performed asynchronously and the aio_flush command must be\n"
1372" used to ensure all outstanding aio requests have been completed.\n"
1373" -P, -- use different pattern to fill file\n"
1374" -C, -- report statistics in a machine parsable format\n"
Eric Blake770e0e02016-05-07 21:16:44 -06001375" -f, -- use Force Unit Access semantics\n"
Eric Blake37546ff2016-05-16 10:43:03 -06001376" -i, -- treat request as invalid, for exercising stats\n"
Kevin Wolf797ac582013-06-05 14:19:31 +02001377" -q, -- quiet mode, do not show I/O statistics\n"
Eric Blakec2e001c2016-05-07 21:16:45 -06001378" -u, -- with -z, allow unmapping\n"
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001379" -z, -- write zeroes using blk_aio_write_zeroes\n"
Kevin Wolf797ac582013-06-05 14:19:31 +02001380"\n");
1381}
1382
Max Reitz4c7b7e92015-02-05 13:58:22 -05001383static int aio_write_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +02001384
1385static const cmdinfo_t aio_write_cmd = {
1386 .name = "aio_write",
1387 .cfunc = aio_write_f,
1388 .argmin = 2,
1389 .argmax = -1,
Eric Blake37546ff2016-05-16 10:43:03 -06001390 .args = "[-Cfiquz] [-P pattern] off len [len..]",
Kevin Wolf797ac582013-06-05 14:19:31 +02001391 .oneline = "asynchronously writes a number of bytes",
1392 .help = aio_write_help,
1393};
1394
Max Reitz4c7b7e92015-02-05 13:58:22 -05001395static int aio_write_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001396{
1397 int nr_iov, c;
1398 int pattern = 0xcd;
1399 struct aio_ctx *ctx = g_new0(struct aio_ctx, 1);
Eric Blake770e0e02016-05-07 21:16:44 -06001400 int flags = 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001401
Max Reitz4c7b7e92015-02-05 13:58:22 -05001402 ctx->blk = blk;
Eric Blake37546ff2016-05-16 10:43:03 -06001403 while ((c = getopt(argc, argv, "CfiqP:uz")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001404 switch (c) {
1405 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -06001406 ctx->Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001407 break;
Eric Blake770e0e02016-05-07 21:16:44 -06001408 case 'f':
1409 flags |= BDRV_REQ_FUA;
1410 break;
Kevin Wolf797ac582013-06-05 14:19:31 +02001411 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -06001412 ctx->qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001413 break;
Eric Blakec2e001c2016-05-07 21:16:45 -06001414 case 'u':
1415 flags |= BDRV_REQ_MAY_UNMAP;
1416 break;
Kevin Wolf797ac582013-06-05 14:19:31 +02001417 case 'P':
1418 pattern = parse_pattern(optarg);
1419 if (pattern < 0) {
1420 g_free(ctx);
1421 return 0;
1422 }
1423 break;
Eric Blake37546ff2016-05-16 10:43:03 -06001424 case 'i':
1425 printf("injecting invalid write request\n");
1426 block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_WRITE);
1427 g_free(ctx);
1428 return 0;
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001429 case 'z':
Eric Blakedc388522016-05-07 21:16:42 -06001430 ctx->zflag = true;
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001431 break;
Kevin Wolf797ac582013-06-05 14:19:31 +02001432 default:
1433 g_free(ctx);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001434 return qemuio_command_usage(&aio_write_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001435 }
1436 }
1437
1438 if (optind > argc - 2) {
1439 g_free(ctx);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001440 return qemuio_command_usage(&aio_write_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001441 }
1442
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001443 if (ctx->zflag && optind != argc - 2) {
1444 printf("-z supports only a single length parameter\n");
1445 g_free(ctx);
1446 return 0;
1447 }
1448
Eric Blakec2e001c2016-05-07 21:16:45 -06001449 if ((flags & BDRV_REQ_MAY_UNMAP) && !ctx->zflag) {
1450 printf("-u requires -z to be specified\n");
Eric Blake4ca1d342016-05-16 10:43:01 -06001451 g_free(ctx);
Eric Blakec2e001c2016-05-07 21:16:45 -06001452 return 0;
1453 }
1454
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001455 if (ctx->zflag && ctx->Pflag) {
1456 printf("-z and -P cannot be specified at the same time\n");
1457 g_free(ctx);
1458 return 0;
1459 }
1460
Kevin Wolf797ac582013-06-05 14:19:31 +02001461 ctx->offset = cvtnum(argv[optind]);
1462 if (ctx->offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001463 print_cvtnum_err(ctx->offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001464 g_free(ctx);
1465 return 0;
1466 }
1467 optind++;
1468
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001469 if (ctx->zflag) {
1470 int64_t count = cvtnum(argv[optind]);
1471 if (count < 0) {
1472 print_cvtnum_err(count, argv[optind]);
Kevin Wolf0e01b762016-05-09 12:03:04 +02001473 g_free(ctx);
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001474 return 0;
1475 }
Kevin Wolf797ac582013-06-05 14:19:31 +02001476
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001477 ctx->qiov.size = count;
Eric Blake770e0e02016-05-07 21:16:44 -06001478 blk_aio_write_zeroes(blk, ctx->offset, count, flags, aio_write_done,
1479 ctx);
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001480 } else {
1481 nr_iov = argc - optind;
1482 ctx->buf = create_iovec(blk, &ctx->qiov, &argv[optind], nr_iov,
1483 pattern);
1484 if (ctx->buf == NULL) {
1485 block_acct_invalid(blk_get_stats(blk), BLOCK_ACCT_WRITE);
1486 g_free(ctx);
1487 return 0;
1488 }
1489
1490 gettimeofday(&ctx->t1, NULL);
1491 block_acct_start(blk_get_stats(blk), &ctx->acct, ctx->qiov.size,
1492 BLOCK_ACCT_WRITE);
1493
Eric Blake770e0e02016-05-07 21:16:44 -06001494 blk_aio_pwritev(blk, ctx->offset, &ctx->qiov, flags, aio_write_done,
1495 ctx);
Kevin Wolf5ceb7762016-04-13 12:39:39 +02001496 }
Kevin Wolf797ac582013-06-05 14:19:31 +02001497 return 0;
1498}
1499
Max Reitz4c7b7e92015-02-05 13:58:22 -05001500static int aio_flush_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001501{
Alberto Garcia556c2b62015-10-28 17:33:08 +02001502 BlockAcctCookie cookie;
1503 block_acct_start(blk_get_stats(blk), &cookie, 0, BLOCK_ACCT_FLUSH);
Max Reitz4c7b7e92015-02-05 13:58:22 -05001504 blk_drain_all();
Alberto Garcia556c2b62015-10-28 17:33:08 +02001505 block_acct_done(blk_get_stats(blk), &cookie);
Kevin Wolf797ac582013-06-05 14:19:31 +02001506 return 0;
1507}
1508
1509static const cmdinfo_t aio_flush_cmd = {
1510 .name = "aio_flush",
1511 .cfunc = aio_flush_f,
1512 .oneline = "completes all outstanding aio requests"
1513};
1514
Max Reitz4c7b7e92015-02-05 13:58:22 -05001515static int flush_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001516{
Max Reitz4c7b7e92015-02-05 13:58:22 -05001517 blk_flush(blk);
Kevin Wolf797ac582013-06-05 14:19:31 +02001518 return 0;
1519}
1520
1521static const cmdinfo_t flush_cmd = {
1522 .name = "flush",
1523 .altname = "f",
1524 .cfunc = flush_f,
1525 .oneline = "flush all in-core file state to disk",
1526};
1527
Max Reitz4c7b7e92015-02-05 13:58:22 -05001528static int truncate_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001529{
1530 int64_t offset;
1531 int ret;
1532
1533 offset = cvtnum(argv[1]);
1534 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001535 print_cvtnum_err(offset, argv[1]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001536 return 0;
1537 }
1538
Max Reitz4c7b7e92015-02-05 13:58:22 -05001539 ret = blk_truncate(blk, offset);
Kevin Wolf797ac582013-06-05 14:19:31 +02001540 if (ret < 0) {
1541 printf("truncate: %s\n", strerror(-ret));
1542 return 0;
1543 }
1544
1545 return 0;
1546}
1547
1548static const cmdinfo_t truncate_cmd = {
1549 .name = "truncate",
1550 .altname = "t",
1551 .cfunc = truncate_f,
1552 .argmin = 1,
1553 .argmax = 1,
1554 .args = "off",
1555 .oneline = "truncates the current file at the given offset",
1556};
1557
Max Reitz4c7b7e92015-02-05 13:58:22 -05001558static int length_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001559{
1560 int64_t size;
1561 char s1[64];
1562
Max Reitz4c7b7e92015-02-05 13:58:22 -05001563 size = blk_getlength(blk);
Kevin Wolf797ac582013-06-05 14:19:31 +02001564 if (size < 0) {
1565 printf("getlength: %s\n", strerror(-size));
1566 return 0;
1567 }
1568
1569 cvtstr(size, s1, sizeof(s1));
1570 printf("%s\n", s1);
1571 return 0;
1572}
1573
1574
1575static const cmdinfo_t length_cmd = {
1576 .name = "length",
1577 .altname = "l",
1578 .cfunc = length_f,
1579 .oneline = "gets the length of the current file",
1580};
1581
1582
Max Reitz4c7b7e92015-02-05 13:58:22 -05001583static int info_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001584{
Max Reitz4c7b7e92015-02-05 13:58:22 -05001585 BlockDriverState *bs = blk_bs(blk);
Kevin Wolf797ac582013-06-05 14:19:31 +02001586 BlockDriverInfo bdi;
Max Reitza8d8ecb2013-10-09 10:46:17 +02001587 ImageInfoSpecific *spec_info;
Kevin Wolf797ac582013-06-05 14:19:31 +02001588 char s1[64], s2[64];
1589 int ret;
1590
1591 if (bs->drv && bs->drv->format_name) {
1592 printf("format name: %s\n", bs->drv->format_name);
1593 }
1594 if (bs->drv && bs->drv->protocol_name) {
1595 printf("format name: %s\n", bs->drv->protocol_name);
1596 }
1597
1598 ret = bdrv_get_info(bs, &bdi);
1599 if (ret) {
1600 return 0;
1601 }
1602
1603 cvtstr(bdi.cluster_size, s1, sizeof(s1));
1604 cvtstr(bdi.vm_state_offset, s2, sizeof(s2));
1605
1606 printf("cluster size: %s\n", s1);
1607 printf("vm state offset: %s\n", s2);
1608
Max Reitza8d8ecb2013-10-09 10:46:17 +02001609 spec_info = bdrv_get_specific_info(bs);
1610 if (spec_info) {
1611 printf("Format specific information:\n");
1612 bdrv_image_info_specific_dump(fprintf, stdout, spec_info);
1613 qapi_free_ImageInfoSpecific(spec_info);
1614 }
1615
Kevin Wolf797ac582013-06-05 14:19:31 +02001616 return 0;
1617}
1618
1619
1620
1621static const cmdinfo_t info_cmd = {
1622 .name = "info",
1623 .altname = "i",
1624 .cfunc = info_f,
1625 .oneline = "prints information about the current file",
1626};
1627
1628static void discard_help(void)
1629{
1630 printf(
1631"\n"
1632" discards a range of bytes from the given offset\n"
1633"\n"
1634" Example:\n"
1635" 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n"
1636"\n"
1637" Discards a segment of the currently open file.\n"
1638" -C, -- report statistics in a machine parsable format\n"
1639" -q, -- quiet mode, do not show I/O statistics\n"
1640"\n");
1641}
1642
Max Reitz4c7b7e92015-02-05 13:58:22 -05001643static int discard_f(BlockBackend *blk, int argc, char **argv);
Kevin Wolf797ac582013-06-05 14:19:31 +02001644
1645static const cmdinfo_t discard_cmd = {
1646 .name = "discard",
1647 .altname = "d",
1648 .cfunc = discard_f,
1649 .argmin = 2,
1650 .argmax = -1,
1651 .args = "[-Cq] off len",
1652 .oneline = "discards a number of bytes at a specified offset",
1653 .help = discard_help,
1654};
1655
Max Reitz4c7b7e92015-02-05 13:58:22 -05001656static int discard_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001657{
1658 struct timeval t1, t2;
Eric Blakedc388522016-05-07 21:16:42 -06001659 bool Cflag = false, qflag = false;
Kevin Wolf797ac582013-06-05 14:19:31 +02001660 int c, ret;
John Snow9b0beaf2015-11-05 18:53:02 -05001661 int64_t offset, count;
Kevin Wolf797ac582013-06-05 14:19:31 +02001662
Eric Blakeb062ad82015-05-12 09:10:56 -06001663 while ((c = getopt(argc, argv, "Cq")) != -1) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001664 switch (c) {
1665 case 'C':
Eric Blakedc388522016-05-07 21:16:42 -06001666 Cflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001667 break;
1668 case 'q':
Eric Blakedc388522016-05-07 21:16:42 -06001669 qflag = true;
Kevin Wolf797ac582013-06-05 14:19:31 +02001670 break;
1671 default:
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001672 return qemuio_command_usage(&discard_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001673 }
1674 }
1675
1676 if (optind != argc - 2) {
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02001677 return qemuio_command_usage(&discard_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02001678 }
1679
1680 offset = cvtnum(argv[optind]);
1681 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001682 print_cvtnum_err(offset, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001683 return 0;
1684 }
1685
1686 optind++;
1687 count = cvtnum(argv[optind]);
1688 if (count < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001689 print_cvtnum_err(count, argv[optind]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001690 return 0;
John Snow9b0beaf2015-11-05 18:53:02 -05001691 } else if (count >> BDRV_SECTOR_BITS > INT_MAX) {
1692 printf("length cannot exceed %"PRIu64", given %s\n",
1693 (uint64_t)INT_MAX << BDRV_SECTOR_BITS,
1694 argv[optind]);
1695 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001696 }
1697
1698 gettimeofday(&t1, NULL);
Max Reitz4c7b7e92015-02-05 13:58:22 -05001699 ret = blk_discard(blk, offset >> BDRV_SECTOR_BITS,
1700 count >> BDRV_SECTOR_BITS);
Kevin Wolf797ac582013-06-05 14:19:31 +02001701 gettimeofday(&t2, NULL);
1702
1703 if (ret < 0) {
1704 printf("discard failed: %s\n", strerror(-ret));
1705 goto out;
1706 }
1707
1708 /* Finally, report back -- -C gives a parsable format */
1709 if (!qflag) {
1710 t2 = tsub(t2, t1);
1711 print_report("discard", &t2, offset, count, count, 1, Cflag);
1712 }
1713
1714out:
1715 return 0;
1716}
1717
Max Reitz4c7b7e92015-02-05 13:58:22 -05001718static int alloc_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001719{
Max Reitz4c7b7e92015-02-05 13:58:22 -05001720 BlockDriverState *bs = blk_bs(blk);
John Snow9b0beaf2015-11-05 18:53:02 -05001721 int64_t offset, sector_num, nb_sectors, remaining;
Kevin Wolf797ac582013-06-05 14:19:31 +02001722 char s1[64];
John Snow9b0beaf2015-11-05 18:53:02 -05001723 int num, ret;
1724 int64_t sum_alloc;
Kevin Wolf797ac582013-06-05 14:19:31 +02001725
1726 offset = cvtnum(argv[1]);
1727 if (offset < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001728 print_cvtnum_err(offset, argv[1]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001729 return 0;
1730 } else if (offset & 0x1ff) {
1731 printf("offset %" PRId64 " is not sector aligned\n",
1732 offset);
1733 return 0;
1734 }
1735
1736 if (argc == 3) {
1737 nb_sectors = cvtnum(argv[2]);
1738 if (nb_sectors < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05001739 print_cvtnum_err(nb_sectors, argv[2]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001740 return 0;
John Snow9b0beaf2015-11-05 18:53:02 -05001741 } else if (nb_sectors > INT_MAX) {
1742 printf("length argument cannot exceed %d, given %s\n",
1743 INT_MAX, argv[2]);
1744 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001745 }
1746 } else {
1747 nb_sectors = 1;
1748 }
1749
1750 remaining = nb_sectors;
1751 sum_alloc = 0;
1752 sector_num = offset >> 9;
1753 while (remaining) {
1754 ret = bdrv_is_allocated(bs, sector_num, remaining, &num);
Paolo Bonzinid6636402013-09-04 19:00:25 +02001755 if (ret < 0) {
1756 printf("is_allocated failed: %s\n", strerror(-ret));
1757 return 0;
1758 }
Kevin Wolf797ac582013-06-05 14:19:31 +02001759 sector_num += num;
1760 remaining -= num;
1761 if (ret) {
1762 sum_alloc += num;
1763 }
1764 if (num == 0) {
1765 nb_sectors -= remaining;
1766 remaining = 0;
1767 }
1768 }
1769
1770 cvtstr(offset, s1, sizeof(s1));
1771
John Snow9b0beaf2015-11-05 18:53:02 -05001772 printf("%"PRId64"/%"PRId64" sectors allocated at offset %s\n",
Kevin Wolf797ac582013-06-05 14:19:31 +02001773 sum_alloc, nb_sectors, s1);
1774 return 0;
1775}
1776
1777static const cmdinfo_t alloc_cmd = {
1778 .name = "alloc",
1779 .altname = "a",
1780 .argmin = 1,
1781 .argmax = 2,
1782 .cfunc = alloc_f,
1783 .args = "off [sectors]",
1784 .oneline = "checks if a sector is present in the file",
1785};
1786
1787
1788static int map_is_allocated(BlockDriverState *bs, int64_t sector_num,
1789 int64_t nb_sectors, int64_t *pnum)
1790{
1791 int num, num_checked;
1792 int ret, firstret;
1793
1794 num_checked = MIN(nb_sectors, INT_MAX);
1795 ret = bdrv_is_allocated(bs, sector_num, num_checked, &num);
1796 if (ret < 0) {
1797 return ret;
1798 }
1799
1800 firstret = ret;
1801 *pnum = num;
1802
1803 while (nb_sectors > 0 && ret == firstret) {
1804 sector_num += num;
1805 nb_sectors -= num;
1806
1807 num_checked = MIN(nb_sectors, INT_MAX);
1808 ret = bdrv_is_allocated(bs, sector_num, num_checked, &num);
Max Reitz4b25bbc2014-10-22 17:00:16 +02001809 if (ret == firstret && num) {
Kevin Wolf797ac582013-06-05 14:19:31 +02001810 *pnum += num;
1811 } else {
1812 break;
1813 }
1814 }
1815
1816 return firstret;
1817}
1818
Max Reitz4c7b7e92015-02-05 13:58:22 -05001819static int map_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001820{
1821 int64_t offset;
Max Reitz4c7b7e92015-02-05 13:58:22 -05001822 int64_t nb_sectors, total_sectors;
Kevin Wolf797ac582013-06-05 14:19:31 +02001823 char s1[64];
1824 int64_t num;
1825 int ret;
1826 const char *retstr;
1827
1828 offset = 0;
Max Reitz4c7b7e92015-02-05 13:58:22 -05001829 total_sectors = blk_nb_sectors(blk);
1830 if (total_sectors < 0) {
1831 error_report("Failed to query image length: %s",
1832 strerror(-total_sectors));
1833 return 0;
1834 }
1835
1836 nb_sectors = total_sectors;
Kevin Wolf797ac582013-06-05 14:19:31 +02001837
1838 do {
Max Reitz4c7b7e92015-02-05 13:58:22 -05001839 ret = map_is_allocated(blk_bs(blk), offset, nb_sectors, &num);
Kevin Wolf797ac582013-06-05 14:19:31 +02001840 if (ret < 0) {
1841 error_report("Failed to get allocation status: %s", strerror(-ret));
1842 return 0;
Max Reitz4b25bbc2014-10-22 17:00:16 +02001843 } else if (!num) {
1844 error_report("Unexpected end of image");
1845 return 0;
Kevin Wolf797ac582013-06-05 14:19:31 +02001846 }
1847
1848 retstr = ret ? " allocated" : "not allocated";
1849 cvtstr(offset << 9ULL, s1, sizeof(s1));
1850 printf("[% 24" PRId64 "] % 8" PRId64 "/% 8" PRId64 " sectors %s "
1851 "at offset %s (%d)\n",
1852 offset << 9ULL, num, nb_sectors, retstr, s1, ret);
1853
1854 offset += num;
1855 nb_sectors -= num;
Max Reitz4c7b7e92015-02-05 13:58:22 -05001856 } while (offset < total_sectors);
Kevin Wolf797ac582013-06-05 14:19:31 +02001857
1858 return 0;
1859}
1860
1861static const cmdinfo_t map_cmd = {
1862 .name = "map",
1863 .argmin = 0,
1864 .argmax = 0,
1865 .cfunc = map_f,
1866 .args = "",
1867 .oneline = "prints the allocated areas of a file",
1868};
1869
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01001870static void reopen_help(void)
1871{
1872 printf(
1873"\n"
1874" Changes the open options of an already opened image\n"
1875"\n"
1876" Example:\n"
1877" 'reopen -o lazy-refcounts=on' - activates lazy refcount writeback on a qcow2 image\n"
1878"\n"
1879" -r, -- Reopen the image read-only\n"
1880" -c, -- Change the cache mode to the given value\n"
1881" -o, -- Changes block driver options (cf. 'open' command)\n"
1882"\n");
1883}
1884
1885static int reopen_f(BlockBackend *blk, int argc, char **argv);
1886
1887static QemuOptsList reopen_opts = {
1888 .name = "reopen",
1889 .merge_lists = true,
1890 .head = QTAILQ_HEAD_INITIALIZER(reopen_opts.head),
1891 .desc = {
1892 /* no elements => accept any params */
1893 { /* end of list */ }
1894 },
1895};
1896
1897static const cmdinfo_t reopen_cmd = {
1898 .name = "reopen",
1899 .argmin = 0,
1900 .argmax = -1,
1901 .cfunc = reopen_f,
1902 .args = "[-r] [-c cache] [-o options]",
1903 .oneline = "reopens an image with new options",
1904 .help = reopen_help,
1905};
1906
1907static int reopen_f(BlockBackend *blk, int argc, char **argv)
1908{
1909 BlockDriverState *bs = blk_bs(blk);
1910 QemuOpts *qopts;
1911 QDict *opts;
1912 int c;
1913 int flags = bs->open_flags;
Kevin Wolf19dbecd2016-03-18 15:36:31 +01001914 bool writethrough = !blk_enable_write_cache(blk);
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01001915
1916 BlockReopenQueue *brq;
1917 Error *local_err = NULL;
1918
1919 while ((c = getopt(argc, argv, "c:o:r")) != -1) {
1920 switch (c) {
1921 case 'c':
Kevin Wolf19dbecd2016-03-18 15:36:31 +01001922 if (bdrv_parse_cache_mode(optarg, &flags, &writethrough) < 0) {
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01001923 error_report("Invalid cache option: %s", optarg);
1924 return 0;
1925 }
1926 break;
1927 case 'o':
1928 if (!qemu_opts_parse_noisily(&reopen_opts, optarg, 0)) {
1929 qemu_opts_reset(&reopen_opts);
1930 return 0;
1931 }
1932 break;
1933 case 'r':
1934 flags &= ~BDRV_O_RDWR;
1935 break;
1936 default:
1937 qemu_opts_reset(&reopen_opts);
1938 return qemuio_command_usage(&reopen_cmd);
1939 }
1940 }
1941
1942 if (optind != argc) {
1943 qemu_opts_reset(&reopen_opts);
1944 return qemuio_command_usage(&reopen_cmd);
1945 }
1946
Kevin Wolf19dbecd2016-03-18 15:36:31 +01001947 if (writethrough != blk_enable_write_cache(blk) &&
1948 blk_get_attached_dev(blk))
1949 {
1950 error_report("Cannot change cache.writeback: Device attached");
1951 qemu_opts_reset(&reopen_opts);
1952 return 0;
1953 }
1954
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01001955 qopts = qemu_opts_find(&reopen_opts, NULL);
1956 opts = qopts ? qemu_opts_to_qdict(qopts, NULL) : NULL;
1957 qemu_opts_reset(&reopen_opts);
1958
1959 brq = bdrv_reopen_queue(NULL, bs, opts, flags);
1960 bdrv_reopen_multiple(brq, &local_err);
1961 if (local_err) {
1962 error_report_err(local_err);
Kevin Wolf19dbecd2016-03-18 15:36:31 +01001963 } else {
1964 blk_set_enable_write_cache(blk, !writethrough);
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01001965 }
1966
1967 return 0;
1968}
1969
Max Reitz4c7b7e92015-02-05 13:58:22 -05001970static int break_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02001971{
1972 int ret;
1973
Max Reitz4c7b7e92015-02-05 13:58:22 -05001974 ret = bdrv_debug_breakpoint(blk_bs(blk), argv[1], argv[2]);
Kevin Wolf797ac582013-06-05 14:19:31 +02001975 if (ret < 0) {
1976 printf("Could not set breakpoint: %s\n", strerror(-ret));
1977 }
1978
1979 return 0;
1980}
1981
Max Reitz4c7b7e92015-02-05 13:58:22 -05001982static int remove_break_f(BlockBackend *blk, int argc, char **argv)
Fam Zheng4cc70e92013-11-20 10:01:54 +08001983{
1984 int ret;
1985
Max Reitz4c7b7e92015-02-05 13:58:22 -05001986 ret = bdrv_debug_remove_breakpoint(blk_bs(blk), argv[1]);
Fam Zheng4cc70e92013-11-20 10:01:54 +08001987 if (ret < 0) {
1988 printf("Could not remove breakpoint %s: %s\n", argv[1], strerror(-ret));
1989 }
1990
1991 return 0;
1992}
1993
Kevin Wolf797ac582013-06-05 14:19:31 +02001994static const cmdinfo_t break_cmd = {
1995 .name = "break",
1996 .argmin = 2,
1997 .argmax = 2,
1998 .cfunc = break_f,
1999 .args = "event tag",
2000 .oneline = "sets a breakpoint on event and tags the stopped "
2001 "request as tag",
2002};
2003
Fam Zheng4cc70e92013-11-20 10:01:54 +08002004static const cmdinfo_t remove_break_cmd = {
2005 .name = "remove_break",
2006 .argmin = 1,
2007 .argmax = 1,
2008 .cfunc = remove_break_f,
2009 .args = "tag",
2010 .oneline = "remove a breakpoint by tag",
2011};
2012
Max Reitz4c7b7e92015-02-05 13:58:22 -05002013static int resume_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02002014{
2015 int ret;
2016
Max Reitz4c7b7e92015-02-05 13:58:22 -05002017 ret = bdrv_debug_resume(blk_bs(blk), argv[1]);
Kevin Wolf797ac582013-06-05 14:19:31 +02002018 if (ret < 0) {
2019 printf("Could not resume request: %s\n", strerror(-ret));
2020 }
2021
2022 return 0;
2023}
2024
2025static const cmdinfo_t resume_cmd = {
2026 .name = "resume",
2027 .argmin = 1,
2028 .argmax = 1,
2029 .cfunc = resume_f,
2030 .args = "tag",
2031 .oneline = "resumes the request tagged as tag",
2032};
2033
Max Reitz4c7b7e92015-02-05 13:58:22 -05002034static int wait_break_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02002035{
Max Reitz4c7b7e92015-02-05 13:58:22 -05002036 while (!bdrv_debug_is_suspended(blk_bs(blk), argv[1])) {
2037 aio_poll(blk_get_aio_context(blk), true);
Kevin Wolf797ac582013-06-05 14:19:31 +02002038 }
2039
2040 return 0;
2041}
2042
2043static const cmdinfo_t wait_break_cmd = {
2044 .name = "wait_break",
2045 .argmin = 1,
2046 .argmax = 1,
2047 .cfunc = wait_break_f,
2048 .args = "tag",
2049 .oneline = "waits for the suspension of a request",
2050};
2051
Max Reitz4c7b7e92015-02-05 13:58:22 -05002052static int abort_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolf797ac582013-06-05 14:19:31 +02002053{
2054 abort();
2055}
2056
2057static const cmdinfo_t abort_cmd = {
2058 .name = "abort",
2059 .cfunc = abort_f,
2060 .flags = CMD_NOFILE_OK,
2061 .oneline = "simulate a program crash using abort(3)",
2062};
2063
Max Reitz0e82dc72014-12-08 10:48:10 +01002064static void sigraise_help(void)
2065{
2066 printf(
2067"\n"
2068" raises the given signal\n"
2069"\n"
2070" Example:\n"
2071" 'sigraise %i' - raises SIGTERM\n"
2072"\n"
2073" Invokes raise(signal), where \"signal\" is the mandatory integer argument\n"
2074" given to sigraise.\n"
2075"\n", SIGTERM);
2076}
2077
Max Reitz4c7b7e92015-02-05 13:58:22 -05002078static int sigraise_f(BlockBackend *blk, int argc, char **argv);
Max Reitz0e82dc72014-12-08 10:48:10 +01002079
2080static const cmdinfo_t sigraise_cmd = {
2081 .name = "sigraise",
2082 .cfunc = sigraise_f,
2083 .argmin = 1,
2084 .argmax = 1,
2085 .flags = CMD_NOFILE_OK,
2086 .args = "signal",
2087 .oneline = "raises a signal",
2088 .help = sigraise_help,
2089};
2090
Max Reitz4c7b7e92015-02-05 13:58:22 -05002091static int sigraise_f(BlockBackend *blk, int argc, char **argv)
Max Reitz0e82dc72014-12-08 10:48:10 +01002092{
John Snow9b0beaf2015-11-05 18:53:02 -05002093 int64_t sig = cvtnum(argv[1]);
Max Reitz0e82dc72014-12-08 10:48:10 +01002094 if (sig < 0) {
John Snowa9ecfa02015-11-05 18:53:04 -05002095 print_cvtnum_err(sig, argv[1]);
Max Reitz0e82dc72014-12-08 10:48:10 +01002096 return 0;
John Snow9b0beaf2015-11-05 18:53:02 -05002097 } else if (sig > NSIG) {
2098 printf("signal argument '%s' is too large to be a valid signal\n",
2099 argv[1]);
2100 return 0;
Max Reitz0e82dc72014-12-08 10:48:10 +01002101 }
2102
2103 /* Using raise() to kill this process does not necessarily flush all open
2104 * streams. At least stdout and stderr (although the latter should be
2105 * non-buffered anyway) should be flushed, though. */
2106 fflush(stdout);
2107 fflush(stderr);
2108
2109 raise(sig);
2110 return 0;
2111}
2112
Kevin Wolfcd33d022014-01-15 15:39:10 +01002113static void sleep_cb(void *opaque)
2114{
2115 bool *expired = opaque;
2116 *expired = true;
2117}
2118
Max Reitz4c7b7e92015-02-05 13:58:22 -05002119static int sleep_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolfcd33d022014-01-15 15:39:10 +01002120{
2121 char *endptr;
2122 long ms;
2123 struct QEMUTimer *timer;
2124 bool expired = false;
2125
2126 ms = strtol(argv[1], &endptr, 0);
2127 if (ms < 0 || *endptr != '\0') {
2128 printf("%s is not a valid number\n", argv[1]);
2129 return 0;
2130 }
2131
2132 timer = timer_new_ns(QEMU_CLOCK_HOST, sleep_cb, &expired);
2133 timer_mod(timer, qemu_clock_get_ns(QEMU_CLOCK_HOST) + SCALE_MS * ms);
2134
2135 while (!expired) {
2136 main_loop_wait(false);
2137 }
2138
2139 timer_free(timer);
2140
2141 return 0;
2142}
2143
2144static const cmdinfo_t sleep_cmd = {
2145 .name = "sleep",
2146 .argmin = 1,
2147 .argmax = 1,
2148 .cfunc = sleep_f,
2149 .flags = CMD_NOFILE_OK,
2150 .oneline = "waits for the given value in milliseconds",
2151};
2152
Kevin Wolff18a8342013-06-05 14:19:33 +02002153static void help_oneline(const char *cmd, const cmdinfo_t *ct)
2154{
2155 if (cmd) {
2156 printf("%s ", cmd);
2157 } else {
2158 printf("%s ", ct->name);
2159 if (ct->altname) {
2160 printf("(or %s) ", ct->altname);
2161 }
2162 }
2163
2164 if (ct->args) {
2165 printf("%s ", ct->args);
2166 }
2167 printf("-- %s\n", ct->oneline);
2168}
2169
2170static void help_onecmd(const char *cmd, const cmdinfo_t *ct)
2171{
2172 help_oneline(cmd, ct);
2173 if (ct->help) {
2174 ct->help();
2175 }
2176}
2177
2178static void help_all(void)
2179{
2180 const cmdinfo_t *ct;
2181
2182 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
2183 help_oneline(ct->name, ct);
2184 }
2185 printf("\nUse 'help commandname' for extended help.\n");
2186}
2187
Max Reitz4c7b7e92015-02-05 13:58:22 -05002188static int help_f(BlockBackend *blk, int argc, char **argv)
Kevin Wolff18a8342013-06-05 14:19:33 +02002189{
2190 const cmdinfo_t *ct;
2191
2192 if (argc == 1) {
2193 help_all();
2194 return 0;
2195 }
2196
2197 ct = find_command(argv[1]);
2198 if (ct == NULL) {
2199 printf("command %s not found\n", argv[1]);
2200 return 0;
2201 }
2202
2203 help_onecmd(argv[1], ct);
2204 return 0;
2205}
2206
2207static const cmdinfo_t help_cmd = {
2208 .name = "help",
2209 .altname = "?",
2210 .cfunc = help_f,
2211 .argmin = 0,
2212 .argmax = 1,
2213 .flags = CMD_FLAG_GLOBAL,
2214 .args = "[command]",
2215 .oneline = "help for one or all commands",
2216};
2217
Max Reitz4c7b7e92015-02-05 13:58:22 -05002218bool qemuio_command(BlockBackend *blk, const char *cmd)
Kevin Wolfdd583292013-06-05 14:19:32 +02002219{
2220 char *input;
2221 const cmdinfo_t *ct;
2222 char **v;
2223 int c;
2224 bool done = false;
2225
2226 input = g_strdup(cmd);
2227 v = breakline(input, &c);
2228 if (c) {
2229 ct = find_command(v[0]);
2230 if (ct) {
Max Reitz4c7b7e92015-02-05 13:58:22 -05002231 done = command(blk, ct, c, v);
Kevin Wolfdd583292013-06-05 14:19:32 +02002232 } else {
2233 fprintf(stderr, "command \"%s\" not found\n", v[0]);
2234 }
2235 }
2236 g_free(input);
2237 g_free(v);
2238
2239 return done;
2240}
2241
Kevin Wolf797ac582013-06-05 14:19:31 +02002242static void __attribute((constructor)) init_qemuio_commands(void)
2243{
2244 /* initialize commands */
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02002245 qemuio_add_command(&help_cmd);
2246 qemuio_add_command(&read_cmd);
2247 qemuio_add_command(&readv_cmd);
2248 qemuio_add_command(&write_cmd);
2249 qemuio_add_command(&writev_cmd);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02002250 qemuio_add_command(&aio_read_cmd);
2251 qemuio_add_command(&aio_write_cmd);
2252 qemuio_add_command(&aio_flush_cmd);
2253 qemuio_add_command(&flush_cmd);
2254 qemuio_add_command(&truncate_cmd);
2255 qemuio_add_command(&length_cmd);
2256 qemuio_add_command(&info_cmd);
2257 qemuio_add_command(&discard_cmd);
2258 qemuio_add_command(&alloc_cmd);
2259 qemuio_add_command(&map_cmd);
Kevin Wolf5bbd2e52014-12-08 17:37:28 +01002260 qemuio_add_command(&reopen_cmd);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02002261 qemuio_add_command(&break_cmd);
Fam Zheng4cc70e92013-11-20 10:01:54 +08002262 qemuio_add_command(&remove_break_cmd);
Kevin Wolfc2cdf5c2013-06-05 14:19:36 +02002263 qemuio_add_command(&resume_cmd);
2264 qemuio_add_command(&wait_break_cmd);
2265 qemuio_add_command(&abort_cmd);
Kevin Wolfcd33d022014-01-15 15:39:10 +01002266 qemuio_add_command(&sleep_cmd);
Max Reitz0e82dc72014-12-08 10:48:10 +01002267 qemuio_add_command(&sigraise_cmd);
Kevin Wolf797ac582013-06-05 14:19:31 +02002268}