]>
Commit | Line | Data |
---|---|---|
3c95fdef PM |
1 | HXCOMM Use DEFHEADING() to define headings in both help text and rST. |
2 | HXCOMM Text between SRST and ERST is copied to the rST version and | |
3 | HXCOMM discarded from C version. | |
2313086a BS |
4 | HXCOMM DEF(command, args, callback, arg_string, help) is used to construct |
5 | HXCOMM monitor commands | |
3c95fdef | 6 | HXCOMM HXCOMM can be used for comments, discarded from both rST and C. |
2313086a | 7 | |
2313086a | 8 | |
d7f9b689 LC |
9 | { |
10 | .name = "help|?", | |
129be006 | 11 | .args_type = "name:S?", |
d7f9b689 LC |
12 | .params = "[cmd]", |
13 | .help = "show the help", | |
2b9e3576 | 14 | .cmd = do_help_cmd, |
31785f1b | 15 | .flags = "p", |
d7f9b689 LC |
16 | }, |
17 | ||
a6b30bca PM |
18 | SRST |
19 | ``help`` or ``?`` [*cmd*] | |
20 | Show the help for all commands or just for command *cmd*. | |
21 | ERST | |
2313086a | 22 | |
d7f9b689 LC |
23 | { |
24 | .name = "commit", | |
25 | .args_type = "device:B", | |
d7f9b689 LC |
26 | .params = "device|all", |
27 | .help = "commit changes to the disk images (if -snapshot is used) or backing files", | |
2b9e3576 | 28 | .cmd = hmp_commit, |
d7f9b689 LC |
29 | }, |
30 | ||
a6b30bca PM |
31 | SRST |
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. | |
40 | ERST | |
2313086a | 41 | |
d7f9b689 | 42 | { |
ff688cd2 | 43 | .name = "quit|q", |
d7f9b689 | 44 | .args_type = "", |
d7f9b689 LC |
45 | .params = "", |
46 | .help = "quit the emulator", | |
2b9e3576 | 47 | .cmd = hmp_quit, |
ebe34444 | 48 | .flags = "p", |
d7f9b689 LC |
49 | }, |
50 | ||
a6b30bca | 51 | SRST |
ff688cd2 | 52 | ``quit`` or ``q`` |
a6b30bca PM |
53 | Quit the emulator. |
54 | ERST | |
8e8581e6 DDAG |
55 | |
56 | { | |
57 | .name = "exit_preconfig", | |
58 | .args_type = "", | |
59 | .params = "", | |
60 | .help = "exit the preconfig state", | |
61 | .cmd = hmp_exit_preconfig, | |
62 | .flags = "p", | |
63 | }, | |
64 | ||
a6b30bca PM |
65 | SRST |
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). | |
72 | ERST | |
2313086a | 73 | |
6d4a2b3a CH |
74 | { |
75 | .name = "block_resize", | |
76 | .args_type = "device:B,size:o", | |
77 | .params = "device size", | |
78 | .help = "resize a block image", | |
2b9e3576 | 79 | .cmd = hmp_block_resize, |
eb94b81a | 80 | .coroutine = true, |
6d4a2b3a CH |
81 | }, |
82 | ||
a6b30bca PM |
83 | SRST |
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. | |
89 | ERST | |
6d4a2b3a | 90 | |
12bd451f SH |
91 | { |
92 | .name = "block_stream", | |
c83c66c3 SH |
93 | .args_type = "device:B,speed:o?,base:s?", |
94 | .params = "device [speed [base]]", | |
12bd451f | 95 | .help = "copy data from a backing file into a block device", |
2b9e3576 | 96 | .cmd = hmp_block_stream, |
12bd451f SH |
97 | }, |
98 | ||
a6b30bca PM |
99 | SRST |
100 | ``block_stream`` | |
101 | Copy data from a backing file into a block device. | |
102 | ERST | |
2d47c6e9 SH |
103 | |
104 | { | |
105 | .name = "block_job_set_speed", | |
882ec7ce SH |
106 | .args_type = "device:B,speed:o", |
107 | .params = "device speed", | |
2d47c6e9 | 108 | .help = "set maximum speed for a background block operation", |
2b9e3576 | 109 | .cmd = hmp_block_job_set_speed, |
2d47c6e9 SH |
110 | }, |
111 | ||
a6b30bca PM |
112 | SRST |
113 | ``block_job_set_speed`` | |
114 | Set maximum speed for a background block operation. | |
115 | ERST | |
370521a1 SH |
116 | |
117 | { | |
118 | .name = "block_job_cancel", | |
6e37fb81 PB |
119 | .args_type = "force:-f,device:B", |
120 | .params = "[-f] device", | |
121 | .help = "stop an active background block operation (use -f" | |
b76e4458 LL |
122 | "\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)", | |
2b9e3576 | 124 | .cmd = hmp_block_job_cancel, |
370521a1 SH |
125 | }, |
126 | ||
a6b30bca PM |
127 | SRST |
128 | ``block_job_cancel`` | |
129 | Stop an active background block operation (streaming, mirroring). | |
130 | ERST | |
aeae883b PB |
131 | |
132 | { | |
133 | .name = "block_job_complete", | |
134 | .args_type = "device:B", | |
135 | .params = "device", | |
136 | .help = "stop an active background block operation", | |
2b9e3576 | 137 | .cmd = hmp_block_job_complete, |
aeae883b PB |
138 | }, |
139 | ||
a6b30bca PM |
140 | SRST |
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. | |
144 | ERST | |
6e37fb81 PB |
145 | |
146 | { | |
147 | .name = "block_job_pause", | |
148 | .args_type = "device:B", | |
149 | .params = "device", | |
150 | .help = "pause an active background block operation", | |
2b9e3576 | 151 | .cmd = hmp_block_job_pause, |
6e37fb81 PB |
152 | }, |
153 | ||
a6b30bca PM |
154 | SRST |
155 | ``block_job_pause`` | |
156 | Pause an active block streaming operation. | |
157 | ERST | |
6e37fb81 PB |
158 | |
159 | { | |
160 | .name = "block_job_resume", | |
161 | .args_type = "device:B", | |
162 | .params = "device", | |
163 | .help = "resume a paused background block operation", | |
2b9e3576 | 164 | .cmd = hmp_block_job_resume, |
6e37fb81 PB |
165 | }, |
166 | ||
a6b30bca PM |
167 | SRST |
168 | ``block_job_resume`` | |
169 | Resume a paused block streaming operation. | |
170 | ERST | |
6d4a2b3a | 171 | |
d7f9b689 LC |
172 | { |
173 | .name = "eject", | |
78d714e0 | 174 | .args_type = "force:-f,device:B", |
d7f9b689 LC |
175 | .params = "[-f] device", |
176 | .help = "eject a removable medium (use -f to force it)", | |
2b9e3576 | 177 | .cmd = hmp_eject, |
d7f9b689 LC |
178 | }, |
179 | ||
a6b30bca PM |
180 | SRST |
181 | ``eject [-f]`` *device* | |
182 | Eject a removable medium (use -f to force it). | |
183 | ERST | |
9063f814 RH |
184 | |
185 | { | |
186 | .name = "drive_del", | |
f7bdc41a | 187 | .args_type = "id:B", |
9063f814 RH |
188 | .params = "device", |
189 | .help = "remove host block device", | |
2b9e3576 | 190 | .cmd = hmp_drive_del, |
9063f814 RH |
191 | }, |
192 | ||
a6b30bca PM |
193 | SRST |
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). | |
201 | ERST | |
2313086a | 202 | |
d7f9b689 LC |
203 | { |
204 | .name = "change", | |
baead0ab HR |
205 | .args_type = "device:B,target:F,arg:s?,read-only-mode:s?", |
206 | .params = "device filename [format [read-only-mode]]", | |
d7f9b689 | 207 | .help = "change a removable medium, optional format", |
2b9e3576 | 208 | .cmd = hmp_change, |
d7f9b689 LC |
209 | }, |
210 | ||
a6b30bca PM |
211 | SRST |
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 | ||
a6b30bca PM |
234 | ``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 | ||
243 | ERST | |
2313086a | 244 | |
d7f9b689 LC |
245 | { |
246 | .name = "screendump", | |
f771c544 TH |
247 | .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'", | |
2b9e3576 | 251 | .cmd = hmp_screendump, |
0d9b90ce | 252 | .coroutine = true, |
d7f9b689 LC |
253 | }, |
254 | ||
a6b30bca PM |
255 | SRST |
256 | ``screendump`` *filename* | |
257 | Save screen into PPM image *filename*. | |
258 | ERST | |
2313086a | 259 | |
d7f9b689 LC |
260 | { |
261 | .name = "logfile", | |
262 | .args_type = "filename:F", | |
d7f9b689 LC |
263 | .params = "filename", |
264 | .help = "output logs to 'filename'", | |
2b9e3576 | 265 | .cmd = hmp_logfile, |
d7f9b689 LC |
266 | }, |
267 | ||
a6b30bca PM |
268 | SRST |
269 | ``logfile`` *filename* | |
270 | Output logs to *filename*. | |
271 | ERST | |
2313086a | 272 | |
22890ab5 PS |
273 | { |
274 | .name = "trace-event", | |
77e2b172 LV |
275 | .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)", | |
2b9e3576 | 279 | .cmd = hmp_trace_event, |
987bd270 | 280 | .command_completion = trace_event_completion, |
22890ab5 PS |
281 | }, |
282 | ||
a6b30bca PM |
283 | SRST |
284 | ``trace-event`` | |
285 | changes status of a trace event | |
286 | ERST | |
c5ceb523 | 287 | |
c45a8168 | 288 | #if defined(CONFIG_TRACE_SIMPLE) |
c5ceb523 SH |
289 | { |
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", | |
2b9e3576 | 294 | .cmd = hmp_trace_file, |
c5ceb523 SH |
295 | }, |
296 | ||
a6b30bca PM |
297 | SRST |
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. | |
301 | ERST | |
22890ab5 PS |
302 | #endif |
303 | ||
d7f9b689 LC |
304 | { |
305 | .name = "log", | |
306 | .args_type = "items:s", | |
d7f9b689 | 307 | .params = "item1[,...]", |
989b697d | 308 | .help = "activate logging of the specified items", |
2b9e3576 | 309 | .cmd = hmp_log, |
d7f9b689 LC |
310 | }, |
311 | ||
a6b30bca PM |
312 | SRST |
313 | ``log`` *item1*\ [,...] | |
314 | Activate logging of the specified items. | |
315 | ERST | |
2313086a | 316 | |
d7f9b689 LC |
317 | { |
318 | .name = "savevm", | |
319 | .args_type = "name:s?", | |
6ca08045 DHB |
320 | .params = "tag", |
321 | .help = "save a VM snapshot. If no tag is provided, a new snapshot is created", | |
2b9e3576 | 322 | .cmd = hmp_savevm, |
d7f9b689 LC |
323 | }, |
324 | ||
a6b30bca PM |
325 | SRST |
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. | |
334 | ERST | |
2313086a | 335 | |
d7f9b689 LC |
336 | { |
337 | .name = "loadvm", | |
338 | .args_type = "name:s", | |
6ca08045 DHB |
339 | .params = "tag", |
340 | .help = "restore a VM snapshot from its tag", | |
2b9e3576 | 341 | .cmd = hmp_loadvm, |
b21631f3 | 342 | .command_completion = loadvm_completion, |
d7f9b689 LC |
343 | }, |
344 | ||
a6b30bca PM |
345 | SRST |
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. | |
351 | ERST | |
2313086a | 352 | |
d7f9b689 LC |
353 | { |
354 | .name = "delvm", | |
355 | .args_type = "name:s", | |
6ca08045 DHB |
356 | .params = "tag", |
357 | .help = "delete a VM snapshot from its tag", | |
2b9e3576 | 358 | .cmd = hmp_delvm, |
b21631f3 | 359 | .command_completion = delvm_completion, |
d7f9b689 LC |
360 | }, |
361 | ||
a6b30bca PM |
362 | SRST |
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. | |
368 | ERST | |
2313086a | 369 | |
d7f9b689 LC |
370 | { |
371 | .name = "singlestep", | |
372 | .args_type = "option:s?", | |
d7f9b689 LC |
373 | .params = "[on|off]", |
374 | .help = "run emulation in singlestep mode or switch to normal mode", | |
2b9e3576 | 375 | .cmd = hmp_singlestep, |
d7f9b689 LC |
376 | }, |
377 | ||
a6b30bca PM |
378 | SRST |
379 | ``singlestep [off]`` | |
380 | Run the emulation in single step mode. | |
381 | If called with option off, the emulation returns to normal mode. | |
382 | ERST | |
2313086a | 383 | |
d7f9b689 | 384 | { |
de4cf848 | 385 | .name = "stop|s", |
d7f9b689 | 386 | .args_type = "", |
d7f9b689 LC |
387 | .params = "", |
388 | .help = "stop emulation", | |
2b9e3576 | 389 | .cmd = hmp_stop, |
d7f9b689 LC |
390 | }, |
391 | ||
a6b30bca | 392 | SRST |
de4cf848 | 393 | ``stop`` or ``s`` |
a6b30bca PM |
394 | Stop emulation. |
395 | ERST | |
2313086a | 396 | |
d7f9b689 | 397 | { |
ff688cd2 | 398 | .name = "cont|c", |
d7f9b689 | 399 | .args_type = "", |
d7f9b689 LC |
400 | .params = "", |
401 | .help = "resume emulation", | |
2b9e3576 | 402 | .cmd = hmp_cont, |
d7f9b689 LC |
403 | }, |
404 | ||
a6b30bca | 405 | SRST |
ff688cd2 | 406 | ``cont`` or ``c`` |
a6b30bca PM |
407 | Resume emulation. |
408 | ERST | |
9b9df25a GH |
409 | |
410 | { | |
411 | .name = "system_wakeup", | |
412 | .args_type = "", | |
413 | .params = "", | |
414 | .help = "wakeup guest from suspend", | |
2b9e3576 | 415 | .cmd = hmp_system_wakeup, |
9b9df25a GH |
416 | }, |
417 | ||
a6b30bca PM |
418 | SRST |
419 | ``system_wakeup`` | |
420 | Wakeup guest from suspend. | |
421 | ERST | |
2313086a | 422 | |
d7f9b689 LC |
423 | { |
424 | .name = "gdbserver", | |
425 | .args_type = "device:s?", | |
d7f9b689 LC |
426 | .params = "[device]", |
427 | .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'", | |
2b9e3576 | 428 | .cmd = hmp_gdbserver, |
d7f9b689 LC |
429 | }, |
430 | ||
a6b30bca PM |
431 | SRST |
432 | ``gdbserver`` [*port*] | |
433 | Start gdbserver session (default *port*\=1234) | |
434 | ERST | |
2313086a | 435 | |
d7f9b689 LC |
436 | { |
437 | .name = "x", | |
438 | .args_type = "fmt:/,addr:l", | |
d7f9b689 LC |
439 | .params = "/fmt addr", |
440 | .help = "virtual memory dump starting at 'addr'", | |
2b9e3576 | 441 | .cmd = hmp_memory_dump, |
d7f9b689 LC |
442 | }, |
443 | ||
a6b30bca PM |
444 | SRST |
445 | ``x/``\ *fmt* *addr* | |
446 | Virtual memory dump starting at *addr*. | |
447 | ERST | |
2313086a | 448 | |
d7f9b689 LC |
449 | { |
450 | .name = "xp", | |
451 | .args_type = "fmt:/,addr:l", | |
d7f9b689 LC |
452 | .params = "/fmt addr", |
453 | .help = "physical memory dump starting at 'addr'", | |
2b9e3576 | 454 | .cmd = hmp_physical_memory_dump, |
d7f9b689 LC |
455 | }, |
456 | ||
a6b30bca PM |
457 | SRST |
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 | ||
504 | ERST | |
e9628441 PB |
505 | |
506 | { | |
507 | .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 | ||
a6b30bca PM |
514 | SRST |
515 | ``gpa2hva`` *addr* | |
516 | Print the host virtual address at which the guest's physical address *addr* | |
517 | is mapped. | |
518 | ERST | |
e9628441 PB |
519 | |
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 | ||
a6b30bca PM |
530 | SRST |
531 | ``gpa2hpa`` *addr* | |
532 | Print the host physical address at which the guest's physical address *addr* | |
533 | is mapped. | |
534 | ERST | |
574d9693 DDAG |
535 | |
536 | { | |
537 | .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 | ||
a6b30bca PM |
544 | SRST |
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. | |
548 | ERST | |
2313086a | 549 | |
d7f9b689 | 550 | { |
ff688cd2 | 551 | .name = "print|p", |
d7f9b689 | 552 | .args_type = "fmt:/,val:l", |
d7f9b689 LC |
553 | .params = "/fmt expr", |
554 | .help = "print expression value (use $reg for CPU register access)", | |
2b9e3576 | 555 | .cmd = do_print, |
d7f9b689 LC |
556 | }, |
557 | ||
a6b30bca | 558 | SRST |
ff688cd2 | 559 | ``print`` or ``p/``\ *fmt* *expr* |
a6b30bca PM |
560 | Print expression value. Only the *format* part of *fmt* is |
561 | used. | |
562 | ERST | |
2313086a | 563 | |
d7f9b689 LC |
564 | { |
565 | .name = "i", | |
566 | .args_type = "fmt:/,addr:i,index:i.", | |
d7f9b689 LC |
567 | .params = "/fmt addr", |
568 | .help = "I/O port read", | |
2b9e3576 | 569 | .cmd = hmp_ioport_read, |
d7f9b689 LC |
570 | }, |
571 | ||
a6b30bca PM |
572 | SRST |
573 | ``i/``\ *fmt* *addr* [.\ *index*\ ] | |
574 | Read I/O port. | |
575 | ERST | |
2313086a | 576 | |
d7f9b689 LC |
577 | { |
578 | .name = "o", | |
579 | .args_type = "fmt:/,addr:i,val:i", | |
d7f9b689 LC |
580 | .params = "/fmt addr value", |
581 | .help = "I/O port write", | |
2b9e3576 | 582 | .cmd = hmp_ioport_write, |
d7f9b689 LC |
583 | }, |
584 | ||
a6b30bca PM |
585 | SRST |
586 | ``o/``\ *fmt* *addr* *val* | |
587 | Write to I/O port. | |
588 | ERST | |
2313086a | 589 | |
d7f9b689 LC |
590 | { |
591 | .name = "sendkey", | |
2ef20c15 | 592 | .args_type = "keys:s,hold-time:i?", |
d7f9b689 LC |
593 | .params = "keys [hold_ms]", |
594 | .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)", | |
2b9e3576 | 595 | .cmd = hmp_sendkey, |
29136cd8 | 596 | .command_completion = sendkey_completion, |
d7f9b689 LC |
597 | }, |
598 | ||
a6b30bca PM |
599 | SRST |
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. | |
609 | ERST | |
dd12e1bb EC |
610 | { |
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 | ||
a6b30bca PM |
619 | SRST |
620 | ``sync-profile [on|off|reset]`` | |
621 | Enable, disable or reset synchronization profiling. With no arguments, prints | |
622 | whether profiling is on or off. | |
623 | ERST | |
2313086a | 624 | |
d7f9b689 LC |
625 | { |
626 | .name = "system_reset", | |
627 | .args_type = "", | |
d7f9b689 LC |
628 | .params = "", |
629 | .help = "reset the system", | |
2b9e3576 | 630 | .cmd = hmp_system_reset, |
d7f9b689 LC |
631 | }, |
632 | ||
a6b30bca PM |
633 | SRST |
634 | ``system_reset`` | |
635 | Reset the system. | |
636 | ERST | |
2313086a | 637 | |
d7f9b689 LC |
638 | { |
639 | .name = "system_powerdown", | |
640 | .args_type = "", | |
d7f9b689 LC |
641 | .params = "", |
642 | .help = "send system power down event", | |
2b9e3576 | 643 | .cmd = hmp_system_powerdown, |
d7f9b689 LC |
644 | }, |
645 | ||
a6b30bca PM |
646 | SRST |
647 | ``system_powerdown`` | |
648 | Power down the system (if supported). | |
649 | ERST | |
2313086a | 650 | |
d7f9b689 LC |
651 | { |
652 | .name = "sum", | |
653 | .args_type = "start:i,size:i", | |
d7f9b689 LC |
654 | .params = "addr size", |
655 | .help = "compute the checksum of a memory region", | |
2b9e3576 | 656 | .cmd = hmp_sum, |
d7f9b689 LC |
657 | }, |
658 | ||
a6b30bca PM |
659 | SRST |
660 | ``sum`` *addr* *size* | |
661 | Compute the checksum of a memory region. | |
662 | ERST | |
2313086a | 663 | |
d7f9b689 LC |
664 | { |
665 | .name = "device_add", | |
c7e4e8ce MA |
666 | .args_type = "device:O", |
667 | .params = "driver[,prop=value][,...]", | |
d7f9b689 | 668 | .help = "add device, like -device on the command line", |
2b9e3576 | 669 | .cmd = hmp_device_add, |
2da1b3ab | 670 | .command_completion = device_add_completion, |
d7f9b689 LC |
671 | }, |
672 | ||
a6b30bca PM |
673 | SRST |
674 | ``device_add`` *config* | |
675 | Add device. | |
676 | ERST | |
3418bd25 | 677 | |
d7f9b689 LC |
678 | { |
679 | .name = "device_del", | |
680 | .args_type = "id:s", | |
d7f9b689 LC |
681 | .params = "device", |
682 | .help = "remove device", | |
2b9e3576 | 683 | .cmd = hmp_device_del, |
2da1b3ab | 684 | .command_completion = device_del_completion, |
d7f9b689 LC |
685 | }, |
686 | ||
a6b30bca PM |
687 | SRST |
688 | ``device_del`` *id* | |
689 | Remove device *id*. *id* may be a short ID | |
690 | or a QOM object path. | |
691 | ERST | |
3418bd25 | 692 | |
d7f9b689 LC |
693 | { |
694 | .name = "cpu", | |
695 | .args_type = "index:i", | |
d7f9b689 LC |
696 | .params = "index", |
697 | .help = "set the default CPU", | |
2b9e3576 | 698 | .cmd = hmp_cpu, |
d7f9b689 | 699 | }, |
3418bd25 | 700 | |
a6b30bca PM |
701 | SRST |
702 | ``cpu`` *index* | |
703 | Set the default CPU. | |
704 | ERST | |
2313086a | 705 | |
d7f9b689 LC |
706 | { |
707 | .name = "mouse_move", | |
708 | .args_type = "dx_str:s,dy_str:s,dz_str:s?", | |
d7f9b689 LC |
709 | .params = "dx dy [dz]", |
710 | .help = "send mouse move events", | |
2b9e3576 | 711 | .cmd = hmp_mouse_move, |
d7f9b689 LC |
712 | }, |
713 | ||
a6b30bca PM |
714 | SRST |
715 | ``mouse_move`` *dx* *dy* [*dz*] | |
716 | Move the active mouse to the specified coordinates *dx* *dy* | |
717 | with optional scroll axis *dz*. | |
718 | ERST | |
2313086a | 719 | |
d7f9b689 LC |
720 | { |
721 | .name = "mouse_button", | |
722 | .args_type = "button_state:i", | |
d7f9b689 LC |
723 | .params = "state", |
724 | .help = "change mouse button state (1=L, 2=M, 4=R)", | |
2b9e3576 | 725 | .cmd = hmp_mouse_button, |
d7f9b689 LC |
726 | }, |
727 | ||
a6b30bca PM |
728 | SRST |
729 | ``mouse_button`` *val* | |
730 | Change the active mouse button state *val* (1=L, 2=M, 4=R). | |
731 | ERST | |
2313086a | 732 | |
d7f9b689 LC |
733 | { |
734 | .name = "mouse_set", | |
735 | .args_type = "index:i", | |
d7f9b689 LC |
736 | .params = "index", |
737 | .help = "set which mouse device receives events", | |
2b9e3576 | 738 | .cmd = hmp_mouse_set, |
d7f9b689 LC |
739 | }, |
740 | ||
a6b30bca PM |
741 | SRST |
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 | ||
748 | ERST | |
2313086a | 749 | |
d7f9b689 LC |
750 | { |
751 | .name = "wavcapture", | |
f0b9f36d KZ |
752 | .args_type = "path:F,audiodev:s,freq:i?,bits:i?,nchannels:i?", |
753 | .params = "path audiodev [frequency [bits [channels]]]", | |
d7f9b689 | 754 | .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)", |
2b9e3576 | 755 | .cmd = hmp_wavcapture, |
d7f9b689 | 756 | }, |
a6b30bca PM |
757 | SRST |
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 | |
768 | ERST | |
2313086a | 769 | |
d7f9b689 LC |
770 | { |
771 | .name = "stopcapture", | |
772 | .args_type = "n:i", | |
d7f9b689 LC |
773 | .params = "capture index", |
774 | .help = "stop capture", | |
2b9e3576 | 775 | .cmd = hmp_stopcapture, |
d7f9b689 | 776 | }, |
a6b30bca PM |
777 | SRST |
778 | ``stopcapture`` *index* | |
779 | Stop capture with a given *index*, index can be obtained with:: | |
780 | ||
781 | info capture | |
782 | ||
783 | ERST | |
2313086a | 784 | |
d7f9b689 LC |
785 | { |
786 | .name = "memsave", | |
787 | .args_type = "val:l,size:i,filename:s", | |
d7f9b689 LC |
788 | .params = "addr size file", |
789 | .help = "save to disk virtual memory dump starting at 'addr' of size 'size'", | |
2b9e3576 | 790 | .cmd = hmp_memsave, |
d7f9b689 LC |
791 | }, |
792 | ||
a6b30bca PM |
793 | SRST |
794 | ``memsave`` *addr* *size* *file* | |
795 | save to disk virtual memory dump starting at *addr* of size *size*. | |
796 | ERST | |
2313086a | 797 | |
d7f9b689 LC |
798 | { |
799 | .name = "pmemsave", | |
800 | .args_type = "val:l,size:i,filename:s", | |
d7f9b689 LC |
801 | .params = "addr size file", |
802 | .help = "save to disk physical memory dump starting at 'addr' of size 'size'", | |
2b9e3576 | 803 | .cmd = hmp_pmemsave, |
d7f9b689 LC |
804 | }, |
805 | ||
a6b30bca PM |
806 | SRST |
807 | ``pmemsave`` *addr* *size* *file* | |
808 | save to disk physical memory dump starting at *addr* of size *size*. | |
809 | ERST | |
2313086a | 810 | |
d7f9b689 LC |
811 | { |
812 | .name = "boot_set", | |
813 | .args_type = "bootdevice:s", | |
d7f9b689 LC |
814 | .params = "bootdevice", |
815 | .help = "define new values for the boot device list", | |
2b9e3576 | 816 | .cmd = hmp_boot_set, |
d7f9b689 LC |
817 | }, |
818 | ||
a6b30bca PM |
819 | SRST |
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. | |
826 | ERST | |
2313086a | 827 | |
d7f9b689 LC |
828 | { |
829 | .name = "nmi", | |
e9b4b432 LC |
830 | .args_type = "", |
831 | .params = "", | |
9cb805fd | 832 | .help = "inject an NMI", |
2b9e3576 | 833 | .cmd = hmp_nmi, |
d7f9b689 | 834 | }, |
a6b30bca PM |
835 | SRST |
836 | ``nmi`` *cpu* | |
837 | Inject an NMI on the default CPU (x86/s390) or all CPUs (ppc64). | |
838 | ERST | |
1f590cf9 LL |
839 | |
840 | { | |
3949e594 | 841 | .name = "ringbuf_write", |
1f590cf9 LL |
842 | .args_type = "device:s,data:s", |
843 | .params = "device data", | |
3949e594 | 844 | .help = "Write to a ring buffer character device", |
2b9e3576 | 845 | .cmd = hmp_ringbuf_write, |
8e597779 | 846 | .command_completion = ringbuf_write_completion, |
1f590cf9 LL |
847 | }, |
848 | ||
a6b30bca PM |
849 | SRST |
850 | ``ringbuf_write`` *device* *data* | |
851 | Write *data* to ring buffer character device *device*. | |
852 | *data* must be a UTF-8 string. | |
853 | ERST | |
49b6d722 LL |
854 | |
855 | { | |
3949e594 | 856 | .name = "ringbuf_read", |
49b6d722 LL |
857 | .args_type = "device:s,size:i", |
858 | .params = "device size", | |
3949e594 | 859 | .help = "Read from a ring buffer character device", |
2b9e3576 | 860 | .cmd = hmp_ringbuf_read, |
8e597779 | 861 | .command_completion = ringbuf_write_completion, |
49b6d722 LL |
862 | }, |
863 | ||
a6b30bca PM |
864 | SRST |
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. | |
873 | ERST | |
544f6ea3 DDAG |
874 | |
875 | { | |
876 | .name = "announce_self", | |
c6644548 DDAG |
877 | .args_type = "interfaces:s?,id:s?", |
878 | .params = "[interfaces] [id]", | |
544f6ea3 DDAG |
879 | .help = "Trigger GARP/RARP announcements", |
880 | .cmd = hmp_announce_self, | |
881 | }, | |
882 | ||
a6b30bca PM |
883 | SRST |
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. | |
891 | ERST | |
2313086a | 892 | |
d7f9b689 LC |
893 | { |
894 | .name = "migrate", | |
7a4da28b PX |
895 | .args_type = "detach:-d,blk:-b,inc:-i,resume:-r,uri:s", |
896 | .params = "[-d] [-b] [-i] [-r] uri", | |
fbc3d96c LS |
897 | .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 " | |
7a4da28b PX |
901 | "(base image shared between src and destination)" |
902 | "\n\t\t\t -r to resume a paused migration", | |
2b9e3576 | 903 | .cmd = hmp_migrate, |
d7f9b689 LC |
904 | }, |
905 | ||
fbc3d96c | 906 | |
a6b30bca PM |
907 | SRST |
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) | |
915 | ERST | |
2313086a | 916 | |
d7f9b689 LC |
917 | { |
918 | .name = "migrate_cancel", | |
919 | .args_type = "", | |
d7f9b689 LC |
920 | .params = "", |
921 | .help = "cancel the current VM migration", | |
2b9e3576 | 922 | .cmd = hmp_migrate_cancel, |
d7f9b689 LC |
923 | }, |
924 | ||
a6b30bca PM |
925 | SRST |
926 | ``migrate_cancel`` | |
927 | Cancel the current VM migration. | |
928 | ERST | |
9e1ba4cc | 929 | |
94ae12cb DDAG |
930 | { |
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 | }, | |
a6b30bca PM |
937 | SRST |
938 | ``migrate_continue`` *state* | |
939 | Continue migration from the paused state *state* | |
940 | ERST | |
bf1ae1f4 DDAG |
941 | |
942 | { | |
943 | .name = "migrate_incoming", | |
944 | .args_type = "uri:s", | |
945 | .params = "uri", | |
946 | .help = "Continue an incoming migration from an -incoming defer", | |
2b9e3576 | 947 | .cmd = hmp_migrate_incoming, |
bf1ae1f4 DDAG |
948 | }, |
949 | ||
a6b30bca PM |
950 | SRST |
951 | ``migrate_incoming`` *uri* | |
952 | Continue an incoming migration using the *uri* (that has the same syntax | |
953 | as the ``-incoming`` option). | |
954 | ERST | |
bf1ae1f4 | 955 | |
3b563c4b PX |
956 | { |
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 | ||
a6b30bca PM |
964 | SRST |
965 | ``migrate_recover`` *uri* | |
966 | Continue a paused incoming postcopy migration using the *uri*. | |
967 | ERST | |
d37297dc PX |
968 | |
969 | { | |
970 | .name = "migrate_pause", | |
971 | .args_type = "", | |
972 | .params = "", | |
973 | .help = "Pause an ongoing migration (postcopy-only)", | |
974 | .cmd = hmp_migrate_pause, | |
975 | }, | |
976 | ||
a6b30bca PM |
977 | SRST |
978 | ``migrate_pause`` | |
979 | Pause an ongoing migration. Currently it only supports postcopy. | |
980 | ERST | |
9e1ba4cc | 981 | |
00458433 OW |
982 | { |
983 | .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", | |
2b9e3576 | 987 | .cmd = hmp_migrate_set_capability, |
c68a0409 | 988 | .command_completion = migrate_set_capability_completion, |
00458433 OW |
989 | }, |
990 | ||
a6b30bca PM |
991 | SRST |
992 | ``migrate_set_capability`` *capability* *state* | |
993 | Enable/Disable the usage of a capability *capability* for migration. | |
994 | ERST | |
50e9a629 LL |
995 | |
996 | { | |
997 | .name = "migrate_set_parameter", | |
69ef1f36 | 998 | .args_type = "parameter:s,value:s", |
50e9a629 LL |
999 | .params = "parameter value", |
1000 | .help = "Set the parameter for migration", | |
2b9e3576 | 1001 | .cmd = hmp_migrate_set_parameter, |
50e9a629 LL |
1002 | .command_completion = migrate_set_parameter_completion, |
1003 | }, | |
1004 | ||
a6b30bca PM |
1005 | SRST |
1006 | ``migrate_set_parameter`` *parameter* *value* | |
1007 | Set the parameter *parameter* for migration. | |
1008 | ERST | |
4886a1bc DDAG |
1009 | |
1010 | { | |
1011 | .name = "migrate_start_postcopy", | |
1012 | .args_type = "", | |
1013 | .params = "", | |
a54d340b | 1014 | .help = "Followup to a migration command to switch the migration" |
32c3db5b | 1015 | " to postcopy mode. The postcopy-ram capability must " |
c2eb7f21 GK |
1016 | "be set on both source and destination before the " |
1017 | "original migration command .", | |
2b9e3576 | 1018 | .cmd = hmp_migrate_start_postcopy, |
4886a1bc DDAG |
1019 | }, |
1020 | ||
a6b30bca PM |
1021 | SRST |
1022 | ``migrate_start_postcopy`` | |
1023 | Switch in-progress migration to postcopy mode. Ignored after the end of | |
1024 | migration (or once already in postcopy). | |
1025 | ERST | |
d89e666e HZ |
1026 | |
1027 | { | |
1028 | .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 | ||
a6b30bca PM |
1036 | SRST |
1037 | ``x_colo_lost_heartbeat`` | |
1038 | Tell COLO that heartbeat is lost, a failover or takeover is needed. | |
1039 | ERST | |
f8882568 JS |
1040 | |
1041 | { | |
2ea720db JS |
1042 | .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", | |
13cadefb | 1045 | .help = "set migration information for remote display", |
2b9e3576 | 1046 | .cmd = hmp_client_migrate_info, |
f8882568 JS |
1047 | }, |
1048 | ||
a6b30bca PM |
1049 | SRST |
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. | |
1054 | ERST | |
e866e239 | 1055 | |
783e9b48 WC |
1056 | { |
1057 | .name = "dump-guest-memory", | |
2da91b54 VP |
1058 | .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]", | |
c20499d9 QN |
1060 | .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" | |
228de9cf | 1062 | "-d: return immediately (do not wait for completion).\n\t\t\t" |
1b7a0f75 QN |
1063 | "-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" | |
2da91b54 VP |
1066 | "-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" | |
c20499d9 QN |
1068 | "begin: the starting physical address.\n\t\t\t" |
1069 | "length: the memory size, in bytes.", | |
2b9e3576 | 1070 | .cmd = hmp_dump_guest_memory, |
783e9b48 WC |
1071 | }, |
1072 | ||
a6b30bca PM |
1073 | SRST |
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 | ||
1100 | ERST | |
783e9b48 | 1101 | |
a4538a5c JH |
1102 | #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", | |
2b9e3576 | 1108 | .cmd = hmp_dump_skeys, |
a4538a5c JH |
1109 | }, |
1110 | #endif | |
1111 | ||
a6b30bca PM |
1112 | SRST |
1113 | ``dump-skeys`` *filename* | |
1114 | Save guest storage keys to a file. | |
1115 | ERST | |
f860d497 CI |
1116 | |
1117 | #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 | ||
a6b30bca PM |
1127 | SRST |
1128 | ``migration_mode`` *mode* | |
1129 | Enables or disables migration mode. | |
1130 | ERST | |
a4538a5c | 1131 | |
e866e239 | 1132 | { |
2ea720db | 1133 | .name = "snapshot_blkdev", |
6cc2a415 PB |
1134 | .args_type = "reuse:-n,device:B,snapshot-file:s?,format:s?", |
1135 | .params = "[-n] device [new-image-file] [format]", | |
2ea720db JS |
1136 | .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" | |
775ca88e | 1140 | "be created in that format.\n\t\t\t" |
6cc2a415 PB |
1141 | "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.", | |
2b9e3576 | 1144 | .cmd = hmp_snapshot_blkdev, |
e866e239 GH |
1145 | }, |
1146 | ||
a6b30bca PM |
1147 | SRST |
1148 | ``snapshot_blkdev`` | |
1149 | Snapshot device, using snapshot file as target if provided | |
1150 | ERST | |
775ca88e WX |
1151 | |
1152 | { | |
1153 | .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", | |
2b9e3576 | 1159 | .cmd = hmp_snapshot_blkdev_internal, |
775ca88e WX |
1160 | }, |
1161 | ||
a6b30bca PM |
1162 | SRST |
1163 | ``snapshot_blkdev_internal`` | |
1164 | Take an internal snapshot on device if it support | |
1165 | ERST | |
7a4ed2ee WX |
1166 | |
1167 | { | |
1168 | .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", | |
2b9e3576 | 1176 | .cmd = hmp_snapshot_delete_blkdev_internal, |
7a4ed2ee WX |
1177 | }, |
1178 | ||
a6b30bca PM |
1179 | SRST |
1180 | ``snapshot_delete_blkdev_internal`` | |
1181 | Delete an internal snapshot on device if it support | |
1182 | ERST | |
d9b902db PB |
1183 | |
1184 | { | |
1185 | .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", | |
2b9e3576 | 1196 | .cmd = hmp_drive_mirror, |
d9b902db | 1197 | }, |
a6b30bca PM |
1198 | SRST |
1199 | ``drive_mirror`` | |
1200 | Start mirroring a block device's writes to a new destination, | |
1201 | using the specified target. | |
1202 | ERST | |
de90930a SH |
1203 | |
1204 | { | |
1205 | .name = "drive_backup", | |
13b9414b PB |
1206 | .args_type = "reuse:-n,full:-f,compress:-c,device:B,target:s,format:s?", |
1207 | .params = "[-n] [-f] [-c] device target [format]", | |
de90930a SH |
1208 | .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" | |
13b9414b PB |
1215 | "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", | |
2b9e3576 | 1218 | .cmd = hmp_drive_backup, |
de90930a | 1219 | }, |
a6b30bca PM |
1220 | SRST |
1221 | ``drive_backup`` | |
e3a6e0da | 1222 | Start a point-in-time copy of a block device to a specified target. |
a6b30bca | 1223 | ERST |
2313086a | 1224 | |
d7f9b689 LC |
1225 | { |
1226 | .name = "drive_add", | |
abb21ac3 KW |
1227 | .args_type = "node:-n,pci_addr:s,opts:s", |
1228 | .params = "[-n] [[<domain>:]<bus>:]<slot>\n" | |
d7f9b689 | 1229 | "[file=file][,if=type][,bus=n]\n" |
fb0490f6 | 1230 | "[,unit=m][,media=d][,index=i]\n" |
fb0490f6 SH |
1231 | "[,snapshot=on|off][,cache=on|off]\n" |
1232 | "[,readonly=on|off][,copy-on-read=on|off]", | |
d7f9b689 | 1233 | .help = "add drive to PCI storage controller", |
2b9e3576 | 1234 | .cmd = hmp_drive_add, |
d7f9b689 | 1235 | }, |
d7f9b689 | 1236 | |
a6b30bca PM |
1237 | SRST |
1238 | ``drive_add`` | |
1239 | Add drive to PCI storage controller. | |
1240 | ERST | |
2ae63bda IY |
1241 | |
1242 | { | |
1243 | .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" | |
8ad4e451 ZY |
1255 | "<tlp header> = 32bit x 4\n\t\t\t" |
1256 | "<tlp header prefix> = 32bit x 4", | |
2b9e3576 | 1257 | .cmd = hmp_pcie_aer_inject_error, |
2ae63bda IY |
1258 | }, |
1259 | ||
a6b30bca PM |
1260 | SRST |
1261 | ``pcie_aer_inject_error`` | |
1262 | Inject PCIe AER error | |
1263 | ERST | |
ae82d324 MA |
1264 | |
1265 | { | |
1266 | .name = "netdev_add", | |
1267 | .args_type = "netdev:O", | |
03ce5744 | 1268 | .params = "[user|tap|socket|vde|bridge|hubport|netmap|vhost-user],id=str[,prop=value][,...]", |
ae82d324 | 1269 | .help = "add host network device", |
2b9e3576 | 1270 | .cmd = hmp_netdev_add, |
b162b49a | 1271 | .command_completion = netdev_add_completion, |
48f596c5 | 1272 | .flags = "p", |
ae82d324 MA |
1273 | }, |
1274 | ||
a6b30bca PM |
1275 | SRST |
1276 | ``netdev_add`` | |
1277 | Add host network device. | |
1278 | ERST | |
ae82d324 MA |
1279 | |
1280 | { | |
1281 | .name = "netdev_del", | |
1282 | .args_type = "id:s", | |
1283 | .params = "id", | |
1284 | .help = "remove host network device", | |
2b9e3576 | 1285 | .cmd = hmp_netdev_del, |
11b389f2 | 1286 | .command_completion = netdev_del_completion, |
48f596c5 | 1287 | .flags = "p", |
ae82d324 MA |
1288 | }, |
1289 | ||
a6b30bca PM |
1290 | SRST |
1291 | ``netdev_del`` | |
1292 | Remove host network device. | |
1293 | ERST | |
cff8b2c6 PB |
1294 | |
1295 | { | |
1296 | .name = "object_add", | |
da0a932b | 1297 | .args_type = "object:S", |
cff8b2c6 PB |
1298 | .params = "[qom-type=]type,id=str[,prop=value][,...]", |
1299 | .help = "create QOM object", | |
2b9e3576 | 1300 | .cmd = hmp_object_add, |
bfa40f77 | 1301 | .command_completion = object_add_completion, |
9e33013b | 1302 | .flags = "p", |
cff8b2c6 PB |
1303 | }, |
1304 | ||
a6b30bca PM |
1305 | SRST |
1306 | ``object_add`` | |
1307 | Create QOM object. | |
1308 | ERST | |
ab2d0531 PB |
1309 | |
1310 | { | |
1311 | .name = "object_del", | |
1312 | .args_type = "id:s", | |
1313 | .params = "id", | |
1314 | .help = "destroy QOM object", | |
2b9e3576 | 1315 | .cmd = hmp_object_del, |
bfa40f77 | 1316 | .command_completion = object_del_completion, |
9e33013b | 1317 | .flags = "p", |
ab2d0531 PB |
1318 | }, |
1319 | ||
a6b30bca PM |
1320 | SRST |
1321 | ``object_del`` | |
1322 | Destroy QOM object. | |
1323 | ERST | |
2313086a BS |
1324 | |
1325 | #ifdef CONFIG_SLIRP | |
d7f9b689 LC |
1326 | { |
1327 | .name = "hostfwd_add", | |
b4983c57 TH |
1328 | .args_type = "arg1:s,arg2:s?", |
1329 | .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport", | |
d7f9b689 | 1330 | .help = "redirect TCP or UDP connections from host to guest (requires -net user)", |
2b9e3576 | 1331 | .cmd = hmp_hostfwd_add, |
d7f9b689 | 1332 | }, |
21413d68 | 1333 | #endif |
a6b30bca PM |
1334 | SRST |
1335 | ``hostfwd_add`` | |
1336 | Redirect TCP or UDP connections from host to guest (requires -net user). | |
1337 | ERST | |
d7f9b689 | 1338 | |
21413d68 | 1339 | #ifdef CONFIG_SLIRP |
d7f9b689 LC |
1340 | { |
1341 | .name = "hostfwd_remove", | |
b4983c57 TH |
1342 | .args_type = "arg1:s,arg2:s?", |
1343 | .params = "[netdev_id] [tcp|udp]:[hostaddr]:hostport", | |
d7f9b689 | 1344 | .help = "remove host-to-guest TCP or UDP redirection", |
2b9e3576 | 1345 | .cmd = hmp_hostfwd_remove, |
d7f9b689 LC |
1346 | }, |
1347 | ||
2313086a | 1348 | #endif |
a6b30bca PM |
1349 | SRST |
1350 | ``hostfwd_remove`` | |
1351 | Remove host-to-guest TCP or UDP redirection. | |
1352 | ERST | |
2313086a | 1353 | |
d7f9b689 LC |
1354 | { |
1355 | .name = "balloon", | |
3b0bd6ec | 1356 | .args_type = "value:M", |
d7f9b689 | 1357 | .params = "target", |
3c05613a | 1358 | .help = "request VM to change its memory allocation (in MB)", |
2b9e3576 | 1359 | .cmd = hmp_balloon, |
d7f9b689 LC |
1360 | }, |
1361 | ||
a6b30bca PM |
1362 | SRST |
1363 | ``balloon`` *value* | |
1364 | Request VM to change its memory allocation to *value* (in MB). | |
1365 | ERST | |
2313086a | 1366 | |
d7f9b689 LC |
1367 | { |
1368 | .name = "set_link", | |
c9b26a4c MA |
1369 | .args_type = "name:s,up:b", |
1370 | .params = "name on|off", | |
d7f9b689 | 1371 | .help = "change the link status of a network adapter", |
2b9e3576 | 1372 | .cmd = hmp_set_link, |
40d19394 | 1373 | .command_completion = set_link_completion, |
d7f9b689 LC |
1374 | }, |
1375 | ||
a6b30bca PM |
1376 | SRST |
1377 | ``set_link`` *name* ``[on|off]`` | |
1378 | Switch link *name* on (i.e. up) or off (i.e. down). | |
1379 | ERST | |
2313086a | 1380 | |
d7f9b689 LC |
1381 | { |
1382 | .name = "watchdog_action", | |
1383 | .args_type = "action:s", | |
d7f9b689 LC |
1384 | .params = "[reset|shutdown|poweroff|pause|debug|none]", |
1385 | .help = "change watchdog action", | |
2b9e3576 | 1386 | .cmd = hmp_watchdog_action, |
d0ece345 | 1387 | .command_completion = watchdog_action_completion, |
d7f9b689 LC |
1388 | }, |
1389 | ||
a6b30bca PM |
1390 | SRST |
1391 | ``watchdog_action`` | |
1392 | Change watchdog action. | |
1393 | ERST | |
2313086a | 1394 | |
4057725f PB |
1395 | { |
1396 | .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", | |
2b9e3576 | 1400 | .cmd = hmp_nbd_server_start, |
4057725f | 1401 | }, |
a6b30bca PM |
1402 | SRST |
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. | |
1408 | ERST | |
4057725f PB |
1409 | |
1410 | { | |
1411 | .name = "nbd_server_add", | |
dba49323 EB |
1412 | .args_type = "writable:-w,device:B,name:s?", |
1413 | .params = "nbd_server_add [-w] device [name]", | |
4057725f | 1414 | .help = "export a block device via NBD", |
2b9e3576 | 1415 | .cmd = hmp_nbd_server_add, |
4057725f | 1416 | }, |
a6b30bca PM |
1417 | SRST |
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*. | |
1423 | ERST | |
08fb10a7 EB |
1424 | |
1425 | { | |
1426 | .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 | }, | |
a6b30bca PM |
1432 | SRST |
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. | |
1439 | ERST | |
4057725f PB |
1440 | |
1441 | { | |
1442 | .name = "nbd_server_stop", | |
1443 | .args_type = "", | |
1444 | .params = "nbd_server_stop", | |
1445 | .help = "stop serving block devices using the NBD protocol", | |
2b9e3576 | 1446 | .cmd = hmp_nbd_server_stop, |
4057725f | 1447 | }, |
a6b30bca PM |
1448 | SRST |
1449 | ``nbd_server_stop`` | |
1450 | Stop the QEMU embedded NBD server. | |
1451 | ERST | |
4057725f PB |
1452 | |
1453 | ||
79c4f6b0 | 1454 | #if defined(TARGET_I386) |
d7f9b689 LC |
1455 | |
1456 | { | |
1457 | .name = "mce", | |
31ce5e0c JD |
1458 | .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]", | |
2b9e3576 | 1461 | .cmd = hmp_mce, |
d7f9b689 LC |
1462 | }, |
1463 | ||
79c4f6b0 | 1464 | #endif |
a6b30bca PM |
1465 | SRST |
1466 | ``mce`` *cpu* *bank* *status* *mcgstatus* *addr* *misc* | |
1467 | Inject an MCE on the given CPU (x86 only). | |
1468 | ERST | |
f07918fd | 1469 | |
d7f9b689 LC |
1470 | { |
1471 | .name = "getfd", | |
1472 | .args_type = "fdname:s", | |
d7f9b689 LC |
1473 | .params = "getfd name", |
1474 | .help = "receive a file descriptor via SCM rights and assign it a name", | |
2b9e3576 | 1475 | .cmd = hmp_getfd, |
d7f9b689 LC |
1476 | }, |
1477 | ||
a6b30bca PM |
1478 | SRST |
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. | |
1483 | ERST | |
f07918fd | 1484 | |
d7f9b689 LC |
1485 | { |
1486 | .name = "closefd", | |
1487 | .args_type = "fdname:s", | |
d7f9b689 LC |
1488 | .params = "closefd name", |
1489 | .help = "close a file descriptor previously passed via SCM rights", | |
2b9e3576 | 1490 | .cmd = hmp_closefd, |
d7f9b689 LC |
1491 | }, |
1492 | ||
a6b30bca PM |
1493 | SRST |
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. | |
1498 | ERST | |
a3a55a2e | 1499 | |
727f005e ZYW |
1500 | { |
1501 | .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", | |
2b9e3576 | 1505 | .cmd = hmp_block_set_io_throttle, |
727f005e ZYW |
1506 | }, |
1507 | ||
a6b30bca PM |
1508 | SRST |
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. | |
1513 | ERST | |
7572150c GH |
1514 | |
1515 | { | |
1516 | .name = "set_password", | |
675fd3c9 SR |
1517 | .args_type = "protocol:s,password:s,display:-ds,connected:s?", |
1518 | .params = "protocol password [-d display] [action-if-connected]", | |
7572150c | 1519 | .help = "set spice/vnc password", |
2b9e3576 | 1520 | .cmd = hmp_set_password, |
7572150c GH |
1521 | }, |
1522 | ||
a6b30bca | 1523 | SRST |
675fd3c9 SR |
1524 | ``set_password [ vnc | spice ] password [ -d display ] [ action-if-connected ]`` |
1525 | Change spice/vnc password. *display* can be used with 'vnc' to specify | |
1526 | which display to set the password on. *action-if-connected* specifies | |
1527 | what should happen in case a connection is established: *fail* makes | |
1528 | the password change fail. *disconnect* changes the password and | |
8982552e MA |
1529 | disconnects the client. *keep* changes the password and keeps the |
1530 | connection up. *keep* is the default. | |
a6b30bca | 1531 | ERST |
7572150c GH |
1532 | |
1533 | { | |
1534 | .name = "expire_password", | |
675fd3c9 SR |
1535 | .args_type = "protocol:s,time:s,display:-ds", |
1536 | .params = "protocol time [-d display]", | |
7572150c | 1537 | .help = "set spice/vnc password expire-time", |
2b9e3576 | 1538 | .cmd = hmp_expire_password, |
7572150c GH |
1539 | }, |
1540 | ||
a6b30bca | 1541 | SRST |
675fd3c9 SR |
1542 | ``expire_password [ vnc | spice ] expire-time [ -d display ]`` |
1543 | Specify when a password for spice/vnc becomes invalid. | |
1544 | *display* behaves the same as in ``set_password``. | |
1545 | *expire-time* accepts: | |
a6b30bca PM |
1546 | |
1547 | ``now`` | |
1548 | Invalidate password instantly. | |
1549 | ``never`` | |
1550 | Password stays valid forever. | |
1551 | ``+``\ *nsec* | |
1552 | Password stays valid for *nsec* seconds starting now. | |
1553 | *nsec* | |
1554 | Password is invalidated at the given time. *nsec* are the seconds | |
1555 | passed since 1970, i.e. unix epoch. | |
1556 | ||
1557 | ERST | |
f1088908 | 1558 | |
46920825 GH |
1559 | { |
1560 | .name = "chardev-add", | |
1561 | .args_type = "args:s", | |
1562 | .params = "args", | |
1563 | .help = "add chardev", | |
2b9e3576 | 1564 | .cmd = hmp_chardev_add, |
13e315da | 1565 | .command_completion = chardev_add_completion, |
46920825 GH |
1566 | }, |
1567 | ||
a6b30bca PM |
1568 | SRST |
1569 | ``chardev-add`` *args* | |
1570 | chardev-add accepts the same parameters as the -chardev command line switch. | |
1571 | ERST | |
75b60160 AN |
1572 | |
1573 | { | |
1574 | .name = "chardev-change", | |
1575 | .args_type = "id:s,args:s", | |
1576 | .params = "id args", | |
1577 | .help = "change chardev", | |
1578 | .cmd = hmp_chardev_change, | |
1579 | }, | |
1580 | ||
a6b30bca PM |
1581 | SRST |
1582 | ``chardev-change`` *args* | |
1583 | chardev-change accepts existing chardev *id* and then the same arguments | |
1584 | as the -chardev command line switch (except for "id"). | |
1585 | ERST | |
46920825 GH |
1586 | |
1587 | { | |
1588 | .name = "chardev-remove", | |
1589 | .args_type = "id:s", | |
1590 | .params = "id", | |
1591 | .help = "remove chardev", | |
2b9e3576 | 1592 | .cmd = hmp_chardev_remove, |
6297d9a2 | 1593 | .command_completion = chardev_remove_completion, |
46920825 GH |
1594 | }, |
1595 | ||
a6b30bca PM |
1596 | SRST |
1597 | ``chardev-remove`` *id* | |
1598 | Removes the chardev *id*. | |
1599 | ERST | |
bd1d5ad9 SF |
1600 | |
1601 | { | |
1602 | .name = "chardev-send-break", | |
1603 | .args_type = "id:s", | |
1604 | .params = "id", | |
1605 | .help = "send a break on chardev", | |
1606 | .cmd = hmp_chardev_send_break, | |
1607 | .command_completion = chardev_remove_completion, | |
1608 | }, | |
1609 | ||
a6b30bca PM |
1610 | SRST |
1611 | ``chardev-send-break`` *id* | |
1612 | Send a break on the chardev *id*. | |
1613 | ERST | |
587da2c3 KW |
1614 | |
1615 | { | |
1616 | .name = "qemu-io", | |
89b6fc45 KW |
1617 | .args_type = "qdev:-d,device:B,command:s", |
1618 | .params = "[-d] [device] \"[command]\"", | |
1619 | .help = "run a qemu-io command on a block device\n\t\t\t" | |
1620 | "-d: [device] is a device ID rather than a " | |
1621 | "drive ID or node name", | |
2b9e3576 | 1622 | .cmd = hmp_qemu_io, |
587da2c3 KW |
1623 | }, |
1624 | ||
a6b30bca PM |
1625 | SRST |
1626 | ``qemu-io`` *device* *command* | |
1627 | Executes a qemu-io command on the given block device. | |
1628 | ERST | |
abf23329 | 1629 | |
89d7fa9e AF |
1630 | { |
1631 | .name = "qom-list", | |
1632 | .args_type = "path:s?", | |
1633 | .params = "path", | |
1634 | .help = "list QOM properties", | |
2b9e3576 | 1635 | .cmd = hmp_qom_list, |
8c7c7ecb | 1636 | .flags = "p", |
89d7fa9e AF |
1637 | }, |
1638 | ||
a6b30bca PM |
1639 | SRST |
1640 | ``qom-list`` [*path*] | |
1641 | Print QOM properties of object at location *path* | |
1642 | ERST | |
c0e6ee9e | 1643 | |
89cf4fe3 DDAG |
1644 | { |
1645 | .name = "qom-get", | |
1646 | .args_type = "path:s,property:s", | |
1647 | .params = "path property", | |
1648 | .help = "print QOM property", | |
1649 | .cmd = hmp_qom_get, | |
1650 | .flags = "p", | |
1651 | }, | |
1652 | ||
1653 | SRST | |
1654 | ``qom-get`` *path* *property* | |
1655 | Print QOM property *property* of object at location *path* | |
1656 | ERST | |
1657 | ||
c0e6ee9e AF |
1658 | { |
1659 | .name = "qom-set", | |
2d9e3dd9 DH |
1660 | .args_type = "json:-j,path:s,property:s,value:S", |
1661 | .params = "[-j] path property value", | |
1662 | .help = "set QOM property.\n\t\t\t" | |
1663 | "-j: the value is specified in json format.", | |
2b9e3576 | 1664 | .cmd = hmp_qom_set, |
8c7c7ecb | 1665 | .flags = "p", |
c0e6ee9e AF |
1666 | }, |
1667 | ||
a6b30bca PM |
1668 | SRST |
1669 | ``qom-set`` *path* *property* *value* | |
1670 | Set QOM property *property* of object at location *path* to value *value* | |
1671 | ERST | |
b40292e7 | 1672 | |
e7510671 PD |
1673 | { |
1674 | .name = "replay_break", | |
ae49ce00 | 1675 | .args_type = "icount:l", |
e7510671 PD |
1676 | .params = "icount", |
1677 | .help = "set breakpoint at the specified instruction count", | |
1678 | .cmd = hmp_replay_break, | |
1679 | }, | |
1680 | ||
1681 | SRST | |
1682 | ``replay_break`` *icount* | |
1683 | Set replay breakpoint at instruction count *icount*. | |
1684 | Execution stops when the specified instruction is reached. | |
1685 | There can be at most one breakpoint. When breakpoint is set, any prior | |
1686 | one is removed. The breakpoint may be set only in replay mode and only | |
1687 | "in the future", i.e. at instruction counts greater than the current one. | |
1688 | The current instruction count can be observed with ``info replay``. | |
1689 | ERST | |
1690 | ||
1691 | { | |
1692 | .name = "replay_delete_break", | |
1693 | .args_type = "", | |
1694 | .params = "", | |
1695 | .help = "remove replay breakpoint", | |
1696 | .cmd = hmp_replay_delete_break, | |
1697 | }, | |
1698 | ||
1699 | SRST | |
1700 | ``replay_delete_break`` | |
1701 | Remove replay breakpoint which was previously set with ``replay_break``. | |
1702 | The command is ignored when there are no replay breakpoints. | |
1703 | ERST | |
1704 | ||
f6baed3d PD |
1705 | { |
1706 | .name = "replay_seek", | |
ae49ce00 | 1707 | .args_type = "icount:l", |
f6baed3d PD |
1708 | .params = "icount", |
1709 | .help = "replay execution to the specified instruction count", | |
1710 | .cmd = hmp_replay_seek, | |
1711 | }, | |
1712 | ||
1713 | SRST | |
1714 | ``replay_seek`` *icount* | |
1715 | Automatically proceed to the instruction count *icount*, when | |
1716 | replaying the execution. The command automatically loads nearest | |
1717 | snapshot and replays the execution to find the desired instruction. | |
1718 | When there is no preceding snapshot or the execution is not replayed, | |
1719 | then the command fails. | |
1720 | *icount* for the reference may be observed with ``info replay`` command. | |
1721 | ERST | |
1722 | ||
33572ece JK |
1723 | { |
1724 | .name = "info", | |
1725 | .args_type = "item:s?", | |
1726 | .params = "[subcommand]", | |
1727 | .help = "show various information about the system state", | |
2b9e3576 | 1728 | .cmd = hmp_info_help, |
a0cd5e1c | 1729 | .sub_table = hmp_info_cmds, |
8c7c7ecb | 1730 | .flags = "p", |
33572ece JK |
1731 | }, |
1732 | ||
a4a571d9 PX |
1733 | SRST |
1734 | ``calc_dirty_rate`` *second* | |
1735 | Start a round of dirty rate measurement with the period specified in *second*. | |
1736 | The result of the dirty rate measurement may be observed with ``info | |
1737 | dirty_rate`` command. | |
1738 | ERST | |
1739 | ||
1740 | { | |
1741 | .name = "calc_dirty_rate", | |
826b8bc8 HH |
1742 | .args_type = "dirty_ring:-r,dirty_bitmap:-b,second:l,sample_pages_per_GB:l?", |
1743 | .params = "[-r] [-b] second [sample_pages_per_GB]", | |
1744 | .help = "start a round of guest dirty rate measurement (using -r to" | |
1745 | "\n\t\t\t specify dirty ring as the method of calculation and" | |
1746 | "\n\t\t\t -b to specify dirty bitmap as method of calculation)", | |
a4a571d9 PX |
1747 | .cmd = hmp_calc_dirty_rate, |
1748 | }, |