2 * Human Monitor Interface commands
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
8 #include "qemu/osdep.h"
9 #include "monitor/hmp.h"
10 #include "monitor/monitor.h"
11 #include "qapi/error.h"
12 #include "qapi/qapi-commands-dump.h"
13 #include "qapi/qmp/qdict.h"
15 void hmp_dump_guest_memory(Monitor
*mon
, const QDict
*qdict
)
18 bool win_dmp
= qdict_get_try_bool(qdict
, "windmp", false);
19 bool paging
= qdict_get_try_bool(qdict
, "paging", false);
20 bool zlib
= qdict_get_try_bool(qdict
, "zlib", false);
21 bool lzo
= qdict_get_try_bool(qdict
, "lzo", false);
22 bool snappy
= qdict_get_try_bool(qdict
, "snappy", false);
23 const char *file
= qdict_get_str(qdict
, "filename");
24 bool has_begin
= qdict_haskey(qdict
, "begin");
25 bool has_length
= qdict_haskey(qdict
, "length");
26 bool has_detach
= qdict_haskey(qdict
, "detach");
30 enum DumpGuestMemoryFormat dump_format
= DUMP_GUEST_MEMORY_FORMAT_ELF
;
33 if (zlib
+ lzo
+ snappy
+ win_dmp
> 1) {
34 error_setg(&err
, "only one of '-z|-l|-s|-w' can be set");
35 hmp_handle_error(mon
, err
);
40 dump_format
= DUMP_GUEST_MEMORY_FORMAT_WIN_DMP
;
44 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_ZLIB
;
48 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_LZO
;
52 dump_format
= DUMP_GUEST_MEMORY_FORMAT_KDUMP_SNAPPY
;
56 begin
= qdict_get_int(qdict
, "begin");
59 length
= qdict_get_int(qdict
, "length");
62 detach
= qdict_get_bool(qdict
, "detach");
65 prot
= g_strconcat("file:", file
, NULL
);
67 qmp_dump_guest_memory(paging
, prot
, true, detach
, has_begin
, begin
,
68 has_length
, length
, true, dump_format
, &err
);
69 hmp_handle_error(mon
, err
);
73 void hmp_info_dump(Monitor
*mon
, const QDict
*qdict
)
75 DumpQueryResult
*result
= qmp_query_dump(NULL
);
77 assert(result
&& result
->status
< DUMP_STATUS__MAX
);
78 monitor_printf(mon
, "Status: %s\n", DumpStatus_str(result
->status
));
80 if (result
->status
== DUMP_STATUS_ACTIVE
) {
82 assert(result
->total
!= 0);
83 percent
= 100.0 * result
->completed
/ result
->total
;
84 monitor_printf(mon
, "Finished: %.2f %%\n", percent
);
87 qapi_free_DumpQueryResult(result
);