2 * QEMU Crypto block device encryption
4 * Copyright (c) 2015-2016 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "qapi/error.h"
23 #include "blockpriv.h"
24 #include "block-qcow.h"
25 #include "block-luks.h"
27 static const QCryptoBlockDriver
*qcrypto_block_drivers
[] = {
28 [Q_CRYPTO_BLOCK_FORMAT_QCOW
] = &qcrypto_block_driver_qcow
,
29 [Q_CRYPTO_BLOCK_FORMAT_LUKS
] = &qcrypto_block_driver_luks
,
33 bool qcrypto_block_has_format(QCryptoBlockFormat format
,
37 const QCryptoBlockDriver
*driver
;
39 if (format
>= G_N_ELEMENTS(qcrypto_block_drivers
) ||
40 !qcrypto_block_drivers
[format
]) {
44 driver
= qcrypto_block_drivers
[format
];
46 return driver
->has_format(buf
, len
);
50 QCryptoBlock
*qcrypto_block_open(QCryptoBlockOpenOptions
*options
,
51 const char *optprefix
,
52 QCryptoBlockReadFunc readfunc
,
57 QCryptoBlock
*block
= g_new0(QCryptoBlock
, 1);
59 block
->format
= options
->format
;
61 if (options
->format
>= G_N_ELEMENTS(qcrypto_block_drivers
) ||
62 !qcrypto_block_drivers
[options
->format
]) {
63 error_setg(errp
, "Unsupported block driver %s",
64 QCryptoBlockFormat_str(options
->format
));
69 block
->driver
= qcrypto_block_drivers
[options
->format
];
71 if (block
->driver
->open(block
, options
, optprefix
,
72 readfunc
, opaque
, flags
, errp
) < 0) {
81 QCryptoBlock
*qcrypto_block_create(QCryptoBlockCreateOptions
*options
,
82 const char *optprefix
,
83 QCryptoBlockInitFunc initfunc
,
84 QCryptoBlockWriteFunc writefunc
,
88 QCryptoBlock
*block
= g_new0(QCryptoBlock
, 1);
90 block
->format
= options
->format
;
92 if (options
->format
>= G_N_ELEMENTS(qcrypto_block_drivers
) ||
93 !qcrypto_block_drivers
[options
->format
]) {
94 error_setg(errp
, "Unsupported block driver %s",
95 QCryptoBlockFormat_str(options
->format
));
100 block
->driver
= qcrypto_block_drivers
[options
->format
];
102 if (block
->driver
->create(block
, options
, optprefix
, initfunc
,
103 writefunc
, opaque
, errp
) < 0) {
112 QCryptoBlockInfo
*qcrypto_block_get_info(QCryptoBlock
*block
,
115 QCryptoBlockInfo
*info
= g_new0(QCryptoBlockInfo
, 1);
117 info
->format
= block
->format
;
119 if (block
->driver
->get_info
&&
120 block
->driver
->get_info(block
, info
, errp
) < 0) {
129 int qcrypto_block_decrypt(QCryptoBlock
*block
,
135 return block
->driver
->decrypt(block
, offset
, buf
, len
, errp
);
139 int qcrypto_block_encrypt(QCryptoBlock
*block
,
145 return block
->driver
->encrypt(block
, offset
, buf
, len
, errp
);
149 QCryptoCipher
*qcrypto_block_get_cipher(QCryptoBlock
*block
)
151 return block
->cipher
;
155 QCryptoIVGen
*qcrypto_block_get_ivgen(QCryptoBlock
*block
)
161 QCryptoHashAlgorithm
qcrypto_block_get_kdf_hash(QCryptoBlock
*block
)
163 return block
->kdfhash
;
167 uint64_t qcrypto_block_get_payload_offset(QCryptoBlock
*block
)
169 return block
->payload_offset
;
173 uint64_t qcrypto_block_get_sector_size(QCryptoBlock
*block
)
175 return block
->sector_size
;
179 void qcrypto_block_free(QCryptoBlock
*block
)
185 block
->driver
->cleanup(block
);
187 qcrypto_cipher_free(block
->cipher
);
188 qcrypto_ivgen_free(block
->ivgen
);
193 int qcrypto_block_decrypt_helper(QCryptoCipher
*cipher
,
204 uint64_t startsector
= offset
/ sectorsize
;
206 assert(QEMU_IS_ALIGNED(offset
, sectorsize
));
207 assert(QEMU_IS_ALIGNED(len
, sectorsize
));
209 iv
= niv
? g_new0(uint8_t, niv
) : NULL
;
214 if (qcrypto_ivgen_calculate(ivgen
,
221 if (qcrypto_cipher_setiv(cipher
,
228 nbytes
= len
> sectorsize
? sectorsize
: len
;
229 if (qcrypto_cipher_decrypt(cipher
, buf
, buf
,
246 int qcrypto_block_encrypt_helper(QCryptoCipher
*cipher
,
257 uint64_t startsector
= offset
/ sectorsize
;
259 assert(QEMU_IS_ALIGNED(offset
, sectorsize
));
260 assert(QEMU_IS_ALIGNED(len
, sectorsize
));
262 iv
= niv
? g_new0(uint8_t, niv
) : NULL
;
267 if (qcrypto_ivgen_calculate(ivgen
,
274 if (qcrypto_cipher_setiv(cipher
,
281 nbytes
= len
> sectorsize
? sectorsize
: len
;
282 if (qcrypto_cipher_encrypt(cipher
, buf
, buf
,