]>
Commit | Line | Data |
---|---|---|
e3193601 AL |
1 | # -*- Mode: Python -*- |
2 | # | |
3 | # QAPI Schema | |
48a32bed | 4 | |
d34bda71 BC |
5 | # QAPI common definitions |
6 | { 'include': 'qapi/common.json' } | |
104059da | 7 | |
a090187d DB |
8 | # QAPI crypto definitions |
9 | { 'include': 'qapi/crypto.json' } | |
10 | ||
5db15096 BC |
11 | # QAPI block definitions |
12 | { 'include': 'qapi/block.json' } | |
13 | ||
82d72d9d WX |
14 | # QAPI event definitions |
15 | { 'include': 'qapi/event.json' } | |
16 | ||
1dde0f48 LV |
17 | # Tracing commands |
18 | { 'include': 'qapi/trace.json' } | |
19 | ||
39a18158 MA |
20 | # QAPI introspection |
21 | { 'include': 'qapi/introspect.json' } | |
22 | ||
104059da | 23 | ## |
801db5ec | 24 | # @LostTickPolicy: |
104059da PB |
25 | # |
26 | # Policy for handling lost ticks in timer devices. | |
27 | # | |
28 | # @discard: throw away the missed tick(s) and continue with future injection | |
29 | # normally. Guest time may be delayed, unless the OS has explicit | |
30 | # handling of lost ticks | |
31 | # | |
32 | # @delay: continue to deliver ticks at the normal rate. Guest time will be | |
33 | # delayed due to the late tick | |
34 | # | |
35 | # @merge: merge the missed tick(s) into one tick and inject. Guest time | |
36 | # may be delayed, depending on how the OS reacts to the merging | |
37 | # of ticks | |
38 | # | |
39 | # @slew: deliver ticks at a higher rate to catch up with the missed tick. The | |
40 | # guest time should not be delayed once catchup is complete. | |
41 | # | |
42 | # Since: 2.0 | |
43 | ## | |
44 | { 'enum': 'LostTickPolicy', | |
45 | 'data': ['discard', 'delay', 'merge', 'slew' ] } | |
46 | ||
b224e5e2 LC |
47 | # @add_client |
48 | # | |
49 | # Allow client connections for VNC, Spice and socket based | |
50 | # character devices to be passed in to QEMU via SCM_RIGHTS. | |
51 | # | |
52 | # @protocol: protocol name. Valid names are "vnc", "spice" or the | |
53 | # name of a character device (eg. from -chardev id=XXXX) | |
54 | # | |
55 | # @fdname: file descriptor name previously passed via 'getfd' command | |
56 | # | |
57 | # @skipauth: #optional whether to skip authentication. Only applies | |
58 | # to "vnc" and "spice" protocols | |
59 | # | |
60 | # @tls: #optional whether to perform TLS. Only applies to the "spice" | |
61 | # protocol | |
62 | # | |
63 | # Returns: nothing on success. | |
64 | # | |
65 | # Since: 0.14.0 | |
66 | ## | |
67 | { 'command': 'add_client', | |
68 | 'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool', | |
69 | '*tls': 'bool' } } | |
70 | ||
48a32bed AL |
71 | ## |
72 | # @NameInfo: | |
73 | # | |
74 | # Guest name information. | |
75 | # | |
76 | # @name: #optional The name of the guest | |
77 | # | |
78 | # Since 0.14.0 | |
79 | ## | |
895a2a80 | 80 | { 'struct': 'NameInfo', 'data': {'*name': 'str'} } |
48a32bed AL |
81 | |
82 | ## | |
83 | # @query-name: | |
84 | # | |
85 | # Return the name information of a guest. | |
86 | # | |
87 | # Returns: @NameInfo of the guest | |
88 | # | |
89 | # Since 0.14.0 | |
90 | ## | |
91 | { 'command': 'query-name', 'returns': 'NameInfo' } | |
b9c15f16 | 92 | |
292a2602 LC |
93 | ## |
94 | # @KvmInfo: | |
95 | # | |
96 | # Information about support for KVM acceleration | |
97 | # | |
98 | # @enabled: true if KVM acceleration is active | |
99 | # | |
100 | # @present: true if KVM acceleration is built into this executable | |
101 | # | |
102 | # Since: 0.14.0 | |
103 | ## | |
895a2a80 | 104 | { 'struct': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} } |
292a2602 LC |
105 | |
106 | ## | |
107 | # @query-kvm: | |
108 | # | |
109 | # Returns information about KVM acceleration | |
110 | # | |
111 | # Returns: @KvmInfo | |
112 | # | |
113 | # Since: 0.14.0 | |
114 | ## | |
115 | { 'command': 'query-kvm', 'returns': 'KvmInfo' } | |
116 | ||
1fa9a5e4 LC |
117 | ## |
118 | # @RunState | |
119 | # | |
6932a69b | 120 | # An enumeration of VM run states. |
1fa9a5e4 LC |
121 | # |
122 | # @debug: QEMU is running on a debugger | |
123 | # | |
0a24c7b1 LC |
124 | # @finish-migrate: guest is paused to finish the migration process |
125 | # | |
1e998146 PB |
126 | # @inmigrate: guest is paused waiting for an incoming migration. Note |
127 | # that this state does not tell whether the machine will start at the | |
128 | # end of the migration. This depends on the command-line -S option and | |
129 | # any invocation of 'stop' or 'cont' that has happened since QEMU was | |
130 | # started. | |
1fa9a5e4 LC |
131 | # |
132 | # @internal-error: An internal error that prevents further guest execution | |
133 | # has occurred | |
134 | # | |
135 | # @io-error: the last IOP has failed and the device is configured to pause | |
136 | # on I/O errors | |
137 | # | |
138 | # @paused: guest has been paused via the 'stop' command | |
139 | # | |
140 | # @postmigrate: guest is paused following a successful 'migrate' | |
141 | # | |
142 | # @prelaunch: QEMU was started with -S and guest has not started | |
143 | # | |
1fa9a5e4 LC |
144 | # @restore-vm: guest is paused to restore VM state |
145 | # | |
146 | # @running: guest is actively running | |
147 | # | |
148 | # @save-vm: guest is paused to save the VM state | |
149 | # | |
150 | # @shutdown: guest is shut down (and -no-shutdown is in use) | |
151 | # | |
ad02b96a LC |
152 | # @suspended: guest is suspended (ACPI S3) |
153 | # | |
1fa9a5e4 | 154 | # @watchdog: the watchdog action is configured to pause and has been triggered |
ede085b3 HT |
155 | # |
156 | # @guest-panicked: guest has been panicked as a result of guest OS panic | |
1fa9a5e4 LC |
157 | ## |
158 | { 'enum': 'RunState', | |
159 | 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused', | |
160 | 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm', | |
ede085b3 HT |
161 | 'running', 'save-vm', 'shutdown', 'suspended', 'watchdog', |
162 | 'guest-panicked' ] } | |
1fa9a5e4 LC |
163 | |
164 | ## | |
165 | # @StatusInfo: | |
166 | # | |
167 | # Information about VCPU run state | |
168 | # | |
169 | # @running: true if all VCPUs are runnable, false if not runnable | |
170 | # | |
171 | # @singlestep: true if VCPUs are in single-step mode | |
172 | # | |
173 | # @status: the virtual machine @RunState | |
174 | # | |
175 | # Since: 0.14.0 | |
176 | # | |
177 | # Notes: @singlestep is enabled through the GDB stub | |
178 | ## | |
895a2a80 | 179 | { 'struct': 'StatusInfo', |
1fa9a5e4 LC |
180 | 'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} } |
181 | ||
182 | ## | |
183 | # @query-status: | |
184 | # | |
185 | # Query the run status of all VCPUs | |
186 | # | |
187 | # Returns: @StatusInfo reflecting all VCPUs | |
188 | # | |
189 | # Since: 0.14.0 | |
190 | ## | |
191 | { 'command': 'query-status', 'returns': 'StatusInfo' } | |
192 | ||
efab767e LC |
193 | ## |
194 | # @UuidInfo: | |
195 | # | |
196 | # Guest UUID information. | |
197 | # | |
198 | # @UUID: the UUID of the guest | |
199 | # | |
200 | # Since: 0.14.0 | |
201 | # | |
202 | # Notes: If no UUID was specified for the guest, a null UUID is returned. | |
203 | ## | |
895a2a80 | 204 | { 'struct': 'UuidInfo', 'data': {'UUID': 'str'} } |
efab767e LC |
205 | |
206 | ## | |
207 | # @query-uuid: | |
208 | # | |
209 | # Query the guest UUID information. | |
210 | # | |
211 | # Returns: The @UuidInfo for the guest | |
212 | # | |
213 | # Since 0.14.0 | |
214 | ## | |
215 | { 'command': 'query-uuid', 'returns': 'UuidInfo' } | |
216 | ||
c5a415a0 LC |
217 | ## |
218 | # @ChardevInfo: | |
219 | # | |
220 | # Information about a character device. | |
221 | # | |
222 | # @label: the label of the character device | |
223 | # | |
224 | # @filename: the filename of the character device | |
225 | # | |
32a97ea1 LE |
226 | # @frontend-open: shows whether the frontend device attached to this backend |
227 | # (eg. with the chardev=... option) is in open or closed state | |
228 | # (since 2.1) | |
229 | # | |
c5a415a0 LC |
230 | # Notes: @filename is encoded using the QEMU command line character device |
231 | # encoding. See the QEMU man page for details. | |
232 | # | |
233 | # Since: 0.14.0 | |
234 | ## | |
895a2a80 | 235 | { 'struct': 'ChardevInfo', 'data': {'label': 'str', |
32a97ea1 LE |
236 | 'filename': 'str', |
237 | 'frontend-open': 'bool'} } | |
c5a415a0 LC |
238 | |
239 | ## | |
240 | # @query-chardev: | |
241 | # | |
242 | # Returns information about current character devices. | |
243 | # | |
244 | # Returns: a list of @ChardevInfo | |
245 | # | |
246 | # Since: 0.14.0 | |
247 | ## | |
248 | { 'command': 'query-chardev', 'returns': ['ChardevInfo'] } | |
aa9b79bc | 249 | |
77d1c3c6 MK |
250 | ## |
251 | # @ChardevBackendInfo: | |
252 | # | |
253 | # Information about a character device backend | |
254 | # | |
255 | # @name: The backend name | |
256 | # | |
257 | # Since: 2.0 | |
258 | ## | |
895a2a80 | 259 | { 'struct': 'ChardevBackendInfo', 'data': {'name': 'str'} } |
77d1c3c6 MK |
260 | |
261 | ## | |
262 | # @query-chardev-backends: | |
263 | # | |
264 | # Returns information about character device backends. | |
265 | # | |
266 | # Returns: a list of @ChardevBackendInfo | |
267 | # | |
268 | # Since: 2.0 | |
269 | ## | |
270 | { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] } | |
271 | ||
1f590cf9 LL |
272 | ## |
273 | # @DataFormat: | |
274 | # | |
275 | # An enumeration of data format. | |
276 | # | |
3949e594 | 277 | # @utf8: Data is a UTF-8 string (RFC 3629) |
1f590cf9 | 278 | # |
3949e594 | 279 | # @base64: Data is Base64 encoded binary (RFC 3548) |
1f590cf9 LL |
280 | # |
281 | # Since: 1.4 | |
282 | ## | |
ad0f171e | 283 | { 'enum': 'DataFormat', |
1f590cf9 LL |
284 | 'data': [ 'utf8', 'base64' ] } |
285 | ||
286 | ## | |
3949e594 | 287 | # @ringbuf-write: |
1f590cf9 | 288 | # |
3949e594 | 289 | # Write to a ring buffer character device. |
1f590cf9 | 290 | # |
3949e594 | 291 | # @device: the ring buffer character device name |
1f590cf9 | 292 | # |
3949e594 | 293 | # @data: data to write |
1f590cf9 | 294 | # |
3949e594 MA |
295 | # @format: #optional data encoding (default 'utf8'). |
296 | # - base64: data must be base64 encoded text. Its binary | |
297 | # decoding gets written. | |
298 | # Bug: invalid base64 is currently not rejected. | |
299 | # Whitespace *is* invalid. | |
300 | # - utf8: data's UTF-8 encoding is written | |
301 | # - data itself is always Unicode regardless of format, like | |
302 | # any other string. | |
1f590cf9 LL |
303 | # |
304 | # Returns: Nothing on success | |
1f590cf9 LL |
305 | # |
306 | # Since: 1.4 | |
307 | ## | |
3949e594 | 308 | { 'command': 'ringbuf-write', |
82e59a67 | 309 | 'data': {'device': 'str', 'data': 'str', |
1f590cf9 LL |
310 | '*format': 'DataFormat'} } |
311 | ||
49b6d722 | 312 | ## |
3949e594 | 313 | # @ringbuf-read: |
49b6d722 | 314 | # |
3949e594 | 315 | # Read from a ring buffer character device. |
49b6d722 | 316 | # |
3949e594 | 317 | # @device: the ring buffer character device name |
49b6d722 | 318 | # |
3949e594 | 319 | # @size: how many bytes to read at most |
49b6d722 | 320 | # |
3949e594 MA |
321 | # @format: #optional data encoding (default 'utf8'). |
322 | # - base64: the data read is returned in base64 encoding. | |
323 | # - utf8: the data read is interpreted as UTF-8. | |
324 | # Bug: can screw up when the buffer contains invalid UTF-8 | |
325 | # sequences, NUL characters, after the ring buffer lost | |
326 | # data, and when reading stops because the size limit is | |
327 | # reached. | |
328 | # - The return value is always Unicode regardless of format, | |
329 | # like any other string. | |
49b6d722 | 330 | # |
3ab651fc | 331 | # Returns: data read from the device |
49b6d722 LL |
332 | # |
333 | # Since: 1.4 | |
334 | ## | |
3949e594 | 335 | { 'command': 'ringbuf-read', |
49b6d722 | 336 | 'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'}, |
3ab651fc | 337 | 'returns': 'str' } |
49b6d722 | 338 | |
4860853d DB |
339 | ## |
340 | # @EventInfo: | |
341 | # | |
342 | # Information about a QMP event | |
343 | # | |
344 | # @name: The event name | |
345 | # | |
346 | # Since: 1.2.0 | |
347 | ## | |
895a2a80 | 348 | { 'struct': 'EventInfo', 'data': {'name': 'str'} } |
4860853d DB |
349 | |
350 | ## | |
351 | # @query-events: | |
352 | # | |
353 | # Return a list of supported QMP events by this server | |
354 | # | |
355 | # Returns: A list of @EventInfo for all supported events | |
356 | # | |
357 | # Since: 1.2.0 | |
358 | ## | |
359 | { 'command': 'query-events', 'returns': ['EventInfo'] } | |
360 | ||
791e7c82 LC |
361 | ## |
362 | # @MigrationStats | |
363 | # | |
364 | # Detailed migration status. | |
365 | # | |
366 | # @transferred: amount of bytes already transferred to the target VM | |
367 | # | |
368 | # @remaining: amount of bytes remaining to be transferred to the target VM | |
369 | # | |
370 | # @total: total amount of bytes involved in the migration process | |
371 | # | |
f1c72795 PL |
372 | # @duplicate: number of duplicate (zero) pages (since 1.2) |
373 | # | |
374 | # @skipped: number of skipped zero pages (since 1.5) | |
004d4c10 OW |
375 | # |
376 | # @normal : number of normal pages (since 1.2) | |
377 | # | |
8d017193 JQ |
378 | # @normal-bytes: number of normal bytes sent (since 1.2) |
379 | # | |
380 | # @dirty-pages-rate: number of pages dirtied by second by the | |
381 | # guest (since 1.3) | |
004d4c10 | 382 | # |
7e114f8c MH |
383 | # @mbps: throughput in megabits/sec. (since 1.6) |
384 | # | |
58570ed8 C |
385 | # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1) |
386 | # | |
004d4c10 | 387 | # Since: 0.14.0 |
791e7c82 | 388 | ## |
895a2a80 | 389 | { 'struct': 'MigrationStats', |
d5f8a570 | 390 | 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' , |
f1c72795 | 391 | 'duplicate': 'int', 'skipped': 'int', 'normal': 'int', |
7e114f8c | 392 | 'normal-bytes': 'int', 'dirty-pages-rate' : 'int', |
58570ed8 | 393 | 'mbps' : 'number', 'dirty-sync-count' : 'int' } } |
791e7c82 | 394 | |
f36d55af OW |
395 | ## |
396 | # @XBZRLECacheStats | |
397 | # | |
398 | # Detailed XBZRLE migration cache statistics | |
399 | # | |
400 | # @cache-size: XBZRLE cache size | |
401 | # | |
402 | # @bytes: amount of bytes already transferred to the target VM | |
403 | # | |
404 | # @pages: amount of pages transferred to the target VM | |
405 | # | |
406 | # @cache-miss: number of cache miss | |
407 | # | |
8bc39233 C |
408 | # @cache-miss-rate: rate of cache miss (since 2.1) |
409 | # | |
f36d55af OW |
410 | # @overflow: number of overflows |
411 | # | |
412 | # Since: 1.2 | |
413 | ## | |
895a2a80 | 414 | { 'struct': 'XBZRLECacheStats', |
f36d55af | 415 | 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int', |
8bc39233 C |
416 | 'cache-miss': 'int', 'cache-miss-rate': 'number', |
417 | 'overflow': 'int' } } | |
f36d55af | 418 | |
24b8c39b HZ |
419 | # @MigrationStatus: |
420 | # | |
421 | # An enumeration of migration status. | |
422 | # | |
423 | # @none: no migration has ever happened. | |
424 | # | |
425 | # @setup: migration process has been initiated. | |
426 | # | |
427 | # @cancelling: in the process of cancelling migration. | |
428 | # | |
429 | # @cancelled: cancelling migration is finished. | |
430 | # | |
431 | # @active: in the process of doing migration. | |
432 | # | |
433 | # @completed: migration is finished. | |
434 | # | |
435 | # @failed: some error occurred during migration process. | |
436 | # | |
437 | # Since: 2.3 | |
438 | # | |
439 | ## | |
440 | { 'enum': 'MigrationStatus', | |
441 | 'data': [ 'none', 'setup', 'cancelling', 'cancelled', | |
442 | 'active', 'completed', 'failed' ] } | |
443 | ||
791e7c82 LC |
444 | ## |
445 | # @MigrationInfo | |
446 | # | |
447 | # Information about current migration process. | |
448 | # | |
24b8c39b HZ |
449 | # @status: #optional @MigrationStatus describing the current migration status. |
450 | # If this field is not returned, no migration process | |
791e7c82 LC |
451 | # has been initiated |
452 | # | |
d5f8a570 JQ |
453 | # @ram: #optional @MigrationStats containing detailed migration |
454 | # status, only returned if status is 'active' or | |
24b8c39b | 455 | # 'completed'(since 1.2) |
791e7c82 LC |
456 | # |
457 | # @disk: #optional @MigrationStats containing detailed disk migration | |
458 | # status, only returned if status is 'active' and it is a block | |
459 | # migration | |
460 | # | |
f36d55af OW |
461 | # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE |
462 | # migration statistics, only returned if XBZRLE feature is on and | |
463 | # status is 'active' or 'completed' (since 1.2) | |
464 | # | |
7aa939af JQ |
465 | # @total-time: #optional total amount of milliseconds since migration started. |
466 | # If migration has ended, it returns the total migration | |
467 | # time. (since 1.2) | |
468 | # | |
9c5a9fcf JQ |
469 | # @downtime: #optional only present when migration finishes correctly |
470 | # total downtime in milliseconds for the guest. | |
471 | # (since 1.3) | |
472 | # | |
2c52ddf1 JQ |
473 | # @expected-downtime: #optional only present while migration is active |
474 | # expected downtime in milliseconds for the guest in last walk | |
475 | # of the dirty bitmap. (since 1.3) | |
476 | # | |
ed4fbd10 MH |
477 | # @setup-time: #optional amount of setup time in milliseconds _before_ the |
478 | # iterations begin but _after_ the QMP command is issued. This is designed | |
479 | # to provide an accounting of any activities (such as RDMA pinning) which | |
480 | # may be expensive, but do not actually occur during the iterative | |
481 | # migration rounds themselves. (since 1.6) | |
482 | # | |
4782893e JH |
483 | # @x-cpu-throttle-percentage: #optional percentage of time guest cpus are being |
484 | # throttled during auto-converge. This is only present when auto-converge | |
485 | # has started throttling guest cpus. (Since 2.5) | |
486 | # | |
791e7c82 LC |
487 | # Since: 0.14.0 |
488 | ## | |
895a2a80 | 489 | { 'struct': 'MigrationInfo', |
24b8c39b | 490 | 'data': {'*status': 'MigrationStatus', '*ram': 'MigrationStats', |
f36d55af | 491 | '*disk': 'MigrationStats', |
7aa939af | 492 | '*xbzrle-cache': 'XBZRLECacheStats', |
9c5a9fcf | 493 | '*total-time': 'int', |
2c52ddf1 | 494 | '*expected-downtime': 'int', |
ed4fbd10 | 495 | '*downtime': 'int', |
4782893e JH |
496 | '*setup-time': 'int', |
497 | '*x-cpu-throttle-percentage': 'int'} } | |
791e7c82 LC |
498 | |
499 | ## | |
500 | # @query-migrate | |
501 | # | |
502 | # Returns information about current migration process. | |
503 | # | |
504 | # Returns: @MigrationInfo | |
505 | # | |
506 | # Since: 0.14.0 | |
507 | ## | |
508 | { 'command': 'query-migrate', 'returns': 'MigrationInfo' } | |
509 | ||
bbf6da32 OW |
510 | ## |
511 | # @MigrationCapability | |
512 | # | |
513 | # Migration capabilities enumeration | |
514 | # | |
515 | # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding). | |
516 | # This feature allows us to minimize migration traffic for certain work | |
517 | # loads, by sending compressed difference of the pages | |
518 | # | |
41310c68 | 519 | # @rdma-pin-all: Controls whether or not the entire VM memory footprint is |
60d9222c | 520 | # mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage. |
41310c68 | 521 | # Disabled by default. (since 2.0) |
60d9222c | 522 | # |
323004a3 PL |
523 | # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This |
524 | # essentially saves 1MB of zeroes per block on the wire. Enabling requires | |
525 | # source and target VM to support this feature. To enable it is sufficient | |
526 | # to enable the capability on the source VM. The feature is disabled by | |
527 | # default. (since 1.6) | |
528 | # | |
dde4e694 LL |
529 | # @compress: Use multiple compression threads to accelerate live migration. |
530 | # This feature can help to reduce the migration traffic, by sending | |
531 | # compressed pages. Please note that if compress and xbzrle are both | |
532 | # on, compress only takes effect in the ram bulk stage, after that, | |
533 | # it will be disabled and only xbzrle takes effect, this can help to | |
534 | # minimize migration traffic. The feature is disabled by default. | |
535 | # (since 2.4 ) | |
536 | # | |
b05dc723 JQ |
537 | # @events: generate events for each migration state change |
538 | # (since 2.4 ) | |
539 | # | |
9781c371 JQ |
540 | # @auto-converge: If enabled, QEMU will automatically throttle down the guest |
541 | # to speed up convergence of RAM migration. (since 1.6) | |
542 | # | |
bbf6da32 OW |
543 | # Since: 1.2 |
544 | ## | |
545 | { 'enum': 'MigrationCapability', | |
dde4e694 | 546 | 'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks', |
b05dc723 | 547 | 'compress', 'events'] } |
bbf6da32 OW |
548 | |
549 | ## | |
550 | # @MigrationCapabilityStatus | |
551 | # | |
552 | # Migration capability information | |
553 | # | |
554 | # @capability: capability enum | |
555 | # | |
556 | # @state: capability state bool | |
557 | # | |
558 | # Since: 1.2 | |
559 | ## | |
895a2a80 | 560 | { 'struct': 'MigrationCapabilityStatus', |
bbf6da32 OW |
561 | 'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } } |
562 | ||
563 | ## | |
00458433 OW |
564 | # @migrate-set-capabilities |
565 | # | |
566 | # Enable/Disable the following migration capabilities (like xbzrle) | |
567 | # | |
568 | # @capabilities: json array of capability modifications to make | |
569 | # | |
570 | # Since: 1.2 | |
571 | ## | |
572 | { 'command': 'migrate-set-capabilities', | |
573 | 'data': { 'capabilities': ['MigrationCapabilityStatus'] } } | |
574 | ||
575 | ## | |
bbf6da32 OW |
576 | # @query-migrate-capabilities |
577 | # | |
578 | # Returns information about the current migration capabilities status | |
579 | # | |
580 | # Returns: @MigrationCapabilitiesStatus | |
581 | # | |
582 | # Since: 1.2 | |
583 | ## | |
584 | { 'command': 'query-migrate-capabilities', 'returns': ['MigrationCapabilityStatus']} | |
585 | ||
43c60a81 LL |
586 | # @MigrationParameter |
587 | # | |
588 | # Migration parameters enumeration | |
589 | # | |
590 | # @compress-level: Set the compression level to be used in live migration, | |
591 | # the compression level is an integer between 0 and 9, where 0 means | |
592 | # no compression, 1 means the best compression speed, and 9 means best | |
593 | # compression ratio which will consume more CPU. | |
594 | # | |
595 | # @compress-threads: Set compression thread count to be used in live migration, | |
596 | # the compression thread count is an integer between 1 and 255. | |
597 | # | |
598 | # @decompress-threads: Set decompression thread count to be used in live | |
599 | # migration, the decompression thread count is an integer between 1 | |
600 | # and 255. Usually, decompression is at least 4 times as fast as | |
601 | # compression, so set the decompress-threads to the number about 1/4 | |
602 | # of compress-threads is adequate. | |
603 | # | |
1626fee3 JH |
604 | # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled |
605 | # when migration auto-converge is activated. The | |
606 | # default value is 20. (Since 2.5) | |
607 | # | |
608 | # @x-cpu-throttle-increment: throttle percentage increase each time | |
609 | # auto-converge detects that migration is not making | |
610 | # progress. The default value is 10. (Since 2.5) | |
43c60a81 LL |
611 | # Since: 2.4 |
612 | ## | |
613 | { 'enum': 'MigrationParameter', | |
1626fee3 JH |
614 | 'data': ['compress-level', 'compress-threads', 'decompress-threads', |
615 | 'x-cpu-throttle-initial', 'x-cpu-throttle-increment'] } | |
43c60a81 | 616 | |
85de8323 LL |
617 | # |
618 | # @migrate-set-parameters | |
619 | # | |
620 | # Set the following migration parameters | |
621 | # | |
622 | # @compress-level: compression level | |
623 | # | |
624 | # @compress-threads: compression thread count | |
625 | # | |
626 | # @decompress-threads: decompression thread count | |
627 | # | |
1626fee3 JH |
628 | # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled |
629 | # when migration auto-converge is activated. The | |
630 | # default value is 20. (Since 2.5) | |
631 | # | |
632 | # @x-cpu-throttle-increment: throttle percentage increase each time | |
633 | # auto-converge detects that migration is not making | |
634 | # progress. The default value is 10. (Since 2.5) | |
85de8323 LL |
635 | # Since: 2.4 |
636 | ## | |
637 | { 'command': 'migrate-set-parameters', | |
638 | 'data': { '*compress-level': 'int', | |
639 | '*compress-threads': 'int', | |
1626fee3 JH |
640 | '*decompress-threads': 'int', |
641 | '*x-cpu-throttle-initial': 'int', | |
642 | '*x-cpu-throttle-increment': 'int'} } | |
85de8323 LL |
643 | |
644 | # | |
645 | # @MigrationParameters | |
646 | # | |
647 | # @compress-level: compression level | |
648 | # | |
649 | # @compress-threads: compression thread count | |
650 | # | |
651 | # @decompress-threads: decompression thread count | |
652 | # | |
1626fee3 JH |
653 | # @x-cpu-throttle-initial: Initial percentage of time guest cpus are throttled |
654 | # when migration auto-converge is activated. The | |
655 | # default value is 20. (Since 2.5) | |
656 | # | |
657 | # @x-cpu-throttle-increment: throttle percentage increase each time | |
658 | # auto-converge detects that migration is not making | |
659 | # progress. The default value is 10. (Since 2.5) | |
660 | # | |
85de8323 LL |
661 | # Since: 2.4 |
662 | ## | |
663 | { 'struct': 'MigrationParameters', | |
664 | 'data': { 'compress-level': 'int', | |
665 | 'compress-threads': 'int', | |
1626fee3 JH |
666 | 'decompress-threads': 'int', |
667 | 'x-cpu-throttle-initial': 'int', | |
668 | 'x-cpu-throttle-increment': 'int'} } | |
85de8323 LL |
669 | ## |
670 | # @query-migrate-parameters | |
671 | # | |
672 | # Returns information about the current migration parameters | |
673 | # | |
674 | # Returns: @MigrationParameters | |
675 | # | |
676 | # Since: 2.4 | |
677 | ## | |
678 | { 'command': 'query-migrate-parameters', | |
679 | 'returns': 'MigrationParameters' } | |
680 | ||
b8a185bc MA |
681 | ## |
682 | # @client_migrate_info | |
683 | # | |
684 | # Set migration information for remote display. This makes the server | |
685 | # ask the client to automatically reconnect using the new parameters | |
686 | # once migration finished successfully. Only implemented for SPICE. | |
687 | # | |
688 | # @protocol: must be "spice" | |
689 | # @hostname: migration target hostname | |
690 | # @port: #optional spice tcp port for plaintext channels | |
691 | # @tls-port: #optional spice tcp port for tls-secured channels | |
692 | # @cert-subject: #optional server certificate subject | |
693 | # | |
694 | # Since: 0.14.0 | |
695 | ## | |
696 | { 'command': 'client_migrate_info', | |
697 | 'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int', | |
698 | '*tls-port': 'int', '*cert-subject': 'str' } } | |
699 | ||
e235cec3 LC |
700 | ## |
701 | # @MouseInfo: | |
702 | # | |
703 | # Information about a mouse device. | |
704 | # | |
705 | # @name: the name of the mouse device | |
706 | # | |
707 | # @index: the index of the mouse device | |
708 | # | |
709 | # @current: true if this device is currently receiving mouse events | |
710 | # | |
711 | # @absolute: true if this device supports absolute coordinates as input | |
712 | # | |
713 | # Since: 0.14.0 | |
714 | ## | |
895a2a80 | 715 | { 'struct': 'MouseInfo', |
e235cec3 LC |
716 | 'data': {'name': 'str', 'index': 'int', 'current': 'bool', |
717 | 'absolute': 'bool'} } | |
718 | ||
719 | ## | |
720 | # @query-mice: | |
721 | # | |
722 | # Returns information about each active mouse device | |
723 | # | |
724 | # Returns: a list of @MouseInfo for each device | |
725 | # | |
726 | # Since: 0.14.0 | |
727 | ## | |
728 | { 'command': 'query-mice', 'returns': ['MouseInfo'] } | |
729 | ||
de0b36b6 LC |
730 | ## |
731 | # @CpuInfo: | |
732 | # | |
733 | # Information about a virtual CPU | |
734 | # | |
735 | # @CPU: the index of the virtual CPU | |
736 | # | |
737 | # @current: this only exists for backwards compatible and should be ignored | |
b80e560b | 738 | # |
de0b36b6 LC |
739 | # @halted: true if the virtual CPU is in the halt state. Halt usually refers |
740 | # to a processor specific low power mode. | |
741 | # | |
58f88d4b EH |
742 | # @qom_path: path to the CPU object in the QOM tree (since 2.4) |
743 | # | |
de0b36b6 LC |
744 | # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction |
745 | # pointer. | |
746 | # If the target is Sparc, this is the PC component of the | |
747 | # instruction pointer. | |
748 | # | |
749 | # @nip: #optional If the target is PPC, the instruction pointer | |
750 | # | |
751 | # @npc: #optional If the target is Sparc, the NPC component of the instruction | |
752 | # pointer | |
753 | # | |
754 | # @PC: #optional If the target is MIPS, the instruction pointer | |
755 | # | |
756 | # @thread_id: ID of the underlying host thread | |
757 | # | |
758 | # Since: 0.14.0 | |
759 | # | |
760 | # Notes: @halted is a transient state that changes frequently. By the time the | |
761 | # data is sent to the client, the guest may no longer be halted. | |
762 | ## | |
895a2a80 | 763 | { 'struct': 'CpuInfo', |
58f88d4b EH |
764 | 'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', |
765 | 'qom_path': 'str', | |
766 | '*pc': 'int', '*nip': 'int', '*npc': 'int', '*PC': 'int', | |
767 | 'thread_id': 'int'} } | |
de0b36b6 LC |
768 | |
769 | ## | |
770 | # @query-cpus: | |
771 | # | |
772 | # Returns a list of information about each virtual CPU. | |
773 | # | |
774 | # Returns: a list of @CpuInfo for each virtual CPU | |
775 | # | |
776 | # Since: 0.14.0 | |
777 | ## | |
778 | { 'command': 'query-cpus', 'returns': ['CpuInfo'] } | |
779 | ||
dc3dd0d2 SH |
780 | ## |
781 | # @IOThreadInfo: | |
782 | # | |
783 | # Information about an iothread | |
784 | # | |
785 | # @id: the identifier of the iothread | |
786 | # | |
787 | # @thread-id: ID of the underlying host thread | |
788 | # | |
789 | # Since: 2.0 | |
790 | ## | |
895a2a80 | 791 | { 'struct': 'IOThreadInfo', |
dc3dd0d2 SH |
792 | 'data': {'id': 'str', 'thread-id': 'int'} } |
793 | ||
794 | ## | |
795 | # @query-iothreads: | |
796 | # | |
797 | # Returns a list of information about each iothread. | |
798 | # | |
799 | # Note this list excludes the QEMU main loop thread, which is not declared | |
800 | # using the -object iothread command-line option. It is always the main thread | |
801 | # of the process. | |
802 | # | |
803 | # Returns: a list of @IOThreadInfo for each iothread | |
804 | # | |
805 | # Since: 2.0 | |
806 | ## | |
807 | { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] } | |
808 | ||
2b54aa87 | 809 | ## |
a589569f | 810 | # @NetworkAddressFamily |
2b54aa87 | 811 | # |
a589569f WX |
812 | # The network address family |
813 | # | |
814 | # @ipv4: IPV4 family | |
815 | # | |
816 | # @ipv6: IPV6 family | |
817 | # | |
818 | # @unix: unix socket | |
819 | # | |
820 | # @unknown: otherwise | |
821 | # | |
822 | # Since: 2.1 | |
823 | ## | |
824 | { 'enum': 'NetworkAddressFamily', | |
825 | 'data': [ 'ipv4', 'ipv6', 'unix', 'unknown' ] } | |
826 | ||
827 | ## | |
828 | # @VncBasicInfo | |
2b54aa87 | 829 | # |
a589569f | 830 | # The basic information for vnc network connection |
2b54aa87 | 831 | # |
a589569f | 832 | # @host: IP address |
2b54aa87 | 833 | # |
2f44a08b WX |
834 | # @service: The service name of the vnc port. This may depend on the host |
835 | # system's service database so symbolic names should not be relied | |
836 | # on. | |
a589569f WX |
837 | # |
838 | # @family: address family | |
839 | # | |
4478aa76 GH |
840 | # @websocket: true in case the socket is a websocket (since 2.3). |
841 | # | |
a589569f WX |
842 | # Since: 2.1 |
843 | ## | |
895a2a80 | 844 | { 'struct': 'VncBasicInfo', |
a589569f WX |
845 | 'data': { 'host': 'str', |
846 | 'service': 'str', | |
4478aa76 GH |
847 | 'family': 'NetworkAddressFamily', |
848 | 'websocket': 'bool' } } | |
a589569f WX |
849 | |
850 | ## | |
851 | # @VncServerInfo | |
2b54aa87 | 852 | # |
a589569f | 853 | # The network connection information for server |
2b54aa87 | 854 | # |
a589569f | 855 | # @auth: #optional, authentication method |
2b54aa87 | 856 | # |
a589569f WX |
857 | # Since: 2.1 |
858 | ## | |
895a2a80 | 859 | { 'struct': 'VncServerInfo', |
a589569f WX |
860 | 'base': 'VncBasicInfo', |
861 | 'data': { '*auth': 'str' } } | |
862 | ||
863 | ## | |
864 | # @VncClientInfo: | |
865 | # | |
866 | # Information about a connected VNC client. | |
2b54aa87 LC |
867 | # |
868 | # @x509_dname: #optional If x509 authentication is in use, the Distinguished | |
869 | # Name of the client. | |
870 | # | |
871 | # @sasl_username: #optional If SASL authentication is in use, the SASL username | |
872 | # used for authentication. | |
873 | # | |
874 | # Since: 0.14.0 | |
875 | ## | |
895a2a80 | 876 | { 'struct': 'VncClientInfo', |
a589569f | 877 | 'base': 'VncBasicInfo', |
2f44a08b | 878 | 'data': { '*x509_dname': 'str', '*sasl_username': 'str' } } |
2b54aa87 LC |
879 | |
880 | ## | |
881 | # @VncInfo: | |
882 | # | |
883 | # Information about the VNC session. | |
884 | # | |
885 | # @enabled: true if the VNC server is enabled, false otherwise | |
886 | # | |
887 | # @host: #optional The hostname the VNC server is bound to. This depends on | |
888 | # the name resolution on the host and may be an IP address. | |
889 | # | |
890 | # @family: #optional 'ipv6' if the host is listening for IPv6 connections | |
891 | # 'ipv4' if the host is listening for IPv4 connections | |
892 | # 'unix' if the host is listening on a unix domain socket | |
893 | # 'unknown' otherwise | |
894 | # | |
895 | # @service: #optional The service name of the server's port. This may depends | |
896 | # on the host system's service database so symbolic names should not | |
897 | # be relied on. | |
898 | # | |
899 | # @auth: #optional the current authentication type used by the server | |
900 | # 'none' if no authentication is being used | |
901 | # 'vnc' if VNC authentication is being used | |
902 | # 'vencrypt+plain' if VEncrypt is used with plain text authentication | |
903 | # 'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication | |
904 | # 'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication | |
905 | # 'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth | |
906 | # 'vencrypt+x509+none' if VEncrypt is used with x509 and no auth | |
907 | # 'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth | |
908 | # 'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth | |
909 | # 'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth | |
910 | # 'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth | |
911 | # | |
912 | # @clients: a list of @VncClientInfo of all currently connected clients | |
913 | # | |
914 | # Since: 0.14.0 | |
915 | ## | |
895a2a80 | 916 | { 'struct': 'VncInfo', |
a589569f WX |
917 | 'data': {'enabled': 'bool', '*host': 'str', |
918 | '*family': 'NetworkAddressFamily', | |
2b54aa87 LC |
919 | '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} } |
920 | ||
df887684 GH |
921 | ## |
922 | # @VncPriAuth: | |
923 | # | |
924 | # vnc primary authentication method. | |
925 | # | |
926 | # Since: 2.3 | |
927 | ## | |
928 | { 'enum': 'VncPrimaryAuth', | |
929 | 'data': [ 'none', 'vnc', 'ra2', 'ra2ne', 'tight', 'ultra', | |
930 | 'tls', 'vencrypt', 'sasl' ] } | |
931 | ||
932 | ## | |
933 | # @VncVencryptSubAuth: | |
934 | # | |
935 | # vnc sub authentication method with vencrypt. | |
936 | # | |
937 | # Since: 2.3 | |
938 | ## | |
939 | { 'enum': 'VncVencryptSubAuth', | |
940 | 'data': [ 'plain', | |
941 | 'tls-none', 'x509-none', | |
942 | 'tls-vnc', 'x509-vnc', | |
943 | 'tls-plain', 'x509-plain', | |
944 | 'tls-sasl', 'x509-sasl' ] } | |
945 | ||
946 | ## | |
947 | # @VncInfo2: | |
948 | # | |
949 | # Information about a vnc server | |
950 | # | |
951 | # @id: vnc server name. | |
952 | # | |
953 | # @server: A list of @VncBasincInfo describing all listening sockets. | |
954 | # The list can be empty (in case the vnc server is disabled). | |
955 | # It also may have multiple entries: normal + websocket, | |
956 | # possibly also ipv4 + ipv6 in the future. | |
957 | # | |
958 | # @clients: A list of @VncClientInfo of all currently connected clients. | |
959 | # The list can be empty, for obvious reasons. | |
960 | # | |
961 | # @auth: The current authentication type used by the server | |
962 | # | |
963 | # @vencrypt: #optional The vencrypt sub authentication type used by the server, | |
964 | # only specified in case auth == vencrypt. | |
965 | # | |
966 | # @display: #optional The display device the vnc server is linked to. | |
967 | # | |
968 | # Since: 2.3 | |
969 | ## | |
895a2a80 | 970 | { 'struct': 'VncInfo2', |
df887684 GH |
971 | 'data': { 'id' : 'str', |
972 | 'server' : ['VncBasicInfo'], | |
973 | 'clients' : ['VncClientInfo'], | |
974 | 'auth' : 'VncPrimaryAuth', | |
975 | '*vencrypt' : 'VncVencryptSubAuth', | |
976 | '*display' : 'str' } } | |
977 | ||
2b54aa87 LC |
978 | ## |
979 | # @query-vnc: | |
980 | # | |
981 | # Returns information about the current VNC server | |
982 | # | |
983 | # Returns: @VncInfo | |
2b54aa87 LC |
984 | # |
985 | # Since: 0.14.0 | |
986 | ## | |
987 | { 'command': 'query-vnc', 'returns': 'VncInfo' } | |
988 | ||
df887684 GH |
989 | ## |
990 | # @query-vnc-servers: | |
991 | # | |
992 | # Returns a list of vnc servers. The list can be empty. | |
993 | # | |
994 | # Returns: a list of @VncInfo2 | |
995 | # | |
996 | # Since: 2.3 | |
997 | ## | |
998 | { 'command': 'query-vnc-servers', 'returns': ['VncInfo2'] } | |
999 | ||
d1f29646 | 1000 | ## |
a589569f | 1001 | # @SpiceBasicInfo |
d1f29646 | 1002 | # |
a589569f WX |
1003 | # The basic information for SPICE network connection |
1004 | # | |
1005 | # @host: IP address | |
d1f29646 | 1006 | # |
a589569f | 1007 | # @port: port number |
d1f29646 | 1008 | # |
a589569f | 1009 | # @family: address family |
d1f29646 | 1010 | # |
a589569f WX |
1011 | # Since: 2.1 |
1012 | ## | |
895a2a80 | 1013 | { 'struct': 'SpiceBasicInfo', |
a589569f WX |
1014 | 'data': { 'host': 'str', |
1015 | 'port': 'str', | |
1016 | 'family': 'NetworkAddressFamily' } } | |
1017 | ||
1018 | ## | |
1019 | # @SpiceServerInfo | |
d1f29646 | 1020 | # |
a589569f | 1021 | # Information about a SPICE server |
d1f29646 | 1022 | # |
a589569f | 1023 | # @auth: #optional, authentication method |
d1f29646 | 1024 | # |
a589569f WX |
1025 | # Since: 2.1 |
1026 | ## | |
895a2a80 | 1027 | { 'struct': 'SpiceServerInfo', |
a589569f WX |
1028 | 'base': 'SpiceBasicInfo', |
1029 | 'data': { '*auth': 'str' } } | |
1030 | ||
1031 | ## | |
1032 | # @SpiceChannel | |
1033 | # | |
1034 | # Information about a SPICE client channel. | |
d1f29646 LC |
1035 | # |
1036 | # @connection-id: SPICE connection id number. All channels with the same id | |
1037 | # belong to the same SPICE session. | |
1038 | # | |
7e781c79 CR |
1039 | # @channel-type: SPICE channel type number. "1" is the main control |
1040 | # channel, filter for this one if you want to track spice | |
1041 | # sessions only | |
d1f29646 | 1042 | # |
419e1bdf AL |
1043 | # @channel-id: SPICE channel ID number. Usually "0", might be different when |
1044 | # multiple channels of the same type exist, such as multiple | |
d1f29646 LC |
1045 | # display channels in a multihead setup |
1046 | # | |
1047 | # @tls: true if the channel is encrypted, false otherwise. | |
1048 | # | |
1049 | # Since: 0.14.0 | |
1050 | ## | |
895a2a80 | 1051 | { 'struct': 'SpiceChannel', |
a589569f WX |
1052 | 'base': 'SpiceBasicInfo', |
1053 | 'data': {'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int', | |
d1f29646 LC |
1054 | 'tls': 'bool'} } |
1055 | ||
4efee029 AL |
1056 | ## |
1057 | # @SpiceQueryMouseMode | |
1058 | # | |
6932a69b | 1059 | # An enumeration of Spice mouse states. |
4efee029 AL |
1060 | # |
1061 | # @client: Mouse cursor position is determined by the client. | |
1062 | # | |
1063 | # @server: Mouse cursor position is determined by the server. | |
1064 | # | |
1065 | # @unknown: No information is available about mouse mode used by | |
1066 | # the spice server. | |
1067 | # | |
1068 | # Note: spice/enums.h has a SpiceMouseMode already, hence the name. | |
1069 | # | |
1070 | # Since: 1.1 | |
1071 | ## | |
1072 | { 'enum': 'SpiceQueryMouseMode', | |
1073 | 'data': [ 'client', 'server', 'unknown' ] } | |
1074 | ||
d1f29646 LC |
1075 | ## |
1076 | # @SpiceInfo | |
1077 | # | |
1078 | # Information about the SPICE session. | |
b80e560b | 1079 | # |
d1f29646 LC |
1080 | # @enabled: true if the SPICE server is enabled, false otherwise |
1081 | # | |
61c4efe2 YH |
1082 | # @migrated: true if the last guest migration completed and spice |
1083 | # migration had completed as well. false otherwise. | |
1084 | # | |
d1f29646 LC |
1085 | # @host: #optional The hostname the SPICE server is bound to. This depends on |
1086 | # the name resolution on the host and may be an IP address. | |
1087 | # | |
1088 | # @port: #optional The SPICE server's port number. | |
1089 | # | |
1090 | # @compiled-version: #optional SPICE server version. | |
1091 | # | |
1092 | # @tls-port: #optional The SPICE server's TLS port number. | |
1093 | # | |
1094 | # @auth: #optional the current authentication type used by the server | |
419e1bdf AL |
1095 | # 'none' if no authentication is being used |
1096 | # 'spice' uses SASL or direct TLS authentication, depending on command | |
1097 | # line options | |
d1f29646 | 1098 | # |
4efee029 AL |
1099 | # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can |
1100 | # be determined by the client or the server, or unknown if spice | |
1101 | # server doesn't provide this information. | |
1102 | # | |
1103 | # Since: 1.1 | |
1104 | # | |
d1f29646 LC |
1105 | # @channels: a list of @SpiceChannel for each active spice channel |
1106 | # | |
1107 | # Since: 0.14.0 | |
1108 | ## | |
895a2a80 | 1109 | { 'struct': 'SpiceInfo', |
61c4efe2 | 1110 | 'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int', |
d1f29646 | 1111 | '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str', |
4efee029 | 1112 | 'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} } |
d1f29646 LC |
1113 | |
1114 | ## | |
1115 | # @query-spice | |
1116 | # | |
1117 | # Returns information about the current SPICE server | |
1118 | # | |
1119 | # Returns: @SpiceInfo | |
1120 | # | |
1121 | # Since: 0.14.0 | |
1122 | ## | |
1123 | { 'command': 'query-spice', 'returns': 'SpiceInfo' } | |
1124 | ||
96637bcd LC |
1125 | ## |
1126 | # @BalloonInfo: | |
1127 | # | |
1128 | # Information about the guest balloon device. | |
1129 | # | |
1130 | # @actual: the number of bytes the balloon currently contains | |
1131 | # | |
96637bcd LC |
1132 | # Since: 0.14.0 |
1133 | # | |
96637bcd | 1134 | ## |
895a2a80 | 1135 | { 'struct': 'BalloonInfo', 'data': {'actual': 'int' } } |
96637bcd LC |
1136 | |
1137 | ## | |
1138 | # @query-balloon: | |
1139 | # | |
1140 | # Return information about the balloon device. | |
1141 | # | |
1142 | # Returns: @BalloonInfo on success | |
1143 | # If the balloon driver is enabled but not functional because the KVM | |
1144 | # kernel module cannot support it, KvmMissingCap | |
1145 | # If no balloon device is present, DeviceNotActive | |
1146 | # | |
1147 | # Since: 0.14.0 | |
1148 | ## | |
1149 | { 'command': 'query-balloon', 'returns': 'BalloonInfo' } | |
1150 | ||
79627472 LC |
1151 | ## |
1152 | # @PciMemoryRange: | |
1153 | # | |
1154 | # A PCI device memory region | |
1155 | # | |
1156 | # @base: the starting address (guest physical) | |
1157 | # | |
1158 | # @limit: the ending address (guest physical) | |
1159 | # | |
1160 | # Since: 0.14.0 | |
1161 | ## | |
895a2a80 | 1162 | { 'struct': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} } |
79627472 LC |
1163 | |
1164 | ## | |
1165 | # @PciMemoryRegion | |
1166 | # | |
1167 | # Information about a PCI device I/O region. | |
1168 | # | |
1169 | # @bar: the index of the Base Address Register for this region | |
1170 | # | |
1171 | # @type: 'io' if the region is a PIO region | |
1172 | # 'memory' if the region is a MMIO region | |
1173 | # | |
1174 | # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable | |
1175 | # | |
1176 | # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit | |
1177 | # | |
1178 | # Since: 0.14.0 | |
1179 | ## | |
895a2a80 | 1180 | { 'struct': 'PciMemoryRegion', |
79627472 LC |
1181 | 'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int', |
1182 | '*prefetch': 'bool', '*mem_type_64': 'bool' } } | |
1183 | ||
1184 | ## | |
9fa02cd1 | 1185 | # @PciBusInfo: |
79627472 | 1186 | # |
9fa02cd1 | 1187 | # Information about a bus of a PCI Bridge device |
79627472 | 1188 | # |
9fa02cd1 EB |
1189 | # @number: primary bus interface number. This should be the number of the |
1190 | # bus the device resides on. | |
79627472 | 1191 | # |
9fa02cd1 EB |
1192 | # @secondary: secondary bus interface number. This is the number of the |
1193 | # main bus for the bridge | |
79627472 | 1194 | # |
9fa02cd1 EB |
1195 | # @subordinate: This is the highest number bus that resides below the |
1196 | # bridge. | |
79627472 | 1197 | # |
9fa02cd1 | 1198 | # @io_range: The PIO range for all devices on this bridge |
79627472 | 1199 | # |
9fa02cd1 | 1200 | # @memory_range: The MMIO range for all devices on this bridge |
79627472 | 1201 | # |
9fa02cd1 EB |
1202 | # @prefetchable_range: The range of prefetchable MMIO for all devices on |
1203 | # this bridge | |
1204 | # | |
1205 | # Since: 2.4 | |
1206 | ## | |
1207 | { 'struct': 'PciBusInfo', | |
1208 | 'data': {'number': 'int', 'secondary': 'int', 'subordinate': 'int', | |
1209 | 'io_range': 'PciMemoryRange', | |
1210 | 'memory_range': 'PciMemoryRange', | |
1211 | 'prefetchable_range': 'PciMemoryRange' } } | |
1212 | ||
1213 | ## | |
1214 | # @PciBridgeInfo: | |
1215 | # | |
1216 | # Information about a PCI Bridge device | |
1217 | # | |
1218 | # @bus: information about the bus the device resides on | |
79627472 LC |
1219 | # |
1220 | # @devices: a list of @PciDeviceInfo for each device on this bridge | |
1221 | # | |
1222 | # Since: 0.14.0 | |
1223 | ## | |
895a2a80 | 1224 | { 'struct': 'PciBridgeInfo', |
9fa02cd1 EB |
1225 | 'data': {'bus': 'PciBusInfo', '*devices': ['PciDeviceInfo']} } |
1226 | ||
1227 | ## | |
1228 | # @PciDeviceClass: | |
1229 | # | |
1230 | # Information about the Class of a PCI device | |
1231 | # | |
1232 | # @desc: #optional a string description of the device's class | |
1233 | # | |
1234 | # @class: the class code of the device | |
1235 | # | |
1236 | # Since: 2.4 | |
1237 | ## | |
1238 | { 'struct': 'PciDeviceClass', | |
1239 | 'data': {'*desc': 'str', 'class': 'int'} } | |
1240 | ||
1241 | ## | |
1242 | # @PciDeviceId: | |
1243 | # | |
1244 | # Information about the Id of a PCI device | |
1245 | # | |
1246 | # @device: the PCI device id | |
1247 | # | |
1248 | # @vendor: the PCI vendor id | |
1249 | # | |
1250 | # Since: 2.4 | |
1251 | ## | |
1252 | { 'struct': 'PciDeviceId', | |
1253 | 'data': {'device': 'int', 'vendor': 'int'} } | |
79627472 LC |
1254 | |
1255 | ## | |
1256 | # @PciDeviceInfo: | |
1257 | # | |
1258 | # Information about a PCI device | |
1259 | # | |
1260 | # @bus: the bus number of the device | |
1261 | # | |
1262 | # @slot: the slot the device is located in | |
1263 | # | |
1264 | # @function: the function of the slot used by the device | |
1265 | # | |
9fa02cd1 | 1266 | # @class_info: the class of the device |
79627472 | 1267 | # |
9fa02cd1 | 1268 | # @id: the PCI device id |
79627472 LC |
1269 | # |
1270 | # @irq: #optional if an IRQ is assigned to the device, the IRQ number | |
1271 | # | |
1272 | # @qdev_id: the device name of the PCI device | |
1273 | # | |
1274 | # @pci_bridge: if the device is a PCI bridge, the bridge information | |
1275 | # | |
1276 | # @regions: a list of the PCI I/O regions associated with the device | |
1277 | # | |
1278 | # Notes: the contents of @class_info.desc are not stable and should only be | |
1279 | # treated as informational. | |
1280 | # | |
1281 | # Since: 0.14.0 | |
1282 | ## | |
895a2a80 | 1283 | { 'struct': 'PciDeviceInfo', |
79627472 | 1284 | 'data': {'bus': 'int', 'slot': 'int', 'function': 'int', |
9fa02cd1 | 1285 | 'class_info': 'PciDeviceClass', 'id': 'PciDeviceId', |
79627472 LC |
1286 | '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo', |
1287 | 'regions': ['PciMemoryRegion']} } | |
1288 | ||
1289 | ## | |
1290 | # @PciInfo: | |
1291 | # | |
1292 | # Information about a PCI bus | |
1293 | # | |
1294 | # @bus: the bus index | |
1295 | # | |
1296 | # @devices: a list of devices on this bus | |
1297 | # | |
1298 | # Since: 0.14.0 | |
1299 | ## | |
895a2a80 | 1300 | { 'struct': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} } |
79627472 LC |
1301 | |
1302 | ## | |
1303 | # @query-pci: | |
1304 | # | |
1305 | # Return information about the PCI bus topology of the guest. | |
1306 | # | |
1307 | # Returns: a list of @PciInfo for each PCI bus | |
1308 | # | |
1309 | # Since: 0.14.0 | |
1310 | ## | |
1311 | { 'command': 'query-pci', 'returns': ['PciInfo'] } | |
1312 | ||
7a7f325e LC |
1313 | ## |
1314 | # @quit: | |
1315 | # | |
1316 | # This command will cause the QEMU process to exit gracefully. While every | |
1317 | # attempt is made to send the QMP response before terminating, this is not | |
1318 | # guaranteed. When using this interface, a premature EOF would not be | |
1319 | # unexpected. | |
1320 | # | |
1321 | # Since: 0.14.0 | |
1322 | ## | |
1323 | { 'command': 'quit' } | |
5f158f21 LC |
1324 | |
1325 | ## | |
1326 | # @stop: | |
1327 | # | |
1328 | # Stop all guest VCPU execution. | |
1329 | # | |
1330 | # Since: 0.14.0 | |
1331 | # | |
1332 | # Notes: This function will succeed even if the guest is already in the stopped | |
1e998146 PB |
1333 | # state. In "inmigrate" state, it will ensure that the guest |
1334 | # remains paused once migration finishes, as if the -S option was | |
1335 | # passed on the command line. | |
5f158f21 LC |
1336 | ## |
1337 | { 'command': 'stop' } | |
38d22653 LC |
1338 | |
1339 | ## | |
1340 | # @system_reset: | |
1341 | # | |
1342 | # Performs a hard reset of a guest. | |
1343 | # | |
1344 | # Since: 0.14.0 | |
1345 | ## | |
1346 | { 'command': 'system_reset' } | |
5bc465e4 LC |
1347 | |
1348 | ## | |
1349 | # @system_powerdown: | |
1350 | # | |
1351 | # Requests that a guest perform a powerdown operation. | |
1352 | # | |
1353 | # Since: 0.14.0 | |
1354 | # | |
1355 | # Notes: A guest may or may not respond to this command. This command | |
1356 | # returning does not indicate that a guest has accepted the request or | |
1357 | # that it has shut down. Many guests will respond to this command by | |
1358 | # prompting the user in some way. | |
1359 | ## | |
1360 | { 'command': 'system_powerdown' } | |
755f1968 LC |
1361 | |
1362 | ## | |
1363 | # @cpu: | |
1364 | # | |
1365 | # This command is a nop that is only provided for the purposes of compatibility. | |
1366 | # | |
1367 | # Since: 0.14.0 | |
1368 | # | |
1369 | # Notes: Do not use this command. | |
1370 | ## | |
1371 | { 'command': 'cpu', 'data': {'index': 'int'} } | |
0cfd6a9a | 1372 | |
69ca3ea5 IM |
1373 | ## |
1374 | # @cpu-add | |
1375 | # | |
1376 | # Adds CPU with specified ID | |
1377 | # | |
1378 | # @id: ID of CPU to be created, valid values [0..max_cpus) | |
1379 | # | |
1380 | # Returns: Nothing on success | |
1381 | # | |
1382 | # Since 1.5 | |
1383 | ## | |
1384 | { 'command': 'cpu-add', 'data': {'id': 'int'} } | |
1385 | ||
0cfd6a9a LC |
1386 | ## |
1387 | # @memsave: | |
1388 | # | |
1389 | # Save a portion of guest memory to a file. | |
1390 | # | |
1391 | # @val: the virtual address of the guest to start from | |
1392 | # | |
1393 | # @size: the size of memory region to save | |
1394 | # | |
1395 | # @filename: the file to save the memory to as binary data | |
1396 | # | |
1397 | # @cpu-index: #optional the index of the virtual CPU to use for translating the | |
1398 | # virtual address (defaults to CPU 0) | |
1399 | # | |
1400 | # Returns: Nothing on success | |
0cfd6a9a LC |
1401 | # |
1402 | # Since: 0.14.0 | |
1403 | # | |
1404 | # Notes: Errors were not reliably returned until 1.1 | |
1405 | ## | |
1406 | { 'command': 'memsave', | |
1407 | 'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} } | |
6d3962bf LC |
1408 | |
1409 | ## | |
1410 | # @pmemsave: | |
1411 | # | |
1412 | # Save a portion of guest physical memory to a file. | |
1413 | # | |
1414 | # @val: the physical address of the guest to start from | |
1415 | # | |
1416 | # @size: the size of memory region to save | |
1417 | # | |
1418 | # @filename: the file to save the memory to as binary data | |
1419 | # | |
1420 | # Returns: Nothing on success | |
6d3962bf LC |
1421 | # |
1422 | # Since: 0.14.0 | |
1423 | # | |
1424 | # Notes: Errors were not reliably returned until 1.1 | |
1425 | ## | |
1426 | { 'command': 'pmemsave', | |
1427 | 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} } | |
e42e818b LC |
1428 | |
1429 | ## | |
1430 | # @cont: | |
1431 | # | |
1432 | # Resume guest VCPU execution. | |
1433 | # | |
1434 | # Since: 0.14.0 | |
1435 | # | |
1436 | # Returns: If successful, nothing | |
e42e818b LC |
1437 | # If QEMU was started with an encrypted block device and a key has |
1438 | # not yet been set, DeviceEncrypted. | |
1439 | # | |
1e998146 PB |
1440 | # Notes: This command will succeed if the guest is currently running. It |
1441 | # will also succeed if the guest is in the "inmigrate" state; in | |
1442 | # this case, the effect of the command is to make sure the guest | |
1443 | # starts once migration finishes, removing the effect of the -S | |
1444 | # command line option if it was passed. | |
e42e818b LC |
1445 | ## |
1446 | { 'command': 'cont' } | |
1447 | ||
9b9df25a GH |
1448 | ## |
1449 | # @system_wakeup: | |
1450 | # | |
1451 | # Wakeup guest from suspend. Does nothing in case the guest isn't suspended. | |
1452 | # | |
1453 | # Since: 1.1 | |
1454 | # | |
1455 | # Returns: nothing. | |
1456 | ## | |
1457 | { 'command': 'system_wakeup' } | |
1458 | ||
ab49ab5c LC |
1459 | ## |
1460 | # @inject-nmi: | |
1461 | # | |
9cb805fd | 1462 | # Injects a Non-Maskable Interrupt into the default CPU (x86/s390) or all CPUs (ppc64). |
ab49ab5c LC |
1463 | # |
1464 | # Returns: If successful, nothing | |
ab49ab5c LC |
1465 | # |
1466 | # Since: 0.14.0 | |
1467 | # | |
9cb805fd | 1468 | # Note: prior to 2.1, this command was only supported for x86 and s390 VMs |
ab49ab5c LC |
1469 | ## |
1470 | { 'command': 'inject-nmi' } | |
4b37156c LC |
1471 | |
1472 | ## | |
1473 | # @set_link: | |
1474 | # | |
1475 | # Sets the link status of a virtual network adapter. | |
1476 | # | |
1477 | # @name: the device name of the virtual network adapter | |
1478 | # | |
1479 | # @up: true to set the link status to be up | |
1480 | # | |
1481 | # Returns: Nothing on success | |
1482 | # If @name is not a valid network device, DeviceNotFound | |
1483 | # | |
1484 | # Since: 0.14.0 | |
1485 | # | |
1486 | # Notes: Not all network adapters support setting link status. This command | |
1487 | # will succeed even if the network adapter does not support link status | |
1488 | # notification. | |
1489 | ## | |
1490 | { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} } | |
a4dea8a9 | 1491 | |
d72f3264 LC |
1492 | ## |
1493 | # @balloon: | |
1494 | # | |
1495 | # Request the balloon driver to change its balloon size. | |
1496 | # | |
1497 | # @value: the target size of the balloon in bytes | |
1498 | # | |
1499 | # Returns: Nothing on success | |
1500 | # If the balloon driver is enabled but not functional because the KVM | |
1501 | # kernel module cannot support it, KvmMissingCap | |
1502 | # If no balloon device is present, DeviceNotActive | |
1503 | # | |
1504 | # Notes: This command just issues a request to the guest. When it returns, | |
1505 | # the balloon size may not have changed. A guest can change the balloon | |
1506 | # size independent of this command. | |
1507 | # | |
1508 | # Since: 0.14.0 | |
1509 | ## | |
1510 | { 'command': 'balloon', 'data': {'value': 'int'} } | |
5e7caacb | 1511 | |
78b18b78 SH |
1512 | ## |
1513 | # @Abort | |
1514 | # | |
1515 | # This action can be used to test transaction failure. | |
1516 | # | |
1517 | # Since: 1.6 | |
1518 | ### | |
895a2a80 | 1519 | { 'struct': 'Abort', |
78b18b78 SH |
1520 | 'data': { } } |
1521 | ||
8802d1fd | 1522 | ## |
c8a83e85 | 1523 | # @TransactionAction |
8802d1fd | 1524 | # |
52e7c241 PB |
1525 | # A discriminated record of operations that can be performed with |
1526 | # @transaction. | |
b7b9d39a FZ |
1527 | # |
1528 | # Since 1.1 | |
1529 | # | |
1530 | # drive-backup since 1.6 | |
1531 | # abort since 1.6 | |
1532 | # blockdev-snapshot-internal-sync since 1.7 | |
bd8baecd | 1533 | # blockdev-backup since 2.3 |
8802d1fd | 1534 | ## |
c8a83e85 | 1535 | { 'union': 'TransactionAction', |
52e7c241 | 1536 | 'data': { |
3037f364 | 1537 | 'blockdev-snapshot-sync': 'BlockdevSnapshot', |
78b18b78 | 1538 | 'drive-backup': 'DriveBackup', |
bd8baecd | 1539 | 'blockdev-backup': 'BlockdevBackup', |
bbe86010 WX |
1540 | 'abort': 'Abort', |
1541 | 'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal' | |
52e7c241 | 1542 | } } |
8802d1fd JC |
1543 | |
1544 | ## | |
52e7c241 | 1545 | # @transaction |
8802d1fd | 1546 | # |
c8a83e85 KW |
1547 | # Executes a number of transactionable QMP commands atomically. If any |
1548 | # operation fails, then the entire set of actions will be abandoned and the | |
1549 | # appropriate error returned. | |
8802d1fd JC |
1550 | # |
1551 | # List of: | |
c8a83e85 | 1552 | # @TransactionAction: information needed for the respective operation |
8802d1fd JC |
1553 | # |
1554 | # Returns: nothing on success | |
c8a83e85 | 1555 | # Errors depend on the operations of the transaction |
8802d1fd | 1556 | # |
c8a83e85 KW |
1557 | # Note: The transaction aborts on the first failure. Therefore, there will be |
1558 | # information on only one failed operation returned in an error condition, and | |
52e7c241 PB |
1559 | # subsequent actions will not have been attempted. |
1560 | # | |
1561 | # Since 1.1 | |
8802d1fd | 1562 | ## |
52e7c241 | 1563 | { 'command': 'transaction', |
c8a83e85 | 1564 | 'data': { 'actions': [ 'TransactionAction' ] } } |
8802d1fd | 1565 | |
d51a67b4 LC |
1566 | ## |
1567 | # @human-monitor-command: | |
1568 | # | |
1569 | # Execute a command on the human monitor and return the output. | |
1570 | # | |
1571 | # @command-line: the command to execute in the human monitor | |
1572 | # | |
1573 | # @cpu-index: #optional The CPU to use for commands that require an implicit CPU | |
1574 | # | |
1575 | # Returns: the output of the command as a string | |
1576 | # | |
1ad166b6 | 1577 | # Since: 0.14.0 |
08e4ed6c | 1578 | # |
1ad166b6 BC |
1579 | # Notes: This command only exists as a stop-gap. Its use is highly |
1580 | # discouraged. The semantics of this command are not guaranteed. | |
b952b558 | 1581 | # |
1ad166b6 | 1582 | # Known limitations: |
b952b558 | 1583 | # |
1ad166b6 BC |
1584 | # o This command is stateless, this means that commands that depend |
1585 | # on state information (such as getfd) might not work | |
d9b902db | 1586 | # |
1ad166b6 BC |
1587 | # o Commands that prompt the user for data (eg. 'cont' when the block |
1588 | # device is encrypted) don't currently work | |
d9b902db | 1589 | ## |
1ad166b6 BC |
1590 | { 'command': 'human-monitor-command', |
1591 | 'data': {'command-line': 'str', '*cpu-index': 'int'}, | |
1592 | 'returns': 'str' } | |
d9b902db PB |
1593 | |
1594 | ## | |
6cdedb07 LC |
1595 | # @migrate_cancel |
1596 | # | |
1597 | # Cancel the current executing migration process. | |
1598 | # | |
1599 | # Returns: nothing on success | |
1600 | # | |
1601 | # Notes: This command succeeds even if there is no migration process running. | |
1602 | # | |
1603 | # Since: 0.14.0 | |
1604 | ## | |
1605 | { 'command': 'migrate_cancel' } | |
4f0a993b LC |
1606 | |
1607 | ## | |
1608 | # @migrate_set_downtime | |
1609 | # | |
1610 | # Set maximum tolerated downtime for migration. | |
1611 | # | |
1612 | # @value: maximum downtime in seconds | |
1613 | # | |
1614 | # Returns: nothing on success | |
1615 | # | |
1616 | # Since: 0.14.0 | |
1617 | ## | |
1618 | { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} } | |
3dc85383 LC |
1619 | |
1620 | ## | |
1621 | # @migrate_set_speed | |
1622 | # | |
1623 | # Set maximum speed for migration. | |
1624 | # | |
1625 | # @value: maximum speed in bytes. | |
1626 | # | |
1627 | # Returns: nothing on success | |
1628 | # | |
1629 | # Notes: A value lesser than zero will be automatically round up to zero. | |
1630 | # | |
1631 | # Since: 0.14.0 | |
1632 | ## | |
1633 | { 'command': 'migrate_set_speed', 'data': {'value': 'int'} } | |
b4b12c62 | 1634 | |
9e1ba4cc OW |
1635 | ## |
1636 | # @migrate-set-cache-size | |
1637 | # | |
1638 | # Set XBZRLE cache size | |
1639 | # | |
1640 | # @value: cache size in bytes | |
1641 | # | |
1642 | # The size will be rounded down to the nearest power of 2. | |
1643 | # The cache size can be modified before and during ongoing migration | |
1644 | # | |
1645 | # Returns: nothing on success | |
1646 | # | |
1647 | # Since: 1.2 | |
1648 | ## | |
1649 | { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} } | |
1650 | ||
1651 | ## | |
1652 | # @query-migrate-cache-size | |
1653 | # | |
1654 | # query XBZRLE cache size | |
1655 | # | |
1656 | # Returns: XBZRLE cache size in bytes | |
1657 | # | |
1658 | # Since: 1.2 | |
1659 | ## | |
1660 | { 'command': 'query-migrate-cache-size', 'returns': 'int' } | |
1661 | ||
b4b12c62 | 1662 | ## |
d03ee401 | 1663 | # @ObjectPropertyInfo: |
b4b12c62 AL |
1664 | # |
1665 | # @name: the name of the property | |
1666 | # | |
1667 | # @type: the type of the property. This will typically come in one of four | |
1668 | # forms: | |
1669 | # | |
1670 | # 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'. | |
1671 | # These types are mapped to the appropriate JSON type. | |
1672 | # | |
33b23b4b | 1673 | # 2) A child type in the form 'child<subtype>' where subtype is a qdev |
b4b12c62 AL |
1674 | # device type name. Child properties create the composition tree. |
1675 | # | |
33b23b4b | 1676 | # 3) A link type in the form 'link<subtype>' where subtype is a qdev |
b4b12c62 AL |
1677 | # device type name. Link properties form the device model graph. |
1678 | # | |
51920820 | 1679 | # Since: 1.2 |
b4b12c62 | 1680 | ## |
895a2a80 | 1681 | { 'struct': 'ObjectPropertyInfo', |
b4b12c62 AL |
1682 | 'data': { 'name': 'str', 'type': 'str' } } |
1683 | ||
1684 | ## | |
1685 | # @qom-list: | |
1686 | # | |
57c9fafe | 1687 | # This command will list any properties of a object given a path in the object |
b4b12c62 AL |
1688 | # model. |
1689 | # | |
57c9fafe | 1690 | # @path: the path within the object model. See @qom-get for a description of |
b4b12c62 AL |
1691 | # this parameter. |
1692 | # | |
57c9fafe AL |
1693 | # Returns: a list of @ObjectPropertyInfo that describe the properties of the |
1694 | # object. | |
b4b12c62 | 1695 | # |
51920820 | 1696 | # Since: 1.2 |
b4b12c62 AL |
1697 | ## |
1698 | { 'command': 'qom-list', | |
1699 | 'data': { 'path': 'str' }, | |
57c9fafe | 1700 | 'returns': [ 'ObjectPropertyInfo' ] } |
eb6e8ea5 AL |
1701 | |
1702 | ## | |
1703 | # @qom-get: | |
1704 | # | |
57c9fafe | 1705 | # This command will get a property from a object model path and return the |
eb6e8ea5 AL |
1706 | # value. |
1707 | # | |
57c9fafe | 1708 | # @path: The path within the object model. There are two forms of supported |
eb6e8ea5 AL |
1709 | # paths--absolute and partial paths. |
1710 | # | |
57c9fafe | 1711 | # Absolute paths are derived from the root object and can follow child<> |
eb6e8ea5 AL |
1712 | # or link<> properties. Since they can follow link<> properties, they |
1713 | # can be arbitrarily long. Absolute paths look like absolute filenames | |
1714 | # and are prefixed with a leading slash. | |
1715 | # | |
1716 | # Partial paths look like relative filenames. They do not begin | |
1717 | # with a prefix. The matching rules for partial paths are subtle but | |
57c9fafe | 1718 | # designed to make specifying objects easy. At each level of the |
eb6e8ea5 AL |
1719 | # composition tree, the partial path is matched as an absolute path. |
1720 | # The first match is not returned. At least two matches are searched | |
1721 | # for. A successful result is only returned if only one match is | |
1722 | # found. If more than one match is found, a flag is return to | |
1723 | # indicate that the match was ambiguous. | |
1724 | # | |
1725 | # @property: The property name to read | |
1726 | # | |
33b23b4b MAL |
1727 | # Returns: The property value. The type depends on the property |
1728 | # type. child<> and link<> properties are returned as #str | |
1729 | # pathnames. All integer property types (u8, u16, etc) are | |
1730 | # returned as #int. | |
eb6e8ea5 | 1731 | # |
51920820 | 1732 | # Since: 1.2 |
eb6e8ea5 AL |
1733 | ## |
1734 | { 'command': 'qom-get', | |
1735 | 'data': { 'path': 'str', 'property': 'str' }, | |
6eb3937e | 1736 | 'returns': 'any' } |
eb6e8ea5 AL |
1737 | |
1738 | ## | |
1739 | # @qom-set: | |
1740 | # | |
57c9fafe | 1741 | # This command will set a property from a object model path. |
eb6e8ea5 AL |
1742 | # |
1743 | # @path: see @qom-get for a description of this parameter | |
1744 | # | |
1745 | # @property: the property name to set | |
1746 | # | |
1747 | # @value: a value who's type is appropriate for the property type. See @qom-get | |
1748 | # for a description of type mapping. | |
1749 | # | |
51920820 | 1750 | # Since: 1.2 |
eb6e8ea5 AL |
1751 | ## |
1752 | { 'command': 'qom-set', | |
6eb3937e | 1753 | 'data': { 'path': 'str', 'property': 'str', 'value': 'any' } } |
fbf796fd LC |
1754 | |
1755 | ## | |
1756 | # @set_password: | |
1757 | # | |
1758 | # Sets the password of a remote display session. | |
1759 | # | |
1760 | # @protocol: `vnc' to modify the VNC server password | |
1761 | # `spice' to modify the Spice server password | |
1762 | # | |
1763 | # @password: the new password | |
1764 | # | |
1765 | # @connected: #optional how to handle existing clients when changing the | |
b80e560b | 1766 | # password. If nothing is specified, defaults to `keep' |
fbf796fd LC |
1767 | # `fail' to fail the command if clients are connected |
1768 | # `disconnect' to disconnect existing clients | |
1769 | # `keep' to maintain existing clients | |
1770 | # | |
1771 | # Returns: Nothing on success | |
1772 | # If Spice is not enabled, DeviceNotFound | |
fbf796fd LC |
1773 | # |
1774 | # Since: 0.14.0 | |
1775 | ## | |
1776 | { 'command': 'set_password', | |
1777 | 'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} } | |
9ad5372d LC |
1778 | |
1779 | ## | |
1780 | # @expire_password: | |
1781 | # | |
1782 | # Expire the password of a remote display server. | |
1783 | # | |
1784 | # @protocol: the name of the remote display protocol `vnc' or `spice' | |
1785 | # | |
1786 | # @time: when to expire the password. | |
1787 | # `now' to expire the password immediately | |
1788 | # `never' to cancel password expiration | |
1789 | # `+INT' where INT is the number of seconds from now (integer) | |
1790 | # `INT' where INT is the absolute time in seconds | |
1791 | # | |
1792 | # Returns: Nothing on success | |
1793 | # If @protocol is `spice' and Spice is not active, DeviceNotFound | |
9ad5372d LC |
1794 | # |
1795 | # Since: 0.14.0 | |
1796 | # | |
1797 | # Notes: Time is relative to the server and currently there is no way to | |
1798 | # coordinate server time with client time. It is not recommended to | |
1799 | # use the absolute time version of the @time parameter unless you're | |
1800 | # sure you are on the same machine as the QEMU instance. | |
1801 | ## | |
1802 | { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} } | |
c245b6a3 | 1803 | |
270b243f LC |
1804 | ## |
1805 | # @change-vnc-password: | |
1806 | # | |
1807 | # Change the VNC server password. | |
1808 | # | |
1c854067 | 1809 | # @password: the new password to use with VNC authentication |
270b243f LC |
1810 | # |
1811 | # Since: 1.1 | |
1812 | # | |
1813 | # Notes: An empty password in this command will set the password to the empty | |
1814 | # string. Existing clients are unaffected by executing this command. | |
1815 | ## | |
1816 | { 'command': 'change-vnc-password', 'data': {'password': 'str'} } | |
333a96ec LC |
1817 | |
1818 | ## | |
1819 | # @change: | |
1820 | # | |
1821 | # This command is multiple commands multiplexed together. | |
1822 | # | |
1823 | # @device: This is normally the name of a block device but it may also be 'vnc'. | |
1824 | # when it's 'vnc', then sub command depends on @target | |
1825 | # | |
1826 | # @target: If @device is a block device, then this is the new filename. | |
1827 | # If @device is 'vnc', then if the value 'password' selects the vnc | |
1828 | # change password command. Otherwise, this specifies a new server URI | |
1829 | # address to listen to for VNC connections. | |
1830 | # | |
1831 | # @arg: If @device is a block device, then this is an optional format to open | |
1832 | # the device with. | |
1833 | # If @device is 'vnc' and @target is 'password', this is the new VNC | |
1834 | # password to set. If this argument is an empty string, then no future | |
1835 | # logins will be allowed. | |
1836 | # | |
1837 | # Returns: Nothing on success. | |
1838 | # If @device is not a valid block device, DeviceNotFound | |
333a96ec LC |
1839 | # If the new block device is encrypted, DeviceEncrypted. Note that |
1840 | # if this error is returned, the device has been opened successfully | |
1841 | # and an additional call to @block_passwd is required to set the | |
1842 | # device's password. The behavior of reads and writes to the block | |
1843 | # device between when these calls are executed is undefined. | |
1844 | # | |
1845 | # Notes: It is strongly recommended that this interface is not used especially | |
1846 | # for changing block devices. | |
1847 | # | |
1848 | # Since: 0.14.0 | |
1849 | ## | |
1850 | { 'command': 'change', | |
1851 | 'data': {'device': 'str', 'target': 'str', '*arg': 'str'} } | |
80047da5 | 1852 | |
5eeee3fa AL |
1853 | ## |
1854 | # @ObjectTypeInfo: | |
1855 | # | |
1856 | # This structure describes a search result from @qom-list-types | |
1857 | # | |
1858 | # @name: the type name found in the search | |
1859 | # | |
1860 | # Since: 1.1 | |
1861 | # | |
1862 | # Notes: This command is experimental and may change syntax in future releases. | |
1863 | ## | |
895a2a80 | 1864 | { 'struct': 'ObjectTypeInfo', |
5eeee3fa AL |
1865 | 'data': { 'name': 'str' } } |
1866 | ||
1867 | ## | |
1868 | # @qom-list-types: | |
1869 | # | |
1870 | # This command will return a list of types given search parameters | |
1871 | # | |
1872 | # @implements: if specified, only return types that implement this type name | |
1873 | # | |
1874 | # @abstract: if true, include abstract types in the results | |
1875 | # | |
1876 | # Returns: a list of @ObjectTypeInfo or an empty list if no results are found | |
1877 | # | |
1878 | # Since: 1.1 | |
5eeee3fa AL |
1879 | ## |
1880 | { 'command': 'qom-list-types', | |
1881 | 'data': { '*implements': 'str', '*abstract': 'bool' }, | |
1882 | 'returns': [ 'ObjectTypeInfo' ] } | |
e1c37d0e | 1883 | |
1daa31b9 AL |
1884 | ## |
1885 | # @DevicePropertyInfo: | |
1886 | # | |
1887 | # Information about device properties. | |
1888 | # | |
1889 | # @name: the name of the property | |
1890 | # @type: the typename of the property | |
07d09c58 GA |
1891 | # @description: #optional if specified, the description of the property. |
1892 | # (since 2.2) | |
1daa31b9 AL |
1893 | # |
1894 | # Since: 1.2 | |
1895 | ## | |
895a2a80 | 1896 | { 'struct': 'DevicePropertyInfo', |
07d09c58 | 1897 | 'data': { 'name': 'str', 'type': 'str', '*description': 'str' } } |
1daa31b9 AL |
1898 | |
1899 | ## | |
1900 | # @device-list-properties: | |
1901 | # | |
1902 | # List properties associated with a device. | |
1903 | # | |
1904 | # @typename: the type name of a device | |
1905 | # | |
1906 | # Returns: a list of DevicePropertyInfo describing a devices properties | |
1907 | # | |
1908 | # Since: 1.2 | |
1909 | ## | |
1910 | { 'command': 'device-list-properties', | |
1911 | 'data': { 'typename': 'str'}, | |
1912 | 'returns': [ 'DevicePropertyInfo' ] } | |
1913 | ||
e1c37d0e LC |
1914 | ## |
1915 | # @migrate | |
1916 | # | |
1917 | # Migrates the current running guest to another Virtual Machine. | |
1918 | # | |
1919 | # @uri: the Uniform Resource Identifier of the destination VM | |
1920 | # | |
1921 | # @blk: #optional do block migration (full disk copy) | |
1922 | # | |
1923 | # @inc: #optional incremental disk copy migration | |
1924 | # | |
1925 | # @detach: this argument exists only for compatibility reasons and | |
1926 | # is ignored by QEMU | |
1927 | # | |
1928 | # Returns: nothing on success | |
1929 | # | |
1930 | # Since: 0.14.0 | |
1931 | ## | |
1932 | { 'command': 'migrate', | |
1933 | 'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } } | |
33cf629a | 1934 | |
bf1ae1f4 DDAG |
1935 | ## |
1936 | # @migrate-incoming | |
1937 | # | |
1938 | # Start an incoming migration, the qemu must have been started | |
1939 | # with -incoming defer | |
1940 | # | |
1941 | # @uri: The Uniform Resource Identifier identifying the source or | |
1942 | # address to listen on | |
1943 | # | |
1944 | # Returns: nothing on success | |
1945 | # | |
1946 | # Since: 2.3 | |
d8760534 DDAG |
1947 | # Note: It's a bad idea to use a string for the uri, but it needs to stay |
1948 | # compatible with -incoming and the format of the uri is already exposed | |
1949 | # above libvirt | |
bf1ae1f4 DDAG |
1950 | ## |
1951 | { 'command': 'migrate-incoming', 'data': {'uri': 'str' } } | |
1952 | ||
a7ae8355 SS |
1953 | # @xen-save-devices-state: |
1954 | # | |
1955 | # Save the state of all devices to file. The RAM and the block devices | |
1956 | # of the VM are not saved by this command. | |
1957 | # | |
1958 | # @filename: the file to save the state of the devices to as binary | |
1959 | # data. See xen-save-devices-state.txt for a description of the binary | |
1960 | # format. | |
1961 | # | |
1962 | # Returns: Nothing on success | |
a7ae8355 SS |
1963 | # |
1964 | # Since: 1.1 | |
1965 | ## | |
1966 | { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} } | |
a15fef21 | 1967 | |
39f42439 AP |
1968 | ## |
1969 | # @xen-set-global-dirty-log | |
1970 | # | |
1971 | # Enable or disable the global dirty log mode. | |
1972 | # | |
1973 | # @enable: true to enable, false to disable. | |
1974 | # | |
1975 | # Returns: nothing | |
1976 | # | |
1977 | # Since: 1.3 | |
1978 | ## | |
1979 | { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } } | |
1980 | ||
a15fef21 LC |
1981 | ## |
1982 | # @device_del: | |
1983 | # | |
1984 | # Remove a device from a guest | |
1985 | # | |
6287d827 | 1986 | # @id: the name or QOM path of the device |
a15fef21 LC |
1987 | # |
1988 | # Returns: Nothing on success | |
1989 | # If @id is not a valid device, DeviceNotFound | |
a15fef21 LC |
1990 | # |
1991 | # Notes: When this command completes, the device may not be removed from the | |
1992 | # guest. Hot removal is an operation that requires guest cooperation. | |
1993 | # This command merely requests that the guest begin the hot removal | |
0402a5d6 MT |
1994 | # process. Completion of the device removal process is signaled with a |
1995 | # DEVICE_DELETED event. Guest reset will automatically complete removal | |
1996 | # for all devices. | |
a15fef21 LC |
1997 | # |
1998 | # Since: 0.14.0 | |
1999 | ## | |
2000 | { 'command': 'device_del', 'data': {'id': 'str'} } | |
783e9b48 | 2001 | |
b53ccc30 QN |
2002 | ## |
2003 | # @DumpGuestMemoryFormat: | |
2004 | # | |
2005 | # An enumeration of guest-memory-dump's format. | |
2006 | # | |
2007 | # @elf: elf format | |
2008 | # | |
2009 | # @kdump-zlib: kdump-compressed format with zlib-compressed | |
2010 | # | |
2011 | # @kdump-lzo: kdump-compressed format with lzo-compressed | |
2012 | # | |
2013 | # @kdump-snappy: kdump-compressed format with snappy-compressed | |
2014 | # | |
2015 | # Since: 2.0 | |
2016 | ## | |
2017 | { 'enum': 'DumpGuestMemoryFormat', | |
2018 | 'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] } | |
2019 | ||
783e9b48 WC |
2020 | ## |
2021 | # @dump-guest-memory | |
2022 | # | |
2023 | # Dump guest's memory to vmcore. It is a synchronous operation that can take | |
2024 | # very long depending on the amount of guest memory. This command is only | |
f5b0d93b LC |
2025 | # supported on i386 and x86_64. |
2026 | # | |
2027 | # @paging: if true, do paging to get guest's memory mapping. This allows | |
d691180e | 2028 | # using gdb to process the core file. |
f5b0d93b | 2029 | # |
d691180e LC |
2030 | # IMPORTANT: this option can make QEMU allocate several gigabytes |
2031 | # of RAM. This can happen for a large guest, or a | |
2032 | # malicious guest pretending to be large. | |
2033 | # | |
2034 | # Also, paging=true has the following limitations: | |
2035 | # | |
2036 | # 1. The guest may be in a catastrophic state or can have corrupted | |
2037 | # memory, which cannot be trusted | |
2038 | # 2. The guest can be in real-mode even if paging is enabled. For | |
2039 | # example, the guest uses ACPI to sleep, and ACPI sleep state | |
2040 | # goes in real-mode | |
f5b0d93b | 2041 | # |
783e9b48 | 2042 | # @protocol: the filename or file descriptor of the vmcore. The supported |
d691180e | 2043 | # protocols are: |
f5b0d93b | 2044 | # |
d691180e LC |
2045 | # 1. file: the protocol starts with "file:", and the following |
2046 | # string is the file's path. | |
2047 | # 2. fd: the protocol starts with "fd:", and the following string | |
2048 | # is the fd's name. | |
f5b0d93b | 2049 | # |
783e9b48 | 2050 | # @begin: #optional if specified, the starting physical address. |
f5b0d93b | 2051 | # |
783e9b48 | 2052 | # @length: #optional if specified, the memory size, in bytes. If you don't |
d691180e LC |
2053 | # want to dump all guest's memory, please specify the start @begin |
2054 | # and @length | |
783e9b48 | 2055 | # |
b53ccc30 QN |
2056 | # @format: #optional if specified, the format of guest memory dump. But non-elf |
2057 | # format is conflict with paging and filter, ie. @paging, @begin and | |
2058 | # @length is not allowed to be specified with non-elf @format at the | |
2059 | # same time (since 2.0) | |
2060 | # | |
783e9b48 | 2061 | # Returns: nothing on success |
783e9b48 WC |
2062 | # |
2063 | # Since: 1.2 | |
2064 | ## | |
2065 | { 'command': 'dump-guest-memory', | |
2066 | 'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int', | |
b53ccc30 | 2067 | '*length': 'int', '*format': 'DumpGuestMemoryFormat' } } |
d691180e | 2068 | |
7d6dc7f3 QN |
2069 | ## |
2070 | # @DumpGuestMemoryCapability: | |
2071 | # | |
2072 | # A list of the available formats for dump-guest-memory | |
2073 | # | |
2074 | # Since: 2.0 | |
2075 | ## | |
895a2a80 | 2076 | { 'struct': 'DumpGuestMemoryCapability', |
7d6dc7f3 QN |
2077 | 'data': { |
2078 | 'formats': ['DumpGuestMemoryFormat'] } } | |
2079 | ||
2080 | ## | |
2081 | # @query-dump-guest-memory-capability: | |
2082 | # | |
2083 | # Returns the available formats for dump-guest-memory | |
2084 | # | |
2085 | # Returns: A @DumpGuestMemoryCapability object listing available formats for | |
2086 | # dump-guest-memory | |
2087 | # | |
2088 | # Since: 2.0 | |
2089 | ## | |
2090 | { 'command': 'query-dump-guest-memory-capability', | |
2091 | 'returns': 'DumpGuestMemoryCapability' } | |
d691180e | 2092 | |
7ee0c3e3 JH |
2093 | ## |
2094 | # @dump-skeys | |
2095 | # | |
2096 | # Dump guest's storage keys | |
2097 | # | |
2098 | # @filename: the path to the file to dump to | |
2099 | # | |
2100 | # This command is only supported on s390 architecture. | |
2101 | # | |
2102 | # Since: 2.5 | |
2103 | ## | |
2104 | { 'command': 'dump-skeys', | |
2105 | 'data': { 'filename': 'str' } } | |
2106 | ||
928059a3 LC |
2107 | ## |
2108 | # @netdev_add: | |
2109 | # | |
2110 | # Add a network backend. | |
2111 | # | |
2112 | # @type: the type of network backend. Current valid values are 'user', 'tap', | |
2113 | # 'vde', 'socket', 'dump' and 'bridge' | |
2114 | # | |
2115 | # @id: the name of the new network backend | |
2116 | # | |
b8a98326 | 2117 | # Additional arguments depend on the type. |
928059a3 | 2118 | # |
b8a98326 MA |
2119 | # TODO This command effectively bypasses QAPI completely due to its |
2120 | # "additional arguments" business. It shouldn't have been added to | |
2121 | # the schema in this form. It should be qapified properly, or | |
2122 | # replaced by a properly qapified command. | |
928059a3 LC |
2123 | # |
2124 | # Since: 0.14.0 | |
2125 | # | |
2126 | # Returns: Nothing on success | |
2127 | # If @type is not a valid network backend, DeviceNotFound | |
928059a3 LC |
2128 | ## |
2129 | { 'command': 'netdev_add', | |
b8a98326 MA |
2130 | 'data': {'type': 'str', 'id': 'str'}, |
2131 | 'gen': false } # so we can get the additional arguments | |
5f964155 LC |
2132 | |
2133 | ## | |
2134 | # @netdev_del: | |
2135 | # | |
2136 | # Remove a network backend. | |
2137 | # | |
2138 | # @id: the name of the network backend to remove | |
2139 | # | |
2140 | # Returns: Nothing on success | |
2141 | # If @id is not a valid network backend, DeviceNotFound | |
2142 | # | |
2143 | # Since: 0.14.0 | |
2144 | ## | |
2145 | { 'command': 'netdev_del', 'data': {'id': 'str'} } | |
208c9d1b | 2146 | |
cff8b2c6 PB |
2147 | ## |
2148 | # @object-add: | |
2149 | # | |
2150 | # Create a QOM object. | |
2151 | # | |
2152 | # @qom-type: the class name for the object to be created | |
2153 | # | |
2154 | # @id: the name of the new object | |
2155 | # | |
2156 | # @props: #optional a dictionary of properties to be passed to the backend | |
2157 | # | |
2158 | # Returns: Nothing on success | |
2159 | # Error if @qom-type is not a valid class name | |
2160 | # | |
2161 | # Since: 2.0 | |
2162 | ## | |
2163 | { 'command': 'object-add', | |
6eb3937e | 2164 | 'data': {'qom-type': 'str', 'id': 'str', '*props': 'any'} } |
cff8b2c6 | 2165 | |
ab2d0531 PB |
2166 | ## |
2167 | # @object-del: | |
2168 | # | |
2169 | # Remove a QOM object. | |
2170 | # | |
2171 | # @id: the name of the QOM object to remove | |
2172 | # | |
2173 | # Returns: Nothing on success | |
2174 | # Error if @id is not a valid id for a QOM object | |
2175 | # | |
2176 | # Since: 2.0 | |
2177 | ## | |
2178 | { 'command': 'object-del', 'data': {'id': 'str'} } | |
2179 | ||
14aa0c2d LE |
2180 | ## |
2181 | # @NetdevNoneOptions | |
2182 | # | |
2183 | # Use it alone to have zero network devices. | |
2184 | # | |
2185 | # Since 1.2 | |
2186 | ## | |
895a2a80 | 2187 | { 'struct': 'NetdevNoneOptions', |
14aa0c2d LE |
2188 | 'data': { } } |
2189 | ||
2190 | ## | |
2191 | # @NetLegacyNicOptions | |
2192 | # | |
2193 | # Create a new Network Interface Card. | |
2194 | # | |
2195 | # @netdev: #optional id of -netdev to connect to | |
2196 | # | |
2197 | # @macaddr: #optional MAC address | |
2198 | # | |
2199 | # @model: #optional device model (e1000, rtl8139, virtio etc.) | |
2200 | # | |
2201 | # @addr: #optional PCI device address | |
2202 | # | |
2203 | # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X | |
2204 | # | |
2205 | # Since 1.2 | |
2206 | ## | |
895a2a80 | 2207 | { 'struct': 'NetLegacyNicOptions', |
14aa0c2d LE |
2208 | 'data': { |
2209 | '*netdev': 'str', | |
2210 | '*macaddr': 'str', | |
2211 | '*model': 'str', | |
2212 | '*addr': 'str', | |
2213 | '*vectors': 'uint32' } } | |
2214 | ||
2215 | ## | |
2216 | # @String | |
2217 | # | |
2218 | # A fat type wrapping 'str', to be embedded in lists. | |
2219 | # | |
2220 | # Since 1.2 | |
2221 | ## | |
895a2a80 | 2222 | { 'struct': 'String', |
14aa0c2d LE |
2223 | 'data': { |
2224 | 'str': 'str' } } | |
2225 | ||
2226 | ## | |
2227 | # @NetdevUserOptions | |
2228 | # | |
2229 | # Use the user mode network stack which requires no administrator privilege to | |
2230 | # run. | |
2231 | # | |
2232 | # @hostname: #optional client hostname reported by the builtin DHCP server | |
2233 | # | |
2234 | # @restrict: #optional isolate the guest from the host | |
2235 | # | |
2236 | # @ip: #optional legacy parameter, use net= instead | |
2237 | # | |
2238 | # @net: #optional IP address and optional netmask | |
2239 | # | |
2240 | # @host: #optional guest-visible address of the host | |
2241 | # | |
2242 | # @tftp: #optional root directory of the built-in TFTP server | |
2243 | # | |
2244 | # @bootfile: #optional BOOTP filename, for use with tftp= | |
2245 | # | |
2246 | # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can | |
2247 | # assign | |
2248 | # | |
2249 | # @dns: #optional guest-visible address of the virtual nameserver | |
2250 | # | |
63d2960b KS |
2251 | # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option |
2252 | # to the guest | |
2253 | # | |
14aa0c2d LE |
2254 | # @smb: #optional root directory of the built-in SMB server |
2255 | # | |
2256 | # @smbserver: #optional IP address of the built-in SMB server | |
2257 | # | |
2258 | # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest | |
2259 | # endpoints | |
2260 | # | |
2261 | # @guestfwd: #optional forward guest TCP connections | |
2262 | # | |
2263 | # Since 1.2 | |
2264 | ## | |
895a2a80 | 2265 | { 'struct': 'NetdevUserOptions', |
14aa0c2d LE |
2266 | 'data': { |
2267 | '*hostname': 'str', | |
2268 | '*restrict': 'bool', | |
2269 | '*ip': 'str', | |
2270 | '*net': 'str', | |
2271 | '*host': 'str', | |
2272 | '*tftp': 'str', | |
2273 | '*bootfile': 'str', | |
2274 | '*dhcpstart': 'str', | |
2275 | '*dns': 'str', | |
63d2960b | 2276 | '*dnssearch': ['String'], |
14aa0c2d LE |
2277 | '*smb': 'str', |
2278 | '*smbserver': 'str', | |
2279 | '*hostfwd': ['String'], | |
2280 | '*guestfwd': ['String'] } } | |
2281 | ||
2282 | ## | |
2283 | # @NetdevTapOptions | |
2284 | # | |
2285 | # Connect the host TAP network interface name to the VLAN. | |
2286 | # | |
2287 | # @ifname: #optional interface name | |
2288 | # | |
2289 | # @fd: #optional file descriptor of an already opened tap | |
2290 | # | |
2ca81baa JW |
2291 | # @fds: #optional multiple file descriptors of already opened multiqueue capable |
2292 | # tap | |
2293 | # | |
14aa0c2d LE |
2294 | # @script: #optional script to initialize the interface |
2295 | # | |
2296 | # @downscript: #optional script to shut down the interface | |
2297 | # | |
2298 | # @helper: #optional command to execute to configure bridge | |
2299 | # | |
2300 | # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes. | |
2301 | # | |
2302 | # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface | |
2303 | # | |
2304 | # @vhost: #optional enable vhost-net network accelerator | |
2305 | # | |
2306 | # @vhostfd: #optional file descriptor of an already opened vhost net device | |
2307 | # | |
2ca81baa JW |
2308 | # @vhostfds: #optional file descriptors of multiple already opened vhost net |
2309 | # devices | |
2310 | # | |
14aa0c2d LE |
2311 | # @vhostforce: #optional vhost on for non-MSIX virtio guests |
2312 | # | |
ec396014 JW |
2313 | # @queues: #optional number of queues to be created for multiqueue capable tap |
2314 | # | |
14aa0c2d LE |
2315 | # Since 1.2 |
2316 | ## | |
895a2a80 | 2317 | { 'struct': 'NetdevTapOptions', |
14aa0c2d LE |
2318 | 'data': { |
2319 | '*ifname': 'str', | |
2320 | '*fd': 'str', | |
264986e2 | 2321 | '*fds': 'str', |
14aa0c2d LE |
2322 | '*script': 'str', |
2323 | '*downscript': 'str', | |
2324 | '*helper': 'str', | |
2325 | '*sndbuf': 'size', | |
2326 | '*vnet_hdr': 'bool', | |
2327 | '*vhost': 'bool', | |
2328 | '*vhostfd': 'str', | |
264986e2 JW |
2329 | '*vhostfds': 'str', |
2330 | '*vhostforce': 'bool', | |
2331 | '*queues': 'uint32'} } | |
14aa0c2d LE |
2332 | |
2333 | ## | |
2334 | # @NetdevSocketOptions | |
2335 | # | |
2336 | # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP | |
2337 | # socket connection. | |
2338 | # | |
2339 | # @fd: #optional file descriptor of an already opened socket | |
2340 | # | |
2341 | # @listen: #optional port number, and optional hostname, to listen on | |
2342 | # | |
2343 | # @connect: #optional port number, and optional hostname, to connect to | |
2344 | # | |
2345 | # @mcast: #optional UDP multicast address and port number | |
2346 | # | |
2347 | # @localaddr: #optional source address and port for multicast and udp packets | |
2348 | # | |
2349 | # @udp: #optional UDP unicast address and port number | |
2350 | # | |
2351 | # Since 1.2 | |
2352 | ## | |
895a2a80 | 2353 | { 'struct': 'NetdevSocketOptions', |
14aa0c2d LE |
2354 | 'data': { |
2355 | '*fd': 'str', | |
2356 | '*listen': 'str', | |
2357 | '*connect': 'str', | |
2358 | '*mcast': 'str', | |
2359 | '*localaddr': 'str', | |
2360 | '*udp': 'str' } } | |
2361 | ||
3fb69aa1 AI |
2362 | ## |
2363 | # @NetdevL2TPv3Options | |
2364 | # | |
2365 | # Connect the VLAN to Ethernet over L2TPv3 Static tunnel | |
2366 | # | |
2367 | # @src: source address | |
2368 | # | |
2369 | # @dst: destination address | |
2370 | # | |
2371 | # @srcport: #optional source port - mandatory for udp, optional for ip | |
2372 | # | |
2373 | # @dstport: #optional destination port - mandatory for udp, optional for ip | |
2374 | # | |
2375 | # @ipv6: #optional - force the use of ipv6 | |
2376 | # | |
2377 | # @udp: #optional - use the udp version of l2tpv3 encapsulation | |
2378 | # | |
2379 | # @cookie64: #optional - use 64 bit coookies | |
2380 | # | |
2381 | # @counter: #optional have sequence counter | |
2382 | # | |
2383 | # @pincounter: #optional pin sequence counter to zero - | |
2384 | # workaround for buggy implementations or | |
2385 | # networks with packet reorder | |
2386 | # | |
2387 | # @txcookie: #optional 32 or 64 bit transmit cookie | |
2388 | # | |
2389 | # @rxcookie: #optional 32 or 64 bit receive cookie | |
2390 | # | |
2391 | # @txsession: 32 bit transmit session | |
2392 | # | |
2393 | # @rxsession: #optional 32 bit receive session - if not specified | |
2394 | # set to the same value as transmit | |
2395 | # | |
2396 | # @offset: #optional additional offset - allows the insertion of | |
2397 | # additional application-specific data before the packet payload | |
2398 | # | |
2399 | # Since 2.1 | |
2400 | ## | |
895a2a80 | 2401 | { 'struct': 'NetdevL2TPv3Options', |
3fb69aa1 AI |
2402 | 'data': { |
2403 | 'src': 'str', | |
2404 | 'dst': 'str', | |
2405 | '*srcport': 'str', | |
2406 | '*dstport': 'str', | |
2407 | '*ipv6': 'bool', | |
2408 | '*udp': 'bool', | |
2409 | '*cookie64': 'bool', | |
2410 | '*counter': 'bool', | |
2411 | '*pincounter': 'bool', | |
2412 | '*txcookie': 'uint64', | |
2413 | '*rxcookie': 'uint64', | |
2414 | 'txsession': 'uint32', | |
2415 | '*rxsession': 'uint32', | |
2416 | '*offset': 'uint32' } } | |
2417 | ||
14aa0c2d LE |
2418 | ## |
2419 | # @NetdevVdeOptions | |
2420 | # | |
2421 | # Connect the VLAN to a vde switch running on the host. | |
2422 | # | |
2423 | # @sock: #optional socket path | |
2424 | # | |
2425 | # @port: #optional port number | |
2426 | # | |
2427 | # @group: #optional group owner of socket | |
2428 | # | |
2429 | # @mode: #optional permissions for socket | |
2430 | # | |
2431 | # Since 1.2 | |
2432 | ## | |
895a2a80 | 2433 | { 'struct': 'NetdevVdeOptions', |
14aa0c2d LE |
2434 | 'data': { |
2435 | '*sock': 'str', | |
2436 | '*port': 'uint16', | |
2437 | '*group': 'str', | |
2438 | '*mode': 'uint16' } } | |
2439 | ||
2440 | ## | |
2441 | # @NetdevDumpOptions | |
2442 | # | |
2443 | # Dump VLAN network traffic to a file. | |
2444 | # | |
2445 | # @len: #optional per-packet size limit (64k default). Understands [TGMKkb] | |
2446 | # suffixes. | |
2447 | # | |
2448 | # @file: #optional dump file path (default is qemu-vlan0.pcap) | |
2449 | # | |
2450 | # Since 1.2 | |
2451 | ## | |
895a2a80 | 2452 | { 'struct': 'NetdevDumpOptions', |
14aa0c2d LE |
2453 | 'data': { |
2454 | '*len': 'size', | |
2455 | '*file': 'str' } } | |
2456 | ||
2457 | ## | |
2458 | # @NetdevBridgeOptions | |
2459 | # | |
2460 | # Connect a host TAP network interface to a host bridge device. | |
2461 | # | |
2462 | # @br: #optional bridge name | |
2463 | # | |
2464 | # @helper: #optional command to execute to configure bridge | |
2465 | # | |
2466 | # Since 1.2 | |
2467 | ## | |
895a2a80 | 2468 | { 'struct': 'NetdevBridgeOptions', |
14aa0c2d LE |
2469 | 'data': { |
2470 | '*br': 'str', | |
2471 | '*helper': 'str' } } | |
2472 | ||
f6c874e3 SH |
2473 | ## |
2474 | # @NetdevHubPortOptions | |
2475 | # | |
2476 | # Connect two or more net clients through a software hub. | |
2477 | # | |
2478 | # @hubid: hub identifier number | |
2479 | # | |
2480 | # Since 1.2 | |
2481 | ## | |
895a2a80 | 2482 | { 'struct': 'NetdevHubPortOptions', |
f6c874e3 SH |
2483 | 'data': { |
2484 | 'hubid': 'int32' } } | |
2485 | ||
58952137 VM |
2486 | ## |
2487 | # @NetdevNetmapOptions | |
2488 | # | |
2489 | # Connect a client to a netmap-enabled NIC or to a VALE switch port | |
2490 | # | |
2491 | # @ifname: Either the name of an existing network interface supported by | |
2492 | # netmap, or the name of a VALE port (created on the fly). | |
2493 | # A VALE port name is in the form 'valeXXX:YYY', where XXX and | |
2494 | # YYY are non-negative integers. XXX identifies a switch and | |
2495 | # YYY identifies a port of the switch. VALE ports having the | |
2496 | # same XXX are therefore connected to the same switch. | |
2497 | # | |
2498 | # @devname: #optional path of the netmap device (default: '/dev/netmap'). | |
2499 | # | |
c27de2a3 | 2500 | # Since 2.0 |
58952137 | 2501 | ## |
895a2a80 | 2502 | { 'struct': 'NetdevNetmapOptions', |
58952137 VM |
2503 | 'data': { |
2504 | 'ifname': 'str', | |
2505 | '*devname': 'str' } } | |
2506 | ||
03ce5744 NN |
2507 | ## |
2508 | # @NetdevVhostUserOptions | |
2509 | # | |
2510 | # Vhost-user network backend | |
2511 | # | |
2512 | # @chardev: name of a unix socket chardev | |
2513 | # | |
2514 | # @vhostforce: #optional vhost on for non-MSIX virtio guests (default: false). | |
2515 | # | |
b931bfbf CO |
2516 | # @queues: #optional number of queues to be created for multiqueue vhost-user |
2517 | # (default: 1) (Since 2.5) | |
2518 | # | |
03ce5744 NN |
2519 | # Since 2.1 |
2520 | ## | |
895a2a80 | 2521 | { 'struct': 'NetdevVhostUserOptions', |
03ce5744 NN |
2522 | 'data': { |
2523 | 'chardev': 'str', | |
b931bfbf CO |
2524 | '*vhostforce': 'bool', |
2525 | '*queues': 'int' } } | |
03ce5744 | 2526 | |
14aa0c2d LE |
2527 | ## |
2528 | # @NetClientOptions | |
2529 | # | |
2530 | # A discriminated record of network device traits. | |
2531 | # | |
2532 | # Since 1.2 | |
3fb69aa1 AI |
2533 | # |
2534 | # 'l2tpv3' - since 2.1 | |
2535 | # | |
14aa0c2d LE |
2536 | ## |
2537 | { 'union': 'NetClientOptions', | |
2538 | 'data': { | |
f6c874e3 SH |
2539 | 'none': 'NetdevNoneOptions', |
2540 | 'nic': 'NetLegacyNicOptions', | |
2541 | 'user': 'NetdevUserOptions', | |
2542 | 'tap': 'NetdevTapOptions', | |
3fb69aa1 | 2543 | 'l2tpv3': 'NetdevL2TPv3Options', |
f6c874e3 SH |
2544 | 'socket': 'NetdevSocketOptions', |
2545 | 'vde': 'NetdevVdeOptions', | |
2546 | 'dump': 'NetdevDumpOptions', | |
2547 | 'bridge': 'NetdevBridgeOptions', | |
58952137 | 2548 | 'hubport': 'NetdevHubPortOptions', |
03ce5744 NN |
2549 | 'netmap': 'NetdevNetmapOptions', |
2550 | 'vhost-user': 'NetdevVhostUserOptions' } } | |
14aa0c2d LE |
2551 | |
2552 | ## | |
2553 | # @NetLegacy | |
2554 | # | |
2555 | # Captures the configuration of a network device; legacy. | |
2556 | # | |
2557 | # @vlan: #optional vlan number | |
2558 | # | |
2559 | # @id: #optional identifier for monitor commands | |
2560 | # | |
2561 | # @name: #optional identifier for monitor commands, ignored if @id is present | |
2562 | # | |
2563 | # @opts: device type specific properties (legacy) | |
2564 | # | |
2565 | # Since 1.2 | |
2566 | ## | |
895a2a80 | 2567 | { 'struct': 'NetLegacy', |
14aa0c2d LE |
2568 | 'data': { |
2569 | '*vlan': 'int32', | |
2570 | '*id': 'str', | |
2571 | '*name': 'str', | |
2572 | 'opts': 'NetClientOptions' } } | |
2573 | ||
2574 | ## | |
2575 | # @Netdev | |
2576 | # | |
2577 | # Captures the configuration of a network device. | |
2578 | # | |
2579 | # @id: identifier for monitor commands. | |
2580 | # | |
2581 | # @opts: device type specific properties | |
2582 | # | |
2583 | # Since 1.2 | |
2584 | ## | |
895a2a80 | 2585 | { 'struct': 'Netdev', |
14aa0c2d LE |
2586 | 'data': { |
2587 | 'id': 'str', | |
2588 | 'opts': 'NetClientOptions' } } | |
2589 | ||
5be8c759 PB |
2590 | ## |
2591 | # @InetSocketAddress | |
2592 | # | |
2593 | # Captures a socket address or address range in the Internet namespace. | |
2594 | # | |
2595 | # @host: host part of the address | |
2596 | # | |
2597 | # @port: port part of the address, or lowest port if @to is present | |
2598 | # | |
2599 | # @to: highest port to try | |
2600 | # | |
2601 | # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6 | |
2602 | # #optional | |
2603 | # | |
2604 | # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6 | |
2605 | # #optional | |
2606 | # | |
2607 | # Since 1.3 | |
2608 | ## | |
895a2a80 | 2609 | { 'struct': 'InetSocketAddress', |
5be8c759 PB |
2610 | 'data': { |
2611 | 'host': 'str', | |
2612 | 'port': 'str', | |
2613 | '*to': 'uint16', | |
2614 | '*ipv4': 'bool', | |
2615 | '*ipv6': 'bool' } } | |
2616 | ||
2617 | ## | |
2618 | # @UnixSocketAddress | |
2619 | # | |
2620 | # Captures a socket address in the local ("Unix socket") namespace. | |
2621 | # | |
2622 | # @path: filesystem path to use | |
2623 | # | |
2624 | # Since 1.3 | |
2625 | ## | |
895a2a80 | 2626 | { 'struct': 'UnixSocketAddress', |
5be8c759 PB |
2627 | 'data': { |
2628 | 'path': 'str' } } | |
2629 | ||
2630 | ## | |
2631 | # @SocketAddress | |
2632 | # | |
2633 | # Captures the address of a socket, which could also be a named file descriptor | |
2634 | # | |
2635 | # Since 1.3 | |
2636 | ## | |
2637 | { 'union': 'SocketAddress', | |
2638 | 'data': { | |
2639 | 'inet': 'InetSocketAddress', | |
2640 | 'unix': 'UnixSocketAddress', | |
2641 | 'fd': 'String' } } | |
2642 | ||
208c9d1b CB |
2643 | ## |
2644 | # @getfd: | |
2645 | # | |
2646 | # Receive a file descriptor via SCM rights and assign it a name | |
2647 | # | |
2648 | # @fdname: file descriptor name | |
2649 | # | |
2650 | # Returns: Nothing on success | |
208c9d1b CB |
2651 | # |
2652 | # Since: 0.14.0 | |
2653 | # | |
2654 | # Notes: If @fdname already exists, the file descriptor assigned to | |
2655 | # it will be closed and replaced by the received file | |
2656 | # descriptor. | |
2657 | # The 'closefd' command can be used to explicitly close the | |
2658 | # file descriptor when it is no longer needed. | |
2659 | ## | |
2660 | { 'command': 'getfd', 'data': {'fdname': 'str'} } | |
2661 | ||
2662 | ## | |
2663 | # @closefd: | |
2664 | # | |
2665 | # Close a file descriptor previously passed via SCM rights | |
2666 | # | |
2667 | # @fdname: file descriptor name | |
2668 | # | |
2669 | # Returns: Nothing on success | |
208c9d1b CB |
2670 | # |
2671 | # Since: 0.14.0 | |
2672 | ## | |
2673 | { 'command': 'closefd', 'data': {'fdname': 'str'} } | |
01d3c80d AL |
2674 | |
2675 | ## | |
2676 | # @MachineInfo: | |
2677 | # | |
2678 | # Information describing a machine. | |
2679 | # | |
2680 | # @name: the name of the machine | |
2681 | # | |
2682 | # @alias: #optional an alias for the machine name | |
2683 | # | |
2684 | # @default: #optional whether the machine is default | |
2685 | # | |
c72e7688 MN |
2686 | # @cpu-max: maximum number of CPUs supported by the machine type |
2687 | # (since 1.5.0) | |
2688 | # | |
01d3c80d AL |
2689 | # Since: 1.2.0 |
2690 | ## | |
895a2a80 | 2691 | { 'struct': 'MachineInfo', |
01d3c80d | 2692 | 'data': { 'name': 'str', '*alias': 'str', |
c72e7688 | 2693 | '*is-default': 'bool', 'cpu-max': 'int' } } |
01d3c80d AL |
2694 | |
2695 | ## | |
2696 | # @query-machines: | |
2697 | # | |
2698 | # Return a list of supported machines | |
2699 | # | |
2700 | # Returns: a list of MachineInfo | |
2701 | # | |
2702 | # Since: 1.2.0 | |
2703 | ## | |
2704 | { 'command': 'query-machines', 'returns': ['MachineInfo'] } | |
e4e31c63 AL |
2705 | |
2706 | ## | |
2707 | # @CpuDefinitionInfo: | |
2708 | # | |
2709 | # Virtual CPU definition. | |
2710 | # | |
2711 | # @name: the name of the CPU definition | |
2712 | # | |
2713 | # Since: 1.2.0 | |
2714 | ## | |
895a2a80 | 2715 | { 'struct': 'CpuDefinitionInfo', |
e4e31c63 AL |
2716 | 'data': { 'name': 'str' } } |
2717 | ||
2718 | ## | |
2719 | # @query-cpu-definitions: | |
2720 | # | |
2721 | # Return a list of supported virtual CPU definitions | |
2722 | # | |
2723 | # Returns: a list of CpuDefInfo | |
2724 | # | |
2725 | # Since: 1.2.0 | |
2726 | ## | |
2727 | { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] } | |
ba1c048a CB |
2728 | |
2729 | # @AddfdInfo: | |
2730 | # | |
2731 | # Information about a file descriptor that was added to an fd set. | |
2732 | # | |
2733 | # @fdset-id: The ID of the fd set that @fd was added to. | |
2734 | # | |
2735 | # @fd: The file descriptor that was received via SCM rights and | |
2736 | # added to the fd set. | |
2737 | # | |
2738 | # Since: 1.2.0 | |
2739 | ## | |
895a2a80 | 2740 | { 'struct': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} } |
ba1c048a CB |
2741 | |
2742 | ## | |
2743 | # @add-fd: | |
2744 | # | |
2745 | # Add a file descriptor, that was passed via SCM rights, to an fd set. | |
2746 | # | |
2747 | # @fdset-id: #optional The ID of the fd set to add the file descriptor to. | |
2748 | # | |
2749 | # @opaque: #optional A free-form string that can be used to describe the fd. | |
2750 | # | |
2751 | # Returns: @AddfdInfo on success | |
2752 | # If file descriptor was not received, FdNotSupplied | |
9ac54af0 | 2753 | # If @fdset-id is a negative value, InvalidParameterValue |
ba1c048a CB |
2754 | # |
2755 | # Notes: The list of fd sets is shared by all monitor connections. | |
2756 | # | |
2757 | # If @fdset-id is not specified, a new fd set will be created. | |
2758 | # | |
2759 | # Since: 1.2.0 | |
2760 | ## | |
2761 | { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'}, | |
2762 | 'returns': 'AddfdInfo' } | |
2763 | ||
2764 | ## | |
2765 | # @remove-fd: | |
2766 | # | |
2767 | # Remove a file descriptor from an fd set. | |
2768 | # | |
2769 | # @fdset-id: The ID of the fd set that the file descriptor belongs to. | |
2770 | # | |
2771 | # @fd: #optional The file descriptor that is to be removed. | |
2772 | # | |
2773 | # Returns: Nothing on success | |
2774 | # If @fdset-id or @fd is not found, FdNotFound | |
2775 | # | |
2776 | # Since: 1.2.0 | |
2777 | # | |
2778 | # Notes: The list of fd sets is shared by all monitor connections. | |
2779 | # | |
2780 | # If @fd is not specified, all file descriptors in @fdset-id | |
2781 | # will be removed. | |
2782 | ## | |
2783 | { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} } | |
2784 | ||
2785 | ## | |
2786 | # @FdsetFdInfo: | |
2787 | # | |
2788 | # Information about a file descriptor that belongs to an fd set. | |
2789 | # | |
2790 | # @fd: The file descriptor value. | |
2791 | # | |
2792 | # @opaque: #optional A free-form string that can be used to describe the fd. | |
2793 | # | |
2794 | # Since: 1.2.0 | |
2795 | ## | |
895a2a80 | 2796 | { 'struct': 'FdsetFdInfo', |
ba1c048a CB |
2797 | 'data': {'fd': 'int', '*opaque': 'str'} } |
2798 | ||
2799 | ## | |
2800 | # @FdsetInfo: | |
2801 | # | |
2802 | # Information about an fd set. | |
2803 | # | |
2804 | # @fdset-id: The ID of the fd set. | |
2805 | # | |
2806 | # @fds: A list of file descriptors that belong to this fd set. | |
2807 | # | |
2808 | # Since: 1.2.0 | |
2809 | ## | |
895a2a80 | 2810 | { 'struct': 'FdsetInfo', |
ba1c048a CB |
2811 | 'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} } |
2812 | ||
2813 | ## | |
2814 | # @query-fdsets: | |
2815 | # | |
2816 | # Return information describing all fd sets. | |
2817 | # | |
2818 | # Returns: A list of @FdsetInfo | |
2819 | # | |
2820 | # Since: 1.2.0 | |
2821 | # | |
2822 | # Note: The list of fd sets is shared by all monitor connections. | |
2823 | # | |
2824 | ## | |
2825 | { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] } | |
99afc91d | 2826 | |
99afc91d DB |
2827 | ## |
2828 | # @TargetInfo: | |
2829 | # | |
2830 | # Information describing the QEMU target. | |
2831 | # | |
2832 | # @arch: the target architecture (eg "x86_64", "i386", etc) | |
2833 | # | |
2834 | # Since: 1.2.0 | |
2835 | ## | |
895a2a80 | 2836 | { 'struct': 'TargetInfo', |
c02a9552 | 2837 | 'data': { 'arch': 'str' } } |
99afc91d DB |
2838 | |
2839 | ## | |
2840 | # @query-target: | |
2841 | # | |
2842 | # Return information about the target for this QEMU | |
2843 | # | |
2844 | # Returns: TargetInfo | |
2845 | # | |
2846 | # Since: 1.2.0 | |
2847 | ## | |
2848 | { 'command': 'query-target', 'returns': 'TargetInfo' } | |
411656f4 AK |
2849 | |
2850 | ## | |
2851 | # @QKeyCode: | |
2852 | # | |
2853 | # An enumeration of key name. | |
2854 | # | |
2855 | # This is used by the send-key command. | |
2856 | # | |
2857 | # Since: 1.3.0 | |
bbd1b1cc | 2858 | # |
8b6b0c59 | 2859 | # 'unmapped' and 'pause' since 2.0 |
b771f470 | 2860 | # 'ro' and 'kp_comma' since 2.4 |
411656f4 AK |
2861 | ## |
2862 | { 'enum': 'QKeyCode', | |
bbd1b1cc GH |
2863 | 'data': [ 'unmapped', |
2864 | 'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl', | |
411656f4 AK |
2865 | 'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8', |
2866 | '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e', | |
2867 | 'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right', | |
2868 | 'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon', | |
2869 | 'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b', | |
2870 | 'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock', | |
2871 | 'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10', | |
2872 | 'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply', | |
2873 | 'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0', | |
2874 | 'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8', | |
2875 | 'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end', | |
2876 | 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again', | |
2877 | 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut', | |
b771f470 GH |
2878 | 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro', |
2879 | 'kp_comma' ] } | |
e4c8f004 | 2880 | |
9f328977 LC |
2881 | ## |
2882 | # @KeyValue | |
2883 | # | |
2884 | # Represents a keyboard key. | |
2885 | # | |
2886 | # Since: 1.3.0 | |
2887 | ## | |
2888 | { 'union': 'KeyValue', | |
2889 | 'data': { | |
2890 | 'number': 'int', | |
2891 | 'qcode': 'QKeyCode' } } | |
2892 | ||
e4c8f004 AK |
2893 | ## |
2894 | # @send-key: | |
2895 | # | |
2896 | # Send keys to guest. | |
2897 | # | |
9f328977 LC |
2898 | # @keys: An array of @KeyValue elements. All @KeyValues in this array are |
2899 | # simultaneously sent to the guest. A @KeyValue.number value is sent | |
2900 | # directly to the guest, while @KeyValue.qcode must be a valid | |
2901 | # @QKeyCode value | |
e4c8f004 AK |
2902 | # |
2903 | # @hold-time: #optional time to delay key up events, milliseconds. Defaults | |
2904 | # to 100 | |
2905 | # | |
2906 | # Returns: Nothing on success | |
2907 | # If key is unknown or redundant, InvalidParameter | |
2908 | # | |
2909 | # Since: 1.3.0 | |
2910 | # | |
2911 | ## | |
2912 | { 'command': 'send-key', | |
9f328977 | 2913 | 'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } } |
ad39cf6d LC |
2914 | |
2915 | ## | |
2916 | # @screendump: | |
2917 | # | |
2918 | # Write a PPM of the VGA screen to a file. | |
2919 | # | |
2920 | # @filename: the path of a new PPM file to store the image | |
2921 | # | |
2922 | # Returns: Nothing on success | |
2923 | # | |
2924 | # Since: 0.14.0 | |
2925 | ## | |
2926 | { 'command': 'screendump', 'data': {'filename': 'str'} } | |
6dd844db | 2927 | |
ffbdbe59 GH |
2928 | ## |
2929 | # @ChardevFile: | |
2930 | # | |
2931 | # Configuration info for file chardevs. | |
2932 | # | |
2933 | # @in: #optional The name of the input file | |
2934 | # @out: The name of the output file | |
2935 | # | |
2936 | # Since: 1.4 | |
2937 | ## | |
895a2a80 | 2938 | { 'struct': 'ChardevFile', 'data': { '*in' : 'str', |
ffbdbe59 GH |
2939 | 'out' : 'str' } } |
2940 | ||
d59044ef | 2941 | ## |
d36b2b90 | 2942 | # @ChardevHostdev: |
d59044ef | 2943 | # |
548cbb36 | 2944 | # Configuration info for device and pipe chardevs. |
d59044ef GH |
2945 | # |
2946 | # @device: The name of the special file for the device, | |
2947 | # i.e. /dev/ttyS0 on Unix or COM1: on Windows | |
2948 | # @type: What kind of device this is. | |
2949 | # | |
2950 | # Since: 1.4 | |
2951 | ## | |
895a2a80 | 2952 | { 'struct': 'ChardevHostdev', 'data': { 'device' : 'str' } } |
d59044ef | 2953 | |
f6bd5d6e GH |
2954 | ## |
2955 | # @ChardevSocket: | |
2956 | # | |
3ecc059d | 2957 | # Configuration info for (stream) socket chardevs. |
f6bd5d6e GH |
2958 | # |
2959 | # @addr: socket address to listen on (server=true) | |
2960 | # or connect to (server=false) | |
2961 | # @server: #optional create server socket (default: true) | |
ef993ba7 GH |
2962 | # @wait: #optional wait for incoming connection on server |
2963 | # sockets (default: false). | |
f6bd5d6e | 2964 | # @nodelay: #optional set TCP_NODELAY socket option (default: false) |
ef993ba7 GH |
2965 | # @telnet: #optional enable telnet protocol on server |
2966 | # sockets (default: false) | |
5dd1f02b CM |
2967 | # @reconnect: #optional For a client socket, if a socket is disconnected, |
2968 | # then attempt a reconnect after the given number of seconds. | |
2969 | # Setting this to zero disables this function. (default: 0) | |
2970 | # (Since: 2.2) | |
f6bd5d6e GH |
2971 | # |
2972 | # Since: 1.4 | |
2973 | ## | |
895a2a80 | 2974 | { 'struct': 'ChardevSocket', 'data': { 'addr' : 'SocketAddress', |
5dd1f02b CM |
2975 | '*server' : 'bool', |
2976 | '*wait' : 'bool', | |
2977 | '*nodelay' : 'bool', | |
2978 | '*telnet' : 'bool', | |
2979 | '*reconnect' : 'int' } } | |
f6bd5d6e | 2980 | |
3ecc059d | 2981 | ## |
08d0ab3f | 2982 | # @ChardevUdp: |
3ecc059d GH |
2983 | # |
2984 | # Configuration info for datagram socket chardevs. | |
2985 | # | |
2986 | # @remote: remote address | |
2987 | # @local: #optional local address | |
2988 | # | |
2989 | # Since: 1.5 | |
2990 | ## | |
895a2a80 | 2991 | { 'struct': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress', |
08d0ab3f | 2992 | '*local' : 'SocketAddress' } } |
3ecc059d | 2993 | |
edb2fb3c GH |
2994 | ## |
2995 | # @ChardevMux: | |
2996 | # | |
2997 | # Configuration info for mux chardevs. | |
2998 | # | |
2999 | # @chardev: name of the base chardev. | |
3000 | # | |
3001 | # Since: 1.5 | |
3002 | ## | |
895a2a80 | 3003 | { 'struct': 'ChardevMux', 'data': { 'chardev' : 'str' } } |
edb2fb3c | 3004 | |
7c358031 GH |
3005 | ## |
3006 | # @ChardevStdio: | |
3007 | # | |
3008 | # Configuration info for stdio chardevs. | |
3009 | # | |
3010 | # @signal: #optional Allow signals (such as SIGINT triggered by ^C) | |
3011 | # be delivered to qemu. Default: true in -nographic mode, | |
3012 | # false otherwise. | |
3013 | # | |
3014 | # Since: 1.5 | |
3015 | ## | |
895a2a80 | 3016 | { 'struct': 'ChardevStdio', 'data': { '*signal' : 'bool' } } |
7c358031 | 3017 | |
cd153e2a GH |
3018 | ## |
3019 | # @ChardevSpiceChannel: | |
3020 | # | |
3021 | # Configuration info for spice vm channel chardevs. | |
3022 | # | |
3023 | # @type: kind of channel (for example vdagent). | |
3024 | # | |
3025 | # Since: 1.5 | |
3026 | ## | |
895a2a80 | 3027 | { 'struct': 'ChardevSpiceChannel', 'data': { 'type' : 'str' } } |
cd153e2a GH |
3028 | |
3029 | ## | |
3030 | # @ChardevSpicePort: | |
3031 | # | |
3032 | # Configuration info for spice port chardevs. | |
3033 | # | |
3034 | # @fqdn: name of the channel (see docs/spice-port-fqdn.txt) | |
3035 | # | |
3036 | # Since: 1.5 | |
3037 | ## | |
895a2a80 | 3038 | { 'struct': 'ChardevSpicePort', 'data': { 'fqdn' : 'str' } } |
cd153e2a | 3039 | |
702ec69c GH |
3040 | ## |
3041 | # @ChardevVC: | |
3042 | # | |
3043 | # Configuration info for virtual console chardevs. | |
3044 | # | |
3045 | # @width: console width, in pixels | |
3046 | # @height: console height, in pixels | |
3047 | # @cols: console width, in chars | |
3048 | # @rows: console height, in chars | |
3049 | # | |
3050 | # Since: 1.5 | |
3051 | ## | |
895a2a80 | 3052 | { 'struct': 'ChardevVC', 'data': { '*width' : 'int', |
702ec69c GH |
3053 | '*height' : 'int', |
3054 | '*cols' : 'int', | |
3055 | '*rows' : 'int' } } | |
3056 | ||
1da48c65 | 3057 | ## |
4f57378f | 3058 | # @ChardevRingbuf: |
1da48c65 | 3059 | # |
3a1da42e | 3060 | # Configuration info for ring buffer chardevs. |
1da48c65 | 3061 | # |
3a1da42e | 3062 | # @size: #optional ring buffer size, must be power of two, default is 65536 |
1da48c65 GH |
3063 | # |
3064 | # Since: 1.5 | |
3065 | ## | |
895a2a80 | 3066 | { 'struct': 'ChardevRingbuf', 'data': { '*size' : 'int' } } |
1da48c65 | 3067 | |
f1a1a356 GH |
3068 | ## |
3069 | # @ChardevBackend: | |
3070 | # | |
3071 | # Configuration info for the new chardev backend. | |
3072 | # | |
5692399f | 3073 | # Since: 1.4 (testdev since 2.2) |
f1a1a356 | 3074 | ## |
895a2a80 | 3075 | { 'struct': 'ChardevDummy', 'data': { } } |
f1a1a356 | 3076 | |
f6bd5d6e | 3077 | { 'union': 'ChardevBackend', 'data': { 'file' : 'ChardevFile', |
d36b2b90 MA |
3078 | 'serial' : 'ChardevHostdev', |
3079 | 'parallel': 'ChardevHostdev', | |
548cbb36 | 3080 | 'pipe' : 'ChardevHostdev', |
f6bd5d6e | 3081 | 'socket' : 'ChardevSocket', |
08d0ab3f | 3082 | 'udp' : 'ChardevUdp', |
0a1a7fab | 3083 | 'pty' : 'ChardevDummy', |
edb2fb3c | 3084 | 'null' : 'ChardevDummy', |
f5a51cab | 3085 | 'mux' : 'ChardevMux', |
2d57286d | 3086 | 'msmouse': 'ChardevDummy', |
7c358031 | 3087 | 'braille': 'ChardevDummy', |
5692399f | 3088 | 'testdev': 'ChardevDummy', |
d9ac374f | 3089 | 'stdio' : 'ChardevStdio', |
cd153e2a GH |
3090 | 'console': 'ChardevDummy', |
3091 | 'spicevmc' : 'ChardevSpiceChannel', | |
702ec69c | 3092 | 'spiceport' : 'ChardevSpicePort', |
1da48c65 | 3093 | 'vc' : 'ChardevVC', |
3a1da42e MA |
3094 | 'ringbuf': 'ChardevRingbuf', |
3095 | # next one is just for compatibility | |
4f57378f | 3096 | 'memory' : 'ChardevRingbuf' } } |
f1a1a356 GH |
3097 | |
3098 | ## | |
3099 | # @ChardevReturn: | |
3100 | # | |
3101 | # Return info about the chardev backend just created. | |
3102 | # | |
58fa4325 MA |
3103 | # @pty: #optional name of the slave pseudoterminal device, present if |
3104 | # and only if a chardev of type 'pty' was created | |
3105 | # | |
f1a1a356 GH |
3106 | # Since: 1.4 |
3107 | ## | |
895a2a80 | 3108 | { 'struct' : 'ChardevReturn', 'data': { '*pty' : 'str' } } |
f1a1a356 GH |
3109 | |
3110 | ## | |
3111 | # @chardev-add: | |
3112 | # | |
58fa4325 | 3113 | # Add a character device backend |
f1a1a356 GH |
3114 | # |
3115 | # @id: the chardev's ID, must be unique | |
3116 | # @backend: backend type and parameters | |
3117 | # | |
58fa4325 | 3118 | # Returns: ChardevReturn. |
f1a1a356 GH |
3119 | # |
3120 | # Since: 1.4 | |
3121 | ## | |
3122 | { 'command': 'chardev-add', 'data': {'id' : 'str', | |
3123 | 'backend' : 'ChardevBackend' }, | |
3124 | 'returns': 'ChardevReturn' } | |
3125 | ||
3126 | ## | |
3127 | # @chardev-remove: | |
3128 | # | |
58fa4325 | 3129 | # Remove a character device backend |
f1a1a356 GH |
3130 | # |
3131 | # @id: the chardev's ID, must exist and not be in use | |
3132 | # | |
3133 | # Returns: Nothing on success | |
3134 | # | |
3135 | # Since: 1.4 | |
3136 | ## | |
3137 | { 'command': 'chardev-remove', 'data': {'id': 'str'} } | |
d1a0cf73 SB |
3138 | |
3139 | ## | |
3140 | # @TpmModel: | |
3141 | # | |
3142 | # An enumeration of TPM models | |
3143 | # | |
3144 | # @tpm-tis: TPM TIS model | |
3145 | # | |
3146 | # Since: 1.5 | |
3147 | ## | |
3148 | { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] } | |
3149 | ||
3150 | ## | |
3151 | # @query-tpm-models: | |
3152 | # | |
3153 | # Return a list of supported TPM models | |
3154 | # | |
3155 | # Returns: a list of TpmModel | |
3156 | # | |
3157 | # Since: 1.5 | |
3158 | ## | |
3159 | { 'command': 'query-tpm-models', 'returns': ['TpmModel'] } | |
3160 | ||
3161 | ## | |
3162 | # @TpmType: | |
3163 | # | |
3164 | # An enumeration of TPM types | |
3165 | # | |
3166 | # @passthrough: TPM passthrough type | |
3167 | # | |
3168 | # Since: 1.5 | |
3169 | ## | |
3170 | { 'enum': 'TpmType', 'data': [ 'passthrough' ] } | |
3171 | ||
3172 | ## | |
3173 | # @query-tpm-types: | |
3174 | # | |
3175 | # Return a list of supported TPM types | |
3176 | # | |
3177 | # Returns: a list of TpmType | |
3178 | # | |
3179 | # Since: 1.5 | |
3180 | ## | |
3181 | { 'command': 'query-tpm-types', 'returns': ['TpmType'] } | |
3182 | ||
3183 | ## | |
3184 | # @TPMPassthroughOptions: | |
3185 | # | |
3186 | # Information about the TPM passthrough type | |
3187 | # | |
3188 | # @path: #optional string describing the path used for accessing the TPM device | |
3189 | # | |
3190 | # @cancel-path: #optional string showing the TPM's sysfs cancel file | |
3191 | # for cancellation of TPM commands while they are executing | |
3192 | # | |
3193 | # Since: 1.5 | |
3194 | ## | |
895a2a80 | 3195 | { 'struct': 'TPMPassthroughOptions', 'data': { '*path' : 'str', |
d1a0cf73 SB |
3196 | '*cancel-path' : 'str'} } |
3197 | ||
3198 | ## | |
3199 | # @TpmTypeOptions: | |
3200 | # | |
3201 | # A union referencing different TPM backend types' configuration options | |
3202 | # | |
88ca7bcf | 3203 | # @passthrough: The configuration options for the TPM passthrough type |
d1a0cf73 SB |
3204 | # |
3205 | # Since: 1.5 | |
3206 | ## | |
3207 | { 'union': 'TpmTypeOptions', | |
88ca7bcf | 3208 | 'data': { 'passthrough' : 'TPMPassthroughOptions' } } |
d1a0cf73 SB |
3209 | |
3210 | ## | |
3211 | # @TpmInfo: | |
3212 | # | |
3213 | # Information about the TPM | |
3214 | # | |
3215 | # @id: The Id of the TPM | |
3216 | # | |
3217 | # @model: The TPM frontend model | |
3218 | # | |
88ca7bcf | 3219 | # @options: The TPM (backend) type configuration options |
d1a0cf73 SB |
3220 | # |
3221 | # Since: 1.5 | |
3222 | ## | |
895a2a80 | 3223 | { 'struct': 'TPMInfo', |
d1a0cf73 SB |
3224 | 'data': {'id': 'str', |
3225 | 'model': 'TpmModel', | |
88ca7bcf | 3226 | 'options': 'TpmTypeOptions' } } |
d1a0cf73 SB |
3227 | |
3228 | ## | |
3229 | # @query-tpm: | |
3230 | # | |
3231 | # Return information about the TPM device | |
3232 | # | |
3233 | # Returns: @TPMInfo on success | |
3234 | # | |
3235 | # Since: 1.5 | |
3236 | ## | |
3237 | { 'command': 'query-tpm', 'returns': ['TPMInfo'] } | |
8ccbad5c LE |
3238 | |
3239 | ## | |
3240 | # @AcpiTableOptions | |
3241 | # | |
3242 | # Specify an ACPI table on the command line to load. | |
3243 | # | |
3244 | # At most one of @file and @data can be specified. The list of files specified | |
3245 | # by any one of them is loaded and concatenated in order. If both are omitted, | |
3246 | # @data is implied. | |
3247 | # | |
3248 | # Other fields / optargs can be used to override fields of the generic ACPI | |
3249 | # table header; refer to the ACPI specification 5.0, section 5.2.6 System | |
3250 | # Description Table Header. If a header field is not overridden, then the | |
3251 | # corresponding value from the concatenated blob is used (in case of @file), or | |
3252 | # it is filled in with a hard-coded value (in case of @data). | |
3253 | # | |
3254 | # String fields are copied into the matching ACPI member from lowest address | |
3255 | # upwards, and silently truncated / NUL-padded to length. | |
3256 | # | |
3257 | # @sig: #optional table signature / identifier (4 bytes) | |
3258 | # | |
3259 | # @rev: #optional table revision number (dependent on signature, 1 byte) | |
3260 | # | |
3261 | # @oem_id: #optional OEM identifier (6 bytes) | |
3262 | # | |
3263 | # @oem_table_id: #optional OEM table identifier (8 bytes) | |
3264 | # | |
3265 | # @oem_rev: #optional OEM-supplied revision number (4 bytes) | |
3266 | # | |
3267 | # @asl_compiler_id: #optional identifier of the utility that created the table | |
3268 | # (4 bytes) | |
3269 | # | |
3270 | # @asl_compiler_rev: #optional revision number of the utility that created the | |
3271 | # table (4 bytes) | |
3272 | # | |
3273 | # @file: #optional colon (:) separated list of pathnames to load and | |
3274 | # concatenate as table data. The resultant binary blob is expected to | |
3275 | # have an ACPI table header. At least one file is required. This field | |
3276 | # excludes @data. | |
3277 | # | |
3278 | # @data: #optional colon (:) separated list of pathnames to load and | |
3279 | # concatenate as table data. The resultant binary blob must not have an | |
3280 | # ACPI table header. At least one file is required. This field excludes | |
3281 | # @file. | |
3282 | # | |
3283 | # Since 1.5 | |
3284 | ## | |
895a2a80 | 3285 | { 'struct': 'AcpiTableOptions', |
8ccbad5c LE |
3286 | 'data': { |
3287 | '*sig': 'str', | |
3288 | '*rev': 'uint8', | |
3289 | '*oem_id': 'str', | |
3290 | '*oem_table_id': 'str', | |
3291 | '*oem_rev': 'uint32', | |
3292 | '*asl_compiler_id': 'str', | |
3293 | '*asl_compiler_rev': 'uint32', | |
3294 | '*file': 'str', | |
3295 | '*data': 'str' }} | |
1f8f987d AK |
3296 | |
3297 | ## | |
3298 | # @CommandLineParameterType: | |
3299 | # | |
3300 | # Possible types for an option parameter. | |
3301 | # | |
3302 | # @string: accepts a character string | |
3303 | # | |
3304 | # @boolean: accepts "on" or "off" | |
3305 | # | |
3306 | # @number: accepts a number | |
3307 | # | |
3308 | # @size: accepts a number followed by an optional suffix (K)ilo, | |
3309 | # (M)ega, (G)iga, (T)era | |
3310 | # | |
3311 | # Since 1.5 | |
3312 | ## | |
3313 | { 'enum': 'CommandLineParameterType', | |
3314 | 'data': ['string', 'boolean', 'number', 'size'] } | |
3315 | ||
3316 | ## | |
3317 | # @CommandLineParameterInfo: | |
3318 | # | |
3319 | # Details about a single parameter of a command line option. | |
3320 | # | |
3321 | # @name: parameter name | |
3322 | # | |
3323 | # @type: parameter @CommandLineParameterType | |
3324 | # | |
3325 | # @help: #optional human readable text string, not suitable for parsing. | |
3326 | # | |
e36af94f CL |
3327 | # @default: #optional default value string (since 2.1) |
3328 | # | |
1f8f987d AK |
3329 | # Since 1.5 |
3330 | ## | |
895a2a80 | 3331 | { 'struct': 'CommandLineParameterInfo', |
1f8f987d AK |
3332 | 'data': { 'name': 'str', |
3333 | 'type': 'CommandLineParameterType', | |
e36af94f CL |
3334 | '*help': 'str', |
3335 | '*default': 'str' } } | |
1f8f987d AK |
3336 | |
3337 | ## | |
3338 | # @CommandLineOptionInfo: | |
3339 | # | |
3340 | # Details about a command line option, including its list of parameter details | |
3341 | # | |
3342 | # @option: option name | |
3343 | # | |
3344 | # @parameters: an array of @CommandLineParameterInfo | |
3345 | # | |
3346 | # Since 1.5 | |
3347 | ## | |
895a2a80 | 3348 | { 'struct': 'CommandLineOptionInfo', |
1f8f987d AK |
3349 | 'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } } |
3350 | ||
3351 | ## | |
3352 | # @query-command-line-options: | |
3353 | # | |
3354 | # Query command line option schema. | |
3355 | # | |
3356 | # @option: #optional option name | |
3357 | # | |
3358 | # Returns: list of @CommandLineOptionInfo for all options (or for the given | |
3359 | # @option). Returns an error if the given @option doesn't exist. | |
3360 | # | |
3361 | # Since 1.5 | |
3362 | ## | |
3363 | {'command': 'query-command-line-options', 'data': { '*option': 'str' }, | |
3364 | 'returns': ['CommandLineOptionInfo'] } | |
8e8aba50 EH |
3365 | |
3366 | ## | |
3367 | # @X86CPURegister32 | |
3368 | # | |
3369 | # A X86 32-bit register | |
3370 | # | |
3371 | # Since: 1.5 | |
3372 | ## | |
3373 | { 'enum': 'X86CPURegister32', | |
3374 | 'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] } | |
3375 | ||
3376 | ## | |
3377 | # @X86CPUFeatureWordInfo | |
3378 | # | |
3379 | # Information about a X86 CPU feature word | |
3380 | # | |
3381 | # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word | |
3382 | # | |
3383 | # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that | |
3384 | # feature word | |
3385 | # | |
3386 | # @cpuid-register: Output register containing the feature bits | |
3387 | # | |
3388 | # @features: value of output register, containing the feature bits | |
3389 | # | |
3390 | # Since: 1.5 | |
3391 | ## | |
895a2a80 | 3392 | { 'struct': 'X86CPUFeatureWordInfo', |
8e8aba50 EH |
3393 | 'data': { 'cpuid-input-eax': 'int', |
3394 | '*cpuid-input-ecx': 'int', | |
3395 | 'cpuid-register': 'X86CPURegister32', | |
3396 | 'features': 'int' } } | |
b1be4280 AK |
3397 | |
3398 | ## | |
3399 | # @RxState: | |
3400 | # | |
3401 | # Packets receiving state | |
3402 | # | |
3403 | # @normal: filter assigned packets according to the mac-table | |
3404 | # | |
3405 | # @none: don't receive any assigned packet | |
3406 | # | |
3407 | # @all: receive all assigned packets | |
3408 | # | |
3409 | # Since: 1.6 | |
3410 | ## | |
3411 | { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] } | |
3412 | ||
3413 | ## | |
3414 | # @RxFilterInfo: | |
3415 | # | |
3416 | # Rx-filter information for a NIC. | |
3417 | # | |
3418 | # @name: net client name | |
3419 | # | |
3420 | # @promiscuous: whether promiscuous mode is enabled | |
3421 | # | |
3422 | # @multicast: multicast receive state | |
3423 | # | |
3424 | # @unicast: unicast receive state | |
3425 | # | |
f7bc8ef8 AK |
3426 | # @vlan: vlan receive state (Since 2.0) |
3427 | # | |
b1be4280 AK |
3428 | # @broadcast-allowed: whether to receive broadcast |
3429 | # | |
3430 | # @multicast-overflow: multicast table is overflowed or not | |
3431 | # | |
3432 | # @unicast-overflow: unicast table is overflowed or not | |
3433 | # | |
3434 | # @main-mac: the main macaddr string | |
3435 | # | |
3436 | # @vlan-table: a list of active vlan id | |
3437 | # | |
3438 | # @unicast-table: a list of unicast macaddr string | |
3439 | # | |
3440 | # @multicast-table: a list of multicast macaddr string | |
3441 | # | |
3442 | # Since 1.6 | |
3443 | ## | |
3444 | ||
895a2a80 | 3445 | { 'struct': 'RxFilterInfo', |
b1be4280 AK |
3446 | 'data': { |
3447 | 'name': 'str', | |
3448 | 'promiscuous': 'bool', | |
3449 | 'multicast': 'RxState', | |
3450 | 'unicast': 'RxState', | |
f7bc8ef8 | 3451 | 'vlan': 'RxState', |
b1be4280 AK |
3452 | 'broadcast-allowed': 'bool', |
3453 | 'multicast-overflow': 'bool', | |
3454 | 'unicast-overflow': 'bool', | |
3455 | 'main-mac': 'str', | |
3456 | 'vlan-table': ['int'], | |
3457 | 'unicast-table': ['str'], | |
3458 | 'multicast-table': ['str'] }} | |
3459 | ||
3460 | ## | |
3461 | # @query-rx-filter: | |
3462 | # | |
3463 | # Return rx-filter information for all NICs (or for the given NIC). | |
3464 | # | |
3465 | # @name: #optional net client name | |
3466 | # | |
3467 | # Returns: list of @RxFilterInfo for all NICs (or for the given NIC). | |
3468 | # Returns an error if the given @name doesn't exist, or given | |
3469 | # NIC doesn't support rx-filter querying, or given net client | |
3470 | # isn't a NIC. | |
3471 | # | |
3472 | # Since: 1.6 | |
3473 | ## | |
3474 | { 'command': 'query-rx-filter', 'data': { '*name': 'str' }, | |
3475 | 'returns': ['RxFilterInfo'] } | |
d26c9a15 | 3476 | |
031fa964 GH |
3477 | ## |
3478 | # @InputButton | |
3479 | # | |
3480 | # Button of a pointer input device (mouse, tablet). | |
3481 | # | |
3482 | # Since: 2.0 | |
3483 | ## | |
3484 | { 'enum' : 'InputButton', | |
3485 | 'data' : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] } | |
3486 | ||
3487 | ## | |
3488 | # @InputButton | |
3489 | # | |
3490 | # Position axis of a pointer input device (mouse, tablet). | |
3491 | # | |
3492 | # Since: 2.0 | |
3493 | ## | |
3494 | { 'enum' : 'InputAxis', | |
3495 | 'data' : [ 'X', 'Y' ] } | |
3496 | ||
3497 | ## | |
3498 | # @InputKeyEvent | |
3499 | # | |
3500 | # Keyboard input event. | |
3501 | # | |
3502 | # @key: Which key this event is for. | |
3503 | # @down: True for key-down and false for key-up events. | |
3504 | # | |
3505 | # Since: 2.0 | |
3506 | ## | |
895a2a80 | 3507 | { 'struct' : 'InputKeyEvent', |
031fa964 GH |
3508 | 'data' : { 'key' : 'KeyValue', |
3509 | 'down' : 'bool' } } | |
3510 | ||
3511 | ## | |
3512 | # @InputBtnEvent | |
3513 | # | |
3514 | # Pointer button input event. | |
3515 | # | |
3516 | # @button: Which button this event is for. | |
3517 | # @down: True for key-down and false for key-up events. | |
3518 | # | |
3519 | # Since: 2.0 | |
3520 | ## | |
895a2a80 | 3521 | { 'struct' : 'InputBtnEvent', |
031fa964 GH |
3522 | 'data' : { 'button' : 'InputButton', |
3523 | 'down' : 'bool' } } | |
3524 | ||
3525 | ## | |
3526 | # @InputMoveEvent | |
3527 | # | |
3528 | # Pointer motion input event. | |
3529 | # | |
3530 | # @axis: Which axis is referenced by @value. | |
3531 | # @value: Pointer position. For absolute coordinates the | |
3532 | # valid range is 0 -> 0x7ffff | |
3533 | # | |
3534 | # Since: 2.0 | |
3535 | ## | |
895a2a80 | 3536 | { 'struct' : 'InputMoveEvent', |
031fa964 GH |
3537 | 'data' : { 'axis' : 'InputAxis', |
3538 | 'value' : 'int' } } | |
3539 | ||
3540 | ## | |
3541 | # @InputEvent | |
3542 | # | |
3543 | # Input event union. | |
3544 | # | |
935fb915 AK |
3545 | # @key: Input event of Keyboard |
3546 | # @btn: Input event of pointer buttons | |
3547 | # @rel: Input event of relative pointer motion | |
3548 | # @abs: Input event of absolute pointer motion | |
3549 | # | |
031fa964 GH |
3550 | # Since: 2.0 |
3551 | ## | |
3552 | { 'union' : 'InputEvent', | |
3553 | 'data' : { 'key' : 'InputKeyEvent', | |
3554 | 'btn' : 'InputBtnEvent', | |
3555 | 'rel' : 'InputMoveEvent', | |
3556 | 'abs' : 'InputMoveEvent' } } | |
0042109a | 3557 | |
50c6617f | 3558 | ## |
df5b2adb | 3559 | # @x-input-send-event |
50c6617f MT |
3560 | # |
3561 | # Send input event(s) to guest. | |
3562 | # | |
51fc4476 | 3563 | # @console: #optional console to send event(s) to. |
4083ae31 GH |
3564 | # This parameter can be used to send the input event to |
3565 | # specific input devices in case (a) multiple input devices | |
3566 | # of the same kind are added to the virtual machine and (b) | |
3567 | # you have configured input routing (see docs/multiseat.txt) | |
3568 | # for those input devices. If input routing is not | |
3569 | # configured this parameter has no effect. | |
3570 | # If @console is missing, only devices that aren't associated | |
3571 | # with a console are admissible. | |
3572 | # If @console is specified, it must exist, and both devices | |
3573 | # associated with that console and devices not associated with a | |
3574 | # console are admissible, but the former take precedence. | |
3575 | ||
50c6617f MT |
3576 | # |
3577 | # @events: List of InputEvent union. | |
3578 | # | |
3579 | # Returns: Nothing on success. | |
3580 | # | |
3581 | # Since: 2.2 | |
3582 | # | |
df5b2adb GH |
3583 | # Note: this command is experimental, and not a stable API. |
3584 | # | |
50c6617f | 3585 | ## |
df5b2adb | 3586 | { 'command': 'x-input-send-event', |
51fc4476 | 3587 | 'data': { '*console':'int', 'events': [ 'InputEvent' ] } } |
50c6617f | 3588 | |
0042109a WG |
3589 | ## |
3590 | # @NumaOptions | |
3591 | # | |
3592 | # A discriminated record of NUMA options. (for OptsVisitor) | |
3593 | # | |
3594 | # Since 2.1 | |
3595 | ## | |
3596 | { 'union': 'NumaOptions', | |
3597 | 'data': { | |
3598 | 'node': 'NumaNodeOptions' }} | |
3599 | ||
3600 | ## | |
3601 | # @NumaNodeOptions | |
3602 | # | |
3603 | # Create a guest NUMA node. (for OptsVisitor) | |
3604 | # | |
3605 | # @nodeid: #optional NUMA node ID (increase by 1 from 0 if omitted) | |
3606 | # | |
3607 | # @cpus: #optional VCPUs belonging to this node (assign VCPUS round-robin | |
3608 | # if omitted) | |
3609 | # | |
7febe36f PB |
3610 | # @mem: #optional memory size of this node; mutually exclusive with @memdev. |
3611 | # Equally divide total memory among nodes if both @mem and @memdev are | |
3612 | # omitted. | |
3613 | # | |
3614 | # @memdev: #optional memory backend object. If specified for one node, | |
3615 | # it must be specified for all nodes. | |
0042109a WG |
3616 | # |
3617 | # Since: 2.1 | |
3618 | ## | |
895a2a80 | 3619 | { 'struct': 'NumaNodeOptions', |
0042109a WG |
3620 | 'data': { |
3621 | '*nodeid': 'uint16', | |
3622 | '*cpus': ['uint16'], | |
7febe36f PB |
3623 | '*mem': 'size', |
3624 | '*memdev': 'str' }} | |
4cf1b76b HT |
3625 | |
3626 | ## | |
3627 | # @HostMemPolicy | |
3628 | # | |
3629 | # Host memory policy types | |
3630 | # | |
3631 | # @default: restore default policy, remove any nondefault policy | |
3632 | # | |
3633 | # @preferred: set the preferred host nodes for allocation | |
3634 | # | |
3635 | # @bind: a strict policy that restricts memory allocation to the | |
3636 | # host nodes specified | |
3637 | # | |
3638 | # @interleave: memory allocations are interleaved across the set | |
3639 | # of host nodes specified | |
3640 | # | |
3641 | # Since 2.1 | |
3642 | ## | |
3643 | { 'enum': 'HostMemPolicy', | |
3644 | 'data': [ 'default', 'preferred', 'bind', 'interleave' ] } | |
76b5d850 HT |
3645 | |
3646 | ## | |
3647 | # @Memdev: | |
3648 | # | |
8f4e5ac3 | 3649 | # Information about memory backend |
76b5d850 | 3650 | # |
8f4e5ac3 | 3651 | # @size: memory backend size |
76b5d850 HT |
3652 | # |
3653 | # @merge: enables or disables memory merge support | |
3654 | # | |
8f4e5ac3 | 3655 | # @dump: includes memory backend's memory in a core dump or not |
76b5d850 HT |
3656 | # |
3657 | # @prealloc: enables or disables memory preallocation | |
3658 | # | |
3659 | # @host-nodes: host nodes for its memory policy | |
3660 | # | |
8f4e5ac3 | 3661 | # @policy: memory policy of memory backend |
76b5d850 HT |
3662 | # |
3663 | # Since: 2.1 | |
3664 | ## | |
3665 | ||
895a2a80 | 3666 | { 'struct': 'Memdev', |
76b5d850 HT |
3667 | 'data': { |
3668 | 'size': 'size', | |
3669 | 'merge': 'bool', | |
3670 | 'dump': 'bool', | |
3671 | 'prealloc': 'bool', | |
3672 | 'host-nodes': ['uint16'], | |
3673 | 'policy': 'HostMemPolicy' }} | |
3674 | ||
3675 | ## | |
3676 | # @query-memdev: | |
3677 | # | |
8f4e5ac3 | 3678 | # Returns information for all memory backends. |
76b5d850 HT |
3679 | # |
3680 | # Returns: a list of @Memdev. | |
3681 | # | |
3682 | # Since: 2.1 | |
3683 | ## | |
3684 | { 'command': 'query-memdev', 'returns': ['Memdev'] } | |
8f4e5ac3 IM |
3685 | |
3686 | ## | |
6f2e2730 IM |
3687 | # @PCDIMMDeviceInfo: |
3688 | # | |
3689 | # PCDIMMDevice state information | |
3690 | # | |
3691 | # @id: #optional device's ID | |
3692 | # | |
3693 | # @addr: physical address, where device is mapped | |
3694 | # | |
3695 | # @size: size of memory that the device provides | |
3696 | # | |
3697 | # @slot: slot number at which device is plugged in | |
3698 | # | |
3699 | # @node: NUMA node number where device is plugged in | |
3700 | # | |
3701 | # @memdev: memory backend linked with device | |
3702 | # | |
3703 | # @hotplugged: true if device was hotplugged | |
3704 | # | |
3705 | # @hotpluggable: true if device if could be added/removed while machine is running | |
3706 | # | |
3707 | # Since: 2.1 | |
3708 | ## | |
895a2a80 | 3709 | { 'struct': 'PCDIMMDeviceInfo', |
6f2e2730 IM |
3710 | 'data': { '*id': 'str', |
3711 | 'addr': 'int', | |
3712 | 'size': 'int', | |
3713 | 'slot': 'int', | |
3714 | 'node': 'int', | |
3715 | 'memdev': 'str', | |
3716 | 'hotplugged': 'bool', | |
3717 | 'hotpluggable': 'bool' | |
3718 | } | |
3719 | } | |
3720 | ||
3721 | ## | |
3722 | # @MemoryDeviceInfo: | |
3723 | # | |
3724 | # Union containing information about a memory device | |
3725 | # | |
3726 | # Since: 2.1 | |
3727 | ## | |
3728 | { 'union': 'MemoryDeviceInfo', 'data': {'dimm': 'PCDIMMDeviceInfo'} } | |
3729 | ||
3730 | ## | |
3731 | # @query-memory-devices | |
3732 | # | |
3733 | # Lists available memory devices and their state | |
3734 | # | |
3735 | # Since: 2.1 | |
3736 | ## | |
3737 | { 'command': 'query-memory-devices', 'returns': ['MemoryDeviceInfo'] } | |
521b3673 IM |
3738 | |
3739 | ## @ACPISlotType | |
3740 | # | |
3741 | # @DIMM: memory slot | |
3742 | # | |
3743 | { 'enum': 'ACPISlotType', 'data': [ 'DIMM' ] } | |
3744 | ||
3745 | ## @ACPIOSTInfo | |
3746 | # | |
3747 | # OSPM Status Indication for a device | |
3748 | # For description of possible values of @source and @status fields | |
3749 | # see "_OST (OSPM Status Indication)" chapter of ACPI5.0 spec. | |
3750 | # | |
3751 | # @device: #optional device ID associated with slot | |
3752 | # | |
3753 | # @slot: slot ID, unique per slot of a given @slot-type | |
3754 | # | |
3755 | # @slot-type: type of the slot | |
3756 | # | |
3757 | # @source: an integer containing the source event | |
3758 | # | |
3759 | # @status: an integer containing the status code | |
3760 | # | |
3761 | # Since: 2.1 | |
3762 | ## | |
895a2a80 | 3763 | { 'struct': 'ACPIOSTInfo', |
521b3673 IM |
3764 | 'data' : { '*device': 'str', |
3765 | 'slot': 'str', | |
3766 | 'slot-type': 'ACPISlotType', | |
3767 | 'source': 'int', | |
3768 | 'status': 'int' } } | |
02419bcb IM |
3769 | |
3770 | ## | |
3771 | # @query-acpi-ospm-status | |
3772 | # | |
3773 | # Lists ACPI OSPM status of ACPI device objects, | |
3774 | # which might be reported via _OST method | |
3775 | # | |
3776 | # Since: 2.1 | |
3777 | ## | |
3778 | { 'command': 'query-acpi-ospm-status', 'returns': ['ACPIOSTInfo'] } | |
f668470f | 3779 | |
99eaf09c WX |
3780 | ## |
3781 | # @WatchdogExpirationAction | |
3782 | # | |
3783 | # An enumeration of the actions taken when the watchdog device's timer is | |
3784 | # expired | |
3785 | # | |
3786 | # @reset: system resets | |
3787 | # | |
3788 | # @shutdown: system shutdown, note that it is similar to @powerdown, which | |
3789 | # tries to set to system status and notify guest | |
3790 | # | |
3791 | # @poweroff: system poweroff, the emulator program exits | |
3792 | # | |
3793 | # @pause: system pauses, similar to @stop | |
3794 | # | |
3795 | # @debug: system enters debug state | |
3796 | # | |
3797 | # @none: nothing is done | |
3798 | # | |
795dc6e4 MCL |
3799 | # @inject-nmi: a non-maskable interrupt is injected into the first VCPU (all |
3800 | # VCPUS on x86) (since 2.4) | |
3801 | # | |
99eaf09c WX |
3802 | # Since: 2.1 |
3803 | ## | |
3804 | { 'enum': 'WatchdogExpirationAction', | |
795dc6e4 MCL |
3805 | 'data': [ 'reset', 'shutdown', 'poweroff', 'pause', 'debug', 'none', |
3806 | 'inject-nmi' ] } | |
99eaf09c | 3807 | |
5a2d2cbd WX |
3808 | ## |
3809 | # @IoOperationType | |
3810 | # | |
3811 | # An enumeration of the I/O operation types | |
3812 | # | |
3813 | # @read: read operation | |
3814 | # | |
3815 | # @write: write operation | |
3816 | # | |
3817 | # Since: 2.1 | |
3818 | ## | |
3819 | { 'enum': 'IoOperationType', | |
3820 | 'data': [ 'read', 'write' ] } | |
3821 | ||
3a449690 WX |
3822 | ## |
3823 | # @GuestPanicAction | |
3824 | # | |
3825 | # An enumeration of the actions taken when guest OS panic is detected | |
3826 | # | |
3827 | # @pause: system pauses | |
3828 | # | |
3829 | # Since: 2.1 | |
3830 | ## | |
3831 | { 'enum': 'GuestPanicAction', | |
3832 | 'data': [ 'pause' ] } | |
f2ae8abf MT |
3833 | |
3834 | ## | |
3835 | # @rtc-reset-reinjection | |
3836 | # | |
3837 | # This command will reset the RTC interrupt reinjection backlog. | |
3838 | # Can be used if another mechanism to synchronize guest time | |
3839 | # is in effect, for example QEMU guest agent's guest-set-time | |
3840 | # command. | |
3841 | # | |
3842 | # Since: 2.1 | |
3843 | ## | |
3844 | { 'command': 'rtc-reset-reinjection' } | |
fafa4d50 SF |
3845 | |
3846 | # Rocker ethernet network switch | |
3847 | { 'include': 'qapi/rocker.json' } |