]> git.proxmox.com Git - mirror_qemu.git/blame - monitor/misc.c
fuse: Implement hole detection through lseek
[mirror_qemu.git] / monitor / misc.c
CommitLineData
9dc39cba
FB
1/*
2 * QEMU monitor
5fafdf24 3 *
9dc39cba 4 * Copyright (c) 2003-2004 Fabrice Bellard
5fafdf24 5 *
9dc39cba
FB
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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
22 * THE SOFTWARE.
23 */
e688df6b 24
d38ea87a 25#include "qemu/osdep.h"
5bce308a 26#include "monitor-internal.h"
33c11879 27#include "cpu.h"
b4a42f81 28#include "monitor/qdev.h"
87ecb68b 29#include "hw/usb.h"
a2cb15b0 30#include "hw/pci/pci.h"
0d09e41a 31#include "sysemu/watchdog.h"
45a50b16 32#include "hw/loader.h"
022c62cb 33#include "exec/gdbstub.h"
1422e32d 34#include "net/net.h"
68ac40d2 35#include "net/slirp.h"
7572150c 36#include "ui/qemu-spice.h"
213dcb06 37#include "qemu/config-file.h"
856dfd8a 38#include "qemu/ctype.h"
28ecbaee 39#include "ui/console.h"
c751a74a 40#include "ui/input.h"
87ecb68b 41#include "audio/audio.h"
76cad711 42#include "disas/disas.h"
9c17d615 43#include "sysemu/balloon.h"
1de7afc9 44#include "qemu/timer.h"
b3946626 45#include "sysemu/hw_accel.h"
54d31236 46#include "sysemu/runstate.h"
b76806d4
DB
47#include "authz/list.h"
48#include "qapi/util.h"
55225c85
MA
49#include "sysemu/blockdev.h"
50#include "sysemu/sysemu.h"
14a48c1d 51#include "sysemu/tcg.h"
bdee56f5 52#include "sysemu/tpm.h"
452fcdbc 53#include "qapi/qmp/qdict.h"
cc7a8ea7 54#include "qapi/qmp/qerror.h"
fc81fa1e 55#include "qapi/qmp/qstring.h"
a9c94277 56#include "qom/object_interfaces.h"
31965ae2 57#include "trace/control.h"
bf957284 58#include "monitor/hmp-target.h"
275307aa 59#include "monitor/hmp.h"
6d8a764e 60#ifdef CONFIG_TRACE_SIMPLE
31965ae2 61#include "trace/simple.h"
22890ab5 62#endif
022c62cb 63#include "exec/memory.h"
63c91552 64#include "exec/exec-all.h"
922a01a0 65#include "qemu/option.h"
1de7afc9 66#include "qemu/thread.h"
b21631f3 67#include "block/qapi.h"
a2dde2f2 68#include "block/block-hmp-cmds.h"
00ca24ff 69#include "qapi/qapi-commands-char.h"
fa4dcf57 70#include "qapi/qapi-commands-control.h"
00ca24ff
MA
71#include "qapi/qapi-commands-migration.h"
72#include "qapi/qapi-commands-misc.h"
73#include "qapi/qapi-commands-qom.h"
74#include "qapi/qapi-commands-trace.h"
00ca24ff 75#include "qapi/qapi-init-commands.h"
e688df6b 76#include "qapi/error.h"
43a14cfc 77#include "qapi/qmp-event.h"
d2528bdc 78#include "sysemu/cpus.h"
f348b6d1 79#include "qemu/cutils.h"
72fd2efb 80#include "tcg/tcg.h"
6a5bd307 81
a4538a5c
JH
82#if defined(TARGET_S390X)
83#include "hw/s390x/storage-keys.h"
f860d497 84#include "hw/s390x/storage-attributes.h"
a4538a5c
JH
85#endif
86
f07918fd 87/* file descriptors passed via SCM_RIGHTS */
c227f099
AL
88typedef struct mon_fd_t mon_fd_t;
89struct mon_fd_t {
f07918fd
MM
90 char *name;
91 int fd;
c227f099 92 QLIST_ENTRY(mon_fd_t) next;
f07918fd
MM
93};
94
ba1c048a
CB
95/* file descriptor associated with a file descriptor set */
96typedef struct MonFdsetFd MonFdsetFd;
97struct MonFdsetFd {
98 int fd;
99 bool removed;
100 char *opaque;
101 QLIST_ENTRY(MonFdsetFd) next;
102};
103
104/* file descriptor set containing fds passed via SCM_RIGHTS */
105typedef struct MonFdset MonFdset;
106struct MonFdset {
107 int64_t id;
108 QLIST_HEAD(, MonFdsetFd) fds;
adb696f3 109 QLIST_HEAD(, MonFdsetFd) dup_fds;
ba1c048a
CB
110 QLIST_ENTRY(MonFdset) next;
111};
112
47451466
PX
113/* Protects mon_fdsets */
114static QemuMutex mon_fdsets_lock;
b58deb34 115static QLIST_HEAD(, MonFdset) mon_fdsets;
47451466 116
a0cd5e1c 117static HMPCommand hmp_info_cmds[];
9dc39cba 118
d51a67b4
LC
119char *qmp_human_monitor_command(const char *command_line, bool has_cpu_index,
120 int64_t cpu_index, Error **errp)
0268d97c 121{
d51a67b4 122 char *output = NULL;
5f9dba16 123 MonitorHMP hmp = {};
0268d97c 124
92082416 125 monitor_data_init(&hmp.common, false, true, false);
0268d97c 126
d51a67b4 127 if (has_cpu_index) {
dcba65f8 128 int ret = monitor_set_cpu(&hmp.common, cpu_index);
0268d97c 129 if (ret < 0) {
c6bd8c70
MA
130 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
131 "a CPU number");
0268d97c
LC
132 goto out;
133 }
134 }
135
7ef6cf63 136 handle_hmp_command(&hmp, command_line);
0268d97c 137
0210c3b3
DDAG
138 WITH_QEMU_LOCK_GUARD(&hmp.common.mon_lock) {
139 if (qstring_get_length(hmp.common.outbuf) > 0) {
140 output = g_strdup(qstring_get_str(hmp.common.outbuf));
141 } else {
142 output = g_strdup("");
143 }
0268d97c
LC
144 }
145
146out:
5f9dba16 147 monitor_data_destroy(&hmp.common);
d51a67b4 148 return output;
0268d97c
LC
149}
150
ed7bda5d
KW
151/**
152 * Is @name in the '|' separated list of names @list?
153 */
154int hmp_compare_cmd(const char *name, const char *list)
9dc39cba
FB
155{
156 const char *p, *pstart;
157 int len;
158 len = strlen(name);
159 p = list;
ed7bda5d 160 for (;;) {
9dc39cba 161 pstart = p;
5c99fa37 162 p = qemu_strchrnul(p, '|');
ed7bda5d 163 if ((p - pstart) == len && !memcmp(pstart, name, len)) {
9dc39cba 164 return 1;
f5438c05
WX
165 }
166 if (*p == '\0') {
167 break;
168 }
ed7bda5d 169 p++;
f5438c05 170 }
dcc70cdf 171 return 0;
9dc39cba
FB
172}
173
d54908a5 174static void do_help_cmd(Monitor *mon, const QDict *qdict)
38183186 175{
d54908a5 176 help_cmd(mon, qdict_get_try_str(qdict, "name"));
38183186
LC
177}
178
3e5a50d6 179static void hmp_trace_event(Monitor *mon, const QDict *qdict)
22890ab5
PS
180{
181 const char *tp_name = qdict_get_str(qdict, "name");
182 bool new_state = qdict_get_bool(qdict, "option");
77e2b172
LV
183 bool has_vcpu = qdict_haskey(qdict, "vcpu");
184 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
14101d02 185 Error *local_err = NULL;
f871d689 186
77e2b172
LV
187 if (vcpu < 0) {
188 monitor_printf(mon, "argument vcpu must be positive");
189 return;
190 }
191
192 qmp_trace_event_set_state(tp_name, new_state, true, true, has_vcpu, vcpu, &local_err);
14101d02 193 if (local_err) {
091e38b7 194 error_report_err(local_err);
f871d689 195 }
22890ab5 196}
c5ceb523 197
c45a8168 198#ifdef CONFIG_TRACE_SIMPLE
3e5a50d6 199static void hmp_trace_file(Monitor *mon, const QDict *qdict)
c5ceb523
SH
200{
201 const char *op = qdict_get_try_str(qdict, "op");
202 const char *arg = qdict_get_try_str(qdict, "arg");
203
204 if (!op) {
ba4912cb 205 st_print_trace_file_status();
c5ceb523
SH
206 } else if (!strcmp(op, "on")) {
207 st_set_trace_file_enabled(true);
208 } else if (!strcmp(op, "off")) {
209 st_set_trace_file_enabled(false);
210 } else if (!strcmp(op, "flush")) {
211 st_flush_trace_buffer();
212 } else if (!strcmp(op, "set")) {
213 if (arg) {
214 st_set_trace_file(arg);
215 }
216 } else {
217 monitor_printf(mon, "unexpected argument \"%s\"\n", op);
218 help_cmd(mon, "trace-file");
219 }
220}
22890ab5
PS
221#endif
222
3e5a50d6 223static void hmp_info_help(Monitor *mon, const QDict *qdict)
9dc39cba 224{
13c7425e 225 help_cmd(mon, "info");
9dc39cba
FB
226}
227
6adf08dd 228static void monitor_init_qmp_commands(void)
edcfaefe 229{
635db18f
MA
230 /*
231 * Two command lists:
232 * - qmp_commands contains all QMP commands
233 * - qmp_cap_negotiation_commands contains just
234 * "qmp_capabilities", to enforce capability negotiation
235 */
236
1527badb 237 qmp_init_marshal(&qmp_commands);
05875687 238
1527badb 239 qmp_register_command(&qmp_commands, "query-qmp-schema",
d6fe3d02 240 qmp_query_qmp_schema, QCO_ALLOW_PRECONFIG);
1527badb 241 qmp_register_command(&qmp_commands, "device_add", qmp_device_add,
edcfaefe 242 QCO_NO_OPTIONS);
5f07c4d6
KW
243 qmp_register_command(&qmp_commands, "object-add", qmp_object_add,
244 QCO_NO_OPTIONS);
5032a16d 245
635db18f
MA
246 QTAILQ_INIT(&qmp_cap_negotiation_commands);
247 qmp_register_command(&qmp_cap_negotiation_commands, "qmp_capabilities",
d6fe3d02 248 qmp_marshal_qmp_capabilities, QCO_ALLOW_PRECONFIG);
635db18f
MA
249}
250
d9f25280 251/* Set the current CPU defined by the user. Callers must hold BQL. */
dcba65f8 252int monitor_set_cpu(Monitor *mon, int cpu_index)
6a00d601 253{
55e5c285 254 CPUState *cpu;
6a00d601 255
1c8bb3cc
AF
256 cpu = qemu_get_cpu(cpu_index);
257 if (cpu == NULL) {
258 return -1;
6a00d601 259 }
dcba65f8
KW
260 g_free(mon->mon_cpu_path);
261 mon->mon_cpu_path = object_get_canonical_path(OBJECT(cpu));
1c8bb3cc 262 return 0;
6a00d601
FB
263}
264
d9f25280 265/* Callers must hold BQL. */
87e6f4a4 266static CPUState *mon_get_cpu_sync(Monitor *mon, bool synchronize)
6a00d601 267{
a85d0bf3 268 CPUState *cpu = NULL;
751f8cfe 269
87e6f4a4
KW
270 if (mon->mon_cpu_path) {
271 cpu = (CPUState *) object_resolve_path_type(mon->mon_cpu_path,
751f8cfe
GK
272 TYPE_CPU, NULL);
273 if (!cpu) {
87e6f4a4
KW
274 g_free(mon->mon_cpu_path);
275 mon->mon_cpu_path = NULL;
751f8cfe
GK
276 }
277 }
87e6f4a4 278 if (!mon->mon_cpu_path) {
854e67fe
TH
279 if (!first_cpu) {
280 return NULL;
281 }
87e6f4a4 282 monitor_set_cpu(mon, first_cpu->cpu_index);
751f8cfe 283 cpu = first_cpu;
6a00d601 284 }
a85d0bf3 285 assert(cpu != NULL);
137b5cb6
VM
286 if (synchronize) {
287 cpu_synchronize_state(cpu);
288 }
751f8cfe 289 return cpu;
5bcda5f7
PC
290}
291
2fc5d01b 292CPUState *mon_get_cpu(Monitor *mon)
137b5cb6 293{
2fc5d01b 294 return mon_get_cpu_sync(mon, true);
137b5cb6
VM
295}
296
e7cff9c6 297CPUArchState *mon_get_cpu_env(Monitor *mon)
5bcda5f7 298{
e7cff9c6 299 CPUState *cs = mon_get_cpu(mon);
854e67fe
TH
300
301 return cs ? cs->env_ptr : NULL;
6a00d601
FB
302}
303
87e6f4a4 304int monitor_get_cpu_index(Monitor *mon)
99b7796f 305{
87e6f4a4 306 CPUState *cs = mon_get_cpu_sync(mon, false);
854e67fe
TH
307
308 return cs ? cs->cpu_index : UNASSIGNED_CPU_INDEX;
99b7796f
LC
309}
310
1ce6be24 311static void hmp_info_registers(Monitor *mon, const QDict *qdict)
9307c4c1 312{
18f08282
SJS
313 bool all_cpus = qdict_get_try_bool(qdict, "cpustate_all", false);
314 CPUState *cs;
854e67fe 315
18f08282
SJS
316 if (all_cpus) {
317 CPU_FOREACH(cs) {
318 monitor_printf(mon, "\nCPU#%d\n", cs->cpu_index);
90c84c56 319 cpu_dump_state(cs, NULL, CPU_DUMP_FPU);
18f08282
SJS
320 }
321 } else {
2fc5d01b 322 cs = mon_get_cpu(mon);
18f08282
SJS
323
324 if (!cs) {
325 monitor_printf(mon, "No CPU available\n");
326 return;
327 }
328
90c84c56 329 cpu_dump_state(cs, NULL, CPU_DUMP_FPU);
854e67fe 330 }
9307c4c1
FB
331}
332
f0d14a95 333#ifdef CONFIG_TCG
1ce6be24 334static void hmp_info_jit(Monitor *mon, const QDict *qdict)
e3db7226 335{
b7da97ee
TH
336 if (!tcg_enabled()) {
337 error_report("JIT information is only available with accel=tcg");
338 return;
339 }
340
3de2faa9 341 dump_exec_info();
76c86615 342 dump_drift_info();
e3db7226
FB
343}
344
1ce6be24 345static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
246ae24d 346{
d4c51a0a 347 dump_opcount_info();
246ae24d 348}
f0d14a95 349#endif
246ae24d 350
97bfafe2
EC
351static void hmp_info_sync_profile(Monitor *mon, const QDict *qdict)
352{
353 int64_t max = qdict_get_try_int(qdict, "max", 10);
354 bool mean = qdict_get_try_bool(qdict, "mean", false);
355 bool coalesce = !qdict_get_try_bool(qdict, "no_coalesce", false);
356 enum QSPSortBy sort_by;
357
358 sort_by = mean ? QSP_SORT_BY_AVG_WAIT_TIME : QSP_SORT_BY_TOTAL_WAIT_TIME;
ac7ff4cf 359 qsp_report(max, sort_by, coalesce);
97bfafe2
EC
360}
361
1ce6be24 362static void hmp_info_history(Monitor *mon, const QDict *qdict)
aa455485 363{
5f9dba16 364 MonitorHMP *hmp_mon = container_of(mon, MonitorHMP, common);
aa455485 365 int i;
7e2515e8 366 const char *str;
3b46e624 367
5f9dba16 368 if (!hmp_mon->rs) {
cde76ee1 369 return;
5f9dba16 370 }
7e2515e8
FB
371 i = 0;
372 for(;;) {
5f9dba16
KW
373 str = readline_get_history(hmp_mon->rs, i);
374 if (!str) {
7e2515e8 375 break;
5f9dba16 376 }
376253ec 377 monitor_printf(mon, "%d: '%s'\n", i, str);
8e3a9fd2 378 i++;
aa455485
FB
379 }
380}
381
1ce6be24 382static void hmp_info_cpustats(Monitor *mon, const QDict *qdict)
76a66253 383{
2fc5d01b 384 CPUState *cs = mon_get_cpu(mon);
854e67fe
TH
385
386 if (!cs) {
387 monitor_printf(mon, "No CPU available\n");
388 return;
389 }
11cb6c15 390 cpu_dump_statistics(cs, 0);
76a66253 391}
76a66253 392
1ce6be24 393static void hmp_info_trace_events(Monitor *mon, const QDict *qdict)
22890ab5 394{
bd71211d 395 const char *name = qdict_get_try_str(qdict, "name");
77e2b172
LV
396 bool has_vcpu = qdict_haskey(qdict, "vcpu");
397 int vcpu = qdict_get_try_int(qdict, "vcpu", 0);
bd71211d 398 TraceEventInfoList *events;
14101d02 399 TraceEventInfoList *elem;
bd71211d
LV
400 Error *local_err = NULL;
401
402 if (name == NULL) {
403 name = "*";
404 }
77e2b172
LV
405 if (vcpu < 0) {
406 monitor_printf(mon, "argument vcpu must be positive");
407 return;
408 }
bd71211d 409
77e2b172 410 events = qmp_trace_event_get_state(name, has_vcpu, vcpu, &local_err);
bd71211d
LV
411 if (local_err) {
412 error_report_err(local_err);
413 return;
414 }
14101d02
LV
415
416 for (elem = events; elem != NULL; elem = elem->next) {
417 monitor_printf(mon, "%s : state %u\n",
418 elem->value->name,
419 elem->value->state == TRACE_EVENT_STATE_ENABLED ? 1 : 0);
420 }
421 qapi_free_TraceEventInfoList(events);
22890ab5 422}
22890ab5 423
b8a185bc
MA
424void qmp_client_migrate_info(const char *protocol, const char *hostname,
425 bool has_port, int64_t port,
426 bool has_tls_port, int64_t tls_port,
427 bool has_cert_subject, const char *cert_subject,
428 Error **errp)
e866e239 429{
e866e239 430 if (strcmp(protocol, "spice") == 0) {
b8a185bc
MA
431 if (!qemu_using_spice(errp)) {
432 return;
e866e239
GH
433 }
434
b8a185bc 435 if (!has_port && !has_tls_port) {
c6bd8c70 436 error_setg(errp, QERR_MISSING_PARAMETER, "port/tls-port");
b8a185bc 437 return;
6ec5dae5
YH
438 }
439
7477477c 440 if (qemu_spice.migrate_info(hostname,
b8a185bc
MA
441 has_port ? port : -1,
442 has_tls_port ? tls_port : -1,
443 cert_subject)) {
9e1b9c6c 444 error_setg(errp, "Could not set up display for migration");
b8a185bc 445 return;
e866e239 446 }
b8a185bc 447 return;
e866e239
GH
448 }
449
99750d82 450 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "protocol", "'spice'");
e866e239
GH
451}
452
3e5a50d6 453static void hmp_logfile(Monitor *mon, const QDict *qdict)
e735b91c 454{
daa76aa4
MA
455 Error *err = NULL;
456
457 qemu_set_log_filename(qdict_get_str(qdict, "filename"), &err);
458 if (err) {
459 error_report_err(err);
460 }
e735b91c
PB
461}
462
3e5a50d6 463static void hmp_log(Monitor *mon, const QDict *qdict)
f193c797
FB
464{
465 int mask;
d54908a5 466 const char *items = qdict_get_str(qdict, "items");
3b46e624 467
9307c4c1 468 if (!strcmp(items, "none")) {
f193c797
FB
469 mask = 0;
470 } else {
4fde1eba 471 mask = qemu_str_to_log_mask(items);
f193c797 472 if (!mask) {
376253ec 473 help_cmd(mon, "log");
f193c797
FB
474 return;
475 }
476 }
24537a01 477 qemu_set_log(mask);
f193c797
FB
478}
479
3e5a50d6 480static void hmp_singlestep(Monitor *mon, const QDict *qdict)
1b530a6d 481{
d54908a5 482 const char *option = qdict_get_try_str(qdict, "option");
1b530a6d
AJ
483 if (!option || !strcmp(option, "on")) {
484 singlestep = 1;
485 } else if (!strcmp(option, "off")) {
486 singlestep = 0;
487 } else {
488 monitor_printf(mon, "unexpected option %s\n", option);
489 }
490}
491
3e5a50d6 492static void hmp_gdbserver(Monitor *mon, const QDict *qdict)
59030a8c 493{
d54908a5 494 const char *device = qdict_get_try_str(qdict, "device");
59030a8c
AL
495 if (!device)
496 device = "tcp::" DEFAULT_GDBSTUB_PORT;
497 if (gdbserver_start(device) < 0) {
498 monitor_printf(mon, "Could not open gdbserver on device '%s'\n",
499 device);
500 } else if (strcmp(device, "none") == 0) {
36556b20 501 monitor_printf(mon, "Disabled gdbserver\n");
8a7ddc38 502 } else {
59030a8c
AL
503 monitor_printf(mon, "Waiting for gdb connection on device '%s'\n",
504 device);
8a7ddc38
FB
505 }
506}
507
3e5a50d6 508static void hmp_watchdog_action(Monitor *mon, const QDict *qdict)
9dd986cc 509{
d54908a5 510 const char *action = qdict_get_str(qdict, "action");
9dd986cc
RJ
511 if (select_watchdog_action(action) == -1) {
512 monitor_printf(mon, "Unknown watchdog action '%s'\n", action);
513 }
514}
515
376253ec 516static void monitor_printc(Monitor *mon, int c)
9307c4c1 517{
376253ec 518 monitor_printf(mon, "'");
9307c4c1
FB
519 switch(c) {
520 case '\'':
376253ec 521 monitor_printf(mon, "\\'");
9307c4c1
FB
522 break;
523 case '\\':
376253ec 524 monitor_printf(mon, "\\\\");
9307c4c1
FB
525 break;
526 case '\n':
376253ec 527 monitor_printf(mon, "\\n");
9307c4c1
FB
528 break;
529 case '\r':
376253ec 530 monitor_printf(mon, "\\r");
9307c4c1
FB
531 break;
532 default:
533 if (c >= 32 && c <= 126) {
376253ec 534 monitor_printf(mon, "%c", c);
9307c4c1 535 } else {
376253ec 536 monitor_printf(mon, "\\x%02x", c);
9307c4c1
FB
537 }
538 break;
539 }
376253ec 540 monitor_printf(mon, "'");
9307c4c1
FB
541}
542
376253ec 543static void memory_dump(Monitor *mon, int count, int format, int wsize,
a8170e5e 544 hwaddr addr, int is_physical)
9307c4c1 545{
23842aab 546 int l, line_size, i, max_digits, len;
9307c4c1
FB
547 uint8_t buf[16];
548 uint64_t v;
2fc5d01b 549 CPUState *cs = mon_get_cpu(mon);
854e67fe
TH
550
551 if (!cs && (format == 'i' || !is_physical)) {
552 monitor_printf(mon, "Can not dump without CPU\n");
553 return;
554 }
9307c4c1
FB
555
556 if (format == 'i') {
1d48474d 557 monitor_disas(mon, cs, addr, count, is_physical);
9307c4c1
FB
558 return;
559 }
560
561 len = wsize * count;
562 if (wsize == 1)
563 line_size = 8;
564 else
565 line_size = 16;
9307c4c1
FB
566 max_digits = 0;
567
568 switch(format) {
569 case 'o':
69db8dfc 570 max_digits = DIV_ROUND_UP(wsize * 8, 3);
9307c4c1
FB
571 break;
572 default:
573 case 'x':
574 max_digits = (wsize * 8) / 4;
575 break;
576 case 'u':
577 case 'd':
69db8dfc 578 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33);
9307c4c1
FB
579 break;
580 case 'c':
581 wsize = 1;
582 break;
583 }
584
585 while (len > 0) {
7743e588 586 if (is_physical)
376253ec 587 monitor_printf(mon, TARGET_FMT_plx ":", addr);
7743e588 588 else
376253ec 589 monitor_printf(mon, TARGET_FMT_lx ":", (target_ulong)addr);
9307c4c1
FB
590 l = len;
591 if (l > line_size)
592 l = line_size;
593 if (is_physical) {
6f89ae58
PM
594 AddressSpace *as = cs ? cs->as : &address_space_memory;
595 MemTxResult r = address_space_read(as, addr,
596 MEMTXATTRS_UNSPECIFIED, buf, l);
597 if (r != MEMTX_OK) {
598 monitor_printf(mon, " Cannot access memory\n");
599 break;
600 }
9307c4c1 601 } else {
854e67fe 602 if (cpu_memory_rw_debug(cs, addr, buf, l, 0) < 0) {
376253ec 603 monitor_printf(mon, " Cannot access memory\n");
c8f79b67
AL
604 break;
605 }
9307c4c1 606 }
5fafdf24 607 i = 0;
9307c4c1
FB
608 while (i < l) {
609 switch(wsize) {
610 default:
611 case 1:
24e60305 612 v = ldub_p(buf + i);
9307c4c1
FB
613 break;
614 case 2:
24e60305 615 v = lduw_p(buf + i);
9307c4c1
FB
616 break;
617 case 4:
24e60305 618 v = (uint32_t)ldl_p(buf + i);
9307c4c1
FB
619 break;
620 case 8:
24e60305 621 v = ldq_p(buf + i);
9307c4c1
FB
622 break;
623 }
376253ec 624 monitor_printf(mon, " ");
9307c4c1
FB
625 switch(format) {
626 case 'o':
376253ec 627 monitor_printf(mon, "%#*" PRIo64, max_digits, v);
9307c4c1
FB
628 break;
629 case 'x':
376253ec 630 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v);
9307c4c1
FB
631 break;
632 case 'u':
376253ec 633 monitor_printf(mon, "%*" PRIu64, max_digits, v);
9307c4c1
FB
634 break;
635 case 'd':
376253ec 636 monitor_printf(mon, "%*" PRId64, max_digits, v);
9307c4c1
FB
637 break;
638 case 'c':
376253ec 639 monitor_printc(mon, v);
9307c4c1
FB
640 break;
641 }
642 i += wsize;
643 }
376253ec 644 monitor_printf(mon, "\n");
9307c4c1
FB
645 addr += l;
646 len -= l;
647 }
648}
649
3e5a50d6 650static void hmp_memory_dump(Monitor *mon, const QDict *qdict)
9307c4c1 651{
1bd1442e
LC
652 int count = qdict_get_int(qdict, "count");
653 int format = qdict_get_int(qdict, "format");
654 int size = qdict_get_int(qdict, "size");
655 target_long addr = qdict_get_int(qdict, "addr");
656
376253ec 657 memory_dump(mon, count, format, size, addr, 0);
9307c4c1
FB
658}
659
3e5a50d6 660static void hmp_physical_memory_dump(Monitor *mon, const QDict *qdict)
9307c4c1 661{
1bd1442e
LC
662 int count = qdict_get_int(qdict, "count");
663 int format = qdict_get_int(qdict, "format");
664 int size = qdict_get_int(qdict, "size");
a8170e5e 665 hwaddr addr = qdict_get_int(qdict, "addr");
1bd1442e 666
376253ec 667 memory_dump(mon, count, format, size, addr, 1);
9307c4c1
FB
668}
669
c7f7e697 670void *gpa2hva(MemoryRegion **p_mr, hwaddr addr, uint64_t size, Error **errp)
e9628441 671{
c7f7e697 672 Int128 gpa_region_size;
e9628441 673 MemoryRegionSection mrs = memory_region_find(get_system_memory(),
c7f7e697 674 addr, size);
e9628441
PB
675
676 if (!mrs.mr) {
677 error_setg(errp, "No memory is mapped at address 0x%" HWADDR_PRIx, addr);
678 return NULL;
679 }
680
681 if (!memory_region_is_ram(mrs.mr) && !memory_region_is_romd(mrs.mr)) {
682 error_setg(errp, "Memory at address 0x%" HWADDR_PRIx "is not RAM", addr);
683 memory_region_unref(mrs.mr);
684 return NULL;
685 }
686
c7f7e697
TFF
687 gpa_region_size = int128_make64(size);
688 if (int128_lt(mrs.size, gpa_region_size)) {
689 error_setg(errp, "Size of memory region at 0x%" HWADDR_PRIx
690 " exceeded.", addr);
691 memory_region_unref(mrs.mr);
692 return NULL;
693 }
694
e9628441
PB
695 *p_mr = mrs.mr;
696 return qemu_map_ram_ptr(mrs.mr->ram_block, mrs.offset_within_region);
697}
698
699static void hmp_gpa2hva(Monitor *mon, const QDict *qdict)
700{
701 hwaddr addr = qdict_get_int(qdict, "addr");
702 Error *local_err = NULL;
703 MemoryRegion *mr = NULL;
704 void *ptr;
705
c7f7e697 706 ptr = gpa2hva(&mr, addr, 1, &local_err);
e9628441
PB
707 if (local_err) {
708 error_report_err(local_err);
709 return;
710 }
711
712 monitor_printf(mon, "Host virtual address for 0x%" HWADDR_PRIx
713 " (%s) is %p\n",
714 addr, mr->name, ptr);
715
716 memory_region_unref(mr);
717}
718
574d9693
DDAG
719static void hmp_gva2gpa(Monitor *mon, const QDict *qdict)
720{
721 target_ulong addr = qdict_get_int(qdict, "addr");
722 MemTxAttrs attrs;
2fc5d01b 723 CPUState *cs = mon_get_cpu(mon);
574d9693
DDAG
724 hwaddr gpa;
725
726 if (!cs) {
727 monitor_printf(mon, "No cpu\n");
728 return;
729 }
730
9d3250d5 731 gpa = cpu_get_phys_page_attrs_debug(cs, addr & TARGET_PAGE_MASK, &attrs);
574d9693
DDAG
732 if (gpa == -1) {
733 monitor_printf(mon, "Unmapped\n");
734 } else {
735 monitor_printf(mon, "gpa: %#" HWADDR_PRIx "\n",
736 gpa + (addr & ~TARGET_PAGE_MASK));
737 }
738}
739
e9628441
PB
740#ifdef CONFIG_LINUX
741static uint64_t vtop(void *ptr, Error **errp)
742{
743 uint64_t pinfo;
744 uint64_t ret = -1;
745 uintptr_t addr = (uintptr_t) ptr;
038adc2f 746 uintptr_t pagesize = qemu_real_host_page_size;
e9628441
PB
747 off_t offset = addr / pagesize * sizeof(pinfo);
748 int fd;
749
750 fd = open("/proc/self/pagemap", O_RDONLY);
751 if (fd == -1) {
752 error_setg_errno(errp, errno, "Cannot open /proc/self/pagemap");
753 return -1;
754 }
755
756 /* Force copy-on-write if necessary. */
d73415a3 757 qatomic_add((uint8_t *)ptr, 0);
e9628441
PB
758
759 if (pread(fd, &pinfo, sizeof(pinfo), offset) != sizeof(pinfo)) {
760 error_setg_errno(errp, errno, "Cannot read pagemap");
761 goto out;
762 }
763 if ((pinfo & (1ull << 63)) == 0) {
764 error_setg(errp, "Page not present");
765 goto out;
766 }
767 ret = ((pinfo & 0x007fffffffffffffull) * pagesize) | (addr & (pagesize - 1));
768
769out:
770 close(fd);
771 return ret;
772}
773
774static void hmp_gpa2hpa(Monitor *mon, const QDict *qdict)
775{
776 hwaddr addr = qdict_get_int(qdict, "addr");
777 Error *local_err = NULL;
778 MemoryRegion *mr = NULL;
779 void *ptr;
780 uint64_t physaddr;
781
c7f7e697 782 ptr = gpa2hva(&mr, addr, 1, &local_err);
e9628441
PB
783 if (local_err) {
784 error_report_err(local_err);
785 return;
786 }
787
788 physaddr = vtop(ptr, &local_err);
789 if (local_err) {
790 error_report_err(local_err);
791 } else {
792 monitor_printf(mon, "Host physical address for 0x%" HWADDR_PRIx
793 " (%s) is 0x%" PRIx64 "\n",
794 addr, mr->name, (uint64_t) physaddr);
795 }
796
797 memory_region_unref(mr);
798}
799#endif
800
1bd1442e 801static void do_print(Monitor *mon, const QDict *qdict)
9307c4c1 802{
1bd1442e 803 int format = qdict_get_int(qdict, "format");
a8170e5e 804 hwaddr val = qdict_get_int(qdict, "val");
1bd1442e 805
9307c4c1
FB
806 switch(format) {
807 case 'o':
a8170e5e 808 monitor_printf(mon, "%#" HWADDR_PRIo, val);
9307c4c1
FB
809 break;
810 case 'x':
a8170e5e 811 monitor_printf(mon, "%#" HWADDR_PRIx, val);
9307c4c1
FB
812 break;
813 case 'u':
a8170e5e 814 monitor_printf(mon, "%" HWADDR_PRIu, val);
9307c4c1
FB
815 break;
816 default:
817 case 'd':
a8170e5e 818 monitor_printf(mon, "%" HWADDR_PRId, val);
9307c4c1
FB
819 break;
820 case 'c':
376253ec 821 monitor_printc(mon, val);
9307c4c1
FB
822 break;
823 }
376253ec 824 monitor_printf(mon, "\n");
9307c4c1
FB
825}
826
3e5a50d6 827static void hmp_sum(Monitor *mon, const QDict *qdict)
e4cf1adc
FB
828{
829 uint32_t addr;
e4cf1adc 830 uint16_t sum;
f18c16de
LC
831 uint32_t start = qdict_get_int(qdict, "start");
832 uint32_t size = qdict_get_int(qdict, "size");
e4cf1adc
FB
833
834 sum = 0;
835 for(addr = start; addr < (start + size); addr++) {
42874d3a
PM
836 uint8_t val = address_space_ldub(&address_space_memory, addr,
837 MEMTXATTRS_UNSPECIFIED, NULL);
e4cf1adc
FB
838 /* BSD sum algorithm ('sum' Unix command) */
839 sum = (sum >> 1) | (sum << 15);
54f7b4a3 840 sum += val;
e4cf1adc 841 }
376253ec 842 monitor_printf(mon, "%05d\n", sum);
e4cf1adc
FB
843}
844
13224a87
FB
845static int mouse_button_state;
846
3e5a50d6 847static void hmp_mouse_move(Monitor *mon, const QDict *qdict)
13224a87 848{
c751a74a 849 int dx, dy, dz, button;
1d4daa91
LC
850 const char *dx_str = qdict_get_str(qdict, "dx_str");
851 const char *dy_str = qdict_get_str(qdict, "dy_str");
852 const char *dz_str = qdict_get_try_str(qdict, "dz_str");
c751a74a 853
13224a87
FB
854 dx = strtol(dx_str, NULL, 0);
855 dy = strtol(dy_str, NULL, 0);
c751a74a
GH
856 qemu_input_queue_rel(NULL, INPUT_AXIS_X, dx);
857 qemu_input_queue_rel(NULL, INPUT_AXIS_Y, dy);
858
859 if (dz_str) {
13224a87 860 dz = strtol(dz_str, NULL, 0);
c751a74a 861 if (dz != 0) {
f22d0af0 862 button = (dz > 0) ? INPUT_BUTTON_WHEEL_UP : INPUT_BUTTON_WHEEL_DOWN;
c751a74a
GH
863 qemu_input_queue_btn(NULL, button, true);
864 qemu_input_event_sync();
865 qemu_input_queue_btn(NULL, button, false);
866 }
867 }
868 qemu_input_event_sync();
13224a87
FB
869}
870
3e5a50d6 871static void hmp_mouse_button(Monitor *mon, const QDict *qdict)
13224a87 872{
7fb1cf16 873 static uint32_t bmap[INPUT_BUTTON__MAX] = {
c751a74a
GH
874 [INPUT_BUTTON_LEFT] = MOUSE_EVENT_LBUTTON,
875 [INPUT_BUTTON_MIDDLE] = MOUSE_EVENT_MBUTTON,
876 [INPUT_BUTTON_RIGHT] = MOUSE_EVENT_RBUTTON,
877 };
d54908a5 878 int button_state = qdict_get_int(qdict, "button_state");
c751a74a
GH
879
880 if (mouse_button_state == button_state) {
881 return;
882 }
883 qemu_input_update_buttons(NULL, bmap, mouse_button_state, button_state);
884 qemu_input_event_sync();
13224a87 885 mouse_button_state = button_state;
13224a87
FB
886}
887
3e5a50d6 888static void hmp_ioport_read(Monitor *mon, const QDict *qdict)
3440557b 889{
aa93e39c
LC
890 int size = qdict_get_int(qdict, "size");
891 int addr = qdict_get_int(qdict, "addr");
892 int has_index = qdict_haskey(qdict, "index");
3440557b
FB
893 uint32_t val;
894 int suffix;
895
896 if (has_index) {
aa93e39c 897 int index = qdict_get_int(qdict, "index");
afcea8cb 898 cpu_outb(addr & IOPORTS_MASK, index & 0xff);
3440557b
FB
899 addr++;
900 }
901 addr &= 0xffff;
902
903 switch(size) {
904 default:
905 case 1:
afcea8cb 906 val = cpu_inb(addr);
3440557b
FB
907 suffix = 'b';
908 break;
909 case 2:
afcea8cb 910 val = cpu_inw(addr);
3440557b
FB
911 suffix = 'w';
912 break;
913 case 4:
afcea8cb 914 val = cpu_inl(addr);
3440557b
FB
915 suffix = 'l';
916 break;
917 }
376253ec
AL
918 monitor_printf(mon, "port%c[0x%04x] = %#0*x\n",
919 suffix, addr, size * 2, val);
3440557b 920}
a3a91a35 921
3e5a50d6 922static void hmp_ioport_write(Monitor *mon, const QDict *qdict)
f114784f 923{
1bd1442e
LC
924 int size = qdict_get_int(qdict, "size");
925 int addr = qdict_get_int(qdict, "addr");
926 int val = qdict_get_int(qdict, "val");
927
f114784f
JK
928 addr &= IOPORTS_MASK;
929
930 switch (size) {
931 default:
932 case 1:
afcea8cb 933 cpu_outb(addr, val);
f114784f
JK
934 break;
935 case 2:
afcea8cb 936 cpu_outw(addr, val);
f114784f
JK
937 break;
938 case 4:
afcea8cb 939 cpu_outl(addr, val);
f114784f
JK
940 break;
941 }
942}
943
3e5a50d6 944static void hmp_boot_set(Monitor *mon, const QDict *qdict)
0ecdffbb 945{
f1839938 946 Error *local_err = NULL;
d54908a5 947 const char *bootdevice = qdict_get_str(qdict, "bootdevice");
0ecdffbb 948
f1839938
GA
949 qemu_boot_set(bootdevice, &local_err);
950 if (local_err) {
193227f9 951 error_report_err(local_err);
0ecdffbb 952 } else {
f1839938 953 monitor_printf(mon, "boot device list now set to %s\n", bootdevice);
0ecdffbb
AJ
954 }
955}
956
1ce6be24 957static void hmp_info_mtree(Monitor *mon, const QDict *qdict)
314e2987 958{
57bb40c9 959 bool flatview = qdict_get_try_bool(qdict, "flatview", false);
5e8fd947 960 bool dispatch_tree = qdict_get_try_bool(qdict, "dispatch_tree", false);
fc051ae6 961 bool owner = qdict_get_try_bool(qdict, "owner", false);
2261d393 962 bool disabled = qdict_get_try_bool(qdict, "disabled", false);
57bb40c9 963
2261d393 964 mtree_info(flatview, dispatch_tree, owner, disabled);
314e2987
BS
965}
966
5f1ce948
FB
967#ifdef CONFIG_PROFILER
968
e9a6625e
AJ
969int64_t dev_time;
970
1ce6be24 971static void hmp_info_profile(Monitor *mon, const QDict *qdict)
5f1ce948 972{
72fd2efb
EC
973 static int64_t last_cpu_exec_time;
974 int64_t cpu_exec_time;
975 int64_t delta;
976
977 cpu_exec_time = tcg_cpu_exec_time();
978 delta = cpu_exec_time - last_cpu_exec_time;
979
376253ec 980 monitor_printf(mon, "async time %" PRId64 " (%0.3f)\n",
73bcb24d 981 dev_time, dev_time / (double)NANOSECONDS_PER_SECOND);
376253ec 982 monitor_printf(mon, "qemu time %" PRId64 " (%0.3f)\n",
72fd2efb
EC
983 delta, delta / (double)NANOSECONDS_PER_SECOND);
984 last_cpu_exec_time = cpu_exec_time;
5f1ce948 985 dev_time = 0;
5f1ce948
FB
986}
987#else
1ce6be24 988static void hmp_info_profile(Monitor *mon, const QDict *qdict)
5f1ce948 989{
376253ec 990 monitor_printf(mon, "Internal profiler not compiled\n");
5f1ce948
FB
991}
992#endif
993
ec36b695 994/* Capture support */
72cf2d4f 995static QLIST_HEAD (capture_list_head, CaptureState) capture_head;
ec36b695 996
1ce6be24 997static void hmp_info_capture(Monitor *mon, const QDict *qdict)
ec36b695
FB
998{
999 int i;
1000 CaptureState *s;
1001
1002 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
376253ec 1003 monitor_printf(mon, "[%d]: ", i);
ec36b695
FB
1004 s->ops.info (s->opaque);
1005 }
1006}
1007
3e5a50d6 1008static void hmp_stopcapture(Monitor *mon, const QDict *qdict)
ec36b695
FB
1009{
1010 int i;
d54908a5 1011 int n = qdict_get_int(qdict, "n");
ec36b695
FB
1012 CaptureState *s;
1013
1014 for (s = capture_head.lh_first, i = 0; s; s = s->entries.le_next, ++i) {
1015 if (i == n) {
1016 s->ops.destroy (s->opaque);
72cf2d4f 1017 QLIST_REMOVE (s, entries);
7267c094 1018 g_free (s);
ec36b695
FB
1019 return;
1020 }
1021 }
1022}
1023
3e5a50d6 1024static void hmp_wavcapture(Monitor *mon, const QDict *qdict)
c1925484
LC
1025{
1026 const char *path = qdict_get_str(qdict, "path");
f0b9f36d
KZ
1027 int freq = qdict_get_try_int(qdict, "freq", 44100);
1028 int bits = qdict_get_try_int(qdict, "bits", 16);
1029 int nchannels = qdict_get_try_int(qdict, "nchannels", 2);
1030 const char *audiodev = qdict_get_str(qdict, "audiodev");
ec36b695 1031 CaptureState *s;
f0b9f36d 1032 AudioState *as = audio_state_by_name(audiodev);
ec36b695 1033
f0b9f36d
KZ
1034 if (!as) {
1035 monitor_printf(mon, "Audiodev '%s' not found\n", audiodev);
1036 return;
1037 }
ec36b695 1038
f0b9f36d 1039 s = g_malloc0 (sizeof (*s));
ec36b695 1040
f0b9f36d 1041 if (wav_start_capture(as, s, path, freq, bits, nchannels)) {
d00b2618 1042 monitor_printf(mon, "Failed to add wave capture\n");
7267c094 1043 g_free (s);
d00b2618 1044 return;
ec36b695 1045 }
72cf2d4f 1046 QLIST_INSERT_HEAD (&capture_head, s, entries);
ec36b695 1047}
ec36b695 1048
b76806d4 1049static QAuthZList *find_auth(Monitor *mon, const char *name)
76655d6d 1050{
b76806d4
DB
1051 Object *obj;
1052 Object *container;
76655d6d 1053
b76806d4
DB
1054 container = object_get_objects_root();
1055 obj = object_resolve_path_component(container, name);
1056 if (!obj) {
15dfcd45 1057 monitor_printf(mon, "acl: unknown list '%s'\n", name);
b76806d4 1058 return NULL;
76655d6d 1059 }
b76806d4
DB
1060
1061 return QAUTHZ_LIST(obj);
15dfcd45
JK
1062}
1063
01438407
DB
1064static bool warn_acl;
1065static void hmp_warn_acl(void)
1066{
1067 if (warn_acl) {
1068 return;
1069 }
1070 error_report("The acl_show, acl_reset, acl_policy, acl_add, acl_remove "
1071 "commands are deprecated with no replacement. Authorization "
1072 "for VNC should be performed using the pluggable QAuthZ "
1073 "objects");
1074 warn_acl = true;
1075}
1076
3e5a50d6 1077static void hmp_acl_show(Monitor *mon, const QDict *qdict)
15dfcd45 1078{
d54908a5 1079 const char *aclname = qdict_get_str(qdict, "aclname");
b76806d4
DB
1080 QAuthZList *auth = find_auth(mon, aclname);
1081 QAuthZListRuleList *rules;
1082 size_t i = 0;
1083
01438407
DB
1084 hmp_warn_acl();
1085
b76806d4
DB
1086 if (!auth) {
1087 return;
1088 }
1089
1090 monitor_printf(mon, "policy: %s\n",
1091 QAuthZListPolicy_str(auth->policy));
1092
1093 rules = auth->rules;
1094 while (rules) {
1095 QAuthZListRule *rule = rules->value;
1096 i++;
1097 monitor_printf(mon, "%zu: %s %s\n", i,
1098 QAuthZListPolicy_str(rule->policy),
1099 rule->match);
1100 rules = rules->next;
15dfcd45
JK
1101 }
1102}
1103
3e5a50d6 1104static void hmp_acl_reset(Monitor *mon, const QDict *qdict)
15dfcd45 1105{
d54908a5 1106 const char *aclname = qdict_get_str(qdict, "aclname");
b76806d4 1107 QAuthZList *auth = find_auth(mon, aclname);
15dfcd45 1108
01438407
DB
1109 hmp_warn_acl();
1110
b76806d4
DB
1111 if (!auth) {
1112 return;
15dfcd45 1113 }
b76806d4
DB
1114
1115 auth->policy = QAUTHZ_LIST_POLICY_DENY;
1116 qapi_free_QAuthZListRuleList(auth->rules);
1117 auth->rules = NULL;
1118 monitor_printf(mon, "acl: removed all rules\n");
15dfcd45
JK
1119}
1120
3e5a50d6 1121static void hmp_acl_policy(Monitor *mon, const QDict *qdict)
15dfcd45 1122{
f18c16de
LC
1123 const char *aclname = qdict_get_str(qdict, "aclname");
1124 const char *policy = qdict_get_str(qdict, "policy");
b76806d4
DB
1125 QAuthZList *auth = find_auth(mon, aclname);
1126 int val;
1127 Error *err = NULL;
28a76be8 1128
01438407
DB
1129 hmp_warn_acl();
1130
b76806d4
DB
1131 if (!auth) {
1132 return;
1133 }
1134
1135 val = qapi_enum_parse(&QAuthZListPolicy_lookup,
1136 policy,
1137 QAUTHZ_LIST_POLICY_DENY,
1138 &err);
1139 if (err) {
1140 error_free(err);
1141 monitor_printf(mon, "acl: unknown policy '%s', "
1142 "expected 'deny' or 'allow'\n", policy);
1143 } else {
1144 auth->policy = val;
1145 if (auth->policy == QAUTHZ_LIST_POLICY_ALLOW) {
28a76be8 1146 monitor_printf(mon, "acl: policy set to 'allow'\n");
28a76be8 1147 } else {
b76806d4 1148 monitor_printf(mon, "acl: policy set to 'deny'\n");
28a76be8 1149 }
15dfcd45
JK
1150 }
1151}
28a76be8 1152
b76806d4
DB
1153static QAuthZListFormat hmp_acl_get_format(const char *match)
1154{
1155 if (strchr(match, '*')) {
1156 return QAUTHZ_LIST_FORMAT_GLOB;
1157 } else {
1158 return QAUTHZ_LIST_FORMAT_EXACT;
1159 }
1160}
1161
3e5a50d6 1162static void hmp_acl_add(Monitor *mon, const QDict *qdict)
15dfcd45 1163{
1bd1442e
LC
1164 const char *aclname = qdict_get_str(qdict, "aclname");
1165 const char *match = qdict_get_str(qdict, "match");
b76806d4 1166 const char *policystr = qdict_get_str(qdict, "policy");
1bd1442e
LC
1167 int has_index = qdict_haskey(qdict, "index");
1168 int index = qdict_get_try_int(qdict, "index", -1);
b76806d4
DB
1169 QAuthZList *auth = find_auth(mon, aclname);
1170 Error *err = NULL;
1171 QAuthZListPolicy policy;
1172 QAuthZListFormat format;
1173 size_t i = 0;
1174
01438407
DB
1175 hmp_warn_acl();
1176
b76806d4
DB
1177 if (!auth) {
1178 return;
1179 }
1180
1181 policy = qapi_enum_parse(&QAuthZListPolicy_lookup,
1182 policystr,
1183 QAUTHZ_LIST_POLICY_DENY,
1184 &err);
1185 if (err) {
1186 error_free(err);
1187 monitor_printf(mon, "acl: unknown policy '%s', "
1188 "expected 'deny' or 'allow'\n", policystr);
1189 return;
1190 }
1191
1192 format = hmp_acl_get_format(match);
1193
1194 if (has_index && index == 0) {
1195 monitor_printf(mon, "acl: unable to add acl entry\n");
1196 return;
1197 }
1198
1199 if (has_index) {
1200 i = qauthz_list_insert_rule(auth, match, policy,
1201 format, index - 1, &err);
1202 } else {
1203 i = qauthz_list_append_rule(auth, match, policy,
1204 format, &err);
1205 }
1206 if (err) {
1207 monitor_printf(mon, "acl: unable to add rule: %s",
1208 error_get_pretty(err));
1209 error_free(err);
1210 } else {
1211 monitor_printf(mon, "acl: added rule at position %zu\n", i + 1);
15dfcd45
JK
1212 }
1213}
28a76be8 1214
3e5a50d6 1215static void hmp_acl_remove(Monitor *mon, const QDict *qdict)
15dfcd45 1216{
f18c16de
LC
1217 const char *aclname = qdict_get_str(qdict, "aclname");
1218 const char *match = qdict_get_str(qdict, "match");
b76806d4
DB
1219 QAuthZList *auth = find_auth(mon, aclname);
1220 ssize_t i = 0;
28a76be8 1221
01438407
DB
1222 hmp_warn_acl();
1223
b76806d4
DB
1224 if (!auth) {
1225 return;
1226 }
1227
1228 i = qauthz_list_delete_rule(auth, match);
1229 if (i >= 0) {
1230 monitor_printf(mon, "acl: removed rule at position %zu\n", i + 1);
1231 } else {
1232 monitor_printf(mon, "acl: no matching acl entry\n");
76655d6d
AL
1233 }
1234}
1235
208c9d1b 1236void qmp_getfd(const char *fdname, Error **errp)
f07918fd 1237{
947e4744 1238 Monitor *cur_mon = monitor_cur();
c227f099 1239 mon_fd_t *monfd;
9409fc05 1240 int fd, tmp_fd;
f07918fd 1241
5345fdb4 1242 fd = qemu_chr_fe_get_msgfd(&cur_mon->chr);
f07918fd 1243 if (fd == -1) {
f820af87 1244 error_setg(errp, "No file descriptor supplied via SCM_RIGHTS");
208c9d1b 1245 return;
f07918fd
MM
1246 }
1247
1248 if (qemu_isdigit(fdname[0])) {
0b9f0e2f 1249 close(fd);
c6bd8c70
MA
1250 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdname",
1251 "a name not starting with a digit");
208c9d1b 1252 return;
f07918fd
MM
1253 }
1254
0210c3b3 1255 QEMU_LOCK_GUARD(&cur_mon->mon_lock);
208c9d1b 1256 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
f07918fd
MM
1257 if (strcmp(monfd->name, fdname) != 0) {
1258 continue;
1259 }
1260
9409fc05 1261 tmp_fd = monfd->fd;
f07918fd 1262 monfd->fd = fd;
774a6b67 1263 /* Make sure close() is outside critical section */
9409fc05 1264 close(tmp_fd);
208c9d1b 1265 return;
f07918fd
MM
1266 }
1267
7267c094
AL
1268 monfd = g_malloc0(sizeof(mon_fd_t));
1269 monfd->name = g_strdup(fdname);
f07918fd
MM
1270 monfd->fd = fd;
1271
208c9d1b 1272 QLIST_INSERT_HEAD(&cur_mon->fds, monfd, next);
f07918fd
MM
1273}
1274
208c9d1b 1275void qmp_closefd(const char *fdname, Error **errp)
f07918fd 1276{
947e4744 1277 Monitor *cur_mon = monitor_cur();
c227f099 1278 mon_fd_t *monfd;
9409fc05 1279 int tmp_fd;
f07918fd 1280
9409fc05 1281 qemu_mutex_lock(&cur_mon->mon_lock);
208c9d1b 1282 QLIST_FOREACH(monfd, &cur_mon->fds, next) {
f07918fd
MM
1283 if (strcmp(monfd->name, fdname) != 0) {
1284 continue;
1285 }
1286
72cf2d4f 1287 QLIST_REMOVE(monfd, next);
9409fc05 1288 tmp_fd = monfd->fd;
7267c094
AL
1289 g_free(monfd->name);
1290 g_free(monfd);
9409fc05 1291 qemu_mutex_unlock(&cur_mon->mon_lock);
774a6b67 1292 /* Make sure close() is outside critical section */
9409fc05 1293 close(tmp_fd);
208c9d1b 1294 return;
f07918fd
MM
1295 }
1296
9409fc05 1297 qemu_mutex_unlock(&cur_mon->mon_lock);
f820af87 1298 error_setg(errp, "File descriptor named '%s' not found", fdname);
f07918fd
MM
1299}
1300
a9940fc4 1301int monitor_get_fd(Monitor *mon, const char *fdname, Error **errp)
7768e04c 1302{
c227f099 1303 mon_fd_t *monfd;
7768e04c 1304
0210c3b3 1305 QEMU_LOCK_GUARD(&mon->mon_lock);
72cf2d4f 1306 QLIST_FOREACH(monfd, &mon->fds, next) {
7768e04c
MM
1307 int fd;
1308
1309 if (strcmp(monfd->name, fdname) != 0) {
1310 continue;
1311 }
1312
1313 fd = monfd->fd;
1314
1315 /* caller takes ownership of fd */
72cf2d4f 1316 QLIST_REMOVE(monfd, next);
7267c094
AL
1317 g_free(monfd->name);
1318 g_free(monfd);
7768e04c
MM
1319
1320 return fd;
1321 }
1322
a9940fc4 1323 error_setg(errp, "File descriptor named '%s' has not been found", fdname);
7768e04c
MM
1324 return -1;
1325}
1326
ba1c048a
CB
1327static void monitor_fdset_cleanup(MonFdset *mon_fdset)
1328{
1329 MonFdsetFd *mon_fdset_fd;
1330 MonFdsetFd *mon_fdset_fd_next;
1331
1332 QLIST_FOREACH_SAFE(mon_fdset_fd, &mon_fdset->fds, next, mon_fdset_fd_next) {
ebe52b59
CB
1333 if ((mon_fdset_fd->removed ||
1334 (QLIST_EMPTY(&mon_fdset->dup_fds) && mon_refcount == 0)) &&
1335 runstate_is_running()) {
ba1c048a
CB
1336 close(mon_fdset_fd->fd);
1337 g_free(mon_fdset_fd->opaque);
1338 QLIST_REMOVE(mon_fdset_fd, next);
1339 g_free(mon_fdset_fd);
1340 }
1341 }
1342
adb696f3 1343 if (QLIST_EMPTY(&mon_fdset->fds) && QLIST_EMPTY(&mon_fdset->dup_fds)) {
ba1c048a
CB
1344 QLIST_REMOVE(mon_fdset, next);
1345 g_free(mon_fdset);
1346 }
1347}
1348
7e3c0dea 1349void monitor_fdsets_cleanup(void)
efb87c16
CB
1350{
1351 MonFdset *mon_fdset;
1352 MonFdset *mon_fdset_next;
1353
0210c3b3 1354 QEMU_LOCK_GUARD(&mon_fdsets_lock);
efb87c16
CB
1355 QLIST_FOREACH_SAFE(mon_fdset, &mon_fdsets, next, mon_fdset_next) {
1356 monitor_fdset_cleanup(mon_fdset);
1357 }
1358}
1359
ba1c048a
CB
1360AddfdInfo *qmp_add_fd(bool has_fdset_id, int64_t fdset_id, bool has_opaque,
1361 const char *opaque, Error **errp)
1362{
1363 int fd;
947e4744 1364 Monitor *mon = monitor_cur();
ba1c048a
CB
1365 AddfdInfo *fdinfo;
1366
5345fdb4 1367 fd = qemu_chr_fe_get_msgfd(&mon->chr);
ba1c048a 1368 if (fd == -1) {
f820af87 1369 error_setg(errp, "No file descriptor supplied via SCM_RIGHTS");
ba1c048a
CB
1370 goto error;
1371 }
1372
e446f70d
CB
1373 fdinfo = monitor_fdset_add_fd(fd, has_fdset_id, fdset_id,
1374 has_opaque, opaque, errp);
1375 if (fdinfo) {
1376 return fdinfo;
ba1c048a 1377 }
ba1c048a
CB
1378
1379error:
1380 if (fd != -1) {
1381 close(fd);
1382 }
1383 return NULL;
1384}
1385
1386void qmp_remove_fd(int64_t fdset_id, bool has_fd, int64_t fd, Error **errp)
1387{
1388 MonFdset *mon_fdset;
1389 MonFdsetFd *mon_fdset_fd;
1390 char fd_str[60];
1391
0210c3b3 1392 QEMU_LOCK_GUARD(&mon_fdsets_lock);
ba1c048a
CB
1393 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1394 if (mon_fdset->id != fdset_id) {
1395 continue;
1396 }
1397 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
1398 if (has_fd) {
1399 if (mon_fdset_fd->fd != fd) {
1400 continue;
1401 }
1402 mon_fdset_fd->removed = true;
1403 break;
1404 } else {
1405 mon_fdset_fd->removed = true;
1406 }
1407 }
1408 if (has_fd && !mon_fdset_fd) {
1409 goto error;
1410 }
1411 monitor_fdset_cleanup(mon_fdset);
1412 return;
1413 }
1414
1415error:
1416 if (has_fd) {
1417 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64 ", fd:%" PRId64,
1418 fdset_id, fd);
1419 } else {
1420 snprintf(fd_str, sizeof(fd_str), "fdset-id:%" PRId64, fdset_id);
1421 }
f820af87 1422 error_setg(errp, "File descriptor named '%s' not found", fd_str);
ba1c048a
CB
1423}
1424
1425FdsetInfoList *qmp_query_fdsets(Error **errp)
1426{
1427 MonFdset *mon_fdset;
1428 MonFdsetFd *mon_fdset_fd;
1429 FdsetInfoList *fdset_list = NULL;
1430
0210c3b3 1431 QEMU_LOCK_GUARD(&mon_fdsets_lock);
ba1c048a
CB
1432 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1433 FdsetInfoList *fdset_info = g_malloc0(sizeof(*fdset_info));
1434 FdsetFdInfoList *fdsetfd_list = NULL;
1435
1436 fdset_info->value = g_malloc0(sizeof(*fdset_info->value));
1437 fdset_info->value->fdset_id = mon_fdset->id;
1438
1439 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
1440 FdsetFdInfoList *fdsetfd_info;
1441
1442 fdsetfd_info = g_malloc0(sizeof(*fdsetfd_info));
1443 fdsetfd_info->value = g_malloc0(sizeof(*fdsetfd_info->value));
1444 fdsetfd_info->value->fd = mon_fdset_fd->fd;
1445 if (mon_fdset_fd->opaque) {
1446 fdsetfd_info->value->has_opaque = true;
1447 fdsetfd_info->value->opaque = g_strdup(mon_fdset_fd->opaque);
1448 } else {
1449 fdsetfd_info->value->has_opaque = false;
1450 }
1451
1452 fdsetfd_info->next = fdsetfd_list;
1453 fdsetfd_list = fdsetfd_info;
1454 }
1455
1456 fdset_info->value->fds = fdsetfd_list;
1457
1458 fdset_info->next = fdset_list;
1459 fdset_list = fdset_info;
1460 }
1461
1462 return fdset_list;
1463}
1464
e446f70d
CB
1465AddfdInfo *monitor_fdset_add_fd(int fd, bool has_fdset_id, int64_t fdset_id,
1466 bool has_opaque, const char *opaque,
1467 Error **errp)
1468{
1469 MonFdset *mon_fdset = NULL;
1470 MonFdsetFd *mon_fdset_fd;
1471 AddfdInfo *fdinfo;
1472
6e8a355d 1473 QEMU_LOCK_GUARD(&mon_fdsets_lock);
e446f70d
CB
1474 if (has_fdset_id) {
1475 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1476 /* Break if match found or match impossible due to ordering by ID */
1477 if (fdset_id <= mon_fdset->id) {
1478 if (fdset_id < mon_fdset->id) {
1479 mon_fdset = NULL;
1480 }
1481 break;
1482 }
1483 }
1484 }
1485
1486 if (mon_fdset == NULL) {
1487 int64_t fdset_id_prev = -1;
1488 MonFdset *mon_fdset_cur = QLIST_FIRST(&mon_fdsets);
1489
1490 if (has_fdset_id) {
1491 if (fdset_id < 0) {
c6bd8c70
MA
1492 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "fdset-id",
1493 "a non-negative value");
e446f70d
CB
1494 return NULL;
1495 }
1496 /* Use specified fdset ID */
1497 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1498 mon_fdset_cur = mon_fdset;
1499 if (fdset_id < mon_fdset_cur->id) {
1500 break;
1501 }
1502 }
1503 } else {
1504 /* Use first available fdset ID */
1505 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1506 mon_fdset_cur = mon_fdset;
1507 if (fdset_id_prev == mon_fdset_cur->id - 1) {
1508 fdset_id_prev = mon_fdset_cur->id;
1509 continue;
1510 }
1511 break;
1512 }
1513 }
1514
1515 mon_fdset = g_malloc0(sizeof(*mon_fdset));
1516 if (has_fdset_id) {
1517 mon_fdset->id = fdset_id;
1518 } else {
1519 mon_fdset->id = fdset_id_prev + 1;
1520 }
1521
1522 /* The fdset list is ordered by fdset ID */
1523 if (!mon_fdset_cur) {
1524 QLIST_INSERT_HEAD(&mon_fdsets, mon_fdset, next);
1525 } else if (mon_fdset->id < mon_fdset_cur->id) {
1526 QLIST_INSERT_BEFORE(mon_fdset_cur, mon_fdset, next);
1527 } else {
1528 QLIST_INSERT_AFTER(mon_fdset_cur, mon_fdset, next);
1529 }
1530 }
1531
1532 mon_fdset_fd = g_malloc0(sizeof(*mon_fdset_fd));
1533 mon_fdset_fd->fd = fd;
1534 mon_fdset_fd->removed = false;
1535 if (has_opaque) {
1536 mon_fdset_fd->opaque = g_strdup(opaque);
1537 }
1538 QLIST_INSERT_HEAD(&mon_fdset->fds, mon_fdset_fd, next);
1539
1540 fdinfo = g_malloc0(sizeof(*fdinfo));
1541 fdinfo->fdset_id = mon_fdset->id;
1542 fdinfo->fd = mon_fdset_fd->fd;
1543
1544 return fdinfo;
1545}
1546
60efffa4 1547int monitor_fdset_dup_fd_add(int64_t fdset_id, int flags)
adb696f3 1548{
47451466
PX
1549#ifdef _WIN32
1550 return -ENOENT;
1551#else
adb696f3 1552 MonFdset *mon_fdset;
adb696f3 1553
0210c3b3 1554 QEMU_LOCK_GUARD(&mon_fdsets_lock);
adb696f3 1555 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
60efffa4
DB
1556 MonFdsetFd *mon_fdset_fd;
1557 MonFdsetFd *mon_fdset_fd_dup;
1558 int fd = -1;
1559 int dup_fd;
1560 int mon_fd_flags;
1561
adb696f3
CB
1562 if (mon_fdset->id != fdset_id) {
1563 continue;
1564 }
60efffa4 1565
adb696f3
CB
1566 QLIST_FOREACH(mon_fdset_fd, &mon_fdset->fds, next) {
1567 mon_fd_flags = fcntl(mon_fdset_fd->fd, F_GETFL);
1568 if (mon_fd_flags == -1) {
60efffa4 1569 return -1;
adb696f3
CB
1570 }
1571
1572 if ((flags & O_ACCMODE) == (mon_fd_flags & O_ACCMODE)) {
60efffa4
DB
1573 fd = mon_fdset_fd->fd;
1574 break;
adb696f3
CB
1575 }
1576 }
adb696f3 1577
60efffa4 1578 if (fd == -1) {
60efffa4
DB
1579 errno = EACCES;
1580 return -1;
adb696f3 1581 }
60efffa4
DB
1582
1583 dup_fd = qemu_dup_flags(fd, flags);
1584 if (dup_fd == -1) {
60efffa4 1585 return -1;
adb696f3 1586 }
60efffa4 1587
adb696f3
CB
1588 mon_fdset_fd_dup = g_malloc0(sizeof(*mon_fdset_fd_dup));
1589 mon_fdset_fd_dup->fd = dup_fd;
1590 QLIST_INSERT_HEAD(&mon_fdset->dup_fds, mon_fdset_fd_dup, next);
60efffa4 1591 return dup_fd;
adb696f3 1592 }
47451466 1593
60efffa4 1594 errno = ENOENT;
adb696f3 1595 return -1;
60efffa4 1596#endif
adb696f3
CB
1597}
1598
854f63d4 1599static int64_t monitor_fdset_dup_fd_find_remove(int dup_fd, bool remove)
adb696f3
CB
1600{
1601 MonFdset *mon_fdset;
1602 MonFdsetFd *mon_fdset_fd_dup;
1603
0210c3b3 1604 QEMU_LOCK_GUARD(&mon_fdsets_lock);
adb696f3
CB
1605 QLIST_FOREACH(mon_fdset, &mon_fdsets, next) {
1606 QLIST_FOREACH(mon_fdset_fd_dup, &mon_fdset->dup_fds, next) {
1607 if (mon_fdset_fd_dup->fd == dup_fd) {
1608 if (remove) {
1609 QLIST_REMOVE(mon_fdset_fd_dup, next);
a661614d 1610 g_free(mon_fdset_fd_dup);
adb696f3
CB
1611 if (QLIST_EMPTY(&mon_fdset->dup_fds)) {
1612 monitor_fdset_cleanup(mon_fdset);
1613 }
0210c3b3 1614 return -1;
b3dd1b8c
MT
1615 } else {
1616 return mon_fdset->id;
adb696f3 1617 }
adb696f3
CB
1618 }
1619 }
1620 }
47451466 1621
adb696f3
CB
1622 return -1;
1623}
1624
854f63d4 1625int64_t monitor_fdset_dup_fd_find(int dup_fd)
adb696f3
CB
1626{
1627 return monitor_fdset_dup_fd_find_remove(dup_fd, false);
1628}
1629
b3dd1b8c 1630void monitor_fdset_dup_fd_remove(int dup_fd)
adb696f3 1631{
b3dd1b8c 1632 monitor_fdset_dup_fd_find_remove(dup_fd, true);
adb696f3
CB
1633}
1634
1677f4c6 1635int monitor_fd_param(Monitor *mon, const char *fdname, Error **errp)
5906366e
LE
1636{
1637 int fd;
1638 Error *local_err = NULL;
a96ed02f 1639
5906366e 1640 if (!qemu_isdigit(fdname[0]) && mon) {
a9940fc4 1641 fd = monitor_get_fd(mon, fdname, &local_err);
5906366e
LE
1642 } else {
1643 fd = qemu_parse_fd(fdname);
a96ed02f 1644 if (fd == -1) {
5906366e
LE
1645 error_setg(&local_err, "Invalid file descriptor number '%s'",
1646 fdname);
a96ed02f 1647 }
5906366e
LE
1648 }
1649 if (local_err) {
1650 error_propagate(errp, local_err);
1651 assert(fd == -1);
a96ed02f 1652 } else {
5906366e 1653 assert(fd != -1);
a96ed02f
NB
1654 }
1655
1656 return fd;
1657}
1658
acd0a093 1659/* Please update hmp-commands.hx when adding or changing commands */
a0cd5e1c 1660static HMPCommand hmp_info_cmds[] = {
da76ee76
PB
1661#include "hmp-commands-info.h"
1662 { NULL, NULL, },
9dc39cba
FB
1663};
1664
a0cd5e1c 1665/* hmp_cmds and hmp_info_cmds would be sorted at runtime */
ed7bda5d 1666HMPCommand hmp_cmds[] = {
a13ced59
WX
1667#include "hmp-commands.h"
1668 { NULL, NULL, },
1669};
1670
ed7bda5d
KW
1671/*
1672 * Set @pval to the value in the register identified by @name.
1673 * return 0 if OK, -1 if not found
1674 */
2fc5d01b 1675int get_monitor_def(Monitor *mon, int64_t *pval, const char *name)
9307c4c1 1676{
bf957284 1677 const MonitorDef *md = target_monitor_defs();
2fc5d01b 1678 CPUState *cs = mon_get_cpu(mon);
92a31b1f 1679 void *ptr;
0a9516c2
AK
1680 uint64_t tmp = 0;
1681 int ret;
92a31b1f 1682
854e67fe 1683 if (cs == NULL || md == NULL) {
bf957284
PB
1684 return -1;
1685 }
1686
1687 for(; md->name != NULL; md++) {
ed7bda5d 1688 if (hmp_compare_cmd(name, md->name)) {
9307c4c1 1689 if (md->get_value) {
43cf067f 1690 *pval = md->get_value(mon, md, md->offset);
9307c4c1 1691 } else {
e7cff9c6 1692 CPUArchState *env = mon_get_cpu_env(mon);
6a00d601 1693 ptr = (uint8_t *)env + md->offset;
92a31b1f
FB
1694 switch(md->type) {
1695 case MD_I32:
1696 *pval = *(int32_t *)ptr;
1697 break;
1698 case MD_TLONG:
1699 *pval = *(target_long *)ptr;
1700 break;
1701 default:
1702 *pval = 0;
1703 break;
1704 }
9307c4c1
FB
1705 }
1706 return 0;
1707 }
1708 }
0a9516c2 1709
854e67fe 1710 ret = target_get_monitor_def(cs, name, &tmp);
0a9516c2
AK
1711 if (!ret) {
1712 *pval = (target_long) tmp;
1713 }
1714
1715 return ret;
9307c4c1
FB
1716}
1717
40d19394
HB
1718static void add_completion_option(ReadLineState *rs, const char *str,
1719 const char *option)
1720{
1721 if (!str || !option) {
1722 return;
1723 }
1724 if (!strncmp(option, str, strlen(str))) {
1725 readline_add_completion(rs, option);
1726 }
1727}
1728
13e315da
HB
1729void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str)
1730{
1731 size_t len;
1732 ChardevBackendInfoList *list, *start;
1733
1734 if (nb_args != 2) {
1735 return;
1736 }
1737 len = strlen(str);
1738 readline_set_completion_index(rs, len);
1739
1740 start = list = qmp_query_chardev_backends(NULL);
1741 while (list) {
1742 const char *chr_name = list->value->name;
1743
1744 if (!strncmp(chr_name, str, len)) {
1745 readline_add_completion(rs, chr_name);
1746 }
1747 list = list->next;
1748 }
1749 qapi_free_ChardevBackendInfoList(start);
1750}
1751
b162b49a
HB
1752void netdev_add_completion(ReadLineState *rs, int nb_args, const char *str)
1753{
1754 size_t len;
1755 int i;
1756
1757 if (nb_args != 2) {
1758 return;
1759 }
1760 len = strlen(str);
1761 readline_set_completion_index(rs, len);
1c236ba5 1762 for (i = 0; i < NET_CLIENT_DRIVER__MAX; i++) {
977c736f 1763 add_completion_option(rs, str, NetClientDriver_str(i));
b162b49a
HB
1764 }
1765}
1766
2da1b3ab 1767void device_add_completion(ReadLineState *rs, int nb_args, const char *str)
992d3e64
HB
1768{
1769 GSList *list, *elt;
1770 size_t len;
1771
2da1b3ab
HB
1772 if (nb_args != 2) {
1773 return;
1774 }
1775
992d3e64
HB
1776 len = strlen(str);
1777 readline_set_completion_index(rs, len);
1778 list = elt = object_class_get_list(TYPE_DEVICE, false);
1779 while (elt) {
1780 const char *name;
1781 DeviceClass *dc = OBJECT_CLASS_CHECK(DeviceClass, elt->data,
1782 TYPE_DEVICE);
1783 name = object_class_get_name(OBJECT_CLASS(dc));
2da1b3ab 1784
e90f2a8c 1785 if (dc->user_creatable
2da1b3ab 1786 && !strncmp(name, str, len)) {
992d3e64
HB
1787 readline_add_completion(rs, name);
1788 }
1789 elt = elt->next;
1790 }
1791 g_slist_free(list);
1792}
1793
bfa40f77 1794void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
1094fd3a
HB
1795{
1796 GSList *list, *elt;
1797 size_t len;
1798
bfa40f77
HB
1799 if (nb_args != 2) {
1800 return;
1801 }
1802
1094fd3a
HB
1803 len = strlen(str);
1804 readline_set_completion_index(rs, len);
1805 list = elt = object_class_get_list(TYPE_USER_CREATABLE, false);
1806 while (elt) {
1807 const char *name;
1808
1809 name = object_class_get_name(OBJECT_CLASS(elt->data));
1810 if (!strncmp(name, str, len) && strcmp(name, TYPE_USER_CREATABLE)) {
1811 readline_add_completion(rs, name);
1812 }
1813 elt = elt->next;
1814 }
1815 g_slist_free(list);
1816}
1817
91590159
MAL
1818static int qdev_add_hotpluggable_device(Object *obj, void *opaque)
1819{
1820 GSList **list = opaque;
688ffbb4 1821 DeviceState *dev = (DeviceState *)object_dynamic_cast(obj, TYPE_DEVICE);
91590159
MAL
1822
1823 if (dev == NULL) {
1824 return 0;
1825 }
1826
1827 if (dev->realized && object_property_get_bool(obj, "hotpluggable", NULL)) {
1828 *list = g_slist_append(*list, dev);
1829 }
1830
1831 return 0;
1832}
1833
1834static GSList *qdev_build_hotpluggable_device_list(Object *peripheral)
1835{
1836 GSList *list = NULL;
1837
1838 object_child_foreach(peripheral, qdev_add_hotpluggable_device, &list);
1839
1840 return list;
1841}
1842
6a1fa9f5
ZG
1843static void peripheral_device_del_completion(ReadLineState *rs,
1844 const char *str, size_t len)
1845{
4cae4d5a
MA
1846 Object *peripheral = container_get(qdev_get_machine(), "/peripheral");
1847 GSList *list, *item;
6a1fa9f5 1848
4cae4d5a
MA
1849 list = qdev_build_hotpluggable_device_list(peripheral);
1850 if (!list) {
6a1fa9f5
ZG
1851 return;
1852 }
1853
6a1fa9f5
ZG
1854 for (item = list; item; item = g_slist_next(item)) {
1855 DeviceState *dev = item->data;
1856
1857 if (dev->id && !strncmp(str, dev->id, len)) {
1858 readline_add_completion(rs, dev->id);
1859 }
1860 }
1861
1862 g_slist_free(list);
1863}
1864
6297d9a2
HB
1865void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str)
1866{
1867 size_t len;
1868 ChardevInfoList *list, *start;
1869
1870 if (nb_args != 2) {
1871 return;
1872 }
1873 len = strlen(str);
1874 readline_set_completion_index(rs, len);
1875
1876 start = list = qmp_query_chardev(NULL);
1877 while (list) {
1878 ChardevInfo *chr = list->value;
1879
1880 if (!strncmp(chr->label, str, len)) {
1881 readline_add_completion(rs, chr->label);
1882 }
1883 list = list->next;
1884 }
1885 qapi_free_ChardevInfoList(start);
1886}
1887
8e597779
HB
1888static void ringbuf_completion(ReadLineState *rs, const char *str)
1889{
1890 size_t len;
1891 ChardevInfoList *list, *start;
1892
1893 len = strlen(str);
1894 readline_set_completion_index(rs, len);
1895
1896 start = list = qmp_query_chardev(NULL);
1897 while (list) {
1898 ChardevInfo *chr_info = list->value;
1899
1900 if (!strncmp(chr_info->label, str, len)) {
0ec7b3e7 1901 Chardev *chr = qemu_chr_find(chr_info->label);
777357d7 1902 if (chr && CHARDEV_IS_RINGBUF(chr)) {
8e597779
HB
1903 readline_add_completion(rs, chr_info->label);
1904 }
1905 }
1906 list = list->next;
1907 }
1908 qapi_free_ChardevInfoList(start);
1909}
1910
8e597779
HB
1911void ringbuf_write_completion(ReadLineState *rs, int nb_args, const char *str)
1912{
1913 if (nb_args != 2) {
1914 return;
1915 }
1916 ringbuf_completion(rs, str);
1917}
1918
2da1b3ab
HB
1919void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
1920{
1921 size_t len;
1922
1923 if (nb_args != 2) {
1924 return;
1925 }
1926
1927 len = strlen(str);
1928 readline_set_completion_index(rs, len);
6a1fa9f5 1929 peripheral_device_del_completion(rs, str, len);
2da1b3ab
HB
1930}
1931
bfa40f77 1932void object_del_completion(ReadLineState *rs, int nb_args, const char *str)
b48fa074
HB
1933{
1934 ObjectPropertyInfoList *list, *start;
1935 size_t len;
1936
bfa40f77
HB
1937 if (nb_args != 2) {
1938 return;
1939 }
b48fa074
HB
1940 len = strlen(str);
1941 readline_set_completion_index(rs, len);
1942
1943 start = list = qmp_qom_list("/objects", NULL);
1944 while (list) {
1945 ObjectPropertyInfo *info = list->value;
1946
1947 if (!strncmp(info->type, "child<", 5)
1948 && !strncmp(info->name, str, len)) {
1949 readline_add_completion(rs, info->name);
1950 }
1951 list = list->next;
1952 }
1953 qapi_free_ObjectPropertyInfoList(start);
1954}
1955
29136cd8
HB
1956void sendkey_completion(ReadLineState *rs, int nb_args, const char *str)
1957{
1958 int i;
1959 char *sep;
1960 size_t len;
1961
1962 if (nb_args != 2) {
1963 return;
1964 }
1965 sep = strrchr(str, '-');
1966 if (sep) {
1967 str = sep + 1;
1968 }
1969 len = strlen(str);
1970 readline_set_completion_index(rs, len);
7fb1cf16 1971 for (i = 0; i < Q_KEY_CODE__MAX; i++) {
977c736f
MA
1972 if (!strncmp(str, QKeyCode_str(i), len)) {
1973 readline_add_completion(rs, QKeyCode_str(i));
29136cd8
HB
1974 }
1975 }
1976}
1977
40d19394
HB
1978void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
1979{
1980 size_t len;
1981
1982 len = strlen(str);
1983 readline_set_completion_index(rs, len);
1984 if (nb_args == 2) {
eaed483c 1985 NetClientState *ncs[MAX_QUEUE_NUM];
40d19394
HB
1986 int count, i;
1987 count = qemu_find_net_clients_except(NULL, ncs,
f394b2e2 1988 NET_CLIENT_DRIVER_NONE,
eaed483c 1989 MAX_QUEUE_NUM);
bcfa4d60 1990 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
40d19394
HB
1991 const char *name = ncs[i]->name;
1992 if (!strncmp(str, name, len)) {
1993 readline_add_completion(rs, name);
1994 }
1995 }
1996 } else if (nb_args == 3) {
1997 add_completion_option(rs, str, "on");
1998 add_completion_option(rs, str, "off");
1999 }
2000}
2001
11b389f2
HB
2002void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
2003{
2004 int len, count, i;
eaed483c 2005 NetClientState *ncs[MAX_QUEUE_NUM];
11b389f2
HB
2006
2007 if (nb_args != 2) {
2008 return;
2009 }
2010
2011 len = strlen(str);
2012 readline_set_completion_index(rs, len);
f394b2e2 2013 count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_DRIVER_NIC,
eaed483c 2014 MAX_QUEUE_NUM);
bcfa4d60 2015 for (i = 0; i < MIN(count, MAX_QUEUE_NUM); i++) {
11b389f2
HB
2016 const char *name = ncs[i]->name;
2017 if (strncmp(str, name, len)) {
2018 continue;
2019 }
08712fcb 2020 if (ncs[i]->is_netdev) {
11b389f2
HB
2021 readline_add_completion(rs, name);
2022 }
2023 }
2024}
2025
bd71211d
LV
2026void info_trace_events_completion(ReadLineState *rs, int nb_args, const char *str)
2027{
2028 size_t len;
2029
2030 len = strlen(str);
2031 readline_set_completion_index(rs, len);
2032 if (nb_args == 2) {
0d4e995c
DB
2033 TraceEventIter iter;
2034 TraceEvent *ev;
2035 char *pattern = g_strdup_printf("%s*", str);
2036 trace_event_iter_init(&iter, pattern);
2037 while ((ev = trace_event_iter_next(&iter)) != NULL) {
2038 readline_add_completion(rs, trace_event_get_name(ev));
bd71211d 2039 }
0d4e995c 2040 g_free(pattern);
bd71211d
LV
2041 }
2042}
2043
987bd270
DDAG
2044void trace_event_completion(ReadLineState *rs, int nb_args, const char *str)
2045{
2046 size_t len;
2047
2048 len = strlen(str);
2049 readline_set_completion_index(rs, len);
2050 if (nb_args == 2) {
0d4e995c
DB
2051 TraceEventIter iter;
2052 TraceEvent *ev;
2053 char *pattern = g_strdup_printf("%s*", str);
2054 trace_event_iter_init(&iter, pattern);
2055 while ((ev = trace_event_iter_next(&iter)) != NULL) {
2056 readline_add_completion(rs, trace_event_get_name(ev));
2057 }
2058 g_free(pattern);
987bd270
DDAG
2059 } else if (nb_args == 3) {
2060 add_completion_option(rs, str, "on");
2061 add_completion_option(rs, str, "off");
2062 }
2063}
2064
d0ece345
HB
2065void watchdog_action_completion(ReadLineState *rs, int nb_args, const char *str)
2066{
4bb08af3
HB
2067 int i;
2068
d0ece345
HB
2069 if (nb_args != 2) {
2070 return;
2071 }
2072 readline_set_completion_index(rs, strlen(str));
14d53b4f
MP
2073 for (i = 0; i < WATCHDOG_ACTION__MAX; i++) {
2074 add_completion_option(rs, str, WatchdogAction_str(i));
4bb08af3 2075 }
d0ece345
HB
2076}
2077
c68a0409
HB
2078void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
2079 const char *str)
2080{
2081 size_t len;
2082
2083 len = strlen(str);
2084 readline_set_completion_index(rs, len);
2085 if (nb_args == 2) {
2086 int i;
7fb1cf16 2087 for (i = 0; i < MIGRATION_CAPABILITY__MAX; i++) {
977c736f 2088 const char *name = MigrationCapability_str(i);
c68a0409
HB
2089 if (!strncmp(str, name, len)) {
2090 readline_add_completion(rs, name);
2091 }
2092 }
2093 } else if (nb_args == 3) {
2094 add_completion_option(rs, str, "on");
2095 add_completion_option(rs, str, "off");
2096 }
2097}
2098
50e9a629
LL
2099void migrate_set_parameter_completion(ReadLineState *rs, int nb_args,
2100 const char *str)
2101{
2102 size_t len;
2103
2104 len = strlen(str);
2105 readline_set_completion_index(rs, len);
2106 if (nb_args == 2) {
2107 int i;
7fb1cf16 2108 for (i = 0; i < MIGRATION_PARAMETER__MAX; i++) {
977c736f 2109 const char *name = MigrationParameter_str(i);
50e9a629
LL
2110 if (!strncmp(str, name, len)) {
2111 readline_add_completion(rs, name);
2112 }
2113 }
2114 }
2115}
2116
b21631f3
HB
2117static void vm_completion(ReadLineState *rs, const char *str)
2118{
2119 size_t len;
7c8eece4 2120 BlockDriverState *bs;
88be7b4b 2121 BdrvNextIterator it;
b21631f3
HB
2122
2123 len = strlen(str);
2124 readline_set_completion_index(rs, len);
7c8eece4 2125
88be7b4b 2126 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
b21631f3 2127 SnapshotInfoList *snapshots, *snapshot;
6bf1faa8
DL
2128 AioContext *ctx = bdrv_get_aio_context(bs);
2129 bool ok = false;
b21631f3 2130
6bf1faa8
DL
2131 aio_context_acquire(ctx);
2132 if (bdrv_can_snapshot(bs)) {
2133 ok = bdrv_query_snapshot_info_list(bs, &snapshots, NULL) == 0;
b21631f3 2134 }
6bf1faa8
DL
2135 aio_context_release(ctx);
2136 if (!ok) {
b21631f3
HB
2137 continue;
2138 }
6bf1faa8 2139
b21631f3
HB
2140 snapshot = snapshots;
2141 while (snapshot) {
2142 char *completion = snapshot->value->name;
2143 if (!strncmp(str, completion, len)) {
2144 readline_add_completion(rs, completion);
2145 }
2146 completion = snapshot->value->id;
2147 if (!strncmp(str, completion, len)) {
2148 readline_add_completion(rs, completion);
2149 }
2150 snapshot = snapshot->next;
2151 }
2152 qapi_free_SnapshotInfoList(snapshots);
2153 }
2154
2155}
2156
2157void delvm_completion(ReadLineState *rs, int nb_args, const char *str)
2158{
2159 if (nb_args == 2) {
2160 vm_completion(rs, str);
2161 }
2162}
2163
2164void loadvm_completion(ReadLineState *rs, int nb_args, const char *str)
2165{
2166 if (nb_args == 2) {
2167 vm_completion(rs, str);
2168 }
2169}
2170
816f8925
WX
2171static int
2172compare_mon_cmd(const void *a, const void *b)
2173{
a0cd5e1c
KW
2174 return strcmp(((const HMPCommand *)a)->name,
2175 ((const HMPCommand *)b)->name);
816f8925
WX
2176}
2177
2178static void sortcmdlist(void)
2179{
a0cd5e1c
KW
2180 qsort(hmp_cmds, ARRAY_SIZE(hmp_cmds) - 1,
2181 sizeof(*hmp_cmds),
2182 compare_mon_cmd);
2183 qsort(hmp_info_cmds, ARRAY_SIZE(hmp_info_cmds) - 1,
2184 sizeof(*hmp_info_cmds),
2185 compare_mon_cmd);
816f8925
WX
2186}
2187
6adf08dd
PX
2188void monitor_init_globals(void)
2189{
1d95db74 2190 monitor_init_globals_core();
6adf08dd 2191 monitor_init_qmp_commands();
6adf08dd 2192 sortcmdlist();
47451466 2193 qemu_mutex_init(&mon_fdsets_lock);
aa455485 2194}