qemu-io.c 37.7 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * Command line utility to exercise the QEMU I/O path.
 *
 * Copyright (C) 2009 Red Hat, Inc.
 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */
10
#include <sys/time.h>
11 12 13 14
#include <sys/types.h>
#include <stdarg.h>
#include <stdio.h>
#include <getopt.h>
15
#include <libgen.h>
16 17 18 19 20 21 22 23 24 25 26 27 28 29

#include "qemu-common.h"
#include "block_int.h"
#include "cmd.h"

#define VERSION	"0.0.1"

#define CMD_NOFILE_OK	0x01

char *progname;
static BlockDriverState *bs;

static int misalign;

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
/*
 * Parse the pattern argument to various sub-commands.
 *
 * Because the pattern is used as an argument to memset it must evaluate
 * to an unsigned integer that fits into a single byte.
 */
static int parse_pattern(const char *arg)
{
	char *endptr = NULL;
	long pattern;

	pattern = strtol(arg, &endptr, 0);
	if (pattern < 0 || pattern > UCHAR_MAX || *endptr != '\0') {
		printf("%s is not a valid pattern byte\n", arg);
		return -1;
	}

	return pattern;
}

50 51 52 53 54 55 56 57 58 59 60 61 62 63
/*
 * Memory allocation helpers.
 *
 * Make sure memory is aligned by default, or purposefully misaligned if
 * that is specified on the command line.
 */

#define MISALIGN_OFFSET		16
static void *qemu_io_alloc(size_t len, int pattern)
{
	void *buf;

	if (misalign)
		len += MISALIGN_OFFSET;
64
	buf = qemu_blockalign(bs, len);
65 66 67 68 69 70 71 72 73 74 75 76 77 78
	memset(buf, pattern, len);
	if (misalign)
		buf += MISALIGN_OFFSET;
	return buf;
}

static void qemu_io_free(void *p)
{
	if (misalign)
		p -= MISALIGN_OFFSET;
	qemu_vfree(p);
}

static void
S
Stefan Weil 已提交
79
dump_buffer(const void *buffer, int64_t offset, int len)
80 81
{
	int i, j;
S
Stefan Weil 已提交
82
	const uint8_t *p;
83 84

	for (i = 0, p = buffer; i < len; i += 16) {
S
Stefan Weil 已提交
85
		const uint8_t *s = p;
86

B
Blue Swirl 已提交
87
                printf("%08" PRIx64 ":  ", offset + i);
88 89 90 91
		for (j = 0; j < 16 && i + j < len; j++, p++)
			printf("%02x ", *p);
		printf(" ");
		for (j = 0; j < 16 && i + j < len; j++, s++) {
S
Stefan Weil 已提交
92
			if (isalnum(*s))
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
				printf("%c", *s);
			else
				printf(".");
		}
		printf("\n");
	}
}

static void
print_report(const char *op, struct timeval *t, int64_t offset,
		int count, int total, int cnt, int Cflag)
{
	char s1[64], s2[64], ts[64];

	timestr(t, ts, sizeof(ts), Cflag ? VERBOSE_FIXED_TIME : 0);
	if (!Cflag) {
		cvtstr((double)total, s1, sizeof(s1));
		cvtstr(tdiv((double)total, *t), s2, sizeof(s2));
B
Blue Swirl 已提交
111 112
                printf("%s %d/%d bytes at offset %" PRId64 "\n",
                       op, total, count, offset);
113 114 115 116 117 118 119 120 121 122
		printf("%s, %d ops; %s (%s/sec and %.4f ops/sec)\n",
			s1, cnt, ts, s2, tdiv((double)cnt, *t));
	} else {/* bytes,ops,time,bytes/sec,ops/sec */
		printf("%d,%d,%s,%.3f,%.3f\n",
			total, cnt, ts,
			tdiv((double)total, *t),
			tdiv((double)cnt, *t));
	}
}

123 124 125 126 127 128 129 130 131
/*
 * Parse multiple length statements for vectored I/O, and construct an I/O
 * vector matching it.
 */
static void *
create_iovec(QEMUIOVector *qiov, char **argv, int nr_iov, int pattern)
{
	size_t *sizes = calloc(nr_iov, sizeof(size_t));
	size_t count = 0;
K
Kevin Wolf 已提交
132 133
	void *buf = NULL;
	void *p;
134 135 136 137
	int i;

	for (i = 0; i < nr_iov; i++) {
		char *arg = argv[i];
J
Joel Schopp 已提交
138
                int64_t len;
139 140 141 142

		len = cvtnum(arg);
		if (len < 0) {
			printf("non-numeric length argument -- %s\n", arg);
K
Kevin Wolf 已提交
143
			goto fail;
144 145 146
		}

		/* should be SIZE_T_MAX, but that doesn't exist */
J
Joel Schopp 已提交
147
		if (len > INT_MAX) {
148
			printf("too large length argument -- %s\n", arg);
K
Kevin Wolf 已提交
149
			goto fail;
150 151 152
		}

		if (len & 0x1ff) {
B
Blue Swirl 已提交
153 154
                        printf("length argument %" PRId64
                               " is not sector aligned\n", len);
K
Kevin Wolf 已提交
155
			goto fail;
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
		}

		sizes[i] = len;
		count += len;
	}

	qemu_iovec_init(qiov, nr_iov);

	buf = p = qemu_io_alloc(count, pattern);

	for (i = 0; i < nr_iov; i++) {
		qemu_iovec_add(qiov, p, sizes[i]);
		p += sizes[i];
	}

K
Kevin Wolf 已提交
171
fail:
172 173 174 175
	free(sizes);
	return buf;
}

176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
static int do_read(char *buf, int64_t offset, int count, int *total)
{
	int ret;

	ret = bdrv_read(bs, offset >> 9, (uint8_t *)buf, count >> 9);
	if (ret < 0)
		return ret;
	*total = count;
	return 1;
}

static int do_write(char *buf, int64_t offset, int count, int *total)
{
	int ret;

	ret = bdrv_write(bs, offset >> 9, (uint8_t *)buf, count >> 9);
	if (ret < 0)
		return ret;
	*total = count;
	return 1;
}

static int do_pread(char *buf, int64_t offset, int count, int *total)
{
	*total = bdrv_pread(bs, offset, (uint8_t *)buf, count);
	if (*total < 0)
		return *total;
	return 1;
}

static int do_pwrite(char *buf, int64_t offset, int count, int *total)
{
	*total = bdrv_pwrite(bs, offset, (uint8_t *)buf, count);
	if (*total < 0)
		return *total;
	return 1;
}

214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
static int do_load_vmstate(char *buf, int64_t offset, int count, int *total)
{
	*total = bdrv_load_vmstate(bs, (uint8_t *)buf, offset, count);
	if (*total < 0)
		return *total;
	return 1;
}

static int do_save_vmstate(char *buf, int64_t offset, int count, int *total)
{
	*total = bdrv_save_vmstate(bs, (uint8_t *)buf, offset, count);
	if (*total < 0)
		return *total;
	return 1;
}

230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
#define NOT_DONE 0x7fffffff
static void aio_rw_done(void *opaque, int ret)
{
	*(int *)opaque = ret;
}

static int do_aio_readv(QEMUIOVector *qiov, int64_t offset, int *total)
{
	BlockDriverAIOCB *acb;
	int async_ret = NOT_DONE;

	acb = bdrv_aio_readv(bs, offset >> 9, qiov, qiov->size >> 9,
			     aio_rw_done, &async_ret);
	if (!acb)
		return -EIO;

	while (async_ret == NOT_DONE)
		qemu_aio_wait();

	*total = qiov->size;
	return async_ret < 0 ? async_ret : 1;
}

static int do_aio_writev(QEMUIOVector *qiov, int64_t offset, int *total)
{
	BlockDriverAIOCB *acb;
	int async_ret = NOT_DONE;

	acb = bdrv_aio_writev(bs, offset >> 9, qiov, qiov->size >> 9,
			      aio_rw_done, &async_ret);
	if (!acb)
		return -EIO;

	while (async_ret == NOT_DONE)
		qemu_aio_wait();

266
	*total = qiov->size;
267 268 269
	return async_ret < 0 ? async_ret : 1;
}

K
Kevin Wolf 已提交
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
struct multiwrite_async_ret {
	int num_done;
	int error;
};

static void multiwrite_cb(void *opaque, int ret)
{
	struct multiwrite_async_ret *async_ret = opaque;

	async_ret->num_done++;
	if (ret < 0) {
		async_ret->error = ret;
	}
}

static int do_aio_multiwrite(BlockRequest* reqs, int num_reqs, int *total)
{
	int i, ret;
	struct multiwrite_async_ret async_ret = {
		.num_done = 0,
		.error = 0,
	};

	*total = 0;
	for (i = 0; i < num_reqs; i++) {
		reqs[i].cb = multiwrite_cb;
		reqs[i].opaque = &async_ret;
		*total += reqs[i].qiov->size;
	}

	ret = bdrv_aio_multiwrite(bs, reqs, num_reqs);
	if (ret < 0) {
		return ret;
	}

	while (async_ret.num_done < num_reqs) {
		qemu_aio_wait();
	}

	return async_ret.error < 0 ? async_ret.error : 1;
}
311 312 313 314 315 316 317 318 319 320 321 322 323

static void
read_help(void)
{
	printf(
"\n"
" reads a range of bytes from the given offset\n"
"\n"
" Example:\n"
" 'read -v 512 1k' - dumps 1 kilobyte read from 512 bytes into the file\n"
"\n"
" Reads a segment of the currently open file, optionally dumping it to the\n"
" standard output stream (with -v option) for subsequent inspection.\n"
324
" -b, -- read from the VM state rather than the virtual disk\n"
325 326
" -C, -- report statistics in a machine parsable format\n"
" -l, -- length for pattern verification (only with -P)\n"
327
" -p, -- use bdrv_pread to read the file\n"
328
" -P, -- use a pattern to verify read data\n"
K
Kevin Wolf 已提交
329
" -q, -- quiet mode, do not show I/O statistics\n"
330 331
" -s, -- start offset for pattern verification (only with -P)\n"
" -v, -- dump buffer to standard output\n"
332 333 334
"\n");
}

B
Blue Swirl 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347
static int read_f(int argc, char **argv);

static const cmdinfo_t read_cmd = {
	.name		= "read",
	.altname	= "r",
	.cfunc		= read_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-abCpqv] [-P pattern [-s off] [-l len]] off len",
	.oneline	= "reads a number of bytes at a specified offset",
	.help		= read_help,
};

348 349 350 351 352
static int
read_f(int argc, char **argv)
{
	struct timeval t1, t2;
	int Cflag = 0, pflag = 0, qflag = 0, vflag = 0;
353
	int Pflag = 0, sflag = 0, lflag = 0, bflag = 0;
354 355 356
	int c, cnt;
	char *buf;
	int64_t offset;
P
Paul Brook 已提交
357 358 359
	int count;
        /* Some compilers get confused and warn if this is not initialized.  */
        int total = 0;
360
	int pattern = 0, pattern_offset = 0, pattern_count = 0;
361

362
	while ((c = getopt(argc, argv, "bCl:pP:qs:v")) != EOF) {
363
		switch (c) {
364 365 366
		case 'b':
			bflag = 1;
			break;
367 368 369
		case 'C':
			Cflag = 1;
			break;
370 371 372 373 374 375 376 377
		case 'l':
			lflag = 1;
			pattern_count = cvtnum(optarg);
			if (pattern_count < 0) {
				printf("non-numeric length argument -- %s\n", optarg);
				return 0;
			}
			break;
378 379 380
		case 'p':
			pflag = 1;
			break;
381 382
		case 'P':
			Pflag = 1;
383 384 385
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
386
			break;
387 388 389
		case 'q':
			qflag = 1;
			break;
390 391 392 393 394 395 396 397
		case 's':
			sflag = 1;
			pattern_offset = cvtnum(optarg);
			if (pattern_offset < 0) {
				printf("non-numeric length argument -- %s\n", optarg);
				return 0;
			}
			break;
398 399 400 401 402 403 404 405 406 407 408
		case 'v':
			vflag = 1;
			break;
		default:
			return command_usage(&read_cmd);
		}
	}

	if (optind != argc - 2)
		return command_usage(&read_cmd);

409 410 411 412 413
	if (bflag && pflag) {
		printf("-b and -p cannot be specified at the same time\n");
		return 0;
	}

414 415 416 417 418 419 420 421 422 423 424 425 426
	offset = cvtnum(argv[optind]);
	if (offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

	optind++;
	count = cvtnum(argv[optind]);
	if (count < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

427 428 429 430 431 432 433 434 435 436 437 438 439
    if (!Pflag && (lflag || sflag)) {
        return command_usage(&read_cmd);
    }

    if (!lflag) {
        pattern_count = count - pattern_offset;
    }

    if ((pattern_count < 0) || (pattern_count + pattern_offset > count))  {
        printf("pattern verfication range exceeds end of read data\n");
        return 0;
    }

440 441
	if (!pflag)
		if (offset & 0x1ff) {
B
Blue Swirl 已提交
442 443
                        printf("offset %" PRId64 " is not sector aligned\n",
                               offset);
444 445 446 447 448 449 450 451 452 453 454 455 456 457
			return 0;

		if (count & 0x1ff) {
			printf("count %d is not sector aligned\n",
				count);
			return 0;
		}
	}

	buf = qemu_io_alloc(count, 0xab);

	gettimeofday(&t1, NULL);
	if (pflag)
		cnt = do_pread(buf, offset, count, &total);
458 459
	else if (bflag)
		cnt = do_load_vmstate(buf, offset, count, &total);
460 461 462 463 464 465
	else
		cnt = do_read(buf, offset, count, &total);
	gettimeofday(&t2, NULL);

	if (cnt < 0) {
		printf("read failed: %s\n", strerror(-cnt));
K
Kevin Wolf 已提交
466
		goto out;
467 468
	}

469
	if (Pflag) {
470 471 472
		void* cmp_buf = malloc(pattern_count);
		memset(cmp_buf, pattern, pattern_count);
		if (memcmp(buf + pattern_offset, cmp_buf, pattern_count)) {
B
Blue Swirl 已提交
473 474 475
			printf("Pattern verification failed at offset %"
                               PRId64 ", %d bytes\n",
                               offset + pattern_offset, pattern_count);
476 477 478 479
		}
		free(cmp_buf);
	}

480
	if (qflag)
K
Kevin Wolf 已提交
481
		goto out;
482 483 484 485 486 487 488 489

        if (vflag)
		dump_buffer(buf, offset, count);

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, t1);
	print_report("read", &t2, offset, count, total, cnt, Cflag);

K
Kevin Wolf 已提交
490
out:
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
	qemu_io_free(buf);

	return 0;
}

static void
readv_help(void)
{
	printf(
"\n"
" reads a range of bytes from the given offset into multiple buffers\n"
"\n"
" Example:\n"
" 'readv -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
"\n"
" Reads a segment of the currently open file, optionally dumping it to the\n"
" standard output stream (with -v option) for subsequent inspection.\n"
" Uses multiple iovec buffers if more than one byte range is specified.\n"
" -C, -- report statistics in a machine parsable format\n"
510
" -P, -- use a pattern to verify read data\n"
511
" -v, -- dump buffer to standard output\n"
K
Kevin Wolf 已提交
512
" -q, -- quiet mode, do not show I/O statistics\n"
513 514 515
"\n");
}

B
Blue Swirl 已提交
516 517 518 519 520 521 522 523 524 525 526 527
static int readv_f(int argc, char **argv);

static const cmdinfo_t readv_cmd = {
	.name		= "readv",
	.cfunc		= readv_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cqv] [-P pattern ] off len [len..]",
	.oneline	= "reads a number of bytes at a specified offset",
	.help		= readv_help,
};

528 529 530 531 532 533
static int
readv_f(int argc, char **argv)
{
	struct timeval t1, t2;
	int Cflag = 0, qflag = 0, vflag = 0;
	int c, cnt;
534
	char *buf;
535
	int64_t offset;
536 537
        /* Some compilers get confused and warn if this is not initialized.  */
        int total = 0;
538
	int nr_iov;
539
	QEMUIOVector qiov;
540 541
	int pattern = 0;
	int Pflag = 0;
542

543
	while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
544 545 546 547
		switch (c) {
		case 'C':
			Cflag = 1;
			break;
548 549
		case 'P':
			Pflag = 1;
550 551 552
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
553
			break;
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
		case 'q':
			qflag = 1;
			break;
		case 'v':
			vflag = 1;
			break;
		default:
			return command_usage(&readv_cmd);
		}
	}

	if (optind > argc - 2)
		return command_usage(&readv_cmd);


	offset = cvtnum(argv[optind]);
	if (offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}
	optind++;

	if (offset & 0x1ff) {
B
Blue Swirl 已提交
577 578
                printf("offset %" PRId64 " is not sector aligned\n",
                       offset);
579 580 581 582
		return 0;
	}

	nr_iov = argc - optind;
583
	buf = create_iovec(&qiov, &argv[optind], nr_iov, 0xab);
584 585 586 587 588 589 590

	gettimeofday(&t1, NULL);
	cnt = do_aio_readv(&qiov, offset, &total);
	gettimeofday(&t2, NULL);

	if (cnt < 0) {
		printf("readv failed: %s\n", strerror(-cnt));
K
Kevin Wolf 已提交
591
		goto out;
592 593
	}

594
	if (Pflag) {
595 596 597
		void* cmp_buf = malloc(qiov.size);
		memset(cmp_buf, pattern, qiov.size);
		if (memcmp(buf, cmp_buf, qiov.size)) {
B
Blue Swirl 已提交
598 599 600
			printf("Pattern verification failed at offset %"
                               PRId64 ", %zd bytes\n",
                               offset, qiov.size);
601 602 603 604
		}
		free(cmp_buf);
	}

605
	if (qflag)
K
Kevin Wolf 已提交
606
		goto out;
607 608 609 610 611 612 613 614

        if (vflag)
		dump_buffer(buf, offset, qiov.size);

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, t1);
	print_report("read", &t2, offset, qiov.size, total, cnt, Cflag);

K
Kevin Wolf 已提交
615
out:
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631
	qemu_io_free(buf);
	return 0;
}

static void
write_help(void)
{
	printf(
"\n"
" writes a range of bytes from the given offset\n"
"\n"
" Example:\n"
" 'write 512 1k' - writes 1 kilobyte at 512 bytes into the open file\n"
"\n"
" Writes into a segment of the currently open file, using a buffer\n"
" filled with a set pattern (0xcdcdcdcd).\n"
632
" -b, -- write to the VM state rather than the virtual disk\n"
633 634 635
" -p, -- use bdrv_pwrite to write the file\n"
" -P, -- use different pattern to fill file\n"
" -C, -- report statistics in a machine parsable format\n"
K
Kevin Wolf 已提交
636
" -q, -- quiet mode, do not show I/O statistics\n"
637 638 639
"\n");
}

B
Blue Swirl 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652
static int write_f(int argc, char **argv);

static const cmdinfo_t write_cmd = {
	.name		= "write",
	.altname	= "w",
	.cfunc		= write_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-abCpq] [-P pattern ] off len",
	.oneline	= "writes a number of bytes at a specified offset",
	.help		= write_help,
};

653 654 655 656
static int
write_f(int argc, char **argv)
{
	struct timeval t1, t2;
657
	int Cflag = 0, pflag = 0, qflag = 0, bflag = 0;
658 659 660
	int c, cnt;
	char *buf;
	int64_t offset;
P
Paul Brook 已提交
661 662 663
	int count;
        /* Some compilers get confused and warn if this is not initialized.  */
        int total = 0;
664 665
	int pattern = 0xcd;

666
	while ((c = getopt(argc, argv, "bCpP:q")) != EOF) {
667
		switch (c) {
668 669 670
		case 'b':
			bflag = 1;
			break;
671 672 673 674 675 676 677
		case 'C':
			Cflag = 1;
			break;
		case 'p':
			pflag = 1;
			break;
		case 'P':
678 679 680
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
681 682 683 684 685 686 687 688 689 690 691 692
			break;
		case 'q':
			qflag = 1;
			break;
		default:
			return command_usage(&write_cmd);
		}
	}

	if (optind != argc - 2)
		return command_usage(&write_cmd);

693 694 695 696 697
	if (bflag && pflag) {
		printf("-b and -p cannot be specified at the same time\n");
		return 0;
	}

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
	offset = cvtnum(argv[optind]);
	if (offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

	optind++;
	count = cvtnum(argv[optind]);
	if (count < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

	if (!pflag) {
		if (offset & 0x1ff) {
B
Blue Swirl 已提交
713 714
                        printf("offset %" PRId64 " is not sector aligned\n",
                               offset);
715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
			return 0;
		}

		if (count & 0x1ff) {
			printf("count %d is not sector aligned\n",
				count);
			return 0;
		}
	}

	buf = qemu_io_alloc(count, pattern);

	gettimeofday(&t1, NULL);
	if (pflag)
		cnt = do_pwrite(buf, offset, count, &total);
730 731
	else if (bflag)
		cnt = do_save_vmstate(buf, offset, count, &total);
732 733 734 735 736 737
	else
		cnt = do_write(buf, offset, count, &total);
	gettimeofday(&t2, NULL);

	if (cnt < 0) {
		printf("write failed: %s\n", strerror(-cnt));
K
Kevin Wolf 已提交
738
		goto out;
739 740 741
	}

	if (qflag)
K
Kevin Wolf 已提交
742
		goto out;
743 744 745 746 747

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, t1);
	print_report("wrote", &t2, offset, count, total, cnt, Cflag);

K
Kevin Wolf 已提交
748
out:
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
	qemu_io_free(buf);

	return 0;
}

static void
writev_help(void)
{
	printf(
"\n"
" writes a range of bytes from the given offset source from multiple buffers\n"
"\n"
" Example:\n"
" 'write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
"\n"
" Writes into a segment of the currently open file, using a buffer\n"
" filled with a set pattern (0xcdcdcdcd).\n"
" -P, -- use different pattern to fill file\n"
" -C, -- report statistics in a machine parsable format\n"
K
Kevin Wolf 已提交
768
" -q, -- quiet mode, do not show I/O statistics\n"
769 770 771
"\n");
}

B
Blue Swirl 已提交
772 773 774 775 776 777 778 779 780 781 782 783
static int writev_f(int argc, char **argv);

static const cmdinfo_t writev_cmd = {
	.name		= "writev",
	.cfunc		= writev_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cq] [-P pattern ] off len [len..]",
	.oneline	= "writes a number of bytes at a specified offset",
	.help		= writev_help,
};

784 785 786 787 788 789
static int
writev_f(int argc, char **argv)
{
	struct timeval t1, t2;
	int Cflag = 0, qflag = 0;
	int c, cnt;
790
	char *buf;
791
	int64_t offset;
792 793
        /* Some compilers get confused and warn if this is not initialized.  */
        int total = 0;
794
	int nr_iov;
795 796 797 798 799 800 801 802 803 804 805 806
	int pattern = 0xcd;
	QEMUIOVector qiov;

	while ((c = getopt(argc, argv, "CqP:")) != EOF) {
		switch (c) {
		case 'C':
			Cflag = 1;
			break;
		case 'q':
			qflag = 1;
			break;
		case 'P':
807 808 809
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
			break;
		default:
			return command_usage(&writev_cmd);
		}
	}

	if (optind > argc - 2)
		return command_usage(&writev_cmd);

	offset = cvtnum(argv[optind]);
	if (offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}
	optind++;

	if (offset & 0x1ff) {
B
Blue Swirl 已提交
827 828
                printf("offset %" PRId64 " is not sector aligned\n",
                       offset);
829 830 831 832
		return 0;
	}

	nr_iov = argc - optind;
833
	buf = create_iovec(&qiov, &argv[optind], nr_iov, pattern);
834 835 836 837 838 839 840

	gettimeofday(&t1, NULL);
	cnt = do_aio_writev(&qiov, offset, &total);
	gettimeofday(&t2, NULL);

	if (cnt < 0) {
		printf("writev failed: %s\n", strerror(-cnt));
K
Kevin Wolf 已提交
841
		goto out;
842 843 844
	}

	if (qflag)
K
Kevin Wolf 已提交
845
		goto out;
846 847 848 849

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, t1);
	print_report("wrote", &t2, offset, qiov.size, total, cnt, Cflag);
K
Kevin Wolf 已提交
850
out:
851 852 853 854
	qemu_io_free(buf);
	return 0;
}

K
Kevin Wolf 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
static void
multiwrite_help(void)
{
	printf(
"\n"
" writes a range of bytes from the given offset source from multiple buffers,\n"
" in a batch of requests that may be merged by qemu\n"
"\n"
" Example:\n"
" 'multiwrite 512 1k 1k ; 4k 1k' \n"
"  writes 2 kB at 512 bytes and 1 kB at 4 kB into the open file\n"
"\n"
" Writes into a segment of the currently open file, using a buffer\n"
" filled with a set pattern (0xcdcdcdcd). The pattern byte is increased\n"
" by one for each request contained in the multiwrite command.\n"
" -P, -- use different pattern to fill file\n"
" -C, -- report statistics in a machine parsable format\n"
" -q, -- quiet mode, do not show I/O statistics\n"
"\n");
}

static int multiwrite_f(int argc, char **argv);

static const cmdinfo_t multiwrite_cmd = {
	.name		= "multiwrite",
	.cfunc		= multiwrite_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cq] [-P pattern ] off len [len..] [; off len [len..]..]",
	.oneline	= "issues multiple write requests at once",
	.help		= multiwrite_help,
};

static int
multiwrite_f(int argc, char **argv)
{
	struct timeval t1, t2;
	int Cflag = 0, qflag = 0;
	int c, cnt;
	char **buf;
	int64_t offset, first_offset = 0;
	/* Some compilers get confused and warn if this is not initialized.  */
	int total = 0;
	int nr_iov;
	int nr_reqs;
	int pattern = 0xcd;
	QEMUIOVector *qiovs;
	int i;
	BlockRequest *reqs;

	while ((c = getopt(argc, argv, "CqP:")) != EOF) {
		switch (c) {
		case 'C':
			Cflag = 1;
			break;
		case 'q':
			qflag = 1;
			break;
		case 'P':
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
			break;
		default:
			return command_usage(&writev_cmd);
		}
	}

	if (optind > argc - 2)
		return command_usage(&writev_cmd);

	nr_reqs = 1;
	for (i = optind; i < argc; i++) {
		if (!strcmp(argv[i], ";")) {
			nr_reqs++;
		}
	}

	reqs = qemu_malloc(nr_reqs * sizeof(*reqs));
	buf = qemu_malloc(nr_reqs * sizeof(*buf));
	qiovs = qemu_malloc(nr_reqs * sizeof(*qiovs));

	for (i = 0; i < nr_reqs; i++) {
		int j;

		/* Read the offset of the request */
		offset = cvtnum(argv[optind]);
		if (offset < 0) {
			printf("non-numeric offset argument -- %s\n", argv[optind]);
			return 0;
		}
		optind++;

		if (offset & 0x1ff) {
			printf("offset %lld is not sector aligned\n",
				(long long)offset);
			return 0;
		}

        if (i == 0) {
            first_offset = offset;
        }

		/* Read lengths for qiov entries */
		for (j = optind; j < argc; j++) {
			if (!strcmp(argv[j], ";")) {
				break;
			}
		}

		nr_iov = j - optind;

		/* Build request */
		reqs[i].qiov = &qiovs[i];
		buf[i] = create_iovec(reqs[i].qiov, &argv[optind], nr_iov, pattern);
		reqs[i].sector = offset >> 9;
		reqs[i].nb_sectors = reqs[i].qiov->size >> 9;

		optind = j + 1;

		offset += reqs[i].qiov->size;
		pattern++;
	}

	gettimeofday(&t1, NULL);
	cnt = do_aio_multiwrite(reqs, nr_reqs, &total);
	gettimeofday(&t2, NULL);

	if (cnt < 0) {
		printf("aio_multiwrite failed: %s\n", strerror(-cnt));
		goto out;
	}

	if (qflag)
		goto out;

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, t1);
	print_report("wrote", &t2, first_offset, total, total, cnt, Cflag);
out:
	for (i = 0; i < nr_reqs; i++) {
		qemu_io_free(buf[i]);
		qemu_iovec_destroy(&qiovs[i]);
	}
	qemu_free(buf);
	qemu_free(reqs);
	qemu_free(qiovs);
	return 0;
}

1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
struct aio_ctx {
	QEMUIOVector qiov;
	int64_t offset;
	char *buf;
	int qflag;
	int vflag;
	int Cflag;
	int Pflag;
	int pattern;
	struct timeval t1;
};

static void
aio_write_done(void *opaque, int ret)
{
	struct aio_ctx *ctx = opaque;
	struct timeval t2;

	gettimeofday(&t2, NULL);


	if (ret < 0) {
		printf("aio_write failed: %s\n", strerror(-ret));
K
Kevin Wolf 已提交
1028
		goto out;
1029 1030
	}

1031
	if (ctx->qflag) {
K
Kevin Wolf 已提交
1032
		goto out;
1033
	}
1034 1035 1036

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, ctx->t1);
1037 1038
	print_report("wrote", &t2, ctx->offset, ctx->qiov.size,
		     ctx->qiov.size, 1, ctx->Cflag);
K
Kevin Wolf 已提交
1039
out:
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	qemu_io_free(ctx->buf);
	free(ctx);
}

static void
aio_read_done(void *opaque, int ret)
{
	struct aio_ctx *ctx = opaque;
	struct timeval t2;

	gettimeofday(&t2, NULL);

	if (ret < 0) {
		printf("readv failed: %s\n", strerror(-ret));
K
Kevin Wolf 已提交
1054
		goto out;
1055 1056 1057
	}

	if (ctx->Pflag) {
1058
		void *cmp_buf = malloc(ctx->qiov.size);
1059

1060 1061
		memset(cmp_buf, ctx->pattern, ctx->qiov.size);
		if (memcmp(ctx->buf, cmp_buf, ctx->qiov.size)) {
B
Blue Swirl 已提交
1062 1063 1064
			printf("Pattern verification failed at offset %"
                               PRId64 ", %zd bytes\n",
                               ctx->offset, ctx->qiov.size);
1065 1066 1067 1068
		}
		free(cmp_buf);
	}

1069
	if (ctx->qflag) {
K
Kevin Wolf 已提交
1070
		goto out;
1071
	}
1072

1073 1074 1075
	if (ctx->vflag) {
		dump_buffer(ctx->buf, ctx->offset, ctx->qiov.size);
	}
1076 1077 1078

	/* Finally, report back -- -C gives a parsable format */
	t2 = tsub(t2, ctx->t1);
1079 1080
	print_report("read", &t2, ctx->offset, ctx->qiov.size,
		     ctx->qiov.size, 1, ctx->Cflag);
K
Kevin Wolf 已提交
1081
out:
1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
	qemu_io_free(ctx->buf);
	free(ctx);
}

static void
aio_read_help(void)
{
	printf(
"\n"
" asynchronously reads a range of bytes from the given offset\n"
"\n"
" Example:\n"
" 'aio_read -v 512 1k 1k ' - dumps 2 kilobytes read from 512 bytes into the file\n"
"\n"
" Reads a segment of the currently open file, optionally dumping it to the\n"
" standard output stream (with -v option) for subsequent inspection.\n"
C
Christoph Hellwig 已提交
1098 1099
" The read is performed asynchronously and the aio_flush command must be\n"
" used to ensure all outstanding aio requests have been completed\n"
1100 1101 1102
" -C, -- report statistics in a machine parsable format\n"
" -P, -- use a pattern to verify read data\n"
" -v, -- dump buffer to standard output\n"
K
Kevin Wolf 已提交
1103
" -q, -- quiet mode, do not show I/O statistics\n"
1104 1105 1106
"\n");
}

B
Blue Swirl 已提交
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
static int aio_read_f(int argc, char **argv);

static const cmdinfo_t aio_read_cmd = {
	.name		= "aio_read",
	.cfunc		= aio_read_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cqv] [-P pattern ] off len [len..]",
	.oneline	= "asynchronously reads a number of bytes",
	.help		= aio_read_help,
};

1119 1120 1121
static int
aio_read_f(int argc, char **argv)
{
1122
	int nr_iov, c;
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
	struct aio_ctx *ctx = calloc(1, sizeof(struct aio_ctx));
	BlockDriverAIOCB *acb;

	while ((c = getopt(argc, argv, "CP:qv")) != EOF) {
		switch (c) {
		case 'C':
			ctx->Cflag = 1;
			break;
		case 'P':
			ctx->Pflag = 1;
1133
			ctx->pattern = parse_pattern(optarg);
B
Blue Swirl 已提交
1134 1135
			if (ctx->pattern < 0) {
                                free(ctx);
1136
				return 0;
B
Blue Swirl 已提交
1137
                        }
1138 1139 1140 1141 1142 1143 1144 1145
			break;
		case 'q':
			ctx->qflag = 1;
			break;
		case 'v':
			ctx->vflag = 1;
			break;
		default:
K
Kevin Wolf 已提交
1146
			free(ctx);
1147 1148 1149 1150
			return command_usage(&aio_read_cmd);
		}
	}

K
Kevin Wolf 已提交
1151 1152
	if (optind > argc - 2) {
		free(ctx);
1153
		return command_usage(&aio_read_cmd);
K
Kevin Wolf 已提交
1154
	}
1155 1156 1157 1158

	ctx->offset = cvtnum(argv[optind]);
	if (ctx->offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
K
Kevin Wolf 已提交
1159
		free(ctx);
1160 1161 1162 1163 1164
		return 0;
	}
	optind++;

	if (ctx->offset & 0x1ff) {
B
Blue Swirl 已提交
1165 1166
		printf("offset %" PRId64 " is not sector aligned\n",
                       ctx->offset);
K
Kevin Wolf 已提交
1167
		free(ctx);
1168 1169 1170 1171
		return 0;
	}

	nr_iov = argc - optind;
1172
	ctx->buf = create_iovec(&ctx->qiov, &argv[optind], nr_iov, 0xab);
1173 1174 1175 1176

	gettimeofday(&ctx->t1, NULL);
	acb = bdrv_aio_readv(bs, ctx->offset >> 9, &ctx->qiov,
			      ctx->qiov.size >> 9, aio_read_done, ctx);
K
Kevin Wolf 已提交
1177 1178 1179
	if (!acb) {
		free(ctx->buf);
		free(ctx);
1180
		return -EIO;
K
Kevin Wolf 已提交
1181
	}
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198

	return 0;
}

static void
aio_write_help(void)
{
	printf(
"\n"
" asynchronously writes a range of bytes from the given offset source \n"
" from multiple buffers\n"
"\n"
" Example:\n"
" 'aio_write 512 1k 1k' - writes 2 kilobytes at 512 bytes into the open file\n"
"\n"
" Writes into a segment of the currently open file, using a buffer\n"
" filled with a set pattern (0xcdcdcdcd).\n"
C
Christoph Hellwig 已提交
1199 1200
" The write is performed asynchronously and the aio_flush command must be\n"
" used to ensure all outstanding aio requests have been completed\n"
1201 1202
" -P, -- use different pattern to fill file\n"
" -C, -- report statistics in a machine parsable format\n"
K
Kevin Wolf 已提交
1203
" -q, -- quiet mode, do not show I/O statistics\n"
1204 1205 1206
"\n");
}

B
Blue Swirl 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
static int aio_write_f(int argc, char **argv);

static const cmdinfo_t aio_write_cmd = {
	.name		= "aio_write",
	.cfunc		= aio_write_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cq] [-P pattern ] off len [len..]",
	.oneline	= "asynchronously writes a number of bytes",
	.help		= aio_write_help,
};
1218 1219 1220 1221

static int
aio_write_f(int argc, char **argv)
{
1222
	int nr_iov, c;
1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
	int pattern = 0xcd;
	struct aio_ctx *ctx = calloc(1, sizeof(struct aio_ctx));
	BlockDriverAIOCB *acb;

	while ((c = getopt(argc, argv, "CqP:")) != EOF) {
		switch (c) {
		case 'C':
			ctx->Cflag = 1;
			break;
		case 'q':
			ctx->qflag = 1;
			break;
		case 'P':
1236 1237 1238
			pattern = parse_pattern(optarg);
			if (pattern < 0)
				return 0;
1239 1240
			break;
		default:
K
Kevin Wolf 已提交
1241
			free(ctx);
1242 1243 1244 1245
			return command_usage(&aio_write_cmd);
		}
	}

K
Kevin Wolf 已提交
1246 1247
	if (optind > argc - 2) {
		free(ctx);
1248
		return command_usage(&aio_write_cmd);
K
Kevin Wolf 已提交
1249
	}
1250 1251 1252 1253

	ctx->offset = cvtnum(argv[optind]);
	if (ctx->offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
K
Kevin Wolf 已提交
1254
		free(ctx);
1255 1256 1257 1258 1259
		return 0;
	}
	optind++;

	if (ctx->offset & 0x1ff) {
B
Blue Swirl 已提交
1260 1261
		printf("offset %" PRId64 " is not sector aligned\n",
                       ctx->offset);
K
Kevin Wolf 已提交
1262
		free(ctx);
1263 1264 1265 1266
		return 0;
	}

	nr_iov = argc - optind;
1267
	ctx->buf = create_iovec(&ctx->qiov, &argv[optind], nr_iov, pattern);
1268 1269 1270 1271

	gettimeofday(&ctx->t1, NULL);
	acb = bdrv_aio_writev(bs, ctx->offset >> 9, &ctx->qiov,
			      ctx->qiov.size >> 9, aio_write_done, ctx);
K
Kevin Wolf 已提交
1272 1273 1274
	if (!acb) {
		free(ctx->buf);
		free(ctx);
1275
		return -EIO;
K
Kevin Wolf 已提交
1276
	}
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290

	return 0;
}

static int
aio_flush_f(int argc, char **argv)
{
	qemu_aio_flush();
	return 0;
}

static const cmdinfo_t aio_flush_cmd = {
	.name		= "aio_flush",
	.cfunc		= aio_flush_f,
C
Christoph Hellwig 已提交
1291
	.oneline	= "completes all outstanding aio requests"
1292 1293
};

1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321
static int
flush_f(int argc, char **argv)
{
	bdrv_flush(bs);
	return 0;
}

static const cmdinfo_t flush_cmd = {
	.name		= "flush",
	.altname	= "f",
	.cfunc		= flush_f,
	.oneline	= "flush all in-core file state to disk",
};

static int
truncate_f(int argc, char **argv)
{
	int64_t offset;
	int ret;

	offset = cvtnum(argv[1]);
	if (offset < 0) {
		printf("non-numeric truncate argument -- %s\n", argv[1]);
		return 0;
	}

	ret = bdrv_truncate(bs, offset);
	if (ret < 0) {
K
Kevin Wolf 已提交
1322
		printf("truncate: %s\n", strerror(-ret));
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
		return 0;
	}

	return 0;
}

static const cmdinfo_t truncate_cmd = {
	.name		= "truncate",
	.altname	= "t",
	.cfunc		= truncate_f,
	.argmin		= 1,
	.argmax		= 1,
	.args		= "off",
	.oneline	= "truncates the current file at the given offset",
};

static int
length_f(int argc, char **argv)
{
        int64_t size;
	char s1[64];

	size = bdrv_getlength(bs);
	if (size < 0) {
K
Kevin Wolf 已提交
1347
		printf("getlength: %s\n", strerror(-size));
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
		return 0;
	}

	cvtstr(size, s1, sizeof(s1));
	printf("%s\n", s1);
	return 0;
}


static const cmdinfo_t length_cmd = {
	.name		= "length",
	.altname	= "l",
	.cfunc		= length_f,
	.oneline	= "gets the length of the current file",
};


static int
info_f(int argc, char **argv)
{
	BlockDriverInfo bdi;
	char s1[64], s2[64];
	int ret;

	if (bs->drv && bs->drv->format_name)
		printf("format name: %s\n", bs->drv->format_name);
	if (bs->drv && bs->drv->protocol_name)
		printf("format name: %s\n", bs->drv->protocol_name);

	ret = bdrv_get_info(bs, &bdi);
	if (ret)
		return 0;

	cvtstr(bdi.cluster_size, s1, sizeof(s1));
	cvtstr(bdi.vm_state_offset, s2, sizeof(s2));

	printf("cluster size: %s\n", s1);
	printf("vm state offset: %s\n", s2);

	return 0;
}



static const cmdinfo_t info_cmd = {
	.name		= "info",
	.altname	= "i",
	.cfunc		= info_f,
	.oneline	= "prints information about the current file",
};

S
Stefan Hajnoczi 已提交
1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410
static void
discard_help(void)
{
	printf(
"\n"
" discards a range of bytes from the given offset\n"
"\n"
" Example:\n"
" 'discard 512 1k' - discards 1 kilobyte from 512 bytes into the file\n"
"\n"
" Discards a segment of the currently open file.\n"
" -C, -- report statistics in a machine parsable format\n"
K
Kevin Wolf 已提交
1411
" -q, -- quiet mode, do not show I/O statistics\n"
S
Stefan Hajnoczi 已提交
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
"\n");
}

static int discard_f(int argc, char **argv);

static const cmdinfo_t discard_cmd = {
	.name		= "discard",
	.altname	= "d",
	.cfunc		= discard_f,
	.argmin		= 2,
	.argmax		= -1,
	.args		= "[-Cq] off len",
	.oneline	= "discards a number of bytes at a specified offset",
	.help		= discard_help,
};

static int
discard_f(int argc, char **argv)
{
	struct timeval t1, t2;
	int Cflag = 0, qflag = 0;
	int c, ret;
	int64_t offset;
	int count;

	while ((c = getopt(argc, argv, "Cq")) != EOF) {
		switch (c) {
		case 'C':
			Cflag = 1;
			break;
		case 'q':
			qflag = 1;
			break;
		default:
			return command_usage(&discard_cmd);
		}
	}

	if (optind != argc - 2) {
		return command_usage(&discard_cmd);
	}

	offset = cvtnum(argv[optind]);
	if (offset < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

	optind++;
	count = cvtnum(argv[optind]);
	if (count < 0) {
		printf("non-numeric length argument -- %s\n", argv[optind]);
		return 0;
	}

	gettimeofday(&t1, NULL);
K
Kevin Wolf 已提交
1468
	ret = bdrv_discard(bs, offset >> BDRV_SECTOR_BITS, count >> BDRV_SECTOR_BITS);
S
Stefan Hajnoczi 已提交
1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
	gettimeofday(&t2, NULL);

	if (ret < 0) {
		printf("discard failed: %s\n", strerror(-ret));
		goto out;
	}

	/* Finally, report back -- -C gives a parsable format */
	if (!qflag) {
		t2 = tsub(t2, t1);
		print_report("discard", &t2, offset, count, count, 1, Cflag);
	}

out:
	return 0;
}

1486 1487 1488 1489
static int
alloc_f(int argc, char **argv)
{
	int64_t offset;
K
Kevin Wolf 已提交
1490
	int nb_sectors, remaining;
1491
	char s1[64];
K
Kevin Wolf 已提交
1492
	int num, sum_alloc;
1493 1494 1495 1496
	int ret;

	offset = cvtnum(argv[1]);
	if (offset & 0x1ff) {
B
Blue Swirl 已提交
1497 1498
                printf("offset %" PRId64 " is not sector aligned\n",
                       offset);
1499 1500 1501 1502 1503 1504 1505 1506
		return 0;
	}

	if (argc == 3)
		nb_sectors = cvtnum(argv[2]);
	else
		nb_sectors = 1;

K
Kevin Wolf 已提交
1507 1508 1509 1510 1511 1512 1513 1514 1515
	remaining = nb_sectors;
	sum_alloc = 0;
	while (remaining) {
		ret = bdrv_is_allocated(bs, offset >> 9, nb_sectors, &num);
		remaining -= num;
		if (ret) {
			sum_alloc += num;
		}
	}
1516 1517 1518

	cvtstr(offset, s1, sizeof(s1));

1519 1520
	printf("%d/%d sectors allocated at offset %s\n",
	       sum_alloc, nb_sectors, s1);
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533
	return 0;
}

static const cmdinfo_t alloc_cmd = {
	.name		= "alloc",
	.altname	= "a",
	.argmin		= 1,
	.argmax		= 2,
	.cfunc		= alloc_f,
	.args		= "off [sectors]",
	.oneline	= "checks if a sector is present in the file",
};

K
Kevin Wolf 已提交
1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
static int
map_f(int argc, char **argv)
{
	int64_t offset;
	int64_t nb_sectors;
	char s1[64];
	int num, num_checked;
	int ret;
	const char *retstr;

	offset = 0;
	nb_sectors = bs->total_sectors;

	do {
		num_checked = MIN(nb_sectors, INT_MAX);
		ret = bdrv_is_allocated(bs, offset, num_checked, &num);
		retstr = ret ? "    allocated" : "not allocated";
		cvtstr(offset << 9ULL, s1, sizeof(s1));
		printf("[% 24" PRId64 "] % 8d/% 8d sectors %s at offset %s (%d)\n",
				offset << 9ULL, num, num_checked, retstr, s1, ret);

		offset += num;
		nb_sectors -= num;
	} while(offset < bs->total_sectors);

	return 0;
}

static const cmdinfo_t map_cmd = {
       .name           = "map",
       .argmin         = 0,
       .argmax         = 0,
       .cfunc          = map_f,
       .args           = "",
       .oneline        = "prints the allocated areas of a file",
};


1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
static int
close_f(int argc, char **argv)
{
	bdrv_close(bs);
	bs = NULL;
	return 0;
}

static const cmdinfo_t close_cmd = {
	.name		= "close",
	.altname	= "c",
	.cfunc		= close_f,
	.oneline	= "close the current open file",
};

1587
static int openfile(char *name, int flags, int growable)
1588 1589 1590 1591 1592 1593
{
	if (bs) {
		fprintf(stderr, "file open already, try 'help close'\n");
		return 1;
	}

1594
	if (growable) {
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
		if (bdrv_file_open(&bs, name, flags)) {
			fprintf(stderr, "%s: can't open device %s\n", progname, name);
			return 1;
		}
	} else {
		bs = bdrv_new("hda");

		if (bdrv_open(bs, name, flags, NULL) < 0) {
			fprintf(stderr, "%s: can't open device %s\n", progname, name);
			bs = NULL;
			return 1;
		}
1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
	}

	return 0;
}

static void
open_help(void)
{
	printf(
"\n"
" opens a new file in the requested mode\n"
"\n"
" Example:\n"
" 'open -Cn /tmp/data' - creates/opens data file read-write and uncached\n"
"\n"
" Opens a file for subsequent use by all of the other qemu-io commands.\n"
" -r, -- open file read-only\n"
" -s, -- use snapshot file\n"
" -n, -- disable host cache\n"
1626
" -g, -- allow file to grow (only applies to protocols)"
1627 1628 1629
"\n");
}

B
Blue Swirl 已提交
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
static int open_f(int argc, char **argv);

static const cmdinfo_t open_cmd = {
	.name		= "open",
	.altname	= "o",
	.cfunc		= open_f,
	.argmin		= 1,
	.argmax		= -1,
	.flags		= CMD_NOFILE_OK,
	.args		= "[-Crsn] [path]",
	.oneline	= "open the file specified by path",
	.help		= open_help,
};
1643 1644 1645 1646 1647 1648

static int
open_f(int argc, char **argv)
{
	int flags = 0;
	int readonly = 0;
1649
	int growable = 0;
1650 1651
	int c;

C
Christoph Hellwig 已提交
1652
	while ((c = getopt(argc, argv, "snrg")) != EOF) {
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662
		switch (c) {
		case 's':
			flags |= BDRV_O_SNAPSHOT;
			break;
		case 'n':
			flags |= BDRV_O_NOCACHE;
			break;
		case 'r':
			readonly = 1;
			break;
1663 1664 1665
		case 'g':
			growable = 1;
			break;
1666 1667 1668 1669 1670
		default:
			return command_usage(&open_cmd);
		}
	}

1671 1672 1673
	if (!readonly) {
            flags |= BDRV_O_RDWR;
        }
1674 1675 1676 1677

	if (optind != argc - 1)
		return command_usage(&open_cmd);

1678
	return openfile(argv[optind], flags, growable);
1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
}

static int
init_args_command(
        int     index)
{
	/* only one device allowed so far */
	if (index >= 1)
		return 0;
	return ++index;
}

static int
init_check_command(
	const cmdinfo_t *ct)
{
	if (ct->flags & CMD_FLAG_GLOBAL)
		return 1;
	if (!(ct->flags & CMD_NOFILE_OK) && !bs) {
		fprintf(stderr, "no file open, try 'help open'\n");
		return 0;
	}
	return 1;
}

static void usage(const char *name)
{
	printf(
C
Christoph Hellwig 已提交
1707
"Usage: %s [-h] [-V] [-rsnm] [-c cmd] ... [file]\n"
1708
"QEMU Disk exerciser\n"
1709 1710 1711 1712 1713
"\n"
"  -c, --cmd            command to execute\n"
"  -r, --read-only      export read-only\n"
"  -s, --snapshot       use snapshot file\n"
"  -n, --nocache        disable host cache\n"
1714
"  -g, --growable       allow file to grow (only applies to protocols)\n"
1715
"  -m, --misalign       misalign allocations for O_DIRECT\n"
1716
"  -k, --native-aio     use kernel AIO implementation (on Linux only)\n"
1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
"  -h, --help           display this help and exit\n"
"  -V, --version        output version information and exit\n"
"\n",
	name);
}


int main(int argc, char **argv)
{
	int readonly = 0;
1727
	int growable = 0;
C
Christoph Hellwig 已提交
1728
	const char *sopt = "hVc:rsnmgk";
B
Blue Swirl 已提交
1729
        const struct option lopt[] = {
1730 1731 1732 1733 1734 1735 1736 1737 1738
		{ "help", 0, NULL, 'h' },
		{ "version", 0, NULL, 'V' },
		{ "offset", 1, NULL, 'o' },
		{ "cmd", 1, NULL, 'c' },
		{ "read-only", 0, NULL, 'r' },
		{ "snapshot", 0, NULL, 's' },
		{ "nocache", 0, NULL, 'n' },
		{ "misalign", 0, NULL, 'm' },
		{ "growable", 0, NULL, 'g' },
1739
		{ "native-aio", 0, NULL, 'k' },
1740
		{ NULL, 0, NULL, 0 }
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764
	};
	int c;
	int opt_index = 0;
	int flags = 0;

	progname = basename(argv[0]);

	while ((c = getopt_long(argc, argv, sopt, lopt, &opt_index)) != -1) {
		switch (c) {
		case 's':
			flags |= BDRV_O_SNAPSHOT;
			break;
		case 'n':
			flags |= BDRV_O_NOCACHE;
			break;
		case 'c':
			add_user_command(optarg);
			break;
		case 'r':
			readonly = 1;
			break;
		case 'm':
			misalign = 1;
			break;
1765 1766 1767
		case 'g':
			growable = 1;
			break;
1768 1769 1770
		case 'k':
			flags |= BDRV_O_NATIVE_AIO;
			break;
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798
		case 'V':
			printf("%s version %s\n", progname, VERSION);
			exit(0);
		case 'h':
			usage(progname);
			exit(0);
		default:
			usage(progname);
			exit(1);
		}
	}

	if ((argc - optind) > 1) {
		usage(progname);
		exit(1);
	}

	bdrv_init();

	/* initialize commands */
	quit_init();
	help_init();
	add_command(&open_cmd);
	add_command(&close_cmd);
	add_command(&read_cmd);
	add_command(&readv_cmd);
	add_command(&write_cmd);
	add_command(&writev_cmd);
K
Kevin Wolf 已提交
1799
	add_command(&multiwrite_cmd);
1800 1801 1802
	add_command(&aio_read_cmd);
	add_command(&aio_write_cmd);
	add_command(&aio_flush_cmd);
1803 1804 1805 1806
	add_command(&flush_cmd);
	add_command(&truncate_cmd);
	add_command(&length_cmd);
	add_command(&info_cmd);
S
Stefan Hajnoczi 已提交
1807
	add_command(&discard_cmd);
1808
	add_command(&alloc_cmd);
K
Kevin Wolf 已提交
1809
	add_command(&map_cmd);
1810 1811 1812 1813 1814

	add_args_command(init_args_command);
	add_check_command(init_check_command);

	/* open the device */
1815 1816 1817
	if (!readonly) {
            flags |= BDRV_O_RDWR;
        }
1818 1819

	if ((argc - optind) == 1)
1820
		openfile(argv[optind], flags, growable);
1821 1822
	command_loop();

1823 1824 1825 1826 1827
	/*
	 * Make sure all outstanding requests get flushed the program exits.
	 */
	qemu_aio_flush();

1828 1829 1830 1831
	if (bs)
		bdrv_close(bs);
	return 0;
}