blob: 70a9136ac2935b0cb2b2f132266196b5df6cd556 [file] [log] [blame]
Peter Maydell3c95fde2020-03-06 17:17:44 +00001HXCOMM Use DEFHEADING() to define headings in both help text and rST.
2HXCOMM Text between SRST and ERST is copied to the rST version and
3HXCOMM discarded from C version.
Blue Swirl23130862009-06-06 08:22:04 +00004HXCOMM DEF(command, args, callback, arg_string, help) is used to construct
5HXCOMM monitor commands
Peter Maydell3c95fde2020-03-06 17:17:44 +00006HXCOMM HXCOMM can be used for comments, discarded from both rST and C.
Blue Swirl23130862009-06-06 08:22:04 +00007
Blue Swirl23130862009-06-06 08:22:04 +00008
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03009 {
10 .name = "help|?",
Wenchao Xia129be002013-08-27 20:38:26 +080011 .args_type = "name:S?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030012 .params = "[cmd]",
13 .help = "show the help",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040014 .cmd = do_help_cmd,
Dr. David Alan Gilbert31785f12018-06-20 16:39:42 +010015 .flags = "p",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030016 },
17
Peter Maydella6b30bc2020-02-28 15:36:06 +000018SRST
19``help`` or ``?`` [*cmd*]
20 Show the help for all commands or just for command *cmd*.
21ERST
Blue Swirl23130862009-06-06 08:22:04 +000022
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030023 {
24 .name = "commit",
25 .args_type = "device:B",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030026 .params = "device|all",
27 .help = "commit changes to the disk images (if -snapshot is used) or backing files",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040028 .cmd = hmp_commit,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030029 },
30
Peter Maydella6b30bc2020-02-28 15:36:06 +000031SRST
32``commit``
33 Commit changes to the disk images (if -snapshot is used) or backing files.
34 If the backing file is smaller than the snapshot, then the backing file
35 will be resized to be the same size as the snapshot. If the snapshot is
36 smaller than the backing file, the backing file will not be truncated.
37 If you want the backing file to match the size of the smaller snapshot,
38 you can safely truncate it yourself once the commit operation successfully
39 completes.
40ERST
Blue Swirl23130862009-06-06 08:22:04 +000041
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030042 {
Peter Maydellff688cd2020-11-21 15:17:11 +000043 .name = "quit|q",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030044 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030045 .params = "",
46 .help = "quit the emulator",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040047 .cmd = hmp_quit,
Paolo Bonziniebe34442020-10-27 06:56:32 -040048 .flags = "p",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030049 },
50
Peter Maydella6b30bc2020-02-28 15:36:06 +000051SRST
Peter Maydellff688cd2020-11-21 15:17:11 +000052``quit`` or ``q``
Peter Maydella6b30bc2020-02-28 15:36:06 +000053 Quit the emulator.
54ERST
Blue Swirl23130862009-06-06 08:22:04 +000055
Luiz Capitulinod7f9b682009-10-07 13:41:50 -030056 {
Dr. David Alan Gilbert8e8581e2018-06-20 16:39:46 +010057 .name = "exit_preconfig",
58 .args_type = "",
59 .params = "",
60 .help = "exit the preconfig state",
61 .cmd = hmp_exit_preconfig,
62 .flags = "p",
63 },
64
Peter Maydella6b30bc2020-02-28 15:36:06 +000065SRST
66``exit_preconfig``
67 This command makes QEMU exit the preconfig state and proceed with
68 VM initialization using configuration data provided on the command line
69 and via the QMP monitor during the preconfig state. The command is only
70 available during the preconfig state (i.e. when the --preconfig command
71 line option was in use).
72ERST
Dr. David Alan Gilbert8e8581e2018-06-20 16:39:46 +010073
74 {
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010075 .name = "block_resize",
76 .args_type = "device:B,size:o",
77 .params = "device size",
78 .help = "resize a block image",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040079 .cmd = hmp_block_resize,
Kevin Wolfeb94b812020-10-05 17:58:55 +020080 .coroutine = true,
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010081 },
82
Peter Maydella6b30bc2020-02-28 15:36:06 +000083SRST
84``block_resize``
85 Resize a block image while a guest is running. Usually requires guest
86 action to see the updated size. Resize to a lower size is supported,
87 but should be used with extreme caution. Note that this command only
88 resizes image files, it can not resize block devices like LVM volumes.
89ERST
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +010090
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000091 {
92 .name = "block_stream",
Stefan Hajnoczic83c66c2012-04-25 16:51:03 +010093 .args_type = "device:B,speed:o?,base:s?",
94 .params = "device [speed [base]]",
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000095 .help = "copy data from a backing file into a block device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +040096 .cmd = hmp_block_stream,
Stefan Hajnoczi12bd4512012-01-18 14:40:46 +000097 },
98
Peter Maydella6b30bc2020-02-28 15:36:06 +000099SRST
100``block_stream``
101 Copy data from a backing file into a block device.
102ERST
Christoph Hellwig6d4a2b32011-01-24 13:32:33 +0100103
104 {
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000105 .name = "block_job_set_speed",
Stefan Hajnoczi882ec7c2012-04-25 16:51:02 +0100106 .args_type = "device:B,speed:o",
107 .params = "device speed",
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000108 .help = "set maximum speed for a background block operation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400109 .cmd = hmp_block_job_set_speed,
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000110 },
111
Peter Maydella6b30bc2020-02-28 15:36:06 +0000112SRST
113``block_job_set_speed``
114 Set maximum speed for a background block operation.
115ERST
Stefan Hajnoczi2d47c6e2012-01-18 14:40:47 +0000116
117 {
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000118 .name = "block_job_cancel",
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200119 .args_type = "force:-f,device:B",
120 .params = "[-f] device",
121 .help = "stop an active background block operation (use -f"
Liang Lib76e4452018-03-13 08:12:16 -0400122 "\n\t\t\t if you want to abort the operation immediately"
123 "\n\t\t\t instead of keep running until data is in sync)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400124 .cmd = hmp_block_job_cancel,
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000125 },
126
Peter Maydella6b30bc2020-02-28 15:36:06 +0000127SRST
128``block_job_cancel``
129 Stop an active background block operation (streaming, mirroring).
130ERST
Paolo Bonziniaeae8832012-10-18 16:49:21 +0200131
132 {
133 .name = "block_job_complete",
134 .args_type = "device:B",
135 .params = "device",
136 .help = "stop an active background block operation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400137 .cmd = hmp_block_job_complete,
Paolo Bonziniaeae8832012-10-18 16:49:21 +0200138 },
139
Peter Maydella6b30bc2020-02-28 15:36:06 +0000140SRST
141``block_job_complete``
142 Manually trigger completion of an active background block operation.
143 For mirroring, this will switch the device to the destination path.
144ERST
Stefan Hajnoczi370521a2012-01-18 14:40:48 +0000145
146 {
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200147 .name = "block_job_pause",
148 .args_type = "device:B",
149 .params = "device",
150 .help = "pause an active background block operation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400151 .cmd = hmp_block_job_pause,
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200152 },
153
Peter Maydella6b30bc2020-02-28 15:36:06 +0000154SRST
155``block_job_pause``
156 Pause an active block streaming operation.
157ERST
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200158
159 {
160 .name = "block_job_resume",
161 .args_type = "device:B",
162 .params = "device",
163 .help = "resume a paused background block operation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400164 .cmd = hmp_block_job_resume,
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200165 },
166
Peter Maydella6b30bc2020-02-28 15:36:06 +0000167SRST
168``block_job_resume``
169 Resume a paused block streaming operation.
170ERST
Paolo Bonzini6e37fb82012-09-28 17:22:51 +0200171
172 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300173 .name = "eject",
Luiz Capitulino78d714e2009-12-14 18:53:21 -0200174 .args_type = "force:-f,device:B",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300175 .params = "[-f] device",
176 .help = "eject a removable medium (use -f to force it)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400177 .cmd = hmp_eject,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300178 },
179
Peter Maydella6b30bc2020-02-28 15:36:06 +0000180SRST
181``eject [-f]`` *device*
182 Eject a removable medium (use -f to force it).
183ERST
Blue Swirl23130862009-06-06 08:22:04 +0000184
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300185 {
Ryan Harper9063f812010-11-12 11:07:13 -0600186 .name = "drive_del",
Hani Benhabilesf7bdc412014-04-13 16:25:05 +0100187 .args_type = "id:B",
Ryan Harper9063f812010-11-12 11:07:13 -0600188 .params = "device",
189 .help = "remove host block device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400190 .cmd = hmp_drive_del,
Ryan Harper9063f812010-11-12 11:07:13 -0600191 },
192
Peter Maydella6b30bc2020-02-28 15:36:06 +0000193SRST
194``drive_del`` *device*
195 Remove host block device. The result is that guest generated IO is no longer
196 submitted against the host device underlying the disk. Once a drive has
197 been deleted, the QEMU Block layer returns -EIO which results in IO
198 errors in the guest for applications that are reading/writing to the device.
199 These errors are always reported to the guest, regardless of the drive's error
200 actions (drive options rerror, werror).
201ERST
Ryan Harper9063f812010-11-12 11:07:13 -0600202
203 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300204 .name = "change",
Max Reitzbaead0a2015-10-26 21:39:18 +0100205 .args_type = "device:B,target:F,arg:s?,read-only-mode:s?",
206 .params = "device filename [format [read-only-mode]]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300207 .help = "change a removable medium, optional format",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400208 .cmd = hmp_change,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300209 },
210
Peter Maydella6b30bc2020-02-28 15:36:06 +0000211SRST
212``change`` *device* *setting*
213 Change the configuration of a device.
214
215 ``change`` *diskdevice* *filename* [*format* [*read-only-mode*]]
216 Change the medium for a removable disk device to point to *filename*. eg::
217
218 (qemu) change ide1-cd0 /path/to/some.iso
219
220 *format* is optional.
221
222 *read-only-mode* may be used to change the read-only status of the device.
223 It accepts the following values:
224
225 retain
226 Retains the current status; this is the default.
227
228 read-only
229 Makes the device read-only.
230
231 read-write
232 Makes the device writable.
233
Peter Maydella6b30bc2020-02-28 15:36:06 +0000234 ``change vnc password`` [*password*]
235
236 Change the password associated with the VNC server. If the new password
237 is not supplied, the monitor will prompt for it to be entered. VNC
238 passwords are only significant up to 8 letters. eg::
239
240 (qemu) change vnc password
241 Password: ********
242
243ERST
Blue Swirl23130862009-06-06 08:22:04 +0000244
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300245 {
246 .name = "screendump",
Thomas Huthf771c542018-03-05 17:37:48 +0100247 .args_type = "filename:F,device:s?,head:i?",
248 .params = "filename [device [head]]",
249 .help = "save screen from head 'head' of display device 'device' "
250 "into PPM image 'filename'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400251 .cmd = hmp_screendump,
Marc-André Lureau0d9b90c2020-10-27 17:36:02 +0400252 .coroutine = true,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300253 },
254
Peter Maydella6b30bc2020-02-28 15:36:06 +0000255SRST
256``screendump`` *filename*
257 Save screen into PPM image *filename*.
258ERST
Blue Swirl23130862009-06-06 08:22:04 +0000259
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300260 {
261 .name = "logfile",
262 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300263 .params = "filename",
264 .help = "output logs to 'filename'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400265 .cmd = hmp_logfile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300266 },
267
Peter Maydella6b30bc2020-02-28 15:36:06 +0000268SRST
269``logfile`` *filename*
270 Output logs to *filename*.
271ERST
Blue Swirl23130862009-06-06 08:22:04 +0000272
Prerna Saxena22890ab2010-06-24 17:04:53 +0530273 {
274 .name = "trace-event",
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200275 .args_type = "name:s,option:b,vcpu:i?",
276 .params = "name on|off [vcpu]",
277 .help = "changes status of a specific trace event "
278 "(vcpu: vCPU to set, default is all)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400279 .cmd = hmp_trace_event,
Dr. David Alan Gilbert987bd272015-08-14 11:27:43 +0100280 .command_completion = trace_event_completion,
Prerna Saxena22890ab2010-06-24 17:04:53 +0530281 },
282
Peter Maydella6b30bc2020-02-28 15:36:06 +0000283SRST
284``trace-event``
285 changes status of a trace event
286ERST
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100287
Michael Rothc45a8162011-10-02 08:44:37 -0500288#if defined(CONFIG_TRACE_SIMPLE)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100289 {
290 .name = "trace-file",
291 .args_type = "op:s?,arg:F?",
292 .params = "on|off|flush|set [arg]",
293 .help = "open, close, or flush trace file, or set a new file name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400294 .cmd = hmp_trace_file,
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100295 },
296
Peter Maydella6b30bc2020-02-28 15:36:06 +0000297SRST
298``trace-file on|off|flush``
299 Open, close, or flush the trace file. If no argument is given, the
300 status of the trace file is displayed.
301ERST
Prerna Saxena22890ab2010-06-24 17:04:53 +0530302#endif
303
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300304 {
305 .name = "log",
306 .args_type = "items:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300307 .params = "item1[,...]",
Peter Maydell989b6972013-02-26 17:52:40 +0000308 .help = "activate logging of the specified items",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400309 .cmd = hmp_log,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300310 },
311
Peter Maydella6b30bc2020-02-28 15:36:06 +0000312SRST
313``log`` *item1*\ [,...]
314 Activate logging of the specified items.
315ERST
Blue Swirl23130862009-06-06 08:22:04 +0000316
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300317 {
318 .name = "savevm",
319 .args_type = "name:s?",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200320 .params = "tag",
321 .help = "save a VM snapshot. If no tag is provided, a new snapshot is created",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400322 .cmd = hmp_savevm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300323 },
324
Peter Maydella6b30bc2020-02-28 15:36:06 +0000325SRST
326``savevm`` *tag*
327 Create a snapshot of the whole virtual machine. If *tag* is
328 provided, it is used as human readable identifier. If there is already
329 a snapshot with the same tag, it is replaced. More info at
330 :ref:`vm_005fsnapshots`.
331
332 Since 4.0, savevm stopped allowing the snapshot id to be set, accepting
333 only *tag* as parameter.
334ERST
Blue Swirl23130862009-06-06 08:22:04 +0000335
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300336 {
337 .name = "loadvm",
338 .args_type = "name:s",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200339 .params = "tag",
340 .help = "restore a VM snapshot from its tag",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400341 .cmd = hmp_loadvm,
Hani Benhabilesb21631f2014-05-27 23:39:37 +0100342 .command_completion = loadvm_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300343 },
344
Peter Maydella6b30bc2020-02-28 15:36:06 +0000345SRST
346``loadvm`` *tag*
347 Set the whole virtual machine to the snapshot identified by the tag
348 *tag*.
349
350 Since 4.0, loadvm stopped accepting snapshot id as parameter.
351ERST
Blue Swirl23130862009-06-06 08:22:04 +0000352
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300353 {
354 .name = "delvm",
355 .args_type = "name:s",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200356 .params = "tag",
357 .help = "delete a VM snapshot from its tag",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400358 .cmd = hmp_delvm,
Hani Benhabilesb21631f2014-05-27 23:39:37 +0100359 .command_completion = delvm_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300360 },
361
Peter Maydella6b30bc2020-02-28 15:36:06 +0000362SRST
363``delvm`` *tag*
364 Delete the snapshot identified by *tag*.
365
366 Since 4.0, delvm stopped deleting snapshots by snapshot id, accepting
367 only *tag* as parameter.
368ERST
Blue Swirl23130862009-06-06 08:22:04 +0000369
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300370 {
371 .name = "singlestep",
372 .args_type = "option:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300373 .params = "[on|off]",
374 .help = "run emulation in singlestep mode or switch to normal mode",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400375 .cmd = hmp_singlestep,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300376 },
377
Peter Maydella6b30bc2020-02-28 15:36:06 +0000378SRST
379``singlestep [off]``
380 Run the emulation in single step mode.
381 If called with option off, the emulation returns to normal mode.
382ERST
Blue Swirl23130862009-06-06 08:22:04 +0000383
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300384 {
BALATON Zoltande4cf842021-10-30 11:49:37 +0200385 .name = "stop|s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300386 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300387 .params = "",
388 .help = "stop emulation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400389 .cmd = hmp_stop,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300390 },
391
Peter Maydella6b30bc2020-02-28 15:36:06 +0000392SRST
BALATON Zoltande4cf842021-10-30 11:49:37 +0200393``stop`` or ``s``
Peter Maydella6b30bc2020-02-28 15:36:06 +0000394 Stop emulation.
395ERST
Blue Swirl23130862009-06-06 08:22:04 +0000396
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300397 {
Peter Maydellff688cd2020-11-21 15:17:11 +0000398 .name = "cont|c",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300399 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300400 .params = "",
401 .help = "resume emulation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400402 .cmd = hmp_cont,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300403 },
404
Peter Maydella6b30bc2020-02-28 15:36:06 +0000405SRST
Peter Maydellff688cd2020-11-21 15:17:11 +0000406``cont`` or ``c``
Peter Maydella6b30bc2020-02-28 15:36:06 +0000407 Resume emulation.
408ERST
Blue Swirl23130862009-06-06 08:22:04 +0000409
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300410 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100411 .name = "system_wakeup",
412 .args_type = "",
413 .params = "",
414 .help = "wakeup guest from suspend",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400415 .cmd = hmp_system_wakeup,
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100416 },
417
Peter Maydella6b30bc2020-02-28 15:36:06 +0000418SRST
419``system_wakeup``
420 Wakeup guest from suspend.
421ERST
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100422
423 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300424 .name = "gdbserver",
425 .args_type = "device:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300426 .params = "[device]",
427 .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400428 .cmd = hmp_gdbserver,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300429 },
430
Peter Maydella6b30bc2020-02-28 15:36:06 +0000431SRST
432``gdbserver`` [*port*]
433 Start gdbserver session (default *port*\=1234)
434ERST
Blue Swirl23130862009-06-06 08:22:04 +0000435
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300436 {
437 .name = "x",
438 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300439 .params = "/fmt addr",
440 .help = "virtual memory dump starting at 'addr'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400441 .cmd = hmp_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300442 },
443
Peter Maydella6b30bc2020-02-28 15:36:06 +0000444SRST
445``x/``\ *fmt* *addr*
446 Virtual memory dump starting at *addr*.
447ERST
Blue Swirl23130862009-06-06 08:22:04 +0000448
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300449 {
450 .name = "xp",
451 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300452 .params = "/fmt addr",
453 .help = "physical memory dump starting at 'addr'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400454 .cmd = hmp_physical_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300455 },
456
Peter Maydella6b30bc2020-02-28 15:36:06 +0000457SRST
458``xp /``\ *fmt* *addr*
459 Physical memory dump starting at *addr*.
460
461 *fmt* is a format which tells the command how to format the
462 data. Its syntax is: ``/{count}{format}{size}``
463
464 *count*
465 is the number of items to be dumped.
466 *format*
467 can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
468 c (char) or i (asm instruction).
469 *size*
470 can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
471 ``h`` or ``w`` can be specified with the ``i`` format to
472 respectively select 16 or 32 bit code instruction size.
473
474 Examples:
475
476 Dump 10 instructions at the current instruction pointer::
477
478 (qemu) x/10i $eip
479 0x90107063: ret
480 0x90107064: sti
481 0x90107065: lea 0x0(%esi,1),%esi
482 0x90107069: lea 0x0(%edi,1),%edi
483 0x90107070: ret
484 0x90107071: jmp 0x90107080
485 0x90107073: nop
486 0x90107074: nop
487 0x90107075: nop
488 0x90107076: nop
489
490 Dump 80 16 bit values at the start of the video memory::
491
492 (qemu) xp/80hx 0xb8000
493 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
494 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
495 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
496 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
497 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
498 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
499 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
500 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
501 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
502 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
503
504ERST
Blue Swirl23130862009-06-06 08:22:04 +0000505
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300506 {
Paolo Bonzinie9628442017-04-20 15:30:58 +0200507 .name = "gpa2hva",
508 .args_type = "addr:l",
509 .params = "addr",
510 .help = "print the host virtual address corresponding to a guest physical address",
511 .cmd = hmp_gpa2hva,
512 },
513
Peter Maydella6b30bc2020-02-28 15:36:06 +0000514SRST
515``gpa2hva`` *addr*
516 Print the host virtual address at which the guest's physical address *addr*
517 is mapped.
518ERST
Paolo Bonzinie9628442017-04-20 15:30:58 +0200519
520#ifdef CONFIG_LINUX
521 {
522 .name = "gpa2hpa",
523 .args_type = "addr:l",
524 .params = "addr",
525 .help = "print the host physical address corresponding to a guest physical address",
526 .cmd = hmp_gpa2hpa,
527 },
528#endif
529
Peter Maydella6b30bc2020-02-28 15:36:06 +0000530SRST
531``gpa2hpa`` *addr*
532 Print the host physical address at which the guest's physical address *addr*
533 is mapped.
534ERST
Paolo Bonzinie9628442017-04-20 15:30:58 +0200535
536 {
Dr. David Alan Gilbert574d9692019-04-12 16:26:52 +0100537 .name = "gva2gpa",
538 .args_type = "addr:l",
539 .params = "addr",
540 .help = "print the guest physical address corresponding to a guest virtual address",
541 .cmd = hmp_gva2gpa,
542 },
543
Peter Maydella6b30bc2020-02-28 15:36:06 +0000544SRST
545``gva2gpa`` *addr*
546 Print the guest physical address at which the guest's virtual address *addr*
547 is mapped based on the mapping for the current CPU.
548ERST
Dr. David Alan Gilbert574d9692019-04-12 16:26:52 +0100549
550 {
Peter Maydellff688cd2020-11-21 15:17:11 +0000551 .name = "print|p",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300552 .args_type = "fmt:/,val:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300553 .params = "/fmt expr",
554 .help = "print expression value (use $reg for CPU register access)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400555 .cmd = do_print,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300556 },
557
Peter Maydella6b30bc2020-02-28 15:36:06 +0000558SRST
Peter Maydellff688cd2020-11-21 15:17:11 +0000559``print`` or ``p/``\ *fmt* *expr*
Peter Maydella6b30bc2020-02-28 15:36:06 +0000560 Print expression value. Only the *format* part of *fmt* is
561 used.
562ERST
Blue Swirl23130862009-06-06 08:22:04 +0000563
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300564 {
565 .name = "i",
566 .args_type = "fmt:/,addr:i,index:i.",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300567 .params = "/fmt addr",
568 .help = "I/O port read",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400569 .cmd = hmp_ioport_read,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300570 },
571
Peter Maydella6b30bc2020-02-28 15:36:06 +0000572SRST
573``i/``\ *fmt* *addr* [.\ *index*\ ]
574 Read I/O port.
575ERST
Blue Swirl23130862009-06-06 08:22:04 +0000576
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300577 {
578 .name = "o",
579 .args_type = "fmt:/,addr:i,val:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300580 .params = "/fmt addr value",
581 .help = "I/O port write",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400582 .cmd = hmp_ioport_write,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300583 },
584
Peter Maydella6b30bc2020-02-28 15:36:06 +0000585SRST
586``o/``\ *fmt* *addr* *val*
587 Write to I/O port.
588ERST
Blue Swirl23130862009-06-06 08:22:04 +0000589
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300590 {
591 .name = "sendkey",
Amos Kong2ef20c12012-08-31 10:56:22 +0800592 .args_type = "keys:s,hold-time:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300593 .params = "keys [hold_ms]",
594 .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400595 .cmd = hmp_sendkey,
Hani Benhabiles29136cd2014-05-07 23:41:27 +0100596 .command_completion = sendkey_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300597 },
598
Peter Maydella6b30bc2020-02-28 15:36:06 +0000599SRST
600``sendkey`` *keys*
601 Send *keys* to the guest. *keys* could be the name of the
602 key or the raw value in hexadecimal format. Use ``-`` to press
603 several keys simultaneously. Example::
604
605 sendkey ctrl-alt-f1
606
607 This command is useful to send keys that your graphical user interface
608 intercepts at low level, such as ``ctrl-alt-f1`` in X Window.
609ERST
Emilio G. Cotadd12e1b2018-08-15 16:00:03 -0400610 {
611 .name = "sync-profile",
612 .args_type = "op:s?",
613 .params = "[on|off|reset]",
614 .help = "enable, disable or reset synchronization profiling. "
615 "With no arguments, prints whether profiling is on or off.",
616 .cmd = hmp_sync_profile,
617 },
618
Peter Maydella6b30bc2020-02-28 15:36:06 +0000619SRST
620``sync-profile [on|off|reset]``
621 Enable, disable or reset synchronization profiling. With no arguments, prints
622 whether profiling is on or off.
623ERST
Blue Swirl23130862009-06-06 08:22:04 +0000624
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300625 {
626 .name = "system_reset",
627 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300628 .params = "",
629 .help = "reset the system",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400630 .cmd = hmp_system_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300631 },
632
Peter Maydella6b30bc2020-02-28 15:36:06 +0000633SRST
634``system_reset``
635 Reset the system.
636ERST
Blue Swirl23130862009-06-06 08:22:04 +0000637
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300638 {
639 .name = "system_powerdown",
640 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300641 .params = "",
642 .help = "send system power down event",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400643 .cmd = hmp_system_powerdown,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300644 },
645
Peter Maydella6b30bc2020-02-28 15:36:06 +0000646SRST
647``system_powerdown``
648 Power down the system (if supported).
649ERST
Blue Swirl23130862009-06-06 08:22:04 +0000650
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300651 {
652 .name = "sum",
653 .args_type = "start:i,size:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300654 .params = "addr size",
655 .help = "compute the checksum of a memory region",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400656 .cmd = hmp_sum,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300657 },
658
Peter Maydella6b30bc2020-02-28 15:36:06 +0000659SRST
660``sum`` *addr* *size*
661 Compute the checksum of a memory region.
662ERST
Blue Swirl23130862009-06-06 08:22:04 +0000663
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300664 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300665 .name = "device_add",
Markus Armbrusterc7e4e8c2010-02-10 20:47:28 +0100666 .args_type = "device:O",
667 .params = "driver[,prop=value][,...]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300668 .help = "add device, like -device on the command line",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400669 .cmd = hmp_device_add,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100670 .command_completion = device_add_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300671 },
672
Peter Maydella6b30bc2020-02-28 15:36:06 +0000673SRST
674``device_add`` *config*
675 Add device.
676ERST
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200677
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300678 {
679 .name = "device_del",
680 .args_type = "id:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300681 .params = "device",
682 .help = "remove device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400683 .cmd = hmp_device_del,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100684 .command_completion = device_del_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300685 },
686
Peter Maydella6b30bc2020-02-28 15:36:06 +0000687SRST
688``device_del`` *id*
689 Remove device *id*. *id* may be a short ID
690 or a QOM object path.
691ERST
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200692
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300693 {
694 .name = "cpu",
695 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300696 .params = "index",
697 .help = "set the default CPU",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400698 .cmd = hmp_cpu,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300699 },
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200700
Peter Maydella6b30bc2020-02-28 15:36:06 +0000701SRST
702``cpu`` *index*
703 Set the default CPU.
704ERST
Blue Swirl23130862009-06-06 08:22:04 +0000705
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300706 {
707 .name = "mouse_move",
708 .args_type = "dx_str:s,dy_str:s,dz_str:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300709 .params = "dx dy [dz]",
710 .help = "send mouse move events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400711 .cmd = hmp_mouse_move,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300712 },
713
Peter Maydella6b30bc2020-02-28 15:36:06 +0000714SRST
715``mouse_move`` *dx* *dy* [*dz*]
716 Move the active mouse to the specified coordinates *dx* *dy*
717 with optional scroll axis *dz*.
718ERST
Blue Swirl23130862009-06-06 08:22:04 +0000719
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300720 {
721 .name = "mouse_button",
722 .args_type = "button_state:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300723 .params = "state",
724 .help = "change mouse button state (1=L, 2=M, 4=R)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400725 .cmd = hmp_mouse_button,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300726 },
727
Peter Maydella6b30bc2020-02-28 15:36:06 +0000728SRST
729``mouse_button`` *val*
730 Change the active mouse button state *val* (1=L, 2=M, 4=R).
731ERST
Blue Swirl23130862009-06-06 08:22:04 +0000732
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300733 {
734 .name = "mouse_set",
735 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300736 .params = "index",
737 .help = "set which mouse device receives events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400738 .cmd = hmp_mouse_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300739 },
740
Peter Maydella6b30bc2020-02-28 15:36:06 +0000741SRST
742``mouse_set`` *index*
743 Set which mouse device receives events at given *index*, index
744 can be obtained with::
745
746 info mice
747
748ERST
Blue Swirl23130862009-06-06 08:22:04 +0000749
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300750 {
751 .name = "wavcapture",
Kővágó, Zoltánf0b9f362019-08-19 01:06:48 +0200752 .args_type = "path:F,audiodev:s,freq:i?,bits:i?,nchannels:i?",
753 .params = "path audiodev [frequency [bits [channels]]]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300754 .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400755 .cmd = hmp_wavcapture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300756 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000757SRST
758``wavcapture`` *filename* *audiodev* [*frequency* [*bits* [*channels*]]]
759 Capture audio into *filename* from *audiodev*, using sample rate
760 *frequency* bits per sample *bits* and number of channels
761 *channels*.
762
763 Defaults:
764
765 - Sample rate = 44100 Hz - CD quality
766 - Bits = 16
767 - Number of channels = 2 - Stereo
768ERST
Blue Swirl23130862009-06-06 08:22:04 +0000769
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300770 {
771 .name = "stopcapture",
772 .args_type = "n:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300773 .params = "capture index",
774 .help = "stop capture",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400775 .cmd = hmp_stopcapture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300776 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000777SRST
778``stopcapture`` *index*
779 Stop capture with a given *index*, index can be obtained with::
780
781 info capture
782
783ERST
Blue Swirl23130862009-06-06 08:22:04 +0000784
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'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400790 .cmd = hmp_memsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300791 },
792
Peter Maydella6b30bc2020-02-28 15:36:06 +0000793SRST
794``memsave`` *addr* *size* *file*
795 save to disk virtual memory dump starting at *addr* of size *size*.
796ERST
Blue Swirl23130862009-06-06 08:22:04 +0000797
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300798 {
799 .name = "pmemsave",
800 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300801 .params = "addr size file",
802 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400803 .cmd = hmp_pmemsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300804 },
805
Peter Maydella6b30bc2020-02-28 15:36:06 +0000806SRST
807``pmemsave`` *addr* *size* *file*
808 save to disk physical memory dump starting at *addr* of size *size*.
809ERST
Blue Swirl23130862009-06-06 08:22:04 +0000810
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300811 {
812 .name = "boot_set",
813 .args_type = "bootdevice:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300814 .params = "bootdevice",
815 .help = "define new values for the boot device list",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400816 .cmd = hmp_boot_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300817 },
818
Peter Maydella6b30bc2020-02-28 15:36:06 +0000819SRST
820``boot_set`` *bootdevicelist*
821 Define new values for the boot device list. Those values will override
822 the values specified on the command line through the ``-boot`` option.
823
824 The values that can be specified here depend on the machine type, but are
825 the same that can be specified in the ``-boot`` command line option.
826ERST
Blue Swirl23130862009-06-06 08:22:04 +0000827
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300828 {
829 .name = "nmi",
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -0300830 .args_type = "",
831 .params = "",
Alexey Kardashevskiy9cb805f2014-08-20 22:16:33 +1000832 .help = "inject an NMI",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400833 .cmd = hmp_nmi,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300834 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000835SRST
836``nmi`` *cpu*
837 Inject an NMI on the default CPU (x86/s390) or all CPUs (ppc64).
838ERST
Lei Li1f590cf2013-01-25 00:03:20 +0800839
840 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100841 .name = "ringbuf_write",
Lei Li1f590cf2013-01-25 00:03:20 +0800842 .args_type = "device:s,data:s",
843 .params = "device data",
Markus Armbruster3949e592013-02-06 21:27:24 +0100844 .help = "Write to a ring buffer character device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400845 .cmd = hmp_ringbuf_write,
Hani Benhabiles8e597772014-05-27 23:39:30 +0100846 .command_completion = ringbuf_write_completion,
Lei Li1f590cf2013-01-25 00:03:20 +0800847 },
848
Peter Maydella6b30bc2020-02-28 15:36:06 +0000849SRST
850``ringbuf_write`` *device* *data*
851 Write *data* to ring buffer character device *device*.
852 *data* must be a UTF-8 string.
853ERST
Blue Swirl23130862009-06-06 08:22:04 +0000854
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300855 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100856 .name = "ringbuf_read",
Lei Li49b6d722013-01-25 00:03:21 +0800857 .args_type = "device:s,size:i",
858 .params = "device size",
Markus Armbruster3949e592013-02-06 21:27:24 +0100859 .help = "Read from a ring buffer character device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400860 .cmd = hmp_ringbuf_read,
Hani Benhabiles8e597772014-05-27 23:39:30 +0100861 .command_completion = ringbuf_write_completion,
Lei Li49b6d722013-01-25 00:03:21 +0800862 },
863
Peter Maydella6b30bc2020-02-28 15:36:06 +0000864SRST
865``ringbuf_read`` *device*
866 Read and print up to *size* bytes from ring buffer character
867 device *device*.
868 Certain non-printable characters are printed ``\uXXXX``, where ``XXXX`` is the
869 character code in hexadecimal. Character ``\`` is printed ``\\``.
870 Bug: can screw up when the buffer contains invalid UTF-8 sequences,
871 NUL characters, after the ring buffer lost data, and when reading
872 stops because the size limit is reached.
873ERST
Lei Li49b6d722013-01-25 00:03:21 +0800874
875 {
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000876 .name = "announce_self",
Dr. David Alan Gilbertc6644542019-06-20 19:47:05 +0100877 .args_type = "interfaces:s?,id:s?",
878 .params = "[interfaces] [id]",
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000879 .help = "Trigger GARP/RARP announcements",
880 .cmd = hmp_announce_self,
881 },
882
Peter Maydella6b30bc2020-02-28 15:36:06 +0000883SRST
884``announce_self``
885 Trigger a round of GARP/RARP broadcasts; this is useful for explicitly
886 updating the network infrastructure after a reconfiguration or some forms
887 of migration. The timings of the round are set by the migration announce
888 parameters. An optional comma separated *interfaces* list restricts the
889 announce to the named set of interfaces. An optional *id* can be used to
890 start a separate announce timer and to change the parameters of it later.
891ERST
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000892
893 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300894 .name = "migrate",
Peter Xu7a4da282018-05-02 18:47:23 +0800895 .args_type = "detach:-d,blk:-b,inc:-i,resume:-r,uri:s",
896 .params = "[-d] [-b] [-i] [-r] uri",
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200897 .help = "migrate to URI (using -d to not wait for completion)"
898 "\n\t\t\t -b for migration without shared storage with"
899 " full copy of disk\n\t\t\t -i for migration without "
900 "shared storage with incremental copy of disk "
Peter Xu7a4da282018-05-02 18:47:23 +0800901 "(base image shared between src and destination)"
902 "\n\t\t\t -r to resume a paused migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400903 .cmd = hmp_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300904 },
905
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200906
Peter Maydella6b30bc2020-02-28 15:36:06 +0000907SRST
908``migrate [-d] [-b] [-i]`` *uri*
909 Migrate to *uri* (using -d to not wait for completion).
910
911 ``-b``
912 for migration with full copy of disk
913 ``-i``
914 for migration with incremental copy of disk (base image is shared)
915ERST
Blue Swirl23130862009-06-06 08:22:04 +0000916
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300917 {
918 .name = "migrate_cancel",
919 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300920 .params = "",
921 .help = "cancel the current VM migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400922 .cmd = hmp_migrate_cancel,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300923 },
924
Peter Maydella6b30bc2020-02-28 15:36:06 +0000925SRST
926``migrate_cancel``
927 Cancel the current VM migration.
928ERST
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300929
Dr. David Alan Gilbert94ae12c2017-10-20 10:05:54 +0100930 {
931 .name = "migrate_continue",
932 .args_type = "state:s",
933 .params = "state",
934 .help = "Continue migration from the given paused state",
935 .cmd = hmp_migrate_continue,
936 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000937SRST
938``migrate_continue`` *state*
939 Continue migration from the paused state *state*
940ERST
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300941
942 {
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000943 .name = "migrate_incoming",
944 .args_type = "uri:s",
945 .params = "uri",
946 .help = "Continue an incoming migration from an -incoming defer",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400947 .cmd = hmp_migrate_incoming,
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000948 },
949
Peter Maydella6b30bc2020-02-28 15:36:06 +0000950SRST
951``migrate_incoming`` *uri*
952 Continue an incoming migration using the *uri* (that has the same syntax
953 as the ``-incoming`` option).
954ERST
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000955
Peter Xu3b563c42018-05-02 18:47:37 +0800956 {
957 .name = "migrate_recover",
958 .args_type = "uri:s",
959 .params = "uri",
960 .help = "Continue a paused incoming postcopy migration",
961 .cmd = hmp_migrate_recover,
962 },
963
Peter Maydella6b30bc2020-02-28 15:36:06 +0000964SRST
965``migrate_recover`` *uri*
966 Continue a paused incoming postcopy migration using the *uri*.
967ERST
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000968
969 {
Peter Xud37297d2018-05-02 18:47:40 +0800970 .name = "migrate_pause",
971 .args_type = "",
972 .params = "",
973 .help = "Pause an ongoing migration (postcopy-only)",
974 .cmd = hmp_migrate_pause,
975 },
976
Peter Maydella6b30bc2020-02-28 15:36:06 +0000977SRST
978``migrate_pause``
979 Pause an ongoing migration. Currently it only supports postcopy.
980ERST
Peter Xud37297d2018-05-02 18:47:40 +0800981
982 {
Orit Wasserman00458432012-08-06 21:42:48 +0300983 .name = "migrate_set_capability",
984 .args_type = "capability:s,state:b",
985 .params = "capability state",
986 .help = "Enable/Disable the usage of a capability for migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400987 .cmd = hmp_migrate_set_capability,
Hani Benhabilesc68a0402014-05-27 23:39:32 +0100988 .command_completion = migrate_set_capability_completion,
Orit Wasserman00458432012-08-06 21:42:48 +0300989 },
990
Peter Maydella6b30bc2020-02-28 15:36:06 +0000991SRST
992``migrate_set_capability`` *capability* *state*
993 Enable/Disable the usage of a capability *capability* for migration.
994ERST
Orit Wasserman00458432012-08-06 21:42:48 +0300995
996 {
Liang Li50e9a622015-03-23 16:32:29 +0800997 .name = "migrate_set_parameter",
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +0100998 .args_type = "parameter:s,value:s",
Liang Li50e9a622015-03-23 16:32:29 +0800999 .params = "parameter value",
1000 .help = "Set the parameter for migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001001 .cmd = hmp_migrate_set_parameter,
Liang Li50e9a622015-03-23 16:32:29 +08001002 .command_completion = migrate_set_parameter_completion,
1003 },
1004
Peter Maydella6b30bc2020-02-28 15:36:06 +00001005SRST
1006``migrate_set_parameter`` *parameter* *value*
1007 Set the parameter *parameter* for migration.
1008ERST
Liang Li50e9a622015-03-23 16:32:29 +08001009
1010 {
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001011 .name = "migrate_start_postcopy",
1012 .args_type = "",
1013 .params = "",
Dr. David Alan Gilberta54d3402015-11-12 11:34:44 +00001014 .help = "Followup to a migration command to switch the migration"
Dr. David Alan Gilbert32c3db52016-03-11 09:53:36 +00001015 " to postcopy mode. The postcopy-ram capability must "
Greg Kurzc2eb7f22018-02-07 16:41:43 +01001016 "be set on both source and destination before the "
1017 "original migration command .",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001018 .cmd = hmp_migrate_start_postcopy,
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001019 },
1020
Peter Maydella6b30bc2020-02-28 15:36:06 +00001021SRST
1022``migrate_start_postcopy``
1023 Switch in-progress migration to postcopy mode. Ignored after the end of
1024 migration (or once already in postcopy).
1025ERST
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001026
1027 {
zhanghailiangd89e6662016-10-27 14:43:03 +08001028 .name = "x_colo_lost_heartbeat",
1029 .args_type = "",
1030 .params = "",
1031 .help = "Tell COLO that heartbeat is lost,\n\t\t\t"
1032 "a failover or takeover is needed.",
1033 .cmd = hmp_x_colo_lost_heartbeat,
1034 },
1035
Peter Maydella6b30bc2020-02-28 15:36:06 +00001036SRST
1037``x_colo_lost_heartbeat``
1038 Tell COLO that heartbeat is lost, a failover or takeover is needed.
1039ERST
zhanghailiangd89e6662016-10-27 14:43:03 +08001040
1041 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001042 .name = "client_migrate_info",
1043 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
1044 .params = "protocol hostname port tls-port cert-subject",
Markus Armbruster13cadef2015-03-05 19:16:58 +01001045 .help = "set migration information for remote display",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001046 .cmd = hmp_client_migrate_info,
Jes Sorensenf8882562010-12-16 13:52:16 +01001047 },
1048
Peter Maydella6b30bc2020-02-28 15:36:06 +00001049SRST
1050``client_migrate_info`` *protocol* *hostname* *port* *tls-port* *cert-subject*
1051 Set migration information for remote display. This makes the server
1052 ask the client to automatically reconnect using the new parameters
1053 once migration finished successfully. Only implemented for SPICE.
1054ERST
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001055
Wen Congyang783e9b42012-05-07 12:10:47 +08001056 {
1057 .name = "dump-guest-memory",
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001058 .args_type = "paging:-p,detach:-d,windmp:-w,zlib:-z,lzo:-l,snappy:-s,filename:F,begin:l?,length:l?",
1059 .params = "[-p] [-d] [-z|-l|-s|-w] filename [begin length]",
Qiao Nuohanc20499d2014-04-17 16:15:06 +08001060 .help = "dump guest memory into file 'filename'.\n\t\t\t"
1061 "-p: do paging to get guest's memory mapping.\n\t\t\t"
Peter Xu228de9c2016-02-18 13:16:47 +08001062 "-d: return immediately (do not wait for completion).\n\t\t\t"
Qiao Nuohan1b7a0f72014-04-17 16:15:07 +08001063 "-z: dump in kdump-compressed format, with zlib compression.\n\t\t\t"
1064 "-l: dump in kdump-compressed format, with lzo compression.\n\t\t\t"
1065 "-s: dump in kdump-compressed format, with snappy compression.\n\t\t\t"
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001066 "-w: dump in Windows crashdump format (can be used instead of ELF-dump converting),\n\t\t\t"
1067 " for Windows x64 guests with vmcoreinfo driver only.\n\t\t\t"
Qiao Nuohanc20499d2014-04-17 16:15:06 +08001068 "begin: the starting physical address.\n\t\t\t"
1069 "length: the memory size, in bytes.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001070 .cmd = hmp_dump_guest_memory,
Wen Congyang783e9b42012-05-07 12:10:47 +08001071 },
1072
Peter Maydella6b30bc2020-02-28 15:36:06 +00001073SRST
1074``dump-guest-memory [-p]`` *filename* *begin* *length*
1075 \
1076``dump-guest-memory [-z|-l|-s|-w]`` *filename*
1077 Dump guest memory to *protocol*. The file can be processed with crash or
1078 gdb. Without ``-z|-l|-s|-w``, the dump format is ELF.
1079
1080 ``-p``
1081 do paging to get guest's memory mapping.
1082 ``-z``
1083 dump in kdump-compressed format, with zlib compression.
1084 ``-l``
1085 dump in kdump-compressed format, with lzo compression.
1086 ``-s``
1087 dump in kdump-compressed format, with snappy compression.
1088 ``-w``
1089 dump in Windows crashdump format (can be used instead of ELF-dump converting),
1090 for Windows x64 guests with vmcoreinfo driver only
1091 *filename*
1092 dump file name.
1093 *begin*
1094 the starting physical address. It's optional, and should be
1095 specified together with *length*.
1096 *length*
1097 the memory size, in bytes. It's optional, and should be specified
1098 together with *begin*.
1099
1100ERST
Wen Congyang783e9b42012-05-07 12:10:47 +08001101
Jason J. Hernea4538a52015-06-26 14:07:21 -04001102#if defined(TARGET_S390X)
1103 {
1104 .name = "dump-skeys",
1105 .args_type = "filename:F",
1106 .params = "",
1107 .help = "Save guest storage keys into file 'filename'.\n",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001108 .cmd = hmp_dump_skeys,
Jason J. Hernea4538a52015-06-26 14:07:21 -04001109 },
1110#endif
1111
Peter Maydella6b30bc2020-02-28 15:36:06 +00001112SRST
1113``dump-skeys`` *filename*
1114 Save guest storage keys to a file.
1115ERST
Jason J. Hernea4538a52015-06-26 14:07:21 -04001116
Claudio Imbrendaf860d492016-08-15 18:44:04 +02001117#if defined(TARGET_S390X)
1118 {
1119 .name = "migration_mode",
1120 .args_type = "mode:i",
1121 .params = "mode",
1122 .help = "Enables or disables migration mode\n",
1123 .cmd = hmp_migrationmode,
1124 },
1125#endif
1126
Peter Maydella6b30bc2020-02-28 15:36:06 +00001127SRST
1128``migration_mode`` *mode*
1129 Enables or disables migration mode.
1130ERST
Claudio Imbrendaf860d492016-08-15 18:44:04 +02001131
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001132 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001133 .name = "snapshot_blkdev",
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001134 .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?",
1135 .params = "[-n] device [new-image-file] [format]",
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001136 .help = "initiates a live snapshot\n\t\t\t"
1137 "of device. If a new image file is specified, the\n\t\t\t"
1138 "new image file will become the new root image.\n\t\t\t"
1139 "If format is specified, the snapshot file will\n\t\t\t"
Wenchao Xia775ca882013-09-11 14:04:37 +08001140 "be created in that format.\n\t\t\t"
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001141 "The default format is qcow2. The -n flag requests QEMU\n\t\t\t"
1142 "to reuse the image found in new-image-file, instead of\n\t\t\t"
1143 "recreating it from scratch.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001144 .cmd = hmp_snapshot_blkdev,
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001145 },
1146
Peter Maydella6b30bc2020-02-28 15:36:06 +00001147SRST
1148``snapshot_blkdev``
1149 Snapshot device, using snapshot file as target if provided
1150ERST
Jes Sorensenf8882562010-12-16 13:52:16 +01001151
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001152 {
Wenchao Xia775ca882013-09-11 14:04:37 +08001153 .name = "snapshot_blkdev_internal",
1154 .args_type = "device:B,name:s",
1155 .params = "device name",
1156 .help = "take an internal snapshot of device.\n\t\t\t"
1157 "The format of the image used by device must\n\t\t\t"
1158 "support it, such as qcow2.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001159 .cmd = hmp_snapshot_blkdev_internal,
Wenchao Xia775ca882013-09-11 14:04:37 +08001160 },
1161
Peter Maydella6b30bc2020-02-28 15:36:06 +00001162SRST
1163``snapshot_blkdev_internal``
1164 Take an internal snapshot on device if it support
1165ERST
Wenchao Xia775ca882013-09-11 14:04:37 +08001166
1167 {
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001168 .name = "snapshot_delete_blkdev_internal",
1169 .args_type = "device:B,name:s,id:s?",
1170 .params = "device name [id]",
1171 .help = "delete an internal snapshot of device.\n\t\t\t"
1172 "If id is specified, qemu will try delete\n\t\t\t"
1173 "the snapshot matching both id and name.\n\t\t\t"
1174 "The format of the image used by device must\n\t\t\t"
1175 "support it, such as qcow2.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001176 .cmd = hmp_snapshot_delete_blkdev_internal,
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001177 },
1178
Peter Maydella6b30bc2020-02-28 15:36:06 +00001179SRST
1180``snapshot_delete_blkdev_internal``
1181 Delete an internal snapshot on device if it support
1182ERST
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001183
1184 {
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001185 .name = "drive_mirror",
1186 .args_type = "reuse:-n,full:-f,device:B,target:s,format:s?",
1187 .params = "[-n] [-f] device target [format]",
1188 .help = "initiates live storage\n\t\t\t"
1189 "migration for a device. The device's contents are\n\t\t\t"
1190 "copied to the new image file, including data that\n\t\t\t"
1191 "is written after the command is started.\n\t\t\t"
1192 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1193 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1194 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
1195 "so that the result does not need a backing file.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001196 .cmd = hmp_drive_mirror,
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001197 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001198SRST
1199``drive_mirror``
1200 Start mirroring a block device's writes to a new destination,
1201 using the specified target.
1202ERST
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001203
1204 {
Stefan Hajnoczide909302013-06-26 14:11:58 +02001205 .name = "drive_backup",
Pavel Butsykin13b94142016-07-22 11:17:52 +03001206 .args_type = "reuse:-n,full:-f,compress:-c,device:B,target:s,format:s?",
1207 .params = "[-n] [-f] [-c] device target [format]",
Stefan Hajnoczide909302013-06-26 14:11:58 +02001208 .help = "initiates a point-in-time\n\t\t\t"
1209 "copy for a device. The device's contents are\n\t\t\t"
1210 "copied to the new image file, excluding data that\n\t\t\t"
1211 "is written after the command is started.\n\t\t\t"
1212 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1213 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1214 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
Pavel Butsykin13b94142016-07-22 11:17:52 +03001215 "so that the result does not need a backing file.\n\t\t\t"
1216 "The -c flag requests QEMU to compress backup data\n\t\t\t"
1217 "(if the target format supports it).\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001218 .cmd = hmp_drive_backup,
Stefan Hajnoczide909302013-06-26 14:11:58 +02001219 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001220SRST
1221``drive_backup``
zhaolichange3a6e0d2020-09-17 15:50:20 +08001222 Start a point-in-time copy of a block device to a specified target.
Peter Maydella6b30bc2020-02-28 15:36:06 +00001223ERST
Stefan Hajnoczide909302013-06-26 14:11:58 +02001224
1225 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001226 .name = "drive_add",
Kevin Wolfabb21ac2016-02-23 17:33:24 +01001227 .args_type = "node:-n,pci_addr:s,opts:s",
1228 .params = "[-n] [[<domain>:]<bus>:]<slot>\n"
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001229 "[file=file][,if=type][,bus=n]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001230 "[,unit=m][,media=d][,index=i]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001231 "[,snapshot=on|off][,cache=on|off]\n"
1232 "[,readonly=on|off][,copy-on-read=on|off]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001233 .help = "add drive to PCI storage controller",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001234 .cmd = hmp_drive_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001235 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001236
Peter Maydella6b30bc2020-02-28 15:36:06 +00001237SRST
1238``drive_add``
1239 Add drive to PCI storage controller.
1240ERST
Blue Swirl23130862009-06-06 08:22:04 +00001241
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001242 {
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001243 .name = "pcie_aer_inject_error",
1244 .args_type = "advisory_non_fatal:-a,correctable:-c,"
1245 "id:s,error_status:s,"
1246 "header0:i?,header1:i?,header2:i?,header3:i?,"
1247 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
1248 .params = "[-a] [-c] id "
1249 "<error_status> [<tlp header> [<tlp header prefix>]]",
1250 .help = "inject pcie aer error\n\t\t\t"
1251 " -a for advisory non fatal error\n\t\t\t"
1252 " -c for correctable error\n\t\t\t"
1253 "<id> = qdev device id\n\t\t\t"
1254 "<error_status> = error string or 32bit\n\t\t\t"
Zenghui Yu8ad4e452020-12-04 11:09:53 +08001255 "<tlp header> = 32bit x 4\n\t\t\t"
1256 "<tlp header prefix> = 32bit x 4",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001257 .cmd = hmp_pcie_aer_inject_error,
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001258 },
1259
Peter Maydella6b30bc2020-02-28 15:36:06 +00001260SRST
1261``pcie_aer_inject_error``
1262 Inject PCIe AER error
1263ERST
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001264
1265 {
Markus Armbrusterae82d322010-03-25 17:22:40 +01001266 .name = "netdev_add",
1267 .args_type = "netdev:O",
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03001268 .params = "[user|tap|socket|vde|bridge|hubport|netmap|vhost-user],id=str[,prop=value][,...]",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001269 .help = "add host network device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001270 .cmd = hmp_netdev_add,
Hani Benhabilesb162b492014-05-07 23:41:31 +01001271 .command_completion = netdev_add_completion,
Paolo Bonzini48f596c2021-05-11 11:39:55 -04001272 .flags = "p",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001273 },
1274
Peter Maydella6b30bc2020-02-28 15:36:06 +00001275SRST
1276``netdev_add``
1277 Add host network device.
1278ERST
Markus Armbrusterae82d322010-03-25 17:22:40 +01001279
1280 {
1281 .name = "netdev_del",
1282 .args_type = "id:s",
1283 .params = "id",
1284 .help = "remove host network device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001285 .cmd = hmp_netdev_del,
Hani Benhabiles11b389f2014-05-07 23:41:32 +01001286 .command_completion = netdev_del_completion,
Paolo Bonzini48f596c2021-05-11 11:39:55 -04001287 .flags = "p",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001288 },
1289
Peter Maydella6b30bc2020-02-28 15:36:06 +00001290SRST
1291``netdev_del``
1292 Remove host network device.
1293ERST
Markus Armbrusterae82d322010-03-25 17:22:40 +01001294
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001295 {
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001296 .name = "object_add",
Kevin Wolfda0a9322021-02-17 15:27:54 +01001297 .args_type = "object:S",
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001298 .params = "[qom-type=]type,id=str[,prop=value][,...]",
1299 .help = "create QOM object",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001300 .cmd = hmp_object_add,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001301 .command_completion = object_add_completion,
Paolo Bonzini9e330132020-11-03 04:39:02 -05001302 .flags = "p",
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001303 },
1304
Peter Maydella6b30bc2020-02-28 15:36:06 +00001305SRST
1306``object_add``
1307 Create QOM object.
1308ERST
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001309
1310 {
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001311 .name = "object_del",
1312 .args_type = "id:s",
1313 .params = "id",
1314 .help = "destroy QOM object",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001315 .cmd = hmp_object_del,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001316 .command_completion = object_del_completion,
Paolo Bonzini9e330132020-11-03 04:39:02 -05001317 .flags = "p",
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001318 },
1319
Peter Maydella6b30bc2020-02-28 15:36:06 +00001320SRST
1321``object_del``
1322 Destroy QOM object.
1323ERST
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001324
Blue Swirl23130862009-06-06 08:22:04 +00001325#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001326 {
1327 .name = "hostfwd_add",
Thomas Huthb4983c52019-12-05 11:41:09 +01001328 .args_type = "arg1:s,arg2:s?",
1329 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001330 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001331 .cmd = hmp_hostfwd_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001332 },
Markus Armbruster21413d62010-05-04 13:20:30 +02001333#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001334SRST
1335``hostfwd_add``
1336 Redirect TCP or UDP connections from host to guest (requires -net user).
1337ERST
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001338
Markus Armbruster21413d62010-05-04 13:20:30 +02001339#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001340 {
1341 .name = "hostfwd_remove",
Thomas Huthb4983c52019-12-05 11:41:09 +01001342 .args_type = "arg1:s,arg2:s?",
1343 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001344 .help = "remove host-to-guest TCP or UDP redirection",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001345 .cmd = hmp_hostfwd_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001346 },
1347
Blue Swirl23130862009-06-06 08:22:04 +00001348#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001349SRST
1350``hostfwd_remove``
1351 Remove host-to-guest TCP or UDP redirection.
1352ERST
Blue Swirl23130862009-06-06 08:22:04 +00001353
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001354 {
1355 .name = "balloon",
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02001356 .args_type = "value:M",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001357 .params = "target",
Riccardo Magliocchetti3c056132010-05-19 18:49:28 +02001358 .help = "request VM to change its memory allocation (in MB)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001359 .cmd = hmp_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001360 },
1361
Peter Maydella6b30bc2020-02-28 15:36:06 +00001362SRST
1363``balloon`` *value*
1364 Request VM to change its memory allocation to *value* (in MB).
1365ERST
Blue Swirl23130862009-06-06 08:22:04 +00001366
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001367 {
1368 .name = "set_link",
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001369 .args_type = "name:s,up:b",
1370 .params = "name on|off",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001371 .help = "change the link status of a network adapter",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001372 .cmd = hmp_set_link,
Hani Benhabiles40d19392014-05-07 23:41:30 +01001373 .command_completion = set_link_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001374 },
1375
Peter Maydella6b30bc2020-02-28 15:36:06 +00001376SRST
1377``set_link`` *name* ``[on|off]``
1378 Switch link *name* on (i.e. up) or off (i.e. down).
1379ERST
Blue Swirl23130862009-06-06 08:22:04 +00001380
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001381 {
1382 .name = "watchdog_action",
1383 .args_type = "action:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001384 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1385 .help = "change watchdog action",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001386 .cmd = hmp_watchdog_action,
Hani Benhabilesd0ece342014-05-27 23:39:31 +01001387 .command_completion = watchdog_action_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001388 },
1389
Peter Maydella6b30bc2020-02-28 15:36:06 +00001390SRST
1391``watchdog_action``
1392 Change watchdog action.
1393ERST
Blue Swirl23130862009-06-06 08:22:04 +00001394
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001395 {
Paolo Bonzini40577252012-08-23 11:53:04 +02001396 .name = "nbd_server_start",
1397 .args_type = "all:-a,writable:-w,uri:s",
1398 .params = "nbd_server_start [-a] [-w] host:port",
1399 .help = "serve block devices on the given host and port",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001400 .cmd = hmp_nbd_server_start,
Paolo Bonzini40577252012-08-23 11:53:04 +02001401 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001402SRST
1403``nbd_server_start`` *host*:*port*
1404 Start an NBD server on the given host and/or port. If the ``-a``
1405 option is included, all of the virtual machine's block devices that
1406 have an inserted media on them are automatically exported; in this case,
1407 the ``-w`` option makes the devices writable too.
1408ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001409
1410 {
1411 .name = "nbd_server_add",
Eric Blakedba49322018-01-09 13:28:02 -06001412 .args_type = "writable:-w,device:B,name:s?",
1413 .params = "nbd_server_add [-w] device [name]",
Paolo Bonzini40577252012-08-23 11:53:04 +02001414 .help = "export a block device via NBD",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001415 .cmd = hmp_nbd_server_add,
Paolo Bonzini40577252012-08-23 11:53:04 +02001416 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001417SRST
1418``nbd_server_add`` *device* [ *name* ]
1419 Export a block device through QEMU's NBD server, which must be started
1420 beforehand with ``nbd_server_start``. The ``-w`` option makes the
1421 exported device writable too. The export name is controlled by *name*,
1422 defaulting to *device*.
1423ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001424
1425 {
Eric Blake08fb10a2018-01-25 08:45:57 -06001426 .name = "nbd_server_remove",
1427 .args_type = "force:-f,name:s",
1428 .params = "nbd_server_remove [-f] name",
1429 .help = "remove an export previously exposed via NBD",
1430 .cmd = hmp_nbd_server_remove,
1431 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001432SRST
1433``nbd_server_remove [-f]`` *name*
1434 Stop exporting a block device through QEMU's NBD server, which was
1435 previously started with ``nbd_server_add``. The ``-f``
1436 option forces the server to drop the export immediately even if
1437 clients are connected; otherwise the command fails unless there are no
1438 clients.
1439ERST
Eric Blake08fb10a2018-01-25 08:45:57 -06001440
1441 {
Paolo Bonzini40577252012-08-23 11:53:04 +02001442 .name = "nbd_server_stop",
1443 .args_type = "",
1444 .params = "nbd_server_stop",
1445 .help = "stop serving block devices using the NBD protocol",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001446 .cmd = hmp_nbd_server_stop,
Paolo Bonzini40577252012-08-23 11:53:04 +02001447 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001448SRST
1449``nbd_server_stop``
1450 Stop the QEMU embedded NBD server.
1451ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001452
1453
Huang Ying79c4f6b2009-06-23 10:05:14 +08001454#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001455
1456 {
1457 .name = "mce",
Jin Dongming31ce5e02010-12-10 17:21:02 +09001458 .args_type = "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1459 .params = "[-b] cpu bank status mcgstatus addr misc",
1460 .help = "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001461 .cmd = hmp_mce,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001462 },
1463
Huang Ying79c4f6b2009-06-23 10:05:14 +08001464#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001465SRST
1466``mce`` *cpu* *bank* *status* *mcgstatus* *addr* *misc*
1467 Inject an MCE on the given CPU (x86 only).
1468ERST
Huang Ying79c4f6b2009-06-23 10:05:14 +08001469
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001470 {
1471 .name = "getfd",
1472 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001473 .params = "getfd name",
1474 .help = "receive a file descriptor via SCM rights and assign it a name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001475 .cmd = hmp_getfd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001476 },
1477
Peter Maydella6b30bc2020-02-28 15:36:06 +00001478SRST
1479``getfd`` *fdname*
1480 If a file descriptor is passed alongside this command using the SCM_RIGHTS
1481 mechanism on unix sockets, it is stored using the name *fdname* for
1482 later use by other monitor commands.
1483ERST
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001484
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001485 {
1486 .name = "closefd",
1487 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001488 .params = "closefd name",
1489 .help = "close a file descriptor previously passed via SCM rights",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001490 .cmd = hmp_closefd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001491 },
1492
Peter Maydella6b30bc2020-02-28 15:36:06 +00001493SRST
1494``closefd`` *fdname*
1495 Close the file descriptor previously assigned to *fdname* using the
1496 ``getfd`` command. This is only needed if the file descriptor was never
1497 used by another monitor command.
1498ERST
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001499
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001500 {
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001501 .name = "block_set_io_throttle",
1502 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1503 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
1504 .help = "change I/O throttle limits for a block drive",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001505 .cmd = hmp_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001506 },
1507
Peter Maydella6b30bc2020-02-28 15:36:06 +00001508SRST
1509``block_set_io_throttle`` *device* *bps* *bps_rd* *bps_wr* *iops* *iops_rd* *iops_wr*
1510 Change I/O throttle limits for a block drive to
1511 *bps* *bps_rd* *bps_wr* *iops* *iops_rd* *iops_wr*.
1512 *device* can be a block device name, a qdev ID or a QOM path.
1513ERST
Jan Kiszkab40292e2010-05-31 14:43:31 -03001514
Jan Kiszka33572ec2010-05-31 14:43:30 -03001515 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001516 .name = "set_password",
1517 .args_type = "protocol:s,password:s,connected:s?",
1518 .params = "protocol password action-if-connected",
1519 .help = "set spice/vnc password",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001520 .cmd = hmp_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001521 },
1522
Peter Maydella6b30bc2020-02-28 15:36:06 +00001523SRST
1524``set_password [ vnc | spice ] password [ action-if-connected ]``
Markus Armbruster89825522021-09-09 10:12:19 +02001525 Change spice/vnc password. *action-if-connected* specifies what
1526 should happen in case a connection is established: *fail* makes the
1527 password change fail. *disconnect* changes the password and
1528 disconnects the client. *keep* changes the password and keeps the
1529 connection up. *keep* is the default.
Peter Maydella6b30bc2020-02-28 15:36:06 +00001530ERST
Gerd Hoffmann75721502010-10-07 12:22:54 +02001531
1532 {
1533 .name = "expire_password",
1534 .args_type = "protocol:s,time:s",
1535 .params = "protocol time",
1536 .help = "set spice/vnc password expire-time",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001537 .cmd = hmp_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001538 },
1539
Peter Maydella6b30bc2020-02-28 15:36:06 +00001540SRST
1541``expire_password [ vnc | spice ]`` *expire-time*
1542 Specify when a password for spice/vnc becomes
1543 invalid. *expire-time* accepts:
1544
1545 ``now``
1546 Invalidate password instantly.
1547 ``never``
1548 Password stays valid forever.
1549 ``+``\ *nsec*
1550 Password stays valid for *nsec* seconds starting now.
1551 *nsec*
1552 Password is invalidated at the given time. *nsec* are the seconds
1553 passed since 1970, i.e. unix epoch.
1554
1555ERST
Gerd Hoffmann75721502010-10-07 12:22:54 +02001556
Gerd Hoffmann46920822013-02-28 08:46:10 +01001557 {
1558 .name = "chardev-add",
1559 .args_type = "args:s",
1560 .params = "args",
1561 .help = "add chardev",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001562 .cmd = hmp_chardev_add,
Hani Benhabiles13e315d2014-05-07 23:41:29 +01001563 .command_completion = chardev_add_completion,
Gerd Hoffmann46920822013-02-28 08:46:10 +01001564 },
1565
Peter Maydella6b30bc2020-02-28 15:36:06 +00001566SRST
1567``chardev-add`` *args*
1568 chardev-add accepts the same parameters as the -chardev command line switch.
1569ERST
Anton Nefedov75b60162017-07-06 15:08:57 +03001570
1571 {
1572 .name = "chardev-change",
1573 .args_type = "id:s,args:s",
1574 .params = "id args",
1575 .help = "change chardev",
1576 .cmd = hmp_chardev_change,
1577 },
1578
Peter Maydella6b30bc2020-02-28 15:36:06 +00001579SRST
1580``chardev-change`` *args*
1581 chardev-change accepts existing chardev *id* and then the same arguments
1582 as the -chardev command line switch (except for "id").
1583ERST
Gerd Hoffmann46920822013-02-28 08:46:10 +01001584
1585 {
1586 .name = "chardev-remove",
1587 .args_type = "id:s",
1588 .params = "id",
1589 .help = "remove chardev",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001590 .cmd = hmp_chardev_remove,
Hani Benhabiles6297d9a2014-05-07 23:41:28 +01001591 .command_completion = chardev_remove_completion,
Gerd Hoffmann46920822013-02-28 08:46:10 +01001592 },
1593
Peter Maydella6b30bc2020-02-28 15:36:06 +00001594SRST
1595``chardev-remove`` *id*
1596 Removes the chardev *id*.
1597ERST
Gerd Hoffmannf1088902012-12-19 10:33:40 +01001598
1599 {
Stefan Fritschbd1d5ad2017-06-11 09:48:17 +02001600 .name = "chardev-send-break",
1601 .args_type = "id:s",
1602 .params = "id",
1603 .help = "send a break on chardev",
1604 .cmd = hmp_chardev_send_break,
1605 .command_completion = chardev_remove_completion,
1606 },
1607
Peter Maydella6b30bc2020-02-28 15:36:06 +00001608SRST
1609``chardev-send-break`` *id*
1610 Send a break on the chardev *id*.
1611ERST
Stefan Fritschbd1d5ad2017-06-11 09:48:17 +02001612
1613 {
Kevin Wolf587da2c2013-06-05 14:19:41 +02001614 .name = "qemu-io",
Kevin Wolf89b6fc42019-12-17 15:13:34 +01001615 .args_type = "qdev:-d,device:B,command:s",
1616 .params = "[-d] [device] \"[command]\"",
1617 .help = "run a qemu-io command on a block device\n\t\t\t"
1618 "-d: [device] is a device ID rather than a "
1619 "drive ID or node name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001620 .cmd = hmp_qemu_io,
Kevin Wolf587da2c2013-06-05 14:19:41 +02001621 },
1622
Peter Maydella6b30bc2020-02-28 15:36:06 +00001623SRST
1624``qemu-io`` *device* *command*
1625 Executes a qemu-io command on the given block device.
1626ERST
Kevin Wolf587da2c2013-06-05 14:19:41 +02001627
1628 {
Andreas Färber89d7fa92014-05-07 18:08:29 +02001629 .name = "qom-list",
1630 .args_type = "path:s?",
1631 .params = "path",
1632 .help = "list QOM properties",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001633 .cmd = hmp_qom_list,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001634 .flags = "p",
Andreas Färber89d7fa92014-05-07 18:08:29 +02001635 },
1636
Peter Maydella6b30bc2020-02-28 15:36:06 +00001637SRST
1638``qom-list`` [*path*]
1639 Print QOM properties of object at location *path*
1640ERST
Andreas Färber89d7fa92014-05-07 18:08:29 +02001641
1642 {
Dr. David Alan Gilbert89cf4fe2020-05-20 16:11:07 +01001643 .name = "qom-get",
1644 .args_type = "path:s,property:s",
1645 .params = "path property",
1646 .help = "print QOM property",
1647 .cmd = hmp_qom_get,
1648 .flags = "p",
1649 },
1650
1651SRST
1652``qom-get`` *path* *property*
1653 Print QOM property *property* of object at location *path*
1654ERST
1655
1656 {
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001657 .name = "qom-set",
David Hildenbrand2d9e3dd2020-06-10 09:51:53 +02001658 .args_type = "json:-j,path:s,property:s,value:S",
1659 .params = "[-j] path property value",
1660 .help = "set QOM property.\n\t\t\t"
1661 "-j: the value is specified in json format.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001662 .cmd = hmp_qom_set,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001663 .flags = "p",
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001664 },
1665
Peter Maydella6b30bc2020-02-28 15:36:06 +00001666SRST
1667``qom-set`` *path* *property* *value*
1668 Set QOM property *property* of object at location *path* to value *value*
1669ERST
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001670
1671 {
Pavel Dovgalyuke7510672020-10-03 20:13:26 +03001672 .name = "replay_break",
Alex Bennéeae49ce02021-05-20 18:43:01 +01001673 .args_type = "icount:l",
Pavel Dovgalyuke7510672020-10-03 20:13:26 +03001674 .params = "icount",
1675 .help = "set breakpoint at the specified instruction count",
1676 .cmd = hmp_replay_break,
1677 },
1678
1679SRST
1680``replay_break`` *icount*
1681 Set replay breakpoint at instruction count *icount*.
1682 Execution stops when the specified instruction is reached.
1683 There can be at most one breakpoint. When breakpoint is set, any prior
1684 one is removed. The breakpoint may be set only in replay mode and only
1685 "in the future", i.e. at instruction counts greater than the current one.
1686 The current instruction count can be observed with ``info replay``.
1687ERST
1688
1689 {
1690 .name = "replay_delete_break",
1691 .args_type = "",
1692 .params = "",
1693 .help = "remove replay breakpoint",
1694 .cmd = hmp_replay_delete_break,
1695 },
1696
1697SRST
1698``replay_delete_break``
1699 Remove replay breakpoint which was previously set with ``replay_break``.
1700 The command is ignored when there are no replay breakpoints.
1701ERST
1702
1703 {
Pavel Dovgalyukf6baed32020-10-03 20:13:31 +03001704 .name = "replay_seek",
Alex Bennéeae49ce02021-05-20 18:43:01 +01001705 .args_type = "icount:l",
Pavel Dovgalyukf6baed32020-10-03 20:13:31 +03001706 .params = "icount",
1707 .help = "replay execution to the specified instruction count",
1708 .cmd = hmp_replay_seek,
1709 },
1710
1711SRST
1712``replay_seek`` *icount*
1713 Automatically proceed to the instruction count *icount*, when
1714 replaying the execution. The command automatically loads nearest
1715 snapshot and replays the execution to find the desired instruction.
1716 When there is no preceding snapshot or the execution is not replayed,
1717 then the command fails.
1718 *icount* for the reference may be observed with ``info replay`` command.
1719ERST
1720
1721 {
Jan Kiszka33572ec2010-05-31 14:43:30 -03001722 .name = "info",
1723 .args_type = "item:s?",
1724 .params = "[subcommand]",
1725 .help = "show various information about the system state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001726 .cmd = hmp_info_help,
Kevin Wolfa0cd5e12019-06-13 17:33:56 +02001727 .sub_table = hmp_info_cmds,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001728 .flags = "p",
Jan Kiszka33572ec2010-05-31 14:43:30 -03001729 },
1730
Peter Xua4a571d2021-06-07 09:11:57 +08001731SRST
1732``calc_dirty_rate`` *second*
1733 Start a round of dirty rate measurement with the period specified in *second*.
1734 The result of the dirty rate measurement may be observed with ``info
1735 dirty_rate`` command.
1736ERST
1737
1738 {
1739 .name = "calc_dirty_rate",
Hyman Huang(黄勇)826b8bc2021-07-20 23:19:17 +08001740 .args_type = "dirty_ring:-r,dirty_bitmap:-b,second:l,sample_pages_per_GB:l?",
1741 .params = "[-r] [-b] second [sample_pages_per_GB]",
1742 .help = "start a round of guest dirty rate measurement (using -r to"
1743 "\n\t\t\t specify dirty ring as the method of calculation and"
1744 "\n\t\t\t -b to specify dirty bitmap as method of calculation)",
Peter Xua4a571d2021-06-07 09:11:57 +08001745 .cmd = hmp_calc_dirty_rate,
1746 },