blob: af3fd19935a283eb9b5255a1035c90fbed05140a [file] [log] [blame]
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001HXCOMM QMP dispatch table and documentation
2HXCOMM Text between SQMP and EQMP is copied to the QMP documention file and
3HXCOMM does not show up in the other formats.
4
5SQMP
6 QMP Supported Commands
7 ----------------------
8
9This document describes all commands currently supported by QMP.
10
11Most of the time their usage is exactly the same as in the user Monitor, this
12means that any other document which also describe commands (the manpage,
13QEMU's manual, etc) can and should be consulted.
14
15QMP has two types of commands: regular and query commands. Regular commands
16usually change the Virtual Machine's state someway, while query commands just
17return information. The sections below are divided accordingly.
18
19It's important to observe that all communication examples are formatted in
20a reader-friendly way, so that they're easier to understand. However, in real
21protocol usage, they're emitted as a single line.
22
23Also, the following notation is used to denote data flow:
24
25-> data issued by the Client
26<- Server data response
27
28Please, refer to the QMP specification (QMP/qmp-spec.txt) for detailed
29information on the Server command and response formats.
30
31NOTE: This document is temporary and will be replaced soon.
32
331. Stability Considerations
34===========================
35
36The current QMP command set (described in this file) may be useful for a
37number of use cases, however it's limited and several commands have bad
38defined semantics, specially with regard to command completion.
39
40These problems are going to be solved incrementally in the next QEMU releases
41and we're going to establish a deprecation policy for badly defined commands.
42
43If you're planning to adopt QMP, please observe the following:
44
Zhi Yong Wuc20cdf82011-07-27 14:32:56 +080045 1. The deprecation policy will take effect and be documented soon, please
Luiz Capitulino82a56f02010-09-13 12:26:00 -030046 check the documentation of each used command as soon as a new release of
47 QEMU is available
48
49 2. DO NOT rely on anything which is not explicit documented
50
51 3. Errors, in special, are not documented. Applications should NOT check
52 for specific errors classes or data (it's strongly recommended to only
53 check for the "error" key)
54
552. Regular Commands
56===================
57
58Server's responses in the examples below are always a success response, please
59refer to the QMP specification for more details on error responses.
60
61EQMP
62
63 {
64 .name = "quit",
65 .args_type = "",
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030066 .mhandler.cmd_new = qmp_marshal_input_quit,
Luiz Capitulino82a56f02010-09-13 12:26:00 -030067 },
68
69SQMP
70quit
71----
72
73Quit the emulator.
74
75Arguments: None.
76
77Example:
78
79-> { "execute": "quit" }
80<- { "return": {} }
81
82EQMP
83
84 {
85 .name = "eject",
86 .args_type = "force:-f,device:B",
Luiz Capitulinoc245b6a2011-12-07 16:02:36 -020087 .mhandler.cmd_new = qmp_marshal_input_eject,
Luiz Capitulino82a56f02010-09-13 12:26:00 -030088 },
89
90SQMP
91eject
92-----
93
94Eject a removable medium.
95
96Arguments:
97
98- force: force ejection (json-bool, optional)
99- device: device name (json-string)
100
101Example:
102
103-> { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
104<- { "return": {} }
105
106Note: The "force" argument defaults to false.
107
108EQMP
109
110 {
111 .name = "change",
112 .args_type = "device:B,target:F,arg:s?",
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200113 .mhandler.cmd_new = qmp_marshal_input_change,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300114 },
115
116SQMP
117change
118------
119
120Change a removable medium or VNC configuration.
121
122Arguments:
123
124- "device": device name (json-string)
125- "target": filename or item (json-string)
126- "arg": additional argument (json-string, optional)
127
128Examples:
129
1301. Change a removable medium
131
132-> { "execute": "change",
133 "arguments": { "device": "ide1-cd0",
134 "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
135<- { "return": {} }
136
1372. Change VNC password
138
139-> { "execute": "change",
140 "arguments": { "device": "vnc", "target": "password",
141 "arg": "foobar1" } }
142<- { "return": {} }
143
144EQMP
145
146 {
147 .name = "screendump",
148 .args_type = "filename:F",
Luiz Capitulinoad39cf62012-05-24 13:48:23 -0300149 .mhandler.cmd_new = qmp_marshal_input_screendump,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300150 },
151
152SQMP
153screendump
154----------
155
156Save screen into PPM image.
157
158Arguments:
159
160- "filename": file path (json-string)
161
162Example:
163
164-> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
165<- { "return": {} }
166
167EQMP
168
169 {
170 .name = "stop",
171 .args_type = "",
Luiz Capitulino5f158f22011-09-15 14:34:39 -0300172 .mhandler.cmd_new = qmp_marshal_input_stop,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300173 },
174
175SQMP
176stop
177----
178
179Stop the emulator.
180
181Arguments: None.
182
183Example:
184
185-> { "execute": "stop" }
186<- { "return": {} }
187
188EQMP
189
190 {
191 .name = "cont",
192 .args_type = "",
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200193 .mhandler.cmd_new = qmp_marshal_input_cont,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300194 },
195
196SQMP
197cont
198----
199
200Resume emulation.
201
202Arguments: None.
203
204Example:
205
206-> { "execute": "cont" }
207<- { "return": {} }
208
209EQMP
210
211 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100212 .name = "system_wakeup",
213 .args_type = "",
214 .mhandler.cmd_new = qmp_marshal_input_system_wakeup,
215 },
216
217SQMP
218system_wakeup
219-------------
220
221Wakeup guest from suspend.
222
223Arguments: None.
224
225Example:
226
227-> { "execute": "system_wakeup" }
228<- { "return": {} }
229
230EQMP
231
232 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300233 .name = "system_reset",
234 .args_type = "",
Luiz Capitulino38d22652011-09-15 14:41:46 -0300235 .mhandler.cmd_new = qmp_marshal_input_system_reset,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300236 },
237
238SQMP
239system_reset
240------------
241
242Reset the system.
243
244Arguments: None.
245
246Example:
247
248-> { "execute": "system_reset" }
249<- { "return": {} }
250
251EQMP
252
253 {
254 .name = "system_powerdown",
255 .args_type = "",
Luiz Capitulino22e1bb92011-11-27 22:40:03 -0200256 .mhandler.cmd_new = qmp_marshal_input_system_powerdown,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300257 },
258
259SQMP
260system_powerdown
261----------------
262
263Send system power down event.
264
265Arguments: None.
266
267Example:
268
269-> { "execute": "system_powerdown" }
270<- { "return": {} }
271
272EQMP
273
274 {
275 .name = "device_add",
276 .args_type = "device:O",
277 .params = "driver[,prop=value][,...]",
278 .help = "add device, like -device on the command line",
279 .user_print = monitor_user_noop,
280 .mhandler.cmd_new = do_device_add,
281 },
282
283SQMP
284device_add
285----------
286
287Add a device.
288
289Arguments:
290
291- "driver": the name of the new device's driver (json-string)
292- "bus": the device's parent bus (device tree path, json-string, optional)
293- "id": the device's ID, must be unique (json-string)
294- device properties
295
296Example:
297
298-> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
299<- { "return": {} }
300
301Notes:
302
303(1) For detailed information about this command, please refer to the
304 'docs/qdev-device-use.txt' file.
305
306(2) It's possible to list device properties by running QEMU with the
307 "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
308
309EQMP
310
311 {
312 .name = "device_del",
313 .args_type = "id:s",
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300314 .mhandler.cmd_new = qmp_marshal_input_device_del,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300315 },
316
317SQMP
318device_del
319----------
320
321Remove a device.
322
323Arguments:
324
325- "id": the device's ID (json-string)
326
327Example:
328
329-> { "execute": "device_del", "arguments": { "id": "net1" } }
330<- { "return": {} }
331
332EQMP
333
334 {
Amos Konge4c8f002012-08-31 10:56:26 +0800335 .name = "send-key",
336 .args_type = "keys:O,hold-time:i?",
337 .mhandler.cmd_new = qmp_marshal_input_send_key,
338 },
339
340SQMP
341send-key
342----------
343
344Send keys to VM.
345
346Arguments:
347
348keys array:
Amos Kongf9b1d9b2013-07-16 19:52:14 +0800349 - "key": key sequence (a json-array of key union values,
350 union can be number or qcode enum)
Amos Konge4c8f002012-08-31 10:56:26 +0800351
352- hold-time: time to delay key up events, milliseconds. Defaults to 100
353 (json-int, optional)
354
355Example:
356
357-> { "execute": "send-key",
Amos Kongf9b1d9b2013-07-16 19:52:14 +0800358 "arguments": { "keys": [ { "type": "qcode", "data": "ctrl" },
359 { "type": "qcode", "data": "alt" },
360 { "type": "qcode", "data": "delete" } ] } }
Amos Konge4c8f002012-08-31 10:56:26 +0800361<- { "return": {} }
362
363EQMP
364
365 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300366 .name = "cpu",
367 .args_type = "index:i",
Luiz Capitulino755f1962011-10-06 14:31:39 -0300368 .mhandler.cmd_new = qmp_marshal_input_cpu,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300369 },
370
371SQMP
372cpu
373---
374
375Set the default CPU.
376
377Arguments:
378
379- "index": the CPU's index (json-int)
380
381Example:
382
383-> { "execute": "cpu", "arguments": { "index": 0 } }
384<- { "return": {} }
385
386Note: CPUs' indexes are obtained with the 'query-cpus' command.
387
388EQMP
389
390 {
Igor Mammedov69ca3ea2013-04-30 15:41:25 +0200391 .name = "cpu-add",
392 .args_type = "id:i",
393 .mhandler.cmd_new = qmp_marshal_input_cpu_add,
394 },
395
396SQMP
397cpu-add
398-------
399
400Adds virtual cpu
401
402Arguments:
403
404- "id": cpu id (json-int)
405
406Example:
407
408-> { "execute": "cpu-add", "arguments": { "id": 2 } }
409<- { "return": {} }
410
411EQMP
412
413 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300414 .name = "memsave",
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200415 .args_type = "val:l,size:i,filename:s,cpu:i?",
416 .mhandler.cmd_new = qmp_marshal_input_memsave,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300417 },
418
419SQMP
420memsave
421-------
422
423Save to disk virtual memory dump starting at 'val' of size 'size'.
424
425Arguments:
426
427- "val": the starting address (json-int)
428- "size": the memory size, in bytes (json-int)
429- "filename": file path (json-string)
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200430- "cpu": virtual CPU index (json-int, optional)
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300431
432Example:
433
434-> { "execute": "memsave",
435 "arguments": { "val": 10,
436 "size": 100,
437 "filename": "/tmp/virtual-mem-dump" } }
438<- { "return": {} }
439
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300440EQMP
441
442 {
443 .name = "pmemsave",
444 .args_type = "val:l,size:i,filename:s",
Luiz Capitulino6d3962b2011-11-22 17:26:46 -0200445 .mhandler.cmd_new = qmp_marshal_input_pmemsave,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300446 },
447
448SQMP
449pmemsave
450--------
451
452Save to disk physical memory dump starting at 'val' of size 'size'.
453
454Arguments:
455
456- "val": the starting address (json-int)
457- "size": the memory size, in bytes (json-int)
458- "filename": file path (json-string)
459
460Example:
461
462-> { "execute": "pmemsave",
463 "arguments": { "val": 10,
464 "size": 100,
465 "filename": "/tmp/physical-mem-dump" } }
466<- { "return": {} }
467
468EQMP
469
470 {
Lai Jiangshana4046662011-03-07 17:05:15 +0800471 .name = "inject-nmi",
472 .args_type = "",
Luiz Capitulinoab49ab52011-11-23 12:55:53 -0200473 .mhandler.cmd_new = qmp_marshal_input_inject_nmi,
Lai Jiangshana4046662011-03-07 17:05:15 +0800474 },
475
476SQMP
477inject-nmi
478----------
479
Alexey Kardashevskiy9cb805f2014-08-20 22:16:33 +1000480Inject an NMI on the default CPU (x86/s390) or all CPUs (ppc64).
Lai Jiangshana4046662011-03-07 17:05:15 +0800481
482Arguments: None.
483
484Example:
485
486-> { "execute": "inject-nmi" }
487<- { "return": {} }
488
Luiz Capitulinode253f12012-07-27 16:18:16 -0300489Note: inject-nmi fails when the guest doesn't support injecting.
Lai Jiangshana4046662011-03-07 17:05:15 +0800490
491EQMP
492
493 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100494 .name = "ringbuf-write",
Markus Armbruster82e59a62013-02-06 21:27:14 +0100495 .args_type = "device:s,data:s,format:s?",
Markus Armbruster3949e592013-02-06 21:27:24 +0100496 .mhandler.cmd_new = qmp_marshal_input_ringbuf_write,
Lei Li1f590cf2013-01-25 00:03:20 +0800497 },
498
499SQMP
Markus Armbruster3949e592013-02-06 21:27:24 +0100500ringbuf-write
Lei Li1f590cf2013-01-25 00:03:20 +0800501-------------
502
Markus Armbruster3949e592013-02-06 21:27:24 +0100503Write to a ring buffer character device.
Lei Li1f590cf2013-01-25 00:03:20 +0800504
505Arguments:
506
Markus Armbruster3949e592013-02-06 21:27:24 +0100507- "device": ring buffer character device name (json-string)
508- "data": data to write (json-string)
509- "format": data format (json-string, optional)
510 - Possible values: "utf8" (default), "base64"
511 Bug: invalid base64 is currently not rejected.
512 Whitespace *is* invalid.
Lei Li1f590cf2013-01-25 00:03:20 +0800513
514Example:
515
Markus Armbruster3949e592013-02-06 21:27:24 +0100516-> { "execute": "ringbuf-write",
517 "arguments": { "device": "foo",
Lei Li1f590cf2013-01-25 00:03:20 +0800518 "data": "abcdefgh",
519 "format": "utf8" } }
520<- { "return": {} }
521
522EQMP
523
524 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100525 .name = "ringbuf-read",
Lei Li49b6d722013-01-25 00:03:21 +0800526 .args_type = "device:s,size:i,format:s?",
Markus Armbruster3949e592013-02-06 21:27:24 +0100527 .mhandler.cmd_new = qmp_marshal_input_ringbuf_read,
Lei Li49b6d722013-01-25 00:03:21 +0800528 },
529
530SQMP
Markus Armbruster3949e592013-02-06 21:27:24 +0100531ringbuf-read
Lei Li49b6d722013-01-25 00:03:21 +0800532-------------
533
Markus Armbruster3949e592013-02-06 21:27:24 +0100534Read from a ring buffer character device.
Lei Li49b6d722013-01-25 00:03:21 +0800535
536Arguments:
537
Markus Armbruster3949e592013-02-06 21:27:24 +0100538- "device": ring buffer character device name (json-string)
539- "size": how many bytes to read at most (json-int)
540 - Number of data bytes, not number of characters in encoded data
541- "format": data format (json-string, optional)
542 - Possible values: "utf8" (default), "base64"
543 - Naturally, format "utf8" works only when the ring buffer
544 contains valid UTF-8 text. Invalid UTF-8 sequences get
545 replaced. Bug: replacement doesn't work. Bug: can screw
546 up on encountering NUL characters, after the ring buffer
547 lost data, and when reading stops because the size limit
548 is reached.
Lei Li49b6d722013-01-25 00:03:21 +0800549
550Example:
551
Markus Armbruster3949e592013-02-06 21:27:24 +0100552-> { "execute": "ringbuf-read",
553 "arguments": { "device": "foo",
Lei Li49b6d722013-01-25 00:03:21 +0800554 "size": 1000,
555 "format": "utf8" } }
Markus Armbruster3ab651f2013-02-06 21:27:15 +0100556<- {"return": "abcdefgh"}
Lei Li49b6d722013-01-25 00:03:21 +0800557
558EQMP
559
560 {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000561 .name = "xen-save-devices-state",
562 .args_type = "filename:F",
563 .mhandler.cmd_new = qmp_marshal_input_xen_save_devices_state,
564 },
565
566SQMP
567xen-save-devices-state
568-------
569
570Save the state of all devices to file. The RAM and the block devices
571of the VM are not saved by this command.
572
573Arguments:
574
575- "filename": the file to save the state of the devices to as binary
576data. See xen-save-devices-state.txt for a description of the binary
577format.
578
579Example:
580
581-> { "execute": "xen-save-devices-state",
582 "arguments": { "filename": "/tmp/save" } }
583<- { "return": {} }
584
585EQMP
586
587 {
Anthony PERARD39f42432012-10-03 13:48:19 +0000588 .name = "xen-set-global-dirty-log",
589 .args_type = "enable:b",
590 .mhandler.cmd_new = qmp_marshal_input_xen_set_global_dirty_log,
591 },
592
593SQMP
594xen-set-global-dirty-log
595-------
596
597Enable or disable the global dirty log mode.
598
599Arguments:
600
601- "enable": Enable it or disable it.
602
603Example:
604
605-> { "execute": "xen-set-global-dirty-log",
606 "arguments": { "enable": true } }
607<- { "return": {} }
608
609EQMP
610
611 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300612 .name = "migrate",
613 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200614 .mhandler.cmd_new = qmp_marshal_input_migrate,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300615 },
616
617SQMP
618migrate
619-------
620
621Migrate to URI.
622
623Arguments:
624
625- "blk": block migration, full disk copy (json-bool, optional)
626- "inc": incremental disk copy (json-bool, optional)
627- "uri": Destination URI (json-string)
628
629Example:
630
631-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
632<- { "return": {} }
633
634Notes:
635
636(1) The 'query-migrate' command should be used to check migration's progress
637 and final result (this information is provided by the 'status' member)
638(2) All boolean arguments default to false
639(3) The user Monitor's "detach" argument is invalid in QMP and should not
640 be used
641
642EQMP
643
644 {
645 .name = "migrate_cancel",
646 .args_type = "",
Luiz Capitulino6cdedb02011-11-27 22:54:09 -0200647 .mhandler.cmd_new = qmp_marshal_input_migrate_cancel,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300648 },
649
650SQMP
651migrate_cancel
652--------------
653
654Cancel the current migration.
655
656Arguments: None.
657
658Example:
659
660-> { "execute": "migrate_cancel" }
661<- { "return": {} }
662
663EQMP
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300664{
665 .name = "migrate-set-cache-size",
666 .args_type = "value:o",
667 .mhandler.cmd_new = qmp_marshal_input_migrate_set_cache_size,
668 },
669
670SQMP
671migrate-set-cache-size
Juan Quintela817c6042013-02-11 15:11:10 +0100672----------------------
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300673
674Set cache size to be used by XBZRLE migration, the cache size will be rounded
675down to the nearest power of 2
676
677Arguments:
678
679- "value": cache size in bytes (json-int)
680
681Example:
682
683-> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } }
684<- { "return": {} }
685
686EQMP
687 {
688 .name = "query-migrate-cache-size",
689 .args_type = "",
690 .mhandler.cmd_new = qmp_marshal_input_query_migrate_cache_size,
691 },
692
693SQMP
694query-migrate-cache-size
Juan Quintela817c6042013-02-11 15:11:10 +0100695------------------------
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300696
697Show cache size to be used by XBZRLE migration
698
699returns a json-object with the following information:
700- "size" : json-int
701
702Example:
703
704-> { "execute": "query-migrate-cache-size" }
705<- { "return": 67108864 }
706
707EQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300708
709 {
710 .name = "migrate_set_speed",
Wen Congyang3a019b62010-11-25 09:06:05 +0800711 .args_type = "value:o",
Luiz Capitulino3dc85382011-11-28 11:59:37 -0200712 .mhandler.cmd_new = qmp_marshal_input_migrate_set_speed,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300713 },
714
715SQMP
716migrate_set_speed
717-----------------
718
719Set maximum speed for migrations.
720
721Arguments:
722
Luiz Capitulino5569fd72010-12-15 17:56:18 -0200723- "value": maximum speed, in bytes per second (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300724
725Example:
726
727-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
728<- { "return": {} }
729
730EQMP
731
732 {
733 .name = "migrate_set_downtime",
734 .args_type = "value:T",
Luiz Capitulino4f0a9932011-11-27 23:18:01 -0200735 .mhandler.cmd_new = qmp_marshal_input_migrate_set_downtime,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300736 },
737
738SQMP
739migrate_set_downtime
740--------------------
741
742Set maximum tolerated downtime (in seconds) for migrations.
743
744Arguments:
745
746- "value": maximum downtime (json-number)
747
748Example:
749
750-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
751<- { "return": {} }
752
753EQMP
754
755 {
Jes Sorensenff73edf2011-03-09 14:31:06 +0100756 .name = "client_migrate_info",
757 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
758 .params = "protocol hostname port tls-port cert-subject",
759 .help = "send migration info to spice/vnc client",
760 .user_print = monitor_user_noop,
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200761 .mhandler.cmd_async = client_migrate_info,
762 .flags = MONITOR_CMD_ASYNC,
Jes Sorensenff73edf2011-03-09 14:31:06 +0100763 },
764
765SQMP
766client_migrate_info
767------------------
768
769Set the spice/vnc connection info for the migration target. The spice/vnc
770server will ask the spice/vnc client to automatically reconnect using the
771new parameters (if specified) once the vm migration finished successfully.
772
773Arguments:
774
775- "protocol": protocol: "spice" or "vnc" (json-string)
776- "hostname": migration target hostname (json-string)
777- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
778- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
779- "cert-subject": server certificate subject (json-string, optional)
780
781Example:
782
783-> { "execute": "client_migrate_info",
784 "arguments": { "protocol": "spice",
785 "hostname": "virt42.lab.kraxel.org",
786 "port": 1234 } }
787<- { "return": {} }
788
789EQMP
790
791 {
Wen Congyang783e9b42012-05-07 12:10:47 +0800792 .name = "dump-guest-memory",
qiaonuohanb53ccc32014-02-18 14:11:36 +0800793 .args_type = "paging:b,protocol:s,begin:i?,end:i?,format:s?",
794 .params = "-p protocol [begin] [length] [format]",
Wen Congyang783e9b42012-05-07 12:10:47 +0800795 .help = "dump guest memory to file",
796 .user_print = monitor_user_noop,
797 .mhandler.cmd_new = qmp_marshal_input_dump_guest_memory,
798 },
799
800SQMP
801dump
802
803
804Dump guest memory to file. The file can be processed with crash or gdb.
805
806Arguments:
807
808- "paging": do paging to get guest's memory mapping (json-bool)
809- "protocol": destination file(started with "file:") or destination file
810 descriptor (started with "fd:") (json-string)
811- "begin": the starting physical address. It's optional, and should be specified
812 with length together (json-int)
813- "length": the memory size, in bytes. It's optional, and should be specified
814 with begin together (json-int)
qiaonuohanb53ccc32014-02-18 14:11:36 +0800815- "format": the format of guest memory dump. It's optional, and can be
816 elf|kdump-zlib|kdump-lzo|kdump-snappy, but non-elf formats will
817 conflict with paging and filter, ie. begin and length (json-string)
Wen Congyang783e9b42012-05-07 12:10:47 +0800818
819Example:
820
821-> { "execute": "dump-guest-memory", "arguments": { "protocol": "fd:dump" } }
822<- { "return": {} }
823
824Notes:
825
826(1) All boolean arguments default to false
827
828EQMP
829
830 {
qiaonuohan7d6dc7f2014-02-18 14:11:38 +0800831 .name = "query-dump-guest-memory-capability",
832 .args_type = "",
833 .mhandler.cmd_new = qmp_marshal_input_query_dump_guest_memory_capability,
834 },
835
836SQMP
837query-dump-guest-memory-capability
838----------
839
840Show available formats for 'dump-guest-memory'
841
842Example:
843
844-> { "execute": "query-dump-guest-memory-capability" }
845<- { "return": { "formats":
846 ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
847
848EQMP
849
850 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300851 .name = "netdev_add",
852 .args_type = "netdev:O",
Luiz Capitulino928059a2012-04-18 17:34:15 -0300853 .mhandler.cmd_new = qmp_netdev_add,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300854 },
855
856SQMP
857netdev_add
858----------
859
860Add host network device.
861
862Arguments:
863
864- "type": the device type, "tap", "user", ... (json-string)
865- "id": the device's ID, must be unique (json-string)
866- device options
867
868Example:
869
870-> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
871<- { "return": {} }
872
Markus Armbrusteraf347aa2013-02-22 18:31:51 +0100873Note: The supported device options are the same ones supported by the '-netdev'
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300874 command-line argument, which are listed in the '-help' output or QEMU's
875 manual
876
877EQMP
878
879 {
880 .name = "netdev_del",
881 .args_type = "id:s",
Luiz Capitulino5f964152012-04-16 14:36:32 -0300882 .mhandler.cmd_new = qmp_marshal_input_netdev_del,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300883 },
884
885SQMP
886netdev_del
887----------
888
889Remove host network device.
890
891Arguments:
892
893- "id": the device's ID, must be unique (json-string)
894
895Example:
896
897-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
898<- { "return": {} }
899
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100900
901EQMP
902
903 {
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100904 .name = "object-add",
905 .args_type = "qom-type:s,id:s,props:q?",
906 .mhandler.cmd_new = qmp_object_add,
907 },
908
909SQMP
910object-add
911----------
912
913Create QOM object.
914
915Arguments:
916
917- "qom-type": the object's QOM type, i.e. the class name (json-string)
918- "id": the object's ID, must be unique (json-string)
919- "props": a dictionary of object property values (optional, json-dict)
920
921Example:
922
923-> { "execute": "object-add", "arguments": { "qom-type": "rng-random", "id": "rng1",
924 "props": { "filename": "/dev/hwrng" } } }
925<- { "return": {} }
926
927EQMP
928
929 {
Paolo Bonziniab2d0532013-12-20 23:21:09 +0100930 .name = "object-del",
931 .args_type = "id:s",
932 .mhandler.cmd_new = qmp_marshal_input_object_del,
933 },
934
935SQMP
936object-del
937----------
938
939Remove QOM object.
940
941Arguments:
942
943- "id": the object's ID (json-string)
944
945Example:
946
947-> { "execute": "object-del", "arguments": { "id": "rng1" } }
948<- { "return": {} }
949
950
951EQMP
952
953
954 {
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100955 .name = "block_resize",
Benoît Canet3b1dbd12014-01-23 21:31:37 +0100956 .args_type = "device:s?,node-name:s?,size:o",
Luiz Capitulino5e7caac2011-11-25 14:57:10 -0200957 .mhandler.cmd_new = qmp_marshal_input_block_resize,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100958 },
959
960SQMP
961block_resize
962------------
963
964Resize a block image while a guest is running.
965
966Arguments:
967
968- "device": the device's ID, must be unique (json-string)
Benoît Canet3b1dbd12014-01-23 21:31:37 +0100969- "node-name": the node name in the block driver state graph (json-string)
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100970- "size": new size
971
972Example:
973
974-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
975<- { "return": {} }
976
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300977EQMP
978
979 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +0100980 .name = "block-stream",
Jeff Cody13d8cc52014-06-25 15:40:11 -0400981 .args_type = "device:B,base:s?,speed:o?,backing-file:s?,on-error:s?",
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +0000982 .mhandler.cmd_new = qmp_marshal_input_block_stream,
983 },
984
985 {
Jeff Codyed61fc12012-09-27 13:29:16 -0400986 .name = "block-commit",
Jeff Cody54e26902014-06-25 15:40:10 -0400987 .args_type = "device:B,base:s?,top:s?,backing-file:s?,speed:o?",
Jeff Codyed61fc12012-09-27 13:29:16 -0400988 .mhandler.cmd_new = qmp_marshal_input_block_commit,
989 },
990
Jeff Cody37222902014-01-24 09:02:37 -0500991SQMP
992block-commit
993------------
994
995Live commit of data from overlay image nodes into backing nodes - i.e., writes
996data between 'top' and 'base' into 'base'.
997
998Arguments:
999
1000- "device": The device's ID, must be unique (json-string)
1001- "base": The file name of the backing image to write data into.
1002 If not specified, this is the deepest backing image
1003 (json-string, optional)
1004- "top": The file name of the backing image within the image chain,
Jeff Cody7676e2c2014-06-30 15:14:15 +02001005 which contains the topmost data to be committed down. If
1006 not specified, this is the active layer. (json-string, optional)
Jeff Cody37222902014-01-24 09:02:37 -05001007
Jeff Cody54e26902014-06-25 15:40:10 -04001008- backing-file: The backing file string to write into the overlay
1009 image of 'top'. If 'top' is the active layer,
1010 specifying a backing file string is an error. This
1011 filename is not validated.
1012
1013 If a pathname string is such that it cannot be
1014 resolved by QEMU, that means that subsequent QMP or
1015 HMP commands must use node-names for the image in
1016 question, as filename lookup methods will fail.
1017
1018 If not specified, QEMU will automatically determine
1019 the backing file string to use, or error out if
1020 there is no obvious choice. Care should be taken
1021 when specifying the string, to specify a valid
1022 filename or protocol.
1023 (json-string, optional) (Since 2.1)
1024
Jeff Cody37222902014-01-24 09:02:37 -05001025 If top == base, that is an error.
1026 If top == active, the job will not be completed by itself,
1027 user needs to complete the job with the block-job-complete
1028 command after getting the ready event. (Since 2.0)
1029
1030 If the base image is smaller than top, then the base image
1031 will be resized to be the same size as top. If top is
1032 smaller than the base image, the base will not be
1033 truncated. If you want the base image size to match the
1034 size of the smaller top, you can safely truncate it
1035 yourself once the commit operation successfully completes.
1036 (json-string)
1037- "speed": the maximum speed, in bytes per second (json-int, optional)
1038
1039
1040Example:
1041
1042-> { "execute": "block-commit", "arguments": { "device": "virtio0",
1043 "top": "/tmp/snap1.qcow2" } }
1044<- { "return": {} }
1045
1046EQMP
1047
Jeff Codyed61fc12012-09-27 13:29:16 -04001048 {
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001049 .name = "drive-backup",
Stefan Hajnoczib53169e2013-06-26 14:11:57 +02001050 .args_type = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001051 "on-source-error:s?,on-target-error:s?",
1052 .mhandler.cmd_new = qmp_marshal_input_drive_backup,
1053 },
1054
1055SQMP
1056drive-backup
1057------------
1058
1059Start a point-in-time copy of a block device to a new destination. The
1060status of ongoing drive-backup operations can be checked with
1061query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1062The operation can be stopped before it has completed using the
1063block-job-cancel command.
1064
1065Arguments:
1066
1067- "device": the name of the device which should be copied.
1068 (json-string)
1069- "target": the target of the new image. If the file exists, or if it is a
1070 device, the existing file/device will be used as the new
1071 destination. If it does not exist, a new file will be created.
1072 (json-string)
1073- "format": the format of the new destination, default is to probe if 'mode' is
1074 'existing', else the format of the source
1075 (json-string, optional)
Stefan Hajnoczib53169e2013-06-26 14:11:57 +02001076- "sync": what parts of the disk image should be copied to the destination;
1077 possibilities include "full" for all the disk, "top" for only the sectors
1078 allocated in the topmost image, or "none" to only replicate new I/O
1079 (MirrorSyncMode).
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001080- "mode": whether and how QEMU should create a new image
1081 (NewImageMode, optional, default 'absolute-paths')
1082- "speed": the maximum speed, in bytes per second (json-int, optional)
1083- "on-source-error": the action to take on an error on the source, default
1084 'report'. 'stop' and 'enospc' can only be used
1085 if the block device supports io-status.
1086 (BlockdevOnError, optional)
1087- "on-target-error": the action to take on an error on the target, default
1088 'report' (no limitations, since this applies to
1089 a different block device than device).
1090 (BlockdevOnError, optional)
1091
1092Example:
1093-> { "execute": "drive-backup", "arguments": { "device": "drive0",
Ian Mainfc5d3f82013-07-26 11:39:04 -07001094 "sync": "full",
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001095 "target": "backup.img" } }
1096<- { "return": {} }
Fam Zhengc29c1dd2014-12-18 18:37:05 +08001097
1098EQMP
1099
1100 {
1101 .name = "blockdev-backup",
1102 .args_type = "sync:s,device:B,target:B,speed:i?,"
1103 "on-source-error:s?,on-target-error:s?",
1104 .mhandler.cmd_new = qmp_marshal_input_blockdev_backup,
1105 },
1106
1107SQMP
1108blockdev-backup
1109---------------
1110
1111The device version of drive-backup: this command takes an existing named device
1112as backup target.
1113
1114Arguments:
1115
1116- "device": the name of the device which should be copied.
1117 (json-string)
1118- "target": the name of the backup target device. (json-string)
1119- "sync": what parts of the disk image should be copied to the destination;
1120 possibilities include "full" for all the disk, "top" for only the
1121 sectors allocated in the topmost image, or "none" to only replicate
1122 new I/O (MirrorSyncMode).
1123- "speed": the maximum speed, in bytes per second (json-int, optional)
1124- "on-source-error": the action to take on an error on the source, default
1125 'report'. 'stop' and 'enospc' can only be used
1126 if the block device supports io-status.
1127 (BlockdevOnError, optional)
1128- "on-target-error": the action to take on an error on the target, default
1129 'report' (no limitations, since this applies to
1130 a different block device than device).
1131 (BlockdevOnError, optional)
1132
1133Example:
1134-> { "execute": "blockdev-backup", "arguments": { "device": "src-id",
1135 "sync": "full",
1136 "target": "tgt-id" } }
1137<- { "return": {} }
1138
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001139EQMP
1140
1141 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +01001142 .name = "block-job-set-speed",
Stefan Hajnoczi882ec7c2012-04-25 16:51:02 +01001143 .args_type = "device:B,speed:o",
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +00001144 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,
1145 },
1146
1147 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +01001148 .name = "block-job-cancel",
Paolo Bonzini6e37fb82012-09-28 17:22:51 +02001149 .args_type = "device:B,force:b?",
Stefan Hajnoczi370521a2012-01-18 14:40:48 +00001150 .mhandler.cmd_new = qmp_marshal_input_block_job_cancel,
1151 },
Jeff Codyc1864022012-02-28 15:54:07 -05001152 {
Paolo Bonzini6e37fb82012-09-28 17:22:51 +02001153 .name = "block-job-pause",
1154 .args_type = "device:B",
1155 .mhandler.cmd_new = qmp_marshal_input_block_job_pause,
1156 },
1157 {
1158 .name = "block-job-resume",
1159 .args_type = "device:B",
1160 .mhandler.cmd_new = qmp_marshal_input_block_job_resume,
1161 },
1162 {
Paolo Bonziniaeae8832012-10-18 16:49:21 +02001163 .name = "block-job-complete",
1164 .args_type = "device:B",
1165 .mhandler.cmd_new = qmp_marshal_input_block_job_complete,
1166 },
1167 {
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001168 .name = "transaction",
Paolo Bonzinib9f89782012-03-22 12:51:11 +01001169 .args_type = "actions:q",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001170 .mhandler.cmd_new = qmp_marshal_input_transaction,
Jeff Codyc1864022012-02-28 15:54:07 -05001171 },
1172
1173SQMP
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001174transaction
1175-----------
Jeff Codyc1864022012-02-28 15:54:07 -05001176
Wenchao Xiabbe86012013-09-11 14:04:34 +08001177Atomically operate on one or more block devices. The only supported operations
1178for now are drive-backup, internal and external snapshotting. A list of
1179dictionaries is accepted, that contains the actions to be performed.
1180If there is any failure performing any of the operations, all operations
1181for the group are abandoned.
Jeff Codyc1864022012-02-28 15:54:07 -05001182
Wenchao Xiabbe86012013-09-11 14:04:34 +08001183For external snapshots, the dictionary contains the device, the file to use for
1184the new snapshot, and the format. The default format, if not specified, is
1185qcow2.
Jeff Codyc1864022012-02-28 15:54:07 -05001186
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001187Each new snapshot defaults to being created by QEMU (wiping any
1188contents if the file already exists), but it is also possible to reuse
1189an externally-created file. In the latter case, you should ensure that
1190the new image file has the same contents as the current one; QEMU cannot
1191perform any meaningful check. Typically this is achieved by using the
1192current image file as the backing file for the new image.
1193
Wenchao Xiabbe86012013-09-11 14:04:34 +08001194On failure, the original disks pre-snapshot attempt will be used.
1195
1196For internal snapshots, the dictionary contains the device and the snapshot's
1197name. If an internal snapshot matching name already exists, the request will
1198be rejected. Only some image formats support it, for example, qcow2, rbd,
1199and sheepdog.
1200
1201On failure, qemu will try delete the newly created internal snapshot in the
1202transaction. When an I/O error occurs during deletion, the user needs to fix
1203it later with qemu-img or other command.
1204
Jeff Codyc1864022012-02-28 15:54:07 -05001205Arguments:
1206
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001207actions array:
1208 - "type": the operation to perform. The only supported
1209 value is "blockdev-snapshot-sync". (json-string)
1210 - "data": a dictionary. The contents depend on the value
1211 of "type". When "type" is "blockdev-snapshot-sync":
1212 - "device": device name to snapshot (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001213 - "node-name": graph node name to snapshot (json-string)
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001214 - "snapshot-file": name of new image file (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001215 - "snapshot-node-name": graph node name of the new snapshot (json-string)
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001216 - "format": format of new image (json-string, optional)
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001217 - "mode": whether and how QEMU should create the snapshot file
1218 (NewImageMode, optional, default "absolute-paths")
Wenchao Xiabbe86012013-09-11 14:04:34 +08001219 When "type" is "blockdev-snapshot-internal-sync":
1220 - "device": device name to snapshot (json-string)
1221 - "name": name of the new snapshot (json-string)
Jeff Codyc1864022012-02-28 15:54:07 -05001222
1223Example:
1224
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001225-> { "execute": "transaction",
1226 "arguments": { "actions": [
Eric Blakecd0c5382014-05-06 09:39:03 -06001227 { "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd0",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001228 "snapshot-file": "/some/place/my-image",
1229 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001230 { "type": "blockdev-snapshot-sync", "data" : { "node-name": "myfile",
Benoît Canet0901f672014-01-23 21:31:38 +01001231 "snapshot-file": "/some/place/my-image2",
1232 "snapshot-node-name": "node3432",
1233 "mode": "existing",
1234 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001235 { "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd1",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001236 "snapshot-file": "/some/place/my-image2",
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001237 "mode": "existing",
Wenchao Xiabbe86012013-09-11 14:04:34 +08001238 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001239 { "type": "blockdev-snapshot-internal-sync", "data" : {
Wenchao Xiabbe86012013-09-11 14:04:34 +08001240 "device": "ide-hd2",
1241 "name": "snapshot0" } } ] } }
Jeff Codyc1864022012-02-28 15:54:07 -05001242<- { "return": {} }
1243
1244EQMP
Stefan Hajnoczi370521a2012-01-18 14:40:48 +00001245
1246 {
Jes Sorensend967b2f2011-07-11 20:01:09 +02001247 .name = "blockdev-snapshot-sync",
Benoît Canet0901f672014-01-23 21:31:38 +01001248 .args_type = "device:s?,node-name:s?,snapshot-file:s,snapshot-node-name:s?,format:s?,mode:s?",
Luiz Capitulino6106e242011-11-25 16:15:19 -02001249 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_sync,
Jes Sorensend967b2f2011-07-11 20:01:09 +02001250 },
1251
1252SQMP
1253blockdev-snapshot-sync
1254----------------------
1255
1256Synchronous snapshot of a block device. snapshot-file specifies the
1257target of the new image. If the file exists, or if it is a device, the
1258snapshot will be created in the existing file/device. If does not
1259exist, a new file will be created. format specifies the format of the
1260snapshot image, default is qcow2.
1261
1262Arguments:
1263
1264- "device": device name to snapshot (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001265- "node-name": graph node name to snapshot (json-string)
Jes Sorensend967b2f2011-07-11 20:01:09 +02001266- "snapshot-file": name of new image file (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001267- "snapshot-node-name": graph node name of the new snapshot (json-string)
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001268- "mode": whether and how QEMU should create the snapshot file
1269 (NewImageMode, optional, default "absolute-paths")
Jes Sorensend967b2f2011-07-11 20:01:09 +02001270- "format": format of new image (json-string, optional)
1271
1272Example:
1273
Luiz Capitulino7f3850c2011-10-10 17:30:08 -03001274-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
1275 "snapshot-file":
1276 "/some/place/my-image",
1277 "format": "qcow2" } }
Jes Sorensend967b2f2011-07-11 20:01:09 +02001278<- { "return": {} }
1279
1280EQMP
1281
1282 {
Wenchao Xiaf323bc92013-09-11 14:04:35 +08001283 .name = "blockdev-snapshot-internal-sync",
1284 .args_type = "device:B,name:s",
1285 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_internal_sync,
1286 },
1287
1288SQMP
1289blockdev-snapshot-internal-sync
1290-------------------------------
1291
1292Synchronously take an internal snapshot of a block device when the format of
1293image used supports it. If the name is an empty string, or a snapshot with
1294name already exists, the operation will fail.
1295
1296Arguments:
1297
1298- "device": device name to snapshot (json-string)
1299- "name": name of the new snapshot (json-string)
1300
1301Example:
1302
1303-> { "execute": "blockdev-snapshot-internal-sync",
1304 "arguments": { "device": "ide-hd0",
1305 "name": "snapshot0" }
1306 }
1307<- { "return": {} }
1308
1309EQMP
1310
1311 {
Wenchao Xia44e3e052013-09-11 14:04:36 +08001312 .name = "blockdev-snapshot-delete-internal-sync",
1313 .args_type = "device:B,id:s?,name:s?",
1314 .mhandler.cmd_new =
1315 qmp_marshal_input_blockdev_snapshot_delete_internal_sync,
1316 },
1317
1318SQMP
1319blockdev-snapshot-delete-internal-sync
1320--------------------------------------
1321
1322Synchronously delete an internal snapshot of a block device when the format of
1323image used supports it. The snapshot is identified by name or id or both. One
1324of name or id is required. If the snapshot is not found, the operation will
1325fail.
1326
1327Arguments:
1328
1329- "device": device name (json-string)
1330- "id": ID of the snapshot (json-string, optional)
1331- "name": name of the snapshot (json-string, optional)
1332
1333Example:
1334
1335-> { "execute": "blockdev-snapshot-delete-internal-sync",
1336 "arguments": { "device": "ide-hd0",
1337 "name": "snapshot0" }
1338 }
1339<- { "return": {
1340 "id": "1",
1341 "name": "snapshot0",
1342 "vm-state-size": 0,
1343 "date-sec": 1000012,
1344 "date-nsec": 10,
1345 "vm-clock-sec": 100,
1346 "vm-clock-nsec": 20
1347 }
1348 }
1349
1350EQMP
1351
1352 {
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001353 .name = "drive-mirror",
Paolo Bonzinib952b552012-10-18 16:49:28 +02001354 .args_type = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
Benoît Canet09158f02014-06-27 18:25:25 +02001355 "node-name:s?,replaces:s?,"
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001356 "on-source-error:s?,on-target-error:s?,"
Paolo Bonzini08e4ed62013-01-22 09:03:13 +01001357 "granularity:i?,buf-size:i?",
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001358 .mhandler.cmd_new = qmp_marshal_input_drive_mirror,
1359 },
1360
1361SQMP
1362drive-mirror
1363------------
1364
1365Start mirroring a block device's writes to a new destination. target
1366specifies the target of the new image. If the file exists, or if it is
1367a device, it will be used as the new destination for writes. If it does not
1368exist, a new file will be created. format specifies the format of the
1369mirror image, default is to probe if mode='existing', else the format
1370of the source.
1371
1372Arguments:
1373
1374- "device": device name to operate on (json-string)
1375- "target": name of new image file (json-string)
1376- "format": format of new image (json-string, optional)
Benoît Canet4c828dc2014-06-16 12:00:55 +02001377- "node-name": the name of the new block driver state in the node graph
1378 (json-string, optional)
Benoît Canet09158f02014-06-27 18:25:25 +02001379- "replaces": the block driver node name to replace when finished
1380 (json-string, optional)
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001381- "mode": how an image file should be created into the target
1382 file/device (NewImageMode, optional, default 'absolute-paths')
1383- "speed": maximum speed of the streaming job, in bytes per second
1384 (json-int)
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001385- "granularity": granularity of the dirty bitmap, in bytes (json-int, optional)
Paolo Bonzini08e4ed62013-01-22 09:03:13 +01001386- "buf_size": maximum amount of data in flight from source to target, in bytes
1387 (json-int, default 10M)
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001388- "sync": what parts of the disk image should be copied to the destination;
1389 possibilities include "full" for all the disk, "top" for only the sectors
1390 allocated in the topmost image, or "none" to only replicate new I/O
1391 (MirrorSyncMode).
Paolo Bonzinib952b552012-10-18 16:49:28 +02001392- "on-source-error": the action to take on an error on the source
1393 (BlockdevOnError, default 'report')
1394- "on-target-error": the action to take on an error on the target
1395 (BlockdevOnError, default 'report')
1396
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001397The default value of the granularity is the image cluster size clamped
1398between 4096 and 65536, if the image format defines one. If the format
1399does not define a cluster size, the default value of the granularity
1400is 65536.
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001401
1402
1403Example:
1404
1405-> { "execute": "drive-mirror", "arguments": { "device": "ide-hd0",
1406 "target": "/some/place/my-image",
1407 "sync": "full",
1408 "format": "qcow2" } }
1409<- { "return": {} }
1410
1411EQMP
1412
1413 {
Jeff Codyfa40e652014-07-01 09:52:16 +02001414 .name = "change-backing-file",
1415 .args_type = "device:s,image-node-name:s,backing-file:s",
1416 .mhandler.cmd_new = qmp_marshal_input_change_backing_file,
1417 },
1418
1419SQMP
1420change-backing-file
1421-------------------
1422Since: 2.1
1423
1424Change the backing file in the image file metadata. This does not cause
1425QEMU to reopen the image file to reparse the backing filename (it may,
1426however, perform a reopen to change permissions from r/o -> r/w -> r/o,
1427if needed). The new backing file string is written into the image file
1428metadata, and the QEMU internal strings are updated.
1429
1430Arguments:
1431
1432- "image-node-name": The name of the block driver state node of the
1433 image to modify. The "device" is argument is used to
1434 verify "image-node-name" is in the chain described by
1435 "device".
1436 (json-string, optional)
1437
1438- "device": The name of the device.
1439 (json-string)
1440
1441- "backing-file": The string to write as the backing file. This string is
1442 not validated, so care should be taken when specifying
1443 the string or the image chain may not be able to be
1444 reopened again.
1445 (json-string)
1446
1447Returns: Nothing on success
1448 If "device" does not exist or cannot be determined, DeviceNotFound
1449
1450EQMP
1451
1452 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001453 .name = "balloon",
1454 .args_type = "value:M",
Luiz Capitulinod72f3262011-11-25 14:38:09 -02001455 .mhandler.cmd_new = qmp_marshal_input_balloon,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001456 },
1457
1458SQMP
1459balloon
1460-------
1461
1462Request VM to change its memory allocation (in bytes).
1463
1464Arguments:
1465
1466- "value": New memory allocation (json-int)
1467
1468Example:
1469
1470-> { "execute": "balloon", "arguments": { "value": 536870912 } }
1471<- { "return": {} }
1472
1473EQMP
1474
1475 {
1476 .name = "set_link",
1477 .args_type = "name:s,up:b",
Luiz Capitulino4b371562011-11-23 13:11:55 -02001478 .mhandler.cmd_new = qmp_marshal_input_set_link,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001479 },
1480
1481SQMP
1482set_link
1483--------
1484
1485Change the link status of a network adapter.
1486
1487Arguments:
1488
1489- "name": network device name (json-string)
1490- "up": status is up (json-bool)
1491
1492Example:
1493
1494-> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
1495<- { "return": {} }
1496
1497EQMP
1498
1499 {
1500 .name = "getfd",
1501 .args_type = "fdname:s",
1502 .params = "getfd name",
1503 .help = "receive a file descriptor via SCM rights and assign it a name",
Corey Bryant208c9d12012-06-22 14:36:09 -04001504 .mhandler.cmd_new = qmp_marshal_input_getfd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001505 },
1506
1507SQMP
1508getfd
1509-----
1510
1511Receive a file descriptor via SCM rights and assign it a name.
1512
1513Arguments:
1514
1515- "fdname": file descriptor name (json-string)
1516
1517Example:
1518
1519-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
1520<- { "return": {} }
1521
Corey Bryant208c9d12012-06-22 14:36:09 -04001522Notes:
1523
1524(1) If the name specified by the "fdname" argument already exists,
1525 the file descriptor assigned to it will be closed and replaced
1526 by the received file descriptor.
1527(2) The 'closefd' command can be used to explicitly close the file
1528 descriptor when it is no longer needed.
1529
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001530EQMP
1531
1532 {
1533 .name = "closefd",
1534 .args_type = "fdname:s",
1535 .params = "closefd name",
1536 .help = "close a file descriptor previously passed via SCM rights",
Corey Bryant208c9d12012-06-22 14:36:09 -04001537 .mhandler.cmd_new = qmp_marshal_input_closefd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001538 },
1539
1540SQMP
1541closefd
1542-------
1543
1544Close a file descriptor previously passed via SCM rights.
1545
1546Arguments:
1547
1548- "fdname": file descriptor name (json-string)
1549
1550Example:
1551
1552-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
1553<- { "return": {} }
1554
1555EQMP
1556
Corey Bryantba1c0482012-08-14 16:43:43 -04001557 {
1558 .name = "add-fd",
1559 .args_type = "fdset-id:i?,opaque:s?",
1560 .params = "add-fd fdset-id opaque",
1561 .help = "Add a file descriptor, that was passed via SCM rights, to an fd set",
1562 .mhandler.cmd_new = qmp_marshal_input_add_fd,
1563 },
1564
1565SQMP
1566add-fd
1567-------
1568
1569Add a file descriptor, that was passed via SCM rights, to an fd set.
1570
1571Arguments:
1572
1573- "fdset-id": The ID of the fd set to add the file descriptor to.
1574 (json-int, optional)
1575- "opaque": A free-form string that can be used to describe the fd.
1576 (json-string, optional)
1577
1578Return a json-object with the following information:
1579
1580- "fdset-id": The ID of the fd set that the fd was added to. (json-int)
1581- "fd": The file descriptor that was received via SCM rights and added to the
1582 fd set. (json-int)
1583
1584Example:
1585
1586-> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
1587<- { "return": { "fdset-id": 1, "fd": 3 } }
1588
1589Notes:
1590
1591(1) The list of fd sets is shared by all monitor connections.
1592(2) If "fdset-id" is not specified, a new fd set will be created.
1593
1594EQMP
1595
1596 {
1597 .name = "remove-fd",
1598 .args_type = "fdset-id:i,fd:i?",
1599 .params = "remove-fd fdset-id fd",
1600 .help = "Remove a file descriptor from an fd set",
1601 .mhandler.cmd_new = qmp_marshal_input_remove_fd,
1602 },
1603
1604SQMP
1605remove-fd
1606---------
1607
1608Remove a file descriptor from an fd set.
1609
1610Arguments:
1611
1612- "fdset-id": The ID of the fd set that the file descriptor belongs to.
1613 (json-int)
1614- "fd": The file descriptor that is to be removed. (json-int, optional)
1615
1616Example:
1617
1618-> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
1619<- { "return": {} }
1620
1621Notes:
1622
1623(1) The list of fd sets is shared by all monitor connections.
1624(2) If "fd" is not specified, all file descriptors in "fdset-id" will be
1625 removed.
1626
1627EQMP
1628
1629 {
1630 .name = "query-fdsets",
1631 .args_type = "",
1632 .help = "Return information describing all fd sets",
1633 .mhandler.cmd_new = qmp_marshal_input_query_fdsets,
1634 },
1635
1636SQMP
1637query-fdsets
1638-------------
1639
1640Return information describing all fd sets.
1641
1642Arguments: None
1643
1644Example:
1645
1646-> { "execute": "query-fdsets" }
1647<- { "return": [
1648 {
1649 "fds": [
1650 {
1651 "fd": 30,
1652 "opaque": "rdonly:/path/to/file"
1653 },
1654 {
1655 "fd": 24,
1656 "opaque": "rdwr:/path/to/file"
1657 }
1658 ],
1659 "fdset-id": 1
1660 },
1661 {
1662 "fds": [
1663 {
1664 "fd": 28
1665 },
1666 {
1667 "fd": 29
1668 }
1669 ],
1670 "fdset-id": 0
1671 }
1672 ]
1673 }
1674
1675Note: The list of fd sets is shared by all monitor connections.
1676
1677EQMP
1678
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001679 {
1680 .name = "block_passwd",
Benoît Canet12d3ba82014-01-23 21:31:35 +01001681 .args_type = "device:s?,node-name:s?,password:s",
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -02001682 .mhandler.cmd_new = qmp_marshal_input_block_passwd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001683 },
1684
1685SQMP
1686block_passwd
1687------------
1688
1689Set the password of encrypted block devices.
1690
1691Arguments:
1692
1693- "device": device name (json-string)
Benoît Canet12d3ba82014-01-23 21:31:35 +01001694- "node-name": name in the block driver state graph (json-string)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001695- "password": password (json-string)
1696
1697Example:
1698
1699-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
1700 "password": "12345" } }
1701<- { "return": {} }
1702
1703EQMP
1704
1705 {
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001706 .name = "block_set_io_throttle",
Benoît Canet2024c1d2013-09-02 14:14:41 +02001707 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l,bps_max:l?,bps_rd_max:l?,bps_wr_max:l?,iops_max:l?,iops_rd_max:l?,iops_wr_max:l?,iops_size:l?",
Luiz Capitulino80047da2011-12-14 16:49:14 -02001708 .mhandler.cmd_new = qmp_marshal_input_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001709 },
1710
1711SQMP
1712block_set_io_throttle
1713------------
1714
1715Change I/O throttle limits for a block drive.
1716
1717Arguments:
1718
1719- "device": device name (json-string)
Eric Blake586b5462013-08-30 14:44:11 -06001720- "bps": total throughput limit in bytes per second (json-int)
1721- "bps_rd": read throughput limit in bytes per second (json-int)
1722- "bps_wr": write throughput limit in bytes per second (json-int)
1723- "iops": total I/O operations per second (json-int)
1724- "iops_rd": read I/O operations per second (json-int)
1725- "iops_wr": write I/O operations per second (json-int)
Benoît Canet3e9fab62013-09-02 14:14:40 +02001726- "bps_max": total max in bytes (json-int)
1727- "bps_rd_max": read max in bytes (json-int)
1728- "bps_wr_max": write max in bytes (json-int)
1729- "iops_max": total I/O operations max (json-int)
1730- "iops_rd_max": read I/O operations max (json-int)
1731- "iops_wr_max": write I/O operations max (json-int)
Benoît Canet2024c1d2013-09-02 14:14:41 +02001732- "iops_size": I/O size in bytes when limiting (json-int)
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001733
1734Example:
1735
1736-> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
Eric Blake586b5462013-08-30 14:44:11 -06001737 "bps": 1000000,
1738 "bps_rd": 0,
1739 "bps_wr": 0,
1740 "iops": 0,
1741 "iops_rd": 0,
Benoît Canet3e9fab62013-09-02 14:14:40 +02001742 "iops_wr": 0,
1743 "bps_max": 8000000,
1744 "bps_rd_max": 0,
1745 "bps_wr_max": 0,
1746 "iops_max": 0,
1747 "iops_rd_max": 0,
Benoît Canet2024c1d2013-09-02 14:14:41 +02001748 "iops_wr_max": 0,
1749 "iops_size": 0 } }
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001750<- { "return": {} }
1751
1752EQMP
1753
1754 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001755 .name = "set_password",
1756 .args_type = "protocol:s,password:s,connected:s?",
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001757 .mhandler.cmd_new = qmp_marshal_input_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001758 },
1759
1760SQMP
1761set_password
1762------------
1763
1764Set the password for vnc/spice protocols.
1765
1766Arguments:
1767
1768- "protocol": protocol name (json-string)
1769- "password": password (json-string)
1770- "connected": [ keep | disconnect | fail ] (josn-string, optional)
1771
1772Example:
1773
1774-> { "execute": "set_password", "arguments": { "protocol": "vnc",
1775 "password": "secret" } }
1776<- { "return": {} }
1777
1778EQMP
1779
1780 {
1781 .name = "expire_password",
1782 .args_type = "protocol:s,time:s",
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001783 .mhandler.cmd_new = qmp_marshal_input_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001784 },
1785
1786SQMP
1787expire_password
1788---------------
1789
1790Set the password expire time for vnc/spice protocols.
1791
1792Arguments:
1793
1794- "protocol": protocol name (json-string)
1795- "time": [ now | never | +secs | secs ] (json-string)
1796
1797Example:
1798
1799-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
1800 "time": "+60" } }
1801<- { "return": {} }
1802
1803EQMP
1804
1805 {
Daniel P. Berrange13661082011-06-23 13:31:42 +01001806 .name = "add_client",
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +00001807 .args_type = "protocol:s,fdname:s,skipauth:b?,tls:b?",
Luiz Capitulinob224e5e2012-09-13 16:52:20 -03001808 .mhandler.cmd_new = qmp_marshal_input_add_client,
Daniel P. Berrange13661082011-06-23 13:31:42 +01001809 },
1810
1811SQMP
1812add_client
1813----------
1814
1815Add a graphics client
1816
1817Arguments:
1818
1819- "protocol": protocol name (json-string)
1820- "fdname": file descriptor name (json-string)
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +00001821- "skipauth": whether to skip authentication (json-bool, optional)
1822- "tls": whether to perform TLS (json-bool, optional)
Daniel P. Berrange13661082011-06-23 13:31:42 +01001823
1824Example:
1825
1826-> { "execute": "add_client", "arguments": { "protocol": "vnc",
1827 "fdname": "myclient" } }
1828<- { "return": {} }
1829
1830EQMP
1831 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001832 .name = "qmp_capabilities",
1833 .args_type = "",
1834 .params = "",
1835 .help = "enable QMP capabilities",
1836 .user_print = monitor_user_noop,
1837 .mhandler.cmd_new = do_qmp_capabilities,
1838 },
1839
1840SQMP
1841qmp_capabilities
1842----------------
1843
1844Enable QMP capabilities.
1845
1846Arguments: None.
1847
1848Example:
1849
1850-> { "execute": "qmp_capabilities" }
1851<- { "return": {} }
1852
1853Note: This command must be issued before issuing any other command.
1854
Luiz Capitulino0268d972010-10-22 10:08:02 -02001855EQMP
1856
1857 {
1858 .name = "human-monitor-command",
1859 .args_type = "command-line:s,cpu-index:i?",
Luiz Capitulinod51a67b2011-11-25 17:52:45 -02001860 .mhandler.cmd_new = qmp_marshal_input_human_monitor_command,
Luiz Capitulino0268d972010-10-22 10:08:02 -02001861 },
1862
1863SQMP
1864human-monitor-command
1865---------------------
1866
1867Execute a Human Monitor command.
1868
1869Arguments:
1870
1871- command-line: the command name and its arguments, just like the
1872 Human Monitor's shell (json-string)
1873- cpu-index: select the CPU number to be used by commands which access CPU
1874 data, like 'info registers'. The Monitor selects CPU 0 if this
1875 argument is not provided (json-int, optional)
1876
1877Example:
1878
1879-> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1880<- { "return": "kvm support: enabled\r\n" }
1881
1882Notes:
1883
1884(1) The Human Monitor is NOT an stable interface, this means that command
1885 names, arguments and responses can change or be removed at ANY time.
1886 Applications that rely on long term stability guarantees should NOT
1887 use this command
1888
1889(2) Limitations:
1890
1891 o This command is stateless, this means that commands that depend
1892 on state information (such as getfd) might not work
1893
1894 o Commands that prompt the user for data (eg. 'cont' when the block
1895 device is encrypted) don't currently work
1896
Luiz Capitulino82a56f02010-09-13 12:26:00 -030018973. Query Commands
1898=================
1899
1900HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1901HXCOMM this! We will possibly move query commands definitions inside those
1902HXCOMM sections, just like regular commands.
1903
1904EQMP
1905
1906SQMP
1907query-version
1908-------------
1909
1910Show QEMU version.
1911
1912Return a json-object with the following information:
1913
1914- "qemu": A json-object containing three integer values:
1915 - "major": QEMU's major version (json-int)
1916 - "minor": QEMU's minor version (json-int)
1917 - "micro": QEMU's micro version (json-int)
1918- "package": package's version (json-string)
1919
1920Example:
1921
1922-> { "execute": "query-version" }
1923<- {
1924 "return":{
1925 "qemu":{
1926 "major":0,
1927 "minor":11,
1928 "micro":5
1929 },
1930 "package":""
1931 }
1932 }
1933
1934EQMP
1935
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03001936 {
1937 .name = "query-version",
1938 .args_type = "",
1939 .mhandler.cmd_new = qmp_marshal_input_query_version,
1940 },
1941
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001942SQMP
1943query-commands
1944--------------
1945
1946List QMP available commands.
1947
1948Each command is represented by a json-object, the returned value is a json-array
1949of all commands.
1950
1951Each json-object contain:
1952
1953- "name": command's name (json-string)
1954
1955Example:
1956
1957-> { "execute": "query-commands" }
1958<- {
1959 "return":[
1960 {
1961 "name":"query-balloon"
1962 },
1963 {
1964 "name":"system_powerdown"
1965 }
1966 ]
1967 }
1968
1969Note: This example has been shortened as the real response is too long.
1970
1971EQMP
1972
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001973 {
1974 .name = "query-commands",
1975 .args_type = "",
1976 .mhandler.cmd_new = qmp_marshal_input_query_commands,
1977 },
1978
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001979SQMP
Daniel P. Berrange48608532012-05-21 17:59:51 +01001980query-events
1981--------------
1982
1983List QMP available events.
1984
1985Each event is represented by a json-object, the returned value is a json-array
1986of all events.
1987
1988Each json-object contains:
1989
1990- "name": event's name (json-string)
1991
1992Example:
1993
1994-> { "execute": "query-events" }
1995<- {
1996 "return":[
1997 {
1998 "name":"SHUTDOWN"
1999 },
2000 {
2001 "name":"RESET"
2002 }
2003 ]
2004 }
2005
2006Note: This example has been shortened as the real response is too long.
2007
2008EQMP
2009
2010 {
2011 .name = "query-events",
2012 .args_type = "",
2013 .mhandler.cmd_new = qmp_marshal_input_query_events,
2014 },
2015
2016SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002017query-chardev
2018-------------
2019
2020Each device is represented by a json-object. The returned value is a json-array
2021of all devices.
2022
2023Each json-object contain the following:
2024
2025- "label": device's label (json-string)
2026- "filename": device's file (json-string)
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02002027- "frontend-open": open/closed state of the frontend device attached to this
2028 backend (json-bool)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002029
2030Example:
2031
2032-> { "execute": "query-chardev" }
2033<- {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02002034 "return": [
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002035 {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02002036 "label": "charchannel0",
2037 "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.agent,server",
2038 "frontend-open": false
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002039 },
2040 {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02002041 "label": "charmonitor",
2042 "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.monitor,server",
2043 "frontend-open": true
2044 },
2045 {
2046 "label": "charserial0",
2047 "filename": "pty:/dev/pts/2",
2048 "frontend-open": true
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002049 }
2050 ]
2051 }
2052
2053EQMP
2054
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03002055 {
2056 .name = "query-chardev",
2057 .args_type = "",
2058 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
2059 },
2060
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002061SQMP
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01002062query-chardev-backends
2063-------------
2064
2065List available character device backends.
2066
2067Each backend is represented by a json-object, the returned value is a json-array
2068of all backends.
2069
2070Each json-object contains:
2071
2072- "name": backend name (json-string)
2073
2074Example:
2075
2076-> { "execute": "query-chardev-backends" }
2077<- {
2078 "return":[
2079 {
2080 "name":"udp"
2081 },
2082 {
2083 "name":"tcp"
2084 },
2085 {
2086 "name":"unix"
2087 },
2088 {
2089 "name":"spiceport"
2090 }
2091 ]
2092 }
2093
2094EQMP
2095
2096 {
2097 .name = "query-chardev-backends",
2098 .args_type = "",
2099 .mhandler.cmd_new = qmp_marshal_input_query_chardev_backends,
2100 },
2101
2102SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002103query-block
2104-----------
2105
2106Show the block devices.
2107
2108Each block device information is stored in a json-object and the returned value
2109is a json-array of all devices.
2110
2111Each json-object contain the following:
2112
2113- "device": device name (json-string)
2114- "type": device type (json-string)
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002115 - deprecated, retained for backward compatibility
2116 - Possible values: "unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002117- "removable": true if the device is removable, false otherwise (json-bool)
2118- "locked": true if the device is locked, false otherwise (json-bool)
Michal Privoznik99f42802013-01-29 17:58:41 +01002119- "tray_open": only present if removable, true if the device has a tray,
Markus Armbrustere4def802011-09-06 18:58:53 +02002120 and it is open (json-bool)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002121- "inserted": only present if the device is inserted, it is a json-object
2122 containing the following:
2123 - "file": device file name (json-string)
2124 - "ro": true if read-only, false otherwise (json-bool)
2125 - "drv": driver format name (json-string)
Stefan Hajnoczi550830f2014-09-16 15:24:24 +01002126 - Possible values: "blkdebug", "bochs", "cloop", "dmg",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002127 "file", "file", "ftp", "ftps", "host_cdrom",
2128 "host_device", "host_floppy", "http", "https",
2129 "nbd", "parallels", "qcow", "qcow2", "raw",
2130 "tftp", "vdi", "vmdk", "vpc", "vvfat"
2131 - "backing_file": backing file name (json-string, optional)
Benoît Canet2e3e3312012-08-02 10:22:48 +02002132 - "backing_file_depth": number of files in the backing file chain (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002133 - "encrypted": true if encrypted, false otherwise (json-bool)
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002134 - "bps": limit total bytes per second (json-int)
2135 - "bps_rd": limit read bytes per second (json-int)
2136 - "bps_wr": limit write bytes per second (json-int)
2137 - "iops": limit total I/O operations per second (json-int)
2138 - "iops_rd": limit read operations per second (json-int)
2139 - "iops_wr": limit write operations per second (json-int)
Benoît Canet3e9fab62013-09-02 14:14:40 +02002140 - "bps_max": total max in bytes (json-int)
2141 - "bps_rd_max": read max in bytes (json-int)
2142 - "bps_wr_max": write max in bytes (json-int)
2143 - "iops_max": total I/O operations max (json-int)
2144 - "iops_rd_max": read I/O operations max (json-int)
2145 - "iops_wr_max": write I/O operations max (json-int)
Benoît Canet2024c1d2013-09-02 14:14:41 +02002146 - "iops_size": I/O size when limiting by iops (json-int)
Peter Lieven465bee12014-05-18 00:58:19 +02002147 - "detect_zeroes": detect and optimize zero writing (json-string)
2148 - Possible values: "off", "on", "unmap"
Wenchao Xia553a7e82013-06-06 12:27:59 +08002149 - "image": the detail of the image, it is a json-object containing
2150 the following:
2151 - "filename": image file name (json-string)
2152 - "format": image format (json-string)
2153 - "virtual-size": image capacity in bytes (json-int)
2154 - "dirty-flag": true if image is not cleanly closed, not present
2155 means clean (json-bool, optional)
2156 - "actual-size": actual size on disk in bytes of the image, not
2157 present when image does not support thin
2158 provision (json-int, optional)
2159 - "cluster-size": size of a cluster in bytes, not present if image
2160 format does not support it (json-int, optional)
2161 - "encrypted": true if the image is encrypted, not present means
2162 false or the image format does not support
2163 encryption (json-bool, optional)
2164 - "backing_file": backing file name, not present means no backing
2165 file is used or the image format does not
2166 support backing file chain
2167 (json-string, optional)
2168 - "full-backing-filename": full path of the backing file, not
2169 present if it equals backing_file or no
2170 backing file is used
2171 (json-string, optional)
2172 - "backing-filename-format": the format of the backing file, not
2173 present means unknown or no backing
2174 file (json-string, optional)
2175 - "snapshots": the internal snapshot info, it is an optional list
2176 of json-object containing the following:
2177 - "id": unique snapshot id (json-string)
2178 - "name": snapshot name (json-string)
2179 - "vm-state-size": size of the VM state in bytes (json-int)
2180 - "date-sec": UTC date of the snapshot in seconds (json-int)
2181 - "date-nsec": fractional part in nanoseconds to be used with
Eric Blake586b5462013-08-30 14:44:11 -06002182 date-sec (json-int)
Wenchao Xia553a7e82013-06-06 12:27:59 +08002183 - "vm-clock-sec": VM clock relative to boot in seconds
2184 (json-int)
2185 - "vm-clock-nsec": fractional part in nanoseconds to be used
2186 with vm-clock-sec (json-int)
2187 - "backing-image": the detail of the backing image, it is an
2188 optional json-object only present when a
2189 backing image present for this image
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002190
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002191- "io-status": I/O operation status, only present if the device supports it
2192 and the VM is configured to stop on errors. It's always reset
2193 to "ok" when the "cont" command is issued (json_string, optional)
2194 - Possible values: "ok", "failed", "nospace"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002195
2196Example:
2197
2198-> { "execute": "query-block" }
2199<- {
2200 "return":[
2201 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002202 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002203 "device":"ide0-hd0",
2204 "locked":false,
2205 "removable":false,
2206 "inserted":{
2207 "ro":false,
2208 "drv":"qcow2",
2209 "encrypted":false,
Wenchao Xia553a7e82013-06-06 12:27:59 +08002210 "file":"disks/test.qcow2",
2211 "backing_file_depth":1,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002212 "bps":1000000,
2213 "bps_rd":0,
2214 "bps_wr":0,
2215 "iops":1000000,
2216 "iops_rd":0,
2217 "iops_wr":0,
Benoît Canet3e9fab62013-09-02 14:14:40 +02002218 "bps_max": 8000000,
2219 "bps_rd_max": 0,
2220 "bps_wr_max": 0,
2221 "iops_max": 0,
2222 "iops_rd_max": 0,
2223 "iops_wr_max": 0,
Benoît Canet2024c1d2013-09-02 14:14:41 +02002224 "iops_size": 0,
Peter Lieven465bee12014-05-18 00:58:19 +02002225 "detect_zeroes": "on",
Wenchao Xia553a7e82013-06-06 12:27:59 +08002226 "image":{
2227 "filename":"disks/test.qcow2",
2228 "format":"qcow2",
2229 "virtual-size":2048000,
2230 "backing_file":"base.qcow2",
2231 "full-backing-filename":"disks/base.qcow2",
2232 "backing-filename-format:"qcow2",
2233 "snapshots":[
2234 {
2235 "id": "1",
2236 "name": "snapshot1",
2237 "vm-state-size": 0,
2238 "date-sec": 10000200,
2239 "date-nsec": 12,
2240 "vm-clock-sec": 206,
2241 "vm-clock-nsec": 30
2242 }
2243 ],
2244 "backing-image":{
2245 "filename":"disks/base.qcow2",
2246 "format":"qcow2",
2247 "virtual-size":2048000
2248 }
2249 }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002250 },
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002251 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002252 },
2253 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002254 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002255 "device":"ide1-cd0",
2256 "locked":false,
2257 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002258 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002259 },
2260 {
2261 "device":"floppy0",
2262 "locked":false,
2263 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002264 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002265 },
2266 {
2267 "device":"sd0",
2268 "locked":false,
2269 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002270 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002271 }
2272 ]
2273 }
2274
2275EQMP
2276
Luiz Capitulinob2023812011-09-21 17:16:47 -03002277 {
2278 .name = "query-block",
2279 .args_type = "",
2280 .mhandler.cmd_new = qmp_marshal_input_query_block,
2281 },
2282
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002283SQMP
2284query-blockstats
2285----------------
2286
2287Show block device statistics.
2288
2289Each device statistic information is stored in a json-object and the returned
2290value is a json-array of all devices.
2291
2292Each json-object contain the following:
2293
2294- "device": device name (json-string)
2295- "stats": A json-object with the statistics information, it contains:
2296 - "rd_bytes": bytes read (json-int)
2297 - "wr_bytes": bytes written (json-int)
2298 - "rd_operations": read operations (json-int)
2299 - "wr_operations": write operations (json-int)
Christoph Hellwige8045d62011-08-22 00:25:58 +02002300 - "flush_operations": cache flush operations (json-int)
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002301 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
2302 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
2303 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002304 - "wr_highest_offset": Highest offset of a sector written since the
2305 BlockDriverState has been opened (json-int)
Peter Lievenf4564d52015-02-02 14:52:18 +01002306 - "rd_merged": number of read requests that have been merged into
2307 another request (json-int)
2308 - "wr_merged": number of write requests that have been merged into
2309 another request (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002310- "parent": Contains recursively the statistics of the underlying
2311 protocol (e.g. the host file for a qcow2 image). If there is
2312 no underlying protocol, this field is omitted
2313 (json-object, optional)
2314
2315Example:
2316
2317-> { "execute": "query-blockstats" }
2318<- {
2319 "return":[
2320 {
2321 "device":"ide0-hd0",
2322 "parent":{
2323 "stats":{
2324 "wr_highest_offset":3686448128,
2325 "wr_bytes":9786368,
2326 "wr_operations":751,
2327 "rd_bytes":122567168,
2328 "rd_operations":36772
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002329 "wr_total_times_ns":313253456
2330 "rd_total_times_ns":3465673657
2331 "flush_total_times_ns":49653
Christoph Hellwige8045d62011-08-22 00:25:58 +02002332 "flush_operations":61,
Peter Lievenf4564d52015-02-02 14:52:18 +01002333 "rd_merged":0,
2334 "wr_merged":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002335 }
2336 },
2337 "stats":{
2338 "wr_highest_offset":2821110784,
2339 "wr_bytes":9786368,
2340 "wr_operations":692,
2341 "rd_bytes":122739200,
2342 "rd_operations":36604
Christoph Hellwige8045d62011-08-22 00:25:58 +02002343 "flush_operations":51,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002344 "wr_total_times_ns":313253456
2345 "rd_total_times_ns":3465673657
Peter Lievenf4564d52015-02-02 14:52:18 +01002346 "flush_total_times_ns":49653,
2347 "rd_merged":0,
2348 "wr_merged":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002349 }
2350 },
2351 {
2352 "device":"ide1-cd0",
2353 "stats":{
2354 "wr_highest_offset":0,
2355 "wr_bytes":0,
2356 "wr_operations":0,
2357 "rd_bytes":0,
2358 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002359 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002360 "wr_total_times_ns":0
2361 "rd_total_times_ns":0
Peter Lievenf4564d52015-02-02 14:52:18 +01002362 "flush_total_times_ns":0,
2363 "rd_merged":0,
2364 "wr_merged":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002365 }
2366 },
2367 {
2368 "device":"floppy0",
2369 "stats":{
2370 "wr_highest_offset":0,
2371 "wr_bytes":0,
2372 "wr_operations":0,
2373 "rd_bytes":0,
2374 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002375 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002376 "wr_total_times_ns":0
2377 "rd_total_times_ns":0
Peter Lievenf4564d52015-02-02 14:52:18 +01002378 "flush_total_times_ns":0,
2379 "rd_merged":0,
2380 "wr_merged":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002381 }
2382 },
2383 {
2384 "device":"sd0",
2385 "stats":{
2386 "wr_highest_offset":0,
2387 "wr_bytes":0,
2388 "wr_operations":0,
2389 "rd_bytes":0,
2390 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002391 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002392 "wr_total_times_ns":0
2393 "rd_total_times_ns":0
Peter Lievenf4564d52015-02-02 14:52:18 +01002394 "flush_total_times_ns":0,
2395 "rd_merged":0,
2396 "wr_merged":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002397 }
2398 }
2399 ]
2400 }
2401
2402EQMP
2403
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002404 {
2405 .name = "query-blockstats",
Fam Zhengf71eaa72014-10-31 11:32:57 +08002406 .args_type = "query-nodes:b?",
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002407 .mhandler.cmd_new = qmp_marshal_input_query_blockstats,
2408 },
2409
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002410SQMP
2411query-cpus
2412----------
2413
2414Show CPU information.
2415
2416Return a json-array. Each CPU is represented by a json-object, which contains:
2417
2418- "CPU": CPU index (json-int)
2419- "current": true if this is the current CPU, false otherwise (json-bool)
2420- "halted": true if the cpu is halted, false otherwise (json-bool)
2421- Current program counter. The key's name depends on the architecture:
2422 "pc": i386/x86_64 (json-int)
2423 "nip": PPC (json-int)
2424 "pc" and "npc": sparc (json-int)
2425 "PC": mips (json-int)
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002426- "thread_id": ID of the underlying host thread (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002427
2428Example:
2429
2430-> { "execute": "query-cpus" }
2431<- {
2432 "return":[
2433 {
2434 "CPU":0,
2435 "current":true,
2436 "halted":false,
2437 "pc":3227107138
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002438 "thread_id":3134
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002439 },
2440 {
2441 "CPU":1,
2442 "current":false,
2443 "halted":true,
2444 "pc":7108165
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002445 "thread_id":3135
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002446 }
2447 ]
2448 }
2449
2450EQMP
2451
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002452 {
2453 .name = "query-cpus",
2454 .args_type = "",
2455 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
2456 },
2457
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002458SQMP
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +01002459query-iothreads
2460---------------
2461
2462Returns a list of information about each iothread.
2463
2464Note this list excludes the QEMU main loop thread, which is not declared
2465using the -object iothread command-line option. It is always the main thread
2466of the process.
2467
2468Return a json-array. Each iothread is represented by a json-object, which contains:
2469
2470- "id": name of iothread (json-str)
2471- "thread-id": ID of the underlying host thread (json-int)
2472
2473Example:
2474
2475-> { "execute": "query-iothreads" }
2476<- {
2477 "return":[
2478 {
2479 "id":"iothread0",
2480 "thread-id":3134
2481 },
2482 {
2483 "id":"iothread1",
2484 "thread-id":3135
2485 }
2486 ]
2487 }
2488
2489EQMP
2490
2491 {
2492 .name = "query-iothreads",
2493 .args_type = "",
2494 .mhandler.cmd_new = qmp_marshal_input_query_iothreads,
2495 },
2496
2497SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002498query-pci
2499---------
2500
2501PCI buses and devices information.
2502
2503The returned value is a json-array of all buses. Each bus is represented by
2504a json-object, which has a key with a json-array of all PCI devices attached
2505to it. Each device is represented by a json-object.
2506
2507The bus json-object contains the following:
2508
2509- "bus": bus number (json-int)
2510- "devices": a json-array of json-objects, each json-object represents a
2511 PCI device
2512
2513The PCI device json-object contains the following:
2514
2515- "bus": identical to the parent's bus number (json-int)
2516- "slot": slot number (json-int)
2517- "function": function number (json-int)
2518- "class_info": a json-object containing:
2519 - "desc": device class description (json-string, optional)
2520 - "class": device class number (json-int)
2521- "id": a json-object containing:
2522 - "device": device ID (json-int)
2523 - "vendor": vendor ID (json-int)
2524- "irq": device's IRQ if assigned (json-int, optional)
2525- "qdev_id": qdev id string (json-string)
2526- "pci_bridge": It's a json-object, only present if this device is a
2527 PCI bridge, contains:
2528 - "bus": bus number (json-int)
2529 - "secondary": secondary bus number (json-int)
2530 - "subordinate": subordinate bus number (json-int)
2531 - "io_range": I/O memory range information, a json-object with the
2532 following members:
2533 - "base": base address, in bytes (json-int)
2534 - "limit": limit address, in bytes (json-int)
2535 - "memory_range": memory range information, a json-object with the
2536 following members:
2537 - "base": base address, in bytes (json-int)
2538 - "limit": limit address, in bytes (json-int)
2539 - "prefetchable_range": Prefetchable memory range information, a
2540 json-object with the following members:
2541 - "base": base address, in bytes (json-int)
2542 - "limit": limit address, in bytes (json-int)
2543 - "devices": a json-array of PCI devices if there's any attached, each
2544 each element is represented by a json-object, which contains
2545 the same members of the 'PCI device json-object' described
2546 above (optional)
2547- "regions": a json-array of json-objects, each json-object represents a
2548 memory region of this device
2549
2550The memory range json-object contains the following:
2551
2552- "base": base memory address (json-int)
2553- "limit": limit value (json-int)
2554
2555The region json-object can be an I/O region or a memory region, an I/O region
2556json-object contains the following:
2557
2558- "type": "io" (json-string, fixed)
2559- "bar": BAR number (json-int)
2560- "address": memory address (json-int)
2561- "size": memory size (json-int)
2562
2563A memory region json-object contains the following:
2564
2565- "type": "memory" (json-string, fixed)
2566- "bar": BAR number (json-int)
2567- "address": memory address (json-int)
2568- "size": memory size (json-int)
2569- "mem_type_64": true or false (json-bool)
2570- "prefetch": true or false (json-bool)
2571
2572Example:
2573
2574-> { "execute": "query-pci" }
2575<- {
2576 "return":[
2577 {
2578 "bus":0,
2579 "devices":[
2580 {
2581 "bus":0,
2582 "qdev_id":"",
2583 "slot":0,
2584 "class_info":{
2585 "class":1536,
2586 "desc":"Host bridge"
2587 },
2588 "id":{
2589 "device":32902,
2590 "vendor":4663
2591 },
2592 "function":0,
2593 "regions":[
2594
2595 ]
2596 },
2597 {
2598 "bus":0,
2599 "qdev_id":"",
2600 "slot":1,
2601 "class_info":{
2602 "class":1537,
2603 "desc":"ISA bridge"
2604 },
2605 "id":{
2606 "device":32902,
2607 "vendor":28672
2608 },
2609 "function":0,
2610 "regions":[
2611
2612 ]
2613 },
2614 {
2615 "bus":0,
2616 "qdev_id":"",
2617 "slot":1,
2618 "class_info":{
2619 "class":257,
2620 "desc":"IDE controller"
2621 },
2622 "id":{
2623 "device":32902,
2624 "vendor":28688
2625 },
2626 "function":1,
2627 "regions":[
2628 {
2629 "bar":4,
2630 "size":16,
2631 "address":49152,
2632 "type":"io"
2633 }
2634 ]
2635 },
2636 {
2637 "bus":0,
2638 "qdev_id":"",
2639 "slot":2,
2640 "class_info":{
2641 "class":768,
2642 "desc":"VGA controller"
2643 },
2644 "id":{
2645 "device":4115,
2646 "vendor":184
2647 },
2648 "function":0,
2649 "regions":[
2650 {
2651 "prefetch":true,
2652 "mem_type_64":false,
2653 "bar":0,
2654 "size":33554432,
2655 "address":4026531840,
2656 "type":"memory"
2657 },
2658 {
2659 "prefetch":false,
2660 "mem_type_64":false,
2661 "bar":1,
2662 "size":4096,
2663 "address":4060086272,
2664 "type":"memory"
2665 },
2666 {
2667 "prefetch":false,
2668 "mem_type_64":false,
2669 "bar":6,
2670 "size":65536,
2671 "address":-1,
2672 "type":"memory"
2673 }
2674 ]
2675 },
2676 {
2677 "bus":0,
2678 "qdev_id":"",
2679 "irq":11,
2680 "slot":4,
2681 "class_info":{
2682 "class":1280,
2683 "desc":"RAM controller"
2684 },
2685 "id":{
2686 "device":6900,
2687 "vendor":4098
2688 },
2689 "function":0,
2690 "regions":[
2691 {
2692 "bar":0,
2693 "size":32,
2694 "address":49280,
2695 "type":"io"
2696 }
2697 ]
2698 }
2699 ]
2700 }
2701 ]
2702 }
2703
2704Note: This example has been shortened as the real response is too long.
2705
2706EQMP
2707
Luiz Capitulino79627472011-10-21 14:15:33 -02002708 {
2709 .name = "query-pci",
2710 .args_type = "",
2711 .mhandler.cmd_new = qmp_marshal_input_query_pci,
2712 },
2713
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002714SQMP
2715query-kvm
2716---------
2717
2718Show KVM information.
2719
2720Return a json-object with the following information:
2721
2722- "enabled": true if KVM support is enabled, false otherwise (json-bool)
2723- "present": true if QEMU has KVM support, false otherwise (json-bool)
2724
2725Example:
2726
2727-> { "execute": "query-kvm" }
2728<- { "return": { "enabled": true, "present": true } }
2729
2730EQMP
2731
Luiz Capitulino292a2602011-09-12 15:10:53 -03002732 {
2733 .name = "query-kvm",
2734 .args_type = "",
2735 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
2736 },
2737
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002738SQMP
2739query-status
2740------------
2741
2742Return a json-object with the following information:
2743
2744- "running": true if the VM is running, or false if it is paused (json-bool)
2745- "singlestep": true if the VM is in single step mode,
2746 false otherwise (json-bool)
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03002747- "status": one of the following values (json-string)
2748 "debug" - QEMU is running on a debugger
2749 "inmigrate" - guest is paused waiting for an incoming migration
2750 "internal-error" - An internal error that prevents further guest
2751 execution has occurred
2752 "io-error" - the last IOP has failed and the device is configured
2753 to pause on I/O errors
2754 "paused" - guest has been paused via the 'stop' command
2755 "postmigrate" - guest is paused following a successful 'migrate'
2756 "prelaunch" - QEMU was started with -S and guest has not started
2757 "finish-migrate" - guest is paused to finish the migration process
2758 "restore-vm" - guest is paused to restore VM state
2759 "running" - guest is actively running
2760 "save-vm" - guest is paused to save the VM state
2761 "shutdown" - guest is shut down (and -no-shutdown is in use)
2762 "watchdog" - the watchdog action is configured to pause and
2763 has been triggered
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002764
2765Example:
2766
2767-> { "execute": "query-status" }
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03002768<- { "return": { "running": true, "singlestep": false, "status": "running" } }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002769
2770EQMP
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002771
2772 {
2773 .name = "query-status",
2774 .args_type = "",
2775 .mhandler.cmd_new = qmp_marshal_input_query_status,
2776 },
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002777
2778SQMP
2779query-mice
2780----------
2781
2782Show VM mice information.
2783
2784Each mouse is represented by a json-object, the returned value is a json-array
2785of all mice.
2786
2787The mouse json-object contains the following:
2788
2789- "name": mouse's name (json-string)
2790- "index": mouse's index (json-int)
2791- "current": true if this mouse is receiving events, false otherwise (json-bool)
2792- "absolute": true if the mouse generates absolute input events (json-bool)
2793
2794Example:
2795
2796-> { "execute": "query-mice" }
2797<- {
2798 "return":[
2799 {
2800 "name":"QEMU Microsoft Mouse",
2801 "index":0,
2802 "current":false,
2803 "absolute":false
2804 },
2805 {
2806 "name":"QEMU PS/2 Mouse",
2807 "index":1,
2808 "current":true,
2809 "absolute":true
2810 }
2811 ]
2812 }
2813
2814EQMP
2815
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002816 {
2817 .name = "query-mice",
2818 .args_type = "",
2819 .mhandler.cmd_new = qmp_marshal_input_query_mice,
2820 },
2821
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002822SQMP
2823query-vnc
2824---------
2825
2826Show VNC server information.
2827
2828Return a json-object with server information. Connected clients are returned
2829as a json-array of json-objects.
2830
2831The main json-object contains the following:
2832
2833- "enabled": true or false (json-bool)
2834- "host": server's IP address (json-string)
2835- "family": address family (json-string)
2836 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2837- "service": server's port number (json-string)
2838- "auth": authentication method (json-string)
2839 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
2840 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
2841 "vencrypt+plain", "vencrypt+tls+none",
2842 "vencrypt+tls+plain", "vencrypt+tls+sasl",
2843 "vencrypt+tls+vnc", "vencrypt+x509+none",
2844 "vencrypt+x509+plain", "vencrypt+x509+sasl",
2845 "vencrypt+x509+vnc", "vnc"
2846- "clients": a json-array of all connected clients
2847
2848Clients are described by a json-object, each one contain the following:
2849
2850- "host": client's IP address (json-string)
2851- "family": address family (json-string)
2852 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2853- "service": client's port number (json-string)
2854- "x509_dname": TLS dname (json-string, optional)
2855- "sasl_username": SASL username (json-string, optional)
2856
2857Example:
2858
2859-> { "execute": "query-vnc" }
2860<- {
2861 "return":{
2862 "enabled":true,
2863 "host":"0.0.0.0",
2864 "service":"50402",
2865 "auth":"vnc",
2866 "family":"ipv4",
2867 "clients":[
2868 {
2869 "host":"127.0.0.1",
2870 "service":"50401",
2871 "family":"ipv4"
2872 }
2873 ]
2874 }
2875 }
2876
2877EQMP
2878
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002879 {
2880 .name = "query-vnc",
2881 .args_type = "",
2882 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
2883 },
Gerd Hoffmanndf887682014-12-17 15:49:44 +01002884 {
2885 .name = "query-vnc-servers",
2886 .args_type = "",
2887 .mhandler.cmd_new = qmp_marshal_input_query_vnc_servers,
2888 },
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002889
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002890SQMP
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002891query-spice
2892-----------
2893
2894Show SPICE server information.
2895
2896Return a json-object with server information. Connected clients are returned
2897as a json-array of json-objects.
2898
2899The main json-object contains the following:
2900
2901- "enabled": true or false (json-bool)
2902- "host": server's IP address (json-string)
2903- "port": server's port number (json-int, optional)
2904- "tls-port": server's port number (json-int, optional)
2905- "auth": authentication method (json-string)
2906 - Possible values: "none", "spice"
2907- "channels": a json-array of all active channels clients
2908
2909Channels are described by a json-object, each one contain the following:
2910
2911- "host": client's IP address (json-string)
2912- "family": address family (json-string)
2913 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2914- "port": client's port number (json-string)
2915- "connection-id": spice connection id. All channels with the same id
2916 belong to the same spice session (json-int)
2917- "channel-type": channel type. "1" is the main control channel, filter for
2918 this one if you want track spice sessions only (json-int)
2919- "channel-id": channel id. Usually "0", might be different needed when
2920 multiple channels of the same type exist, such as multiple
2921 display channels in a multihead setup (json-int)
2922- "tls": whevener the channel is encrypted (json-bool)
2923
2924Example:
2925
2926-> { "execute": "query-spice" }
2927<- {
2928 "return": {
2929 "enabled": true,
2930 "auth": "spice",
2931 "port": 5920,
2932 "tls-port": 5921,
2933 "host": "0.0.0.0",
2934 "channels": [
2935 {
2936 "port": "54924",
2937 "family": "ipv4",
2938 "channel-type": 1,
2939 "connection-id": 1804289383,
2940 "host": "127.0.0.1",
2941 "channel-id": 0,
2942 "tls": true
2943 },
2944 {
2945 "port": "36710",
2946 "family": "ipv4",
2947 "channel-type": 4,
2948 "connection-id": 1804289383,
2949 "host": "127.0.0.1",
2950 "channel-id": 0,
2951 "tls": false
2952 },
2953 [ ... more channels follow ... ]
2954 ]
2955 }
2956 }
2957
2958EQMP
2959
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002960#if defined(CONFIG_SPICE)
2961 {
2962 .name = "query-spice",
2963 .args_type = "",
2964 .mhandler.cmd_new = qmp_marshal_input_query_spice,
2965 },
2966#endif
2967
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002968SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002969query-name
2970----------
2971
2972Show VM name.
2973
2974Return a json-object with the following information:
2975
2976- "name": VM's name (json-string, optional)
2977
2978Example:
2979
2980-> { "execute": "query-name" }
2981<- { "return": { "name": "qemu-name" } }
2982
2983EQMP
2984
Anthony Liguori48a32be2011-09-02 12:34:48 -05002985 {
2986 .name = "query-name",
2987 .args_type = "",
2988 .mhandler.cmd_new = qmp_marshal_input_query_name,
2989 },
2990
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002991SQMP
2992query-uuid
2993----------
2994
2995Show VM UUID.
2996
2997Return a json-object with the following information:
2998
2999- "UUID": Universally Unique Identifier (json-string)
3000
3001Example:
3002
3003-> { "execute": "query-uuid" }
3004<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
3005
3006EQMP
3007
Luiz Capitulinoefab7672011-09-13 17:16:25 -03003008 {
3009 .name = "query-uuid",
3010 .args_type = "",
3011 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
3012 },
3013
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003014SQMP
Amos Kong1f8f9872013-04-25 17:50:35 +08003015query-command-line-options
3016--------------------------
3017
3018Show command line option schema.
3019
3020Return a json-array of command line option schema for all options (or for
3021the given option), returning an error if the given option doesn't exist.
3022
3023Each array entry contains the following:
3024
3025- "option": option name (json-string)
3026- "parameters": a json-array describes all parameters of the option:
3027 - "name": parameter name (json-string)
3028 - "type": parameter type (one of 'string', 'boolean', 'number',
3029 or 'size')
3030 - "help": human readable description of the parameter
3031 (json-string, optional)
Chunyan Liue36af942014-06-05 17:20:43 +08003032 - "default": default value string for the parameter
3033 (json-string, optional)
Amos Kong1f8f9872013-04-25 17:50:35 +08003034
3035Example:
3036
3037-> { "execute": "query-command-line-options", "arguments": { "option": "option-rom" } }
3038<- { "return": [
3039 {
3040 "parameters": [
3041 {
3042 "name": "romfile",
3043 "type": "string"
3044 },
3045 {
3046 "name": "bootindex",
3047 "type": "number"
3048 }
3049 ],
3050 "option": "option-rom"
3051 }
3052 ]
3053 }
3054
3055EQMP
3056
3057 {
3058 .name = "query-command-line-options",
3059 .args_type = "option:s?",
3060 .mhandler.cmd_new = qmp_marshal_input_query_command_line_options,
3061 },
3062
3063SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003064query-migrate
3065-------------
3066
3067Migration status.
3068
3069Return a json-object. If migration is active there will be another json-object
3070with RAM migration status and if block migration is active another one with
3071block migration status.
3072
3073The main json-object contains the following:
3074
3075- "status": migration status (json-string)
Peter Feiner3b695952014-05-16 10:40:47 -04003076 - Possible values: "setup", "active", "completed", "failed", "cancelled"
Juan Quintela7aa939a2012-08-18 13:17:10 +02003077- "total-time": total amount of ms since migration started. If
3078 migration has ended, it returns the total migration
Juan Quintela817c6042013-02-11 15:11:10 +01003079 time (json-int)
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003080- "setup-time" amount of setup time in milliseconds _before_ the
3081 iterations begin but _after_ the QMP command is issued.
3082 This is designed to provide an accounting of any activities
3083 (such as RDMA pinning) which may be expensive, but do not
3084 actually occur during the iterative migration rounds
3085 themselves. (json-int)
Juan Quintela9c5a9fc2012-08-13 09:35:16 +02003086- "downtime": only present when migration has finished correctly
3087 total amount in ms for downtime that happened (json-int)
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003088- "expected-downtime": only present while migration is active
3089 total amount in ms for downtime that was calculated on
Juan Quintela817c6042013-02-11 15:11:10 +01003090 the last bitmap round (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003091- "ram": only present if "status" is "active", it is a json-object with the
Juan Quintela817c6042013-02-11 15:11:10 +01003092 following RAM information:
3093 - "transferred": amount transferred in bytes (json-int)
3094 - "remaining": amount remaining to transfer in bytes (json-int)
3095 - "total": total amount of memory in bytes (json-int)
3096 - "duplicate": number of pages filled entirely with the same
3097 byte (json-int)
3098 These are sent over the wire much more efficiently.
Peter Lievenf1c72792013-03-26 10:58:37 +01003099 - "skipped": number of skipped zero pages (json-int)
Stefan Weil805a2502013-04-28 11:49:57 +02003100 - "normal" : number of whole pages transferred. I.e. they
Juan Quintela817c6042013-02-11 15:11:10 +01003101 were not sent as duplicate or xbzrle pages (json-int)
3102 - "normal-bytes" : number of bytes transferred in whole
3103 pages. This is just normal pages times size of one page,
3104 but this way upper levels don't need to care about page
3105 size (json-int)
ChenLiang58570ed2014-04-04 17:57:55 +08003106 - "dirty-sync-count": times that dirty ram was synchronized (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003107- "disk": only present if "status" is "active" and it is a block migration,
Juan Quintela817c6042013-02-11 15:11:10 +01003108 it is a json-object with the following disk information:
3109 - "transferred": amount transferred in bytes (json-int)
3110 - "remaining": amount remaining to transfer in bytes json-int)
3111 - "total": total disk size in bytes (json-int)
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003112- "xbzrle-cache": only present if XBZRLE is active.
3113 It is a json-object with the following XBZRLE information:
Juan Quintela817c6042013-02-11 15:11:10 +01003114 - "cache-size": XBZRLE cache size in bytes
3115 - "bytes": number of bytes transferred for XBZRLE compressed pages
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003116 - "pages": number of XBZRLE compressed pages
Juan Quintela817c6042013-02-11 15:11:10 +01003117 - "cache-miss": number of XBRZRLE page cache misses
ChenLiang8bc39232014-04-04 17:57:56 +08003118 - "cache-miss-rate": rate of XBRZRLE page cache misses
Juan Quintela817c6042013-02-11 15:11:10 +01003119 - "overflow": number of times XBZRLE overflows. This means
3120 that the XBZRLE encoding was bigger than just sent the
3121 whole page, and then we sent the whole page instead (as as
3122 normal page).
3123
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003124Examples:
3125
31261. Before the first migration
3127
3128-> { "execute": "query-migrate" }
3129<- { "return": {} }
3130
31312. Migration is done and has succeeded
3132
3133-> { "execute": "query-migrate" }
Orit Wasserman004d4c12012-08-06 21:42:56 +03003134<- { "return": {
3135 "status": "completed",
3136 "ram":{
3137 "transferred":123,
3138 "remaining":123,
3139 "total":246,
3140 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003141 "setup-time":12345,
Juan Quintela9c5a9fc2012-08-13 09:35:16 +02003142 "downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003143 "duplicate":123,
3144 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003145 "normal-bytes":123456,
3146 "dirty-sync-count":15
Orit Wasserman004d4c12012-08-06 21:42:56 +03003147 }
3148 }
3149 }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003150
31513. Migration is done and has failed
3152
3153-> { "execute": "query-migrate" }
3154<- { "return": { "status": "failed" } }
3155
31564. Migration is being performed and is not a block migration:
3157
3158-> { "execute": "query-migrate" }
3159<- {
3160 "return":{
3161 "status":"active",
3162 "ram":{
3163 "transferred":123,
3164 "remaining":123,
Orit Wasserman62d4e3f2012-08-06 21:42:55 +03003165 "total":246,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003166 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003167 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003168 "expected-downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003169 "duplicate":123,
3170 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003171 "normal-bytes":123456,
3172 "dirty-sync-count":15
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003173 }
3174 }
3175 }
3176
31775. Migration is being performed and is a block migration:
3178
3179-> { "execute": "query-migrate" }
3180<- {
3181 "return":{
3182 "status":"active",
3183 "ram":{
3184 "total":1057024,
3185 "remaining":1053304,
Orit Wasserman62d4e3f2012-08-06 21:42:55 +03003186 "transferred":3720,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003187 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003188 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003189 "expected-downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003190 "duplicate":123,
3191 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003192 "normal-bytes":123456,
3193 "dirty-sync-count":15
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003194 },
3195 "disk":{
3196 "total":20971520,
3197 "remaining":20880384,
3198 "transferred":91136
3199 }
3200 }
3201 }
3202
Orit Wassermanf36d55a2012-08-06 21:42:57 +030032036. Migration is being performed and XBZRLE is active:
3204
3205-> { "execute": "query-migrate" }
3206<- {
3207 "return":{
3208 "status":"active",
3209 "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
3210 "ram":{
3211 "total":1057024,
3212 "remaining":1053304,
3213 "transferred":3720,
3214 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003215 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003216 "expected-downtime":12345,
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003217 "duplicate":10,
3218 "normal":3333,
ChenLiang58570ed2014-04-04 17:57:55 +08003219 "normal-bytes":3412992,
3220 "dirty-sync-count":15
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003221 },
3222 "xbzrle-cache":{
3223 "cache-size":67108864,
3224 "bytes":20971520,
3225 "pages":2444343,
3226 "cache-miss":2244,
ChenLiang8bc39232014-04-04 17:57:56 +08003227 "cache-miss-rate":0.123,
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003228 "overflow":34434
3229 }
3230 }
3231 }
3232
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003233EQMP
3234
Luiz Capitulino791e7c82011-09-13 17:37:16 -03003235 {
3236 .name = "query-migrate",
3237 .args_type = "",
3238 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
3239 },
3240
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003241SQMP
Orit Wasserman00458432012-08-06 21:42:48 +03003242migrate-set-capabilities
Juan Quintela817c6042013-02-11 15:11:10 +01003243------------------------
Orit Wasserman00458432012-08-06 21:42:48 +03003244
3245Enable/Disable migration capabilities
3246
Juan Quintela817c6042013-02-11 15:11:10 +01003247- "xbzrle": XBZRLE support
zhanghailiangd6d69732014-12-09 14:38:37 +08003248- "rdma-pin-all": pin all pages when using RDMA during migration
3249- "auto-converge": throttle down guest to help convergence of migration
3250- "zero-blocks": compress zero blocks during block migration
Orit Wasserman00458432012-08-06 21:42:48 +03003251
3252Arguments:
3253
3254Example:
3255
3256-> { "execute": "migrate-set-capabilities" , "arguments":
3257 { "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
3258
3259EQMP
3260
3261 {
3262 .name = "migrate-set-capabilities",
3263 .args_type = "capabilities:O",
3264 .params = "capability:s,state:b",
3265 .mhandler.cmd_new = qmp_marshal_input_migrate_set_capabilities,
3266 },
3267SQMP
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003268query-migrate-capabilities
Juan Quintela817c6042013-02-11 15:11:10 +01003269--------------------------
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003270
3271Query current migration capabilities
3272
3273- "capabilities": migration capabilities state
3274 - "xbzrle" : XBZRLE state (json-bool)
zhanghailiangd6d69732014-12-09 14:38:37 +08003275 - "rdma-pin-all" : RDMA Pin Page state (json-bool)
3276 - "auto-converge" : Auto Converge state (json-bool)
3277 - "zero-blocks" : Zero Blocks state (json-bool)
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003278
3279Arguments:
3280
3281Example:
3282
3283-> { "execute": "query-migrate-capabilities" }
Orit Wassermandbca1b32013-01-31 09:12:17 +02003284<- { "return": [ { "state": false, "capability": "xbzrle" } ] }
3285
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003286EQMP
3287
3288 {
3289 .name = "query-migrate-capabilities",
3290 .args_type = "",
3291 .mhandler.cmd_new = qmp_marshal_input_query_migrate_capabilities,
3292 },
3293
3294SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003295query-balloon
3296-------------
3297
3298Show balloon information.
3299
3300Make an asynchronous request for balloon info. When the request completes a
3301json-object will be returned containing the following data:
3302
3303- "actual": current balloon value in bytes (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003304
3305Example:
3306
3307-> { "execute": "query-balloon" }
3308<- {
3309 "return":{
3310 "actual":1073741824,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003311 }
3312 }
3313
3314EQMP
3315
Luiz Capitulino96637bc2011-10-21 11:41:37 -02003316 {
3317 .name = "query-balloon",
3318 .args_type = "",
3319 .mhandler.cmd_new = qmp_marshal_input_query_balloon,
3320 },
Anthony Liguorib4b12c62011-12-12 14:29:34 -06003321
3322 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00003323 .name = "query-block-jobs",
3324 .args_type = "",
3325 .mhandler.cmd_new = qmp_marshal_input_query_block_jobs,
3326 },
3327
3328 {
Anthony Liguorib4b12c62011-12-12 14:29:34 -06003329 .name = "qom-list",
3330 .args_type = "path:s",
3331 .mhandler.cmd_new = qmp_marshal_input_qom_list,
3332 },
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06003333
3334 {
3335 .name = "qom-set",
Paolo Bonzinib9f89782012-03-22 12:51:11 +01003336 .args_type = "path:s,property:s,value:q",
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06003337 .mhandler.cmd_new = qmp_qom_set,
3338 },
3339
3340 {
3341 .name = "qom-get",
3342 .args_type = "path:s,property:s",
3343 .mhandler.cmd_new = qmp_qom_get,
3344 },
Luiz Capitulino270b2432011-12-08 11:45:55 -02003345
3346 {
Paolo Bonzini6dd844d2012-08-22 16:43:07 +02003347 .name = "nbd-server-start",
3348 .args_type = "addr:q",
3349 .mhandler.cmd_new = qmp_marshal_input_nbd_server_start,
3350 },
3351 {
3352 .name = "nbd-server-add",
3353 .args_type = "device:B,writable:b?",
3354 .mhandler.cmd_new = qmp_marshal_input_nbd_server_add,
3355 },
3356 {
3357 .name = "nbd-server-stop",
3358 .args_type = "",
3359 .mhandler.cmd_new = qmp_marshal_input_nbd_server_stop,
3360 },
3361
3362 {
Luiz Capitulino270b2432011-12-08 11:45:55 -02003363 .name = "change-vnc-password",
3364 .args_type = "password:s",
3365 .mhandler.cmd_new = qmp_marshal_input_change_vnc_password,
3366 },
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06003367 {
3368 .name = "qom-list-types",
3369 .args_type = "implements:s?,abstract:b?",
3370 .mhandler.cmd_new = qmp_marshal_input_qom_list_types,
3371 },
Anthony Liguori1daa31b2012-08-10 11:04:09 -05003372
3373 {
3374 .name = "device-list-properties",
3375 .args_type = "typename:s",
3376 .mhandler.cmd_new = qmp_marshal_input_device_list_properties,
3377 },
3378
Anthony Liguori01d3c802012-08-10 11:04:11 -05003379 {
3380 .name = "query-machines",
3381 .args_type = "",
3382 .mhandler.cmd_new = qmp_marshal_input_query_machines,
3383 },
3384
Anthony Liguorie4e31c62012-08-10 11:04:13 -05003385 {
3386 .name = "query-cpu-definitions",
3387 .args_type = "",
3388 .mhandler.cmd_new = qmp_marshal_input_query_cpu_definitions,
3389 },
3390
Daniel P. Berrange99afc912012-08-20 15:31:38 +01003391 {
3392 .name = "query-target",
3393 .args_type = "",
3394 .mhandler.cmd_new = qmp_marshal_input_query_target,
3395 },
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003396
3397 {
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003398 .name = "query-tpm",
3399 .args_type = "",
3400 .mhandler.cmd_new = qmp_marshal_input_query_tpm,
3401 },
3402
Corey Bryant28c4fa32013-03-20 12:34:49 -04003403SQMP
3404query-tpm
3405---------
3406
3407Return information about the TPM device.
3408
3409Arguments: None
3410
3411Example:
3412
3413-> { "execute": "query-tpm" }
3414<- { "return":
3415 [
3416 { "model": "tpm-tis",
3417 "options":
3418 { "type": "passthrough",
3419 "data":
3420 { "cancel-path": "/sys/class/misc/tpm0/device/cancel",
3421 "path": "/dev/tpm0"
3422 }
3423 },
3424 "id": "tpm0"
3425 }
3426 ]
3427 }
3428
3429EQMP
3430
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003431 {
3432 .name = "query-tpm-models",
3433 .args_type = "",
3434 .mhandler.cmd_new = qmp_marshal_input_query_tpm_models,
3435 },
3436
Corey Bryant28c4fa32013-03-20 12:34:49 -04003437SQMP
3438query-tpm-models
3439----------------
3440
3441Return a list of supported TPM models.
3442
3443Arguments: None
3444
3445Example:
3446
3447-> { "execute": "query-tpm-models" }
3448<- { "return": [ "tpm-tis" ] }
3449
3450EQMP
3451
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003452 {
3453 .name = "query-tpm-types",
3454 .args_type = "",
3455 .mhandler.cmd_new = qmp_marshal_input_query_tpm_types,
3456 },
3457
Corey Bryant28c4fa32013-03-20 12:34:49 -04003458SQMP
3459query-tpm-types
3460---------------
3461
3462Return a list of supported TPM types.
3463
3464Arguments: None
3465
3466Example:
3467
3468-> { "execute": "query-tpm-types" }
3469<- { "return": [ "passthrough" ] }
3470
3471EQMP
3472
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003473 {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003474 .name = "chardev-add",
3475 .args_type = "id:s,backend:q",
3476 .mhandler.cmd_new = qmp_marshal_input_chardev_add,
3477 },
3478
3479SQMP
3480chardev-add
3481----------------
3482
3483Add a chardev.
3484
3485Arguments:
3486
3487- "id": the chardev's ID, must be unique (json-string)
3488- "backend": chardev backend type + parameters
3489
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003490Examples:
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003491
3492-> { "execute" : "chardev-add",
3493 "arguments" : { "id" : "foo",
3494 "backend" : { "type" : "null", "data" : {} } } }
3495<- { "return": {} }
3496
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003497-> { "execute" : "chardev-add",
3498 "arguments" : { "id" : "bar",
3499 "backend" : { "type" : "file",
3500 "data" : { "out" : "/tmp/bar.log" } } } }
3501<- { "return": {} }
3502
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003503-> { "execute" : "chardev-add",
3504 "arguments" : { "id" : "baz",
3505 "backend" : { "type" : "pty", "data" : {} } } }
3506<- { "return": { "pty" : "/dev/pty/42" } }
3507
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003508EQMP
3509
3510 {
3511 .name = "chardev-remove",
3512 .args_type = "id:s",
3513 .mhandler.cmd_new = qmp_marshal_input_chardev_remove,
3514 },
3515
3516
3517SQMP
3518chardev-remove
3519--------------
3520
3521Remove a chardev.
3522
3523Arguments:
3524
3525- "id": the chardev's ID, must exist and not be in use (json-string)
3526
3527Example:
3528
3529-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
3530<- { "return": {} }
3531
3532EQMP
Amos Kongb1be4282013-06-14 15:45:52 +08003533 {
3534 .name = "query-rx-filter",
3535 .args_type = "name:s?",
3536 .mhandler.cmd_new = qmp_marshal_input_query_rx_filter,
3537 },
3538
3539SQMP
3540query-rx-filter
3541---------------
3542
3543Show rx-filter information.
3544
3545Returns a json-array of rx-filter information for all NICs (or for the
3546given NIC), returning an error if the given NIC doesn't exist, or
3547given NIC doesn't support rx-filter querying, or given net client
3548isn't a NIC.
3549
3550The query will clear the event notification flag of each NIC, then qemu
3551will start to emit event to QMP monitor.
3552
3553Each array entry contains the following:
3554
3555- "name": net client name (json-string)
3556- "promiscuous": promiscuous mode is enabled (json-bool)
3557- "multicast": multicast receive state (one of 'normal', 'none', 'all')
3558- "unicast": unicast receive state (one of 'normal', 'none', 'all')
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003559- "vlan": vlan receive state (one of 'normal', 'none', 'all') (Since 2.0)
Amos Kongb1be4282013-06-14 15:45:52 +08003560- "broadcast-allowed": allow to receive broadcast (json-bool)
3561- "multicast-overflow": multicast table is overflowed (json-bool)
3562- "unicast-overflow": unicast table is overflowed (json-bool)
3563- "main-mac": main macaddr string (json-string)
3564- "vlan-table": a json-array of active vlan id
3565- "unicast-table": a json-array of unicast macaddr string
3566- "multicast-table": a json-array of multicast macaddr string
3567
3568Example:
3569
3570-> { "execute": "query-rx-filter", "arguments": { "name": "vnet0" } }
3571<- { "return": [
3572 {
3573 "promiscuous": true,
3574 "name": "vnet0",
3575 "main-mac": "52:54:00:12:34:56",
3576 "unicast": "normal",
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003577 "vlan": "normal",
Amos Kongb1be4282013-06-14 15:45:52 +08003578 "vlan-table": [
3579 4,
3580 0
3581 ],
3582 "unicast-table": [
3583 ],
3584 "multicast": "normal",
3585 "multicast-overflow": false,
3586 "unicast-overflow": false,
3587 "multicast-table": [
3588 "01:00:5e:00:00:01",
3589 "33:33:00:00:00:01",
3590 "33:33:ff:12:34:56"
3591 ],
3592 "broadcast-allowed": false
3593 }
3594 ]
3595 }
3596
3597EQMP
Kevin Wolfd26c9a12013-09-23 15:26:03 +02003598
3599 {
3600 .name = "blockdev-add",
3601 .args_type = "options:q",
3602 .mhandler.cmd_new = qmp_marshal_input_blockdev_add,
3603 },
3604
3605SQMP
3606blockdev-add
3607------------
3608
3609Add a block device.
3610
3611Arguments:
3612
3613- "options": block driver options
3614
3615Example (1):
3616
3617-> { "execute": "blockdev-add",
3618 "arguments": { "options" : { "driver": "qcow2",
3619 "file": { "driver": "file",
3620 "filename": "test.qcow2" } } } }
3621<- { "return": {} }
3622
3623Example (2):
3624
3625-> { "execute": "blockdev-add",
3626 "arguments": {
3627 "options": {
3628 "driver": "qcow2",
3629 "id": "my_disk",
3630 "discard": "unmap",
3631 "cache": {
3632 "direct": true,
3633 "writeback": true
3634 },
3635 "file": {
3636 "driver": "file",
3637 "filename": "/tmp/test.qcow2"
3638 },
3639 "backing": {
3640 "driver": "raw",
3641 "file": {
3642 "driver": "file",
3643 "filename": "/dev/fdset/4"
3644 }
3645 }
3646 }
3647 }
3648 }
3649
3650<- { "return": {} }
3651
3652EQMP
Benoît Canetc13163f2014-01-23 21:31:34 +01003653
3654 {
3655 .name = "query-named-block-nodes",
3656 .args_type = "",
3657 .mhandler.cmd_new = qmp_marshal_input_query_named_block_nodes,
3658 },
3659
3660SQMP
3661@query-named-block-nodes
3662------------------------
3663
3664Return a list of BlockDeviceInfo for all the named block driver nodes
3665
3666Example:
3667
3668-> { "execute": "query-named-block-nodes" }
3669<- { "return": [ { "ro":false,
3670 "drv":"qcow2",
3671 "encrypted":false,
3672 "file":"disks/test.qcow2",
3673 "node-name": "my-node",
3674 "backing_file_depth":1,
3675 "bps":1000000,
3676 "bps_rd":0,
3677 "bps_wr":0,
3678 "iops":1000000,
3679 "iops_rd":0,
3680 "iops_wr":0,
3681 "bps_max": 8000000,
3682 "bps_rd_max": 0,
3683 "bps_wr_max": 0,
3684 "iops_max": 0,
3685 "iops_rd_max": 0,
3686 "iops_wr_max": 0,
3687 "iops_size": 0,
3688 "image":{
3689 "filename":"disks/test.qcow2",
3690 "format":"qcow2",
3691 "virtual-size":2048000,
3692 "backing_file":"base.qcow2",
3693 "full-backing-filename":"disks/base.qcow2",
3694 "backing-filename-format:"qcow2",
3695 "snapshots":[
3696 {
3697 "id": "1",
3698 "name": "snapshot1",
3699 "vm-state-size": 0,
3700 "date-sec": 10000200,
3701 "date-nsec": 12,
3702 "vm-clock-sec": 206,
3703 "vm-clock-nsec": 30
3704 }
3705 ],
3706 "backing-image":{
3707 "filename":"disks/base.qcow2",
3708 "format":"qcow2",
3709 "virtual-size":2048000
3710 }
Michael S. Tsirkinc0594512014-06-16 15:20:18 +03003711 } } ] }
Benoît Canetc13163f2014-01-23 21:31:34 +01003712
3713EQMP
Hu Tao76b5d852014-06-16 18:05:41 +08003714
3715 {
3716 .name = "query-memdev",
3717 .args_type = "",
3718 .mhandler.cmd_new = qmp_marshal_input_query_memdev,
3719 },
3720
3721SQMP
3722query-memdev
3723------------
3724
3725Show memory devices information.
3726
3727
3728Example (1):
3729
3730-> { "execute": "query-memdev" }
3731<- { "return": [
3732 {
3733 "size": 536870912,
3734 "merge": false,
3735 "dump": true,
3736 "prealloc": false,
3737 "host-nodes": [0, 1],
3738 "policy": "bind"
3739 },
3740 {
3741 "size": 536870912,
3742 "merge": false,
3743 "dump": true,
3744 "prealloc": true,
3745 "host-nodes": [2, 3],
3746 "policy": "preferred"
3747 }
3748 ]
3749 }
3750
3751EQMP
Igor Mammedov6f2e2732014-06-16 19:12:25 +02003752
3753 {
3754 .name = "query-memory-devices",
3755 .args_type = "",
3756 .mhandler.cmd_new = qmp_marshal_input_query_memory_devices,
3757 },
3758
3759SQMP
3760@query-memory-devices
3761--------------------
3762
3763Return a list of memory devices.
3764
3765Example:
3766-> { "execute": "query-memory-devices" }
3767<- { "return": [ { "data":
3768 { "addr": 5368709120,
3769 "hotpluggable": true,
3770 "hotplugged": true,
3771 "id": "d1",
3772 "memdev": "/objects/memX",
3773 "node": 0,
3774 "size": 1073741824,
3775 "slot": 0},
3776 "type": "dimm"
3777 } ] }
3778EQMP
Igor Mammedov02419bc2014-06-16 19:12:28 +02003779
3780 {
3781 .name = "query-acpi-ospm-status",
3782 .args_type = "",
3783 .mhandler.cmd_new = qmp_marshal_input_query_acpi_ospm_status,
3784 },
3785
3786SQMP
3787@query-acpi-ospm-status
3788--------------------
3789
3790Return list of ACPIOSTInfo for devices that support status reporting
3791via ACPI _OST method.
3792
3793Example:
3794-> { "execute": "query-acpi-ospm-status" }
3795<- { "return": [ { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0},
3796 { "slot": "1", "slot-type": "DIMM", "source": 0, "status": 0},
3797 { "slot": "2", "slot-type": "DIMM", "source": 0, "status": 0},
3798 { "slot": "3", "slot-type": "DIMM", "source": 0, "status": 0}
3799 ]}
3800EQMP
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03003801
3802#if defined TARGET_I386
3803 {
3804 .name = "rtc-reset-reinjection",
3805 .args_type = "",
3806 .mhandler.cmd_new = qmp_marshal_input_rtc_reset_reinjection,
3807 },
3808#endif
3809
3810SQMP
3811rtc-reset-reinjection
3812---------------------
3813
3814Reset the RTC interrupt reinjection backlog.
3815
3816Arguments: None.
3817
3818Example:
3819
3820-> { "execute": "rtc-reset-reinjection" }
3821<- { "return": {} }
Lluís Vilanova1dde0f42014-08-25 13:19:57 +02003822EQMP
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03003823
Lluís Vilanova1dde0f42014-08-25 13:19:57 +02003824 {
3825 .name = "trace-event-get-state",
3826 .args_type = "name:s",
3827 .mhandler.cmd_new = qmp_marshal_input_trace_event_get_state,
3828 },
3829
3830SQMP
3831trace-event-get-state
3832---------------------
3833
3834Query the state of events.
3835
3836Example:
3837
3838-> { "execute": "trace-event-get-state", "arguments": { "name": "qemu_memalign" } }
3839<- { "return": [ { "name": "qemu_memalign", "state": "disabled" } ] }
3840EQMP
3841
3842 {
3843 .name = "trace-event-set-state",
3844 .args_type = "name:s,enable:b,ignore-unavailable:b?",
3845 .mhandler.cmd_new = qmp_marshal_input_trace_event_set_state,
3846 },
3847
3848SQMP
3849trace-event-set-state
3850---------------------
3851
3852Set the state of events.
3853
3854Example:
3855
3856-> { "execute": "trace-event-set-state", "arguments": { "name": "qemu_memalign", "enable": "true" } }
3857<- { "return": {} }
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03003858EQMP
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003859
3860 {
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003861 .name = "x-input-send-event",
Amos Kong51fc4472014-11-07 12:41:25 +08003862 .args_type = "console:i?,events:q",
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003863 .mhandler.cmd_new = qmp_marshal_input_x_input_send_event,
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003864 },
3865
3866SQMP
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003867@x-input-send-event
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003868-----------------
3869
3870Send input event to guest.
3871
3872Arguments:
3873
Amos Kong51fc4472014-11-07 12:41:25 +08003874- "console": console index. (json-int, optional)
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003875- "events": list of input events.
3876
3877The consoles are visible in the qom tree, under
3878/backend/console[$index]. They have a device link and head property, so
3879it is possible to map which console belongs to which device and display.
3880
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003881Note: this command is experimental, and not a stable API.
3882
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003883Example (1):
3884
3885Press left mouse button.
3886
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003887-> { "execute": "x-input-send-event",
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003888 "arguments": { "console": 0,
3889 "events": [ { "type": "btn",
Amos Kongb5369dd2014-11-25 16:05:56 +08003890 "data" : { "down": true, "button": "Left" } } ] } }
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003891<- { "return": {} }
3892
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003893-> { "execute": "x-input-send-event",
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003894 "arguments": { "console": 0,
3895 "events": [ { "type": "btn",
Amos Kongb5369dd2014-11-25 16:05:56 +08003896 "data" : { "down": false, "button": "Left" } } ] } }
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003897<- { "return": {} }
3898
3899Example (2):
3900
3901Press ctrl-alt-del.
3902
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003903-> { "execute": "x-input-send-event",
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003904 "arguments": { "console": 0, "events": [
3905 { "type": "key", "data" : { "down": true,
3906 "key": {"type": "qcode", "data": "ctrl" } } },
3907 { "type": "key", "data" : { "down": true,
3908 "key": {"type": "qcode", "data": "alt" } } },
3909 { "type": "key", "data" : { "down": true,
3910 "key": {"type": "qcode", "data": "delete" } } } ] } }
3911<- { "return": {} }
3912
3913Example (3):
3914
3915Move mouse pointer to absolute coordinates (20000, 400).
3916
Gerd Hoffmanndf5b2ad2014-11-25 14:54:17 +01003917-> { "execute": "x-input-send-event" ,
Marcelo Tosatti50c66172014-09-30 18:10:17 -03003918 "arguments": { "console": 0, "events": [
3919 { "type": "abs", "data" : { "axis": "X", "value" : 20000 } },
3920 { "type": "abs", "data" : { "axis": "Y", "value" : 400 } } ] } }
3921<- { "return": {} }
3922
3923EQMP