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 show the various VLANs and the associated devices
60 show the character devices
62 show the block devices
64 show block device statistics
66 show the cpu registers
68 show infos
for each CPU
70 show the command line history
72 show the interrupts
statistics (if available
)
74 show
i8259 (PIC
) state
76 show emulated PCI device info
78 show virtual to physical memory
mappings (i386 only
)
80 show the active virtual memory
mappings (i386 only
)
82 show state of
HPET (i386 only
)
86 show USB devices plugged on the virtual USB hub
88 show all USB host devices
90 show profiling information
92 show information about active capturing
94 show list of VM snapshots
96 show the current VM
status (running|paused
)
98 show guest PCMCIA status
100 show which guest mouse is receiving events
102 show the vnc server status
104 show the current VM name
106 show the current VM UUID
110 show user network stack connection states
112 show migration status
114 show balloon information
124 .help
= "quit the emulator",
125 .user_print
= monitor_user_noop
,
126 .mhandler
.cmd_new
= do_quit
,
137 .args_type
= "force:-f,device:B",
138 .params
= "[-f] device",
139 .help
= "eject a removable medium (use -f to force it)",
140 .user_print
= monitor_user_noop
,
141 .mhandler
.cmd_new
= do_eject
,
145 @item eject
[-f
] @
var{device
}
147 Eject a removable
medium (use
-f to force it
).
152 .args_type
= "device:B,target:F,arg:s?",
153 .params
= "device filename [format]",
154 .help
= "change a removable medium, optional format",
155 .user_print
= monitor_user_noop
,
156 .mhandler
.cmd_new
= do_change
,
160 @item change @
var{device
} @
var{setting
}
163 Change the configuration of a device
.
166 @item change @
var{diskdevice
} @
var{filename
} [@
var{format
}]
167 Change the medium
for a removable disk device to point to @
var{filename
}. eg
170 (qemu
) change ide1
-cd0
/path
/to
/some
.iso
173 @
var{format
} is optional
.
175 @item change vnc @
var{display
},@
var{options
}
176 Change the configuration of the VNC server
. The valid syntax
for @
var{display
}
177 and @
var{options
} are described at @ref
{sec_invocation
}. eg
180 (qemu
) change vnc localhost
:1
183 @item change vnc password
[@
var{password
}]
185 Change the password associated with the VNC server
. If the
new password is not
186 supplied
, the monitor will prompt
for it to be entered
. VNC passwords are only
187 significant up to
8 letters
. eg
190 (qemu
) change vnc password
198 .name
= "screendump",
199 .args_type
= "filename:F",
200 .params
= "filename",
201 .help
= "save screen into PPM image 'filename'",
202 .mhandler
.cmd
= do_screen_dump
,
206 @item screendump @
var{filename
}
208 Save screen into PPM image @
var{filename
}.
213 .args_type
= "filename:F",
214 .params
= "filename",
215 .help
= "output logs to 'filename'",
216 .mhandler
.cmd
= do_logfile
,
220 @item logfile @
var{filename
}
222 Output logs to @
var{filename
}.
227 .args_type
= "items:s",
228 .params
= "item1[,...]",
229 .help
= "activate logging of the specified items to '/tmp/qemu.log'",
230 .mhandler
.cmd
= do_log
,
234 @item log @
var{item1
}[,...]
236 Activate logging of the specified items to @file
{/tmp
/qemu
.log
}.
241 .args_type
= "name:s?",
242 .params
= "[tag|id]",
243 .help
= "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
244 .mhandler
.cmd
= do_savevm
,
248 @item savevm
[@
var{tag
}|@
var{id
}]
250 Create a snapshot of the whole virtual machine
. If @
var{tag
} is
251 provided
, it is used as human readable identifier
. If there is already
252 a snapshot with the same tag or ID
, it is replaced
. More info at
258 .args_type
= "name:s",
260 .help
= "restore a VM snapshot from its tag or id",
261 .mhandler
.cmd
= do_loadvm
,
265 @item loadvm @
var{tag
}|@
var{id
}
267 Set the whole virtual machine to the snapshot identified by the tag
268 @
var{tag
} or the unique snapshot ID @
var{id
}.
273 .args_type
= "name:s",
275 .help
= "delete a VM snapshot from its tag or id",
276 .mhandler
.cmd
= do_delvm
,
280 @item delvm @
var{tag
}|@
var{id
}
282 Delete the snapshot identified by @
var{tag
} or @
var{id
}.
286 .name
= "singlestep",
287 .args_type
= "option:s?",
288 .params
= "[on|off]",
289 .help
= "run emulation in singlestep mode or switch to normal mode",
290 .mhandler
.cmd
= do_singlestep
,
294 @item singlestep
[off
]
296 Run the emulation
in single step mode
.
297 If called with option off
, the emulation returns to normal mode
.
304 .help
= "stop emulation",
305 .user_print
= monitor_user_noop
,
306 .mhandler
.cmd_new
= do_stop
,
319 .help
= "resume emulation",
320 .user_print
= monitor_user_noop
,
321 .mhandler
.cmd_new
= do_cont
,
332 .args_type
= "device:s?",
333 .params
= "[device]",
334 .help
= "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
335 .mhandler
.cmd
= do_gdbserver
,
339 @item gdbserver
[@
var{port
}]
341 Start gdbserver
session (default @
var{port
}=1234)
346 .args_type
= "fmt:/,addr:l",
347 .params
= "/fmt addr",
348 .help
= "virtual memory dump starting at 'addr'",
349 .mhandler
.cmd
= do_memory_dump
,
353 @item x
/fmt @
var{addr
}
355 Virtual memory dump starting at @
var{addr
}.
360 .args_type
= "fmt:/,addr:l",
361 .params
= "/fmt addr",
362 .help
= "physical memory dump starting at 'addr'",
363 .mhandler
.cmd
= do_physical_memory_dump
,
367 @item xp
/@
var{fmt
} @
var{addr
}
369 Physical memory dump starting at @
var{addr
}.
371 @
var{fmt
} is a format which tells the command how to format the
372 data
. Its syntax is
: @option
{/@
{count@
}@
{format@
}@
{size@
}}
377 is the number of items to be dumped
.
381 can be
x (hex
), d (signed decimal
), u (unsigned decimal
), o (octal
),
382 c (char
) or
i (asm instruction
).
386 can be
b (8 bits
), h (16 bits
), w (32 bits
) or
g (64 bits
). On x86
,
387 @code
{h
} or @code
{w
} can be specified with the @code
{i
} format to
388 respectively select
16 or
32 bit code instruction size
.
395 Dump
10 instructions at the current instruction pointer
:
400 0x90107065: lea
0x0(%esi
,1),%esi
401 0x90107069: lea
0x0(%edi
,1),%edi
403 0x90107071: jmp
0x90107080
411 Dump
80 16 bit values at the start of the video memory
.
413 (qemu
) xp
/80hx
0xb8000
414 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
415 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
416 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
417 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
418 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
419 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
420 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
421 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
422 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
423 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
430 .args_type
= "fmt:/,val:l",
431 .params
= "/fmt expr",
432 .help
= "print expression value (use $reg for CPU register access)",
433 .mhandler
.cmd
= do_print
,
437 @item p or print
/@
var{fmt
} @
var{expr
}
440 Print expression value
. Only the @
var{format
} part of @
var{fmt
} is
446 .args_type
= "fmt:/,addr:i,index:i.",
447 .params
= "/fmt addr",
448 .help
= "I/O port read",
449 .mhandler
.cmd
= do_ioport_read
,
458 .args_type
= "fmt:/,addr:i,val:i",
459 .params
= "/fmt addr value",
460 .help
= "I/O port write",
461 .mhandler
.cmd
= do_ioport_write
,
470 .args_type
= "string:s,hold_time:i?",
471 .params
= "keys [hold_ms]",
472 .help
= "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
473 .mhandler
.cmd
= do_sendkey
,
477 @item sendkey @
var{keys
}
480 Send @
var{keys
} to the emulator
. @
var{keys
} could be the name of the
481 key or @code
{#
} followed by the raw value
in either decimal or hexadecimal
482 format
. Use @code
{-} to press several keys simultaneously
. Example
:
487 This command is useful to send keys that your graphical user
interface
488 intercepts at low level
, such as @code
{ctrl
-alt
-f1
} in X Window
.
492 .name
= "system_reset",
495 .help
= "reset the system",
496 .user_print
= monitor_user_noop
,
497 .mhandler
.cmd_new
= do_system_reset
,
508 .name
= "system_powerdown",
511 .help
= "send system power down event",
512 .user_print
= monitor_user_noop
,
513 .mhandler
.cmd_new
= do_system_powerdown
,
517 @item system_powerdown
518 @findex system_powerdown
520 Power down the
system (if supported
).
525 .args_type
= "start:i,size:i",
526 .params
= "addr size",
527 .help
= "compute the checksum of a memory region",
528 .mhandler
.cmd
= do_sum
,
532 @item sum @
var{addr
} @
var{size
}
535 Compute the checksum of a memory region
.
540 .args_type
= "devname:s",
542 .help
= "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
543 .mhandler
.cmd
= do_usb_add
,
547 @item usb_add @
var{devname
}
550 Add the USB device @
var{devname
}. For details of available devices see
556 .args_type
= "devname:s",
558 .help
= "remove USB device 'bus.addr'",
559 .mhandler
.cmd
= do_usb_del
,
563 @item usb_del @
var{devname
}
566 Remove the USB device @
var{devname
} from the QEMU virtual USB
567 hub
. @
var{devname
} has the syntax @code
{bus
.addr
}. Use the monitor
568 command @code
{info usb
} to see the devices you can remove
.
572 .name
= "device_add",
573 .args_type
= "config:s",
575 .help
= "add device, like -device on the command line",
576 .mhandler
.cmd
= do_device_add
,
580 @item device_add @
var{config
}
587 .name
= "device_del",
590 .help
= "remove device",
591 .mhandler
.cmd
= do_device_del
,
595 @item device_del @
var{id
}
598 Remove device @
var{id
}.
603 .args_type
= "index:i",
605 .help
= "set the default CPU",
606 .user_print
= monitor_user_noop
,
607 .mhandler
.cmd_new
= do_cpu_set
,
615 .name
= "mouse_move",
616 .args_type
= "dx_str:s,dy_str:s,dz_str:s?",
617 .params
= "dx dy [dz]",
618 .help
= "send mouse move events",
619 .mhandler
.cmd
= do_mouse_move
,
623 @item mouse_move @
var{dx
} @
var{dy
} [@
var{dz
}]
625 Move the active mouse to the specified coordinates @
var{dx
} @
var{dy
}
626 with optional scroll axis @
var{dz
}.
630 .name
= "mouse_button",
631 .args_type
= "button_state:i",
633 .help
= "change mouse button state (1=L, 2=M, 4=R)",
634 .mhandler
.cmd
= do_mouse_button
,
638 @item mouse_button @
var{val
}
640 Change the active mouse button state @
var{val
} (1=L
, 2=M
, 4=R
).
645 .args_type
= "index:i",
647 .help
= "set which mouse device receives events",
648 .mhandler
.cmd
= do_mouse_set
,
652 @item mouse_set @
var{index
}
654 Set which mouse device receives events at given @
var{index
}, index
663 .name
= "wavcapture",
664 .args_type
= "path:F,freq:i?,bits:i?,nchannels:i?",
665 .params
= "path [frequency [bits [channels]]]",
666 .help
= "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
667 .mhandler
.cmd
= do_wav_capture
,
671 @item wavcapture @
var{filename
} [@
var{frequency
} [@
var{bits
} [@
var{channels
}]]]
673 Capture audio into @
var{filename
}. Using sample rate @
var{frequency
}
674 bits per sample @
var{bits
} and number of channels @
var{channels
}.
678 @item Sample rate
= 44100 Hz
- CD quality
680 @item Number of channels
= 2 - Stereo
686 .name
= "stopcapture",
688 .params
= "capture index",
689 .help
= "stop capture",
690 .mhandler
.cmd
= do_stop_capture
,
694 @item stopcapture @
var{index
}
696 Stop capture with a given @
var{index
}, index can be obtained with
704 .args_type
= "val:l,size:i,filename:s",
705 .params
= "addr size file",
706 .help
= "save to disk virtual memory dump starting at 'addr' of size 'size'",
707 .user_print
= monitor_user_noop
,
708 .mhandler
.cmd_new
= do_memory_save
,
712 @item memsave @
var{addr
} @
var{size
} @
var{file
}
714 save to disk virtual memory dump starting at @
var{addr
} of size @
var{size
}.
719 .args_type
= "val:l,size:i,filename:s",
720 .params
= "addr size file",
721 .help
= "save to disk physical memory dump starting at 'addr' of size 'size'",
722 .user_print
= monitor_user_noop
,
723 .mhandler
.cmd_new
= do_physical_memory_save
,
727 @item pmemsave @
var{addr
} @
var{size
} @
var{file
}
729 save to disk physical memory dump starting at @
var{addr
} of size @
var{size
}.
734 .args_type
= "bootdevice:s",
735 .params
= "bootdevice",
736 .help
= "define new values for the boot device list",
737 .mhandler
.cmd
= do_boot_set
,
741 @item boot_set @
var{bootdevicelist
}
744 Define
new values
for the boot device list
. Those values will
override
745 the values specified on the command line through the @code
{-boot
} option
.
747 The values that can be specified
here depend on the machine type
, but are
748 the same that can be specified
in the @code
{-boot
} command line option
.
751 #
if defined(TARGET_I386
)
754 .args_type
= "cpu_index:i",
756 .help
= "inject an NMI on the given CPU",
757 .mhandler
.cmd
= do_inject_nmi
,
763 Inject an NMI on the given
CPU (x86 only
).
768 .args_type
= "detach:-d,blk:-b,inc:-i,uri:s",
769 .params
= "[-d] [-b] [-i] uri",
770 .help
= "migrate to URI (using -d to not wait for completion)"
771 "\n\t\t\t -b for migration without shared storage with"
772 " full copy of disk\n\t\t\t -i for migration without "
773 "shared storage with incremental copy of disk "
774 "(base image shared between src and destination)",
775 .user_print
= monitor_user_noop
,
776 .mhandler
.cmd_new
= do_migrate
,
781 @item migrate
[-d
] [-b
] [-i
] @
var{uri
}
783 Migrate to @
var{uri
} (using -d to not wait
for completion
).
784 -b
for migration with full copy of disk
785 -i
for migration with incremental copy of
disk (base image is shared
)
789 .name
= "migrate_cancel",
792 .help
= "cancel the current VM migration",
793 .user_print
= monitor_user_noop
,
794 .mhandler
.cmd_new
= do_migrate_cancel
,
799 @findex migrate_cancel
800 Cancel the current VM migration
.
804 .name
= "migrate_set_speed",
805 .args_type
= "value:b",
807 .help
= "set maximum speed (in bytes) for migrations",
808 .user_print
= monitor_user_noop
,
809 .mhandler
.cmd_new
= do_migrate_set_speed
,
813 @item migrate_set_speed @
var{value
}
814 @findex migrate_set_speed
815 Set maximum speed to @
var{value
} (in bytes
) for migrations
.
819 .name
= "migrate_set_downtime",
820 .args_type
= "value:T",
822 .help
= "set maximum tolerated downtime (in seconds) for migrations",
823 .user_print
= monitor_user_noop
,
824 .mhandler
.cmd_new
= do_migrate_set_downtime
,
828 @item migrate_set_downtime @
var{second
}
829 @findex migrate_set_downtime
830 Set maximum tolerated
downtime (in seconds
) for migration
.
833 #
if defined(TARGET_I386
)
836 .args_type
= "pci_addr:s,opts:s",
837 .params
= "[[<domain>:]<bus>:]<slot>\n"
838 "[file=file][,if=type][,bus=n]\n"
839 "[,unit=m][,media=d][index=i]\n"
840 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
841 "[snapshot=on|off][,cache=on|off]",
842 .help
= "add drive to PCI storage controller",
843 .mhandler
.cmd
= drive_hot_add
,
850 Add drive to PCI storage controller
.
853 #
if defined(TARGET_I386
)
856 .args_type
= "pci_addr:s,type:s,opts:s?",
857 .params
= "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
858 .help
= "hot-add PCI device",
859 .user_print
= pci_device_hot_add_print
,
860 .mhandler
.cmd_new
= pci_device_hot_add
,
870 #
if defined(TARGET_I386
)
873 .args_type
= "pci_addr:s",
874 .params
= "[[<domain>:]<bus>:]<slot>",
875 .help
= "hot remove PCI device",
876 .user_print
= monitor_user_noop
,
877 .mhandler
.cmd_new
= do_pci_device_hot_remove
,
884 Hot remove PCI device
.
888 .name
= "host_net_add",
889 .args_type
= "device:s,opts:s?",
890 .params
= "tap|user|socket|vde|dump [options]",
891 .help
= "add host VLAN client",
892 .mhandler
.cmd
= net_host_device_add
,
898 Add host VLAN client
.
902 .name
= "host_net_remove",
903 .args_type
= "vlan_id:i,device:s",
904 .params
= "vlan_id name",
905 .help
= "remove host VLAN client",
906 .mhandler
.cmd
= net_host_device_remove
,
910 @item host_net_remove
911 @findex host_net_remove
912 Remove host VLAN client
.
917 .name
= "hostfwd_add",
918 .args_type
= "arg1:s,arg2:s?,arg3:s?",
919 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
920 .help
= "redirect TCP or UDP connections from host to guest (requires -net user)",
921 .mhandler
.cmd
= net_slirp_hostfwd_add
,
925 .name
= "hostfwd_remove",
926 .args_type
= "arg1:s,arg2:s?,arg3:s?",
927 .params
= "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
928 .help
= "remove host-to-guest TCP or UDP redirection",
929 .mhandler
.cmd
= net_slirp_hostfwd_remove
,
935 @findex host_net_redir
936 Redirect TCP or UDP connections from host to
guest (requires
-net user
).
941 .args_type
= "value:M",
943 .help
= "request VM to change it's memory allocation (in MB)",
944 .user_print
= monitor_user_noop
,
945 .mhandler
.cmd_async
= do_balloon
,
950 @item balloon @
var{value
}
952 Request VM to change its memory allocation to @
var{value
} (in MB
).
957 .args_type
= "name:s,up_or_down:s",
958 .params
= "name up|down",
959 .help
= "change the link status of a network adapter",
960 .mhandler
.cmd
= do_set_link
,
964 @item set_link @
var{name
} [up|down
]
966 Set link @
var{name
} up or down
.
970 .name
= "watchdog_action",
971 .args_type
= "action:s",
972 .params
= "[reset|shutdown|poweroff|pause|debug|none]",
973 .help
= "change watchdog action",
974 .mhandler
.cmd
= do_watchdog_action
,
978 @item watchdog_action
979 @findex watchdog_action
980 Change watchdog action
.
985 .args_type
= "aclname:s",
987 .help
= "list rules in the access control list",
988 .mhandler
.cmd
= do_acl_show
,
992 @item acl_show @
var{aclname
}
994 List all the matching rules
in the access control list
, and the
default
995 policy
. There are currently two named access control lists
,
996 @
var{vnc
.x509dname
} and @
var{vnc
.username
} matching on the x509 client
997 certificate distinguished name
, and SASL username respectively
.
1001 .name
= "acl_policy",
1002 .args_type
= "aclname:s,policy:s",
1003 .params
= "aclname allow|deny",
1004 .help
= "set default access control list policy",
1005 .mhandler
.cmd
= do_acl_policy
,
1009 @item acl_policy @
var{aclname
} @code
{allow|deny
}
1011 Set the
default access control list policy
, used
in the event that
1012 none of the explicit rules match
. The
default policy at startup is
1018 .args_type
= "aclname:s,match:s,policy:s,index:i?",
1019 .params
= "aclname match allow|deny [index]",
1020 .help
= "add a match rule to the access control list",
1021 .mhandler
.cmd
= do_acl_add
,
1025 @item acl_allow @
var{aclname
} @
var{match
} @code
{allow|deny
} [@
var{index
}]
1027 Add a match rule to the access control list
, allowing or denying access
.
1028 The match will normally be an exact username or x509 distinguished name
,
1029 but can optionally include wildcard globs
. eg @code
{*@@EXAMPLE
.COM
} to
1030 allow all users
in the @code
{EXAMPLE
.COM
} kerberos realm
. The match will
1031 normally be appended to the end of the ACL
, but can be inserted
1032 earlier
in the list
if the optional @
var{index
} parameter is supplied
.
1036 .name
= "acl_remove",
1037 .args_type
= "aclname:s,match:s",
1038 .params
= "aclname match",
1039 .help
= "remove a match rule from the access control list",
1040 .mhandler
.cmd
= do_acl_remove
,
1044 @item acl_remove @
var{aclname
} @
var{match
}
1046 Remove the specified match rule from the access control list
.
1050 .name
= "acl_reset",
1051 .args_type
= "aclname:s",
1052 .params
= "aclname",
1053 .help
= "reset the access control list",
1054 .mhandler
.cmd
= do_acl_reset
,
1058 @item acl_remove @
var{aclname
}
1059 Remove all matches from the access control list
, and set the
default
1060 policy back to @code
{deny
}.
1063 #
if defined(TARGET_I386
)
1067 .args_type
= "cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1068 .params
= "cpu bank status mcgstatus addr misc",
1069 .help
= "inject a MCE on the given CPU",
1070 .mhandler
.cmd
= do_inject_mce
,
1075 @item mce @
var{cpu
} @
var{bank
} @
var{status
} @
var{mcgstatus
} @
var{addr
} @
var{misc
}
1077 Inject an MCE on the given
CPU (x86 only
).
1082 .args_type
= "fdname:s",
1083 .params
= "getfd name",
1084 .help
= "receive a file descriptor via SCM rights and assign it a name",
1085 .user_print
= monitor_user_noop
,
1086 .mhandler
.cmd_new
= do_getfd
,
1090 @item getfd @
var{fdname
}
1092 If a file descriptor is passed alongside
this command
using the SCM_RIGHTS
1093 mechanism on unix sockets
, it is stored
using the name @
var{fdname
} for
1094 later use by other monitor commands
.
1099 .args_type
= "fdname:s",
1100 .params
= "closefd name",
1101 .help
= "close a file descriptor previously passed via SCM rights",
1102 .user_print
= monitor_user_noop
,
1103 .mhandler
.cmd_new
= do_closefd
,
1107 @item closefd @
var{fdname
}
1109 Close the file descriptor previously assigned to @
var{fdname
} using the
1110 @code
{getfd
} command
. This is only needed
if the file descriptor was
never
1111 used by another monitor command
.
1115 .name
= "block_passwd",
1116 .args_type
= "device:B,password:s",
1117 .params
= "block_passwd device password",
1118 .help
= "set the password of encrypted block devices",
1119 .user_print
= monitor_user_noop
,
1120 .mhandler
.cmd_new
= do_block_set_passwd
,
1124 @item block_passwd @
var{device
} @
var{password
}
1125 @findex block_passwd
1126 Set the encrypted device @
var{device
} password to @
var{password
}
1130 .name
= "qmp_capabilities",
1133 .help
= "enable QMP capabilities",
1134 .user_print
= monitor_user_noop
,
1135 .mhandler
.cmd_new
= do_qmp_capabilities
,
1139 @item qmp_capabilities
1140 Enable the specified QMP capabilities