]> Git Repo - qemu.git/blob - qapi-schema.json
qapi: Extract qapi/block-core.json definitions
[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 block definitions
9 { 'include': 'qapi/block.json' }
10
11 ##
12 # LostTickPolicy:
13 #
14 # Policy for handling lost ticks in timer devices.
15 #
16 # @discard: throw away the missed tick(s) and continue with future injection
17 #           normally.  Guest time may be delayed, unless the OS has explicit
18 #           handling of lost ticks
19 #
20 # @delay: continue to deliver ticks at the normal rate.  Guest time will be
21 #         delayed due to the late tick
22 #
23 # @merge: merge the missed tick(s) into one tick and inject.  Guest time
24 #         may be delayed, depending on how the OS reacts to the merging
25 #         of ticks
26 #
27 # @slew: deliver ticks at a higher rate to catch up with the missed tick. The
28 #        guest time should not be delayed once catchup is complete.
29 #
30 # Since: 2.0
31 ##
32 { 'enum': 'LostTickPolicy',
33   'data': ['discard', 'delay', 'merge', 'slew' ] }
34
35 ##
36 # BiosAtaTranslation:
37 #
38 # Policy that BIOS should use to interpret cylinder/head/sector
39 # addresses.  Note that Bochs BIOS and SeaBIOS will not actually
40 # translate logical CHS to physical; instead, they will use logical
41 # block addressing.
42 #
43 # @auto: If cylinder/heads/sizes are passed, choose between none and LBA
44 #        depending on the size of the disk.  If they are not passed,
45 #        choose none if QEMU can guess that the disk had 16 or fewer
46 #        heads, large if QEMU can guess that the disk had 131072 or
47 #        fewer tracks across all heads (i.e. cylinders*heads<131072),
48 #        otherwise LBA.
49 #
50 # @none: The physical disk geometry is equal to the logical geometry.
51 #
52 # @lba: Assume 63 sectors per track and one of 16, 32, 64, 128 or 255
53 #       heads (if fewer than 255 are enough to cover the whole disk
54 #       with 1024 cylinders/head).  The number of cylinders/head is
55 #       then computed based on the number of sectors and heads.
56 #
57 # @large: The number of cylinders per head is scaled down to 1024
58 #         by correspondingly scaling up the number of heads.
59 #
60 # @rechs: Same as @large, but first convert a 16-head geometry to
61 #         15-head, by proportionally scaling up the number of
62 #         cylinders/head.
63 #
64 # Since: 2.0
65 ##
66 { 'enum': 'BiosAtaTranslation',
67   'data': ['auto', 'none', 'lba', 'large', 'rechs']}
68
69 # @add_client
70 #
71 # Allow client connections for VNC, Spice and socket based
72 # character devices to be passed in to QEMU via SCM_RIGHTS.
73 #
74 # @protocol: protocol name. Valid names are "vnc", "spice" or the
75 #            name of a character device (eg. from -chardev id=XXXX)
76 #
77 # @fdname: file descriptor name previously passed via 'getfd' command
78 #
79 # @skipauth: #optional whether to skip authentication. Only applies
80 #            to "vnc" and "spice" protocols
81 #
82 # @tls: #optional whether to perform TLS. Only applies to the "spice"
83 #       protocol
84 #
85 # Returns: nothing on success.
86 #
87 # Since: 0.14.0
88 ##
89 { 'command': 'add_client',
90   'data': { 'protocol': 'str', 'fdname': 'str', '*skipauth': 'bool',
91             '*tls': 'bool' } }
92
93 ##
94 # @NameInfo:
95 #
96 # Guest name information.
97 #
98 # @name: #optional The name of the guest
99 #
100 # Since 0.14.0
101 ##
102 { 'type': 'NameInfo', 'data': {'*name': 'str'} }
103
104 ##
105 # @query-name:
106 #
107 # Return the name information of a guest.
108 #
109 # Returns: @NameInfo of the guest
110 #
111 # Since 0.14.0
112 ##
113 { 'command': 'query-name', 'returns': 'NameInfo' }
114
115 ##
116 # @KvmInfo:
117 #
118 # Information about support for KVM acceleration
119 #
120 # @enabled: true if KVM acceleration is active
121 #
122 # @present: true if KVM acceleration is built into this executable
123 #
124 # Since: 0.14.0
125 ##
126 { 'type': 'KvmInfo', 'data': {'enabled': 'bool', 'present': 'bool'} }
127
128 ##
129 # @query-kvm:
130 #
131 # Returns information about KVM acceleration
132 #
133 # Returns: @KvmInfo
134 #
135 # Since: 0.14.0
136 ##
137 { 'command': 'query-kvm', 'returns': 'KvmInfo' }
138
139 ##
140 # @RunState
141 #
142 # An enumeration of VM run states.
143 #
144 # @debug: QEMU is running on a debugger
145 #
146 # @finish-migrate: guest is paused to finish the migration process
147 #
148 # @inmigrate: guest is paused waiting for an incoming migration.  Note
149 # that this state does not tell whether the machine will start at the
150 # end of the migration.  This depends on the command-line -S option and
151 # any invocation of 'stop' or 'cont' that has happened since QEMU was
152 # started.
153 #
154 # @internal-error: An internal error that prevents further guest execution
155 # has occurred
156 #
157 # @io-error: the last IOP has failed and the device is configured to pause
158 # on I/O errors
159 #
160 # @paused: guest has been paused via the 'stop' command
161 #
162 # @postmigrate: guest is paused following a successful 'migrate'
163 #
164 # @prelaunch: QEMU was started with -S and guest has not started
165 #
166 # @restore-vm: guest is paused to restore VM state
167 #
168 # @running: guest is actively running
169 #
170 # @save-vm: guest is paused to save the VM state
171 #
172 # @shutdown: guest is shut down (and -no-shutdown is in use)
173 #
174 # @suspended: guest is suspended (ACPI S3)
175 #
176 # @watchdog: the watchdog action is configured to pause and has been triggered
177 #
178 # @guest-panicked: guest has been panicked as a result of guest OS panic
179 ##
180 { 'enum': 'RunState',
181   'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused',
182             'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm',
183             'running', 'save-vm', 'shutdown', 'suspended', 'watchdog',
184             'guest-panicked' ] }
185
186 ##
187 # @StatusInfo:
188 #
189 # Information about VCPU run state
190 #
191 # @running: true if all VCPUs are runnable, false if not runnable
192 #
193 # @singlestep: true if VCPUs are in single-step mode
194 #
195 # @status: the virtual machine @RunState
196 #
197 # Since:  0.14.0
198 #
199 # Notes: @singlestep is enabled through the GDB stub
200 ##
201 { 'type': 'StatusInfo',
202   'data': {'running': 'bool', 'singlestep': 'bool', 'status': 'RunState'} }
203
204 ##
205 # @query-status:
206 #
207 # Query the run status of all VCPUs
208 #
209 # Returns: @StatusInfo reflecting all VCPUs
210 #
211 # Since:  0.14.0
212 ##
213 { 'command': 'query-status', 'returns': 'StatusInfo' }
214
215 ##
216 # @UuidInfo:
217 #
218 # Guest UUID information.
219 #
220 # @UUID: the UUID of the guest
221 #
222 # Since: 0.14.0
223 #
224 # Notes: If no UUID was specified for the guest, a null UUID is returned.
225 ##
226 { 'type': 'UuidInfo', 'data': {'UUID': 'str'} }
227
228 ##
229 # @query-uuid:
230 #
231 # Query the guest UUID information.
232 #
233 # Returns: The @UuidInfo for the guest
234 #
235 # Since 0.14.0
236 ##
237 { 'command': 'query-uuid', 'returns': 'UuidInfo' }
238
239 ##
240 # @ChardevInfo:
241 #
242 # Information about a character device.
243 #
244 # @label: the label of the character device
245 #
246 # @filename: the filename of the character device
247 #
248 # Notes: @filename is encoded using the QEMU command line character device
249 #        encoding.  See the QEMU man page for details.
250 #
251 # Since: 0.14.0
252 ##
253 { 'type': 'ChardevInfo', 'data': {'label': 'str', 'filename': 'str'} }
254
255 ##
256 # @query-chardev:
257 #
258 # Returns information about current character devices.
259 #
260 # Returns: a list of @ChardevInfo
261 #
262 # Since: 0.14.0
263 ##
264 { 'command': 'query-chardev', 'returns': ['ChardevInfo'] }
265
266 ##
267 # @ChardevBackendInfo:
268 #
269 # Information about a character device backend
270 #
271 # @name: The backend name
272 #
273 # Since: 2.0
274 ##
275 { 'type': 'ChardevBackendInfo', 'data': {'name': 'str'} }
276
277 ##
278 # @query-chardev-backends:
279 #
280 # Returns information about character device backends.
281 #
282 # Returns: a list of @ChardevBackendInfo
283 #
284 # Since: 2.0
285 ##
286 { 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] }
287
288 ##
289 # @DataFormat:
290 #
291 # An enumeration of data format.
292 #
293 # @utf8: Data is a UTF-8 string (RFC 3629)
294 #
295 # @base64: Data is Base64 encoded binary (RFC 3548)
296 #
297 # Since: 1.4
298 ##
299 { 'enum': 'DataFormat',
300   'data': [ 'utf8', 'base64' ] }
301
302 ##
303 # @ringbuf-write:
304 #
305 # Write to a ring buffer character device.
306 #
307 # @device: the ring buffer character device name
308 #
309 # @data: data to write
310 #
311 # @format: #optional data encoding (default 'utf8').
312 #          - base64: data must be base64 encoded text.  Its binary
313 #            decoding gets written.
314 #            Bug: invalid base64 is currently not rejected.
315 #            Whitespace *is* invalid.
316 #          - utf8: data's UTF-8 encoding is written
317 #          - data itself is always Unicode regardless of format, like
318 #            any other string.
319 #
320 # Returns: Nothing on success
321 #
322 # Since: 1.4
323 ##
324 { 'command': 'ringbuf-write',
325   'data': {'device': 'str', 'data': 'str',
326            '*format': 'DataFormat'} }
327
328 ##
329 # @ringbuf-read:
330 #
331 # Read from a ring buffer character device.
332 #
333 # @device: the ring buffer character device name
334 #
335 # @size: how many bytes to read at most
336 #
337 # @format: #optional data encoding (default 'utf8').
338 #          - base64: the data read is returned in base64 encoding.
339 #          - utf8: the data read is interpreted as UTF-8.
340 #            Bug: can screw up when the buffer contains invalid UTF-8
341 #            sequences, NUL characters, after the ring buffer lost
342 #            data, and when reading stops because the size limit is
343 #            reached.
344 #          - The return value is always Unicode regardless of format,
345 #            like any other string.
346 #
347 # Returns: data read from the device
348 #
349 # Since: 1.4
350 ##
351 { 'command': 'ringbuf-read',
352   'data': {'device': 'str', 'size': 'int', '*format': 'DataFormat'},
353   'returns': 'str' }
354
355 ##
356 # @EventInfo:
357 #
358 # Information about a QMP event
359 #
360 # @name: The event name
361 #
362 # Since: 1.2.0
363 ##
364 { 'type': 'EventInfo', 'data': {'name': 'str'} }
365
366 ##
367 # @query-events:
368 #
369 # Return a list of supported QMP events by this server
370 #
371 # Returns: A list of @EventInfo for all supported events
372 #
373 # Since: 1.2.0
374 ##
375 { 'command': 'query-events', 'returns': ['EventInfo'] }
376
377 ##
378 # @MigrationStats
379 #
380 # Detailed migration status.
381 #
382 # @transferred: amount of bytes already transferred to the target VM
383 #
384 # @remaining: amount of bytes remaining to be transferred to the target VM
385 #
386 # @total: total amount of bytes involved in the migration process
387 #
388 # @duplicate: number of duplicate (zero) pages (since 1.2)
389 #
390 # @skipped: number of skipped zero pages (since 1.5)
391 #
392 # @normal : number of normal pages (since 1.2)
393 #
394 # @normal-bytes: number of normal bytes sent (since 1.2)
395 #
396 # @dirty-pages-rate: number of pages dirtied by second by the
397 #        guest (since 1.3)
398 #
399 # @mbps: throughput in megabits/sec. (since 1.6)
400 #
401 # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1)
402 #
403 # Since: 0.14.0
404 ##
405 { 'type': 'MigrationStats',
406   'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' ,
407            'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
408            'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
409            'mbps' : 'number', 'dirty-sync-count' : 'int' } }
410
411 ##
412 # @XBZRLECacheStats
413 #
414 # Detailed XBZRLE migration cache statistics
415 #
416 # @cache-size: XBZRLE cache size
417 #
418 # @bytes: amount of bytes already transferred to the target VM
419 #
420 # @pages: amount of pages transferred to the target VM
421 #
422 # @cache-miss: number of cache miss
423 #
424 # @cache-miss-rate: rate of cache miss (since 2.1)
425 #
426 # @overflow: number of overflows
427 #
428 # Since: 1.2
429 ##
430 { 'type': 'XBZRLECacheStats',
431   'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int',
432            'cache-miss': 'int', 'cache-miss-rate': 'number',
433            'overflow': 'int' } }
434
435 ##
436 # @MigrationInfo
437 #
438 # Information about current migration process.
439 #
440 # @status: #optional string describing the current migration status.
441 #          As of 0.14.0 this can be 'setup', 'active', 'completed', 'failed' or
442 #          'cancelled'. If this field is not returned, no migration process
443 #          has been initiated
444 #
445 # @ram: #optional @MigrationStats containing detailed migration
446 #       status, only returned if status is 'active' or
447 #       'completed'. 'comppleted' (since 1.2)
448 #
449 # @disk: #optional @MigrationStats containing detailed disk migration
450 #        status, only returned if status is 'active' and it is a block
451 #        migration
452 #
453 # @xbzrle-cache: #optional @XBZRLECacheStats containing detailed XBZRLE
454 #                migration statistics, only returned if XBZRLE feature is on and
455 #                status is 'active' or 'completed' (since 1.2)
456 #
457 # @total-time: #optional total amount of milliseconds since migration started.
458 #        If migration has ended, it returns the total migration
459 #        time. (since 1.2)
460 #
461 # @downtime: #optional only present when migration finishes correctly
462 #        total downtime in milliseconds for the guest.
463 #        (since 1.3)
464 #
465 # @expected-downtime: #optional only present while migration is active
466 #        expected downtime in milliseconds for the guest in last walk
467 #        of the dirty bitmap. (since 1.3)
468 #
469 # @setup-time: #optional amount of setup time in milliseconds _before_ the
470 #        iterations begin but _after_ the QMP command is issued. This is designed
471 #        to provide an accounting of any activities (such as RDMA pinning) which
472 #        may be expensive, but do not actually occur during the iterative
473 #        migration rounds themselves. (since 1.6)
474 #
475 # Since: 0.14.0
476 ##
477 { 'type': 'MigrationInfo',
478   'data': {'*status': 'str', '*ram': 'MigrationStats',
479            '*disk': 'MigrationStats',
480            '*xbzrle-cache': 'XBZRLECacheStats',
481            '*total-time': 'int',
482            '*expected-downtime': 'int',
483            '*downtime': 'int',
484            '*setup-time': 'int'} }
485
486 ##
487 # @query-migrate
488 #
489 # Returns information about current migration process.
490 #
491 # Returns: @MigrationInfo
492 #
493 # Since: 0.14.0
494 ##
495 { 'command': 'query-migrate', 'returns': 'MigrationInfo' }
496
497 ##
498 # @MigrationCapability
499 #
500 # Migration capabilities enumeration
501 #
502 # @xbzrle: Migration supports xbzrle (Xor Based Zero Run Length Encoding).
503 #          This feature allows us to minimize migration traffic for certain work
504 #          loads, by sending compressed difference of the pages
505 #
506 # @rdma-pin-all: Controls whether or not the entire VM memory footprint is
507 #          mlock()'d on demand or all at once. Refer to docs/rdma.txt for usage.
508 #          Disabled by default. (since 2.0)
509 #
510 # @zero-blocks: During storage migration encode blocks of zeroes efficiently. This
511 #          essentially saves 1MB of zeroes per block on the wire. Enabling requires
512 #          source and target VM to support this feature. To enable it is sufficient
513 #          to enable the capability on the source VM. The feature is disabled by
514 #          default. (since 1.6)
515 #
516 # @auto-converge: If enabled, QEMU will automatically throttle down the guest
517 #          to speed up convergence of RAM migration. (since 1.6)
518 #
519 # Since: 1.2
520 ##
521 { 'enum': 'MigrationCapability',
522   'data': ['xbzrle', 'rdma-pin-all', 'auto-converge', 'zero-blocks'] }
523
524 ##
525 # @MigrationCapabilityStatus
526 #
527 # Migration capability information
528 #
529 # @capability: capability enum
530 #
531 # @state: capability state bool
532 #
533 # Since: 1.2
534 ##
535 { 'type': 'MigrationCapabilityStatus',
536   'data': { 'capability' : 'MigrationCapability', 'state' : 'bool' } }
537
538 ##
539 # @migrate-set-capabilities
540 #
541 # Enable/Disable the following migration capabilities (like xbzrle)
542 #
543 # @capabilities: json array of capability modifications to make
544 #
545 # Since: 1.2
546 ##
547 { 'command': 'migrate-set-capabilities',
548   'data': { 'capabilities': ['MigrationCapabilityStatus'] } }
549
550 ##
551 # @query-migrate-capabilities
552 #
553 # Returns information about the current migration capabilities status
554 #
555 # Returns: @MigrationCapabilitiesStatus
556 #
557 # Since: 1.2
558 ##
559 { 'command': 'query-migrate-capabilities', 'returns':   ['MigrationCapabilityStatus']}
560
561 ##
562 # @MouseInfo:
563 #
564 # Information about a mouse device.
565 #
566 # @name: the name of the mouse device
567 #
568 # @index: the index of the mouse device
569 #
570 # @current: true if this device is currently receiving mouse events
571 #
572 # @absolute: true if this device supports absolute coordinates as input
573 #
574 # Since: 0.14.0
575 ##
576 { 'type': 'MouseInfo',
577   'data': {'name': 'str', 'index': 'int', 'current': 'bool',
578            'absolute': 'bool'} }
579
580 ##
581 # @query-mice:
582 #
583 # Returns information about each active mouse device
584 #
585 # Returns: a list of @MouseInfo for each device
586 #
587 # Since: 0.14.0
588 ##
589 { 'command': 'query-mice', 'returns': ['MouseInfo'] }
590
591 ##
592 # @CpuInfo:
593 #
594 # Information about a virtual CPU
595 #
596 # @CPU: the index of the virtual CPU
597 #
598 # @current: this only exists for backwards compatible and should be ignored
599 #
600 # @halted: true if the virtual CPU is in the halt state.  Halt usually refers
601 #          to a processor specific low power mode.
602 #
603 # @pc: #optional If the target is i386 or x86_64, this is the 64-bit instruction
604 #                pointer.
605 #                If the target is Sparc, this is the PC component of the
606 #                instruction pointer.
607 #
608 # @nip: #optional If the target is PPC, the instruction pointer
609 #
610 # @npc: #optional If the target is Sparc, the NPC component of the instruction
611 #                 pointer
612 #
613 # @PC: #optional If the target is MIPS, the instruction pointer
614 #
615 # @thread_id: ID of the underlying host thread
616 #
617 # Since: 0.14.0
618 #
619 # Notes: @halted is a transient state that changes frequently.  By the time the
620 #        data is sent to the client, the guest may no longer be halted.
621 ##
622 { 'type': 'CpuInfo',
623   'data': {'CPU': 'int', 'current': 'bool', 'halted': 'bool', '*pc': 'int',
624            '*nip': 'int', '*npc': 'int', '*PC': 'int', 'thread_id': 'int'} }
625
626 ##
627 # @query-cpus:
628 #
629 # Returns a list of information about each virtual CPU.
630 #
631 # Returns: a list of @CpuInfo for each virtual CPU
632 #
633 # Since: 0.14.0
634 ##
635 { 'command': 'query-cpus', 'returns': ['CpuInfo'] }
636
637 ##
638 # @IOThreadInfo:
639 #
640 # Information about an iothread
641 #
642 # @id: the identifier of the iothread
643 #
644 # @thread-id: ID of the underlying host thread
645 #
646 # Since: 2.0
647 ##
648 { 'type': 'IOThreadInfo',
649   'data': {'id': 'str', 'thread-id': 'int'} }
650
651 ##
652 # @query-iothreads:
653 #
654 # Returns a list of information about each iothread.
655 #
656 # Note this list excludes the QEMU main loop thread, which is not declared
657 # using the -object iothread command-line option.  It is always the main thread
658 # of the process.
659 #
660 # Returns: a list of @IOThreadInfo for each iothread
661 #
662 # Since: 2.0
663 ##
664 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
665
666 ##
667 # @VncClientInfo:
668 #
669 # Information about a connected VNC client.
670 #
671 # @host: The host name of the client.  QEMU tries to resolve this to a DNS name
672 #        when possible.
673 #
674 # @family: 'ipv6' if the client is connected via IPv6 and TCP
675 #          'ipv4' if the client is connected via IPv4 and TCP
676 #          'unix' if the client is connected via a unix domain socket
677 #          'unknown' otherwise
678 #
679 # @service: The service name of the client's port.  This may depends on the
680 #           host system's service database so symbolic names should not be
681 #           relied on.
682 #
683 # @x509_dname: #optional If x509 authentication is in use, the Distinguished
684 #              Name of the client.
685 #
686 # @sasl_username: #optional If SASL authentication is in use, the SASL username
687 #                 used for authentication.
688 #
689 # Since: 0.14.0
690 ##
691 { 'type': 'VncClientInfo',
692   'data': {'host': 'str', 'family': 'str', 'service': 'str',
693            '*x509_dname': 'str', '*sasl_username': 'str'} }
694
695 ##
696 # @VncInfo:
697 #
698 # Information about the VNC session.
699 #
700 # @enabled: true if the VNC server is enabled, false otherwise
701 #
702 # @host: #optional The hostname the VNC server is bound to.  This depends on
703 #        the name resolution on the host and may be an IP address.
704 #
705 # @family: #optional 'ipv6' if the host is listening for IPv6 connections
706 #                    'ipv4' if the host is listening for IPv4 connections
707 #                    'unix' if the host is listening on a unix domain socket
708 #                    'unknown' otherwise
709 #
710 # @service: #optional The service name of the server's port.  This may depends
711 #           on the host system's service database so symbolic names should not
712 #           be relied on.
713 #
714 # @auth: #optional the current authentication type used by the server
715 #        'none' if no authentication is being used
716 #        'vnc' if VNC authentication is being used
717 #        'vencrypt+plain' if VEncrypt is used with plain text authentication
718 #        'vencrypt+tls+none' if VEncrypt is used with TLS and no authentication
719 #        'vencrypt+tls+vnc' if VEncrypt is used with TLS and VNC authentication
720 #        'vencrypt+tls+plain' if VEncrypt is used with TLS and plain text auth
721 #        'vencrypt+x509+none' if VEncrypt is used with x509 and no auth
722 #        'vencrypt+x509+vnc' if VEncrypt is used with x509 and VNC auth
723 #        'vencrypt+x509+plain' if VEncrypt is used with x509 and plain text auth
724 #        'vencrypt+tls+sasl' if VEncrypt is used with TLS and SASL auth
725 #        'vencrypt+x509+sasl' if VEncrypt is used with x509 and SASL auth
726 #
727 # @clients: a list of @VncClientInfo of all currently connected clients
728 #
729 # Since: 0.14.0
730 ##
731 { 'type': 'VncInfo',
732   'data': {'enabled': 'bool', '*host': 'str', '*family': 'str',
733            '*service': 'str', '*auth': 'str', '*clients': ['VncClientInfo']} }
734
735 ##
736 # @query-vnc:
737 #
738 # Returns information about the current VNC server
739 #
740 # Returns: @VncInfo
741 #
742 # Since: 0.14.0
743 ##
744 { 'command': 'query-vnc', 'returns': 'VncInfo' }
745
746 ##
747 # @SpiceChannel
748 #
749 # Information about a SPICE client channel.
750 #
751 # @host: The host name of the client.  QEMU tries to resolve this to a DNS name
752 #        when possible.
753 #
754 # @family: 'ipv6' if the client is connected via IPv6 and TCP
755 #          'ipv4' if the client is connected via IPv4 and TCP
756 #          'unix' if the client is connected via a unix domain socket
757 #          'unknown' otherwise
758 #
759 # @port: The client's port number.
760 #
761 # @connection-id: SPICE connection id number.  All channels with the same id
762 #                 belong to the same SPICE session.
763 #
764 # @connection-type: SPICE channel type number.  "1" is the main control
765 #                   channel, filter for this one if you want to track spice
766 #                   sessions only
767 #
768 # @channel-id: SPICE channel ID number.  Usually "0", might be different when
769 #              multiple channels of the same type exist, such as multiple
770 #              display channels in a multihead setup
771 #
772 # @tls: true if the channel is encrypted, false otherwise.
773 #
774 # Since: 0.14.0
775 ##
776 { 'type': 'SpiceChannel',
777   'data': {'host': 'str', 'family': 'str', 'port': 'str',
778            'connection-id': 'int', 'channel-type': 'int', 'channel-id': 'int',
779            'tls': 'bool'} }
780
781 ##
782 # @SpiceQueryMouseMode
783 #
784 # An enumeration of Spice mouse states.
785 #
786 # @client: Mouse cursor position is determined by the client.
787 #
788 # @server: Mouse cursor position is determined by the server.
789 #
790 # @unknown: No information is available about mouse mode used by
791 #           the spice server.
792 #
793 # Note: spice/enums.h has a SpiceMouseMode already, hence the name.
794 #
795 # Since: 1.1
796 ##
797 { 'enum': 'SpiceQueryMouseMode',
798   'data': [ 'client', 'server', 'unknown' ] }
799
800 ##
801 # @SpiceInfo
802 #
803 # Information about the SPICE session.
804 #
805 # @enabled: true if the SPICE server is enabled, false otherwise
806 #
807 # @migrated: true if the last guest migration completed and spice
808 #            migration had completed as well. false otherwise.
809 #
810 # @host: #optional The hostname the SPICE server is bound to.  This depends on
811 #        the name resolution on the host and may be an IP address.
812 #
813 # @port: #optional The SPICE server's port number.
814 #
815 # @compiled-version: #optional SPICE server version.
816 #
817 # @tls-port: #optional The SPICE server's TLS port number.
818 #
819 # @auth: #optional the current authentication type used by the server
820 #        'none'  if no authentication is being used
821 #        'spice' uses SASL or direct TLS authentication, depending on command
822 #                line options
823 #
824 # @mouse-mode: The mode in which the mouse cursor is displayed currently. Can
825 #              be determined by the client or the server, or unknown if spice
826 #              server doesn't provide this information.
827 #
828 #              Since: 1.1
829 #
830 # @channels: a list of @SpiceChannel for each active spice channel
831 #
832 # Since: 0.14.0
833 ##
834 { 'type': 'SpiceInfo',
835   'data': {'enabled': 'bool', 'migrated': 'bool', '*host': 'str', '*port': 'int',
836            '*tls-port': 'int', '*auth': 'str', '*compiled-version': 'str',
837            'mouse-mode': 'SpiceQueryMouseMode', '*channels': ['SpiceChannel']} }
838
839 ##
840 # @query-spice
841 #
842 # Returns information about the current SPICE server
843 #
844 # Returns: @SpiceInfo
845 #
846 # Since: 0.14.0
847 ##
848 { 'command': 'query-spice', 'returns': 'SpiceInfo' }
849
850 ##
851 # @BalloonInfo:
852 #
853 # Information about the guest balloon device.
854 #
855 # @actual: the number of bytes the balloon currently contains
856 #
857 # Since: 0.14.0
858 #
859 ##
860 { 'type': 'BalloonInfo', 'data': {'actual': 'int' } }
861
862 ##
863 # @query-balloon:
864 #
865 # Return information about the balloon device.
866 #
867 # Returns: @BalloonInfo on success
868 #          If the balloon driver is enabled but not functional because the KVM
869 #          kernel module cannot support it, KvmMissingCap
870 #          If no balloon device is present, DeviceNotActive
871 #
872 # Since: 0.14.0
873 ##
874 { 'command': 'query-balloon', 'returns': 'BalloonInfo' }
875
876 ##
877 # @PciMemoryRange:
878 #
879 # A PCI device memory region
880 #
881 # @base: the starting address (guest physical)
882 #
883 # @limit: the ending address (guest physical)
884 #
885 # Since: 0.14.0
886 ##
887 { 'type': 'PciMemoryRange', 'data': {'base': 'int', 'limit': 'int'} }
888
889 ##
890 # @PciMemoryRegion
891 #
892 # Information about a PCI device I/O region.
893 #
894 # @bar: the index of the Base Address Register for this region
895 #
896 # @type: 'io' if the region is a PIO region
897 #        'memory' if the region is a MMIO region
898 #
899 # @prefetch: #optional if @type is 'memory', true if the memory is prefetchable
900 #
901 # @mem_type_64: #optional if @type is 'memory', true if the BAR is 64-bit
902 #
903 # Since: 0.14.0
904 ##
905 { 'type': 'PciMemoryRegion',
906   'data': {'bar': 'int', 'type': 'str', 'address': 'int', 'size': 'int',
907            '*prefetch': 'bool', '*mem_type_64': 'bool' } }
908
909 ##
910 # @PciBridgeInfo:
911 #
912 # Information about a PCI Bridge device
913 #
914 # @bus.number: primary bus interface number.  This should be the number of the
915 #              bus the device resides on.
916 #
917 # @bus.secondary: secondary bus interface number.  This is the number of the
918 #                 main bus for the bridge
919 #
920 # @bus.subordinate: This is the highest number bus that resides below the
921 #                   bridge.
922 #
923 # @bus.io_range: The PIO range for all devices on this bridge
924 #
925 # @bus.memory_range: The MMIO range for all devices on this bridge
926 #
927 # @bus.prefetchable_range: The range of prefetchable MMIO for all devices on
928 #                          this bridge
929 #
930 # @devices: a list of @PciDeviceInfo for each device on this bridge
931 #
932 # Since: 0.14.0
933 ##
934 { 'type': 'PciBridgeInfo',
935   'data': {'bus': { 'number': 'int', 'secondary': 'int', 'subordinate': 'int',
936                     'io_range': 'PciMemoryRange',
937                     'memory_range': 'PciMemoryRange',
938                     'prefetchable_range': 'PciMemoryRange' },
939            '*devices': ['PciDeviceInfo']} }
940
941 ##
942 # @PciDeviceInfo:
943 #
944 # Information about a PCI device
945 #
946 # @bus: the bus number of the device
947 #
948 # @slot: the slot the device is located in
949 #
950 # @function: the function of the slot used by the device
951 #
952 # @class_info.desc: #optional a string description of the device's class
953 #
954 # @class_info.class: the class code of the device
955 #
956 # @id.device: the PCI device id
957 #
958 # @id.vendor: the PCI vendor id
959 #
960 # @irq: #optional if an IRQ is assigned to the device, the IRQ number
961 #
962 # @qdev_id: the device name of the PCI device
963 #
964 # @pci_bridge: if the device is a PCI bridge, the bridge information
965 #
966 # @regions: a list of the PCI I/O regions associated with the device
967 #
968 # Notes: the contents of @class_info.desc are not stable and should only be
969 #        treated as informational.
970 #
971 # Since: 0.14.0
972 ##
973 { 'type': 'PciDeviceInfo',
974   'data': {'bus': 'int', 'slot': 'int', 'function': 'int',
975            'class_info': {'*desc': 'str', 'class': 'int'},
976            'id': {'device': 'int', 'vendor': 'int'},
977            '*irq': 'int', 'qdev_id': 'str', '*pci_bridge': 'PciBridgeInfo',
978            'regions': ['PciMemoryRegion']} }
979
980 ##
981 # @PciInfo:
982 #
983 # Information about a PCI bus
984 #
985 # @bus: the bus index
986 #
987 # @devices: a list of devices on this bus
988 #
989 # Since: 0.14.0
990 ##
991 { 'type': 'PciInfo', 'data': {'bus': 'int', 'devices': ['PciDeviceInfo']} }
992
993 ##
994 # @query-pci:
995 #
996 # Return information about the PCI bus topology of the guest.
997 #
998 # Returns: a list of @PciInfo for each PCI bus
999 #
1000 # Since: 0.14.0
1001 ##
1002 { 'command': 'query-pci', 'returns': ['PciInfo'] }
1003
1004 ##
1005 # @quit:
1006 #
1007 # This command will cause the QEMU process to exit gracefully.  While every
1008 # attempt is made to send the QMP response before terminating, this is not
1009 # guaranteed.  When using this interface, a premature EOF would not be
1010 # unexpected.
1011 #
1012 # Since: 0.14.0
1013 ##
1014 { 'command': 'quit' }
1015
1016 ##
1017 # @stop:
1018 #
1019 # Stop all guest VCPU execution.
1020 #
1021 # Since:  0.14.0
1022 #
1023 # Notes:  This function will succeed even if the guest is already in the stopped
1024 #         state.  In "inmigrate" state, it will ensure that the guest
1025 #         remains paused once migration finishes, as if the -S option was
1026 #         passed on the command line.
1027 ##
1028 { 'command': 'stop' }
1029
1030 ##
1031 # @system_reset:
1032 #
1033 # Performs a hard reset of a guest.
1034 #
1035 # Since: 0.14.0
1036 ##
1037 { 'command': 'system_reset' }
1038
1039 ##
1040 # @system_powerdown:
1041 #
1042 # Requests that a guest perform a powerdown operation.
1043 #
1044 # Since: 0.14.0
1045 #
1046 # Notes: A guest may or may not respond to this command.  This command
1047 #        returning does not indicate that a guest has accepted the request or
1048 #        that it has shut down.  Many guests will respond to this command by
1049 #        prompting the user in some way.
1050 ##
1051 { 'command': 'system_powerdown' }
1052
1053 ##
1054 # @cpu:
1055 #
1056 # This command is a nop that is only provided for the purposes of compatibility.
1057 #
1058 # Since: 0.14.0
1059 #
1060 # Notes: Do not use this command.
1061 ##
1062 { 'command': 'cpu', 'data': {'index': 'int'} }
1063
1064 ##
1065 # @cpu-add
1066 #
1067 # Adds CPU with specified ID
1068 #
1069 # @id: ID of CPU to be created, valid values [0..max_cpus)
1070 #
1071 # Returns: Nothing on success
1072 #
1073 # Since 1.5
1074 ##
1075 { 'command': 'cpu-add', 'data': {'id': 'int'} }
1076
1077 ##
1078 # @memsave:
1079 #
1080 # Save a portion of guest memory to a file.
1081 #
1082 # @val: the virtual address of the guest to start from
1083 #
1084 # @size: the size of memory region to save
1085 #
1086 # @filename: the file to save the memory to as binary data
1087 #
1088 # @cpu-index: #optional the index of the virtual CPU to use for translating the
1089 #                       virtual address (defaults to CPU 0)
1090 #
1091 # Returns: Nothing on success
1092 #
1093 # Since: 0.14.0
1094 #
1095 # Notes: Errors were not reliably returned until 1.1
1096 ##
1097 { 'command': 'memsave',
1098   'data': {'val': 'int', 'size': 'int', 'filename': 'str', '*cpu-index': 'int'} }
1099
1100 ##
1101 # @pmemsave:
1102 #
1103 # Save a portion of guest physical memory to a file.
1104 #
1105 # @val: the physical address of the guest to start from
1106 #
1107 # @size: the size of memory region to save
1108 #
1109 # @filename: the file to save the memory to as binary data
1110 #
1111 # Returns: Nothing on success
1112 #
1113 # Since: 0.14.0
1114 #
1115 # Notes: Errors were not reliably returned until 1.1
1116 ##
1117 { 'command': 'pmemsave',
1118   'data': {'val': 'int', 'size': 'int', 'filename': 'str'} }
1119
1120 ##
1121 # @cont:
1122 #
1123 # Resume guest VCPU execution.
1124 #
1125 # Since:  0.14.0
1126 #
1127 # Returns:  If successful, nothing
1128 #           If QEMU was started with an encrypted block device and a key has
1129 #              not yet been set, DeviceEncrypted.
1130 #
1131 # Notes:  This command will succeed if the guest is currently running.  It
1132 #         will also succeed if the guest is in the "inmigrate" state; in
1133 #         this case, the effect of the command is to make sure the guest
1134 #         starts once migration finishes, removing the effect of the -S
1135 #         command line option if it was passed.
1136 ##
1137 { 'command': 'cont' }
1138
1139 ##
1140 # @system_wakeup:
1141 #
1142 # Wakeup guest from suspend.  Does nothing in case the guest isn't suspended.
1143 #
1144 # Since:  1.1
1145 #
1146 # Returns:  nothing.
1147 ##
1148 { 'command': 'system_wakeup' }
1149
1150 ##
1151 # @inject-nmi:
1152 #
1153 # Injects an Non-Maskable Interrupt into all guest's VCPUs.
1154 #
1155 # Returns:  If successful, nothing
1156 #
1157 # Since:  0.14.0
1158 #
1159 # Notes: Only x86 Virtual Machines support this command.
1160 ##
1161 { 'command': 'inject-nmi' }
1162
1163 ##
1164 # @set_link:
1165 #
1166 # Sets the link status of a virtual network adapter.
1167 #
1168 # @name: the device name of the virtual network adapter
1169 #
1170 # @up: true to set the link status to be up
1171 #
1172 # Returns: Nothing on success
1173 #          If @name is not a valid network device, DeviceNotFound
1174 #
1175 # Since: 0.14.0
1176 #
1177 # Notes: Not all network adapters support setting link status.  This command
1178 #        will succeed even if the network adapter does not support link status
1179 #        notification.
1180 ##
1181 { 'command': 'set_link', 'data': {'name': 'str', 'up': 'bool'} }
1182
1183 ##
1184 # @balloon:
1185 #
1186 # Request the balloon driver to change its balloon size.
1187 #
1188 # @value: the target size of the balloon in bytes
1189 #
1190 # Returns: Nothing on success
1191 #          If the balloon driver is enabled but not functional because the KVM
1192 #            kernel module cannot support it, KvmMissingCap
1193 #          If no balloon device is present, DeviceNotActive
1194 #
1195 # Notes: This command just issues a request to the guest.  When it returns,
1196 #        the balloon size may not have changed.  A guest can change the balloon
1197 #        size independent of this command.
1198 #
1199 # Since: 0.14.0
1200 ##
1201 { 'command': 'balloon', 'data': {'value': 'int'} }
1202
1203 ##
1204 # @BlockdevSnapshotInternal
1205 #
1206 # @device: the name of the device to generate the snapshot from
1207 #
1208 # @name: the name of the internal snapshot to be created
1209 #
1210 # Notes: In transaction, if @name is empty, or any snapshot matching @name
1211 #        exists, the operation will fail. Only some image formats support it,
1212 #        for example, qcow2, rbd, and sheepdog.
1213 #
1214 # Since: 1.7
1215 ##
1216 { 'type': 'BlockdevSnapshotInternal',
1217   'data': { 'device': 'str', 'name': 'str' } }
1218
1219 ##
1220 # @Abort
1221 #
1222 # This action can be used to test transaction failure.
1223 #
1224 # Since: 1.6
1225 ###
1226 { 'type': 'Abort',
1227   'data': { } }
1228
1229 ##
1230 # @TransactionAction
1231 #
1232 # A discriminated record of operations that can be performed with
1233 # @transaction.
1234 ##
1235 { 'union': 'TransactionAction',
1236   'data': {
1237        'blockdev-snapshot-sync': 'BlockdevSnapshot',
1238        'drive-backup': 'DriveBackup',
1239        'abort': 'Abort',
1240        'blockdev-snapshot-internal-sync': 'BlockdevSnapshotInternal'
1241    } }
1242
1243 ##
1244 # @transaction
1245 #
1246 # Executes a number of transactionable QMP commands atomically. If any
1247 # operation fails, then the entire set of actions will be abandoned and the
1248 # appropriate error returned.
1249 #
1250 #  List of:
1251 #  @TransactionAction: information needed for the respective operation
1252 #
1253 # Returns: nothing on success
1254 #          Errors depend on the operations of the transaction
1255 #
1256 # Note: The transaction aborts on the first failure.  Therefore, there will be
1257 # information on only one failed operation returned in an error condition, and
1258 # subsequent actions will not have been attempted.
1259 #
1260 # Since 1.1
1261 ##
1262 { 'command': 'transaction',
1263   'data': { 'actions': [ 'TransactionAction' ] } }
1264
1265 ##
1266 # @blockdev-snapshot-internal-sync
1267 #
1268 # Synchronously take an internal snapshot of a block device, when the format
1269 # of the image used supports it.
1270 #
1271 # For the arguments, see the documentation of BlockdevSnapshotInternal.
1272 #
1273 # Returns: nothing on success
1274 #          If @device is not a valid block device, DeviceNotFound
1275 #          If any snapshot matching @name exists, or @name is empty,
1276 #          GenericError
1277 #          If the format of the image used does not support it,
1278 #          BlockFormatFeatureNotSupported
1279 #
1280 # Since 1.7
1281 ##
1282 { 'command': 'blockdev-snapshot-internal-sync',
1283   'data': 'BlockdevSnapshotInternal' }
1284
1285 ##
1286 # @blockdev-snapshot-delete-internal-sync
1287 #
1288 # Synchronously delete an internal snapshot of a block device, when the format
1289 # of the image used support it. The snapshot is identified by name or id or
1290 # both. One of the name or id is required. Return SnapshotInfo for the
1291 # successfully deleted snapshot.
1292 #
1293 # @device: the name of the device to delete the snapshot from
1294 #
1295 # @id: optional the snapshot's ID to be deleted
1296 #
1297 # @name: optional the snapshot's name to be deleted
1298 #
1299 # Returns: SnapshotInfo on success
1300 #          If @device is not a valid block device, DeviceNotFound
1301 #          If snapshot not found, GenericError
1302 #          If the format of the image used does not support it,
1303 #          BlockFormatFeatureNotSupported
1304 #          If @id and @name are both not specified, GenericError
1305 #
1306 # Since 1.7
1307 ##
1308 { 'command': 'blockdev-snapshot-delete-internal-sync',
1309   'data': { 'device': 'str', '*id': 'str', '*name': 'str'},
1310   'returns': 'SnapshotInfo' }
1311
1312 ##
1313 # @human-monitor-command:
1314 #
1315 # Execute a command on the human monitor and return the output.
1316 #
1317 # @command-line: the command to execute in the human monitor
1318 #
1319 # @cpu-index: #optional The CPU to use for commands that require an implicit CPU
1320 #
1321 # Returns: the output of the command as a string
1322 #
1323 # Since: 0.14.0
1324 #
1325 # Notes: This command only exists as a stop-gap.  Its use is highly
1326 #        discouraged.  The semantics of this command are not guaranteed.
1327 #
1328 #        Known limitations:
1329 #
1330 #        o This command is stateless, this means that commands that depend
1331 #          on state information (such as getfd) might not work
1332 #
1333 #       o Commands that prompt the user for data (eg. 'cont' when the block
1334 #         device is encrypted) don't currently work
1335 ##
1336 { 'command': 'human-monitor-command',
1337   'data': {'command-line': 'str', '*cpu-index': 'int'},
1338   'returns': 'str' }
1339
1340 ##
1341 # @migrate_cancel
1342 #
1343 # Cancel the current executing migration process.
1344 #
1345 # Returns: nothing on success
1346 #
1347 # Notes: This command succeeds even if there is no migration process running.
1348 #
1349 # Since: 0.14.0
1350 ##
1351 { 'command': 'migrate_cancel' }
1352
1353 ##
1354 # @migrate_set_downtime
1355 #
1356 # Set maximum tolerated downtime for migration.
1357 #
1358 # @value: maximum downtime in seconds
1359 #
1360 # Returns: nothing on success
1361 #
1362 # Since: 0.14.0
1363 ##
1364 { 'command': 'migrate_set_downtime', 'data': {'value': 'number'} }
1365
1366 ##
1367 # @migrate_set_speed
1368 #
1369 # Set maximum speed for migration.
1370 #
1371 # @value: maximum speed in bytes.
1372 #
1373 # Returns: nothing on success
1374 #
1375 # Notes: A value lesser than zero will be automatically round up to zero.
1376 #
1377 # Since: 0.14.0
1378 ##
1379 { 'command': 'migrate_set_speed', 'data': {'value': 'int'} }
1380
1381 ##
1382 # @migrate-set-cache-size
1383 #
1384 # Set XBZRLE cache size
1385 #
1386 # @value: cache size in bytes
1387 #
1388 # The size will be rounded down to the nearest power of 2.
1389 # The cache size can be modified before and during ongoing migration
1390 #
1391 # Returns: nothing on success
1392 #
1393 # Since: 1.2
1394 ##
1395 { 'command': 'migrate-set-cache-size', 'data': {'value': 'int'} }
1396
1397 ##
1398 # @query-migrate-cache-size
1399 #
1400 # query XBZRLE cache size
1401 #
1402 # Returns: XBZRLE cache size in bytes
1403 #
1404 # Since: 1.2
1405 ##
1406 { 'command': 'query-migrate-cache-size', 'returns': 'int' }
1407
1408 ##
1409 # @ObjectPropertyInfo:
1410 #
1411 # @name: the name of the property
1412 #
1413 # @type: the type of the property.  This will typically come in one of four
1414 #        forms:
1415 #
1416 #        1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
1417 #           These types are mapped to the appropriate JSON type.
1418 #
1419 #        2) A legacy type in the form 'legacy<subtype>' where subtype is the
1420 #           legacy qdev typename.  These types are always treated as strings.
1421 #
1422 #        3) A child type in the form 'child<subtype>' where subtype is a qdev
1423 #           device type name.  Child properties create the composition tree.
1424 #
1425 #        4) A link type in the form 'link<subtype>' where subtype is a qdev
1426 #           device type name.  Link properties form the device model graph.
1427 #
1428 # Since: 1.2
1429 ##
1430 { 'type': 'ObjectPropertyInfo',
1431   'data': { 'name': 'str', 'type': 'str' } }
1432
1433 ##
1434 # @qom-list:
1435 #
1436 # This command will list any properties of a object given a path in the object
1437 # model.
1438 #
1439 # @path: the path within the object model.  See @qom-get for a description of
1440 #        this parameter.
1441 #
1442 # Returns: a list of @ObjectPropertyInfo that describe the properties of the
1443 #          object.
1444 #
1445 # Since: 1.2
1446 ##
1447 { 'command': 'qom-list',
1448   'data': { 'path': 'str' },
1449   'returns': [ 'ObjectPropertyInfo' ] }
1450
1451 ##
1452 # @qom-get:
1453 #
1454 # This command will get a property from a object model path and return the
1455 # value.
1456 #
1457 # @path: The path within the object model.  There are two forms of supported
1458 #        paths--absolute and partial paths.
1459 #
1460 #        Absolute paths are derived from the root object and can follow child<>
1461 #        or link<> properties.  Since they can follow link<> properties, they
1462 #        can be arbitrarily long.  Absolute paths look like absolute filenames
1463 #        and are prefixed  with a leading slash.
1464 #
1465 #        Partial paths look like relative filenames.  They do not begin
1466 #        with a prefix.  The matching rules for partial paths are subtle but
1467 #        designed to make specifying objects easy.  At each level of the
1468 #        composition tree, the partial path is matched as an absolute path.
1469 #        The first match is not returned.  At least two matches are searched
1470 #        for.  A successful result is only returned if only one match is
1471 #        found.  If more than one match is found, a flag is return to
1472 #        indicate that the match was ambiguous.
1473 #
1474 # @property: The property name to read
1475 #
1476 # Returns: The property value.  The type depends on the property type.  legacy<>
1477 #          properties are returned as #str.  child<> and link<> properties are
1478 #          returns as #str pathnames.  All integer property types (u8, u16, etc)
1479 #          are returned as #int.
1480 #
1481 # Since: 1.2
1482 ##
1483 { 'command': 'qom-get',
1484   'data': { 'path': 'str', 'property': 'str' },
1485   'returns': 'visitor',
1486   'gen': 'no' }
1487
1488 ##
1489 # @qom-set:
1490 #
1491 # This command will set a property from a object model path.
1492 #
1493 # @path: see @qom-get for a description of this parameter
1494 #
1495 # @property: the property name to set
1496 #
1497 # @value: a value who's type is appropriate for the property type.  See @qom-get
1498 #         for a description of type mapping.
1499 #
1500 # Since: 1.2
1501 ##
1502 { 'command': 'qom-set',
1503   'data': { 'path': 'str', 'property': 'str', 'value': 'visitor' },
1504   'gen': 'no' }
1505
1506 ##
1507 # @set_password:
1508 #
1509 # Sets the password of a remote display session.
1510 #
1511 # @protocol: `vnc' to modify the VNC server password
1512 #            `spice' to modify the Spice server password
1513 #
1514 # @password: the new password
1515 #
1516 # @connected: #optional how to handle existing clients when changing the
1517 #                       password.  If nothing is specified, defaults to `keep'
1518 #                       `fail' to fail the command if clients are connected
1519 #                       `disconnect' to disconnect existing clients
1520 #                       `keep' to maintain existing clients
1521 #
1522 # Returns: Nothing on success
1523 #          If Spice is not enabled, DeviceNotFound
1524 #
1525 # Since: 0.14.0
1526 ##
1527 { 'command': 'set_password',
1528   'data': {'protocol': 'str', 'password': 'str', '*connected': 'str'} }
1529
1530 ##
1531 # @expire_password:
1532 #
1533 # Expire the password of a remote display server.
1534 #
1535 # @protocol: the name of the remote display protocol `vnc' or `spice'
1536 #
1537 # @time: when to expire the password.
1538 #        `now' to expire the password immediately
1539 #        `never' to cancel password expiration
1540 #        `+INT' where INT is the number of seconds from now (integer)
1541 #        `INT' where INT is the absolute time in seconds
1542 #
1543 # Returns: Nothing on success
1544 #          If @protocol is `spice' and Spice is not active, DeviceNotFound
1545 #
1546 # Since: 0.14.0
1547 #
1548 # Notes: Time is relative to the server and currently there is no way to
1549 #        coordinate server time with client time.  It is not recommended to
1550 #        use the absolute time version of the @time parameter unless you're
1551 #        sure you are on the same machine as the QEMU instance.
1552 ##
1553 { 'command': 'expire_password', 'data': {'protocol': 'str', 'time': 'str'} }
1554
1555 ##
1556 # @eject:
1557 #
1558 # Ejects a device from a removable drive.
1559 #
1560 # @device:  The name of the device
1561 #
1562 # @force:   @optional If true, eject regardless of whether the drive is locked.
1563 #           If not specified, the default value is false.
1564 #
1565 # Returns:  Nothing on success
1566 #           If @device is not a valid block device, DeviceNotFound
1567 #
1568 # Notes:    Ejecting a device will no media results in success
1569 #
1570 # Since: 0.14.0
1571 ##
1572 { 'command': 'eject', 'data': {'device': 'str', '*force': 'bool'} }
1573
1574 ##
1575 # @change-vnc-password:
1576 #
1577 # Change the VNC server password.
1578 #
1579 # @target:  the new password to use with VNC authentication
1580 #
1581 # Since: 1.1
1582 #
1583 # Notes:  An empty password in this command will set the password to the empty
1584 #         string.  Existing clients are unaffected by executing this command.
1585 ##
1586 { 'command': 'change-vnc-password', 'data': {'password': 'str'} }
1587
1588 ##
1589 # @change:
1590 #
1591 # This command is multiple commands multiplexed together.
1592 #
1593 # @device: This is normally the name of a block device but it may also be 'vnc'.
1594 #          when it's 'vnc', then sub command depends on @target
1595 #
1596 # @target: If @device is a block device, then this is the new filename.
1597 #          If @device is 'vnc', then if the value 'password' selects the vnc
1598 #          change password command.   Otherwise, this specifies a new server URI
1599 #          address to listen to for VNC connections.
1600 #
1601 # @arg:    If @device is a block device, then this is an optional format to open
1602 #          the device with.
1603 #          If @device is 'vnc' and @target is 'password', this is the new VNC
1604 #          password to set.  If this argument is an empty string, then no future
1605 #          logins will be allowed.
1606 #
1607 # Returns: Nothing on success.
1608 #          If @device is not a valid block device, DeviceNotFound
1609 #          If the new block device is encrypted, DeviceEncrypted.  Note that
1610 #          if this error is returned, the device has been opened successfully
1611 #          and an additional call to @block_passwd is required to set the
1612 #          device's password.  The behavior of reads and writes to the block
1613 #          device between when these calls are executed is undefined.
1614 #
1615 # Notes:  It is strongly recommended that this interface is not used especially
1616 #         for changing block devices.
1617 #
1618 # Since: 0.14.0
1619 ##
1620 { 'command': 'change',
1621   'data': {'device': 'str', 'target': 'str', '*arg': 'str'} }
1622
1623 ##
1624 # @ObjectTypeInfo:
1625 #
1626 # This structure describes a search result from @qom-list-types
1627 #
1628 # @name: the type name found in the search
1629 #
1630 # Since: 1.1
1631 #
1632 # Notes: This command is experimental and may change syntax in future releases.
1633 ##
1634 { 'type': 'ObjectTypeInfo',
1635   'data': { 'name': 'str' } }
1636
1637 ##
1638 # @qom-list-types:
1639 #
1640 # This command will return a list of types given search parameters
1641 #
1642 # @implements: if specified, only return types that implement this type name
1643 #
1644 # @abstract: if true, include abstract types in the results
1645 #
1646 # Returns: a list of @ObjectTypeInfo or an empty list if no results are found
1647 #
1648 # Since: 1.1
1649 ##
1650 { 'command': 'qom-list-types',
1651   'data': { '*implements': 'str', '*abstract': 'bool' },
1652   'returns': [ 'ObjectTypeInfo' ] }
1653
1654 ##
1655 # @DevicePropertyInfo:
1656 #
1657 # Information about device properties.
1658 #
1659 # @name: the name of the property
1660 # @type: the typename of the property
1661 #
1662 # Since: 1.2
1663 ##
1664 { 'type': 'DevicePropertyInfo',
1665   'data': { 'name': 'str', 'type': 'str' } }
1666
1667 ##
1668 # @device-list-properties:
1669 #
1670 # List properties associated with a device.
1671 #
1672 # @typename: the type name of a device
1673 #
1674 # Returns: a list of DevicePropertyInfo describing a devices properties
1675 #
1676 # Since: 1.2
1677 ##
1678 { 'command': 'device-list-properties',
1679   'data': { 'typename': 'str'},
1680   'returns': [ 'DevicePropertyInfo' ] }
1681
1682 ##
1683 # @migrate
1684 #
1685 # Migrates the current running guest to another Virtual Machine.
1686 #
1687 # @uri: the Uniform Resource Identifier of the destination VM
1688 #
1689 # @blk: #optional do block migration (full disk copy)
1690 #
1691 # @inc: #optional incremental disk copy migration
1692 #
1693 # @detach: this argument exists only for compatibility reasons and
1694 #          is ignored by QEMU
1695 #
1696 # Returns: nothing on success
1697 #
1698 # Since: 0.14.0
1699 ##
1700 { 'command': 'migrate',
1701   'data': {'uri': 'str', '*blk': 'bool', '*inc': 'bool', '*detach': 'bool' } }
1702
1703 # @xen-save-devices-state:
1704 #
1705 # Save the state of all devices to file. The RAM and the block devices
1706 # of the VM are not saved by this command.
1707 #
1708 # @filename: the file to save the state of the devices to as binary
1709 # data. See xen-save-devices-state.txt for a description of the binary
1710 # format.
1711 #
1712 # Returns: Nothing on success
1713 #
1714 # Since: 1.1
1715 ##
1716 { 'command': 'xen-save-devices-state', 'data': {'filename': 'str'} }
1717
1718 ##
1719 # @xen-set-global-dirty-log
1720 #
1721 # Enable or disable the global dirty log mode.
1722 #
1723 # @enable: true to enable, false to disable.
1724 #
1725 # Returns: nothing
1726 #
1727 # Since: 1.3
1728 ##
1729 { 'command': 'xen-set-global-dirty-log', 'data': { 'enable': 'bool' } }
1730
1731 ##
1732 # @device_del:
1733 #
1734 # Remove a device from a guest
1735 #
1736 # @id: the name of the device
1737 #
1738 # Returns: Nothing on success
1739 #          If @id is not a valid device, DeviceNotFound
1740 #
1741 # Notes: When this command completes, the device may not be removed from the
1742 #        guest.  Hot removal is an operation that requires guest cooperation.
1743 #        This command merely requests that the guest begin the hot removal
1744 #        process.  Completion of the device removal process is signaled with a
1745 #        DEVICE_DELETED event. Guest reset will automatically complete removal
1746 #        for all devices.
1747 #
1748 # Since: 0.14.0
1749 ##
1750 { 'command': 'device_del', 'data': {'id': 'str'} }
1751
1752 ##
1753 # @DumpGuestMemoryFormat:
1754 #
1755 # An enumeration of guest-memory-dump's format.
1756 #
1757 # @elf: elf format
1758 #
1759 # @kdump-zlib: kdump-compressed format with zlib-compressed
1760 #
1761 # @kdump-lzo: kdump-compressed format with lzo-compressed
1762 #
1763 # @kdump-snappy: kdump-compressed format with snappy-compressed
1764 #
1765 # Since: 2.0
1766 ##
1767 { 'enum': 'DumpGuestMemoryFormat',
1768   'data': [ 'elf', 'kdump-zlib', 'kdump-lzo', 'kdump-snappy' ] }
1769
1770 ##
1771 # @dump-guest-memory
1772 #
1773 # Dump guest's memory to vmcore. It is a synchronous operation that can take
1774 # very long depending on the amount of guest memory. This command is only
1775 # supported on i386 and x86_64.
1776 #
1777 # @paging: if true, do paging to get guest's memory mapping. This allows
1778 #          using gdb to process the core file.
1779 #
1780 #          IMPORTANT: this option can make QEMU allocate several gigabytes
1781 #                     of RAM. This can happen for a large guest, or a
1782 #                     malicious guest pretending to be large.
1783 #
1784 #          Also, paging=true has the following limitations:
1785 #
1786 #             1. The guest may be in a catastrophic state or can have corrupted
1787 #                memory, which cannot be trusted
1788 #             2. The guest can be in real-mode even if paging is enabled. For
1789 #                example, the guest uses ACPI to sleep, and ACPI sleep state
1790 #                goes in real-mode
1791 #
1792 # @protocol: the filename or file descriptor of the vmcore. The supported
1793 #            protocols are:
1794 #
1795 #            1. file: the protocol starts with "file:", and the following
1796 #               string is the file's path.
1797 #            2. fd: the protocol starts with "fd:", and the following string
1798 #               is the fd's name.
1799 #
1800 # @begin: #optional if specified, the starting physical address.
1801 #
1802 # @length: #optional if specified, the memory size, in bytes. If you don't
1803 #          want to dump all guest's memory, please specify the start @begin
1804 #          and @length
1805 #
1806 # @format: #optional if specified, the format of guest memory dump. But non-elf
1807 #          format is conflict with paging and filter, ie. @paging, @begin and
1808 #          @length is not allowed to be specified with non-elf @format at the
1809 #          same time (since 2.0)
1810 #
1811 # Returns: nothing on success
1812 #
1813 # Since: 1.2
1814 ##
1815 { 'command': 'dump-guest-memory',
1816   'data': { 'paging': 'bool', 'protocol': 'str', '*begin': 'int',
1817             '*length': 'int', '*format': 'DumpGuestMemoryFormat' } }
1818
1819 ##
1820 # @DumpGuestMemoryCapability:
1821 #
1822 # A list of the available formats for dump-guest-memory
1823 #
1824 # Since: 2.0
1825 ##
1826 { 'type': 'DumpGuestMemoryCapability',
1827   'data': {
1828       'formats': ['DumpGuestMemoryFormat'] } }
1829
1830 ##
1831 # @query-dump-guest-memory-capability:
1832 #
1833 # Returns the available formats for dump-guest-memory
1834 #
1835 # Returns:  A @DumpGuestMemoryCapability object listing available formats for
1836 #           dump-guest-memory
1837 #
1838 # Since: 2.0
1839 ##
1840 { 'command': 'query-dump-guest-memory-capability',
1841   'returns': 'DumpGuestMemoryCapability' }
1842
1843 ##
1844 # @netdev_add:
1845 #
1846 # Add a network backend.
1847 #
1848 # @type: the type of network backend.  Current valid values are 'user', 'tap',
1849 #        'vde', 'socket', 'dump' and 'bridge'
1850 #
1851 # @id: the name of the new network backend
1852 #
1853 # @props: #optional a list of properties to be passed to the backend in
1854 #         the format 'name=value', like 'ifname=tap0,script=no'
1855 #
1856 # Notes: The semantics of @props is not well defined.  Future commands will be
1857 #        introduced that provide stronger typing for backend creation.
1858 #
1859 # Since: 0.14.0
1860 #
1861 # Returns: Nothing on success
1862 #          If @type is not a valid network backend, DeviceNotFound
1863 ##
1864 { 'command': 'netdev_add',
1865   'data': {'type': 'str', 'id': 'str', '*props': '**'},
1866   'gen': 'no' }
1867
1868 ##
1869 # @netdev_del:
1870 #
1871 # Remove a network backend.
1872 #
1873 # @id: the name of the network backend to remove
1874 #
1875 # Returns: Nothing on success
1876 #          If @id is not a valid network backend, DeviceNotFound
1877 #
1878 # Since: 0.14.0
1879 ##
1880 { 'command': 'netdev_del', 'data': {'id': 'str'} }
1881
1882 ##
1883 # @object-add:
1884 #
1885 # Create a QOM object.
1886 #
1887 # @qom-type: the class name for the object to be created
1888 #
1889 # @id: the name of the new object
1890 #
1891 # @props: #optional a dictionary of properties to be passed to the backend
1892 #
1893 # Returns: Nothing on success
1894 #          Error if @qom-type is not a valid class name
1895 #
1896 # Since: 2.0
1897 ##
1898 { 'command': 'object-add',
1899   'data': {'qom-type': 'str', 'id': 'str', '*props': 'dict'},
1900   'gen': 'no' }
1901
1902 ##
1903 # @object-del:
1904 #
1905 # Remove a QOM object.
1906 #
1907 # @id: the name of the QOM object to remove
1908 #
1909 # Returns: Nothing on success
1910 #          Error if @id is not a valid id for a QOM object
1911 #
1912 # Since: 2.0
1913 ##
1914 { 'command': 'object-del', 'data': {'id': 'str'} }
1915
1916 ##
1917 # @NetdevNoneOptions
1918 #
1919 # Use it alone to have zero network devices.
1920 #
1921 # Since 1.2
1922 ##
1923 { 'type': 'NetdevNoneOptions',
1924   'data': { } }
1925
1926 ##
1927 # @NetLegacyNicOptions
1928 #
1929 # Create a new Network Interface Card.
1930 #
1931 # @netdev: #optional id of -netdev to connect to
1932 #
1933 # @macaddr: #optional MAC address
1934 #
1935 # @model: #optional device model (e1000, rtl8139, virtio etc.)
1936 #
1937 # @addr: #optional PCI device address
1938 #
1939 # @vectors: #optional number of MSI-x vectors, 0 to disable MSI-X
1940 #
1941 # Since 1.2
1942 ##
1943 { 'type': 'NetLegacyNicOptions',
1944   'data': {
1945     '*netdev':  'str',
1946     '*macaddr': 'str',
1947     '*model':   'str',
1948     '*addr':    'str',
1949     '*vectors': 'uint32' } }
1950
1951 ##
1952 # @String
1953 #
1954 # A fat type wrapping 'str', to be embedded in lists.
1955 #
1956 # Since 1.2
1957 ##
1958 { 'type': 'String',
1959   'data': {
1960     'str': 'str' } }
1961
1962 ##
1963 # @NetdevUserOptions
1964 #
1965 # Use the user mode network stack which requires no administrator privilege to
1966 # run.
1967 #
1968 # @hostname: #optional client hostname reported by the builtin DHCP server
1969 #
1970 # @restrict: #optional isolate the guest from the host
1971 #
1972 # @ip: #optional legacy parameter, use net= instead
1973 #
1974 # @net: #optional IP address and optional netmask
1975 #
1976 # @host: #optional guest-visible address of the host
1977 #
1978 # @tftp: #optional root directory of the built-in TFTP server
1979 #
1980 # @bootfile: #optional BOOTP filename, for use with tftp=
1981 #
1982 # @dhcpstart: #optional the first of the 16 IPs the built-in DHCP server can
1983 #             assign
1984 #
1985 # @dns: #optional guest-visible address of the virtual nameserver
1986 #
1987 # @dnssearch: #optional list of DNS suffixes to search, passed as DHCP option
1988 #             to the guest
1989 #
1990 # @smb: #optional root directory of the built-in SMB server
1991 #
1992 # @smbserver: #optional IP address of the built-in SMB server
1993 #
1994 # @hostfwd: #optional redirect incoming TCP or UDP host connections to guest
1995 #           endpoints
1996 #
1997 # @guestfwd: #optional forward guest TCP connections
1998 #
1999 # Since 1.2
2000 ##
2001 { 'type': 'NetdevUserOptions',
2002   'data': {
2003     '*hostname':  'str',
2004     '*restrict':  'bool',
2005     '*ip':        'str',
2006     '*net':       'str',
2007     '*host':      'str',
2008     '*tftp':      'str',
2009     '*bootfile':  'str',
2010     '*dhcpstart': 'str',
2011     '*dns':       'str',
2012     '*dnssearch': ['String'],
2013     '*smb':       'str',
2014     '*smbserver': 'str',
2015     '*hostfwd':   ['String'],
2016     '*guestfwd':  ['String'] } }
2017
2018 ##
2019 # @NetdevTapOptions
2020 #
2021 # Connect the host TAP network interface name to the VLAN.
2022 #
2023 # @ifname: #optional interface name
2024 #
2025 # @fd: #optional file descriptor of an already opened tap
2026 #
2027 # @fds: #optional multiple file descriptors of already opened multiqueue capable
2028 # tap
2029 #
2030 # @script: #optional script to initialize the interface
2031 #
2032 # @downscript: #optional script to shut down the interface
2033 #
2034 # @helper: #optional command to execute to configure bridge
2035 #
2036 # @sndbuf: #optional send buffer limit. Understands [TGMKkb] suffixes.
2037 #
2038 # @vnet_hdr: #optional enable the IFF_VNET_HDR flag on the tap interface
2039 #
2040 # @vhost: #optional enable vhost-net network accelerator
2041 #
2042 # @vhostfd: #optional file descriptor of an already opened vhost net device
2043 #
2044 # @vhostfds: #optional file descriptors of multiple already opened vhost net
2045 # devices
2046 #
2047 # @vhostforce: #optional vhost on for non-MSIX virtio guests
2048 #
2049 # @queues: #optional number of queues to be created for multiqueue capable tap
2050 #
2051 # Since 1.2
2052 ##
2053 { 'type': 'NetdevTapOptions',
2054   'data': {
2055     '*ifname':     'str',
2056     '*fd':         'str',
2057     '*fds':        'str',
2058     '*script':     'str',
2059     '*downscript': 'str',
2060     '*helper':     'str',
2061     '*sndbuf':     'size',
2062     '*vnet_hdr':   'bool',
2063     '*vhost':      'bool',
2064     '*vhostfd':    'str',
2065     '*vhostfds':   'str',
2066     '*vhostforce': 'bool',
2067     '*queues':     'uint32'} }
2068
2069 ##
2070 # @NetdevSocketOptions
2071 #
2072 # Connect the VLAN to a remote VLAN in another QEMU virtual machine using a TCP
2073 # socket connection.
2074 #
2075 # @fd: #optional file descriptor of an already opened socket
2076 #
2077 # @listen: #optional port number, and optional hostname, to listen on
2078 #
2079 # @connect: #optional port number, and optional hostname, to connect to
2080 #
2081 # @mcast: #optional UDP multicast address and port number
2082 #
2083 # @localaddr: #optional source address and port for multicast and udp packets
2084 #
2085 # @udp: #optional UDP unicast address and port number
2086 #
2087 # Since 1.2
2088 ##
2089 { 'type': 'NetdevSocketOptions',
2090   'data': {
2091     '*fd':        'str',
2092     '*listen':    'str',
2093     '*connect':   'str',
2094     '*mcast':     'str',
2095     '*localaddr': 'str',
2096     '*udp':       'str' } }
2097
2098 ##
2099 # @NetdevVdeOptions
2100 #
2101 # Connect the VLAN to a vde switch running on the host.
2102 #
2103 # @sock: #optional socket path
2104 #
2105 # @port: #optional port number
2106 #
2107 # @group: #optional group owner of socket
2108 #
2109 # @mode: #optional permissions for socket
2110 #
2111 # Since 1.2
2112 ##
2113 { 'type': 'NetdevVdeOptions',
2114   'data': {
2115     '*sock':  'str',
2116     '*port':  'uint16',
2117     '*group': 'str',
2118     '*mode':  'uint16' } }
2119
2120 ##
2121 # @NetdevDumpOptions
2122 #
2123 # Dump VLAN network traffic to a file.
2124 #
2125 # @len: #optional per-packet size limit (64k default). Understands [TGMKkb]
2126 # suffixes.
2127 #
2128 # @file: #optional dump file path (default is qemu-vlan0.pcap)
2129 #
2130 # Since 1.2
2131 ##
2132 { 'type': 'NetdevDumpOptions',
2133   'data': {
2134     '*len':  'size',
2135     '*file': 'str' } }
2136
2137 ##
2138 # @NetdevBridgeOptions
2139 #
2140 # Connect a host TAP network interface to a host bridge device.
2141 #
2142 # @br: #optional bridge name
2143 #
2144 # @helper: #optional command to execute to configure bridge
2145 #
2146 # Since 1.2
2147 ##
2148 { 'type': 'NetdevBridgeOptions',
2149   'data': {
2150     '*br':     'str',
2151     '*helper': 'str' } }
2152
2153 ##
2154 # @NetdevHubPortOptions
2155 #
2156 # Connect two or more net clients through a software hub.
2157 #
2158 # @hubid: hub identifier number
2159 #
2160 # Since 1.2
2161 ##
2162 { 'type': 'NetdevHubPortOptions',
2163   'data': {
2164     'hubid':     'int32' } }
2165
2166 ##
2167 # @NetdevNetmapOptions
2168 #
2169 # Connect a client to a netmap-enabled NIC or to a VALE switch port
2170 #
2171 # @ifname: Either the name of an existing network interface supported by
2172 #          netmap, or the name of a VALE port (created on the fly).
2173 #          A VALE port name is in the form 'valeXXX:YYY', where XXX and
2174 #          YYY are non-negative integers. XXX identifies a switch and
2175 #          YYY identifies a port of the switch. VALE ports having the
2176 #          same XXX are therefore connected to the same switch.
2177 #
2178 # @devname: #optional path of the netmap device (default: '/dev/netmap').
2179 #
2180 # Since 2.0
2181 ##
2182 { 'type': 'NetdevNetmapOptions',
2183   'data': {
2184     'ifname':     'str',
2185     '*devname':    'str' } }
2186
2187 ##
2188 # @NetClientOptions
2189 #
2190 # A discriminated record of network device traits.
2191 #
2192 # Since 1.2
2193 ##
2194 { 'union': 'NetClientOptions',
2195   'data': {
2196     'none':     'NetdevNoneOptions',
2197     'nic':      'NetLegacyNicOptions',
2198     'user':     'NetdevUserOptions',
2199     'tap':      'NetdevTapOptions',
2200     'socket':   'NetdevSocketOptions',
2201     'vde':      'NetdevVdeOptions',
2202     'dump':     'NetdevDumpOptions',
2203     'bridge':   'NetdevBridgeOptions',
2204     'hubport':  'NetdevHubPortOptions',
2205     'netmap':   'NetdevNetmapOptions' } }
2206
2207 ##
2208 # @NetLegacy
2209 #
2210 # Captures the configuration of a network device; legacy.
2211 #
2212 # @vlan: #optional vlan number
2213 #
2214 # @id: #optional identifier for monitor commands
2215 #
2216 # @name: #optional identifier for monitor commands, ignored if @id is present
2217 #
2218 # @opts: device type specific properties (legacy)
2219 #
2220 # Since 1.2
2221 ##
2222 { 'type': 'NetLegacy',
2223   'data': {
2224     '*vlan': 'int32',
2225     '*id':   'str',
2226     '*name': 'str',
2227     'opts':  'NetClientOptions' } }
2228
2229 ##
2230 # @Netdev
2231 #
2232 # Captures the configuration of a network device.
2233 #
2234 # @id: identifier for monitor commands.
2235 #
2236 # @opts: device type specific properties
2237 #
2238 # Since 1.2
2239 ##
2240 { 'type': 'Netdev',
2241   'data': {
2242     'id':   'str',
2243     'opts': 'NetClientOptions' } }
2244
2245 ##
2246 # @InetSocketAddress
2247 #
2248 # Captures a socket address or address range in the Internet namespace.
2249 #
2250 # @host: host part of the address
2251 #
2252 # @port: port part of the address, or lowest port if @to is present
2253 #
2254 # @to: highest port to try
2255 #
2256 # @ipv4: whether to accept IPv4 addresses, default try both IPv4 and IPv6
2257 #        #optional
2258 #
2259 # @ipv6: whether to accept IPv6 addresses, default try both IPv4 and IPv6
2260 #        #optional
2261 #
2262 # Since 1.3
2263 ##
2264 { 'type': 'InetSocketAddress',
2265   'data': {
2266     'host': 'str',
2267     'port': 'str',
2268     '*to': 'uint16',
2269     '*ipv4': 'bool',
2270     '*ipv6': 'bool' } }
2271
2272 ##
2273 # @UnixSocketAddress
2274 #
2275 # Captures a socket address in the local ("Unix socket") namespace.
2276 #
2277 # @path: filesystem path to use
2278 #
2279 # Since 1.3
2280 ##
2281 { 'type': 'UnixSocketAddress',
2282   'data': {
2283     'path': 'str' } }
2284
2285 ##
2286 # @SocketAddress
2287 #
2288 # Captures the address of a socket, which could also be a named file descriptor
2289 #
2290 # Since 1.3
2291 ##
2292 { 'union': 'SocketAddress',
2293   'data': {
2294     'inet': 'InetSocketAddress',
2295     'unix': 'UnixSocketAddress',
2296     'fd': 'String' } }
2297
2298 ##
2299 # @getfd:
2300 #
2301 # Receive a file descriptor via SCM rights and assign it a name
2302 #
2303 # @fdname: file descriptor name
2304 #
2305 # Returns: Nothing on success
2306 #
2307 # Since: 0.14.0
2308 #
2309 # Notes: If @fdname already exists, the file descriptor assigned to
2310 #        it will be closed and replaced by the received file
2311 #        descriptor.
2312 #        The 'closefd' command can be used to explicitly close the
2313 #        file descriptor when it is no longer needed.
2314 ##
2315 { 'command': 'getfd', 'data': {'fdname': 'str'} }
2316
2317 ##
2318 # @closefd:
2319 #
2320 # Close a file descriptor previously passed via SCM rights
2321 #
2322 # @fdname: file descriptor name
2323 #
2324 # Returns: Nothing on success
2325 #
2326 # Since: 0.14.0
2327 ##
2328 { 'command': 'closefd', 'data': {'fdname': 'str'} }
2329
2330 ##
2331 # @MachineInfo:
2332 #
2333 # Information describing a machine.
2334 #
2335 # @name: the name of the machine
2336 #
2337 # @alias: #optional an alias for the machine name
2338 #
2339 # @default: #optional whether the machine is default
2340 #
2341 # @cpu-max: maximum number of CPUs supported by the machine type
2342 #           (since 1.5.0)
2343 #
2344 # Since: 1.2.0
2345 ##
2346 { 'type': 'MachineInfo',
2347   'data': { 'name': 'str', '*alias': 'str',
2348             '*is-default': 'bool', 'cpu-max': 'int' } }
2349
2350 ##
2351 # @query-machines:
2352 #
2353 # Return a list of supported machines
2354 #
2355 # Returns: a list of MachineInfo
2356 #
2357 # Since: 1.2.0
2358 ##
2359 { 'command': 'query-machines', 'returns': ['MachineInfo'] }
2360
2361 ##
2362 # @CpuDefinitionInfo:
2363 #
2364 # Virtual CPU definition.
2365 #
2366 # @name: the name of the CPU definition
2367 #
2368 # Since: 1.2.0
2369 ##
2370 { 'type': 'CpuDefinitionInfo',
2371   'data': { 'name': 'str' } }
2372
2373 ##
2374 # @query-cpu-definitions:
2375 #
2376 # Return a list of supported virtual CPU definitions
2377 #
2378 # Returns: a list of CpuDefInfo
2379 #
2380 # Since: 1.2.0
2381 ##
2382 { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'] }
2383
2384 # @AddfdInfo:
2385 #
2386 # Information about a file descriptor that was added to an fd set.
2387 #
2388 # @fdset-id: The ID of the fd set that @fd was added to.
2389 #
2390 # @fd: The file descriptor that was received via SCM rights and
2391 #      added to the fd set.
2392 #
2393 # Since: 1.2.0
2394 ##
2395 { 'type': 'AddfdInfo', 'data': {'fdset-id': 'int', 'fd': 'int'} }
2396
2397 ##
2398 # @add-fd:
2399 #
2400 # Add a file descriptor, that was passed via SCM rights, to an fd set.
2401 #
2402 # @fdset-id: #optional The ID of the fd set to add the file descriptor to.
2403 #
2404 # @opaque: #optional A free-form string that can be used to describe the fd.
2405 #
2406 # Returns: @AddfdInfo on success
2407 #          If file descriptor was not received, FdNotSupplied
2408 #          If @fdset-id is a negative value, InvalidParameterValue
2409 #
2410 # Notes: The list of fd sets is shared by all monitor connections.
2411 #
2412 #        If @fdset-id is not specified, a new fd set will be created.
2413 #
2414 # Since: 1.2.0
2415 ##
2416 { 'command': 'add-fd', 'data': {'*fdset-id': 'int', '*opaque': 'str'},
2417   'returns': 'AddfdInfo' }
2418
2419 ##
2420 # @remove-fd:
2421 #
2422 # Remove a file descriptor from an fd set.
2423 #
2424 # @fdset-id: The ID of the fd set that the file descriptor belongs to.
2425 #
2426 # @fd: #optional The file descriptor that is to be removed.
2427 #
2428 # Returns: Nothing on success
2429 #          If @fdset-id or @fd is not found, FdNotFound
2430 #
2431 # Since: 1.2.0
2432 #
2433 # Notes: The list of fd sets is shared by all monitor connections.
2434 #
2435 #        If @fd is not specified, all file descriptors in @fdset-id
2436 #        will be removed.
2437 ##
2438 { 'command': 'remove-fd', 'data': {'fdset-id': 'int', '*fd': 'int'} }
2439
2440 ##
2441 # @FdsetFdInfo:
2442 #
2443 # Information about a file descriptor that belongs to an fd set.
2444 #
2445 # @fd: The file descriptor value.
2446 #
2447 # @opaque: #optional A free-form string that can be used to describe the fd.
2448 #
2449 # Since: 1.2.0
2450 ##
2451 { 'type': 'FdsetFdInfo',
2452   'data': {'fd': 'int', '*opaque': 'str'} }
2453
2454 ##
2455 # @FdsetInfo:
2456 #
2457 # Information about an fd set.
2458 #
2459 # @fdset-id: The ID of the fd set.
2460 #
2461 # @fds: A list of file descriptors that belong to this fd set.
2462 #
2463 # Since: 1.2.0
2464 ##
2465 { 'type': 'FdsetInfo',
2466   'data': {'fdset-id': 'int', 'fds': ['FdsetFdInfo']} }
2467
2468 ##
2469 # @query-fdsets:
2470 #
2471 # Return information describing all fd sets.
2472 #
2473 # Returns: A list of @FdsetInfo
2474 #
2475 # Since: 1.2.0
2476 #
2477 # Note: The list of fd sets is shared by all monitor connections.
2478 #
2479 ##
2480 { 'command': 'query-fdsets', 'returns': ['FdsetInfo'] }
2481
2482 ##
2483 # @TargetInfo:
2484 #
2485 # Information describing the QEMU target.
2486 #
2487 # @arch: the target architecture (eg "x86_64", "i386", etc)
2488 #
2489 # Since: 1.2.0
2490 ##
2491 { 'type': 'TargetInfo',
2492   'data': { 'arch': 'str' } }
2493
2494 ##
2495 # @query-target:
2496 #
2497 # Return information about the target for this QEMU
2498 #
2499 # Returns: TargetInfo
2500 #
2501 # Since: 1.2.0
2502 ##
2503 { 'command': 'query-target', 'returns': 'TargetInfo' }
2504
2505 ##
2506 # @QKeyCode:
2507 #
2508 # An enumeration of key name.
2509 #
2510 # This is used by the send-key command.
2511 #
2512 # Since: 1.3.0
2513 #
2514 # 'unmapped' and 'pause' since 2.0
2515 ##
2516 { 'enum': 'QKeyCode',
2517   'data': [ 'unmapped',
2518             'shift', 'shift_r', 'alt', 'alt_r', 'altgr', 'altgr_r', 'ctrl',
2519             'ctrl_r', 'menu', 'esc', '1', '2', '3', '4', '5', '6', '7', '8',
2520             '9', '0', 'minus', 'equal', 'backspace', 'tab', 'q', 'w', 'e',
2521             'r', 't', 'y', 'u', 'i', 'o', 'p', 'bracket_left', 'bracket_right',
2522             'ret', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'semicolon',
2523             'apostrophe', 'grave_accent', 'backslash', 'z', 'x', 'c', 'v', 'b',
2524             'n', 'm', 'comma', 'dot', 'slash', 'asterisk', 'spc', 'caps_lock',
2525             'f1', 'f2', 'f3', 'f4', 'f5', 'f6', 'f7', 'f8', 'f9', 'f10',
2526             'num_lock', 'scroll_lock', 'kp_divide', 'kp_multiply',
2527             'kp_subtract', 'kp_add', 'kp_enter', 'kp_decimal', 'sysrq', 'kp_0',
2528             'kp_1', 'kp_2', 'kp_3', 'kp_4', 'kp_5', 'kp_6', 'kp_7', 'kp_8',
2529             'kp_9', 'less', 'f11', 'f12', 'print', 'home', 'pgup', 'pgdn', 'end',
2530             'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again',
2531             'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut',
2532              'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause' ] }
2533
2534 ##
2535 # @KeyValue
2536 #
2537 # Represents a keyboard key.
2538 #
2539 # Since: 1.3.0
2540 ##
2541 { 'union': 'KeyValue',
2542   'data': {
2543     'number': 'int',
2544     'qcode': 'QKeyCode' } }
2545
2546 ##
2547 # @send-key:
2548 #
2549 # Send keys to guest.
2550 #
2551 # @keys: An array of @KeyValue elements. All @KeyValues in this array are
2552 #        simultaneously sent to the guest. A @KeyValue.number value is sent
2553 #        directly to the guest, while @KeyValue.qcode must be a valid
2554 #        @QKeyCode value
2555 #
2556 # @hold-time: #optional time to delay key up events, milliseconds. Defaults
2557 #             to 100
2558 #
2559 # Returns: Nothing on success
2560 #          If key is unknown or redundant, InvalidParameter
2561 #
2562 # Since: 1.3.0
2563 #
2564 ##
2565 { 'command': 'send-key',
2566   'data': { 'keys': ['KeyValue'], '*hold-time': 'int' } }
2567
2568 ##
2569 # @screendump:
2570 #
2571 # Write a PPM of the VGA screen to a file.
2572 #
2573 # @filename: the path of a new PPM file to store the image
2574 #
2575 # Returns: Nothing on success
2576 #
2577 # Since: 0.14.0
2578 ##
2579 { 'command': 'screendump', 'data': {'filename': 'str'} }
2580
2581 ##
2582 # @nbd-server-start:
2583 #
2584 # Start an NBD server listening on the given host and port.  Block
2585 # devices can then be exported using @nbd-server-add.  The NBD
2586 # server will present them as named exports; for example, another
2587 # QEMU instance could refer to them as "nbd:HOST:PORT:exportname=NAME".
2588 #
2589 # @addr: Address on which to listen.
2590 #
2591 # Returns: error if the server is already running.
2592 #
2593 # Since: 1.3.0
2594 ##
2595 { 'command': 'nbd-server-start',
2596   'data': { 'addr': 'SocketAddress' } }
2597
2598 ##
2599 # @nbd-server-add:
2600 #
2601 # Export a device to QEMU's embedded NBD server.
2602 #
2603 # @device: Block device to be exported
2604 #
2605 # @writable: Whether clients should be able to write to the device via the
2606 #     NBD connection (default false). #optional
2607 #
2608 # Returns: error if the device is already marked for export.
2609 #
2610 # Since: 1.3.0
2611 ##
2612 { 'command': 'nbd-server-add', 'data': {'device': 'str', '*writable': 'bool'} }
2613
2614 ##
2615 # @nbd-server-stop:
2616 #
2617 # Stop QEMU's embedded NBD server, and unregister all devices previously
2618 # added via @nbd-server-add.
2619 #
2620 # Since: 1.3.0
2621 ##
2622 { 'command': 'nbd-server-stop' }
2623
2624 ##
2625 # @ChardevFile:
2626 #
2627 # Configuration info for file chardevs.
2628 #
2629 # @in:  #optional The name of the input file
2630 # @out: The name of the output file
2631 #
2632 # Since: 1.4
2633 ##
2634 { 'type': 'ChardevFile', 'data': { '*in' : 'str',
2635                                    'out' : 'str' } }
2636
2637 ##
2638 # @ChardevHostdev:
2639 #
2640 # Configuration info for device and pipe chardevs.
2641 #
2642 # @device: The name of the special file for the device,
2643 #          i.e. /dev/ttyS0 on Unix or COM1: on Windows
2644 # @type: What kind of device this is.
2645 #
2646 # Since: 1.4
2647 ##
2648 { 'type': 'ChardevHostdev', 'data': { 'device' : 'str' } }
2649
2650 ##
2651 # @ChardevSocket:
2652 #
2653 # Configuration info for (stream) socket chardevs.
2654 #
2655 # @addr: socket address to listen on (server=true)
2656 #        or connect to (server=false)
2657 # @server: #optional create server socket (default: true)
2658 # @wait: #optional wait for incoming connection on server
2659 #        sockets (default: false).
2660 # @nodelay: #optional set TCP_NODELAY socket option (default: false)
2661 # @telnet: #optional enable telnet protocol on server
2662 #          sockets (default: false)
2663 #
2664 # Since: 1.4
2665 ##
2666 { 'type': 'ChardevSocket', 'data': { 'addr'     : 'SocketAddress',
2667                                      '*server'  : 'bool',
2668                                      '*wait'    : 'bool',
2669                                      '*nodelay' : 'bool',
2670                                      '*telnet'  : 'bool' } }
2671
2672 ##
2673 # @ChardevUdp:
2674 #
2675 # Configuration info for datagram socket chardevs.
2676 #
2677 # @remote: remote address
2678 # @local: #optional local address
2679 #
2680 # Since: 1.5
2681 ##
2682 { 'type': 'ChardevUdp', 'data': { 'remote' : 'SocketAddress',
2683                                   '*local' : 'SocketAddress' } }
2684
2685 ##
2686 # @ChardevMux:
2687 #
2688 # Configuration info for mux chardevs.
2689 #
2690 # @chardev: name of the base chardev.
2691 #
2692 # Since: 1.5
2693 ##
2694 { 'type': 'ChardevMux', 'data': { 'chardev' : 'str' } }
2695
2696 ##
2697 # @ChardevStdio:
2698 #
2699 # Configuration info for stdio chardevs.
2700 #
2701 # @signal: #optional Allow signals (such as SIGINT triggered by ^C)
2702 #          be delivered to qemu.  Default: true in -nographic mode,
2703 #          false otherwise.
2704 #
2705 # Since: 1.5
2706 ##
2707 { 'type': 'ChardevStdio', 'data': { '*signal' : 'bool' } }
2708
2709 ##
2710 # @ChardevSpiceChannel:
2711 #
2712 # Configuration info for spice vm channel chardevs.
2713 #
2714 # @type: kind of channel (for example vdagent).
2715 #
2716 # Since: 1.5
2717 ##
2718 { 'type': 'ChardevSpiceChannel', 'data': { 'type'  : 'str' } }
2719
2720 ##
2721 # @ChardevSpicePort:
2722 #
2723 # Configuration info for spice port chardevs.
2724 #
2725 # @fqdn: name of the channel (see docs/spice-port-fqdn.txt)
2726 #
2727 # Since: 1.5
2728 ##
2729 { 'type': 'ChardevSpicePort', 'data': { 'fqdn'  : 'str' } }
2730
2731 ##
2732 # @ChardevVC:
2733 #
2734 # Configuration info for virtual console chardevs.
2735 #
2736 # @width:  console width,  in pixels
2737 # @height: console height, in pixels
2738 # @cols:   console width,  in chars
2739 # @rows:   console height, in chars
2740 #
2741 # Since: 1.5
2742 ##
2743 { 'type': 'ChardevVC', 'data': { '*width'  : 'int',
2744                                  '*height' : 'int',
2745                                  '*cols'   : 'int',
2746                                  '*rows'   : 'int' } }
2747
2748 ##
2749 # @ChardevRingbuf:
2750 #
2751 # Configuration info for ring buffer chardevs.
2752 #
2753 # @size: #optional ring buffer size, must be power of two, default is 65536
2754 #
2755 # Since: 1.5
2756 ##
2757 { 'type': 'ChardevRingbuf', 'data': { '*size'  : 'int' } }
2758
2759 ##
2760 # @ChardevBackend:
2761 #
2762 # Configuration info for the new chardev backend.
2763 #
2764 # Since: 1.4
2765 ##
2766 { 'type': 'ChardevDummy', 'data': { } }
2767
2768 { 'union': 'ChardevBackend', 'data': { 'file'   : 'ChardevFile',
2769                                        'serial' : 'ChardevHostdev',
2770                                        'parallel': 'ChardevHostdev',
2771                                        'pipe'   : 'ChardevHostdev',
2772                                        'socket' : 'ChardevSocket',
2773                                        'udp'    : 'ChardevUdp',
2774                                        'pty'    : 'ChardevDummy',
2775                                        'null'   : 'ChardevDummy',
2776                                        'mux'    : 'ChardevMux',
2777                                        'msmouse': 'ChardevDummy',
2778                                        'braille': 'ChardevDummy',
2779                                        'stdio'  : 'ChardevStdio',
2780                                        'console': 'ChardevDummy',
2781                                        'spicevmc' : 'ChardevSpiceChannel',
2782                                        'spiceport' : 'ChardevSpicePort',
2783                                        'vc'     : 'ChardevVC',
2784                                        'ringbuf': 'ChardevRingbuf',
2785                                        # next one is just for compatibility
2786                                        'memory' : 'ChardevRingbuf' } }
2787
2788 ##
2789 # @ChardevReturn:
2790 #
2791 # Return info about the chardev backend just created.
2792 #
2793 # @pty: #optional name of the slave pseudoterminal device, present if
2794 #       and only if a chardev of type 'pty' was created
2795 #
2796 # Since: 1.4
2797 ##
2798 { 'type' : 'ChardevReturn', 'data': { '*pty' : 'str' } }
2799
2800 ##
2801 # @chardev-add:
2802 #
2803 # Add a character device backend
2804 #
2805 # @id: the chardev's ID, must be unique
2806 # @backend: backend type and parameters
2807 #
2808 # Returns: ChardevReturn.
2809 #
2810 # Since: 1.4
2811 ##
2812 { 'command': 'chardev-add', 'data': {'id'      : 'str',
2813                                      'backend' : 'ChardevBackend' },
2814   'returns': 'ChardevReturn' }
2815
2816 ##
2817 # @chardev-remove:
2818 #
2819 # Remove a character device backend
2820 #
2821 # @id: the chardev's ID, must exist and not be in use
2822 #
2823 # Returns: Nothing on success
2824 #
2825 # Since: 1.4
2826 ##
2827 { 'command': 'chardev-remove', 'data': {'id': 'str'} }
2828
2829 ##
2830 # @TpmModel:
2831 #
2832 # An enumeration of TPM models
2833 #
2834 # @tpm-tis: TPM TIS model
2835 #
2836 # Since: 1.5
2837 ##
2838 { 'enum': 'TpmModel', 'data': [ 'tpm-tis' ] }
2839
2840 ##
2841 # @query-tpm-models:
2842 #
2843 # Return a list of supported TPM models
2844 #
2845 # Returns: a list of TpmModel
2846 #
2847 # Since: 1.5
2848 ##
2849 { 'command': 'query-tpm-models', 'returns': ['TpmModel'] }
2850
2851 ##
2852 # @TpmType:
2853 #
2854 # An enumeration of TPM types
2855 #
2856 # @passthrough: TPM passthrough type
2857 #
2858 # Since: 1.5
2859 ##
2860 { 'enum': 'TpmType', 'data': [ 'passthrough' ] }
2861
2862 ##
2863 # @query-tpm-types:
2864 #
2865 # Return a list of supported TPM types
2866 #
2867 # Returns: a list of TpmType
2868 #
2869 # Since: 1.5
2870 ##
2871 { 'command': 'query-tpm-types', 'returns': ['TpmType'] }
2872
2873 ##
2874 # @TPMPassthroughOptions:
2875 #
2876 # Information about the TPM passthrough type
2877 #
2878 # @path: #optional string describing the path used for accessing the TPM device
2879 #
2880 # @cancel-path: #optional string showing the TPM's sysfs cancel file
2881 #               for cancellation of TPM commands while they are executing
2882 #
2883 # Since: 1.5
2884 ##
2885 { 'type': 'TPMPassthroughOptions', 'data': { '*path' : 'str',
2886                                              '*cancel-path' : 'str'} }
2887
2888 ##
2889 # @TpmTypeOptions:
2890 #
2891 # A union referencing different TPM backend types' configuration options
2892 #
2893 # @passthrough: The configuration options for the TPM passthrough type
2894 #
2895 # Since: 1.5
2896 ##
2897 { 'union': 'TpmTypeOptions',
2898    'data': { 'passthrough' : 'TPMPassthroughOptions' } }
2899
2900 ##
2901 # @TpmInfo:
2902 #
2903 # Information about the TPM
2904 #
2905 # @id: The Id of the TPM
2906 #
2907 # @model: The TPM frontend model
2908 #
2909 # @options: The TPM (backend) type configuration options
2910 #
2911 # Since: 1.5
2912 ##
2913 { 'type': 'TPMInfo',
2914   'data': {'id': 'str',
2915            'model': 'TpmModel',
2916            'options': 'TpmTypeOptions' } }
2917
2918 ##
2919 # @query-tpm:
2920 #
2921 # Return information about the TPM device
2922 #
2923 # Returns: @TPMInfo on success
2924 #
2925 # Since: 1.5
2926 ##
2927 { 'command': 'query-tpm', 'returns': ['TPMInfo'] }
2928
2929 ##
2930 # @AcpiTableOptions
2931 #
2932 # Specify an ACPI table on the command line to load.
2933 #
2934 # At most one of @file and @data can be specified. The list of files specified
2935 # by any one of them is loaded and concatenated in order. If both are omitted,
2936 # @data is implied.
2937 #
2938 # Other fields / optargs can be used to override fields of the generic ACPI
2939 # table header; refer to the ACPI specification 5.0, section 5.2.6 System
2940 # Description Table Header. If a header field is not overridden, then the
2941 # corresponding value from the concatenated blob is used (in case of @file), or
2942 # it is filled in with a hard-coded value (in case of @data).
2943 #
2944 # String fields are copied into the matching ACPI member from lowest address
2945 # upwards, and silently truncated / NUL-padded to length.
2946 #
2947 # @sig: #optional table signature / identifier (4 bytes)
2948 #
2949 # @rev: #optional table revision number (dependent on signature, 1 byte)
2950 #
2951 # @oem_id: #optional OEM identifier (6 bytes)
2952 #
2953 # @oem_table_id: #optional OEM table identifier (8 bytes)
2954 #
2955 # @oem_rev: #optional OEM-supplied revision number (4 bytes)
2956 #
2957 # @asl_compiler_id: #optional identifier of the utility that created the table
2958 #                   (4 bytes)
2959 #
2960 # @asl_compiler_rev: #optional revision number of the utility that created the
2961 #                    table (4 bytes)
2962 #
2963 # @file: #optional colon (:) separated list of pathnames to load and
2964 #        concatenate as table data. The resultant binary blob is expected to
2965 #        have an ACPI table header. At least one file is required. This field
2966 #        excludes @data.
2967 #
2968 # @data: #optional colon (:) separated list of pathnames to load and
2969 #        concatenate as table data. The resultant binary blob must not have an
2970 #        ACPI table header. At least one file is required. This field excludes
2971 #        @file.
2972 #
2973 # Since 1.5
2974 ##
2975 { 'type': 'AcpiTableOptions',
2976   'data': {
2977     '*sig':               'str',
2978     '*rev':               'uint8',
2979     '*oem_id':            'str',
2980     '*oem_table_id':      'str',
2981     '*oem_rev':           'uint32',
2982     '*asl_compiler_id':   'str',
2983     '*asl_compiler_rev':  'uint32',
2984     '*file':              'str',
2985     '*data':              'str' }}
2986
2987 ##
2988 # @CommandLineParameterType:
2989 #
2990 # Possible types for an option parameter.
2991 #
2992 # @string: accepts a character string
2993 #
2994 # @boolean: accepts "on" or "off"
2995 #
2996 # @number: accepts a number
2997 #
2998 # @size: accepts a number followed by an optional suffix (K)ilo,
2999 #        (M)ega, (G)iga, (T)era
3000 #
3001 # Since 1.5
3002 ##
3003 { 'enum': 'CommandLineParameterType',
3004   'data': ['string', 'boolean', 'number', 'size'] }
3005
3006 ##
3007 # @CommandLineParameterInfo:
3008 #
3009 # Details about a single parameter of a command line option.
3010 #
3011 # @name: parameter name
3012 #
3013 # @type: parameter @CommandLineParameterType
3014 #
3015 # @help: #optional human readable text string, not suitable for parsing.
3016 #
3017 # Since 1.5
3018 ##
3019 { 'type': 'CommandLineParameterInfo',
3020   'data': { 'name': 'str',
3021             'type': 'CommandLineParameterType',
3022             '*help': 'str' } }
3023
3024 ##
3025 # @CommandLineOptionInfo:
3026 #
3027 # Details about a command line option, including its list of parameter details
3028 #
3029 # @option: option name
3030 #
3031 # @parameters: an array of @CommandLineParameterInfo
3032 #
3033 # Since 1.5
3034 ##
3035 { 'type': 'CommandLineOptionInfo',
3036   'data': { 'option': 'str', 'parameters': ['CommandLineParameterInfo'] } }
3037
3038 ##
3039 # @query-command-line-options:
3040 #
3041 # Query command line option schema.
3042 #
3043 # @option: #optional option name
3044 #
3045 # Returns: list of @CommandLineOptionInfo for all options (or for the given
3046 #          @option).  Returns an error if the given @option doesn't exist.
3047 #
3048 # Since 1.5
3049 ##
3050 {'command': 'query-command-line-options', 'data': { '*option': 'str' },
3051  'returns': ['CommandLineOptionInfo'] }
3052
3053 ##
3054 # @X86CPURegister32
3055 #
3056 # A X86 32-bit register
3057 #
3058 # Since: 1.5
3059 ##
3060 { 'enum': 'X86CPURegister32',
3061   'data': [ 'EAX', 'EBX', 'ECX', 'EDX', 'ESP', 'EBP', 'ESI', 'EDI' ] }
3062
3063 ##
3064 # @X86CPUFeatureWordInfo
3065 #
3066 # Information about a X86 CPU feature word
3067 #
3068 # @cpuid-input-eax: Input EAX value for CPUID instruction for that feature word
3069 #
3070 # @cpuid-input-ecx: #optional Input ECX value for CPUID instruction for that
3071 #                   feature word
3072 #
3073 # @cpuid-register: Output register containing the feature bits
3074 #
3075 # @features: value of output register, containing the feature bits
3076 #
3077 # Since: 1.5
3078 ##
3079 { 'type': 'X86CPUFeatureWordInfo',
3080   'data': { 'cpuid-input-eax': 'int',
3081             '*cpuid-input-ecx': 'int',
3082             'cpuid-register': 'X86CPURegister32',
3083             'features': 'int' } }
3084
3085 ##
3086 # @RxState:
3087 #
3088 # Packets receiving state
3089 #
3090 # @normal: filter assigned packets according to the mac-table
3091 #
3092 # @none: don't receive any assigned packet
3093 #
3094 # @all: receive all assigned packets
3095 #
3096 # Since: 1.6
3097 ##
3098 { 'enum': 'RxState', 'data': [ 'normal', 'none', 'all' ] }
3099
3100 ##
3101 # @RxFilterInfo:
3102 #
3103 # Rx-filter information for a NIC.
3104 #
3105 # @name: net client name
3106 #
3107 # @promiscuous: whether promiscuous mode is enabled
3108 #
3109 # @multicast: multicast receive state
3110 #
3111 # @unicast: unicast receive state
3112 #
3113 # @vlan: vlan receive state (Since 2.0)
3114 #
3115 # @broadcast-allowed: whether to receive broadcast
3116 #
3117 # @multicast-overflow: multicast table is overflowed or not
3118 #
3119 # @unicast-overflow: unicast table is overflowed or not
3120 #
3121 # @main-mac: the main macaddr string
3122 #
3123 # @vlan-table: a list of active vlan id
3124 #
3125 # @unicast-table: a list of unicast macaddr string
3126 #
3127 # @multicast-table: a list of multicast macaddr string
3128 #
3129 # Since 1.6
3130 ##
3131
3132 { 'type': 'RxFilterInfo',
3133   'data': {
3134     'name':               'str',
3135     'promiscuous':        'bool',
3136     'multicast':          'RxState',
3137     'unicast':            'RxState',
3138     'vlan':               'RxState',
3139     'broadcast-allowed':  'bool',
3140     'multicast-overflow': 'bool',
3141     'unicast-overflow':   'bool',
3142     'main-mac':           'str',
3143     'vlan-table':         ['int'],
3144     'unicast-table':      ['str'],
3145     'multicast-table':    ['str'] }}
3146
3147 ##
3148 # @query-rx-filter:
3149 #
3150 # Return rx-filter information for all NICs (or for the given NIC).
3151 #
3152 # @name: #optional net client name
3153 #
3154 # Returns: list of @RxFilterInfo for all NICs (or for the given NIC).
3155 #          Returns an error if the given @name doesn't exist, or given
3156 #          NIC doesn't support rx-filter querying, or given net client
3157 #          isn't a NIC.
3158 #
3159 # Since: 1.6
3160 ##
3161 { 'command': 'query-rx-filter', 'data': { '*name': 'str' },
3162   'returns': ['RxFilterInfo'] }
3163
3164 ##
3165 # @InputButton
3166 #
3167 # Button of a pointer input device (mouse, tablet).
3168 #
3169 # Since: 2.0
3170 ##
3171 { 'enum'  : 'InputButton',
3172   'data'  : [ 'Left', 'Middle', 'Right', 'WheelUp', 'WheelDown' ] }
3173
3174 ##
3175 # @InputButton
3176 #
3177 # Position axis of a pointer input device (mouse, tablet).
3178 #
3179 # Since: 2.0
3180 ##
3181 { 'enum'  : 'InputAxis',
3182   'data'  : [ 'X', 'Y' ] }
3183
3184 ##
3185 # @InputKeyEvent
3186 #
3187 # Keyboard input event.
3188 #
3189 # @key:    Which key this event is for.
3190 # @down:   True for key-down and false for key-up events.
3191 #
3192 # Since: 2.0
3193 ##
3194 { 'type'  : 'InputKeyEvent',
3195   'data'  : { 'key'     : 'KeyValue',
3196               'down'    : 'bool' } }
3197
3198 ##
3199 # @InputBtnEvent
3200 #
3201 # Pointer button input event.
3202 #
3203 # @button: Which button this event is for.
3204 # @down:   True for key-down and false for key-up events.
3205 #
3206 # Since: 2.0
3207 ##
3208 { 'type'  : 'InputBtnEvent',
3209   'data'  : { 'button'  : 'InputButton',
3210               'down'    : 'bool' } }
3211
3212 ##
3213 # @InputMoveEvent
3214 #
3215 # Pointer motion input event.
3216 #
3217 # @axis:   Which axis is referenced by @value.
3218 # @value:  Pointer position.  For absolute coordinates the
3219 #          valid range is 0 -> 0x7ffff
3220 #
3221 # Since: 2.0
3222 ##
3223 { 'type'  : 'InputMoveEvent',
3224   'data'  : { 'axis'    : 'InputAxis',
3225               'value'   : 'int' } }
3226
3227 ##
3228 # @InputEvent
3229 #
3230 # Input event union.
3231 #
3232 # Since: 2.0
3233 ##
3234 { 'union' : 'InputEvent',
3235   'data'  : { 'key'     : 'InputKeyEvent',
3236               'btn'     : 'InputBtnEvent',
3237               'rel'     : 'InputMoveEvent',
3238               'abs'     : 'InputMoveEvent' } }
This page took 0.209058 seconds and 4 git commands to generate.