]>
Commit | Line | Data |
---|---|---|
2313086a BS |
1 | HXCOMM Use DEFHEADING() to define headings in both help text and texi |
2 | HXCOMM Text between STEXI and ETEXI are copied to texi version and | |
3 | HXCOMM discarded from C version | |
4 | HXCOMM DEF(command, args, callback, arg_string, help) is used to construct | |
5 | HXCOMM monitor commands | |
6 | HXCOMM HXCOMM can be used for comments, discarded from both texi and C | |
7 | ||
8 | STEXI | |
9 | @table @option | |
10 | ETEXI | |
11 | ||
d7f9b689 LC |
12 | { |
13 | .name = "help|?", | |
14 | .args_type = "name:s?", | |
d7f9b689 LC |
15 | .params = "[cmd]", |
16 | .help = "show the help", | |
af4ce882 | 17 | .mhandler.cmd = do_help_cmd, |
d7f9b689 LC |
18 | }, |
19 | ||
2313086a BS |
20 | STEXI |
21 | @item help or ? [@var{cmd}] | |
70fcbbe7 | 22 | @findex help |
2313086a BS |
23 | Show the help for all commands or just for command @var{cmd}. |
24 | ETEXI | |
25 | ||
d7f9b689 LC |
26 | { |
27 | .name = "commit", | |
28 | .args_type = "device:B", | |
d7f9b689 LC |
29 | .params = "device|all", |
30 | .help = "commit changes to the disk images (if -snapshot is used) or backing files", | |
af4ce882 | 31 | .mhandler.cmd = do_commit, |
d7f9b689 LC |
32 | }, |
33 | ||
2313086a BS |
34 | STEXI |
35 | @item commit | |
70fcbbe7 | 36 | @findex commit |
2313086a BS |
37 | Commit changes to the disk images (if -snapshot is used) or backing files. |
38 | ETEXI | |
39 | ||
d7f9b689 LC |
40 | { |
41 | .name = "info", | |
42 | .args_type = "item:s?", | |
d7f9b689 LC |
43 | .params = "[subcommand]", |
44 | .help = "show various information about the system state", | |
13c7425e LC |
45 | .user_print = monitor_user_noop, |
46 | .mhandler.cmd_new = do_info, | |
d7f9b689 LC |
47 | }, |
48 | ||
2313086a BS |
49 | STEXI |
50 | @item info @var{subcommand} | |
70fcbbe7 | 51 | @findex info |
2313086a BS |
52 | Show various information about the system state. |
53 | ||
54 | @table @option | |
55 | @item info version | |
56 | show the version of QEMU | |
57 | @item info network | |
58 | show the various VLANs and the associated devices | |
59 | @item info chardev | |
60 | show the character devices | |
61 | @item info block | |
62 | show the block devices | |
63 | @item info block | |
64 | show block device statistics | |
65 | @item info registers | |
66 | show the cpu registers | |
67 | @item info cpus | |
68 | show infos for each CPU | |
69 | @item info history | |
70 | show the command line history | |
71 | @item info irq | |
72 | show the interrupts statistics (if available) | |
73 | @item info pic | |
74 | show i8259 (PIC) state | |
75 | @item info pci | |
76 | show emulated PCI device info | |
77 | @item info tlb | |
78 | show virtual to physical memory mappings (i386 only) | |
79 | @item info mem | |
80 | show the active virtual memory mappings (i386 only) | |
81 | @item info hpet | |
82 | show state of HPET (i386 only) | |
2313086a BS |
83 | @item info kvm |
84 | show KVM information | |
85 | @item info usb | |
86 | show USB devices plugged on the virtual USB hub | |
87 | @item info usbhost | |
88 | show all USB host devices | |
89 | @item info profile | |
90 | show profiling information | |
91 | @item info capture | |
92 | show information about active capturing | |
93 | @item info snapshots | |
94 | show list of VM snapshots | |
95 | @item info status | |
96 | show the current VM status (running|paused) | |
97 | @item info pcmcia | |
98 | show guest PCMCIA status | |
99 | @item info mice | |
100 | show which guest mouse is receiving events | |
101 | @item info vnc | |
102 | show the vnc server status | |
103 | @item info name | |
104 | show the current VM name | |
105 | @item info uuid | |
106 | show the current VM UUID | |
107 | @item info cpustats | |
108 | show CPU statistics | |
6dbe553f JK |
109 | @item info usernet |
110 | show user network stack connection states | |
2313086a BS |
111 | @item info migrate |
112 | show migration status | |
113 | @item info balloon | |
114 | show balloon information | |
115 | @item info qtree | |
116 | show device tree | |
117 | @end table | |
118 | ETEXI | |
119 | ||
d7f9b689 LC |
120 | { |
121 | .name = "q|quit", | |
122 | .args_type = "", | |
d7f9b689 LC |
123 | .params = "", |
124 | .help = "quit the emulator", | |
b223f35f LC |
125 | .user_print = monitor_user_noop, |
126 | .mhandler.cmd_new = do_quit, | |
d7f9b689 LC |
127 | }, |
128 | ||
2313086a BS |
129 | STEXI |
130 | @item q or quit | |
70fcbbe7 | 131 | @findex quit |
2313086a BS |
132 | Quit the emulator. |
133 | ETEXI | |
134 | ||
d7f9b689 LC |
135 | { |
136 | .name = "eject", | |
78d714e0 | 137 | .args_type = "force:-f,device:B", |
d7f9b689 LC |
138 | .params = "[-f] device", |
139 | .help = "eject a removable medium (use -f to force it)", | |
e1c923a6 LC |
140 | .user_print = monitor_user_noop, |
141 | .mhandler.cmd_new = do_eject, | |
d7f9b689 LC |
142 | }, |
143 | ||
2313086a BS |
144 | STEXI |
145 | @item eject [-f] @var{device} | |
70fcbbe7 | 146 | @findex eject |
2313086a BS |
147 | Eject a removable medium (use -f to force it). |
148 | ETEXI | |
149 | ||
d7f9b689 LC |
150 | { |
151 | .name = "change", | |
152 | .args_type = "device:B,target:F,arg:s?", | |
d7f9b689 LC |
153 | .params = "device filename [format]", |
154 | .help = "change a removable medium, optional format", | |
ec3b82af MA |
155 | .user_print = monitor_user_noop, |
156 | .mhandler.cmd_new = do_change, | |
d7f9b689 LC |
157 | }, |
158 | ||
2313086a BS |
159 | STEXI |
160 | @item change @var{device} @var{setting} | |
70fcbbe7 | 161 | @findex change |
2313086a BS |
162 | |
163 | Change the configuration of a device. | |
164 | ||
165 | @table @option | |
166 | @item change @var{diskdevice} @var{filename} [@var{format}] | |
167 | Change the medium for a removable disk device to point to @var{filename}. eg | |
168 | ||
169 | @example | |
170 | (qemu) change ide1-cd0 /path/to/some.iso | |
171 | @end example | |
172 | ||
173 | @var{format} is optional. | |
174 | ||
175 | @item change vnc @var{display},@var{options} | |
176 | Change the configuration of the VNC server. The valid syntax for @var{display} | |
177 | and @var{options} are described at @ref{sec_invocation}. eg | |
178 | ||
179 | @example | |
180 | (qemu) change vnc localhost:1 | |
181 | @end example | |
182 | ||
183 | @item change vnc password [@var{password}] | |
184 | ||
185 | Change the password associated with the VNC server. If the new password is not | |
186 | supplied, the monitor will prompt for it to be entered. VNC passwords are only | |
187 | significant up to 8 letters. eg | |
188 | ||
189 | @example | |
190 | (qemu) change vnc password | |
191 | Password: ******** | |
192 | @end example | |
193 | ||
194 | @end table | |
195 | ETEXI | |
196 | ||
d7f9b689 LC |
197 | { |
198 | .name = "screendump", | |
199 | .args_type = "filename:F", | |
d7f9b689 LC |
200 | .params = "filename", |
201 | .help = "save screen into PPM image 'filename'", | |
af4ce882 | 202 | .mhandler.cmd = do_screen_dump, |
d7f9b689 LC |
203 | }, |
204 | ||
2313086a BS |
205 | STEXI |
206 | @item screendump @var{filename} | |
70fcbbe7 | 207 | @findex screendump |
2313086a BS |
208 | Save screen into PPM image @var{filename}. |
209 | ETEXI | |
210 | ||
d7f9b689 LC |
211 | { |
212 | .name = "logfile", | |
213 | .args_type = "filename:F", | |
d7f9b689 LC |
214 | .params = "filename", |
215 | .help = "output logs to 'filename'", | |
af4ce882 | 216 | .mhandler.cmd = do_logfile, |
d7f9b689 LC |
217 | }, |
218 | ||
2313086a BS |
219 | STEXI |
220 | @item logfile @var{filename} | |
70fcbbe7 | 221 | @findex logfile |
2313086a BS |
222 | Output logs to @var{filename}. |
223 | ETEXI | |
224 | ||
d7f9b689 LC |
225 | { |
226 | .name = "log", | |
227 | .args_type = "items:s", | |
d7f9b689 LC |
228 | .params = "item1[,...]", |
229 | .help = "activate logging of the specified items to '/tmp/qemu.log'", | |
af4ce882 | 230 | .mhandler.cmd = do_log, |
d7f9b689 LC |
231 | }, |
232 | ||
2313086a BS |
233 | STEXI |
234 | @item log @var{item1}[,...] | |
70fcbbe7 | 235 | @findex log |
2313086a BS |
236 | Activate logging of the specified items to @file{/tmp/qemu.log}. |
237 | ETEXI | |
238 | ||
d7f9b689 LC |
239 | { |
240 | .name = "savevm", | |
241 | .args_type = "name:s?", | |
d7f9b689 LC |
242 | .params = "[tag|id]", |
243 | .help = "save a VM snapshot. If no tag or id are provided, a new snapshot is created", | |
af4ce882 | 244 | .mhandler.cmd = do_savevm, |
d7f9b689 LC |
245 | }, |
246 | ||
2313086a BS |
247 | STEXI |
248 | @item savevm [@var{tag}|@var{id}] | |
70fcbbe7 | 249 | @findex savevm |
2313086a BS |
250 | Create a snapshot of the whole virtual machine. If @var{tag} is |
251 | provided, it is used as human readable identifier. If there is already | |
252 | a snapshot with the same tag or ID, it is replaced. More info at | |
253 | @ref{vm_snapshots}. | |
254 | ETEXI | |
255 | ||
d7f9b689 LC |
256 | { |
257 | .name = "loadvm", | |
258 | .args_type = "name:s", | |
d7f9b689 LC |
259 | .params = "tag|id", |
260 | .help = "restore a VM snapshot from its tag or id", | |
af4ce882 | 261 | .mhandler.cmd = do_loadvm, |
d7f9b689 LC |
262 | }, |
263 | ||
2313086a BS |
264 | STEXI |
265 | @item loadvm @var{tag}|@var{id} | |
70fcbbe7 | 266 | @findex loadvm |
2313086a BS |
267 | Set the whole virtual machine to the snapshot identified by the tag |
268 | @var{tag} or the unique snapshot ID @var{id}. | |
269 | ETEXI | |
270 | ||
d7f9b689 LC |
271 | { |
272 | .name = "delvm", | |
273 | .args_type = "name:s", | |
d7f9b689 LC |
274 | .params = "tag|id", |
275 | .help = "delete a VM snapshot from its tag or id", | |
af4ce882 | 276 | .mhandler.cmd = do_delvm, |
d7f9b689 LC |
277 | }, |
278 | ||
2313086a BS |
279 | STEXI |
280 | @item delvm @var{tag}|@var{id} | |
70fcbbe7 | 281 | @findex delvm |
2313086a BS |
282 | Delete the snapshot identified by @var{tag} or @var{id}. |
283 | ETEXI | |
284 | ||
d7f9b689 LC |
285 | { |
286 | .name = "singlestep", | |
287 | .args_type = "option:s?", | |
d7f9b689 LC |
288 | .params = "[on|off]", |
289 | .help = "run emulation in singlestep mode or switch to normal mode", | |
af4ce882 | 290 | .mhandler.cmd = do_singlestep, |
d7f9b689 LC |
291 | }, |
292 | ||
2313086a BS |
293 | STEXI |
294 | @item singlestep [off] | |
70fcbbe7 | 295 | @findex singlestep |
2313086a BS |
296 | Run the emulation in single step mode. |
297 | If called with option off, the emulation returns to normal mode. | |
298 | ETEXI | |
299 | ||
d7f9b689 LC |
300 | { |
301 | .name = "stop", | |
302 | .args_type = "", | |
d7f9b689 LC |
303 | .params = "", |
304 | .help = "stop emulation", | |
e0c97bde LC |
305 | .user_print = monitor_user_noop, |
306 | .mhandler.cmd_new = do_stop, | |
d7f9b689 LC |
307 | }, |
308 | ||
2313086a BS |
309 | STEXI |
310 | @item stop | |
70fcbbe7 | 311 | @findex stop |
2313086a BS |
312 | Stop emulation. |
313 | ETEXI | |
314 | ||
d7f9b689 LC |
315 | { |
316 | .name = "c|cont", | |
317 | .args_type = "", | |
d7f9b689 LC |
318 | .params = "", |
319 | .help = "resume emulation", | |
a1f896a0 LC |
320 | .user_print = monitor_user_noop, |
321 | .mhandler.cmd_new = do_cont, | |
d7f9b689 LC |
322 | }, |
323 | ||
2313086a BS |
324 | STEXI |
325 | @item c or cont | |
70fcbbe7 | 326 | @findex cont |
2313086a BS |
327 | Resume emulation. |
328 | ETEXI | |
329 | ||
d7f9b689 LC |
330 | { |
331 | .name = "gdbserver", | |
332 | .args_type = "device:s?", | |
d7f9b689 LC |
333 | .params = "[device]", |
334 | .help = "start gdbserver on given device (default 'tcp::1234'), stop with 'none'", | |
af4ce882 | 335 | .mhandler.cmd = do_gdbserver, |
d7f9b689 LC |
336 | }, |
337 | ||
2313086a BS |
338 | STEXI |
339 | @item gdbserver [@var{port}] | |
70fcbbe7 | 340 | @findex gdbserver |
2313086a BS |
341 | Start gdbserver session (default @var{port}=1234) |
342 | ETEXI | |
343 | ||
d7f9b689 LC |
344 | { |
345 | .name = "x", | |
346 | .args_type = "fmt:/,addr:l", | |
d7f9b689 LC |
347 | .params = "/fmt addr", |
348 | .help = "virtual memory dump starting at 'addr'", | |
af4ce882 | 349 | .mhandler.cmd = do_memory_dump, |
d7f9b689 LC |
350 | }, |
351 | ||
2313086a BS |
352 | STEXI |
353 | @item x/fmt @var{addr} | |
70fcbbe7 | 354 | @findex x |
2313086a BS |
355 | Virtual memory dump starting at @var{addr}. |
356 | ETEXI | |
357 | ||
d7f9b689 LC |
358 | { |
359 | .name = "xp", | |
360 | .args_type = "fmt:/,addr:l", | |
d7f9b689 LC |
361 | .params = "/fmt addr", |
362 | .help = "physical memory dump starting at 'addr'", | |
af4ce882 | 363 | .mhandler.cmd = do_physical_memory_dump, |
d7f9b689 LC |
364 | }, |
365 | ||
2313086a BS |
366 | STEXI |
367 | @item xp /@var{fmt} @var{addr} | |
70fcbbe7 | 368 | @findex xp |
2313086a BS |
369 | Physical memory dump starting at @var{addr}. |
370 | ||
371 | @var{fmt} is a format which tells the command how to format the | |
372 | data. Its syntax is: @option{/@{count@}@{format@}@{size@}} | |
373 | ||
374 | @table @var | |
375 | @item count | |
70fcbbe7 | 376 | @findex count |
2313086a BS |
377 | is the number of items to be dumped. |
378 | ||
379 | @item format | |
70fcbbe7 | 380 | @findex format |
2313086a BS |
381 | can be x (hex), d (signed decimal), u (unsigned decimal), o (octal), |
382 | c (char) or i (asm instruction). | |
383 | ||
384 | @item size | |
70fcbbe7 | 385 | @findex size |
2313086a BS |
386 | can be b (8 bits), h (16 bits), w (32 bits) or g (64 bits). On x86, |
387 | @code{h} or @code{w} can be specified with the @code{i} format to | |
388 | respectively select 16 or 32 bit code instruction size. | |
389 | ||
390 | @end table | |
391 | ||
392 | Examples: | |
393 | @itemize | |
394 | @item | |
395 | Dump 10 instructions at the current instruction pointer: | |
396 | @example | |
397 | (qemu) x/10i $eip | |
398 | 0x90107063: ret | |
399 | 0x90107064: sti | |
400 | 0x90107065: lea 0x0(%esi,1),%esi | |
401 | 0x90107069: lea 0x0(%edi,1),%edi | |
402 | 0x90107070: ret | |
403 | 0x90107071: jmp 0x90107080 | |
404 | 0x90107073: nop | |
405 | 0x90107074: nop | |
406 | 0x90107075: nop | |
407 | 0x90107076: nop | |
408 | @end example | |
409 | ||
410 | @item | |
411 | Dump 80 16 bit values at the start of the video memory. | |
412 | @smallexample | |
413 | (qemu) xp/80hx 0xb8000 | |
414 | 0x000b8000: 0x0b50 0x0b6c 0x0b65 0x0b78 0x0b38 0x0b36 0x0b2f 0x0b42 | |
415 | 0x000b8010: 0x0b6f 0x0b63 0x0b68 0x0b73 0x0b20 0x0b56 0x0b47 0x0b41 | |
416 | 0x000b8020: 0x0b42 0x0b69 0x0b6f 0x0b73 0x0b20 0x0b63 0x0b75 0x0b72 | |
417 | 0x000b8030: 0x0b72 0x0b65 0x0b6e 0x0b74 0x0b2d 0x0b63 0x0b76 0x0b73 | |
418 | 0x000b8040: 0x0b20 0x0b30 0x0b35 0x0b20 0x0b4e 0x0b6f 0x0b76 0x0b20 | |
419 | 0x000b8050: 0x0b32 0x0b30 0x0b30 0x0b33 0x0720 0x0720 0x0720 0x0720 | |
420 | 0x000b8060: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 | |
421 | 0x000b8070: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 | |
422 | 0x000b8080: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 | |
423 | 0x000b8090: 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 0x0720 | |
424 | @end smallexample | |
425 | @end itemize | |
426 | ETEXI | |
427 | ||
d7f9b689 LC |
428 | { |
429 | .name = "p|print", | |
430 | .args_type = "fmt:/,val:l", | |
d7f9b689 LC |
431 | .params = "/fmt expr", |
432 | .help = "print expression value (use $reg for CPU register access)", | |
af4ce882 | 433 | .mhandler.cmd = do_print, |
d7f9b689 LC |
434 | }, |
435 | ||
2313086a BS |
436 | STEXI |
437 | @item p or print/@var{fmt} @var{expr} | |
70fcbbe7 | 438 | @findex print |
2313086a BS |
439 | |
440 | Print expression value. Only the @var{format} part of @var{fmt} is | |
441 | used. | |
442 | ETEXI | |
443 | ||
d7f9b689 LC |
444 | { |
445 | .name = "i", | |
446 | .args_type = "fmt:/,addr:i,index:i.", | |
d7f9b689 LC |
447 | .params = "/fmt addr", |
448 | .help = "I/O port read", | |
af4ce882 | 449 | .mhandler.cmd = do_ioport_read, |
d7f9b689 LC |
450 | }, |
451 | ||
2313086a BS |
452 | STEXI |
453 | Read I/O port. | |
454 | ETEXI | |
455 | ||
d7f9b689 LC |
456 | { |
457 | .name = "o", | |
458 | .args_type = "fmt:/,addr:i,val:i", | |
d7f9b689 LC |
459 | .params = "/fmt addr value", |
460 | .help = "I/O port write", | |
af4ce882 | 461 | .mhandler.cmd = do_ioport_write, |
d7f9b689 LC |
462 | }, |
463 | ||
f114784f JK |
464 | STEXI |
465 | Write to I/O port. | |
466 | ETEXI | |
2313086a | 467 | |
d7f9b689 LC |
468 | { |
469 | .name = "sendkey", | |
470 | .args_type = "string:s,hold_time:i?", | |
d7f9b689 LC |
471 | .params = "keys [hold_ms]", |
472 | .help = "send keys to the VM (e.g. 'sendkey ctrl-alt-f1', default hold time=100 ms)", | |
af4ce882 | 473 | .mhandler.cmd = do_sendkey, |
d7f9b689 LC |
474 | }, |
475 | ||
2313086a BS |
476 | STEXI |
477 | @item sendkey @var{keys} | |
70fcbbe7 | 478 | @findex sendkey |
2313086a BS |
479 | |
480 | Send @var{keys} to the emulator. @var{keys} could be the name of the | |
481 | key or @code{#} followed by the raw value in either decimal or hexadecimal | |
482 | format. Use @code{-} to press several keys simultaneously. Example: | |
483 | @example | |
484 | sendkey ctrl-alt-f1 | |
485 | @end example | |
486 | ||
487 | This command is useful to send keys that your graphical user interface | |
488 | intercepts at low level, such as @code{ctrl-alt-f1} in X Window. | |
489 | ETEXI | |
490 | ||
d7f9b689 LC |
491 | { |
492 | .name = "system_reset", | |
493 | .args_type = "", | |
d7f9b689 LC |
494 | .params = "", |
495 | .help = "reset the system", | |
c80d259e LC |
496 | .user_print = monitor_user_noop, |
497 | .mhandler.cmd_new = do_system_reset, | |
d7f9b689 LC |
498 | }, |
499 | ||
2313086a BS |
500 | STEXI |
501 | @item system_reset | |
70fcbbe7 | 502 | @findex system_reset |
2313086a BS |
503 | |
504 | Reset the system. | |
505 | ETEXI | |
506 | ||
d7f9b689 LC |
507 | { |
508 | .name = "system_powerdown", | |
509 | .args_type = "", | |
d7f9b689 LC |
510 | .params = "", |
511 | .help = "send system power down event", | |
43076664 LC |
512 | .user_print = monitor_user_noop, |
513 | .mhandler.cmd_new = do_system_powerdown, | |
d7f9b689 LC |
514 | }, |
515 | ||
2313086a BS |
516 | STEXI |
517 | @item system_powerdown | |
70fcbbe7 | 518 | @findex system_powerdown |
2313086a BS |
519 | |
520 | Power down the system (if supported). | |
521 | ETEXI | |
522 | ||
d7f9b689 LC |
523 | { |
524 | .name = "sum", | |
525 | .args_type = "start:i,size:i", | |
d7f9b689 LC |
526 | .params = "addr size", |
527 | .help = "compute the checksum of a memory region", | |
af4ce882 | 528 | .mhandler.cmd = do_sum, |
d7f9b689 LC |
529 | }, |
530 | ||
2313086a BS |
531 | STEXI |
532 | @item sum @var{addr} @var{size} | |
70fcbbe7 | 533 | @findex sum |
2313086a BS |
534 | |
535 | Compute the checksum of a memory region. | |
536 | ETEXI | |
537 | ||
d7f9b689 LC |
538 | { |
539 | .name = "usb_add", | |
540 | .args_type = "devname:s", | |
d7f9b689 LC |
541 | .params = "device", |
542 | .help = "add USB device (e.g. 'host:bus.addr' or 'host:vendor_id:product_id')", | |
af4ce882 | 543 | .mhandler.cmd = do_usb_add, |
d7f9b689 LC |
544 | }, |
545 | ||
2313086a BS |
546 | STEXI |
547 | @item usb_add @var{devname} | |
70fcbbe7 | 548 | @findex usb_add |
2313086a BS |
549 | |
550 | Add the USB device @var{devname}. For details of available devices see | |
551 | @ref{usb_devices} | |
552 | ETEXI | |
553 | ||
d7f9b689 LC |
554 | { |
555 | .name = "usb_del", | |
556 | .args_type = "devname:s", | |
d7f9b689 LC |
557 | .params = "device", |
558 | .help = "remove USB device 'bus.addr'", | |
af4ce882 | 559 | .mhandler.cmd = do_usb_del, |
d7f9b689 LC |
560 | }, |
561 | ||
2313086a BS |
562 | STEXI |
563 | @item usb_del @var{devname} | |
70fcbbe7 | 564 | @findex usb_del |
2313086a BS |
565 | |
566 | Remove the USB device @var{devname} from the QEMU virtual USB | |
567 | hub. @var{devname} has the syntax @code{bus.addr}. Use the monitor | |
568 | command @code{info usb} to see the devices you can remove. | |
569 | ETEXI | |
570 | ||
d7f9b689 LC |
571 | { |
572 | .name = "device_add", | |
573 | .args_type = "config:s", | |
d7f9b689 LC |
574 | .params = "device", |
575 | .help = "add device, like -device on the command line", | |
af4ce882 | 576 | .mhandler.cmd = do_device_add, |
d7f9b689 LC |
577 | }, |
578 | ||
3418bd25 GH |
579 | STEXI |
580 | @item device_add @var{config} | |
70fcbbe7 | 581 | @findex device_add |
3418bd25 GH |
582 | |
583 | Add device. | |
584 | ETEXI | |
585 | ||
d7f9b689 LC |
586 | { |
587 | .name = "device_del", | |
588 | .args_type = "id:s", | |
d7f9b689 LC |
589 | .params = "device", |
590 | .help = "remove device", | |
af4ce882 | 591 | .mhandler.cmd = do_device_del, |
d7f9b689 LC |
592 | }, |
593 | ||
3418bd25 GH |
594 | STEXI |
595 | @item device_del @var{id} | |
70fcbbe7 | 596 | @findex device_del |
3418bd25 GH |
597 | |
598 | Remove device @var{id}. | |
599 | ETEXI | |
600 | ||
d7f9b689 LC |
601 | { |
602 | .name = "cpu", | |
603 | .args_type = "index:i", | |
d7f9b689 LC |
604 | .params = "index", |
605 | .help = "set the default CPU", | |
81a1b45a MA |
606 | .user_print = monitor_user_noop, |
607 | .mhandler.cmd_new = do_cpu_set, | |
d7f9b689 | 608 | }, |
3418bd25 | 609 | |
2313086a BS |
610 | STEXI |
611 | Set the default CPU. | |
612 | ETEXI | |
613 | ||
d7f9b689 LC |
614 | { |
615 | .name = "mouse_move", | |
616 | .args_type = "dx_str:s,dy_str:s,dz_str:s?", | |
d7f9b689 LC |
617 | .params = "dx dy [dz]", |
618 | .help = "send mouse move events", | |
af4ce882 | 619 | .mhandler.cmd = do_mouse_move, |
d7f9b689 LC |
620 | }, |
621 | ||
2313086a BS |
622 | STEXI |
623 | @item mouse_move @var{dx} @var{dy} [@var{dz}] | |
70fcbbe7 | 624 | @findex mouse_move |
2313086a BS |
625 | Move the active mouse to the specified coordinates @var{dx} @var{dy} |
626 | with optional scroll axis @var{dz}. | |
627 | ETEXI | |
628 | ||
d7f9b689 LC |
629 | { |
630 | .name = "mouse_button", | |
631 | .args_type = "button_state:i", | |
d7f9b689 LC |
632 | .params = "state", |
633 | .help = "change mouse button state (1=L, 2=M, 4=R)", | |
af4ce882 | 634 | .mhandler.cmd = do_mouse_button, |
d7f9b689 LC |
635 | }, |
636 | ||
2313086a BS |
637 | STEXI |
638 | @item mouse_button @var{val} | |
70fcbbe7 | 639 | @findex mouse_button |
2313086a BS |
640 | Change the active mouse button state @var{val} (1=L, 2=M, 4=R). |
641 | ETEXI | |
642 | ||
d7f9b689 LC |
643 | { |
644 | .name = "mouse_set", | |
645 | .args_type = "index:i", | |
d7f9b689 LC |
646 | .params = "index", |
647 | .help = "set which mouse device receives events", | |
af4ce882 | 648 | .mhandler.cmd = do_mouse_set, |
d7f9b689 LC |
649 | }, |
650 | ||
2313086a BS |
651 | STEXI |
652 | @item mouse_set @var{index} | |
70fcbbe7 | 653 | @findex mouse_set |
2313086a BS |
654 | Set which mouse device receives events at given @var{index}, index |
655 | can be obtained with | |
656 | @example | |
657 | info mice | |
658 | @end example | |
659 | ETEXI | |
660 | ||
661 | #ifdef HAS_AUDIO | |
d7f9b689 LC |
662 | { |
663 | .name = "wavcapture", | |
664 | .args_type = "path:F,freq:i?,bits:i?,nchannels:i?", | |
d7f9b689 LC |
665 | .params = "path [frequency [bits [channels]]]", |
666 | .help = "capture audio to a wave file (default frequency=44100 bits=16 channels=2)", | |
af4ce882 | 667 | .mhandler.cmd = do_wav_capture, |
d7f9b689 | 668 | }, |
2313086a BS |
669 | #endif |
670 | STEXI | |
671 | @item wavcapture @var{filename} [@var{frequency} [@var{bits} [@var{channels}]]] | |
70fcbbe7 | 672 | @findex wavcapture |
2313086a BS |
673 | Capture audio into @var{filename}. Using sample rate @var{frequency} |
674 | bits per sample @var{bits} and number of channels @var{channels}. | |
675 | ||
676 | Defaults: | |
677 | @itemize @minus | |
678 | @item Sample rate = 44100 Hz - CD quality | |
679 | @item Bits = 16 | |
680 | @item Number of channels = 2 - Stereo | |
681 | @end itemize | |
682 | ETEXI | |
683 | ||
684 | #ifdef HAS_AUDIO | |
d7f9b689 LC |
685 | { |
686 | .name = "stopcapture", | |
687 | .args_type = "n:i", | |
d7f9b689 LC |
688 | .params = "capture index", |
689 | .help = "stop capture", | |
af4ce882 | 690 | .mhandler.cmd = do_stop_capture, |
d7f9b689 | 691 | }, |
2313086a BS |
692 | #endif |
693 | STEXI | |
694 | @item stopcapture @var{index} | |
70fcbbe7 | 695 | @findex stopcapture |
2313086a BS |
696 | Stop capture with a given @var{index}, index can be obtained with |
697 | @example | |
698 | info capture | |
699 | @end example | |
700 | ETEXI | |
701 | ||
d7f9b689 LC |
702 | { |
703 | .name = "memsave", | |
704 | .args_type = "val:l,size:i,filename:s", | |
d7f9b689 LC |
705 | .params = "addr size file", |
706 | .help = "save to disk virtual memory dump starting at 'addr' of size 'size'", | |
57e09454 LC |
707 | .user_print = monitor_user_noop, |
708 | .mhandler.cmd_new = do_memory_save, | |
d7f9b689 LC |
709 | }, |
710 | ||
2313086a BS |
711 | STEXI |
712 | @item memsave @var{addr} @var{size} @var{file} | |
70fcbbe7 | 713 | @findex memsave |
2313086a BS |
714 | save to disk virtual memory dump starting at @var{addr} of size @var{size}. |
715 | ETEXI | |
716 | ||
d7f9b689 LC |
717 | { |
718 | .name = "pmemsave", | |
719 | .args_type = "val:l,size:i,filename:s", | |
d7f9b689 LC |
720 | .params = "addr size file", |
721 | .help = "save to disk physical memory dump starting at 'addr' of size 'size'", | |
18f5a8bf LC |
722 | .user_print = monitor_user_noop, |
723 | .mhandler.cmd_new = do_physical_memory_save, | |
d7f9b689 LC |
724 | }, |
725 | ||
2313086a BS |
726 | STEXI |
727 | @item pmemsave @var{addr} @var{size} @var{file} | |
70fcbbe7 | 728 | @findex pmemsave |
2313086a BS |
729 | save to disk physical memory dump starting at @var{addr} of size @var{size}. |
730 | ETEXI | |
731 | ||
d7f9b689 LC |
732 | { |
733 | .name = "boot_set", | |
734 | .args_type = "bootdevice:s", | |
d7f9b689 LC |
735 | .params = "bootdevice", |
736 | .help = "define new values for the boot device list", | |
af4ce882 | 737 | .mhandler.cmd = do_boot_set, |
d7f9b689 LC |
738 | }, |
739 | ||
2313086a BS |
740 | STEXI |
741 | @item boot_set @var{bootdevicelist} | |
70fcbbe7 | 742 | @findex boot_set |
2313086a BS |
743 | |
744 | Define new values for the boot device list. Those values will override | |
745 | the values specified on the command line through the @code{-boot} option. | |
746 | ||
747 | The values that can be specified here depend on the machine type, but are | |
748 | the same that can be specified in the @code{-boot} command line option. | |
749 | ETEXI | |
750 | ||
751 | #if defined(TARGET_I386) | |
d7f9b689 LC |
752 | { |
753 | .name = "nmi", | |
754 | .args_type = "cpu_index:i", | |
d7f9b689 LC |
755 | .params = "cpu", |
756 | .help = "inject an NMI on the given CPU", | |
af4ce882 | 757 | .mhandler.cmd = do_inject_nmi, |
d7f9b689 | 758 | }, |
2313086a BS |
759 | #endif |
760 | STEXI | |
761 | @item nmi @var{cpu} | |
70fcbbe7 | 762 | @findex nmi |
2313086a BS |
763 | Inject an NMI on the given CPU (x86 only). |
764 | ETEXI | |
765 | ||
d7f9b689 LC |
766 | { |
767 | .name = "migrate", | |
fbc3d96c LS |
768 | .args_type = "detach:-d,blk:-b,inc:-i,uri:s", |
769 | .params = "[-d] [-b] [-i] uri", | |
770 | .help = "migrate to URI (using -d to not wait for completion)" | |
771 | "\n\t\t\t -b for migration without shared storage with" | |
772 | " full copy of disk\n\t\t\t -i for migration without " | |
773 | "shared storage with incremental copy of disk " | |
774 | "(base image shared between src and destination)", | |
775 | .user_print = monitor_user_noop, | |
776 | .mhandler.cmd_new = do_migrate, | |
d7f9b689 LC |
777 | }, |
778 | ||
fbc3d96c | 779 | |
2313086a | 780 | STEXI |
fbc3d96c | 781 | @item migrate [-d] [-b] [-i] @var{uri} |
70fcbbe7 | 782 | @findex migrate |
2313086a | 783 | Migrate to @var{uri} (using -d to not wait for completion). |
fbc3d96c LS |
784 | -b for migration with full copy of disk |
785 | -i for migration with incremental copy of disk (base image is shared) | |
2313086a BS |
786 | ETEXI |
787 | ||
d7f9b689 LC |
788 | { |
789 | .name = "migrate_cancel", | |
790 | .args_type = "", | |
d7f9b689 LC |
791 | .params = "", |
792 | .help = "cancel the current VM migration", | |
911d2963 LC |
793 | .user_print = monitor_user_noop, |
794 | .mhandler.cmd_new = do_migrate_cancel, | |
d7f9b689 LC |
795 | }, |
796 | ||
2313086a BS |
797 | STEXI |
798 | @item migrate_cancel | |
70fcbbe7 | 799 | @findex migrate_cancel |
2313086a BS |
800 | Cancel the current VM migration. |
801 | ETEXI | |
802 | ||
d7f9b689 LC |
803 | { |
804 | .name = "migrate_set_speed", | |
5667c493 | 805 | .args_type = "value:b", |
d7f9b689 LC |
806 | .params = "value", |
807 | .help = "set maximum speed (in bytes) for migrations", | |
5fd9083c MA |
808 | .user_print = monitor_user_noop, |
809 | .mhandler.cmd_new = do_migrate_set_speed, | |
d7f9b689 LC |
810 | }, |
811 | ||
2313086a BS |
812 | STEXI |
813 | @item migrate_set_speed @var{value} | |
70fcbbe7 | 814 | @findex migrate_set_speed |
2313086a | 815 | Set maximum speed to @var{value} (in bytes) for migrations. |
2ea42952 GC |
816 | ETEXI |
817 | ||
d7f9b689 LC |
818 | { |
819 | .name = "migrate_set_downtime", | |
b0fbf7d3 | 820 | .args_type = "value:T", |
d7f9b689 LC |
821 | .params = "value", |
822 | .help = "set maximum tolerated downtime (in seconds) for migrations", | |
c6027f56 MA |
823 | .user_print = monitor_user_noop, |
824 | .mhandler.cmd_new = do_migrate_set_downtime, | |
d7f9b689 | 825 | }, |
2ea42952 GC |
826 | |
827 | STEXI | |
828 | @item migrate_set_downtime @var{second} | |
70fcbbe7 | 829 | @findex migrate_set_downtime |
2ea42952 | 830 | Set maximum tolerated downtime (in seconds) for migration. |
2313086a BS |
831 | ETEXI |
832 | ||
833 | #if defined(TARGET_I386) | |
d7f9b689 LC |
834 | { |
835 | .name = "drive_add", | |
836 | .args_type = "pci_addr:s,opts:s", | |
d7f9b689 LC |
837 | .params = "[[<domain>:]<bus>:]<slot>\n" |
838 | "[file=file][,if=type][,bus=n]\n" | |
839 | "[,unit=m][,media=d][index=i]\n" | |
840 | "[,cyls=c,heads=h,secs=s[,trans=t]]\n" | |
841 | "[snapshot=on|off][,cache=on|off]", | |
842 | .help = "add drive to PCI storage controller", | |
af4ce882 | 843 | .mhandler.cmd = drive_hot_add, |
d7f9b689 | 844 | }, |
2313086a | 845 | #endif |
d7f9b689 | 846 | |
2313086a BS |
847 | STEXI |
848 | @item drive_add | |
70fcbbe7 | 849 | @findex drive_add |
2313086a BS |
850 | Add drive to PCI storage controller. |
851 | ETEXI | |
852 | ||
853 | #if defined(TARGET_I386) | |
d7f9b689 LC |
854 | { |
855 | .name = "pci_add", | |
856 | .args_type = "pci_addr:s,type:s,opts:s?", | |
d7f9b689 LC |
857 | .params = "auto|[[<domain>:]<bus>:]<slot> nic|storage [[vlan=n][,macaddr=addr][,model=type]] [file=file][,if=type][,bus=nr]...", |
858 | .help = "hot-add PCI device", | |
7a344f7a LC |
859 | .user_print = pci_device_hot_add_print, |
860 | .mhandler.cmd_new = pci_device_hot_add, | |
d7f9b689 | 861 | }, |
2313086a | 862 | #endif |
d7f9b689 | 863 | |
2313086a BS |
864 | STEXI |
865 | @item pci_add | |
70fcbbe7 | 866 | @findex pci_add |
2313086a BS |
867 | Hot-add PCI device. |
868 | ETEXI | |
869 | ||
870 | #if defined(TARGET_I386) | |
d7f9b689 LC |
871 | { |
872 | .name = "pci_del", | |
873 | .args_type = "pci_addr:s", | |
d7f9b689 LC |
874 | .params = "[[<domain>:]<bus>:]<slot>", |
875 | .help = "hot remove PCI device", | |
6848d827 LC |
876 | .user_print = monitor_user_noop, |
877 | .mhandler.cmd_new = do_pci_device_hot_remove, | |
d7f9b689 | 878 | }, |
2313086a | 879 | #endif |
d7f9b689 | 880 | |
2313086a BS |
881 | STEXI |
882 | @item pci_del | |
70fcbbe7 | 883 | @findex pci_del |
2313086a BS |
884 | Hot remove PCI device. |
885 | ETEXI | |
886 | ||
d7f9b689 LC |
887 | { |
888 | .name = "host_net_add", | |
889 | .args_type = "device:s,opts:s?", | |
d7f9b689 LC |
890 | .params = "tap|user|socket|vde|dump [options]", |
891 | .help = "add host VLAN client", | |
af4ce882 | 892 | .mhandler.cmd = net_host_device_add, |
d7f9b689 LC |
893 | }, |
894 | ||
2313086a BS |
895 | STEXI |
896 | @item host_net_add | |
70fcbbe7 | 897 | @findex host_net_add |
2313086a BS |
898 | Add host VLAN client. |
899 | ETEXI | |
900 | ||
d7f9b689 LC |
901 | { |
902 | .name = "host_net_remove", | |
903 | .args_type = "vlan_id:i,device:s", | |
d7f9b689 LC |
904 | .params = "vlan_id name", |
905 | .help = "remove host VLAN client", | |
af4ce882 | 906 | .mhandler.cmd = net_host_device_remove, |
d7f9b689 LC |
907 | }, |
908 | ||
2313086a BS |
909 | STEXI |
910 | @item host_net_remove | |
70fcbbe7 | 911 | @findex host_net_remove |
2313086a BS |
912 | Remove host VLAN client. |
913 | ETEXI | |
914 | ||
915 | #ifdef CONFIG_SLIRP | |
d7f9b689 LC |
916 | { |
917 | .name = "hostfwd_add", | |
918 | .args_type = "arg1:s,arg2:s?,arg3:s?", | |
d7f9b689 LC |
919 | .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport-[guestaddr]:guestport", |
920 | .help = "redirect TCP or UDP connections from host to guest (requires -net user)", | |
af4ce882 | 921 | .mhandler.cmd = net_slirp_hostfwd_add, |
d7f9b689 LC |
922 | }, |
923 | ||
924 | { | |
925 | .name = "hostfwd_remove", | |
926 | .args_type = "arg1:s,arg2:s?,arg3:s?", | |
d7f9b689 LC |
927 | .params = "[vlan_id name] [tcp|udp]:[hostaddr]:hostport", |
928 | .help = "remove host-to-guest TCP or UDP redirection", | |
af4ce882 | 929 | .mhandler.cmd = net_slirp_hostfwd_remove, |
d7f9b689 LC |
930 | }, |
931 | ||
2313086a BS |
932 | #endif |
933 | STEXI | |
934 | @item host_net_redir | |
70fcbbe7 | 935 | @findex host_net_redir |
2313086a BS |
936 | Redirect TCP or UDP connections from host to guest (requires -net user). |
937 | ETEXI | |
938 | ||
d7f9b689 LC |
939 | { |
940 | .name = "balloon", | |
3b0bd6ec | 941 | .args_type = "value:M", |
d7f9b689 LC |
942 | .params = "target", |
943 | .help = "request VM to change it's memory allocation (in MB)", | |
83fb1de2 | 944 | .user_print = monitor_user_noop, |
625a5bef AL |
945 | .mhandler.cmd_async = do_balloon, |
946 | .async = 1, | |
d7f9b689 LC |
947 | }, |
948 | ||
2313086a BS |
949 | STEXI |
950 | @item balloon @var{value} | |
70fcbbe7 | 951 | @findex balloon |
2313086a BS |
952 | Request VM to change its memory allocation to @var{value} (in MB). |
953 | ETEXI | |
954 | ||
d7f9b689 LC |
955 | { |
956 | .name = "set_link", | |
957 | .args_type = "name:s,up_or_down:s", | |
d7f9b689 LC |
958 | .params = "name up|down", |
959 | .help = "change the link status of a network adapter", | |
af4ce882 | 960 | .mhandler.cmd = do_set_link, |
d7f9b689 LC |
961 | }, |
962 | ||
2313086a BS |
963 | STEXI |
964 | @item set_link @var{name} [up|down] | |
70fcbbe7 | 965 | @findex set_link |
2313086a BS |
966 | Set link @var{name} up or down. |
967 | ETEXI | |
968 | ||
d7f9b689 LC |
969 | { |
970 | .name = "watchdog_action", | |
971 | .args_type = "action:s", | |
d7f9b689 LC |
972 | .params = "[reset|shutdown|poweroff|pause|debug|none]", |
973 | .help = "change watchdog action", | |
af4ce882 | 974 | .mhandler.cmd = do_watchdog_action, |
d7f9b689 LC |
975 | }, |
976 | ||
2313086a BS |
977 | STEXI |
978 | @item watchdog_action | |
70fcbbe7 | 979 | @findex watchdog_action |
2313086a BS |
980 | Change watchdog action. |
981 | ETEXI | |
982 | ||
d7f9b689 LC |
983 | { |
984 | .name = "acl_show", | |
985 | .args_type = "aclname:s", | |
d7f9b689 LC |
986 | .params = "aclname", |
987 | .help = "list rules in the access control list", | |
af4ce882 | 988 | .mhandler.cmd = do_acl_show, |
d7f9b689 LC |
989 | }, |
990 | ||
2313086a | 991 | STEXI |
15dfcd45 | 992 | @item acl_show @var{aclname} |
70fcbbe7 | 993 | @findex acl_show |
15dfcd45 JK |
994 | List all the matching rules in the access control list, and the default |
995 | policy. There are currently two named access control lists, | |
996 | @var{vnc.x509dname} and @var{vnc.username} matching on the x509 client | |
997 | certificate distinguished name, and SASL username respectively. | |
998 | ETEXI | |
2313086a | 999 | |
d7f9b689 LC |
1000 | { |
1001 | .name = "acl_policy", | |
1002 | .args_type = "aclname:s,policy:s", | |
d7f9b689 LC |
1003 | .params = "aclname allow|deny", |
1004 | .help = "set default access control list policy", | |
af4ce882 | 1005 | .mhandler.cmd = do_acl_policy, |
d7f9b689 LC |
1006 | }, |
1007 | ||
15dfcd45 | 1008 | STEXI |
cbbfacc6 | 1009 | @item acl_policy @var{aclname} @code{allow|deny} |
70fcbbe7 | 1010 | @findex acl_policy |
15dfcd45 | 1011 | Set the default access control list policy, used in the event that |
2313086a | 1012 | none of the explicit rules match. The default policy at startup is |
15dfcd45 JK |
1013 | always @code{deny}. |
1014 | ETEXI | |
1015 | ||
d7f9b689 LC |
1016 | { |
1017 | .name = "acl_add", | |
1018 | .args_type = "aclname:s,match:s,policy:s,index:i?", | |
d7f9b689 LC |
1019 | .params = "aclname match allow|deny [index]", |
1020 | .help = "add a match rule to the access control list", | |
af4ce882 | 1021 | .mhandler.cmd = do_acl_add, |
d7f9b689 LC |
1022 | }, |
1023 | ||
15dfcd45 JK |
1024 | STEXI |
1025 | @item acl_allow @var{aclname} @var{match} @code{allow|deny} [@var{index}] | |
70fcbbe7 | 1026 | @findex acl_allow |
15dfcd45 JK |
1027 | Add a match rule to the access control list, allowing or denying access. |
1028 | The match will normally be an exact username or x509 distinguished name, | |
1029 | but can optionally include wildcard globs. eg @code{*@@EXAMPLE.COM} to | |
1030 | allow all users in the @code{EXAMPLE.COM} kerberos realm. The match will | |
2313086a | 1031 | normally be appended to the end of the ACL, but can be inserted |
15dfcd45 JK |
1032 | earlier in the list if the optional @var{index} parameter is supplied. |
1033 | ETEXI | |
1034 | ||
d7f9b689 LC |
1035 | { |
1036 | .name = "acl_remove", | |
1037 | .args_type = "aclname:s,match:s", | |
d7f9b689 LC |
1038 | .params = "aclname match", |
1039 | .help = "remove a match rule from the access control list", | |
af4ce882 | 1040 | .mhandler.cmd = do_acl_remove, |
d7f9b689 LC |
1041 | }, |
1042 | ||
15dfcd45 JK |
1043 | STEXI |
1044 | @item acl_remove @var{aclname} @var{match} | |
70fcbbe7 | 1045 | @findex acl_remove |
15dfcd45 JK |
1046 | Remove the specified match rule from the access control list. |
1047 | ETEXI | |
1048 | ||
d7f9b689 LC |
1049 | { |
1050 | .name = "acl_reset", | |
1051 | .args_type = "aclname:s", | |
d7f9b689 LC |
1052 | .params = "aclname", |
1053 | .help = "reset the access control list", | |
af4ce882 | 1054 | .mhandler.cmd = do_acl_reset, |
d7f9b689 LC |
1055 | }, |
1056 | ||
15dfcd45 | 1057 | STEXI |
70fcbbe7 | 1058 | @item acl_remove @var{aclname} |
15dfcd45 | 1059 | Remove all matches from the access control list, and set the default |
2313086a | 1060 | policy back to @code{deny}. |
2313086a BS |
1061 | ETEXI |
1062 | ||
79c4f6b0 | 1063 | #if defined(TARGET_I386) |
d7f9b689 LC |
1064 | |
1065 | { | |
1066 | .name = "mce", | |
1067 | .args_type = "cpu_index:i,bank:i,status:l,mcg_status:l,addr:l,misc:l", | |
d7f9b689 LC |
1068 | .params = "cpu bank status mcgstatus addr misc", |
1069 | .help = "inject a MCE on the given CPU", | |
af4ce882 | 1070 | .mhandler.cmd = do_inject_mce, |
d7f9b689 LC |
1071 | }, |
1072 | ||
79c4f6b0 HY |
1073 | #endif |
1074 | STEXI | |
1075 | @item mce @var{cpu} @var{bank} @var{status} @var{mcgstatus} @var{addr} @var{misc} | |
70fcbbe7 | 1076 | @findex mce (x86) |
79c4f6b0 | 1077 | Inject an MCE on the given CPU (x86 only). |
f07918fd MM |
1078 | ETEXI |
1079 | ||
d7f9b689 LC |
1080 | { |
1081 | .name = "getfd", | |
1082 | .args_type = "fdname:s", | |
d7f9b689 LC |
1083 | .params = "getfd name", |
1084 | .help = "receive a file descriptor via SCM rights and assign it a name", | |
f0d6000a LC |
1085 | .user_print = monitor_user_noop, |
1086 | .mhandler.cmd_new = do_getfd, | |
d7f9b689 LC |
1087 | }, |
1088 | ||
f07918fd MM |
1089 | STEXI |
1090 | @item getfd @var{fdname} | |
70fcbbe7 | 1091 | @findex getfd |
f07918fd MM |
1092 | If a file descriptor is passed alongside this command using the SCM_RIGHTS |
1093 | mechanism on unix sockets, it is stored using the name @var{fdname} for | |
1094 | later use by other monitor commands. | |
1095 | ETEXI | |
1096 | ||
d7f9b689 LC |
1097 | { |
1098 | .name = "closefd", | |
1099 | .args_type = "fdname:s", | |
d7f9b689 LC |
1100 | .params = "closefd name", |
1101 | .help = "close a file descriptor previously passed via SCM rights", | |
18f3a515 LC |
1102 | .user_print = monitor_user_noop, |
1103 | .mhandler.cmd_new = do_closefd, | |
d7f9b689 LC |
1104 | }, |
1105 | ||
f07918fd MM |
1106 | STEXI |
1107 | @item closefd @var{fdname} | |
70fcbbe7 | 1108 | @findex closefd |
f07918fd MM |
1109 | Close the file descriptor previously assigned to @var{fdname} using the |
1110 | @code{getfd} command. This is only needed if the file descriptor was never | |
1111 | used by another monitor command. | |
a3a55a2e LC |
1112 | ETEXI |
1113 | ||
1114 | { | |
1115 | .name = "block_passwd", | |
1116 | .args_type = "device:B,password:s", | |
1117 | .params = "block_passwd device password", | |
1118 | .help = "set the password of encrypted block devices", | |
1119 | .user_print = monitor_user_noop, | |
1120 | .mhandler.cmd_new = do_block_set_passwd, | |
1121 | }, | |
1122 | ||
1123 | STEXI | |
1124 | @item block_passwd @var{device} @var{password} | |
70fcbbe7 | 1125 | @findex block_passwd |
a3a55a2e | 1126 | Set the encrypted device @var{device} password to @var{password} |
4a7e1190 LC |
1127 | ETEXI |
1128 | ||
1129 | { | |
1130 | .name = "qmp_capabilities", | |
1131 | .args_type = "", | |
1132 | .params = "", | |
1133 | .help = "enable QMP capabilities", | |
1134 | .user_print = monitor_user_noop, | |
1135 | .mhandler.cmd_new = do_qmp_capabilities, | |
1136 | }, | |
1137 | ||
1138 | STEXI | |
1139 | @item qmp_capabilities | |
1140 | Enable the specified QMP capabilities | |
79c4f6b0 HY |
1141 | ETEXI |
1142 | ||
2313086a BS |
1143 | STEXI |
1144 | @end table | |
1145 | ETEXI |