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