blob: dfe8a5b40b8360158f8c9da9eec05ebdeeb49850 [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",
149 .params = "filename",
150 .help = "save screen into PPM image 'filename'",
151 .user_print = monitor_user_noop,
152 .mhandler.cmd_new = do_screen_dump,
153 },
154
155SQMP
156screendump
157----------
158
159Save screen into PPM image.
160
161Arguments:
162
163- "filename": file path (json-string)
164
165Example:
166
167-> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
168<- { "return": {} }
169
170EQMP
171
172 {
173 .name = "stop",
174 .args_type = "",
Luiz Capitulino5f158f22011-09-15 14:34:39 -0300175 .mhandler.cmd_new = qmp_marshal_input_stop,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300176 },
177
178SQMP
179stop
180----
181
182Stop the emulator.
183
184Arguments: None.
185
186Example:
187
188-> { "execute": "stop" }
189<- { "return": {} }
190
191EQMP
192
193 {
194 .name = "cont",
195 .args_type = "",
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200196 .mhandler.cmd_new = qmp_marshal_input_cont,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300197 },
198
199SQMP
200cont
201----
202
203Resume emulation.
204
205Arguments: None.
206
207Example:
208
209-> { "execute": "cont" }
210<- { "return": {} }
211
212EQMP
213
214 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100215 .name = "system_wakeup",
216 .args_type = "",
217 .mhandler.cmd_new = qmp_marshal_input_system_wakeup,
218 },
219
220SQMP
221system_wakeup
222-------------
223
224Wakeup guest from suspend.
225
226Arguments: None.
227
228Example:
229
230-> { "execute": "system_wakeup" }
231<- { "return": {} }
232
233EQMP
234
235 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300236 .name = "system_reset",
237 .args_type = "",
Luiz Capitulino38d22652011-09-15 14:41:46 -0300238 .mhandler.cmd_new = qmp_marshal_input_system_reset,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300239 },
240
241SQMP
242system_reset
243------------
244
245Reset the system.
246
247Arguments: None.
248
249Example:
250
251-> { "execute": "system_reset" }
252<- { "return": {} }
253
254EQMP
255
256 {
257 .name = "system_powerdown",
258 .args_type = "",
Luiz Capitulino22e1bb92011-11-27 22:40:03 -0200259 .mhandler.cmd_new = qmp_marshal_input_system_powerdown,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300260 },
261
262SQMP
263system_powerdown
264----------------
265
266Send system power down event.
267
268Arguments: None.
269
270Example:
271
272-> { "execute": "system_powerdown" }
273<- { "return": {} }
274
275EQMP
276
277 {
278 .name = "device_add",
279 .args_type = "device:O",
280 .params = "driver[,prop=value][,...]",
281 .help = "add device, like -device on the command line",
282 .user_print = monitor_user_noop,
283 .mhandler.cmd_new = do_device_add,
284 },
285
286SQMP
287device_add
288----------
289
290Add a device.
291
292Arguments:
293
294- "driver": the name of the new device's driver (json-string)
295- "bus": the device's parent bus (device tree path, json-string, optional)
296- "id": the device's ID, must be unique (json-string)
297- device properties
298
299Example:
300
301-> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
302<- { "return": {} }
303
304Notes:
305
306(1) For detailed information about this command, please refer to the
307 'docs/qdev-device-use.txt' file.
308
309(2) It's possible to list device properties by running QEMU with the
310 "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
311
312EQMP
313
314 {
315 .name = "device_del",
316 .args_type = "id:s",
317 .params = "device",
318 .help = "remove device",
319 .user_print = monitor_user_noop,
320 .mhandler.cmd_new = do_device_del,
321 },
322
323SQMP
324device_del
325----------
326
327Remove a device.
328
329Arguments:
330
331- "id": the device's ID (json-string)
332
333Example:
334
335-> { "execute": "device_del", "arguments": { "id": "net1" } }
336<- { "return": {} }
337
338EQMP
339
340 {
341 .name = "cpu",
342 .args_type = "index:i",
Luiz Capitulino755f1962011-10-06 14:31:39 -0300343 .mhandler.cmd_new = qmp_marshal_input_cpu,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300344 },
345
346SQMP
347cpu
348---
349
350Set the default CPU.
351
352Arguments:
353
354- "index": the CPU's index (json-int)
355
356Example:
357
358-> { "execute": "cpu", "arguments": { "index": 0 } }
359<- { "return": {} }
360
361Note: CPUs' indexes are obtained with the 'query-cpus' command.
362
363EQMP
364
365 {
366 .name = "memsave",
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200367 .args_type = "val:l,size:i,filename:s,cpu:i?",
368 .mhandler.cmd_new = qmp_marshal_input_memsave,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300369 },
370
371SQMP
372memsave
373-------
374
375Save to disk virtual memory dump starting at 'val' of size 'size'.
376
377Arguments:
378
379- "val": the starting address (json-int)
380- "size": the memory size, in bytes (json-int)
381- "filename": file path (json-string)
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200382- "cpu": virtual CPU index (json-int, optional)
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300383
384Example:
385
386-> { "execute": "memsave",
387 "arguments": { "val": 10,
388 "size": 100,
389 "filename": "/tmp/virtual-mem-dump" } }
390<- { "return": {} }
391
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300392EQMP
393
394 {
395 .name = "pmemsave",
396 .args_type = "val:l,size:i,filename:s",
Luiz Capitulino6d3962b2011-11-22 17:26:46 -0200397 .mhandler.cmd_new = qmp_marshal_input_pmemsave,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300398 },
399
400SQMP
401pmemsave
402--------
403
404Save to disk physical memory dump starting at 'val' of size 'size'.
405
406Arguments:
407
408- "val": the starting address (json-int)
409- "size": the memory size, in bytes (json-int)
410- "filename": file path (json-string)
411
412Example:
413
414-> { "execute": "pmemsave",
415 "arguments": { "val": 10,
416 "size": 100,
417 "filename": "/tmp/physical-mem-dump" } }
418<- { "return": {} }
419
420EQMP
421
422 {
Lai Jiangshana4046662011-03-07 17:05:15 +0800423 .name = "inject-nmi",
424 .args_type = "",
Luiz Capitulinoab49ab52011-11-23 12:55:53 -0200425 .mhandler.cmd_new = qmp_marshal_input_inject_nmi,
Lai Jiangshana4046662011-03-07 17:05:15 +0800426 },
427
428SQMP
429inject-nmi
430----------
431
432Inject an NMI on guest's CPUs.
433
434Arguments: None.
435
436Example:
437
438-> { "execute": "inject-nmi" }
439<- { "return": {} }
440
441Note: inject-nmi is only supported for x86 guest currently, it will
442 returns "Unsupported" error for non-x86 guest.
443
444EQMP
445
446 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300447 .name = "migrate",
448 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
449 .params = "[-d] [-b] [-i] uri",
450 .help = "migrate to URI (using -d to not wait for completion)"
451 "\n\t\t\t -b for migration without shared storage with"
452 " full copy of disk\n\t\t\t -i for migration without "
453 "shared storage with incremental copy of disk "
454 "(base image shared between src and destination)",
455 .user_print = monitor_user_noop,
456 .mhandler.cmd_new = do_migrate,
457 },
458
459SQMP
460migrate
461-------
462
463Migrate to URI.
464
465Arguments:
466
467- "blk": block migration, full disk copy (json-bool, optional)
468- "inc": incremental disk copy (json-bool, optional)
469- "uri": Destination URI (json-string)
470
471Example:
472
473-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
474<- { "return": {} }
475
476Notes:
477
478(1) The 'query-migrate' command should be used to check migration's progress
479 and final result (this information is provided by the 'status' member)
480(2) All boolean arguments default to false
481(3) The user Monitor's "detach" argument is invalid in QMP and should not
482 be used
483
484EQMP
485
486 {
487 .name = "migrate_cancel",
488 .args_type = "",
Luiz Capitulino6cdedb02011-11-27 22:54:09 -0200489 .mhandler.cmd_new = qmp_marshal_input_migrate_cancel,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300490 },
491
492SQMP
493migrate_cancel
494--------------
495
496Cancel the current migration.
497
498Arguments: None.
499
500Example:
501
502-> { "execute": "migrate_cancel" }
503<- { "return": {} }
504
505EQMP
506
507 {
508 .name = "migrate_set_speed",
Wen Congyang3a019b62010-11-25 09:06:05 +0800509 .args_type = "value:o",
Luiz Capitulino3dc85382011-11-28 11:59:37 -0200510 .mhandler.cmd_new = qmp_marshal_input_migrate_set_speed,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300511 },
512
513SQMP
514migrate_set_speed
515-----------------
516
517Set maximum speed for migrations.
518
519Arguments:
520
Luiz Capitulino5569fd72010-12-15 17:56:18 -0200521- "value": maximum speed, in bytes per second (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300522
523Example:
524
525-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
526<- { "return": {} }
527
528EQMP
529
530 {
531 .name = "migrate_set_downtime",
532 .args_type = "value:T",
Luiz Capitulino4f0a9932011-11-27 23:18:01 -0200533 .mhandler.cmd_new = qmp_marshal_input_migrate_set_downtime,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300534 },
535
536SQMP
537migrate_set_downtime
538--------------------
539
540Set maximum tolerated downtime (in seconds) for migrations.
541
542Arguments:
543
544- "value": maximum downtime (json-number)
545
546Example:
547
548-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
549<- { "return": {} }
550
551EQMP
552
553 {
Jes Sorensenff73edf2011-03-09 14:31:06 +0100554 .name = "client_migrate_info",
555 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
556 .params = "protocol hostname port tls-port cert-subject",
557 .help = "send migration info to spice/vnc client",
558 .user_print = monitor_user_noop,
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200559 .mhandler.cmd_async = client_migrate_info,
560 .flags = MONITOR_CMD_ASYNC,
Jes Sorensenff73edf2011-03-09 14:31:06 +0100561 },
562
563SQMP
564client_migrate_info
565------------------
566
567Set the spice/vnc connection info for the migration target. The spice/vnc
568server will ask the spice/vnc client to automatically reconnect using the
569new parameters (if specified) once the vm migration finished successfully.
570
571Arguments:
572
573- "protocol": protocol: "spice" or "vnc" (json-string)
574- "hostname": migration target hostname (json-string)
575- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
576- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
577- "cert-subject": server certificate subject (json-string, optional)
578
579Example:
580
581-> { "execute": "client_migrate_info",
582 "arguments": { "protocol": "spice",
583 "hostname": "virt42.lab.kraxel.org",
584 "port": 1234 } }
585<- { "return": {} }
586
587EQMP
588
589 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300590 .name = "netdev_add",
591 .args_type = "netdev:O",
592 .params = "[user|tap|socket],id=str[,prop=value][,...]",
593 .help = "add host network device",
594 .user_print = monitor_user_noop,
595 .mhandler.cmd_new = do_netdev_add,
596 },
597
598SQMP
599netdev_add
600----------
601
602Add host network device.
603
604Arguments:
605
606- "type": the device type, "tap", "user", ... (json-string)
607- "id": the device's ID, must be unique (json-string)
608- device options
609
610Example:
611
612-> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
613<- { "return": {} }
614
615Note: The supported device options are the same ones supported by the '-net'
616 command-line argument, which are listed in the '-help' output or QEMU's
617 manual
618
619EQMP
620
621 {
622 .name = "netdev_del",
623 .args_type = "id:s",
624 .params = "id",
625 .help = "remove host network device",
626 .user_print = monitor_user_noop,
627 .mhandler.cmd_new = do_netdev_del,
628 },
629
630SQMP
631netdev_del
632----------
633
634Remove host network device.
635
636Arguments:
637
638- "id": the device's ID, must be unique (json-string)
639
640Example:
641
642-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
643<- { "return": {} }
644
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100645
646EQMP
647
648 {
649 .name = "block_resize",
650 .args_type = "device:B,size:o",
Luiz Capitulino5e7caac2011-11-25 14:57:10 -0200651 .mhandler.cmd_new = qmp_marshal_input_block_resize,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100652 },
653
654SQMP
655block_resize
656------------
657
658Resize a block image while a guest is running.
659
660Arguments:
661
662- "device": the device's ID, must be unique (json-string)
663- "size": new size
664
665Example:
666
667-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
668<- { "return": {} }
669
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300670EQMP
671
672 {
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +0000673 .name = "block_stream",
674 .args_type = "device:B,base:s?",
675 .mhandler.cmd_new = qmp_marshal_input_block_stream,
676 },
677
678 {
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000679 .name = "block_job_set_speed",
680 .args_type = "device:B,value:o",
681 .mhandler.cmd_new = qmp_marshal_input_block_job_set_speed,
682 },
683
684 {
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000685 .name = "block_job_cancel",
686 .args_type = "device:B",
687 .mhandler.cmd_new = qmp_marshal_input_block_job_cancel,
688 },
Jeff Codyc1864022012-02-28 15:54:07 -0500689 {
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100690 .name = "transaction",
691 .args_type = "actions:O",
692 .mhandler.cmd_new = qmp_marshal_input_transaction,
Jeff Codyc1864022012-02-28 15:54:07 -0500693 },
694
695SQMP
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100696transaction
697-----------
Jeff Codyc1864022012-02-28 15:54:07 -0500698
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100699Atomically operate on one or more block devices. The only supported
700operation for now is snapshotting. If there is any failure performing
701any of the operations, all snapshots for the group are abandoned, and
702the original disks pre-snapshot attempt are used.
Jeff Codyc1864022012-02-28 15:54:07 -0500703
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100704A list of dictionaries is accepted, that contains the actions to be performed.
705For snapshots this is the device, the file to use for the new snapshot,
706and the format. The default format, if not specified, is qcow2.
Jeff Codyc1864022012-02-28 15:54:07 -0500707
Paolo Bonzinibc8b0942012-03-06 18:55:58 +0100708Each new snapshot defaults to being created by QEMU (wiping any
709contents if the file already exists), but it is also possible to reuse
710an externally-created file. In the latter case, you should ensure that
711the new image file has the same contents as the current one; QEMU cannot
712perform any meaningful check. Typically this is achieved by using the
713current image file as the backing file for the new image.
714
Jeff Codyc1864022012-02-28 15:54:07 -0500715Arguments:
716
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100717actions array:
718 - "type": the operation to perform. The only supported
719 value is "blockdev-snapshot-sync". (json-string)
720 - "data": a dictionary. The contents depend on the value
721 of "type". When "type" is "blockdev-snapshot-sync":
722 - "device": device name to snapshot (json-string)
723 - "snapshot-file": name of new image file (json-string)
724 - "format": format of new image (json-string, optional)
Paolo Bonzinibc8b0942012-03-06 18:55:58 +0100725 - "mode": whether and how QEMU should create the snapshot file
726 (NewImageMode, optional, default "absolute-paths")
Jeff Codyc1864022012-02-28 15:54:07 -0500727
728Example:
729
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100730-> { "execute": "transaction",
731 "arguments": { "actions": [
732 { 'type': 'blockdev-snapshot-sync', 'data' : { "device": "ide-hd0",
733 "snapshot-file": "/some/place/my-image",
734 "format": "qcow2" } },
735 { 'type': 'blockdev-snapshot-sync', 'data' : { "device": "ide-hd1",
736 "snapshot-file": "/some/place/my-image2",
Paolo Bonzinibc8b0942012-03-06 18:55:58 +0100737 "mode": "existing",
Paolo Bonzini52e7c242012-03-06 18:55:57 +0100738 "format": "qcow2" } } ] } }
Jeff Codyc1864022012-02-28 15:54:07 -0500739<- { "return": {} }
740
741EQMP
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000742
743 {
Jes Sorensend967b2f2011-07-11 20:01:09 +0200744 .name = "blockdev-snapshot-sync",
Luiz Capitulino6106e242011-11-25 16:15:19 -0200745 .args_type = "device:B,snapshot-file:s,format:s?",
746 .mhandler.cmd_new = qmp_marshal_input_blockdev_snapshot_sync,
Jes Sorensend967b2f2011-07-11 20:01:09 +0200747 },
748
749SQMP
750blockdev-snapshot-sync
751----------------------
752
753Synchronous snapshot of a block device. snapshot-file specifies the
754target of the new image. If the file exists, or if it is a device, the
755snapshot will be created in the existing file/device. If does not
756exist, a new file will be created. format specifies the format of the
757snapshot image, default is qcow2.
758
759Arguments:
760
761- "device": device name to snapshot (json-string)
762- "snapshot-file": name of new image file (json-string)
Paolo Bonzini6cc2a412012-03-06 18:55:59 +0100763- "mode": whether and how QEMU should create the snapshot file
764 (NewImageMode, optional, default "absolute-paths")
Jes Sorensend967b2f2011-07-11 20:01:09 +0200765- "format": format of new image (json-string, optional)
766
767Example:
768
Luiz Capitulino7f3850c2011-10-10 17:30:08 -0300769-> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
770 "snapshot-file":
771 "/some/place/my-image",
772 "format": "qcow2" } }
Jes Sorensend967b2f2011-07-11 20:01:09 +0200773<- { "return": {} }
774
775EQMP
776
777 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300778 .name = "balloon",
779 .args_type = "value:M",
Luiz Capitulinod72f3262011-11-25 14:38:09 -0200780 .mhandler.cmd_new = qmp_marshal_input_balloon,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300781 },
782
783SQMP
784balloon
785-------
786
787Request VM to change its memory allocation (in bytes).
788
789Arguments:
790
791- "value": New memory allocation (json-int)
792
793Example:
794
795-> { "execute": "balloon", "arguments": { "value": 536870912 } }
796<- { "return": {} }
797
798EQMP
799
800 {
801 .name = "set_link",
802 .args_type = "name:s,up:b",
Luiz Capitulino4b371562011-11-23 13:11:55 -0200803 .mhandler.cmd_new = qmp_marshal_input_set_link,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300804 },
805
806SQMP
807set_link
808--------
809
810Change the link status of a network adapter.
811
812Arguments:
813
814- "name": network device name (json-string)
815- "up": status is up (json-bool)
816
817Example:
818
819-> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
820<- { "return": {} }
821
822EQMP
823
824 {
825 .name = "getfd",
826 .args_type = "fdname:s",
827 .params = "getfd name",
828 .help = "receive a file descriptor via SCM rights and assign it a name",
829 .user_print = monitor_user_noop,
830 .mhandler.cmd_new = do_getfd,
831 },
832
833SQMP
834getfd
835-----
836
837Receive a file descriptor via SCM rights and assign it a name.
838
839Arguments:
840
841- "fdname": file descriptor name (json-string)
842
843Example:
844
845-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
846<- { "return": {} }
847
848EQMP
849
850 {
851 .name = "closefd",
852 .args_type = "fdname:s",
853 .params = "closefd name",
854 .help = "close a file descriptor previously passed via SCM rights",
855 .user_print = monitor_user_noop,
856 .mhandler.cmd_new = do_closefd,
857 },
858
859SQMP
860closefd
861-------
862
863Close a file descriptor previously passed via SCM rights.
864
865Arguments:
866
867- "fdname": file descriptor name (json-string)
868
869Example:
870
871-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
872<- { "return": {} }
873
874EQMP
875
876 {
877 .name = "block_passwd",
878 .args_type = "device:B,password:s",
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -0200879 .mhandler.cmd_new = qmp_marshal_input_block_passwd,
Luiz Capitulino82a56f02010-09-13 12:26:00 -0300880 },
881
882SQMP
883block_passwd
884------------
885
886Set the password of encrypted block devices.
887
888Arguments:
889
890- "device": device name (json-string)
891- "password": password (json-string)
892
893Example:
894
895-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
896 "password": "12345" } }
897<- { "return": {} }
898
899EQMP
900
901 {
Zhi Yong Wu727f0052011-11-08 13:00:31 +0800902 .name = "block_set_io_throttle",
903 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
Luiz Capitulino80047da2011-12-14 16:49:14 -0200904 .mhandler.cmd_new = qmp_marshal_input_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +0800905 },
906
907SQMP
908block_set_io_throttle
909------------
910
911Change I/O throttle limits for a block drive.
912
913Arguments:
914
915- "device": device name (json-string)
916- "bps": total throughput limit in bytes per second(json-int)
917- "bps_rd": read throughput limit in bytes per second(json-int)
918- "bps_wr": read throughput limit in bytes per second(json-int)
919- "iops": total I/O operations per second(json-int)
920- "iops_rd": read I/O operations per second(json-int)
921- "iops_wr": write I/O operations per second(json-int)
922
923Example:
924
925-> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
926 "bps": "1000000",
927 "bps_rd": "0",
928 "bps_wr": "0",
929 "iops": "0",
930 "iops_rd": "0",
931 "iops_wr": "0" } }
932<- { "return": {} }
933
934EQMP
935
936 {
Gerd Hoffmann75721502010-10-07 12:22:54 +0200937 .name = "set_password",
938 .args_type = "protocol:s,password:s,connected:s?",
Luiz Capitulinofbf796f2011-12-07 11:17:51 -0200939 .mhandler.cmd_new = qmp_marshal_input_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +0200940 },
941
942SQMP
943set_password
944------------
945
946Set the password for vnc/spice protocols.
947
948Arguments:
949
950- "protocol": protocol name (json-string)
951- "password": password (json-string)
952- "connected": [ keep | disconnect | fail ] (josn-string, optional)
953
954Example:
955
956-> { "execute": "set_password", "arguments": { "protocol": "vnc",
957 "password": "secret" } }
958<- { "return": {} }
959
960EQMP
961
962 {
963 .name = "expire_password",
964 .args_type = "protocol:s,time:s",
Luiz Capitulino9ad53722011-12-07 11:47:57 -0200965 .mhandler.cmd_new = qmp_marshal_input_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +0200966 },
967
968SQMP
969expire_password
970---------------
971
972Set the password expire time for vnc/spice protocols.
973
974Arguments:
975
976- "protocol": protocol name (json-string)
977- "time": [ now | never | +secs | secs ] (json-string)
978
979Example:
980
981-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
982 "time": "+60" } }
983<- { "return": {} }
984
985EQMP
986
987 {
Daniel P. Berrange13661082011-06-23 13:31:42 +0100988 .name = "add_client",
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +0000989 .args_type = "protocol:s,fdname:s,skipauth:b?,tls:b?",
990 .params = "protocol fdname skipauth tls",
Daniel P. Berrange13661082011-06-23 13:31:42 +0100991 .help = "add a graphics client",
992 .user_print = monitor_user_noop,
993 .mhandler.cmd_new = add_graphics_client,
994 },
995
996SQMP
997add_client
998----------
999
1000Add a graphics client
1001
1002Arguments:
1003
1004- "protocol": protocol name (json-string)
1005- "fdname": file descriptor name (json-string)
Daniel P. Berrangef1f5f402012-02-13 13:43:08 +00001006- "skipauth": whether to skip authentication (json-bool, optional)
1007- "tls": whether to perform TLS (json-bool, optional)
Daniel P. Berrange13661082011-06-23 13:31:42 +01001008
1009Example:
1010
1011-> { "execute": "add_client", "arguments": { "protocol": "vnc",
1012 "fdname": "myclient" } }
1013<- { "return": {} }
1014
1015EQMP
1016 {
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001017 .name = "qmp_capabilities",
1018 .args_type = "",
1019 .params = "",
1020 .help = "enable QMP capabilities",
1021 .user_print = monitor_user_noop,
1022 .mhandler.cmd_new = do_qmp_capabilities,
1023 },
1024
1025SQMP
1026qmp_capabilities
1027----------------
1028
1029Enable QMP capabilities.
1030
1031Arguments: None.
1032
1033Example:
1034
1035-> { "execute": "qmp_capabilities" }
1036<- { "return": {} }
1037
1038Note: This command must be issued before issuing any other command.
1039
Luiz Capitulino0268d972010-10-22 10:08:02 -02001040EQMP
1041
1042 {
1043 .name = "human-monitor-command",
1044 .args_type = "command-line:s,cpu-index:i?",
Luiz Capitulinod51a67b2011-11-25 17:52:45 -02001045 .mhandler.cmd_new = qmp_marshal_input_human_monitor_command,
Luiz Capitulino0268d972010-10-22 10:08:02 -02001046 },
1047
1048SQMP
1049human-monitor-command
1050---------------------
1051
1052Execute a Human Monitor command.
1053
1054Arguments:
1055
1056- command-line: the command name and its arguments, just like the
1057 Human Monitor's shell (json-string)
1058- cpu-index: select the CPU number to be used by commands which access CPU
1059 data, like 'info registers'. The Monitor selects CPU 0 if this
1060 argument is not provided (json-int, optional)
1061
1062Example:
1063
1064-> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1065<- { "return": "kvm support: enabled\r\n" }
1066
1067Notes:
1068
1069(1) The Human Monitor is NOT an stable interface, this means that command
1070 names, arguments and responses can change or be removed at ANY time.
1071 Applications that rely on long term stability guarantees should NOT
1072 use this command
1073
1074(2) Limitations:
1075
1076 o This command is stateless, this means that commands that depend
1077 on state information (such as getfd) might not work
1078
1079 o Commands that prompt the user for data (eg. 'cont' when the block
1080 device is encrypted) don't currently work
1081
Luiz Capitulino82a56f02010-09-13 12:26:00 -030010823. Query Commands
1083=================
1084
1085HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1086HXCOMM this! We will possibly move query commands definitions inside those
1087HXCOMM sections, just like regular commands.
1088
1089EQMP
1090
1091SQMP
1092query-version
1093-------------
1094
1095Show QEMU version.
1096
1097Return a json-object with the following information:
1098
1099- "qemu": A json-object containing three integer values:
1100 - "major": QEMU's major version (json-int)
1101 - "minor": QEMU's minor version (json-int)
1102 - "micro": QEMU's micro version (json-int)
1103- "package": package's version (json-string)
1104
1105Example:
1106
1107-> { "execute": "query-version" }
1108<- {
1109 "return":{
1110 "qemu":{
1111 "major":0,
1112 "minor":11,
1113 "micro":5
1114 },
1115 "package":""
1116 }
1117 }
1118
1119EQMP
1120
Luiz Capitulinob9c15f12011-08-26 17:38:13 -03001121 {
1122 .name = "query-version",
1123 .args_type = "",
1124 .mhandler.cmd_new = qmp_marshal_input_query_version,
1125 },
1126
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001127SQMP
1128query-commands
1129--------------
1130
1131List QMP available commands.
1132
1133Each command is represented by a json-object, the returned value is a json-array
1134of all commands.
1135
1136Each json-object contain:
1137
1138- "name": command's name (json-string)
1139
1140Example:
1141
1142-> { "execute": "query-commands" }
1143<- {
1144 "return":[
1145 {
1146 "name":"query-balloon"
1147 },
1148 {
1149 "name":"system_powerdown"
1150 }
1151 ]
1152 }
1153
1154Note: This example has been shortened as the real response is too long.
1155
1156EQMP
1157
Luiz Capitulinoaa9b79b2011-09-21 14:31:51 -03001158 {
1159 .name = "query-commands",
1160 .args_type = "",
1161 .mhandler.cmd_new = qmp_marshal_input_query_commands,
1162 },
1163
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001164SQMP
1165query-chardev
1166-------------
1167
1168Each device is represented by a json-object. The returned value is a json-array
1169of all devices.
1170
1171Each json-object contain the following:
1172
1173- "label": device's label (json-string)
1174- "filename": device's file (json-string)
1175
1176Example:
1177
1178-> { "execute": "query-chardev" }
1179<- {
1180 "return":[
1181 {
1182 "label":"monitor",
1183 "filename":"stdio"
1184 },
1185 {
1186 "label":"serial0",
1187 "filename":"vc"
1188 }
1189 ]
1190 }
1191
1192EQMP
1193
Luiz Capitulinoc5a415a2011-09-14 16:05:49 -03001194 {
1195 .name = "query-chardev",
1196 .args_type = "",
1197 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
1198 },
1199
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001200SQMP
1201query-block
1202-----------
1203
1204Show the block devices.
1205
1206Each block device information is stored in a json-object and the returned value
1207is a json-array of all devices.
1208
1209Each json-object contain the following:
1210
1211- "device": device name (json-string)
1212- "type": device type (json-string)
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02001213 - deprecated, retained for backward compatibility
1214 - Possible values: "unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001215- "removable": true if the device is removable, false otherwise (json-bool)
1216- "locked": true if the device is locked, false otherwise (json-bool)
Markus Armbrustere4def802011-09-06 18:58:53 +02001217- "tray-open": only present if removable, true if the device has a tray,
1218 and it is open (json-bool)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001219- "inserted": only present if the device is inserted, it is a json-object
1220 containing the following:
1221 - "file": device file name (json-string)
1222 - "ro": true if read-only, false otherwise (json-bool)
1223 - "drv": driver format name (json-string)
1224 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
1225 "file", "file", "ftp", "ftps", "host_cdrom",
1226 "host_device", "host_floppy", "http", "https",
1227 "nbd", "parallels", "qcow", "qcow2", "raw",
1228 "tftp", "vdi", "vmdk", "vpc", "vvfat"
1229 - "backing_file": backing file name (json-string, optional)
1230 - "encrypted": true if encrypted, false otherwise (json-bool)
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001231 - "bps": limit total bytes per second (json-int)
1232 - "bps_rd": limit read bytes per second (json-int)
1233 - "bps_wr": limit write bytes per second (json-int)
1234 - "iops": limit total I/O operations per second (json-int)
1235 - "iops_rd": limit read operations per second (json-int)
1236 - "iops_wr": limit write operations per second (json-int)
1237
Luiz Capitulinof04ef602011-09-26 17:43:54 -03001238- "io-status": I/O operation status, only present if the device supports it
1239 and the VM is configured to stop on errors. It's always reset
1240 to "ok" when the "cont" command is issued (json_string, optional)
1241 - Possible values: "ok", "failed", "nospace"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001242
1243Example:
1244
1245-> { "execute": "query-block" }
1246<- {
1247 "return":[
1248 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03001249 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001250 "device":"ide0-hd0",
1251 "locked":false,
1252 "removable":false,
1253 "inserted":{
1254 "ro":false,
1255 "drv":"qcow2",
1256 "encrypted":false,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001257 "file":"disks/test.img",
1258 "bps":1000000,
1259 "bps_rd":0,
1260 "bps_wr":0,
1261 "iops":1000000,
1262 "iops_rd":0,
1263 "iops_wr":0,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001264 },
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02001265 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001266 },
1267 {
Luiz Capitulinof04ef602011-09-26 17:43:54 -03001268 "io-status": "ok",
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001269 "device":"ide1-cd0",
1270 "locked":false,
1271 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02001272 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001273 },
1274 {
1275 "device":"floppy0",
1276 "locked":false,
1277 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02001278 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001279 },
1280 {
1281 "device":"sd0",
1282 "locked":false,
1283 "removable":true,
Markus Armbrusterd8aeeb32011-05-16 15:04:55 +02001284 "type":"unknown"
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001285 }
1286 ]
1287 }
1288
1289EQMP
1290
Luiz Capitulinob2023812011-09-21 17:16:47 -03001291 {
1292 .name = "query-block",
1293 .args_type = "",
1294 .mhandler.cmd_new = qmp_marshal_input_query_block,
1295 },
1296
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001297SQMP
1298query-blockstats
1299----------------
1300
1301Show block device statistics.
1302
1303Each device statistic information is stored in a json-object and the returned
1304value is a json-array of all devices.
1305
1306Each json-object contain the following:
1307
1308- "device": device name (json-string)
1309- "stats": A json-object with the statistics information, it contains:
1310 - "rd_bytes": bytes read (json-int)
1311 - "wr_bytes": bytes written (json-int)
1312 - "rd_operations": read operations (json-int)
1313 - "wr_operations": write operations (json-int)
Christoph Hellwige8045d62011-08-22 00:25:58 +02001314 - "flush_operations": cache flush operations (json-int)
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001315 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
1316 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
1317 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001318 - "wr_highest_offset": Highest offset of a sector written since the
1319 BlockDriverState has been opened (json-int)
1320- "parent": Contains recursively the statistics of the underlying
1321 protocol (e.g. the host file for a qcow2 image). If there is
1322 no underlying protocol, this field is omitted
1323 (json-object, optional)
1324
1325Example:
1326
1327-> { "execute": "query-blockstats" }
1328<- {
1329 "return":[
1330 {
1331 "device":"ide0-hd0",
1332 "parent":{
1333 "stats":{
1334 "wr_highest_offset":3686448128,
1335 "wr_bytes":9786368,
1336 "wr_operations":751,
1337 "rd_bytes":122567168,
1338 "rd_operations":36772
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001339 "wr_total_times_ns":313253456
1340 "rd_total_times_ns":3465673657
1341 "flush_total_times_ns":49653
Christoph Hellwige8045d62011-08-22 00:25:58 +02001342 "flush_operations":61,
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001343 }
1344 },
1345 "stats":{
1346 "wr_highest_offset":2821110784,
1347 "wr_bytes":9786368,
1348 "wr_operations":692,
1349 "rd_bytes":122739200,
1350 "rd_operations":36604
Christoph Hellwige8045d62011-08-22 00:25:58 +02001351 "flush_operations":51,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001352 "wr_total_times_ns":313253456
1353 "rd_total_times_ns":3465673657
1354 "flush_total_times_ns":49653
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001355 }
1356 },
1357 {
1358 "device":"ide1-cd0",
1359 "stats":{
1360 "wr_highest_offset":0,
1361 "wr_bytes":0,
1362 "wr_operations":0,
1363 "rd_bytes":0,
1364 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02001365 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001366 "wr_total_times_ns":0
1367 "rd_total_times_ns":0
1368 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001369 }
1370 },
1371 {
1372 "device":"floppy0",
1373 "stats":{
1374 "wr_highest_offset":0,
1375 "wr_bytes":0,
1376 "wr_operations":0,
1377 "rd_bytes":0,
1378 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02001379 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001380 "wr_total_times_ns":0
1381 "rd_total_times_ns":0
1382 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001383 }
1384 },
1385 {
1386 "device":"sd0",
1387 "stats":{
1388 "wr_highest_offset":0,
1389 "wr_bytes":0,
1390 "wr_operations":0,
1391 "rd_bytes":0,
1392 "rd_operations":0
Christoph Hellwige8045d62011-08-22 00:25:58 +02001393 "flush_operations":0,
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02001394 "wr_total_times_ns":0
1395 "rd_total_times_ns":0
1396 "flush_total_times_ns":0
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001397 }
1398 }
1399 ]
1400 }
1401
1402EQMP
1403
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03001404 {
1405 .name = "query-blockstats",
1406 .args_type = "",
1407 .mhandler.cmd_new = qmp_marshal_input_query_blockstats,
1408 },
1409
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001410SQMP
1411query-cpus
1412----------
1413
1414Show CPU information.
1415
1416Return a json-array. Each CPU is represented by a json-object, which contains:
1417
1418- "CPU": CPU index (json-int)
1419- "current": true if this is the current CPU, false otherwise (json-bool)
1420- "halted": true if the cpu is halted, false otherwise (json-bool)
1421- Current program counter. The key's name depends on the architecture:
1422 "pc": i386/x86_64 (json-int)
1423 "nip": PPC (json-int)
1424 "pc" and "npc": sparc (json-int)
1425 "PC": mips (json-int)
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01001426- "thread_id": ID of the underlying host thread (json-int)
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001427
1428Example:
1429
1430-> { "execute": "query-cpus" }
1431<- {
1432 "return":[
1433 {
1434 "CPU":0,
1435 "current":true,
1436 "halted":false,
1437 "pc":3227107138
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01001438 "thread_id":3134
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001439 },
1440 {
1441 "CPU":1,
1442 "current":false,
1443 "halted":true,
1444 "pc":7108165
Jan Kiszkadc7a09c2011-03-15 12:26:31 +01001445 "thread_id":3135
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001446 }
1447 ]
1448 }
1449
1450EQMP
1451
Luiz Capitulinode0b36b2011-09-21 16:38:35 -03001452 {
1453 .name = "query-cpus",
1454 .args_type = "",
1455 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
1456 },
1457
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001458SQMP
1459query-pci
1460---------
1461
1462PCI buses and devices information.
1463
1464The returned value is a json-array of all buses. Each bus is represented by
1465a json-object, which has a key with a json-array of all PCI devices attached
1466to it. Each device is represented by a json-object.
1467
1468The bus json-object contains the following:
1469
1470- "bus": bus number (json-int)
1471- "devices": a json-array of json-objects, each json-object represents a
1472 PCI device
1473
1474The PCI device json-object contains the following:
1475
1476- "bus": identical to the parent's bus number (json-int)
1477- "slot": slot number (json-int)
1478- "function": function number (json-int)
1479- "class_info": a json-object containing:
1480 - "desc": device class description (json-string, optional)
1481 - "class": device class number (json-int)
1482- "id": a json-object containing:
1483 - "device": device ID (json-int)
1484 - "vendor": vendor ID (json-int)
1485- "irq": device's IRQ if assigned (json-int, optional)
1486- "qdev_id": qdev id string (json-string)
1487- "pci_bridge": It's a json-object, only present if this device is a
1488 PCI bridge, contains:
1489 - "bus": bus number (json-int)
1490 - "secondary": secondary bus number (json-int)
1491 - "subordinate": subordinate bus number (json-int)
1492 - "io_range": I/O memory range information, a json-object with the
1493 following members:
1494 - "base": base address, in bytes (json-int)
1495 - "limit": limit address, in bytes (json-int)
1496 - "memory_range": memory range information, a json-object with the
1497 following members:
1498 - "base": base address, in bytes (json-int)
1499 - "limit": limit address, in bytes (json-int)
1500 - "prefetchable_range": Prefetchable memory range information, a
1501 json-object with the following members:
1502 - "base": base address, in bytes (json-int)
1503 - "limit": limit address, in bytes (json-int)
1504 - "devices": a json-array of PCI devices if there's any attached, each
1505 each element is represented by a json-object, which contains
1506 the same members of the 'PCI device json-object' described
1507 above (optional)
1508- "regions": a json-array of json-objects, each json-object represents a
1509 memory region of this device
1510
1511The memory range json-object contains the following:
1512
1513- "base": base memory address (json-int)
1514- "limit": limit value (json-int)
1515
1516The region json-object can be an I/O region or a memory region, an I/O region
1517json-object contains the following:
1518
1519- "type": "io" (json-string, fixed)
1520- "bar": BAR number (json-int)
1521- "address": memory address (json-int)
1522- "size": memory size (json-int)
1523
1524A memory region json-object contains the following:
1525
1526- "type": "memory" (json-string, fixed)
1527- "bar": BAR number (json-int)
1528- "address": memory address (json-int)
1529- "size": memory size (json-int)
1530- "mem_type_64": true or false (json-bool)
1531- "prefetch": true or false (json-bool)
1532
1533Example:
1534
1535-> { "execute": "query-pci" }
1536<- {
1537 "return":[
1538 {
1539 "bus":0,
1540 "devices":[
1541 {
1542 "bus":0,
1543 "qdev_id":"",
1544 "slot":0,
1545 "class_info":{
1546 "class":1536,
1547 "desc":"Host bridge"
1548 },
1549 "id":{
1550 "device":32902,
1551 "vendor":4663
1552 },
1553 "function":0,
1554 "regions":[
1555
1556 ]
1557 },
1558 {
1559 "bus":0,
1560 "qdev_id":"",
1561 "slot":1,
1562 "class_info":{
1563 "class":1537,
1564 "desc":"ISA bridge"
1565 },
1566 "id":{
1567 "device":32902,
1568 "vendor":28672
1569 },
1570 "function":0,
1571 "regions":[
1572
1573 ]
1574 },
1575 {
1576 "bus":0,
1577 "qdev_id":"",
1578 "slot":1,
1579 "class_info":{
1580 "class":257,
1581 "desc":"IDE controller"
1582 },
1583 "id":{
1584 "device":32902,
1585 "vendor":28688
1586 },
1587 "function":1,
1588 "regions":[
1589 {
1590 "bar":4,
1591 "size":16,
1592 "address":49152,
1593 "type":"io"
1594 }
1595 ]
1596 },
1597 {
1598 "bus":0,
1599 "qdev_id":"",
1600 "slot":2,
1601 "class_info":{
1602 "class":768,
1603 "desc":"VGA controller"
1604 },
1605 "id":{
1606 "device":4115,
1607 "vendor":184
1608 },
1609 "function":0,
1610 "regions":[
1611 {
1612 "prefetch":true,
1613 "mem_type_64":false,
1614 "bar":0,
1615 "size":33554432,
1616 "address":4026531840,
1617 "type":"memory"
1618 },
1619 {
1620 "prefetch":false,
1621 "mem_type_64":false,
1622 "bar":1,
1623 "size":4096,
1624 "address":4060086272,
1625 "type":"memory"
1626 },
1627 {
1628 "prefetch":false,
1629 "mem_type_64":false,
1630 "bar":6,
1631 "size":65536,
1632 "address":-1,
1633 "type":"memory"
1634 }
1635 ]
1636 },
1637 {
1638 "bus":0,
1639 "qdev_id":"",
1640 "irq":11,
1641 "slot":4,
1642 "class_info":{
1643 "class":1280,
1644 "desc":"RAM controller"
1645 },
1646 "id":{
1647 "device":6900,
1648 "vendor":4098
1649 },
1650 "function":0,
1651 "regions":[
1652 {
1653 "bar":0,
1654 "size":32,
1655 "address":49280,
1656 "type":"io"
1657 }
1658 ]
1659 }
1660 ]
1661 }
1662 ]
1663 }
1664
1665Note: This example has been shortened as the real response is too long.
1666
1667EQMP
1668
Luiz Capitulino79627472011-10-21 14:15:33 -02001669 {
1670 .name = "query-pci",
1671 .args_type = "",
1672 .mhandler.cmd_new = qmp_marshal_input_query_pci,
1673 },
1674
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001675SQMP
1676query-kvm
1677---------
1678
1679Show KVM information.
1680
1681Return a json-object with the following information:
1682
1683- "enabled": true if KVM support is enabled, false otherwise (json-bool)
1684- "present": true if QEMU has KVM support, false otherwise (json-bool)
1685
1686Example:
1687
1688-> { "execute": "query-kvm" }
1689<- { "return": { "enabled": true, "present": true } }
1690
1691EQMP
1692
Luiz Capitulino292a2602011-09-12 15:10:53 -03001693 {
1694 .name = "query-kvm",
1695 .args_type = "",
1696 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
1697 },
1698
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001699SQMP
1700query-status
1701------------
1702
1703Return a json-object with the following information:
1704
1705- "running": true if the VM is running, or false if it is paused (json-bool)
1706- "singlestep": true if the VM is in single step mode,
1707 false otherwise (json-bool)
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03001708- "status": one of the following values (json-string)
1709 "debug" - QEMU is running on a debugger
1710 "inmigrate" - guest is paused waiting for an incoming migration
1711 "internal-error" - An internal error that prevents further guest
1712 execution has occurred
1713 "io-error" - the last IOP has failed and the device is configured
1714 to pause on I/O errors
1715 "paused" - guest has been paused via the 'stop' command
1716 "postmigrate" - guest is paused following a successful 'migrate'
1717 "prelaunch" - QEMU was started with -S and guest has not started
1718 "finish-migrate" - guest is paused to finish the migration process
1719 "restore-vm" - guest is paused to restore VM state
1720 "running" - guest is actively running
1721 "save-vm" - guest is paused to save the VM state
1722 "shutdown" - guest is shut down (and -no-shutdown is in use)
1723 "watchdog" - the watchdog action is configured to pause and
1724 has been triggered
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001725
1726Example:
1727
1728-> { "execute": "query-status" }
Luiz Capitulino9e37b9d2011-08-29 16:02:57 -03001729<- { "return": { "running": true, "singlestep": false, "status": "running" } }
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001730
1731EQMP
Luiz Capitulino1fa9a5e2011-09-12 17:54:20 -03001732
1733 {
1734 .name = "query-status",
1735 .args_type = "",
1736 .mhandler.cmd_new = qmp_marshal_input_query_status,
1737 },
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001738
1739SQMP
1740query-mice
1741----------
1742
1743Show VM mice information.
1744
1745Each mouse is represented by a json-object, the returned value is a json-array
1746of all mice.
1747
1748The mouse json-object contains the following:
1749
1750- "name": mouse's name (json-string)
1751- "index": mouse's index (json-int)
1752- "current": true if this mouse is receiving events, false otherwise (json-bool)
1753- "absolute": true if the mouse generates absolute input events (json-bool)
1754
1755Example:
1756
1757-> { "execute": "query-mice" }
1758<- {
1759 "return":[
1760 {
1761 "name":"QEMU Microsoft Mouse",
1762 "index":0,
1763 "current":false,
1764 "absolute":false
1765 },
1766 {
1767 "name":"QEMU PS/2 Mouse",
1768 "index":1,
1769 "current":true,
1770 "absolute":true
1771 }
1772 ]
1773 }
1774
1775EQMP
1776
Luiz Capitulinoe235cec2011-09-21 15:29:55 -03001777 {
1778 .name = "query-mice",
1779 .args_type = "",
1780 .mhandler.cmd_new = qmp_marshal_input_query_mice,
1781 },
1782
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001783SQMP
1784query-vnc
1785---------
1786
1787Show VNC server information.
1788
1789Return a json-object with server information. Connected clients are returned
1790as a json-array of json-objects.
1791
1792The main json-object contains the following:
1793
1794- "enabled": true or false (json-bool)
1795- "host": server's IP address (json-string)
1796- "family": address family (json-string)
1797 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1798- "service": server's port number (json-string)
1799- "auth": authentication method (json-string)
1800 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
1801 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
1802 "vencrypt+plain", "vencrypt+tls+none",
1803 "vencrypt+tls+plain", "vencrypt+tls+sasl",
1804 "vencrypt+tls+vnc", "vencrypt+x509+none",
1805 "vencrypt+x509+plain", "vencrypt+x509+sasl",
1806 "vencrypt+x509+vnc", "vnc"
1807- "clients": a json-array of all connected clients
1808
1809Clients are described by a json-object, each one contain the following:
1810
1811- "host": client's IP address (json-string)
1812- "family": address family (json-string)
1813 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1814- "service": client's port number (json-string)
1815- "x509_dname": TLS dname (json-string, optional)
1816- "sasl_username": SASL username (json-string, optional)
1817
1818Example:
1819
1820-> { "execute": "query-vnc" }
1821<- {
1822 "return":{
1823 "enabled":true,
1824 "host":"0.0.0.0",
1825 "service":"50402",
1826 "auth":"vnc",
1827 "family":"ipv4",
1828 "clients":[
1829 {
1830 "host":"127.0.0.1",
1831 "service":"50401",
1832 "family":"ipv4"
1833 }
1834 ]
1835 }
1836 }
1837
1838EQMP
1839
Luiz Capitulino2b54aa82011-10-17 16:41:22 -02001840 {
1841 .name = "query-vnc",
1842 .args_type = "",
1843 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
1844 },
1845
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001846SQMP
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01001847query-spice
1848-----------
1849
1850Show SPICE server information.
1851
1852Return a json-object with server information. Connected clients are returned
1853as a json-array of json-objects.
1854
1855The main json-object contains the following:
1856
1857- "enabled": true or false (json-bool)
1858- "host": server's IP address (json-string)
1859- "port": server's port number (json-int, optional)
1860- "tls-port": server's port number (json-int, optional)
1861- "auth": authentication method (json-string)
1862 - Possible values: "none", "spice"
1863- "channels": a json-array of all active channels clients
1864
1865Channels are described by a json-object, each one contain the following:
1866
1867- "host": client's IP address (json-string)
1868- "family": address family (json-string)
1869 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1870- "port": client's port number (json-string)
1871- "connection-id": spice connection id. All channels with the same id
1872 belong to the same spice session (json-int)
1873- "channel-type": channel type. "1" is the main control channel, filter for
1874 this one if you want track spice sessions only (json-int)
1875- "channel-id": channel id. Usually "0", might be different needed when
1876 multiple channels of the same type exist, such as multiple
1877 display channels in a multihead setup (json-int)
1878- "tls": whevener the channel is encrypted (json-bool)
1879
1880Example:
1881
1882-> { "execute": "query-spice" }
1883<- {
1884 "return": {
1885 "enabled": true,
1886 "auth": "spice",
1887 "port": 5920,
1888 "tls-port": 5921,
1889 "host": "0.0.0.0",
1890 "channels": [
1891 {
1892 "port": "54924",
1893 "family": "ipv4",
1894 "channel-type": 1,
1895 "connection-id": 1804289383,
1896 "host": "127.0.0.1",
1897 "channel-id": 0,
1898 "tls": true
1899 },
1900 {
1901 "port": "36710",
1902 "family": "ipv4",
1903 "channel-type": 4,
1904 "connection-id": 1804289383,
1905 "host": "127.0.0.1",
1906 "channel-id": 0,
1907 "tls": false
1908 },
1909 [ ... more channels follow ... ]
1910 ]
1911 }
1912 }
1913
1914EQMP
1915
Luiz Capitulinod1f29642011-10-20 17:01:33 -02001916#if defined(CONFIG_SPICE)
1917 {
1918 .name = "query-spice",
1919 .args_type = "",
1920 .mhandler.cmd_new = qmp_marshal_input_query_spice,
1921 },
1922#endif
1923
Gerd Hoffmanncb42a872010-11-30 11:02:51 +01001924SQMP
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001925query-name
1926----------
1927
1928Show VM name.
1929
1930Return a json-object with the following information:
1931
1932- "name": VM's name (json-string, optional)
1933
1934Example:
1935
1936-> { "execute": "query-name" }
1937<- { "return": { "name": "qemu-name" } }
1938
1939EQMP
1940
Anthony Liguori48a32be2011-09-02 12:34:48 -05001941 {
1942 .name = "query-name",
1943 .args_type = "",
1944 .mhandler.cmd_new = qmp_marshal_input_query_name,
1945 },
1946
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001947SQMP
1948query-uuid
1949----------
1950
1951Show VM UUID.
1952
1953Return a json-object with the following information:
1954
1955- "UUID": Universally Unique Identifier (json-string)
1956
1957Example:
1958
1959-> { "execute": "query-uuid" }
1960<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
1961
1962EQMP
1963
Luiz Capitulinoefab7672011-09-13 17:16:25 -03001964 {
1965 .name = "query-uuid",
1966 .args_type = "",
1967 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
1968 },
1969
Luiz Capitulino82a56f02010-09-13 12:26:00 -03001970SQMP
1971query-migrate
1972-------------
1973
1974Migration status.
1975
1976Return a json-object. If migration is active there will be another json-object
1977with RAM migration status and if block migration is active another one with
1978block migration status.
1979
1980The main json-object contains the following:
1981
1982- "status": migration status (json-string)
1983 - Possible values: "active", "completed", "failed", "cancelled"
1984- "ram": only present if "status" is "active", it is a json-object with the
1985 following RAM information (in bytes):
1986 - "transferred": amount transferred (json-int)
1987 - "remaining": amount remaining (json-int)
1988 - "total": total (json-int)
1989- "disk": only present if "status" is "active" and it is a block migration,
1990 it is a json-object with the following disk information (in bytes):
1991 - "transferred": amount transferred (json-int)
1992 - "remaining": amount remaining (json-int)
1993 - "total": total (json-int)
1994
1995Examples:
1996
19971. Before the first migration
1998
1999-> { "execute": "query-migrate" }
2000<- { "return": {} }
2001
20022. Migration is done and has succeeded
2003
2004-> { "execute": "query-migrate" }
2005<- { "return": { "status": "completed" } }
2006
20073. Migration is done and has failed
2008
2009-> { "execute": "query-migrate" }
2010<- { "return": { "status": "failed" } }
2011
20124. Migration is being performed and is not a block migration:
2013
2014-> { "execute": "query-migrate" }
2015<- {
2016 "return":{
2017 "status":"active",
2018 "ram":{
2019 "transferred":123,
2020 "remaining":123,
2021 "total":246
2022 }
2023 }
2024 }
2025
20265. Migration is being performed and is a block migration:
2027
2028-> { "execute": "query-migrate" }
2029<- {
2030 "return":{
2031 "status":"active",
2032 "ram":{
2033 "total":1057024,
2034 "remaining":1053304,
2035 "transferred":3720
2036 },
2037 "disk":{
2038 "total":20971520,
2039 "remaining":20880384,
2040 "transferred":91136
2041 }
2042 }
2043 }
2044
2045EQMP
2046
Luiz Capitulino791e7c82011-09-13 17:37:16 -03002047 {
2048 .name = "query-migrate",
2049 .args_type = "",
2050 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
2051 },
2052
Luiz Capitulino82a56f02010-09-13 12:26:00 -03002053SQMP
2054query-balloon
2055-------------
2056
2057Show balloon information.
2058
2059Make an asynchronous request for balloon info. When the request completes a
2060json-object will be returned containing the following data:
2061
2062- "actual": current balloon value in bytes (json-int)
2063- "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional)
2064- "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional)
2065- "major_page_faults": Number of major faults (json-int, optional)
2066- "minor_page_faults": Number of minor faults (json-int, optional)
2067- "free_mem": Total amount of free and unused memory in
2068 bytes (json-int, optional)
2069- "total_mem": Total amount of available memory in bytes (json-int, optional)
2070
2071Example:
2072
2073-> { "execute": "query-balloon" }
2074<- {
2075 "return":{
2076 "actual":1073741824,
2077 "mem_swapped_in":0,
2078 "mem_swapped_out":0,
2079 "major_page_faults":142,
2080 "minor_page_faults":239245,
2081 "free_mem":1014185984,
2082 "total_mem":1044668416
2083 }
2084 }
2085
2086EQMP
2087
Luiz Capitulino96637bc2011-10-21 11:41:37 -02002088 {
2089 .name = "query-balloon",
2090 .args_type = "",
2091 .mhandler.cmd_new = qmp_marshal_input_query_balloon,
2092 },
Anthony Liguorib4b12c62011-12-12 14:29:34 -06002093
2094 {
Stefan Hajnoczifb5458c2012-01-18 14:40:49 +00002095 .name = "query-block-jobs",
2096 .args_type = "",
2097 .mhandler.cmd_new = qmp_marshal_input_query_block_jobs,
2098 },
2099
2100 {
Anthony Liguorib4b12c62011-12-12 14:29:34 -06002101 .name = "qom-list",
2102 .args_type = "path:s",
2103 .mhandler.cmd_new = qmp_marshal_input_qom_list,
2104 },
Anthony Liguorieb6e8ea2011-12-12 14:29:35 -06002105
2106 {
2107 .name = "qom-set",
2108 .args_type = "path:s,property:s,opts:O",
2109 .mhandler.cmd_new = qmp_qom_set,
2110 },
2111
2112 {
2113 .name = "qom-get",
2114 .args_type = "path:s,property:s",
2115 .mhandler.cmd_new = qmp_qom_get,
2116 },
Luiz Capitulino270b2432011-12-08 11:45:55 -02002117
2118 {
2119 .name = "change-vnc-password",
2120 .args_type = "password:s",
2121 .mhandler.cmd_new = qmp_marshal_input_change_vnc_password,
2122 },
Anthony Liguori5eeee3f2011-12-22 14:40:54 -06002123 {
2124 .name = "qom-list-types",
2125 .args_type = "implements:s?,abstract:b?",
2126 .mhandler.cmd_new = qmp_marshal_input_qom_list_types,
2127 },