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 "qapi/error.h"
31 #include "qapi/qapi-commands-block-core.h"
32 #include "qapi/qobject-output-visitor.h"
33 #include "qapi/qapi-visit-block-core.h"
34 #include "qapi/qmp/qbool.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qlist.h"
37 #include "qapi/qmp/qnum.h"
38 #include "qapi/qmp/qstring.h"
39 #include "sysemu/block-backend.h"
40 #include "qemu/cutils.h"
42 BlockDeviceInfo
*bdrv_block_device_info(BlockBackend
*blk
,
43 BlockDriverState
*bs
, Error
**errp
)
45 ImageInfo
**p_image_info
;
46 BlockDriverState
*bs0
;
47 BlockDeviceInfo
*info
;
50 error_setg(errp
, "Block device %s is ejected", bs
->node_name
);
54 bdrv_refresh_filename(bs
);
56 info
= g_malloc0(sizeof(*info
));
57 info
->file
= g_strdup(bs
->filename
);
58 info
->ro
= bs
->read_only
;
59 info
->drv
= g_strdup(bs
->drv
->format_name
);
60 info
->encrypted
= bs
->encrypted
;
61 info
->encryption_key_missing
= false;
63 info
->cache
= g_new(BlockdevCacheInfo
, 1);
64 *info
->cache
= (BlockdevCacheInfo
) {
65 .writeback
= blk
? blk_enable_write_cache(blk
) : true,
66 .direct
= !!(bs
->open_flags
& BDRV_O_NOCACHE
),
67 .no_flush
= !!(bs
->open_flags
& BDRV_O_NO_FLUSH
),
70 if (bs
->node_name
[0]) {
71 info
->has_node_name
= true;
72 info
->node_name
= g_strdup(bs
->node_name
);
75 if (bs
->backing_file
[0]) {
76 info
->has_backing_file
= true;
77 info
->backing_file
= g_strdup(bs
->backing_file
);
80 info
->detect_zeroes
= bs
->detect_zeroes
;
82 if (blk
&& blk_get_public(blk
)->throttle_group_member
.throttle_state
) {
84 BlockBackendPublic
*blkp
= blk_get_public(blk
);
86 throttle_group_get_config(&blkp
->throttle_group_member
, &cfg
);
88 info
->bps
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
;
89 info
->bps_rd
= cfg
.buckets
[THROTTLE_BPS_READ
].avg
;
90 info
->bps_wr
= cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
;
92 info
->iops
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
;
93 info
->iops_rd
= cfg
.buckets
[THROTTLE_OPS_READ
].avg
;
94 info
->iops_wr
= cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
;
96 info
->has_bps_max
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
;
97 info
->bps_max
= cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
;
98 info
->has_bps_rd_max
= cfg
.buckets
[THROTTLE_BPS_READ
].max
;
99 info
->bps_rd_max
= cfg
.buckets
[THROTTLE_BPS_READ
].max
;
100 info
->has_bps_wr_max
= cfg
.buckets
[THROTTLE_BPS_WRITE
].max
;
101 info
->bps_wr_max
= cfg
.buckets
[THROTTLE_BPS_WRITE
].max
;
103 info
->has_iops_max
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
;
104 info
->iops_max
= cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
;
105 info
->has_iops_rd_max
= cfg
.buckets
[THROTTLE_OPS_READ
].max
;
106 info
->iops_rd_max
= cfg
.buckets
[THROTTLE_OPS_READ
].max
;
107 info
->has_iops_wr_max
= cfg
.buckets
[THROTTLE_OPS_WRITE
].max
;
108 info
->iops_wr_max
= cfg
.buckets
[THROTTLE_OPS_WRITE
].max
;
110 info
->has_bps_max_length
= info
->has_bps_max
;
111 info
->bps_max_length
=
112 cfg
.buckets
[THROTTLE_BPS_TOTAL
].burst_length
;
113 info
->has_bps_rd_max_length
= info
->has_bps_rd_max
;
114 info
->bps_rd_max_length
=
115 cfg
.buckets
[THROTTLE_BPS_READ
].burst_length
;
116 info
->has_bps_wr_max_length
= info
->has_bps_wr_max
;
117 info
->bps_wr_max_length
=
118 cfg
.buckets
[THROTTLE_BPS_WRITE
].burst_length
;
120 info
->has_iops_max_length
= info
->has_iops_max
;
121 info
->iops_max_length
=
122 cfg
.buckets
[THROTTLE_OPS_TOTAL
].burst_length
;
123 info
->has_iops_rd_max_length
= info
->has_iops_rd_max
;
124 info
->iops_rd_max_length
=
125 cfg
.buckets
[THROTTLE_OPS_READ
].burst_length
;
126 info
->has_iops_wr_max_length
= info
->has_iops_wr_max
;
127 info
->iops_wr_max_length
=
128 cfg
.buckets
[THROTTLE_OPS_WRITE
].burst_length
;
130 info
->has_iops_size
= cfg
.op_size
;
131 info
->iops_size
= cfg
.op_size
;
133 info
->has_group
= true;
135 g_strdup(throttle_group_get_name(&blkp
->throttle_group_member
));
138 info
->write_threshold
= bdrv_write_threshold_get(bs
);
141 p_image_info
= &info
->image
;
142 info
->backing_file_depth
= 0;
144 Error
*local_err
= NULL
;
145 bdrv_query_image_info(bs0
, p_image_info
, &local_err
);
147 error_propagate(errp
, local_err
);
148 qapi_free_BlockDeviceInfo(info
);
152 if (bs0
->drv
&& bs0
->backing
) {
153 info
->backing_file_depth
++;
154 bs0
= bs0
->backing
->bs
;
155 (*p_image_info
)->has_backing_image
= true;
156 p_image_info
= &((*p_image_info
)->backing_image
);
161 /* Skip automatically inserted nodes that the user isn't aware of for
162 * query-block (blk != NULL), but not for query-named-block-nodes */
163 while (blk
&& bs0
->drv
&& bs0
->implicit
) {
164 bs0
= backing_bs(bs0
);
173 * Returns 0 on success, with *p_list either set to describe snapshot
174 * information, or NULL because there are no snapshots. Returns -errno on
175 * error, with *p_list untouched.
177 int bdrv_query_snapshot_info_list(BlockDriverState
*bs
,
178 SnapshotInfoList
**p_list
,
182 QEMUSnapshotInfo
*sn_tab
= NULL
;
183 SnapshotInfoList
*info_list
, *cur_item
= NULL
, *head
= NULL
;
186 sn_count
= bdrv_snapshot_list(bs
, &sn_tab
);
188 const char *dev
= bdrv_get_device_name(bs
);
191 error_setg(errp
, "Device '%s' is not inserted", dev
);
195 "Device '%s' does not support internal snapshots",
199 error_setg_errno(errp
, -sn_count
,
200 "Can't list snapshots of device '%s'", dev
);
206 for (i
= 0; i
< sn_count
; i
++) {
207 info
= g_new0(SnapshotInfo
, 1);
208 info
->id
= g_strdup(sn_tab
[i
].id_str
);
209 info
->name
= g_strdup(sn_tab
[i
].name
);
210 info
->vm_state_size
= sn_tab
[i
].vm_state_size
;
211 info
->date_sec
= sn_tab
[i
].date_sec
;
212 info
->date_nsec
= sn_tab
[i
].date_nsec
;
213 info
->vm_clock_sec
= sn_tab
[i
].vm_clock_nsec
/ 1000000000;
214 info
->vm_clock_nsec
= sn_tab
[i
].vm_clock_nsec
% 1000000000;
216 info_list
= g_new0(SnapshotInfoList
, 1);
217 info_list
->value
= info
;
219 /* XXX: waiting for the qapi to support qemu-queue.h types */
221 head
= cur_item
= info_list
;
223 cur_item
->next
= info_list
;
224 cur_item
= info_list
;
235 * bdrv_query_image_info:
236 * @bs: block device to examine
237 * @p_info: location to store image information
238 * @errp: location to store error information
240 * Store "flat" image information in @p_info.
242 * "Flat" means it does *not* query backing image information,
243 * i.e. (*pinfo)->has_backing_image will be set to false and
244 * (*pinfo)->backing_image to NULL even when the image does in fact have
247 * @p_info will be set only on success. On error, store error in @errp.
249 void bdrv_query_image_info(BlockDriverState
*bs
,
254 const char *backing_filename
;
260 aio_context_acquire(bdrv_get_aio_context(bs
));
262 size
= bdrv_getlength(bs
);
264 error_setg_errno(errp
, -size
, "Can't get image size '%s'",
269 bdrv_refresh_filename(bs
);
271 info
= g_new0(ImageInfo
, 1);
272 info
->filename
= g_strdup(bs
->filename
);
273 info
->format
= g_strdup(bdrv_get_format_name(bs
));
274 info
->virtual_size
= size
;
275 info
->actual_size
= bdrv_get_allocated_file_size(bs
);
276 info
->has_actual_size
= info
->actual_size
>= 0;
277 if (bdrv_is_encrypted(bs
)) {
278 info
->encrypted
= true;
279 info
->has_encrypted
= true;
281 if (bdrv_get_info(bs
, &bdi
) >= 0) {
282 if (bdi
.cluster_size
!= 0) {
283 info
->cluster_size
= bdi
.cluster_size
;
284 info
->has_cluster_size
= true;
286 info
->dirty_flag
= bdi
.is_dirty
;
287 info
->has_dirty_flag
= true;
289 info
->format_specific
= bdrv_get_specific_info(bs
, &err
);
291 error_propagate(errp
, err
);
292 qapi_free_ImageInfo(info
);
295 info
->has_format_specific
= info
->format_specific
!= NULL
;
297 backing_filename
= bs
->backing_file
;
298 if (backing_filename
[0] != '\0') {
299 char *backing_filename2
;
300 info
->backing_filename
= g_strdup(backing_filename
);
301 info
->has_backing_filename
= true;
302 backing_filename2
= bdrv_get_full_backing_filename(bs
, NULL
);
304 /* Always report the full_backing_filename if present, even if it's the
305 * same as backing_filename. That they are same is useful info. */
306 if (backing_filename2
) {
307 info
->full_backing_filename
= g_strdup(backing_filename2
);
308 info
->has_full_backing_filename
= true;
311 if (bs
->backing_format
[0]) {
312 info
->backing_filename_format
= g_strdup(bs
->backing_format
);
313 info
->has_backing_filename_format
= true;
315 g_free(backing_filename2
);
318 ret
= bdrv_query_snapshot_info_list(bs
, &info
->snapshots
, &err
);
321 if (info
->snapshots
) {
322 info
->has_snapshots
= true;
325 /* recoverable error */
331 error_propagate(errp
, err
);
332 qapi_free_ImageInfo(info
);
339 aio_context_release(bdrv_get_aio_context(bs
));
342 /* @p_info will be set only on success. */
343 static void bdrv_query_info(BlockBackend
*blk
, BlockInfo
**p_info
,
346 BlockInfo
*info
= g_malloc0(sizeof(*info
));
347 BlockDriverState
*bs
= blk_bs(blk
);
350 /* Skip automatically inserted nodes that the user isn't aware of */
351 while (bs
&& bs
->drv
&& bs
->implicit
) {
355 info
->device
= g_strdup(blk_name(blk
));
356 info
->type
= g_strdup("unknown");
357 info
->locked
= blk_dev_is_medium_locked(blk
);
358 info
->removable
= blk_dev_has_removable_media(blk
);
360 qdev
= blk_get_attached_dev_id(blk
);
362 info
->has_qdev
= true;
368 if (blk_dev_has_tray(blk
)) {
369 info
->has_tray_open
= true;
370 info
->tray_open
= blk_dev_is_tray_open(blk
);
373 if (blk_iostatus_is_enabled(blk
)) {
374 info
->has_io_status
= true;
375 info
->io_status
= blk_iostatus(blk
);
378 if (bs
&& !QLIST_EMPTY(&bs
->dirty_bitmaps
)) {
379 info
->has_dirty_bitmaps
= true;
380 info
->dirty_bitmaps
= bdrv_query_dirty_bitmaps(bs
);
384 info
->has_inserted
= true;
385 info
->inserted
= bdrv_block_device_info(blk
, bs
, errp
);
386 if (info
->inserted
== NULL
) {
395 qapi_free_BlockInfo(info
);
398 static uint64List
*uint64_list(uint64_t *list
, int size
)
401 uint64List
*out_list
= NULL
;
402 uint64List
**pout_list
= &out_list
;
404 for (i
= 0; i
< size
; i
++) {
405 uint64List
*entry
= g_new(uint64List
, 1);
406 entry
->value
= list
[i
];
408 pout_list
= &entry
->next
;
416 static void bdrv_latency_histogram_stats(BlockLatencyHistogram
*hist
,
418 BlockLatencyHistogramInfo
**info
)
420 *not_null
= hist
->bins
!= NULL
;
422 *info
= g_new0(BlockLatencyHistogramInfo
, 1);
424 (*info
)->boundaries
= uint64_list(hist
->boundaries
, hist
->nbins
- 1);
425 (*info
)->bins
= uint64_list(hist
->bins
, hist
->nbins
);
429 static void bdrv_query_blk_stats(BlockDeviceStats
*ds
, BlockBackend
*blk
)
431 BlockAcctStats
*stats
= blk_get_stats(blk
);
432 BlockAcctTimedStats
*ts
= NULL
;
434 ds
->rd_bytes
= stats
->nr_bytes
[BLOCK_ACCT_READ
];
435 ds
->wr_bytes
= stats
->nr_bytes
[BLOCK_ACCT_WRITE
];
436 ds
->rd_operations
= stats
->nr_ops
[BLOCK_ACCT_READ
];
437 ds
->wr_operations
= stats
->nr_ops
[BLOCK_ACCT_WRITE
];
439 ds
->failed_rd_operations
= stats
->failed_ops
[BLOCK_ACCT_READ
];
440 ds
->failed_wr_operations
= stats
->failed_ops
[BLOCK_ACCT_WRITE
];
441 ds
->failed_flush_operations
= stats
->failed_ops
[BLOCK_ACCT_FLUSH
];
443 ds
->invalid_rd_operations
= stats
->invalid_ops
[BLOCK_ACCT_READ
];
444 ds
->invalid_wr_operations
= stats
->invalid_ops
[BLOCK_ACCT_WRITE
];
445 ds
->invalid_flush_operations
=
446 stats
->invalid_ops
[BLOCK_ACCT_FLUSH
];
448 ds
->rd_merged
= stats
->merged
[BLOCK_ACCT_READ
];
449 ds
->wr_merged
= stats
->merged
[BLOCK_ACCT_WRITE
];
450 ds
->flush_operations
= stats
->nr_ops
[BLOCK_ACCT_FLUSH
];
451 ds
->wr_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_WRITE
];
452 ds
->rd_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_READ
];
453 ds
->flush_total_time_ns
= stats
->total_time_ns
[BLOCK_ACCT_FLUSH
];
455 ds
->has_idle_time_ns
= stats
->last_access_time_ns
> 0;
456 if (ds
->has_idle_time_ns
) {
457 ds
->idle_time_ns
= block_acct_idle_time_ns(stats
);
460 ds
->account_invalid
= stats
->account_invalid
;
461 ds
->account_failed
= stats
->account_failed
;
463 while ((ts
= block_acct_interval_next(stats
, ts
))) {
464 BlockDeviceTimedStatsList
*timed_stats
=
465 g_malloc0(sizeof(*timed_stats
));
466 BlockDeviceTimedStats
*dev_stats
= g_malloc0(sizeof(*dev_stats
));
467 timed_stats
->next
= ds
->timed_stats
;
468 timed_stats
->value
= dev_stats
;
469 ds
->timed_stats
= timed_stats
;
471 TimedAverage
*rd
= &ts
->latency
[BLOCK_ACCT_READ
];
472 TimedAverage
*wr
= &ts
->latency
[BLOCK_ACCT_WRITE
];
473 TimedAverage
*fl
= &ts
->latency
[BLOCK_ACCT_FLUSH
];
475 dev_stats
->interval_length
= ts
->interval_length
;
477 dev_stats
->min_rd_latency_ns
= timed_average_min(rd
);
478 dev_stats
->max_rd_latency_ns
= timed_average_max(rd
);
479 dev_stats
->avg_rd_latency_ns
= timed_average_avg(rd
);
481 dev_stats
->min_wr_latency_ns
= timed_average_min(wr
);
482 dev_stats
->max_wr_latency_ns
= timed_average_max(wr
);
483 dev_stats
->avg_wr_latency_ns
= timed_average_avg(wr
);
485 dev_stats
->min_flush_latency_ns
= timed_average_min(fl
);
486 dev_stats
->max_flush_latency_ns
= timed_average_max(fl
);
487 dev_stats
->avg_flush_latency_ns
= timed_average_avg(fl
);
489 dev_stats
->avg_rd_queue_depth
=
490 block_acct_queue_depth(ts
, BLOCK_ACCT_READ
);
491 dev_stats
->avg_wr_queue_depth
=
492 block_acct_queue_depth(ts
, BLOCK_ACCT_WRITE
);
495 bdrv_latency_histogram_stats(&stats
->latency_histogram
[BLOCK_ACCT_READ
],
496 &ds
->has_rd_latency_histogram
,
497 &ds
->rd_latency_histogram
);
498 bdrv_latency_histogram_stats(&stats
->latency_histogram
[BLOCK_ACCT_WRITE
],
499 &ds
->has_wr_latency_histogram
,
500 &ds
->wr_latency_histogram
);
501 bdrv_latency_histogram_stats(&stats
->latency_histogram
[BLOCK_ACCT_FLUSH
],
502 &ds
->has_flush_latency_histogram
,
503 &ds
->flush_latency_histogram
);
506 static BlockStats
*bdrv_query_bds_stats(BlockDriverState
*bs
,
509 BlockStats
*s
= NULL
;
511 s
= g_malloc0(sizeof(*s
));
512 s
->stats
= g_malloc0(sizeof(*s
->stats
));
518 /* Skip automatically inserted nodes that the user isn't aware of in
519 * a BlockBackend-level command. Stay at the exact node for a node-level
521 while (blk_level
&& bs
->drv
&& bs
->implicit
) {
526 if (bdrv_get_node_name(bs
)[0]) {
527 s
->has_node_name
= true;
528 s
->node_name
= g_strdup(bdrv_get_node_name(bs
));
531 s
->stats
->wr_highest_offset
= stat64_get(&bs
->wr_highest_offset
);
534 s
->has_parent
= true;
535 s
->parent
= bdrv_query_bds_stats(bs
->file
->bs
, blk_level
);
538 if (blk_level
&& bs
->backing
) {
539 s
->has_backing
= true;
540 s
->backing
= bdrv_query_bds_stats(bs
->backing
->bs
, blk_level
);
546 BlockInfoList
*qmp_query_block(Error
**errp
)
548 BlockInfoList
*head
= NULL
, **p_next
= &head
;
550 Error
*local_err
= NULL
;
552 for (blk
= blk_all_next(NULL
); blk
; blk
= blk_all_next(blk
)) {
555 if (!*blk_name(blk
) && !blk_get_attached_dev(blk
)) {
559 info
= g_malloc0(sizeof(*info
));
560 bdrv_query_info(blk
, &info
->value
, &local_err
);
562 error_propagate(errp
, local_err
);
564 qapi_free_BlockInfoList(head
);
569 p_next
= &info
->next
;
575 BlockStatsList
*qmp_query_blockstats(bool has_query_nodes
,
579 BlockStatsList
*head
= NULL
, **p_next
= &head
;
581 BlockDriverState
*bs
;
583 /* Just to be safe if query_nodes is not always initialized */
584 if (has_query_nodes
&& query_nodes
) {
585 for (bs
= bdrv_next_node(NULL
); bs
; bs
= bdrv_next_node(bs
)) {
586 BlockStatsList
*info
= g_malloc0(sizeof(*info
));
587 AioContext
*ctx
= bdrv_get_aio_context(bs
);
589 aio_context_acquire(ctx
);
590 info
->value
= bdrv_query_bds_stats(bs
, false);
591 aio_context_release(ctx
);
594 p_next
= &info
->next
;
597 for (blk
= blk_all_next(NULL
); blk
; blk
= blk_all_next(blk
)) {
598 BlockStatsList
*info
;
599 AioContext
*ctx
= blk_get_aio_context(blk
);
603 if (!*blk_name(blk
) && !blk_get_attached_dev(blk
)) {
607 aio_context_acquire(ctx
);
608 s
= bdrv_query_bds_stats(blk_bs(blk
), true);
609 s
->has_device
= true;
610 s
->device
= g_strdup(blk_name(blk
));
612 qdev
= blk_get_attached_dev_id(blk
);
620 bdrv_query_blk_stats(s
->stats
, blk
);
621 aio_context_release(ctx
);
623 info
= g_malloc0(sizeof(*info
));
626 p_next
= &info
->next
;
633 #define NB_SUFFIXES 4
635 static char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
637 static const char suffixes
[NB_SUFFIXES
] = {'K', 'M', 'G', 'T'};
642 snprintf(buf
, buf_size
, "%" PRId64
, size
);
645 for (i
= 0; i
< NB_SUFFIXES
; i
++) {
646 if (size
< (10 * base
)) {
647 snprintf(buf
, buf_size
, "%0.1f%c",
651 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
652 snprintf(buf
, buf_size
, "%" PRId64
"%c",
653 ((size
+ (base
>> 1)) / base
),
663 void bdrv_snapshot_dump(fprintf_function func_fprintf
, void *f
,
664 QEMUSnapshotInfo
*sn
)
666 char buf1
[128], date_buf
[128], clock_buf
[128];
673 "%-10s%-20s%7s%20s%15s",
674 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
677 localtime_r(&ti
, &tm
);
678 strftime(date_buf
, sizeof(date_buf
),
679 "%Y-%m-%d %H:%M:%S", &tm
);
680 secs
= sn
->vm_clock_nsec
/ 1000000000;
681 snprintf(clock_buf
, sizeof(clock_buf
),
682 "%02d:%02d:%02d.%03d",
684 (int)((secs
/ 60) % 60),
686 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
688 "%-10s%-20s%7s%20s%15s",
689 sn
->id_str
, sn
->name
,
690 get_human_readable_size(buf1
, sizeof(buf1
),
697 static void dump_qdict(fprintf_function func_fprintf
, void *f
, int indentation
,
699 static void dump_qlist(fprintf_function func_fprintf
, void *f
, int indentation
,
702 static void dump_qobject(fprintf_function func_fprintf
, void *f
,
703 int comp_indent
, QObject
*obj
)
705 switch (qobject_type(obj
)) {
707 QNum
*value
= qobject_to(QNum
, obj
);
708 char *tmp
= qnum_to_string(value
);
709 func_fprintf(f
, "%s", tmp
);
713 case QTYPE_QSTRING
: {
714 QString
*value
= qobject_to(QString
, obj
);
715 func_fprintf(f
, "%s", qstring_get_str(value
));
719 QDict
*value
= qobject_to(QDict
, obj
);
720 dump_qdict(func_fprintf
, f
, comp_indent
, value
);
724 QList
*value
= qobject_to(QList
, obj
);
725 dump_qlist(func_fprintf
, f
, comp_indent
, value
);
729 QBool
*value
= qobject_to(QBool
, obj
);
730 func_fprintf(f
, "%s", qbool_get_bool(value
) ? "true" : "false");
738 static void dump_qlist(fprintf_function func_fprintf
, void *f
, int indentation
,
741 const QListEntry
*entry
;
744 for (entry
= qlist_first(list
); entry
; entry
= qlist_next(entry
), i
++) {
745 QType type
= qobject_type(entry
->value
);
746 bool composite
= (type
== QTYPE_QDICT
|| type
== QTYPE_QLIST
);
747 func_fprintf(f
, "%*s[%i]:%c", indentation
* 4, "", i
,
748 composite
? '\n' : ' ');
749 dump_qobject(func_fprintf
, f
, indentation
+ 1, entry
->value
);
751 func_fprintf(f
, "\n");
756 static void dump_qdict(fprintf_function func_fprintf
, void *f
, int indentation
,
759 const QDictEntry
*entry
;
761 for (entry
= qdict_first(dict
); entry
; entry
= qdict_next(dict
, entry
)) {
762 QType type
= qobject_type(entry
->value
);
763 bool composite
= (type
== QTYPE_QDICT
|| type
== QTYPE_QLIST
);
764 char *key
= g_malloc(strlen(entry
->key
) + 1);
767 /* replace dashes with spaces in key (variable) names */
768 for (i
= 0; entry
->key
[i
]; i
++) {
769 key
[i
] = entry
->key
[i
] == '-' ? ' ' : entry
->key
[i
];
772 func_fprintf(f
, "%*s%s:%c", indentation
* 4, "", key
,
773 composite
? '\n' : ' ');
774 dump_qobject(func_fprintf
, f
, indentation
+ 1, entry
->value
);
776 func_fprintf(f
, "\n");
782 void bdrv_image_info_specific_dump(fprintf_function func_fprintf
, void *f
,
783 ImageInfoSpecific
*info_spec
)
786 Visitor
*v
= qobject_output_visitor_new(&obj
);
788 visit_type_ImageInfoSpecific(v
, NULL
, &info_spec
, &error_abort
);
789 visit_complete(v
, &obj
);
790 data
= qdict_get(qobject_to(QDict
, obj
), "data");
791 dump_qobject(func_fprintf
, f
, 1, data
);
796 void bdrv_image_info_dump(fprintf_function func_fprintf
, void *f
,
799 char size_buf
[128], dsize_buf
[128];
800 if (!info
->has_actual_size
) {
801 snprintf(dsize_buf
, sizeof(dsize_buf
), "unavailable");
803 get_human_readable_size(dsize_buf
, sizeof(dsize_buf
),
806 get_human_readable_size(size_buf
, sizeof(size_buf
), info
->virtual_size
);
810 "virtual size: %s (%" PRId64
" bytes)\n"
812 info
->filename
, info
->format
, size_buf
,
816 if (info
->has_encrypted
&& info
->encrypted
) {
817 func_fprintf(f
, "encrypted: yes\n");
820 if (info
->has_cluster_size
) {
821 func_fprintf(f
, "cluster_size: %" PRId64
"\n",
825 if (info
->has_dirty_flag
&& info
->dirty_flag
) {
826 func_fprintf(f
, "cleanly shut down: no\n");
829 if (info
->has_backing_filename
) {
830 func_fprintf(f
, "backing file: %s", info
->backing_filename
);
831 if (!info
->has_full_backing_filename
) {
832 func_fprintf(f
, " (cannot determine actual path)");
833 } else if (strcmp(info
->backing_filename
,
834 info
->full_backing_filename
) != 0) {
835 func_fprintf(f
, " (actual path: %s)", info
->full_backing_filename
);
837 func_fprintf(f
, "\n");
838 if (info
->has_backing_filename_format
) {
839 func_fprintf(f
, "backing file format: %s\n",
840 info
->backing_filename_format
);
844 if (info
->has_snapshots
) {
845 SnapshotInfoList
*elem
;
847 func_fprintf(f
, "Snapshot list:\n");
848 bdrv_snapshot_dump(func_fprintf
, f
, NULL
);
849 func_fprintf(f
, "\n");
851 /* Ideally bdrv_snapshot_dump() would operate on SnapshotInfoList but
852 * we convert to the block layer's native QEMUSnapshotInfo for now.
854 for (elem
= info
->snapshots
; elem
; elem
= elem
->next
) {
855 QEMUSnapshotInfo sn
= {
856 .vm_state_size
= elem
->value
->vm_state_size
,
857 .date_sec
= elem
->value
->date_sec
,
858 .date_nsec
= elem
->value
->date_nsec
,
859 .vm_clock_nsec
= elem
->value
->vm_clock_sec
* 1000000000ULL +
860 elem
->value
->vm_clock_nsec
,
863 pstrcpy(sn
.id_str
, sizeof(sn
.id_str
), elem
->value
->id
);
864 pstrcpy(sn
.name
, sizeof(sn
.name
), elem
->value
->name
);
865 bdrv_snapshot_dump(func_fprintf
, f
, &sn
);
866 func_fprintf(f
, "\n");
870 if (info
->has_format_specific
) {
871 func_fprintf(f
, "Format specific information:\n");
872 bdrv_image_info_specific_dump(func_fprintf
, f
, info
->format_specific
);