Commit 70b2a1fe authored by Maxim Levitsky's avatar Maxim Levitsky Committed by Daniel P. Berrangé
Browse files

qcrypto-luks: don't overwrite cipher_mode in header



This way we can store the header we loaded, which
will be used in key management code

Signed-off-by: default avatarMaxim Levitsky <mlevitsk@redhat.com>
Reviewed-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
Signed-off-by: default avatarDaniel P. Berrangé <berrange@redhat.com>
parent f0d3c362
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -645,6 +645,7 @@ qcrypto_block_luks_open(QCryptoBlock *block,
    QCryptoHashAlgorithm hash;
    QCryptoHashAlgorithm ivhash;
    g_autofree char *password = NULL;
    g_autofree char *cipher_mode = NULL;

    if (!(flags & QCRYPTO_BLOCK_OPEN_NO_IO)) {
        if (!options->u.luks.key_secret) {
@@ -701,6 +702,8 @@ qcrypto_block_luks_open(QCryptoBlock *block,
        goto fail;
    }

    cipher_mode = g_strdup(luks->header.cipher_mode);

    /*
     * The cipher_mode header contains a string that we have
     * to further parse, of the format
@@ -709,11 +712,11 @@ qcrypto_block_luks_open(QCryptoBlock *block,
     *
     * eg  cbc-essiv:sha256, cbc-plain64
     */
    ivgen_name = strchr(luks->header.cipher_mode, '-');
    ivgen_name = strchr(cipher_mode, '-');
    if (!ivgen_name) {
        ret = -EINVAL;
        error_setg(errp, "Unexpected cipher mode string format %s",
                   luks->header.cipher_mode);
                   cipher_mode);
        goto fail;
    }
    *ivgen_name = '\0';
@@ -735,7 +738,7 @@ qcrypto_block_luks_open(QCryptoBlock *block,
        }
    }

    ciphermode = qcrypto_block_luks_cipher_mode_lookup(luks->header.cipher_mode,
    ciphermode = qcrypto_block_luks_cipher_mode_lookup(cipher_mode,
                                                       &local_err);
    if (local_err) {
        ret = -ENOTSUP;