qemu-io.c 9.8 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

#include "qemu-common.h"
18
#include "qemu/main-loop.h"
19
#include "block/block_int.h"
20
#include "cmd.h"
21
#include "trace/control.h"
22 23 24

#define VERSION	"0.0.1"

D
Devin Nakamura 已提交
25
#define CMD_NOFILE_OK   0x01
26 27 28

char *progname;

29
BlockDriverState *qemuio_bs;
30
extern int qemuio_misalign;
K
Kevin Wolf 已提交
31

32 33 34 35
/* qemu-io commands passed using -c */
static int ncmdline;
static char **cmdline;

36
static int close_f(BlockDriverState *bs, int argc, char **argv)
37
{
38
    bdrv_delete(bs);
39
    qemuio_bs = NULL;
D
Devin Nakamura 已提交
40
    return 0;
41 42 43
}

static const cmdinfo_t close_cmd = {
D
Devin Nakamura 已提交
44 45 46 47
    .name       = "close",
    .altname    = "c",
    .cfunc      = close_f,
    .oneline    = "close the current open file",
48 49
};

50
static int openfile(char *name, int flags, int growable)
51
{
52
    if (qemuio_bs) {
D
Devin Nakamura 已提交
53 54 55 56 57
        fprintf(stderr, "file open already, try 'help close'\n");
        return 1;
    }

    if (growable) {
58
        if (bdrv_file_open(&qemuio_bs, name, NULL, flags)) {
D
Devin Nakamura 已提交
59 60 61 62
            fprintf(stderr, "%s: can't open device %s\n", progname, name);
            return 1;
        }
    } else {
63
        qemuio_bs = bdrv_new("hda");
D
Devin Nakamura 已提交
64

65
        if (bdrv_open(qemuio_bs, name, NULL, flags, NULL) < 0) {
D
Devin Nakamura 已提交
66
            fprintf(stderr, "%s: can't open device %s\n", progname, name);
67 68
            bdrv_delete(qemuio_bs);
            qemuio_bs = NULL;
D
Devin Nakamura 已提交
69 70 71 72 73
            return 1;
        }
    }

    return 0;
74 75
}

D
Devin Nakamura 已提交
76
static void open_help(void)
77
{
D
Devin Nakamura 已提交
78
    printf(
79 80 81 82 83 84 85 86 87 88
"\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"
89
" -g, -- allow file to grow (only applies to protocols)"
90 91 92
"\n");
}

93
static int open_f(BlockDriverState *bs, int argc, char **argv);
B
Blue Swirl 已提交
94 95

static const cmdinfo_t open_cmd = {
D
Devin Nakamura 已提交
96 97 98 99 100 101 102 103 104
    .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,
B
Blue Swirl 已提交
105
};
106

107
static int open_f(BlockDriverState *bs, int argc, char **argv)
108
{
D
Devin Nakamura 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
    int flags = 0;
    int readonly = 0;
    int growable = 0;
    int c;

    while ((c = getopt(argc, argv, "snrg")) != EOF) {
        switch (c) {
        case 's':
            flags |= BDRV_O_SNAPSHOT;
            break;
        case 'n':
            flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
            break;
        case 'r':
            readonly = 1;
            break;
        case 'g':
            growable = 1;
            break;
        default:
129
            return qemuio_command_usage(&open_cmd);
130
        }
D
Devin Nakamura 已提交
131 132 133 134 135
    }

    if (!readonly) {
        flags |= BDRV_O_RDWR;
    }
136

D
Devin Nakamura 已提交
137
    if (optind != argc - 1) {
138
        return qemuio_command_usage(&open_cmd);
D
Devin Nakamura 已提交
139
    }
140

D
Devin Nakamura 已提交
141
    return openfile(argv[optind], flags, growable);
142 143
}

K
Kevin Wolf 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
static int quit_f(BlockDriverState *bs, int argc, char **argv)
{
    return 1;
}

static const cmdinfo_t quit_cmd = {
    .name       = "quit",
    .altname    = "q",
    .cfunc      = quit_f,
    .argmin     = -1,
    .argmax     = -1,
    .flags      = CMD_FLAG_GLOBAL,
    .oneline    = "exit the program",
};

159 160
static void usage(const char *name)
{
D
Devin Nakamura 已提交
161
    printf(
C
Christoph Hellwig 已提交
162
"Usage: %s [-h] [-V] [-rsnm] [-c cmd] ... [file]\n"
163
"QEMU Disk exerciser\n"
164 165 166 167 168
"\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"
169
"  -g, --growable       allow file to grow (only applies to protocols)\n"
170
"  -m, --misalign       misalign allocations for O_DIRECT\n"
171
"  -k, --native-aio     use kernel AIO implementation (on Linux only)\n"
172
"  -t, --cache=MODE     use the given cache mode for the image\n"
173
"  -T, --trace FILE     enable trace events listed in the given file\n"
174 175 176
"  -h, --help           display this help and exit\n"
"  -V, --version        output version information and exit\n"
"\n",
D
Devin Nakamura 已提交
177
    name);
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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 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 266 267 268 269 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 311 312 313 314 315
#if defined(ENABLE_READLINE)
# include <readline/history.h>
# include <readline/readline.h>
#elif defined(ENABLE_EDITLINE)
# include <histedit.h>
#endif

static char *get_prompt(void)
{
    static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];

    if (!prompt[0]) {
        snprintf(prompt, sizeof(prompt), "%s> ", progname);
    }

    return prompt;
}

#if defined(ENABLE_READLINE)
static char *fetchline(void)
{
    char *line = readline(get_prompt());
    if (line && *line) {
        add_history(line);
    }
    return line;
}
#elif defined(ENABLE_EDITLINE)
static char *el_get_prompt(EditLine *e)
{
    return get_prompt();
}

static char *fetchline(void)
{
    static EditLine *el;
    static History *hist;
    HistEvent hevent;
    char *line;
    int count;

    if (!el) {
        hist = history_init();
        history(hist, &hevent, H_SETSIZE, 100);
        el = el_init(progname, stdin, stdout, stderr);
        el_source(el, NULL);
        el_set(el, EL_SIGNAL, 1);
        el_set(el, EL_PROMPT, el_get_prompt);
        el_set(el, EL_HIST, history, (const char *)hist);
    }
    line = strdup(el_gets(el, &count));
    if (line) {
        if (count > 0) {
            line[count-1] = '\0';
        }
        if (*line) {
            history(hist, &hevent, H_ENTER, line);
        }
    }
    return line;
}
#else
# define MAXREADLINESZ 1024
static char *fetchline(void)
{
    char *p, *line = g_malloc(MAXREADLINESZ);

    if (!fgets(line, MAXREADLINESZ, stdin)) {
        g_free(line);
        return NULL;
    }

    p = line + strlen(line);
    if (p != line && p[-1] == '\n') {
        p[-1] = '\0';
    }

    return line;
}
#endif

static void prep_fetchline(void *opaque)
{
    int *fetchable = opaque;

    qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
    *fetchable= 1;
}

static void command_loop(void)
{
    int i, done = 0, fetchable = 0, prompted = 0;
    char *input;

    for (i = 0; !done && i < ncmdline; i++) {
        done = qemuio_command(cmdline[i]);
    }
    if (cmdline) {
        g_free(cmdline);
        return;
    }

    while (!done) {
        if (!prompted) {
            printf("%s", get_prompt());
            fflush(stdout);
            qemu_set_fd_handler(STDIN_FILENO, prep_fetchline, NULL, &fetchable);
            prompted = 1;
        }

        main_loop_wait(false);

        if (!fetchable) {
            continue;
        }

        input = fetchline();
        if (input == NULL) {
            break;
        }
        done = qemuio_command(input);
        g_free(input);

        prompted = 0;
        fetchable = 0;
    }
    qemu_set_fd_handler(STDIN_FILENO, NULL, NULL, NULL);
}

static void add_user_command(char *optarg)
{
    cmdline = g_realloc(cmdline, ++ncmdline * sizeof(char *));
    cmdline[ncmdline-1] = optarg;
}

316 317
int main(int argc, char **argv)
{
D
Devin Nakamura 已提交
318 319
    int readonly = 0;
    int growable = 0;
P
Paolo Bonzini 已提交
320
    const char *sopt = "hVc:d:rsnmgkt:T:";
D
Devin Nakamura 已提交
321 322 323 324 325 326 327 328 329 330 331
    const struct option lopt[] = {
        { "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' },
        { "native-aio", 0, NULL, 'k' },
P
Paolo Bonzini 已提交
332
        { "discard", 1, NULL, 'd' },
333
        { "cache", 1, NULL, 't' },
334
        { "trace", 1, NULL, 'T' },
D
Devin Nakamura 已提交
335 336 337 338
        { NULL, 0, NULL, 0 }
    };
    int c;
    int opt_index = 0;
P
Paolo Bonzini 已提交
339
    int flags = BDRV_O_UNMAP;
D
Devin Nakamura 已提交
340 341 342 343 344 345 346 347 348 349 350

    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 | BDRV_O_CACHE_WB;
            break;
P
Paolo Bonzini 已提交
351 352 353 354 355 356
        case 'd':
            if (bdrv_parse_discard_flags(optarg, &flags) < 0) {
                error_report("Invalid discard option: %s", optarg);
                exit(1);
            }
            break;
D
Devin Nakamura 已提交
357 358 359 360 361 362 363
        case 'c':
            add_user_command(optarg);
            break;
        case 'r':
            readonly = 1;
            break;
        case 'm':
364
            qemuio_misalign = 1;
D
Devin Nakamura 已提交
365 366 367 368 369 370 371
            break;
        case 'g':
            growable = 1;
            break;
        case 'k':
            flags |= BDRV_O_NATIVE_AIO;
            break;
372 373 374 375 376 377
        case 't':
            if (bdrv_parse_cache_flags(optarg, &flags) < 0) {
                error_report("Invalid cache option: %s", optarg);
                exit(1);
            }
            break;
378 379 380 381 382
        case 'T':
            if (!trace_backend_init(optarg, NULL)) {
                exit(1); /* error message will have been printed */
            }
            break;
D
Devin Nakamura 已提交
383 384 385 386 387 388 389 390 391
        case 'V':
            printf("%s version %s\n", progname, VERSION);
            exit(0);
        case 'h':
            usage(progname);
            exit(0);
        default:
            usage(progname);
            exit(1);
392
        }
D
Devin Nakamura 已提交
393 394 395 396 397 398
    }

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

400
    qemu_init_main_loop();
401
    bdrv_init();
402

D
Devin Nakamura 已提交
403
    /* initialize commands */
404 405 406
    qemuio_add_command(&quit_cmd);
    qemuio_add_command(&open_cmd);
    qemuio_add_command(&close_cmd);
D
Devin Nakamura 已提交
407 408 409 410 411 412 413 414 415 416

    /* open the device */
    if (!readonly) {
        flags |= BDRV_O_RDWR;
    }

    if ((argc - optind) == 1) {
        openfile(argv[optind], flags, growable);
    }
    command_loop();
417

D
Devin Nakamura 已提交
418
    /*
419
     * Make sure all outstanding requests complete before the program exits.
D
Devin Nakamura 已提交
420
     */
421
    bdrv_drain_all();
422

423 424
    if (qemuio_bs) {
        bdrv_delete(qemuio_bs);
D
Devin Nakamura 已提交
425 426
    }
    return 0;
427
}