virtio_crypto_algs.c 17.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
G
Gonglei 已提交
2 3 4 5 6 7 8 9 10
 /* Algorithms supported by virtio crypto device
  *
  * Authors: Gonglei <arei.gonglei@huawei.com>
  *
  * Copyright 2016 HUAWEI TECHNOLOGIES CO., LTD.
  */

#include <linux/scatterlist.h>
#include <crypto/algapi.h>
11
#include <crypto/internal/skcipher.h>
G
Gonglei 已提交
12 13 14 15 16 17 18
#include <linux/err.h>
#include <crypto/scatterwalk.h>
#include <linux/atomic.h>

#include <uapi/linux/virtio_crypto.h>
#include "virtio_crypto_common.h"

19

20
struct virtio_crypto_skcipher_ctx {
21
	struct crypto_engine_ctx enginectx;
22
	struct virtio_crypto *vcrypto;
23
	struct crypto_skcipher *tfm;
24 25 26 27 28 29 30 31 32 33

	struct virtio_crypto_sym_session_info enc_sess_info;
	struct virtio_crypto_sym_session_info dec_sess_info;
};

struct virtio_crypto_sym_request {
	struct virtio_crypto_request base;

	/* Cipher or aead */
	uint32_t type;
34 35
	struct virtio_crypto_skcipher_ctx *skcipher_ctx;
	struct skcipher_request *skcipher_req;
36 37 38 39 40
	uint8_t *iv;
	/* Encryption? */
	bool encrypt;
};

41 42 43 44
struct virtio_crypto_algo {
	uint32_t algonum;
	uint32_t service;
	unsigned int active_devs;
45
	struct skcipher_alg algo;
46 47
};

G
Gonglei 已提交
48 49 50 51 52
/*
 * The algs_lock protects the below global virtio_crypto_active_devs
 * and crypto algorithms registion.
 */
static DEFINE_MUTEX(algs_lock);
53
static void virtio_crypto_skcipher_finalize_req(
54
	struct virtio_crypto_sym_request *vc_sym_req,
55
	struct skcipher_request *req,
56 57 58 59 60 61 62
	int err);

static void virtio_crypto_dataq_sym_callback
		(struct virtio_crypto_request *vc_req, int len)
{
	struct virtio_crypto_sym_request *vc_sym_req =
		container_of(vc_req, struct virtio_crypto_sym_request, base);
63
	struct skcipher_request *ablk_req;
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
	int error;

	/* Finish the encrypt or decrypt process */
	if (vc_sym_req->type == VIRTIO_CRYPTO_SYM_OP_CIPHER) {
		switch (vc_req->status) {
		case VIRTIO_CRYPTO_OK:
			error = 0;
			break;
		case VIRTIO_CRYPTO_INVSESS:
		case VIRTIO_CRYPTO_ERR:
			error = -EINVAL;
			break;
		case VIRTIO_CRYPTO_BADMSG:
			error = -EBADMSG;
			break;
		default:
			error = -EIO;
			break;
		}
83 84
		ablk_req = vc_sym_req->skcipher_req;
		virtio_crypto_skcipher_finalize_req(vc_sym_req,
85 86 87
							ablk_req, error);
	}
}
G
Gonglei 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

static u64 virtio_crypto_alg_sg_nents_length(struct scatterlist *sg)
{
	u64 total = 0;

	for (total = 0; sg; sg = sg_next(sg))
		total += sg->length;

	return total;
}

static int
virtio_crypto_alg_validate_key(int key_len, uint32_t *alg)
{
	switch (key_len) {
	case AES_KEYSIZE_128:
	case AES_KEYSIZE_192:
	case AES_KEYSIZE_256:
		*alg = VIRTIO_CRYPTO_CIPHER_AES_CBC;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

114 115
static int virtio_crypto_alg_skcipher_init_session(
		struct virtio_crypto_skcipher_ctx *ctx,
G
Gonglei 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		uint32_t alg, const uint8_t *key,
		unsigned int keylen,
		int encrypt)
{
	struct scatterlist outhdr, key_sg, inhdr, *sgs[3];
	unsigned int tmp;
	struct virtio_crypto *vcrypto = ctx->vcrypto;
	int op = encrypt ? VIRTIO_CRYPTO_OP_ENCRYPT : VIRTIO_CRYPTO_OP_DECRYPT;
	int err;
	unsigned int num_out = 0, num_in = 0;

	/*
	 * Avoid to do DMA from the stack, switch to using
	 * dynamically-allocated for the key
	 */
131
	uint8_t *cipher_key = kmemdup(key, keylen, GFP_ATOMIC);
G
Gonglei 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203

	if (!cipher_key)
		return -ENOMEM;

	spin_lock(&vcrypto->ctrl_lock);
	/* Pad ctrl header */
	vcrypto->ctrl.header.opcode =
		cpu_to_le32(VIRTIO_CRYPTO_CIPHER_CREATE_SESSION);
	vcrypto->ctrl.header.algo = cpu_to_le32(alg);
	/* Set the default dataqueue id to 0 */
	vcrypto->ctrl.header.queue_id = 0;

	vcrypto->input.status = cpu_to_le32(VIRTIO_CRYPTO_ERR);
	/* Pad cipher's parameters */
	vcrypto->ctrl.u.sym_create_session.op_type =
		cpu_to_le32(VIRTIO_CRYPTO_SYM_OP_CIPHER);
	vcrypto->ctrl.u.sym_create_session.u.cipher.para.algo =
		vcrypto->ctrl.header.algo;
	vcrypto->ctrl.u.sym_create_session.u.cipher.para.keylen =
		cpu_to_le32(keylen);
	vcrypto->ctrl.u.sym_create_session.u.cipher.para.op =
		cpu_to_le32(op);

	sg_init_one(&outhdr, &vcrypto->ctrl, sizeof(vcrypto->ctrl));
	sgs[num_out++] = &outhdr;

	/* Set key */
	sg_init_one(&key_sg, cipher_key, keylen);
	sgs[num_out++] = &key_sg;

	/* Return status and session id back */
	sg_init_one(&inhdr, &vcrypto->input, sizeof(vcrypto->input));
	sgs[num_out + num_in++] = &inhdr;

	err = virtqueue_add_sgs(vcrypto->ctrl_vq, sgs, num_out,
				num_in, vcrypto, GFP_ATOMIC);
	if (err < 0) {
		spin_unlock(&vcrypto->ctrl_lock);
		kzfree(cipher_key);
		return err;
	}
	virtqueue_kick(vcrypto->ctrl_vq);

	/*
	 * Trapping into the hypervisor, so the request should be
	 * handled immediately.
	 */
	while (!virtqueue_get_buf(vcrypto->ctrl_vq, &tmp) &&
	       !virtqueue_is_broken(vcrypto->ctrl_vq))
		cpu_relax();

	if (le32_to_cpu(vcrypto->input.status) != VIRTIO_CRYPTO_OK) {
		spin_unlock(&vcrypto->ctrl_lock);
		pr_err("virtio_crypto: Create session failed status: %u\n",
			le32_to_cpu(vcrypto->input.status));
		kzfree(cipher_key);
		return -EINVAL;
	}

	if (encrypt)
		ctx->enc_sess_info.session_id =
			le64_to_cpu(vcrypto->input.session_id);
	else
		ctx->dec_sess_info.session_id =
			le64_to_cpu(vcrypto->input.session_id);

	spin_unlock(&vcrypto->ctrl_lock);

	kzfree(cipher_key);
	return 0;
}

204 205
static int virtio_crypto_alg_skcipher_close_session(
		struct virtio_crypto_skcipher_ctx *ctx,
G
Gonglei 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
		int encrypt)
{
	struct scatterlist outhdr, status_sg, *sgs[2];
	unsigned int tmp;
	struct virtio_crypto_destroy_session_req *destroy_session;
	struct virtio_crypto *vcrypto = ctx->vcrypto;
	int err;
	unsigned int num_out = 0, num_in = 0;

	spin_lock(&vcrypto->ctrl_lock);
	vcrypto->ctrl_status.status = VIRTIO_CRYPTO_ERR;
	/* Pad ctrl header */
	vcrypto->ctrl.header.opcode =
		cpu_to_le32(VIRTIO_CRYPTO_CIPHER_DESTROY_SESSION);
	/* Set the default virtqueue id to 0 */
	vcrypto->ctrl.header.queue_id = 0;

	destroy_session = &vcrypto->ctrl.u.destroy_session;

	if (encrypt)
		destroy_session->session_id =
			cpu_to_le64(ctx->enc_sess_info.session_id);
	else
		destroy_session->session_id =
			cpu_to_le64(ctx->dec_sess_info.session_id);

	sg_init_one(&outhdr, &vcrypto->ctrl, sizeof(vcrypto->ctrl));
	sgs[num_out++] = &outhdr;

	/* Return status and session id back */
	sg_init_one(&status_sg, &vcrypto->ctrl_status.status,
		sizeof(vcrypto->ctrl_status.status));
	sgs[num_out + num_in++] = &status_sg;

	err = virtqueue_add_sgs(vcrypto->ctrl_vq, sgs, num_out,
			num_in, vcrypto, GFP_ATOMIC);
	if (err < 0) {
		spin_unlock(&vcrypto->ctrl_lock);
		return err;
	}
	virtqueue_kick(vcrypto->ctrl_vq);

	while (!virtqueue_get_buf(vcrypto->ctrl_vq, &tmp) &&
	       !virtqueue_is_broken(vcrypto->ctrl_vq))
		cpu_relax();

	if (vcrypto->ctrl_status.status != VIRTIO_CRYPTO_OK) {
		spin_unlock(&vcrypto->ctrl_lock);
		pr_err("virtio_crypto: Close session failed status: %u, session_id: 0x%llx\n",
			vcrypto->ctrl_status.status,
			destroy_session->session_id);

		return -EINVAL;
	}
	spin_unlock(&vcrypto->ctrl_lock);

	return 0;
}

265 266
static int virtio_crypto_alg_skcipher_init_sessions(
		struct virtio_crypto_skcipher_ctx *ctx,
G
Gonglei 已提交
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
		const uint8_t *key, unsigned int keylen)
{
	uint32_t alg;
	int ret;
	struct virtio_crypto *vcrypto = ctx->vcrypto;

	if (keylen > vcrypto->max_cipher_key_len) {
		pr_err("virtio_crypto: the key is too long\n");
		goto bad_key;
	}

	if (virtio_crypto_alg_validate_key(keylen, &alg))
		goto bad_key;

	/* Create encryption session */
282
	ret = virtio_crypto_alg_skcipher_init_session(ctx,
G
Gonglei 已提交
283 284 285 286
			alg, key, keylen, 1);
	if (ret)
		return ret;
	/* Create decryption session */
287
	ret = virtio_crypto_alg_skcipher_init_session(ctx,
G
Gonglei 已提交
288 289
			alg, key, keylen, 0);
	if (ret) {
290
		virtio_crypto_alg_skcipher_close_session(ctx, 1);
G
Gonglei 已提交
291 292 293 294 295
		return ret;
	}
	return 0;

bad_key:
296
	crypto_skcipher_set_flags(ctx->tfm, CRYPTO_TFM_RES_BAD_KEY_LEN);
G
Gonglei 已提交
297 298 299 300
	return -EINVAL;
}

/* Note: kernel crypto API realization */
301
static int virtio_crypto_skcipher_setkey(struct crypto_skcipher *tfm,
G
Gonglei 已提交
302 303 304
					 const uint8_t *key,
					 unsigned int keylen)
{
305
	struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
306
	uint32_t alg;
G
Gonglei 已提交
307 308
	int ret;

309 310 311 312
	ret = virtio_crypto_alg_validate_key(keylen, &alg);
	if (ret)
		return ret;

G
Gonglei 已提交
313 314 315 316
	if (!ctx->vcrypto) {
		/* New key */
		int node = virtio_crypto_get_current_node();
		struct virtio_crypto *vcrypto =
317 318
				      virtcrypto_get_dev_node(node,
				      VIRTIO_CRYPTO_SERVICE_CIPHER, alg);
G
Gonglei 已提交
319
		if (!vcrypto) {
320
			pr_err("virtio_crypto: Could not find a virtio device in the system or unsupported algo\n");
G
Gonglei 已提交
321 322 323 324 325 326
			return -ENODEV;
		}

		ctx->vcrypto = vcrypto;
	} else {
		/* Rekeying, we should close the created sessions previously */
327 328
		virtio_crypto_alg_skcipher_close_session(ctx, 1);
		virtio_crypto_alg_skcipher_close_session(ctx, 0);
G
Gonglei 已提交
329 330
	}

331
	ret = virtio_crypto_alg_skcipher_init_sessions(ctx, key, keylen);
G
Gonglei 已提交
332 333 334 335 336 337 338 339 340 341 342
	if (ret) {
		virtcrypto_dev_put(ctx->vcrypto);
		ctx->vcrypto = NULL;

		return ret;
	}

	return 0;
}

static int
343 344
__virtio_crypto_skcipher_do_req(struct virtio_crypto_sym_request *vc_sym_req,
		struct skcipher_request *req,
345
		struct data_queue *data_vq)
G
Gonglei 已提交
346
{
347 348
	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req);
	struct virtio_crypto_skcipher_ctx *ctx = vc_sym_req->skcipher_ctx;
349
	struct virtio_crypto_request *vc_req = &vc_sym_req->base;
350
	unsigned int ivsize = crypto_skcipher_ivsize(tfm);
G
Gonglei 已提交
351 352 353 354 355 356 357 358 359 360 361 362
	struct virtio_crypto *vcrypto = ctx->vcrypto;
	struct virtio_crypto_op_data_req *req_data;
	int src_nents, dst_nents;
	int err;
	unsigned long flags;
	struct scatterlist outhdr, iv_sg, status_sg, **sgs;
	int i;
	u64 dst_len;
	unsigned int num_out = 0, num_in = 0;
	int sg_total;
	uint8_t *iv;

363
	src_nents = sg_nents_for_len(req->src, req->cryptlen);
G
Gonglei 已提交
364 365 366 367 368 369 370
	dst_nents = sg_nents(req->dst);

	pr_debug("virtio_crypto: Number of sgs (src_nents: %d, dst_nents: %d)\n",
			src_nents, dst_nents);

	/* Why 3?  outhdr + iv + inhdr */
	sg_total = src_nents + dst_nents + 3;
371
	sgs = kcalloc_node(sg_total, sizeof(*sgs), GFP_KERNEL,
G
Gonglei 已提交
372 373 374 375
				dev_to_node(&vcrypto->vdev->dev));
	if (!sgs)
		return -ENOMEM;

376
	req_data = kzalloc_node(sizeof(*req_data), GFP_KERNEL,
G
Gonglei 已提交
377 378 379 380 381 382 383
				dev_to_node(&vcrypto->vdev->dev));
	if (!req_data) {
		kfree(sgs);
		return -ENOMEM;
	}

	vc_req->req_data = req_data;
384
	vc_sym_req->type = VIRTIO_CRYPTO_SYM_OP_CIPHER;
G
Gonglei 已提交
385
	/* Head of operation */
386
	if (vc_sym_req->encrypt) {
G
Gonglei 已提交
387 388 389 390 391 392 393
		req_data->header.session_id =
			cpu_to_le64(ctx->enc_sess_info.session_id);
		req_data->header.opcode =
			cpu_to_le32(VIRTIO_CRYPTO_CIPHER_ENCRYPT);
	} else {
		req_data->header.session_id =
			cpu_to_le64(ctx->dec_sess_info.session_id);
394
		req_data->header.opcode =
G
Gonglei 已提交
395 396 397 398 399
			cpu_to_le32(VIRTIO_CRYPTO_CIPHER_DECRYPT);
	}
	req_data->u.sym_req.op_type = cpu_to_le32(VIRTIO_CRYPTO_SYM_OP_CIPHER);
	req_data->u.sym_req.u.cipher.para.iv_len = cpu_to_le32(ivsize);
	req_data->u.sym_req.u.cipher.para.src_data_len =
400
			cpu_to_le32(req->cryptlen);
G
Gonglei 已提交
401 402 403 404 405 406 407 408 409

	dst_len = virtio_crypto_alg_sg_nents_length(req->dst);
	if (unlikely(dst_len > U32_MAX)) {
		pr_err("virtio_crypto: The dst_len is beyond U32_MAX\n");
		err = -EINVAL;
		goto free;
	}

	pr_debug("virtio_crypto: src_len: %u, dst_len: %llu\n",
410
			req->cryptlen, dst_len);
G
Gonglei 已提交
411

412
	if (unlikely(req->cryptlen + dst_len + ivsize +
G
Gonglei 已提交
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
		sizeof(vc_req->status) > vcrypto->max_size)) {
		pr_err("virtio_crypto: The length is too big\n");
		err = -EINVAL;
		goto free;
	}

	req_data->u.sym_req.u.cipher.para.dst_data_len =
			cpu_to_le32((uint32_t)dst_len);

	/* Outhdr */
	sg_init_one(&outhdr, req_data, sizeof(*req_data));
	sgs[num_out++] = &outhdr;

	/* IV */

	/*
	 * Avoid to do DMA from the stack, switch to using
	 * dynamically-allocated for the IV
	 */
	iv = kzalloc_node(ivsize, GFP_ATOMIC,
				dev_to_node(&vcrypto->vdev->dev));
	if (!iv) {
		err = -ENOMEM;
		goto free;
	}
438
	memcpy(iv, req->iv, ivsize);
439
	if (!vc_sym_req->encrypt)
440 441
		scatterwalk_map_and_copy(req->iv, req->src,
					 req->cryptlen - AES_BLOCK_SIZE,
442 443
					 AES_BLOCK_SIZE, 0);

G
Gonglei 已提交
444 445
	sg_init_one(&iv_sg, iv, ivsize);
	sgs[num_out++] = &iv_sg;
446
	vc_sym_req->iv = iv;
G
Gonglei 已提交
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479

	/* Source data */
	for (i = 0; i < src_nents; i++)
		sgs[num_out++] = &req->src[i];

	/* Destination data */
	for (i = 0; i < dst_nents; i++)
		sgs[num_out + num_in++] = &req->dst[i];

	/* Status */
	sg_init_one(&status_sg, &vc_req->status, sizeof(vc_req->status));
	sgs[num_out + num_in++] = &status_sg;

	vc_req->sgs = sgs;

	spin_lock_irqsave(&data_vq->lock, flags);
	err = virtqueue_add_sgs(data_vq->vq, sgs, num_out,
				num_in, vc_req, GFP_ATOMIC);
	virtqueue_kick(data_vq->vq);
	spin_unlock_irqrestore(&data_vq->lock, flags);
	if (unlikely(err < 0))
		goto free_iv;

	return 0;

free_iv:
	kzfree(iv);
free:
	kzfree(req_data);
	kfree(sgs);
	return err;
}

480
static int virtio_crypto_skcipher_encrypt(struct skcipher_request *req)
G
Gonglei 已提交
481
{
482 483
	struct crypto_skcipher *atfm = crypto_skcipher_reqtfm(req);
	struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(atfm);
484
	struct virtio_crypto_sym_request *vc_sym_req =
485
				skcipher_request_ctx(req);
486
	struct virtio_crypto_request *vc_req = &vc_sym_req->base;
G
Gonglei 已提交
487 488 489 490
	struct virtio_crypto *vcrypto = ctx->vcrypto;
	/* Use the first data virtqueue as default */
	struct data_queue *data_vq = &vcrypto->data_vq[0];

491
	if (!req->cryptlen)
492
		return 0;
493
	if (req->cryptlen % AES_BLOCK_SIZE)
494 495
		return -EINVAL;

496
	vc_req->dataq = data_vq;
497
	vc_req->alg_cb = virtio_crypto_dataq_sym_callback;
498 499
	vc_sym_req->skcipher_ctx = ctx;
	vc_sym_req->skcipher_req = req;
500
	vc_sym_req->encrypt = true;
G
Gonglei 已提交
501

502
	return crypto_transfer_skcipher_request_to_engine(data_vq->engine, req);
G
Gonglei 已提交
503 504
}

505
static int virtio_crypto_skcipher_decrypt(struct skcipher_request *req)
G
Gonglei 已提交
506
{
507 508
	struct crypto_skcipher *atfm = crypto_skcipher_reqtfm(req);
	struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(atfm);
509
	struct virtio_crypto_sym_request *vc_sym_req =
510
				skcipher_request_ctx(req);
511
	struct virtio_crypto_request *vc_req = &vc_sym_req->base;
G
Gonglei 已提交
512 513 514 515
	struct virtio_crypto *vcrypto = ctx->vcrypto;
	/* Use the first data virtqueue as default */
	struct data_queue *data_vq = &vcrypto->data_vq[0];

516
	if (!req->cryptlen)
517
		return 0;
518
	if (req->cryptlen % AES_BLOCK_SIZE)
519 520
		return -EINVAL;

521
	vc_req->dataq = data_vq;
522
	vc_req->alg_cb = virtio_crypto_dataq_sym_callback;
523 524
	vc_sym_req->skcipher_ctx = ctx;
	vc_sym_req->skcipher_req = req;
525
	vc_sym_req->encrypt = false;
G
Gonglei 已提交
526

527
	return crypto_transfer_skcipher_request_to_engine(data_vq->engine, req);
G
Gonglei 已提交
528 529
}

530
static int virtio_crypto_skcipher_init(struct crypto_skcipher *tfm)
G
Gonglei 已提交
531
{
532
	struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
G
Gonglei 已提交
533

534
	crypto_skcipher_set_reqsize(tfm, sizeof(struct virtio_crypto_sym_request));
G
Gonglei 已提交
535 536
	ctx->tfm = tfm;

537
	ctx->enginectx.op.do_one_request = virtio_crypto_skcipher_crypt_req;
538 539
	ctx->enginectx.op.prepare_request = NULL;
	ctx->enginectx.op.unprepare_request = NULL;
G
Gonglei 已提交
540 541 542
	return 0;
}

543
static void virtio_crypto_skcipher_exit(struct crypto_skcipher *tfm)
G
Gonglei 已提交
544
{
545
	struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm);
G
Gonglei 已提交
546 547 548 549

	if (!ctx->vcrypto)
		return;

550 551
	virtio_crypto_alg_skcipher_close_session(ctx, 1);
	virtio_crypto_alg_skcipher_close_session(ctx, 0);
G
Gonglei 已提交
552 553 554 555
	virtcrypto_dev_put(ctx->vcrypto);
	ctx->vcrypto = NULL;
}

556
int virtio_crypto_skcipher_crypt_req(
557
	struct crypto_engine *engine, void *vreq)
558
{
559
	struct skcipher_request *req = container_of(vreq, struct skcipher_request, base);
560
	struct virtio_crypto_sym_request *vc_sym_req =
561
				skcipher_request_ctx(req);
562
	struct virtio_crypto_request *vc_req = &vc_sym_req->base;
563 564 565
	struct data_queue *data_vq = vc_req->dataq;
	int ret;

566
	ret = __virtio_crypto_skcipher_do_req(vc_sym_req, req, data_vq);
567 568 569 570 571 572 573 574
	if (ret < 0)
		return ret;

	virtqueue_kick(data_vq->vq);

	return 0;
}

575
static void virtio_crypto_skcipher_finalize_req(
576
	struct virtio_crypto_sym_request *vc_sym_req,
577
	struct skcipher_request *req,
578 579
	int err)
{
580
	if (vc_sym_req->encrypt)
581 582
		scatterwalk_map_and_copy(req->iv, req->dst,
					 req->cryptlen - AES_BLOCK_SIZE,
583
					 AES_BLOCK_SIZE, 0);
584
	crypto_finalize_skcipher_request(vc_sym_req->base.dataq->engine,
585
					   req, err);
586 587
	kzfree(vc_sym_req->iv);
	virtcrypto_clear_request(&vc_sym_req->base);
588 589
}

590 591 592 593
static struct virtio_crypto_algo virtio_crypto_algs[] = { {
	.algonum = VIRTIO_CRYPTO_CIPHER_AES_CBC,
	.service = VIRTIO_CRYPTO_SERVICE_CIPHER,
	.algo = {
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
		.base.cra_name		= "cbc(aes)",
		.base.cra_driver_name	= "virtio_crypto_aes_cbc",
		.base.cra_priority	= 150,
		.base.cra_flags		= CRYPTO_ALG_ASYNC,
		.base.cra_blocksize	= AES_BLOCK_SIZE,
		.base.cra_ctxsize	= sizeof(struct virtio_crypto_skcipher_ctx),
		.base.cra_module	= THIS_MODULE,
		.init			= virtio_crypto_skcipher_init,
		.exit			= virtio_crypto_skcipher_exit,
		.setkey			= virtio_crypto_skcipher_setkey,
		.decrypt		= virtio_crypto_skcipher_decrypt,
		.encrypt		= virtio_crypto_skcipher_encrypt,
		.min_keysize		= AES_MIN_KEY_SIZE,
		.max_keysize		= AES_MAX_KEY_SIZE,
		.ivsize			= AES_BLOCK_SIZE,
G
Gonglei 已提交
609 610 611
	},
} };

612
int virtio_crypto_algs_register(struct virtio_crypto *vcrypto)
G
Gonglei 已提交
613 614
{
	int ret = 0;
615
	int i = 0;
G
Gonglei 已提交
616 617 618

	mutex_lock(&algs_lock);

619 620 621 622 623 624 625 626 627
	for (i = 0; i < ARRAY_SIZE(virtio_crypto_algs); i++) {

		uint32_t service = virtio_crypto_algs[i].service;
		uint32_t algonum = virtio_crypto_algs[i].algonum;

		if (!virtcrypto_algo_is_supported(vcrypto, service, algonum))
			continue;

		if (virtio_crypto_algs[i].active_devs == 0) {
628
			ret = crypto_register_skcipher(&virtio_crypto_algs[i].algo);
629 630 631 632 633 634
			if (ret)
				goto unlock;
		}

		virtio_crypto_algs[i].active_devs++;
		dev_info(&vcrypto->vdev->dev, "Registered algo %s\n",
635
			 virtio_crypto_algs[i].algo.base.cra_name);
636
	}
G
Gonglei 已提交
637 638 639 640 641 642

unlock:
	mutex_unlock(&algs_lock);
	return ret;
}

643
void virtio_crypto_algs_unregister(struct virtio_crypto *vcrypto)
G
Gonglei 已提交
644
{
645 646
	int i = 0;

G
Gonglei 已提交
647 648
	mutex_lock(&algs_lock);

649 650 651 652 653 654 655 656 657 658
	for (i = 0; i < ARRAY_SIZE(virtio_crypto_algs); i++) {

		uint32_t service = virtio_crypto_algs[i].service;
		uint32_t algonum = virtio_crypto_algs[i].algonum;

		if (virtio_crypto_algs[i].active_devs == 0 ||
		    !virtcrypto_algo_is_supported(vcrypto, service, algonum))
			continue;

		if (virtio_crypto_algs[i].active_devs == 1)
659
			crypto_unregister_skcipher(&virtio_crypto_algs[i].algo);
660 661 662

		virtio_crypto_algs[i].active_devs--;
	}
G
Gonglei 已提交
663 664 665

	mutex_unlock(&algs_lock);
}