blob: 03e6a73d1f551d57c1edef570f7a312529753bdd [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",
Denis V. Lunev80dd5af2022-04-13 01:18:46 +0300205 .args_type = "device:B,force:-f,target:F,arg:s?,read-only-mode:s?",
206 .params = "device [-f] filename [format [read-only-mode]]",
207 .help = "change a removable medium, optional format, use -f to force the operation",
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
Denis V. Lunev80dd5af2022-04-13 01:18:46 +0300215 ``change`` *diskdevice* [-f] *filename* [*format* [*read-only-mode*]]
Peter Maydella6b30bc2020-02-28 15:36:06 +0000216 Change the medium for a removable disk device to point to *filename*. eg::
217
218 (qemu) change ide1-cd0 /path/to/some.iso
219
Denis V. Lunev80dd5af2022-04-13 01:18:46 +0300220 ``-f``
221 forces the operation even if the guest has locked the tray.
222
Peter Maydella6b30bc2020-02-28 15:36:06 +0000223 *format* is optional.
224
225 *read-only-mode* may be used to change the read-only status of the device.
226 It accepts the following values:
227
228 retain
229 Retains the current status; this is the default.
230
231 read-only
232 Makes the device read-only.
233
234 read-write
235 Makes the device writable.
236
Peter Maydella6b30bc2020-02-28 15:36:06 +0000237 ``change vnc password`` [*password*]
238
239 Change the password associated with the VNC server. If the new password
240 is not supplied, the monitor will prompt for it to be entered. VNC
241 passwords are only significant up to 8 letters. eg::
242
243 (qemu) change vnc password
244 Password: ********
245
246ERST
Blue Swirl23130862009-06-06 08:22:04 +0000247
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300248 {
249 .name = "screendump",
Kshitij Suri9a0a1192022-04-08 07:13:35 +0000250 .args_type = "filename:F,format:-fs,device:s?,head:i?",
251 .params = "filename [-f format] [device [head]]",
252 .help = "save screen from head 'head' of display device 'device'"
253 "in specified format 'format' as image 'filename'."
254 "Currently only 'png' and 'ppm' formats are supported.",
255 .cmd = hmp_screendump,
Marc-André Lureau0d9b90c2020-10-27 17:36:02 +0400256 .coroutine = true,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300257 },
258
Peter Maydella6b30bc2020-02-28 15:36:06 +0000259SRST
260``screendump`` *filename*
261 Save screen into PPM image *filename*.
262ERST
Blue Swirl23130862009-06-06 08:22:04 +0000263
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300264 {
265 .name = "logfile",
266 .args_type = "filename:F",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300267 .params = "filename",
268 .help = "output logs to 'filename'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400269 .cmd = hmp_logfile,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300270 },
271
Peter Maydella6b30bc2020-02-28 15:36:06 +0000272SRST
273``logfile`` *filename*
274 Output logs to *filename*.
275ERST
Blue Swirl23130862009-06-06 08:22:04 +0000276
Prerna Saxena22890ab2010-06-24 17:04:53 +0530277 {
278 .name = "trace-event",
Lluís Vilanova77e2b172016-07-11 12:53:57 +0200279 .args_type = "name:s,option:b,vcpu:i?",
280 .params = "name on|off [vcpu]",
281 .help = "changes status of a specific trace event "
282 "(vcpu: vCPU to set, default is all)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400283 .cmd = hmp_trace_event,
Dr. David Alan Gilbert987bd272015-08-14 11:27:43 +0100284 .command_completion = trace_event_completion,
Prerna Saxena22890ab2010-06-24 17:04:53 +0530285 },
286
Peter Maydella6b30bc2020-02-28 15:36:06 +0000287SRST
288``trace-event``
289 changes status of a trace event
290ERST
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100291
Michael Rothc45a8162011-10-02 08:44:37 -0500292#if defined(CONFIG_TRACE_SIMPLE)
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100293 {
294 .name = "trace-file",
295 .args_type = "op:s?,arg:F?",
296 .params = "on|off|flush|set [arg]",
297 .help = "open, close, or flush trace file, or set a new file name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400298 .cmd = hmp_trace_file,
Stefan Hajnoczic5ceb522010-07-13 09:26:33 +0100299 },
300
Peter Maydella6b30bc2020-02-28 15:36:06 +0000301SRST
302``trace-file on|off|flush``
303 Open, close, or flush the trace file. If no argument is given, the
304 status of the trace file is displayed.
305ERST
Prerna Saxena22890ab2010-06-24 17:04:53 +0530306#endif
307
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300308 {
309 .name = "log",
310 .args_type = "items:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300311 .params = "item1[,...]",
Peter Maydell989b6972013-02-26 17:52:40 +0000312 .help = "activate logging of the specified items",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400313 .cmd = hmp_log,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300314 },
315
Peter Maydella6b30bc2020-02-28 15:36:06 +0000316SRST
317``log`` *item1*\ [,...]
318 Activate logging of the specified items.
319ERST
Blue Swirl23130862009-06-06 08:22:04 +0000320
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300321 {
322 .name = "savevm",
323 .args_type = "name:s?",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200324 .params = "tag",
325 .help = "save a VM snapshot. If no tag is provided, a new snapshot is created",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400326 .cmd = hmp_savevm,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300327 },
328
Peter Maydella6b30bc2020-02-28 15:36:06 +0000329SRST
330``savevm`` *tag*
331 Create a snapshot of the whole virtual machine. If *tag* is
332 provided, it is used as human readable identifier. If there is already
333 a snapshot with the same tag, it is replaced. More info at
334 :ref:`vm_005fsnapshots`.
335
336 Since 4.0, savevm stopped allowing the snapshot id to be set, accepting
337 only *tag* as parameter.
338ERST
Blue Swirl23130862009-06-06 08:22:04 +0000339
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300340 {
341 .name = "loadvm",
342 .args_type = "name:s",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200343 .params = "tag",
344 .help = "restore a VM snapshot from its tag",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400345 .cmd = hmp_loadvm,
Hani Benhabilesb21631f2014-05-27 23:39:37 +0100346 .command_completion = loadvm_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300347 },
348
Peter Maydella6b30bc2020-02-28 15:36:06 +0000349SRST
350``loadvm`` *tag*
351 Set the whole virtual machine to the snapshot identified by the tag
352 *tag*.
353
354 Since 4.0, loadvm stopped accepting snapshot id as parameter.
355ERST
Blue Swirl23130862009-06-06 08:22:04 +0000356
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300357 {
358 .name = "delvm",
359 .args_type = "name:s",
Daniel Henrique Barboza6ca08042018-11-07 11:09:58 -0200360 .params = "tag",
361 .help = "delete a VM snapshot from its tag",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400362 .cmd = hmp_delvm,
Hani Benhabilesb21631f2014-05-27 23:39:37 +0100363 .command_completion = delvm_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300364 },
365
Peter Maydella6b30bc2020-02-28 15:36:06 +0000366SRST
367``delvm`` *tag*
368 Delete the snapshot identified by *tag*.
369
370 Since 4.0, delvm stopped deleting snapshots by snapshot id, accepting
371 only *tag* as parameter.
372ERST
Blue Swirl23130862009-06-06 08:22:04 +0000373
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300374 {
375 .name = "singlestep",
376 .args_type = "option:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300377 .params = "[on|off]",
378 .help = "run emulation in singlestep mode or switch to normal mode",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400379 .cmd = hmp_singlestep,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300380 },
381
Peter Maydella6b30bc2020-02-28 15:36:06 +0000382SRST
383``singlestep [off]``
384 Run the emulation in single step mode.
385 If called with option off, the emulation returns to normal mode.
386ERST
Blue Swirl23130862009-06-06 08:22:04 +0000387
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300388 {
BALATON Zoltande4cf842021-10-30 11:49:37 +0200389 .name = "stop|s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300390 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300391 .params = "",
392 .help = "stop emulation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400393 .cmd = hmp_stop,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300394 },
395
Peter Maydella6b30bc2020-02-28 15:36:06 +0000396SRST
BALATON Zoltande4cf842021-10-30 11:49:37 +0200397``stop`` or ``s``
Peter Maydella6b30bc2020-02-28 15:36:06 +0000398 Stop emulation.
399ERST
Blue Swirl23130862009-06-06 08:22:04 +0000400
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300401 {
Peter Maydellff688cd2020-11-21 15:17:11 +0000402 .name = "cont|c",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300403 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300404 .params = "",
405 .help = "resume emulation",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400406 .cmd = hmp_cont,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300407 },
408
Peter Maydella6b30bc2020-02-28 15:36:06 +0000409SRST
Peter Maydellff688cd2020-11-21 15:17:11 +0000410``cont`` or ``c``
Peter Maydella6b30bc2020-02-28 15:36:06 +0000411 Resume emulation.
412ERST
Blue Swirl23130862009-06-06 08:22:04 +0000413
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300414 {
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100415 .name = "system_wakeup",
416 .args_type = "",
417 .params = "",
418 .help = "wakeup guest from suspend",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400419 .cmd = hmp_system_wakeup,
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100420 },
421
Peter Maydella6b30bc2020-02-28 15:36:06 +0000422SRST
423``system_wakeup``
424 Wakeup guest from suspend.
425ERST
Gerd Hoffmann9b9df252012-02-23 13:45:21 +0100426
427 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300428 .name = "gdbserver",
429 .args_type = "device:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300430 .params = "[device]",
431 .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400432 .cmd = hmp_gdbserver,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300433 },
434
Peter Maydella6b30bc2020-02-28 15:36:06 +0000435SRST
436``gdbserver`` [*port*]
437 Start gdbserver session (default *port*\=1234)
438ERST
Blue Swirl23130862009-06-06 08:22:04 +0000439
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300440 {
441 .name = "x",
442 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300443 .params = "/fmt addr",
444 .help = "virtual memory dump starting at 'addr'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400445 .cmd = hmp_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300446 },
447
Peter Maydella6b30bc2020-02-28 15:36:06 +0000448SRST
449``x/``\ *fmt* *addr*
450 Virtual memory dump starting at *addr*.
451ERST
Blue Swirl23130862009-06-06 08:22:04 +0000452
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300453 {
454 .name = "xp",
455 .args_type = "fmt:/,addr:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300456 .params = "/fmt addr",
457 .help = "physical memory dump starting at 'addr'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400458 .cmd = hmp_physical_memory_dump,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300459 },
460
Peter Maydella6b30bc2020-02-28 15:36:06 +0000461SRST
462``xp /``\ *fmt* *addr*
463 Physical memory dump starting at *addr*.
464
465 *fmt* is a format which tells the command how to format the
466 data. Its syntax is: ``/{count}{format}{size}``
467
468 *count*
469 is the number of items to be dumped.
470 *format*
471 can be x (hex), d (signed decimal), u (unsigned decimal), o (octal),
472 c (char) or i (asm instruction).
473 *size*
474 can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86,
475 ``h`` or ``w`` can be specified with the ``i`` format to
476 respectively select 16 or 32 bit code instruction size.
477
478 Examples:
479
480 Dump 10 instructions at the current instruction pointer::
481
482 (qemu) x/10i $eip
483 0x90107063: ret
484 0x90107064: sti
485 0x90107065: lea 0x0(%esi,1),%esi
486 0x90107069: lea 0x0(%edi,1),%edi
487 0x90107070: ret
488 0x90107071: jmp 0x90107080
489 0x90107073: nop
490 0x90107074: nop
491 0x90107075: nop
492 0x90107076: nop
493
494 Dump 80 16 bit values at the start of the video memory::
495
496 (qemu) xp/80hx 0xb8000
497 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42
498 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41
499 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72
500 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73
501 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20
502 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720
503 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
504 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
505 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
506 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720
507
508ERST
Blue Swirl23130862009-06-06 08:22:04 +0000509
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300510 {
Paolo Bonzinie9628442017-04-20 15:30:58 +0200511 .name = "gpa2hva",
512 .args_type = "addr:l",
513 .params = "addr",
514 .help = "print the host virtual address corresponding to a guest physical address",
515 .cmd = hmp_gpa2hva,
516 },
517
Peter Maydella6b30bc2020-02-28 15:36:06 +0000518SRST
519``gpa2hva`` *addr*
520 Print the host virtual address at which the guest's physical address *addr*
521 is mapped.
522ERST
Paolo Bonzinie9628442017-04-20 15:30:58 +0200523
524#ifdef CONFIG_LINUX
525 {
526 .name = "gpa2hpa",
527 .args_type = "addr:l",
528 .params = "addr",
529 .help = "print the host physical address corresponding to a guest physical address",
530 .cmd = hmp_gpa2hpa,
531 },
532#endif
533
Peter Maydella6b30bc2020-02-28 15:36:06 +0000534SRST
535``gpa2hpa`` *addr*
536 Print the host physical address at which the guest's physical address *addr*
537 is mapped.
538ERST
Paolo Bonzinie9628442017-04-20 15:30:58 +0200539
540 {
Dr. David Alan Gilbert574d9692019-04-12 16:26:52 +0100541 .name = "gva2gpa",
542 .args_type = "addr:l",
543 .params = "addr",
544 .help = "print the guest physical address corresponding to a guest virtual address",
545 .cmd = hmp_gva2gpa,
546 },
547
Peter Maydella6b30bc2020-02-28 15:36:06 +0000548SRST
549``gva2gpa`` *addr*
550 Print the guest physical address at which the guest's virtual address *addr*
551 is mapped based on the mapping for the current CPU.
552ERST
Dr. David Alan Gilbert574d9692019-04-12 16:26:52 +0100553
554 {
Peter Maydellff688cd2020-11-21 15:17:11 +0000555 .name = "print|p",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300556 .args_type = "fmt:/,val:l",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300557 .params = "/fmt expr",
558 .help = "print expression value (use $reg for CPU register access)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400559 .cmd = do_print,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300560 },
561
Peter Maydella6b30bc2020-02-28 15:36:06 +0000562SRST
Peter Maydellff688cd2020-11-21 15:17:11 +0000563``print`` or ``p/``\ *fmt* *expr*
Peter Maydella6b30bc2020-02-28 15:36:06 +0000564 Print expression value. Only the *format* part of *fmt* is
565 used.
566ERST
Blue Swirl23130862009-06-06 08:22:04 +0000567
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300568 {
569 .name = "i",
570 .args_type = "fmt:/,addr:i,index:i.",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300571 .params = "/fmt addr",
572 .help = "I/O port read",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400573 .cmd = hmp_ioport_read,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300574 },
575
Peter Maydella6b30bc2020-02-28 15:36:06 +0000576SRST
577``i/``\ *fmt* *addr* [.\ *index*\ ]
578 Read I/O port.
579ERST
Blue Swirl23130862009-06-06 08:22:04 +0000580
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300581 {
582 .name = "o",
583 .args_type = "fmt:/,addr:i,val:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300584 .params = "/fmt addr value",
585 .help = "I/O port write",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400586 .cmd = hmp_ioport_write,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300587 },
588
Peter Maydella6b30bc2020-02-28 15:36:06 +0000589SRST
590``o/``\ *fmt* *addr* *val*
591 Write to I/O port.
592ERST
Blue Swirl23130862009-06-06 08:22:04 +0000593
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300594 {
595 .name = "sendkey",
Amos Kong2ef20c12012-08-31 10:56:22 +0800596 .args_type = "keys:s,hold-time:i?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300597 .params = "keys [hold_ms]",
598 .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 +0400599 .cmd = hmp_sendkey,
Hani Benhabiles29136cd2014-05-07 23:41:27 +0100600 .command_completion = sendkey_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300601 },
602
Peter Maydella6b30bc2020-02-28 15:36:06 +0000603SRST
604``sendkey`` *keys*
605 Send *keys* to the guest. *keys* could be the name of the
606 key or the raw value in hexadecimal format. Use ``-`` to press
607 several keys simultaneously. Example::
608
609 sendkey ctrl-alt-f1
610
611 This command is useful to send keys that your graphical user interface
612 intercepts at low level, such as ``ctrl-alt-f1`` in X Window.
613ERST
Emilio G. Cotadd12e1b2018-08-15 16:00:03 -0400614 {
615 .name = "sync-profile",
616 .args_type = "op:s?",
617 .params = "[on|off|reset]",
618 .help = "enable, disable or reset synchronization profiling. "
619 "With no arguments, prints whether profiling is on or off.",
620 .cmd = hmp_sync_profile,
621 },
622
Peter Maydella6b30bc2020-02-28 15:36:06 +0000623SRST
624``sync-profile [on|off|reset]``
625 Enable, disable or reset synchronization profiling. With no arguments, prints
626 whether profiling is on or off.
627ERST
Blue Swirl23130862009-06-06 08:22:04 +0000628
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300629 {
630 .name = "system_reset",
631 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300632 .params = "",
633 .help = "reset the system",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400634 .cmd = hmp_system_reset,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300635 },
636
Peter Maydella6b30bc2020-02-28 15:36:06 +0000637SRST
638``system_reset``
639 Reset the system.
640ERST
Blue Swirl23130862009-06-06 08:22:04 +0000641
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300642 {
643 .name = "system_powerdown",
644 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300645 .params = "",
646 .help = "send system power down event",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400647 .cmd = hmp_system_powerdown,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300648 },
649
Peter Maydella6b30bc2020-02-28 15:36:06 +0000650SRST
651``system_powerdown``
652 Power down the system (if supported).
653ERST
Blue Swirl23130862009-06-06 08:22:04 +0000654
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300655 {
656 .name = "sum",
657 .args_type = "start:i,size:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300658 .params = "addr size",
659 .help = "compute the checksum of a memory region",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400660 .cmd = hmp_sum,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300661 },
662
Peter Maydella6b30bc2020-02-28 15:36:06 +0000663SRST
664``sum`` *addr* *size*
665 Compute the checksum of a memory region.
666ERST
Blue Swirl23130862009-06-06 08:22:04 +0000667
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300668 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300669 .name = "device_add",
Markus Armbrusterc7e4e8c2010-02-10 20:47:28 +0100670 .args_type = "device:O",
671 .params = "driver[,prop=value][,...]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300672 .help = "add device, like -device on the command line",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400673 .cmd = hmp_device_add,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100674 .command_completion = device_add_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300675 },
676
Peter Maydella6b30bc2020-02-28 15:36:06 +0000677SRST
678``device_add`` *config*
679 Add device.
680ERST
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200681
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300682 {
683 .name = "device_del",
684 .args_type = "id:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300685 .params = "device",
686 .help = "remove device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400687 .cmd = hmp_device_del,
Hani Benhabiles2da1b3a2014-04-13 16:25:07 +0100688 .command_completion = device_del_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300689 },
690
Peter Maydella6b30bc2020-02-28 15:36:06 +0000691SRST
692``device_del`` *id*
693 Remove device *id*. *id* may be a short ID
694 or a QOM object path.
695ERST
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200696
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300697 {
698 .name = "cpu",
699 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300700 .params = "index",
701 .help = "set the default CPU",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400702 .cmd = hmp_cpu,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300703 },
Gerd Hoffmann3418bd22009-09-25 21:42:41 +0200704
Peter Maydella6b30bc2020-02-28 15:36:06 +0000705SRST
706``cpu`` *index*
707 Set the default CPU.
708ERST
Blue Swirl23130862009-06-06 08:22:04 +0000709
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300710 {
711 .name = "mouse_move",
712 .args_type = "dx_str:s,dy_str:s,dz_str:s?",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300713 .params = "dx dy [dz]",
714 .help = "send mouse move events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400715 .cmd = hmp_mouse_move,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300716 },
717
Peter Maydella6b30bc2020-02-28 15:36:06 +0000718SRST
719``mouse_move`` *dx* *dy* [*dz*]
720 Move the active mouse to the specified coordinates *dx* *dy*
721 with optional scroll axis *dz*.
722ERST
Blue Swirl23130862009-06-06 08:22:04 +0000723
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300724 {
725 .name = "mouse_button",
726 .args_type = "button_state:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300727 .params = "state",
728 .help = "change mouse button state (1=L, 2=M, 4=R)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400729 .cmd = hmp_mouse_button,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300730 },
731
Peter Maydella6b30bc2020-02-28 15:36:06 +0000732SRST
733``mouse_button`` *val*
734 Change the active mouse button state *val* (1=L, 2=M, 4=R).
735ERST
Blue Swirl23130862009-06-06 08:22:04 +0000736
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300737 {
738 .name = "mouse_set",
739 .args_type = "index:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300740 .params = "index",
741 .help = "set which mouse device receives events",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400742 .cmd = hmp_mouse_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300743 },
744
Peter Maydella6b30bc2020-02-28 15:36:06 +0000745SRST
746``mouse_set`` *index*
747 Set which mouse device receives events at given *index*, index
748 can be obtained with::
749
750 info mice
751
752ERST
Blue Swirl23130862009-06-06 08:22:04 +0000753
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300754 {
755 .name = "wavcapture",
Kővágó, Zoltánf0b9f362019-08-19 01:06:48 +0200756 .args_type = "path:F,audiodev:s,freq:i?,bits:i?,nchannels:i?",
757 .params = "path audiodev [frequency [bits [channels]]]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300758 .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400759 .cmd = hmp_wavcapture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300760 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000761SRST
762``wavcapture`` *filename* *audiodev* [*frequency* [*bits* [*channels*]]]
763 Capture audio into *filename* from *audiodev*, using sample rate
764 *frequency* bits per sample *bits* and number of channels
765 *channels*.
766
767 Defaults:
768
769 - Sample rate = 44100 Hz - CD quality
770 - Bits = 16
771 - Number of channels = 2 - Stereo
772ERST
Blue Swirl23130862009-06-06 08:22:04 +0000773
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300774 {
775 .name = "stopcapture",
776 .args_type = "n:i",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300777 .params = "capture index",
778 .help = "stop capture",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400779 .cmd = hmp_stopcapture,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300780 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000781SRST
782``stopcapture`` *index*
783 Stop capture with a given *index*, index can be obtained with::
784
785 info capture
786
787ERST
Blue Swirl23130862009-06-06 08:22:04 +0000788
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300789 {
790 .name = "memsave",
791 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300792 .params = "addr size file",
793 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400794 .cmd = hmp_memsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300795 },
796
Peter Maydella6b30bc2020-02-28 15:36:06 +0000797SRST
798``memsave`` *addr* *size* *file*
799 save to disk virtual memory dump starting at *addr* of size *size*.
800ERST
Blue Swirl23130862009-06-06 08:22:04 +0000801
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300802 {
803 .name = "pmemsave",
804 .args_type = "val:l,size:i,filename:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300805 .params = "addr size file",
806 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400807 .cmd = hmp_pmemsave,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300808 },
809
Peter Maydella6b30bc2020-02-28 15:36:06 +0000810SRST
811``pmemsave`` *addr* *size* *file*
812 save to disk physical memory dump starting at *addr* of size *size*.
813ERST
Blue Swirl23130862009-06-06 08:22:04 +0000814
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300815 {
816 .name = "boot_set",
817 .args_type = "bootdevice:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300818 .params = "bootdevice",
819 .help = "define new values for the boot device list",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400820 .cmd = hmp_boot_set,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300821 },
822
Peter Maydella6b30bc2020-02-28 15:36:06 +0000823SRST
824``boot_set`` *bootdevicelist*
825 Define new values for the boot device list. Those values will override
826 the values specified on the command line through the ``-boot`` option.
827
828 The values that can be specified here depend on the machine type, but are
829 the same that can be specified in the ``-boot`` command line option.
830ERST
Blue Swirl23130862009-06-06 08:22:04 +0000831
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300832 {
833 .name = "nmi",
Luiz Capitulinoe9b4b432011-04-29 12:11:50 -0300834 .args_type = "",
835 .params = "",
Alexey Kardashevskiy9cb805f2014-08-20 22:16:33 +1000836 .help = "inject an NMI",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400837 .cmd = hmp_nmi,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300838 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000839SRST
840``nmi`` *cpu*
841 Inject an NMI on the default CPU (x86/s390) or all CPUs (ppc64).
842ERST
Lei Li1f590cf2013-01-25 00:03:20 +0800843
844 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100845 .name = "ringbuf_write",
Lei Li1f590cf2013-01-25 00:03:20 +0800846 .args_type = "device:s,data:s",
847 .params = "device data",
Markus Armbruster3949e592013-02-06 21:27:24 +0100848 .help = "Write to a ring buffer character device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400849 .cmd = hmp_ringbuf_write,
Hani Benhabiles8e597772014-05-27 23:39:30 +0100850 .command_completion = ringbuf_write_completion,
Lei Li1f590cf2013-01-25 00:03:20 +0800851 },
852
Peter Maydella6b30bc2020-02-28 15:36:06 +0000853SRST
854``ringbuf_write`` *device* *data*
855 Write *data* to ring buffer character device *device*.
856 *data* must be a UTF-8 string.
857ERST
Blue Swirl23130862009-06-06 08:22:04 +0000858
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300859 {
Markus Armbruster3949e592013-02-06 21:27:24 +0100860 .name = "ringbuf_read",
Lei Li49b6d722013-01-25 00:03:21 +0800861 .args_type = "device:s,size:i",
862 .params = "device size",
Markus Armbruster3949e592013-02-06 21:27:24 +0100863 .help = "Read from a ring buffer character device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400864 .cmd = hmp_ringbuf_read,
Hani Benhabiles8e597772014-05-27 23:39:30 +0100865 .command_completion = ringbuf_write_completion,
Lei Li49b6d722013-01-25 00:03:21 +0800866 },
867
Peter Maydella6b30bc2020-02-28 15:36:06 +0000868SRST
869``ringbuf_read`` *device*
870 Read and print up to *size* bytes from ring buffer character
871 device *device*.
872 Certain non-printable characters are printed ``\uXXXX``, where ``XXXX`` is the
873 character code in hexadecimal. Character ``\`` is printed ``\\``.
874 Bug: can screw up when the buffer contains invalid UTF-8 sequences,
875 NUL characters, after the ring buffer lost data, and when reading
876 stops because the size limit is reached.
877ERST
Lei Li49b6d722013-01-25 00:03:21 +0800878
879 {
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000880 .name = "announce_self",
Dr. David Alan Gilbertc6644542019-06-20 19:47:05 +0100881 .args_type = "interfaces:s?,id:s?",
882 .params = "[interfaces] [id]",
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000883 .help = "Trigger GARP/RARP announcements",
884 .cmd = hmp_announce_self,
885 },
886
Peter Maydella6b30bc2020-02-28 15:36:06 +0000887SRST
888``announce_self``
889 Trigger a round of GARP/RARP broadcasts; this is useful for explicitly
890 updating the network infrastructure after a reconfiguration or some forms
891 of migration. The timings of the round are set by the migration announce
892 parameters. An optional comma separated *interfaces* list restricts the
893 announce to the named set of interfaces. An optional *id* can be used to
894 start a separate announce timer and to change the parameters of it later.
895ERST
Dr. David Alan Gilbert544f6ea2019-02-27 13:24:12 +0000896
897 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300898 .name = "migrate",
Peter Xu7a4da282018-05-02 18:47:23 +0800899 .args_type = "detach:-d,blk:-b,inc:-i,resume:-r,uri:s",
900 .params = "[-d] [-b] [-i] [-r] uri",
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200901 .help = "migrate to URI (using -d to not wait for completion)"
902 "\n\t\t\t -b for migration without shared storage with"
903 " full copy of disk\n\t\t\t -i for migration without "
904 "shared storage with incremental copy of disk "
Peter Xu7a4da282018-05-02 18:47:23 +0800905 "(base image shared between src and destination)"
906 "\n\t\t\t -r to resume a paused migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400907 .cmd = hmp_migrate,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300908 },
909
lirans@il.ibm.comfbc3d962009-11-02 15:41:13 +0200910
Peter Maydella6b30bc2020-02-28 15:36:06 +0000911SRST
912``migrate [-d] [-b] [-i]`` *uri*
913 Migrate to *uri* (using -d to not wait for completion).
914
915 ``-b``
916 for migration with full copy of disk
917 ``-i``
918 for migration with incremental copy of disk (base image is shared)
919ERST
Blue Swirl23130862009-06-06 08:22:04 +0000920
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300921 {
922 .name = "migrate_cancel",
923 .args_type = "",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300924 .params = "",
925 .help = "cancel the current VM migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400926 .cmd = hmp_migrate_cancel,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -0300927 },
928
Peter Maydella6b30bc2020-02-28 15:36:06 +0000929SRST
930``migrate_cancel``
931 Cancel the current VM migration.
932ERST
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300933
Dr. David Alan Gilbert94ae12c2017-10-20 10:05:54 +0100934 {
935 .name = "migrate_continue",
936 .args_type = "state:s",
937 .params = "state",
938 .help = "Continue migration from the given paused state",
939 .cmd = hmp_migrate_continue,
940 },
Peter Maydella6b30bc2020-02-28 15:36:06 +0000941SRST
942``migrate_continue`` *state*
943 Continue migration from the paused state *state*
944ERST
Orit Wasserman9e1ba4c2012-08-06 21:42:54 +0300945
946 {
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000947 .name = "migrate_incoming",
948 .args_type = "uri:s",
949 .params = "uri",
950 .help = "Continue an incoming migration from an -incoming defer",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400951 .cmd = hmp_migrate_incoming,
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000952 },
953
Peter Maydella6b30bc2020-02-28 15:36:06 +0000954SRST
955``migrate_incoming`` *uri*
956 Continue an incoming migration using the *uri* (that has the same syntax
957 as the ``-incoming`` option).
958ERST
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000959
Peter Xu3b563c42018-05-02 18:47:37 +0800960 {
961 .name = "migrate_recover",
962 .args_type = "uri:s",
963 .params = "uri",
964 .help = "Continue a paused incoming postcopy migration",
965 .cmd = hmp_migrate_recover,
966 },
967
Peter Maydella6b30bc2020-02-28 15:36:06 +0000968SRST
969``migrate_recover`` *uri*
970 Continue a paused incoming postcopy migration using the *uri*.
971ERST
Dr. David Alan Gilbertbf1ae1f2015-02-19 11:40:28 +0000972
973 {
Peter Xud37297d2018-05-02 18:47:40 +0800974 .name = "migrate_pause",
975 .args_type = "",
976 .params = "",
977 .help = "Pause an ongoing migration (postcopy-only)",
978 .cmd = hmp_migrate_pause,
979 },
980
Peter Maydella6b30bc2020-02-28 15:36:06 +0000981SRST
982``migrate_pause``
983 Pause an ongoing migration. Currently it only supports postcopy.
984ERST
Peter Xud37297d2018-05-02 18:47:40 +0800985
986 {
Orit Wasserman00458432012-08-06 21:42:48 +0300987 .name = "migrate_set_capability",
988 .args_type = "capability:s,state:b",
989 .params = "capability state",
990 .help = "Enable/Disable the usage of a capability for migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +0400991 .cmd = hmp_migrate_set_capability,
Hani Benhabilesc68a0402014-05-27 23:39:32 +0100992 .command_completion = migrate_set_capability_completion,
Orit Wasserman00458432012-08-06 21:42:48 +0300993 },
994
Peter Maydella6b30bc2020-02-28 15:36:06 +0000995SRST
996``migrate_set_capability`` *capability* *state*
997 Enable/Disable the usage of a capability *capability* for migration.
998ERST
Orit Wasserman00458432012-08-06 21:42:48 +0300999
1000 {
Liang Li50e9a622015-03-23 16:32:29 +08001001 .name = "migrate_set_parameter",
Daniel P. Berrange69ef1f32016-04-27 11:05:15 +01001002 .args_type = "parameter:s,value:s",
Liang Li50e9a622015-03-23 16:32:29 +08001003 .params = "parameter value",
1004 .help = "Set the parameter for migration",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001005 .cmd = hmp_migrate_set_parameter,
Liang Li50e9a622015-03-23 16:32:29 +08001006 .command_completion = migrate_set_parameter_completion,
1007 },
1008
Peter Maydella6b30bc2020-02-28 15:36:06 +00001009SRST
1010``migrate_set_parameter`` *parameter* *value*
1011 Set the parameter *parameter* for migration.
1012ERST
Liang Li50e9a622015-03-23 16:32:29 +08001013
1014 {
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001015 .name = "migrate_start_postcopy",
1016 .args_type = "",
1017 .params = "",
Dr. David Alan Gilberta54d3402015-11-12 11:34:44 +00001018 .help = "Followup to a migration command to switch the migration"
Dr. David Alan Gilbert32c3db52016-03-11 09:53:36 +00001019 " to postcopy mode. The postcopy-ram capability must "
Greg Kurzc2eb7f22018-02-07 16:41:43 +01001020 "be set on both source and destination before the "
1021 "original migration command .",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001022 .cmd = hmp_migrate_start_postcopy,
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001023 },
1024
Peter Maydella6b30bc2020-02-28 15:36:06 +00001025SRST
1026``migrate_start_postcopy``
1027 Switch in-progress migration to postcopy mode. Ignored after the end of
1028 migration (or once already in postcopy).
1029ERST
Dr. David Alan Gilbert4886a1b2015-11-05 18:10:56 +00001030
1031 {
zhanghailiangd89e6662016-10-27 14:43:03 +08001032 .name = "x_colo_lost_heartbeat",
1033 .args_type = "",
1034 .params = "",
1035 .help = "Tell COLO that heartbeat is lost,\n\t\t\t"
1036 "a failover or takeover is needed.",
1037 .cmd = hmp_x_colo_lost_heartbeat,
1038 },
1039
Peter Maydella6b30bc2020-02-28 15:36:06 +00001040SRST
1041``x_colo_lost_heartbeat``
1042 Tell COLO that heartbeat is lost, a failover or takeover is needed.
1043ERST
zhanghailiangd89e6662016-10-27 14:43:03 +08001044
1045 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001046 .name = "client_migrate_info",
1047 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
1048 .params = "protocol hostname port tls-port cert-subject",
Markus Armbruster13cadef2015-03-05 19:16:58 +01001049 .help = "set migration information for remote display",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001050 .cmd = hmp_client_migrate_info,
Jes Sorensenf8882562010-12-16 13:52:16 +01001051 },
1052
Peter Maydella6b30bc2020-02-28 15:36:06 +00001053SRST
1054``client_migrate_info`` *protocol* *hostname* *port* *tls-port* *cert-subject*
1055 Set migration information for remote display. This makes the server
1056 ask the client to automatically reconnect using the new parameters
1057 once migration finished successfully. Only implemented for SPICE.
1058ERST
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001059
Wen Congyang783e9b42012-05-07 12:10:47 +08001060 {
1061 .name = "dump-guest-memory",
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001062 .args_type = "paging:-p,detach:-d,windmp:-w,zlib:-z,lzo:-l,snappy:-s,filename:F,begin:l?,length:l?",
1063 .params = "[-p] [-d] [-z|-l|-s|-w] filename [begin length]",
Qiao Nuohanc20499d2014-04-17 16:15:06 +08001064 .help = "dump guest memory into file 'filename'.\n\t\t\t"
1065 "-p: do paging to get guest's memory mapping.\n\t\t\t"
Peter Xu228de9c2016-02-18 13:16:47 +08001066 "-d: return immediately (do not wait for completion).\n\t\t\t"
Qiao Nuohan1b7a0f72014-04-17 16:15:07 +08001067 "-z: dump in kdump-compressed format, with zlib compression.\n\t\t\t"
1068 "-l: dump in kdump-compressed format, with lzo compression.\n\t\t\t"
1069 "-s: dump in kdump-compressed format, with snappy compression.\n\t\t\t"
Viktor Prutyanov2da91b52018-05-17 19:23:39 +03001070 "-w: dump in Windows crashdump format (can be used instead of ELF-dump converting),\n\t\t\t"
Viktor Prutyanovf5daa822022-04-06 20:15:58 +03001071 " for Windows x86 and x64 guests with vmcoreinfo driver only.\n\t\t\t"
Qiao Nuohanc20499d2014-04-17 16:15:06 +08001072 "begin: the starting physical address.\n\t\t\t"
1073 "length: the memory size, in bytes.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001074 .cmd = hmp_dump_guest_memory,
Wen Congyang783e9b42012-05-07 12:10:47 +08001075 },
1076
Peter Maydella6b30bc2020-02-28 15:36:06 +00001077SRST
1078``dump-guest-memory [-p]`` *filename* *begin* *length*
1079 \
1080``dump-guest-memory [-z|-l|-s|-w]`` *filename*
1081 Dump guest memory to *protocol*. The file can be processed with crash or
1082 gdb. Without ``-z|-l|-s|-w``, the dump format is ELF.
1083
1084 ``-p``
1085 do paging to get guest's memory mapping.
1086 ``-z``
1087 dump in kdump-compressed format, with zlib compression.
1088 ``-l``
1089 dump in kdump-compressed format, with lzo compression.
1090 ``-s``
1091 dump in kdump-compressed format, with snappy compression.
1092 ``-w``
1093 dump in Windows crashdump format (can be used instead of ELF-dump converting),
1094 for Windows x64 guests with vmcoreinfo driver only
1095 *filename*
1096 dump file name.
1097 *begin*
1098 the starting physical address. It's optional, and should be
1099 specified together with *length*.
1100 *length*
1101 the memory size, in bytes. It's optional, and should be specified
1102 together with *begin*.
1103
1104ERST
Wen Congyang783e9b42012-05-07 12:10:47 +08001105
Jason J. Hernea4538a52015-06-26 14:07:21 -04001106#if defined(TARGET_S390X)
1107 {
1108 .name = "dump-skeys",
1109 .args_type = "filename:F",
1110 .params = "",
1111 .help = "Save guest storage keys into file 'filename'.\n",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001112 .cmd = hmp_dump_skeys,
Jason J. Hernea4538a52015-06-26 14:07:21 -04001113 },
1114#endif
1115
Peter Maydella6b30bc2020-02-28 15:36:06 +00001116SRST
1117``dump-skeys`` *filename*
1118 Save guest storage keys to a file.
1119ERST
Jason J. Hernea4538a52015-06-26 14:07:21 -04001120
Claudio Imbrendaf860d492016-08-15 18:44:04 +02001121#if defined(TARGET_S390X)
1122 {
1123 .name = "migration_mode",
1124 .args_type = "mode:i",
1125 .params = "mode",
1126 .help = "Enables or disables migration mode\n",
1127 .cmd = hmp_migrationmode,
1128 },
1129#endif
1130
Peter Maydella6b30bc2020-02-28 15:36:06 +00001131SRST
1132``migration_mode`` *mode*
1133 Enables or disables migration mode.
1134ERST
Claudio Imbrendaf860d492016-08-15 18:44:04 +02001135
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001136 {
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001137 .name = "snapshot_blkdev",
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001138 .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?",
1139 .params = "[-n] device [new-image-file] [format]",
Jes Sorensen2ea720d2011-03-09 16:54:34 +01001140 .help = "initiates a live snapshot\n\t\t\t"
1141 "of device. If a new image file is specified, the\n\t\t\t"
1142 "new image file will become the new root image.\n\t\t\t"
1143 "If format is specified, the snapshot file will\n\t\t\t"
Wenchao Xia775ca882013-09-11 14:04:37 +08001144 "be created in that format.\n\t\t\t"
Paolo Bonzini6cc2a412012-03-06 18:55:59 +01001145 "The default format is qcow2. The -n flag requests QEMU\n\t\t\t"
1146 "to reuse the image found in new-image-file, instead of\n\t\t\t"
1147 "recreating it from scratch.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001148 .cmd = hmp_snapshot_blkdev,
Gerd Hoffmanne866e232010-04-23 13:28:21 +02001149 },
1150
Peter Maydella6b30bc2020-02-28 15:36:06 +00001151SRST
1152``snapshot_blkdev``
1153 Snapshot device, using snapshot file as target if provided
1154ERST
Jes Sorensenf8882562010-12-16 13:52:16 +01001155
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001156 {
Wenchao Xia775ca882013-09-11 14:04:37 +08001157 .name = "snapshot_blkdev_internal",
1158 .args_type = "device:B,name:s",
1159 .params = "device name",
1160 .help = "take an internal snapshot of device.\n\t\t\t"
1161 "The format of the image used by device must\n\t\t\t"
1162 "support it, such as qcow2.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001163 .cmd = hmp_snapshot_blkdev_internal,
Wenchao Xia775ca882013-09-11 14:04:37 +08001164 },
1165
Peter Maydella6b30bc2020-02-28 15:36:06 +00001166SRST
1167``snapshot_blkdev_internal``
1168 Take an internal snapshot on device if it support
1169ERST
Wenchao Xia775ca882013-09-11 14:04:37 +08001170
1171 {
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001172 .name = "snapshot_delete_blkdev_internal",
1173 .args_type = "device:B,name:s,id:s?",
1174 .params = "device name [id]",
1175 .help = "delete an internal snapshot of device.\n\t\t\t"
1176 "If id is specified, qemu will try delete\n\t\t\t"
1177 "the snapshot matching both id and name.\n\t\t\t"
1178 "The format of the image used by device must\n\t\t\t"
1179 "support it, such as qcow2.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001180 .cmd = hmp_snapshot_delete_blkdev_internal,
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001181 },
1182
Peter Maydella6b30bc2020-02-28 15:36:06 +00001183SRST
1184``snapshot_delete_blkdev_internal``
1185 Delete an internal snapshot on device if it support
1186ERST
Wenchao Xia7a4ed2e2013-09-11 14:04:38 +08001187
1188 {
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001189 .name = "drive_mirror",
1190 .args_type = "reuse:-n,full:-f,device:B,target:s,format:s?",
1191 .params = "[-n] [-f] device target [format]",
1192 .help = "initiates live storage\n\t\t\t"
1193 "migration for a device. The device's contents are\n\t\t\t"
1194 "copied to the new image file, including data that\n\t\t\t"
1195 "is written after the command is started.\n\t\t\t"
1196 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1197 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1198 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
1199 "so that the result does not need a backing file.\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001200 .cmd = hmp_drive_mirror,
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001201 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001202SRST
1203``drive_mirror``
1204 Start mirroring a block device's writes to a new destination,
1205 using the specified target.
1206ERST
Paolo Bonzinid9b902d2012-10-18 16:49:24 +02001207
1208 {
Stefan Hajnoczide909302013-06-26 14:11:58 +02001209 .name = "drive_backup",
Pavel Butsykin13b94142016-07-22 11:17:52 +03001210 .args_type = "reuse:-n,full:-f,compress:-c,device:B,target:s,format:s?",
1211 .params = "[-n] [-f] [-c] device target [format]",
Stefan Hajnoczide909302013-06-26 14:11:58 +02001212 .help = "initiates a point-in-time\n\t\t\t"
1213 "copy for a device. The device's contents are\n\t\t\t"
1214 "copied to the new image file, excluding data that\n\t\t\t"
1215 "is written after the command is started.\n\t\t\t"
1216 "The -n flag requests QEMU to reuse the image found\n\t\t\t"
1217 "in new-image-file, instead of recreating it from scratch.\n\t\t\t"
1218 "The -f flag requests QEMU to copy the whole disk,\n\t\t\t"
Pavel Butsykin13b94142016-07-22 11:17:52 +03001219 "so that the result does not need a backing file.\n\t\t\t"
1220 "The -c flag requests QEMU to compress backup data\n\t\t\t"
1221 "(if the target format supports it).\n\t\t\t",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001222 .cmd = hmp_drive_backup,
Stefan Hajnoczide909302013-06-26 14:11:58 +02001223 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001224SRST
1225``drive_backup``
zhaolichange3a6e0d2020-09-17 15:50:20 +08001226 Start a point-in-time copy of a block device to a specified target.
Peter Maydella6b30bc2020-02-28 15:36:06 +00001227ERST
Stefan Hajnoczide909302013-06-26 14:11:58 +02001228
1229 {
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001230 .name = "drive_add",
Kevin Wolfabb21ac2016-02-23 17:33:24 +01001231 .args_type = "node:-n,pci_addr:s,opts:s",
1232 .params = "[-n] [[<domain>:]<bus>:]<slot>\n"
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001233 "[file=file][,if=type][,bus=n]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001234 "[,unit=m][,media=d][,index=i]\n"
Stefan Hajnoczifb0490f2011-11-17 13:40:32 +00001235 "[,snapshot=on|off][,cache=on|off]\n"
1236 "[,readonly=on|off][,copy-on-read=on|off]",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001237 .help = "add drive to PCI storage controller",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001238 .cmd = hmp_drive_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001239 },
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001240
Peter Maydella6b30bc2020-02-28 15:36:06 +00001241SRST
1242``drive_add``
1243 Add drive to PCI storage controller.
1244ERST
Blue Swirl23130862009-06-06 08:22:04 +00001245
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001246 {
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001247 .name = "pcie_aer_inject_error",
1248 .args_type = "advisory_non_fatal:-a,correctable:-c,"
1249 "id:s,error_status:s,"
1250 "header0:i?,header1:i?,header2:i?,header3:i?,"
1251 "prefix0:i?,prefix1:i?,prefix2:i?,prefix3:i?",
1252 .params = "[-a] [-c] id "
1253 "<error_status> [<tlp header> [<tlp header prefix>]]",
1254 .help = "inject pcie aer error\n\t\t\t"
1255 " -a for advisory non fatal error\n\t\t\t"
1256 " -c for correctable error\n\t\t\t"
1257 "<id> = qdev device id\n\t\t\t"
1258 "<error_status> = error string or 32bit\n\t\t\t"
Zenghui Yu8ad4e452020-12-04 11:09:53 +08001259 "<tlp header> = 32bit x 4\n\t\t\t"
1260 "<tlp header prefix> = 32bit x 4",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001261 .cmd = hmp_pcie_aer_inject_error,
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001262 },
1263
Peter Maydella6b30bc2020-02-28 15:36:06 +00001264SRST
1265``pcie_aer_inject_error``
1266 Inject PCIe AER error
1267ERST
Isaku Yamahata2ae63bd2010-12-24 12:14:14 +09001268
1269 {
Markus Armbrusterae82d322010-03-25 17:22:40 +01001270 .name = "netdev_add",
1271 .args_type = "netdev:O",
Nikolay Nikolaev03ce5742014-06-10 13:02:16 +03001272 .params = "[user|tap|socket|vde|bridge|hubport|netmap|vhost-user],id=str[,prop=value][,...]",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001273 .help = "add host network device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001274 .cmd = hmp_netdev_add,
Hani Benhabilesb162b492014-05-07 23:41:31 +01001275 .command_completion = netdev_add_completion,
Paolo Bonzini48f596c2021-05-11 11:39:55 -04001276 .flags = "p",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001277 },
1278
Peter Maydella6b30bc2020-02-28 15:36:06 +00001279SRST
1280``netdev_add``
1281 Add host network device.
1282ERST
Markus Armbrusterae82d322010-03-25 17:22:40 +01001283
1284 {
1285 .name = "netdev_del",
1286 .args_type = "id:s",
1287 .params = "id",
1288 .help = "remove host network device",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001289 .cmd = hmp_netdev_del,
Hani Benhabiles11b389f2014-05-07 23:41:32 +01001290 .command_completion = netdev_del_completion,
Paolo Bonzini48f596c2021-05-11 11:39:55 -04001291 .flags = "p",
Markus Armbrusterae82d322010-03-25 17:22:40 +01001292 },
1293
Peter Maydella6b30bc2020-02-28 15:36:06 +00001294SRST
1295``netdev_del``
1296 Remove host network device.
1297ERST
Markus Armbrusterae82d322010-03-25 17:22:40 +01001298
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001299 {
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001300 .name = "object_add",
Kevin Wolfda0a9322021-02-17 15:27:54 +01001301 .args_type = "object:S",
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001302 .params = "[qom-type=]type,id=str[,prop=value][,...]",
1303 .help = "create QOM object",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001304 .cmd = hmp_object_add,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001305 .command_completion = object_add_completion,
Paolo Bonzini9e330132020-11-03 04:39:02 -05001306 .flags = "p",
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001307 },
1308
Peter Maydella6b30bc2020-02-28 15:36:06 +00001309SRST
1310``object_add``
1311 Create QOM object.
1312ERST
Paolo Bonzinicff8b2c2013-12-20 23:21:10 +01001313
1314 {
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001315 .name = "object_del",
1316 .args_type = "id:s",
1317 .params = "id",
1318 .help = "destroy QOM object",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001319 .cmd = hmp_object_del,
Hani Benhabilesbfa40f72014-04-13 16:25:06 +01001320 .command_completion = object_del_completion,
Paolo Bonzini9e330132020-11-03 04:39:02 -05001321 .flags = "p",
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001322 },
1323
Peter Maydella6b30bc2020-02-28 15:36:06 +00001324SRST
1325``object_del``
1326 Destroy QOM object.
1327ERST
Paolo Bonziniab2d0532013-12-20 23:21:09 +01001328
Blue Swirl23130862009-06-06 08:22:04 +00001329#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001330 {
1331 .name = "hostfwd_add",
Thomas Huthb4983c52019-12-05 11:41:09 +01001332 .args_type = "arg1:s,arg2:s?",
1333 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001334 .help = "redirect TCP or UDP connections from host to guest (requires -net user)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001335 .cmd = hmp_hostfwd_add,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001336 },
Markus Armbruster21413d62010-05-04 13:20:30 +02001337#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001338SRST
1339``hostfwd_add``
1340 Redirect TCP or UDP connections from host to guest (requires -net user).
1341ERST
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001342
Markus Armbruster21413d62010-05-04 13:20:30 +02001343#ifdef CONFIG_SLIRP
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001344 {
1345 .name = "hostfwd_remove",
Thomas Huthb4983c52019-12-05 11:41:09 +01001346 .args_type = "arg1:s,arg2:s?",
1347 .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001348 .help = "remove host-to-guest TCP or UDP redirection",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001349 .cmd = hmp_hostfwd_remove,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001350 },
1351
Blue Swirl23130862009-06-06 08:22:04 +00001352#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001353SRST
1354``hostfwd_remove``
1355 Remove host-to-guest TCP or UDP redirection.
1356ERST
Blue Swirl23130862009-06-06 08:22:04 +00001357
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001358 {
1359 .name = "balloon",
Luiz Capitulino3b0bd6e2009-12-18 13:25:05 -02001360 .args_type = "value:M",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001361 .params = "target",
Riccardo Magliocchetti3c056132010-05-19 18:49:28 +02001362 .help = "request VM to change its memory allocation (in MB)",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001363 .cmd = hmp_balloon,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001364 },
1365
Peter Maydella6b30bc2020-02-28 15:36:06 +00001366SRST
1367``balloon`` *value*
1368 Request VM to change its memory allocation to *value* (in MB).
1369ERST
Blue Swirl23130862009-06-06 08:22:04 +00001370
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001371 {
1372 .name = "set_link",
Markus Armbrusterc9b26a42010-03-26 09:07:10 +01001373 .args_type = "name:s,up:b",
1374 .params = "name on|off",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001375 .help = "change the link status of a network adapter",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001376 .cmd = hmp_set_link,
Hani Benhabiles40d19392014-05-07 23:41:30 +01001377 .command_completion = set_link_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001378 },
1379
Peter Maydella6b30bc2020-02-28 15:36:06 +00001380SRST
1381``set_link`` *name* ``[on|off]``
1382 Switch link *name* on (i.e. up) or off (i.e. down).
1383ERST
Blue Swirl23130862009-06-06 08:22:04 +00001384
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001385 {
1386 .name = "watchdog_action",
1387 .args_type = "action:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001388 .params = "[reset|shutdown|poweroff|pause|debug|none]",
1389 .help = "change watchdog action",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001390 .cmd = hmp_watchdog_action,
Hani Benhabilesd0ece342014-05-27 23:39:31 +01001391 .command_completion = watchdog_action_completion,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001392 },
1393
Peter Maydella6b30bc2020-02-28 15:36:06 +00001394SRST
1395``watchdog_action``
1396 Change watchdog action.
1397ERST
Blue Swirl23130862009-06-06 08:22:04 +00001398
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001399 {
Paolo Bonzini40577252012-08-23 11:53:04 +02001400 .name = "nbd_server_start",
1401 .args_type = "all:-a,writable:-w,uri:s",
1402 .params = "nbd_server_start [-a] [-w] host:port",
1403 .help = "serve block devices on the given host and port",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001404 .cmd = hmp_nbd_server_start,
Paolo Bonzini40577252012-08-23 11:53:04 +02001405 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001406SRST
1407``nbd_server_start`` *host*:*port*
1408 Start an NBD server on the given host and/or port. If the ``-a``
1409 option is included, all of the virtual machine's block devices that
1410 have an inserted media on them are automatically exported; in this case,
1411 the ``-w`` option makes the devices writable too.
1412ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001413
1414 {
1415 .name = "nbd_server_add",
Eric Blakedba49322018-01-09 13:28:02 -06001416 .args_type = "writable:-w,device:B,name:s?",
1417 .params = "nbd_server_add [-w] device [name]",
Paolo Bonzini40577252012-08-23 11:53:04 +02001418 .help = "export a block device via NBD",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001419 .cmd = hmp_nbd_server_add,
Paolo Bonzini40577252012-08-23 11:53:04 +02001420 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001421SRST
1422``nbd_server_add`` *device* [ *name* ]
1423 Export a block device through QEMU's NBD server, which must be started
1424 beforehand with ``nbd_server_start``. The ``-w`` option makes the
1425 exported device writable too. The export name is controlled by *name*,
1426 defaulting to *device*.
1427ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001428
1429 {
Eric Blake08fb10a2018-01-25 08:45:57 -06001430 .name = "nbd_server_remove",
1431 .args_type = "force:-f,name:s",
1432 .params = "nbd_server_remove [-f] name",
1433 .help = "remove an export previously exposed via NBD",
1434 .cmd = hmp_nbd_server_remove,
1435 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001436SRST
1437``nbd_server_remove [-f]`` *name*
1438 Stop exporting a block device through QEMU's NBD server, which was
1439 previously started with ``nbd_server_add``. The ``-f``
1440 option forces the server to drop the export immediately even if
1441 clients are connected; otherwise the command fails unless there are no
1442 clients.
1443ERST
Eric Blake08fb10a2018-01-25 08:45:57 -06001444
1445 {
Paolo Bonzini40577252012-08-23 11:53:04 +02001446 .name = "nbd_server_stop",
1447 .args_type = "",
1448 .params = "nbd_server_stop",
1449 .help = "stop serving block devices using the NBD protocol",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001450 .cmd = hmp_nbd_server_stop,
Paolo Bonzini40577252012-08-23 11:53:04 +02001451 },
Peter Maydella6b30bc2020-02-28 15:36:06 +00001452SRST
1453``nbd_server_stop``
1454 Stop the QEMU embedded NBD server.
1455ERST
Paolo Bonzini40577252012-08-23 11:53:04 +02001456
1457
Huang Ying79c4f6b2009-06-23 10:05:14 +08001458#if defined(TARGET_I386)
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001459
1460 {
1461 .name = "mce",
Jin Dongming31ce5e02010-12-10 17:21:02 +09001462 .args_type = "broadcast:-b,cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l",
1463 .params = "[-b] cpu bank status mcgstatus addr misc",
1464 .help = "inject a MCE on the given CPU [and broadcast to other CPUs with -b option]",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001465 .cmd = hmp_mce,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001466 },
1467
Huang Ying79c4f6b2009-06-23 10:05:14 +08001468#endif
Peter Maydella6b30bc2020-02-28 15:36:06 +00001469SRST
1470``mce`` *cpu* *bank* *status* *mcgstatus* *addr* *misc*
1471 Inject an MCE on the given CPU (x86 only).
1472ERST
Huang Ying79c4f6b2009-06-23 10:05:14 +08001473
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001474 {
1475 .name = "getfd",
1476 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001477 .params = "getfd name",
1478 .help = "receive a file descriptor via SCM rights and assign it a name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001479 .cmd = hmp_getfd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001480 },
1481
Peter Maydella6b30bc2020-02-28 15:36:06 +00001482SRST
1483``getfd`` *fdname*
1484 If a file descriptor is passed alongside this command using the SCM_RIGHTS
1485 mechanism on unix sockets, it is stored using the name *fdname* for
1486 later use by other monitor commands.
1487ERST
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001488
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001489 {
1490 .name = "closefd",
1491 .args_type = "fdname:s",
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001492 .params = "closefd name",
1493 .help = "close a file descriptor previously passed via SCM rights",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001494 .cmd = hmp_closefd,
Luiz Capitulinod7f9b682009-10-07 13:41:50 -03001495 },
1496
Peter Maydella6b30bc2020-02-28 15:36:06 +00001497SRST
1498``closefd`` *fdname*
1499 Close the file descriptor previously assigned to *fdname* using the
1500 ``getfd`` command. This is only needed if the file descriptor was never
1501 used by another monitor command.
1502ERST
Mark McLoughlinf07918f2009-07-22 09:11:40 +01001503
Luiz Capitulinoa3a55a22009-12-04 15:24:09 -02001504 {
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001505 .name = "block_set_io_throttle",
1506 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
1507 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
1508 .help = "change I/O throttle limits for a block drive",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001509 .cmd = hmp_block_set_io_throttle,
Zhi Yong Wu727f0052011-11-08 13:00:31 +08001510 },
1511
Peter Maydella6b30bc2020-02-28 15:36:06 +00001512SRST
1513``block_set_io_throttle`` *device* *bps* *bps_rd* *bps_wr* *iops* *iops_rd* *iops_wr*
1514 Change I/O throttle limits for a block drive to
1515 *bps* *bps_rd* *bps_wr* *iops* *iops_rd* *iops_wr*.
1516 *device* can be a block device name, a qdev ID or a QOM path.
1517ERST
Jan Kiszkab40292e2010-05-31 14:43:31 -03001518
Jan Kiszka33572ec2010-05-31 14:43:30 -03001519 {
Gerd Hoffmann75721502010-10-07 12:22:54 +02001520 .name = "set_password",
Stefan Reiter675fd3c2022-02-25 09:49:49 +01001521 .args_type = "protocol:s,password:s,display:-ds,connected:s?",
1522 .params = "protocol password [-d display] [action-if-connected]",
Gerd Hoffmann75721502010-10-07 12:22:54 +02001523 .help = "set spice/vnc password",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001524 .cmd = hmp_set_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001525 },
1526
Peter Maydella6b30bc2020-02-28 15:36:06 +00001527SRST
Stefan Reiter675fd3c2022-02-25 09:49:49 +01001528``set_password [ vnc | spice ] password [ -d display ] [ action-if-connected ]``
1529 Change spice/vnc password. *display* can be used with 'vnc' to specify
1530 which display to set the password on. *action-if-connected* specifies
1531 what should happen in case a connection is established: *fail* makes
1532 the password change fail. *disconnect* changes the password and
Markus Armbruster89825522021-09-09 10:12:19 +02001533 disconnects the client. *keep* changes the password and keeps the
1534 connection up. *keep* is the default.
Peter Maydella6b30bc2020-02-28 15:36:06 +00001535ERST
Gerd Hoffmann75721502010-10-07 12:22:54 +02001536
1537 {
1538 .name = "expire_password",
Stefan Reiter675fd3c2022-02-25 09:49:49 +01001539 .args_type = "protocol:s,time:s,display:-ds",
1540 .params = "protocol time [-d display]",
Gerd Hoffmann75721502010-10-07 12:22:54 +02001541 .help = "set spice/vnc password expire-time",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001542 .cmd = hmp_expire_password,
Gerd Hoffmann75721502010-10-07 12:22:54 +02001543 },
1544
Peter Maydella6b30bc2020-02-28 15:36:06 +00001545SRST
Stefan Reiter675fd3c2022-02-25 09:49:49 +01001546``expire_password [ vnc | spice ] expire-time [ -d display ]``
1547 Specify when a password for spice/vnc becomes invalid.
1548 *display* behaves the same as in ``set_password``.
1549 *expire-time* accepts:
Peter Maydella6b30bc2020-02-28 15:36:06 +00001550
1551 ``now``
1552 Invalidate password instantly.
1553 ``never``
1554 Password stays valid forever.
1555 ``+``\ *nsec*
1556 Password stays valid for *nsec* seconds starting now.
1557 *nsec*
1558 Password is invalidated at the given time. *nsec* are the seconds
1559 passed since 1970, i.e. unix epoch.
1560
1561ERST
Gerd Hoffmann75721502010-10-07 12:22:54 +02001562
Gerd Hoffmann46920822013-02-28 08:46:10 +01001563 {
1564 .name = "chardev-add",
1565 .args_type = "args:s",
1566 .params = "args",
1567 .help = "add chardev",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001568 .cmd = hmp_chardev_add,
Hani Benhabiles13e315d2014-05-07 23:41:29 +01001569 .command_completion = chardev_add_completion,
Gerd Hoffmann46920822013-02-28 08:46:10 +01001570 },
1571
Peter Maydella6b30bc2020-02-28 15:36:06 +00001572SRST
1573``chardev-add`` *args*
1574 chardev-add accepts the same parameters as the -chardev command line switch.
1575ERST
Anton Nefedov75b60162017-07-06 15:08:57 +03001576
1577 {
1578 .name = "chardev-change",
1579 .args_type = "id:s,args:s",
1580 .params = "id args",
1581 .help = "change chardev",
1582 .cmd = hmp_chardev_change,
1583 },
1584
Peter Maydella6b30bc2020-02-28 15:36:06 +00001585SRST
1586``chardev-change`` *args*
1587 chardev-change accepts existing chardev *id* and then the same arguments
1588 as the -chardev command line switch (except for "id").
1589ERST
Gerd Hoffmann46920822013-02-28 08:46:10 +01001590
1591 {
1592 .name = "chardev-remove",
1593 .args_type = "id:s",
1594 .params = "id",
1595 .help = "remove chardev",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001596 .cmd = hmp_chardev_remove,
Hani Benhabiles6297d9a2014-05-07 23:41:28 +01001597 .command_completion = chardev_remove_completion,
Gerd Hoffmann46920822013-02-28 08:46:10 +01001598 },
1599
Peter Maydella6b30bc2020-02-28 15:36:06 +00001600SRST
1601``chardev-remove`` *id*
1602 Removes the chardev *id*.
1603ERST
Gerd Hoffmannf1088902012-12-19 10:33:40 +01001604
1605 {
Stefan Fritschbd1d5ad2017-06-11 09:48:17 +02001606 .name = "chardev-send-break",
1607 .args_type = "id:s",
1608 .params = "id",
1609 .help = "send a break on chardev",
1610 .cmd = hmp_chardev_send_break,
1611 .command_completion = chardev_remove_completion,
1612 },
1613
Peter Maydella6b30bc2020-02-28 15:36:06 +00001614SRST
1615``chardev-send-break`` *id*
1616 Send a break on the chardev *id*.
1617ERST
Stefan Fritschbd1d5ad2017-06-11 09:48:17 +02001618
1619 {
Kevin Wolf587da2c2013-06-05 14:19:41 +02001620 .name = "qemu-io",
Kevin Wolf89b6fc42019-12-17 15:13:34 +01001621 .args_type = "qdev:-d,device:B,command:s",
1622 .params = "[-d] [device] \"[command]\"",
1623 .help = "run a qemu-io command on a block device\n\t\t\t"
1624 "-d: [device] is a device ID rather than a "
1625 "drive ID or node name",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001626 .cmd = hmp_qemu_io,
Kevin Wolf587da2c2013-06-05 14:19:41 +02001627 },
1628
Peter Maydella6b30bc2020-02-28 15:36:06 +00001629SRST
1630``qemu-io`` *device* *command*
1631 Executes a qemu-io command on the given block device.
1632ERST
Kevin Wolf587da2c2013-06-05 14:19:41 +02001633
1634 {
Andreas Färber89d7fa92014-05-07 18:08:29 +02001635 .name = "qom-list",
1636 .args_type = "path:s?",
1637 .params = "path",
1638 .help = "list QOM properties",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001639 .cmd = hmp_qom_list,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001640 .flags = "p",
Andreas Färber89d7fa92014-05-07 18:08:29 +02001641 },
1642
Peter Maydella6b30bc2020-02-28 15:36:06 +00001643SRST
1644``qom-list`` [*path*]
1645 Print QOM properties of object at location *path*
1646ERST
Andreas Färber89d7fa92014-05-07 18:08:29 +02001647
1648 {
Dr. David Alan Gilbert89cf4fe2020-05-20 16:11:07 +01001649 .name = "qom-get",
1650 .args_type = "path:s,property:s",
1651 .params = "path property",
1652 .help = "print QOM property",
1653 .cmd = hmp_qom_get,
1654 .flags = "p",
1655 },
1656
1657SRST
1658``qom-get`` *path* *property*
1659 Print QOM property *property* of object at location *path*
1660ERST
1661
1662 {
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001663 .name = "qom-set",
David Hildenbrand2d9e3dd2020-06-10 09:51:53 +02001664 .args_type = "json:-j,path:s,property:s,value:S",
1665 .params = "[-j] path property value",
1666 .help = "set QOM property.\n\t\t\t"
1667 "-j: the value is specified in json format.",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001668 .cmd = hmp_qom_set,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001669 .flags = "p",
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001670 },
1671
Peter Maydella6b30bc2020-02-28 15:36:06 +00001672SRST
1673``qom-set`` *path* *property* *value*
1674 Set QOM property *property* of object at location *path* to value *value*
1675ERST
Andreas Färberc0e6ee92014-05-07 19:48:15 +02001676
1677 {
Pavel Dovgalyuke7510672020-10-03 20:13:26 +03001678 .name = "replay_break",
Alex Bennéeae49ce02021-05-20 18:43:01 +01001679 .args_type = "icount:l",
Pavel Dovgalyuke7510672020-10-03 20:13:26 +03001680 .params = "icount",
1681 .help = "set breakpoint at the specified instruction count",
1682 .cmd = hmp_replay_break,
1683 },
1684
1685SRST
1686``replay_break`` *icount*
1687 Set replay breakpoint at instruction count *icount*.
1688 Execution stops when the specified instruction is reached.
1689 There can be at most one breakpoint. When breakpoint is set, any prior
1690 one is removed. The breakpoint may be set only in replay mode and only
1691 "in the future", i.e. at instruction counts greater than the current one.
1692 The current instruction count can be observed with ``info replay``.
1693ERST
1694
1695 {
1696 .name = "replay_delete_break",
1697 .args_type = "",
1698 .params = "",
1699 .help = "remove replay breakpoint",
1700 .cmd = hmp_replay_delete_break,
1701 },
1702
1703SRST
1704``replay_delete_break``
1705 Remove replay breakpoint which was previously set with ``replay_break``.
1706 The command is ignored when there are no replay breakpoints.
1707ERST
1708
1709 {
Pavel Dovgalyukf6baed32020-10-03 20:13:31 +03001710 .name = "replay_seek",
Alex Bennéeae49ce02021-05-20 18:43:01 +01001711 .args_type = "icount:l",
Pavel Dovgalyukf6baed32020-10-03 20:13:31 +03001712 .params = "icount",
1713 .help = "replay execution to the specified instruction count",
1714 .cmd = hmp_replay_seek,
1715 },
1716
1717SRST
1718``replay_seek`` *icount*
1719 Automatically proceed to the instruction count *icount*, when
1720 replaying the execution. The command automatically loads nearest
1721 snapshot and replays the execution to find the desired instruction.
1722 When there is no preceding snapshot or the execution is not replayed,
1723 then the command fails.
1724 *icount* for the reference may be observed with ``info replay`` command.
1725ERST
1726
1727 {
Jan Kiszka33572ec2010-05-31 14:43:30 -03001728 .name = "info",
1729 .args_type = "item:s?",
1730 .params = "[subcommand]",
1731 .help = "show various information about the system state",
Marc-André Lureau2b9e3572016-09-12 13:19:06 +04001732 .cmd = hmp_info_help,
Kevin Wolfa0cd5e12019-06-13 17:33:56 +02001733 .sub_table = hmp_info_cmds,
Dr. David Alan Gilbert8c7c7ec2018-06-20 16:39:45 +01001734 .flags = "p",
Jan Kiszka33572ec2010-05-31 14:43:30 -03001735 },
1736
Peter Xua4a571d2021-06-07 09:11:57 +08001737SRST
1738``calc_dirty_rate`` *second*
1739 Start a round of dirty rate measurement with the period specified in *second*.
1740 The result of the dirty rate measurement may be observed with ``info
1741 dirty_rate`` command.
1742ERST
1743
1744 {
1745 .name = "calc_dirty_rate",
Hyman Huang(黄勇)826b8bc2021-07-20 23:19:17 +08001746 .args_type = "dirty_ring:-r,dirty_bitmap:-b,second:l,sample_pages_per_GB:l?",
1747 .params = "[-r] [-b] second [sample_pages_per_GB]",
1748 .help = "start a round of guest dirty rate measurement (using -r to"
1749 "\n\t\t\t specify dirty ring as the method of calculation and"
1750 "\n\t\t\t -b to specify dirty bitmap as method of calculation)",
Peter Xua4a571d2021-06-07 09:11:57 +08001751 .cmd = hmp_calc_dirty_rate,
1752 },