2 * Block layer qmp and info dump related functions
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
25 #include "qemu/osdep.h"
26 #include "block/qapi.h"
27 #include "block/block_int.h"
28 #include "block/throttle-groups.h"
29 #include "block/write-threshold.h"
30 #include "qmp-commands.h"
31 #include "qapi-visit.h"
32 #include "qapi/qmp-output-visitor.h"
33 #include "qapi/qmp/types.h"
34 #include "sysemu/block-backend.h"
35 #include "qemu/cutils.h"
37 BlockDeviceInfo
*bdrv_block_device_info(BlockDriverState
*bs
, Error
**errp
)
39 ImageInfo
**p_image_info
;
40 BlockDriverState
*bs0
;
41 BlockDeviceInfo
*info
= g_malloc0(sizeof(*info
));
43 info
->file
= g_strdup(bs
->filename
);
44 info
->ro
= bs
->read_only
;
45 info
->drv
= g_strdup(bs
->drv
->format_name
);
46 info
->encrypted
= bs
->encrypted
;
47 info
->encryption_key_missing
= bdrv_key_required(bs
);
49 info
->cache
= g_new(BlockdevCacheInfo
, 1);
50 *info
->cache
= (BlockdevCacheInfo
) {
51 .writeback
= bdrv_enable_write_cache(bs
),
52 .direct
= !!(bs
->open_flags
& BDRV_O_NOCACHE
),
53 .no_flush
= !!(bs
->open_flags
& BDRV_O_NO_FLUSH
),
56 if (bs
->node_name
[0]) {
57 info
->has_node_name
= true;
58 info
->node_name
= g_strdup(bs
->node_name
);
61 if (bs
->backing_file
[0]) {
62 info
->has_backing_file
= true;
63 info
->backing_file
= g_strdup(bs
->backing_file
);
66 info
->backing_file_depth
= bdrv_get_backing_file_depth(bs
);
67 info
->detect_zeroes
= bs
->detect_zeroes
;
69 if (bs
->throttle_state
) {
72 throttle_group_get_config(bs
, &cfg
);
74 info
->bps
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
;
75 info
->bps_rd
= cfg
.buckets
[THROTTLE_BPS_READ
].avg
;
76 info
->bps_wr
= cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
;
78 info
->iops
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
;
79 info
->iops_rd
= cfg
.buckets
[THROTTLE_OPS_READ
].avg
;
80 info
->iops_wr
= cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
;
82 info
->has_bps_max
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
;
83 info
->bps_max
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
;
84 info
->has_bps_rd_max
= cfg
.buckets
[THROTTLE_BPS_READ
].max
;
85 info
->bps_rd_max
= cfg
.buckets
[THROTTLE_BPS_READ
].max
;
86 info
->has_bps_wr_max
= cfg
.buckets
[THROTTLE_BPS_WRITE
].max
;
87 info
->bps_wr_max
= cfg
.buckets
[THROTTLE_BPS_WRITE
].max
;
89 info
->has_iops_max
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
;
90 info
->iops_max
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
;
91 info
->has_iops_rd_max
= cfg
.buckets
[THROTTLE_OPS_READ
].max
;
92 info
->iops_rd_max
= cfg
.buckets
[THROTTLE_OPS_READ
].max
;
93 info
->has_iops_wr_max
= cfg
.buckets
[THROTTLE_OPS_WRITE
].max
;
94 info
->iops_wr_max
= cfg
.buckets
[THROTTLE_OPS_WRITE
].max
;
96 info
->has_bps_max_length
= info
->has_bps_max
;
97 info
->bps_max_length
=
98 cfg
.buckets
[THROTTLE_BPS_TOTAL
].burst_length
;
99 info
->has_bps_rd_max_length
= info
->has_bps_rd_max
;
100 info
->bps_rd_max_length
=
101 cfg
.buckets
[THROTTLE_BPS_READ
].burst_length
;
102 info
->has_bps_wr_max_length
= info
->has_bps_wr_max
;
103 info
->bps_wr_max_length
=
104 cfg
.buckets
[THROTTLE_BPS_WRITE
].burst_length
;
106 info
->has_iops_max_length
= info
->has_iops_max
;
107 info
->iops_max_length
=
108 cfg
.buckets
[THROTTLE_OPS_TOTAL
].burst_length
;
109 info
->has_iops_rd_max_length
= info
->has_iops_rd_max
;
110 info
->iops_rd_max_length
=
111 cfg
.buckets
[THROTTLE_OPS_READ
].burst_length
;
112 info
->has_iops_wr_max_length
= info
->has_iops_wr_max
;
113 info
->iops_wr_max_length
=
114 cfg
.buckets
[THROTTLE_OPS_WRITE
].burst_length
;
116 info
->has_iops_size
= cfg
.op_size
;
117 info
->iops_size
= cfg
.op_size
;
119 info
->has_group
= true;
120 info
->group
= g_strdup(throttle_group_get_name(bs
));
123 info
->write_threshold
= bdrv_write_threshold_get(bs
);
126 p_image_info
= &info
->image
;
128 Error
*local_err
= NULL
;
129 bdrv_query_image_info(bs0
, p_image_info
, &local_err
);
131 error_propagate(errp
, local_err
);
132 qapi_free_BlockDeviceInfo(info
);
135 if (bs0
->drv
&& bs0
->backing
) {
136 bs0
= bs0
->backing
->bs
;
137 (*p_image_info
)->has_backing_image
= true;
138 p_image_info
= &((*p_image_info
)->backing_image
);
148 * Returns 0 on success, with *p_list either set to describe snapshot
149 * information, or NULL because there are no snapshots. Returns -errno on
150 * error, with *p_list untouched.
152 int bdrv_query_snapshot_info_list(BlockDriverState
*bs
,
153 SnapshotInfoList
**p_list
,
157 QEMUSnapshotInfo
*sn_tab
= NULL
;
158 SnapshotInfoList
*info_list
, *cur_item
= NULL
, *head
= NULL
;
161 sn_count
= bdrv_snapshot_list(bs
, &sn_tab
);
163 const char *dev
= bdrv_get_device_name(bs
);
166 error_setg(errp
, "Device '%s' is not inserted", dev
);
170 "Device '%s' does not support internal snapshots",
174 error_setg_errno(errp
, -sn_count
,
175 "Can't list snapshots of device '%s'", dev
);
181 for (i
= 0; i
< sn_count
; i
++) {
182 info
= g_new0(SnapshotInfo
, 1);
183 info
->id
= g_strdup(sn_tab
[i
].id_str
);
184 info
->name
= g_strdup(sn_tab
[i
].name
);
185 info
->vm_state_size
= sn_tab
[i
].vm_state_size
;
186 info
->date_sec
= sn_tab
[i
].date_sec
;
187 info
->date_nsec
= sn_tab
[i
].date_nsec
;
188 info
->vm_clock_sec
= sn_tab
[i
].vm_clock_nsec
/ 1000000000;
189 info
->vm_clock_nsec
= sn_tab
[i
].vm_clock_nsec
% 1000000000;
191 info_list
= g_new0(SnapshotInfoList
, 1);
192 info_list
->value
= info
;
194 /* XXX: waiting for the qapi to support qemu-queue.h types */
196 head
= cur_item
= info_list
;
198 cur_item
->next
= info_list
;
199 cur_item
= info_list
;
210 * bdrv_query_image_info:
211 * @bs: block device to examine
212 * @p_info: location to store image information
213 * @errp: location to store error information
215 * Store "flat" image information in @p_info.
217 * "Flat" means it does *not* query backing image information,
218 * i.e. (*pinfo)->has_backing_image will be set to false and
219 * (*pinfo)->backing_image to NULL even when the image does in fact have
222 * @p_info will be set only on success. On error, store error in @errp.
224 void bdrv_query_image_info(BlockDriverState
*bs
,
229 const char *backing_filename
;
235 aio_context_acquire(bdrv_get_aio_context(bs
));
237 size
= bdrv_getlength(bs
);
239 error_setg_errno(errp
, -size
, "Can't get size of device '%s'",
240 bdrv_get_device_name(bs
));
244 info
= g_new0(ImageInfo
, 1);
245 info
->filename
= g_strdup(bs
->filename
);
246 info
->format
= g_strdup(bdrv_get_format_name(bs
));
247 info
->virtual_size
= size
;
248 info
->actual_size
= bdrv_get_allocated_file_size(bs
);
249 info
->has_actual_size
= info
->actual_size
>= 0;
250 if (bdrv_is_encrypted(bs
)) {
251 info
->encrypted
= true;
252 info
->has_encrypted
= true;
254 if (bdrv_get_info(bs
, &bdi
) >= 0) {
255 if (bdi
.cluster_size
!= 0) {
256 info
->cluster_size
= bdi
.cluster_size
;
257 info
->has_cluster_size
= true;
259 info
->dirty_flag
= bdi
.is_dirty
;
260 info
->has_dirty_flag
= true;
262 info
->format_specific
= bdrv_get_specific_info(bs
);
263 info
->has_format_specific
= info
->format_specific
!= NULL
;
265 backing_filename
= bs
->backing_file
;
266 if (backing_filename
[0] != '\0') {
267 char *backing_filename2
= g_malloc0(PATH_MAX
);
268 info
->backing_filename
= g_strdup(backing_filename
);
269 info
->has_backing_filename
= true;
270 bdrv_get_full_backing_filename(bs
, backing_filename2
, PATH_MAX
, &err
);
272 /* Can't reconstruct the full backing filename, so we must omit
273 * this field and apply a Best Effort to this query. */
274 g_free(backing_filename2
);
275 backing_filename2
= NULL
;
280 /* Always report the full_backing_filename if present, even if it's the
281 * same as backing_filename. That they are same is useful info. */
282 if (backing_filename2
) {
283 info
->full_backing_filename
= g_strdup(backing_filename2
);
284 info
->has_full_backing_filename
= true;
287 if (bs
->backing_format
[0]) {
288 info
->backing_filename_format
= g_strdup(bs
->backing_format
);
289 info
->has_backing_filename_format
= true;
291 g_free(backing_filename2
);
294 ret
= bdrv_query_snapshot_info_list(bs
, &info
->snapshots
, &err
);
297 if (info
->snapshots
) {
298 info
->has_snapshots
= true;
301 /* recoverable error */
307 error_propagate(errp
, err
);
308 qapi_free_ImageInfo(info
);
315 aio_context_release(bdrv_get_aio_context(bs
));
318 /* @p_info will be set only on success. */
319 static void bdrv_query_info(BlockBackend
*blk
, BlockInfo
**p_info
,
322 BlockInfo
*info
= g_malloc0(sizeof(*info
));
323 BlockDriverState
*bs
= blk_bs(blk
);
324 info
->device
= g_strdup(blk_name(blk
));
325 info
->type
= g_strdup("unknown");
326 info
->locked
= blk_dev_is_medium_locked(blk
);
327 info
->removable
= blk_dev_has_removable_media(blk
);
329 if (blk_dev_has_tray(blk
)) {
330 info
->has_tray_open
= true;
331 info
->tray_open
= blk_dev_is_tray_open(blk
);
334 if (blk_iostatus_is_enabled(blk
)) {
335 info
->has_io_status
= true;
336 info
->io_status
= blk_iostatus(blk
);
339 if (bs
&& !QLIST_EMPTY(&bs
->dirty_bitmaps
)) {
340 info
->has_dirty_bitmaps
= true;
341 info
->dirty_bitmaps
= bdrv_query_dirty_bitmaps(bs
);
345 info
->has_inserted
= true;
346 info
->inserted
= bdrv_block_device_info(bs
, errp
);
347 if (info
->inserted
== NULL
) {
356 qapi_free_BlockInfo(info
);
359 static BlockStats
*bdrv_query_stats(BlockBackend
*blk
,
360 const BlockDriverState
*bs
,
363 static void bdrv_query_blk_stats(BlockStats
*s
, BlockBackend
*blk
)
365 BlockAcctStats
*stats
= blk_get_stats(blk
);
366 BlockAcctTimedStats
*ts
= NULL
;
368 s
->has_device
= true;
369 s
->device
= g_strdup(blk_name(blk
));
371 s
->stats
->rd_bytes
= stats
->nr_bytes
[BLOCK_ACCT_READ
];
372 s
->stats
->wr_bytes
= stats
->nr_bytes
[BLOCK_ACCT_WRITE
];
373 s
->stats
->rd_operations
= stats
->nr_ops
[BLOCK_ACCT_READ
];
374 s
->stats
->wr_operations
= stats
->nr_ops
[BLOCK_ACCT_WRITE
];
376 s
->stats
->failed_rd_operations
= stats
->failed_ops
[BLOCK_ACCT_READ
];
377 s
->stats
->failed_wr_operations
= stats
->failed_ops
[BLOCK_ACCT_WRITE
];
378 s
->stats
->failed_flush_operations
= stats
->failed_ops
[BLOCK_ACCT_FLUSH
];
380 s
->stats
->invalid_rd_operations
= stats
->invalid_ops
[BLOCK_ACCT_READ
];
381 s
->stats
->invalid_wr_operations
= stats
->invalid_ops
[BLOCK_ACCT_WRITE
];
382 s
->stats
->invalid_flush_operations
=
383 stats
->invalid_ops
[BLOCK_ACCT_FLUSH
];
385 s
->stats
->rd_merged
= stats
->merged
[BLOCK_ACCT_READ
];
386 s
->stats
->wr_merged
= stats
->merged
[BLOCK_ACCT_WRITE
];
387 s
->stats
->flush_operations
= stats
->nr_ops
[BLOCK_ACCT_FLUSH
];
388 s
->stats
->wr_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_WRITE
];
389 s
->stats
->rd_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_READ
];
390 s
->stats
->flush_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_FLUSH
];
392 s
->stats
->has_idle_time_ns
= stats
->last_access_time_ns
> 0;
393 if (s
->stats
->has_idle_time_ns
) {
394 s
->stats
->idle_time_ns
= block_acct_idle_time_ns(stats
);
397 s
->stats
->account_invalid
= stats
->account_invalid
;
398 s
->stats
->account_failed
= stats
->account_failed
;
400 while ((ts
= block_acct_interval_next(stats
, ts
))) {
401 BlockDeviceTimedStatsList
*timed_stats
=
402 g_malloc0(sizeof(*timed_stats
));
403 BlockDeviceTimedStats
*dev_stats
= g_malloc0(sizeof(*dev_stats
));
404 timed_stats
->next
= s
->stats
->timed_stats
;
405 timed_stats
->value
= dev_stats
;
406 s
->stats
->timed_stats
= timed_stats
;
408 TimedAverage
*rd
= &ts
->latency
[BLOCK_ACCT_READ
];
409 TimedAverage
*wr
= &ts
->latency
[BLOCK_ACCT_WRITE
];
410 TimedAverage
*fl
= &ts
->latency
[BLOCK_ACCT_FLUSH
];
412 dev_stats
->interval_length
= ts
->interval_length
;
414 dev_stats
->min_rd_latency_ns
= timed_average_min(rd
);
415 dev_stats
->max_rd_latency_ns
= timed_average_max(rd
);
416 dev_stats
->avg_rd_latency_ns
= timed_average_avg(rd
);
418 dev_stats
->min_wr_latency_ns
= timed_average_min(wr
);
419 dev_stats
->max_wr_latency_ns
= timed_average_max(wr
);
420 dev_stats
->avg_wr_latency_ns
= timed_average_avg(wr
);
422 dev_stats
->min_flush_latency_ns
= timed_average_min(fl
);
423 dev_stats
->max_flush_latency_ns
= timed_average_max(fl
);
424 dev_stats
->avg_flush_latency_ns
= timed_average_avg(fl
);
426 dev_stats
->avg_rd_queue_depth
=
427 block_acct_queue_depth(ts
, BLOCK_ACCT_READ
);
428 dev_stats
->avg_wr_queue_depth
=
429 block_acct_queue_depth(ts
, BLOCK_ACCT_WRITE
);
433 static void bdrv_query_bds_stats(BlockStats
*s
, const BlockDriverState
*bs
,
436 if (bdrv_get_node_name(bs
)[0]) {
437 s
->has_node_name
= true;
438 s
->node_name
= g_strdup(bdrv_get_node_name(bs
));
441 s
->stats
->wr_highest_offset
= bs
->wr_highest_offset
;
444 s
->has_parent
= true;
445 s
->parent
= bdrv_query_stats(NULL
, bs
->file
->bs
, query_backing
);
448 if (query_backing
&& bs
->backing
) {
449 s
->has_backing
= true;
450 s
->backing
= bdrv_query_stats(NULL
, bs
->backing
->bs
, query_backing
);
455 static BlockStats
*bdrv_query_stats(BlockBackend
*blk
,
456 const BlockDriverState
*bs
,
461 s
= g_malloc0(sizeof(*s
));
462 s
->stats
= g_malloc0(sizeof(*s
->stats
));
465 bdrv_query_blk_stats(s
, blk
);
468 bdrv_query_bds_stats(s
, bs
, query_backing
);
474 BlockInfoList
*qmp_query_block(Error
**errp
)
476 BlockInfoList
*head
= NULL
, **p_next
= &head
;
478 Error
*local_err
= NULL
;
480 for (blk
= blk_next(NULL
); blk
; blk
= blk_next(blk
)) {
481 BlockInfoList
*info
= g_malloc0(sizeof(*info
));
482 bdrv_query_info(blk
, &info
->value
, &local_err
);
484 error_propagate(errp
, local_err
);
486 qapi_free_BlockInfoList(head
);
491 p_next
= &info
->next
;
497 static bool next_query_bds(BlockBackend
**blk
, BlockDriverState
**bs
,
501 *bs
= bdrv_next_node(*bs
);
505 *blk
= blk_next(*blk
);
506 *bs
= *blk
? blk_bs(*blk
) : NULL
;
511 BlockStatsList
*qmp_query_blockstats(bool has_query_nodes
,
515 BlockStatsList
*head
= NULL
, **p_next
= &head
;
516 BlockBackend
*blk
= NULL
;
517 BlockDriverState
*bs
= NULL
;
519 /* Just to be safe if query_nodes is not always initialized */
520 query_nodes
= has_query_nodes
&& query_nodes
;
522 while (next_query_bds(&blk
, &bs
, query_nodes
)) {
523 BlockStatsList
*info
= g_malloc0(sizeof(*info
));
524 AioContext
*ctx
= blk
? blk_get_aio_context(blk
)
525 : bdrv_get_aio_context(bs
);
527 aio_context_acquire(ctx
);
528 info
->value
= bdrv_query_stats(blk
, bs
, !query_nodes
);
529 aio_context_release(ctx
);
532 p_next
= &info
->next
;
538 #define NB_SUFFIXES 4
540 static char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
542 static const char suffixes
[NB_SUFFIXES
] = {'K', 'M', 'G', 'T'};
547 snprintf(buf
, buf_size
, "%" PRId64
, size
);
550 for (i
= 0; i
< NB_SUFFIXES
; i
++) {
551 if (size
< (10 * base
)) {
552 snprintf(buf
, buf_size
, "%0.1f%c",
556 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
557 snprintf(buf
, buf_size
, "%" PRId64
"%c",
558 ((size
+ (base
>> 1)) / base
),
568 void bdrv_snapshot_dump(fprintf_function func_fprintf
, void *f
,
569 QEMUSnapshotInfo
*sn
)
571 char buf1
[128], date_buf
[128], clock_buf
[128];
578 "%-10s%-20s%7s%20s%15s",
579 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
582 localtime_r(&ti
, &tm
);
583 strftime(date_buf
, sizeof(date_buf
),
584 "%Y-%m-%d %H:%M:%S", &tm
);
585 secs
= sn
->vm_clock_nsec
/ 1000000000;
586 snprintf(clock_buf
, sizeof(clock_buf
),
587 "%02d:%02d:%02d.%03d",
589 (int)((secs
/ 60) % 60),
591 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
593 "%-10s%-20s%7s%20s%15s",
594 sn
->id_str
, sn
->name
,
595 get_human_readable_size(buf1
, sizeof(buf1
),
602 static void dump_qdict(fprintf_function func_fprintf
, void *f
, int indentation
,
604 static void dump_qlist(fprintf_function func_fprintf
, void *f
, int indentation
,
607 static void dump_qobject(fprintf_function func_fprintf
, void *f
,
608 int comp_indent
, QObject
*obj
)
610 switch (qobject_type(obj
)) {
612 QInt
*value
= qobject_to_qint(obj
);
613 func_fprintf(f
, "%" PRId64
, qint_get_int(value
));
616 case QTYPE_QSTRING
: {
617 QString
*value
= qobject_to_qstring(obj
);
618 func_fprintf(f
, "%s", qstring_get_str(value
));
622 QDict
*value
= qobject_to_qdict(obj
);
623 dump_qdict(func_fprintf
, f
, comp_indent
, value
);
627 QList
*value
= qobject_to_qlist(obj
);
628 dump_qlist(func_fprintf
, f
, comp_indent
, value
);
632 QFloat
*value
= qobject_to_qfloat(obj
);
633 func_fprintf(f
, "%g", qfloat_get_double(value
));
637 QBool
*value
= qobject_to_qbool(obj
);
638 func_fprintf(f
, "%s", qbool_get_bool(value
) ? "true" : "false");
646 static void dump_qlist(fprintf_function func_fprintf
, void *f
, int indentation
,
649 const QListEntry
*entry
;
652 for (entry
= qlist_first(list
); entry
; entry
= qlist_next(entry
), i
++) {
653 QType type
= qobject_type(entry
->value
);
654 bool composite
= (type
== QTYPE_QDICT
|| type
== QTYPE_QLIST
);
655 const char *format
= composite
? "%*s[%i]:\n" : "%*s[%i]: ";
657 func_fprintf(f
, format
, indentation
* 4, "", i
);
658 dump_qobject(func_fprintf
, f
, indentation
+ 1, entry
->value
);
660 func_fprintf(f
, "\n");
665 static void dump_qdict(fprintf_function func_fprintf
, void *f
, int indentation
,
668 const QDictEntry
*entry
;
670 for (entry
= qdict_first(dict
); entry
; entry
= qdict_next(dict
, entry
)) {
671 QType type
= qobject_type(entry
->value
);
672 bool composite
= (type
== QTYPE_QDICT
|| type
== QTYPE_QLIST
);
673 const char *format
= composite
? "%*s%s:\n" : "%*s%s: ";
674 char key
[strlen(entry
->key
) + 1];
677 /* replace dashes with spaces in key (variable) names */
678 for (i
= 0; entry
->key
[i
]; i
++) {
679 key
[i
] = entry
->key
[i
] == '-' ? ' ' : entry
->key
[i
];
683 func_fprintf(f
, format
, indentation
* 4, "", key
);
684 dump_qobject(func_fprintf
, f
, indentation
+ 1, entry
->value
);
686 func_fprintf(f
, "\n");
691 void bdrv_image_info_specific_dump(fprintf_function func_fprintf
, void *f
,
692 ImageInfoSpecific
*info_spec
)
694 QmpOutputVisitor
*ov
= qmp_output_visitor_new();
697 visit_type_ImageInfoSpecific(qmp_output_get_visitor(ov
), NULL
, &info_spec
,
699 obj
= qmp_output_get_qobject(ov
);
700 assert(qobject_type(obj
) == QTYPE_QDICT
);
701 data
= qdict_get(qobject_to_qdict(obj
), "data");
702 dump_qobject(func_fprintf
, f
, 1, data
);
703 qmp_output_visitor_cleanup(ov
);
706 void bdrv_image_info_dump(fprintf_function func_fprintf
, void *f
,
709 char size_buf
[128], dsize_buf
[128];
710 if (!info
->has_actual_size
) {
711 snprintf(dsize_buf
, sizeof(dsize_buf
), "unavailable");
713 get_human_readable_size(dsize_buf
, sizeof(dsize_buf
),
716 get_human_readable_size(size_buf
, sizeof(size_buf
), info
->virtual_size
);
720 "virtual size: %s (%" PRId64
" bytes)\n"
722 info
->filename
, info
->format
, size_buf
,
726 if (info
->has_encrypted
&& info
->encrypted
) {
727 func_fprintf(f
, "encrypted: yes\n");
730 if (info
->has_cluster_size
) {
731 func_fprintf(f
, "cluster_size: %" PRId64
"\n",
735 if (info
->has_dirty_flag
&& info
->dirty_flag
) {
736 func_fprintf(f
, "cleanly shut down: no\n");
739 if (info
->has_backing_filename
) {
740 func_fprintf(f
, "backing file: %s", info
->backing_filename
);
741 if (!info
->has_full_backing_filename
) {
742 func_fprintf(f
, " (cannot determine actual path)");
743 } else if (strcmp(info
->backing_filename
,
744 info
->full_backing_filename
) != 0) {
745 func_fprintf(f
, " (actual path: %s)", info
->full_backing_filename
);
747 func_fprintf(f
, "\n");
748 if (info
->has_backing_filename_format
) {
749 func_fprintf(f
, "backing file format: %s\n",
750 info
->backing_filename_format
);
754 if (info
->has_snapshots
) {
755 SnapshotInfoList
*elem
;
757 func_fprintf(f
, "Snapshot list:\n");
758 bdrv_snapshot_dump(func_fprintf
, f
, NULL
);
759 func_fprintf(f
, "\n");
761 /* Ideally bdrv_snapshot_dump() would operate on SnapshotInfoList but
762 * we convert to the block layer's native QEMUSnapshotInfo for now.
764 for (elem
= info
->snapshots
; elem
; elem
= elem
->next
) {
765 QEMUSnapshotInfo sn
= {
766 .vm_state_size
= elem
->value
->vm_state_size
,
767 .date_sec
= elem
->value
->date_sec
,
768 .date_nsec
= elem
->value
->date_nsec
,
769 .vm_clock_nsec
= elem
->value
->vm_clock_sec
* 1000000000ULL +
770 elem
->value
->vm_clock_nsec
,
773 pstrcpy(sn
.id_str
, sizeof(sn
.id_str
), elem
->value
->id
);
774 pstrcpy(sn
.name
, sizeof(sn
.name
), elem
->value
->name
);
775 bdrv_snapshot_dump(func_fprintf
, f
, &sn
);
776 func_fprintf(f
, "\n");
780 if (info
->has_format_specific
) {
781 func_fprintf(f
, "Format specific information:\n");
782 bdrv_image_info_specific_dump(func_fprintf
, f
, info
->format_specific
);