1 HXCOMM Use
DEFHEADING() to define headings
in both help text and rST
.
2 HXCOMM Text between SRST and ERST is copied to the rST version and
3 HXCOMM discarded from C version
.
4 HXCOMM
DEF(command
, args
, callback, arg_string
, help
) is used to construct
5 HXCOMM monitor commands
6 HXCOMM HXCOMM can be used
for comments
, discarded from both rST and C
.
11 .args_type
= "name:S?",
13 .help
= "show the help",
19 ``help`` or ``?``
[*cmd
*]
20 Show the help
for all commands or just
for command
*cmd
*.
25 .args_type
= "device:B",
26 .params
= "device|all",
27 .help
= "commit changes to the disk images (if -snapshot is used) or backing files",
33 Commit changes to the disk
images (if -snapshot is used
) or backing files
.
34 If the backing file is smaller than the snapshot
, then the backing file
35 will be resized to be the same size as the snapshot
. If the snapshot is
36 smaller than the backing file
, the backing file will not be truncated
.
37 If you want the backing file to match the size of the smaller snapshot
,
38 you can safely truncate it yourself once the commit operation successfully
46 .help
= "quit the emulator",
57 .name
= "exit_preconfig",
60 .help
= "exit the preconfig state",
61 .cmd
= hmp_exit_preconfig
,
67 This command makes QEMU exit the preconfig state and proceed with
68 VM initialization
using configuration data provided on the command line
69 and via the QMP monitor during the preconfig state
. The command is only
70 available during the preconfig
state (i
.e
. when the
--preconfig command
71 line option was
in use
).
75 .name
= "block_resize",
76 .args_type
= "device:B,size:o",
77 .params
= "device size",
78 .help
= "resize a block image",
79 .cmd
= hmp_block_resize
,
85 Resize a block image
while a guest is running
. Usually requires guest
86 action to see the updated size
. Resize to a lower size is supported
,
87 but should be used with extreme caution
. Note that
this command only
88 resizes image files
, it can not resize block devices like LVM volumes
.
92 .name
= "block_stream",
93 .args_type
= "device:B,speed:o?,base:s?",
94 .params
= "device [speed [base]]",
95 .help
= "copy data from a backing file into a block device",
96 .cmd
= hmp_block_stream
,
101 Copy data from a backing file into a block device
.
105 .name
= "block_job_set_speed",
106 .args_type
= "device:B,speed:o",
107 .params
= "device speed",
108 .help
= "set maximum speed for a background block operation",
109 .cmd
= hmp_block_job_set_speed
,
113 ``block_job_set_speed``
114 Set maximum speed
for a background block operation
.
118 .name
= "block_job_cancel",
119 .args_type
= "force:-f,device:B",
120 .params
= "[-f] device",
121 .help
= "stop an active background block operation (use -f"
122 "\n\t\t\t if you want to abort the operation immediately"
123 "\n\t\t\t instead of keep running until data is in sync)",
124 .cmd
= hmp_block_job_cancel
,
129 Stop an active background block
operation (streaming
, mirroring
).
133 .name
= "block_job_complete",
134 .args_type
= "device:B",
136 .help
= "stop an active background block operation",
137 .cmd
= hmp_block_job_complete
,
141 ``block_job_complete``
142 Manually trigger completion of an active background block operation
.
143 For mirroring
, this will
switch the device to the destination path
.
147 .name
= "block_job_pause",
148 .args_type
= "device:B",
150 .help
= "pause an active background block operation",
151 .cmd
= hmp_block_job_pause
,
156 Pause an active block streaming operation
.
160 .name
= "block_job_resume",
161 .args_type
= "device:B",
163 .help
= "resume a paused background block operation",
164 .cmd
= hmp_block_job_resume
,
169 Resume a paused block streaming operation
.
174 .args_type
= "force:-f,device:B",
175 .params
= "[-f] device",
176 .help
= "eject a removable medium (use -f to force it)",
181 ``eject
[-f
]``
*device
*
182 Eject a removable
medium (use
-f to force it
).
189 .help
= "remove host block device",
190 .cmd
= hmp_drive_del
,
194 ``drive_del``
*device
*
195 Remove host block device
. The result is that guest generated IO is no longer
196 submitted against the host device underlying the disk
. Once a drive has
197 been deleted
, the QEMU Block layer returns
-EIO which results
in IO
198 errors
in the guest
for applications that are reading
/writing to the device
.
199 These errors are always reported to the guest
, regardless of the drive
's error
200 actions (drive options rerror, werror).
205 .args_type = "device:B,force:-f,target:F,arg:s?,read-only-mode:s?",
206 .params = "device [-f] filename [format [read-only-mode]]",
207 .help = "change a removable medium, optional format, use -f to force the operation",
212 ``change`` *device* *setting*
213 Change the configuration of a device.
215 ``change`` *diskdevice* [-f] *filename* [*format* [*read-only-mode*]]
216 Change the medium for a removable disk device to point to *filename*. eg::
218 (qemu) change ide1-cd0 /path/to/some.iso
221 forces the operation even if the guest has locked the tray.
223 *format* is optional.
225 *read-only-mode* may be used to change the read-only status of the device.
226 It accepts the following values:
229 Retains the current status; this is the default.
232 Makes the device read-only.
235 Makes the device writable.
237 ``change vnc password`` [*password*]
239 Change the password associated with the VNC server. If the new password
240 is not supplied, the monitor will prompt for it to be entered. VNC
241 passwords are only significant up to 8 letters. eg::
243 (qemu) change vnc password
249 .name = "screendump",
250 .args_type = "filename:F,format:-fs,device:s?,head:i?",
251 .params = "filename [-f format] [device [head]]",
252 .help = "save screen from head 'head
' of display device 'device
'"
253 "in specified format 'format
' as image 'filename
'."
254 "Currently only 'png
' and 'ppm
' formats are supported.",
255 .cmd = hmp_screendump,
260 ``screendump`` *filename*
261 Save screen into PPM image *filename*.
266 .args_type = "filename:F",
267 .params = "filename",
268 .help = "output logs to 'filename
'",
273 ``logfile`` *filename*
274 Output logs to *filename*.
278 .name = "trace-event",
279 .args_type = "name:s,option:b,vcpu:i?",
280 .params = "name on|off [vcpu]",
281 .help = "changes status of a specific trace event "
282 "(vcpu: vCPU to set, default is all)",
283 .cmd = hmp_trace_event,
284 .command_completion = trace_event_completion,
289 changes status of a trace event
292 #if defined(CONFIG_TRACE_SIMPLE)
294 .name = "trace-file",
295 .args_type = "op:s?,arg:F?",
296 .params = "on|off|flush|set [arg]",
297 .help = "open, close, or flush trace file, or set a new file name",
298 .cmd = hmp_trace_file,
302 ``trace-file on|off|flush``
303 Open, close, or flush the trace file. If no argument is given, the
304 status of the trace file is displayed.
310 .args_type = "items:s",
311 .params = "item1[,...]",
312 .help = "activate logging of the specified items",
317 ``log`` *item1*\ [,...]
318 Activate logging of the specified items.
323 .args_type = "name:s?",
325 .help = "save a VM snapshot. If no tag is provided, a new snapshot is created",
331 Create a snapshot of the whole virtual machine. If *tag* is
332 provided, it is used as human readable identifier. If there is already
333 a snapshot with the same tag, it is replaced. More info at
334 :ref:`vm_005fsnapshots`.
336 Since 4.0, savevm stopped allowing the snapshot id to be set, accepting
337 only *tag* as parameter.
342 .args_type = "name:s",
344 .help = "restore a VM snapshot from its tag",
346 .command_completion = loadvm_completion,
351 Set the whole virtual machine to the snapshot identified by the tag
354 Since 4.0, loadvm stopped accepting snapshot id as parameter.
359 .args_type = "name:s",
361 .help = "delete a VM snapshot from its tag",
363 .command_completion = delvm_completion,
368 Delete the snapshot identified by *tag*.
370 Since 4.0, delvm stopped deleting snapshots by snapshot id, accepting
371 only *tag* as parameter.
375 .name = "singlestep",
376 .args_type = "option:s?",
377 .params = "[on|off]",
378 .help = "run emulation in singlestep mode or switch to normal mode",
379 .cmd = hmp_singlestep,
384 Run the emulation in single step mode.
385 If called with option off, the emulation returns to normal mode.
392 .help = "stop emulation",
405 .help = "resume emulation",
415 .name = "system_wakeup",
418 .help = "wakeup guest from suspend",
419 .cmd = hmp_system_wakeup,
424 Wakeup guest from suspend.
429 .args_type = "device:s?",
430 .params = "[device]",
431 .help = "start gdbserver on given device (default 'tcp
::1234'), stop with 'none
'",
432 .cmd = hmp_gdbserver,
436 ``gdbserver`` [*port*]
437 Start gdbserver session (default *port*\=1234)
442 .args_type = "fmt:/,addr:l",
443 .params = "/fmt addr",
444 .help = "virtual memory dump starting at 'addr
'",
445 .cmd = hmp_memory_dump,
450 Virtual memory dump starting at *addr*.
455 .args_type = "fmt:/,addr:l",
456 .params = "/fmt addr",
457 .help = "physical memory dump starting at 'addr
'",
458 .cmd = hmp_physical_memory_dump,
462 ``xp /``\ *fmt* *addr*
463 Physical memory dump starting at *addr*.
465 *fmt* is a format which tells the command how to format the
466 data. Its syntax is: ``/{count}{format}{size}``
469 is the number of items to be dumped.
471 can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
472 c (char) or i (asm instruction).
474 can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
475 ``h`` or ``w`` can be specified with the ``i`` format to
476 respectively select 16 or 32 bit code instruction size.
480 Dump 10 instructions at the current instruction pointer::
485 0x90107065: lea 0x0(%esi,1),%esi
486 0x90107069: lea 0x0(%edi,1),%edi
488 0x90107071: jmp 0x90107080
494 Dump 80 16 bit values at the start of the video memory::
496 (qemu) xp/80hx 0xb8000
497 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
498 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
499 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
500 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
501 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
502 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
503 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
504 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
505 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
506 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
512 .args_type = "addr:l",
514 .help = "print the host virtual address corresponding to a guest physical address",
520 Print the host virtual address at which the guest's physical address
*addr
*
527 .args_type
= "addr:l",
529 .help
= "print the host physical address corresponding to a guest physical address",
536 Print the host physical address at which the guest
's physical address *addr*
542 .args_type = "addr:l",
544 .help = "print the guest physical address corresponding to a guest virtual address",
550 Print the guest physical address at which the guest's virtual address
*addr
*
551 is mapped based on the mapping
for the current CPU
.
556 .args_type
= "fmt:/,val:l",
557 .params
= "/fmt expr",
558 .help
= "print expression value (use $reg for CPU register access)",
563 ``print`` or ``p
/``\
*fmt
* *expr
*
564 Print expression value
. Only the
*format
* part of
*fmt
* is
570 .args_type
= "fmt:/,addr:i,index:i.",
571 .params
= "/fmt addr",
572 .help
= "I/O port read",
573 .cmd
= hmp_ioport_read
,
577 ``i
/``\
*fmt
* *addr
* [.\
*index
*\
]
583 .args_type
= "fmt:/,addr:i,val:i",
584 .params
= "/fmt addr value",
585 .help
= "I/O port write",
586 .cmd
= hmp_ioport_write
,
590 ``o
/``\
*fmt
* *addr
* *val
*
596 .args_type
= "keys:s,hold-time:i?",
597 .params
= "keys [hold_ms]",
598 .help
= "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
600 .command_completion
= sendkey_completion
,
605 Send
*keys
* to the guest
. *keys
* could be the name of the
606 key or the raw value
in hexadecimal format
. Use ``
-`` to press
607 several keys simultaneously
. Example
::
611 This command is useful to send keys that your graphical user
interface
612 intercepts at low level
, such as ``ctrl
-alt
-f1``
in X Window
.
615 .name
= "sync-profile",
616 .args_type
= "op:s?",
617 .params
= "[on|off|reset]",
618 .help
= "enable, disable or reset synchronization profiling. "
619 "With no arguments, prints whether profiling is on or off.",
620 .cmd
= hmp_sync_profile
,
624 ``sync
-profile
[on|off|reset
]``
625 Enable
, disable or reset synchronization profiling
. With no arguments
, prints
626 whether profiling is on or off
.
630 .name
= "system_reset",
633 .help
= "reset the system",
634 .cmd
= hmp_system_reset
,
643 .name
= "system_powerdown",
646 .help
= "send system power down event",
647 .cmd
= hmp_system_powerdown
,
652 Power down the
system (if supported
).
657 .args_type
= "start:i,size:i",
658 .params
= "addr size",
659 .help
= "compute the checksum of a memory region",
664 ``sum``
*addr
* *size
*
665 Compute the checksum of a memory region
.
669 .name
= "device_add",
670 .args_type
= "device:O",
671 .params
= "driver[,prop=value][,...]",
672 .help
= "add device, like -device on the command line",
673 .cmd
= hmp_device_add
,
674 .command_completion
= device_add_completion
,
678 ``device_add``
*config
*
683 .name
= "device_del",
686 .help
= "remove device",
687 .cmd
= hmp_device_del
,
688 .command_completion
= device_del_completion
,
693 Remove device
*id
*. *id
* may be a short ID
694 or a QOM object path
.
699 .args_type
= "index:i",
701 .help
= "set the default CPU",
711 .name
= "mouse_move",
712 .args_type
= "dx_str:s,dy_str:s,dz_str:s?",
713 .params
= "dx dy [dz]",
714 .help
= "send mouse move events",
715 .cmd
= hmp_mouse_move
,
719 ``mouse_move``
*dx
* *dy
* [*dz
*]
720 Move the active mouse to the specified coordinates
*dx
* *dy
*
721 with optional scroll axis
*dz
*.
725 .name
= "mouse_button",
726 .args_type
= "button_state:i",
728 .help
= "change mouse button state (1=L, 2=M, 4=R)",
729 .cmd
= hmp_mouse_button
,
733 ``mouse_button``
*val
*
734 Change the active mouse button state
*val
* (1=L
, 2=M
, 4=R
).
739 .args_type
= "index:i",
741 .help
= "set which mouse device receives events",
742 .cmd
= hmp_mouse_set
,
746 ``mouse_set``
*index
*
747 Set which mouse device receives events at given
*index
*, index
748 can be obtained with
::
755 .name
= "wavcapture",
756 .args_type
= "path:F,audiodev:s,freq:i?,bits:i?,nchannels:i?",
757 .params
= "path audiodev [frequency [bits [channels]]]",
758 .help
= "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
759 .cmd
= hmp_wavcapture
,
762 ``wavcapture``
*filename
* *audiodev
* [*frequency
* [*bits
* [*channels
*]]]
763 Capture audio into
*filename
* from
*audiodev
*, using sample rate
764 *frequency
* bits per sample
*bits
* and number of channels
769 - Sample rate
= 44100 Hz
- CD quality
771 - Number of channels
= 2 - Stereo
775 .name
= "stopcapture",
777 .params
= "capture index",
778 .help
= "stop capture",
779 .cmd
= hmp_stopcapture
,
782 ``stopcapture``
*index
*
783 Stop capture with a given
*index
*, index can be obtained with
::
791 .args_type
= "val:l,size:i,filename:s",
792 .params
= "addr size file",
793 .help
= "save to disk virtual memory dump starting at 'addr' of size 'size'",
798 ``memsave``
*addr
* *size
* *file
*
799 save to disk virtual memory dump starting at
*addr
* of size
*size
*.
804 .args_type
= "val:l,size:i,filename:s",
805 .params
= "addr size file",
806 .help
= "save to disk physical memory dump starting at 'addr' of size 'size'",
811 ``pmemsave``
*addr
* *size
* *file
*
812 save to disk physical memory dump starting at
*addr
* of size
*size
*.
817 .args_type
= "bootdevice:s",
818 .params
= "bootdevice",
819 .help
= "define new values for the boot device list",
824 ``boot_set``
*bootdevicelist
*
825 Define
new values
for the boot device list
. Those values will
override
826 the values specified on the command line through the ``
-boot`` option
.
828 The values that can be specified
here depend on the machine type
, but are
829 the same that can be specified
in the ``
-boot`` command line option
.
836 .help
= "inject an NMI",
841 Inject an NMI on the
default CPU (x86
/s390
) or all
CPUs (ppc64
).
845 .name
= "ringbuf_write",
846 .args_type
= "device:s,data:s",
847 .params
= "device data",
848 .help
= "Write to a ring buffer character device",
849 .cmd
= hmp_ringbuf_write
,
850 .command_completion
= ringbuf_write_completion
,
854 ``ringbuf_write``
*device
* *data
*
855 Write
*data
* to ring buffer character device
*device
*.
856 *data
* must be a UTF
-8 string
.
860 .name
= "ringbuf_read",
861 .args_type
= "device:s,size:i",
862 .params
= "device size",
863 .help
= "Read from a ring buffer character device",
864 .cmd
= hmp_ringbuf_read
,
865 .command_completion
= ringbuf_write_completion
,
869 ``ringbuf_read``
*device
*
870 Read and print up to
*size
* bytes from ring buffer character
872 Certain non
-printable characters are printed ``\uXXXX``
, where ``XXXX`` is the
873 character code
in hexadecimal
. Character ``\`` is printed ``
\\``
.
874 Bug
: can screw up when the buffer contains invalid UTF
-8 sequences
,
875 NUL characters
, after the ring buffer lost data
, and when reading
876 stops because the size limit is reached
.
880 .name
= "announce_self",
881 .args_type
= "interfaces:s?,id:s?",
882 .params
= "[interfaces] [id]",
883 .help
= "Trigger GARP/RARP announcements",
884 .cmd
= hmp_announce_self
,
889 Trigger a round of GARP
/RARP broadcasts
; this is useful
for explicitly
890 updating the network infrastructure after a reconfiguration or some forms
891 of migration
. The timings of the round are set by the migration announce
892 parameters
. An optional comma separated
*interfaces
* list restricts the
893 announce to the named set of interfaces
. An optional
*id
* can be used to
894 start a separate announce timer and to change the parameters of it later
.
899 .args_type
= "detach:-d,blk:-b,inc:-i,resume:-r,uri:s",
900 .params
= "[-d] [-b] [-i] [-r] uri",
901 .help
= "migrate to URI (using -d to not wait for completion)"
902 "\n\t\t\t -b for migration without shared storage with"
903 " full copy of disk\n\t\t\t -i for migration without "
904 "shared storage with incremental copy of disk "
905 "(base image shared between src and destination)"
906 "\n\t\t\t -r to resume a paused migration",
912 ``migrate
[-d
] [-b
] [-i
]``
*uri
*
913 Migrate to
*uri
* (using -d to not wait
for completion
).
916 for migration with full copy of disk
918 for migration with incremental copy of
disk (base image is shared
)
922 .name
= "migrate_cancel",
925 .help
= "cancel the current VM migration",
926 .cmd
= hmp_migrate_cancel
,
931 Cancel the current VM migration
.
935 .name
= "migrate_continue",
936 .args_type
= "state:s",
938 .help
= "Continue migration from the given paused state",
939 .cmd
= hmp_migrate_continue
,
942 ``migrate_continue``
*state
*
943 Continue migration from the paused state
*state
*
947 .name
= "migrate_incoming",
948 .args_type
= "uri:s",
950 .help
= "Continue an incoming migration from an -incoming defer",
951 .cmd
= hmp_migrate_incoming
,
955 ``migrate_incoming``
*uri
*
956 Continue an incoming migration
using the
*uri
* (that has the same syntax
957 as the ``
-incoming`` option
).
961 .name
= "migrate_recover",
962 .args_type
= "uri:s",
964 .help
= "Continue a paused incoming postcopy migration",
965 .cmd
= hmp_migrate_recover
,
969 ``migrate_recover``
*uri
*
970 Continue a paused incoming postcopy migration
using the
*uri
*.
974 .name
= "migrate_pause",
977 .help
= "Pause an ongoing migration (postcopy-only)",
978 .cmd
= hmp_migrate_pause
,
983 Pause an ongoing migration
. Currently it only supports postcopy
.
987 .name
= "migrate_set_capability",
988 .args_type
= "capability:s,state:b",
989 .params
= "capability state",
990 .help
= "Enable/Disable the usage of a capability for migration",
991 .cmd
= hmp_migrate_set_capability
,
992 .command_completion
= migrate_set_capability_completion
,
996 ``migrate_set_capability``
*capability
* *state
*
997 Enable
/Disable the usage of a capability
*capability
* for migration
.
1001 .name
= "migrate_set_parameter",
1002 .args_type
= "parameter:s,value:s",
1003 .params
= "parameter value",
1004 .help
= "Set the parameter for migration",
1005 .cmd
= hmp_migrate_set_parameter
,
1006 .command_completion
= migrate_set_parameter_completion
,
1010 ``migrate_set_parameter``
*parameter
* *value
*
1011 Set the parameter
*parameter
* for migration
.
1015 .name
= "migrate_start_postcopy",
1018 .help
= "Followup to a migration command to switch the migration"
1019 " to postcopy mode. The postcopy-ram capability must "
1020 "be set on both source and destination before the "
1021 "original migration command .",
1022 .cmd
= hmp_migrate_start_postcopy
,
1026 ``migrate_start_postcopy``
1027 Switch
in-progress migration to postcopy mode
. Ignored after the end of
1028 migration (or once already
in postcopy
).
1032 .name
= "x_colo_lost_heartbeat",
1035 .help
= "Tell COLO that heartbeat is lost,\n\t\t\t"
1036 "a failover or takeover is needed.",
1037 .cmd
= hmp_x_colo_lost_heartbeat
,
1041 ``x_colo_lost_heartbeat``
1042 Tell COLO that heartbeat is lost
, a failover or takeover is needed
.
1046 .name
= "client_migrate_info",
1047 .args_type
= "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
1048 .params
= "protocol hostname port tls-port cert-subject",
1049 .help
= "set migration information for remote display",
1050 .cmd
= hmp_client_migrate_info
,
1054 ``client_migrate_info``
*protocol
* *hostname
* *port
* *tls
-port
* *cert
-subject
*
1055 Set migration information
for remote display
. This makes the server
1056 ask the client to automatically reconnect
using the
new parameters
1057 once migration finished successfully
. Only implemented
for SPICE
.
1061 .name
= "dump-guest-memory",
1062 .args_type
= "paging:-p,detach:-d,windmp:-w,zlib:-z,lzo:-l,snappy:-s,filename:F,begin:l?,length:l?",
1063 .params
= "[-p] [-d] [-z|-l|-s|-w] filename [begin length]",
1064 .help
= "dump guest memory into file 'filename'.\n\t\t\t"
1065 "-p: do paging to get guest's memory mapping.\n\t\t\t"
1066 "-d: return immediately (do not wait for completion).\n\t\t\t"
1067 "-z: dump in kdump-compressed format, with zlib compression.\n\t\t\t"
1068 "-l: dump in kdump-compressed format, with lzo compression.\n\t\t\t"
1069 "-s: dump in kdump-compressed format, with snappy compression.\n\t\t\t"
1070 "-w: dump in Windows crashdump format (can be used instead of ELF-dump converting),\n\t\t\t"
1071 " for Windows x86 and x64 guests with vmcoreinfo driver only.\n\t\t\t"
1072 "begin: the starting physical address.\n\t\t\t"
1073 "length: the memory size, in bytes.",
1074 .cmd
= hmp_dump_guest_memory
,
1078 ``dump
-guest
-memory
[-p
]``
*filename
* *begin
* *length
*
1080 ``dump
-guest
-memory
[-z|
-l|
-s|
-w
]``
*filename
*
1081 Dump guest memory to
*protocol
*. The file can be processed with crash or
1082 gdb
. Without ``
-z|
-l|
-s|
-w``
, the dump format is ELF
.
1085 do paging to get guest
's memory mapping.
1087 dump in kdump-compressed format, with zlib compression.
1089 dump in kdump-compressed format, with lzo compression.
1091 dump in kdump-compressed format, with snappy compression.
1093 dump in Windows crashdump format (can be used instead of ELF-dump converting),
1094 for Windows x64 guests with vmcoreinfo driver only
1098 the starting physical address. It's optional
, and should be
1099 specified together with
*length
*.
1101 the memory size
, in bytes
. It
's optional, and should be specified
1102 together with *begin*.
1106 #if defined(TARGET_S390X)
1108 .name = "dump-skeys",
1109 .args_type = "filename:F",
1111 .help = "Save guest storage keys into file 'filename
'.\n",
1112 .cmd = hmp_dump_skeys,
1117 ``dump-skeys`` *filename*
1118 Save guest storage keys to a file.
1121 #if defined(TARGET_S390X)
1123 .name = "migration_mode",
1124 .args_type = "mode:i",
1126 .help = "Enables or disables migration mode\n",
1127 .cmd = hmp_migrationmode,
1132 ``migration_mode`` *mode*
1133 Enables or disables migration mode.
1137 .name = "snapshot_blkdev",
1138 .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?",
1139 .params = "[-n] device [new-image-file] [format]",
1140 .help = "initiates a live snapshot\n\t\t\t"
1141 "of device. If a new image file is specified, the\n\t\t\t"
1142 "new image file will become the new root image.\n\t\t\t"
1143 "If format is specified, the snapshot file will\n\t\t\t"
1144 "be created in that format.\n\t\t\t"
1145 "The default format is qcow2. The -n flag requests QEMU\n\t\t\t"
1146 "to reuse the image found in new-image-file, instead of\n\t\t\t"
1147 "recreating it from scratch.",
1148 .cmd = hmp_snapshot_blkdev,
1153 Snapshot device, using snapshot file as target if provided
1157 .name = "snapshot_blkdev_internal",
1158 .args_type = "device:B,name:s",
1159 .params = "device name",
1160 .help = "take an internal snapshot of device.\n\t\t\t"
1161 "The format of the image used by device must\n\t\t\t"
1162 "support it, such as qcow2.\n\t\t\t",
1163 .cmd = hmp_snapshot_blkdev_internal,
1167 ``snapshot_blkdev_internal``
1168 Take an internal snapshot on device if it support
1172 .name = "snapshot_delete_blkdev_internal",
1173 .args_type = "device:B,name:s,id:s?",
1174 .params = "device name [id]",
1175 .help = "delete an internal snapshot of device.\n\t\t\t"
1176 "If id is specified, qemu will try delete\n\t\t\t"
1177 "the snapshot matching both id and name.\n\t\t\t"
1178 "The format of the image used by device must\n\t\t\t"
1179 "support it, such as qcow2.\n\t\t\t",
1180 .cmd = hmp_snapshot_delete_blkdev_internal,
1184 ``snapshot_delete_blkdev_internal``
1185 Delete an internal snapshot on device if it support
1189 .name = "drive_mirror",
1190 .args_type = "reuse:-n,full:-f,device:B,target:s,format:s?",
1191 .params = "[-n] [-f] device target [format]",
1192 .help = "initiates live storage\n\t\t\t"
1193 "migration for a device. The device's contents are
\n\t\t\t"
1194 "copied to the
new image file
, including data that
\n\t\t\t"
1195 "is written after the command is started
.\n\t\t\t"
1196 "The
-n flag requests QEMU to reuse the image found
\n\t\t\t"
1197 "in new-image
-file
, instead of recreating it from scratch
.\n\t\t\t"
1198 "The
-f flag requests QEMU to copy the whole disk
,\n\t\t\t"
1199 "so that the result does not need a backing file
.\n\t\t\t",
1200 .cmd = hmp_drive_mirror,
1204 Start mirroring a block device's writes to a new destination,
1205 using the specified target.
1209 .name = "drive_backup
",
1210 .args_type = "reuse
:-n
,full
:-f
,compress
:-c
,device
:B
,target
:s
,format
:s?
",
1211 .params = "[-n
] [-f
] [-c
] device target
[format
]",
1212 .help = "initiates a point
-in-time
\n\t\t\t"
1213 "copy
for a device
. The device
's contents are\n\t\t\t"
1214 "copied to the new image file, excluding data that\n\t\t\t"
1215 "is written after the command is started.\n\t\t\t"
1216 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1217 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1218 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
1219 "so that the result does not need a backing file.\n\t\t\t"
1220 "The -c flag requests QEMU to compress backup data\n\t\t\t"
1221 "(if the target format supports it).\n\t\t\t",
1222 .cmd = hmp_drive_backup,
1226 Start a point-in-time copy of a block device to a specified target.
1230 .name = "drive_add",
1231 .args_type = "node:-n,pci_addr:s,opts:s",
1232 .params = "[-n] [[<domain>:]<bus>:]<slot>\n"
1233 "[file=file][,if=type][,bus=n]\n"
1234 "[,unit=m][,media=d][,index=i]\n"
1235 "[,snapshot=on|off][,cache=on|off]\n"
1236 "[,readonly=on|off][,copy-on-read=on|off]",
1237 .help = "add drive to PCI storage controller",
1238 .cmd = hmp_drive_add,
1243 Add drive to PCI storage controller.
1247 .name = "pcie_aer_inject_error",
1248 .args_type = "advisory_non_fatal:-a,correctable:-c,"
1249 "id:s,error_status:s,"
1250 "header0:i?,header1:i?,header2:i?,header3:i?,"
1251 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
1252 .params = "[-a] [-c] id "
1253 "<error_status> [<tlp header> [<tlp header prefix>]]",
1254 .help = "inject pcie aer error\n\t\t\t"
1255 " -a for advisory non fatal error\n\t\t\t"
1256 " -c for correctable error\n\t\t\t"
1257 "<id> = qdev device id\n\t\t\t"
1258 "<error_status> = error string or 32bit\n\t\t\t"
1259 "<tlp header> = 32bit x 4\n\t\t\t"
1260 "<tlp header prefix> = 32bit x 4",
1261 .cmd = hmp_pcie_aer_inject_error,
1265 ``pcie_aer_inject_error``
1266 Inject PCIe AER error
1270 .name = "netdev_add",
1271 .args_type = "netdev:O",
1272 .params = "[user|tap|socket|vde|bridge|hubport|netmap|vhost-user"
1274 "|vmnet-host|vmnet-shared|vmnet-bridged"
1276 "],id=str[,prop=value][,...]",
1277 .help = "add host network device",
1278 .cmd = hmp_netdev_add,
1279 .command_completion = netdev_add_completion,
1285 Add host network device.
1289 .name = "netdev_del",
1290 .args_type = "id:s",
1292 .help = "remove host network device",
1293 .cmd = hmp_netdev_del,
1294 .command_completion = netdev_del_completion,
1300 Remove host network device.
1304 .name = "object_add",
1305 .args_type = "object:S",
1306 .params = "[qom-type=]type,id=str[,prop=value][,...]",
1307 .help = "create QOM object",
1308 .cmd = hmp_object_add,
1309 .command_completion = object_add_completion,
1319 .name = "object_del",
1320 .args_type = "id:s",
1322 .help = "destroy QOM object",
1323 .cmd = hmp_object_del,
1324 .command_completion = object_del_completion,
1335 .name = "hostfwd_add",
1336 .args_type = "arg1:s,arg2:s?",
1337 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
1338 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
1339 .cmd = hmp_hostfwd_add,
1344 Redirect TCP or UDP connections from host to guest (requires -net user).
1349 .name = "hostfwd_remove",
1350 .args_type = "arg1:s,arg2:s?",
1351 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport",
1352 .help = "remove host-to-guest TCP or UDP redirection",
1353 .cmd = hmp_hostfwd_remove,
1359 Remove host-to-guest TCP or UDP redirection.
1364 .args_type = "value:M",
1366 .help = "request VM to change its memory allocation (in MB)",
1372 Request VM to change its memory allocation to *value* (in MB).
1377 .args_type = "name:s,up:b",
1378 .params = "name on|off",
1379 .help = "change the link status of a network adapter",
1380 .cmd = hmp_set_link,
1381 .command_completion = set_link_completion,
1385 ``set_link`` *name* ``[on|off]``
1386 Switch link *name* on (i.e. up) or off (i.e. down).
1390 .name = "watchdog_action",
1391 .args_type = "action:s",
1392 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1393 .help = "change watchdog action",
1394 .cmd = hmp_watchdog_action,
1395 .command_completion = watchdog_action_completion,
1400 Change watchdog action.
1404 .name = "nbd_server_start",
1405 .args_type = "all:-a,writable:-w,uri:s",
1406 .params = "nbd_server_start [-a] [-w] host:port",
1407 .help = "serve block devices on the given host and port",
1408 .cmd = hmp_nbd_server_start,
1411 ``nbd_server_start`` *host*:*port*
1412 Start an NBD server on the given host and/or port. If the ``-a``
1413 option is included, all of the virtual machine's block devices that
1414 have an inserted media on them are automatically exported
; in this case,
1415 the ``
-w`` option makes the devices writable too
.
1419 .name
= "nbd_server_add",
1420 .args_type
= "writable:-w,device:B,name:s?",
1421 .params
= "nbd_server_add [-w] device [name]",
1422 .help
= "export a block device via NBD",
1423 .cmd
= hmp_nbd_server_add
,
1426 ``nbd_server_add``
*device
* [ *name
* ]
1427 Export a block device through QEMU
's NBD server, which must be started
1428 beforehand with ``nbd_server_start``. The ``-w`` option makes the
1429 exported device writable too. The export name is controlled by *name*,
1430 defaulting to *device*.
1434 .name = "nbd_server_remove",
1435 .args_type = "force:-f,name:s",
1436 .params = "nbd_server_remove [-f] name",
1437 .help = "remove an export previously exposed via NBD",
1438 .cmd = hmp_nbd_server_remove,
1441 ``nbd_server_remove [-f]`` *name*
1442 Stop exporting a block device through QEMU's NBD server
, which was
1443 previously started with ``nbd_server_add``
. The ``
-f``
1444 option forces the server to drop the export immediately even
if
1445 clients are connected
; otherwise the command fails unless there are no
1450 .name
= "nbd_server_stop",
1452 .params
= "nbd_server_stop",
1453 .help
= "stop serving block devices using the NBD protocol",
1454 .cmd
= hmp_nbd_server_stop
,
1458 Stop the QEMU embedded NBD server
.
1462 #
if defined(TARGET_I386
)
1466 .args_type
= "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1467 .params
= "[-b] cpu bank status mcgstatus addr misc",
1468 .help
= "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
1474 ``mce``
*cpu
* *bank
* *status
* *mcgstatus
* *addr
* *misc
*
1475 Inject an MCE on the given
CPU (x86 only
).
1480 .args_type
= "fdname:s",
1481 .params
= "getfd name",
1482 .help
= "receive a file descriptor via SCM rights and assign it a name",
1488 If a file descriptor is passed alongside
this command
using the SCM_RIGHTS
1489 mechanism on unix sockets
, it is stored
using the name
*fdname
* for
1490 later use by other monitor commands
.
1495 .args_type
= "fdname:s",
1496 .params
= "closefd name",
1497 .help
= "close a file descriptor previously passed via SCM rights",
1502 ``closefd``
*fdname
*
1503 Close the file descriptor previously assigned to
*fdname
* using the
1504 ``getfd`` command
. This is only needed
if the file descriptor was
never
1505 used by another monitor command
.
1509 .name
= "block_set_io_throttle",
1510 .args_type
= "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1511 .params
= "device bps bps_rd bps_wr iops iops_rd iops_wr",
1512 .help
= "change I/O throttle limits for a block drive",
1513 .cmd
= hmp_block_set_io_throttle
,
1517 ``block_set_io_throttle``
*device
* *bps
* *bps_rd
* *bps_wr
* *iops
* *iops_rd
* *iops_wr
*
1518 Change I
/O throttle limits
for a block drive to
1519 *bps
* *bps_rd
* *bps_wr
* *iops
* *iops_rd
* *iops_wr
*.
1520 *device
* can be a block device name
, a qdev ID or a QOM path
.
1524 .name
= "set_password",
1525 .args_type
= "protocol:s,password:s,display:-ds,connected:s?",
1526 .params
= "protocol password [-d display] [action-if-connected]",
1527 .help
= "set spice/vnc password",
1528 .cmd
= hmp_set_password
,
1532 ``set_password
[ vnc | spice
] password
[ -d display
] [ action
-if-connected
]``
1533 Change spice
/vnc password
. *display
* can be used with
'vnc' to specify
1534 which display to set the password on
. *action
-if-connected
* specifies
1535 what should happen
in case a connection is established
: *fail
* makes
1536 the password change fail
. *disconnect
* changes the password and
1537 disconnects the client
. *keep
* changes the password and keeps the
1538 connection up
. *keep
* is the
default.
1542 .name
= "expire_password",
1543 .args_type
= "protocol:s,time:s,display:-ds",
1544 .params
= "protocol time [-d display]",
1545 .help
= "set spice/vnc password expire-time",
1546 .cmd
= hmp_expire_password
,
1550 ``expire_password
[ vnc | spice
] expire
-time
[ -d display
]``
1551 Specify when a password
for spice
/vnc becomes invalid
.
1552 *display
* behaves the same as
in ``set_password``
.
1553 *expire
-time
* accepts
:
1556 Invalidate password instantly
.
1558 Password stays valid forever
.
1560 Password stays valid
for *nsec
* seconds starting now
.
1562 Password is invalidated at the given time
. *nsec
* are the seconds
1563 passed since
1970, i
.e
. unix epoch
.
1568 .name
= "chardev-add",
1569 .args_type
= "args:s",
1571 .help
= "add chardev",
1572 .cmd
= hmp_chardev_add
,
1573 .command_completion
= chardev_add_completion
,
1577 ``chardev
-add``
*args
*
1578 chardev
-add accepts the same parameters as the
-chardev command line
switch.
1582 .name
= "chardev-change",
1583 .args_type
= "id:s,args:s",
1584 .params
= "id args",
1585 .help
= "change chardev",
1586 .cmd
= hmp_chardev_change
,
1590 ``chardev
-change``
*args
*
1591 chardev
-change accepts existing chardev
*id
* and then the same arguments
1592 as the
-chardev command line
switch (except
for "id").
1596 .name
= "chardev-remove",
1597 .args_type
= "id:s",
1599 .help
= "remove chardev",
1600 .cmd
= hmp_chardev_remove
,
1601 .command_completion
= chardev_remove_completion
,
1605 ``chardev
-remove``
*id
*
1606 Removes the chardev
*id
*.
1610 .name
= "chardev-send-break",
1611 .args_type
= "id:s",
1613 .help
= "send a break on chardev",
1614 .cmd
= hmp_chardev_send_break
,
1615 .command_completion
= chardev_remove_completion
,
1619 ``chardev
-send
-break``
*id
*
1620 Send a
break on the chardev
*id
*.
1625 .args_type
= "qdev:-d,device:B,command:s",
1626 .params
= "[-d] [device] \"[command]\"",
1627 .help
= "run a qemu-io command on a block device\n\t\t\t"
1628 "-d: [device] is a device ID rather than a "
1629 "drive ID or node name",
1634 ``qemu
-io``
*device
* *command
*
1635 Executes a qemu
-io command on the given block device
.
1640 .args_type
= "path:s?",
1642 .help
= "list QOM properties",
1643 .cmd
= hmp_qom_list
,
1648 ``qom
-list``
[*path
*]
1649 Print QOM properties of object at location
*path
*
1654 .args_type
= "path:s,property:s",
1655 .params
= "path property",
1656 .help
= "print QOM property",
1662 ``qom
-get``
*path
* *property
*
1663 Print QOM property
*property
* of object at location
*path
*
1668 .args_type
= "json:-j,path:s,property:s,value:S",
1669 .params
= "[-j] path property value",
1670 .help
= "set QOM property.\n\t\t\t"
1671 "-j: the value is specified in json format.",
1677 ``qom
-set``
*path
* *property
* *value
*
1678 Set QOM property
*property
* of object at location
*path
* to value
*value
*
1682 .name
= "replay_break",
1683 .args_type
= "icount:l",
1685 .help
= "set breakpoint at the specified instruction count",
1686 .cmd
= hmp_replay_break
,
1690 ``replay_break``
*icount
*
1691 Set replay breakpoint at instruction count
*icount
*.
1692 Execution stops when the specified instruction is reached
.
1693 There can be at most one breakpoint
. When breakpoint is set
, any prior
1694 one is removed
. The breakpoint may be set only
in replay mode and only
1695 "in the future", i
.e
. at instruction counts greater than the current one
.
1696 The current instruction count can be observed with ``info replay``
.
1700 .name
= "replay_delete_break",
1703 .help
= "remove replay breakpoint",
1704 .cmd
= hmp_replay_delete_break
,
1708 ``replay_delete_break``
1709 Remove replay breakpoint which was previously set with ``replay_break``
.
1710 The command is ignored when there are no replay breakpoints
.
1714 .name
= "replay_seek",
1715 .args_type
= "icount:l",
1717 .help
= "replay execution to the specified instruction count",
1718 .cmd
= hmp_replay_seek
,
1722 ``replay_seek``
*icount
*
1723 Automatically proceed to the instruction count
*icount
*, when
1724 replaying the execution
. The command automatically loads nearest
1725 snapshot and replays the execution to find the desired instruction
.
1726 When there is no preceding snapshot or the execution is not replayed
,
1727 then the command fails
.
1728 *icount
* for the reference may be observed with ``info replay`` command
.
1733 .args_type
= "item:s?",
1734 .params
= "[subcommand]",
1735 .help
= "show various information about the system state",
1736 .cmd
= hmp_info_help
,
1737 .sub_table
= hmp_info_cmds
,
1742 ``calc_dirty_rate``
*second
*
1743 Start a round of dirty rate measurement with the period specified
in *second
*.
1744 The result of the dirty rate measurement may be observed with ``info
1745 dirty_rate`` command
.
1749 .name
= "calc_dirty_rate",
1750 .args_type
= "dirty_ring:-r,dirty_bitmap:-b,second:l,sample_pages_per_GB:l?",
1751 .params
= "[-r] [-b] second [sample_pages_per_GB]",
1752 .help
= "start a round of guest dirty rate measurement (using -r to"
1753 "\n\t\t\t specify dirty ring as the method of calculation and"
1754 "\n\t\t\t -b to specify dirty bitmap as method of calculation)",
1755 .cmd
= hmp_calc_dirty_rate
,