]> git.proxmox.com Git - mirror_qemu.git/blame - hmp.c
block: Rename the BlockIOStatus enum values
[mirror_qemu.git] / hmp.c
CommitLineData
48a32bed
AL
1/*
2 * Human Monitor Interface
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#include "hmp.h"
15#include "qmp-commands.h"
16
17void hmp_info_name(Monitor *mon)
18{
19 NameInfo *info;
20
21 info = qmp_query_name(NULL);
22 if (info->has_name) {
23 monitor_printf(mon, "%s\n", info->name);
24 }
25 qapi_free_NameInfo(info);
26}
b9c15f16
LC
27
28void hmp_info_version(Monitor *mon)
29{
30 VersionInfo *info;
31
32 info = qmp_query_version(NULL);
33
34 monitor_printf(mon, "%" PRId64 ".%" PRId64 ".%" PRId64 "%s\n",
35 info->qemu.major, info->qemu.minor, info->qemu.micro,
36 info->package);
37
38 qapi_free_VersionInfo(info);
39}
292a2602
LC
40
41void hmp_info_kvm(Monitor *mon)
42{
43 KvmInfo *info;
44
45 info = qmp_query_kvm(NULL);
46 monitor_printf(mon, "kvm support: ");
47 if (info->present) {
48 monitor_printf(mon, "%s\n", info->enabled ? "enabled" : "disabled");
49 } else {
50 monitor_printf(mon, "not compiled\n");
51 }
52
53 qapi_free_KvmInfo(info);
54}
55
1fa9a5e4
LC
56void hmp_info_status(Monitor *mon)
57{
58 StatusInfo *info;
59
60 info = qmp_query_status(NULL);
61
62 monitor_printf(mon, "VM status: %s%s",
63 info->running ? "running" : "paused",
64 info->singlestep ? " (single step mode)" : "");
65
66 if (!info->running && info->status != RUN_STATE_PAUSED) {
67 monitor_printf(mon, " (%s)", RunState_lookup[info->status]);
68 }
69
70 monitor_printf(mon, "\n");
71
72 qapi_free_StatusInfo(info);
73}
74
efab767e
LC
75void hmp_info_uuid(Monitor *mon)
76{
77 UuidInfo *info;
78
79 info = qmp_query_uuid(NULL);
80 monitor_printf(mon, "%s\n", info->UUID);
81 qapi_free_UuidInfo(info);
82}
c5a415a0
LC
83
84void hmp_info_chardev(Monitor *mon)
85{
86 ChardevInfoList *char_info, *info;
87
88 char_info = qmp_query_chardev(NULL);
89 for (info = char_info; info; info = info->next) {
90 monitor_printf(mon, "%s: filename=%s\n", info->value->label,
91 info->value->filename);
92 }
93
94 qapi_free_ChardevInfoList(char_info);
95}
7a7f325e 96
e235cec3
LC
97void hmp_info_mice(Monitor *mon)
98{
99 MouseInfoList *mice_list, *mouse;
100
101 mice_list = qmp_query_mice(NULL);
102 if (!mice_list) {
103 monitor_printf(mon, "No mouse devices connected\n");
104 return;
105 }
106
107 for (mouse = mice_list; mouse; mouse = mouse->next) {
108 monitor_printf(mon, "%c Mouse #%" PRId64 ": %s%s\n",
109 mouse->value->current ? '*' : ' ',
110 mouse->value->index, mouse->value->name,
111 mouse->value->absolute ? " (absolute)" : "");
112 }
113
114 qapi_free_MouseInfoList(mice_list);
115}
116
791e7c82
LC
117void hmp_info_migrate(Monitor *mon)
118{
119 MigrationInfo *info;
120
121 info = qmp_query_migrate(NULL);
122
123 if (info->has_status) {
124 monitor_printf(mon, "Migration status: %s\n", info->status);
125 }
126
127 if (info->has_ram) {
128 monitor_printf(mon, "transferred ram: %" PRIu64 " kbytes\n",
129 info->ram->transferred >> 10);
130 monitor_printf(mon, "remaining ram: %" PRIu64 " kbytes\n",
131 info->ram->remaining >> 10);
132 monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n",
133 info->ram->total >> 10);
134 }
135
136 if (info->has_disk) {
137 monitor_printf(mon, "transferred disk: %" PRIu64 " kbytes\n",
138 info->disk->transferred >> 10);
139 monitor_printf(mon, "remaining disk: %" PRIu64 " kbytes\n",
140 info->disk->remaining >> 10);
141 monitor_printf(mon, "total disk: %" PRIu64 " kbytes\n",
142 info->disk->total >> 10);
143 }
144
145 qapi_free_MigrationInfo(info);
146}
147
de0b36b6
LC
148void hmp_info_cpus(Monitor *mon)
149{
150 CpuInfoList *cpu_list, *cpu;
151
152 cpu_list = qmp_query_cpus(NULL);
153
154 for (cpu = cpu_list; cpu; cpu = cpu->next) {
155 int active = ' ';
156
157 if (cpu->value->CPU == monitor_get_cpu_index()) {
158 active = '*';
159 }
160
161 monitor_printf(mon, "%c CPU #%" PRId64 ": ", active, cpu->value->CPU);
162
163 if (cpu->value->has_pc) {
164 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
165 }
166 if (cpu->value->has_nip) {
167 monitor_printf(mon, "nip=0x%016" PRIx64, cpu->value->nip);
168 }
169 if (cpu->value->has_npc) {
170 monitor_printf(mon, "pc=0x%016" PRIx64, cpu->value->pc);
171 monitor_printf(mon, "npc=0x%016" PRIx64, cpu->value->npc);
172 }
173 if (cpu->value->has_PC) {
174 monitor_printf(mon, "PC=0x%016" PRIx64, cpu->value->PC);
175 }
176
177 if (cpu->value->halted) {
178 monitor_printf(mon, " (halted)");
179 }
180
181 monitor_printf(mon, " thread_id=%" PRId64 "\n", cpu->value->thread_id);
182 }
183
184 qapi_free_CpuInfoList(cpu_list);
185}
186
7a7f325e
LC
187void hmp_quit(Monitor *mon, const QDict *qdict)
188{
189 monitor_suspend(mon);
190 qmp_quit(NULL);
191}
5f158f21
LC
192
193void hmp_stop(Monitor *mon, const QDict *qdict)
194{
195 qmp_stop(NULL);
196}
38d22653
LC
197
198void hmp_system_reset(Monitor *mon, const QDict *qdict)
199{
200 qmp_system_reset(NULL);
201}
5bc465e4
LC
202
203void hmp_system_powerdown(Monitor *mon, const QDict *qdict)
204{
205 qmp_system_powerdown(NULL);
206}
755f1968
LC
207
208void hmp_cpu(Monitor *mon, const QDict *qdict)
209{
210 int64_t cpu_index;
211
212 /* XXX: drop the monitor_set_cpu() usage when all HMP commands that
213 use it are converted to the QAPI */
214 cpu_index = qdict_get_int(qdict, "index");
215 if (monitor_set_cpu(cpu_index) < 0) {
216 monitor_printf(mon, "invalid CPU index\n");
217 }
218}