2 * QEMU disk image utility
4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 #include "qemu-common.h"
25 #include "qemu-option.h"
26 #include "qemu-error.h"
29 #include "block_int.h"
36 typedef struct img_cmd_t
{
38 int (*handler
)(int argc
, char **argv
);
41 /* Default to cache=writeback as data integrity is not important for qemu-tcg. */
42 #define BDRV_O_FLAGS BDRV_O_CACHE_WB
44 static void GCC_FMT_ATTR(1, 2) error(const char *fmt
, ...)
48 fprintf(stderr
, "qemu-img: ");
49 vfprintf(stderr
, fmt
, ap
);
50 fprintf(stderr
, "\n");
54 static void format_print(void *opaque
, const char *name
)
59 /* Please keep in synch with qemu-img.texi */
60 static void help(void)
62 const char *help_msg
=
63 "qemu-img version " QEMU_VERSION
", Copyright (c) 2004-2008 Fabrice Bellard\n"
64 "usage: qemu-img command [command options]\n"
65 "QEMU disk image utility\n"
68 #define DEF(option, callback, arg_string) \
70 #include "qemu-img-cmds.h"
74 "Command parameters:\n"
75 " 'filename' is a disk image filename\n"
76 " 'fmt' is the disk image format. It is guessed automatically in most cases\n"
77 " 'size' is the disk image size in bytes. Optional suffixes\n"
78 " 'k' or 'K' (kilobyte, 1024), 'M' (megabyte, 1024k), 'G' (gigabyte, 1024M)\n"
79 " and T (terabyte, 1024G) are supported. 'b' is ignored.\n"
80 " 'output_filename' is the destination disk image filename\n"
81 " 'output_fmt' is the destination format\n"
82 " 'options' is a comma separated list of format specific options in a\n"
83 " name=value format. Use -o ? for an overview of the options supported by the\n"
85 " '-c' indicates that target image must be compressed (qcow format only)\n"
86 " '-u' enables unsafe rebasing. It is assumed that old and new backing file\n"
87 " match exactly. The image doesn't need a working backing file before\n"
88 " rebasing in this case (useful for renaming the backing file)\n"
89 " '-h' with or without a command shows this help and lists the supported formats\n"
91 "Parameters to snapshot subcommand:\n"
92 " 'snapshot' is the name of the snapshot to create, apply or delete\n"
93 " '-a' applies a snapshot (revert disk to saved state)\n"
94 " '-c' creates a snapshot\n"
95 " '-d' deletes a snapshot\n"
96 " '-l' lists all snapshots in the given image\n";
98 printf("%s\nSupported formats:", help_msg
);
99 bdrv_iterate_format(format_print
, NULL
);
105 /* XXX: put correct support for win32 */
106 static int read_password(char *buf
, int buf_size
)
109 printf("Password: ");
116 if (i
< (buf_size
- 1))
127 static struct termios oldtty
;
129 static void term_exit(void)
131 tcsetattr (0, TCSANOW
, &oldtty
);
134 static void term_init(void)
141 tty
.c_iflag
&= ~(IGNBRK
|BRKINT
|PARMRK
|ISTRIP
142 |INLCR
|IGNCR
|ICRNL
|IXON
);
143 tty
.c_oflag
|= OPOST
;
144 tty
.c_lflag
&= ~(ECHO
|ECHONL
|ICANON
|IEXTEN
);
145 tty
.c_cflag
&= ~(CSIZE
|PARENB
);
150 tcsetattr (0, TCSANOW
, &tty
);
155 static int read_password(char *buf
, int buf_size
)
160 printf("password: ");
165 ret
= read(0, &ch
, 1);
167 if (errno
== EAGAIN
|| errno
== EINTR
) {
173 } else if (ret
== 0) {
181 if (i
< (buf_size
- 1))
192 static int print_block_option_help(const char *filename
, const char *fmt
)
194 BlockDriver
*drv
, *proto_drv
;
195 QEMUOptionParameter
*create_options
= NULL
;
197 /* Find driver and parse its options */
198 drv
= bdrv_find_format(fmt
);
200 error("Unknown file format '%s'", fmt
);
204 proto_drv
= bdrv_find_protocol(filename
);
206 error("Unknown protocol '%s'", filename
);
210 create_options
= append_option_parameters(create_options
,
211 drv
->create_options
);
212 create_options
= append_option_parameters(create_options
,
213 proto_drv
->create_options
);
214 print_option_help(create_options
);
215 free_option_parameters(create_options
);
219 static BlockDriverState
*bdrv_new_open(const char *filename
,
223 BlockDriverState
*bs
;
229 error("Not enough memory");
233 drv
= bdrv_find_format(fmt
);
235 error("Unknown file format '%s'", fmt
);
241 if (bdrv_open(bs
, filename
, flags
, drv
) < 0) {
242 error("Could not open '%s'", filename
);
245 if (bdrv_is_encrypted(bs
)) {
246 printf("Disk image '%s' is encrypted.\n", filename
);
247 if (read_password(password
, sizeof(password
)) < 0) {
248 error("No password given");
251 if (bdrv_set_key(bs
, password
) < 0) {
252 error("invalid password");
264 static int add_old_style_options(const char *fmt
, QEMUOptionParameter
*list
,
265 const char *base_filename
,
266 const char *base_fmt
)
269 if (set_option_parameter(list
, BLOCK_OPT_BACKING_FILE
, base_filename
)) {
270 error("Backing file not supported for file format '%s'", fmt
);
275 if (set_option_parameter(list
, BLOCK_OPT_BACKING_FMT
, base_fmt
)) {
276 error("Backing file format not supported for file format '%s'", fmt
);
283 static int img_create(int argc
, char **argv
)
286 uint64_t img_size
= -1;
287 const char *fmt
= "raw";
288 const char *base_fmt
= NULL
;
289 const char *filename
;
290 const char *base_filename
= NULL
;
291 BlockDriver
*drv
, *proto_drv
;
292 QEMUOptionParameter
*param
= NULL
, *create_options
= NULL
;
293 QEMUOptionParameter
*backing_fmt
= NULL
;
294 char *options
= NULL
;
297 c
= getopt(argc
, argv
, "F:b:f:he6o:");
310 base_filename
= optarg
;
316 error("qemu-img: option -e is deprecated, please use \'-o "
317 "encryption\' instead!");
320 error("qemu-img: option -6 is deprecated, please use \'-o "
321 "compat6\' instead!");
329 /* Get the filename */
330 if (optind
>= argc
) {
333 filename
= argv
[optind
++];
335 /* Get image size, if specified */
338 sval
= strtosz_suffix(argv
[optind
++], NULL
, STRTOSZ_DEFSUFFIX_B
);
340 error("Invalid image size specified! You may use k, M, G or "
342 error("kilobytes, megabytes, gigabytes and terabytes.");
346 img_size
= (uint64_t)sval
;
349 if (options
&& !strcmp(options
, "?")) {
350 ret
= print_block_option_help(filename
, fmt
);
354 /* Find driver and parse its options */
355 drv
= bdrv_find_format(fmt
);
357 error("Unknown file format '%s'", fmt
);
362 proto_drv
= bdrv_find_protocol(filename
);
364 error("Unknown protocol '%s'", filename
);
369 create_options
= append_option_parameters(create_options
,
370 drv
->create_options
);
371 create_options
= append_option_parameters(create_options
,
372 proto_drv
->create_options
);
374 /* Create parameter list with default values */
375 param
= parse_option_parameters("", create_options
, param
);
377 set_option_parameter_int(param
, BLOCK_OPT_SIZE
, img_size
);
379 /* Parse -o options */
381 param
= parse_option_parameters(options
, create_options
, param
);
383 error("Invalid options for file format '%s'.", fmt
);
389 /* Add old-style options to parameters */
390 ret
= add_old_style_options(fmt
, param
, base_filename
, base_fmt
);
395 backing_fmt
= get_option_parameter(param
, BLOCK_OPT_BACKING_FMT
);
396 if (backing_fmt
&& backing_fmt
->value
.s
) {
397 if (!bdrv_find_format(backing_fmt
->value
.s
)) {
398 error("Unknown backing file format '%s'",
399 backing_fmt
->value
.s
);
405 // The size for the image must always be specified, with one exception:
406 // If we are using a backing file, we can obtain the size from there
407 if (get_option_parameter(param
, BLOCK_OPT_SIZE
)->value
.n
== -1) {
409 QEMUOptionParameter
*backing_file
=
410 get_option_parameter(param
, BLOCK_OPT_BACKING_FILE
);
412 if (backing_file
&& backing_file
->value
.s
) {
413 BlockDriverState
*bs
;
415 const char *fmt
= NULL
;
418 if (backing_fmt
&& backing_fmt
->value
.s
) {
419 fmt
= backing_fmt
->value
.s
;
422 bs
= bdrv_new_open(backing_file
->value
.s
, fmt
, BDRV_O_FLAGS
);
427 bdrv_get_geometry(bs
, &size
);
431 snprintf(buf
, sizeof(buf
), "%" PRId64
, size
);
432 set_option_parameter(param
, BLOCK_OPT_SIZE
, buf
);
434 error("Image creation needs a size parameter");
440 printf("Formatting '%s', fmt=%s ", filename
, fmt
);
441 print_option_parameters(param
);
444 ret
= bdrv_create(drv
, filename
, param
);
447 if (ret
== -ENOTSUP
) {
448 error("Formatting or formatting option not supported for file format '%s'", fmt
);
449 } else if (ret
== -EFBIG
) {
450 error("The image size is too large for file format '%s'", fmt
);
452 error("%s: error while creating %s: %s", filename
, fmt
, strerror(-ret
));
456 free_option_parameters(create_options
);
457 free_option_parameters(param
);
465 * Checks an image for consistency. Exit codes:
467 * 0 - Check completed, image is good
468 * 1 - Check not completed because of internal errors
469 * 2 - Check completed, image is corrupted
470 * 3 - Check completed, image has leaked clusters, but is good otherwise
472 static int img_check(int argc
, char **argv
)
475 const char *filename
, *fmt
;
476 BlockDriverState
*bs
;
477 BdrvCheckResult result
;
481 c
= getopt(argc
, argv
, "f:h");
495 if (optind
>= argc
) {
498 filename
= argv
[optind
++];
500 bs
= bdrv_new_open(filename
, fmt
, BDRV_O_FLAGS
);
504 ret
= bdrv_check(bs
, &result
);
506 if (ret
== -ENOTSUP
) {
507 error("This image format does not support checks");
512 if (!(result
.corruptions
|| result
.leaks
|| result
.check_errors
)) {
513 printf("No errors were found on the image.\n");
515 if (result
.corruptions
) {
516 printf("\n%d errors were found on the image.\n"
517 "Data may be corrupted, or further writes to the image "
523 printf("\n%d leaked clusters were found on the image.\n"
524 "This means waste of disk space, but no harm to data.\n",
528 if (result
.check_errors
) {
529 printf("\n%d internal errors have occurred during the check.\n",
530 result
.check_errors
);
536 if (ret
< 0 || result
.check_errors
) {
537 printf("\nAn error has occurred during the check: %s\n"
538 "The check is not complete and may have missed error.\n",
543 if (result
.corruptions
) {
545 } else if (result
.leaks
) {
552 static int img_commit(int argc
, char **argv
)
555 const char *filename
, *fmt
;
556 BlockDriverState
*bs
;
560 c
= getopt(argc
, argv
, "f:h");
574 if (optind
>= argc
) {
577 filename
= argv
[optind
++];
579 bs
= bdrv_new_open(filename
, fmt
, BDRV_O_FLAGS
| BDRV_O_RDWR
);
583 ret
= bdrv_commit(bs
);
586 printf("Image committed.\n");
589 error("No disk inserted");
592 error("Image is read-only");
595 error("Image is already committed");
598 error("Error while committing image");
609 static int is_not_zero(const uint8_t *sector
, int len
)
613 for(i
= 0;i
< len
; i
++) {
614 if (((uint32_t *)sector
)[i
] != 0)
621 * Returns true iff the first sector pointed to by 'buf' contains at least
624 * 'pnum' is set to the number of sectors (including and immediately following
625 * the first one) that are known to be in the same allocated/unallocated state.
627 static int is_allocated_sectors(const uint8_t *buf
, int n
, int *pnum
)
635 v
= is_not_zero(buf
, 512);
636 for(i
= 1; i
< n
; i
++) {
638 if (v
!= is_not_zero(buf
, 512))
646 * Compares two buffers sector by sector. Returns 0 if the first sector of both
647 * buffers matches, non-zero otherwise.
649 * pnum is set to the number of sectors (including and immediately following
650 * the first one) that are known to have the same comparison result
652 static int compare_sectors(const uint8_t *buf1
, const uint8_t *buf2
, int n
,
662 res
= !!memcmp(buf1
, buf2
, 512);
663 for(i
= 1; i
< n
; i
++) {
667 if (!!memcmp(buf1
, buf2
, 512) != res
) {
676 #define IO_BUF_SIZE (2 * 1024 * 1024)
678 static int img_convert(int argc
, char **argv
)
680 int c
, ret
= 0, n
, n1
, bs_n
, bs_i
, compress
, cluster_size
, cluster_sectors
;
681 const char *fmt
, *out_fmt
, *out_baseimg
, *out_filename
;
682 BlockDriver
*drv
, *proto_drv
;
683 BlockDriverState
**bs
= NULL
, *out_bs
= NULL
;
684 int64_t total_sectors
, nb_sectors
, sector_num
, bs_offset
;
686 uint8_t * buf
= NULL
;
689 QEMUOptionParameter
*param
= NULL
, *create_options
= NULL
;
690 QEMUOptionParameter
*out_baseimg_param
;
691 char *options
= NULL
;
692 const char *snapshot_name
= NULL
;
699 c
= getopt(argc
, argv
, "f:O:B:s:hce6o:");
715 out_baseimg
= optarg
;
721 error("qemu-img: option -e is deprecated, please use \'-o "
722 "encryption\' instead!");
725 error("qemu-img: option -6 is deprecated, please use \'-o "
726 "compat6\' instead!");
732 snapshot_name
= optarg
;
737 bs_n
= argc
- optind
- 1;
742 out_filename
= argv
[argc
- 1];
744 if (options
&& !strcmp(options
, "?")) {
745 ret
= print_block_option_help(out_filename
, out_fmt
);
749 if (bs_n
> 1 && out_baseimg
) {
750 error("-B makes no sense when concatenating multiple input images");
755 bs
= qemu_mallocz(bs_n
* sizeof(BlockDriverState
*));
758 for (bs_i
= 0; bs_i
< bs_n
; bs_i
++) {
759 bs
[bs_i
] = bdrv_new_open(argv
[optind
+ bs_i
], fmt
, BDRV_O_FLAGS
);
761 error("Could not open '%s'", argv
[optind
+ bs_i
]);
765 bdrv_get_geometry(bs
[bs_i
], &bs_sectors
);
766 total_sectors
+= bs_sectors
;
769 if (snapshot_name
!= NULL
) {
771 error("No support for concatenating multiple snapshot\n");
775 if (bdrv_snapshot_load_tmp(bs
[0], snapshot_name
) < 0) {
776 error("Failed to load snapshot\n");
782 /* Find driver and parse its options */
783 drv
= bdrv_find_format(out_fmt
);
785 error("Unknown file format '%s'", out_fmt
);
790 proto_drv
= bdrv_find_protocol(out_filename
);
792 error("Unknown protocol '%s'", out_filename
);
797 create_options
= append_option_parameters(create_options
,
798 drv
->create_options
);
799 create_options
= append_option_parameters(create_options
,
800 proto_drv
->create_options
);
803 param
= parse_option_parameters(options
, create_options
, param
);
805 error("Invalid options for file format '%s'.", out_fmt
);
810 param
= parse_option_parameters("", create_options
, param
);
813 set_option_parameter_int(param
, BLOCK_OPT_SIZE
, total_sectors
* 512);
814 ret
= add_old_style_options(out_fmt
, param
, out_baseimg
, NULL
);
819 /* Get backing file name if -o backing_file was used */
820 out_baseimg_param
= get_option_parameter(param
, BLOCK_OPT_BACKING_FILE
);
821 if (out_baseimg_param
) {
822 out_baseimg
= out_baseimg_param
->value
.s
;
825 /* Check if compression is supported */
827 QEMUOptionParameter
*encryption
=
828 get_option_parameter(param
, BLOCK_OPT_ENCRYPT
);
830 if (!drv
->bdrv_write_compressed
) {
831 error("Compression not supported for this file format");
836 if (encryption
&& encryption
->value
.n
) {
837 error("Compression and encryption not supported at the same time");
843 /* Create the new image */
844 ret
= bdrv_create(drv
, out_filename
, param
);
846 if (ret
== -ENOTSUP
) {
847 error("Formatting not supported for file format '%s'", out_fmt
);
848 } else if (ret
== -EFBIG
) {
849 error("The image size is too large for file format '%s'", out_fmt
);
851 error("%s: error while converting %s: %s", out_filename
, out_fmt
, strerror(-ret
));
856 out_bs
= bdrv_new_open(out_filename
, out_fmt
,
857 BDRV_O_FLAGS
| BDRV_O_RDWR
| BDRV_O_NO_FLUSH
);
865 bdrv_get_geometry(bs
[0], &bs_sectors
);
866 buf
= qemu_malloc(IO_BUF_SIZE
);
869 ret
= bdrv_get_info(out_bs
, &bdi
);
871 error("could not get block driver info");
874 cluster_size
= bdi
.cluster_size
;
875 if (cluster_size
<= 0 || cluster_size
> IO_BUF_SIZE
) {
876 error("invalid cluster size");
880 cluster_sectors
= cluster_size
>> 9;
887 nb_sectors
= total_sectors
- sector_num
;
890 if (nb_sectors
>= cluster_sectors
)
895 bs_num
= sector_num
- bs_offset
;
896 assert (bs_num
>= 0);
899 while (remainder
> 0) {
901 while (bs_num
== bs_sectors
) {
903 assert (bs_i
< bs_n
);
904 bs_offset
+= bs_sectors
;
905 bdrv_get_geometry(bs
[bs_i
], &bs_sectors
);
907 /* printf("changing part: sector_num=%" PRId64 ", "
908 "bs_i=%d, bs_offset=%" PRId64 ", bs_sectors=%" PRId64
909 "\n", sector_num, bs_i, bs_offset, bs_sectors); */
911 assert (bs_num
< bs_sectors
);
913 nlow
= (remainder
> bs_sectors
- bs_num
) ? bs_sectors
- bs_num
: remainder
;
915 ret
= bdrv_read(bs
[bs_i
], bs_num
, buf2
, nlow
);
917 error("error while reading");
926 assert (remainder
== 0);
928 if (n
< cluster_sectors
) {
929 memset(buf
+ n
* 512, 0, cluster_size
- n
* 512);
931 if (is_not_zero(buf
, cluster_size
)) {
932 ret
= bdrv_write_compressed(out_bs
, sector_num
, buf
,
935 error("error while compressing sector %" PRId64
,
942 /* signal EOF to align */
943 bdrv_write_compressed(out_bs
, 0, NULL
, 0);
945 int has_zero_init
= bdrv_has_zero_init(out_bs
);
947 sector_num
= 0; // total number of sectors converted so far
949 nb_sectors
= total_sectors
- sector_num
;
950 if (nb_sectors
<= 0) {
953 if (nb_sectors
>= (IO_BUF_SIZE
/ 512)) {
954 n
= (IO_BUF_SIZE
/ 512);
959 while (sector_num
- bs_offset
>= bs_sectors
) {
961 assert (bs_i
< bs_n
);
962 bs_offset
+= bs_sectors
;
963 bdrv_get_geometry(bs
[bs_i
], &bs_sectors
);
964 /* printf("changing part: sector_num=%" PRId64 ", bs_i=%d, "
965 "bs_offset=%" PRId64 ", bs_sectors=%" PRId64 "\n",
966 sector_num, bs_i, bs_offset, bs_sectors); */
969 if (n
> bs_offset
+ bs_sectors
- sector_num
) {
970 n
= bs_offset
+ bs_sectors
- sector_num
;
974 /* If the output image is being created as a copy on write image,
975 assume that sectors which are unallocated in the input image
976 are present in both the output's and input's base images (no
977 need to copy them). */
979 if (!bdrv_is_allocated(bs
[bs_i
], sector_num
- bs_offset
,
984 /* The next 'n1' sectors are allocated in the input image. Copy
985 only those as they may be followed by unallocated sectors. */
992 ret
= bdrv_read(bs
[bs_i
], sector_num
- bs_offset
, buf
, n
);
994 error("error while reading");
997 /* NOTE: at the same time we convert, we do not write zero
998 sectors to have a chance to compress the image. Ideally, we
999 should add a specific call to have the info to go faster */
1002 /* If the output image is being created as a copy on write image,
1003 copy all sectors even the ones containing only NUL bytes,
1004 because they may differ from the sectors in the base image.
1006 If the output is to a host device, we also write out
1007 sectors that are entirely 0, since whatever data was
1008 already there is garbage, not 0s. */
1009 if (!has_zero_init
|| out_baseimg
||
1010 is_allocated_sectors(buf1
, n
, &n1
)) {
1011 ret
= bdrv_write(out_bs
, sector_num
, buf1
, n1
);
1013 error("error while writing");
1024 free_option_parameters(create_options
);
1025 free_option_parameters(param
);
1028 bdrv_delete(out_bs
);
1031 for (bs_i
= 0; bs_i
< bs_n
; bs_i
++) {
1033 bdrv_delete(bs
[bs_i
]);
1045 static int64_t get_allocated_file_size(const char *filename
)
1047 typedef DWORD (WINAPI
* get_compressed_t
)(const char *filename
, DWORD
*high
);
1048 get_compressed_t get_compressed
;
1051 /* WinNT support GetCompressedFileSize to determine allocate size */
1052 get_compressed
= (get_compressed_t
) GetProcAddress(GetModuleHandle("kernel32"), "GetCompressedFileSizeA");
1053 if (get_compressed
) {
1055 low
= get_compressed(filename
, &high
);
1056 if (low
!= 0xFFFFFFFFlu
|| GetLastError() == NO_ERROR
)
1057 return (((int64_t) high
) << 32) + low
;
1060 if (_stati64(filename
, &st
) < 0)
1065 static int64_t get_allocated_file_size(const char *filename
)
1068 if (stat(filename
, &st
) < 0)
1070 return (int64_t)st
.st_blocks
* 512;
1074 static void dump_snapshots(BlockDriverState
*bs
)
1076 QEMUSnapshotInfo
*sn_tab
, *sn
;
1080 nb_sns
= bdrv_snapshot_list(bs
, &sn_tab
);
1083 printf("Snapshot list:\n");
1084 printf("%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), NULL
));
1085 for(i
= 0; i
< nb_sns
; i
++) {
1087 printf("%s\n", bdrv_snapshot_dump(buf
, sizeof(buf
), sn
));
1092 static int img_info(int argc
, char **argv
)
1095 const char *filename
, *fmt
;
1096 BlockDriverState
*bs
;
1097 char fmt_name
[128], size_buf
[128], dsize_buf
[128];
1098 uint64_t total_sectors
;
1099 int64_t allocated_size
;
1100 char backing_filename
[1024];
1101 char backing_filename2
[1024];
1102 BlockDriverInfo bdi
;
1106 c
= getopt(argc
, argv
, "f:h");
1120 if (optind
>= argc
) {
1123 filename
= argv
[optind
++];
1125 bs
= bdrv_new_open(filename
, fmt
, BDRV_O_FLAGS
| BDRV_O_NO_BACKING
);
1129 bdrv_get_format(bs
, fmt_name
, sizeof(fmt_name
));
1130 bdrv_get_geometry(bs
, &total_sectors
);
1131 get_human_readable_size(size_buf
, sizeof(size_buf
), total_sectors
* 512);
1132 allocated_size
= get_allocated_file_size(filename
);
1133 if (allocated_size
< 0) {
1134 snprintf(dsize_buf
, sizeof(dsize_buf
), "unavailable");
1136 get_human_readable_size(dsize_buf
, sizeof(dsize_buf
),
1139 printf("image: %s\n"
1141 "virtual size: %s (%" PRId64
" bytes)\n"
1143 filename
, fmt_name
, size_buf
,
1144 (total_sectors
* 512),
1146 if (bdrv_is_encrypted(bs
)) {
1147 printf("encrypted: yes\n");
1149 if (bdrv_get_info(bs
, &bdi
) >= 0) {
1150 if (bdi
.cluster_size
!= 0) {
1151 printf("cluster_size: %d\n", bdi
.cluster_size
);
1154 bdrv_get_backing_filename(bs
, backing_filename
, sizeof(backing_filename
));
1155 if (backing_filename
[0] != '\0') {
1156 path_combine(backing_filename2
, sizeof(backing_filename2
),
1157 filename
, backing_filename
);
1158 printf("backing file: %s (actual path: %s)\n",
1167 #define SNAPSHOT_LIST 1
1168 #define SNAPSHOT_CREATE 2
1169 #define SNAPSHOT_APPLY 3
1170 #define SNAPSHOT_DELETE 4
1172 static int img_snapshot(int argc
, char **argv
)
1174 BlockDriverState
*bs
;
1175 QEMUSnapshotInfo sn
;
1176 char *filename
, *snapshot_name
= NULL
;
1177 int c
, ret
= 0, bdrv_oflags
;
1181 bdrv_oflags
= BDRV_O_RDWR
;
1182 /* Parse commandline parameters */
1184 c
= getopt(argc
, argv
, "la:c:d:h");
1198 action
= SNAPSHOT_LIST
;
1199 bdrv_oflags
&= ~BDRV_O_RDWR
; /* no need for RW */
1206 action
= SNAPSHOT_APPLY
;
1207 snapshot_name
= optarg
;
1214 action
= SNAPSHOT_CREATE
;
1215 snapshot_name
= optarg
;
1222 action
= SNAPSHOT_DELETE
;
1223 snapshot_name
= optarg
;
1228 if (optind
>= argc
) {
1231 filename
= argv
[optind
++];
1233 /* Open the image */
1234 bs
= bdrv_new_open(filename
, NULL
, bdrv_oflags
);
1239 /* Perform the requested action */
1245 case SNAPSHOT_CREATE
:
1246 memset(&sn
, 0, sizeof(sn
));
1247 pstrcpy(sn
.name
, sizeof(sn
.name
), snapshot_name
);
1249 qemu_gettimeofday(&tv
);
1250 sn
.date_sec
= tv
.tv_sec
;
1251 sn
.date_nsec
= tv
.tv_usec
* 1000;
1253 ret
= bdrv_snapshot_create(bs
, &sn
);
1255 error("Could not create snapshot '%s': %d (%s)",
1256 snapshot_name
, ret
, strerror(-ret
));
1260 case SNAPSHOT_APPLY
:
1261 ret
= bdrv_snapshot_goto(bs
, snapshot_name
);
1263 error("Could not apply snapshot '%s': %d (%s)",
1264 snapshot_name
, ret
, strerror(-ret
));
1268 case SNAPSHOT_DELETE
:
1269 ret
= bdrv_snapshot_delete(bs
, snapshot_name
);
1271 error("Could not delete snapshot '%s': %d (%s)",
1272 snapshot_name
, ret
, strerror(-ret
));
1285 static int img_rebase(int argc
, char **argv
)
1287 BlockDriverState
*bs
, *bs_old_backing
= NULL
, *bs_new_backing
= NULL
;
1288 BlockDriver
*old_backing_drv
, *new_backing_drv
;
1290 const char *fmt
, *out_basefmt
, *out_baseimg
;
1294 /* Parse commandline parameters */
1300 c
= getopt(argc
, argv
, "uhf:F:b:");
1313 out_basefmt
= optarg
;
1316 out_baseimg
= optarg
;
1324 if ((optind
>= argc
) || !out_baseimg
) {
1327 filename
= argv
[optind
++];
1332 * Ignore the old backing file for unsafe rebase in case we want to correct
1333 * the reference to a renamed or moved backing file.
1335 flags
= BDRV_O_FLAGS
| BDRV_O_RDWR
| (unsafe
? BDRV_O_NO_BACKING
: 0);
1336 bs
= bdrv_new_open(filename
, fmt
, flags
);
1341 /* Find the right drivers for the backing files */
1342 old_backing_drv
= NULL
;
1343 new_backing_drv
= NULL
;
1345 if (!unsafe
&& bs
->backing_format
[0] != '\0') {
1346 old_backing_drv
= bdrv_find_format(bs
->backing_format
);
1347 if (old_backing_drv
== NULL
) {
1348 error("Invalid format name: '%s'", bs
->backing_format
);
1354 if (out_basefmt
!= NULL
) {
1355 new_backing_drv
= bdrv_find_format(out_basefmt
);
1356 if (new_backing_drv
== NULL
) {
1357 error("Invalid format name: '%s'", out_basefmt
);
1363 /* For safe rebasing we need to compare old and new backing file */
1365 /* Make the compiler happy */
1366 bs_old_backing
= NULL
;
1367 bs_new_backing
= NULL
;
1369 char backing_name
[1024];
1371 bs_old_backing
= bdrv_new("old_backing");
1372 bdrv_get_backing_filename(bs
, backing_name
, sizeof(backing_name
));
1373 ret
= bdrv_open(bs_old_backing
, backing_name
, BDRV_O_FLAGS
,
1376 error("Could not open old backing file '%s'", backing_name
);
1380 bs_new_backing
= bdrv_new("new_backing");
1381 ret
= bdrv_open(bs_new_backing
, out_baseimg
, BDRV_O_FLAGS
,
1384 error("Could not open new backing file '%s'", out_baseimg
);
1390 * Check each unallocated cluster in the COW file. If it is unallocated,
1391 * accesses go to the backing file. We must therefore compare this cluster
1392 * in the old and new backing file, and if they differ we need to copy it
1393 * from the old backing file into the COW file.
1395 * If qemu-img crashes during this step, no harm is done. The content of
1396 * the image is the same as the original one at any time.
1399 uint64_t num_sectors
;
1405 buf_old
= qemu_malloc(IO_BUF_SIZE
);
1406 buf_new
= qemu_malloc(IO_BUF_SIZE
);
1408 bdrv_get_geometry(bs
, &num_sectors
);
1410 for (sector
= 0; sector
< num_sectors
; sector
+= n
) {
1412 /* How many sectors can we handle with the next read? */
1413 if (sector
+ (IO_BUF_SIZE
/ 512) <= num_sectors
) {
1414 n
= (IO_BUF_SIZE
/ 512);
1416 n
= num_sectors
- sector
;
1419 /* If the cluster is allocated, we don't need to take action */
1420 ret
= bdrv_is_allocated(bs
, sector
, n
, &n
);
1425 /* Read old and new backing file */
1426 ret
= bdrv_read(bs_old_backing
, sector
, buf_old
, n
);
1428 error("error while reading from old backing file");
1431 ret
= bdrv_read(bs_new_backing
, sector
, buf_new
, n
);
1433 error("error while reading from new backing file");
1437 /* If they differ, we need to write to the COW file */
1438 uint64_t written
= 0;
1440 while (written
< n
) {
1443 if (compare_sectors(buf_old
+ written
* 512,
1444 buf_new
+ written
* 512, n
- written
, &pnum
))
1446 ret
= bdrv_write(bs
, sector
+ written
,
1447 buf_old
+ written
* 512, pnum
);
1449 error("Error while writing to COW image: %s",
1464 * Change the backing file. All clusters that are different from the old
1465 * backing file are overwritten in the COW file now, so the visible content
1466 * doesn't change when we switch the backing file.
1468 ret
= bdrv_change_backing_file(bs
, out_baseimg
, out_basefmt
);
1469 if (ret
== -ENOSPC
) {
1470 error("Could not change the backing file to '%s': No space left in "
1471 "the file header", out_baseimg
);
1472 } else if (ret
< 0) {
1473 error("Could not change the backing file to '%s': %s",
1474 out_baseimg
, strerror(-ret
));
1478 * TODO At this point it is possible to check if any clusters that are
1479 * allocated in the COW file are the same in the backing file. If so, they
1480 * could be dropped from the COW file. Don't do this before switching the
1481 * backing file, in case of a crash this would lead to corruption.
1486 bdrv_delete(bs_old_backing
);
1487 bdrv_delete(bs_new_backing
);
1497 static int img_resize(int argc
, char **argv
)
1499 int c
, ret
, relative
;
1500 const char *filename
, *fmt
, *size
;
1501 int64_t n
, total_size
;
1502 BlockDriverState
*bs
= NULL
;
1503 QEMUOptionParameter
*param
;
1504 QEMUOptionParameter resize_options
[] = {
1506 .name
= BLOCK_OPT_SIZE
,
1508 .help
= "Virtual disk size"
1515 c
= getopt(argc
, argv
, "f:h");
1529 if (optind
+ 1 >= argc
) {
1532 filename
= argv
[optind
++];
1533 size
= argv
[optind
++];
1535 /* Choose grow, shrink, or absolute resize mode */
1551 param
= parse_option_parameters("", resize_options
, NULL
);
1552 if (set_option_parameter(param
, BLOCK_OPT_SIZE
, size
)) {
1553 /* Error message already printed when size parsing fails */
1557 n
= get_option_parameter(param
, BLOCK_OPT_SIZE
)->value
.n
;
1558 free_option_parameters(param
);
1560 bs
= bdrv_new_open(filename
, fmt
, BDRV_O_FLAGS
| BDRV_O_RDWR
);
1567 total_size
= bdrv_getlength(bs
) + n
* relative
;
1571 if (total_size
<= 0) {
1572 error("New image size must be positive");
1577 ret
= bdrv_truncate(bs
, total_size
);
1580 printf("Image resized.\n");
1583 error("This image format does not support resize");
1586 error("Image is read-only");
1589 error("Error resizing image (%d)", -ret
);
1602 static const img_cmd_t img_cmds
[] = {
1603 #define DEF(option, callback, arg_string) \
1604 { option, callback },
1605 #include "qemu-img-cmds.h"
1611 int main(int argc
, char **argv
)
1613 const img_cmd_t
*cmd
;
1614 const char *cmdname
;
1616 error_set_progname(argv
[0]);
1624 /* find the command */
1625 for(cmd
= img_cmds
; cmd
->name
!= NULL
; cmd
++) {
1626 if (!strcmp(cmdname
, cmd
->name
)) {
1627 return cmd
->handler(argc
, argv
);