blob: 476b3cda2ef4f363f27edaa338c60decbafc813a [file] [log] [blame]
Blue Swirl23130862009-06-06 08:22:04 +00001HXCOMM Use DEFHEADING() to define headings in both help text and texi
2HXCOMM Text between STEXI and ETEXI are copied to texi version and
3HXCOMM discarded from C version
4HXCOMM DEF(command, args, callback, arg_string, help) is used to construct
5HXCOMM monitor commands
6HXCOMM HXCOMM can be used for comments, discarded from both texi and C
7
8STEXI
9@table @option
10ETEXI
11
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030012 {
13 .name = "help|?",
14 .args_type = "name:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030015 .params = "[cmd]",
16 .help = "show the help",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -030017 .mhandler.cmd = do_help_cmd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030018 },
19
Blue Swirl23130862009-06-06 08:22:04 +000020STEXI
21@item help or ? [@var{cmd}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +010022@findex help
Blue Swirl23130862009-06-06 08:22:04 +000023Show the help for all commands or just for command @var{cmd}.
24ETEXI
25
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030026 {
27 .name = "commit",
28 .args_type = "device:B",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030029 .params = "device|all",
30 .help = "commit changes to the disk images (if -snapshot is used) or backing files",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -030031 .mhandler.cmd = do_commit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030032 },
33
Blue Swirl23130862009-06-06 08:22:04 +000034STEXI
35@item commit
Stefan Weil70fcbbe2010-02-05 23:52:04 +010036@findex commit
Blue Swirl23130862009-06-06 08:22:04 +000037Commit changes to the disk images (if -snapshot is used) or backing files.
38ETEXI
39
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030040 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030041 .name = "q|quit",
42 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030043 .params = "",
44 .help = "quit the emulator",
Luiz Capitulinob223f352009-10-07 13:41:56 -030045 .user_print = monitor_user_noop,
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030046 .mhandler.cmd = hmp_quit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030047 },
48
Blue Swirl23130862009-06-06 08:22:04 +000049STEXI
50@item q or quit
Stefan Weil70fcbbe2010-02-05 23:52:04 +010051@findex quit
Blue Swirl23130862009-06-06 08:22:04 +000052Quit the emulator.
53ETEXI
54
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030055 {
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010056 .name = "block_resize",
57 .args_type = "device:B,size:o",
58 .params = "device size",
59 .help = "resize a block image",
Luiz Capitulino5e7caac2011-11-25 14:57:10 -020060 .mhandler.cmd = hmp_block_resize,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010061 },
62
63STEXI
64@item block_resize
65@findex block_resize
66Resize a block image while a guest is running. Usually requires guest
67action to see the updated size. Resize to a lower size is supported,
68but should be used with extreme caution. Note that this command only
69resizes image files, it can not resize block devices like LVM volumes.
70ETEXI
71
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000072 {
73 .name = "block_stream",
Stefan Hajnoczic83c66c2012-04-25 16:51:03 +010074 .args_type = "device:B,speed:o?,base:s?",
75 .params = "device [speed [base]]",
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000076 .help = "copy data from a backing file into a block device",
77 .mhandler.cmd = hmp_block_stream,
78 },
79
80STEXI
81@item block_stream
82@findex block_stream
83Copy data from a backing file into a block device.
84ETEXI
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010085
86 {
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +000087 .name = "block_job_set_speed",
Stefan Hajnoczi882ec7c2012-04-25 16:51:02 +010088 .args_type = "device:B,speed:o",
89 .params = "device speed",
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +000090 .help = "set maximum speed for a background block operation",
91 .mhandler.cmd = hmp_block_job_set_speed,
92 },
93
94STEXI
Paolo Bonzini4451b792012-04-13 12:03:46 +020095@item block_job_set_speed
96@findex block_job_set_speed
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +000097Set maximum speed for a background block operation.
98ETEXI
99
100 {
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000101 .name = "block_job_cancel",
102 .args_type = "device:B",
103 .params = "device",
Paolo Bonzini05290d82012-07-24 13:03:39 +0200104 .help = "stop an active background block operation",
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000105 .mhandler.cmd = hmp_block_job_cancel,
106 },
107
108STEXI
109@item block_job_cancel
110@findex block_job_cancel
111Stop an active block streaming operation.
112ETEXI
113
114 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300115 .name = "eject",
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200116 .args_type = "force:-f,device:B",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300117 .params = "[-f] device",
118 .help = "eject a removable medium (use -f to force it)",
Luiz Capitulinoc245b6a2011-12-07 16:02:36 -0200119 .mhandler.cmd = hmp_eject,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300120 },
121
Blue Swirl23130862009-06-06 08:22:04 +0000122STEXI
123@item eject [-f] @var{device}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100124@findex eject
Blue Swirl23130862009-06-06 08:22:04 +0000125Eject a removable medium (use -f to force it).
126ETEXI
127
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300128 {
Ryan Harper9063f812010-11-12 11:07:13 -0600129 .name = "drive_del",
130 .args_type = "id:s",
131 .params = "device",
132 .help = "remove host block device",
133 .user_print = monitor_user_noop,
134 .mhandler.cmd_new = do_drive_del,
135 },
136
137STEXI
138@item drive_del @var{device}
139@findex drive_del
140Remove host block device. The result is that guest generated IO is no longer
141submitted against the host device underlying the disk. Once a drive has
142been deleted, the QEMU Block layer returns -EIO which results in IO
143errors in the guest for applications that are reading/writing to the device.
144ETEXI
145
146 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300147 .name = "change",
148 .args_type = "device:B,target:F,arg:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300149 .params = "device filename [format]",
150 .help = "change a removable medium, optional format",
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200151 .mhandler.cmd = hmp_change,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300152 },
153
Blue Swirl23130862009-06-06 08:22:04 +0000154STEXI
155@item change @var{device} @var{setting}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100156@findex change
Blue Swirl23130862009-06-06 08:22:04 +0000157
158Change the configuration of a device.
159
160@table @option
161@item change @var{diskdevice} @var{filename} [@var{format}]
162Change the medium for a removable disk device to point to @var{filename}. eg
163
164@example
165(qemu) change ide1-cd0 /path/to/some.iso
166@end example
167
168@var{format} is optional.
169
170@item change vnc @var{display},@var{options}
171Change the configuration of the VNC server. The valid syntax for @var{display}
172and @var{options} are described at @ref{sec_invocation}. eg
173
174@example
175(qemu) change vnc localhost:1
176@end example
177
178@item change vnc password [@var{password}]
179
180Change the password associated with the VNC server. If the new password is not
181supplied, the monitor will prompt for it to be entered. VNC passwords are only
182significant up to 8 letters. eg
183
184@example
185(qemu) change vnc password
186Password: ********
187@end example
188
189@end table
190ETEXI
191
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300192 {
193 .name = "screendump",
194 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300195 .params = "filename",
196 .help = "save screen into PPM image 'filename'",
Luiz Capitulinof1dc58e2010-03-31 15:21:49 -0300197 .user_print = monitor_user_noop,
198 .mhandler.cmd_new = do_screen_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300199 },
200
Blue Swirl23130862009-06-06 08:22:04 +0000201STEXI
202@item screendump @var{filename}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100203@findex screendump
Blue Swirl23130862009-06-06 08:22:04 +0000204Save screen into PPM image @var{filename}.
205ETEXI
206
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300207 {
208 .name = "logfile",
209 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300210 .params = "filename",
211 .help = "output logs to 'filename'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300212 .mhandler.cmd = do_logfile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300213 },
214
Blue Swirl23130862009-06-06 08:22:04 +0000215STEXI
216@item logfile @var{filename}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100217@findex logfile
Blue Swirl23130862009-06-06 08:22:04 +0000218Output logs to @var{filename}.
219ETEXI
220
Prerna Saxena22890ab2010-06-24 17:04:53 +0530221 {
222 .name = "trace-event",
223 .args_type = "name:s,option:b",
224 .params = "name on|off",
225 .help = "changes status of a specific trace event",
Lluísfc764102011-08-31 20:31:18 +0200226 .mhandler.cmd = do_trace_event_set_state,
Prerna Saxena22890ab2010-06-24 17:04:53 +0530227 },
228
229STEXI
230@item trace-event
231@findex trace-event
232changes status of a trace event
233ETEXI
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100234
Michael Rothc45a8162011-10-02 08:44:37 -0500235#if defined(CONFIG_TRACE_SIMPLE)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100236 {
237 .name = "trace-file",
238 .args_type = "op:s?,arg:F?",
239 .params = "on|off|flush|set [arg]",
240 .help = "open, close, or flush trace file, or set a new file name",
241 .mhandler.cmd = do_trace_file,
242 },
243
244STEXI
245@item trace-file on|off|flush
246@findex trace-file
247Open, close, or flush the trace file. If no argument is given, the status of the trace file is displayed.
248ETEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +0530249#endif
250
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300251 {
252 .name = "log",
253 .args_type = "items:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300254 .params = "item1[,...]",
255 .help = "activate logging of the specified items to '/tmp/qemu.log'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300256 .mhandler.cmd = do_log,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300257 },
258
Blue Swirl23130862009-06-06 08:22:04 +0000259STEXI
260@item log @var{item1}[,...]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100261@findex log
Blue Swirl23130862009-06-06 08:22:04 +0000262Activate logging of the specified items to @file{/tmp/qemu.log}.
263ETEXI
264
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300265 {
266 .name = "savevm",
267 .args_type = "name:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300268 .params = "[tag|id]",
269 .help = "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300270 .mhandler.cmd = do_savevm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300271 },
272
Blue Swirl23130862009-06-06 08:22:04 +0000273STEXI
274@item savevm [@var{tag}|@var{id}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100275@findex savevm
Blue Swirl23130862009-06-06 08:22:04 +0000276Create a snapshot of the whole virtual machine. If @var{tag} is
277provided, it is used as human readable identifier. If there is already
278a snapshot with the same tag or ID, it is replaced. More info at
279@ref{vm_snapshots}.
280ETEXI
281
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300282 {
283 .name = "loadvm",
284 .args_type = "name:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300285 .params = "tag|id",
286 .help = "restore a VM snapshot from its tag or id",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300287 .mhandler.cmd = do_loadvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300288 },
289
Blue Swirl23130862009-06-06 08:22:04 +0000290STEXI
291@item loadvm @var{tag}|@var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100292@findex loadvm
Blue Swirl23130862009-06-06 08:22:04 +0000293Set the whole virtual machine to the snapshot identified by the tag
294@var{tag} or the unique snapshot ID @var{id}.
295ETEXI
296
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300297 {
298 .name = "delvm",
299 .args_type = "name:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300300 .params = "tag|id",
301 .help = "delete a VM snapshot from its tag or id",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300302 .mhandler.cmd = do_delvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300303 },
304
Blue Swirl23130862009-06-06 08:22:04 +0000305STEXI
306@item delvm @var{tag}|@var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100307@findex delvm
Blue Swirl23130862009-06-06 08:22:04 +0000308Delete the snapshot identified by @var{tag} or @var{id}.
309ETEXI
310
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300311 {
312 .name = "singlestep",
313 .args_type = "option:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300314 .params = "[on|off]",
315 .help = "run emulation in singlestep mode or switch to normal mode",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300316 .mhandler.cmd = do_singlestep,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300317 },
318
Blue Swirl23130862009-06-06 08:22:04 +0000319STEXI
320@item singlestep [off]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100321@findex singlestep
Blue Swirl23130862009-06-06 08:22:04 +0000322Run the emulation in single step mode.
323If called with option off, the emulation returns to normal mode.
324ETEXI
325
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300326 {
327 .name = "stop",
328 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300329 .params = "",
330 .help = "stop emulation",
Luiz Capitulino5f158f22011-09-15 14:34:39 -0300331 .mhandler.cmd = hmp_stop,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300332 },
333
Blue Swirl23130862009-06-06 08:22:04 +0000334STEXI
335@item stop
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100336@findex stop
Blue Swirl23130862009-06-06 08:22:04 +0000337Stop emulation.
338ETEXI
339
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300340 {
341 .name = "c|cont",
342 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300343 .params = "",
344 .help = "resume emulation",
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200345 .mhandler.cmd = hmp_cont,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300346 },
347
Blue Swirl23130862009-06-06 08:22:04 +0000348STEXI
349@item c or cont
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100350@findex cont
Blue Swirl23130862009-06-06 08:22:04 +0000351Resume emulation.
352ETEXI
353
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300354 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100355 .name = "system_wakeup",
356 .args_type = "",
357 .params = "",
358 .help = "wakeup guest from suspend",
359 .mhandler.cmd = hmp_system_wakeup,
360 },
361
362STEXI
363@item system_wakeup
364@findex system_wakeup
365Wakeup guest from suspend.
366ETEXI
367
368 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300369 .name = "gdbserver",
370 .args_type = "device:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300371 .params = "[device]",
372 .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300373 .mhandler.cmd = do_gdbserver,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300374 },
375
Blue Swirl23130862009-06-06 08:22:04 +0000376STEXI
377@item gdbserver [@var{port}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100378@findex gdbserver
Blue Swirl23130862009-06-06 08:22:04 +0000379Start gdbserver session (default @var{port}=1234)
380ETEXI
381
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300382 {
383 .name = "x",
384 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300385 .params = "/fmt addr",
386 .help = "virtual memory dump starting at 'addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300387 .mhandler.cmd = do_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300388 },
389
Blue Swirl23130862009-06-06 08:22:04 +0000390STEXI
391@item x/fmt @var{addr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100392@findex x
Blue Swirl23130862009-06-06 08:22:04 +0000393Virtual memory dump starting at @var{addr}.
394ETEXI
395
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300396 {
397 .name = "xp",
398 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300399 .params = "/fmt addr",
400 .help = "physical memory dump starting at 'addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300401 .mhandler.cmd = do_physical_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300402 },
403
Blue Swirl23130862009-06-06 08:22:04 +0000404STEXI
405@item xp /@var{fmt} @var{addr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100406@findex xp
Blue Swirl23130862009-06-06 08:22:04 +0000407Physical memory dump starting at @var{addr}.
408
409@var{fmt} is a format which tells the command how to format the
410data. Its syntax is: @option{/@{count@}@{format@}@{size@}}
411
412@table @var
413@item count
414is the number of items to be dumped.
415
416@item format
417can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
418c (char) or i (asm instruction).
419
420@item size
421can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
422@code{h} or @code{w} can be specified with the @code{i} format to
423respectively select 16 or 32 bit code instruction size.
424
425@end table
426
427Examples:
428@itemize
429@item
430Dump 10 instructions at the current instruction pointer:
431@example
432(qemu) x/10i $eip
4330x90107063: ret
4340x90107064: sti
4350x90107065: lea 0x0(%esi,1),%esi
4360x90107069: lea 0x0(%edi,1),%edi
4370x90107070: ret
4380x90107071: jmp 0x90107080
4390x90107073: nop
4400x90107074: nop
4410x90107075: nop
4420x90107076: nop
443@end example
444
445@item
446Dump 80 16 bit values at the start of the video memory.
447@smallexample
448(qemu) xp/80hx 0xb8000
4490x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
4500x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
4510x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
4520x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
4530x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
4540x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
4550x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4560x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4570x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
4580x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
459@end smallexample
460@end itemize
461ETEXI
462
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300463 {
464 .name = "p|print",
465 .args_type = "fmt:/,val:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300466 .params = "/fmt expr",
467 .help = "print expression value (use $reg for CPU register access)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300468 .mhandler.cmd = do_print,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300469 },
470
Blue Swirl23130862009-06-06 08:22:04 +0000471STEXI
472@item p or print/@var{fmt} @var{expr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100473@findex print
Blue Swirl23130862009-06-06 08:22:04 +0000474
475Print expression value. Only the @var{format} part of @var{fmt} is
476used.
477ETEXI
478
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300479 {
480 .name = "i",
481 .args_type = "fmt:/,addr:i,index:i.",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300482 .params = "/fmt addr",
483 .help = "I/O port read",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300484 .mhandler.cmd = do_ioport_read,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300485 },
486
Blue Swirl23130862009-06-06 08:22:04 +0000487STEXI
488Read I/O port.
489ETEXI
490
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300491 {
492 .name = "o",
493 .args_type = "fmt:/,addr:i,val:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300494 .params = "/fmt addr value",
495 .help = "I/O port write",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300496 .mhandler.cmd = do_ioport_write,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300497 },
498
Jan Kiszkaf1147842009-07-14 10:20:11 +0200499STEXI
500Write to I/O port.
501ETEXI
Blue Swirl23130862009-06-06 08:22:04 +0000502
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300503 {
504 .name = "sendkey",
505 .args_type = "string:s,hold_time:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300506 .params = "keys [hold_ms]",
507 .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300508 .mhandler.cmd = do_sendkey,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300509 },
510
Blue Swirl23130862009-06-06 08:22:04 +0000511STEXI
512@item sendkey @var{keys}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100513@findex sendkey
Blue Swirl23130862009-06-06 08:22:04 +0000514
515Send @var{keys} to the emulator. @var{keys} could be the name of the
516key or @code{#} followed by the raw value in either decimal or hexadecimal
517format. Use @code{-} to press several keys simultaneously. Example:
518@example
519sendkey ctrl-alt-f1
520@end example
521
522This command is useful to send keys that your graphical user interface
523intercepts at low level, such as @code{ctrl-alt-f1} in X Window.
524ETEXI
525
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300526 {
527 .name = "system_reset",
528 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300529 .params = "",
530 .help = "reset the system",
Luiz Capitulino38d22652011-09-15 14:41:46 -0300531 .mhandler.cmd = hmp_system_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300532 },
533
Blue Swirl23130862009-06-06 08:22:04 +0000534STEXI
535@item system_reset
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100536@findex system_reset
Blue Swirl23130862009-06-06 08:22:04 +0000537
538Reset the system.
539ETEXI
540
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300541 {
542 .name = "system_powerdown",
543 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300544 .params = "",
545 .help = "send system power down event",
Luiz Capitulino5bc465e2011-09-28 11:06:15 -0300546 .mhandler.cmd = hmp_system_powerdown,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300547 },
548
Blue Swirl23130862009-06-06 08:22:04 +0000549STEXI
550@item system_powerdown
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100551@findex system_powerdown
Blue Swirl23130862009-06-06 08:22:04 +0000552
553Power down the system (if supported).
554ETEXI
555
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300556 {
557 .name = "sum",
558 .args_type = "start:i,size:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300559 .params = "addr size",
560 .help = "compute the checksum of a memory region",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300561 .mhandler.cmd = do_sum,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300562 },
563
Blue Swirl23130862009-06-06 08:22:04 +0000564STEXI
565@item sum @var{addr} @var{size}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100566@findex sum
Blue Swirl23130862009-06-06 08:22:04 +0000567
568Compute the checksum of a memory region.
569ETEXI
570
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300571 {
572 .name = "usb_add",
573 .args_type = "devname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300574 .params = "device",
575 .help = "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300576 .mhandler.cmd = do_usb_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300577 },
578
Blue Swirl23130862009-06-06 08:22:04 +0000579STEXI
580@item usb_add @var{devname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100581@findex usb_add
Blue Swirl23130862009-06-06 08:22:04 +0000582
583Add the USB device @var{devname}. For details of available devices see
584@ref{usb_devices}
585ETEXI
586
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300587 {
588 .name = "usb_del",
589 .args_type = "devname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300590 .params = "device",
591 .help = "remove USB device 'bus.addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300592 .mhandler.cmd = do_usb_del,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300593 },
594
Blue Swirl23130862009-06-06 08:22:04 +0000595STEXI
596@item usb_del @var{devname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100597@findex usb_del
Blue Swirl23130862009-06-06 08:22:04 +0000598
599Remove the USB device @var{devname} from the QEMU virtual USB
600hub. @var{devname} has the syntax @code{bus.addr}. Use the monitor
601command @code{info usb} to see the devices you can remove.
602ETEXI
603
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300604 {
605 .name = "device_add",
Markus Armbrusterc7e4e8c2010-02-10 20:47:28 +0100606 .args_type = "device:O",
607 .params = "driver[,prop=value][,...]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300608 .help = "add device, like -device on the command line",
Markus Armbruster8bc27242010-02-10 20:52:01 +0100609 .user_print = monitor_user_noop,
610 .mhandler.cmd_new = do_device_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300611 },
612
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200613STEXI
614@item device_add @var{config}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100615@findex device_add
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200616
617Add device.
618ETEXI
619
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300620 {
621 .name = "device_del",
622 .args_type = "id:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300623 .params = "device",
624 .help = "remove device",
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300625 .mhandler.cmd = hmp_device_del,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300626 },
627
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200628STEXI
629@item device_del @var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100630@findex device_del
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200631
632Remove device @var{id}.
633ETEXI
634
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300635 {
636 .name = "cpu",
637 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300638 .params = "index",
639 .help = "set the default CPU",
Luiz Capitulino755f1962011-10-06 14:31:39 -0300640 .mhandler.cmd = hmp_cpu,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300641 },
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200642
Blue Swirl23130862009-06-06 08:22:04 +0000643STEXI
Markus Armbrusterc427ea92010-05-04 13:20:32 +0200644@item cpu @var{index}
645@findex cpu
Blue Swirl23130862009-06-06 08:22:04 +0000646Set the default CPU.
647ETEXI
648
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300649 {
650 .name = "mouse_move",
651 .args_type = "dx_str:s,dy_str:s,dz_str:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300652 .params = "dx dy [dz]",
653 .help = "send mouse move events",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300654 .mhandler.cmd = do_mouse_move,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300655 },
656
Blue Swirl23130862009-06-06 08:22:04 +0000657STEXI
658@item mouse_move @var{dx} @var{dy} [@var{dz}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100659@findex mouse_move
Blue Swirl23130862009-06-06 08:22:04 +0000660Move the active mouse to the specified coordinates @var{dx} @var{dy}
661with optional scroll axis @var{dz}.
662ETEXI
663
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300664 {
665 .name = "mouse_button",
666 .args_type = "button_state:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300667 .params = "state",
668 .help = "change mouse button state (1=L, 2=M, 4=R)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300669 .mhandler.cmd = do_mouse_button,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300670 },
671
Blue Swirl23130862009-06-06 08:22:04 +0000672STEXI
673@item mouse_button @var{val}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100674@findex mouse_button
Blue Swirl23130862009-06-06 08:22:04 +0000675Change the active mouse button state @var{val} (1=L, 2=M, 4=R).
676ETEXI
677
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300678 {
679 .name = "mouse_set",
680 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300681 .params = "index",
682 .help = "set which mouse device receives events",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300683 .mhandler.cmd = do_mouse_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300684 },
685
Blue Swirl23130862009-06-06 08:22:04 +0000686STEXI
687@item mouse_set @var{index}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100688@findex mouse_set
Blue Swirl23130862009-06-06 08:22:04 +0000689Set which mouse device receives events at given @var{index}, index
690can be obtained with
691@example
692info mice
693@end example
694ETEXI
695
696#ifdef HAS_AUDIO
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300697 {
698 .name = "wavcapture",
699 .args_type = "path:F,freq:i?,bits:i?,nchannels:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300700 .params = "path [frequency [bits [channels]]]",
701 .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300702 .mhandler.cmd = do_wav_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300703 },
Blue Swirl23130862009-06-06 08:22:04 +0000704#endif
705STEXI
706@item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels}]]]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100707@findex wavcapture
Blue Swirl23130862009-06-06 08:22:04 +0000708Capture audio into @var{filename}. Using sample rate @var{frequency}
709bits per sample @var{bits} and number of channels @var{channels}.
710
711Defaults:
712@itemize @minus
713@item Sample rate = 44100 Hz - CD quality
714@item Bits = 16
715@item Number of channels = 2 - Stereo
716@end itemize
717ETEXI
718
719#ifdef HAS_AUDIO
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300720 {
721 .name = "stopcapture",
722 .args_type = "n:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300723 .params = "capture index",
724 .help = "stop capture",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300725 .mhandler.cmd = do_stop_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300726 },
Blue Swirl23130862009-06-06 08:22:04 +0000727#endif
728STEXI
729@item stopcapture @var{index}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100730@findex stopcapture
Blue Swirl23130862009-06-06 08:22:04 +0000731Stop capture with a given @var{index}, index can be obtained with
732@example
733info capture
734@end example
735ETEXI
736
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300737 {
738 .name = "memsave",
739 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300740 .params = "addr size file",
741 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200742 .mhandler.cmd = hmp_memsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300743 },
744
Blue Swirl23130862009-06-06 08:22:04 +0000745STEXI
746@item memsave @var{addr} @var{size} @var{file}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100747@findex memsave
Blue Swirl23130862009-06-06 08:22:04 +0000748save to disk virtual memory dump starting at @var{addr} of size @var{size}.
749ETEXI
750
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300751 {
752 .name = "pmemsave",
753 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300754 .params = "addr size file",
755 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
Luiz Capitulino6d3962b2011-11-22 17:26:46 -0200756 .mhandler.cmd = hmp_pmemsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300757 },
758
Blue Swirl23130862009-06-06 08:22:04 +0000759STEXI
760@item pmemsave @var{addr} @var{size} @var{file}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100761@findex pmemsave
Blue Swirl23130862009-06-06 08:22:04 +0000762save to disk physical memory dump starting at @var{addr} of size @var{size}.
763ETEXI
764
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300765 {
766 .name = "boot_set",
767 .args_type = "bootdevice:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300768 .params = "bootdevice",
769 .help = "define new values for the boot device list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300770 .mhandler.cmd = do_boot_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300771 },
772
Blue Swirl23130862009-06-06 08:22:04 +0000773STEXI
774@item boot_set @var{bootdevicelist}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100775@findex boot_set
Blue Swirl23130862009-06-06 08:22:04 +0000776
777Define new values for the boot device list. Those values will override
778the values specified on the command line through the @code{-boot} option.
779
780The values that can be specified here depend on the machine type, but are
781the same that can be specified in the @code{-boot} command line option.
782ETEXI
783
784#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300785 {
786 .name = "nmi",
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -0300787 .args_type = "",
788 .params = "",
789 .help = "inject an NMI on all guest's CPUs",
Luiz Capitulinoab49ab52011-11-23 12:55:53 -0200790 .mhandler.cmd = hmp_inject_nmi,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300791 },
Blue Swirl23130862009-06-06 08:22:04 +0000792#endif
793STEXI
794@item nmi @var{cpu}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100795@findex nmi
Blue Swirl23130862009-06-06 08:22:04 +0000796Inject an NMI on the given CPU (x86 only).
797ETEXI
798
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300799 {
800 .name = "migrate",
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200801 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
802 .params = "[-d] [-b] [-i] uri",
803 .help = "migrate to URI (using -d to not wait for completion)"
804 "\n\t\t\t -b for migration without shared storage with"
805 " full copy of disk\n\t\t\t -i for migration without "
806 "shared storage with incremental copy of disk "
807 "(base image shared between src and destination)",
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200808 .mhandler.cmd = hmp_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300809 },
810
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200811
Blue Swirl23130862009-06-06 08:22:04 +0000812STEXI
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200813@item migrate [-d] [-b] [-i] @var{uri}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100814@findex migrate
Blue Swirl23130862009-06-06 08:22:04 +0000815Migrate to @var{uri} (using -d to not wait for completion).
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200816 -b for migration with full copy of disk
817 -i for migration with incremental copy of disk (base image is shared)
Blue Swirl23130862009-06-06 08:22:04 +0000818ETEXI
819
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300820 {
821 .name = "migrate_cancel",
822 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300823 .params = "",
824 .help = "cancel the current VM migration",
Luiz Capitulino6cdedb02011-11-27 22:54:09 -0200825 .mhandler.cmd = hmp_migrate_cancel,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300826 },
827
Blue Swirl23130862009-06-06 08:22:04 +0000828STEXI
829@item migrate_cancel
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100830@findex migrate_cancel
Blue Swirl23130862009-06-06 08:22:04 +0000831Cancel the current VM migration.
832ETEXI
833
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300834 {
835 .name = "migrate_set_speed",
Jes Sorensened3d4a82010-10-21 17:15:48 +0200836 .args_type = "value:o",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300837 .params = "value",
Jes Sorensened3d4a82010-10-21 17:15:48 +0200838 .help = "set maximum speed (in bytes) for migrations. "
839 "Defaults to MB if no size suffix is specified, ie. B/K/M/G/T",
Luiz Capitulino3dc85382011-11-28 11:59:37 -0200840 .mhandler.cmd = hmp_migrate_set_speed,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300841 },
842
Blue Swirl23130862009-06-06 08:22:04 +0000843STEXI
844@item migrate_set_speed @var{value}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100845@findex migrate_set_speed
Blue Swirl23130862009-06-06 08:22:04 +0000846Set maximum speed to @var{value} (in bytes) for migrations.
847ETEXI
848
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300849 {
850 .name = "migrate_set_downtime",
Markus Armbrusterb0fbf7d2010-01-25 14:23:07 +0100851 .args_type = "value:T",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300852 .params = "value",
853 .help = "set maximum tolerated downtime (in seconds) for migrations",
Luiz Capitulino4f0a9932011-11-27 23:18:01 -0200854 .mhandler.cmd = hmp_migrate_set_downtime,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300855 },
Glauber Costa2ea42952009-05-28 15:22:58 -0400856
857STEXI
858@item migrate_set_downtime @var{second}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100859@findex migrate_set_downtime
Glauber Costa2ea42952009-05-28 15:22:58 -0400860Set maximum tolerated downtime (in seconds) for migration.
861ETEXI
862
Jes Sorensenf8882562010-12-16 13:52:16 +0100863 {
Orit Wasserman00458432012-08-06 21:42:48 +0300864 .name = "migrate_set_capability",
865 .args_type = "capability:s,state:b",
866 .params = "capability state",
867 .help = "Enable/Disable the usage of a capability for migration",
868 .mhandler.cmd = hmp_migrate_set_capability,
869 },
870
871STEXI
872@item migrate_set_capability @var{capability} @var{state}
873@findex migrate_set_capability
874Enable/Disable the usage of a capability @var{capability} for migration.
875ETEXI
876
877 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +0100878 .name = "client_migrate_info",
879 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
880 .params = "protocol hostname port tls-port cert-subject",
881 .help = "send migration info to spice/vnc client",
882 .user_print = monitor_user_noop,
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200883 .mhandler.cmd_async = client_migrate_info,
884 .flags = MONITOR_CMD_ASYNC,
Jes Sorensenf8882562010-12-16 13:52:16 +0100885 },
886
887STEXI
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200888@item client_migrate_info @var{protocol} @var{hostname} @var{port} @var{tls-port} @var{cert-subject}
889@findex client_migrate_info
890Set the spice/vnc connection info for the migration target. The spice/vnc
891server will ask the spice/vnc client to automatically reconnect using the
892new parameters (if specified) once the vm migration finished successfully.
893ETEXI
894
Wen Congyang783e9b42012-05-07 12:10:47 +0800895#if defined(CONFIG_HAVE_CORE_DUMP)
896 {
897 .name = "dump-guest-memory",
898 .args_type = "paging:-p,protocol:s,begin:i?,length:i?",
899 .params = "[-p] protocol [begin] [length]",
900 .help = "dump guest memory to file"
901 "\n\t\t\t begin(optional): the starting physical address"
902 "\n\t\t\t length(optional): the memory size, in bytes",
903 .user_print = monitor_user_noop,
904 .mhandler.cmd = hmp_dump_guest_memory,
905 },
906
907
908STEXI
909@item dump-guest-memory [-p] @var{protocol} @var{begin} @var{length}
910@findex dump-guest-memory
911Dump guest memory to @var{protocol}. The file can be processed with crash or
912gdb.
913 protocol: destination file(started with "file:") or destination file
914 descriptor (started with "fd:")
915 paging: do paging to get guest's memory mapping
916 begin: the starting physical address. It's optional, and should be
917 specified with length together.
918 length: the memory size, in bytes. It's optional, and should be specified
919 with begin together.
920ETEXI
921#endif
922
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200923 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +0100924 .name = "snapshot_blkdev",
Paolo Bonzini6cc2a412012-03-06 18:55:59 +0100925 .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?",
926 .params = "[-n] device [new-image-file] [format]",
Jes Sorensen2ea720d2011-03-09 16:54:34 +0100927 .help = "initiates a live snapshot\n\t\t\t"
928 "of device. If a new image file is specified, the\n\t\t\t"
929 "new image file will become the new root image.\n\t\t\t"
930 "If format is specified, the snapshot file will\n\t\t\t"
931 "be created in that format. Otherwise the\n\t\t\t"
Paolo Bonzini6cc2a412012-03-06 18:55:59 +0100932 "snapshot will be internal! (currently unsupported).\n\t\t\t"
933 "The default format is qcow2. The -n flag requests QEMU\n\t\t\t"
934 "to reuse the image found in new-image-file, instead of\n\t\t\t"
935 "recreating it from scratch.",
Luiz Capitulino6106e242011-11-25 16:15:19 -0200936 .mhandler.cmd = hmp_snapshot_blkdev,
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200937 },
938
939STEXI
Jes Sorensenf8882562010-12-16 13:52:16 +0100940@item snapshot_blkdev
941@findex snapshot_blkdev
942Snapshot device, using snapshot file as target if provided
943ETEXI
944
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300945 {
946 .name = "drive_add",
947 .args_type = "pci_addr:s,opts:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300948 .params = "[[<domain>:]<bus>:]<slot>\n"
949 "[file=file][,if=type][,bus=n]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +0000950 "[,unit=m][,media=d][,index=i]\n"
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300951 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +0000952 "[,snapshot=on|off][,cache=on|off]\n"
953 "[,readonly=on|off][,copy-on-read=on|off]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300954 .help = "add drive to PCI storage controller",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300955 .mhandler.cmd = drive_hot_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300956 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300957
Blue Swirl23130862009-06-06 08:22:04 +0000958STEXI
959@item drive_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100960@findex drive_add
Blue Swirl23130862009-06-06 08:22:04 +0000961Add drive to PCI storage controller.
962ETEXI
963
964#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300965 {
966 .name = "pci_add",
967 .args_type = "pci_addr:s,type:s,opts:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300968 .params = "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
969 .help = "hot-add PCI device",
Markus Armbruster6c6a58a2010-05-12 10:53:00 +0200970 .mhandler.cmd = pci_device_hot_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300971 },
Blue Swirl23130862009-06-06 08:22:04 +0000972#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300973
Blue Swirl23130862009-06-06 08:22:04 +0000974STEXI
975@item pci_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100976@findex pci_add
Blue Swirl23130862009-06-06 08:22:04 +0000977Hot-add PCI device.
978ETEXI
979
980#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300981 {
982 .name = "pci_del",
983 .args_type = "pci_addr:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300984 .params = "[[<domain>:]<bus>:]<slot>",
985 .help = "hot remove PCI device",
Markus Armbrusterb752daf2010-05-12 10:53:01 +0200986 .mhandler.cmd = do_pci_device_hot_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300987 },
Blue Swirl23130862009-06-06 08:22:04 +0000988#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300989
Blue Swirl23130862009-06-06 08:22:04 +0000990STEXI
991@item pci_del
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100992@findex pci_del
Blue Swirl23130862009-06-06 08:22:04 +0000993Hot remove PCI device.
994ETEXI
995
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300996 {
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +0900997 .name = "pcie_aer_inject_error",
998 .args_type = "advisory_non_fatal:-a,correctable:-c,"
999 "id:s,error_status:s,"
1000 "header0:i?,header1:i?,header2:i?,header3:i?,"
1001 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
1002 .params = "[-a] [-c] id "
1003 "<error_status> [<tlp header> [<tlp header prefix>]]",
1004 .help = "inject pcie aer error\n\t\t\t"
1005 " -a for advisory non fatal error\n\t\t\t"
1006 " -c for correctable error\n\t\t\t"
1007 "<id> = qdev device id\n\t\t\t"
1008 "<error_status> = error string or 32bit\n\t\t\t"
1009 "<tlb header> = 32bit x 4\n\t\t\t"
1010 "<tlb header prefix> = 32bit x 4",
1011 .user_print = pcie_aer_inject_error_print,
Zhi Yong Wu1f3392b2011-11-30 12:39:47 +08001012 .mhandler.cmd_new = do_pcie_aer_inject_error,
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001013 },
1014
1015STEXI
1016@item pcie_aer_inject_error
1017@findex pcie_aer_inject_error
1018Inject PCIe AER error
1019ETEXI
1020
1021 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001022 .name = "host_net_add",
1023 .args_type = "device:s,opts:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001024 .params = "tap|user|socket|vde|dump [options]",
1025 .help = "add host VLAN client",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001026 .mhandler.cmd = net_host_device_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001027 },
1028
Blue Swirl23130862009-06-06 08:22:04 +00001029STEXI
1030@item host_net_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001031@findex host_net_add
Blue Swirl23130862009-06-06 08:22:04 +00001032Add host VLAN client.
1033ETEXI
1034
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001035 {
1036 .name = "host_net_remove",
1037 .args_type = "vlan_id:i,device:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001038 .params = "vlan_id name",
1039 .help = "remove host VLAN client",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001040 .mhandler.cmd = net_host_device_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001041 },
1042
Blue Swirl23130862009-06-06 08:22:04 +00001043STEXI
1044@item host_net_remove
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001045@findex host_net_remove
Blue Swirl23130862009-06-06 08:22:04 +00001046Remove host VLAN client.
1047ETEXI
1048
Markus Armbrusterae82d322010-03-25 17:22:40 +01001049 {
1050 .name = "netdev_add",
1051 .args_type = "netdev:O",
1052 .params = "[user|tap|socket],id=str[,prop=value][,...]",
1053 .help = "add host network device",
Luiz Capitulino928059a2012-04-18 17:34:15 -03001054 .mhandler.cmd = hmp_netdev_add,
Markus Armbrusterae82d322010-03-25 17:22:40 +01001055 },
1056
1057STEXI
1058@item netdev_add
1059@findex netdev_add
1060Add host network device.
1061ETEXI
1062
1063 {
1064 .name = "netdev_del",
1065 .args_type = "id:s",
1066 .params = "id",
1067 .help = "remove host network device",
Luiz Capitulino5f964152012-04-16 14:36:32 -03001068 .mhandler.cmd = hmp_netdev_del,
Markus Armbrusterae82d322010-03-25 17:22:40 +01001069 },
1070
1071STEXI
1072@item netdev_del
1073@findex netdev_del
1074Remove host network device.
1075ETEXI
1076
Blue Swirl23130862009-06-06 08:22:04 +00001077#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001078 {
1079 .name = "hostfwd_add",
1080 .args_type = "arg1:s,arg2:s?,arg3:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001081 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
1082 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001083 .mhandler.cmd = net_slirp_hostfwd_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001084 },
Markus Armbruster21413d62010-05-04 13:20:30 +02001085#endif
1086STEXI
1087@item hostfwd_add
1088@findex hostfwd_add
1089Redirect TCP or UDP connections from host to guest (requires -net user).
1090ETEXI
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001091
Markus Armbruster21413d62010-05-04 13:20:30 +02001092#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001093 {
1094 .name = "hostfwd_remove",
1095 .args_type = "arg1:s,arg2:s?,arg3:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001096 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
1097 .help = "remove host-to-guest TCP or UDP redirection",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001098 .mhandler.cmd = net_slirp_hostfwd_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001099 },
1100
Blue Swirl23130862009-06-06 08:22:04 +00001101#endif
1102STEXI
Markus Armbruster21413d62010-05-04 13:20:30 +02001103@item hostfwd_remove
1104@findex hostfwd_remove
1105Remove host-to-guest TCP or UDP redirection.
Blue Swirl23130862009-06-06 08:22:04 +00001106ETEXI
1107
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001108 {
1109 .name = "balloon",
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02001110 .args_type = "value:M",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001111 .params = "target",
Riccardo Magliocchetti3c056132010-05-19 18:49:28 +02001112 .help = "request VM to change its memory allocation (in MB)",
Luiz Capitulinod72f3262011-11-25 14:38:09 -02001113 .mhandler.cmd = hmp_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001114 },
1115
Blue Swirl23130862009-06-06 08:22:04 +00001116STEXI
1117@item balloon @var{value}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001118@findex balloon
Blue Swirl23130862009-06-06 08:22:04 +00001119Request VM to change its memory allocation to @var{value} (in MB).
1120ETEXI
1121
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001122 {
1123 .name = "set_link",
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001124 .args_type = "name:s,up:b",
1125 .params = "name on|off",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001126 .help = "change the link status of a network adapter",
Luiz Capitulino4b371562011-11-23 13:11:55 -02001127 .mhandler.cmd = hmp_set_link,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001128 },
1129
Blue Swirl23130862009-06-06 08:22:04 +00001130STEXI
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001131@item set_link @var{name} [on|off]
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001132@findex set_link
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001133Switch link @var{name} on (i.e. up) or off (i.e. down).
Blue Swirl23130862009-06-06 08:22:04 +00001134ETEXI
1135
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001136 {
1137 .name = "watchdog_action",
1138 .args_type = "action:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001139 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1140 .help = "change watchdog action",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001141 .mhandler.cmd = do_watchdog_action,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001142 },
1143
Blue Swirl23130862009-06-06 08:22:04 +00001144STEXI
1145@item watchdog_action
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001146@findex watchdog_action
Blue Swirl23130862009-06-06 08:22:04 +00001147Change watchdog action.
1148ETEXI
1149
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001150 {
1151 .name = "acl_show",
1152 .args_type = "aclname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001153 .params = "aclname",
1154 .help = "list rules in the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001155 .mhandler.cmd = do_acl_show,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001156 },
1157
Blue Swirl23130862009-06-06 08:22:04 +00001158STEXI
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001159@item acl_show @var{aclname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001160@findex acl_show
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001161List all the matching rules in the access control list, and the default
1162policy. There are currently two named access control lists,
1163@var{vnc.x509dname} and @var{vnc.username} matching on the x509 client
1164certificate distinguished name, and SASL username respectively.
1165ETEXI
Blue Swirl23130862009-06-06 08:22:04 +00001166
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001167 {
1168 .name = "acl_policy",
1169 .args_type = "aclname:s,policy:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001170 .params = "aclname allow|deny",
1171 .help = "set default access control list policy",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001172 .mhandler.cmd = do_acl_policy,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001173 },
1174
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001175STEXI
Jan Kiszkacbbfacc2009-07-03 08:46:05 +02001176@item acl_policy @var{aclname} @code{allow|deny}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001177@findex acl_policy
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001178Set the default access control list policy, used in the event that
Blue Swirl23130862009-06-06 08:22:04 +00001179none of the explicit rules match. The default policy at startup is
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001180always @code{deny}.
1181ETEXI
1182
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001183 {
1184 .name = "acl_add",
1185 .args_type = "aclname:s,match:s,policy:s,index:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001186 .params = "aclname match allow|deny [index]",
1187 .help = "add a match rule to the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001188 .mhandler.cmd = do_acl_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001189 },
1190
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001191STEXI
Markus Armbruster0e4aec92010-05-04 13:20:31 +02001192@item acl_add @var{aclname} @var{match} @code{allow|deny} [@var{index}]
1193@findex acl_add
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001194Add a match rule to the access control list, allowing or denying access.
1195The match will normally be an exact username or x509 distinguished name,
1196but can optionally include wildcard globs. eg @code{*@@EXAMPLE.COM} to
1197allow all users in the @code{EXAMPLE.COM} kerberos realm. The match will
Blue Swirl23130862009-06-06 08:22:04 +00001198normally be appended to the end of the ACL, but can be inserted
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001199earlier in the list if the optional @var{index} parameter is supplied.
1200ETEXI
1201
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001202 {
1203 .name = "acl_remove",
1204 .args_type = "aclname:s,match:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001205 .params = "aclname match",
1206 .help = "remove a match rule from the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001207 .mhandler.cmd = do_acl_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001208 },
1209
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001210STEXI
1211@item acl_remove @var{aclname} @var{match}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001212@findex acl_remove
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001213Remove the specified match rule from the access control list.
1214ETEXI
1215
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001216 {
1217 .name = "acl_reset",
1218 .args_type = "aclname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001219 .params = "aclname",
1220 .help = "reset the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001221 .mhandler.cmd = do_acl_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001222 },
1223
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001224STEXI
Markus Armbruster0e4aec92010-05-04 13:20:31 +02001225@item acl_reset @var{aclname}
1226@findex acl_reset
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001227Remove all matches from the access control list, and set the default
Blue Swirl23130862009-06-06 08:22:04 +00001228policy back to @code{deny}.
Blue Swirl23130862009-06-06 08:22:04 +00001229ETEXI
1230
Huang Ying79c4f6b2009-06-23 10:05:14 +08001231#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001232
1233 {
1234 .name = "mce",
Jin Dongming31ce5e02010-12-10 17:21:02 +09001235 .args_type = "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1236 .params = "[-b] cpu bank status mcgstatus addr misc",
1237 .help = "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001238 .mhandler.cmd = do_inject_mce,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001239 },
1240
Huang Ying79c4f6b2009-06-23 10:05:14 +08001241#endif
1242STEXI
1243@item mce @var{cpu} @var{bank} @var{status} @var{mcgstatus} @var{addr} @var{misc}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001244@findex mce (x86)
Huang Ying79c4f6b2009-06-23 10:05:14 +08001245Inject an MCE on the given CPU (x86 only).
1246ETEXI
1247
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001248 {
1249 .name = "getfd",
1250 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001251 .params = "getfd name",
1252 .help = "receive a file descriptor via SCM rights and assign it a name",
Corey Bryant208c9d12012-06-22 14:36:09 -04001253 .mhandler.cmd = hmp_getfd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001254 },
1255
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001256STEXI
1257@item getfd @var{fdname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001258@findex getfd
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001259If a file descriptor is passed alongside this command using the SCM_RIGHTS
1260mechanism on unix sockets, it is stored using the name @var{fdname} for
1261later use by other monitor commands.
1262ETEXI
1263
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001264 {
1265 .name = "closefd",
1266 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001267 .params = "closefd name",
1268 .help = "close a file descriptor previously passed via SCM rights",
Corey Bryant208c9d12012-06-22 14:36:09 -04001269 .mhandler.cmd = hmp_closefd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001270 },
1271
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001272STEXI
1273@item closefd @var{fdname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001274@findex closefd
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001275Close the file descriptor previously assigned to @var{fdname} using the
1276@code{getfd} command. This is only needed if the file descriptor was never
1277used by another monitor command.
1278ETEXI
1279
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001280 {
1281 .name = "block_passwd",
1282 .args_type = "device:B,password:s",
1283 .params = "block_passwd device password",
1284 .help = "set the password of encrypted block devices",
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -02001285 .mhandler.cmd = hmp_block_passwd,
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001286 },
1287
1288STEXI
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001289@item block_set_io_throttle @var{device} @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
1290@findex block_set_io_throttle
1291Change 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}
1292ETEXI
1293
1294 {
1295 .name = "block_set_io_throttle",
1296 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1297 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
1298 .help = "change I/O throttle limits for a block drive",
Luiz Capitulino80047da2011-12-14 16:49:14 -02001299 .mhandler.cmd = hmp_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001300 },
1301
1302STEXI
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001303@item block_passwd @var{device} @var{password}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001304@findex block_passwd
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001305Set the encrypted device @var{device} password to @var{password}
1306ETEXI
Jan Kiszkab40292e2010-05-31 14:43:31 -03001307
Jan Kiszka33572ec2010-05-31 14:43:30 -03001308 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001309 .name = "set_password",
1310 .args_type = "protocol:s,password:s,connected:s?",
1311 .params = "protocol password action-if-connected",
1312 .help = "set spice/vnc password",
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001313 .mhandler.cmd = hmp_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001314 },
1315
1316STEXI
1317@item set_password [ vnc | spice ] password [ action-if-connected ]
1318@findex set_password
1319
1320Change spice/vnc password. Use zero to make the password stay valid
1321forever. @var{action-if-connected} specifies what should happen in
1322case a connection is established: @var{fail} makes the password change
1323fail. @var{disconnect} changes the password and disconnects the
1324client. @var{keep} changes the password and keeps the connection up.
1325@var{keep} is the default.
1326ETEXI
1327
1328 {
1329 .name = "expire_password",
1330 .args_type = "protocol:s,time:s",
1331 .params = "protocol time",
1332 .help = "set spice/vnc password expire-time",
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001333 .mhandler.cmd = hmp_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001334 },
1335
1336STEXI
1337@item expire_password [ vnc | spice ] expire-time
1338@findex expire_password
1339
1340Specify when a password for spice/vnc becomes
1341invalid. @var{expire-time} accepts:
1342
1343@table @var
1344@item now
1345Invalidate password instantly.
1346
1347@item never
1348Password stays valid forever.
1349
1350@item +nsec
1351Password stays valid for @var{nsec} seconds starting now.
1352
1353@item nsec
1354Password is invalidated at the given time. @var{nsec} are the seconds
1355passed since 1970, i.e. unix epoch.
1356
1357@end table
1358ETEXI
1359
1360 {
Jan Kiszka33572ec2010-05-31 14:43:30 -03001361 .name = "info",
1362 .args_type = "item:s?",
1363 .params = "[subcommand]",
1364 .help = "show various information about the system state",
Luiz Capitulino1162daa2010-09-13 12:15:26 -03001365 .mhandler.cmd = do_info,
Jan Kiszka33572ec2010-05-31 14:43:30 -03001366 },
1367
1368STEXI
1369@item info @var{subcommand}
1370@findex info
1371Show various information about the system state.
1372
1373@table @option
1374@item info version
1375show the version of QEMU
Jan Kiszka33572ec2010-05-31 14:43:30 -03001376@item info network
1377show the various VLANs and the associated devices
1378@item info chardev
1379show the character devices
1380@item info block
1381show the block devices
1382@item info blockstats
1383show block device statistics
1384@item info registers
1385show the cpu registers
1386@item info cpus
1387show infos for each CPU
1388@item info history
1389show the command line history
1390@item info irq
1391show the interrupts statistics (if available)
1392@item info pic
1393show i8259 (PIC) state
1394@item info pci
1395show emulated PCI device info
1396@item info tlb
Max Filippov692f7372012-01-07 20:02:40 +04001397show virtual to physical memory mappings (i386, SH4, SPARC, PPC, and Xtensa only)
Jan Kiszka33572ec2010-05-31 14:43:30 -03001398@item info mem
1399show the active virtual memory mappings (i386 only)
Jan Kiszka33572ec2010-05-31 14:43:30 -03001400@item info jit
1401show dynamic compiler info
Jan Kiszka33572ec2010-05-31 14:43:30 -03001402@item info numa
1403show NUMA information
Jan Kiszkab40292e2010-05-31 14:43:31 -03001404@item info kvm
1405show KVM information
Jan Kiszka33572ec2010-05-31 14:43:30 -03001406@item info usb
1407show USB devices plugged on the virtual USB hub
1408@item info usbhost
1409show all USB host devices
1410@item info profile
1411show profiling information
1412@item info capture
1413show information about active capturing
1414@item info snapshots
1415show list of VM snapshots
1416@item info status
1417show the current VM status (running|paused)
1418@item info pcmcia
1419show guest PCMCIA status
1420@item info mice
1421show which guest mouse is receiving events
1422@item info vnc
1423show the vnc server status
1424@item info name
1425show the current VM name
1426@item info uuid
1427show the current VM UUID
1428@item info cpustats
1429show CPU statistics
1430@item info usernet
1431show user network stack connection states
1432@item info migrate
1433show migration status
Orit Wassermanbbf6da32012-08-06 21:42:47 +03001434@item info migrate_capabilities
1435show current migration capabilities
Jan Kiszka33572ec2010-05-31 14:43:30 -03001436@item info balloon
1437show balloon information
1438@item info qtree
1439show device tree
1440@item info qdm
1441show qdev device model list
1442@item info roms
1443show roms
1444@end table
1445ETEXI
1446
Lluís6d8a7642011-08-31 20:30:43 +02001447#ifdef CONFIG_TRACE_SIMPLE
Prerna Saxena22890ab2010-06-24 17:04:53 +05301448STEXI
1449@item info trace
1450show contents of trace buffer
Lluís31965ae2011-08-31 20:31:24 +02001451ETEXI
1452#endif
1453
1454STEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +05301455@item info trace-events
1456show available trace events and their state
1457ETEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +05301458
Blue Swirl23130862009-06-06 08:22:04 +00001459STEXI
1460@end table
1461ETEXI