2019-06-19 20:10:37 +00:00
|
|
|
# -*- Mode: Python -*-
|
2020-07-29 18:50:24 +00:00
|
|
|
# vim: filetype=python
|
2019-06-19 20:10:37 +00:00
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
{ 'include': 'authz.json' }
|
2020-10-20 10:47:58 +00:00
|
|
|
{ 'include': 'block-core.json' }
|
2020-10-20 10:47:58 +00:00
|
|
|
{ 'include': 'common.json' }
|
2020-10-20 10:47:58 +00:00
|
|
|
|
2019-06-19 20:10:37 +00:00
|
|
|
##
|
|
|
|
# = QEMU Object Model (QOM)
|
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# @ObjectPropertyInfo:
|
|
|
|
#
|
|
|
|
# @name: the name of the property
|
|
|
|
#
|
|
|
|
# @type: the type of the property. This will typically come in one of four
|
|
|
|
# forms:
|
|
|
|
#
|
|
|
|
# 1) A primitive type such as 'u8', 'u16', 'bool', 'str', or 'double'.
|
|
|
|
# These types are mapped to the appropriate JSON type.
|
|
|
|
#
|
|
|
|
# 2) A child type in the form 'child<subtype>' where subtype is a qdev
|
|
|
|
# device type name. Child properties create the composition tree.
|
|
|
|
#
|
|
|
|
# 3) A link type in the form 'link<subtype>' where subtype is a qdev
|
|
|
|
# device type name. Link properties form the device model graph.
|
|
|
|
#
|
|
|
|
# @description: if specified, the description of the property.
|
|
|
|
#
|
2020-01-10 15:30:38 +00:00
|
|
|
# @default-value: the default value, if any (since 5.0)
|
|
|
|
#
|
2019-06-19 20:10:37 +00:00
|
|
|
# Since: 1.2
|
|
|
|
##
|
|
|
|
{ 'struct': 'ObjectPropertyInfo',
|
2020-01-10 15:30:38 +00:00
|
|
|
'data': { 'name': 'str',
|
|
|
|
'type': 'str',
|
|
|
|
'*description': 'str',
|
|
|
|
'*default-value': 'any' } }
|
2019-06-19 20:10:37 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
# @qom-list:
|
|
|
|
#
|
|
|
|
# This command will list any properties of a object given a path in the object
|
|
|
|
# model.
|
|
|
|
#
|
|
|
|
# @path: the path within the object model. See @qom-get for a description of
|
|
|
|
# this parameter.
|
|
|
|
#
|
|
|
|
# Returns: a list of @ObjectPropertyInfo that describe the properties of the
|
|
|
|
# object.
|
|
|
|
#
|
|
|
|
# Since: 1.2
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# -> { "execute": "qom-list",
|
|
|
|
# "arguments": { "path": "/chardevs" } }
|
|
|
|
# <- { "return": [ { "name": "type", "type": "string" },
|
|
|
|
# { "name": "parallel0", "type": "child<chardev-vc>" },
|
|
|
|
# { "name": "serial0", "type": "child<chardev-vc>" },
|
|
|
|
# { "name": "mon0", "type": "child<chardev-stdio>" } ] }
|
|
|
|
#
|
|
|
|
##
|
|
|
|
{ 'command': 'qom-list',
|
|
|
|
'data': { 'path': 'str' },
|
|
|
|
'returns': [ 'ObjectPropertyInfo' ],
|
|
|
|
'allow-preconfig': true }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @qom-get:
|
|
|
|
#
|
|
|
|
# This command will get a property from a object model path and return the
|
|
|
|
# value.
|
|
|
|
#
|
|
|
|
# @path: The path within the object model. There are two forms of supported
|
|
|
|
# paths--absolute and partial paths.
|
|
|
|
#
|
|
|
|
# Absolute paths are derived from the root object and can follow child<>
|
|
|
|
# or link<> properties. Since they can follow link<> properties, they
|
|
|
|
# can be arbitrarily long. Absolute paths look like absolute filenames
|
|
|
|
# and are prefixed with a leading slash.
|
|
|
|
#
|
|
|
|
# Partial paths look like relative filenames. They do not begin
|
|
|
|
# with a prefix. The matching rules for partial paths are subtle but
|
|
|
|
# designed to make specifying objects easy. At each level of the
|
|
|
|
# composition tree, the partial path is matched as an absolute path.
|
|
|
|
# The first match is not returned. At least two matches are searched
|
|
|
|
# for. A successful result is only returned if only one match is
|
|
|
|
# found. If more than one match is found, a flag is return to
|
|
|
|
# indicate that the match was ambiguous.
|
|
|
|
#
|
|
|
|
# @property: The property name to read
|
|
|
|
#
|
|
|
|
# Returns: The property value. The type depends on the property
|
|
|
|
# type. child<> and link<> properties are returned as #str
|
|
|
|
# pathnames. All integer property types (u8, u16, etc) are
|
|
|
|
# returned as #int.
|
|
|
|
#
|
|
|
|
# Since: 1.2
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# 1. Use absolute path
|
|
|
|
#
|
|
|
|
# -> { "execute": "qom-get",
|
|
|
|
# "arguments": { "path": "/machine/unattached/device[0]",
|
|
|
|
# "property": "hotplugged" } }
|
|
|
|
# <- { "return": false }
|
|
|
|
#
|
|
|
|
# 2. Use partial path
|
|
|
|
#
|
|
|
|
# -> { "execute": "qom-get",
|
|
|
|
# "arguments": { "path": "unattached/sysbus",
|
|
|
|
# "property": "type" } }
|
|
|
|
# <- { "return": "System" }
|
|
|
|
#
|
|
|
|
##
|
|
|
|
{ 'command': 'qom-get',
|
|
|
|
'data': { 'path': 'str', 'property': 'str' },
|
|
|
|
'returns': 'any',
|
|
|
|
'allow-preconfig': true }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @qom-set:
|
|
|
|
#
|
|
|
|
# This command will set a property from a object model path.
|
|
|
|
#
|
|
|
|
# @path: see @qom-get for a description of this parameter
|
|
|
|
#
|
|
|
|
# @property: the property name to set
|
|
|
|
#
|
|
|
|
# @value: a value who's type is appropriate for the property type. See @qom-get
|
|
|
|
# for a description of type mapping.
|
|
|
|
#
|
|
|
|
# Since: 1.2
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# -> { "execute": "qom-set",
|
|
|
|
# "arguments": { "path": "/machine",
|
|
|
|
# "property": "graphics",
|
|
|
|
# "value": false } }
|
|
|
|
# <- { "return": {} }
|
|
|
|
#
|
|
|
|
##
|
|
|
|
{ 'command': 'qom-set',
|
|
|
|
'data': { 'path': 'str', 'property': 'str', 'value': 'any' },
|
|
|
|
'allow-preconfig': true }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @ObjectTypeInfo:
|
|
|
|
#
|
|
|
|
# This structure describes a search result from @qom-list-types
|
|
|
|
#
|
|
|
|
# @name: the type name found in the search
|
|
|
|
#
|
|
|
|
# @abstract: the type is abstract and can't be directly instantiated.
|
|
|
|
# Omitted if false. (since 2.10)
|
|
|
|
#
|
|
|
|
# @parent: Name of parent type, if any (since 2.10)
|
|
|
|
#
|
|
|
|
# Since: 1.1
|
|
|
|
##
|
|
|
|
{ 'struct': 'ObjectTypeInfo',
|
|
|
|
'data': { 'name': 'str', '*abstract': 'bool', '*parent': 'str' } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @qom-list-types:
|
|
|
|
#
|
|
|
|
# This command will return a list of types given search parameters
|
|
|
|
#
|
|
|
|
# @implements: if specified, only return types that implement this type name
|
|
|
|
#
|
|
|
|
# @abstract: if true, include abstract types in the results
|
|
|
|
#
|
|
|
|
# Returns: a list of @ObjectTypeInfo or an empty list if no results are found
|
|
|
|
#
|
|
|
|
# Since: 1.1
|
|
|
|
##
|
|
|
|
{ 'command': 'qom-list-types',
|
|
|
|
'data': { '*implements': 'str', '*abstract': 'bool' },
|
|
|
|
'returns': [ 'ObjectTypeInfo' ],
|
|
|
|
'allow-preconfig': true }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @qom-list-properties:
|
|
|
|
#
|
|
|
|
# List properties associated with a QOM object.
|
|
|
|
#
|
|
|
|
# @typename: the type name of an object
|
|
|
|
#
|
|
|
|
# Note: objects can create properties at runtime, for example to describe
|
2020-02-13 17:56:26 +00:00
|
|
|
# links between different devices and/or objects. These properties
|
|
|
|
# are not included in the output of this command.
|
2019-06-19 20:10:37 +00:00
|
|
|
#
|
|
|
|
# Returns: a list of ObjectPropertyInfo describing object properties
|
|
|
|
#
|
|
|
|
# Since: 2.12
|
|
|
|
##
|
|
|
|
{ 'command': 'qom-list-properties',
|
|
|
|
'data': { 'typename': 'str'},
|
|
|
|
'returns': [ 'ObjectPropertyInfo' ],
|
|
|
|
'allow-preconfig': true }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @CryptodevBackendProperties:
|
|
|
|
#
|
|
|
|
# Properties for cryptodev-backend and cryptodev-backend-builtin objects.
|
|
|
|
#
|
|
|
|
# @queues: the number of queues for the cryptodev backend. Ignored for
|
|
|
|
# cryptodev-backend and must be 1 for cryptodev-backend-builtin.
|
|
|
|
# (default: 1)
|
|
|
|
#
|
|
|
|
# Since: 2.8
|
|
|
|
##
|
|
|
|
{ 'struct': 'CryptodevBackendProperties',
|
|
|
|
'data': { '*queues': 'uint32' } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @CryptodevVhostUserProperties:
|
|
|
|
#
|
|
|
|
# Properties for cryptodev-vhost-user objects.
|
|
|
|
#
|
|
|
|
# @chardev: the name of a Unix domain socket character device that connects to
|
|
|
|
# the vhost-user server
|
|
|
|
#
|
|
|
|
# Since: 2.12
|
|
|
|
##
|
|
|
|
{ 'struct': 'CryptodevVhostUserProperties',
|
|
|
|
'base': 'CryptodevBackendProperties',
|
|
|
|
'data': { 'chardev': 'str' } }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @DBusVMStateProperties:
|
|
|
|
#
|
|
|
|
# Properties for dbus-vmstate objects.
|
|
|
|
#
|
|
|
|
# @addr: the name of the DBus bus to connect to
|
|
|
|
#
|
|
|
|
# @id-list: a comma separated list of DBus IDs of helpers whose data should be
|
|
|
|
# included in the VM state on migration
|
|
|
|
#
|
|
|
|
# Since: 5.0
|
|
|
|
##
|
|
|
|
{ 'struct': 'DBusVMStateProperties',
|
|
|
|
'data': { 'addr': 'str' ,
|
|
|
|
'*id-list': 'str' } }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @IothreadProperties:
|
|
|
|
#
|
|
|
|
# Properties for iothread objects.
|
|
|
|
#
|
|
|
|
# @poll-max-ns: the maximum number of nanoseconds to busy wait for events.
|
|
|
|
# 0 means polling is disabled (default: 32768 on POSIX hosts,
|
|
|
|
# 0 otherwise)
|
|
|
|
#
|
|
|
|
# @poll-grow: the multiplier used to increase the polling time when the
|
|
|
|
# algorithm detects it is missing events due to not polling long
|
|
|
|
# enough. 0 selects a default behaviour (default: 0)
|
|
|
|
#
|
|
|
|
# @poll-shrink: the divisor used to decrease the polling time when the
|
|
|
|
# algorithm detects it is spending too long polling without
|
|
|
|
# encountering events. 0 selects a default behaviour (default: 0)
|
|
|
|
#
|
|
|
|
# Since: 2.0
|
|
|
|
##
|
|
|
|
{ 'struct': 'IothreadProperties',
|
|
|
|
'data': { '*poll-max-ns': 'int',
|
|
|
|
'*poll-grow': 'int',
|
|
|
|
'*poll-shrink': 'int' } }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @MemoryBackendProperties:
|
|
|
|
#
|
|
|
|
# Properties for objects of classes derived from memory-backend.
|
|
|
|
#
|
|
|
|
# @merge: if true, mark the memory as mergeable (default depends on the machine
|
|
|
|
# type)
|
|
|
|
#
|
|
|
|
# @dump: if true, include the memory in core dumps (default depends on the
|
|
|
|
# machine type)
|
|
|
|
#
|
|
|
|
# @host-nodes: the list of NUMA host nodes to bind the memory to
|
|
|
|
#
|
|
|
|
# @policy: the NUMA policy (default: 'default')
|
|
|
|
#
|
|
|
|
# @prealloc: if true, preallocate memory (default: false)
|
|
|
|
#
|
|
|
|
# @prealloc-threads: number of CPU threads to use for prealloc (default: 1)
|
|
|
|
#
|
|
|
|
# @share: if false, the memory is private to QEMU; if true, it is shared
|
|
|
|
# (default: false)
|
|
|
|
#
|
|
|
|
# @size: size of the memory region in bytes
|
|
|
|
#
|
|
|
|
# @x-use-canonical-path-for-ramblock-id: if true, the canoncial path is used
|
|
|
|
# for ramblock-id. Disable this for 4.0
|
|
|
|
# machine types or older to allow
|
|
|
|
# migration with newer QEMU versions.
|
|
|
|
# This option is considered stable
|
|
|
|
# despite the x- prefix. (default:
|
|
|
|
# false generally, but true for machine
|
|
|
|
# types <= 4.0)
|
|
|
|
#
|
|
|
|
# Since: 2.1
|
|
|
|
##
|
|
|
|
{ 'struct': 'MemoryBackendProperties',
|
|
|
|
'data': { '*dump': 'bool',
|
|
|
|
'*host-nodes': ['uint16'],
|
|
|
|
'*merge': 'bool',
|
|
|
|
'*policy': 'HostMemPolicy',
|
|
|
|
'*prealloc': 'bool',
|
|
|
|
'*prealloc-threads': 'uint32',
|
|
|
|
'*share': 'bool',
|
|
|
|
'size': 'size',
|
|
|
|
'*x-use-canonical-path-for-ramblock-id': 'bool' } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @MemoryBackendFileProperties:
|
|
|
|
#
|
|
|
|
# Properties for memory-backend-file objects.
|
|
|
|
#
|
|
|
|
# @align: the base address alignment when QEMU mmap(2)s @mem-path. Some
|
|
|
|
# backend stores specified by @mem-path require an alignment different
|
|
|
|
# than the default one used by QEMU, e.g. the device DAX /dev/dax0.0
|
|
|
|
# requires 2M alignment rather than 4K. In such cases, users can
|
|
|
|
# specify the required alignment via this option.
|
|
|
|
# 0 selects a default alignment (currently the page size). (default: 0)
|
|
|
|
#
|
|
|
|
# @discard-data: if true, the file contents can be destroyed when QEMU exits,
|
|
|
|
# to avoid unnecessarily flushing data to the backing file. Note
|
|
|
|
# that ``discard-data`` is only an optimization, and QEMU might
|
|
|
|
# not discard file contents if it aborts unexpectedly or is
|
|
|
|
# terminated using SIGKILL. (default: false)
|
|
|
|
#
|
|
|
|
# @mem-path: the path to either a shared memory or huge page filesystem mount
|
|
|
|
#
|
|
|
|
# @pmem: specifies whether the backing file specified by @mem-path is in
|
|
|
|
# host persistent memory that can be accessed using the SNIA NVM
|
|
|
|
# programming model (e.g. Intel NVDIMM).
|
|
|
|
#
|
|
|
|
# @readonly: if true, the backing file is opened read-only; if false, it is
|
|
|
|
# opened read-write. (default: false)
|
|
|
|
#
|
|
|
|
# Since: 2.1
|
|
|
|
##
|
|
|
|
{ 'struct': 'MemoryBackendFileProperties',
|
|
|
|
'base': 'MemoryBackendProperties',
|
|
|
|
'data': { '*align': 'size',
|
|
|
|
'*discard-data': 'bool',
|
|
|
|
'mem-path': 'str',
|
|
|
|
'*pmem': { 'type': 'bool', 'if': 'defined(CONFIG_LIBPMEM)' },
|
|
|
|
'*readonly': 'bool' } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @MemoryBackendMemfdProperties:
|
|
|
|
#
|
|
|
|
# Properties for memory-backend-memfd objects.
|
|
|
|
#
|
|
|
|
# The @share boolean option is true by default with memfd.
|
|
|
|
#
|
|
|
|
# @hugetlb: if true, the file to be created resides in the hugetlbfs filesystem
|
|
|
|
# (default: false)
|
|
|
|
#
|
|
|
|
# @hugetlbsize: the hugetlb page size on systems that support multiple hugetlb
|
|
|
|
# page sizes (it must be a power of 2 value supported by the
|
|
|
|
# system). 0 selects a default page size. This option is ignored
|
|
|
|
# if @hugetlb is false. (default: 0)
|
|
|
|
#
|
|
|
|
# @seal: if true, create a sealed-file, which will block further resizing of
|
|
|
|
# the memory (default: true)
|
|
|
|
#
|
|
|
|
# Since: 2.12
|
|
|
|
##
|
|
|
|
{ 'struct': 'MemoryBackendMemfdProperties',
|
|
|
|
'base': 'MemoryBackendProperties',
|
|
|
|
'data': { '*hugetlb': 'bool',
|
|
|
|
'*hugetlbsize': 'size',
|
|
|
|
'*seal': 'bool' } }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @RngProperties:
|
|
|
|
#
|
|
|
|
# Properties for objects of classes derived from rng.
|
|
|
|
#
|
|
|
|
# @opened: if true, the device is opened immediately when applying this option
|
|
|
|
# and will probably fail when processing the next option. Don't use;
|
|
|
|
# only provided for compatibility. (default: false)
|
|
|
|
#
|
|
|
|
# Features:
|
|
|
|
# @deprecated: Member @opened is deprecated. Setting true doesn't make sense,
|
|
|
|
# and false is already the default.
|
|
|
|
#
|
|
|
|
# Since: 1.3
|
|
|
|
##
|
|
|
|
{ 'struct': 'RngProperties',
|
|
|
|
'data': { '*opened': { 'type': 'bool', 'features': ['deprecated'] } } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @RngEgdProperties:
|
|
|
|
#
|
|
|
|
# Properties for rng-egd objects.
|
|
|
|
#
|
|
|
|
# @chardev: the name of a character device backend that provides the connection
|
|
|
|
# to the RNG daemon
|
|
|
|
#
|
|
|
|
# Since: 1.3
|
|
|
|
##
|
|
|
|
{ 'struct': 'RngEgdProperties',
|
|
|
|
'base': 'RngProperties',
|
|
|
|
'data': { 'chardev': 'str' } }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @RngRandomProperties:
|
|
|
|
#
|
|
|
|
# Properties for rng-random objects.
|
|
|
|
#
|
|
|
|
# @filename: the filename of the device on the host to obtain entropy from
|
|
|
|
# (default: "/dev/urandom")
|
|
|
|
#
|
|
|
|
# Since: 1.3
|
|
|
|
##
|
|
|
|
{ 'struct': 'RngRandomProperties',
|
|
|
|
'base': 'RngProperties',
|
|
|
|
'data': { '*filename': 'str' } }
|
|
|
|
|
2020-10-20 10:47:58 +00:00
|
|
|
##
|
|
|
|
# @ObjectType:
|
|
|
|
#
|
|
|
|
# Since: 6.0
|
|
|
|
##
|
|
|
|
{ 'enum': 'ObjectType',
|
|
|
|
'data': [
|
2020-10-20 10:47:58 +00:00
|
|
|
'authz-list',
|
|
|
|
'authz-listfile',
|
|
|
|
'authz-pam',
|
|
|
|
'authz-simple',
|
2020-10-20 10:47:58 +00:00
|
|
|
'cryptodev-backend',
|
|
|
|
'cryptodev-backend-builtin',
|
|
|
|
{ 'name': 'cryptodev-vhost-user',
|
|
|
|
'if': 'defined(CONFIG_VIRTIO_CRYPTO) && defined(CONFIG_VHOST_CRYPTO)' },
|
2020-10-20 10:47:58 +00:00
|
|
|
'dbus-vmstate',
|
2020-10-20 10:47:58 +00:00
|
|
|
'iothread',
|
|
|
|
'memory-backend-file',
|
|
|
|
{ 'name': 'memory-backend-memfd',
|
|
|
|
'if': 'defined(CONFIG_LINUX)' },
|
2020-10-20 10:47:58 +00:00
|
|
|
'memory-backend-ram',
|
|
|
|
'rng-builtin',
|
|
|
|
'rng-egd',
|
2020-10-20 10:47:58 +00:00
|
|
|
'rng-random',
|
|
|
|
'throttle-group'
|
2020-10-20 10:47:58 +00:00
|
|
|
] }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @ObjectOptions:
|
|
|
|
#
|
|
|
|
# Describes the options of a user creatable QOM object.
|
|
|
|
#
|
|
|
|
# @qom-type: the class name for the object to be created
|
|
|
|
#
|
|
|
|
# @id: the name of the new object
|
|
|
|
#
|
|
|
|
# Since: 6.0
|
|
|
|
##
|
|
|
|
{ 'union': 'ObjectOptions',
|
|
|
|
'base': { 'qom-type': 'ObjectType',
|
|
|
|
'id': 'str' },
|
|
|
|
'discriminator': 'qom-type',
|
|
|
|
'data': {
|
2020-10-20 10:47:58 +00:00
|
|
|
'authz-list': 'AuthZListProperties',
|
|
|
|
'authz-listfile': 'AuthZListFileProperties',
|
|
|
|
'authz-pam': 'AuthZPAMProperties',
|
|
|
|
'authz-simple': 'AuthZSimpleProperties',
|
2020-10-20 10:47:58 +00:00
|
|
|
'cryptodev-backend': 'CryptodevBackendProperties',
|
|
|
|
'cryptodev-backend-builtin': 'CryptodevBackendProperties',
|
|
|
|
'cryptodev-vhost-user': { 'type': 'CryptodevVhostUserProperties',
|
|
|
|
'if': 'defined(CONFIG_VIRTIO_CRYPTO) && defined(CONFIG_VHOST_CRYPTO)' },
|
2020-10-20 10:47:58 +00:00
|
|
|
'dbus-vmstate': 'DBusVMStateProperties',
|
2020-10-20 10:47:58 +00:00
|
|
|
'iothread': 'IothreadProperties',
|
|
|
|
'memory-backend-file': 'MemoryBackendFileProperties',
|
|
|
|
'memory-backend-memfd': { 'type': 'MemoryBackendMemfdProperties',
|
|
|
|
'if': 'defined(CONFIG_LINUX)' },
|
2020-10-20 10:47:58 +00:00
|
|
|
'memory-backend-ram': 'MemoryBackendProperties',
|
|
|
|
'rng-builtin': 'RngProperties',
|
|
|
|
'rng-egd': 'RngEgdProperties',
|
2020-10-20 10:47:58 +00:00
|
|
|
'rng-random': 'RngRandomProperties',
|
|
|
|
'throttle-group': 'ThrottleGroupProperties'
|
2020-10-20 10:47:58 +00:00
|
|
|
} }
|
|
|
|
|
2019-06-19 20:10:37 +00:00
|
|
|
##
|
|
|
|
# @object-add:
|
|
|
|
#
|
|
|
|
# Create a QOM object.
|
|
|
|
#
|
|
|
|
# @qom-type: the class name for the object to be created
|
|
|
|
#
|
|
|
|
# @id: the name of the new object
|
|
|
|
#
|
2020-02-24 14:29:55 +00:00
|
|
|
# Additional arguments depend on qom-type and are passed to the backend
|
|
|
|
# unchanged.
|
2019-06-19 20:10:37 +00:00
|
|
|
#
|
|
|
|
# Returns: Nothing on success
|
|
|
|
# Error if @qom-type is not a valid class name
|
|
|
|
#
|
|
|
|
# Since: 2.0
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# -> { "execute": "object-add",
|
|
|
|
# "arguments": { "qom-type": "rng-random", "id": "rng1",
|
2020-02-24 14:29:55 +00:00
|
|
|
# "filename": "/dev/hwrng" } }
|
2019-06-19 20:10:37 +00:00
|
|
|
# <- { "return": {} }
|
|
|
|
#
|
|
|
|
##
|
|
|
|
{ 'command': 'object-add',
|
2020-11-27 17:11:02 +00:00
|
|
|
'data': {'qom-type': 'str', 'id': 'str'},
|
2020-02-24 14:29:55 +00:00
|
|
|
'gen': false } # so we can get the additional arguments
|
2019-06-19 20:10:37 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
# @object-del:
|
|
|
|
#
|
|
|
|
# Remove a QOM object.
|
|
|
|
#
|
|
|
|
# @id: the name of the QOM object to remove
|
|
|
|
#
|
|
|
|
# Returns: Nothing on success
|
|
|
|
# Error if @id is not a valid id for a QOM object
|
|
|
|
#
|
|
|
|
# Since: 2.0
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# -> { "execute": "object-del", "arguments": { "id": "rng1" } }
|
|
|
|
# <- { "return": {} }
|
|
|
|
#
|
|
|
|
##
|
|
|
|
{ 'command': 'object-del', 'data': {'id': 'str'} }
|