blob: cc77048f045dedf88fcc0dca429021fb45a6480a [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,
Kevin Wolfefa84d42009-05-18 16:42:12 +0200264 int flags, const char *base_filename, const char *base_fmt)
265{
266 if (flags & BLOCK_FLAG_ENCRYPT) {
267 if (set_option_parameter(list, BLOCK_OPT_ENCRYPT, "on")) {
268 error("Encryption not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900269 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200270 }
271 }
272 if (flags & BLOCK_FLAG_COMPAT6) {
273 if (set_option_parameter(list, BLOCK_OPT_COMPAT6, "on")) {
274 error("VMDK version 6 not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900275 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200276 }
277 }
278
279 if (base_filename) {
280 if (set_option_parameter(list, BLOCK_OPT_BACKING_FILE, base_filename)) {
281 error("Backing file not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900282 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200283 }
284 }
285 if (base_fmt) {
286 if (set_option_parameter(list, BLOCK_OPT_BACKING_FMT, base_fmt)) {
287 error("Backing file format not supported for file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900288 return -1;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200289 }
290 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900291 return 0;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200292}
293
bellardea2384d2004-08-01 21:59:26 +0000294static int img_create(int argc, char **argv)
295{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900296 int c, ret = 0, flags;
bellardea2384d2004-08-01 21:59:26 +0000297 const char *fmt = "raw";
aliguori9230eaf2009-03-28 17:55:19 +0000298 const char *base_fmt = NULL;
bellardea2384d2004-08-01 21:59:26 +0000299 const char *filename;
300 const char *base_filename = NULL;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900301 BlockDriver *drv, *proto_drv;
302 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200303 char *options = NULL;
ths3b46e622007-09-17 08:09:54 +0000304
thsec36ba12007-09-16 21:59:02 +0000305 flags = 0;
bellardea2384d2004-08-01 21:59:26 +0000306 for(;;) {
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200307 c = getopt(argc, argv, "F:b:f:he6o:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100308 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000309 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100310 }
bellardea2384d2004-08-01 21:59:26 +0000311 switch(c) {
312 case 'h':
313 help();
314 break;
aliguori9230eaf2009-03-28 17:55:19 +0000315 case 'F':
316 base_fmt = optarg;
317 break;
bellardea2384d2004-08-01 21:59:26 +0000318 case 'b':
319 base_filename = optarg;
320 break;
321 case 'f':
322 fmt = optarg;
323 break;
324 case 'e':
thsec36ba12007-09-16 21:59:02 +0000325 flags |= BLOCK_FLAG_ENCRYPT;
bellardea2384d2004-08-01 21:59:26 +0000326 break;
thsd8871c52007-10-24 16:11:42 +0000327 case '6':
thsec36ba12007-09-16 21:59:02 +0000328 flags |= BLOCK_FLAG_COMPAT6;
thsd8871c52007-10-24 16:11:42 +0000329 break;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200330 case 'o':
331 options = optarg;
332 break;
bellardea2384d2004-08-01 21:59:26 +0000333 }
334 }
aliguori9230eaf2009-03-28 17:55:19 +0000335
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900336 /* Get the filename */
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100337 if (optind >= argc) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900338 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100339 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900340 filename = argv[optind++];
341
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100342 if (options && !strcmp(options, "?")) {
343 ret = print_block_option_help(filename, fmt);
344 goto out;
345 }
346
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200347 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +0000348 drv = bdrv_find_format(fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900349 if (!drv) {
bellardea2384d2004-08-01 21:59:26 +0000350 error("Unknown file format '%s'", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900351 return 1;
352 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200353
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900354 proto_drv = bdrv_find_protocol(filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900355 if (!proto_drv) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900356 error("Unknown protocol '%s'", filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900357 return 1;
358 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900359
360 create_options = append_option_parameters(create_options,
361 drv->create_options);
362 create_options = append_option_parameters(create_options,
363 proto_drv->create_options);
364
Kevin Wolf9f566402009-10-28 11:36:07 +0100365 /* Create parameter list with default values */
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900366 param = parse_option_parameters("", create_options, param);
Kevin Wolf9f566402009-10-28 11:36:07 +0100367 set_option_parameter_int(param, BLOCK_OPT_SIZE, -1);
368
369 /* Parse -o options */
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200370 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900371 param = parse_option_parameters(options, create_options, param);
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200372 if (param == NULL) {
373 error("Invalid options for file format '%s'.", fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900374 ret = -1;
375 goto out;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200376 }
bellard75c23802004-08-27 21:28:58 +0000377 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200378
379 /* Add size to parameters */
380 if (optind < argc) {
381 set_option_parameter(param, BLOCK_OPT_SIZE, argv[optind++]);
382 }
383
384 /* Add old-style options to parameters */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900385 ret = add_old_style_options(fmt, param, flags, base_filename, base_fmt);
386 if (ret < 0) {
387 goto out;
388 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200389
390 // The size for the image must always be specified, with one exception:
391 // If we are using a backing file, we can obtain the size from there
Kevin Wolf9f566402009-10-28 11:36:07 +0100392 if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) {
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200393
394 QEMUOptionParameter *backing_file =
395 get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
396 QEMUOptionParameter *backing_fmt =
397 get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
398
399 if (backing_file && backing_file->value.s) {
400 BlockDriverState *bs;
401 uint64_t size;
402 const char *fmt = NULL;
403 char buf[32];
404
405 if (backing_fmt && backing_fmt->value.s) {
406 if (bdrv_find_format(backing_fmt->value.s)) {
407 fmt = backing_fmt->value.s;
408 } else {
409 error("Unknown backing file format '%s'",
410 backing_fmt->value.s);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900411 ret = -1;
412 goto out;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200413 }
414 }
415
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100416 bs = bdrv_new_open(backing_file->value.s, fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900417 if (!bs) {
418 ret = -1;
419 goto out;
420 }
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200421 bdrv_get_geometry(bs, &size);
422 size *= 512;
423 bdrv_delete(bs);
424
425 snprintf(buf, sizeof(buf), "%" PRId64, size);
426 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
427 } else {
428 error("Image creation needs a size parameter");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900429 ret = -1;
430 goto out;
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200431 }
432 }
433
434 printf("Formatting '%s', fmt=%s ", filename, fmt);
435 print_option_parameters(param);
436 puts("");
437
438 ret = bdrv_create(drv, filename, param);
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900439 free_option_parameters(create_options);
Kevin Wolf9ea2ea72009-05-18 16:42:11 +0200440 free_option_parameters(param);
441
bellardea2384d2004-08-01 21:59:26 +0000442 if (ret < 0) {
443 if (ret == -ENOTSUP) {
bellard3c565212004-09-29 21:29:14 +0000444 error("Formatting or formatting option not supported for file format '%s'", fmt);
aurel326e9ea0c2009-04-15 14:42:46 +0000445 } else if (ret == -EFBIG) {
446 error("The image size is too large for file format '%s'", fmt);
bellardea2384d2004-08-01 21:59:26 +0000447 } else {
Juan Quintela3e7896d2010-03-04 10:00:38 +0100448 error("%s: error while creating %s: %s", filename, fmt, strerror(-ret));
bellardea2384d2004-08-01 21:59:26 +0000449 }
450 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900451out:
452 if (ret) {
453 return 1;
454 }
bellardea2384d2004-08-01 21:59:26 +0000455 return 0;
456}
457
Kevin Wolfe076f332010-06-29 11:43:13 +0200458/*
459 * Checks an image for consistency. Exit codes:
460 *
461 * 0 - Check completed, image is good
462 * 1 - Check not completed because of internal errors
463 * 2 - Check completed, image is corrupted
464 * 3 - Check completed, image has leaked clusters, but is good otherwise
465 */
aliguori15859692009-04-21 23:11:53 +0000466static int img_check(int argc, char **argv)
467{
468 int c, ret;
469 const char *filename, *fmt;
aliguori15859692009-04-21 23:11:53 +0000470 BlockDriverState *bs;
Kevin Wolfe076f332010-06-29 11:43:13 +0200471 BdrvCheckResult result;
aliguori15859692009-04-21 23:11:53 +0000472
473 fmt = NULL;
474 for(;;) {
475 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100476 if (c == -1) {
aliguori15859692009-04-21 23:11:53 +0000477 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100478 }
aliguori15859692009-04-21 23:11:53 +0000479 switch(c) {
480 case 'h':
481 help();
482 break;
483 case 'f':
484 fmt = optarg;
485 break;
486 }
487 }
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100488 if (optind >= argc) {
aliguori15859692009-04-21 23:11:53 +0000489 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100490 }
aliguori15859692009-04-21 23:11:53 +0000491 filename = argv[optind++];
492
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100493 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900494 if (!bs) {
495 return 1;
496 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200497 ret = bdrv_check(bs, &result);
498
499 if (ret == -ENOTSUP) {
aliguori15859692009-04-21 23:11:53 +0000500 error("This image format does not support checks");
Kevin Wolfe076f332010-06-29 11:43:13 +0200501 bdrv_delete(bs);
502 return 1;
503 }
504
505 if (!(result.corruptions || result.leaks || result.check_errors)) {
506 printf("No errors were found on the image.\n");
507 } else {
508 if (result.corruptions) {
509 printf("\n%d errors were found on the image.\n"
510 "Data may be corrupted, or further writes to the image "
511 "may corrupt it.\n",
512 result.corruptions);
aliguori15859692009-04-21 23:11:53 +0000513 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200514
515 if (result.leaks) {
516 printf("\n%d leaked clusters were found on the image.\n"
517 "This means waste of disk space, but no harm to data.\n",
518 result.leaks);
519 }
520
521 if (result.check_errors) {
522 printf("\n%d internal errors have occurred during the check.\n",
523 result.check_errors);
524 }
aliguori15859692009-04-21 23:11:53 +0000525 }
526
527 bdrv_delete(bs);
Kevin Wolfe076f332010-06-29 11:43:13 +0200528
529 if (ret < 0 || result.check_errors) {
530 printf("\nAn error has occurred during the check: %s\n"
531 "The check is not complete and may have missed error.\n",
532 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900533 return 1;
534 }
Kevin Wolfe076f332010-06-29 11:43:13 +0200535
536 if (result.corruptions) {
537 return 2;
538 } else if (result.leaks) {
539 return 3;
540 } else {
541 return 0;
542 }
aliguori15859692009-04-21 23:11:53 +0000543}
544
bellardea2384d2004-08-01 21:59:26 +0000545static int img_commit(int argc, char **argv)
546{
547 int c, ret;
548 const char *filename, *fmt;
bellardea2384d2004-08-01 21:59:26 +0000549 BlockDriverState *bs;
550
551 fmt = NULL;
552 for(;;) {
553 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100554 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000555 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100556 }
bellardea2384d2004-08-01 21:59:26 +0000557 switch(c) {
558 case 'h':
559 help();
560 break;
561 case 'f':
562 fmt = optarg;
563 break;
564 }
565 }
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100566 if (optind >= argc) {
bellardea2384d2004-08-01 21:59:26 +0000567 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100568 }
bellardea2384d2004-08-01 21:59:26 +0000569 filename = argv[optind++];
570
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100571 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900572 if (!bs) {
573 return 1;
574 }
bellardea2384d2004-08-01 21:59:26 +0000575 ret = bdrv_commit(bs);
576 switch(ret) {
577 case 0:
578 printf("Image committed.\n");
579 break;
580 case -ENOENT:
581 error("No disk inserted");
582 break;
583 case -EACCES:
584 error("Image is read-only");
585 break;
586 case -ENOTSUP:
587 error("Image is already committed");
588 break;
589 default:
590 error("Error while committing image");
591 break;
592 }
593
594 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900595 if (ret) {
596 return 1;
597 }
bellardea2384d2004-08-01 21:59:26 +0000598 return 0;
599}
600
601static int is_not_zero(const uint8_t *sector, int len)
602{
603 int i;
604 len >>= 2;
605 for(i = 0;i < len; i++) {
606 if (((uint32_t *)sector)[i] != 0)
607 return 1;
608 }
609 return 0;
610}
611
thsf58c7b32008-06-05 21:53:49 +0000612/*
613 * Returns true iff the first sector pointed to by 'buf' contains at least
614 * a non-NUL byte.
615 *
616 * 'pnum' is set to the number of sectors (including and immediately following
617 * the first one) that are known to be in the same allocated/unallocated state.
618 */
bellardea2384d2004-08-01 21:59:26 +0000619static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
620{
621 int v, i;
622
623 if (n <= 0) {
624 *pnum = 0;
625 return 0;
626 }
627 v = is_not_zero(buf, 512);
628 for(i = 1; i < n; i++) {
629 buf += 512;
630 if (v != is_not_zero(buf, 512))
631 break;
632 }
633 *pnum = i;
634 return v;
635}
636
Kevin Wolf3e85c6f2010-01-12 12:55:18 +0100637/*
638 * Compares two buffers sector by sector. Returns 0 if the first sector of both
639 * buffers matches, non-zero otherwise.
640 *
641 * pnum is set to the number of sectors (including and immediately following
642 * the first one) that are known to have the same comparison result
643 */
644static int compare_sectors(const uint8_t *buf1, const uint8_t *buf2, int n,
645 int *pnum)
646{
647 int res, i;
648
649 if (n <= 0) {
650 *pnum = 0;
651 return 0;
652 }
653
654 res = !!memcmp(buf1, buf2, 512);
655 for(i = 1; i < n; i++) {
656 buf1 += 512;
657 buf2 += 512;
658
659 if (!!memcmp(buf1, buf2, 512) != res) {
660 break;
661 }
662 }
663
664 *pnum = i;
665 return res;
666}
667
Kevin Wolf80ee15a2009-09-15 12:30:43 +0200668#define IO_BUF_SIZE (2 * 1024 * 1024)
bellardea2384d2004-08-01 21:59:26 +0000669
670static int img_convert(int argc, char **argv)
671{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900672 int c, ret = 0, n, n1, bs_n, bs_i, flags, cluster_size, cluster_sectors;
thsf58c7b32008-06-05 21:53:49 +0000673 const char *fmt, *out_fmt, *out_baseimg, *out_filename;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900674 BlockDriver *drv, *proto_drv;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900675 BlockDriverState **bs = NULL, *out_bs = NULL;
ths96b8f132007-12-17 01:35:20 +0000676 int64_t total_sectors, nb_sectors, sector_num, bs_offset;
677 uint64_t bs_sectors;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900678 uint8_t * buf = NULL;
bellardea2384d2004-08-01 21:59:26 +0000679 const uint8_t *buf1;
bellardfaea38e2006-08-05 21:31:00 +0000680 BlockDriverInfo bdi;
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900681 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfa18953f2010-10-14 15:46:04 +0200682 QEMUOptionParameter *out_baseimg_param;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200683 char *options = NULL;
edison51ef6722010-09-21 19:58:41 -0700684 const char *snapshot_name = NULL;
bellardea2384d2004-08-01 21:59:26 +0000685
686 fmt = NULL;
687 out_fmt = "raw";
thsf58c7b32008-06-05 21:53:49 +0000688 out_baseimg = NULL;
thsec36ba12007-09-16 21:59:02 +0000689 flags = 0;
bellardea2384d2004-08-01 21:59:26 +0000690 for(;;) {
edison51ef6722010-09-21 19:58:41 -0700691 c = getopt(argc, argv, "f:O:B:s:hce6o:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100692 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +0000693 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100694 }
bellardea2384d2004-08-01 21:59:26 +0000695 switch(c) {
696 case 'h':
697 help();
698 break;
699 case 'f':
700 fmt = optarg;
701 break;
702 case 'O':
703 out_fmt = optarg;
704 break;
thsf58c7b32008-06-05 21:53:49 +0000705 case 'B':
706 out_baseimg = optarg;
707 break;
bellardea2384d2004-08-01 21:59:26 +0000708 case 'c':
thsec36ba12007-09-16 21:59:02 +0000709 flags |= BLOCK_FLAG_COMPRESS;
bellardea2384d2004-08-01 21:59:26 +0000710 break;
711 case 'e':
thsec36ba12007-09-16 21:59:02 +0000712 flags |= BLOCK_FLAG_ENCRYPT;
713 break;
714 case '6':
715 flags |= BLOCK_FLAG_COMPAT6;
bellardea2384d2004-08-01 21:59:26 +0000716 break;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200717 case 'o':
718 options = optarg;
719 break;
edison51ef6722010-09-21 19:58:41 -0700720 case 's':
721 snapshot_name = optarg;
722 break;
bellardea2384d2004-08-01 21:59:26 +0000723 }
724 }
ths3b46e622007-09-17 08:09:54 +0000725
balrog926c2d22007-10-31 01:11:44 +0000726 bs_n = argc - optind - 1;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100727 if (bs_n < 1) {
728 help();
729 }
balrog926c2d22007-10-31 01:11:44 +0000730
731 out_filename = argv[argc - 1];
thsf58c7b32008-06-05 21:53:49 +0000732
Jes Sorensen4ac8aac2010-12-06 15:25:38 +0100733 if (options && !strcmp(options, "?")) {
734 ret = print_block_option_help(out_filename, out_fmt);
735 goto out;
736 }
737
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900738 if (bs_n > 1 && out_baseimg) {
thsf58c7b32008-06-05 21:53:49 +0000739 error("-B makes no sense when concatenating multiple input images");
Jes Sorensen31ca34b2010-12-06 15:25:36 +0100740 ret = -1;
741 goto out;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900742 }
balrog926c2d22007-10-31 01:11:44 +0000743
Jes Sorensen5bdf61f2010-12-06 15:25:35 +0100744 bs = qemu_mallocz(bs_n * sizeof(BlockDriverState *));
balrog926c2d22007-10-31 01:11:44 +0000745
746 total_sectors = 0;
747 for (bs_i = 0; bs_i < bs_n; bs_i++) {
Stefan Hajnocziadfe0782010-04-13 10:29:35 +0100748 bs[bs_i] = bdrv_new_open(argv[optind + bs_i], fmt, BDRV_O_FLAGS);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900749 if (!bs[bs_i]) {
balrog926c2d22007-10-31 01:11:44 +0000750 error("Could not open '%s'", argv[optind + bs_i]);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900751 ret = -1;
752 goto out;
753 }
balrog926c2d22007-10-31 01:11:44 +0000754 bdrv_get_geometry(bs[bs_i], &bs_sectors);
755 total_sectors += bs_sectors;
756 }
bellardea2384d2004-08-01 21:59:26 +0000757
edison51ef6722010-09-21 19:58:41 -0700758 if (snapshot_name != NULL) {
759 if (bs_n > 1) {
760 error("No support for concatenating multiple snapshot\n");
761 ret = -1;
762 goto out;
763 }
764 if (bdrv_snapshot_load_tmp(bs[0], snapshot_name) < 0) {
765 error("Failed to load snapshot\n");
766 ret = -1;
767 goto out;
768 }
769 }
770
Kevin Wolfefa84d42009-05-18 16:42:12 +0200771 /* Find driver and parse its options */
bellardea2384d2004-08-01 21:59:26 +0000772 drv = bdrv_find_format(out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900773 if (!drv) {
thsd34dda52007-02-10 22:59:40 +0000774 error("Unknown file format '%s'", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900775 ret = -1;
776 goto out;
777 }
balrog926c2d22007-10-31 01:11:44 +0000778
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900779 proto_drv = bdrv_find_protocol(out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900780 if (!proto_drv) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900781 error("Unknown protocol '%s'", out_filename);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900782 ret = -1;
783 goto out;
784 }
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900785
786 create_options = append_option_parameters(create_options,
787 drv->create_options);
788 create_options = append_option_parameters(create_options,
789 proto_drv->create_options);
Kevin Wolfdb08adf2009-06-04 15:39:38 +0200790
Kevin Wolfefa84d42009-05-18 16:42:12 +0200791 if (options) {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900792 param = parse_option_parameters(options, create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +0200793 if (param == NULL) {
794 error("Invalid options for file format '%s'.", out_fmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900795 ret = -1;
796 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200797 }
798 } else {
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900799 param = parse_option_parameters("", create_options, param);
Kevin Wolfefa84d42009-05-18 16:42:12 +0200800 }
801
802 set_option_parameter_int(param, BLOCK_OPT_SIZE, total_sectors * 512);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900803 ret = add_old_style_options(out_fmt, param, flags, out_baseimg, NULL);
804 if (ret < 0) {
805 goto out;
806 }
Kevin Wolfefa84d42009-05-18 16:42:12 +0200807
Kevin Wolfa18953f2010-10-14 15:46:04 +0200808 /* Get backing file name if -o backing_file was used */
809 out_baseimg_param = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
810 if (out_baseimg_param) {
811 out_baseimg = out_baseimg_param->value.s;
812 }
813
Kevin Wolfefa84d42009-05-18 16:42:12 +0200814 /* Check if compression is supported */
815 if (flags & BLOCK_FLAG_COMPRESS) {
816 QEMUOptionParameter *encryption =
817 get_option_parameter(param, BLOCK_OPT_ENCRYPT);
818
819 if (!drv->bdrv_write_compressed) {
820 error("Compression not supported for this file format");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900821 ret = -1;
822 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200823 }
824
825 if (encryption && encryption->value.n) {
826 error("Compression and encryption not supported at the same time");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900827 ret = -1;
828 goto out;
Kevin Wolfefa84d42009-05-18 16:42:12 +0200829 }
830 }
831
832 /* Create the new image */
833 ret = bdrv_create(drv, out_filename, param);
bellardea2384d2004-08-01 21:59:26 +0000834 if (ret < 0) {
835 if (ret == -ENOTSUP) {
aliguori93c65b42009-04-05 17:40:43 +0000836 error("Formatting not supported for file format '%s'", out_fmt);
aurel326e9ea0c2009-04-15 14:42:46 +0000837 } else if (ret == -EFBIG) {
838 error("The image size is too large for file format '%s'", out_fmt);
bellardea2384d2004-08-01 21:59:26 +0000839 } else {
Juan Quintela3e7896d2010-03-04 10:00:38 +0100840 error("%s: error while converting %s: %s", out_filename, out_fmt, strerror(-ret));
bellardea2384d2004-08-01 21:59:26 +0000841 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900842 goto out;
bellardea2384d2004-08-01 21:59:26 +0000843 }
ths3b46e622007-09-17 08:09:54 +0000844
Kevin Wolf1bd8e172010-08-31 13:44:25 +0200845 out_bs = bdrv_new_open(out_filename, out_fmt,
846 BDRV_O_FLAGS | BDRV_O_RDWR | BDRV_O_NO_FLUSH);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900847 if (!out_bs) {
848 ret = -1;
849 goto out;
850 }
bellardea2384d2004-08-01 21:59:26 +0000851
balrog926c2d22007-10-31 01:11:44 +0000852 bs_i = 0;
853 bs_offset = 0;
854 bdrv_get_geometry(bs[0], &bs_sectors);
TeLeMand6771bf2010-02-08 16:20:00 +0800855 buf = qemu_malloc(IO_BUF_SIZE);
balrog926c2d22007-10-31 01:11:44 +0000856
857 if (flags & BLOCK_FLAG_COMPRESS) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900858 ret = bdrv_get_info(out_bs, &bdi);
859 if (ret < 0) {
bellardfaea38e2006-08-05 21:31:00 +0000860 error("could not get block driver info");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900861 goto out;
862 }
bellardfaea38e2006-08-05 21:31:00 +0000863 cluster_size = bdi.cluster_size;
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900864 if (cluster_size <= 0 || cluster_size > IO_BUF_SIZE) {
bellardea2384d2004-08-01 21:59:26 +0000865 error("invalid cluster size");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900866 ret = -1;
867 goto out;
868 }
bellardea2384d2004-08-01 21:59:26 +0000869 cluster_sectors = cluster_size >> 9;
870 sector_num = 0;
871 for(;;) {
balrog926c2d22007-10-31 01:11:44 +0000872 int64_t bs_num;
873 int remainder;
874 uint8_t *buf2;
875
bellardea2384d2004-08-01 21:59:26 +0000876 nb_sectors = total_sectors - sector_num;
877 if (nb_sectors <= 0)
878 break;
879 if (nb_sectors >= cluster_sectors)
880 n = cluster_sectors;
881 else
882 n = nb_sectors;
balrog926c2d22007-10-31 01:11:44 +0000883
884 bs_num = sector_num - bs_offset;
885 assert (bs_num >= 0);
886 remainder = n;
887 buf2 = buf;
888 while (remainder > 0) {
889 int nlow;
890 while (bs_num == bs_sectors) {
891 bs_i++;
892 assert (bs_i < bs_n);
893 bs_offset += bs_sectors;
894 bdrv_get_geometry(bs[bs_i], &bs_sectors);
895 bs_num = 0;
Blue Swirl0bfcd592010-05-22 08:02:12 +0000896 /* printf("changing part: sector_num=%" PRId64 ", "
897 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
898 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
balrog926c2d22007-10-31 01:11:44 +0000899 }
900 assert (bs_num < bs_sectors);
901
902 nlow = (remainder > bs_sectors - bs_num) ? bs_sectors - bs_num : remainder;
903
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900904 ret = bdrv_read(bs[bs_i], bs_num, buf2, nlow);
905 if (ret < 0) {
balrog926c2d22007-10-31 01:11:44 +0000906 error("error while reading");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900907 goto out;
908 }
balrog926c2d22007-10-31 01:11:44 +0000909
910 buf2 += nlow * 512;
911 bs_num += nlow;
912
913 remainder -= nlow;
914 }
915 assert (remainder == 0);
916
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100917 if (n < cluster_sectors) {
bellardea2384d2004-08-01 21:59:26 +0000918 memset(buf + n * 512, 0, cluster_size - n * 512);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100919 }
bellardea2384d2004-08-01 21:59:26 +0000920 if (is_not_zero(buf, cluster_size)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900921 ret = bdrv_write_compressed(out_bs, sector_num, buf,
922 cluster_sectors);
923 if (ret != 0) {
bellardec3757d2006-06-14 15:50:07 +0000924 error("error while compressing sector %" PRId64,
925 sector_num);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900926 goto out;
927 }
bellardea2384d2004-08-01 21:59:26 +0000928 }
929 sector_num += n;
930 }
bellardfaea38e2006-08-05 21:31:00 +0000931 /* signal EOF to align */
932 bdrv_write_compressed(out_bs, 0, NULL, 0);
bellardea2384d2004-08-01 21:59:26 +0000933 } else {
Kevin Wolff2feebb2010-04-14 17:30:35 +0200934 int has_zero_init = bdrv_has_zero_init(out_bs);
935
thsf58c7b32008-06-05 21:53:49 +0000936 sector_num = 0; // total number of sectors converted so far
bellardea2384d2004-08-01 21:59:26 +0000937 for(;;) {
938 nb_sectors = total_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100939 if (nb_sectors <= 0) {
bellardea2384d2004-08-01 21:59:26 +0000940 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100941 }
942 if (nb_sectors >= (IO_BUF_SIZE / 512)) {
bellardea2384d2004-08-01 21:59:26 +0000943 n = (IO_BUF_SIZE / 512);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100944 } else {
bellardea2384d2004-08-01 21:59:26 +0000945 n = nb_sectors;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100946 }
balrog926c2d22007-10-31 01:11:44 +0000947
948 while (sector_num - bs_offset >= bs_sectors) {
949 bs_i ++;
950 assert (bs_i < bs_n);
951 bs_offset += bs_sectors;
952 bdrv_get_geometry(bs[bs_i], &bs_sectors);
Blue Swirl0bfcd592010-05-22 08:02:12 +0000953 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
954 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
balrog926c2d22007-10-31 01:11:44 +0000955 sector_num, bs_i, bs_offset, bs_sectors); */
956 }
957
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100958 if (n > bs_offset + bs_sectors - sector_num) {
balrog926c2d22007-10-31 01:11:44 +0000959 n = bs_offset + bs_sectors - sector_num;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +0100960 }
balrog926c2d22007-10-31 01:11:44 +0000961
Kevin Wolff2feebb2010-04-14 17:30:35 +0200962 if (has_zero_init) {
Akkarit Sangpetchd0320442009-07-17 10:02:15 +0200963 /* If the output image is being created as a copy on write image,
964 assume that sectors which are unallocated in the input image
965 are present in both the output's and input's base images (no
966 need to copy them). */
967 if (out_baseimg) {
968 if (!bdrv_is_allocated(bs[bs_i], sector_num - bs_offset,
969 n, &n1)) {
970 sector_num += n1;
971 continue;
972 }
973 /* The next 'n1' sectors are allocated in the input image. Copy
974 only those as they may be followed by unallocated sectors. */
975 n = n1;
aliguori93c65b42009-04-05 17:40:43 +0000976 }
aliguori93c65b42009-04-05 17:40:43 +0000977 } else {
978 n1 = n;
thsf58c7b32008-06-05 21:53:49 +0000979 }
980
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900981 ret = bdrv_read(bs[bs_i], sector_num - bs_offset, buf, n);
982 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000983 error("error while reading");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +0900984 goto out;
985 }
bellardea2384d2004-08-01 21:59:26 +0000986 /* NOTE: at the same time we convert, we do not write zero
987 sectors to have a chance to compress the image. Ideally, we
988 should add a specific call to have the info to go faster */
989 buf1 = buf;
990 while (n > 0) {
thsf58c7b32008-06-05 21:53:49 +0000991 /* If the output image is being created as a copy on write image,
992 copy all sectors even the ones containing only NUL bytes,
aliguori93c65b42009-04-05 17:40:43 +0000993 because they may differ from the sectors in the base image.
994
995 If the output is to a host device, we also write out
996 sectors that are entirely 0, since whatever data was
997 already there is garbage, not 0s. */
Kevin Wolff2feebb2010-04-14 17:30:35 +0200998 if (!has_zero_init || out_baseimg ||
aliguori93c65b42009-04-05 17:40:43 +0000999 is_allocated_sectors(buf1, n, &n1)) {
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001000 ret = bdrv_write(out_bs, sector_num, buf1, n1);
1001 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +00001002 error("error while writing");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001003 goto out;
1004 }
bellardea2384d2004-08-01 21:59:26 +00001005 }
1006 sector_num += n1;
1007 n -= n1;
1008 buf1 += n1 * 512;
1009 }
1010 }
1011 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001012out:
1013 free_option_parameters(create_options);
1014 free_option_parameters(param);
TeLeMand6771bf2010-02-08 16:20:00 +08001015 qemu_free(buf);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001016 if (out_bs) {
1017 bdrv_delete(out_bs);
1018 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001019 if (bs) {
1020 for (bs_i = 0; bs_i < bs_n; bs_i++) {
1021 if (bs[bs_i]) {
1022 bdrv_delete(bs[bs_i]);
1023 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001024 }
Jes Sorensen31ca34b2010-12-06 15:25:36 +01001025 qemu_free(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001026 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001027 if (ret) {
1028 return 1;
1029 }
bellardea2384d2004-08-01 21:59:26 +00001030 return 0;
1031}
1032
bellard57d1a2b2004-08-03 21:15:11 +00001033#ifdef _WIN32
1034static int64_t get_allocated_file_size(const char *filename)
1035{
bellarde8445332006-06-14 15:32:10 +00001036 typedef DWORD (WINAPI * get_compressed_t)(const char *filename, DWORD *high);
1037 get_compressed_t get_compressed;
bellard57d1a2b2004-08-03 21:15:11 +00001038 struct _stati64 st;
bellarde8445332006-06-14 15:32:10 +00001039
1040 /* WinNT support GetCompressedFileSize to determine allocate size */
1041 get_compressed = (get_compressed_t) GetProcAddress(GetModuleHandle("kernel32"), "GetCompressedFileSizeA");
1042 if (get_compressed) {
1043 DWORD high, low;
1044 low = get_compressed(filename, &high);
1045 if (low != 0xFFFFFFFFlu || GetLastError() == NO_ERROR)
1046 return (((int64_t) high) << 32) + low;
1047 }
1048
ths5fafdf22007-09-16 21:08:06 +00001049 if (_stati64(filename, &st) < 0)
bellard57d1a2b2004-08-03 21:15:11 +00001050 return -1;
1051 return st.st_size;
1052}
1053#else
1054static int64_t get_allocated_file_size(const char *filename)
1055{
1056 struct stat st;
ths5fafdf22007-09-16 21:08:06 +00001057 if (stat(filename, &st) < 0)
bellard57d1a2b2004-08-03 21:15:11 +00001058 return -1;
1059 return (int64_t)st.st_blocks * 512;
1060}
1061#endif
1062
bellardfaea38e2006-08-05 21:31:00 +00001063static void dump_snapshots(BlockDriverState *bs)
1064{
1065 QEMUSnapshotInfo *sn_tab, *sn;
1066 int nb_sns, i;
1067 char buf[256];
1068
1069 nb_sns = bdrv_snapshot_list(bs, &sn_tab);
1070 if (nb_sns <= 0)
1071 return;
1072 printf("Snapshot list:\n");
1073 printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), NULL));
1074 for(i = 0; i < nb_sns; i++) {
1075 sn = &sn_tab[i];
1076 printf("%s\n", bdrv_snapshot_dump(buf, sizeof(buf), sn));
1077 }
1078 qemu_free(sn_tab);
1079}
1080
bellardea2384d2004-08-01 21:59:26 +00001081static int img_info(int argc, char **argv)
1082{
1083 int c;
1084 const char *filename, *fmt;
bellardea2384d2004-08-01 21:59:26 +00001085 BlockDriverState *bs;
1086 char fmt_name[128], size_buf[128], dsize_buf[128];
ths96b8f132007-12-17 01:35:20 +00001087 uint64_t total_sectors;
1088 int64_t allocated_size;
bellard93b6b2a2006-08-01 15:51:11 +00001089 char backing_filename[1024];
1090 char backing_filename2[1024];
bellardfaea38e2006-08-05 21:31:00 +00001091 BlockDriverInfo bdi;
bellardea2384d2004-08-01 21:59:26 +00001092
1093 fmt = NULL;
1094 for(;;) {
1095 c = getopt(argc, argv, "f:h");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001096 if (c == -1) {
bellardea2384d2004-08-01 21:59:26 +00001097 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001098 }
bellardea2384d2004-08-01 21:59:26 +00001099 switch(c) {
1100 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) {
1177 case 'h':
1178 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001179 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001180 case 'l':
1181 if (action) {
1182 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001183 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001184 }
1185 action = SNAPSHOT_LIST;
Naphtali Spreif5edb012010-01-17 16:48:13 +02001186 bdrv_oflags &= ~BDRV_O_RDWR; /* no need for RW */
aliguorif7b4a942009-01-07 17:40:15 +00001187 break;
1188 case 'a':
1189 if (action) {
1190 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001191 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001192 }
1193 action = SNAPSHOT_APPLY;
1194 snapshot_name = optarg;
1195 break;
1196 case 'c':
1197 if (action) {
1198 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001199 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001200 }
1201 action = SNAPSHOT_CREATE;
1202 snapshot_name = optarg;
1203 break;
1204 case 'd':
1205 if (action) {
1206 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001207 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001208 }
1209 action = SNAPSHOT_DELETE;
1210 snapshot_name = optarg;
1211 break;
1212 }
1213 }
1214
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001215 if (optind >= argc) {
aliguorif7b4a942009-01-07 17:40:15 +00001216 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001217 }
aliguorif7b4a942009-01-07 17:40:15 +00001218 filename = argv[optind++];
1219
1220 /* Open the image */
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001221 bs = bdrv_new_open(filename, NULL, bdrv_oflags);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001222 if (!bs) {
1223 return 1;
1224 }
aliguorif7b4a942009-01-07 17:40:15 +00001225
1226 /* Perform the requested action */
1227 switch(action) {
1228 case SNAPSHOT_LIST:
1229 dump_snapshots(bs);
1230 break;
1231
1232 case SNAPSHOT_CREATE:
1233 memset(&sn, 0, sizeof(sn));
1234 pstrcpy(sn.name, sizeof(sn.name), snapshot_name);
1235
1236 qemu_gettimeofday(&tv);
1237 sn.date_sec = tv.tv_sec;
1238 sn.date_nsec = tv.tv_usec * 1000;
1239
1240 ret = bdrv_snapshot_create(bs, &sn);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001241 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001242 error("Could not create snapshot '%s': %d (%s)",
1243 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001244 }
aliguorif7b4a942009-01-07 17:40:15 +00001245 break;
1246
1247 case SNAPSHOT_APPLY:
1248 ret = bdrv_snapshot_goto(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001249 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001250 error("Could not apply snapshot '%s': %d (%s)",
1251 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001252 }
aliguorif7b4a942009-01-07 17:40:15 +00001253 break;
1254
1255 case SNAPSHOT_DELETE:
1256 ret = bdrv_snapshot_delete(bs, snapshot_name);
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001257 if (ret) {
aliguorif7b4a942009-01-07 17:40:15 +00001258 error("Could not delete snapshot '%s': %d (%s)",
1259 snapshot_name, ret, strerror(-ret));
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001260 }
aliguorif7b4a942009-01-07 17:40:15 +00001261 break;
1262 }
1263
1264 /* Cleanup */
1265 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001266 if (ret) {
1267 return 1;
1268 }
Stuart Brady153859b2009-06-07 00:42:17 +01001269 return 0;
aliguorif7b4a942009-01-07 17:40:15 +00001270}
1271
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001272static int img_rebase(int argc, char **argv)
1273{
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001274 BlockDriverState *bs, *bs_old_backing = NULL, *bs_new_backing = NULL;
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001275 BlockDriver *old_backing_drv, *new_backing_drv;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001276 char *filename;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001277 const char *fmt, *out_basefmt, *out_baseimg;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001278 int c, flags, ret;
1279 int unsafe = 0;
1280
1281 /* Parse commandline parameters */
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001282 fmt = NULL;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001283 out_baseimg = NULL;
1284 out_basefmt = NULL;
1285
1286 for(;;) {
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001287 c = getopt(argc, argv, "uhf:F:b:");
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001288 if (c == -1) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001289 break;
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001290 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001291 switch(c) {
1292 case 'h':
1293 help();
1294 return 0;
Kevin Wolfe53dbee2010-03-02 12:14:31 +01001295 case 'f':
1296 fmt = optarg;
1297 break;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001298 case 'F':
1299 out_basefmt = optarg;
1300 break;
1301 case 'b':
1302 out_baseimg = optarg;
1303 break;
1304 case 'u':
1305 unsafe = 1;
1306 break;
1307 }
1308 }
1309
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001310 if ((optind >= argc) || !out_baseimg) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001311 help();
Jes Sorensenb8fb60d2010-12-06 15:25:39 +01001312 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001313 filename = argv[optind++];
1314
1315 /*
1316 * Open the images.
1317 *
1318 * Ignore the old backing file for unsafe rebase in case we want to correct
1319 * the reference to a renamed or moved backing file.
1320 */
Stefan Hajnocziadfe0782010-04-13 10:29:35 +01001321 flags = BDRV_O_FLAGS | BDRV_O_RDWR | (unsafe ? BDRV_O_NO_BACKING : 0);
Stefan Hajnoczif163d072010-04-13 10:29:34 +01001322 bs = bdrv_new_open(filename, fmt, flags);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001323 if (!bs) {
1324 return 1;
1325 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001326
1327 /* Find the right drivers for the backing files */
1328 old_backing_drv = NULL;
1329 new_backing_drv = NULL;
1330
1331 if (!unsafe && bs->backing_format[0] != '\0') {
1332 old_backing_drv = bdrv_find_format(bs->backing_format);
1333 if (old_backing_drv == NULL) {
1334 error("Invalid format name: '%s'", bs->backing_format);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001335 ret = -1;
1336 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001337 }
1338 }
1339
1340 if (out_basefmt != NULL) {
1341 new_backing_drv = bdrv_find_format(out_basefmt);
1342 if (new_backing_drv == NULL) {
1343 error("Invalid format name: '%s'", out_basefmt);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001344 ret = -1;
1345 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001346 }
1347 }
1348
1349 /* For safe rebasing we need to compare old and new backing file */
1350 if (unsafe) {
1351 /* Make the compiler happy */
1352 bs_old_backing = NULL;
1353 bs_new_backing = NULL;
1354 } else {
1355 char backing_name[1024];
1356
1357 bs_old_backing = bdrv_new("old_backing");
1358 bdrv_get_backing_filename(bs, backing_name, sizeof(backing_name));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001359 ret = bdrv_open(bs_old_backing, backing_name, BDRV_O_FLAGS,
1360 old_backing_drv);
1361 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001362 error("Could not open old backing file '%s'", backing_name);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001363 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001364 }
1365
1366 bs_new_backing = bdrv_new("new_backing");
Kevin Wolfcdbae852010-08-17 18:58:55 +02001367 ret = bdrv_open(bs_new_backing, out_baseimg, BDRV_O_FLAGS,
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001368 new_backing_drv);
1369 if (ret) {
Kevin Wolf584771e2010-02-17 12:33:17 +01001370 error("Could not open new backing file '%s'", out_baseimg);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001371 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001372 }
1373 }
1374
1375 /*
1376 * Check each unallocated cluster in the COW file. If it is unallocated,
1377 * accesses go to the backing file. We must therefore compare this cluster
1378 * in the old and new backing file, and if they differ we need to copy it
1379 * from the old backing file into the COW file.
1380 *
1381 * If qemu-img crashes during this step, no harm is done. The content of
1382 * the image is the same as the original one at any time.
1383 */
1384 if (!unsafe) {
1385 uint64_t num_sectors;
1386 uint64_t sector;
Kevin Wolfcc60e322010-04-29 14:47:48 +02001387 int n;
TeLeMand6771bf2010-02-08 16:20:00 +08001388 uint8_t * buf_old;
1389 uint8_t * buf_new;
1390
1391 buf_old = qemu_malloc(IO_BUF_SIZE);
1392 buf_new = qemu_malloc(IO_BUF_SIZE);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001393
1394 bdrv_get_geometry(bs, &num_sectors);
1395
1396 for (sector = 0; sector < num_sectors; sector += n) {
1397
1398 /* How many sectors can we handle with the next read? */
1399 if (sector + (IO_BUF_SIZE / 512) <= num_sectors) {
1400 n = (IO_BUF_SIZE / 512);
1401 } else {
1402 n = num_sectors - sector;
1403 }
1404
1405 /* If the cluster is allocated, we don't need to take action */
Kevin Wolfcc60e322010-04-29 14:47:48 +02001406 ret = bdrv_is_allocated(bs, sector, n, &n);
1407 if (ret) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001408 continue;
1409 }
1410
1411 /* Read old and new backing file */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001412 ret = bdrv_read(bs_old_backing, sector, buf_old, n);
1413 if (ret < 0) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001414 error("error while reading from old backing file");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001415 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001416 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001417 ret = bdrv_read(bs_new_backing, sector, buf_new, n);
1418 if (ret < 0) {
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001419 error("error while reading from new backing file");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001420 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001421 }
1422
1423 /* If they differ, we need to write to the COW file */
1424 uint64_t written = 0;
1425
1426 while (written < n) {
1427 int pnum;
1428
1429 if (compare_sectors(buf_old + written * 512,
Kevin Wolf60b1bd42010-02-17 12:32:59 +01001430 buf_new + written * 512, n - written, &pnum))
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001431 {
1432 ret = bdrv_write(bs, sector + written,
1433 buf_old + written * 512, pnum);
1434 if (ret < 0) {
1435 error("Error while writing to COW image: %s",
1436 strerror(-ret));
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001437 goto out;
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001438 }
1439 }
1440
1441 written += pnum;
1442 }
1443 }
TeLeMand6771bf2010-02-08 16:20:00 +08001444
1445 qemu_free(buf_old);
1446 qemu_free(buf_new);
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001447 }
1448
1449 /*
1450 * Change the backing file. All clusters that are different from the old
1451 * backing file are overwritten in the COW file now, so the visible content
1452 * doesn't change when we switch the backing file.
1453 */
1454 ret = bdrv_change_backing_file(bs, out_baseimg, out_basefmt);
1455 if (ret == -ENOSPC) {
1456 error("Could not change the backing file to '%s': No space left in "
1457 "the file header", out_baseimg);
1458 } else if (ret < 0) {
1459 error("Could not change the backing file to '%s': %s",
1460 out_baseimg, strerror(-ret));
1461 }
1462
1463 /*
1464 * TODO At this point it is possible to check if any clusters that are
1465 * allocated in the COW file are the same in the backing file. If so, they
1466 * could be dropped from the COW file. Don't do this before switching the
1467 * backing file, in case of a crash this would lead to corruption.
1468 */
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001469out:
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001470 /* Cleanup */
1471 if (!unsafe) {
1472 bdrv_delete(bs_old_backing);
1473 bdrv_delete(bs_new_backing);
1474 }
1475
1476 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001477 if (ret) {
1478 return 1;
1479 }
Kevin Wolf3e85c6f2010-01-12 12:55:18 +01001480 return 0;
1481}
1482
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001483static int img_resize(int argc, char **argv)
1484{
1485 int c, ret, relative;
1486 const char *filename, *fmt, *size;
1487 int64_t n, total_size;
1488 BlockDriverState *bs;
1489 QEMUOptionParameter *param;
1490 QEMUOptionParameter resize_options[] = {
1491 {
1492 .name = BLOCK_OPT_SIZE,
1493 .type = OPT_SIZE,
1494 .help = "Virtual disk size"
1495 },
1496 { NULL }
1497 };
1498
1499 fmt = NULL;
1500 for(;;) {
1501 c = getopt(argc, argv, "f:h");
1502 if (c == -1) {
1503 break;
1504 }
1505 switch(c) {
1506 case 'h':
1507 help();
1508 break;
1509 case 'f':
1510 fmt = optarg;
1511 break;
1512 }
1513 }
1514 if (optind + 1 >= argc) {
1515 help();
1516 }
1517 filename = argv[optind++];
1518 size = argv[optind++];
1519
1520 /* Choose grow, shrink, or absolute resize mode */
1521 switch (size[0]) {
1522 case '+':
1523 relative = 1;
1524 size++;
1525 break;
1526 case '-':
1527 relative = -1;
1528 size++;
1529 break;
1530 default:
1531 relative = 0;
1532 break;
1533 }
1534
1535 /* Parse size */
1536 param = parse_option_parameters("", resize_options, NULL);
1537 if (set_option_parameter(param, BLOCK_OPT_SIZE, size)) {
1538 /* Error message already printed when size parsing fails */
1539 exit(1);
1540 }
1541 n = get_option_parameter(param, BLOCK_OPT_SIZE)->value.n;
1542 free_option_parameters(param);
1543
1544 bs = bdrv_new_open(filename, fmt, BDRV_O_FLAGS | BDRV_O_RDWR);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001545 if (!bs) {
1546 return 1;
1547 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001548
1549 if (relative) {
1550 total_size = bdrv_getlength(bs) + n * relative;
1551 } else {
1552 total_size = n;
1553 }
1554 if (total_size <= 0) {
1555 error("New image size must be positive");
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001556 ret = -1;
1557 goto out;
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001558 }
1559
1560 ret = bdrv_truncate(bs, total_size);
1561 switch (ret) {
1562 case 0:
1563 printf("Image resized.\n");
1564 break;
1565 case -ENOTSUP:
1566 error("This image format does not support resize");
1567 break;
1568 case -EACCES:
1569 error("Image is read-only");
1570 break;
1571 default:
1572 error("Error resizing image (%d)", -ret);
1573 break;
1574 }
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001575out:
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001576 bdrv_delete(bs);
MORITA Kazutakac2abcce2010-06-21 04:26:35 +09001577 if (ret) {
1578 return 1;
1579 }
Stefan Hajnocziae6b0ed2010-04-24 09:12:12 +01001580 return 0;
1581}
1582
Anthony Liguoric227f092009-10-01 16:12:16 -05001583static const img_cmd_t img_cmds[] = {
Stuart Brady153859b2009-06-07 00:42:17 +01001584#define DEF(option, callback, arg_string) \
1585 { option, callback },
1586#include "qemu-img-cmds.h"
1587#undef DEF
1588#undef GEN_DOCS
1589 { NULL, NULL, },
1590};
1591
bellardea2384d2004-08-01 21:59:26 +00001592int main(int argc, char **argv)
1593{
Anthony Liguoric227f092009-10-01 16:12:16 -05001594 const img_cmd_t *cmd;
Stuart Brady153859b2009-06-07 00:42:17 +01001595 const char *cmdname;
bellardea2384d2004-08-01 21:59:26 +00001596
1597 bdrv_init();
1598 if (argc < 2)
1599 help();
Stuart Brady153859b2009-06-07 00:42:17 +01001600 cmdname = argv[1];
aurel328f9b1572009-02-09 18:14:31 +00001601 argc--; argv++;
Stuart Brady153859b2009-06-07 00:42:17 +01001602
1603 /* find the command */
1604 for(cmd = img_cmds; cmd->name != NULL; cmd++) {
1605 if (!strcmp(cmdname, cmd->name)) {
1606 return cmd->handler(argc, argv);
1607 }
bellardea2384d2004-08-01 21:59:26 +00001608 }
Stuart Brady153859b2009-06-07 00:42:17 +01001609
1610 /* not found */
1611 help();
bellardea2384d2004-08-01 21:59:26 +00001612 return 0;
1613}