blob: 8c5fdb5ca18b43a38c33c82036c90d2115c57add [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
480Inject an NMI on guest's CPUs.
481
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.
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +0100490 Currently, only x86 (NMI) and s390x (RESTART) guests do.
Lai Jiangshana4046662011-03-07 17:05:15 +0800491
492EQMP
493
494 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100495 .name = "ringbuf-write",
Markus Armbruster82e59a62013-02-06 21:27:14 +0100496 .args_type = "device:s,data:s,format:s?",
Markus Armbruster3949e592013-02-06 21:27:24 +0100497 .mhandler.cmd_new = qmp_marshal_input_ringbuf_write,
Lei Li1f590cf2013-01-25 00:03:20 +0800498 },
499
500SQMP
Markus Armbruster3949e592013-02-06 21:27:24 +0100501ringbuf-write
Lei Li1f590cf2013-01-25 00:03:20 +0800502-------------
503
Markus Armbruster3949e592013-02-06 21:27:24 +0100504Write to a ring buffer character device.
Lei Li1f590cf2013-01-25 00:03:20 +0800505
506Arguments:
507
Markus Armbruster3949e592013-02-06 21:27:24 +0100508- "device": ring buffer character device name (json-string)
509- "data": data to write (json-string)
510- "format": data format (json-string, optional)
511 - Possible values: "utf8" (default), "base64"
512 Bug: invalid base64 is currently not rejected.
513 Whitespace *is* invalid.
Lei Li1f590cf2013-01-25 00:03:20 +0800514
515Example:
516
Markus Armbruster3949e592013-02-06 21:27:24 +0100517-> { "execute": "ringbuf-write",
518 "arguments": { "device": "foo",
Lei Li1f590cf2013-01-25 00:03:20 +0800519 "data": "abcdefgh",
520 "format": "utf8" } }
521<- { "return": {} }
522
523EQMP
524
525 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100526 .name = "ringbuf-read",
Lei Li49b6d722013-01-25 00:03:21 +0800527 .args_type = "device:s,size:i,format:s?",
Markus Armbruster3949e592013-02-06 21:27:24 +0100528 .mhandler.cmd_new = qmp_marshal_input_ringbuf_read,
Lei Li49b6d722013-01-25 00:03:21 +0800529 },
530
531SQMP
Markus Armbruster3949e592013-02-06 21:27:24 +0100532ringbuf-read
Lei Li49b6d722013-01-25 00:03:21 +0800533-------------
534
Markus Armbruster3949e592013-02-06 21:27:24 +0100535Read from a ring buffer character device.
Lei Li49b6d722013-01-25 00:03:21 +0800536
537Arguments:
538
Markus Armbruster3949e592013-02-06 21:27:24 +0100539- "device": ring buffer character device name (json-string)
540- "size": how many bytes to read at most (json-int)
541 - Number of data bytes, not number of characters in encoded data
542- "format": data format (json-string, optional)
543 - Possible values: "utf8" (default), "base64"
544 - Naturally, format "utf8" works only when the ring buffer
545 contains valid UTF-8 text. Invalid UTF-8 sequences get
546 replaced. Bug: replacement doesn't work. Bug: can screw
547 up on encountering NUL characters, after the ring buffer
548 lost data, and when reading stops because the size limit
549 is reached.
Lei Li49b6d722013-01-25 00:03:21 +0800550
551Example:
552
Markus Armbruster3949e592013-02-06 21:27:24 +0100553-> { "execute": "ringbuf-read",
554 "arguments": { "device": "foo",
Lei Li49b6d722013-01-25 00:03:21 +0800555 "size": 1000,
556 "format": "utf8" } }
Markus Armbruster3ab651f2013-02-06 21:27:15 +0100557<- {"return": "abcdefgh"}
Lei Li49b6d722013-01-25 00:03:21 +0800558
559EQMP
560
561 {
Stefano Stabellinia7ae8352012-01-25 12:24:51 +0000562 .name = "xen-save-devices-state",
563 .args_type = "filename:F",
564 .mhandler.cmd_new = qmp_marshal_input_xen_save_devices_state,
565 },
566
567SQMP
568xen-save-devices-state
569-------
570
571Save the state of all devices to file. The RAM and the block devices
572of the VM are not saved by this command.
573
574Arguments:
575
576- "filename": the file to save the state of the devices to as binary
577data. See xen-save-devices-state.txt for a description of the binary
578format.
579
580Example:
581
582-> { "execute": "xen-save-devices-state",
583 "arguments": { "filename": "/tmp/save" } }
584<- { "return": {} }
585
586EQMP
587
588 {
Anthony PERARD39f42432012-10-03 13:48:19 +0000589 .name = "xen-set-global-dirty-log",
590 .args_type = "enable:b",
591 .mhandler.cmd_new = qmp_marshal_input_xen_set_global_dirty_log,
592 },
593
594SQMP
595xen-set-global-dirty-log
596-------
597
598Enable or disable the global dirty log mode.
599
600Arguments:
601
602- "enable": Enable it or disable it.
603
604Example:
605
606-> { "execute": "xen-set-global-dirty-log",
607 "arguments": { "enable": true } }
608<- { "return": {} }
609
610EQMP
611
612 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300613 .name = "migrate",
614 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200615 .mhandler.cmd_new = qmp_marshal_input_migrate,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300616 },
617
618SQMP
619migrate
620-------
621
622Migrate to URI.
623
624Arguments:
625
626- "blk": block migration, full disk copy (json-bool, optional)
627- "inc": incremental disk copy (json-bool, optional)
628- "uri": Destination URI (json-string)
629
630Example:
631
632-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
633<- { "return": {} }
634
635Notes:
636
637(1) The 'query-migrate' command should be used to check migration's progress
638 and final result (this information is provided by the 'status' member)
639(2) All boolean arguments default to false
640(3) The user Monitor's "detach" argument is invalid in QMP and should not
641 be used
642
643EQMP
644
645 {
646 .name = "migrate_cancel",
647 .args_type = "",
Luiz Capitulino6cdedb02011-11-27 22:54:09 -0200648 .mhandler.cmd_new = qmp_marshal_input_migrate_cancel,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300649 },
650
651SQMP
652migrate_cancel
653--------------
654
655Cancel the current migration.
656
657Arguments: None.
658
659Example:
660
661-> { "execute": "migrate_cancel" }
662<- { "return": {} }
663
664EQMP
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300665{
666 .name = "migrate-set-cache-size",
667 .args_type = "value:o",
668 .mhandler.cmd_new = qmp_marshal_input_migrate_set_cache_size,
669 },
670
671SQMP
672migrate-set-cache-size
Juan Quintela817c6042013-02-11 15:11:10 +0100673----------------------
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300674
675Set cache size to be used by XBZRLE migration, the cache size will be rounded
676down to the nearest power of 2
677
678Arguments:
679
680- "value": cache size in bytes (json-int)
681
682Example:
683
684-> { "execute": "migrate-set-cache-size", "arguments": { "value": 536870912 } }
685<- { "return": {} }
686
687EQMP
688 {
689 .name = "query-migrate-cache-size",
690 .args_type = "",
691 .mhandler.cmd_new = qmp_marshal_input_query_migrate_cache_size,
692 },
693
694SQMP
695query-migrate-cache-size
Juan Quintela817c6042013-02-11 15:11:10 +0100696------------------------
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300697
698Show cache size to be used by XBZRLE migration
699
700returns a json-object with the following information:
701- "size" : json-int
702
703Example:
704
705-> { "execute": "query-migrate-cache-size" }
706<- { "return": 67108864 }
707
708EQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300709
710 {
711 .name = "migrate_set_speed",
Wen Congyang3a019b62010-11-25 09:06:05 +0800712 .args_type = "value:o",
Luiz Capitulino3dc85382011-11-28 11:59:37 -0200713 .mhandler.cmd_new = qmp_marshal_input_migrate_set_speed,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300714 },
715
716SQMP
717migrate_set_speed
718-----------------
719
720Set maximum speed for migrations.
721
722Arguments:
723
Luiz Capitulino5569fd72010-12-15 17:56:18 -0200724- "value": maximum speed, in bytes per second (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300725
726Example:
727
728-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
729<- { "return": {} }
730
731EQMP
732
733 {
734 .name = "migrate_set_downtime",
735 .args_type = "value:T",
Luiz Capitulino4f0a9932011-11-27 23:18:01 -0200736 .mhandler.cmd_new = qmp_marshal_input_migrate_set_downtime,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300737 },
738
739SQMP
740migrate_set_downtime
741--------------------
742
743Set maximum tolerated downtime (in seconds) for migrations.
744
745Arguments:
746
747- "value": maximum downtime (json-number)
748
749Example:
750
751-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
752<- { "return": {} }
753
754EQMP
755
756 {
Jes Sorensenff73edf2011-03-09 14:31:06 +0100757 .name = "client_migrate_info",
758 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
759 .params = "protocol hostname port tls-port cert-subject",
760 .help = "send migration info to spice/vnc client",
761 .user_print = monitor_user_noop,
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200762 .mhandler.cmd_async = client_migrate_info,
763 .flags = MONITOR_CMD_ASYNC,
Jes Sorensenff73edf2011-03-09 14:31:06 +0100764 },
765
766SQMP
767client_migrate_info
768------------------
769
770Set the spice/vnc connection info for the migration target. The spice/vnc
771server will ask the spice/vnc client to automatically reconnect using the
772new parameters (if specified) once the vm migration finished successfully.
773
774Arguments:
775
776- "protocol": protocol: "spice" or "vnc" (json-string)
777- "hostname": migration target hostname (json-string)
778- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
779- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
780- "cert-subject": server certificate subject (json-string, optional)
781
782Example:
783
784-> { "execute": "client_migrate_info",
785 "arguments": { "protocol": "spice",
786 "hostname": "virt42.lab.kraxel.org",
787 "port": 1234 } }
788<- { "return": {} }
789
790EQMP
791
792 {
Wen Congyang783e9b42012-05-07 12:10:47 +0800793 .name = "dump-guest-memory",
qiaonuohanb53ccc32014-02-18 14:11:36 +0800794 .args_type = "paging:b,protocol:s,begin:i?,end:i?,format:s?",
795 .params = "-p protocol [begin] [length] [format]",
Wen Congyang783e9b42012-05-07 12:10:47 +0800796 .help = "dump guest memory to file",
797 .user_print = monitor_user_noop,
798 .mhandler.cmd_new = qmp_marshal_input_dump_guest_memory,
799 },
800
801SQMP
802dump
803
804
805Dump guest memory to file. The file can be processed with crash or gdb.
806
807Arguments:
808
809- "paging": do paging to get guest's memory mapping (json-bool)
810- "protocol": destination file(started with "file:") or destination file
811 descriptor (started with "fd:") (json-string)
812- "begin": the starting physical address. It's optional, and should be specified
813 with length together (json-int)
814- "length": the memory size, in bytes. It's optional, and should be specified
815 with begin together (json-int)
qiaonuohanb53ccc32014-02-18 14:11:36 +0800816- "format": the format of guest memory dump. It's optional, and can be
817 elf|kdump-zlib|kdump-lzo|kdump-snappy, but non-elf formats will
818 conflict with paging and filter, ie. begin and length (json-string)
Wen Congyang783e9b42012-05-07 12:10:47 +0800819
820Example:
821
822-> { "execute": "dump-guest-memory", "arguments": { "protocol": "fd:dump" } }
823<- { "return": {} }
824
825Notes:
826
827(1) All boolean arguments default to false
828
829EQMP
830
831 {
qiaonuohan7d6dc7f2014-02-18 14:11:38 +0800832 .name = "query-dump-guest-memory-capability",
833 .args_type = "",
834 .mhandler.cmd_new = qmp_marshal_input_query_dump_guest_memory_capability,
835 },
836
837SQMP
838query-dump-guest-memory-capability
839----------
840
841Show available formats for 'dump-guest-memory'
842
843Example:
844
845-> { "execute": "query-dump-guest-memory-capability" }
846<- { "return": { "formats":
847 ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
848
849EQMP
850
851 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300852 .name = "netdev_add",
853 .args_type = "netdev:O",
Luiz Capitulino928059a2012-04-18 17:34:15 -0300854 .mhandler.cmd_new = qmp_netdev_add,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300855 },
856
857SQMP
858netdev_add
859----------
860
861Add host network device.
862
863Arguments:
864
865- "type": the device type, "tap", "user", ... (json-string)
866- "id": the device's ID, must be unique (json-string)
867- device options
868
869Example:
870
871-> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
872<- { "return": {} }
873
Markus Armbrusteraf347aa2013-02-22 18:31:51 +0100874Note: The supported device options are the same ones supported by the '-netdev'
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300875 command-line argument, which are listed in the '-help' output or QEMU's
876 manual
877
878EQMP
879
880 {
881 .name = "netdev_del",
882 .args_type = "id:s",
Luiz Capitulino5f964152012-04-16 14:36:32 -0300883 .mhandler.cmd_new = qmp_marshal_input_netdev_del,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300884 },
885
886SQMP
887netdev_del
888----------
889
890Remove host network device.
891
892Arguments:
893
894- "id": the device's ID, must be unique (json-string)
895
896Example:
897
898-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
899<- { "return": {} }
900
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100901
902EQMP
903
904 {
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +0100905 .name = "object-add",
906 .args_type = "qom-type:s,id:s,props:q?",
907 .mhandler.cmd_new = qmp_object_add,
908 },
909
910SQMP
911object-add
912----------
913
914Create QOM object.
915
916Arguments:
917
918- "qom-type": the object's QOM type, i.e. the class name (json-string)
919- "id": the object's ID, must be unique (json-string)
920- "props": a dictionary of object property values (optional, json-dict)
921
922Example:
923
924-> { "execute": "object-add", "arguments": { "qom-type": "rng-random", "id": "rng1",
925 "props": { "filename": "/dev/hwrng" } } }
926<- { "return": {} }
927
928EQMP
929
930 {
Paolo Bonziniab2d0532013-12-20 23:21:09 +0100931 .name = "object-del",
932 .args_type = "id:s",
933 .mhandler.cmd_new = qmp_marshal_input_object_del,
934 },
935
936SQMP
937object-del
938----------
939
940Remove QOM object.
941
942Arguments:
943
944- "id": the object's ID (json-string)
945
946Example:
947
948-> { "execute": "object-del", "arguments": { "id": "rng1" } }
949<- { "return": {} }
950
951
952EQMP
953
954
955 {
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100956 .name = "block_resize",
Benoît Canet3b1dbd12014-01-23 21:31:37 +0100957 .args_type = "device:s?,node-name:s?,size:o",
Luiz Capitulino5e7caac2011-11-25 14:57:10 -0200958 .mhandler.cmd_new = qmp_marshal_input_block_resize,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100959 },
960
961SQMP
962block_resize
963------------
964
965Resize a block image while a guest is running.
966
967Arguments:
968
969- "device": the device's ID, must be unique (json-string)
Benoît Canet3b1dbd12014-01-23 21:31:37 +0100970- "node-name": the node name in the block driver state graph (json-string)
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100971- "size": new size
972
973Example:
974
975-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
976<- { "return": {} }
977
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300978EQMP
979
980 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +0100981 .name = "block-stream",
Paolo Bonzini1d809092012-09-28 17:22:59 +0200982 .args_type = "device:B,base:s?,speed:o?,on-error:s?",
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +0000983 .mhandler.cmd_new = qmp_marshal_input_block_stream,
984 },
985
986 {
Jeff Codyed61fc12012-09-27 13:29:16 -0400987 .name = "block-commit",
Jeff Cody7676e2c2014-06-30 15:14:15 +0200988 .args_type = "device:B,base:s?,top:s?,speed:o?",
Jeff Codyed61fc12012-09-27 13:29:16 -0400989 .mhandler.cmd_new = qmp_marshal_input_block_commit,
990 },
991
Jeff Cody37222902014-01-24 09:02:37 -0500992SQMP
993block-commit
994------------
995
996Live commit of data from overlay image nodes into backing nodes - i.e., writes
997data between 'top' and 'base' into 'base'.
998
999Arguments:
1000
1001- "device": The device's ID, must be unique (json-string)
1002- "base": The file name of the backing image to write data into.
1003 If not specified, this is the deepest backing image
1004 (json-string, optional)
1005- "top": The file name of the backing image within the image chain,
Jeff Cody7676e2c2014-06-30 15:14:15 +02001006 which contains the topmost data to be committed down. If
1007 not specified, this is the active layer. (json-string, optional)
Jeff Cody37222902014-01-24 09:02:37 -05001008
1009 If top == base, that is an error.
1010 If top == active, the job will not be completed by itself,
1011 user needs to complete the job with the block-job-complete
1012 command after getting the ready event. (Since 2.0)
1013
1014 If the base image is smaller than top, then the base image
1015 will be resized to be the same size as top. If top is
1016 smaller than the base image, the base will not be
1017 truncated. If you want the base image size to match the
1018 size of the smaller top, you can safely truncate it
1019 yourself once the commit operation successfully completes.
1020 (json-string)
1021- "speed": the maximum speed, in bytes per second (json-int, optional)
1022
1023
1024Example:
1025
1026-> { "execute": "block-commit", "arguments": { "device": "virtio0",
1027 "top": "/tmp/snap1.qcow2" } }
1028<- { "return": {} }
1029
1030EQMP
1031
Jeff Codyed61fc12012-09-27 13:29:16 -04001032 {
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001033 .name = "drive-backup",
Stefan Hajnoczib53169e2013-06-26 14:11:57 +02001034 .args_type = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001035 "on-source-error:s?,on-target-error:s?",
1036 .mhandler.cmd_new = qmp_marshal_input_drive_backup,
1037 },
1038
1039SQMP
1040drive-backup
1041------------
1042
1043Start a point-in-time copy of a block device to a new destination. The
1044status of ongoing drive-backup operations can be checked with
1045query-block-jobs where the BlockJobInfo.type field has the value 'backup'.
1046The operation can be stopped before it has completed using the
1047block-job-cancel command.
1048
1049Arguments:
1050
1051- "device": the name of the device which should be copied.
1052 (json-string)
1053- "target": the target of the new image. If the file exists, or if it is a
1054 device, the existing file/device will be used as the new
1055 destination. If it does not exist, a new file will be created.
1056 (json-string)
1057- "format": the format of the new destination, default is to probe if 'mode' is
1058 'existing', else the format of the source
1059 (json-string, optional)
Stefan Hajnoczib53169e2013-06-26 14:11:57 +02001060- "sync": what parts of the disk image should be copied to the destination;
1061 possibilities include "full" for all the disk, "top" for only the sectors
1062 allocated in the topmost image, or "none" to only replicate new I/O
1063 (MirrorSyncMode).
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001064- "mode": whether and how QEMU should create a new image
1065 (NewImageMode, optional, default 'absolute-paths')
1066- "speed": the maximum speed, in bytes per second (json-int, optional)
1067- "on-source-error": the action to take on an error on the source, default
1068 'report'. 'stop' and 'enospc' can only be used
1069 if the block device supports io-status.
1070 (BlockdevOnError, optional)
1071- "on-target-error": the action to take on an error on the target, default
1072 'report' (no limitations, since this applies to
1073 a different block device than device).
1074 (BlockdevOnError, optional)
1075
1076Example:
1077-> { "execute": "drive-backup", "arguments": { "device": "drive0",
Ian Mainfc5d3f82013-07-26 11:39:04 -07001078 "sync": "full",
Stefan Hajnoczi99a9add2013-06-24 17:13:14 +02001079 "target": "backup.img" } }
1080<- { "return": {} }
1081EQMP
1082
1083 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +01001084 .name = "block-job-set-speed",
Stefan Hajnoczi882ec7c2012-04-25 16:51:02 +01001085 .args_type = "device:B,speed:o",
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +00001086 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,
1087 },
1088
1089 {
Stefan Hajnoczidb58f9c2012-04-11 16:27:10 +01001090 .name = "block-job-cancel",
Paolo Bonzini6e37fb82012-09-28 17:22:51 +02001091 .args_type = "device:B,force:b?",
Stefan Hajnoczi370521a2012-01-18 14:40:48 +00001092 .mhandler.cmd_new = qmp_marshal_input_block_job_cancel,
1093 },
Jeff Codyc1864022012-02-28 15:54:07 -05001094 {
Paolo Bonzini6e37fb82012-09-28 17:22:51 +02001095 .name = "block-job-pause",
1096 .args_type = "device:B",
1097 .mhandler.cmd_new = qmp_marshal_input_block_job_pause,
1098 },
1099 {
1100 .name = "block-job-resume",
1101 .args_type = "device:B",
1102 .mhandler.cmd_new = qmp_marshal_input_block_job_resume,
1103 },
1104 {
Paolo Bonziniaeae8832012-10-18 16:49:21 +02001105 .name = "block-job-complete",
1106 .args_type = "device:B",
1107 .mhandler.cmd_new = qmp_marshal_input_block_job_complete,
1108 },
1109 {
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001110 .name = "transaction",
Paolo Bonzinib9f89782012-03-22 12:51:11 +01001111 .args_type = "actions:q",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001112 .mhandler.cmd_new = qmp_marshal_input_transaction,
Jeff Codyc1864022012-02-28 15:54:07 -05001113 },
1114
1115SQMP
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001116transaction
1117-----------
Jeff Codyc1864022012-02-28 15:54:07 -05001118
Wenchao Xiabbe86012013-09-11 14:04:34 +08001119Atomically operate on one or more block devices. The only supported operations
1120for now are drive-backup, internal and external snapshotting. A list of
1121dictionaries is accepted, that contains the actions to be performed.
1122If there is any failure performing any of the operations, all operations
1123for the group are abandoned.
Jeff Codyc1864022012-02-28 15:54:07 -05001124
Wenchao Xiabbe86012013-09-11 14:04:34 +08001125For external snapshots, the dictionary contains the device, the file to use for
1126the new snapshot, and the format. The default format, if not specified, is
1127qcow2.
Jeff Codyc1864022012-02-28 15:54:07 -05001128
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001129Each new snapshot defaults to being created by QEMU (wiping any
1130contents if the file already exists), but it is also possible to reuse
1131an externally-created file. In the latter case, you should ensure that
1132the new image file has the same contents as the current one; QEMU cannot
1133perform any meaningful check. Typically this is achieved by using the
1134current image file as the backing file for the new image.
1135
Wenchao Xiabbe86012013-09-11 14:04:34 +08001136On failure, the original disks pre-snapshot attempt will be used.
1137
1138For internal snapshots, the dictionary contains the device and the snapshot's
1139name. If an internal snapshot matching name already exists, the request will
1140be rejected. Only some image formats support it, for example, qcow2, rbd,
1141and sheepdog.
1142
1143On failure, qemu will try delete the newly created internal snapshot in the
1144transaction. When an I/O error occurs during deletion, the user needs to fix
1145it later with qemu-img or other command.
1146
Jeff Codyc1864022012-02-28 15:54:07 -05001147Arguments:
1148
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001149actions array:
1150 - "type": the operation to perform. The only supported
1151 value is "blockdev-snapshot-sync". (json-string)
1152 - "data": a dictionary. The contents depend on the value
1153 of "type". When "type" is "blockdev-snapshot-sync":
1154 - "device": device name to snapshot (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001155 - "node-name": graph node name to snapshot (json-string)
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001156 - "snapshot-file": name of new image file (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001157 - "snapshot-node-name": graph node name of the new snapshot (json-string)
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001158 - "format": format of new image (json-string, optional)
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001159 - "mode": whether and how QEMU should create the snapshot file
1160 (NewImageMode, optional, default "absolute-paths")
Wenchao Xiabbe86012013-09-11 14:04:34 +08001161 When "type" is "blockdev-snapshot-internal-sync":
1162 - "device": device name to snapshot (json-string)
1163 - "name": name of the new snapshot (json-string)
Jeff Codyc1864022012-02-28 15:54:07 -05001164
1165Example:
1166
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001167-> { "execute": "transaction",
1168 "arguments": { "actions": [
Eric Blakecd0c5382014-05-06 09:39:03 -06001169 { "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd0",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001170 "snapshot-file": "/some/place/my-image",
1171 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001172 { "type": "blockdev-snapshot-sync", "data" : { "node-name": "myfile",
Benoît Canet0901f672014-01-23 21:31:38 +01001173 "snapshot-file": "/some/place/my-image2",
1174 "snapshot-node-name": "node3432",
1175 "mode": "existing",
1176 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001177 { "type": "blockdev-snapshot-sync", "data" : { "device": "ide-hd1",
Paolo Bonzini52e7c242012-03-06 18:55:57 +01001178 "snapshot-file": "/some/place/my-image2",
Paolo Bonzinibc8b0942012-03-06 18:55:58 +01001179 "mode": "existing",
Wenchao Xiabbe86012013-09-11 14:04:34 +08001180 "format": "qcow2" } },
Eric Blakecd0c5382014-05-06 09:39:03 -06001181 { "type": "blockdev-snapshot-internal-sync", "data" : {
Wenchao Xiabbe86012013-09-11 14:04:34 +08001182 "device": "ide-hd2",
1183 "name": "snapshot0" } } ] } }
Jeff Codyc1864022012-02-28 15:54:07 -05001184<- { "return": {} }
1185
1186EQMP
Stefan Hajnoczi370521a2012-01-18 14:40:48 +00001187
1188 {
Jes Sorensend967b2f2011-07-11 20:01:09 +02001189 .name = "blockdev-snapshot-sync",
Benoît Canet0901f672014-01-23 21:31:38 +01001190 .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 -02001191 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_sync,
Jes Sorensend967b2f2011-07-11 20:01:09 +02001192 },
1193
1194SQMP
1195blockdev-snapshot-sync
1196----------------------
1197
1198Synchronous snapshot of a block device. snapshot-file specifies the
1199target of the new image. If the file exists, or if it is a device, the
1200snapshot will be created in the existing file/device. If does not
1201exist, a new file will be created. format specifies the format of the
1202snapshot image, default is qcow2.
1203
1204Arguments:
1205
1206- "device": device name to snapshot (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001207- "node-name": graph node name to snapshot (json-string)
Jes Sorensend967b2f2011-07-11 20:01:09 +02001208- "snapshot-file": name of new image file (json-string)
Benoît Canet0901f672014-01-23 21:31:38 +01001209- "snapshot-node-name": graph node name of the new snapshot (json-string)
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001210- "mode": whether and how QEMU should create the snapshot file
1211 (NewImageMode, optional, default "absolute-paths")
Jes Sorensend967b2f2011-07-11 20:01:09 +02001212- "format": format of new image (json-string, optional)
1213
1214Example:
1215
Luiz Capitulino7f3850c2011-10-10 17:30:08 -03001216-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
1217 "snapshot-file":
1218 "/some/place/my-image",
1219 "format": "qcow2" } }
Jes Sorensend967b2f2011-07-11 20:01:09 +02001220<- { "return": {} }
1221
1222EQMP
1223
1224 {
Wenchao Xiaf323bc92013-09-11 14:04:35 +08001225 .name = "blockdev-snapshot-internal-sync",
1226 .args_type = "device:B,name:s",
1227 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_internal_sync,
1228 },
1229
1230SQMP
1231blockdev-snapshot-internal-sync
1232-------------------------------
1233
1234Synchronously take an internal snapshot of a block device when the format of
1235image used supports it. If the name is an empty string, or a snapshot with
1236name already exists, the operation will fail.
1237
1238Arguments:
1239
1240- "device": device name to snapshot (json-string)
1241- "name": name of the new snapshot (json-string)
1242
1243Example:
1244
1245-> { "execute": "blockdev-snapshot-internal-sync",
1246 "arguments": { "device": "ide-hd0",
1247 "name": "snapshot0" }
1248 }
1249<- { "return": {} }
1250
1251EQMP
1252
1253 {
Wenchao Xia44e3e052013-09-11 14:04:36 +08001254 .name = "blockdev-snapshot-delete-internal-sync",
1255 .args_type = "device:B,id:s?,name:s?",
1256 .mhandler.cmd_new =
1257 qmp_marshal_input_blockdev_snapshot_delete_internal_sync,
1258 },
1259
1260SQMP
1261blockdev-snapshot-delete-internal-sync
1262--------------------------------------
1263
1264Synchronously delete an internal snapshot of a block device when the format of
1265image used supports it. The snapshot is identified by name or id or both. One
1266of name or id is required. If the snapshot is not found, the operation will
1267fail.
1268
1269Arguments:
1270
1271- "device": device name (json-string)
1272- "id": ID of the snapshot (json-string, optional)
1273- "name": name of the snapshot (json-string, optional)
1274
1275Example:
1276
1277-> { "execute": "blockdev-snapshot-delete-internal-sync",
1278 "arguments": { "device": "ide-hd0",
1279 "name": "snapshot0" }
1280 }
1281<- { "return": {
1282 "id": "1",
1283 "name": "snapshot0",
1284 "vm-state-size": 0,
1285 "date-sec": 1000012,
1286 "date-nsec": 10,
1287 "vm-clock-sec": 100,
1288 "vm-clock-nsec": 20
1289 }
1290 }
1291
1292EQMP
1293
1294 {
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001295 .name = "drive-mirror",
Paolo Bonzinib952b552012-10-18 16:49:28 +02001296 .args_type = "sync:s,device:B,target:s,speed:i?,mode:s?,format:s?,"
Benoît Canet09158f02014-06-27 18:25:25 +02001297 "node-name:s?,replaces:s?,"
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001298 "on-source-error:s?,on-target-error:s?,"
Paolo Bonzini08e4ed62013-01-22 09:03:13 +01001299 "granularity:i?,buf-size:i?",
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001300 .mhandler.cmd_new = qmp_marshal_input_drive_mirror,
1301 },
1302
1303SQMP
1304drive-mirror
1305------------
1306
1307Start mirroring a block device's writes to a new destination. target
1308specifies the target of the new image. If the file exists, or if it is
1309a device, it will be used as the new destination for writes. If it does not
1310exist, a new file will be created. format specifies the format of the
1311mirror image, default is to probe if mode='existing', else the format
1312of the source.
1313
1314Arguments:
1315
1316- "device": device name to operate on (json-string)
1317- "target": name of new image file (json-string)
1318- "format": format of new image (json-string, optional)
Benoît Canet4c828dc2014-06-16 12:00:55 +02001319- "node-name": the name of the new block driver state in the node graph
1320 (json-string, optional)
Benoît Canet09158f02014-06-27 18:25:25 +02001321- "replaces": the block driver node name to replace when finished
1322 (json-string, optional)
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001323- "mode": how an image file should be created into the target
1324 file/device (NewImageMode, optional, default 'absolute-paths')
1325- "speed": maximum speed of the streaming job, in bytes per second
1326 (json-int)
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001327- "granularity": granularity of the dirty bitmap, in bytes (json-int, optional)
Paolo Bonzini08e4ed62013-01-22 09:03:13 +01001328- "buf_size": maximum amount of data in flight from source to target, in bytes
1329 (json-int, default 10M)
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001330- "sync": what parts of the disk image should be copied to the destination;
1331 possibilities include "full" for all the disk, "top" for only the sectors
1332 allocated in the topmost image, or "none" to only replicate new I/O
1333 (MirrorSyncMode).
Paolo Bonzinib952b552012-10-18 16:49:28 +02001334- "on-source-error": the action to take on an error on the source
1335 (BlockdevOnError, default 'report')
1336- "on-target-error": the action to take on an error on the target
1337 (BlockdevOnError, default 'report')
1338
Paolo Bonzinieee13df2013-01-21 17:09:46 +01001339The default value of the granularity is the image cluster size clamped
1340between 4096 and 65536, if the image format defines one. If the format
1341does not define a cluster size, the default value of the granularity
1342is 65536.
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001343
1344
1345Example:
1346
1347-> { "execute": "drive-mirror", "arguments": { "device": "ide-hd0",
1348 "target": "/some/place/my-image",
1349 "sync": "full",
1350 "format": "qcow2" } }
1351<- { "return": {} }
1352
1353EQMP
1354
1355 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001356 .name = "balloon",
1357 .args_type = "value:M",
Luiz Capitulinod72f3262011-11-25 14:38:09 -02001358 .mhandler.cmd_new = qmp_marshal_input_balloon,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001359 },
1360
1361SQMP
1362balloon
1363-------
1364
1365Request VM to change its memory allocation (in bytes).
1366
1367Arguments:
1368
1369- "value": New memory allocation (json-int)
1370
1371Example:
1372
1373-> { "execute": "balloon", "arguments": { "value": 536870912 } }
1374<- { "return": {} }
1375
1376EQMP
1377
1378 {
1379 .name = "set_link",
1380 .args_type = "name:s,up:b",
Luiz Capitulino4b371562011-11-23 13:11:55 -02001381 .mhandler.cmd_new = qmp_marshal_input_set_link,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001382 },
1383
1384SQMP
1385set_link
1386--------
1387
1388Change the link status of a network adapter.
1389
1390Arguments:
1391
1392- "name": network device name (json-string)
1393- "up": status is up (json-bool)
1394
1395Example:
1396
1397-> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
1398<- { "return": {} }
1399
1400EQMP
1401
1402 {
1403 .name = "getfd",
1404 .args_type = "fdname:s",
1405 .params = "getfd name",
1406 .help = "receive a file descriptor via SCM rights and assign it a name",
Corey Bryant208c9d12012-06-22 14:36:09 -04001407 .mhandler.cmd_new = qmp_marshal_input_getfd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001408 },
1409
1410SQMP
1411getfd
1412-----
1413
1414Receive a file descriptor via SCM rights and assign it a name.
1415
1416Arguments:
1417
1418- "fdname": file descriptor name (json-string)
1419
1420Example:
1421
1422-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
1423<- { "return": {} }
1424
Corey Bryant208c9d12012-06-22 14:36:09 -04001425Notes:
1426
1427(1) If the name specified by the "fdname" argument already exists,
1428 the file descriptor assigned to it will be closed and replaced
1429 by the received file descriptor.
1430(2) The 'closefd' command can be used to explicitly close the file
1431 descriptor when it is no longer needed.
1432
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001433EQMP
1434
1435 {
1436 .name = "closefd",
1437 .args_type = "fdname:s",
1438 .params = "closefd name",
1439 .help = "close a file descriptor previously passed via SCM rights",
Corey Bryant208c9d12012-06-22 14:36:09 -04001440 .mhandler.cmd_new = qmp_marshal_input_closefd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001441 },
1442
1443SQMP
1444closefd
1445-------
1446
1447Close a file descriptor previously passed via SCM rights.
1448
1449Arguments:
1450
1451- "fdname": file descriptor name (json-string)
1452
1453Example:
1454
1455-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
1456<- { "return": {} }
1457
1458EQMP
1459
Corey Bryantba1c0482012-08-14 16:43:43 -04001460 {
1461 .name = "add-fd",
1462 .args_type = "fdset-id:i?,opaque:s?",
1463 .params = "add-fd fdset-id opaque",
1464 .help = "Add a file descriptor, that was passed via SCM rights, to an fd set",
1465 .mhandler.cmd_new = qmp_marshal_input_add_fd,
1466 },
1467
1468SQMP
1469add-fd
1470-------
1471
1472Add a file descriptor, that was passed via SCM rights, to an fd set.
1473
1474Arguments:
1475
1476- "fdset-id": The ID of the fd set to add the file descriptor to.
1477 (json-int, optional)
1478- "opaque": A free-form string that can be used to describe the fd.
1479 (json-string, optional)
1480
1481Return a json-object with the following information:
1482
1483- "fdset-id": The ID of the fd set that the fd was added to. (json-int)
1484- "fd": The file descriptor that was received via SCM rights and added to the
1485 fd set. (json-int)
1486
1487Example:
1488
1489-> { "execute": "add-fd", "arguments": { "fdset-id": 1 } }
1490<- { "return": { "fdset-id": 1, "fd": 3 } }
1491
1492Notes:
1493
1494(1) The list of fd sets is shared by all monitor connections.
1495(2) If "fdset-id" is not specified, a new fd set will be created.
1496
1497EQMP
1498
1499 {
1500 .name = "remove-fd",
1501 .args_type = "fdset-id:i,fd:i?",
1502 .params = "remove-fd fdset-id fd",
1503 .help = "Remove a file descriptor from an fd set",
1504 .mhandler.cmd_new = qmp_marshal_input_remove_fd,
1505 },
1506
1507SQMP
1508remove-fd
1509---------
1510
1511Remove a file descriptor from an fd set.
1512
1513Arguments:
1514
1515- "fdset-id": The ID of the fd set that the file descriptor belongs to.
1516 (json-int)
1517- "fd": The file descriptor that is to be removed. (json-int, optional)
1518
1519Example:
1520
1521-> { "execute": "remove-fd", "arguments": { "fdset-id": 1, "fd": 3 } }
1522<- { "return": {} }
1523
1524Notes:
1525
1526(1) The list of fd sets is shared by all monitor connections.
1527(2) If "fd" is not specified, all file descriptors in "fdset-id" will be
1528 removed.
1529
1530EQMP
1531
1532 {
1533 .name = "query-fdsets",
1534 .args_type = "",
1535 .help = "Return information describing all fd sets",
1536 .mhandler.cmd_new = qmp_marshal_input_query_fdsets,
1537 },
1538
1539SQMP
1540query-fdsets
1541-------------
1542
1543Return information describing all fd sets.
1544
1545Arguments: None
1546
1547Example:
1548
1549-> { "execute": "query-fdsets" }
1550<- { "return": [
1551 {
1552 "fds": [
1553 {
1554 "fd": 30,
1555 "opaque": "rdonly:/path/to/file"
1556 },
1557 {
1558 "fd": 24,
1559 "opaque": "rdwr:/path/to/file"
1560 }
1561 ],
1562 "fdset-id": 1
1563 },
1564 {
1565 "fds": [
1566 {
1567 "fd": 28
1568 },
1569 {
1570 "fd": 29
1571 }
1572 ],
1573 "fdset-id": 0
1574 }
1575 ]
1576 }
1577
1578Note: The list of fd sets is shared by all monitor connections.
1579
1580EQMP
1581
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001582 {
1583 .name = "block_passwd",
Benoît Canet12d3ba82014-01-23 21:31:35 +01001584 .args_type = "device:s?,node-name:s?,password:s",
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -02001585 .mhandler.cmd_new = qmp_marshal_input_block_passwd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001586 },
1587
1588SQMP
1589block_passwd
1590------------
1591
1592Set the password of encrypted block devices.
1593
1594Arguments:
1595
1596- "device": device name (json-string)
Benoît Canet12d3ba82014-01-23 21:31:35 +01001597- "node-name": name in the block driver state graph (json-string)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001598- "password": password (json-string)
1599
1600Example:
1601
1602-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
1603 "password": "12345" } }
1604<- { "return": {} }
1605
1606EQMP
1607
1608 {
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001609 .name = "block_set_io_throttle",
Benoît Canet2024c1d2013-09-02 14:14:41 +02001610 .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 -02001611 .mhandler.cmd_new = qmp_marshal_input_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001612 },
1613
1614SQMP
1615block_set_io_throttle
1616------------
1617
1618Change I/O throttle limits for a block drive.
1619
1620Arguments:
1621
1622- "device": device name (json-string)
Eric Blake586b5462013-08-30 14:44:11 -06001623- "bps": total throughput limit in bytes per second (json-int)
1624- "bps_rd": read throughput limit in bytes per second (json-int)
1625- "bps_wr": write throughput limit in bytes per second (json-int)
1626- "iops": total I/O operations per second (json-int)
1627- "iops_rd": read I/O operations per second (json-int)
1628- "iops_wr": write I/O operations per second (json-int)
Benoît Canet3e9fab62013-09-02 14:14:40 +02001629- "bps_max": total max in bytes (json-int)
1630- "bps_rd_max": read max in bytes (json-int)
1631- "bps_wr_max": write max in bytes (json-int)
1632- "iops_max": total I/O operations max (json-int)
1633- "iops_rd_max": read I/O operations max (json-int)
1634- "iops_wr_max": write I/O operations max (json-int)
Benoît Canet2024c1d2013-09-02 14:14:41 +02001635- "iops_size": I/O size in bytes when limiting (json-int)
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001636
1637Example:
1638
1639-> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
Eric Blake586b5462013-08-30 14:44:11 -06001640 "bps": 1000000,
1641 "bps_rd": 0,
1642 "bps_wr": 0,
1643 "iops": 0,
1644 "iops_rd": 0,
Benoît Canet3e9fab62013-09-02 14:14:40 +02001645 "iops_wr": 0,
1646 "bps_max": 8000000,
1647 "bps_rd_max": 0,
1648 "bps_wr_max": 0,
1649 "iops_max": 0,
1650 "iops_rd_max": 0,
Benoît Canet2024c1d2013-09-02 14:14:41 +02001651 "iops_wr_max": 0,
1652 "iops_size": 0 } }
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001653<- { "return": {} }
1654
1655EQMP
1656
1657 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001658 .name = "set_password",
1659 .args_type = "protocol:s,password:s,connected:s?",
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001660 .mhandler.cmd_new = qmp_marshal_input_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001661 },
1662
1663SQMP
1664set_password
1665------------
1666
1667Set the password for vnc/spice protocols.
1668
1669Arguments:
1670
1671- "protocol": protocol name (json-string)
1672- "password": password (json-string)
1673- "connected": [ keep | disconnect | fail ] (josn-string, optional)
1674
1675Example:
1676
1677-> { "execute": "set_password", "arguments": { "protocol": "vnc",
1678 "password": "secret" } }
1679<- { "return": {} }
1680
1681EQMP
1682
1683 {
1684 .name = "expire_password",
1685 .args_type = "protocol:s,time:s",
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001686 .mhandler.cmd_new = qmp_marshal_input_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001687 },
1688
1689SQMP
1690expire_password
1691---------------
1692
1693Set the password expire time for vnc/spice protocols.
1694
1695Arguments:
1696
1697- "protocol": protocol name (json-string)
1698- "time": [ now | never | +secs | secs ] (json-string)
1699
1700Example:
1701
1702-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
1703 "time": "+60" } }
1704<- { "return": {} }
1705
1706EQMP
1707
1708 {
Daniel P. Berrange13661082011-06-23 13:31:42 +01001709 .name = "add_client",
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +00001710 .args_type = "protocol:s,fdname:s,skipauth:b?,tls:b?",
Luiz Capitulinob224e5e2012-09-13 16:52:20 -03001711 .mhandler.cmd_new = qmp_marshal_input_add_client,
Daniel P. Berrange13661082011-06-23 13:31:42 +01001712 },
1713
1714SQMP
1715add_client
1716----------
1717
1718Add a graphics client
1719
1720Arguments:
1721
1722- "protocol": protocol name (json-string)
1723- "fdname": file descriptor name (json-string)
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +00001724- "skipauth": whether to skip authentication (json-bool, optional)
1725- "tls": whether to perform TLS (json-bool, optional)
Daniel P. Berrange13661082011-06-23 13:31:42 +01001726
1727Example:
1728
1729-> { "execute": "add_client", "arguments": { "protocol": "vnc",
1730 "fdname": "myclient" } }
1731<- { "return": {} }
1732
1733EQMP
1734 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001735 .name = "qmp_capabilities",
1736 .args_type = "",
1737 .params = "",
1738 .help = "enable QMP capabilities",
1739 .user_print = monitor_user_noop,
1740 .mhandler.cmd_new = do_qmp_capabilities,
1741 },
1742
1743SQMP
1744qmp_capabilities
1745----------------
1746
1747Enable QMP capabilities.
1748
1749Arguments: None.
1750
1751Example:
1752
1753-> { "execute": "qmp_capabilities" }
1754<- { "return": {} }
1755
1756Note: This command must be issued before issuing any other command.
1757
Luiz Capitulino0268d972010-10-22 10:08:02 -02001758EQMP
1759
1760 {
1761 .name = "human-monitor-command",
1762 .args_type = "command-line:s,cpu-index:i?",
Luiz Capitulinod51a67b2011-11-25 17:52:45 -02001763 .mhandler.cmd_new = qmp_marshal_input_human_monitor_command,
Luiz Capitulino0268d972010-10-22 10:08:02 -02001764 },
1765
1766SQMP
1767human-monitor-command
1768---------------------
1769
1770Execute a Human Monitor command.
1771
1772Arguments:
1773
1774- command-line: the command name and its arguments, just like the
1775 Human Monitor's shell (json-string)
1776- cpu-index: select the CPU number to be used by commands which access CPU
1777 data, like 'info registers'. The Monitor selects CPU 0 if this
1778 argument is not provided (json-int, optional)
1779
1780Example:
1781
1782-> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1783<- { "return": "kvm support: enabled\r\n" }
1784
1785Notes:
1786
1787(1) The Human Monitor is NOT an stable interface, this means that command
1788 names, arguments and responses can change or be removed at ANY time.
1789 Applications that rely on long term stability guarantees should NOT
1790 use this command
1791
1792(2) Limitations:
1793
1794 o This command is stateless, this means that commands that depend
1795 on state information (such as getfd) might not work
1796
1797 o Commands that prompt the user for data (eg. 'cont' when the block
1798 device is encrypted) don't currently work
1799
Luiz Capitulino82a56f02010-09-13 12:26:00 -030018003. Query Commands
1801=================
1802
1803HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1804HXCOMM this! We will possibly move query commands definitions inside those
1805HXCOMM sections, just like regular commands.
1806
1807EQMP
1808
1809SQMP
1810query-version
1811-------------
1812
1813Show QEMU version.
1814
1815Return a json-object with the following information:
1816
1817- "qemu": A json-object containing three integer values:
1818 - "major": QEMU's major version (json-int)
1819 - "minor": QEMU's minor version (json-int)
1820 - "micro": QEMU's micro version (json-int)
1821- "package": package's version (json-string)
1822
1823Example:
1824
1825-> { "execute": "query-version" }
1826<- {
1827 "return":{
1828 "qemu":{
1829 "major":0,
1830 "minor":11,
1831 "micro":5
1832 },
1833 "package":""
1834 }
1835 }
1836
1837EQMP
1838
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03001839 {
1840 .name = "query-version",
1841 .args_type = "",
1842 .mhandler.cmd_new = qmp_marshal_input_query_version,
1843 },
1844
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001845SQMP
1846query-commands
1847--------------
1848
1849List QMP available commands.
1850
1851Each command is represented by a json-object, the returned value is a json-array
1852of all commands.
1853
1854Each json-object contain:
1855
1856- "name": command's name (json-string)
1857
1858Example:
1859
1860-> { "execute": "query-commands" }
1861<- {
1862 "return":[
1863 {
1864 "name":"query-balloon"
1865 },
1866 {
1867 "name":"system_powerdown"
1868 }
1869 ]
1870 }
1871
1872Note: This example has been shortened as the real response is too long.
1873
1874EQMP
1875
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001876 {
1877 .name = "query-commands",
1878 .args_type = "",
1879 .mhandler.cmd_new = qmp_marshal_input_query_commands,
1880 },
1881
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001882SQMP
Daniel P. Berrange48608532012-05-21 17:59:51 +01001883query-events
1884--------------
1885
1886List QMP available events.
1887
1888Each event is represented by a json-object, the returned value is a json-array
1889of all events.
1890
1891Each json-object contains:
1892
1893- "name": event's name (json-string)
1894
1895Example:
1896
1897-> { "execute": "query-events" }
1898<- {
1899 "return":[
1900 {
1901 "name":"SHUTDOWN"
1902 },
1903 {
1904 "name":"RESET"
1905 }
1906 ]
1907 }
1908
1909Note: This example has been shortened as the real response is too long.
1910
1911EQMP
1912
1913 {
1914 .name = "query-events",
1915 .args_type = "",
1916 .mhandler.cmd_new = qmp_marshal_input_query_events,
1917 },
1918
1919SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001920query-chardev
1921-------------
1922
1923Each device is represented by a json-object. The returned value is a json-array
1924of all devices.
1925
1926Each json-object contain the following:
1927
1928- "label": device's label (json-string)
1929- "filename": device's file (json-string)
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02001930- "frontend-open": open/closed state of the frontend device attached to this
1931 backend (json-bool)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001932
1933Example:
1934
1935-> { "execute": "query-chardev" }
1936<- {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02001937 "return": [
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001938 {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02001939 "label": "charchannel0",
1940 "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.agent,server",
1941 "frontend-open": false
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001942 },
1943 {
Laszlo Ersek32a97ea2014-06-26 17:50:03 +02001944 "label": "charmonitor",
1945 "filename": "unix:/var/lib/libvirt/qemu/seabios.rhel6.monitor,server",
1946 "frontend-open": true
1947 },
1948 {
1949 "label": "charserial0",
1950 "filename": "pty:/dev/pts/2",
1951 "frontend-open": true
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001952 }
1953 ]
1954 }
1955
1956EQMP
1957
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03001958 {
1959 .name = "query-chardev",
1960 .args_type = "",
1961 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
1962 },
1963
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001964SQMP
Martin Kletzander77d1c3c2014-02-01 12:52:42 +01001965query-chardev-backends
1966-------------
1967
1968List available character device backends.
1969
1970Each backend is represented by a json-object, the returned value is a json-array
1971of all backends.
1972
1973Each json-object contains:
1974
1975- "name": backend name (json-string)
1976
1977Example:
1978
1979-> { "execute": "query-chardev-backends" }
1980<- {
1981 "return":[
1982 {
1983 "name":"udp"
1984 },
1985 {
1986 "name":"tcp"
1987 },
1988 {
1989 "name":"unix"
1990 },
1991 {
1992 "name":"spiceport"
1993 }
1994 ]
1995 }
1996
1997EQMP
1998
1999 {
2000 .name = "query-chardev-backends",
2001 .args_type = "",
2002 .mhandler.cmd_new = qmp_marshal_input_query_chardev_backends,
2003 },
2004
2005SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002006query-block
2007-----------
2008
2009Show the block devices.
2010
2011Each block device information is stored in a json-object and the returned value
2012is a json-array of all devices.
2013
2014Each json-object contain the following:
2015
2016- "device": device name (json-string)
2017- "type": device type (json-string)
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002018 - deprecated, retained for backward compatibility
2019 - Possible values: "unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002020- "removable": true if the device is removable, false otherwise (json-bool)
2021- "locked": true if the device is locked, false otherwise (json-bool)
Michal Privoznik99f42802013-01-29 17:58:41 +01002022- "tray_open": only present if removable, true if the device has a tray,
Markus Armbrustere4def802011-09-06 18:58:53 +02002023 and it is open (json-bool)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002024- "inserted": only present if the device is inserted, it is a json-object
2025 containing the following:
2026 - "file": device file name (json-string)
2027 - "ro": true if read-only, false otherwise (json-bool)
2028 - "drv": driver format name (json-string)
2029 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
2030 "file", "file", "ftp", "ftps", "host_cdrom",
2031 "host_device", "host_floppy", "http", "https",
2032 "nbd", "parallels", "qcow", "qcow2", "raw",
2033 "tftp", "vdi", "vmdk", "vpc", "vvfat"
2034 - "backing_file": backing file name (json-string, optional)
Benoît Canet2e3e3312012-08-02 10:22:48 +02002035 - "backing_file_depth": number of files in the backing file chain (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002036 - "encrypted": true if encrypted, false otherwise (json-bool)
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002037 - "bps": limit total bytes per second (json-int)
2038 - "bps_rd": limit read bytes per second (json-int)
2039 - "bps_wr": limit write bytes per second (json-int)
2040 - "iops": limit total I/O operations per second (json-int)
2041 - "iops_rd": limit read operations per second (json-int)
2042 - "iops_wr": limit write operations per second (json-int)
Benoît Canet3e9fab62013-09-02 14:14:40 +02002043 - "bps_max": total max in bytes (json-int)
2044 - "bps_rd_max": read max in bytes (json-int)
2045 - "bps_wr_max": write max in bytes (json-int)
2046 - "iops_max": total I/O operations max (json-int)
2047 - "iops_rd_max": read I/O operations max (json-int)
2048 - "iops_wr_max": write I/O operations max (json-int)
Benoît Canet2024c1d2013-09-02 14:14:41 +02002049 - "iops_size": I/O size when limiting by iops (json-int)
Peter Lieven465bee12014-05-18 00:58:19 +02002050 - "detect_zeroes": detect and optimize zero writing (json-string)
2051 - Possible values: "off", "on", "unmap"
Wenchao Xia553a7e82013-06-06 12:27:59 +08002052 - "image": the detail of the image, it is a json-object containing
2053 the following:
2054 - "filename": image file name (json-string)
2055 - "format": image format (json-string)
2056 - "virtual-size": image capacity in bytes (json-int)
2057 - "dirty-flag": true if image is not cleanly closed, not present
2058 means clean (json-bool, optional)
2059 - "actual-size": actual size on disk in bytes of the image, not
2060 present when image does not support thin
2061 provision (json-int, optional)
2062 - "cluster-size": size of a cluster in bytes, not present if image
2063 format does not support it (json-int, optional)
2064 - "encrypted": true if the image is encrypted, not present means
2065 false or the image format does not support
2066 encryption (json-bool, optional)
2067 - "backing_file": backing file name, not present means no backing
2068 file is used or the image format does not
2069 support backing file chain
2070 (json-string, optional)
2071 - "full-backing-filename": full path of the backing file, not
2072 present if it equals backing_file or no
2073 backing file is used
2074 (json-string, optional)
2075 - "backing-filename-format": the format of the backing file, not
2076 present means unknown or no backing
2077 file (json-string, optional)
2078 - "snapshots": the internal snapshot info, it is an optional list
2079 of json-object containing the following:
2080 - "id": unique snapshot id (json-string)
2081 - "name": snapshot name (json-string)
2082 - "vm-state-size": size of the VM state in bytes (json-int)
2083 - "date-sec": UTC date of the snapshot in seconds (json-int)
2084 - "date-nsec": fractional part in nanoseconds to be used with
Eric Blake586b5462013-08-30 14:44:11 -06002085 date-sec (json-int)
Wenchao Xia553a7e82013-06-06 12:27:59 +08002086 - "vm-clock-sec": VM clock relative to boot in seconds
2087 (json-int)
2088 - "vm-clock-nsec": fractional part in nanoseconds to be used
2089 with vm-clock-sec (json-int)
2090 - "backing-image": the detail of the backing image, it is an
2091 optional json-object only present when a
2092 backing image present for this image
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002093
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002094- "io-status": I/O operation status, only present if the device supports it
2095 and the VM is configured to stop on errors. It's always reset
2096 to "ok" when the "cont" command is issued (json_string, optional)
2097 - Possible values: "ok", "failed", "nospace"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002098
2099Example:
2100
2101-> { "execute": "query-block" }
2102<- {
2103 "return":[
2104 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002105 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002106 "device":"ide0-hd0",
2107 "locked":false,
2108 "removable":false,
2109 "inserted":{
2110 "ro":false,
2111 "drv":"qcow2",
2112 "encrypted":false,
Wenchao Xia553a7e82013-06-06 12:27:59 +08002113 "file":"disks/test.qcow2",
2114 "backing_file_depth":1,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002115 "bps":1000000,
2116 "bps_rd":0,
2117 "bps_wr":0,
2118 "iops":1000000,
2119 "iops_rd":0,
2120 "iops_wr":0,
Benoît Canet3e9fab62013-09-02 14:14:40 +02002121 "bps_max": 8000000,
2122 "bps_rd_max": 0,
2123 "bps_wr_max": 0,
2124 "iops_max": 0,
2125 "iops_rd_max": 0,
2126 "iops_wr_max": 0,
Benoît Canet2024c1d2013-09-02 14:14:41 +02002127 "iops_size": 0,
Peter Lieven465bee12014-05-18 00:58:19 +02002128 "detect_zeroes": "on",
Wenchao Xia553a7e82013-06-06 12:27:59 +08002129 "image":{
2130 "filename":"disks/test.qcow2",
2131 "format":"qcow2",
2132 "virtual-size":2048000,
2133 "backing_file":"base.qcow2",
2134 "full-backing-filename":"disks/base.qcow2",
2135 "backing-filename-format:"qcow2",
2136 "snapshots":[
2137 {
2138 "id": "1",
2139 "name": "snapshot1",
2140 "vm-state-size": 0,
2141 "date-sec": 10000200,
2142 "date-nsec": 12,
2143 "vm-clock-sec": 206,
2144 "vm-clock-nsec": 30
2145 }
2146 ],
2147 "backing-image":{
2148 "filename":"disks/base.qcow2",
2149 "format":"qcow2",
2150 "virtual-size":2048000
2151 }
2152 }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002153 },
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002154 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002155 },
2156 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002157 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002158 "device":"ide1-cd0",
2159 "locked":false,
2160 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002161 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002162 },
2163 {
2164 "device":"floppy0",
2165 "locked":false,
2166 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002167 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002168 },
2169 {
2170 "device":"sd0",
2171 "locked":false,
2172 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02002173 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002174 }
2175 ]
2176 }
2177
2178EQMP
2179
Luiz Capitulinob2023812011-09-21 17:16:47 -03002180 {
2181 .name = "query-block",
2182 .args_type = "",
2183 .mhandler.cmd_new = qmp_marshal_input_query_block,
2184 },
2185
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002186SQMP
2187query-blockstats
2188----------------
2189
2190Show block device statistics.
2191
2192Each device statistic information is stored in a json-object and the returned
2193value is a json-array of all devices.
2194
2195Each json-object contain the following:
2196
2197- "device": device name (json-string)
2198- "stats": A json-object with the statistics information, it contains:
2199 - "rd_bytes": bytes read (json-int)
2200 - "wr_bytes": bytes written (json-int)
2201 - "rd_operations": read operations (json-int)
2202 - "wr_operations": write operations (json-int)
Christoph Hellwige8045d62011-08-22 00:25:58 +02002203 - "flush_operations": cache flush operations (json-int)
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002204 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
2205 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
2206 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002207 - "wr_highest_offset": Highest offset of a sector written since the
2208 BlockDriverState has been opened (json-int)
2209- "parent": Contains recursively the statistics of the underlying
2210 protocol (e.g. the host file for a qcow2 image). If there is
2211 no underlying protocol, this field is omitted
2212 (json-object, optional)
2213
2214Example:
2215
2216-> { "execute": "query-blockstats" }
2217<- {
2218 "return":[
2219 {
2220 "device":"ide0-hd0",
2221 "parent":{
2222 "stats":{
2223 "wr_highest_offset":3686448128,
2224 "wr_bytes":9786368,
2225 "wr_operations":751,
2226 "rd_bytes":122567168,
2227 "rd_operations":36772
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002228 "wr_total_times_ns":313253456
2229 "rd_total_times_ns":3465673657
2230 "flush_total_times_ns":49653
Christoph Hellwige8045d62011-08-22 00:25:58 +02002231 "flush_operations":61,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002232 }
2233 },
2234 "stats":{
2235 "wr_highest_offset":2821110784,
2236 "wr_bytes":9786368,
2237 "wr_operations":692,
2238 "rd_bytes":122739200,
2239 "rd_operations":36604
Christoph Hellwige8045d62011-08-22 00:25:58 +02002240 "flush_operations":51,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002241 "wr_total_times_ns":313253456
2242 "rd_total_times_ns":3465673657
2243 "flush_total_times_ns":49653
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002244 }
2245 },
2246 {
2247 "device":"ide1-cd0",
2248 "stats":{
2249 "wr_highest_offset":0,
2250 "wr_bytes":0,
2251 "wr_operations":0,
2252 "rd_bytes":0,
2253 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002254 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002255 "wr_total_times_ns":0
2256 "rd_total_times_ns":0
2257 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002258 }
2259 },
2260 {
2261 "device":"floppy0",
2262 "stats":{
2263 "wr_highest_offset":0,
2264 "wr_bytes":0,
2265 "wr_operations":0,
2266 "rd_bytes":0,
2267 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002268 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002269 "wr_total_times_ns":0
2270 "rd_total_times_ns":0
2271 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002272 }
2273 },
2274 {
2275 "device":"sd0",
2276 "stats":{
2277 "wr_highest_offset":0,
2278 "wr_bytes":0,
2279 "wr_operations":0,
2280 "rd_bytes":0,
2281 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02002282 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02002283 "wr_total_times_ns":0
2284 "rd_total_times_ns":0
2285 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002286 }
2287 }
2288 ]
2289 }
2290
2291EQMP
2292
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002293 {
2294 .name = "query-blockstats",
2295 .args_type = "",
2296 .mhandler.cmd_new = qmp_marshal_input_query_blockstats,
2297 },
2298
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002299SQMP
2300query-cpus
2301----------
2302
2303Show CPU information.
2304
2305Return a json-array. Each CPU is represented by a json-object, which contains:
2306
2307- "CPU": CPU index (json-int)
2308- "current": true if this is the current CPU, false otherwise (json-bool)
2309- "halted": true if the cpu is halted, false otherwise (json-bool)
2310- Current program counter. The key's name depends on the architecture:
2311 "pc": i386/x86_64 (json-int)
2312 "nip": PPC (json-int)
2313 "pc" and "npc": sparc (json-int)
2314 "PC": mips (json-int)
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002315- "thread_id": ID of the underlying host thread (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002316
2317Example:
2318
2319-> { "execute": "query-cpus" }
2320<- {
2321 "return":[
2322 {
2323 "CPU":0,
2324 "current":true,
2325 "halted":false,
2326 "pc":3227107138
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002327 "thread_id":3134
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002328 },
2329 {
2330 "CPU":1,
2331 "current":false,
2332 "halted":true,
2333 "pc":7108165
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01002334 "thread_id":3135
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002335 }
2336 ]
2337 }
2338
2339EQMP
2340
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03002341 {
2342 .name = "query-cpus",
2343 .args_type = "",
2344 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
2345 },
2346
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002347SQMP
Stefan Hajnoczidc3dd0d2014-02-27 11:48:42 +01002348query-iothreads
2349---------------
2350
2351Returns a list of information about each iothread.
2352
2353Note this list excludes the QEMU main loop thread, which is not declared
2354using the -object iothread command-line option. It is always the main thread
2355of the process.
2356
2357Return a json-array. Each iothread is represented by a json-object, which contains:
2358
2359- "id": name of iothread (json-str)
2360- "thread-id": ID of the underlying host thread (json-int)
2361
2362Example:
2363
2364-> { "execute": "query-iothreads" }
2365<- {
2366 "return":[
2367 {
2368 "id":"iothread0",
2369 "thread-id":3134
2370 },
2371 {
2372 "id":"iothread1",
2373 "thread-id":3135
2374 }
2375 ]
2376 }
2377
2378EQMP
2379
2380 {
2381 .name = "query-iothreads",
2382 .args_type = "",
2383 .mhandler.cmd_new = qmp_marshal_input_query_iothreads,
2384 },
2385
2386SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002387query-pci
2388---------
2389
2390PCI buses and devices information.
2391
2392The returned value is a json-array of all buses. Each bus is represented by
2393a json-object, which has a key with a json-array of all PCI devices attached
2394to it. Each device is represented by a json-object.
2395
2396The bus json-object contains the following:
2397
2398- "bus": bus number (json-int)
2399- "devices": a json-array of json-objects, each json-object represents a
2400 PCI device
2401
2402The PCI device json-object contains the following:
2403
2404- "bus": identical to the parent's bus number (json-int)
2405- "slot": slot number (json-int)
2406- "function": function number (json-int)
2407- "class_info": a json-object containing:
2408 - "desc": device class description (json-string, optional)
2409 - "class": device class number (json-int)
2410- "id": a json-object containing:
2411 - "device": device ID (json-int)
2412 - "vendor": vendor ID (json-int)
2413- "irq": device's IRQ if assigned (json-int, optional)
2414- "qdev_id": qdev id string (json-string)
2415- "pci_bridge": It's a json-object, only present if this device is a
2416 PCI bridge, contains:
2417 - "bus": bus number (json-int)
2418 - "secondary": secondary bus number (json-int)
2419 - "subordinate": subordinate bus number (json-int)
2420 - "io_range": I/O memory range information, a json-object with the
2421 following members:
2422 - "base": base address, in bytes (json-int)
2423 - "limit": limit address, in bytes (json-int)
2424 - "memory_range": memory range information, a json-object with the
2425 following members:
2426 - "base": base address, in bytes (json-int)
2427 - "limit": limit address, in bytes (json-int)
2428 - "prefetchable_range": Prefetchable memory range information, a
2429 json-object with the following members:
2430 - "base": base address, in bytes (json-int)
2431 - "limit": limit address, in bytes (json-int)
2432 - "devices": a json-array of PCI devices if there's any attached, each
2433 each element is represented by a json-object, which contains
2434 the same members of the 'PCI device json-object' described
2435 above (optional)
2436- "regions": a json-array of json-objects, each json-object represents a
2437 memory region of this device
2438
2439The memory range json-object contains the following:
2440
2441- "base": base memory address (json-int)
2442- "limit": limit value (json-int)
2443
2444The region json-object can be an I/O region or a memory region, an I/O region
2445json-object contains the following:
2446
2447- "type": "io" (json-string, fixed)
2448- "bar": BAR number (json-int)
2449- "address": memory address (json-int)
2450- "size": memory size (json-int)
2451
2452A memory region json-object contains the following:
2453
2454- "type": "memory" (json-string, fixed)
2455- "bar": BAR number (json-int)
2456- "address": memory address (json-int)
2457- "size": memory size (json-int)
2458- "mem_type_64": true or false (json-bool)
2459- "prefetch": true or false (json-bool)
2460
2461Example:
2462
2463-> { "execute": "query-pci" }
2464<- {
2465 "return":[
2466 {
2467 "bus":0,
2468 "devices":[
2469 {
2470 "bus":0,
2471 "qdev_id":"",
2472 "slot":0,
2473 "class_info":{
2474 "class":1536,
2475 "desc":"Host bridge"
2476 },
2477 "id":{
2478 "device":32902,
2479 "vendor":4663
2480 },
2481 "function":0,
2482 "regions":[
2483
2484 ]
2485 },
2486 {
2487 "bus":0,
2488 "qdev_id":"",
2489 "slot":1,
2490 "class_info":{
2491 "class":1537,
2492 "desc":"ISA bridge"
2493 },
2494 "id":{
2495 "device":32902,
2496 "vendor":28672
2497 },
2498 "function":0,
2499 "regions":[
2500
2501 ]
2502 },
2503 {
2504 "bus":0,
2505 "qdev_id":"",
2506 "slot":1,
2507 "class_info":{
2508 "class":257,
2509 "desc":"IDE controller"
2510 },
2511 "id":{
2512 "device":32902,
2513 "vendor":28688
2514 },
2515 "function":1,
2516 "regions":[
2517 {
2518 "bar":4,
2519 "size":16,
2520 "address":49152,
2521 "type":"io"
2522 }
2523 ]
2524 },
2525 {
2526 "bus":0,
2527 "qdev_id":"",
2528 "slot":2,
2529 "class_info":{
2530 "class":768,
2531 "desc":"VGA controller"
2532 },
2533 "id":{
2534 "device":4115,
2535 "vendor":184
2536 },
2537 "function":0,
2538 "regions":[
2539 {
2540 "prefetch":true,
2541 "mem_type_64":false,
2542 "bar":0,
2543 "size":33554432,
2544 "address":4026531840,
2545 "type":"memory"
2546 },
2547 {
2548 "prefetch":false,
2549 "mem_type_64":false,
2550 "bar":1,
2551 "size":4096,
2552 "address":4060086272,
2553 "type":"memory"
2554 },
2555 {
2556 "prefetch":false,
2557 "mem_type_64":false,
2558 "bar":6,
2559 "size":65536,
2560 "address":-1,
2561 "type":"memory"
2562 }
2563 ]
2564 },
2565 {
2566 "bus":0,
2567 "qdev_id":"",
2568 "irq":11,
2569 "slot":4,
2570 "class_info":{
2571 "class":1280,
2572 "desc":"RAM controller"
2573 },
2574 "id":{
2575 "device":6900,
2576 "vendor":4098
2577 },
2578 "function":0,
2579 "regions":[
2580 {
2581 "bar":0,
2582 "size":32,
2583 "address":49280,
2584 "type":"io"
2585 }
2586 ]
2587 }
2588 ]
2589 }
2590 ]
2591 }
2592
2593Note: This example has been shortened as the real response is too long.
2594
2595EQMP
2596
Luiz Capitulino79627472011-10-21 14:15:33 -02002597 {
2598 .name = "query-pci",
2599 .args_type = "",
2600 .mhandler.cmd_new = qmp_marshal_input_query_pci,
2601 },
2602
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002603SQMP
2604query-kvm
2605---------
2606
2607Show KVM information.
2608
2609Return a json-object with the following information:
2610
2611- "enabled": true if KVM support is enabled, false otherwise (json-bool)
2612- "present": true if QEMU has KVM support, false otherwise (json-bool)
2613
2614Example:
2615
2616-> { "execute": "query-kvm" }
2617<- { "return": { "enabled": true, "present": true } }
2618
2619EQMP
2620
Luiz Capitulino292a2602011-09-12 15:10:53 -03002621 {
2622 .name = "query-kvm",
2623 .args_type = "",
2624 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
2625 },
2626
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002627SQMP
2628query-status
2629------------
2630
2631Return a json-object with the following information:
2632
2633- "running": true if the VM is running, or false if it is paused (json-bool)
2634- "singlestep": true if the VM is in single step mode,
2635 false otherwise (json-bool)
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03002636- "status": one of the following values (json-string)
2637 "debug" - QEMU is running on a debugger
2638 "inmigrate" - guest is paused waiting for an incoming migration
2639 "internal-error" - An internal error that prevents further guest
2640 execution has occurred
2641 "io-error" - the last IOP has failed and the device is configured
2642 to pause on I/O errors
2643 "paused" - guest has been paused via the 'stop' command
2644 "postmigrate" - guest is paused following a successful 'migrate'
2645 "prelaunch" - QEMU was started with -S and guest has not started
2646 "finish-migrate" - guest is paused to finish the migration process
2647 "restore-vm" - guest is paused to restore VM state
2648 "running" - guest is actively running
2649 "save-vm" - guest is paused to save the VM state
2650 "shutdown" - guest is shut down (and -no-shutdown is in use)
2651 "watchdog" - the watchdog action is configured to pause and
2652 has been triggered
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002653
2654Example:
2655
2656-> { "execute": "query-status" }
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03002657<- { "return": { "running": true, "singlestep": false, "status": "running" } }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002658
2659EQMP
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03002660
2661 {
2662 .name = "query-status",
2663 .args_type = "",
2664 .mhandler.cmd_new = qmp_marshal_input_query_status,
2665 },
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002666
2667SQMP
2668query-mice
2669----------
2670
2671Show VM mice information.
2672
2673Each mouse is represented by a json-object, the returned value is a json-array
2674of all mice.
2675
2676The mouse json-object contains the following:
2677
2678- "name": mouse's name (json-string)
2679- "index": mouse's index (json-int)
2680- "current": true if this mouse is receiving events, false otherwise (json-bool)
2681- "absolute": true if the mouse generates absolute input events (json-bool)
2682
2683Example:
2684
2685-> { "execute": "query-mice" }
2686<- {
2687 "return":[
2688 {
2689 "name":"QEMU Microsoft Mouse",
2690 "index":0,
2691 "current":false,
2692 "absolute":false
2693 },
2694 {
2695 "name":"QEMU PS/2 Mouse",
2696 "index":1,
2697 "current":true,
2698 "absolute":true
2699 }
2700 ]
2701 }
2702
2703EQMP
2704
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03002705 {
2706 .name = "query-mice",
2707 .args_type = "",
2708 .mhandler.cmd_new = qmp_marshal_input_query_mice,
2709 },
2710
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002711SQMP
2712query-vnc
2713---------
2714
2715Show VNC server information.
2716
2717Return a json-object with server information. Connected clients are returned
2718as a json-array of json-objects.
2719
2720The main json-object contains the following:
2721
2722- "enabled": true or false (json-bool)
2723- "host": server's IP address (json-string)
2724- "family": address family (json-string)
2725 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2726- "service": server's port number (json-string)
2727- "auth": authentication method (json-string)
2728 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
2729 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
2730 "vencrypt+plain", "vencrypt+tls+none",
2731 "vencrypt+tls+plain", "vencrypt+tls+sasl",
2732 "vencrypt+tls+vnc", "vencrypt+x509+none",
2733 "vencrypt+x509+plain", "vencrypt+x509+sasl",
2734 "vencrypt+x509+vnc", "vnc"
2735- "clients": a json-array of all connected clients
2736
2737Clients are described by a json-object, each one contain the following:
2738
2739- "host": client's IP address (json-string)
2740- "family": address family (json-string)
2741 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2742- "service": client's port number (json-string)
2743- "x509_dname": TLS dname (json-string, optional)
2744- "sasl_username": SASL username (json-string, optional)
2745
2746Example:
2747
2748-> { "execute": "query-vnc" }
2749<- {
2750 "return":{
2751 "enabled":true,
2752 "host":"0.0.0.0",
2753 "service":"50402",
2754 "auth":"vnc",
2755 "family":"ipv4",
2756 "clients":[
2757 {
2758 "host":"127.0.0.1",
2759 "service":"50401",
2760 "family":"ipv4"
2761 }
2762 ]
2763 }
2764 }
2765
2766EQMP
2767
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02002768 {
2769 .name = "query-vnc",
2770 .args_type = "",
2771 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
2772 },
2773
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002774SQMP
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002775query-spice
2776-----------
2777
2778Show SPICE server information.
2779
2780Return a json-object with server information. Connected clients are returned
2781as a json-array of json-objects.
2782
2783The main json-object contains the following:
2784
2785- "enabled": true or false (json-bool)
2786- "host": server's IP address (json-string)
2787- "port": server's port number (json-int, optional)
2788- "tls-port": server's port number (json-int, optional)
2789- "auth": authentication method (json-string)
2790 - Possible values: "none", "spice"
2791- "channels": a json-array of all active channels clients
2792
2793Channels are described by a json-object, each one contain the following:
2794
2795- "host": client's IP address (json-string)
2796- "family": address family (json-string)
2797 - Possible values: "ipv4", "ipv6", "unix", "unknown"
2798- "port": client's port number (json-string)
2799- "connection-id": spice connection id. All channels with the same id
2800 belong to the same spice session (json-int)
2801- "channel-type": channel type. "1" is the main control channel, filter for
2802 this one if you want track spice sessions only (json-int)
2803- "channel-id": channel id. Usually "0", might be different needed when
2804 multiple channels of the same type exist, such as multiple
2805 display channels in a multihead setup (json-int)
2806- "tls": whevener the channel is encrypted (json-bool)
2807
2808Example:
2809
2810-> { "execute": "query-spice" }
2811<- {
2812 "return": {
2813 "enabled": true,
2814 "auth": "spice",
2815 "port": 5920,
2816 "tls-port": 5921,
2817 "host": "0.0.0.0",
2818 "channels": [
2819 {
2820 "port": "54924",
2821 "family": "ipv4",
2822 "channel-type": 1,
2823 "connection-id": 1804289383,
2824 "host": "127.0.0.1",
2825 "channel-id": 0,
2826 "tls": true
2827 },
2828 {
2829 "port": "36710",
2830 "family": "ipv4",
2831 "channel-type": 4,
2832 "connection-id": 1804289383,
2833 "host": "127.0.0.1",
2834 "channel-id": 0,
2835 "tls": false
2836 },
2837 [ ... more channels follow ... ]
2838 ]
2839 }
2840 }
2841
2842EQMP
2843
Luiz Capitulinod1f29642011-10-20 17:01:33 -02002844#if defined(CONFIG_SPICE)
2845 {
2846 .name = "query-spice",
2847 .args_type = "",
2848 .mhandler.cmd_new = qmp_marshal_input_query_spice,
2849 },
2850#endif
2851
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01002852SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002853query-name
2854----------
2855
2856Show VM name.
2857
2858Return a json-object with the following information:
2859
2860- "name": VM's name (json-string, optional)
2861
2862Example:
2863
2864-> { "execute": "query-name" }
2865<- { "return": { "name": "qemu-name" } }
2866
2867EQMP
2868
Anthony Liguori48a32be2011-09-02 12:34:48 -05002869 {
2870 .name = "query-name",
2871 .args_type = "",
2872 .mhandler.cmd_new = qmp_marshal_input_query_name,
2873 },
2874
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002875SQMP
2876query-uuid
2877----------
2878
2879Show VM UUID.
2880
2881Return a json-object with the following information:
2882
2883- "UUID": Universally Unique Identifier (json-string)
2884
2885Example:
2886
2887-> { "execute": "query-uuid" }
2888<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
2889
2890EQMP
2891
Luiz Capitulinoefab7672011-09-13 17:16:25 -03002892 {
2893 .name = "query-uuid",
2894 .args_type = "",
2895 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
2896 },
2897
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002898SQMP
Amos Kong1f8f9872013-04-25 17:50:35 +08002899query-command-line-options
2900--------------------------
2901
2902Show command line option schema.
2903
2904Return a json-array of command line option schema for all options (or for
2905the given option), returning an error if the given option doesn't exist.
2906
2907Each array entry contains the following:
2908
2909- "option": option name (json-string)
2910- "parameters": a json-array describes all parameters of the option:
2911 - "name": parameter name (json-string)
2912 - "type": parameter type (one of 'string', 'boolean', 'number',
2913 or 'size')
2914 - "help": human readable description of the parameter
2915 (json-string, optional)
Chunyan Liue36af942014-06-05 17:20:43 +08002916 - "default": default value string for the parameter
2917 (json-string, optional)
Amos Kong1f8f9872013-04-25 17:50:35 +08002918
2919Example:
2920
2921-> { "execute": "query-command-line-options", "arguments": { "option": "option-rom" } }
2922<- { "return": [
2923 {
2924 "parameters": [
2925 {
2926 "name": "romfile",
2927 "type": "string"
2928 },
2929 {
2930 "name": "bootindex",
2931 "type": "number"
2932 }
2933 ],
2934 "option": "option-rom"
2935 }
2936 ]
2937 }
2938
2939EQMP
2940
2941 {
2942 .name = "query-command-line-options",
2943 .args_type = "option:s?",
2944 .mhandler.cmd_new = qmp_marshal_input_query_command_line_options,
2945 },
2946
2947SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002948query-migrate
2949-------------
2950
2951Migration status.
2952
2953Return a json-object. If migration is active there will be another json-object
2954with RAM migration status and if block migration is active another one with
2955block migration status.
2956
2957The main json-object contains the following:
2958
2959- "status": migration status (json-string)
Peter Feiner3b695952014-05-16 10:40:47 -04002960 - Possible values: "setup", "active", "completed", "failed", "cancelled"
Juan Quintela7aa939a2012-08-18 13:17:10 +02002961- "total-time": total amount of ms since migration started. If
2962 migration has ended, it returns the total migration
Juan Quintela817c6042013-02-11 15:11:10 +01002963 time (json-int)
Michael R. Hines8f3067b2013-08-09 16:05:45 -04002964- "setup-time" amount of setup time in milliseconds _before_ the
2965 iterations begin but _after_ the QMP command is issued.
2966 This is designed to provide an accounting of any activities
2967 (such as RDMA pinning) which may be expensive, but do not
2968 actually occur during the iterative migration rounds
2969 themselves. (json-int)
Juan Quintela9c5a9fc2012-08-13 09:35:16 +02002970- "downtime": only present when migration has finished correctly
2971 total amount in ms for downtime that happened (json-int)
Juan Quintela2c52ddf2012-08-13 09:53:12 +02002972- "expected-downtime": only present while migration is active
2973 total amount in ms for downtime that was calculated on
Juan Quintela817c6042013-02-11 15:11:10 +01002974 the last bitmap round (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002975- "ram": only present if "status" is "active", it is a json-object with the
Juan Quintela817c6042013-02-11 15:11:10 +01002976 following RAM information:
2977 - "transferred": amount transferred in bytes (json-int)
2978 - "remaining": amount remaining to transfer in bytes (json-int)
2979 - "total": total amount of memory in bytes (json-int)
2980 - "duplicate": number of pages filled entirely with the same
2981 byte (json-int)
2982 These are sent over the wire much more efficiently.
Peter Lievenf1c72792013-03-26 10:58:37 +01002983 - "skipped": number of skipped zero pages (json-int)
Stefan Weil805a2502013-04-28 11:49:57 +02002984 - "normal" : number of whole pages transferred. I.e. they
Juan Quintela817c6042013-02-11 15:11:10 +01002985 were not sent as duplicate or xbzrle pages (json-int)
2986 - "normal-bytes" : number of bytes transferred in whole
2987 pages. This is just normal pages times size of one page,
2988 but this way upper levels don't need to care about page
2989 size (json-int)
ChenLiang58570ed2014-04-04 17:57:55 +08002990 - "dirty-sync-count": times that dirty ram was synchronized (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002991- "disk": only present if "status" is "active" and it is a block migration,
Juan Quintela817c6042013-02-11 15:11:10 +01002992 it is a json-object with the following disk information:
2993 - "transferred": amount transferred in bytes (json-int)
2994 - "remaining": amount remaining to transfer in bytes json-int)
2995 - "total": total disk size in bytes (json-int)
Orit Wassermanf36d55a2012-08-06 21:42:57 +03002996- "xbzrle-cache": only present if XBZRLE is active.
2997 It is a json-object with the following XBZRLE information:
Juan Quintela817c6042013-02-11 15:11:10 +01002998 - "cache-size": XBZRLE cache size in bytes
2999 - "bytes": number of bytes transferred for XBZRLE compressed pages
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003000 - "pages": number of XBZRLE compressed pages
Juan Quintela817c6042013-02-11 15:11:10 +01003001 - "cache-miss": number of XBRZRLE page cache misses
ChenLiang8bc39232014-04-04 17:57:56 +08003002 - "cache-miss-rate": rate of XBRZRLE page cache misses
Juan Quintela817c6042013-02-11 15:11:10 +01003003 - "overflow": number of times XBZRLE overflows. This means
3004 that the XBZRLE encoding was bigger than just sent the
3005 whole page, and then we sent the whole page instead (as as
3006 normal page).
3007
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003008Examples:
3009
30101. Before the first migration
3011
3012-> { "execute": "query-migrate" }
3013<- { "return": {} }
3014
30152. Migration is done and has succeeded
3016
3017-> { "execute": "query-migrate" }
Orit Wasserman004d4c12012-08-06 21:42:56 +03003018<- { "return": {
3019 "status": "completed",
3020 "ram":{
3021 "transferred":123,
3022 "remaining":123,
3023 "total":246,
3024 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003025 "setup-time":12345,
Juan Quintela9c5a9fc2012-08-13 09:35:16 +02003026 "downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003027 "duplicate":123,
3028 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003029 "normal-bytes":123456,
3030 "dirty-sync-count":15
Orit Wasserman004d4c12012-08-06 21:42:56 +03003031 }
3032 }
3033 }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003034
30353. Migration is done and has failed
3036
3037-> { "execute": "query-migrate" }
3038<- { "return": { "status": "failed" } }
3039
30404. Migration is being performed and is not a block migration:
3041
3042-> { "execute": "query-migrate" }
3043<- {
3044 "return":{
3045 "status":"active",
3046 "ram":{
3047 "transferred":123,
3048 "remaining":123,
Orit Wasserman62d4e3f2012-08-06 21:42:55 +03003049 "total":246,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003050 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003051 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003052 "expected-downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003053 "duplicate":123,
3054 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003055 "normal-bytes":123456,
3056 "dirty-sync-count":15
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003057 }
3058 }
3059 }
3060
30615. Migration is being performed and is a block migration:
3062
3063-> { "execute": "query-migrate" }
3064<- {
3065 "return":{
3066 "status":"active",
3067 "ram":{
3068 "total":1057024,
3069 "remaining":1053304,
Orit Wasserman62d4e3f2012-08-06 21:42:55 +03003070 "transferred":3720,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003071 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003072 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003073 "expected-downtime":12345,
Orit Wasserman004d4c12012-08-06 21:42:56 +03003074 "duplicate":123,
3075 "normal":123,
ChenLiang58570ed2014-04-04 17:57:55 +08003076 "normal-bytes":123456,
3077 "dirty-sync-count":15
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003078 },
3079 "disk":{
3080 "total":20971520,
3081 "remaining":20880384,
3082 "transferred":91136
3083 }
3084 }
3085 }
3086
Orit Wassermanf36d55a2012-08-06 21:42:57 +030030876. Migration is being performed and XBZRLE is active:
3088
3089-> { "execute": "query-migrate" }
3090<- {
3091 "return":{
3092 "status":"active",
3093 "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
3094 "ram":{
3095 "total":1057024,
3096 "remaining":1053304,
3097 "transferred":3720,
3098 "total-time":12345,
Michael R. Hines8f3067b2013-08-09 16:05:45 -04003099 "setup-time":12345,
Juan Quintela2c52ddf2012-08-13 09:53:12 +02003100 "expected-downtime":12345,
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003101 "duplicate":10,
3102 "normal":3333,
ChenLiang58570ed2014-04-04 17:57:55 +08003103 "normal-bytes":3412992,
3104 "dirty-sync-count":15
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003105 },
3106 "xbzrle-cache":{
3107 "cache-size":67108864,
3108 "bytes":20971520,
3109 "pages":2444343,
3110 "cache-miss":2244,
ChenLiang8bc39232014-04-04 17:57:56 +08003111 "cache-miss-rate":0.123,
Orit Wassermanf36d55a2012-08-06 21:42:57 +03003112 "overflow":34434
3113 }
3114 }
3115 }
3116
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003117EQMP
3118
Luiz Capitulino791e7c82011-09-13 17:37:16 -03003119 {
3120 .name = "query-migrate",
3121 .args_type = "",
3122 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
3123 },
3124
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003125SQMP
Orit Wasserman00458432012-08-06 21:42:48 +03003126migrate-set-capabilities
Juan Quintela817c6042013-02-11 15:11:10 +01003127------------------------
Orit Wasserman00458432012-08-06 21:42:48 +03003128
3129Enable/Disable migration capabilities
3130
Juan Quintela817c6042013-02-11 15:11:10 +01003131- "xbzrle": XBZRLE support
Orit Wasserman00458432012-08-06 21:42:48 +03003132
3133Arguments:
3134
3135Example:
3136
3137-> { "execute": "migrate-set-capabilities" , "arguments":
3138 { "capabilities": [ { "capability": "xbzrle", "state": true } ] } }
3139
3140EQMP
3141
3142 {
3143 .name = "migrate-set-capabilities",
3144 .args_type = "capabilities:O",
3145 .params = "capability:s,state:b",
3146 .mhandler.cmd_new = qmp_marshal_input_migrate_set_capabilities,
3147 },
3148SQMP
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003149query-migrate-capabilities
Juan Quintela817c6042013-02-11 15:11:10 +01003150--------------------------
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003151
3152Query current migration capabilities
3153
3154- "capabilities": migration capabilities state
3155 - "xbzrle" : XBZRLE state (json-bool)
3156
3157Arguments:
3158
3159Example:
3160
3161-> { "execute": "query-migrate-capabilities" }
Orit Wassermandbca1b32013-01-31 09:12:17 +02003162<- { "return": [ { "state": false, "capability": "xbzrle" } ] }
3163
Orit Wassermanbbf6da32012-08-06 21:42:47 +03003164EQMP
3165
3166 {
3167 .name = "query-migrate-capabilities",
3168 .args_type = "",
3169 .mhandler.cmd_new = qmp_marshal_input_query_migrate_capabilities,
3170 },
3171
3172SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003173query-balloon
3174-------------
3175
3176Show balloon information.
3177
3178Make an asynchronous request for balloon info. When the request completes a
3179json-object will be returned containing the following data:
3180
3181- "actual": current balloon value in bytes (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003182
3183Example:
3184
3185-> { "execute": "query-balloon" }
3186<- {
3187 "return":{
3188 "actual":1073741824,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03003189 }
3190 }
3191
3192EQMP
3193
Luiz Capitulino96637bc2011-10-21 11:41:37 -02003194 {
3195 .name = "query-balloon",
3196 .args_type = "",
3197 .mhandler.cmd_new = qmp_marshal_input_query_balloon,
3198 },
Anthony Liguorib4b12c62011-12-12 14:29:34 -06003199
3200 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00003201 .name = "query-block-jobs",
3202 .args_type = "",
3203 .mhandler.cmd_new = qmp_marshal_input_query_block_jobs,
3204 },
3205
3206 {
Anthony Liguorib4b12c62011-12-12 14:29:34 -06003207 .name = "qom-list",
3208 .args_type = "path:s",
3209 .mhandler.cmd_new = qmp_marshal_input_qom_list,
3210 },
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06003211
3212 {
3213 .name = "qom-set",
Paolo Bonzinib9f89782012-03-22 12:51:11 +01003214 .args_type = "path:s,property:s,value:q",
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06003215 .mhandler.cmd_new = qmp_qom_set,
3216 },
3217
3218 {
3219 .name = "qom-get",
3220 .args_type = "path:s,property:s",
3221 .mhandler.cmd_new = qmp_qom_get,
3222 },
Luiz Capitulino270b2432011-12-08 11:45:55 -02003223
3224 {
Paolo Bonzini6dd844d2012-08-22 16:43:07 +02003225 .name = "nbd-server-start",
3226 .args_type = "addr:q",
3227 .mhandler.cmd_new = qmp_marshal_input_nbd_server_start,
3228 },
3229 {
3230 .name = "nbd-server-add",
3231 .args_type = "device:B,writable:b?",
3232 .mhandler.cmd_new = qmp_marshal_input_nbd_server_add,
3233 },
3234 {
3235 .name = "nbd-server-stop",
3236 .args_type = "",
3237 .mhandler.cmd_new = qmp_marshal_input_nbd_server_stop,
3238 },
3239
3240 {
Luiz Capitulino270b2432011-12-08 11:45:55 -02003241 .name = "change-vnc-password",
3242 .args_type = "password:s",
3243 .mhandler.cmd_new = qmp_marshal_input_change_vnc_password,
3244 },
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06003245 {
3246 .name = "qom-list-types",
3247 .args_type = "implements:s?,abstract:b?",
3248 .mhandler.cmd_new = qmp_marshal_input_qom_list_types,
3249 },
Anthony Liguori1daa31b2012-08-10 11:04:09 -05003250
3251 {
3252 .name = "device-list-properties",
3253 .args_type = "typename:s",
3254 .mhandler.cmd_new = qmp_marshal_input_device_list_properties,
3255 },
3256
Anthony Liguori01d3c802012-08-10 11:04:11 -05003257 {
3258 .name = "query-machines",
3259 .args_type = "",
3260 .mhandler.cmd_new = qmp_marshal_input_query_machines,
3261 },
3262
Anthony Liguorie4e31c62012-08-10 11:04:13 -05003263 {
3264 .name = "query-cpu-definitions",
3265 .args_type = "",
3266 .mhandler.cmd_new = qmp_marshal_input_query_cpu_definitions,
3267 },
3268
Daniel P. Berrange99afc912012-08-20 15:31:38 +01003269 {
3270 .name = "query-target",
3271 .args_type = "",
3272 .mhandler.cmd_new = qmp_marshal_input_query_target,
3273 },
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003274
3275 {
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003276 .name = "query-tpm",
3277 .args_type = "",
3278 .mhandler.cmd_new = qmp_marshal_input_query_tpm,
3279 },
3280
Corey Bryant28c4fa32013-03-20 12:34:49 -04003281SQMP
3282query-tpm
3283---------
3284
3285Return information about the TPM device.
3286
3287Arguments: None
3288
3289Example:
3290
3291-> { "execute": "query-tpm" }
3292<- { "return":
3293 [
3294 { "model": "tpm-tis",
3295 "options":
3296 { "type": "passthrough",
3297 "data":
3298 { "cancel-path": "/sys/class/misc/tpm0/device/cancel",
3299 "path": "/dev/tpm0"
3300 }
3301 },
3302 "id": "tpm0"
3303 }
3304 ]
3305 }
3306
3307EQMP
3308
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003309 {
3310 .name = "query-tpm-models",
3311 .args_type = "",
3312 .mhandler.cmd_new = qmp_marshal_input_query_tpm_models,
3313 },
3314
Corey Bryant28c4fa32013-03-20 12:34:49 -04003315SQMP
3316query-tpm-models
3317----------------
3318
3319Return a list of supported TPM models.
3320
3321Arguments: None
3322
3323Example:
3324
3325-> { "execute": "query-tpm-models" }
3326<- { "return": [ "tpm-tis" ] }
3327
3328EQMP
3329
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003330 {
3331 .name = "query-tpm-types",
3332 .args_type = "",
3333 .mhandler.cmd_new = qmp_marshal_input_query_tpm_types,
3334 },
3335
Corey Bryant28c4fa32013-03-20 12:34:49 -04003336SQMP
3337query-tpm-types
3338---------------
3339
3340Return a list of supported TPM types.
3341
3342Arguments: None
3343
3344Example:
3345
3346-> { "execute": "query-tpm-types" }
3347<- { "return": [ "passthrough" ] }
3348
3349EQMP
3350
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05003351 {
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003352 .name = "chardev-add",
3353 .args_type = "id:s,backend:q",
3354 .mhandler.cmd_new = qmp_marshal_input_chardev_add,
3355 },
3356
3357SQMP
3358chardev-add
3359----------------
3360
3361Add a chardev.
3362
3363Arguments:
3364
3365- "id": the chardev's ID, must be unique (json-string)
3366- "backend": chardev backend type + parameters
3367
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003368Examples:
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003369
3370-> { "execute" : "chardev-add",
3371 "arguments" : { "id" : "foo",
3372 "backend" : { "type" : "null", "data" : {} } } }
3373<- { "return": {} }
3374
Gerd Hoffmannffbdbe52012-12-19 13:13:57 +01003375-> { "execute" : "chardev-add",
3376 "arguments" : { "id" : "bar",
3377 "backend" : { "type" : "file",
3378 "data" : { "out" : "/tmp/bar.log" } } } }
3379<- { "return": {} }
3380
Gerd Hoffmann0a1a7fa2012-12-20 14:39:13 +01003381-> { "execute" : "chardev-add",
3382 "arguments" : { "id" : "baz",
3383 "backend" : { "type" : "pty", "data" : {} } } }
3384<- { "return": { "pty" : "/dev/pty/42" } }
3385
Gerd Hoffmannf1a1a352012-12-19 10:33:56 +01003386EQMP
3387
3388 {
3389 .name = "chardev-remove",
3390 .args_type = "id:s",
3391 .mhandler.cmd_new = qmp_marshal_input_chardev_remove,
3392 },
3393
3394
3395SQMP
3396chardev-remove
3397--------------
3398
3399Remove a chardev.
3400
3401Arguments:
3402
3403- "id": the chardev's ID, must exist and not be in use (json-string)
3404
3405Example:
3406
3407-> { "execute": "chardev-remove", "arguments": { "id" : "foo" } }
3408<- { "return": {} }
3409
3410EQMP
Amos Kongb1be4282013-06-14 15:45:52 +08003411 {
3412 .name = "query-rx-filter",
3413 .args_type = "name:s?",
3414 .mhandler.cmd_new = qmp_marshal_input_query_rx_filter,
3415 },
3416
3417SQMP
3418query-rx-filter
3419---------------
3420
3421Show rx-filter information.
3422
3423Returns a json-array of rx-filter information for all NICs (or for the
3424given NIC), returning an error if the given NIC doesn't exist, or
3425given NIC doesn't support rx-filter querying, or given net client
3426isn't a NIC.
3427
3428The query will clear the event notification flag of each NIC, then qemu
3429will start to emit event to QMP monitor.
3430
3431Each array entry contains the following:
3432
3433- "name": net client name (json-string)
3434- "promiscuous": promiscuous mode is enabled (json-bool)
3435- "multicast": multicast receive state (one of 'normal', 'none', 'all')
3436- "unicast": unicast receive state (one of 'normal', 'none', 'all')
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003437- "vlan": vlan receive state (one of 'normal', 'none', 'all') (Since 2.0)
Amos Kongb1be4282013-06-14 15:45:52 +08003438- "broadcast-allowed": allow to receive broadcast (json-bool)
3439- "multicast-overflow": multicast table is overflowed (json-bool)
3440- "unicast-overflow": unicast table is overflowed (json-bool)
3441- "main-mac": main macaddr string (json-string)
3442- "vlan-table": a json-array of active vlan id
3443- "unicast-table": a json-array of unicast macaddr string
3444- "multicast-table": a json-array of multicast macaddr string
3445
3446Example:
3447
3448-> { "execute": "query-rx-filter", "arguments": { "name": "vnet0" } }
3449<- { "return": [
3450 {
3451 "promiscuous": true,
3452 "name": "vnet0",
3453 "main-mac": "52:54:00:12:34:56",
3454 "unicast": "normal",
Amos Kongf7bc8ef2014-03-26 08:19:43 +08003455 "vlan": "normal",
Amos Kongb1be4282013-06-14 15:45:52 +08003456 "vlan-table": [
3457 4,
3458 0
3459 ],
3460 "unicast-table": [
3461 ],
3462 "multicast": "normal",
3463 "multicast-overflow": false,
3464 "unicast-overflow": false,
3465 "multicast-table": [
3466 "01:00:5e:00:00:01",
3467 "33:33:00:00:00:01",
3468 "33:33:ff:12:34:56"
3469 ],
3470 "broadcast-allowed": false
3471 }
3472 ]
3473 }
3474
3475EQMP
Kevin Wolfd26c9a12013-09-23 15:26:03 +02003476
3477 {
3478 .name = "blockdev-add",
3479 .args_type = "options:q",
3480 .mhandler.cmd_new = qmp_marshal_input_blockdev_add,
3481 },
3482
3483SQMP
3484blockdev-add
3485------------
3486
3487Add a block device.
3488
3489Arguments:
3490
3491- "options": block driver options
3492
3493Example (1):
3494
3495-> { "execute": "blockdev-add",
3496 "arguments": { "options" : { "driver": "qcow2",
3497 "file": { "driver": "file",
3498 "filename": "test.qcow2" } } } }
3499<- { "return": {} }
3500
3501Example (2):
3502
3503-> { "execute": "blockdev-add",
3504 "arguments": {
3505 "options": {
3506 "driver": "qcow2",
3507 "id": "my_disk",
3508 "discard": "unmap",
3509 "cache": {
3510 "direct": true,
3511 "writeback": true
3512 },
3513 "file": {
3514 "driver": "file",
3515 "filename": "/tmp/test.qcow2"
3516 },
3517 "backing": {
3518 "driver": "raw",
3519 "file": {
3520 "driver": "file",
3521 "filename": "/dev/fdset/4"
3522 }
3523 }
3524 }
3525 }
3526 }
3527
3528<- { "return": {} }
3529
3530EQMP
Benoît Canetc13163f2014-01-23 21:31:34 +01003531
3532 {
3533 .name = "query-named-block-nodes",
3534 .args_type = "",
3535 .mhandler.cmd_new = qmp_marshal_input_query_named_block_nodes,
3536 },
3537
3538SQMP
3539@query-named-block-nodes
3540------------------------
3541
3542Return a list of BlockDeviceInfo for all the named block driver nodes
3543
3544Example:
3545
3546-> { "execute": "query-named-block-nodes" }
3547<- { "return": [ { "ro":false,
3548 "drv":"qcow2",
3549 "encrypted":false,
3550 "file":"disks/test.qcow2",
3551 "node-name": "my-node",
3552 "backing_file_depth":1,
3553 "bps":1000000,
3554 "bps_rd":0,
3555 "bps_wr":0,
3556 "iops":1000000,
3557 "iops_rd":0,
3558 "iops_wr":0,
3559 "bps_max": 8000000,
3560 "bps_rd_max": 0,
3561 "bps_wr_max": 0,
3562 "iops_max": 0,
3563 "iops_rd_max": 0,
3564 "iops_wr_max": 0,
3565 "iops_size": 0,
3566 "image":{
3567 "filename":"disks/test.qcow2",
3568 "format":"qcow2",
3569 "virtual-size":2048000,
3570 "backing_file":"base.qcow2",
3571 "full-backing-filename":"disks/base.qcow2",
3572 "backing-filename-format:"qcow2",
3573 "snapshots":[
3574 {
3575 "id": "1",
3576 "name": "snapshot1",
3577 "vm-state-size": 0,
3578 "date-sec": 10000200,
3579 "date-nsec": 12,
3580 "vm-clock-sec": 206,
3581 "vm-clock-nsec": 30
3582 }
3583 ],
3584 "backing-image":{
3585 "filename":"disks/base.qcow2",
3586 "format":"qcow2",
3587 "virtual-size":2048000
3588 }
Michael S. Tsirkinc0594512014-06-16 15:20:18 +03003589 } } ] }
Benoît Canetc13163f2014-01-23 21:31:34 +01003590
3591EQMP
Hu Tao76b5d852014-06-16 18:05:41 +08003592
3593 {
3594 .name = "query-memdev",
3595 .args_type = "",
3596 .mhandler.cmd_new = qmp_marshal_input_query_memdev,
3597 },
3598
3599SQMP
3600query-memdev
3601------------
3602
3603Show memory devices information.
3604
3605
3606Example (1):
3607
3608-> { "execute": "query-memdev" }
3609<- { "return": [
3610 {
3611 "size": 536870912,
3612 "merge": false,
3613 "dump": true,
3614 "prealloc": false,
3615 "host-nodes": [0, 1],
3616 "policy": "bind"
3617 },
3618 {
3619 "size": 536870912,
3620 "merge": false,
3621 "dump": true,
3622 "prealloc": true,
3623 "host-nodes": [2, 3],
3624 "policy": "preferred"
3625 }
3626 ]
3627 }
3628
3629EQMP
Igor Mammedov6f2e2732014-06-16 19:12:25 +02003630
3631 {
3632 .name = "query-memory-devices",
3633 .args_type = "",
3634 .mhandler.cmd_new = qmp_marshal_input_query_memory_devices,
3635 },
3636
3637SQMP
3638@query-memory-devices
3639--------------------
3640
3641Return a list of memory devices.
3642
3643Example:
3644-> { "execute": "query-memory-devices" }
3645<- { "return": [ { "data":
3646 { "addr": 5368709120,
3647 "hotpluggable": true,
3648 "hotplugged": true,
3649 "id": "d1",
3650 "memdev": "/objects/memX",
3651 "node": 0,
3652 "size": 1073741824,
3653 "slot": 0},
3654 "type": "dimm"
3655 } ] }
3656EQMP
Igor Mammedov02419bc2014-06-16 19:12:28 +02003657
3658 {
3659 .name = "query-acpi-ospm-status",
3660 .args_type = "",
3661 .mhandler.cmd_new = qmp_marshal_input_query_acpi_ospm_status,
3662 },
3663
3664SQMP
3665@query-acpi-ospm-status
3666--------------------
3667
3668Return list of ACPIOSTInfo for devices that support status reporting
3669via ACPI _OST method.
3670
3671Example:
3672-> { "execute": "query-acpi-ospm-status" }
3673<- { "return": [ { "device": "d1", "slot": "0", "slot-type": "DIMM", "source": 1, "status": 0},
3674 { "slot": "1", "slot-type": "DIMM", "source": 0, "status": 0},
3675 { "slot": "2", "slot-type": "DIMM", "source": 0, "status": 0},
3676 { "slot": "3", "slot-type": "DIMM", "source": 0, "status": 0}
3677 ]}
3678EQMP
Marcelo Tosattif2ae8ab2014-06-24 18:55:11 -03003679
3680#if defined TARGET_I386
3681 {
3682 .name = "rtc-reset-reinjection",
3683 .args_type = "",
3684 .mhandler.cmd_new = qmp_marshal_input_rtc_reset_reinjection,
3685 },
3686#endif
3687
3688SQMP
3689rtc-reset-reinjection
3690---------------------
3691
3692Reset the RTC interrupt reinjection backlog.
3693
3694Arguments: None.
3695
3696Example:
3697
3698-> { "execute": "rtc-reset-reinjection" }
3699<- { "return": {} }
3700
3701EQMP