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.1 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
,
58 QCryptoBlock
*block
= g_new0(QCryptoBlock
, 1);
60 block
->format
= options
->format
;
62 if (options
->format
>= G_N_ELEMENTS(qcrypto_block_drivers
) ||
63 !qcrypto_block_drivers
[options
->format
]) {
64 error_setg(errp
, "Unsupported block driver %s",
65 QCryptoBlockFormat_str(options
->format
));
70 block
->driver
= qcrypto_block_drivers
[options
->format
];
72 if (block
->driver
->open(block
, options
, optprefix
,
73 readfunc
, opaque
, flags
, n_threads
, errp
) < 0)
79 qemu_mutex_init(&block
->mutex
);
85 QCryptoBlock
*qcrypto_block_create(QCryptoBlockCreateOptions
*options
,
86 const char *optprefix
,
87 QCryptoBlockInitFunc initfunc
,
88 QCryptoBlockWriteFunc writefunc
,
92 QCryptoBlock
*block
= g_new0(QCryptoBlock
, 1);
94 block
->format
= options
->format
;
96 if (options
->format
>= G_N_ELEMENTS(qcrypto_block_drivers
) ||
97 !qcrypto_block_drivers
[options
->format
]) {
98 error_setg(errp
, "Unsupported block driver %s",
99 QCryptoBlockFormat_str(options
->format
));
104 block
->driver
= qcrypto_block_drivers
[options
->format
];
106 if (block
->driver
->create(block
, options
, optprefix
, initfunc
,
107 writefunc
, opaque
, errp
) < 0) {
112 qemu_mutex_init(&block
->mutex
);
118 static ssize_t
qcrypto_block_headerlen_hdr_init_func(QCryptoBlock
*block
,
119 size_t headerlen
, void *opaque
, Error
**errp
)
121 size_t *headerlenp
= opaque
;
123 /* Stash away the payload size */
124 *headerlenp
= headerlen
;
129 static ssize_t
qcrypto_block_headerlen_hdr_write_func(QCryptoBlock
*block
,
130 size_t offset
, const uint8_t *buf
, size_t buflen
,
131 void *opaque
, Error
**errp
)
133 /* Discard the bytes, we're not actually writing to an image */
139 qcrypto_block_calculate_payload_offset(QCryptoBlockCreateOptions
*create_opts
,
140 const char *optprefix
,
144 /* Fake LUKS creation in order to determine the payload size */
145 g_autoptr(QCryptoBlock
) crypto
=
146 qcrypto_block_create(create_opts
, optprefix
,
147 qcrypto_block_headerlen_hdr_init_func
,
148 qcrypto_block_headerlen_hdr_write_func
,
150 return crypto
!= NULL
;
154 QCryptoBlockInfo
*qcrypto_block_get_info(QCryptoBlock
*block
,
157 QCryptoBlockInfo
*info
= g_new0(QCryptoBlockInfo
, 1);
159 info
->format
= block
->format
;
161 if (block
->driver
->get_info
&&
162 block
->driver
->get_info(block
, info
, errp
) < 0) {
171 int qcrypto_block_decrypt(QCryptoBlock
*block
,
177 return block
->driver
->decrypt(block
, offset
, buf
, len
, errp
);
181 int qcrypto_block_encrypt(QCryptoBlock
*block
,
187 return block
->driver
->encrypt(block
, offset
, buf
, len
, errp
);
191 QCryptoCipher
*qcrypto_block_get_cipher(QCryptoBlock
*block
)
193 /* Ciphers should be accessed through pop/push method to be thread-safe.
194 * Better, they should not be accessed externally at all (note, that
195 * pop/push are static functions)
196 * This function is used only in test with one thread (it's safe to skip
197 * pop/push interface), so it's enough to assert it here:
199 assert(block
->n_ciphers
<= 1);
200 return block
->ciphers
? block
->ciphers
[0] : NULL
;
204 static QCryptoCipher
*qcrypto_block_pop_cipher(QCryptoBlock
*block
)
206 QCryptoCipher
*cipher
;
208 qemu_mutex_lock(&block
->mutex
);
210 assert(block
->n_free_ciphers
> 0);
211 block
->n_free_ciphers
--;
212 cipher
= block
->ciphers
[block
->n_free_ciphers
];
214 qemu_mutex_unlock(&block
->mutex
);
220 static void qcrypto_block_push_cipher(QCryptoBlock
*block
,
221 QCryptoCipher
*cipher
)
223 qemu_mutex_lock(&block
->mutex
);
225 assert(block
->n_free_ciphers
< block
->n_ciphers
);
226 block
->ciphers
[block
->n_free_ciphers
] = cipher
;
227 block
->n_free_ciphers
++;
229 qemu_mutex_unlock(&block
->mutex
);
233 int qcrypto_block_init_cipher(QCryptoBlock
*block
,
234 QCryptoCipherAlgorithm alg
,
235 QCryptoCipherMode mode
,
236 const uint8_t *key
, size_t nkey
,
237 size_t n_threads
, Error
**errp
)
241 assert(!block
->ciphers
&& !block
->n_ciphers
&& !block
->n_free_ciphers
);
243 block
->ciphers
= g_new0(QCryptoCipher
*, n_threads
);
245 for (i
= 0; i
< n_threads
; i
++) {
246 block
->ciphers
[i
] = qcrypto_cipher_new(alg
, mode
, key
, nkey
, errp
);
247 if (!block
->ciphers
[i
]) {
248 qcrypto_block_free_cipher(block
);
252 block
->n_free_ciphers
++;
259 void qcrypto_block_free_cipher(QCryptoBlock
*block
)
263 if (!block
->ciphers
) {
267 assert(block
->n_ciphers
== block
->n_free_ciphers
);
269 for (i
= 0; i
< block
->n_ciphers
; i
++) {
270 qcrypto_cipher_free(block
->ciphers
[i
]);
273 g_free(block
->ciphers
);
274 block
->ciphers
= NULL
;
275 block
->n_ciphers
= block
->n_free_ciphers
= 0;
278 QCryptoIVGen
*qcrypto_block_get_ivgen(QCryptoBlock
*block
)
280 /* ivgen should be accessed under mutex. However, this function is used only
281 * in test with one thread, so it's enough to assert it here:
283 assert(block
->n_ciphers
<= 1);
288 QCryptoHashAlgorithm
qcrypto_block_get_kdf_hash(QCryptoBlock
*block
)
290 return block
->kdfhash
;
294 uint64_t qcrypto_block_get_payload_offset(QCryptoBlock
*block
)
296 return block
->payload_offset
;
300 uint64_t qcrypto_block_get_sector_size(QCryptoBlock
*block
)
302 return block
->sector_size
;
306 void qcrypto_block_free(QCryptoBlock
*block
)
312 block
->driver
->cleanup(block
);
314 qcrypto_block_free_cipher(block
);
315 qcrypto_ivgen_free(block
->ivgen
);
316 qemu_mutex_destroy(&block
->mutex
);
321 typedef int (*QCryptoCipherEncDecFunc
)(QCryptoCipher
*cipher
,
327 static int do_qcrypto_block_cipher_encdec(QCryptoCipher
*cipher
,
330 QemuMutex
*ivgen_mutex
,
335 QCryptoCipherEncDecFunc func
,
338 g_autofree
uint8_t *iv
= niv
? g_new0(uint8_t, niv
) : NULL
;
340 uint64_t startsector
= offset
/ sectorsize
;
342 assert(QEMU_IS_ALIGNED(offset
, sectorsize
));
343 assert(QEMU_IS_ALIGNED(len
, sectorsize
));
349 qemu_mutex_lock(ivgen_mutex
);
351 ret
= qcrypto_ivgen_calculate(ivgen
, startsector
, iv
, niv
, errp
);
353 qemu_mutex_unlock(ivgen_mutex
);
360 if (qcrypto_cipher_setiv(cipher
,
367 nbytes
= len
> sectorsize
? sectorsize
: len
;
368 if (func(cipher
, buf
, buf
, nbytes
, errp
) < 0) {
381 int qcrypto_block_cipher_decrypt_helper(QCryptoCipher
*cipher
,
390 return do_qcrypto_block_cipher_encdec(cipher
, niv
, ivgen
, NULL
, sectorsize
,
392 qcrypto_cipher_decrypt
, errp
);
396 int qcrypto_block_cipher_encrypt_helper(QCryptoCipher
*cipher
,
405 return do_qcrypto_block_cipher_encdec(cipher
, niv
, ivgen
, NULL
, sectorsize
,
407 qcrypto_cipher_encrypt
, errp
);
410 int qcrypto_block_decrypt_helper(QCryptoBlock
*block
,
418 QCryptoCipher
*cipher
= qcrypto_block_pop_cipher(block
);
420 ret
= do_qcrypto_block_cipher_encdec(cipher
, block
->niv
, block
->ivgen
,
421 &block
->mutex
, sectorsize
, offset
, buf
,
422 len
, qcrypto_cipher_decrypt
, errp
);
424 qcrypto_block_push_cipher(block
, cipher
);
429 int qcrypto_block_encrypt_helper(QCryptoBlock
*block
,
437 QCryptoCipher
*cipher
= qcrypto_block_pop_cipher(block
);
439 ret
= do_qcrypto_block_cipher_encdec(cipher
, block
->niv
, block
->ivgen
,
440 &block
->mutex
, sectorsize
, offset
, buf
,
441 len
, qcrypto_cipher_encrypt
, errp
);
443 qcrypto_block_push_cipher(block
, cipher
);