blob: 52282e3add99345e147e469b5b05bc396d1ebf86 [file] [log] [blame]
bellardea2384d2004-08-01 21:59:26 +00001/*
bellardfb43f4d2006-08-07 21:34:46 +00002 * QEMU disk image utility
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardea2384d2004-08-01 21:59:26 +00006 * 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 */
pbrookfaf07962007-11-11 02:51:17 +000024#include "qemu-common.h"
Kevin Wolf9ea2ea72009-05-18 16:42:11 +020025#include "qemu-option.h"
aliguorif7b4a942009-01-07 17:40:15 +000026#include "osdep.h"
Jes Sorensendc786bc2010-10-26 10:39:23 +020027#include "sysemu.h"
thsec36ba12007-09-16 21:59:02 +000028#include "block_int.h"
aliguori9230eaf2009-03-28 17:55:19 +000029#include <stdio.h>
bellardea2384d2004-08-01 21:59:26 +000030
bellarde8445332006-06-14 15:32:10 +000031#ifdef _WIN32
32#include <windows.h>
33#endif
34
Anthony Liguoric227f092009-10-01 16:12:16 -050035typedef struct img_cmd_t {
Stuart Brady153859b2009-06-07 00:42:17 +010036 const char *name;
37 int (*handler)(int argc, char **argv);
Anthony Liguoric227f092009-10-01 16:12:16 -050038} img_cmd_t;
Stuart Brady153859b2009-06-07 00:42:17 +010039
aurel32137519c2008-11-30 19:12:49 +000040/* Default to cache=writeback as data integrity is not important for qemu-tcg. */
Stefan Hajnocziadfe0782010-04-13 10:29:35 +010041#define BDRV_O_FLAGS BDRV_O_CACHE_WB
aurel32137519c2008-11-30 19:12:49 +000042
Stefan Weil8b7968f2010-09-23 21:28:05 +020043static void GCC_FMT_ATTR(1, 2) error(const char *fmt, ...)
bellardea2384d2004-08-01 21:59:26 +000044{
45 va_list ap;
46 va_start(ap, fmt);
bellard57d1a2b2004-08-03 21:15:11 +000047 fprintf(stderr, "qemu-img: ");
bellardea2384d2004-08-01 21:59:26 +000048 vfprintf(stderr, fmt, ap);
49 fprintf(stderr, "\n");
bellardea2384d2004-08-01 21:59:26 +000050 va_end(ap);
51}
52
53static void format_print(void *opaque, const char *name)
54{
55 printf(" %s", name);
56}
57
blueswir1d2c639d2009-01-24 18:19:25 +000058/* Please keep in synch with qemu-img.texi */
pbrook3f379ab2007-11-11 03:33:13 +000059static void help(void)
bellardea2384d2004-08-01 21:59:26 +000060{
Paolo Bonzinie00291c2010-02-04 16:49:56 +010061 const char *help_msg =
62 "qemu-img version " QEMU_VERSION ", Copyright (c) 2004-2008 Fabrice Bellard\n"
malc3f020d72010-02-08 12:04:56 +030063 "usage: qemu-img command [command options]\n"
64 "QEMU disk image utility\n"
65 "\n"
66 "Command syntax:\n"
Stuart Brady153859b2009-06-07 00:42:17 +010067#define DEF(option, callback, arg_string) \
68 " " arg_string "\n"
69#include "qemu-img-cmds.h"
70#undef DEF
71#undef GEN_DOCS
malc3f020d72010-02-08 12:04:56 +030072 "\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 Bonzinie00291c2010-02-04 16:49:56 +010095 " '-l' lists all snapshots in the given image\n";
96
97 printf("%s\nSupported formats:", help_msg);
bellardea2384d2004-08-01 21:59:26 +000098 bdrv_iterate_format(format_print, NULL);
99 printf("\n");
100 exit(1);
101}
102
bellardea2384d2004-08-01 21:59:26 +0000103#if defined(WIN32)
104/* XXX: put correct support for win32 */
105static 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
126static struct termios oldtty;
127
128static void term_exit(void)
129{
130 tcsetattr (0, TCSANOW, &oldtty);
131}
132
133static 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;
ths3b46e622007-09-17 08:09:54 +0000148
bellardea2384d2004-08-01 21:59:26 +0000149 tcsetattr (0, TCSANOW, &tty);
150
151 atexit(term_exit);
152}
153
pbrook3f379ab2007-11-11 03:33:13 +0000154static int read_password(char *buf, int buf_size)
bellardea2384d2004-08-01 21:59:26 +0000155{
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 Sorensen4ac8aac2010-12-06 15:25:38 +0100191static 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
bellard75c23802004-08-27 21:28:58 +0000218static BlockDriverState *bdrv_new_open(const char *filename,
Sheng Yang9bc378c2010-01-29 10:15:06 +0800219 const char *fmt,
Stefan Hajnoczif163d072010-04-13 10:29:34 +0100220 int flags)
bellard75c23802004-08-27 21:28:58 +0000221{
222 BlockDriverState *bs;
223 BlockDriver *drv;
224 char password[256];
225
226 bs = bdrv_new("");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900227 if (!bs) {
bellard75c23802004-08-27 21:28:58 +0000228 error("Not enough memory");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900229 goto fail;
230 }
bellard75c23802004-08-27 21:28:58 +0000231 if (fmt) {
232 drv = bdrv_find_format(fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900233 if (!drv) {
bellard75c23802004-08-27 21:28:58 +0000234 error("Unknown file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900235 goto fail;
236 }
bellard75c23802004-08-27 21:28:58 +0000237 } else {
238 drv = NULL;
239 }
Kevin Wolfd6e90982010-03-31 14:40:27 +0200240 if (bdrv_open(bs, filename, flags, drv) < 0) {
bellard75c23802004-08-27 21:28:58 +0000241 error("Could not open '%s'", filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900242 goto fail;
bellard75c23802004-08-27 21:28:58 +0000243 }
244 if (bdrv_is_encrypted(bs)) {
245 printf("Disk image '%s' is encrypted.\n", filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900246 if (read_password(password, sizeof(password)) < 0) {
bellard75c23802004-08-27 21:28:58 +0000247 error("No password given");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900248 goto fail;
249 }
250 if (bdrv_set_key(bs, password) < 0) {
bellard75c23802004-08-27 21:28:58 +0000251 error("invalid password");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900252 goto fail;
253 }
bellard75c23802004-08-27 21:28:58 +0000254 }
255 return bs;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900256fail:
257 if (bs) {
258 bdrv_delete(bs);
259 }
260 return NULL;
bellard75c23802004-08-27 21:28:58 +0000261}
262
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900263static int add_old_style_options(const char *fmt, QEMUOptionParameter *list,
Jes Sorenseneec77d92010-12-07 17:44:34 +0100264 const char *base_filename,
265 const char *base_fmt)
Kevin Wolfefa84d42009-05-18 16:42:12 +0200266{
Kevin Wolfefa84d42009-05-18 16:42:12 +0200267 if (base_filename) {
268 if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) {
269 error("Backing file not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900270 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200271 }
272 }
273 if (base_fmt) {
274 if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) {
275 error("Backing file format not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900276 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200277 }
278 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900279 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200280}
281
bellardea2384d2004-08-01 21:59:26 +0000282static int img_create(int argc, char **argv)
283{
Jes Sorenseneec77d92010-12-07 17:44:34 +0100284 int c, ret = 0;
bellardea2384d2004-08-01 21:59:26 +0000285 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000286 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000287 const char *filename;
288 const char *base_filename = NULL;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900289 BlockDriver *drv, *proto_drv;
290 QEMUOptionParameter *param = NULL, *create_options = NULL;
Stefan Hajnoczi5eeaad52010-12-07 09:35:56 +0000291 QEMUOptionParameter *backing_fmt = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200292 char *options = NULL;
ths3b46e622007-09-17 08:09:54 +0000293
bellardea2384d2004-08-01 21:59:26 +0000294 for(;;) {
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200295 c = getopt(argc, argv, "F:b:f:he6o:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100296 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000297 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100298 }
bellardea2384d2004-08-01 21:59:26 +0000299 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100300 case '?':
bellardea2384d2004-08-01 21:59:26 +0000301 case 'h':
302 help();
303 break;
aliguori9230eaf2009-03-28 17:55:19 +0000304 case 'F':
305 base_fmt = optarg;
306 break;
bellardea2384d2004-08-01 21:59:26 +0000307 case 'b':
308 base_filename = optarg;
309 break;
310 case 'f':
311 fmt = optarg;
312 break;
313 case 'e':
Jes Sorenseneec77d92010-12-07 17:44:34 +0100314 error("qemu-img: option -e is deprecated, please use \'-o "
315 "encryption\' instead!");
316 return 1;
thsd8871c52007-10-24 16:11:42 +0000317 case '6':
Jes Sorenseneec77d92010-12-07 17:44:34 +0100318 error("qemu-img: option -6 is deprecated, please use \'-o "
319 "compat6\' instead!");
320 return 1;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200321 case 'o':
322 options = optarg;
323 break;
bellardea2384d2004-08-01 21:59:26 +0000324 }
325 }
aliguori9230eaf2009-03-28 17:55:19 +0000326
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900327 /* Get the filename */
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100328 if (optind >= argc) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900329 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100330 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900331 filename = argv[optind++];
332
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100333 if (options && !strcmp(options, "?")) {
334 ret = print_block_option_help(filename, fmt);
335 goto out;
336 }
337
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200338 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +0000339 drv = bdrv_find_format(fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900340 if (!drv) {
bellardea2384d2004-08-01 21:59:26 +0000341 error("Unknown file format '%s'", fmt);
Jes Sorensen2a819982010-12-06 17:08:31 +0100342 ret = -1;
343 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900344 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200345
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900346 proto_drv = bdrv_find_protocol(filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900347 if (!proto_drv) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900348 error("Unknown protocol '%s'", filename);
Jes Sorensen2a819982010-12-06 17:08:31 +0100349 ret = -1;
350 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900351 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900352
353 create_options = append_option_parameters(create_options,
354 drv->create_options);
355 create_options = append_option_parameters(create_options,
356 proto_drv->create_options);
357
Kevin Wolf9f566402009-10-28 11:36:07 +0100358 /* Create parameter list with default values */
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900359 param = parse_option_parameters("", create_options, param);
Kevin Wolf9f566402009-10-28 11:36:07 +0100360 set_option_parameter_int(param, BLOCK_OPT_SIZE, -1);
361
362 /* Parse -o options */
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200363 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900364 param = parse_option_parameters(options, create_options, param);
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200365 if (param == NULL) {
366 error("Invalid options for file format '%s'.", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900367 ret = -1;
368 goto out;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200369 }
bellard75c23802004-08-27 21:28:58 +0000370 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200371
372 /* Add size to parameters */
373 if (optind < argc) {
374 set_option_parameter(param, BLOCK_OPT_SIZE, argv[optind++]);
375 }
376
377 /* Add old-style options to parameters */
Jes Sorenseneec77d92010-12-07 17:44:34 +0100378 ret = add_old_style_options(fmt, param, base_filename, base_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900379 if (ret < 0) {
380 goto out;
381 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200382
Stefan Hajnoczi5eeaad52010-12-07 09:35:56 +0000383 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
384 if (backing_fmt && backing_fmt->value.s) {
385 if (!bdrv_find_format(backing_fmt->value.s)) {
386 error("Unknown backing file format '%s'",
387 backing_fmt->value.s);
388 ret = -1;
389 goto out;
390 }
391 }
392
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200393 // The size for the image must always be specified, with one exception:
394 // If we are using a backing file, we can obtain the size from there
Kevin Wolf9f566402009-10-28 11:36:07 +0100395 if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) {
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200396
397 QEMUOptionParameter *backing_file =
398 get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200399
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) {
Stefan Hajnoczi5eeaad52010-12-07 09:35:56 +0000407 fmt = backing_fmt->value.s;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200408 }
409
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100410 bs = bdrv_new_open(backing_file->value.s, fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900411 if (!bs) {
412 ret = -1;
413 goto out;
414 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200415 bdrv_get_geometry(bs, &size);
416 size *= 512;
417 bdrv_delete(bs);
418
419 snprintf(buf, sizeof(buf), "%" PRId64, size);
420 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
421 } else {
422 error("Image creation needs a size parameter");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900423 ret = -1;
424 goto out;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200425 }
426 }
427
428 printf("Formatting '%s', fmt=%s ", filename, fmt);
429 print_option_parameters(param);
430 puts("");
431
432 ret = bdrv_create(drv, filename, param);
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200433
bellardea2384d2004-08-01 21:59:26 +0000434 if (ret < 0) {
435 if (ret == -ENOTSUP) {
bellard3c565212004-09-29 21:29:14 +0000436 error("Formatting or formatting option not supported for file format '%s'", fmt);
aurel326e9ea0c2009-04-15 14:42:46 +0000437 } else if (ret == -EFBIG) {
438 error("The image size is too large for file format '%s'", fmt);
bellardea2384d2004-08-01 21:59:26 +0000439 } else {
Juan Quintela3e7896d2010-03-04 10:00:38 +0100440 error("%s: error while creating %s: %s", filename, fmt, strerror(-ret));
bellardea2384d2004-08-01 21:59:26 +0000441 }
442 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900443out:
Stefan Hajnoczia87a6722010-12-07 09:35:55 +0000444 free_option_parameters(create_options);
445 free_option_parameters(param);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900446 if (ret) {
447 return 1;
448 }
bellardea2384d2004-08-01 21:59:26 +0000449 return 0;
450}
451
Kevin Wolfe076f332010-06-29 11:43:13 +0200452/*
453 * Checks an image for consistency. Exit codes:
454 *
455 * 0 - Check completed, image is good
456 * 1 - Check not completed because of internal errors
457 * 2 - Check completed, image is corrupted
458 * 3 - Check completed, image has leaked clusters, but is good otherwise
459 */
aliguori15859692009-04-21 23:11:53 +0000460static int img_check(int argc, char **argv)
461{
462 int c, ret;
463 const char *filename, *fmt;
aliguori15859692009-04-21 23:11:53 +0000464 BlockDriverState *bs;
Kevin Wolfe076f332010-06-29 11:43:13 +0200465 BdrvCheckResult result;
aliguori15859692009-04-21 23:11:53 +0000466
467 fmt = NULL;
468 for(;;) {
469 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100470 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000471 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100472 }
aliguori15859692009-04-21 23:11:53 +0000473 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100474 case '?':
aliguori15859692009-04-21 23:11:53 +0000475 case 'h':
476 help();
477 break;
478 case 'f':
479 fmt = optarg;
480 break;
481 }
482 }
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100483 if (optind >= argc) {
aliguori15859692009-04-21 23:11:53 +0000484 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100485 }
aliguori15859692009-04-21 23:11:53 +0000486 filename = argv[optind++];
487
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100488 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900489 if (!bs) {
490 return 1;
491 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200492 ret = bdrv_check(bs, &result);
493
494 if (ret == -ENOTSUP) {
aliguori15859692009-04-21 23:11:53 +0000495 error("This image format does not support checks");
Kevin Wolfe076f332010-06-29 11:43:13 +0200496 bdrv_delete(bs);
497 return 1;
498 }
499
500 if (!(result.corruptions || result.leaks || result.check_errors)) {
501 printf("No errors were found on the image.\n");
502 } else {
503 if (result.corruptions) {
504 printf("\n%d errors were found on the image.\n"
505 "Data may be corrupted, or further writes to the image "
506 "may corrupt it.\n",
507 result.corruptions);
aliguori15859692009-04-21 23:11:53 +0000508 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200509
510 if (result.leaks) {
511 printf("\n%d leaked clusters were found on the image.\n"
512 "This means waste of disk space, but no harm to data.\n",
513 result.leaks);
514 }
515
516 if (result.check_errors) {
517 printf("\n%d internal errors have occurred during the check.\n",
518 result.check_errors);
519 }
aliguori15859692009-04-21 23:11:53 +0000520 }
521
522 bdrv_delete(bs);
Kevin Wolfe076f332010-06-29 11:43:13 +0200523
524 if (ret < 0 || result.check_errors) {
525 printf("\nAn error has occurred during the check: %s\n"
526 "The check is not complete and may have missed error.\n",
527 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900528 return 1;
529 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200530
531 if (result.corruptions) {
532 return 2;
533 } else if (result.leaks) {
534 return 3;
535 } else {
536 return 0;
537 }
aliguori15859692009-04-21 23:11:53 +0000538}
539
bellardea2384d2004-08-01 21:59:26 +0000540static int img_commit(int argc, char **argv)
541{
542 int c, ret;
543 const char *filename, *fmt;
bellardea2384d2004-08-01 21:59:26 +0000544 BlockDriverState *bs;
545
546 fmt = NULL;
547 for(;;) {
548 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100549 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000550 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100551 }
bellardea2384d2004-08-01 21:59:26 +0000552 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100553 case '?':
bellardea2384d2004-08-01 21:59:26 +0000554 case 'h':
555 help();
556 break;
557 case 'f':
558 fmt = optarg;
559 break;
560 }
561 }
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100562 if (optind >= argc) {
bellardea2384d2004-08-01 21:59:26 +0000563 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100564 }
bellardea2384d2004-08-01 21:59:26 +0000565 filename = argv[optind++];
566
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100567 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900568 if (!bs) {
569 return 1;
570 }
bellardea2384d2004-08-01 21:59:26 +0000571 ret = bdrv_commit(bs);
572 switch(ret) {
573 case 0:
574 printf("Image committed.\n");
575 break;
576 case -ENOENT:
577 error("No disk inserted");
578 break;
579 case -EACCES:
580 error("Image is read-only");
581 break;
582 case -ENOTSUP:
583 error("Image is already committed");
584 break;
585 default:
586 error("Error while committing image");
587 break;
588 }
589
590 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900591 if (ret) {
592 return 1;
593 }
bellardea2384d2004-08-01 21:59:26 +0000594 return 0;
595}
596
597static int is_not_zero(const uint8_t *sector, int len)
598{
599 int i;
600 len >>= 2;
601 for(i = 0;i < len; i++) {
602 if (((uint32_t *)sector)[i] != 0)
603 return 1;
604 }
605 return 0;
606}
607
thsf58c7b32008-06-05 21:53:49 +0000608/*
609 * Returns true iff the first sector pointed to by 'buf' contains at least
610 * a non-NUL byte.
611 *
612 * 'pnum' is set to the number of sectors (including and immediately following
613 * the first one) that are known to be in the same allocated/unallocated state.
614 */
bellardea2384d2004-08-01 21:59:26 +0000615static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
616{
617 int v, i;
618
619 if (n <= 0) {
620 *pnum = 0;
621 return 0;
622 }
623 v = is_not_zero(buf, 512);
624 for(i = 1; i < n; i++) {
625 buf += 512;
626 if (v != is_not_zero(buf, 512))
627 break;
628 }
629 *pnum = i;
630 return v;
631}
632
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100633/*
634 * Compares two buffers sector by sector. Returns 0 if the first sector of both
635 * buffers matches, non-zero otherwise.
636 *
637 * pnum is set to the number of sectors (including and immediately following
638 * the first one) that are known to have the same comparison result
639 */
640static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
641 int *pnum)
642{
643 int res, i;
644
645 if (n <= 0) {
646 *pnum = 0;
647 return 0;
648 }
649
650 res = !!memcmp(buf1, buf2, 512);
651 for(i = 1; i < n; i++) {
652 buf1 += 512;
653 buf2 += 512;
654
655 if (!!memcmp(buf1, buf2, 512) != res) {
656 break;
657 }
658 }
659
660 *pnum = i;
661 return res;
662}
663
Kevin Wolf80ee15a2009-09-15 12:30:43 +0200664#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +0000665
666static int img_convert(int argc, char **argv)
667{
Jes Sorenseneec77d92010-12-07 17:44:34 +0100668 int c, ret = 0, n, n1, bs_n, bs_i, compress, cluster_size, cluster_sectors;
thsf58c7b32008-06-05 21:53:49 +0000669 const char *fmt, *out_fmt, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900670 BlockDriver *drv, *proto_drv;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900671 BlockDriverState **bs = NULL, *out_bs = NULL;
ths96b8f132007-12-17 01:35:20 +0000672 int64_t total_sectors, nb_sectors, sector_num, bs_offset;
673 uint64_t bs_sectors;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900674 uint8_t * buf = NULL;
bellardea2384d2004-08-01 21:59:26 +0000675 const uint8_t *buf1;
bellardfaea38e2006-08-05 21:31:00 +0000676 BlockDriverInfo bdi;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900677 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfa18953f2010-10-14 15:46:04 +0200678 QEMUOptionParameter *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200679 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -0700680 const char *snapshot_name = NULL;
bellardea2384d2004-08-01 21:59:26 +0000681
682 fmt = NULL;
683 out_fmt = "raw";
thsf58c7b32008-06-05 21:53:49 +0000684 out_baseimg = NULL;
Jes Sorenseneec77d92010-12-07 17:44:34 +0100685 compress = 0;
bellardea2384d2004-08-01 21:59:26 +0000686 for(;;) {
edison51ef6722010-09-21 19:58:41 -0700687 c = getopt(argc, argv, "f:O:B:s:hce6o:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100688 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000689 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100690 }
bellardea2384d2004-08-01 21:59:26 +0000691 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +0100692 case '?':
bellardea2384d2004-08-01 21:59:26 +0000693 case 'h':
694 help();
695 break;
696 case 'f':
697 fmt = optarg;
698 break;
699 case 'O':
700 out_fmt = optarg;
701 break;
thsf58c7b32008-06-05 21:53:49 +0000702 case 'B':
703 out_baseimg = optarg;
704 break;
bellardea2384d2004-08-01 21:59:26 +0000705 case 'c':
Jes Sorenseneec77d92010-12-07 17:44:34 +0100706 compress = 1;
bellardea2384d2004-08-01 21:59:26 +0000707 break;
708 case 'e':
Jes Sorenseneec77d92010-12-07 17:44:34 +0100709 error("qemu-img: option -e is deprecated, please use \'-o "
710 "encryption\' instead!");
711 return 1;
thsec36ba12007-09-16 21:59:02 +0000712 case '6':
Jes Sorenseneec77d92010-12-07 17:44:34 +0100713 error("qemu-img: option -6 is deprecated, please use \'-o "
714 "compat6\' instead!");
715 return 1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200716 case 'o':
717 options = optarg;
718 break;
edison51ef6722010-09-21 19:58:41 -0700719 case 's':
720 snapshot_name = optarg;
721 break;
bellardea2384d2004-08-01 21:59:26 +0000722 }
723 }
ths3b46e622007-09-17 08:09:54 +0000724
balrog926c2d22007-10-31 01:11:44 +0000725 bs_n = argc - optind - 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100726 if (bs_n < 1) {
727 help();
728 }
balrog926c2d22007-10-31 01:11:44 +0000729
730 out_filename = argv[argc - 1];
thsf58c7b32008-06-05 21:53:49 +0000731
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100732 if (options && !strcmp(options, "?")) {
733 ret = print_block_option_help(out_filename, out_fmt);
734 goto out;
735 }
736
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900737 if (bs_n > 1 && out_baseimg) {
thsf58c7b32008-06-05 21:53:49 +0000738 error("-B makes no sense when concatenating multiple input images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +0100739 ret = -1;
740 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900741 }
balrog926c2d22007-10-31 01:11:44 +0000742
Jes Sorensen5bdf61f2010-12-06 15:25:35 +0100743 bs = qemu_mallocz(bs_n * sizeof(BlockDriverState *));
balrog926c2d22007-10-31 01:11:44 +0000744
745 total_sectors = 0;
746 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100747 bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900748 if (!bs[bs_i]) {
balrog926c2d22007-10-31 01:11:44 +0000749 error("Could not open '%s'", argv[optind + bs_i]);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900750 ret = -1;
751 goto out;
752 }
balrog926c2d22007-10-31 01:11:44 +0000753 bdrv_get_geometry(bs[bs_i], &bs_sectors);
754 total_sectors += bs_sectors;
755 }
bellardea2384d2004-08-01 21:59:26 +0000756
edison51ef6722010-09-21 19:58:41 -0700757 if (snapshot_name != NULL) {
758 if (bs_n > 1) {
759 error("No support for concatenating multiple snapshot\n");
760 ret = -1;
761 goto out;
762 }
763 if (bdrv_snapshot_load_tmp(bs[0], snapshot_name) < 0) {
764 error("Failed to load snapshot\n");
765 ret = -1;
766 goto out;
767 }
768 }
769
Kevin Wolfefa84d42009-05-18 16:42:12 +0200770 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +0000771 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900772 if (!drv) {
thsd34dda52007-02-10 22:59:40 +0000773 error("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900774 ret = -1;
775 goto out;
776 }
balrog926c2d22007-10-31 01:11:44 +0000777
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900778 proto_drv = bdrv_find_protocol(out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900779 if (!proto_drv) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900780 error("Unknown protocol '%s'", out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900781 ret = -1;
782 goto out;
783 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900784
785 create_options = append_option_parameters(create_options,
786 drv->create_options);
787 create_options = append_option_parameters(create_options,
788 proto_drv->create_options);
Kevin Wolfdb08adf2009-06-04 15:39:38 +0200789
Kevin Wolfefa84d42009-05-18 16:42:12 +0200790 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900791 param = parse_option_parameters(options, create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +0200792 if (param == NULL) {
793 error("Invalid options for file format '%s'.", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900794 ret = -1;
795 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200796 }
797 } else {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900798 param = parse_option_parameters("", create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +0200799 }
800
801 set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512);
Jes Sorenseneec77d92010-12-07 17:44:34 +0100802 ret = add_old_style_options(out_fmt, param, out_baseimg, NULL);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900803 if (ret < 0) {
804 goto out;
805 }
Kevin Wolfefa84d42009-05-18 16:42:12 +0200806
Kevin Wolfa18953f2010-10-14 15:46:04 +0200807 /* Get backing file name if -o backing_file was used */
808 out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
809 if (out_baseimg_param) {
810 out_baseimg = out_baseimg_param->value.s;
811 }
812
Kevin Wolfefa84d42009-05-18 16:42:12 +0200813 /* Check if compression is supported */
Jes Sorenseneec77d92010-12-07 17:44:34 +0100814 if (compress) {
Kevin Wolfefa84d42009-05-18 16:42:12 +0200815 QEMUOptionParameter *encryption =
816 get_option_parameter(param, BLOCK_OPT_ENCRYPT);
817
818 if (!drv->bdrv_write_compressed) {
819 error("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900820 ret = -1;
821 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200822 }
823
824 if (encryption && encryption->value.n) {
825 error("Compression and encryption not supported at the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900826 ret = -1;
827 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200828 }
829 }
830
831 /* Create the new image */
832 ret = bdrv_create(drv, out_filename, param);
bellardea2384d2004-08-01 21:59:26 +0000833 if (ret < 0) {
834 if (ret == -ENOTSUP) {
aliguori93c65b42009-04-05 17:40:43 +0000835 error("Formatting not supported for file format '%s'", out_fmt);
aurel326e9ea0c2009-04-15 14:42:46 +0000836 } else if (ret == -EFBIG) {
837 error("The image size is too large for file format '%s'", out_fmt);
bellardea2384d2004-08-01 21:59:26 +0000838 } else {
Juan Quintela3e7896d2010-03-04 10:00:38 +0100839 error("%s: error while converting %s: %s", out_filename, out_fmt, strerror(-ret));
bellardea2384d2004-08-01 21:59:26 +0000840 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900841 goto out;
bellardea2384d2004-08-01 21:59:26 +0000842 }
ths3b46e622007-09-17 08:09:54 +0000843
Kevin Wolf1bd8e172010-08-31 13:44:25 +0200844 out_bs = bdrv_new_open(out_filename, out_fmt,
845 BDRV_O_FLAGS | BDRV_O_RDWR | BDRV_O_NO_FLUSH);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900846 if (!out_bs) {
847 ret = -1;
848 goto out;
849 }
bellardea2384d2004-08-01 21:59:26 +0000850
balrog926c2d22007-10-31 01:11:44 +0000851 bs_i = 0;
852 bs_offset = 0;
853 bdrv_get_geometry(bs[0], &bs_sectors);
TeLeMand6771bf2010-02-08 16:20:00 +0800854 buf = qemu_malloc(IO_BUF_SIZE);
balrog926c2d22007-10-31 01:11:44 +0000855
Jes Sorenseneec77d92010-12-07 17:44:34 +0100856 if (compress) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900857 ret = bdrv_get_info(out_bs, &bdi);
858 if (ret < 0) {
bellardfaea38e2006-08-05 21:31:00 +0000859 error("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900860 goto out;
861 }
bellardfaea38e2006-08-05 21:31:00 +0000862 cluster_size = bdi.cluster_size;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900863 if (cluster_size <= 0 || cluster_size > IO_BUF_SIZE) {
bellardea2384d2004-08-01 21:59:26 +0000864 error("invalid cluster size");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900865 ret = -1;
866 goto out;
867 }
bellardea2384d2004-08-01 21:59:26 +0000868 cluster_sectors = cluster_size >> 9;
869 sector_num = 0;
870 for(;;) {
balrog926c2d22007-10-31 01:11:44 +0000871 int64_t bs_num;
872 int remainder;
873 uint8_t *buf2;
874
bellardea2384d2004-08-01 21:59:26 +0000875 nb_sectors = total_sectors - sector_num;
876 if (nb_sectors <= 0)
877 break;
878 if (nb_sectors >= cluster_sectors)
879 n = cluster_sectors;
880 else
881 n = nb_sectors;
balrog926c2d22007-10-31 01:11:44 +0000882
883 bs_num = sector_num - bs_offset;
884 assert (bs_num >= 0);
885 remainder = n;
886 buf2 = buf;
887 while (remainder > 0) {
888 int nlow;
889 while (bs_num == bs_sectors) {
890 bs_i++;
891 assert (bs_i < bs_n);
892 bs_offset += bs_sectors;
893 bdrv_get_geometry(bs[bs_i], &bs_sectors);
894 bs_num = 0;
Blue Swirl0bfcd592010-05-22 08:02:12 +0000895 /* printf("changing part: sector_num=%" PRId64 ", "
896 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
897 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
balrog926c2d22007-10-31 01:11:44 +0000898 }
899 assert (bs_num < bs_sectors);
900
901 nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder;
902
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900903 ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow);
904 if (ret < 0) {
balrog926c2d22007-10-31 01:11:44 +0000905 error("error while reading");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900906 goto out;
907 }
balrog926c2d22007-10-31 01:11:44 +0000908
909 buf2 += nlow * 512;
910 bs_num += nlow;
911
912 remainder -= nlow;
913 }
914 assert (remainder == 0);
915
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100916 if (n < cluster_sectors) {
bellardea2384d2004-08-01 21:59:26 +0000917 memset(buf + n * 512, 0, cluster_size - n * 512);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100918 }
bellardea2384d2004-08-01 21:59:26 +0000919 if (is_not_zero(buf, cluster_size)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900920 ret = bdrv_write_compressed(out_bs, sector_num, buf,
921 cluster_sectors);
922 if (ret != 0) {
bellardec3757d2006-06-14 15:50:07 +0000923 error("error while compressing sector %" PRId64,
924 sector_num);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900925 goto out;
926 }
bellardea2384d2004-08-01 21:59:26 +0000927 }
928 sector_num += n;
929 }
bellardfaea38e2006-08-05 21:31:00 +0000930 /* signal EOF to align */
931 bdrv_write_compressed(out_bs, 0, NULL, 0);
bellardea2384d2004-08-01 21:59:26 +0000932 } else {
Kevin Wolff2feebb2010-04-14 17:30:35 +0200933 int has_zero_init = bdrv_has_zero_init(out_bs);
934
thsf58c7b32008-06-05 21:53:49 +0000935 sector_num = 0; // total number of sectors converted so far
bellardea2384d2004-08-01 21:59:26 +0000936 for(;;) {
937 nb_sectors = total_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100938 if (nb_sectors <= 0) {
bellardea2384d2004-08-01 21:59:26 +0000939 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100940 }
941 if (nb_sectors >= (IO_BUF_SIZE / 512)) {
bellardea2384d2004-08-01 21:59:26 +0000942 n = (IO_BUF_SIZE / 512);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100943 } else {
bellardea2384d2004-08-01 21:59:26 +0000944 n = nb_sectors;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100945 }
balrog926c2d22007-10-31 01:11:44 +0000946
947 while (sector_num - bs_offset >= bs_sectors) {
948 bs_i ++;
949 assert (bs_i < bs_n);
950 bs_offset += bs_sectors;
951 bdrv_get_geometry(bs[bs_i], &bs_sectors);
Blue Swirl0bfcd592010-05-22 08:02:12 +0000952 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
953 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
balrog926c2d22007-10-31 01:11:44 +0000954 sector_num, bs_i, bs_offset, bs_sectors); */
955 }
956
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100957 if (n > bs_offset + bs_sectors - sector_num) {
balrog926c2d22007-10-31 01:11:44 +0000958 n = bs_offset + bs_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100959 }
balrog926c2d22007-10-31 01:11:44 +0000960
Kevin Wolff2feebb2010-04-14 17:30:35 +0200961 if (has_zero_init) {
Akkarit Sangpetchd0320442009-07-17 10:02:15 +0200962 /* If the output image is being created as a copy on write image,
963 assume that sectors which are unallocated in the input image
964 are present in both the output's and input's base images (no
965 need to copy them). */
966 if (out_baseimg) {
967 if (!bdrv_is_allocated(bs[bs_i], sector_num - bs_offset,
968 n, &n1)) {
969 sector_num += n1;
970 continue;
971 }
972 /* The next 'n1' sectors are allocated in the input image. Copy
973 only those as they may be followed by unallocated sectors. */
974 n = n1;
aliguori93c65b42009-04-05 17:40:43 +0000975 }
aliguori93c65b42009-04-05 17:40:43 +0000976 } else {
977 n1 = n;
thsf58c7b32008-06-05 21:53:49 +0000978 }
979
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900980 ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n);
981 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000982 error("error while reading");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900983 goto out;
984 }
bellardea2384d2004-08-01 21:59:26 +0000985 /* NOTE: at the same time we convert, we do not write zero
986 sectors to have a chance to compress the image. Ideally, we
987 should add a specific call to have the info to go faster */
988 buf1 = buf;
989 while (n > 0) {
thsf58c7b32008-06-05 21:53:49 +0000990 /* If the output image is being created as a copy on write image,
991 copy all sectors even the ones containing only NUL bytes,
aliguori93c65b42009-04-05 17:40:43 +0000992 because they may differ from the sectors in the base image.
993
994 If the output is to a host device, we also write out
995 sectors that are entirely 0, since whatever data was
996 already there is garbage, not 0s. */
Kevin Wolff2feebb2010-04-14 17:30:35 +0200997 if (!has_zero_init || out_baseimg ||
aliguori93c65b42009-04-05 17:40:43 +0000998 is_allocated_sectors(buf1, n, &n1)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900999 ret = bdrv_write(out_bs, sector_num, buf1, n1);
1000 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +00001001 error("error while writing");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001002 goto out;
1003 }
bellardea2384d2004-08-01 21:59:26 +00001004 }
1005 sector_num += n1;
1006 n -= n1;
1007 buf1 += n1 * 512;
1008 }
1009 }
1010 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001011out:
1012 free_option_parameters(create_options);
1013 free_option_parameters(param);
TeLeMand6771bf2010-02-08 16:20:00 +08001014 qemu_free(buf);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001015 if (out_bs) {
1016 bdrv_delete(out_bs);
1017 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001018 if (bs) {
1019 for (bs_i = 0; bs_i < bs_n; bs_i++) {
1020 if (bs[bs_i]) {
1021 bdrv_delete(bs[bs_i]);
1022 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001023 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001024 qemu_free(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001025 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001026 if (ret) {
1027 return 1;
1028 }
bellardea2384d2004-08-01 21:59:26 +00001029 return 0;
1030}
1031
bellard57d1a2b2004-08-03 21:15:11 +00001032#ifdef _WIN32
1033static int64_t get_allocated_file_size(const char *filename)
1034{
bellarde8445332006-06-14 15:32:10 +00001035 typedef DWORD (WINAPI * get_compressed_t)(const char *filename, DWORD *high);
1036 get_compressed_t get_compressed;
bellard57d1a2b2004-08-03 21:15:11 +00001037 struct _stati64 st;
bellarde8445332006-06-14 15:32:10 +00001038
1039 /* WinNT support GetCompressedFileSize to determine allocate size */
1040 get_compressed = (get_compressed_t) GetProcAddress(GetModuleHandle("kernel32"), "GetCompressedFileSizeA");
1041 if (get_compressed) {
1042 DWORD high, low;
1043 low = get_compressed(filename, &high);
1044 if (low != 0xFFFFFFFFlu || GetLastError() == NO_ERROR)
1045 return (((int64_t) high) << 32) + low;
1046 }
1047
ths5fafdf22007-09-16 21:08:06 +00001048 if (_stati64(filename, &st) < 0)
bellard57d1a2b2004-08-03 21:15:11 +00001049 return -1;
1050 return st.st_size;
1051}
1052#else
1053static int64_t get_allocated_file_size(const char *filename)
1054{
1055 struct stat st;
ths5fafdf22007-09-16 21:08:06 +00001056 if (stat(filename, &st) < 0)
bellard57d1a2b2004-08-03 21:15:11 +00001057 return -1;
1058 return (int64_t)st.st_blocks * 512;
1059}
1060#endif
1061
bellardfaea38e2006-08-05 21:31:00 +00001062static void dump_snapshots(BlockDriverState *bs)
1063{
1064 QEMUSnapshotInfo *sn_tab, *sn;
1065 int nb_sns, i;
1066 char buf[256];
1067
1068 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1069 if (nb_sns <= 0)
1070 return;
1071 printf("Snapshot list:\n");
1072 printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
1073 for(i = 0; i < nb_sns; i++) {
1074 sn = &sn_tab[i];
1075 printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
1076 }
1077 qemu_free(sn_tab);
1078}
1079
bellardea2384d2004-08-01 21:59:26 +00001080static int img_info(int argc, char **argv)
1081{
1082 int c;
1083 const char *filename, *fmt;
bellardea2384d2004-08-01 21:59:26 +00001084 BlockDriverState *bs;
1085 char fmt_name[128], size_buf[128], dsize_buf[128];
ths96b8f132007-12-17 01:35:20 +00001086 uint64_t total_sectors;
1087 int64_t allocated_size;
bellard93b6b2a2006-08-01 15:51:11 +00001088 char backing_filename[1024];
1089 char backing_filename2[1024];
bellardfaea38e2006-08-05 21:31:00 +00001090 BlockDriverInfo bdi;
bellardea2384d2004-08-01 21:59:26 +00001091
1092 fmt = NULL;
1093 for(;;) {
1094 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001095 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001096 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001097 }
bellardea2384d2004-08-01 21:59:26 +00001098 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001099 case '?':
bellardea2384d2004-08-01 21:59:26 +00001100 case 'h':
1101 help();
1102 break;
1103 case 'f':
1104 fmt = optarg;
1105 break;
1106 }
1107 }
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001108 if (optind >= argc) {
bellardea2384d2004-08-01 21:59:26 +00001109 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001110 }
bellardea2384d2004-08-01 21:59:26 +00001111 filename = argv[optind++];
1112
Stefan Hajnocziadfe0782010-04-13 10:29:35 +01001113 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_NO_BACKING);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001114 if (!bs) {
1115 return 1;
1116 }
bellardea2384d2004-08-01 21:59:26 +00001117 bdrv_get_format(bs, fmt_name, sizeof(fmt_name));
1118 bdrv_get_geometry(bs, &total_sectors);
1119 get_human_readable_size(size_buf, sizeof(size_buf), total_sectors * 512);
bellard57d1a2b2004-08-03 21:15:11 +00001120 allocated_size = get_allocated_file_size(filename);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001121 if (allocated_size < 0) {
blueswir1a10ea302008-08-24 10:30:33 +00001122 snprintf(dsize_buf, sizeof(dsize_buf), "unavailable");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001123 } else {
ths5fafdf22007-09-16 21:08:06 +00001124 get_human_readable_size(dsize_buf, sizeof(dsize_buf),
bellardde167e42005-04-28 21:15:08 +00001125 allocated_size);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001126 }
bellardea2384d2004-08-01 21:59:26 +00001127 printf("image: %s\n"
1128 "file format: %s\n"
bellardec3757d2006-06-14 15:50:07 +00001129 "virtual size: %s (%" PRId64 " bytes)\n"
bellardea2384d2004-08-01 21:59:26 +00001130 "disk size: %s\n",
ths5fafdf22007-09-16 21:08:06 +00001131 filename, fmt_name, size_buf,
bellardec3757d2006-06-14 15:50:07 +00001132 (total_sectors * 512),
bellardea2384d2004-08-01 21:59:26 +00001133 dsize_buf);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001134 if (bdrv_is_encrypted(bs)) {
bellardea2384d2004-08-01 21:59:26 +00001135 printf("encrypted: yes\n");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001136 }
bellardfaea38e2006-08-05 21:31:00 +00001137 if (bdrv_get_info(bs, &bdi) >= 0) {
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001138 if (bdi.cluster_size != 0) {
bellardfaea38e2006-08-05 21:31:00 +00001139 printf("cluster_size: %d\n", bdi.cluster_size);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001140 }
bellardfaea38e2006-08-05 21:31:00 +00001141 }
bellard93b6b2a2006-08-01 15:51:11 +00001142 bdrv_get_backing_filename(bs, backing_filename, sizeof(backing_filename));
bellardfaea38e2006-08-05 21:31:00 +00001143 if (backing_filename[0] != '\0') {
bellard93b6b2a2006-08-01 15:51:11 +00001144 path_combine(backing_filename2, sizeof(backing_filename2),
1145 filename, backing_filename);
ths5fafdf22007-09-16 21:08:06 +00001146 printf("backing file: %s (actual path: %s)\n",
bellard93b6b2a2006-08-01 15:51:11 +00001147 backing_filename,
1148 backing_filename2);
bellardfaea38e2006-08-05 21:31:00 +00001149 }
1150 dump_snapshots(bs);
bellardea2384d2004-08-01 21:59:26 +00001151 bdrv_delete(bs);
1152 return 0;
1153}
1154
aliguorif7b4a942009-01-07 17:40:15 +00001155#define SNAPSHOT_LIST 1
1156#define SNAPSHOT_CREATE 2
1157#define SNAPSHOT_APPLY 3
1158#define SNAPSHOT_DELETE 4
1159
Stuart Brady153859b2009-06-07 00:42:17 +01001160static int img_snapshot(int argc, char **argv)
aliguorif7b4a942009-01-07 17:40:15 +00001161{
1162 BlockDriverState *bs;
1163 QEMUSnapshotInfo sn;
1164 char *filename, *snapshot_name = NULL;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001165 int c, ret = 0, bdrv_oflags;
aliguorif7b4a942009-01-07 17:40:15 +00001166 int action = 0;
1167 qemu_timeval tv;
1168
Naphtali Spreif5edb012010-01-17 16:48:13 +02001169 bdrv_oflags = BDRV_O_RDWR;
aliguorif7b4a942009-01-07 17:40:15 +00001170 /* Parse commandline parameters */
1171 for(;;) {
1172 c = getopt(argc, argv, "la:c:d:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001173 if (c == -1) {
aliguorif7b4a942009-01-07 17:40:15 +00001174 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001175 }
aliguorif7b4a942009-01-07 17:40:15 +00001176 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001177 case '?':
aliguorif7b4a942009-01-07 17:40:15 +00001178 case 'h':
1179 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001180 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001181 case 'l':
1182 if (action) {
1183 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001184 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001185 }
1186 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02001187 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00001188 break;
1189 case 'a':
1190 if (action) {
1191 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001192 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001193 }
1194 action = SNAPSHOT_APPLY;
1195 snapshot_name = optarg;
1196 break;
1197 case 'c':
1198 if (action) {
1199 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001200 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001201 }
1202 action = SNAPSHOT_CREATE;
1203 snapshot_name = optarg;
1204 break;
1205 case 'd':
1206 if (action) {
1207 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001208 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001209 }
1210 action = SNAPSHOT_DELETE;
1211 snapshot_name = optarg;
1212 break;
1213 }
1214 }
1215
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001216 if (optind >= argc) {
aliguorif7b4a942009-01-07 17:40:15 +00001217 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001218 }
aliguorif7b4a942009-01-07 17:40:15 +00001219 filename = argv[optind++];
1220
1221 /* Open the image */
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001222 bs = bdrv_new_open(filename, NULL, bdrv_oflags);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001223 if (!bs) {
1224 return 1;
1225 }
aliguorif7b4a942009-01-07 17:40:15 +00001226
1227 /* Perform the requested action */
1228 switch(action) {
1229 case SNAPSHOT_LIST:
1230 dump_snapshots(bs);
1231 break;
1232
1233 case SNAPSHOT_CREATE:
1234 memset(&sn, 0, sizeof(sn));
1235 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
1236
1237 qemu_gettimeofday(&tv);
1238 sn.date_sec = tv.tv_sec;
1239 sn.date_nsec = tv.tv_usec * 1000;
1240
1241 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001242 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001243 error("Could not create snapshot '%s': %d (%s)",
1244 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001245 }
aliguorif7b4a942009-01-07 17:40:15 +00001246 break;
1247
1248 case SNAPSHOT_APPLY:
1249 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001250 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001251 error("Could not apply snapshot '%s': %d (%s)",
1252 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001253 }
aliguorif7b4a942009-01-07 17:40:15 +00001254 break;
1255
1256 case SNAPSHOT_DELETE:
1257 ret = bdrv_snapshot_delete(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001258 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001259 error("Could not delete snapshot '%s': %d (%s)",
1260 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001261 }
aliguorif7b4a942009-01-07 17:40:15 +00001262 break;
1263 }
1264
1265 /* Cleanup */
1266 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001267 if (ret) {
1268 return 1;
1269 }
Stuart Brady153859b2009-06-07 00:42:17 +01001270 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001271}
1272
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001273static int img_rebase(int argc, char **argv)
1274{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001275 BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL;
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001276 BlockDriver *old_backing_drv, *new_backing_drv;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001277 char *filename;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001278 const char *fmt, *out_basefmt, *out_baseimg;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001279 int c, flags, ret;
1280 int unsafe = 0;
1281
1282 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001283 fmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001284 out_baseimg = NULL;
1285 out_basefmt = NULL;
1286
1287 for(;;) {
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001288 c = getopt(argc, argv, "uhf:F:b:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001289 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001290 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001291 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001292 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001293 case '?':
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001294 case 'h':
1295 help();
1296 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001297 case 'f':
1298 fmt = optarg;
1299 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001300 case 'F':
1301 out_basefmt = optarg;
1302 break;
1303 case 'b':
1304 out_baseimg = optarg;
1305 break;
1306 case 'u':
1307 unsafe = 1;
1308 break;
1309 }
1310 }
1311
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001312 if ((optind >= argc) || !out_baseimg) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001313 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001314 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001315 filename = argv[optind++];
1316
1317 /*
1318 * Open the images.
1319 *
1320 * Ignore the old backing file for unsafe rebase in case we want to correct
1321 * the reference to a renamed or moved backing file.
1322 */
Stefan Hajnocziadfe0782010-04-13 10:29:35 +01001323 flags = BDRV_O_FLAGS | BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001324 bs = bdrv_new_open(filename, fmt, flags);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001325 if (!bs) {
1326 return 1;
1327 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001328
1329 /* Find the right drivers for the backing files */
1330 old_backing_drv = NULL;
1331 new_backing_drv = NULL;
1332
1333 if (!unsafe && bs->backing_format[0] != '\0') {
1334 old_backing_drv = bdrv_find_format(bs->backing_format);
1335 if (old_backing_drv == NULL) {
1336 error("Invalid format name: '%s'", bs->backing_format);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001337 ret = -1;
1338 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001339 }
1340 }
1341
1342 if (out_basefmt != NULL) {
1343 new_backing_drv = bdrv_find_format(out_basefmt);
1344 if (new_backing_drv == NULL) {
1345 error("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001346 ret = -1;
1347 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001348 }
1349 }
1350
1351 /* For safe rebasing we need to compare old and new backing file */
1352 if (unsafe) {
1353 /* Make the compiler happy */
1354 bs_old_backing = NULL;
1355 bs_new_backing = NULL;
1356 } else {
1357 char backing_name[1024];
1358
1359 bs_old_backing = bdrv_new("old_backing");
1360 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001361 ret = bdrv_open(bs_old_backing, backing_name, BDRV_O_FLAGS,
1362 old_backing_drv);
1363 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001364 error("Could not open old backing file '%s'", backing_name);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001365 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001366 }
1367
1368 bs_new_backing = bdrv_new("new_backing");
Kevin Wolfcdbae852010-08-17 18:58:55 +02001369 ret = bdrv_open(bs_new_backing, out_baseimg, BDRV_O_FLAGS,
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001370 new_backing_drv);
1371 if (ret) {
Kevin Wolf584771e2010-02-17 12:33:17 +01001372 error("Could not open new backing file '%s'", out_baseimg);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001373 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001374 }
1375 }
1376
1377 /*
1378 * Check each unallocated cluster in the COW file. If it is unallocated,
1379 * accesses go to the backing file. We must therefore compare this cluster
1380 * in the old and new backing file, and if they differ we need to copy it
1381 * from the old backing file into the COW file.
1382 *
1383 * If qemu-img crashes during this step, no harm is done. The content of
1384 * the image is the same as the original one at any time.
1385 */
1386 if (!unsafe) {
1387 uint64_t num_sectors;
1388 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02001389 int n;
TeLeMand6771bf2010-02-08 16:20:00 +08001390 uint8_t * buf_old;
1391 uint8_t * buf_new;
1392
1393 buf_old = qemu_malloc(IO_BUF_SIZE);
1394 buf_new = qemu_malloc(IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001395
1396 bdrv_get_geometry(bs, &num_sectors);
1397
1398 for (sector = 0; sector < num_sectors; sector += n) {
1399
1400 /* How many sectors can we handle with the next read? */
1401 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
1402 n = (IO_BUF_SIZE / 512);
1403 } else {
1404 n = num_sectors - sector;
1405 }
1406
1407 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02001408 ret = bdrv_is_allocated(bs, sector, n, &n);
1409 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001410 continue;
1411 }
1412
1413 /* Read old and new backing file */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001414 ret = bdrv_read(bs_old_backing, sector, buf_old, n);
1415 if (ret < 0) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001416 error("error while reading from old backing file");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001417 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001418 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001419 ret = bdrv_read(bs_new_backing, sector, buf_new, n);
1420 if (ret < 0) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001421 error("error while reading from new backing file");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001422 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001423 }
1424
1425 /* If they differ, we need to write to the COW file */
1426 uint64_t written = 0;
1427
1428 while (written < n) {
1429 int pnum;
1430
1431 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01001432 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001433 {
1434 ret = bdrv_write(bs, sector + written,
1435 buf_old + written * 512, pnum);
1436 if (ret < 0) {
1437 error("Error while writing to COW image: %s",
1438 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001439 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001440 }
1441 }
1442
1443 written += pnum;
1444 }
1445 }
TeLeMand6771bf2010-02-08 16:20:00 +08001446
1447 qemu_free(buf_old);
1448 qemu_free(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001449 }
1450
1451 /*
1452 * Change the backing file. All clusters that are different from the old
1453 * backing file are overwritten in the COW file now, so the visible content
1454 * doesn't change when we switch the backing file.
1455 */
1456 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
1457 if (ret == -ENOSPC) {
1458 error("Could not change the backing file to '%s': No space left in "
1459 "the file header", out_baseimg);
1460 } else if (ret < 0) {
1461 error("Could not change the backing file to '%s': %s",
1462 out_baseimg, strerror(-ret));
1463 }
1464
1465 /*
1466 * TODO At this point it is possible to check if any clusters that are
1467 * allocated in the COW file are the same in the backing file. If so, they
1468 * could be dropped from the COW file. Don't do this before switching the
1469 * backing file, in case of a crash this would lead to corruption.
1470 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001471out:
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001472 /* Cleanup */
1473 if (!unsafe) {
1474 bdrv_delete(bs_old_backing);
1475 bdrv_delete(bs_new_backing);
1476 }
1477
1478 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001479 if (ret) {
1480 return 1;
1481 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001482 return 0;
1483}
1484
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001485static int img_resize(int argc, char **argv)
1486{
1487 int c, ret, relative;
1488 const char *filename, *fmt, *size;
1489 int64_t n, total_size;
Jes Sorensen2a819982010-12-06 17:08:31 +01001490 BlockDriverState *bs = NULL;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001491 QEMUOptionParameter *param;
1492 QEMUOptionParameter resize_options[] = {
1493 {
1494 .name = BLOCK_OPT_SIZE,
1495 .type = OPT_SIZE,
1496 .help = "Virtual disk size"
1497 },
1498 { NULL }
1499 };
1500
1501 fmt = NULL;
1502 for(;;) {
1503 c = getopt(argc, argv, "f:h");
1504 if (c == -1) {
1505 break;
1506 }
1507 switch(c) {
Jes Sorensenef873942010-12-06 15:25:40 +01001508 case '?':
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001509 case 'h':
1510 help();
1511 break;
1512 case 'f':
1513 fmt = optarg;
1514 break;
1515 }
1516 }
1517 if (optind + 1 >= argc) {
1518 help();
1519 }
1520 filename = argv[optind++];
1521 size = argv[optind++];
1522
1523 /* Choose grow, shrink, or absolute resize mode */
1524 switch (size[0]) {
1525 case '+':
1526 relative = 1;
1527 size++;
1528 break;
1529 case '-':
1530 relative = -1;
1531 size++;
1532 break;
1533 default:
1534 relative = 0;
1535 break;
1536 }
1537
1538 /* Parse size */
1539 param = parse_option_parameters("", resize_options, NULL);
1540 if (set_option_parameter(param, BLOCK_OPT_SIZE, size)) {
1541 /* Error message already printed when size parsing fails */
Jes Sorensen2a819982010-12-06 17:08:31 +01001542 ret = -1;
1543 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001544 }
1545 n = get_option_parameter(param, BLOCK_OPT_SIZE)->value.n;
1546 free_option_parameters(param);
1547
1548 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001549 if (!bs) {
Jes Sorensen2a819982010-12-06 17:08:31 +01001550 ret = -1;
1551 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001552 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001553
1554 if (relative) {
1555 total_size = bdrv_getlength(bs) + n * relative;
1556 } else {
1557 total_size = n;
1558 }
1559 if (total_size <= 0) {
1560 error("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001561 ret = -1;
1562 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001563 }
1564
1565 ret = bdrv_truncate(bs, total_size);
1566 switch (ret) {
1567 case 0:
1568 printf("Image resized.\n");
1569 break;
1570 case -ENOTSUP:
1571 error("This image format does not support resize");
1572 break;
1573 case -EACCES:
1574 error("Image is read-only");
1575 break;
1576 default:
1577 error("Error resizing image (%d)", -ret);
1578 break;
1579 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001580out:
Jes Sorensen2a819982010-12-06 17:08:31 +01001581 if (bs) {
1582 bdrv_delete(bs);
1583 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001584 if (ret) {
1585 return 1;
1586 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001587 return 0;
1588}
1589
Anthony Liguoric227f092009-10-01 16:12:16 -05001590static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01001591#define DEF(option, callback, arg_string) \
1592 { option, callback },
1593#include "qemu-img-cmds.h"
1594#undef DEF
1595#undef GEN_DOCS
1596 { NULL, NULL, },
1597};
1598
bellardea2384d2004-08-01 21:59:26 +00001599int main(int argc, char **argv)
1600{
Anthony Liguoric227f092009-10-01 16:12:16 -05001601 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01001602 const char *cmdname;
bellardea2384d2004-08-01 21:59:26 +00001603
1604 bdrv_init();
1605 if (argc < 2)
1606 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001607 cmdname = argv[1];
aurel328f9b1572009-02-09 18:14:31 +00001608 argc--; argv++;
Stuart Brady153859b2009-06-07 00:42:17 +01001609
1610 /* find the command */
1611 for(cmd = img_cmds; cmd->name != NULL; cmd++) {
1612 if (!strcmp(cmdname, cmd->name)) {
1613 return cmd->handler(argc, argv);
1614 }
bellardea2384d2004-08-01 21:59:26 +00001615 }
Stuart Brady153859b2009-06-07 00:42:17 +01001616
1617 /* not found */
1618 help();
bellardea2384d2004-08-01 21:59:26 +00001619 return 0;
1620}