1 HXCOMM Use
DEFHEADING() to define headings
in both help text and texi
2 HXCOMM Text between STEXI and ETEXI are copied to texi 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 texi and C
14 .args_type
= "name:s?",
16 .help
= "show the help",
17 .mhandler
.cmd
= do_help_cmd
,
21 @item help or ?
[@
var{cmd
}]
23 Show the help
for all commands or just
for command @
var{cmd
}.
28 .args_type
= "device:B",
29 .params
= "device|all",
30 .help
= "commit changes to the disk images (if -snapshot is used) or backing files",
31 .mhandler
.cmd
= do_commit
,
37 Commit changes to the disk
images (if -snapshot is used
) or backing files
.
44 .help
= "quit the emulator",
45 .user_print
= monitor_user_noop
,
46 .mhandler
.cmd
= hmp_quit
,
56 .name
= "block_resize",
57 .args_type
= "device:B,size:o",
58 .params
= "device size",
59 .help
= "resize a block image",
60 .mhandler
.cmd
= hmp_block_resize
,
66 Resize a block image
while a guest is running
. Usually requires guest
67 action to see the updated size
. Resize to a lower size is supported
,
68 but should be used with extreme caution
. Note that
this command only
69 resizes image files
, it can not resize block devices like LVM volumes
.
75 .args_type
= "force:-f,device:B",
76 .params
= "[-f] device",
77 .help
= "eject a removable medium (use -f to force it)",
78 .mhandler
.cmd
= hmp_eject
,
82 @item eject
[-f
] @
var{device
}
84 Eject a removable
medium (use
-f to force it
).
91 .help
= "remove host block device",
92 .user_print
= monitor_user_noop
,
93 .mhandler
.cmd_new
= do_drive_del
,
97 @item drive_del @
var{device
}
99 Remove host block device
. The result is that guest generated IO is no longer
100 submitted against the host device underlying the disk
. Once a drive has
101 been deleted
, the QEMU Block layer returns
-EIO which results
in IO
102 errors
in the guest
for applications that are reading
/writing to the device
.
107 .args_type
= "device:B,target:F,arg:s?",
108 .params
= "device filename [format]",
109 .help
= "change a removable medium, optional format",
110 .mhandler
.cmd
= hmp_change
,
114 @item change @
var{device
} @
var{setting
}
117 Change the configuration of a device
.
120 @item change @
var{diskdevice
} @
var{filename
} [@
var{format
}]
121 Change the medium
for a removable disk device to point to @
var{filename
}. eg
124 (qemu
) change ide1
-cd0
/path
/to
/some
.iso
127 @
var{format
} is optional
.
129 @item change vnc @
var{display
},@
var{options
}
130 Change the configuration of the VNC server
. The valid syntax
for @
var{display
}
131 and @
var{options
} are described at @ref
{sec_invocation
}. eg
134 (qemu
) change vnc localhost
:1
137 @item change vnc password
[@
var{password
}]
139 Change the password associated with the VNC server
. If the
new password is not
140 supplied
, the monitor will prompt
for it to be entered
. VNC passwords are only
141 significant up to
8 letters
. eg
144 (qemu
) change vnc password
152 .name
= "screendump",
153 .args_type
= "filename:F",
154 .params
= "filename",
155 .help
= "save screen into PPM image 'filename'",
156 .user_print
= monitor_user_noop
,
157 .mhandler
.cmd_new
= do_screen_dump
,
161 @item screendump @
var{filename
}
163 Save screen into PPM image @
var{filename
}.
168 .args_type
= "filename:F",
169 .params
= "filename",
170 .help
= "output logs to 'filename'",
171 .mhandler
.cmd
= do_logfile
,
175 @item logfile @
var{filename
}
177 Output logs to @
var{filename
}.
181 .name
= "trace-event",
182 .args_type
= "name:s,option:b",
183 .params
= "name on|off",
184 .help
= "changes status of a specific trace event",
185 .mhandler
.cmd
= do_trace_event_set_state
,
191 changes status of a
trace event
194 #
if defined(CONFIG_TRACE_SIMPLE
)
196 .name
= "trace-file",
197 .args_type
= "op:s?,arg:F?",
198 .params
= "on|off|flush|set [arg]",
199 .help
= "open, close, or flush trace file, or set a new file name",
200 .mhandler
.cmd
= do_trace_file
,
204 @item
trace-file on|off|flush
206 Open
, close
, or flush the
trace file
. If no argument is given
, the status of the
trace file is displayed
.
212 .args_type
= "items:s",
213 .params
= "item1[,...]",
214 .help
= "activate logging of the specified items to '/tmp/qemu.log'",
215 .mhandler
.cmd
= do_log
,
219 @item log @
var{item1
}[,...]
221 Activate logging of the specified items to @file
{/tmp
/qemu
.log
}.
226 .args_type
= "name:s?",
227 .params
= "[tag|id]",
228 .help
= "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
229 .mhandler
.cmd
= do_savevm
,
233 @item savevm
[@
var{tag
}|@
var{id
}]
235 Create a snapshot of the whole virtual machine
. If @
var{tag
} is
236 provided
, it is used as human readable identifier
. If there is already
237 a snapshot with the same tag or ID
, it is replaced
. More info at
243 .args_type
= "name:s",
245 .help
= "restore a VM snapshot from its tag or id",
246 .mhandler
.cmd
= do_loadvm
,
250 @item loadvm @
var{tag
}|@
var{id
}
252 Set the whole virtual machine to the snapshot identified by the tag
253 @
var{tag
} or the unique snapshot ID @
var{id
}.
258 .args_type
= "name:s",
260 .help
= "delete a VM snapshot from its tag or id",
261 .mhandler
.cmd
= do_delvm
,
265 @item delvm @
var{tag
}|@
var{id
}
267 Delete the snapshot identified by @
var{tag
} or @
var{id
}.
271 .name
= "singlestep",
272 .args_type
= "option:s?",
273 .params
= "[on|off]",
274 .help
= "run emulation in singlestep mode or switch to normal mode",
275 .mhandler
.cmd
= do_singlestep
,
279 @item singlestep
[off
]
281 Run the emulation
in single step mode
.
282 If called with option off
, the emulation returns to normal mode
.
289 .help
= "stop emulation",
290 .mhandler
.cmd
= hmp_stop
,
303 .help
= "resume emulation",
304 .mhandler
.cmd
= hmp_cont
,
315 .args_type
= "device:s?",
316 .params
= "[device]",
317 .help
= "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
318 .mhandler
.cmd
= do_gdbserver
,
322 @item gdbserver
[@
var{port
}]
324 Start gdbserver
session (default @
var{port
}=1234)
329 .args_type
= "fmt:/,addr:l",
330 .params
= "/fmt addr",
331 .help
= "virtual memory dump starting at 'addr'",
332 .mhandler
.cmd
= do_memory_dump
,
336 @item x
/fmt @
var{addr
}
338 Virtual memory dump starting at @
var{addr
}.
343 .args_type
= "fmt:/,addr:l",
344 .params
= "/fmt addr",
345 .help
= "physical memory dump starting at 'addr'",
346 .mhandler
.cmd
= do_physical_memory_dump
,
350 @item xp
/@
var{fmt
} @
var{addr
}
352 Physical memory dump starting at @
var{addr
}.
354 @
var{fmt
} is a format which tells the command how to format the
355 data
. Its syntax is
: @option
{/@
{count@
}@
{format@
}@
{size@
}}
359 is the number of items to be dumped
.
362 can be
x (hex
), d (signed decimal
), u (unsigned decimal
), o (octal
),
363 c (char
) or
i (asm instruction
).
366 can be
b (8 bits
), h (16 bits
), w (32 bits
) or
g (64 bits
). On x86
,
367 @code
{h
} or @code
{w
} can be specified with the @code
{i
} format to
368 respectively select
16 or
32 bit code instruction size
.
375 Dump
10 instructions at the current instruction pointer
:
380 0x90107065: lea
0x0(%esi
,1),%esi
381 0x90107069: lea
0x0(%edi
,1),%edi
383 0x90107071: jmp
0x90107080
391 Dump
80 16 bit values at the start of the video memory
.
393 (qemu
) xp
/80hx
0xb8000
394 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
395 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
396 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
397 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
398 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
399 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
400 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
401 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
402 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
403 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
410 .args_type
= "fmt:/,val:l",
411 .params
= "/fmt expr",
412 .help
= "print expression value (use $reg for CPU register access)",
413 .mhandler
.cmd
= do_print
,
417 @item p or print
/@
var{fmt
} @
var{expr
}
420 Print expression value
. Only the @
var{format
} part of @
var{fmt
} is
426 .args_type
= "fmt:/,addr:i,index:i.",
427 .params
= "/fmt addr",
428 .help
= "I/O port read",
429 .mhandler
.cmd
= do_ioport_read
,
438 .args_type
= "fmt:/,addr:i,val:i",
439 .params
= "/fmt addr value",
440 .help
= "I/O port write",
441 .mhandler
.cmd
= do_ioport_write
,
450 .args_type
= "string:s,hold_time:i?",
451 .params
= "keys [hold_ms]",
452 .help
= "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
453 .mhandler
.cmd
= do_sendkey
,
457 @item sendkey @
var{keys
}
460 Send @
var{keys
} to the emulator
. @
var{keys
} could be the name of the
461 key or @code
{#
} followed by the raw value
in either decimal or hexadecimal
462 format
. Use @code
{-} to press several keys simultaneously
. Example
:
467 This command is useful to send keys that your graphical user
interface
468 intercepts at low level
, such as @code
{ctrl
-alt
-f1
} in X Window
.
472 .name
= "system_reset",
475 .help
= "reset the system",
476 .mhandler
.cmd
= hmp_system_reset
,
487 .name
= "system_powerdown",
490 .help
= "send system power down event",
491 .mhandler
.cmd
= hmp_system_powerdown
,
495 @item system_powerdown
496 @findex system_powerdown
498 Power down the
system (if supported
).
503 .args_type
= "start:i,size:i",
504 .params
= "addr size",
505 .help
= "compute the checksum of a memory region",
506 .mhandler
.cmd
= do_sum
,
510 @item sum @
var{addr
} @
var{size
}
513 Compute the checksum of a memory region
.
518 .args_type
= "devname:s",
520 .help
= "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
521 .mhandler
.cmd
= do_usb_add
,
525 @item usb_add @
var{devname
}
528 Add the USB device @
var{devname
}. For details of available devices see
534 .args_type
= "devname:s",
536 .help
= "remove USB device 'bus.addr'",
537 .mhandler
.cmd
= do_usb_del
,
541 @item usb_del @
var{devname
}
544 Remove the USB device @
var{devname
} from the QEMU virtual USB
545 hub
. @
var{devname
} has the syntax @code
{bus
.addr
}. Use the monitor
546 command @code
{info usb
} to see the devices you can remove
.
550 .name
= "device_add",
551 .args_type
= "device:O",
552 .params
= "driver[,prop=value][,...]",
553 .help
= "add device, like -device on the command line",
554 .user_print
= monitor_user_noop
,
555 .mhandler
.cmd_new
= do_device_add
,
559 @item device_add @
var{config
}
566 .name
= "device_del",
569 .help
= "remove device",
570 .user_print
= monitor_user_noop
,
571 .mhandler
.cmd_new
= do_device_del
,
575 @item device_del @
var{id
}
578 Remove device @
var{id
}.
583 .args_type
= "index:i",
585 .help
= "set the default CPU",
586 .mhandler
.cmd
= hmp_cpu
,
590 @item cpu @
var{index
}
596 .name
= "mouse_move",
597 .args_type
= "dx_str:s,dy_str:s,dz_str:s?",
598 .params
= "dx dy [dz]",
599 .help
= "send mouse move events",
600 .mhandler
.cmd
= do_mouse_move
,
604 @item mouse_move @
var{dx
} @
var{dy
} [@
var{dz
}]
606 Move the active mouse to the specified coordinates @
var{dx
} @
var{dy
}
607 with optional scroll axis @
var{dz
}.
611 .name
= "mouse_button",
612 .args_type
= "button_state:i",
614 .help
= "change mouse button state (1=L, 2=M, 4=R)",
615 .mhandler
.cmd
= do_mouse_button
,
619 @item mouse_button @
var{val
}
621 Change the active mouse button state @
var{val
} (1=L
, 2=M
, 4=R
).
626 .args_type
= "index:i",
628 .help
= "set which mouse device receives events",
629 .mhandler
.cmd
= do_mouse_set
,
633 @item mouse_set @
var{index
}
635 Set which mouse device receives events at given @
var{index
}, index
644 .name
= "wavcapture",
645 .args_type
= "path:F,freq:i?,bits:i?,nchannels:i?",
646 .params
= "path [frequency [bits [channels]]]",
647 .help
= "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
648 .mhandler
.cmd
= do_wav_capture
,
652 @item wavcapture @
var{filename
} [@
var{frequency
} [@
var{bits
} [@
var{channels
}]]]
654 Capture audio into @
var{filename
}. Using sample rate @
var{frequency
}
655 bits per sample @
var{bits
} and number of channels @
var{channels
}.
659 @item Sample rate
= 44100 Hz
- CD quality
661 @item Number of channels
= 2 - Stereo
667 .name
= "stopcapture",
669 .params
= "capture index",
670 .help
= "stop capture",
671 .mhandler
.cmd
= do_stop_capture
,
675 @item stopcapture @
var{index
}
677 Stop capture with a given @
var{index
}, index can be obtained with
685 .args_type
= "val:l,size:i,filename:s",
686 .params
= "addr size file",
687 .help
= "save to disk virtual memory dump starting at 'addr' of size 'size'",
688 .mhandler
.cmd
= hmp_memsave
,
692 @item memsave @
var{addr
} @
var{size
} @
var{file
}
694 save to disk virtual memory dump starting at @
var{addr
} of size @
var{size
}.
699 .args_type
= "val:l,size:i,filename:s",
700 .params
= "addr size file",
701 .help
= "save to disk physical memory dump starting at 'addr' of size 'size'",
702 .mhandler
.cmd
= hmp_pmemsave
,
706 @item pmemsave @
var{addr
} @
var{size
} @
var{file
}
708 save to disk physical memory dump starting at @
var{addr
} of size @
var{size
}.
713 .args_type
= "bootdevice:s",
714 .params
= "bootdevice",
715 .help
= "define new values for the boot device list",
716 .mhandler
.cmd
= do_boot_set
,
720 @item boot_set @
var{bootdevicelist
}
723 Define
new values
for the boot device list
. Those values will
override
724 the values specified on the command line through the @code
{-boot
} option
.
726 The values that can be specified
here depend on the machine type
, but are
727 the same that can be specified
in the @code
{-boot
} command line option
.
730 #
if defined(TARGET_I386
)
735 .help
= "inject an NMI on all guest's CPUs",
736 .mhandler
.cmd
= hmp_inject_nmi
,
742 Inject an NMI on the given
CPU (x86 only
).
747 .args_type
= "detach:-d,blk:-b,inc:-i,uri:s",
748 .params
= "[-d] [-b] [-i] uri",
749 .help
= "migrate to URI (using -d to not wait for completion)"
750 "\n\t\t\t -b for migration without shared storage with"
751 " full copy of disk\n\t\t\t -i for migration without "
752 "shared storage with incremental copy of disk "
753 "(base image shared between src and destination)",
754 .user_print
= monitor_user_noop
,
755 .mhandler
.cmd_new
= do_migrate
,
760 @item migrate
[-d
] [-b
] [-i
] @
var{uri
}
762 Migrate to @
var{uri
} (using -d to not wait
for completion
).
763 -b
for migration with full copy of disk
764 -i
for migration with incremental copy of
disk (base image is shared
)
768 .name
= "migrate_cancel",
771 .help
= "cancel the current VM migration",
772 .mhandler
.cmd
= hmp_migrate_cancel
,
777 @findex migrate_cancel
778 Cancel the current VM migration
.
782 .name
= "migrate_set_speed",
783 .args_type
= "value:o",
785 .help
= "set maximum speed (in bytes) for migrations. "
786 "Defaults to MB if no size suffix is specified, ie. B/K/M/G/T",
787 .mhandler
.cmd
= hmp_migrate_set_speed
,
791 @item migrate_set_speed @
var{value
}
792 @findex migrate_set_speed
793 Set maximum speed to @
var{value
} (in bytes
) for migrations
.
797 .name
= "migrate_set_downtime",
798 .args_type
= "value:T",
800 .help
= "set maximum tolerated downtime (in seconds) for migrations",
801 .mhandler
.cmd
= hmp_migrate_set_downtime
,
805 @item migrate_set_downtime @
var{second
}
806 @findex migrate_set_downtime
807 Set maximum tolerated
downtime (in seconds
) for migration
.
811 .name
= "client_migrate_info",
812 .args_type
= "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
813 .params
= "protocol hostname port tls-port cert-subject",
814 .help
= "send migration info to spice/vnc client",
815 .user_print
= monitor_user_noop
,
816 .mhandler
.cmd_async
= client_migrate_info
,
817 .flags
= MONITOR_CMD_ASYNC
,
821 @item client_migrate_info @
var{protocol
} @
var{hostname
} @
var{port
} @
var{tls
-port
} @
var{cert
-subject
}
822 @findex client_migrate_info
823 Set the spice
/vnc connection info
for the migration target
. The spice
/vnc
824 server will ask the spice
/vnc client to automatically reconnect
using the
825 new parameters (if specified
) once the vm migration finished successfully
.
829 .name
= "snapshot_blkdev",
830 .args_type
= "device:B,snapshot-file:s?,format:s?",
831 .params
= "device [new-image-file] [format]",
832 .help
= "initiates a live snapshot\n\t\t\t"
833 "of device. If a new image file is specified, the\n\t\t\t"
834 "new image file will become the new root image.\n\t\t\t"
835 "If format is specified, the snapshot file will\n\t\t\t"
836 "be created in that format. Otherwise the\n\t\t\t"
837 "snapshot will be internal! (currently unsupported)",
838 .mhandler
.cmd
= hmp_snapshot_blkdev
,
842 @item snapshot_blkdev
843 @findex snapshot_blkdev
844 Snapshot device
, using snapshot file as target
if provided
849 .args_type
= "pci_addr:s,opts:s",
850 .params
= "[[<domain>:]<bus>:]<slot>\n"
851 "[file=file][,if=type][,bus=n]\n"
852 "[,unit=m][,media=d][,index=i]\n"
853 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
854 "[,snapshot=on|off][,cache=on|off]\n"
855 "[,readonly=on|off][,copy-on-read=on|off]",
856 .help
= "add drive to PCI storage controller",
857 .mhandler
.cmd
= drive_hot_add
,
863 Add drive to PCI storage controller
.
866 #
if defined(TARGET_I386
)
869 .args_type
= "pci_addr:s,type:s,opts:s?",
870 .params
= "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
871 .help
= "hot-add PCI device",
872 .mhandler
.cmd
= pci_device_hot_add
,
882 #
if defined(TARGET_I386
)
885 .args_type
= "pci_addr:s",
886 .params
= "[[<domain>:]<bus>:]<slot>",
887 .help
= "hot remove PCI device",
888 .mhandler
.cmd
= do_pci_device_hot_remove
,
895 Hot remove PCI device
.
899 .name
= "pcie_aer_inject_error",
900 .args_type
= "advisory_non_fatal:-a,correctable:-c,"
901 "id:s,error_status:s,"
902 "header0:i?,header1:i?,header2:i?,header3:i?,"
903 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
904 .params
= "[-a] [-c] id "
905 "<error_status> [<tlp header> [<tlp header prefix>]]",
906 .help
= "inject pcie aer error\n\t\t\t"
907 " -a for advisory non fatal error\n\t\t\t"
908 " -c for correctable error\n\t\t\t"
909 "<id> = qdev device id\n\t\t\t"
910 "<error_status> = error string or 32bit\n\t\t\t"
911 "<tlb header> = 32bit x 4\n\t\t\t"
912 "<tlb header prefix> = 32bit x 4",
913 .user_print
= pcie_aer_inject_error_print
,
914 .mhandler
.cmd_new
= do_pcie_aer_inject_error
,
918 @item pcie_aer_inject_error
919 @findex pcie_aer_inject_error
920 Inject PCIe AER error
924 .name
= "host_net_add",
925 .args_type
= "device:s,opts:s?",
926 .params
= "tap|user|socket|vde|dump [options]",
927 .help
= "add host VLAN client",
928 .mhandler
.cmd
= net_host_device_add
,
934 Add host VLAN client
.
938 .name
= "host_net_remove",
939 .args_type
= "vlan_id:i,device:s",
940 .params
= "vlan_id name",
941 .help
= "remove host VLAN client",
942 .mhandler
.cmd
= net_host_device_remove
,
946 @item host_net_remove
947 @findex host_net_remove
948 Remove host VLAN client
.
952 .name
= "netdev_add",
953 .args_type
= "netdev:O",
954 .params
= "[user|tap|socket],id=str[,prop=value][,...]",
955 .help
= "add host network device",
956 .user_print
= monitor_user_noop
,
957 .mhandler
.cmd_new
= do_netdev_add
,
963 Add host network device
.
967 .name
= "netdev_del",
970 .help
= "remove host network device",
971 .user_print
= monitor_user_noop
,
972 .mhandler
.cmd_new
= do_netdev_del
,
978 Remove host network device
.
983 .name
= "hostfwd_add",
984 .args_type
= "arg1:s,arg2:s?,arg3:s?",
985 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
986 .help
= "redirect TCP or UDP connections from host to guest (requires -net user)",
987 .mhandler
.cmd
= net_slirp_hostfwd_add
,
993 Redirect TCP or UDP connections from host to
guest (requires
-net user
).
998 .name
= "hostfwd_remove",
999 .args_type
= "arg1:s,arg2:s?,arg3:s?",
1000 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
1001 .help
= "remove host-to-guest TCP or UDP redirection",
1002 .mhandler
.cmd
= net_slirp_hostfwd_remove
,
1007 @item hostfwd_remove
1008 @findex hostfwd_remove
1009 Remove host
-to
-guest TCP or UDP redirection
.
1014 .args_type
= "value:M",
1016 .help
= "request VM to change its memory allocation (in MB)",
1017 .mhandler
.cmd
= hmp_balloon
,
1021 @item balloon @
var{value
}
1023 Request VM to change its memory allocation to @
var{value
} (in MB
).
1028 .args_type
= "name:s,up:b",
1029 .params
= "name on|off",
1030 .help
= "change the link status of a network adapter",
1031 .mhandler
.cmd
= hmp_set_link
,
1035 @item set_link @
var{name
} [on|off
]
1037 Switch link @
var{name
} on (i
.e
. up
) or
off (i
.e
. down
).
1041 .name
= "watchdog_action",
1042 .args_type
= "action:s",
1043 .params
= "[reset|shutdown|poweroff|pause|debug|none]",
1044 .help
= "change watchdog action",
1045 .mhandler
.cmd
= do_watchdog_action
,
1049 @item watchdog_action
1050 @findex watchdog_action
1051 Change watchdog action
.
1056 .args_type
= "aclname:s",
1057 .params
= "aclname",
1058 .help
= "list rules in the access control list",
1059 .mhandler
.cmd
= do_acl_show
,
1063 @item acl_show @
var{aclname
}
1065 List all the matching rules
in the access control list
, and the
default
1066 policy
. There are currently two named access control lists
,
1067 @
var{vnc
.x509dname
} and @
var{vnc
.username
} matching on the x509 client
1068 certificate distinguished name
, and SASL username respectively
.
1072 .name
= "acl_policy",
1073 .args_type
= "aclname:s,policy:s",
1074 .params
= "aclname allow|deny",
1075 .help
= "set default access control list policy",
1076 .mhandler
.cmd
= do_acl_policy
,
1080 @item acl_policy @
var{aclname
} @code
{allow|deny
}
1082 Set the
default access control list policy
, used
in the event that
1083 none of the explicit rules match
. The
default policy at startup is
1089 .args_type
= "aclname:s,match:s,policy:s,index:i?",
1090 .params
= "aclname match allow|deny [index]",
1091 .help
= "add a match rule to the access control list",
1092 .mhandler
.cmd
= do_acl_add
,
1096 @item acl_add @
var{aclname
} @
var{match
} @code
{allow|deny
} [@
var{index
}]
1098 Add a match rule to the access control list
, allowing or denying access
.
1099 The match will normally be an exact username or x509 distinguished name
,
1100 but can optionally include wildcard globs
. eg @code
{*@@EXAMPLE
.COM
} to
1101 allow all users
in the @code
{EXAMPLE
.COM
} kerberos realm
. The match will
1102 normally be appended to the end of the ACL
, but can be inserted
1103 earlier
in the list
if the optional @
var{index
} parameter is supplied
.
1107 .name
= "acl_remove",
1108 .args_type
= "aclname:s,match:s",
1109 .params
= "aclname match",
1110 .help
= "remove a match rule from the access control list",
1111 .mhandler
.cmd
= do_acl_remove
,
1115 @item acl_remove @
var{aclname
} @
var{match
}
1117 Remove the specified match rule from the access control list
.
1121 .name
= "acl_reset",
1122 .args_type
= "aclname:s",
1123 .params
= "aclname",
1124 .help
= "reset the access control list",
1125 .mhandler
.cmd
= do_acl_reset
,
1129 @item acl_reset @
var{aclname
}
1131 Remove all matches from the access control list
, and set the
default
1132 policy back to @code
{deny
}.
1135 #
if defined(TARGET_I386
)
1139 .args_type
= "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1140 .params
= "[-b] cpu bank status mcgstatus addr misc",
1141 .help
= "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
1142 .mhandler
.cmd
= do_inject_mce
,
1147 @item mce @
var{cpu
} @
var{bank
} @
var{status
} @
var{mcgstatus
} @
var{addr
} @
var{misc
}
1149 Inject an MCE on the given
CPU (x86 only
).
1154 .args_type
= "fdname:s",
1155 .params
= "getfd name",
1156 .help
= "receive a file descriptor via SCM rights and assign it a name",
1157 .user_print
= monitor_user_noop
,
1158 .mhandler
.cmd_new
= do_getfd
,
1162 @item getfd @
var{fdname
}
1164 If a file descriptor is passed alongside
this command
using the SCM_RIGHTS
1165 mechanism on unix sockets
, it is stored
using the name @
var{fdname
} for
1166 later use by other monitor commands
.
1171 .args_type
= "fdname:s",
1172 .params
= "closefd name",
1173 .help
= "close a file descriptor previously passed via SCM rights",
1174 .user_print
= monitor_user_noop
,
1175 .mhandler
.cmd_new
= do_closefd
,
1179 @item closefd @
var{fdname
}
1181 Close the file descriptor previously assigned to @
var{fdname
} using the
1182 @code
{getfd
} command
. This is only needed
if the file descriptor was
never
1183 used by another monitor command
.
1187 .name
= "block_passwd",
1188 .args_type
= "device:B,password:s",
1189 .params
= "block_passwd device password",
1190 .help
= "set the password of encrypted block devices",
1191 .mhandler
.cmd
= hmp_block_passwd
,
1195 @item block_set_io_throttle @
var{device
} @
var{bps
} @
var{bps_rd
} @
var{bps_wr
} @
var{iops
} @
var{iops_rd
} @
var{iops_wr
}
1196 @findex block_set_io_throttle
1197 Change I
/O throttle limits
for a block drive to @
var{bps
} @
var{bps_rd
} @
var{bps_wr
} @
var{iops
} @
var{iops_rd
} @
var{iops_wr
}
1201 .name
= "block_set_io_throttle",
1202 .args_type
= "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1203 .params
= "device bps bps_rd bps_wr iops iops_rd iops_wr",
1204 .help
= "change I/O throttle limits for a block drive",
1205 .mhandler
.cmd
= hmp_block_set_io_throttle
,
1209 @item block_passwd @
var{device
} @
var{password
}
1210 @findex block_passwd
1211 Set the encrypted device @
var{device
} password to @
var{password
}
1215 .name
= "set_password",
1216 .args_type
= "protocol:s,password:s,connected:s?",
1217 .params
= "protocol password action-if-connected",
1218 .help
= "set spice/vnc password",
1219 .mhandler
.cmd
= hmp_set_password
,
1223 @item set_password
[ vnc | spice
] password
[ action
-if-connected
]
1224 @findex set_password
1226 Change spice
/vnc password
. Use zero to make the password stay valid
1227 forever
. @
var{action
-if-connected
} specifies what should happen
in
1228 case a connection is established
: @
var{fail
} makes the password change
1229 fail
. @
var{disconnect
} changes the password and disconnects the
1230 client
. @
var{keep
} changes the password and keeps the connection up
.
1231 @
var{keep
} is the
default.
1235 .name
= "expire_password",
1236 .args_type
= "protocol:s,time:s",
1237 .params
= "protocol time",
1238 .help
= "set spice/vnc password expire-time",
1239 .mhandler
.cmd
= hmp_expire_password
,
1243 @item expire_password
[ vnc | spice
] expire
-time
1244 @findex expire_password
1246 Specify when a password
for spice
/vnc becomes
1247 invalid
. @
var{expire
-time
} accepts
:
1251 Invalidate password instantly
.
1254 Password stays valid forever
.
1257 Password stays valid
for @
var{nsec
} seconds starting now
.
1260 Password is invalidated at the given time
. @
var{nsec
} are the seconds
1261 passed since
1970, i
.e
. unix epoch
.
1268 .args_type
= "item:s?",
1269 .params
= "[subcommand]",
1270 .help
= "show various information about the system state",
1271 .mhandler
.cmd
= do_info
,
1275 @item info @
var{subcommand
}
1277 Show various information about the system state
.
1281 show the version of QEMU
1283 show the various VLANs and the associated devices
1285 show the character devices
1287 show the block devices
1288 @item info blockstats
1289 show block device statistics
1290 @item info registers
1291 show the cpu registers
1293 show infos
for each CPU
1295 show the command line history
1297 show the interrupts
statistics (if available
)
1299 show
i8259 (PIC
) state
1301 show emulated PCI device info
1303 show virtual to physical memory
mappings (i386
, SH4
, SPARC
, and PPC only
)
1305 show the active virtual memory
mappings (i386 only
)
1307 show
dynamic compiler info
1309 show NUMA information
1311 show KVM information
1313 show USB devices plugged on the virtual USB hub
1315 show all USB host devices
1317 show profiling information
1319 show information about active capturing
1320 @item info snapshots
1321 show list of VM snapshots
1323 show the current VM
status (running|paused
)
1325 show guest PCMCIA status
1327 show which guest mouse is receiving events
1329 show the vnc server status
1331 show the current VM name
1333 show the current VM UUID
1337 show user network stack connection states
1339 show migration status
1341 show balloon information
1345 show qdev device model list
1351 #ifdef CONFIG_TRACE_SIMPLE
1354 show contents of
trace buffer
1359 @item info
trace-events
1360 show available
trace events and their state