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