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