2 * QEMU Crypto cipher built-in algorithms
4 * Copyright (c) 2015 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 "crypto/aes.h"
23 #include "crypto/desrfb.h"
24 #include "crypto/xts.h"
25 #include "cipherpriv.h"
27 typedef struct QCryptoCipherBuiltinAESContext QCryptoCipherBuiltinAESContext;
28 struct QCryptoCipherBuiltinAESContext {
32 typedef struct QCryptoCipherBuiltinAES QCryptoCipherBuiltinAES;
33 struct QCryptoCipherBuiltinAES {
34 QCryptoCipherBuiltinAESContext key;
35 QCryptoCipherBuiltinAESContext key_tweak;
36 uint8_t iv[AES_BLOCK_SIZE];
38 typedef struct QCryptoCipherBuiltinDESRFB QCryptoCipherBuiltinDESRFB;
39 struct QCryptoCipherBuiltinDESRFB {
44 typedef struct QCryptoCipherBuiltin QCryptoCipherBuiltin;
45 struct QCryptoCipherBuiltin {
47 QCryptoCipherBuiltinAES aes;
48 QCryptoCipherBuiltinDESRFB desrfb;
51 void (*free)(QCryptoCipher *cipher);
52 int (*setiv)(QCryptoCipher *cipher,
53 const uint8_t *iv, size_t niv,
55 int (*encrypt)(QCryptoCipher *cipher,
60 int (*decrypt)(QCryptoCipher *cipher,
68 static void qcrypto_cipher_free_aes(QCryptoCipher *cipher)
70 QCryptoCipherBuiltin *ctxt = cipher->opaque;
73 cipher->opaque = NULL;
77 static void qcrypto_cipher_aes_ecb_encrypt(const AES_KEY *key,
82 const uint8_t *inptr = in;
83 uint8_t *outptr = out;
85 if (len > AES_BLOCK_SIZE) {
86 AES_encrypt(inptr, outptr, key);
87 inptr += AES_BLOCK_SIZE;
88 outptr += AES_BLOCK_SIZE;
89 len -= AES_BLOCK_SIZE;
91 uint8_t tmp1[AES_BLOCK_SIZE], tmp2[AES_BLOCK_SIZE];
92 memcpy(tmp1, inptr, len);
93 /* Fill with 0 to avoid valgrind uninitialized reads */
94 memset(tmp1 + len, 0, sizeof(tmp1) - len);
95 AES_encrypt(tmp1, tmp2, key);
96 memcpy(outptr, tmp2, len);
103 static void qcrypto_cipher_aes_ecb_decrypt(const AES_KEY *key,
108 const uint8_t *inptr = in;
109 uint8_t *outptr = out;
111 if (len > AES_BLOCK_SIZE) {
112 AES_decrypt(inptr, outptr, key);
113 inptr += AES_BLOCK_SIZE;
114 outptr += AES_BLOCK_SIZE;
115 len -= AES_BLOCK_SIZE;
117 uint8_t tmp1[AES_BLOCK_SIZE], tmp2[AES_BLOCK_SIZE];
118 memcpy(tmp1, inptr, len);
119 /* Fill with 0 to avoid valgrind uninitialized reads */
120 memset(tmp1 + len, 0, sizeof(tmp1) - len);
121 AES_decrypt(tmp1, tmp2, key);
122 memcpy(outptr, tmp2, len);
129 static void qcrypto_cipher_aes_xts_encrypt(const void *ctx,
134 const QCryptoCipherBuiltinAESContext *aesctx = ctx;
136 qcrypto_cipher_aes_ecb_encrypt(&aesctx->enc, src, dst, length);
140 static void qcrypto_cipher_aes_xts_decrypt(const void *ctx,
145 const QCryptoCipherBuiltinAESContext *aesctx = ctx;
147 qcrypto_cipher_aes_ecb_decrypt(&aesctx->dec, src, dst, length);
151 static int qcrypto_cipher_encrypt_aes(QCryptoCipher *cipher,
157 QCryptoCipherBuiltin *ctxt = cipher->opaque;
159 switch (cipher->mode) {
160 case QCRYPTO_CIPHER_MODE_ECB:
161 qcrypto_cipher_aes_ecb_encrypt(&ctxt->state.aes.key.enc,
164 case QCRYPTO_CIPHER_MODE_CBC:
165 AES_cbc_encrypt(in, out, len,
166 &ctxt->state.aes.key.enc,
167 ctxt->state.aes.iv, 1);
169 case QCRYPTO_CIPHER_MODE_XTS:
170 xts_encrypt(&ctxt->state.aes.key,
171 &ctxt->state.aes.key_tweak,
172 qcrypto_cipher_aes_xts_encrypt,
173 qcrypto_cipher_aes_xts_decrypt,
178 g_assert_not_reached();
185 static int qcrypto_cipher_decrypt_aes(QCryptoCipher *cipher,
191 QCryptoCipherBuiltin *ctxt = cipher->opaque;
193 switch (cipher->mode) {
194 case QCRYPTO_CIPHER_MODE_ECB:
195 qcrypto_cipher_aes_ecb_decrypt(&ctxt->state.aes.key.dec,
198 case QCRYPTO_CIPHER_MODE_CBC:
199 AES_cbc_encrypt(in, out, len,
200 &ctxt->state.aes.key.dec,
201 ctxt->state.aes.iv, 0);
203 case QCRYPTO_CIPHER_MODE_XTS:
204 xts_decrypt(&ctxt->state.aes.key,
205 &ctxt->state.aes.key_tweak,
206 qcrypto_cipher_aes_xts_encrypt,
207 qcrypto_cipher_aes_xts_decrypt,
212 g_assert_not_reached();
218 static int qcrypto_cipher_setiv_aes(QCryptoCipher *cipher,
219 const uint8_t *iv, size_t niv,
222 QCryptoCipherBuiltin *ctxt = cipher->opaque;
223 if (niv != AES_BLOCK_SIZE) {
224 error_setg(errp, "IV must be %d bytes not %zu",
225 AES_BLOCK_SIZE, niv);
229 memcpy(ctxt->state.aes.iv, iv, AES_BLOCK_SIZE);
237 static QCryptoCipherBuiltin *
238 qcrypto_cipher_init_aes(QCryptoCipherMode mode,
239 const uint8_t *key, size_t nkey,
242 QCryptoCipherBuiltin *ctxt;
244 if (mode != QCRYPTO_CIPHER_MODE_CBC &&
245 mode != QCRYPTO_CIPHER_MODE_ECB &&
246 mode != QCRYPTO_CIPHER_MODE_XTS) {
247 error_setg(errp, "Unsupported cipher mode %s",
248 QCryptoCipherMode_str(mode));
252 ctxt = g_new0(QCryptoCipherBuiltin, 1);
254 if (mode == QCRYPTO_CIPHER_MODE_XTS) {
255 if (AES_set_encrypt_key(key, nkey * 4, &ctxt->state.aes.key.enc) != 0) {
256 error_setg(errp, "Failed to set encryption key");
260 if (AES_set_decrypt_key(key, nkey * 4, &ctxt->state.aes.key.dec) != 0) {
261 error_setg(errp, "Failed to set decryption key");
265 if (AES_set_encrypt_key(key + (nkey / 2), nkey * 4,
266 &ctxt->state.aes.key_tweak.enc) != 0) {
267 error_setg(errp, "Failed to set encryption key");
271 if (AES_set_decrypt_key(key + (nkey / 2), nkey * 4,
272 &ctxt->state.aes.key_tweak.dec) != 0) {
273 error_setg(errp, "Failed to set decryption key");
277 if (AES_set_encrypt_key(key, nkey * 8, &ctxt->state.aes.key.enc) != 0) {
278 error_setg(errp, "Failed to set encryption key");
282 if (AES_set_decrypt_key(key, nkey * 8, &ctxt->state.aes.key.dec) != 0) {
283 error_setg(errp, "Failed to set decryption key");
288 ctxt->blocksize = AES_BLOCK_SIZE;
289 ctxt->free = qcrypto_cipher_free_aes;
290 ctxt->setiv = qcrypto_cipher_setiv_aes;
291 ctxt->encrypt = qcrypto_cipher_encrypt_aes;
292 ctxt->decrypt = qcrypto_cipher_decrypt_aes;
302 static void qcrypto_cipher_free_des_rfb(QCryptoCipher *cipher)
304 QCryptoCipherBuiltin *ctxt = cipher->opaque;
306 g_free(ctxt->state.desrfb.key);
308 cipher->opaque = NULL;
312 static int qcrypto_cipher_encrypt_des_rfb(QCryptoCipher *cipher,
318 QCryptoCipherBuiltin *ctxt = cipher->opaque;
322 error_setg(errp, "Buffer size must be multiple of 8 not %zu",
327 deskey(ctxt->state.desrfb.key, EN0);
329 for (i = 0; i < len; i += 8) {
330 des((void *)in + i, out + i);
337 static int qcrypto_cipher_decrypt_des_rfb(QCryptoCipher *cipher,
343 QCryptoCipherBuiltin *ctxt = cipher->opaque;
347 error_setg(errp, "Buffer size must be multiple of 8 not %zu",
352 deskey(ctxt->state.desrfb.key, DE1);
354 for (i = 0; i < len; i += 8) {
355 des((void *)in + i, out + i);
362 static int qcrypto_cipher_setiv_des_rfb(QCryptoCipher *cipher,
363 const uint8_t *iv, size_t niv,
366 error_setg(errp, "Setting IV is not supported");
371 static QCryptoCipherBuiltin *
372 qcrypto_cipher_init_des_rfb(QCryptoCipherMode mode,
373 const uint8_t *key, size_t nkey,
376 QCryptoCipherBuiltin *ctxt;
378 if (mode != QCRYPTO_CIPHER_MODE_ECB) {
379 error_setg(errp, "Unsupported cipher mode %s",
380 QCryptoCipherMode_str(mode));
384 ctxt = g_new0(QCryptoCipherBuiltin, 1);
386 ctxt->state.desrfb.key = g_new0(uint8_t, nkey);
387 memcpy(ctxt->state.desrfb.key, key, nkey);
388 ctxt->state.desrfb.nkey = nkey;
391 ctxt->free = qcrypto_cipher_free_des_rfb;
392 ctxt->setiv = qcrypto_cipher_setiv_des_rfb;
393 ctxt->encrypt = qcrypto_cipher_encrypt_des_rfb;
394 ctxt->decrypt = qcrypto_cipher_decrypt_des_rfb;
400 bool qcrypto_cipher_supports(QCryptoCipherAlgorithm alg,
401 QCryptoCipherMode mode)
404 case QCRYPTO_CIPHER_ALG_DES_RFB:
405 case QCRYPTO_CIPHER_ALG_AES_128:
406 case QCRYPTO_CIPHER_ALG_AES_192:
407 case QCRYPTO_CIPHER_ALG_AES_256:
414 case QCRYPTO_CIPHER_MODE_ECB:
415 case QCRYPTO_CIPHER_MODE_CBC:
416 case QCRYPTO_CIPHER_MODE_XTS:
418 case QCRYPTO_CIPHER_MODE_CTR:
426 static QCryptoCipherBuiltin *qcrypto_cipher_ctx_new(QCryptoCipherAlgorithm alg,
427 QCryptoCipherMode mode,
432 QCryptoCipherBuiltin *ctxt;
435 case QCRYPTO_CIPHER_MODE_ECB:
436 case QCRYPTO_CIPHER_MODE_CBC:
437 case QCRYPTO_CIPHER_MODE_XTS:
440 error_setg(errp, "Unsupported cipher mode %s",
441 QCryptoCipherMode_str(mode));
445 if (!qcrypto_cipher_validate_key_length(alg, mode, nkey, errp)) {
450 case QCRYPTO_CIPHER_ALG_DES_RFB:
451 ctxt = qcrypto_cipher_init_des_rfb(mode, key, nkey, errp);
453 case QCRYPTO_CIPHER_ALG_AES_128:
454 case QCRYPTO_CIPHER_ALG_AES_192:
455 case QCRYPTO_CIPHER_ALG_AES_256:
456 ctxt = qcrypto_cipher_init_aes(mode, key, nkey, errp);
460 "Unsupported cipher algorithm %s",
461 QCryptoCipherAlgorithm_str(alg));
469 qcrypto_builtin_cipher_ctx_free(QCryptoCipher *cipher)
471 QCryptoCipherBuiltin *ctxt;
473 ctxt = cipher->opaque;
479 qcrypto_builtin_cipher_encrypt(QCryptoCipher *cipher,
485 QCryptoCipherBuiltin *ctxt = cipher->opaque;
487 if (len % ctxt->blocksize) {
488 error_setg(errp, "Length %zu must be a multiple of block size %zu",
489 len, ctxt->blocksize);
493 return ctxt->encrypt(cipher, in, out, len, errp);
498 qcrypto_builtin_cipher_decrypt(QCryptoCipher *cipher,
504 QCryptoCipherBuiltin *ctxt = cipher->opaque;
506 if (len % ctxt->blocksize) {
507 error_setg(errp, "Length %zu must be a multiple of block size %zu",
508 len, ctxt->blocksize);
512 return ctxt->decrypt(cipher, in, out, len, errp);
517 qcrypto_builtin_cipher_setiv(QCryptoCipher *cipher,
518 const uint8_t *iv, size_t niv,
521 QCryptoCipherBuiltin *ctxt = cipher->opaque;
523 return ctxt->setiv(cipher, iv, niv, errp);
527 static struct QCryptoCipherDriver qcrypto_cipher_lib_driver = {
528 .cipher_encrypt = qcrypto_builtin_cipher_encrypt,
529 .cipher_decrypt = qcrypto_builtin_cipher_decrypt,
530 .cipher_setiv = qcrypto_builtin_cipher_setiv,
531 .cipher_free = qcrypto_builtin_cipher_ctx_free,