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.
73 .name = "block_stream",
74 .args_type = "device:B,base:s?",
75 .params = "device [base]",
76 .help = "copy data from a backing file into a block device",
77 .mhandler.cmd = hmp_block_stream,
83 Copy data from a backing file into a block device.
88 .args_type = "force:-f,device:B",
89 .params = "[-f] device",
90 .help = "eject a removable medium (use -f to force it)",
91 .mhandler.cmd = hmp_eject,
95 @item eject [-f] @var{device}
97 Eject a removable medium (use -f to force it).
104 .help = "remove host block device",
105 .user_print = monitor_user_noop,
106 .mhandler.cmd_new = do_drive_del,
110 @item drive_del @var{device}
112 Remove host block device. The result is that guest generated IO is no longer
113 submitted against the host device underlying the disk. Once a drive has
114 been deleted, the QEMU Block layer returns -EIO which results in IO
115 errors in the guest for applications that are reading/writing to the device.
120 .args_type = "device:B,target:F,arg:s?",
121 .params = "device filename [format]",
122 .help = "change a removable medium, optional format",
123 .mhandler.cmd = hmp_change,
127 @item change @var{device} @var{setting}
130 Change the configuration of a device.
133 @item change @var{diskdevice} @var{filename} [@var{format}]
134 Change the medium for a removable disk device to point to @var{filename}. eg
137 (qemu) change ide1-cd0 /path/to/some.iso
140 @var{format} is optional.
142 @item change vnc @var{display},@var{options}
143 Change the configuration of the VNC server. The valid syntax for @var{display}
144 and @var{options} are described at @ref{sec_invocation}. eg
147 (qemu) change vnc localhost:1
150 @item change vnc password [@var{password}]
152 Change the password associated with the VNC server. If the new password is not
153 supplied, the monitor will prompt for it to be entered. VNC passwords are only
154 significant up to 8 letters. eg
157 (qemu) change vnc password
165 .name = "screendump",
166 .args_type = "filename:F",
167 .params = "filename",
168 .help = "save screen into PPM image 'filename'",
169 .user_print = monitor_user_noop,
170 .mhandler.cmd_new = do_screen_dump,
174 @item screendump @var{filename}
176 Save screen into PPM image @var{filename}.
181 .args_type = "filename:F",
182 .params = "filename",
183 .help = "output logs to 'filename'",
184 .mhandler.cmd = do_logfile,
188 @item logfile @var{filename}
190 Output logs to @var{filename}.
194 .name = "trace-event",
195 .args_type = "name:s,option:b",
196 .params = "name on|off",
197 .help = "changes status of a specific trace event",
198 .mhandler.cmd = do_trace_event_set_state,
204 changes status of a trace event
207 #if defined(CONFIG_TRACE_SIMPLE)
209 .name = "trace-file",
210 .args_type = "op:s?,arg:F?",
211 .params = "on|off|flush|set [arg]",
212 .help = "open, close, or flush trace file, or set a new file name",
213 .mhandler.cmd = do_trace_file,
217 @item trace-file on|off|flush
219 Open, close, or flush the trace file. If no argument is given, the status of the trace file is displayed.
225 .args_type = "items:s",
226 .params = "item1[,...]",
227 .help = "activate logging of the specified items to '/tmp/qemu.log'",
228 .mhandler.cmd = do_log,
232 @item log @var{item1}[,...]
234 Activate logging of the specified items to @file{/tmp/qemu.log}.
239 .args_type = "name:s?",
240 .params = "[tag|id]",
241 .help = "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
242 .mhandler.cmd = do_savevm,
246 @item savevm [@var{tag}|@var{id}]
248 Create a snapshot of the whole virtual machine. If @var{tag} is
249 provided, it is used as human readable identifier. If there is already
250 a snapshot with the same tag or ID, it is replaced. More info at
256 .args_type = "name:s",
258 .help = "restore a VM snapshot from its tag or id",
259 .mhandler.cmd = do_loadvm,
263 @item loadvm @var{tag}|@var{id}
265 Set the whole virtual machine to the snapshot identified by the tag
266 @var{tag} or the unique snapshot ID @var{id}.
271 .args_type = "name:s",
273 .help = "delete a VM snapshot from its tag or id",
274 .mhandler.cmd = do_delvm,
278 @item delvm @var{tag}|@var{id}
280 Delete the snapshot identified by @var{tag} or @var{id}.
284 .name = "singlestep",
285 .args_type = "option:s?",
286 .params = "[on|off]",
287 .help = "run emulation in singlestep mode or switch to normal mode",
288 .mhandler.cmd = do_singlestep,
292 @item singlestep [off]
294 Run the emulation in single step mode.
295 If called with option off, the emulation returns to normal mode.
302 .help = "stop emulation",
303 .mhandler.cmd = hmp_stop,
316 .help = "resume emulation",
317 .mhandler.cmd = hmp_cont,
328 .args_type = "device:s?",
329 .params = "[device]",
330 .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
331 .mhandler.cmd = do_gdbserver,
335 @item gdbserver [@var{port}]
337 Start gdbserver session (default @var{port}=1234)
342 .args_type = "fmt:/,addr:l",
343 .params = "/fmt addr",
344 .help = "virtual memory dump starting at 'addr'",
345 .mhandler.cmd = do_memory_dump,
349 @item x/fmt @var{addr}
351 Virtual memory dump starting at @var{addr}.
356 .args_type = "fmt:/,addr:l",
357 .params = "/fmt addr",
358 .help = "physical memory dump starting at 'addr'",
359 .mhandler.cmd = do_physical_memory_dump,
363 @item xp /@var{fmt} @var{addr}
365 Physical memory dump starting at @var{addr}.
367 @var{fmt} is a format which tells the command how to format the
368 data. Its syntax is: @option{/@{count@}@{format@}@{size@}}
372 is the number of items to be dumped.
375 can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
376 c (char) or i (asm instruction).
379 can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
380 @code{h} or @code{w} can be specified with the @code{i} format to
381 respectively select 16 or 32 bit code instruction size.
388 Dump 10 instructions at the current instruction pointer:
393 0x90107065: lea 0x0(%esi,1),%esi
394 0x90107069: lea 0x0(%edi,1),%edi
396 0x90107071: jmp 0x90107080
404 Dump 80 16 bit values at the start of the video memory.
406 (qemu) xp/80hx 0xb8000
407 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
408 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
409 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
410 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
411 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
412 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
413 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
414 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
415 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
416 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
423 .args_type = "fmt:/,val:l",
424 .params = "/fmt expr",
425 .help = "print expression value (use $reg for CPU register access)",
426 .mhandler.cmd = do_print,
430 @item p or print/@var{fmt} @var{expr}
433 Print expression value. Only the @var{format} part of @var{fmt} is
439 .args_type = "fmt:/,addr:i,index:i.",
440 .params = "/fmt addr",
441 .help = "I/O port read",
442 .mhandler.cmd = do_ioport_read,
451 .args_type = "fmt:/,addr:i,val:i",
452 .params = "/fmt addr value",
453 .help = "I/O port write",
454 .mhandler.cmd = do_ioport_write,
463 .args_type = "string:s,hold_time:i?",
464 .params = "keys [hold_ms]",
465 .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
466 .mhandler.cmd = do_sendkey,
470 @item sendkey @var{keys}
473 Send @var{keys} to the emulator. @var{keys} could be the name of the
474 key or @code{#} followed by the raw value in either decimal or hexadecimal
475 format. Use @code{-} to press several keys simultaneously. Example:
480 This command is useful to send keys that your graphical user interface
481 intercepts at low level, such as @code{ctrl-alt-f1} in X Window.
485 .name = "system_reset",
488 .help = "reset the system",
489 .mhandler.cmd = hmp_system_reset,
500 .name = "system_powerdown",
503 .help = "send system power down event",
504 .mhandler.cmd = hmp_system_powerdown,
508 @item system_powerdown
509 @findex system_powerdown
511 Power down the system (if supported).
516 .args_type = "start:i,size:i",
517 .params = "addr size",
518 .help = "compute the checksum of a memory region",
519 .mhandler.cmd = do_sum,
523 @item sum @var{addr} @var{size}
526 Compute the checksum of a memory region.
531 .args_type = "devname:s",
533 .help = "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
534 .mhandler.cmd = do_usb_add,
538 @item usb_add @var{devname}
541 Add the USB device @var{devname}. For details of available devices see
547 .args_type = "devname:s",
549 .help = "remove USB device 'bus.addr'",
550 .mhandler.cmd = do_usb_del,
554 @item usb_del @var{devname}
557 Remove the USB device @var{devname} from the QEMU virtual USB
558 hub. @var{devname} has the syntax @code{bus.addr}. Use the monitor
559 command @code{info usb} to see the devices you can remove.
563 .name = "device_add",
564 .args_type = "device:O",
565 .params = "driver[,prop=value][,...]",
566 .help = "add device, like -device on the command line",
567 .user_print = monitor_user_noop,
568 .mhandler.cmd_new = do_device_add,
572 @item device_add @var{config}
579 .name = "device_del",
582 .help = "remove device",
583 .user_print = monitor_user_noop,
584 .mhandler.cmd_new = do_device_del,
588 @item device_del @var{id}
591 Remove device @var{id}.
596 .args_type = "index:i",
598 .help = "set the default CPU",
599 .mhandler.cmd = hmp_cpu,
603 @item cpu @var{index}
609 .name = "mouse_move",
610 .args_type = "dx_str:s,dy_str:s,dz_str:s?",
611 .params = "dx dy [dz]",
612 .help = "send mouse move events",
613 .mhandler.cmd = do_mouse_move,
617 @item mouse_move @var{dx} @var{dy} [@var{dz}]
619 Move the active mouse to the specified coordinates @var{dx} @var{dy}
620 with optional scroll axis @var{dz}.
624 .name = "mouse_button",
625 .args_type = "button_state:i",
627 .help = "change mouse button state (1=L, 2=M, 4=R)",
628 .mhandler.cmd = do_mouse_button,
632 @item mouse_button @var{val}
634 Change the active mouse button state @var{val} (1=L, 2=M, 4=R).
639 .args_type = "index:i",
641 .help = "set which mouse device receives events",
642 .mhandler.cmd = do_mouse_set,
646 @item mouse_set @var{index}
648 Set which mouse device receives events at given @var{index}, index
657 .name = "wavcapture",
658 .args_type = "path:F,freq:i?,bits:i?,nchannels:i?",
659 .params = "path [frequency [bits [channels]]]",
660 .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
661 .mhandler.cmd = do_wav_capture,
665 @item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels}]]]
667 Capture audio into @var{filename}. Using sample rate @var{frequency}
668 bits per sample @var{bits} and number of channels @var{channels}.
672 @item Sample rate = 44100 Hz - CD quality
674 @item Number of channels = 2 - Stereo
680 .name = "stopcapture",
682 .params = "capture index",
683 .help = "stop capture",
684 .mhandler.cmd = do_stop_capture,
688 @item stopcapture @var{index}
690 Stop capture with a given @var{index}, index can be obtained with
698 .args_type = "val:l,size:i,filename:s",
699 .params = "addr size file",
700 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
701 .mhandler.cmd = hmp_memsave,
705 @item memsave @var{addr} @var{size} @var{file}
707 save to disk virtual memory dump starting at @var{addr} of size @var{size}.
712 .args_type = "val:l,size:i,filename:s",
713 .params = "addr size file",
714 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
715 .mhandler.cmd = hmp_pmemsave,
719 @item pmemsave @var{addr} @var{size} @var{file}
721 save to disk physical memory dump starting at @var{addr} of size @var{size}.
726 .args_type = "bootdevice:s",
727 .params = "bootdevice",
728 .help = "define new values for the boot device list",
729 .mhandler.cmd = do_boot_set,
733 @item boot_set @var{bootdevicelist}
736 Define new values for the boot device list. Those values will override
737 the values specified on the command line through the @code{-boot} option.
739 The values that can be specified here depend on the machine type, but are
740 the same that can be specified in the @code{-boot} command line option.
743 #if defined(TARGET_I386)
748 .help = "inject an NMI on all guest's CPUs",
749 .mhandler.cmd = hmp_inject_nmi,
755 Inject an NMI on the given CPU (x86 only).
760 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
761 .params = "[-d] [-b] [-i] uri",
762 .help = "migrate to URI (using -d to not wait for completion)"
763 "\n\t\t\t -b for migration without shared storage with"
764 " full copy of disk\n\t\t\t -i for migration without "
765 "shared storage with incremental copy of disk "
766 "(base image shared between src and destination)",
767 .user_print = monitor_user_noop,
768 .mhandler.cmd_new = do_migrate,
773 @item migrate [-d] [-b] [-i] @var{uri}
775 Migrate to @var{uri} (using -d to not wait for completion).
776 -b for migration with full copy of disk
777 -i for migration with incremental copy of disk (base image is shared)
781 .name = "migrate_cancel",
784 .help = "cancel the current VM migration",
785 .mhandler.cmd = hmp_migrate_cancel,
790 @findex migrate_cancel
791 Cancel the current VM migration.
795 .name = "migrate_set_speed",
796 .args_type = "value:o",
798 .help = "set maximum speed (in bytes) for migrations. "
799 "Defaults to MB if no size suffix is specified, ie. B/K/M/G/T",
800 .mhandler.cmd = hmp_migrate_set_speed,
804 @item migrate_set_speed @var{value}
805 @findex migrate_set_speed
806 Set maximum speed to @var{value} (in bytes) for migrations.
810 .name = "migrate_set_downtime",
811 .args_type = "value:T",
813 .help = "set maximum tolerated downtime (in seconds) for migrations",
814 .mhandler.cmd = hmp_migrate_set_downtime,
818 @item migrate_set_downtime @var{second}
819 @findex migrate_set_downtime
820 Set maximum tolerated downtime (in seconds) for migration.
824 .name = "client_migrate_info",
825 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
826 .params = "protocol hostname port tls-port cert-subject",
827 .help = "send migration info to spice/vnc client",
828 .user_print = monitor_user_noop,
829 .mhandler.cmd_async = client_migrate_info,
830 .flags = MONITOR_CMD_ASYNC,
834 @item client_migrate_info @var{protocol} @var{hostname} @var{port} @var{tls-port} @var{cert-subject}
835 @findex client_migrate_info
836 Set the spice/vnc connection info for the migration target. The spice/vnc
837 server will ask the spice/vnc client to automatically reconnect using the
838 new parameters (if specified) once the vm migration finished successfully.
842 .name = "snapshot_blkdev",
843 .args_type = "device:B,snapshot-file:s?,format:s?",
844 .params = "device [new-image-file] [format]",
845 .help = "initiates a live snapshot\n\t\t\t"
846 "of device. If a new image file is specified, the\n\t\t\t"
847 "new image file will become the new root image.\n\t\t\t"
848 "If format is specified, the snapshot file will\n\t\t\t"
849 "be created in that format. Otherwise the\n\t\t\t"
850 "snapshot will be internal! (currently unsupported)",
851 .mhandler.cmd = hmp_snapshot_blkdev,
855 @item snapshot_blkdev
856 @findex snapshot_blkdev
857 Snapshot device, using snapshot file as target if provided
862 .args_type = "pci_addr:s,opts:s",
863 .params = "[[<domain>:]<bus>:]<slot>\n"
864 "[file=file][,if=type][,bus=n]\n"
865 "[,unit=m][,media=d][,index=i]\n"
866 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
867 "[,snapshot=on|off][,cache=on|off]\n"
868 "[,readonly=on|off][,copy-on-read=on|off]",
869 .help = "add drive to PCI storage controller",
870 .mhandler.cmd = drive_hot_add,
876 Add drive to PCI storage controller.
879 #if defined(TARGET_I386)
882 .args_type = "pci_addr:s,type:s,opts:s?",
883 .params = "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
884 .help = "hot-add PCI device",
885 .mhandler.cmd = pci_device_hot_add,
895 #if defined(TARGET_I386)
898 .args_type = "pci_addr:s",
899 .params = "[[<domain>:]<bus>:]<slot>",
900 .help = "hot remove PCI device",
901 .mhandler.cmd = do_pci_device_hot_remove,
908 Hot remove PCI device.
912 .name = "pcie_aer_inject_error",
913 .args_type = "advisory_non_fatal:-a,correctable:-c,"
914 "id:s,error_status:s,"
915 "header0:i?,header1:i?,header2:i?,header3:i?,"
916 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
917 .params = "[-a] [-c] id "
918 "<error_status> [<tlp header> [<tlp header prefix>]]",
919 .help = "inject pcie aer error\n\t\t\t"
920 " -a for advisory non fatal error\n\t\t\t"
921 " -c for correctable error\n\t\t\t"
922 "<id> = qdev device id\n\t\t\t"
923 "<error_status> = error string or 32bit\n\t\t\t"
924 "<tlb header> = 32bit x 4\n\t\t\t"
925 "<tlb header prefix> = 32bit x 4",
926 .user_print = pcie_aer_inject_error_print,
927 .mhandler.cmd_new = do_pcie_aer_inject_error,
931 @item pcie_aer_inject_error
932 @findex pcie_aer_inject_error
933 Inject PCIe AER error
937 .name = "host_net_add",
938 .args_type = "device:s,opts:s?",
939 .params = "tap|user|socket|vde|dump [options]",
940 .help = "add host VLAN client",
941 .mhandler.cmd = net_host_device_add,
947 Add host VLAN client.
951 .name = "host_net_remove",
952 .args_type = "vlan_id:i,device:s",
953 .params = "vlan_id name",
954 .help = "remove host VLAN client",
955 .mhandler.cmd = net_host_device_remove,
959 @item host_net_remove
960 @findex host_net_remove
961 Remove host VLAN client.
965 .name = "netdev_add",
966 .args_type = "netdev:O",
967 .params = "[user|tap|socket],id=str[,prop=value][,...]",
968 .help = "add host network device",
969 .user_print = monitor_user_noop,
970 .mhandler.cmd_new = do_netdev_add,
976 Add host network device.
980 .name = "netdev_del",
983 .help = "remove host network device",
984 .user_print = monitor_user_noop,
985 .mhandler.cmd_new = do_netdev_del,
991 Remove host network device.
996 .name = "hostfwd_add",
997 .args_type = "arg1:s,arg2:s?,arg3:s?",
998 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
999 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
1000 .mhandler.cmd = net_slirp_hostfwd_add,
1006 Redirect TCP or UDP connections from host to guest (requires -net user).
1011 .name = "hostfwd_remove",
1012 .args_type = "arg1:s,arg2:s?,arg3:s?",
1013 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
1014 .help = "remove host-to-guest TCP or UDP redirection",
1015 .mhandler.cmd = net_slirp_hostfwd_remove,
1020 @item hostfwd_remove
1021 @findex hostfwd_remove
1022 Remove host-to-guest TCP or UDP redirection.
1027 .args_type = "value:M",
1029 .help = "request VM to change its memory allocation (in MB)",
1030 .mhandler.cmd = hmp_balloon,
1034 @item balloon @var{value}
1036 Request VM to change its memory allocation to @var{value} (in MB).
1041 .args_type = "name:s,up:b",
1042 .params = "name on|off",
1043 .help = "change the link status of a network adapter",
1044 .mhandler.cmd = hmp_set_link,
1048 @item set_link @var{name} [on|off]
1050 Switch link @var{name} on (i.e. up) or off (i.e. down).
1054 .name = "watchdog_action",
1055 .args_type = "action:s",
1056 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1057 .help = "change watchdog action",
1058 .mhandler.cmd = do_watchdog_action,
1062 @item watchdog_action
1063 @findex watchdog_action
1064 Change watchdog action.
1069 .args_type = "aclname:s",
1070 .params = "aclname",
1071 .help = "list rules in the access control list",
1072 .mhandler.cmd = do_acl_show,
1076 @item acl_show @var{aclname}
1078 List all the matching rules in the access control list, and the default
1079 policy. There are currently two named access control lists,
1080 @var{vnc.x509dname} and @var{vnc.username} matching on the x509 client
1081 certificate distinguished name, and SASL username respectively.
1085 .name = "acl_policy",
1086 .args_type = "aclname:s,policy:s",
1087 .params = "aclname allow|deny",
1088 .help = "set default access control list policy",
1089 .mhandler.cmd = do_acl_policy,
1093 @item acl_policy @var{aclname} @code{allow|deny}
1095 Set the default access control list policy, used in the event that
1096 none of the explicit rules match. The default policy at startup is
1102 .args_type = "aclname:s,match:s,policy:s,index:i?",
1103 .params = "aclname match allow|deny [index]",
1104 .help = "add a match rule to the access control list",
1105 .mhandler.cmd = do_acl_add,
1109 @item acl_add @var{aclname} @var{match} @code{allow|deny} [@var{index}]
1111 Add a match rule to the access control list, allowing or denying access.
1112 The match will normally be an exact username or x509 distinguished name,
1113 but can optionally include wildcard globs. eg @code{*@@EXAMPLE.COM} to
1114 allow all users in the @code{EXAMPLE.COM} kerberos realm. The match will
1115 normally be appended to the end of the ACL, but can be inserted
1116 earlier in the list if the optional @var{index} parameter is supplied.
1120 .name = "acl_remove",
1121 .args_type = "aclname:s,match:s",
1122 .params = "aclname match",
1123 .help = "remove a match rule from the access control list",
1124 .mhandler.cmd = do_acl_remove,
1128 @item acl_remove @var{aclname} @var{match}
1130 Remove the specified match rule from the access control list.
1134 .name = "acl_reset",
1135 .args_type = "aclname:s",
1136 .params = "aclname",
1137 .help = "reset the access control list",
1138 .mhandler.cmd = do_acl_reset,
1142 @item acl_reset @var{aclname}
1144 Remove all matches from the access control list, and set the default
1145 policy back to @code{deny}.
1148 #if defined(TARGET_I386)
1152 .args_type = "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1153 .params = "[-b] cpu bank status mcgstatus addr misc",
1154 .help = "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
1155 .mhandler.cmd = do_inject_mce,
1160 @item mce @var{cpu} @var{bank} @var{status} @var{mcgstatus} @var{addr} @var{misc}
1162 Inject an MCE on the given CPU (x86 only).
1167 .args_type = "fdname:s",
1168 .params = "getfd name",
1169 .help = "receive a file descriptor via SCM rights and assign it a name",
1170 .user_print = monitor_user_noop,
1171 .mhandler.cmd_new = do_getfd,
1175 @item getfd @var{fdname}
1177 If a file descriptor is passed alongside this command using the SCM_RIGHTS
1178 mechanism on unix sockets, it is stored using the name @var{fdname} for
1179 later use by other monitor commands.
1184 .args_type = "fdname:s",
1185 .params = "closefd name",
1186 .help = "close a file descriptor previously passed via SCM rights",
1187 .user_print = monitor_user_noop,
1188 .mhandler.cmd_new = do_closefd,
1192 @item closefd @var{fdname}
1194 Close the file descriptor previously assigned to @var{fdname} using the
1195 @code{getfd} command. This is only needed if the file descriptor was never
1196 used by another monitor command.
1200 .name = "block_passwd",
1201 .args_type = "device:B,password:s",
1202 .params = "block_passwd device password",
1203 .help = "set the password of encrypted block devices",
1204 .mhandler.cmd = hmp_block_passwd,
1208 @item block_set_io_throttle @var{device} @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
1209 @findex block_set_io_throttle
1210 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}
1214 .name = "block_set_io_throttle",
1215 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1216 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
1217 .help = "change I/O throttle limits for a block drive",
1218 .mhandler.cmd = hmp_block_set_io_throttle,
1222 @item block_passwd @var{device} @var{password}
1223 @findex block_passwd
1224 Set the encrypted device @var{device} password to @var{password}
1228 .name = "set_password",
1229 .args_type = "protocol:s,password:s,connected:s?",
1230 .params = "protocol password action-if-connected",
1231 .help = "set spice/vnc password",
1232 .mhandler.cmd = hmp_set_password,
1236 @item set_password [ vnc | spice ] password [ action-if-connected ]
1237 @findex set_password
1239 Change spice/vnc password. Use zero to make the password stay valid
1240 forever. @var{action-if-connected} specifies what should happen in
1241 case a connection is established: @var{fail} makes the password change
1242 fail. @var{disconnect} changes the password and disconnects the
1243 client. @var{keep} changes the password and keeps the connection up.
1244 @var{keep} is the default.
1248 .name = "expire_password",
1249 .args_type = "protocol:s,time:s",
1250 .params = "protocol time",
1251 .help = "set spice/vnc password expire-time",
1252 .mhandler.cmd = hmp_expire_password,
1256 @item expire_password [ vnc | spice ] expire-time
1257 @findex expire_password
1259 Specify when a password for spice/vnc becomes
1260 invalid. @var{expire-time} accepts:
1264 Invalidate password instantly.
1267 Password stays valid forever.
1270 Password stays valid for @var{nsec} seconds starting now.
1273 Password is invalidated at the given time. @var{nsec} are the seconds
1274 passed since 1970, i.e. unix epoch.
1281 .args_type = "item:s?",
1282 .params = "[subcommand]",
1283 .help = "show various information about the system state",
1284 .mhandler.cmd = do_info,
1288 @item info @var{subcommand}
1290 Show various information about the system state.
1294 show the version of QEMU
1296 show the various VLANs and the associated devices
1298 show the character devices
1300 show the block devices
1301 @item info blockstats
1302 show block device statistics
1303 @item info registers
1304 show the cpu registers
1306 show infos for each CPU
1308 show the command line history
1310 show the interrupts statistics (if available)
1312 show i8259 (PIC) state
1314 show emulated PCI device info
1316 show virtual to physical memory mappings (i386, SH4, SPARC, and PPC only)
1318 show the active virtual memory mappings (i386 only)
1320 show dynamic compiler info
1322 show NUMA information
1324 show KVM information
1326 show USB devices plugged on the virtual USB hub
1328 show all USB host devices
1330 show profiling information
1332 show information about active capturing
1333 @item info snapshots
1334 show list of VM snapshots
1336 show the current VM status (running|paused)
1338 show guest PCMCIA status
1340 show which guest mouse is receiving events
1342 show the vnc server status
1344 show the current VM name
1346 show the current VM UUID
1350 show user network stack connection states
1352 show migration status
1354 show balloon information
1358 show qdev device model list
1364 #ifdef CONFIG_TRACE_SIMPLE
1367 show contents of trace buffer
1372 @item info trace-events
1373 show available trace events and their state