slirp: fix segv when init failed
[qemu.git] / hmp-commands-info.hx
blob74446c669e8c7169f05ae40f5efe6798ef513c8f
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 info commands
6 HXCOMM HXCOMM can be used for comments, discarded from both texi and C
8 STEXI
9 @table @option
10 @item info @var{subcommand}
11 @findex info
12 Show various information about the system state.
13 @table @option
14 ETEXI
17 .name = "version",
18 .args_type = "",
19 .params = "",
20 .help = "show the version of QEMU",
21 .mhandler.cmd = hmp_info_version,
24 STEXI
25 @item info version
26 @findex version
27 Show the version of QEMU.
28 ETEXI
31 .name = "network",
32 .args_type = "",
33 .params = "",
34 .help = "show the network state",
35 .mhandler.cmd = hmp_info_network,
38 STEXI
39 @item info network
40 @findex network
41 Show the network state.
42 ETEXI
45 .name = "chardev",
46 .args_type = "",
47 .params = "",
48 .help = "show the character devices",
49 .mhandler.cmd = hmp_info_chardev,
52 STEXI
53 @item info chardev
54 @findex chardev
55 Show the character devices.
56 ETEXI
59 .name = "block",
60 .args_type = "nodes:-n,verbose:-v,device:B?",
61 .params = "[-n] [-v] [device]",
62 .help = "show info of one block device or all block devices "
63 "(-n: show named nodes; -v: show details)",
64 .mhandler.cmd = hmp_info_block,
67 STEXI
68 @item info block
69 @findex block
70 Show info of one block device or all block devices.
71 ETEXI
74 .name = "blockstats",
75 .args_type = "",
76 .params = "",
77 .help = "show block device statistics",
78 .mhandler.cmd = hmp_info_blockstats,
81 STEXI
82 @item info blockstats
83 @findex blockstats
84 Show block device statistics.
85 ETEXI
88 .name = "block-jobs",
89 .args_type = "",
90 .params = "",
91 .help = "show progress of ongoing block device operations",
92 .mhandler.cmd = hmp_info_block_jobs,
95 STEXI
96 @item info block-jobs
97 @findex block-jobs
98 Show progress of ongoing block device operations.
99 ETEXI
102 .name = "registers",
103 .args_type = "",
104 .params = "",
105 .help = "show the cpu registers",
106 .mhandler.cmd = hmp_info_registers,
109 STEXI
110 @item info registers
111 @findex registers
112 Show the cpu registers.
113 ETEXI
115 #if defined(TARGET_I386)
117 .name = "lapic",
118 .args_type = "",
119 .params = "",
120 .help = "show local apic state",
121 .mhandler.cmd = hmp_info_local_apic,
123 #endif
125 STEXI
126 @item info lapic
127 @findex lapic
128 Show local APIC state
129 ETEXI
131 #if defined(TARGET_I386)
133 .name = "ioapic",
134 .args_type = "",
135 .params = "",
136 .help = "show io apic state",
137 .mhandler.cmd = hmp_info_io_apic,
139 #endif
141 STEXI
142 @item info ioapic
143 @findex ioapic
144 Show io APIC state
145 ETEXI
148 .name = "cpus",
149 .args_type = "",
150 .params = "",
151 .help = "show infos for each CPU",
152 .mhandler.cmd = hmp_info_cpus,
155 STEXI
156 @item info cpus
157 @findex cpus
158 Show infos for each CPU.
159 ETEXI
162 .name = "history",
163 .args_type = "",
164 .params = "",
165 .help = "show the command line history",
166 .mhandler.cmd = hmp_info_history,
169 STEXI
170 @item info history
171 @findex history
172 Show the command line history.
173 ETEXI
175 #if defined(TARGET_I386) || defined(TARGET_PPC) || defined(TARGET_MIPS) || \
176 defined(TARGET_LM32) || (defined(TARGET_SPARC) && !defined(TARGET_SPARC64))
178 .name = "irq",
179 .args_type = "",
180 .params = "",
181 .help = "show the interrupts statistics (if available)",
182 #ifdef TARGET_SPARC
183 .mhandler.cmd = sun4m_hmp_info_irq,
184 #elif defined(TARGET_LM32)
185 .mhandler.cmd = lm32_hmp_info_irq,
186 #else
187 .mhandler.cmd = hmp_info_irq,
188 #endif
191 STEXI
192 @item info irq
193 @findex irq
194 Show the interrupts statistics (if available).
195 ETEXI
198 .name = "pic",
199 .args_type = "",
200 .params = "",
201 .help = "show i8259 (PIC) state",
202 #ifdef TARGET_SPARC
203 .mhandler.cmd = sun4m_hmp_info_pic,
204 #elif defined(TARGET_LM32)
205 .mhandler.cmd = lm32_hmp_info_pic,
206 #else
207 .mhandler.cmd = hmp_info_pic,
208 #endif
210 #endif
212 STEXI
213 @item info pic
214 @findex pic
215 Show i8259 (PIC) state.
216 ETEXI
219 .name = "pci",
220 .args_type = "",
221 .params = "",
222 .help = "show PCI info",
223 .mhandler.cmd = hmp_info_pci,
226 STEXI
227 @item info pci
228 @findex pci
229 Show PCI information.
230 ETEXI
232 #if defined(TARGET_I386) || defined(TARGET_SH4) || defined(TARGET_SPARC) || \
233 defined(TARGET_PPC) || defined(TARGET_XTENSA)
235 .name = "tlb",
236 .args_type = "",
237 .params = "",
238 .help = "show virtual to physical memory mappings",
239 .mhandler.cmd = hmp_info_tlb,
241 #endif
243 STEXI
244 @item info tlb
245 @findex tlb
246 Show virtual to physical memory mappings.
247 ETEXI
249 #if defined(TARGET_I386)
251 .name = "mem",
252 .args_type = "",
253 .params = "",
254 .help = "show the active virtual memory mappings",
255 .mhandler.cmd = hmp_info_mem,
257 #endif
259 STEXI
260 @item info mem
261 @findex mem
262 Show the active virtual memory mappings.
263 ETEXI
266 .name = "mtree",
267 .args_type = "",
268 .params = "",
269 .help = "show memory tree",
270 .mhandler.cmd = hmp_info_mtree,
273 STEXI
274 @item info mtree
275 @findex mtree
276 Show memory tree.
277 ETEXI
280 .name = "jit",
281 .args_type = "",
282 .params = "",
283 .help = "show dynamic compiler info",
284 .mhandler.cmd = hmp_info_jit,
287 STEXI
288 @item info jit
289 @findex jit
290 Show dynamic compiler info.
291 ETEXI
294 .name = "opcount",
295 .args_type = "",
296 .params = "",
297 .help = "show dynamic compiler opcode counters",
298 .mhandler.cmd = hmp_info_opcount,
301 STEXI
302 @item info opcount
303 @findex opcount
304 Show dynamic compiler opcode counters
305 ETEXI
308 .name = "kvm",
309 .args_type = "",
310 .params = "",
311 .help = "show KVM information",
312 .mhandler.cmd = hmp_info_kvm,
315 STEXI
316 @item info kvm
317 @findex kvm
318 Show KVM information.
319 ETEXI
322 .name = "numa",
323 .args_type = "",
324 .params = "",
325 .help = "show NUMA information",
326 .mhandler.cmd = hmp_info_numa,
329 STEXI
330 @item info numa
331 @findex numa
332 Show NUMA information.
333 ETEXI
336 .name = "usb",
337 .args_type = "",
338 .params = "",
339 .help = "show guest USB devices",
340 .mhandler.cmd = hmp_info_usb,
343 STEXI
344 @item info usb
345 @findex usb
346 Show guest USB devices.
347 ETEXI
350 .name = "usbhost",
351 .args_type = "",
352 .params = "",
353 .help = "show host USB devices",
354 .mhandler.cmd = hmp_info_usbhost,
357 STEXI
358 @item info usbhost
359 @findex usbhost
360 Show host USB devices.
361 ETEXI
364 .name = "profile",
365 .args_type = "",
366 .params = "",
367 .help = "show profiling information",
368 .mhandler.cmd = hmp_info_profile,
371 STEXI
372 @item info profile
373 @findex profile
374 Show profiling information.
375 ETEXI
378 .name = "capture",
379 .args_type = "",
380 .params = "",
381 .help = "show capture information",
382 .mhandler.cmd = hmp_info_capture,
385 STEXI
386 @item info capture
387 @findex capture
388 Show capture information.
389 ETEXI
392 .name = "snapshots",
393 .args_type = "",
394 .params = "",
395 .help = "show the currently saved VM snapshots",
396 .mhandler.cmd = hmp_info_snapshots,
399 STEXI
400 @item info snapshots
401 @findex snapshots
402 Show the currently saved VM snapshots.
403 ETEXI
406 .name = "status",
407 .args_type = "",
408 .params = "",
409 .help = "show the current VM status (running|paused)",
410 .mhandler.cmd = hmp_info_status,
413 STEXI
414 @item info status
415 @findex status
416 Show the current VM status (running|paused).
417 ETEXI
420 .name = "mice",
421 .args_type = "",
422 .params = "",
423 .help = "show which guest mouse is receiving events",
424 .mhandler.cmd = hmp_info_mice,
427 STEXI
428 @item info mice
429 @findex mice
430 Show which guest mouse is receiving events.
431 ETEXI
434 .name = "vnc",
435 .args_type = "",
436 .params = "",
437 .help = "show the vnc server status",
438 .mhandler.cmd = hmp_info_vnc,
441 STEXI
442 @item info vnc
443 @findex vnc
444 Show the vnc server status.
445 ETEXI
447 #if defined(CONFIG_SPICE)
449 .name = "spice",
450 .args_type = "",
451 .params = "",
452 .help = "show the spice server status",
453 .mhandler.cmd = hmp_info_spice,
455 #endif
457 STEXI
458 @item info spice
459 @findex spice
460 Show the spice server status.
461 ETEXI
464 .name = "name",
465 .args_type = "",
466 .params = "",
467 .help = "show the current VM name",
468 .mhandler.cmd = hmp_info_name,
471 STEXI
472 @item info name
473 @findex name
474 Show the current VM name.
475 ETEXI
478 .name = "uuid",
479 .args_type = "",
480 .params = "",
481 .help = "show the current VM UUID",
482 .mhandler.cmd = hmp_info_uuid,
485 STEXI
486 @item info uuid
487 @findex uuid
488 Show the current VM UUID.
489 ETEXI
492 .name = "cpustats",
493 .args_type = "",
494 .params = "",
495 .help = "show CPU statistics",
496 .mhandler.cmd = hmp_info_cpustats,
499 STEXI
500 @item info cpustats
501 @findex cpustats
502 Show CPU statistics.
503 ETEXI
505 #if defined(CONFIG_SLIRP)
507 .name = "usernet",
508 .args_type = "",
509 .params = "",
510 .help = "show user network stack connection states",
511 .mhandler.cmd = hmp_info_usernet,
513 #endif
515 STEXI
516 @item info usernet
517 @findex usernet
518 Show user network stack connection states.
519 ETEXI
522 .name = "migrate",
523 .args_type = "",
524 .params = "",
525 .help = "show migration status",
526 .mhandler.cmd = hmp_info_migrate,
529 STEXI
530 @item info migrate
531 @findex migrate
532 Show migration status.
533 ETEXI
536 .name = "migrate_capabilities",
537 .args_type = "",
538 .params = "",
539 .help = "show current migration capabilities",
540 .mhandler.cmd = hmp_info_migrate_capabilities,
543 STEXI
544 @item info migrate_capabilities
545 @findex migrate_capabilities
546 Show current migration capabilities.
547 ETEXI
550 .name = "migrate_parameters",
551 .args_type = "",
552 .params = "",
553 .help = "show current migration parameters",
554 .mhandler.cmd = hmp_info_migrate_parameters,
557 STEXI
558 @item info migrate_parameters
559 @findex migrate_parameters
560 Show current migration parameters.
561 ETEXI
564 .name = "migrate_cache_size",
565 .args_type = "",
566 .params = "",
567 .help = "show current migration xbzrle cache size",
568 .mhandler.cmd = hmp_info_migrate_cache_size,
571 STEXI
572 @item info migrate_cache_size
573 @findex migrate_cache_size
574 Show current migration xbzrle cache size.
575 ETEXI
578 .name = "balloon",
579 .args_type = "",
580 .params = "",
581 .help = "show balloon information",
582 .mhandler.cmd = hmp_info_balloon,
585 STEXI
586 @item info balloon
587 @findex balloon
588 Show balloon information.
589 ETEXI
592 .name = "qtree",
593 .args_type = "",
594 .params = "",
595 .help = "show device tree",
596 .mhandler.cmd = hmp_info_qtree,
599 STEXI
600 @item info qtree
601 @findex qtree
602 Show device tree.
603 ETEXI
606 .name = "qdm",
607 .args_type = "",
608 .params = "",
609 .help = "show qdev device model list",
610 .mhandler.cmd = hmp_info_qdm,
613 STEXI
614 @item info qdm
615 @findex qdm
616 Show qdev device model list.
617 ETEXI
620 .name = "qom-tree",
621 .args_type = "path:s?",
622 .params = "[path]",
623 .help = "show QOM composition tree",
624 .mhandler.cmd = hmp_info_qom_tree,
627 STEXI
628 @item info qom-tree
629 @findex qom-tree
630 Show QOM composition tree.
631 ETEXI
634 .name = "roms",
635 .args_type = "",
636 .params = "",
637 .help = "show roms",
638 .mhandler.cmd = hmp_info_roms,
641 STEXI
642 @item info roms
643 @findex roms
644 Show roms.
645 ETEXI
648 .name = "trace-events",
649 .args_type = "name:s?,vcpu:i?",
650 .params = "[name] [vcpu]",
651 .help = "show available trace-events & their state "
652 "(name: event name pattern; vcpu: vCPU to query, default is any)",
653 .mhandler.cmd = hmp_info_trace_events,
654 .command_completion = info_trace_events_completion,
657 STEXI
658 @item info trace-events
659 @findex trace-events
660 Show available trace-events & their state.
661 ETEXI
664 .name = "tpm",
665 .args_type = "",
666 .params = "",
667 .help = "show the TPM device",
668 .mhandler.cmd = hmp_info_tpm,
671 STEXI
672 @item info tpm
673 @findex tpm
674 Show the TPM device.
675 ETEXI
678 .name = "memdev",
679 .args_type = "",
680 .params = "",
681 .help = "show memory backends",
682 .mhandler.cmd = hmp_info_memdev,
685 STEXI
686 @item info memdev
687 @findex memdev
688 Show memory backends
689 ETEXI
692 .name = "memory-devices",
693 .args_type = "",
694 .params = "",
695 .help = "show memory devices",
696 .mhandler.cmd = hmp_info_memory_devices,
699 STEXI
700 @item info memory-devices
701 @findex memory-devices
702 Show memory devices.
703 ETEXI
706 .name = "iothreads",
707 .args_type = "",
708 .params = "",
709 .help = "show iothreads",
710 .mhandler.cmd = hmp_info_iothreads,
713 STEXI
714 @item info iothreads
715 @findex iothreads
716 Show iothread's identifiers.
717 ETEXI
720 .name = "rocker",
721 .args_type = "name:s",
722 .params = "name",
723 .help = "Show rocker switch",
724 .mhandler.cmd = hmp_rocker,
727 STEXI
728 @item info rocker @var{name}
729 @findex rocker
730 Show rocker switch.
731 ETEXI
734 .name = "rocker-ports",
735 .args_type = "name:s",
736 .params = "name",
737 .help = "Show rocker ports",
738 .mhandler.cmd = hmp_rocker_ports,
741 STEXI
742 @item info rocker_ports @var{name}-ports
743 @findex ocker-ports
744 Show rocker ports.
745 ETEXI
748 .name = "rocker-of-dpa-flows",
749 .args_type = "name:s,tbl_id:i?",
750 .params = "name [tbl_id]",
751 .help = "Show rocker OF-DPA flow tables",
752 .mhandler.cmd = hmp_rocker_of_dpa_flows,
755 STEXI
756 @item info rocker_of_dpa_flows @var{name} [@var{tbl_id}]
757 @findex rocker-of-dpa-flows
758 Show rocker OF-DPA flow tables.
759 ETEXI
762 .name = "rocker-of-dpa-groups",
763 .args_type = "name:s,type:i?",
764 .params = "name [type]",
765 .help = "Show rocker OF-DPA groups",
766 .mhandler.cmd = hmp_rocker_of_dpa_groups,
769 STEXI
770 @item info rocker-of-dpa-groups @var{name} [@var{type}]
771 @findex rocker-of-dpa-groups
772 Show rocker OF-DPA groups.
773 ETEXI
775 #if defined(TARGET_S390X)
777 .name = "skeys",
778 .args_type = "addr:l",
779 .params = "address",
780 .help = "Display the value of a storage key",
781 .mhandler.cmd = hmp_info_skeys,
783 #endif
785 STEXI
786 @item info skeys @var{address}
787 @findex skeys
788 Display the value of a storage key (s390 only)
789 ETEXI
792 .name = "dump",
793 .args_type = "",
794 .params = "",
795 .help = "Display the latest dump status",
796 .mhandler.cmd = hmp_info_dump,
799 STEXI
800 @item info dump
801 @findex dump
802 Display the latest dump status.
803 ETEXI
806 .name = "hotpluggable-cpus",
807 .args_type = "",
808 .params = "",
809 .help = "Show information about hotpluggable CPUs",
810 .mhandler.cmd = hmp_hotpluggable_cpus,
813 STEXI
814 @item info hotpluggable-cpus
815 @findex hotpluggable-cpus
816 Show information about hotpluggable CPUs
817 ETEXI
819 STEXI
820 @end table
821 ETEXI
823 STEXI
824 @end table
825 ETEXI