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
.
42 .args_type
= "item:s?",
43 .params
= "[subcommand]",
44 .help
= "show various information about the system state",
45 .user_print
= monitor_user_noop
,
46 .mhandler
.cmd_new
= do_info
,
50 @item info @
var{subcommand
}
52 Show various information about the system state
.
56 show the version of QEMU
58 list QMP available commands
60 show the various VLANs and the associated devices
62 show the character devices
64 show the block devices
66 show block device statistics
68 show the cpu registers
70 show infos
for each CPU
72 show the command line history
74 show the interrupts
statistics (if available
)
76 show
i8259 (PIC
) state
78 show emulated PCI device info
80 show virtual to physical memory
mappings (i386 only
)
82 show the active virtual memory
mappings (i386 only
)
84 show state of
HPET (i386 only
)
86 show
dynamic compiler info
92 show USB devices plugged on the virtual USB hub
94 show all USB host devices
96 show profiling information
98 show information about active capturing
100 show list of VM snapshots
102 show the current VM
status (running|paused
)
104 show guest PCMCIA status
106 show which guest mouse is receiving events
108 show the vnc server status
110 show the current VM name
112 show the current VM UUID
116 show user network stack connection states
118 show migration status
120 show balloon information
124 show qdev device model list
134 .help
= "quit the emulator",
135 .user_print
= monitor_user_noop
,
136 .mhandler
.cmd_new
= do_quit
,
147 .args_type
= "force:-f,device:B",
148 .params
= "[-f] device",
149 .help
= "eject a removable medium (use -f to force it)",
150 .user_print
= monitor_user_noop
,
151 .mhandler
.cmd_new
= do_eject
,
155 @item eject
[-f
] @
var{device
}
157 Eject a removable
medium (use
-f to force it
).
162 .args_type
= "device:B,target:F,arg:s?",
163 .params
= "device filename [format]",
164 .help
= "change a removable medium, optional format",
165 .user_print
= monitor_user_noop
,
166 .mhandler
.cmd_new
= do_change
,
170 @item change @
var{device
} @
var{setting
}
173 Change the configuration of a device
.
176 @item change @
var{diskdevice
} @
var{filename
} [@
var{format
}]
177 Change the medium
for a removable disk device to point to @
var{filename
}. eg
180 (qemu
) change ide1
-cd0
/path
/to
/some
.iso
183 @
var{format
} is optional
.
185 @item change vnc @
var{display
},@
var{options
}
186 Change the configuration of the VNC server
. The valid syntax
for @
var{display
}
187 and @
var{options
} are described at @ref
{sec_invocation
}. eg
190 (qemu
) change vnc localhost
:1
193 @item change vnc password
[@
var{password
}]
195 Change the password associated with the VNC server
. If the
new password is not
196 supplied
, the monitor will prompt
for it to be entered
. VNC passwords are only
197 significant up to
8 letters
. eg
200 (qemu
) change vnc password
208 .name
= "screendump",
209 .args_type
= "filename:F",
210 .params
= "filename",
211 .help
= "save screen into PPM image 'filename'",
212 .user_print
= monitor_user_noop
,
213 .mhandler
.cmd_new
= do_screen_dump
,
217 @item screendump @
var{filename
}
219 Save screen into PPM image @
var{filename
}.
224 .args_type
= "filename:F",
225 .params
= "filename",
226 .help
= "output logs to 'filename'",
227 .mhandler
.cmd
= do_logfile
,
231 @item logfile @
var{filename
}
233 Output logs to @
var{filename
}.
238 .args_type
= "items:s",
239 .params
= "item1[,...]",
240 .help
= "activate logging of the specified items to '/tmp/qemu.log'",
241 .mhandler
.cmd
= do_log
,
245 @item log @
var{item1
}[,...]
247 Activate logging of the specified items to @file
{/tmp
/qemu
.log
}.
252 .args_type
= "name:s?",
253 .params
= "[tag|id]",
254 .help
= "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
255 .mhandler
.cmd
= do_savevm
,
259 @item savevm
[@
var{tag
}|@
var{id
}]
261 Create a snapshot of the whole virtual machine
. If @
var{tag
} is
262 provided
, it is used as human readable identifier
. If there is already
263 a snapshot with the same tag or ID
, it is replaced
. More info at
269 .args_type
= "name:s",
271 .help
= "restore a VM snapshot from its tag or id",
272 .mhandler
.cmd
= do_loadvm
,
276 @item loadvm @
var{tag
}|@
var{id
}
278 Set the whole virtual machine to the snapshot identified by the tag
279 @
var{tag
} or the unique snapshot ID @
var{id
}.
284 .args_type
= "name:s",
286 .help
= "delete a VM snapshot from its tag or id",
287 .mhandler
.cmd
= do_delvm
,
291 @item delvm @
var{tag
}|@
var{id
}
293 Delete the snapshot identified by @
var{tag
} or @
var{id
}.
297 .name
= "singlestep",
298 .args_type
= "option:s?",
299 .params
= "[on|off]",
300 .help
= "run emulation in singlestep mode or switch to normal mode",
301 .mhandler
.cmd
= do_singlestep
,
305 @item singlestep
[off
]
307 Run the emulation
in single step mode
.
308 If called with option off
, the emulation returns to normal mode
.
315 .help
= "stop emulation",
316 .user_print
= monitor_user_noop
,
317 .mhandler
.cmd_new
= do_stop
,
330 .help
= "resume emulation",
331 .user_print
= monitor_user_noop
,
332 .mhandler
.cmd_new
= do_cont
,
343 .args_type
= "device:s?",
344 .params
= "[device]",
345 .help
= "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
346 .mhandler
.cmd
= do_gdbserver
,
350 @item gdbserver
[@
var{port
}]
352 Start gdbserver
session (default @
var{port
}=1234)
357 .args_type
= "fmt:/,addr:l",
358 .params
= "/fmt addr",
359 .help
= "virtual memory dump starting at 'addr'",
360 .mhandler
.cmd
= do_memory_dump
,
364 @item x
/fmt @
var{addr
}
366 Virtual memory dump starting at @
var{addr
}.
371 .args_type
= "fmt:/,addr:l",
372 .params
= "/fmt addr",
373 .help
= "physical memory dump starting at 'addr'",
374 .mhandler
.cmd
= do_physical_memory_dump
,
378 @item xp
/@
var{fmt
} @
var{addr
}
380 Physical memory dump starting at @
var{addr
}.
382 @
var{fmt
} is a format which tells the command how to format the
383 data
. Its syntax is
: @option
{/@
{count@
}@
{format@
}@
{size@
}}
387 is the number of items to be dumped
.
390 can be
x (hex
), d (signed decimal
), u (unsigned decimal
), o (octal
),
391 c (char
) or
i (asm instruction
).
394 can be
b (8 bits
), h (16 bits
), w (32 bits
) or
g (64 bits
). On x86
,
395 @code
{h
} or @code
{w
} can be specified with the @code
{i
} format to
396 respectively select
16 or
32 bit code instruction size
.
403 Dump
10 instructions at the current instruction pointer
:
408 0x90107065: lea
0x0(%esi
,1),%esi
409 0x90107069: lea
0x0(%edi
,1),%edi
411 0x90107071: jmp
0x90107080
419 Dump
80 16 bit values at the start of the video memory
.
421 (qemu
) xp
/80hx
0xb8000
422 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
423 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
424 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
425 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
426 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
427 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
428 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
429 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
430 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
431 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
438 .args_type
= "fmt:/,val:l",
439 .params
= "/fmt expr",
440 .help
= "print expression value (use $reg for CPU register access)",
441 .mhandler
.cmd
= do_print
,
445 @item p or print
/@
var{fmt
} @
var{expr
}
448 Print expression value
. Only the @
var{format
} part of @
var{fmt
} is
454 .args_type
= "fmt:/,addr:i,index:i.",
455 .params
= "/fmt addr",
456 .help
= "I/O port read",
457 .mhandler
.cmd
= do_ioport_read
,
466 .args_type
= "fmt:/,addr:i,val:i",
467 .params
= "/fmt addr value",
468 .help
= "I/O port write",
469 .mhandler
.cmd
= do_ioport_write
,
478 .args_type
= "string:s,hold_time:i?",
479 .params
= "keys [hold_ms]",
480 .help
= "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
481 .mhandler
.cmd
= do_sendkey
,
485 @item sendkey @
var{keys
}
488 Send @
var{keys
} to the emulator
. @
var{keys
} could be the name of the
489 key or @code
{#
} followed by the raw value
in either decimal or hexadecimal
490 format
. Use @code
{-} to press several keys simultaneously
. Example
:
495 This command is useful to send keys that your graphical user
interface
496 intercepts at low level
, such as @code
{ctrl
-alt
-f1
} in X Window
.
500 .name
= "system_reset",
503 .help
= "reset the system",
504 .user_print
= monitor_user_noop
,
505 .mhandler
.cmd_new
= do_system_reset
,
516 .name
= "system_powerdown",
519 .help
= "send system power down event",
520 .user_print
= monitor_user_noop
,
521 .mhandler
.cmd_new
= do_system_powerdown
,
525 @item system_powerdown
526 @findex system_powerdown
528 Power down the
system (if supported
).
533 .args_type
= "start:i,size:i",
534 .params
= "addr size",
535 .help
= "compute the checksum of a memory region",
536 .mhandler
.cmd
= do_sum
,
540 @item sum @
var{addr
} @
var{size
}
543 Compute the checksum of a memory region
.
548 .args_type
= "devname:s",
550 .help
= "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
551 .mhandler
.cmd
= do_usb_add
,
555 @item usb_add @
var{devname
}
558 Add the USB device @
var{devname
}. For details of available devices see
564 .args_type
= "devname:s",
566 .help
= "remove USB device 'bus.addr'",
567 .mhandler
.cmd
= do_usb_del
,
571 @item usb_del @
var{devname
}
574 Remove the USB device @
var{devname
} from the QEMU virtual USB
575 hub
. @
var{devname
} has the syntax @code
{bus
.addr
}. Use the monitor
576 command @code
{info usb
} to see the devices you can remove
.
580 .name
= "device_add",
581 .args_type
= "device:O",
582 .params
= "driver[,prop=value][,...]",
583 .help
= "add device, like -device on the command line",
584 .user_print
= monitor_user_noop
,
585 .mhandler
.cmd_new
= do_device_add
,
589 @item device_add @
var{config
}
596 .name
= "device_del",
599 .help
= "remove device",
600 .user_print
= monitor_user_noop
,
601 .mhandler
.cmd_new
= do_device_del
,
605 @item device_del @
var{id
}
608 Remove device @
var{id
}.
613 .args_type
= "index:i",
615 .help
= "set the default CPU",
616 .user_print
= monitor_user_noop
,
617 .mhandler
.cmd_new
= do_cpu_set
,
621 @item cpu @
var{index
}
627 .name
= "mouse_move",
628 .args_type
= "dx_str:s,dy_str:s,dz_str:s?",
629 .params
= "dx dy [dz]",
630 .help
= "send mouse move events",
631 .mhandler
.cmd
= do_mouse_move
,
635 @item mouse_move @
var{dx
} @
var{dy
} [@
var{dz
}]
637 Move the active mouse to the specified coordinates @
var{dx
} @
var{dy
}
638 with optional scroll axis @
var{dz
}.
642 .name
= "mouse_button",
643 .args_type
= "button_state:i",
645 .help
= "change mouse button state (1=L, 2=M, 4=R)",
646 .mhandler
.cmd
= do_mouse_button
,
650 @item mouse_button @
var{val
}
652 Change the active mouse button state @
var{val
} (1=L
, 2=M
, 4=R
).
657 .args_type
= "index:i",
659 .help
= "set which mouse device receives events",
660 .mhandler
.cmd
= do_mouse_set
,
664 @item mouse_set @
var{index
}
666 Set which mouse device receives events at given @
var{index
}, index
675 .name
= "wavcapture",
676 .args_type
= "path:F,freq:i?,bits:i?,nchannels:i?",
677 .params
= "path [frequency [bits [channels]]]",
678 .help
= "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
679 .mhandler
.cmd
= do_wav_capture
,
683 @item wavcapture @
var{filename
} [@
var{frequency
} [@
var{bits
} [@
var{channels
}]]]
685 Capture audio into @
var{filename
}. Using sample rate @
var{frequency
}
686 bits per sample @
var{bits
} and number of channels @
var{channels
}.
690 @item Sample rate
= 44100 Hz
- CD quality
692 @item Number of channels
= 2 - Stereo
698 .name
= "stopcapture",
700 .params
= "capture index",
701 .help
= "stop capture",
702 .mhandler
.cmd
= do_stop_capture
,
706 @item stopcapture @
var{index
}
708 Stop capture with a given @
var{index
}, index can be obtained with
716 .args_type
= "val:l,size:i,filename:s",
717 .params
= "addr size file",
718 .help
= "save to disk virtual memory dump starting at 'addr' of size 'size'",
719 .user_print
= monitor_user_noop
,
720 .mhandler
.cmd_new
= do_memory_save
,
724 @item memsave @
var{addr
} @
var{size
} @
var{file
}
726 save to disk virtual memory dump starting at @
var{addr
} of size @
var{size
}.
731 .args_type
= "val:l,size:i,filename:s",
732 .params
= "addr size file",
733 .help
= "save to disk physical memory dump starting at 'addr' of size 'size'",
734 .user_print
= monitor_user_noop
,
735 .mhandler
.cmd_new
= do_physical_memory_save
,
739 @item pmemsave @
var{addr
} @
var{size
} @
var{file
}
741 save to disk physical memory dump starting at @
var{addr
} of size @
var{size
}.
746 .args_type
= "bootdevice:s",
747 .params
= "bootdevice",
748 .help
= "define new values for the boot device list",
749 .mhandler
.cmd
= do_boot_set
,
753 @item boot_set @
var{bootdevicelist
}
756 Define
new values
for the boot device list
. Those values will
override
757 the values specified on the command line through the @code
{-boot
} option
.
759 The values that can be specified
here depend on the machine type
, but are
760 the same that can be specified
in the @code
{-boot
} command line option
.
763 #
if defined(TARGET_I386
)
766 .args_type
= "cpu_index:i",
768 .help
= "inject an NMI on the given CPU",
769 .mhandler
.cmd
= do_inject_nmi
,
775 Inject an NMI on the given
CPU (x86 only
).
780 .args_type
= "detach:-d,blk:-b,inc:-i,uri:s",
781 .params
= "[-d] [-b] [-i] uri",
782 .help
= "migrate to URI (using -d to not wait for completion)"
783 "\n\t\t\t -b for migration without shared storage with"
784 " full copy of disk\n\t\t\t -i for migration without "
785 "shared storage with incremental copy of disk "
786 "(base image shared between src and destination)",
787 .user_print
= monitor_user_noop
,
788 .mhandler
.cmd_new
= do_migrate
,
793 @item migrate
[-d
] [-b
] [-i
] @
var{uri
}
795 Migrate to @
var{uri
} (using -d to not wait
for completion
).
796 -b
for migration with full copy of disk
797 -i
for migration with incremental copy of
disk (base image is shared
)
801 .name
= "migrate_cancel",
804 .help
= "cancel the current VM migration",
805 .user_print
= monitor_user_noop
,
806 .mhandler
.cmd_new
= do_migrate_cancel
,
811 @findex migrate_cancel
812 Cancel the current VM migration
.
816 .name
= "migrate_set_speed",
817 .args_type
= "value:f",
819 .help
= "set maximum speed (in bytes) for migrations",
820 .user_print
= monitor_user_noop
,
821 .mhandler
.cmd_new
= do_migrate_set_speed
,
825 @item migrate_set_speed @
var{value
}
826 @findex migrate_set_speed
827 Set maximum speed to @
var{value
} (in bytes
) for migrations
.
831 .name
= "migrate_set_downtime",
832 .args_type
= "value:T",
834 .help
= "set maximum tolerated downtime (in seconds) for migrations",
835 .user_print
= monitor_user_noop
,
836 .mhandler
.cmd_new
= do_migrate_set_downtime
,
840 @item migrate_set_downtime @
var{second
}
841 @findex migrate_set_downtime
842 Set maximum tolerated
downtime (in seconds
) for migration
.
845 #
if defined(TARGET_I386
)
848 .args_type
= "pci_addr:s,opts:s",
849 .params
= "[[<domain>:]<bus>:]<slot>\n"
850 "[file=file][,if=type][,bus=n]\n"
851 "[,unit=m][,media=d][index=i]\n"
852 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
853 "[snapshot=on|off][,cache=on|off]",
854 .help
= "add drive to PCI storage controller",
855 .mhandler
.cmd
= drive_hot_add
,
862 Add drive to PCI storage controller
.
865 #
if defined(TARGET_I386
)
868 .args_type
= "pci_addr:s,type:s,opts:s?",
869 .params
= "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
870 .help
= "hot-add PCI device",
871 .mhandler
.cmd
= pci_device_hot_add
,
881 #
if defined(TARGET_I386
)
884 .args_type
= "pci_addr:s",
885 .params
= "[[<domain>:]<bus>:]<slot>",
886 .help
= "hot remove PCI device",
887 .mhandler
.cmd
= do_pci_device_hot_remove
,
894 Hot remove PCI device
.
898 .name
= "host_net_add",
899 .args_type
= "device:s,opts:s?",
900 .params
= "tap|user|socket|vde|dump [options]",
901 .help
= "add host VLAN client",
902 .mhandler
.cmd
= net_host_device_add
,
908 Add host VLAN client
.
912 .name
= "host_net_remove",
913 .args_type
= "vlan_id:i,device:s",
914 .params
= "vlan_id name",
915 .help
= "remove host VLAN client",
916 .mhandler
.cmd
= net_host_device_remove
,
920 @item host_net_remove
921 @findex host_net_remove
922 Remove host VLAN client
.
926 .name
= "netdev_add",
927 .args_type
= "netdev:O",
928 .params
= "[user|tap|socket],id=str[,prop=value][,...]",
929 .help
= "add host network device",
930 .user_print
= monitor_user_noop
,
931 .mhandler
.cmd_new
= do_netdev_add
,
937 Add host network device
.
941 .name
= "netdev_del",
944 .help
= "remove host network device",
945 .user_print
= monitor_user_noop
,
946 .mhandler
.cmd_new
= do_netdev_del
,
952 Remove host network device
.
957 .name
= "hostfwd_add",
958 .args_type
= "arg1:s,arg2:s?,arg3:s?",
959 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
960 .help
= "redirect TCP or UDP connections from host to guest (requires -net user)",
961 .mhandler
.cmd
= net_slirp_hostfwd_add
,
967 Redirect TCP or UDP connections from host to
guest (requires
-net user
).
972 .name
= "hostfwd_remove",
973 .args_type
= "arg1:s,arg2:s?,arg3:s?",
974 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
975 .help
= "remove host-to-guest TCP or UDP redirection",
976 .mhandler
.cmd
= net_slirp_hostfwd_remove
,
982 @findex hostfwd_remove
983 Remove host
-to
-guest TCP or UDP redirection
.
988 .args_type
= "value:M",
990 .help
= "request VM to change its memory allocation (in MB)",
991 .user_print
= monitor_user_noop
,
992 .mhandler
.cmd_async
= do_balloon
,
997 @item balloon @
var{value
}
999 Request VM to change its memory allocation to @
var{value
} (in MB
).
1004 .args_type
= "name:s,up:b",
1005 .params
= "name on|off",
1006 .help
= "change the link status of a network adapter",
1007 .user_print
= monitor_user_noop
,
1008 .mhandler
.cmd_new
= do_set_link
,
1012 @item set_link @
var{name
} [on|off
]
1014 Switch link @
var{name
} on (i
.e
. up
) or
off (i
.e
. down
).
1018 .name
= "watchdog_action",
1019 .args_type
= "action:s",
1020 .params
= "[reset|shutdown|poweroff|pause|debug|none]",
1021 .help
= "change watchdog action",
1022 .mhandler
.cmd
= do_watchdog_action
,
1026 @item watchdog_action
1027 @findex watchdog_action
1028 Change watchdog action
.
1033 .args_type
= "aclname:s",
1034 .params
= "aclname",
1035 .help
= "list rules in the access control list",
1036 .mhandler
.cmd
= do_acl_show
,
1040 @item acl_show @
var{aclname
}
1042 List all the matching rules
in the access control list
, and the
default
1043 policy
. There are currently two named access control lists
,
1044 @
var{vnc
.x509dname
} and @
var{vnc
.username
} matching on the x509 client
1045 certificate distinguished name
, and SASL username respectively
.
1049 .name
= "acl_policy",
1050 .args_type
= "aclname:s,policy:s",
1051 .params
= "aclname allow|deny",
1052 .help
= "set default access control list policy",
1053 .mhandler
.cmd
= do_acl_policy
,
1057 @item acl_policy @
var{aclname
} @code
{allow|deny
}
1059 Set the
default access control list policy
, used
in the event that
1060 none of the explicit rules match
. The
default policy at startup is
1066 .args_type
= "aclname:s,match:s,policy:s,index:i?",
1067 .params
= "aclname match allow|deny [index]",
1068 .help
= "add a match rule to the access control list",
1069 .mhandler
.cmd
= do_acl_add
,
1073 @item acl_add @
var{aclname
} @
var{match
} @code
{allow|deny
} [@
var{index
}]
1075 Add a match rule to the access control list
, allowing or denying access
.
1076 The match will normally be an exact username or x509 distinguished name
,
1077 but can optionally include wildcard globs
. eg @code
{*@@EXAMPLE
.COM
} to
1078 allow all users
in the @code
{EXAMPLE
.COM
} kerberos realm
. The match will
1079 normally be appended to the end of the ACL
, but can be inserted
1080 earlier
in the list
if the optional @
var{index
} parameter is supplied
.
1084 .name
= "acl_remove",
1085 .args_type
= "aclname:s,match:s",
1086 .params
= "aclname match",
1087 .help
= "remove a match rule from the access control list",
1088 .mhandler
.cmd
= do_acl_remove
,
1092 @item acl_remove @
var{aclname
} @
var{match
}
1094 Remove the specified match rule from the access control list
.
1098 .name
= "acl_reset",
1099 .args_type
= "aclname:s",
1100 .params
= "aclname",
1101 .help
= "reset the access control list",
1102 .mhandler
.cmd
= do_acl_reset
,
1106 @item acl_reset @
var{aclname
}
1108 Remove all matches from the access control list
, and set the
default
1109 policy back to @code
{deny
}.
1112 #
if defined(TARGET_I386
)
1116 .args_type
= "cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1117 .params
= "cpu bank status mcgstatus addr misc",
1118 .help
= "inject a MCE on the given CPU",
1119 .mhandler
.cmd
= do_inject_mce
,
1124 @item mce @
var{cpu
} @
var{bank
} @
var{status
} @
var{mcgstatus
} @
var{addr
} @
var{misc
}
1126 Inject an MCE on the given
CPU (x86 only
).
1131 .args_type
= "fdname:s",
1132 .params
= "getfd name",
1133 .help
= "receive a file descriptor via SCM rights and assign it a name",
1134 .user_print
= monitor_user_noop
,
1135 .mhandler
.cmd_new
= do_getfd
,
1139 @item getfd @
var{fdname
}
1141 If a file descriptor is passed alongside
this command
using the SCM_RIGHTS
1142 mechanism on unix sockets
, it is stored
using the name @
var{fdname
} for
1143 later use by other monitor commands
.
1148 .args_type
= "fdname:s",
1149 .params
= "closefd name",
1150 .help
= "close a file descriptor previously passed via SCM rights",
1151 .user_print
= monitor_user_noop
,
1152 .mhandler
.cmd_new
= do_closefd
,
1156 @item closefd @
var{fdname
}
1158 Close the file descriptor previously assigned to @
var{fdname
} using the
1159 @code
{getfd
} command
. This is only needed
if the file descriptor was
never
1160 used by another monitor command
.
1164 .name
= "block_passwd",
1165 .args_type
= "device:B,password:s",
1166 .params
= "block_passwd device password",
1167 .help
= "set the password of encrypted block devices",
1168 .user_print
= monitor_user_noop
,
1169 .mhandler
.cmd_new
= do_block_set_passwd
,
1173 @item block_passwd @
var{device
} @
var{password
}
1174 @findex block_passwd
1175 Set the encrypted device @
var{device
} password to @
var{password
}
1179 .name
= "qmp_capabilities",
1182 .help
= "enable QMP capabilities",
1183 .user_print
= monitor_user_noop
,
1184 .mhandler
.cmd_new
= do_qmp_capabilities
,
1188 @item qmp_capabilities
1189 @findex qmp_capabilities
1190 Enable the specified QMP capabilities