bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1 | /* |
bellard | fb43f4d | 2006-08-07 21:34:46 +0000 | [diff] [blame] | 2 | * QEMU disk image utility |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 24 | #include "qemu-common.h" |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 25 | #include "qemu-option.h" |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 26 | #include "osdep.h" |
Jes Sorensen | dc786bc | 2010-10-26 10:39:23 +0200 | [diff] [blame] | 27 | #include "sysemu.h" |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 28 | #include "block_int.h" |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 30 | |
bellard | e844533 | 2006-06-14 15:32:10 +0000 | [diff] [blame] | 31 | #ifdef _WIN32 |
| 32 | #include <windows.h> |
| 33 | #endif |
| 34 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 35 | typedef struct img_cmd_t { |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 36 | const char *name; |
| 37 | int (*handler)(int argc, char **argv); |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 38 | } img_cmd_t; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 39 | |
aurel32 | 137519c | 2008-11-30 19:12:49 +0000 | [diff] [blame] | 40 | /* Default to cache=writeback as data integrity is not important for qemu-tcg. */ |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 41 | #define BDRV_O_FLAGS BDRV_O_CACHE_WB |
aurel32 | 137519c | 2008-11-30 19:12:49 +0000 | [diff] [blame] | 42 | |
Stefan Weil | 8b7968f | 2010-09-23 21:28:05 +0200 | [diff] [blame] | 43 | static void GCC_FMT_ATTR(1, 2) error(const char *fmt, ...) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 44 | { |
| 45 | va_list ap; |
| 46 | va_start(ap, fmt); |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 47 | fprintf(stderr, "qemu-img: "); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 48 | vfprintf(stderr, fmt, ap); |
| 49 | fprintf(stderr, "\n"); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 50 | va_end(ap); |
| 51 | } |
| 52 | |
| 53 | static void format_print(void *opaque, const char *name) |
| 54 | { |
| 55 | printf(" %s", name); |
| 56 | } |
| 57 | |
blueswir1 | d2c639d | 2009-01-24 18:19:25 +0000 | [diff] [blame] | 58 | /* Please keep in synch with qemu-img.texi */ |
pbrook | 3f379ab | 2007-11-11 03:33:13 +0000 | [diff] [blame] | 59 | static void help(void) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 60 | { |
Paolo Bonzini | e00291c | 2010-02-04 16:49:56 +0100 | [diff] [blame] | 61 | const char *help_msg = |
| 62 | "qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n" |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 63 | "usage: qemu-img command [command options]\n" |
| 64 | "QEMU disk image utility\n" |
| 65 | "\n" |
| 66 | "Command syntax:\n" |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 67 | #define DEF(option, callback, arg_string) \ |
| 68 | " " arg_string "\n" |
| 69 | #include "qemu-img-cmds.h" |
| 70 | #undef DEF |
| 71 | #undef GEN_DOCS |
malc | 3f020d7 | 2010-02-08 12:04:56 +0300 | [diff] [blame] | 72 | "\n" |
| 73 | "Command parameters:\n" |
| 74 | " 'filename' is a disk image filename\n" |
| 75 | " 'fmt' is the disk image format. It is guessed automatically in most cases\n" |
| 76 | " 'size' is the disk image size in bytes. Optional suffixes\n" |
| 77 | " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n" |
| 78 | " and T (terabyte, 1024G) are supported. 'b' is ignored.\n" |
| 79 | " 'output_filename' is the destination disk image filename\n" |
| 80 | " 'output_fmt' is the destination format\n" |
| 81 | " 'options' is a comma separated list of format specific options in a\n" |
| 82 | " name=value format. Use -o ? for an overview of the options supported by the\n" |
| 83 | " used format\n" |
| 84 | " '-c' indicates that target image must be compressed (qcow format only)\n" |
| 85 | " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n" |
| 86 | " match exactly. The image doesn't need a working backing file before\n" |
| 87 | " rebasing in this case (useful for renaming the backing file)\n" |
| 88 | " '-h' with or without a command shows this help and lists the supported formats\n" |
| 89 | "\n" |
| 90 | "Parameters to snapshot subcommand:\n" |
| 91 | " 'snapshot' is the name of the snapshot to create, apply or delete\n" |
| 92 | " '-a' applies a snapshot (revert disk to saved state)\n" |
| 93 | " '-c' creates a snapshot\n" |
| 94 | " '-d' deletes a snapshot\n" |
Paolo Bonzini | e00291c | 2010-02-04 16:49:56 +0100 | [diff] [blame] | 95 | " '-l' lists all snapshots in the given image\n"; |
| 96 | |
| 97 | printf("%s\nSupported formats:", help_msg); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 98 | bdrv_iterate_format(format_print, NULL); |
| 99 | printf("\n"); |
| 100 | exit(1); |
| 101 | } |
| 102 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 103 | #if defined(WIN32) |
| 104 | /* XXX: put correct support for win32 */ |
| 105 | static int read_password(char *buf, int buf_size) |
| 106 | { |
| 107 | int c, i; |
| 108 | printf("Password: "); |
| 109 | fflush(stdout); |
| 110 | i = 0; |
| 111 | for(;;) { |
| 112 | c = getchar(); |
| 113 | if (c == '\n') |
| 114 | break; |
| 115 | if (i < (buf_size - 1)) |
| 116 | buf[i++] = c; |
| 117 | } |
| 118 | buf[i] = '\0'; |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | #else |
| 123 | |
| 124 | #include <termios.h> |
| 125 | |
| 126 | static struct termios oldtty; |
| 127 | |
| 128 | static void term_exit(void) |
| 129 | { |
| 130 | tcsetattr (0, TCSANOW, &oldtty); |
| 131 | } |
| 132 | |
| 133 | static void term_init(void) |
| 134 | { |
| 135 | struct termios tty; |
| 136 | |
| 137 | tcgetattr (0, &tty); |
| 138 | oldtty = tty; |
| 139 | |
| 140 | tty.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP |
| 141 | |INLCR|IGNCR|ICRNL|IXON); |
| 142 | tty.c_oflag |= OPOST; |
| 143 | tty.c_lflag &= ~(ECHO|ECHONL|ICANON|IEXTEN); |
| 144 | tty.c_cflag &= ~(CSIZE|PARENB); |
| 145 | tty.c_cflag |= CS8; |
| 146 | tty.c_cc[VMIN] = 1; |
| 147 | tty.c_cc[VTIME] = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 148 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 149 | tcsetattr (0, TCSANOW, &tty); |
| 150 | |
| 151 | atexit(term_exit); |
| 152 | } |
| 153 | |
pbrook | 3f379ab | 2007-11-11 03:33:13 +0000 | [diff] [blame] | 154 | static int read_password(char *buf, int buf_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 155 | { |
| 156 | uint8_t ch; |
| 157 | int i, ret; |
| 158 | |
| 159 | printf("password: "); |
| 160 | fflush(stdout); |
| 161 | term_init(); |
| 162 | i = 0; |
| 163 | for(;;) { |
| 164 | ret = read(0, &ch, 1); |
| 165 | if (ret == -1) { |
| 166 | if (errno == EAGAIN || errno == EINTR) { |
| 167 | continue; |
| 168 | } else { |
| 169 | ret = -1; |
| 170 | break; |
| 171 | } |
| 172 | } else if (ret == 0) { |
| 173 | ret = -1; |
| 174 | break; |
| 175 | } else { |
| 176 | if (ch == '\r') { |
| 177 | ret = 0; |
| 178 | break; |
| 179 | } |
| 180 | if (i < (buf_size - 1)) |
| 181 | buf[i++] = ch; |
| 182 | } |
| 183 | } |
| 184 | term_exit(); |
| 185 | buf[i] = '\0'; |
| 186 | printf("\n"); |
| 187 | return ret; |
| 188 | } |
| 189 | #endif |
| 190 | |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 191 | static int print_block_option_help(const char *filename, const char *fmt) |
| 192 | { |
| 193 | BlockDriver *drv, *proto_drv; |
| 194 | QEMUOptionParameter *create_options = NULL; |
| 195 | |
| 196 | /* Find driver and parse its options */ |
| 197 | drv = bdrv_find_format(fmt); |
| 198 | if (!drv) { |
| 199 | error("Unknown file format '%s'", fmt); |
| 200 | return 1; |
| 201 | } |
| 202 | |
| 203 | proto_drv = bdrv_find_protocol(filename); |
| 204 | if (!proto_drv) { |
| 205 | error("Unknown protocol '%s'", filename); |
| 206 | return 1; |
| 207 | } |
| 208 | |
| 209 | create_options = append_option_parameters(create_options, |
| 210 | drv->create_options); |
| 211 | create_options = append_option_parameters(create_options, |
| 212 | proto_drv->create_options); |
| 213 | print_option_help(create_options); |
| 214 | free_option_parameters(create_options); |
| 215 | return 0; |
| 216 | } |
| 217 | |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 218 | static BlockDriverState *bdrv_new_open(const char *filename, |
Sheng Yang | 9bc378c | 2010-01-29 10:15:06 +0800 | [diff] [blame] | 219 | const char *fmt, |
Stefan Hajnoczi | f163d07 | 2010-04-13 10:29:34 +0100 | [diff] [blame] | 220 | int flags) |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 221 | { |
| 222 | BlockDriverState *bs; |
| 223 | BlockDriver *drv; |
| 224 | char password[256]; |
| 225 | |
| 226 | bs = bdrv_new(""); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 227 | if (!bs) { |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 228 | error("Not enough memory"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 229 | goto fail; |
| 230 | } |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 231 | if (fmt) { |
| 232 | drv = bdrv_find_format(fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 233 | if (!drv) { |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 234 | error("Unknown file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 235 | goto fail; |
| 236 | } |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 237 | } else { |
| 238 | drv = NULL; |
| 239 | } |
Kevin Wolf | d6e9098 | 2010-03-31 14:40:27 +0200 | [diff] [blame] | 240 | if (bdrv_open(bs, filename, flags, drv) < 0) { |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 241 | error("Could not open '%s'", filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 242 | goto fail; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 243 | } |
| 244 | if (bdrv_is_encrypted(bs)) { |
| 245 | printf("Disk image '%s' is encrypted.\n", filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 246 | if (read_password(password, sizeof(password)) < 0) { |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 247 | error("No password given"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 248 | goto fail; |
| 249 | } |
| 250 | if (bdrv_set_key(bs, password) < 0) { |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 251 | error("invalid password"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 252 | goto fail; |
| 253 | } |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 254 | } |
| 255 | return bs; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 256 | fail: |
| 257 | if (bs) { |
| 258 | bdrv_delete(bs); |
| 259 | } |
| 260 | return NULL; |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 261 | } |
| 262 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 263 | static int add_old_style_options(const char *fmt, QEMUOptionParameter *list, |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 264 | int flags, const char *base_filename, const char *base_fmt) |
| 265 | { |
| 266 | if (flags & BLOCK_FLAG_ENCRYPT) { |
| 267 | if (set_option_parameter(list, BLOCK_OPT_ENCRYPT, "on")) { |
| 268 | error("Encryption not supported for file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 269 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | if (flags & BLOCK_FLAG_COMPAT6) { |
| 273 | if (set_option_parameter(list, BLOCK_OPT_COMPAT6, "on")) { |
| 274 | error("VMDK version 6 not supported for file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 275 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
| 279 | if (base_filename) { |
| 280 | if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) { |
| 281 | error("Backing file not supported for file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 282 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 283 | } |
| 284 | } |
| 285 | if (base_fmt) { |
| 286 | if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) { |
| 287 | error("Backing file format not supported for file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 288 | return -1; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 289 | } |
| 290 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 291 | return 0; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 292 | } |
| 293 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 294 | static int img_create(int argc, char **argv) |
| 295 | { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 296 | int c, ret = 0, flags; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 297 | const char *fmt = "raw"; |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 298 | const char *base_fmt = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 299 | const char *filename; |
| 300 | const char *base_filename = NULL; |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 301 | BlockDriver *drv, *proto_drv; |
| 302 | QEMUOptionParameter *param = NULL, *create_options = NULL; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 303 | char *options = NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 304 | |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 305 | flags = 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 306 | for(;;) { |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 307 | c = getopt(argc, argv, "F:b:f:he6o:"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 308 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 309 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 310 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 311 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 312 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 313 | case 'h': |
| 314 | help(); |
| 315 | break; |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 316 | case 'F': |
| 317 | base_fmt = optarg; |
| 318 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 319 | case 'b': |
| 320 | base_filename = optarg; |
| 321 | break; |
| 322 | case 'f': |
| 323 | fmt = optarg; |
| 324 | break; |
| 325 | case 'e': |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 326 | flags |= BLOCK_FLAG_ENCRYPT; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 327 | break; |
ths | d8871c5 | 2007-10-24 16:11:42 +0000 | [diff] [blame] | 328 | case '6': |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 329 | flags |= BLOCK_FLAG_COMPAT6; |
ths | d8871c5 | 2007-10-24 16:11:42 +0000 | [diff] [blame] | 330 | break; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 331 | case 'o': |
| 332 | options = optarg; |
| 333 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 334 | } |
| 335 | } |
aliguori | 9230eaf | 2009-03-28 17:55:19 +0000 | [diff] [blame] | 336 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 337 | /* Get the filename */ |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 338 | if (optind >= argc) { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 339 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 340 | } |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 341 | filename = argv[optind++]; |
| 342 | |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 343 | if (options && !strcmp(options, "?")) { |
| 344 | ret = print_block_option_help(filename, fmt); |
| 345 | goto out; |
| 346 | } |
| 347 | |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 348 | /* Find driver and parse its options */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 349 | drv = bdrv_find_format(fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 350 | if (!drv) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 351 | error("Unknown file format '%s'", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 352 | return 1; |
| 353 | } |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 354 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 355 | proto_drv = bdrv_find_protocol(filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 356 | if (!proto_drv) { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 357 | error("Unknown protocol '%s'", filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 358 | return 1; |
| 359 | } |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 360 | |
| 361 | create_options = append_option_parameters(create_options, |
| 362 | drv->create_options); |
| 363 | create_options = append_option_parameters(create_options, |
| 364 | proto_drv->create_options); |
| 365 | |
Kevin Wolf | 9f56640 | 2009-10-28 11:36:07 +0100 | [diff] [blame] | 366 | /* Create parameter list with default values */ |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 367 | param = parse_option_parameters("", create_options, param); |
Kevin Wolf | 9f56640 | 2009-10-28 11:36:07 +0100 | [diff] [blame] | 368 | set_option_parameter_int(param, BLOCK_OPT_SIZE, -1); |
| 369 | |
| 370 | /* Parse -o options */ |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 371 | if (options) { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 372 | param = parse_option_parameters(options, create_options, param); |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 373 | if (param == NULL) { |
| 374 | error("Invalid options for file format '%s'.", fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 375 | ret = -1; |
| 376 | goto out; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 377 | } |
bellard | 75c2380 | 2004-08-27 21:28:58 +0000 | [diff] [blame] | 378 | } |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 379 | |
| 380 | /* Add size to parameters */ |
| 381 | if (optind < argc) { |
| 382 | set_option_parameter(param, BLOCK_OPT_SIZE, argv[optind++]); |
| 383 | } |
| 384 | |
| 385 | /* Add old-style options to parameters */ |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 386 | ret = add_old_style_options(fmt, param, flags, base_filename, base_fmt); |
| 387 | if (ret < 0) { |
| 388 | goto out; |
| 389 | } |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 390 | |
| 391 | // The size for the image must always be specified, with one exception: |
| 392 | // If we are using a backing file, we can obtain the size from there |
Kevin Wolf | 9f56640 | 2009-10-28 11:36:07 +0100 | [diff] [blame] | 393 | if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) { |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 394 | |
| 395 | QEMUOptionParameter *backing_file = |
| 396 | get_option_parameter(param, BLOCK_OPT_BACKING_FILE); |
| 397 | QEMUOptionParameter *backing_fmt = |
| 398 | get_option_parameter(param, BLOCK_OPT_BACKING_FMT); |
| 399 | |
| 400 | if (backing_file && backing_file->value.s) { |
| 401 | BlockDriverState *bs; |
| 402 | uint64_t size; |
| 403 | const char *fmt = NULL; |
| 404 | char buf[32]; |
| 405 | |
| 406 | if (backing_fmt && backing_fmt->value.s) { |
| 407 | if (bdrv_find_format(backing_fmt->value.s)) { |
| 408 | fmt = backing_fmt->value.s; |
| 409 | } else { |
| 410 | error("Unknown backing file format '%s'", |
| 411 | backing_fmt->value.s); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 412 | ret = -1; |
| 413 | goto out; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 414 | } |
| 415 | } |
| 416 | |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 417 | bs = bdrv_new_open(backing_file->value.s, fmt, BDRV_O_FLAGS); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 418 | if (!bs) { |
| 419 | ret = -1; |
| 420 | goto out; |
| 421 | } |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 422 | bdrv_get_geometry(bs, &size); |
| 423 | size *= 512; |
| 424 | bdrv_delete(bs); |
| 425 | |
| 426 | snprintf(buf, sizeof(buf), "%" PRId64, size); |
| 427 | set_option_parameter(param, BLOCK_OPT_SIZE, buf); |
| 428 | } else { |
| 429 | error("Image creation needs a size parameter"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 430 | ret = -1; |
| 431 | goto out; |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | |
| 435 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
| 436 | print_option_parameters(param); |
| 437 | puts(""); |
| 438 | |
| 439 | ret = bdrv_create(drv, filename, param); |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 440 | free_option_parameters(create_options); |
Kevin Wolf | 9ea2ea7 | 2009-05-18 16:42:11 +0200 | [diff] [blame] | 441 | free_option_parameters(param); |
| 442 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 443 | if (ret < 0) { |
| 444 | if (ret == -ENOTSUP) { |
bellard | 3c56521 | 2004-09-29 21:29:14 +0000 | [diff] [blame] | 445 | error("Formatting or formatting option not supported for file format '%s'", fmt); |
aurel32 | 6e9ea0c | 2009-04-15 14:42:46 +0000 | [diff] [blame] | 446 | } else if (ret == -EFBIG) { |
| 447 | error("The image size is too large for file format '%s'", fmt); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 448 | } else { |
Juan Quintela | 3e7896d | 2010-03-04 10:00:38 +0100 | [diff] [blame] | 449 | error("%s: error while creating %s: %s", filename, fmt, strerror(-ret)); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 450 | } |
| 451 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 452 | out: |
| 453 | if (ret) { |
| 454 | return 1; |
| 455 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 456 | return 0; |
| 457 | } |
| 458 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 459 | /* |
| 460 | * Checks an image for consistency. Exit codes: |
| 461 | * |
| 462 | * 0 - Check completed, image is good |
| 463 | * 1 - Check not completed because of internal errors |
| 464 | * 2 - Check completed, image is corrupted |
| 465 | * 3 - Check completed, image has leaked clusters, but is good otherwise |
| 466 | */ |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 467 | static int img_check(int argc, char **argv) |
| 468 | { |
| 469 | int c, ret; |
| 470 | const char *filename, *fmt; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 471 | BlockDriverState *bs; |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 472 | BdrvCheckResult result; |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 473 | |
| 474 | fmt = NULL; |
| 475 | for(;;) { |
| 476 | c = getopt(argc, argv, "f:h"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 477 | if (c == -1) { |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 478 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 479 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 480 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 481 | case '?': |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 482 | case 'h': |
| 483 | help(); |
| 484 | break; |
| 485 | case 'f': |
| 486 | fmt = optarg; |
| 487 | break; |
| 488 | } |
| 489 | } |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 490 | if (optind >= argc) { |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 491 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 492 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 493 | filename = argv[optind++]; |
| 494 | |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 495 | bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 496 | if (!bs) { |
| 497 | return 1; |
| 498 | } |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 499 | ret = bdrv_check(bs, &result); |
| 500 | |
| 501 | if (ret == -ENOTSUP) { |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 502 | error("This image format does not support checks"); |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 503 | bdrv_delete(bs); |
| 504 | return 1; |
| 505 | } |
| 506 | |
| 507 | if (!(result.corruptions || result.leaks || result.check_errors)) { |
| 508 | printf("No errors were found on the image.\n"); |
| 509 | } else { |
| 510 | if (result.corruptions) { |
| 511 | printf("\n%d errors were found on the image.\n" |
| 512 | "Data may be corrupted, or further writes to the image " |
| 513 | "may corrupt it.\n", |
| 514 | result.corruptions); |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 515 | } |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 516 | |
| 517 | if (result.leaks) { |
| 518 | printf("\n%d leaked clusters were found on the image.\n" |
| 519 | "This means waste of disk space, but no harm to data.\n", |
| 520 | result.leaks); |
| 521 | } |
| 522 | |
| 523 | if (result.check_errors) { |
| 524 | printf("\n%d internal errors have occurred during the check.\n", |
| 525 | result.check_errors); |
| 526 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | bdrv_delete(bs); |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 530 | |
| 531 | if (ret < 0 || result.check_errors) { |
| 532 | printf("\nAn error has occurred during the check: %s\n" |
| 533 | "The check is not complete and may have missed error.\n", |
| 534 | strerror(-ret)); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 535 | return 1; |
| 536 | } |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 537 | |
| 538 | if (result.corruptions) { |
| 539 | return 2; |
| 540 | } else if (result.leaks) { |
| 541 | return 3; |
| 542 | } else { |
| 543 | return 0; |
| 544 | } |
aliguori | 1585969 | 2009-04-21 23:11:53 +0000 | [diff] [blame] | 545 | } |
| 546 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 547 | static int img_commit(int argc, char **argv) |
| 548 | { |
| 549 | int c, ret; |
| 550 | const char *filename, *fmt; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 551 | BlockDriverState *bs; |
| 552 | |
| 553 | fmt = NULL; |
| 554 | for(;;) { |
| 555 | c = getopt(argc, argv, "f:h"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 556 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 557 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 558 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 559 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 560 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 561 | case 'h': |
| 562 | help(); |
| 563 | break; |
| 564 | case 'f': |
| 565 | fmt = optarg; |
| 566 | break; |
| 567 | } |
| 568 | } |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 569 | if (optind >= argc) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 570 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 571 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 572 | filename = argv[optind++]; |
| 573 | |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 574 | bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 575 | if (!bs) { |
| 576 | return 1; |
| 577 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 578 | ret = bdrv_commit(bs); |
| 579 | switch(ret) { |
| 580 | case 0: |
| 581 | printf("Image committed.\n"); |
| 582 | break; |
| 583 | case -ENOENT: |
| 584 | error("No disk inserted"); |
| 585 | break; |
| 586 | case -EACCES: |
| 587 | error("Image is read-only"); |
| 588 | break; |
| 589 | case -ENOTSUP: |
| 590 | error("Image is already committed"); |
| 591 | break; |
| 592 | default: |
| 593 | error("Error while committing image"); |
| 594 | break; |
| 595 | } |
| 596 | |
| 597 | bdrv_delete(bs); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 598 | if (ret) { |
| 599 | return 1; |
| 600 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 601 | return 0; |
| 602 | } |
| 603 | |
| 604 | static int is_not_zero(const uint8_t *sector, int len) |
| 605 | { |
| 606 | int i; |
| 607 | len >>= 2; |
| 608 | for(i = 0;i < len; i++) { |
| 609 | if (((uint32_t *)sector)[i] != 0) |
| 610 | return 1; |
| 611 | } |
| 612 | return 0; |
| 613 | } |
| 614 | |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 615 | /* |
| 616 | * Returns true iff the first sector pointed to by 'buf' contains at least |
| 617 | * a non-NUL byte. |
| 618 | * |
| 619 | * 'pnum' is set to the number of sectors (including and immediately following |
| 620 | * the first one) that are known to be in the same allocated/unallocated state. |
| 621 | */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 622 | static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum) |
| 623 | { |
| 624 | int v, i; |
| 625 | |
| 626 | if (n <= 0) { |
| 627 | *pnum = 0; |
| 628 | return 0; |
| 629 | } |
| 630 | v = is_not_zero(buf, 512); |
| 631 | for(i = 1; i < n; i++) { |
| 632 | buf += 512; |
| 633 | if (v != is_not_zero(buf, 512)) |
| 634 | break; |
| 635 | } |
| 636 | *pnum = i; |
| 637 | return v; |
| 638 | } |
| 639 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 640 | /* |
| 641 | * Compares two buffers sector by sector. Returns 0 if the first sector of both |
| 642 | * buffers matches, non-zero otherwise. |
| 643 | * |
| 644 | * pnum is set to the number of sectors (including and immediately following |
| 645 | * the first one) that are known to have the same comparison result |
| 646 | */ |
| 647 | static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n, |
| 648 | int *pnum) |
| 649 | { |
| 650 | int res, i; |
| 651 | |
| 652 | if (n <= 0) { |
| 653 | *pnum = 0; |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | res = !!memcmp(buf1, buf2, 512); |
| 658 | for(i = 1; i < n; i++) { |
| 659 | buf1 += 512; |
| 660 | buf2 += 512; |
| 661 | |
| 662 | if (!!memcmp(buf1, buf2, 512) != res) { |
| 663 | break; |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | *pnum = i; |
| 668 | return res; |
| 669 | } |
| 670 | |
Kevin Wolf | 80ee15a | 2009-09-15 12:30:43 +0200 | [diff] [blame] | 671 | #define IO_BUF_SIZE (2 * 1024 * 1024) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 672 | |
| 673 | static int img_convert(int argc, char **argv) |
| 674 | { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 675 | int c, ret = 0, n, n1, bs_n, bs_i, flags, cluster_size, cluster_sectors; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 676 | const char *fmt, *out_fmt, *out_baseimg, *out_filename; |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 677 | BlockDriver *drv, *proto_drv; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 678 | BlockDriverState **bs = NULL, *out_bs = NULL; |
ths | 96b8f13 | 2007-12-17 01:35:20 +0000 | [diff] [blame] | 679 | int64_t total_sectors, nb_sectors, sector_num, bs_offset; |
| 680 | uint64_t bs_sectors; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 681 | uint8_t * buf = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 682 | const uint8_t *buf1; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 683 | BlockDriverInfo bdi; |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 684 | QEMUOptionParameter *param = NULL, *create_options = NULL; |
Kevin Wolf | a18953f | 2010-10-14 15:46:04 +0200 | [diff] [blame] | 685 | QEMUOptionParameter *out_baseimg_param; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 686 | char *options = NULL; |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 687 | const char *snapshot_name = NULL; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 688 | |
| 689 | fmt = NULL; |
| 690 | out_fmt = "raw"; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 691 | out_baseimg = NULL; |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 692 | flags = 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 693 | for(;;) { |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 694 | c = getopt(argc, argv, "f:O:B:s:hce6o:"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 695 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 696 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 697 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 698 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 699 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 700 | case 'h': |
| 701 | help(); |
| 702 | break; |
| 703 | case 'f': |
| 704 | fmt = optarg; |
| 705 | break; |
| 706 | case 'O': |
| 707 | out_fmt = optarg; |
| 708 | break; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 709 | case 'B': |
| 710 | out_baseimg = optarg; |
| 711 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 712 | case 'c': |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 713 | flags |= BLOCK_FLAG_COMPRESS; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 714 | break; |
| 715 | case 'e': |
ths | ec36ba1 | 2007-09-16 21:59:02 +0000 | [diff] [blame] | 716 | flags |= BLOCK_FLAG_ENCRYPT; |
| 717 | break; |
| 718 | case '6': |
| 719 | flags |= BLOCK_FLAG_COMPAT6; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 720 | break; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 721 | case 'o': |
| 722 | options = optarg; |
| 723 | break; |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 724 | case 's': |
| 725 | snapshot_name = optarg; |
| 726 | break; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 727 | } |
| 728 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 729 | |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 730 | bs_n = argc - optind - 1; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 731 | if (bs_n < 1) { |
| 732 | help(); |
| 733 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 734 | |
| 735 | out_filename = argv[argc - 1]; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 736 | |
Jes Sorensen | 4ac8aac | 2010-12-06 15:25:38 +0100 | [diff] [blame] | 737 | if (options && !strcmp(options, "?")) { |
| 738 | ret = print_block_option_help(out_filename, out_fmt); |
| 739 | goto out; |
| 740 | } |
| 741 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 742 | if (bs_n > 1 && out_baseimg) { |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 743 | error("-B makes no sense when concatenating multiple input images"); |
Jes Sorensen | 31ca34b | 2010-12-06 15:25:36 +0100 | [diff] [blame] | 744 | ret = -1; |
| 745 | goto out; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 746 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 747 | |
Jes Sorensen | 5bdf61f | 2010-12-06 15:25:35 +0100 | [diff] [blame] | 748 | bs = qemu_mallocz(bs_n * sizeof(BlockDriverState *)); |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 749 | |
| 750 | total_sectors = 0; |
| 751 | for (bs_i = 0; bs_i < bs_n; bs_i++) { |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 752 | bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 753 | if (!bs[bs_i]) { |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 754 | error("Could not open '%s'", argv[optind + bs_i]); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 755 | ret = -1; |
| 756 | goto out; |
| 757 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 758 | bdrv_get_geometry(bs[bs_i], &bs_sectors); |
| 759 | total_sectors += bs_sectors; |
| 760 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 761 | |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 762 | if (snapshot_name != NULL) { |
| 763 | if (bs_n > 1) { |
| 764 | error("No support for concatenating multiple snapshot\n"); |
| 765 | ret = -1; |
| 766 | goto out; |
| 767 | } |
| 768 | if (bdrv_snapshot_load_tmp(bs[0], snapshot_name) < 0) { |
| 769 | error("Failed to load snapshot\n"); |
| 770 | ret = -1; |
| 771 | goto out; |
| 772 | } |
| 773 | } |
| 774 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 775 | /* Find driver and parse its options */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 776 | drv = bdrv_find_format(out_fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 777 | if (!drv) { |
ths | d34dda5 | 2007-02-10 22:59:40 +0000 | [diff] [blame] | 778 | error("Unknown file format '%s'", out_fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 779 | ret = -1; |
| 780 | goto out; |
| 781 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 782 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 783 | proto_drv = bdrv_find_protocol(out_filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 784 | if (!proto_drv) { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 785 | error("Unknown protocol '%s'", out_filename); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 786 | ret = -1; |
| 787 | goto out; |
| 788 | } |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 789 | |
| 790 | create_options = append_option_parameters(create_options, |
| 791 | drv->create_options); |
| 792 | create_options = append_option_parameters(create_options, |
| 793 | proto_drv->create_options); |
Kevin Wolf | db08adf | 2009-06-04 15:39:38 +0200 | [diff] [blame] | 794 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 795 | if (options) { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 796 | param = parse_option_parameters(options, create_options, param); |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 797 | if (param == NULL) { |
| 798 | error("Invalid options for file format '%s'.", out_fmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 799 | ret = -1; |
| 800 | goto out; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 801 | } |
| 802 | } else { |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 803 | param = parse_option_parameters("", create_options, param); |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 807 | ret = add_old_style_options(out_fmt, param, flags, out_baseimg, NULL); |
| 808 | if (ret < 0) { |
| 809 | goto out; |
| 810 | } |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 811 | |
Kevin Wolf | a18953f | 2010-10-14 15:46:04 +0200 | [diff] [blame] | 812 | /* Get backing file name if -o backing_file was used */ |
| 813 | out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); |
| 814 | if (out_baseimg_param) { |
| 815 | out_baseimg = out_baseimg_param->value.s; |
| 816 | } |
| 817 | |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 818 | /* Check if compression is supported */ |
| 819 | if (flags & BLOCK_FLAG_COMPRESS) { |
| 820 | QEMUOptionParameter *encryption = |
| 821 | get_option_parameter(param, BLOCK_OPT_ENCRYPT); |
| 822 | |
| 823 | if (!drv->bdrv_write_compressed) { |
| 824 | error("Compression not supported for this file format"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 825 | ret = -1; |
| 826 | goto out; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 827 | } |
| 828 | |
| 829 | if (encryption && encryption->value.n) { |
| 830 | error("Compression and encryption not supported at the same time"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 831 | ret = -1; |
| 832 | goto out; |
Kevin Wolf | efa84d4 | 2009-05-18 16:42:12 +0200 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | |
| 836 | /* Create the new image */ |
| 837 | ret = bdrv_create(drv, out_filename, param); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 838 | if (ret < 0) { |
| 839 | if (ret == -ENOTSUP) { |
aliguori | 93c65b4 | 2009-04-05 17:40:43 +0000 | [diff] [blame] | 840 | error("Formatting not supported for file format '%s'", out_fmt); |
aurel32 | 6e9ea0c | 2009-04-15 14:42:46 +0000 | [diff] [blame] | 841 | } else if (ret == -EFBIG) { |
| 842 | error("The image size is too large for file format '%s'", out_fmt); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 843 | } else { |
Juan Quintela | 3e7896d | 2010-03-04 10:00:38 +0100 | [diff] [blame] | 844 | error("%s: error while converting %s: %s", out_filename, out_fmt, strerror(-ret)); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 845 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 846 | goto out; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 847 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 848 | |
Kevin Wolf | 1bd8e17 | 2010-08-31 13:44:25 +0200 | [diff] [blame] | 849 | out_bs = bdrv_new_open(out_filename, out_fmt, |
| 850 | BDRV_O_FLAGS | BDRV_O_RDWR | BDRV_O_NO_FLUSH); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 851 | if (!out_bs) { |
| 852 | ret = -1; |
| 853 | goto out; |
| 854 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 855 | |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 856 | bs_i = 0; |
| 857 | bs_offset = 0; |
| 858 | bdrv_get_geometry(bs[0], &bs_sectors); |
TeLeMan | d6771bf | 2010-02-08 16:20:00 +0800 | [diff] [blame] | 859 | buf = qemu_malloc(IO_BUF_SIZE); |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 860 | |
| 861 | if (flags & BLOCK_FLAG_COMPRESS) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 862 | ret = bdrv_get_info(out_bs, &bdi); |
| 863 | if (ret < 0) { |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 864 | error("could not get block driver info"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 865 | goto out; |
| 866 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 867 | cluster_size = bdi.cluster_size; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 868 | if (cluster_size <= 0 || cluster_size > IO_BUF_SIZE) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 869 | error("invalid cluster size"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 870 | ret = -1; |
| 871 | goto out; |
| 872 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 873 | cluster_sectors = cluster_size >> 9; |
| 874 | sector_num = 0; |
| 875 | for(;;) { |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 876 | int64_t bs_num; |
| 877 | int remainder; |
| 878 | uint8_t *buf2; |
| 879 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 880 | nb_sectors = total_sectors - sector_num; |
| 881 | if (nb_sectors <= 0) |
| 882 | break; |
| 883 | if (nb_sectors >= cluster_sectors) |
| 884 | n = cluster_sectors; |
| 885 | else |
| 886 | n = nb_sectors; |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 887 | |
| 888 | bs_num = sector_num - bs_offset; |
| 889 | assert (bs_num >= 0); |
| 890 | remainder = n; |
| 891 | buf2 = buf; |
| 892 | while (remainder > 0) { |
| 893 | int nlow; |
| 894 | while (bs_num == bs_sectors) { |
| 895 | bs_i++; |
| 896 | assert (bs_i < bs_n); |
| 897 | bs_offset += bs_sectors; |
| 898 | bdrv_get_geometry(bs[bs_i], &bs_sectors); |
| 899 | bs_num = 0; |
Blue Swirl | 0bfcd59 | 2010-05-22 08:02:12 +0000 | [diff] [blame] | 900 | /* printf("changing part: sector_num=%" PRId64 ", " |
| 901 | "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64 |
| 902 | "\n", sector_num, bs_i, bs_offset, bs_sectors); */ |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 903 | } |
| 904 | assert (bs_num < bs_sectors); |
| 905 | |
| 906 | nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder; |
| 907 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 908 | ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow); |
| 909 | if (ret < 0) { |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 910 | error("error while reading"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 911 | goto out; |
| 912 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 913 | |
| 914 | buf2 += nlow * 512; |
| 915 | bs_num += nlow; |
| 916 | |
| 917 | remainder -= nlow; |
| 918 | } |
| 919 | assert (remainder == 0); |
| 920 | |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 921 | if (n < cluster_sectors) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 922 | memset(buf + n * 512, 0, cluster_size - n * 512); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 923 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 924 | if (is_not_zero(buf, cluster_size)) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 925 | ret = bdrv_write_compressed(out_bs, sector_num, buf, |
| 926 | cluster_sectors); |
| 927 | if (ret != 0) { |
bellard | ec3757d | 2006-06-14 15:50:07 +0000 | [diff] [blame] | 928 | error("error while compressing sector %" PRId64, |
| 929 | sector_num); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 930 | goto out; |
| 931 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 932 | } |
| 933 | sector_num += n; |
| 934 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 935 | /* signal EOF to align */ |
| 936 | bdrv_write_compressed(out_bs, 0, NULL, 0); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 937 | } else { |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 938 | int has_zero_init = bdrv_has_zero_init(out_bs); |
| 939 | |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 940 | sector_num = 0; // total number of sectors converted so far |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 941 | for(;;) { |
| 942 | nb_sectors = total_sectors - sector_num; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 943 | if (nb_sectors <= 0) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 944 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 945 | } |
| 946 | if (nb_sectors >= (IO_BUF_SIZE / 512)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 947 | n = (IO_BUF_SIZE / 512); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 948 | } else { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 949 | n = nb_sectors; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 950 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 951 | |
| 952 | while (sector_num - bs_offset >= bs_sectors) { |
| 953 | bs_i ++; |
| 954 | assert (bs_i < bs_n); |
| 955 | bs_offset += bs_sectors; |
| 956 | bdrv_get_geometry(bs[bs_i], &bs_sectors); |
Blue Swirl | 0bfcd59 | 2010-05-22 08:02:12 +0000 | [diff] [blame] | 957 | /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, " |
| 958 | "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n", |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 959 | sector_num, bs_i, bs_offset, bs_sectors); */ |
| 960 | } |
| 961 | |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 962 | if (n > bs_offset + bs_sectors - sector_num) { |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 963 | n = bs_offset + bs_sectors - sector_num; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 964 | } |
balrog | 926c2d2 | 2007-10-31 01:11:44 +0000 | [diff] [blame] | 965 | |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 966 | if (has_zero_init) { |
Akkarit Sangpetch | d032044 | 2009-07-17 10:02:15 +0200 | [diff] [blame] | 967 | /* If the output image is being created as a copy on write image, |
| 968 | assume that sectors which are unallocated in the input image |
| 969 | are present in both the output's and input's base images (no |
| 970 | need to copy them). */ |
| 971 | if (out_baseimg) { |
| 972 | if (!bdrv_is_allocated(bs[bs_i], sector_num - bs_offset, |
| 973 | n, &n1)) { |
| 974 | sector_num += n1; |
| 975 | continue; |
| 976 | } |
| 977 | /* The next 'n1' sectors are allocated in the input image. Copy |
| 978 | only those as they may be followed by unallocated sectors. */ |
| 979 | n = n1; |
aliguori | 93c65b4 | 2009-04-05 17:40:43 +0000 | [diff] [blame] | 980 | } |
aliguori | 93c65b4 | 2009-04-05 17:40:43 +0000 | [diff] [blame] | 981 | } else { |
| 982 | n1 = n; |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 983 | } |
| 984 | |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 985 | ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n); |
| 986 | if (ret < 0) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 987 | error("error while reading"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 988 | goto out; |
| 989 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 990 | /* NOTE: at the same time we convert, we do not write zero |
| 991 | sectors to have a chance to compress the image. Ideally, we |
| 992 | should add a specific call to have the info to go faster */ |
| 993 | buf1 = buf; |
| 994 | while (n > 0) { |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 995 | /* If the output image is being created as a copy on write image, |
| 996 | copy all sectors even the ones containing only NUL bytes, |
aliguori | 93c65b4 | 2009-04-05 17:40:43 +0000 | [diff] [blame] | 997 | because they may differ from the sectors in the base image. |
| 998 | |
| 999 | If the output is to a host device, we also write out |
| 1000 | sectors that are entirely 0, since whatever data was |
| 1001 | already there is garbage, not 0s. */ |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 1002 | if (!has_zero_init || out_baseimg || |
aliguori | 93c65b4 | 2009-04-05 17:40:43 +0000 | [diff] [blame] | 1003 | is_allocated_sectors(buf1, n, &n1)) { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1004 | ret = bdrv_write(out_bs, sector_num, buf1, n1); |
| 1005 | if (ret < 0) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1006 | error("error while writing"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1007 | goto out; |
| 1008 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1009 | } |
| 1010 | sector_num += n1; |
| 1011 | n -= n1; |
| 1012 | buf1 += n1 * 512; |
| 1013 | } |
| 1014 | } |
| 1015 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1016 | out: |
| 1017 | free_option_parameters(create_options); |
| 1018 | free_option_parameters(param); |
TeLeMan | d6771bf | 2010-02-08 16:20:00 +0800 | [diff] [blame] | 1019 | qemu_free(buf); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1020 | if (out_bs) { |
| 1021 | bdrv_delete(out_bs); |
| 1022 | } |
Jes Sorensen | 31ca34b | 2010-12-06 15:25:36 +0100 | [diff] [blame] | 1023 | if (bs) { |
| 1024 | for (bs_i = 0; bs_i < bs_n; bs_i++) { |
| 1025 | if (bs[bs_i]) { |
| 1026 | bdrv_delete(bs[bs_i]); |
| 1027 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1028 | } |
Jes Sorensen | 31ca34b | 2010-12-06 15:25:36 +0100 | [diff] [blame] | 1029 | qemu_free(bs); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1030 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1031 | if (ret) { |
| 1032 | return 1; |
| 1033 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1034 | return 0; |
| 1035 | } |
| 1036 | |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 1037 | #ifdef _WIN32 |
| 1038 | static int64_t get_allocated_file_size(const char *filename) |
| 1039 | { |
bellard | e844533 | 2006-06-14 15:32:10 +0000 | [diff] [blame] | 1040 | typedef DWORD (WINAPI * get_compressed_t)(const char *filename, DWORD *high); |
| 1041 | get_compressed_t get_compressed; |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 1042 | struct _stati64 st; |
bellard | e844533 | 2006-06-14 15:32:10 +0000 | [diff] [blame] | 1043 | |
| 1044 | /* WinNT support GetCompressedFileSize to determine allocate size */ |
| 1045 | get_compressed = (get_compressed_t) GetProcAddress(GetModuleHandle("kernel32"), "GetCompressedFileSizeA"); |
| 1046 | if (get_compressed) { |
| 1047 | DWORD high, low; |
| 1048 | low = get_compressed(filename, &high); |
| 1049 | if (low != 0xFFFFFFFFlu || GetLastError() == NO_ERROR) |
| 1050 | return (((int64_t) high) << 32) + low; |
| 1051 | } |
| 1052 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1053 | if (_stati64(filename, &st) < 0) |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 1054 | return -1; |
| 1055 | return st.st_size; |
| 1056 | } |
| 1057 | #else |
| 1058 | static int64_t get_allocated_file_size(const char *filename) |
| 1059 | { |
| 1060 | struct stat st; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1061 | if (stat(filename, &st) < 0) |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 1062 | return -1; |
| 1063 | return (int64_t)st.st_blocks * 512; |
| 1064 | } |
| 1065 | #endif |
| 1066 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1067 | static void dump_snapshots(BlockDriverState *bs) |
| 1068 | { |
| 1069 | QEMUSnapshotInfo *sn_tab, *sn; |
| 1070 | int nb_sns, i; |
| 1071 | char buf[256]; |
| 1072 | |
| 1073 | nb_sns = bdrv_snapshot_list(bs, &sn_tab); |
| 1074 | if (nb_sns <= 0) |
| 1075 | return; |
| 1076 | printf("Snapshot list:\n"); |
| 1077 | printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL)); |
| 1078 | for(i = 0; i < nb_sns; i++) { |
| 1079 | sn = &sn_tab[i]; |
| 1080 | printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn)); |
| 1081 | } |
| 1082 | qemu_free(sn_tab); |
| 1083 | } |
| 1084 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1085 | static int img_info(int argc, char **argv) |
| 1086 | { |
| 1087 | int c; |
| 1088 | const char *filename, *fmt; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1089 | BlockDriverState *bs; |
| 1090 | char fmt_name[128], size_buf[128], dsize_buf[128]; |
ths | 96b8f13 | 2007-12-17 01:35:20 +0000 | [diff] [blame] | 1091 | uint64_t total_sectors; |
| 1092 | int64_t allocated_size; |
bellard | 93b6b2a | 2006-08-01 15:51:11 +0000 | [diff] [blame] | 1093 | char backing_filename[1024]; |
| 1094 | char backing_filename2[1024]; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1095 | BlockDriverInfo bdi; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1096 | |
| 1097 | fmt = NULL; |
| 1098 | for(;;) { |
| 1099 | c = getopt(argc, argv, "f:h"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1100 | if (c == -1) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1101 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1102 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1103 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 1104 | case '?': |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1105 | case 'h': |
| 1106 | help(); |
| 1107 | break; |
| 1108 | case 'f': |
| 1109 | fmt = optarg; |
| 1110 | break; |
| 1111 | } |
| 1112 | } |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1113 | if (optind >= argc) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1114 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1115 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1116 | filename = argv[optind++]; |
| 1117 | |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 1118 | bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_NO_BACKING); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1119 | if (!bs) { |
| 1120 | return 1; |
| 1121 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1122 | bdrv_get_format(bs, fmt_name, sizeof(fmt_name)); |
| 1123 | bdrv_get_geometry(bs, &total_sectors); |
| 1124 | get_human_readable_size(size_buf, sizeof(size_buf), total_sectors * 512); |
bellard | 57d1a2b | 2004-08-03 21:15:11 +0000 | [diff] [blame] | 1125 | allocated_size = get_allocated_file_size(filename); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1126 | if (allocated_size < 0) { |
blueswir1 | a10ea30 | 2008-08-24 10:30:33 +0000 | [diff] [blame] | 1127 | snprintf(dsize_buf, sizeof(dsize_buf), "unavailable"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1128 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1129 | get_human_readable_size(dsize_buf, sizeof(dsize_buf), |
bellard | de167e4 | 2005-04-28 21:15:08 +0000 | [diff] [blame] | 1130 | allocated_size); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1131 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1132 | printf("image: %s\n" |
| 1133 | "file format: %s\n" |
bellard | ec3757d | 2006-06-14 15:50:07 +0000 | [diff] [blame] | 1134 | "virtual size: %s (%" PRId64 " bytes)\n" |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1135 | "disk size: %s\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1136 | filename, fmt_name, size_buf, |
bellard | ec3757d | 2006-06-14 15:50:07 +0000 | [diff] [blame] | 1137 | (total_sectors * 512), |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1138 | dsize_buf); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1139 | if (bdrv_is_encrypted(bs)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1140 | printf("encrypted: yes\n"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1141 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1142 | if (bdrv_get_info(bs, &bdi) >= 0) { |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1143 | if (bdi.cluster_size != 0) { |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1144 | printf("cluster_size: %d\n", bdi.cluster_size); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1145 | } |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1146 | } |
bellard | 93b6b2a | 2006-08-01 15:51:11 +0000 | [diff] [blame] | 1147 | bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename)); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1148 | if (backing_filename[0] != '\0') { |
bellard | 93b6b2a | 2006-08-01 15:51:11 +0000 | [diff] [blame] | 1149 | path_combine(backing_filename2, sizeof(backing_filename2), |
| 1150 | filename, backing_filename); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1151 | printf("backing file: %s (actual path: %s)\n", |
bellard | 93b6b2a | 2006-08-01 15:51:11 +0000 | [diff] [blame] | 1152 | backing_filename, |
| 1153 | backing_filename2); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1154 | } |
| 1155 | dump_snapshots(bs); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1156 | bdrv_delete(bs); |
| 1157 | return 0; |
| 1158 | } |
| 1159 | |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1160 | #define SNAPSHOT_LIST 1 |
| 1161 | #define SNAPSHOT_CREATE 2 |
| 1162 | #define SNAPSHOT_APPLY 3 |
| 1163 | #define SNAPSHOT_DELETE 4 |
| 1164 | |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1165 | static int img_snapshot(int argc, char **argv) |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1166 | { |
| 1167 | BlockDriverState *bs; |
| 1168 | QEMUSnapshotInfo sn; |
| 1169 | char *filename, *snapshot_name = NULL; |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1170 | int c, ret = 0, bdrv_oflags; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1171 | int action = 0; |
| 1172 | qemu_timeval tv; |
| 1173 | |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 1174 | bdrv_oflags = BDRV_O_RDWR; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1175 | /* Parse commandline parameters */ |
| 1176 | for(;;) { |
| 1177 | c = getopt(argc, argv, "la:c:d:h"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1178 | if (c == -1) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1179 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1180 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1181 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 1182 | case '?': |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1183 | case 'h': |
| 1184 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1185 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1186 | case 'l': |
| 1187 | if (action) { |
| 1188 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1189 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1190 | } |
| 1191 | action = SNAPSHOT_LIST; |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 1192 | bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */ |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1193 | break; |
| 1194 | case 'a': |
| 1195 | if (action) { |
| 1196 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1197 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1198 | } |
| 1199 | action = SNAPSHOT_APPLY; |
| 1200 | snapshot_name = optarg; |
| 1201 | break; |
| 1202 | case 'c': |
| 1203 | if (action) { |
| 1204 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1205 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1206 | } |
| 1207 | action = SNAPSHOT_CREATE; |
| 1208 | snapshot_name = optarg; |
| 1209 | break; |
| 1210 | case 'd': |
| 1211 | if (action) { |
| 1212 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1213 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1214 | } |
| 1215 | action = SNAPSHOT_DELETE; |
| 1216 | snapshot_name = optarg; |
| 1217 | break; |
| 1218 | } |
| 1219 | } |
| 1220 | |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1221 | if (optind >= argc) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1222 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1223 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1224 | filename = argv[optind++]; |
| 1225 | |
| 1226 | /* Open the image */ |
Stefan Hajnoczi | f163d07 | 2010-04-13 10:29:34 +0100 | [diff] [blame] | 1227 | bs = bdrv_new_open(filename, NULL, bdrv_oflags); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1228 | if (!bs) { |
| 1229 | return 1; |
| 1230 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1231 | |
| 1232 | /* Perform the requested action */ |
| 1233 | switch(action) { |
| 1234 | case SNAPSHOT_LIST: |
| 1235 | dump_snapshots(bs); |
| 1236 | break; |
| 1237 | |
| 1238 | case SNAPSHOT_CREATE: |
| 1239 | memset(&sn, 0, sizeof(sn)); |
| 1240 | pstrcpy(sn.name, sizeof(sn.name), snapshot_name); |
| 1241 | |
| 1242 | qemu_gettimeofday(&tv); |
| 1243 | sn.date_sec = tv.tv_sec; |
| 1244 | sn.date_nsec = tv.tv_usec * 1000; |
| 1245 | |
| 1246 | ret = bdrv_snapshot_create(bs, &sn); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1247 | if (ret) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1248 | error("Could not create snapshot '%s': %d (%s)", |
| 1249 | snapshot_name, ret, strerror(-ret)); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1250 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1251 | break; |
| 1252 | |
| 1253 | case SNAPSHOT_APPLY: |
| 1254 | ret = bdrv_snapshot_goto(bs, snapshot_name); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1255 | if (ret) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1256 | error("Could not apply snapshot '%s': %d (%s)", |
| 1257 | snapshot_name, ret, strerror(-ret)); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1258 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1259 | break; |
| 1260 | |
| 1261 | case SNAPSHOT_DELETE: |
| 1262 | ret = bdrv_snapshot_delete(bs, snapshot_name); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1263 | if (ret) { |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1264 | error("Could not delete snapshot '%s': %d (%s)", |
| 1265 | snapshot_name, ret, strerror(-ret)); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1266 | } |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1267 | break; |
| 1268 | } |
| 1269 | |
| 1270 | /* Cleanup */ |
| 1271 | bdrv_delete(bs); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1272 | if (ret) { |
| 1273 | return 1; |
| 1274 | } |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1275 | return 0; |
aliguori | f7b4a94 | 2009-01-07 17:40:15 +0000 | [diff] [blame] | 1276 | } |
| 1277 | |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1278 | static int img_rebase(int argc, char **argv) |
| 1279 | { |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1280 | BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL; |
Stefan Hajnoczi | f163d07 | 2010-04-13 10:29:34 +0100 | [diff] [blame] | 1281 | BlockDriver *old_backing_drv, *new_backing_drv; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1282 | char *filename; |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 1283 | const char *fmt, *out_basefmt, *out_baseimg; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1284 | int c, flags, ret; |
| 1285 | int unsafe = 0; |
| 1286 | |
| 1287 | /* Parse commandline parameters */ |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 1288 | fmt = NULL; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1289 | out_baseimg = NULL; |
| 1290 | out_basefmt = NULL; |
| 1291 | |
| 1292 | for(;;) { |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 1293 | c = getopt(argc, argv, "uhf:F:b:"); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1294 | if (c == -1) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1295 | break; |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1296 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1297 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 1298 | case '?': |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1299 | case 'h': |
| 1300 | help(); |
| 1301 | return 0; |
Kevin Wolf | e53dbee | 2010-03-02 12:14:31 +0100 | [diff] [blame] | 1302 | case 'f': |
| 1303 | fmt = optarg; |
| 1304 | break; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1305 | case 'F': |
| 1306 | out_basefmt = optarg; |
| 1307 | break; |
| 1308 | case 'b': |
| 1309 | out_baseimg = optarg; |
| 1310 | break; |
| 1311 | case 'u': |
| 1312 | unsafe = 1; |
| 1313 | break; |
| 1314 | } |
| 1315 | } |
| 1316 | |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1317 | if ((optind >= argc) || !out_baseimg) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1318 | help(); |
Jes Sorensen | b8fb60d | 2010-12-06 15:25:39 +0100 | [diff] [blame] | 1319 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1320 | filename = argv[optind++]; |
| 1321 | |
| 1322 | /* |
| 1323 | * Open the images. |
| 1324 | * |
| 1325 | * Ignore the old backing file for unsafe rebase in case we want to correct |
| 1326 | * the reference to a renamed or moved backing file. |
| 1327 | */ |
Stefan Hajnoczi | adfe078 | 2010-04-13 10:29:35 +0100 | [diff] [blame] | 1328 | flags = BDRV_O_FLAGS | BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0); |
Stefan Hajnoczi | f163d07 | 2010-04-13 10:29:34 +0100 | [diff] [blame] | 1329 | bs = bdrv_new_open(filename, fmt, flags); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1330 | if (!bs) { |
| 1331 | return 1; |
| 1332 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1333 | |
| 1334 | /* Find the right drivers for the backing files */ |
| 1335 | old_backing_drv = NULL; |
| 1336 | new_backing_drv = NULL; |
| 1337 | |
| 1338 | if (!unsafe && bs->backing_format[0] != '\0') { |
| 1339 | old_backing_drv = bdrv_find_format(bs->backing_format); |
| 1340 | if (old_backing_drv == NULL) { |
| 1341 | error("Invalid format name: '%s'", bs->backing_format); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1342 | ret = -1; |
| 1343 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1344 | } |
| 1345 | } |
| 1346 | |
| 1347 | if (out_basefmt != NULL) { |
| 1348 | new_backing_drv = bdrv_find_format(out_basefmt); |
| 1349 | if (new_backing_drv == NULL) { |
| 1350 | error("Invalid format name: '%s'", out_basefmt); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1351 | ret = -1; |
| 1352 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1353 | } |
| 1354 | } |
| 1355 | |
| 1356 | /* For safe rebasing we need to compare old and new backing file */ |
| 1357 | if (unsafe) { |
| 1358 | /* Make the compiler happy */ |
| 1359 | bs_old_backing = NULL; |
| 1360 | bs_new_backing = NULL; |
| 1361 | } else { |
| 1362 | char backing_name[1024]; |
| 1363 | |
| 1364 | bs_old_backing = bdrv_new("old_backing"); |
| 1365 | bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name)); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1366 | ret = bdrv_open(bs_old_backing, backing_name, BDRV_O_FLAGS, |
| 1367 | old_backing_drv); |
| 1368 | if (ret) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1369 | error("Could not open old backing file '%s'", backing_name); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1370 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | bs_new_backing = bdrv_new("new_backing"); |
Kevin Wolf | cdbae85 | 2010-08-17 18:58:55 +0200 | [diff] [blame] | 1374 | ret = bdrv_open(bs_new_backing, out_baseimg, BDRV_O_FLAGS, |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1375 | new_backing_drv); |
| 1376 | if (ret) { |
Kevin Wolf | 584771e | 2010-02-17 12:33:17 +0100 | [diff] [blame] | 1377 | error("Could not open new backing file '%s'", out_baseimg); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1378 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1379 | } |
| 1380 | } |
| 1381 | |
| 1382 | /* |
| 1383 | * Check each unallocated cluster in the COW file. If it is unallocated, |
| 1384 | * accesses go to the backing file. We must therefore compare this cluster |
| 1385 | * in the old and new backing file, and if they differ we need to copy it |
| 1386 | * from the old backing file into the COW file. |
| 1387 | * |
| 1388 | * If qemu-img crashes during this step, no harm is done. The content of |
| 1389 | * the image is the same as the original one at any time. |
| 1390 | */ |
| 1391 | if (!unsafe) { |
| 1392 | uint64_t num_sectors; |
| 1393 | uint64_t sector; |
Kevin Wolf | cc60e32 | 2010-04-29 14:47:48 +0200 | [diff] [blame] | 1394 | int n; |
TeLeMan | d6771bf | 2010-02-08 16:20:00 +0800 | [diff] [blame] | 1395 | uint8_t * buf_old; |
| 1396 | uint8_t * buf_new; |
| 1397 | |
| 1398 | buf_old = qemu_malloc(IO_BUF_SIZE); |
| 1399 | buf_new = qemu_malloc(IO_BUF_SIZE); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1400 | |
| 1401 | bdrv_get_geometry(bs, &num_sectors); |
| 1402 | |
| 1403 | for (sector = 0; sector < num_sectors; sector += n) { |
| 1404 | |
| 1405 | /* How many sectors can we handle with the next read? */ |
| 1406 | if (sector + (IO_BUF_SIZE / 512) <= num_sectors) { |
| 1407 | n = (IO_BUF_SIZE / 512); |
| 1408 | } else { |
| 1409 | n = num_sectors - sector; |
| 1410 | } |
| 1411 | |
| 1412 | /* If the cluster is allocated, we don't need to take action */ |
Kevin Wolf | cc60e32 | 2010-04-29 14:47:48 +0200 | [diff] [blame] | 1413 | ret = bdrv_is_allocated(bs, sector, n, &n); |
| 1414 | if (ret) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1415 | continue; |
| 1416 | } |
| 1417 | |
| 1418 | /* Read old and new backing file */ |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1419 | ret = bdrv_read(bs_old_backing, sector, buf_old, n); |
| 1420 | if (ret < 0) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1421 | error("error while reading from old backing file"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1422 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1423 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1424 | ret = bdrv_read(bs_new_backing, sector, buf_new, n); |
| 1425 | if (ret < 0) { |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1426 | error("error while reading from new backing file"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1427 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1428 | } |
| 1429 | |
| 1430 | /* If they differ, we need to write to the COW file */ |
| 1431 | uint64_t written = 0; |
| 1432 | |
| 1433 | while (written < n) { |
| 1434 | int pnum; |
| 1435 | |
| 1436 | if (compare_sectors(buf_old + written * 512, |
Kevin Wolf | 60b1bd4 | 2010-02-17 12:32:59 +0100 | [diff] [blame] | 1437 | buf_new + written * 512, n - written, &pnum)) |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1438 | { |
| 1439 | ret = bdrv_write(bs, sector + written, |
| 1440 | buf_old + written * 512, pnum); |
| 1441 | if (ret < 0) { |
| 1442 | error("Error while writing to COW image: %s", |
| 1443 | strerror(-ret)); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1444 | goto out; |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1445 | } |
| 1446 | } |
| 1447 | |
| 1448 | written += pnum; |
| 1449 | } |
| 1450 | } |
TeLeMan | d6771bf | 2010-02-08 16:20:00 +0800 | [diff] [blame] | 1451 | |
| 1452 | qemu_free(buf_old); |
| 1453 | qemu_free(buf_new); |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | /* |
| 1457 | * Change the backing file. All clusters that are different from the old |
| 1458 | * backing file are overwritten in the COW file now, so the visible content |
| 1459 | * doesn't change when we switch the backing file. |
| 1460 | */ |
| 1461 | ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt); |
| 1462 | if (ret == -ENOSPC) { |
| 1463 | error("Could not change the backing file to '%s': No space left in " |
| 1464 | "the file header", out_baseimg); |
| 1465 | } else if (ret < 0) { |
| 1466 | error("Could not change the backing file to '%s': %s", |
| 1467 | out_baseimg, strerror(-ret)); |
| 1468 | } |
| 1469 | |
| 1470 | /* |
| 1471 | * TODO At this point it is possible to check if any clusters that are |
| 1472 | * allocated in the COW file are the same in the backing file. If so, they |
| 1473 | * could be dropped from the COW file. Don't do this before switching the |
| 1474 | * backing file, in case of a crash this would lead to corruption. |
| 1475 | */ |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1476 | out: |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1477 | /* Cleanup */ |
| 1478 | if (!unsafe) { |
| 1479 | bdrv_delete(bs_old_backing); |
| 1480 | bdrv_delete(bs_new_backing); |
| 1481 | } |
| 1482 | |
| 1483 | bdrv_delete(bs); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1484 | if (ret) { |
| 1485 | return 1; |
| 1486 | } |
Kevin Wolf | 3e85c6f | 2010-01-12 12:55:18 +0100 | [diff] [blame] | 1487 | return 0; |
| 1488 | } |
| 1489 | |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1490 | static int img_resize(int argc, char **argv) |
| 1491 | { |
| 1492 | int c, ret, relative; |
| 1493 | const char *filename, *fmt, *size; |
| 1494 | int64_t n, total_size; |
| 1495 | BlockDriverState *bs; |
| 1496 | QEMUOptionParameter *param; |
| 1497 | QEMUOptionParameter resize_options[] = { |
| 1498 | { |
| 1499 | .name = BLOCK_OPT_SIZE, |
| 1500 | .type = OPT_SIZE, |
| 1501 | .help = "Virtual disk size" |
| 1502 | }, |
| 1503 | { NULL } |
| 1504 | }; |
| 1505 | |
| 1506 | fmt = NULL; |
| 1507 | for(;;) { |
| 1508 | c = getopt(argc, argv, "f:h"); |
| 1509 | if (c == -1) { |
| 1510 | break; |
| 1511 | } |
| 1512 | switch(c) { |
Jes Sorensen | ef87394 | 2010-12-06 15:25:40 +0100 | [diff] [blame^] | 1513 | case '?': |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1514 | case 'h': |
| 1515 | help(); |
| 1516 | break; |
| 1517 | case 'f': |
| 1518 | fmt = optarg; |
| 1519 | break; |
| 1520 | } |
| 1521 | } |
| 1522 | if (optind + 1 >= argc) { |
| 1523 | help(); |
| 1524 | } |
| 1525 | filename = argv[optind++]; |
| 1526 | size = argv[optind++]; |
| 1527 | |
| 1528 | /* Choose grow, shrink, or absolute resize mode */ |
| 1529 | switch (size[0]) { |
| 1530 | case '+': |
| 1531 | relative = 1; |
| 1532 | size++; |
| 1533 | break; |
| 1534 | case '-': |
| 1535 | relative = -1; |
| 1536 | size++; |
| 1537 | break; |
| 1538 | default: |
| 1539 | relative = 0; |
| 1540 | break; |
| 1541 | } |
| 1542 | |
| 1543 | /* Parse size */ |
| 1544 | param = parse_option_parameters("", resize_options, NULL); |
| 1545 | if (set_option_parameter(param, BLOCK_OPT_SIZE, size)) { |
| 1546 | /* Error message already printed when size parsing fails */ |
| 1547 | exit(1); |
| 1548 | } |
| 1549 | n = get_option_parameter(param, BLOCK_OPT_SIZE)->value.n; |
| 1550 | free_option_parameters(param); |
| 1551 | |
| 1552 | bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1553 | if (!bs) { |
| 1554 | return 1; |
| 1555 | } |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1556 | |
| 1557 | if (relative) { |
| 1558 | total_size = bdrv_getlength(bs) + n * relative; |
| 1559 | } else { |
| 1560 | total_size = n; |
| 1561 | } |
| 1562 | if (total_size <= 0) { |
| 1563 | error("New image size must be positive"); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1564 | ret = -1; |
| 1565 | goto out; |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1566 | } |
| 1567 | |
| 1568 | ret = bdrv_truncate(bs, total_size); |
| 1569 | switch (ret) { |
| 1570 | case 0: |
| 1571 | printf("Image resized.\n"); |
| 1572 | break; |
| 1573 | case -ENOTSUP: |
| 1574 | error("This image format does not support resize"); |
| 1575 | break; |
| 1576 | case -EACCES: |
| 1577 | error("Image is read-only"); |
| 1578 | break; |
| 1579 | default: |
| 1580 | error("Error resizing image (%d)", -ret); |
| 1581 | break; |
| 1582 | } |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1583 | out: |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1584 | bdrv_delete(bs); |
MORITA Kazutaka | c2abcce | 2010-06-21 04:26:35 +0900 | [diff] [blame] | 1585 | if (ret) { |
| 1586 | return 1; |
| 1587 | } |
Stefan Hajnoczi | ae6b0ed | 2010-04-24 09:12:12 +0100 | [diff] [blame] | 1588 | return 0; |
| 1589 | } |
| 1590 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1591 | static const img_cmd_t img_cmds[] = { |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1592 | #define DEF(option, callback, arg_string) \ |
| 1593 | { option, callback }, |
| 1594 | #include "qemu-img-cmds.h" |
| 1595 | #undef DEF |
| 1596 | #undef GEN_DOCS |
| 1597 | { NULL, NULL, }, |
| 1598 | }; |
| 1599 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1600 | int main(int argc, char **argv) |
| 1601 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1602 | const img_cmd_t *cmd; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1603 | const char *cmdname; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1604 | |
| 1605 | bdrv_init(); |
| 1606 | if (argc < 2) |
| 1607 | help(); |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1608 | cmdname = argv[1]; |
aurel32 | 8f9b157 | 2009-02-09 18:14:31 +0000 | [diff] [blame] | 1609 | argc--; argv++; |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1610 | |
| 1611 | /* find the command */ |
| 1612 | for(cmd = img_cmds; cmd->name != NULL; cmd++) { |
| 1613 | if (!strcmp(cmdname, cmd->name)) { |
| 1614 | return cmd->handler(argc, argv); |
| 1615 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1616 | } |
Stuart Brady | 153859b | 2009-06-07 00:42:17 +0100 | [diff] [blame] | 1617 | |
| 1618 | /* not found */ |
| 1619 | help(); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1620 | return 0; |
| 1621 | } |