10 # @QCryptoTLSCredsEndpoint:
12 # The type of network endpoint that will be using the credentials.
13 # Most types of credential require different setup / structures
14 # depending on whether they will be used in a server versus a client.
16 # @client: the network endpoint is acting as the client
18 # @server: the network endpoint is acting as the server
22 { 'enum': 'QCryptoTLSCredsEndpoint',
23 'data': ['client', 'server']}
26 # @QCryptoSecretFormat:
28 # The data format that the secret is provided in
30 # @raw: raw bytes. When encoded in JSON only valid UTF-8 sequences
33 # @base64: arbitrary base64 encoded binary data
37 { 'enum': 'QCryptoSecretFormat',
38 'data': ['raw', 'base64']}
43 # The supported algorithms for computing content digests
45 # @md5: MD5. Should not be used in any new code, legacy compat only
47 # @sha1: SHA-1. Should not be used in any new code, legacy compat only
49 # @sha224: SHA-224. (since 2.7)
51 # @sha256: SHA-256. Current recommended strong hash.
53 # @sha384: SHA-384. (since 2.7)
55 # @sha512: SHA-512. (since 2.7)
57 # @ripemd160: RIPEMD-160. (since 2.7)
58 # @sm3: SM3. (since 9.2.0)
62 { 'enum': 'QCryptoHashAlgo',
63 'data': ['md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512', 'ripemd160', 'sm3']}
68 # The supported algorithms for content encryption ciphers
70 # @aes-128: AES with 128 bit / 16 byte keys
72 # @aes-192: AES with 192 bit / 24 byte keys
74 # @aes-256: AES with 256 bit / 32 byte keys
76 # @des: DES with 56 bit / 8 byte keys. Do not use except in VNC.
79 # @3des: 3DES(EDE) with 192 bit / 24 byte keys (since 2.9)
81 # @cast5-128: Cast5 with 128 bit / 16 byte keys
83 # @serpent-128: Serpent with 128 bit / 16 byte keys
85 # @serpent-192: Serpent with 192 bit / 24 byte keys
87 # @serpent-256: Serpent with 256 bit / 32 byte keys
89 # @twofish-128: Twofish with 128 bit / 16 byte keys
91 # @twofish-192: Twofish with 192 bit / 24 byte keys
93 # @twofish-256: Twofish with 256 bit / 32 byte keys
95 # @sm4: SM4 with 128 bit / 16 byte keys (since 9.0)
99 { 'enum': 'QCryptoCipherAlgo',
100 'data': ['aes-128', 'aes-192', 'aes-256',
103 'serpent-128', 'serpent-192', 'serpent-256',
104 'twofish-128', 'twofish-192', 'twofish-256',
108 # @QCryptoCipherMode:
110 # The supported modes for content encryption ciphers
112 # @ecb: Electronic Code Book
114 # @cbc: Cipher Block Chaining
116 # @xts: XEX with tweaked code book and ciphertext stealing
118 # @ctr: Counter (Since 2.8)
122 { 'enum': 'QCryptoCipherMode',
123 'data': ['ecb', 'cbc', 'xts', 'ctr']}
128 # The supported algorithms for generating initialization vectors for
129 # full disk encryption. The 'plain' generator should not be used for
130 # disks with sector numbers larger than 2^32, except where
131 # compatibility with pre-existing Linux dm-crypt volumes is required.
133 # @plain: 64-bit sector number truncated to 32-bits
135 # @plain64: 64-bit sector number
137 # @essiv: 64-bit sector number encrypted with a hash of the encryption
142 { 'enum': 'QCryptoIVGenAlgo',
143 'data': ['plain', 'plain64', 'essiv']}
146 # @QCryptoBlockFormat:
148 # The supported full disk encryption formats
150 # @qcow: QCow/QCow2 built-in AES-CBC encryption. Use only for
151 # liberating data from old images.
153 # @luks: LUKS encryption format. Recommended for new images
157 { 'enum': 'QCryptoBlockFormat',
158 'data': ['qcow', 'luks']}
161 # @QCryptoBlockOptionsBase:
163 # The common options that apply to all full disk encryption formats
165 # @format: the encryption format
169 { 'struct': 'QCryptoBlockOptionsBase',
170 'data': { 'format': 'QCryptoBlockFormat' }}
173 # @QCryptoBlockOptionsQCow:
175 # The options that apply to QCow/QCow2 AES-CBC encryption format
177 # @key-secret: the ID of a QCryptoSecret object providing the
178 # decryption key. Mandatory except when probing image for
183 { 'struct': 'QCryptoBlockOptionsQCow',
184 'data': { '*key-secret': 'str' }}
187 # @QCryptoBlockOptionsLUKS:
189 # The options that apply to LUKS encryption format
191 # @key-secret: the ID of a QCryptoSecret object providing the
192 # decryption key. Mandatory except when probing image for
197 { 'struct': 'QCryptoBlockOptionsLUKS',
198 'data': { '*key-secret': 'str' }}
201 # @QCryptoBlockCreateOptionsLUKS:
203 # The options that apply to LUKS encryption format initialization
205 # @cipher-alg: the cipher algorithm for data encryption Currently
206 # defaults to 'aes-256'.
208 # @cipher-mode: the cipher mode for data encryption Currently defaults
211 # @ivgen-alg: the initialization vector generator Currently defaults
214 # @ivgen-hash-alg: the initialization vector generator hash Currently
215 # defaults to 'sha256'
217 # @hash-alg: the master key hash algorithm Currently defaults to
220 # @iter-time: number of milliseconds to spend in PBKDF passphrase
221 # processing. Currently defaults to 2000. (since 2.8)
225 { 'struct': 'QCryptoBlockCreateOptionsLUKS',
226 'base': 'QCryptoBlockOptionsLUKS',
227 'data': { '*cipher-alg': 'QCryptoCipherAlgo',
228 '*cipher-mode': 'QCryptoCipherMode',
229 '*ivgen-alg': 'QCryptoIVGenAlgo',
230 '*ivgen-hash-alg': 'QCryptoHashAlgo',
231 '*hash-alg': 'QCryptoHashAlgo',
232 '*iter-time': 'int' }}
235 # @QCryptoBlockOpenOptions:
237 # The options that are available for all encryption formats when
238 # opening an existing volume
242 { 'union': 'QCryptoBlockOpenOptions',
243 'base': 'QCryptoBlockOptionsBase',
244 'discriminator': 'format',
245 'data': { 'qcow': 'QCryptoBlockOptionsQCow',
246 'luks': 'QCryptoBlockOptionsLUKS' } }
249 # @QCryptoBlockCreateOptions:
251 # The options that are available for all encryption formats when
252 # initializing a new volume
256 { 'union': 'QCryptoBlockCreateOptions',
257 'base': 'QCryptoBlockOptionsBase',
258 'discriminator': 'format',
259 'data': { 'qcow': 'QCryptoBlockOptionsQCow',
260 'luks': 'QCryptoBlockCreateOptionsLUKS' } }
263 # @QCryptoBlockInfoBase:
265 # The common information that applies to all full disk encryption
268 # @format: the encryption format
272 { 'struct': 'QCryptoBlockInfoBase',
273 'data': { 'format': 'QCryptoBlockFormat' }}
276 # @QCryptoBlockInfoLUKSSlot:
278 # Information about the LUKS block encryption key slot options
280 # @active: whether the key slot is currently in use
282 # @key-offset: offset to the key material in bytes
284 # @iters: number of PBKDF2 iterations for key material
286 # @stripes: number of stripes for splitting key material
290 { 'struct': 'QCryptoBlockInfoLUKSSlot',
291 'data': {'active': 'bool',
294 'key-offset': 'int' } }
297 # @QCryptoBlockInfoLUKS:
299 # Information about the LUKS block encryption options
301 # @cipher-alg: the cipher algorithm for data encryption
303 # @cipher-mode: the cipher mode for data encryption
305 # @ivgen-alg: the initialization vector generator
307 # @ivgen-hash-alg: the initialization vector generator hash
309 # @hash-alg: the master key hash algorithm
311 # @detached-header: whether the LUKS header is detached (Since 9.0)
313 # @payload-offset: offset to the payload data in bytes
315 # @master-key-iters: number of PBKDF2 iterations for key material
317 # @uuid: unique identifier for the volume
319 # @slots: information about each key slot
323 { 'struct': 'QCryptoBlockInfoLUKS',
324 'data': {'cipher-alg': 'QCryptoCipherAlgo',
325 'cipher-mode': 'QCryptoCipherMode',
326 'ivgen-alg': 'QCryptoIVGenAlgo',
327 '*ivgen-hash-alg': 'QCryptoHashAlgo',
328 'hash-alg': 'QCryptoHashAlgo',
329 'detached-header': 'bool',
330 'payload-offset': 'int',
331 'master-key-iters': 'int',
333 'slots': [ 'QCryptoBlockInfoLUKSSlot' ] }}
338 # Information about the block encryption options
342 { 'union': 'QCryptoBlockInfo',
343 'base': 'QCryptoBlockInfoBase',
344 'discriminator': 'format',
345 'data': { 'luks': 'QCryptoBlockInfoLUKS' } }
348 # @QCryptoBlockLUKSKeyslotState:
350 # Defines state of keyslots that are affected by the update
352 # @active: The slots contain the given password and marked as active
354 # @inactive: The slots are erased (contain garbage) and marked as
359 { 'enum': 'QCryptoBlockLUKSKeyslotState',
360 'data': [ 'active', 'inactive' ] }
363 # @QCryptoBlockAmendOptionsLUKS:
365 # This struct defines the update parameters that activate/de-activate
368 # @state: the desired state of the keyslots
370 # @new-secret: The ID of a QCryptoSecret object providing the password
371 # to be written into added active keyslots
373 # @old-secret: Optional (for deactivation only) If given will
374 # deactivate all keyslots that match password located in
375 # QCryptoSecret with this ID
377 # @iter-time: Optional (for activation only) Number of milliseconds to
378 # spend in PBKDF passphrase processing for the newly activated
379 # keyslot. Currently defaults to 2000.
381 # @keyslot: Optional. ID of the keyslot to activate/deactivate. For
382 # keyslot activation, keyslot should not be active already (this
383 # is unsafe to update an active keyslot), but possible if 'force'
384 # parameter is given. If keyslot is not given, first free keyslot
387 # For keyslot deactivation, this parameter specifies the exact
388 # keyslot to deactivate
390 # @secret: Optional. The ID of a QCryptoSecret object providing the
391 # password to use to retrieve current master key. Defaults to the
392 # same secret that was used to open the image
396 { 'struct': 'QCryptoBlockAmendOptionsLUKS',
397 'data': { 'state': 'QCryptoBlockLUKSKeyslotState',
398 '*new-secret': 'str',
399 '*old-secret': 'str',
405 # @QCryptoBlockAmendOptions:
407 # The options that are available for all encryption formats when
408 # amending encryption settings
412 { 'union': 'QCryptoBlockAmendOptions',
413 'base': 'QCryptoBlockOptionsBase',
414 'discriminator': 'format',
416 'luks': 'QCryptoBlockAmendOptionsLUKS' } }
419 # @SecretCommonProperties:
421 # Properties for objects of classes derived from secret-common.
423 # @format: the data format that the secret is provided in
426 # @keyid: the name of another secret that should be used to decrypt
427 # the provided data. If not present, the data is assumed to be
430 # @iv: the random initialization vector used for encryption of this
431 # particular secret. Should be a base64 encrypted string of the
432 # 16-byte IV. Mandatory if @keyid is given. Ignored if @keyid is
437 { 'struct': 'SecretCommonProperties',
438 'data': { '*format': 'QCryptoSecretFormat',
445 # Properties for secret objects.
447 # Either @data or @file must be provided, but not both.
449 # @data: the associated with the secret from
451 # @file: the filename to load the data associated with the secret from
455 { 'struct': 'SecretProperties',
456 'base': 'SecretCommonProperties',
457 'data': { '*data': 'str',
461 # @SecretKeyringProperties:
463 # Properties for secret_keyring objects.
465 # @serial: serial number that identifies a key to get from the kernel
469 { 'struct': 'SecretKeyringProperties',
470 'base': 'SecretCommonProperties',
471 'data': { 'serial': 'int32' },
472 'if': 'CONFIG_SECRET_KEYRING' }
475 # @TlsCredsProperties:
477 # Properties for objects of classes derived from tls-creds.
479 # @verify-peer: if true the peer credentials will be verified once the
480 # handshake is completed. This is a no-op for anonymous
481 # credentials. (default: true)
483 # @dir: the path of the directory that contains the credential files
485 # @endpoint: whether the QEMU network backend that uses the
486 # credentials will be acting as a client or as a server
489 # @priority: a gnutls priority string as described at
490 # https://gnutls.org/manual/html_node/Priority-Strings.html
494 { 'struct': 'TlsCredsProperties',
495 'data': { '*verify-peer': 'bool',
497 '*endpoint': 'QCryptoTLSCredsEndpoint',
498 '*priority': 'str' } }
501 # @TlsCredsAnonProperties:
503 # Properties for tls-creds-anon objects.
507 { 'struct': 'TlsCredsAnonProperties',
508 'base': 'TlsCredsProperties',
512 # @TlsCredsPskProperties:
514 # Properties for tls-creds-psk objects.
516 # @username: the username which will be sent to the server. For
517 # clients only. If absent, "qemu" is sent and the property will
518 # read back as an empty string.
522 { 'struct': 'TlsCredsPskProperties',
523 'base': 'TlsCredsProperties',
524 'data': { '*username': 'str' } }
527 # @TlsCredsX509Properties:
529 # Properties for tls-creds-x509 objects.
531 # @sanity-check: if true, perform some sanity checks before using the
532 # credentials (default: true)
534 # @passwordid: For the server-key.pem and client-key.pem files which
535 # contain sensitive private keys, it is possible to use an
536 # encrypted version by providing the @passwordid parameter. This
537 # provides the ID of a previously created secret object containing
538 # the password for decryption.
542 { 'struct': 'TlsCredsX509Properties',
543 'base': 'TlsCredsProperties',
544 'data': { '*sanity-check': 'bool',
545 '*passwordid': 'str' } }
547 # @QCryptoAkCipherAlgo:
549 # The supported algorithms for asymmetric encryption ciphers
551 # @rsa: RSA algorithm
555 { 'enum': 'QCryptoAkCipherAlgo',
559 # @QCryptoAkCipherKeyType:
561 # The type of asymmetric keys.
563 # @public: public key
565 # @private: private key
569 { 'enum': 'QCryptoAkCipherKeyType',
570 'data': ['public', 'private']}
573 # @QCryptoRSAPaddingAlgo:
575 # The padding algorithm for RSA.
577 # @raw: no padding used
583 { 'enum': 'QCryptoRSAPaddingAlgo',
584 'data': ['raw', 'pkcs1']}
587 # @QCryptoAkCipherOptionsRSA:
589 # Specific parameters for RSA algorithm.
591 # @hash-alg: QCryptoHashAlgo
593 # @padding-alg: QCryptoRSAPaddingAlgo
597 { 'struct': 'QCryptoAkCipherOptionsRSA',
598 'data': { 'hash-alg':'QCryptoHashAlgo',
599 'padding-alg': 'QCryptoRSAPaddingAlgo'}}
602 # @QCryptoAkCipherOptions:
604 # The options that are available for all asymmetric key algorithms
605 # when creating a new QCryptoAkCipher.
607 # @alg: encryption cipher algorithm
611 { 'union': 'QCryptoAkCipherOptions',
612 'base': { 'alg': 'QCryptoAkCipherAlgo' },
613 'discriminator': 'alg',
614 'data': { 'rsa': 'QCryptoAkCipherOptionsRSA' }}