blob: 4c4d2619c6490db582235a560d083fdafed64716 [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|?",
Wenchao Xia129be002013-08-27 20:38:26 +080014 .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.
Jeff Cody37222902014-01-24 09:02:37 -050038If the backing file is smaller than the snapshot, then the backing file will be
39resized to be the same size as the snapshot. If the snapshot is smaller than
40the backing file, the backing file will not be truncated. If you want the
41backing file to match the size of the smaller snapshot, you can safely truncate
42it yourself once the commit operation successfully completes.
Blue Swirl23130862009-06-06 08:22:04 +000043ETEXI
44
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030045 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030046 .name = "q|quit",
47 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030048 .params = "",
49 .help = "quit the emulator",
Luiz Capitulinob223f352009-10-07 13:41:56 -030050 .user_print = monitor_user_noop,
Luiz Capitulino7a7f3252011-09-15 14:20:28 -030051 .mhandler.cmd = hmp_quit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030052 },
53
Blue Swirl23130862009-06-06 08:22:04 +000054STEXI
55@item q or quit
Stefan Weil70fcbbe2010-02-05 23:52:04 +010056@findex quit
Blue Swirl23130862009-06-06 08:22:04 +000057Quit the emulator.
58ETEXI
59
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030060 {
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010061 .name = "block_resize",
62 .args_type = "device:B,size:o",
63 .params = "device size",
64 .help = "resize a block image",
Luiz Capitulino5e7caac2011-11-25 14:57:10 -020065 .mhandler.cmd = hmp_block_resize,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010066 },
67
68STEXI
69@item block_resize
70@findex block_resize
71Resize a block image while a guest is running. Usually requires guest
72action to see the updated size. Resize to a lower size is supported,
73but should be used with extreme caution. Note that this command only
74resizes image files, it can not resize block devices like LVM volumes.
75ETEXI
76
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000077 {
78 .name = "block_stream",
Stefan Hajnoczic83c66c2012-04-25 16:51:03 +010079 .args_type = "device:B,speed:o?,base:s?",
80 .params = "device [speed [base]]",
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000081 .help = "copy data from a backing file into a block device",
82 .mhandler.cmd = hmp_block_stream,
83 },
84
85STEXI
86@item block_stream
87@findex block_stream
88Copy data from a backing file into a block device.
89ETEXI
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010090
91 {
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +000092 .name = "block_job_set_speed",
Stefan Hajnoczi882ec7c2012-04-25 16:51:02 +010093 .args_type = "device:B,speed:o",
94 .params = "device speed",
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +000095 .help = "set maximum speed for a background block operation",
96 .mhandler.cmd = hmp_block_job_set_speed,
97 },
98
99STEXI
Paolo Bonzini4451b792012-04-13 12:03:46 +0200100@item block_job_set_speed
101@findex block_job_set_speed
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000102Set maximum speed for a background block operation.
103ETEXI
104
105 {
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000106 .name = "block_job_cancel",
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200107 .args_type = "force:-f,device:B",
108 .params = "[-f] device",
109 .help = "stop an active background block operation (use -f"
110 "\n\t\t\t if the operation is currently paused)",
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000111 .mhandler.cmd = hmp_block_job_cancel,
112 },
113
114STEXI
115@item block_job_cancel
116@findex block_job_cancel
Paolo Bonziniaeae8832012-10-18 16:49:21 +0200117Stop an active background block operation (streaming, mirroring).
118ETEXI
119
120 {
121 .name = "block_job_complete",
122 .args_type = "device:B",
123 .params = "device",
124 .help = "stop an active background block operation",
125 .mhandler.cmd = hmp_block_job_complete,
126 },
127
128STEXI
129@item block_job_complete
130@findex block_job_complete
131Manually trigger completion of an active background block operation.
132For mirroring, this will switch the device to the destination path.
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000133ETEXI
134
135 {
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200136 .name = "block_job_pause",
137 .args_type = "device:B",
138 .params = "device",
139 .help = "pause an active background block operation",
140 .mhandler.cmd = hmp_block_job_pause,
141 },
142
143STEXI
144@item block_job_pause
145@findex block_job_pause
146Pause an active block streaming operation.
147ETEXI
148
149 {
150 .name = "block_job_resume",
151 .args_type = "device:B",
152 .params = "device",
153 .help = "resume a paused background block operation",
154 .mhandler.cmd = hmp_block_job_resume,
155 },
156
157STEXI
158@item block_job_resume
159@findex block_job_resume
160Resume a paused block streaming operation.
161ETEXI
162
163 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300164 .name = "eject",
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200165 .args_type = "force:-f,device:B",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300166 .params = "[-f] device",
167 .help = "eject a removable medium (use -f to force it)",
Luiz Capitulinoc245b6a2011-12-07 16:02:36 -0200168 .mhandler.cmd = hmp_eject,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300169 },
170
Blue Swirl23130862009-06-06 08:22:04 +0000171STEXI
172@item eject [-f] @var{device}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100173@findex eject
Blue Swirl23130862009-06-06 08:22:04 +0000174Eject a removable medium (use -f to force it).
175ETEXI
176
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300177 {
Ryan Harper9063f812010-11-12 11:07:13 -0600178 .name = "drive_del",
Hani Benhabilesf7bdc412014-04-13 16:25:05 +0100179 .args_type = "id:B",
Ryan Harper9063f812010-11-12 11:07:13 -0600180 .params = "device",
181 .help = "remove host block device",
182 .user_print = monitor_user_noop,
183 .mhandler.cmd_new = do_drive_del,
184 },
185
186STEXI
187@item drive_del @var{device}
188@findex drive_del
189Remove host block device. The result is that guest generated IO is no longer
190submitted against the host device underlying the disk. Once a drive has
191been deleted, the QEMU Block layer returns -EIO which results in IO
192errors in the guest for applications that are reading/writing to the device.
Stefan Hajnoczi293c51a2013-06-05 10:33:14 +0200193These errors are always reported to the guest, regardless of the drive's error
194actions (drive options rerror, werror).
Ryan Harper9063f812010-11-12 11:07:13 -0600195ETEXI
196
197 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300198 .name = "change",
199 .args_type = "device:B,target:F,arg:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300200 .params = "device filename [format]",
201 .help = "change a removable medium, optional format",
Luiz Capitulino333a96e2011-12-08 11:13:50 -0200202 .mhandler.cmd = hmp_change,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300203 },
204
Blue Swirl23130862009-06-06 08:22:04 +0000205STEXI
206@item change @var{device} @var{setting}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100207@findex change
Blue Swirl23130862009-06-06 08:22:04 +0000208
209Change the configuration of a device.
210
211@table @option
212@item change @var{diskdevice} @var{filename} [@var{format}]
213Change the medium for a removable disk device to point to @var{filename}. eg
214
215@example
216(qemu) change ide1-cd0 /path/to/some.iso
217@end example
218
219@var{format} is optional.
220
221@item change vnc @var{display},@var{options}
222Change the configuration of the VNC server. The valid syntax for @var{display}
223and @var{options} are described at @ref{sec_invocation}. eg
224
225@example
226(qemu) change vnc localhost:1
227@end example
228
229@item change vnc password [@var{password}]
230
231Change the password associated with the VNC server. If the new password is not
232supplied, the monitor will prompt for it to be entered. VNC passwords are only
233significant up to 8 letters. eg
234
235@example
236(qemu) change vnc password
237Password: ********
238@end example
239
240@end table
241ETEXI
242
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300243 {
244 .name = "screendump",
245 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300246 .params = "filename",
247 .help = "save screen into PPM image 'filename'",
Luiz Capitulinoad39cf62012-05-24 13:48:23 -0300248 .mhandler.cmd = hmp_screen_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300249 },
250
Blue Swirl23130862009-06-06 08:22:04 +0000251STEXI
252@item screendump @var{filename}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100253@findex screendump
Blue Swirl23130862009-06-06 08:22:04 +0000254Save screen into PPM image @var{filename}.
255ETEXI
256
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300257 {
258 .name = "logfile",
259 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300260 .params = "filename",
261 .help = "output logs to 'filename'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300262 .mhandler.cmd = do_logfile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300263 },
264
Blue Swirl23130862009-06-06 08:22:04 +0000265STEXI
266@item logfile @var{filename}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100267@findex logfile
Blue Swirl23130862009-06-06 08:22:04 +0000268Output logs to @var{filename}.
269ETEXI
270
Prerna Saxena22890ab2010-06-24 17:04:53 +0530271 {
272 .name = "trace-event",
273 .args_type = "name:s,option:b",
274 .params = "name on|off",
275 .help = "changes status of a specific trace event",
LluĂ­sfc764102011-08-31 20:31:18 +0200276 .mhandler.cmd = do_trace_event_set_state,
Prerna Saxena22890ab2010-06-24 17:04:53 +0530277 },
278
279STEXI
280@item trace-event
281@findex trace-event
282changes status of a trace event
283ETEXI
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100284
Michael Rothc45a8162011-10-02 08:44:37 -0500285#if defined(CONFIG_TRACE_SIMPLE)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100286 {
287 .name = "trace-file",
288 .args_type = "op:s?,arg:F?",
289 .params = "on|off|flush|set [arg]",
290 .help = "open, close, or flush trace file, or set a new file name",
291 .mhandler.cmd = do_trace_file,
292 },
293
294STEXI
295@item trace-file on|off|flush
296@findex trace-file
297Open, close, or flush the trace file. If no argument is given, the status of the trace file is displayed.
298ETEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +0530299#endif
300
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300301 {
302 .name = "log",
303 .args_type = "items:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300304 .params = "item1[,...]",
Peter Maydell989b6972013-02-26 17:52:40 +0000305 .help = "activate logging of the specified items",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300306 .mhandler.cmd = do_log,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300307 },
308
Blue Swirl23130862009-06-06 08:22:04 +0000309STEXI
310@item log @var{item1}[,...]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100311@findex log
Peter Maydell989b6972013-02-26 17:52:40 +0000312Activate logging of the specified items.
Blue Swirl23130862009-06-06 08:22:04 +0000313ETEXI
314
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300315 {
316 .name = "savevm",
317 .args_type = "name:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300318 .params = "[tag|id]",
319 .help = "save a VM snapshot. If no tag or id are provided, a new snapshot is created",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300320 .mhandler.cmd = do_savevm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300321 },
322
Blue Swirl23130862009-06-06 08:22:04 +0000323STEXI
324@item savevm [@var{tag}|@var{id}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100325@findex savevm
Blue Swirl23130862009-06-06 08:22:04 +0000326Create a snapshot of the whole virtual machine. If @var{tag} is
327provided, it is used as human readable identifier. If there is already
328a snapshot with the same tag or ID, it is replaced. More info at
329@ref{vm_snapshots}.
330ETEXI
331
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300332 {
333 .name = "loadvm",
334 .args_type = "name:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300335 .params = "tag|id",
336 .help = "restore a VM snapshot from its tag or id",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300337 .mhandler.cmd = do_loadvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300338 },
339
Blue Swirl23130862009-06-06 08:22:04 +0000340STEXI
341@item loadvm @var{tag}|@var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100342@findex loadvm
Blue Swirl23130862009-06-06 08:22:04 +0000343Set the whole virtual machine to the snapshot identified by the tag
344@var{tag} or the unique snapshot ID @var{id}.
345ETEXI
346
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300347 {
348 .name = "delvm",
349 .args_type = "name:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300350 .params = "tag|id",
351 .help = "delete a VM snapshot from its tag or id",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300352 .mhandler.cmd = do_delvm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300353 },
354
Blue Swirl23130862009-06-06 08:22:04 +0000355STEXI
356@item delvm @var{tag}|@var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100357@findex delvm
Blue Swirl23130862009-06-06 08:22:04 +0000358Delete the snapshot identified by @var{tag} or @var{id}.
359ETEXI
360
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300361 {
362 .name = "singlestep",
363 .args_type = "option:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300364 .params = "[on|off]",
365 .help = "run emulation in singlestep mode or switch to normal mode",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300366 .mhandler.cmd = do_singlestep,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300367 },
368
Blue Swirl23130862009-06-06 08:22:04 +0000369STEXI
370@item singlestep [off]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100371@findex singlestep
Blue Swirl23130862009-06-06 08:22:04 +0000372Run the emulation in single step mode.
373If called with option off, the emulation returns to normal mode.
374ETEXI
375
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300376 {
377 .name = "stop",
378 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300379 .params = "",
380 .help = "stop emulation",
Luiz Capitulino5f158f22011-09-15 14:34:39 -0300381 .mhandler.cmd = hmp_stop,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300382 },
383
Blue Swirl23130862009-06-06 08:22:04 +0000384STEXI
385@item stop
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100386@findex stop
Blue Swirl23130862009-06-06 08:22:04 +0000387Stop emulation.
388ETEXI
389
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300390 {
391 .name = "c|cont",
392 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300393 .params = "",
394 .help = "resume emulation",
Luiz Capitulinoe42e8182011-11-22 17:58:31 -0200395 .mhandler.cmd = hmp_cont,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300396 },
397
Blue Swirl23130862009-06-06 08:22:04 +0000398STEXI
399@item c or cont
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100400@findex cont
Blue Swirl23130862009-06-06 08:22:04 +0000401Resume emulation.
402ETEXI
403
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300404 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100405 .name = "system_wakeup",
406 .args_type = "",
407 .params = "",
408 .help = "wakeup guest from suspend",
409 .mhandler.cmd = hmp_system_wakeup,
410 },
411
412STEXI
413@item system_wakeup
414@findex system_wakeup
415Wakeup guest from suspend.
416ETEXI
417
418 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300419 .name = "gdbserver",
420 .args_type = "device:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300421 .params = "[device]",
422 .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300423 .mhandler.cmd = do_gdbserver,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300424 },
425
Blue Swirl23130862009-06-06 08:22:04 +0000426STEXI
427@item gdbserver [@var{port}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100428@findex gdbserver
Blue Swirl23130862009-06-06 08:22:04 +0000429Start gdbserver session (default @var{port}=1234)
430ETEXI
431
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300432 {
433 .name = "x",
434 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300435 .params = "/fmt addr",
436 .help = "virtual memory dump starting at 'addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300437 .mhandler.cmd = do_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300438 },
439
Blue Swirl23130862009-06-06 08:22:04 +0000440STEXI
441@item x/fmt @var{addr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100442@findex x
Blue Swirl23130862009-06-06 08:22:04 +0000443Virtual memory dump starting at @var{addr}.
444ETEXI
445
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300446 {
447 .name = "xp",
448 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300449 .params = "/fmt addr",
450 .help = "physical memory dump starting at 'addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300451 .mhandler.cmd = do_physical_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300452 },
453
Blue Swirl23130862009-06-06 08:22:04 +0000454STEXI
455@item xp /@var{fmt} @var{addr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100456@findex xp
Blue Swirl23130862009-06-06 08:22:04 +0000457Physical memory dump starting at @var{addr}.
458
459@var{fmt} is a format which tells the command how to format the
460data. Its syntax is: @option{/@{count@}@{format@}@{size@}}
461
462@table @var
463@item count
464is the number of items to be dumped.
465
466@item format
467can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
468c (char) or i (asm instruction).
469
470@item size
471can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
472@code{h} or @code{w} can be specified with the @code{i} format to
473respectively select 16 or 32 bit code instruction size.
474
475@end table
476
477Examples:
478@itemize
479@item
480Dump 10 instructions at the current instruction pointer:
481@example
482(qemu) x/10i $eip
4830x90107063: ret
4840x90107064: sti
4850x90107065: lea 0x0(%esi,1),%esi
4860x90107069: lea 0x0(%edi,1),%edi
4870x90107070: ret
4880x90107071: jmp 0x90107080
4890x90107073: nop
4900x90107074: nop
4910x90107075: nop
4920x90107076: nop
493@end example
494
495@item
496Dump 80 16 bit values at the start of the video memory.
497@smallexample
498(qemu) xp/80hx 0xb8000
4990x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
5000x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
5010x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
5020x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
5030x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
5040x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
5050x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
5060x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
5070x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
5080x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
509@end smallexample
510@end itemize
511ETEXI
512
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300513 {
514 .name = "p|print",
515 .args_type = "fmt:/,val:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300516 .params = "/fmt expr",
517 .help = "print expression value (use $reg for CPU register access)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300518 .mhandler.cmd = do_print,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300519 },
520
Blue Swirl23130862009-06-06 08:22:04 +0000521STEXI
522@item p or print/@var{fmt} @var{expr}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100523@findex print
Blue Swirl23130862009-06-06 08:22:04 +0000524
525Print expression value. Only the @var{format} part of @var{fmt} is
526used.
527ETEXI
528
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300529 {
530 .name = "i",
531 .args_type = "fmt:/,addr:i,index:i.",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300532 .params = "/fmt addr",
533 .help = "I/O port read",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300534 .mhandler.cmd = do_ioport_read,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300535 },
536
Blue Swirl23130862009-06-06 08:22:04 +0000537STEXI
538Read I/O port.
539ETEXI
540
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300541 {
542 .name = "o",
543 .args_type = "fmt:/,addr:i,val:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300544 .params = "/fmt addr value",
545 .help = "I/O port write",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300546 .mhandler.cmd = do_ioport_write,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300547 },
548
Jan Kiszkaf1147842009-07-14 10:20:11 +0200549STEXI
550Write to I/O port.
551ETEXI
Blue Swirl23130862009-06-06 08:22:04 +0000552
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300553 {
554 .name = "sendkey",
Amos Kong2ef20c12012-08-31 10:56:22 +0800555 .args_type = "keys:s,hold-time:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300556 .params = "keys [hold_ms]",
557 .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
Amos Konge4c8f002012-08-31 10:56:26 +0800558 .mhandler.cmd = hmp_send_key,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300559 },
560
Blue Swirl23130862009-06-06 08:22:04 +0000561STEXI
562@item sendkey @var{keys}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100563@findex sendkey
Blue Swirl23130862009-06-06 08:22:04 +0000564
Amos Kong886cc702012-08-31 10:56:20 +0800565Send @var{keys} to the guest. @var{keys} could be the name of the
566key or the raw value in hexadecimal format. Use @code{-} to press
567several keys simultaneously. Example:
Blue Swirl23130862009-06-06 08:22:04 +0000568@example
569sendkey ctrl-alt-f1
570@end example
571
572This command is useful to send keys that your graphical user interface
573intercepts at low level, such as @code{ctrl-alt-f1} in X Window.
574ETEXI
575
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300576 {
577 .name = "system_reset",
578 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300579 .params = "",
580 .help = "reset the system",
Luiz Capitulino38d22652011-09-15 14:41:46 -0300581 .mhandler.cmd = hmp_system_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300582 },
583
Blue Swirl23130862009-06-06 08:22:04 +0000584STEXI
585@item system_reset
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100586@findex system_reset
Blue Swirl23130862009-06-06 08:22:04 +0000587
588Reset the system.
589ETEXI
590
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300591 {
592 .name = "system_powerdown",
593 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300594 .params = "",
595 .help = "send system power down event",
Luiz Capitulino5bc465e2011-09-28 11:06:15 -0300596 .mhandler.cmd = hmp_system_powerdown,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300597 },
598
Blue Swirl23130862009-06-06 08:22:04 +0000599STEXI
600@item system_powerdown
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100601@findex system_powerdown
Blue Swirl23130862009-06-06 08:22:04 +0000602
603Power down the system (if supported).
604ETEXI
605
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300606 {
607 .name = "sum",
608 .args_type = "start:i,size:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300609 .params = "addr size",
610 .help = "compute the checksum of a memory region",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300611 .mhandler.cmd = do_sum,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300612 },
613
Blue Swirl23130862009-06-06 08:22:04 +0000614STEXI
615@item sum @var{addr} @var{size}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100616@findex sum
Blue Swirl23130862009-06-06 08:22:04 +0000617
618Compute the checksum of a memory region.
619ETEXI
620
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300621 {
622 .name = "usb_add",
623 .args_type = "devname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300624 .params = "device",
625 .help = "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300626 .mhandler.cmd = do_usb_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300627 },
628
Blue Swirl23130862009-06-06 08:22:04 +0000629STEXI
630@item usb_add @var{devname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100631@findex usb_add
Blue Swirl23130862009-06-06 08:22:04 +0000632
633Add the USB device @var{devname}. For details of available devices see
634@ref{usb_devices}
635ETEXI
636
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300637 {
638 .name = "usb_del",
639 .args_type = "devname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300640 .params = "device",
641 .help = "remove USB device 'bus.addr'",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300642 .mhandler.cmd = do_usb_del,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300643 },
644
Blue Swirl23130862009-06-06 08:22:04 +0000645STEXI
646@item usb_del @var{devname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100647@findex usb_del
Blue Swirl23130862009-06-06 08:22:04 +0000648
649Remove the USB device @var{devname} from the QEMU virtual USB
650hub. @var{devname} has the syntax @code{bus.addr}. Use the monitor
651command @code{info usb} to see the devices you can remove.
652ETEXI
653
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300654 {
655 .name = "device_add",
Markus Armbrusterc7e4e8c2010-02-10 20:47:28 +0100656 .args_type = "device:O",
657 .params = "driver[,prop=value][,...]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300658 .help = "add device, like -device on the command line",
Markus Armbruster8bc27242010-02-10 20:52:01 +0100659 .user_print = monitor_user_noop,
660 .mhandler.cmd_new = do_device_add,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100661 .command_completion = device_add_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300662 },
663
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200664STEXI
665@item device_add @var{config}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100666@findex device_add
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200667
668Add device.
669ETEXI
670
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300671 {
672 .name = "device_del",
673 .args_type = "id:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300674 .params = "device",
675 .help = "remove device",
Luiz Capitulinoa15fef22012-03-29 12:38:50 -0300676 .mhandler.cmd = hmp_device_del,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100677 .command_completion = device_del_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300678 },
679
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200680STEXI
681@item device_del @var{id}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100682@findex device_del
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200683
684Remove device @var{id}.
685ETEXI
686
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300687 {
688 .name = "cpu",
689 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300690 .params = "index",
691 .help = "set the default CPU",
Luiz Capitulino755f1962011-10-06 14:31:39 -0300692 .mhandler.cmd = hmp_cpu,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300693 },
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200694
Blue Swirl23130862009-06-06 08:22:04 +0000695STEXI
Markus Armbrusterc427ea92010-05-04 13:20:32 +0200696@item cpu @var{index}
697@findex cpu
Blue Swirl23130862009-06-06 08:22:04 +0000698Set the default CPU.
699ETEXI
700
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300701 {
702 .name = "mouse_move",
703 .args_type = "dx_str:s,dy_str:s,dz_str:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300704 .params = "dx dy [dz]",
705 .help = "send mouse move events",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300706 .mhandler.cmd = do_mouse_move,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300707 },
708
Blue Swirl23130862009-06-06 08:22:04 +0000709STEXI
710@item mouse_move @var{dx} @var{dy} [@var{dz}]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100711@findex mouse_move
Blue Swirl23130862009-06-06 08:22:04 +0000712Move the active mouse to the specified coordinates @var{dx} @var{dy}
713with optional scroll axis @var{dz}.
714ETEXI
715
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300716 {
717 .name = "mouse_button",
718 .args_type = "button_state:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300719 .params = "state",
720 .help = "change mouse button state (1=L, 2=M, 4=R)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300721 .mhandler.cmd = do_mouse_button,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300722 },
723
Blue Swirl23130862009-06-06 08:22:04 +0000724STEXI
725@item mouse_button @var{val}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100726@findex mouse_button
Blue Swirl23130862009-06-06 08:22:04 +0000727Change the active mouse button state @var{val} (1=L, 2=M, 4=R).
728ETEXI
729
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300730 {
731 .name = "mouse_set",
732 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300733 .params = "index",
734 .help = "set which mouse device receives events",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300735 .mhandler.cmd = do_mouse_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300736 },
737
Blue Swirl23130862009-06-06 08:22:04 +0000738STEXI
739@item mouse_set @var{index}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100740@findex mouse_set
Blue Swirl23130862009-06-06 08:22:04 +0000741Set which mouse device receives events at given @var{index}, index
742can be obtained with
743@example
744info mice
745@end example
746ETEXI
747
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300748 {
749 .name = "wavcapture",
750 .args_type = "path:F,freq:i?,bits:i?,nchannels:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300751 .params = "path [frequency [bits [channels]]]",
752 .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300753 .mhandler.cmd = do_wav_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300754 },
Blue Swirl23130862009-06-06 08:22:04 +0000755STEXI
756@item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels}]]]
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100757@findex wavcapture
Blue Swirl23130862009-06-06 08:22:04 +0000758Capture audio into @var{filename}. Using sample rate @var{frequency}
759bits per sample @var{bits} and number of channels @var{channels}.
760
761Defaults:
762@itemize @minus
763@item Sample rate = 44100 Hz - CD quality
764@item Bits = 16
765@item Number of channels = 2 - Stereo
766@end itemize
767ETEXI
768
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300769 {
770 .name = "stopcapture",
771 .args_type = "n:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300772 .params = "capture index",
773 .help = "stop capture",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300774 .mhandler.cmd = do_stop_capture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300775 },
Blue Swirl23130862009-06-06 08:22:04 +0000776STEXI
777@item stopcapture @var{index}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100778@findex stopcapture
Blue Swirl23130862009-06-06 08:22:04 +0000779Stop capture with a given @var{index}, index can be obtained with
780@example
781info capture
782@end example
783ETEXI
784
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300785 {
786 .name = "memsave",
787 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300788 .params = "addr size file",
789 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
Luiz Capitulino0cfd6a92011-11-22 16:32:37 -0200790 .mhandler.cmd = hmp_memsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300791 },
792
Blue Swirl23130862009-06-06 08:22:04 +0000793STEXI
794@item memsave @var{addr} @var{size} @var{file}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100795@findex memsave
Blue Swirl23130862009-06-06 08:22:04 +0000796save to disk virtual memory dump starting at @var{addr} of size @var{size}.
797ETEXI
798
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300799 {
800 .name = "pmemsave",
801 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300802 .params = "addr size file",
803 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
Luiz Capitulino6d3962b2011-11-22 17:26:46 -0200804 .mhandler.cmd = hmp_pmemsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300805 },
806
Blue Swirl23130862009-06-06 08:22:04 +0000807STEXI
808@item pmemsave @var{addr} @var{size} @var{file}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100809@findex pmemsave
Blue Swirl23130862009-06-06 08:22:04 +0000810save to disk physical memory dump starting at @var{addr} of size @var{size}.
811ETEXI
812
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300813 {
814 .name = "boot_set",
815 .args_type = "bootdevice:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300816 .params = "bootdevice",
817 .help = "define new values for the boot device list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -0300818 .mhandler.cmd = do_boot_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300819 },
820
Blue Swirl23130862009-06-06 08:22:04 +0000821STEXI
822@item boot_set @var{bootdevicelist}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100823@findex boot_set
Blue Swirl23130862009-06-06 08:22:04 +0000824
825Define new values for the boot device list. Those values will override
826the values specified on the command line through the @code{-boot} option.
827
828The values that can be specified here depend on the machine type, but are
829the same that can be specified in the @code{-boot} command line option.
830ETEXI
831
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +0100832#if defined(TARGET_I386) || defined(TARGET_S390X)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300833 {
834 .name = "nmi",
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -0300835 .args_type = "",
836 .params = "",
837 .help = "inject an NMI on all guest's CPUs",
Luiz Capitulinoab49ab52011-11-23 12:55:53 -0200838 .mhandler.cmd = hmp_inject_nmi,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300839 },
Blue Swirl23130862009-06-06 08:22:04 +0000840#endif
841STEXI
842@item nmi @var{cpu}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100843@findex nmi
Eugene (jno) Dvurechenski7f7f9752012-12-05 15:50:07 +0100844Inject an NMI (x86) or RESTART (s390x) on the given CPU.
Lei Li1f590cf2013-01-25 00:03:20 +0800845
846ETEXI
847
848 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100849 .name = "ringbuf_write",
Lei Li1f590cf2013-01-25 00:03:20 +0800850 .args_type = "device:s,data:s",
851 .params = "device data",
Markus Armbruster3949e592013-02-06 21:27:24 +0100852 .help = "Write to a ring buffer character device",
853 .mhandler.cmd = hmp_ringbuf_write,
Lei Li1f590cf2013-01-25 00:03:20 +0800854 },
855
856STEXI
Markus Armbruster3949e592013-02-06 21:27:24 +0100857@item ringbuf_write @var{device} @var{data}
858@findex ringbuf_write
859Write @var{data} to ring buffer character device @var{device}.
860@var{data} must be a UTF-8 string.
Lei Li1f590cf2013-01-25 00:03:20 +0800861
Blue Swirl23130862009-06-06 08:22:04 +0000862ETEXI
863
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300864 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100865 .name = "ringbuf_read",
Lei Li49b6d722013-01-25 00:03:21 +0800866 .args_type = "device:s,size:i",
867 .params = "device size",
Markus Armbruster3949e592013-02-06 21:27:24 +0100868 .help = "Read from a ring buffer character device",
869 .mhandler.cmd = hmp_ringbuf_read,
Lei Li49b6d722013-01-25 00:03:21 +0800870 },
871
872STEXI
Markus Armbruster3949e592013-02-06 21:27:24 +0100873@item ringbuf_read @var{device}
874@findex ringbuf_read
875Read and print up to @var{size} bytes from ring buffer character
876device @var{device}.
Markus Armbruster543f3412013-02-06 21:27:26 +0100877Certain non-printable characters are printed \uXXXX, where XXXX is the
878character code in hexadecimal. Character \ is printed \\.
Markus Armbruster3949e592013-02-06 21:27:24 +0100879Bug: can screw up when the buffer contains invalid UTF-8 sequences,
880NUL characters, after the ring buffer lost data, and when reading
881stops because the size limit is reached.
Lei Li49b6d722013-01-25 00:03:21 +0800882
883ETEXI
884
885 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300886 .name = "migrate",
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200887 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
888 .params = "[-d] [-b] [-i] uri",
889 .help = "migrate to URI (using -d to not wait for completion)"
890 "\n\t\t\t -b for migration without shared storage with"
891 " full copy of disk\n\t\t\t -i for migration without "
892 "shared storage with incremental copy of disk "
893 "(base image shared between src and destination)",
Luiz Capitulinoe1c37d02011-12-05 14:48:01 -0200894 .mhandler.cmd = hmp_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300895 },
896
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200897
Blue Swirl23130862009-06-06 08:22:04 +0000898STEXI
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200899@item migrate [-d] [-b] [-i] @var{uri}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100900@findex migrate
Blue Swirl23130862009-06-06 08:22:04 +0000901Migrate to @var{uri} (using -d to not wait for completion).
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200902 -b for migration with full copy of disk
903 -i for migration with incremental copy of disk (base image is shared)
Blue Swirl23130862009-06-06 08:22:04 +0000904ETEXI
905
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300906 {
907 .name = "migrate_cancel",
908 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300909 .params = "",
910 .help = "cancel the current VM migration",
Luiz Capitulino6cdedb02011-11-27 22:54:09 -0200911 .mhandler.cmd = hmp_migrate_cancel,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300912 },
913
Blue Swirl23130862009-06-06 08:22:04 +0000914STEXI
915@item migrate_cancel
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100916@findex migrate_cancel
Blue Swirl23130862009-06-06 08:22:04 +0000917Cancel the current VM migration.
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300918
919ETEXI
920
921 {
922 .name = "migrate_set_cache_size",
923 .args_type = "value:o",
924 .params = "value",
925 .help = "set cache size (in bytes) for XBZRLE migrations,"
926 "the cache size will be rounded down to the nearest "
927 "power of 2.\n"
928 "The cache size affects the number of cache misses."
929 "In case of a high cache miss ratio you need to increase"
930 " the cache size",
931 .mhandler.cmd = hmp_migrate_set_cache_size,
932 },
933
934STEXI
935@item migrate_set_cache_size @var{value}
936@findex migrate_set_cache_size
937Set cache size to @var{value} (in bytes) for xbzrle migrations.
Blue Swirl23130862009-06-06 08:22:04 +0000938ETEXI
939
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300940 {
941 .name = "migrate_set_speed",
Jes Sorensened3d4a82010-10-21 17:15:48 +0200942 .args_type = "value:o",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300943 .params = "value",
Jes Sorensened3d4a82010-10-21 17:15:48 +0200944 .help = "set maximum speed (in bytes) for migrations. "
945 "Defaults to MB if no size suffix is specified, ie. B/K/M/G/T",
Luiz Capitulino3dc85382011-11-28 11:59:37 -0200946 .mhandler.cmd = hmp_migrate_set_speed,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300947 },
948
Blue Swirl23130862009-06-06 08:22:04 +0000949STEXI
950@item migrate_set_speed @var{value}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100951@findex migrate_set_speed
Blue Swirl23130862009-06-06 08:22:04 +0000952Set maximum speed to @var{value} (in bytes) for migrations.
953ETEXI
954
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300955 {
956 .name = "migrate_set_downtime",
Markus Armbrusterb0fbf7d2010-01-25 14:23:07 +0100957 .args_type = "value:T",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300958 .params = "value",
959 .help = "set maximum tolerated downtime (in seconds) for migrations",
Luiz Capitulino4f0a9932011-11-27 23:18:01 -0200960 .mhandler.cmd = hmp_migrate_set_downtime,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300961 },
Glauber Costa2ea42952009-05-28 15:22:58 -0400962
963STEXI
964@item migrate_set_downtime @var{second}
Stefan Weil70fcbbe2010-02-05 23:52:04 +0100965@findex migrate_set_downtime
Glauber Costa2ea42952009-05-28 15:22:58 -0400966Set maximum tolerated downtime (in seconds) for migration.
967ETEXI
968
Jes Sorensenf8882562010-12-16 13:52:16 +0100969 {
Orit Wasserman00458432012-08-06 21:42:48 +0300970 .name = "migrate_set_capability",
971 .args_type = "capability:s,state:b",
972 .params = "capability state",
973 .help = "Enable/Disable the usage of a capability for migration",
974 .mhandler.cmd = hmp_migrate_set_capability,
975 },
976
977STEXI
978@item migrate_set_capability @var{capability} @var{state}
979@findex migrate_set_capability
980Enable/Disable the usage of a capability @var{capability} for migration.
981ETEXI
982
983 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +0100984 .name = "client_migrate_info",
985 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
986 .params = "protocol hostname port tls-port cert-subject",
987 .help = "send migration info to spice/vnc client",
988 .user_print = monitor_user_noop,
Yonit Halperinedc5cb12011-10-17 10:03:18 +0200989 .mhandler.cmd_async = client_migrate_info,
990 .flags = MONITOR_CMD_ASYNC,
Jes Sorensenf8882562010-12-16 13:52:16 +0100991 },
992
993STEXI
Gerd Hoffmanne866e232010-04-23 13:28:21 +0200994@item client_migrate_info @var{protocol} @var{hostname} @var{port} @var{tls-port} @var{cert-subject}
995@findex client_migrate_info
996Set the spice/vnc connection info for the migration target. The spice/vnc
997server will ask the spice/vnc client to automatically reconnect using the
998new parameters (if specified) once the vm migration finished successfully.
999ETEXI
1000
Wen Congyang783e9b42012-05-07 12:10:47 +08001001 {
1002 .name = "dump-guest-memory",
Luiz Capitulino75363762012-09-21 13:53:00 -03001003 .args_type = "paging:-p,filename:F,begin:i?,length:i?",
1004 .params = "[-p] filename [begin] [length]",
Wen Congyang783e9b42012-05-07 12:10:47 +08001005 .help = "dump guest memory to file"
1006 "\n\t\t\t begin(optional): the starting physical address"
1007 "\n\t\t\t length(optional): the memory size, in bytes",
Wen Congyang783e9b42012-05-07 12:10:47 +08001008 .mhandler.cmd = hmp_dump_guest_memory,
1009 },
1010
1011
1012STEXI
1013@item dump-guest-memory [-p] @var{protocol} @var{begin} @var{length}
1014@findex dump-guest-memory
1015Dump guest memory to @var{protocol}. The file can be processed with crash or
1016gdb.
Luiz Capitulino75363762012-09-21 13:53:00 -03001017 filename: dump file name
Wen Congyang783e9b42012-05-07 12:10:47 +08001018 paging: do paging to get guest's memory mapping
1019 begin: the starting physical address. It's optional, and should be
1020 specified with length together.
1021 length: the memory size, in bytes. It's optional, and should be specified
1022 with begin together.
1023ETEXI
Wen Congyang783e9b42012-05-07 12:10:47 +08001024
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001025 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001026 .name = "snapshot_blkdev",
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001027 .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?",
1028 .params = "[-n] device [new-image-file] [format]",
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001029 .help = "initiates a live snapshot\n\t\t\t"
1030 "of device. If a new image file is specified, the\n\t\t\t"
1031 "new image file will become the new root image.\n\t\t\t"
1032 "If format is specified, the snapshot file will\n\t\t\t"
Wenchao Xia775ca882013-09-11 14:04:37 +08001033 "be created in that format.\n\t\t\t"
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001034 "The default format is qcow2. The -n flag requests QEMU\n\t\t\t"
1035 "to reuse the image found in new-image-file, instead of\n\t\t\t"
1036 "recreating it from scratch.",
Luiz Capitulino6106e242011-11-25 16:15:19 -02001037 .mhandler.cmd = hmp_snapshot_blkdev,
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001038 },
1039
1040STEXI
Jes Sorensenf8882562010-12-16 13:52:16 +01001041@item snapshot_blkdev
1042@findex snapshot_blkdev
1043Snapshot device, using snapshot file as target if provided
1044ETEXI
1045
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001046 {
Wenchao Xia775ca882013-09-11 14:04:37 +08001047 .name = "snapshot_blkdev_internal",
1048 .args_type = "device:B,name:s",
1049 .params = "device name",
1050 .help = "take an internal snapshot of device.\n\t\t\t"
1051 "The format of the image used by device must\n\t\t\t"
1052 "support it, such as qcow2.\n\t\t\t",
1053 .mhandler.cmd = hmp_snapshot_blkdev_internal,
1054 },
1055
1056STEXI
1057@item snapshot_blkdev_internal
1058@findex snapshot_blkdev_internal
1059Take an internal snapshot on device if it support
1060ETEXI
1061
1062 {
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001063 .name = "snapshot_delete_blkdev_internal",
1064 .args_type = "device:B,name:s,id:s?",
1065 .params = "device name [id]",
1066 .help = "delete an internal snapshot of device.\n\t\t\t"
1067 "If id is specified, qemu will try delete\n\t\t\t"
1068 "the snapshot matching both id and name.\n\t\t\t"
1069 "The format of the image used by device must\n\t\t\t"
1070 "support it, such as qcow2.\n\t\t\t",
1071 .mhandler.cmd = hmp_snapshot_delete_blkdev_internal,
1072 },
1073
1074STEXI
1075@item snapshot_delete_blkdev_internal
1076@findex snapshot_delete_blkdev_internal
1077Delete an internal snapshot on device if it support
1078ETEXI
1079
1080 {
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001081 .name = "drive_mirror",
1082 .args_type = "reuse:-n,full:-f,device:B,target:s,format:s?",
1083 .params = "[-n] [-f] device target [format]",
1084 .help = "initiates live storage\n\t\t\t"
1085 "migration for a device. The device's contents are\n\t\t\t"
1086 "copied to the new image file, including data that\n\t\t\t"
1087 "is written after the command is started.\n\t\t\t"
1088 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1089 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1090 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
1091 "so that the result does not need a backing file.\n\t\t\t",
1092 .mhandler.cmd = hmp_drive_mirror,
1093 },
1094STEXI
1095@item drive_mirror
1096@findex drive_mirror
1097Start mirroring a block device's writes to a new destination,
1098using the specified target.
1099ETEXI
1100
1101 {
Stefan Hajnoczide909302013-06-26 14:11:58 +02001102 .name = "drive_backup",
1103 .args_type = "reuse:-n,full:-f,device:B,target:s,format:s?",
1104 .params = "[-n] [-f] device target [format]",
1105 .help = "initiates a point-in-time\n\t\t\t"
1106 "copy for a device. The device's contents are\n\t\t\t"
1107 "copied to the new image file, excluding data that\n\t\t\t"
1108 "is written after the command is started.\n\t\t\t"
1109 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1110 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1111 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
1112 "so that the result does not need a backing file.\n\t\t\t",
1113 .mhandler.cmd = hmp_drive_backup,
1114 },
1115STEXI
1116@item drive_backup
1117@findex drive_backup
1118Start a point-in-time copy of a block device to a specificed target.
1119ETEXI
1120
1121 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001122 .name = "drive_add",
1123 .args_type = "pci_addr:s,opts:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001124 .params = "[[<domain>:]<bus>:]<slot>\n"
1125 "[file=file][,if=type][,bus=n]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001126 "[,unit=m][,media=d][,index=i]\n"
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001127 "[,cyls=c,heads=h,secs=s[,trans=t]]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001128 "[,snapshot=on|off][,cache=on|off]\n"
1129 "[,readonly=on|off][,copy-on-read=on|off]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001130 .help = "add drive to PCI storage controller",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001131 .mhandler.cmd = drive_hot_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001132 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001133
Blue Swirl23130862009-06-06 08:22:04 +00001134STEXI
1135@item drive_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001136@findex drive_add
Blue Swirl23130862009-06-06 08:22:04 +00001137Add drive to PCI storage controller.
1138ETEXI
1139
David Gibson79ca6162013-06-06 18:48:45 +10001140#if defined(CONFIG_PCI_HOTPLUG_OLD)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001141 {
1142 .name = "pci_add",
1143 .args_type = "pci_addr:s,type:s,opts:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001144 .params = "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...",
1145 .help = "hot-add PCI device",
Markus Armbruster6c6a58a2010-05-12 10:53:00 +02001146 .mhandler.cmd = pci_device_hot_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001147 },
Blue Swirl23130862009-06-06 08:22:04 +00001148#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001149
Blue Swirl23130862009-06-06 08:22:04 +00001150STEXI
1151@item pci_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001152@findex pci_add
Blue Swirl23130862009-06-06 08:22:04 +00001153Hot-add PCI device.
1154ETEXI
1155
David Gibson79ca6162013-06-06 18:48:45 +10001156#if defined(CONFIG_PCI_HOTPLUG_OLD)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001157 {
1158 .name = "pci_del",
1159 .args_type = "pci_addr:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001160 .params = "[[<domain>:]<bus>:]<slot>",
1161 .help = "hot remove PCI device",
Markus Armbrusterb752daf2010-05-12 10:53:01 +02001162 .mhandler.cmd = do_pci_device_hot_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001163 },
Blue Swirl23130862009-06-06 08:22:04 +00001164#endif
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001165
Blue Swirl23130862009-06-06 08:22:04 +00001166STEXI
1167@item pci_del
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001168@findex pci_del
Blue Swirl23130862009-06-06 08:22:04 +00001169Hot remove PCI device.
1170ETEXI
1171
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001172 {
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001173 .name = "pcie_aer_inject_error",
1174 .args_type = "advisory_non_fatal:-a,correctable:-c,"
1175 "id:s,error_status:s,"
1176 "header0:i?,header1:i?,header2:i?,header3:i?,"
1177 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
1178 .params = "[-a] [-c] id "
1179 "<error_status> [<tlp header> [<tlp header prefix>]]",
1180 .help = "inject pcie aer error\n\t\t\t"
1181 " -a for advisory non fatal error\n\t\t\t"
1182 " -c for correctable error\n\t\t\t"
1183 "<id> = qdev device id\n\t\t\t"
1184 "<error_status> = error string or 32bit\n\t\t\t"
1185 "<tlb header> = 32bit x 4\n\t\t\t"
1186 "<tlb header prefix> = 32bit x 4",
1187 .user_print = pcie_aer_inject_error_print,
Zhi Yong Wu1f3392b2011-11-30 12:39:47 +08001188 .mhandler.cmd_new = do_pcie_aer_inject_error,
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001189 },
1190
1191STEXI
1192@item pcie_aer_inject_error
1193@findex pcie_aer_inject_error
1194Inject PCIe AER error
1195ETEXI
1196
1197 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001198 .name = "host_net_add",
1199 .args_type = "device:s,opts:s?",
Vincenzo Maffione58952132013-11-06 11:44:06 +01001200 .params = "tap|user|socket|vde|netmap|dump [options]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001201 .help = "add host VLAN client",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001202 .mhandler.cmd = net_host_device_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001203 },
1204
Blue Swirl23130862009-06-06 08:22:04 +00001205STEXI
1206@item host_net_add
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001207@findex host_net_add
Blue Swirl23130862009-06-06 08:22:04 +00001208Add host VLAN client.
1209ETEXI
1210
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001211 {
1212 .name = "host_net_remove",
1213 .args_type = "vlan_id:i,device:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001214 .params = "vlan_id name",
1215 .help = "remove host VLAN client",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001216 .mhandler.cmd = net_host_device_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001217 },
1218
Blue Swirl23130862009-06-06 08:22:04 +00001219STEXI
1220@item host_net_remove
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001221@findex host_net_remove
Blue Swirl23130862009-06-06 08:22:04 +00001222Remove host VLAN client.
1223ETEXI
1224
Markus Armbrusterae82d322010-03-25 17:22:40 +01001225 {
1226 .name = "netdev_add",
1227 .args_type = "netdev:O",
Vincenzo Maffione58952132013-11-06 11:44:06 +01001228 .params = "[user|tap|socket|hubport|netmap],id=str[,prop=value][,...]",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001229 .help = "add host network device",
Luiz Capitulino928059a2012-04-18 17:34:15 -03001230 .mhandler.cmd = hmp_netdev_add,
Markus Armbrusterae82d322010-03-25 17:22:40 +01001231 },
1232
1233STEXI
1234@item netdev_add
1235@findex netdev_add
1236Add host network device.
1237ETEXI
1238
1239 {
1240 .name = "netdev_del",
1241 .args_type = "id:s",
1242 .params = "id",
1243 .help = "remove host network device",
Luiz Capitulino5f964152012-04-16 14:36:32 -03001244 .mhandler.cmd = hmp_netdev_del,
Markus Armbrusterae82d322010-03-25 17:22:40 +01001245 },
1246
1247STEXI
1248@item netdev_del
1249@findex netdev_del
1250Remove host network device.
1251ETEXI
1252
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001253 {
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001254 .name = "object_add",
1255 .args_type = "object:O",
1256 .params = "[qom-type=]type,id=str[,prop=value][,...]",
1257 .help = "create QOM object",
1258 .mhandler.cmd = hmp_object_add,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001259 .command_completion = object_add_completion,
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001260 },
1261
1262STEXI
1263@item object_add
1264@findex object_add
1265Create QOM object.
1266ETEXI
1267
1268 {
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001269 .name = "object_del",
1270 .args_type = "id:s",
1271 .params = "id",
1272 .help = "destroy QOM object",
1273 .mhandler.cmd = hmp_object_del,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001274 .command_completion = object_del_completion,
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001275 },
1276
1277STEXI
1278@item object_del
1279@findex object_del
1280Destroy QOM object.
1281ETEXI
1282
Blue Swirl23130862009-06-06 08:22:04 +00001283#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001284 {
1285 .name = "hostfwd_add",
1286 .args_type = "arg1:s,arg2:s?,arg3:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001287 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
1288 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001289 .mhandler.cmd = net_slirp_hostfwd_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001290 },
Markus Armbruster21413d62010-05-04 13:20:30 +02001291#endif
1292STEXI
1293@item hostfwd_add
1294@findex hostfwd_add
1295Redirect TCP or UDP connections from host to guest (requires -net user).
1296ETEXI
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001297
Markus Armbruster21413d62010-05-04 13:20:30 +02001298#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001299 {
1300 .name = "hostfwd_remove",
1301 .args_type = "arg1:s,arg2:s?,arg3:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001302 .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport",
1303 .help = "remove host-to-guest TCP or UDP redirection",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001304 .mhandler.cmd = net_slirp_hostfwd_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001305 },
1306
Blue Swirl23130862009-06-06 08:22:04 +00001307#endif
1308STEXI
Markus Armbruster21413d62010-05-04 13:20:30 +02001309@item hostfwd_remove
1310@findex hostfwd_remove
1311Remove host-to-guest TCP or UDP redirection.
Blue Swirl23130862009-06-06 08:22:04 +00001312ETEXI
1313
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001314 {
1315 .name = "balloon",
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02001316 .args_type = "value:M",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001317 .params = "target",
Riccardo Magliocchetti3c056132010-05-19 18:49:28 +02001318 .help = "request VM to change its memory allocation (in MB)",
Luiz Capitulinod72f3262011-11-25 14:38:09 -02001319 .mhandler.cmd = hmp_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001320 },
1321
Blue Swirl23130862009-06-06 08:22:04 +00001322STEXI
1323@item balloon @var{value}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001324@findex balloon
Blue Swirl23130862009-06-06 08:22:04 +00001325Request VM to change its memory allocation to @var{value} (in MB).
1326ETEXI
1327
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001328 {
1329 .name = "set_link",
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001330 .args_type = "name:s,up:b",
1331 .params = "name on|off",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001332 .help = "change the link status of a network adapter",
Luiz Capitulino4b371562011-11-23 13:11:55 -02001333 .mhandler.cmd = hmp_set_link,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001334 },
1335
Blue Swirl23130862009-06-06 08:22:04 +00001336STEXI
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001337@item set_link @var{name} [on|off]
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001338@findex set_link
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001339Switch link @var{name} on (i.e. up) or off (i.e. down).
Blue Swirl23130862009-06-06 08:22:04 +00001340ETEXI
1341
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001342 {
1343 .name = "watchdog_action",
1344 .args_type = "action:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001345 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1346 .help = "change watchdog action",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001347 .mhandler.cmd = do_watchdog_action,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001348 },
1349
Blue Swirl23130862009-06-06 08:22:04 +00001350STEXI
1351@item watchdog_action
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001352@findex watchdog_action
Blue Swirl23130862009-06-06 08:22:04 +00001353Change watchdog action.
1354ETEXI
1355
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001356 {
1357 .name = "acl_show",
1358 .args_type = "aclname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001359 .params = "aclname",
1360 .help = "list rules in the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001361 .mhandler.cmd = do_acl_show,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001362 },
1363
Blue Swirl23130862009-06-06 08:22:04 +00001364STEXI
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001365@item acl_show @var{aclname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001366@findex acl_show
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001367List all the matching rules in the access control list, and the default
1368policy. There are currently two named access control lists,
1369@var{vnc.x509dname} and @var{vnc.username} matching on the x509 client
1370certificate distinguished name, and SASL username respectively.
1371ETEXI
Blue Swirl23130862009-06-06 08:22:04 +00001372
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001373 {
1374 .name = "acl_policy",
1375 .args_type = "aclname:s,policy:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001376 .params = "aclname allow|deny",
1377 .help = "set default access control list policy",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001378 .mhandler.cmd = do_acl_policy,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001379 },
1380
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001381STEXI
Jan Kiszkacbbfacc2009-07-03 08:46:05 +02001382@item acl_policy @var{aclname} @code{allow|deny}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001383@findex acl_policy
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001384Set the default access control list policy, used in the event that
Blue Swirl23130862009-06-06 08:22:04 +00001385none of the explicit rules match. The default policy at startup is
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001386always @code{deny}.
1387ETEXI
1388
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001389 {
1390 .name = "acl_add",
1391 .args_type = "aclname:s,match:s,policy:s,index:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001392 .params = "aclname match allow|deny [index]",
1393 .help = "add a match rule to the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001394 .mhandler.cmd = do_acl_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001395 },
1396
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001397STEXI
Markus Armbruster0e4aec92010-05-04 13:20:31 +02001398@item acl_add @var{aclname} @var{match} @code{allow|deny} [@var{index}]
1399@findex acl_add
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001400Add a match rule to the access control list, allowing or denying access.
1401The match will normally be an exact username or x509 distinguished name,
1402but can optionally include wildcard globs. eg @code{*@@EXAMPLE.COM} to
1403allow all users in the @code{EXAMPLE.COM} kerberos realm. The match will
Blue Swirl23130862009-06-06 08:22:04 +00001404normally be appended to the end of the ACL, but can be inserted
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001405earlier in the list if the optional @var{index} parameter is supplied.
1406ETEXI
1407
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001408 {
1409 .name = "acl_remove",
1410 .args_type = "aclname:s,match:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001411 .params = "aclname match",
1412 .help = "remove a match rule from the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001413 .mhandler.cmd = do_acl_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001414 },
1415
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001416STEXI
1417@item acl_remove @var{aclname} @var{match}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001418@findex acl_remove
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001419Remove the specified match rule from the access control list.
1420ETEXI
1421
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001422 {
1423 .name = "acl_reset",
1424 .args_type = "aclname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001425 .params = "aclname",
1426 .help = "reset the access control list",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001427 .mhandler.cmd = do_acl_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001428 },
1429
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001430STEXI
Markus Armbruster0e4aec92010-05-04 13:20:31 +02001431@item acl_reset @var{aclname}
1432@findex acl_reset
Jan Kiszka15dfcd42009-06-25 08:22:08 +02001433Remove all matches from the access control list, and set the default
Blue Swirl23130862009-06-06 08:22:04 +00001434policy back to @code{deny}.
Blue Swirl23130862009-06-06 08:22:04 +00001435ETEXI
1436
Paolo Bonzini40577252012-08-23 11:53:04 +02001437 {
1438 .name = "nbd_server_start",
1439 .args_type = "all:-a,writable:-w,uri:s",
1440 .params = "nbd_server_start [-a] [-w] host:port",
1441 .help = "serve block devices on the given host and port",
1442 .mhandler.cmd = hmp_nbd_server_start,
1443 },
1444STEXI
1445@item nbd_server_start @var{host}:@var{port}
1446@findex nbd_server_start
1447Start an NBD server on the given host and/or port. If the @option{-a}
1448option is included, all of the virtual machine's block devices that
1449have an inserted media on them are automatically exported; in this case,
1450the @option{-w} option makes the devices writable too.
1451ETEXI
1452
1453 {
1454 .name = "nbd_server_add",
1455 .args_type = "writable:-w,device:B",
1456 .params = "nbd_server_add [-w] device",
1457 .help = "export a block device via NBD",
1458 .mhandler.cmd = hmp_nbd_server_add,
1459 },
1460STEXI
1461@item nbd_server_add @var{device}
1462@findex nbd_server_add
1463Export a block device through QEMU's NBD server, which must be started
1464beforehand with @command{nbd_server_start}. The @option{-w} option makes the
1465exported device writable too.
1466ETEXI
1467
1468 {
1469 .name = "nbd_server_stop",
1470 .args_type = "",
1471 .params = "nbd_server_stop",
1472 .help = "stop serving block devices using the NBD protocol",
1473 .mhandler.cmd = hmp_nbd_server_stop,
1474 },
1475STEXI
1476@item nbd_server_stop
1477@findex nbd_server_stop
1478Stop the QEMU embedded NBD server.
1479ETEXI
1480
1481
Huang Ying79c4f6b2009-06-23 10:05:14 +08001482#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001483
1484 {
1485 .name = "mce",
Jin Dongming31ce5e02010-12-10 17:21:02 +09001486 .args_type = "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1487 .params = "[-b] cpu bank status mcgstatus addr misc",
1488 .help = "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
Luiz Capitulinoaf4ce882009-10-07 13:41:52 -03001489 .mhandler.cmd = do_inject_mce,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001490 },
1491
Huang Ying79c4f6b2009-06-23 10:05:14 +08001492#endif
1493STEXI
1494@item mce @var{cpu} @var{bank} @var{status} @var{mcgstatus} @var{addr} @var{misc}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001495@findex mce (x86)
Huang Ying79c4f6b2009-06-23 10:05:14 +08001496Inject an MCE on the given CPU (x86 only).
1497ETEXI
1498
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001499 {
1500 .name = "getfd",
1501 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001502 .params = "getfd name",
1503 .help = "receive a file descriptor via SCM rights and assign it a name",
Corey Bryant208c9d12012-06-22 14:36:09 -04001504 .mhandler.cmd = hmp_getfd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001505 },
1506
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001507STEXI
1508@item getfd @var{fdname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001509@findex getfd
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001510If a file descriptor is passed alongside this command using the SCM_RIGHTS
1511mechanism on unix sockets, it is stored using the name @var{fdname} for
1512later use by other monitor commands.
1513ETEXI
1514
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001515 {
1516 .name = "closefd",
1517 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001518 .params = "closefd name",
1519 .help = "close a file descriptor previously passed via SCM rights",
Corey Bryant208c9d12012-06-22 14:36:09 -04001520 .mhandler.cmd = hmp_closefd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001521 },
1522
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001523STEXI
1524@item closefd @var{fdname}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001525@findex closefd
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001526Close the file descriptor previously assigned to @var{fdname} using the
1527@code{getfd} command. This is only needed if the file descriptor was never
1528used by another monitor command.
1529ETEXI
1530
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001531 {
1532 .name = "block_passwd",
1533 .args_type = "device:B,password:s",
1534 .params = "block_passwd device password",
1535 .help = "set the password of encrypted block devices",
Luiz Capitulinoa4dea8a2011-11-23 13:28:21 -02001536 .mhandler.cmd = hmp_block_passwd,
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001537 },
1538
1539STEXI
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001540@item block_set_io_throttle @var{device} @var{bps} @var{bps_rd} @var{bps_wr} @var{iops} @var{iops_rd} @var{iops_wr}
1541@findex block_set_io_throttle
1542Change 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}
1543ETEXI
1544
1545 {
1546 .name = "block_set_io_throttle",
1547 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1548 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
1549 .help = "change I/O throttle limits for a block drive",
Luiz Capitulino80047da2011-12-14 16:49:14 -02001550 .mhandler.cmd = hmp_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001551 },
1552
1553STEXI
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001554@item block_passwd @var{device} @var{password}
Stefan Weil70fcbbe2010-02-05 23:52:04 +01001555@findex block_passwd
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001556Set the encrypted device @var{device} password to @var{password}
1557ETEXI
Jan Kiszkab40292e2010-05-31 14:43:31 -03001558
Jan Kiszka33572ec2010-05-31 14:43:30 -03001559 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001560 .name = "set_password",
1561 .args_type = "protocol:s,password:s,connected:s?",
1562 .params = "protocol password action-if-connected",
1563 .help = "set spice/vnc password",
Luiz Capitulinofbf796f2011-12-07 11:17:51 -02001564 .mhandler.cmd = hmp_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001565 },
1566
1567STEXI
1568@item set_password [ vnc | spice ] password [ action-if-connected ]
1569@findex set_password
1570
1571Change spice/vnc password. Use zero to make the password stay valid
1572forever. @var{action-if-connected} specifies what should happen in
1573case a connection is established: @var{fail} makes the password change
1574fail. @var{disconnect} changes the password and disconnects the
1575client. @var{keep} changes the password and keeps the connection up.
1576@var{keep} is the default.
1577ETEXI
1578
1579 {
1580 .name = "expire_password",
1581 .args_type = "protocol:s,time:s",
1582 .params = "protocol time",
1583 .help = "set spice/vnc password expire-time",
Luiz Capitulino9ad53722011-12-07 11:47:57 -02001584 .mhandler.cmd = hmp_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001585 },
1586
1587STEXI
1588@item expire_password [ vnc | spice ] expire-time
1589@findex expire_password
1590
1591Specify when a password for spice/vnc becomes
1592invalid. @var{expire-time} accepts:
1593
1594@table @var
1595@item now
1596Invalidate password instantly.
1597
1598@item never
1599Password stays valid forever.
1600
1601@item +nsec
1602Password stays valid for @var{nsec} seconds starting now.
1603
1604@item nsec
1605Password is invalidated at the given time. @var{nsec} are the seconds
1606passed since 1970, i.e. unix epoch.
1607
1608@end table
1609ETEXI
1610
Gerd Hoffmann46920822013-02-28 08:46:10 +01001611 {
1612 .name = "chardev-add",
1613 .args_type = "args:s",
1614 .params = "args",
1615 .help = "add chardev",
1616 .mhandler.cmd = hmp_chardev_add,
1617 },
1618
1619STEXI
1620@item chardev_add args
1621@findex chardev_add
1622
1623chardev_add accepts the same parameters as the -chardev command line switch.
1624
1625ETEXI
1626
1627 {
1628 .name = "chardev-remove",
1629 .args_type = "id:s",
1630 .params = "id",
1631 .help = "remove chardev",
1632 .mhandler.cmd = hmp_chardev_remove,
1633 },
1634
1635STEXI
1636@item chardev_remove id
1637@findex chardev_remove
1638
1639Removes the chardev @var{id}.
1640
1641ETEXI
Gerd Hoffmannf1088902012-12-19 10:33:40 +01001642
1643 {
Kevin Wolf587da2c2013-06-05 14:19:41 +02001644 .name = "qemu-io",
1645 .args_type = "device:B,command:s",
1646 .params = "[device] \"[command]\"",
1647 .help = "run a qemu-io command on a block device",
1648 .mhandler.cmd = hmp_qemu_io,
1649 },
1650
1651STEXI
1652@item qemu-io @var{device} @var{command}
1653@findex qemu-io
1654
1655Executes a qemu-io command on the given block device.
1656
1657ETEXI
1658
1659 {
Jason J. Herneabf23322013-12-11 13:24:14 -05001660 .name = "cpu-add",
1661 .args_type = "id:i",
1662 .params = "id",
1663 .help = "add cpu",
1664 .mhandler.cmd = hmp_cpu_add,
1665 },
1666
1667STEXI
1668@item cpu-add @var{id}
1669Add CPU with id @var{id}
1670ETEXI
1671
1672 {
Jan Kiszka33572ec2010-05-31 14:43:30 -03001673 .name = "info",
1674 .args_type = "item:s?",
1675 .params = "[subcommand]",
1676 .help = "show various information about the system state",
Wenchao Xia84c44612013-01-14 14:06:29 +08001677 .mhandler.cmd = do_info_help,
1678 .sub_table = info_cmds,
Jan Kiszka33572ec2010-05-31 14:43:30 -03001679 },
1680
1681STEXI
1682@item info @var{subcommand}
1683@findex info
1684Show various information about the system state.
1685
1686@table @option
1687@item info version
1688show the version of QEMU
Jan Kiszka33572ec2010-05-31 14:43:30 -03001689@item info network
1690show the various VLANs and the associated devices
1691@item info chardev
1692show the character devices
1693@item info block
1694show the block devices
1695@item info blockstats
1696show block device statistics
1697@item info registers
1698show the cpu registers
1699@item info cpus
1700show infos for each CPU
1701@item info history
1702show the command line history
1703@item info irq
1704show the interrupts statistics (if available)
1705@item info pic
1706show i8259 (PIC) state
1707@item info pci
1708show emulated PCI device info
1709@item info tlb
Max Filippov692f7372012-01-07 20:02:40 +04001710show virtual to physical memory mappings (i386, SH4, SPARC, PPC, and Xtensa only)
Jan Kiszka33572ec2010-05-31 14:43:30 -03001711@item info mem
1712show the active virtual memory mappings (i386 only)
Jan Kiszka33572ec2010-05-31 14:43:30 -03001713@item info jit
1714show dynamic compiler info
Jan Kiszka33572ec2010-05-31 14:43:30 -03001715@item info numa
1716show NUMA information
Jan Kiszkab40292e2010-05-31 14:43:31 -03001717@item info kvm
1718show KVM information
Jan Kiszka33572ec2010-05-31 14:43:30 -03001719@item info usb
1720show USB devices plugged on the virtual USB hub
1721@item info usbhost
1722show all USB host devices
1723@item info profile
1724show profiling information
1725@item info capture
1726show information about active capturing
1727@item info snapshots
1728show list of VM snapshots
1729@item info status
1730show the current VM status (running|paused)
1731@item info pcmcia
1732show guest PCMCIA status
1733@item info mice
1734show which guest mouse is receiving events
1735@item info vnc
1736show the vnc server status
1737@item info name
1738show the current VM name
1739@item info uuid
1740show the current VM UUID
1741@item info cpustats
1742show CPU statistics
1743@item info usernet
1744show user network stack connection states
1745@item info migrate
1746show migration status
Orit Wassermanbbf6da32012-08-06 21:42:47 +03001747@item info migrate_capabilities
1748show current migration capabilities
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +03001749@item info migrate_cache_size
1750show current migration XBZRLE cache size
Jan Kiszka33572ec2010-05-31 14:43:30 -03001751@item info balloon
1752show balloon information
1753@item info qtree
1754show device tree
1755@item info qdm
1756show qdev device model list
1757@item info roms
1758show roms
Stefan Bergerd1a0cf72013-02-27 12:47:49 -05001759@item info tpm
1760show the TPM device
Jan Kiszka33572ec2010-05-31 14:43:30 -03001761@end table
1762ETEXI
1763
LluĂ­s31965ae2011-08-31 20:31:24 +02001764STEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +05301765@item info trace-events
1766show available trace events and their state
1767ETEXI
Prerna Saxena22890ab2010-06-24 17:04:53 +05301768
Blue Swirl23130862009-06-06 08:22:04 +00001769STEXI
1770@end table
1771ETEXI