mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
qcow2: convert QCow2 to use QCryptoBlock for encryption
This converts the qcow2 driver to make use of the QCryptoBlock APIs for encrypting image content, using the legacy QCow2 AES scheme. With this change it is now required to use the QCryptoSecret object for providing passwords, instead of the current block password APIs / interactive prompting. $QEMU \ -object secret,id=sec0,file=/home/berrange/encrypted.pw \ -drive file=/home/berrange/encrypted.qcow2,encrypt.key-secret=sec0 The test 087 could be simplified since there is no longer a difference in behaviour when using blockdev_add with encrypted images for the running vs stopped CPU state. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> Message-id: 20170623162419.26068-12-berrange@redhat.com Reviewed-by: Alberto Garcia <berto@igalia.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
This commit is contained in:
parent
446d306d23
commit
b25b387fa5
14 changed files with 265 additions and 188 deletions
|
@ -50,6 +50,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -64,6 +65,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -78,6 +80,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -92,6 +95,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -106,6 +110,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -120,6 +125,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -134,6 +140,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -148,6 +155,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -177,6 +185,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -240,6 +249,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -254,6 +264,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -268,6 +279,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -282,6 +294,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -296,6 +309,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -310,6 +324,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -324,6 +339,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -338,6 +354,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -367,6 +384,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -427,6 +445,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -441,6 +460,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -455,6 +475,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -469,6 +490,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -483,6 +505,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -497,6 +520,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -511,6 +535,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -525,6 +550,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
@ -556,6 +582,7 @@ backing_file File name of a base image
|
|||
backing_fmt Image format of the base image
|
||||
encryption Encrypt the image with format 'aes'. (Deprecated in favor of encrypt.format=aes)
|
||||
encrypt.format Encrypt the image, format choices: 'aes'
|
||||
encrypt.key-secret ID of the secret that provides the AES encryption key
|
||||
cluster_size qcow2 cluster size
|
||||
preallocation Preallocation mode (allowed values: off, metadata, falloc, full)
|
||||
lazy_refcounts Postpone refcount updates
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue