seqiv.c 21.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * seqiv: Sequence Number IV Generator
 *
 * This generator generates an IV based on a sequence number by xoring it
 * with a salt.  This algorithm is mainly useful for CTR and similar modes.
 *
 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 */

H
Herbert Xu 已提交
16
#include <crypto/internal/aead.h>
17
#include <crypto/internal/skcipher.h>
18
#include <crypto/null.h>
19
#include <crypto/rng.h>
20
#include <crypto/scatterwalk.h>
21 22 23 24
#include <linux/err.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
25
#include <linux/slab.h>
26 27 28
#include <linux/spinlock.h>
#include <linux/string.h>

H
Herbert Xu 已提交
29 30 31 32 33
struct seqniv_request_ctx {
	struct scatterlist dst[2];
	struct aead_request subreq;
};

34 35 36 37 38
struct seqiv_ctx {
	spinlock_t lock;
	u8 salt[] __attribute__ ((aligned(__alignof__(u32))));
};

39 40 41 42 43 44 45
struct seqiv_aead_ctx {
	struct crypto_aead *child;
	spinlock_t lock;
	struct crypto_blkcipher *null;
	u8 salt[] __attribute__ ((aligned(__alignof__(u32))));
};

46 47
static void seqiv_free(struct crypto_instance *inst);

48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
static int seqiv_aead_setkey(struct crypto_aead *tfm,
			     const u8 *key, unsigned int keylen)
{
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(tfm);

	return crypto_aead_setkey(ctx->child, key, keylen);
}

static int seqiv_aead_setauthsize(struct crypto_aead *tfm,
				  unsigned int authsize)
{
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(tfm);

	return crypto_aead_setauthsize(ctx->child, authsize);
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
static void seqiv_complete2(struct skcipher_givcrypt_request *req, int err)
{
	struct ablkcipher_request *subreq = skcipher_givcrypt_reqctx(req);
	struct crypto_ablkcipher *geniv;

	if (err == -EINPROGRESS)
		return;

	if (err)
		goto out;

	geniv = skcipher_givcrypt_reqtfm(req);
	memcpy(req->creq.info, subreq->info, crypto_ablkcipher_ivsize(geniv));

out:
	kfree(subreq->info);
}

static void seqiv_complete(struct crypto_async_request *base, int err)
{
	struct skcipher_givcrypt_request *req = base->data;

	seqiv_complete2(req, err);
	skcipher_givcrypt_complete(req, err);
}

H
Herbert Xu 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
static void seqiv_aead_complete2(struct aead_givcrypt_request *req, int err)
{
	struct aead_request *subreq = aead_givcrypt_reqctx(req);
	struct crypto_aead *geniv;

	if (err == -EINPROGRESS)
		return;

	if (err)
		goto out;

	geniv = aead_givcrypt_reqtfm(req);
	memcpy(req->areq.iv, subreq->iv, crypto_aead_ivsize(geniv));

out:
	kfree(subreq->iv);
}

static void seqiv_aead_complete(struct crypto_async_request *base, int err)
{
	struct aead_givcrypt_request *req = base->data;

	seqiv_aead_complete2(req, err);
	aead_givcrypt_complete(req, err);
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
static void seqiv_aead_encrypt_complete2(struct aead_request *req, int err)
{
	struct aead_request *subreq = aead_request_ctx(req);
	struct crypto_aead *geniv;

	if (err == -EINPROGRESS)
		return;

	if (err)
		goto out;

	geniv = crypto_aead_reqtfm(req);
	memcpy(req->iv, subreq->iv, crypto_aead_ivsize(geniv));

out:
	kzfree(subreq->iv);
}

static void seqiv_aead_encrypt_complete(struct crypto_async_request *base,
					int err)
{
	struct aead_request *req = base->data;

	seqiv_aead_encrypt_complete2(req, err);
	aead_request_complete(req, err);
}

H
Herbert Xu 已提交
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
static void seqniv_aead_encrypt_complete2(struct aead_request *req, int err)
{
	unsigned int ivsize = 8;
	u8 data[20];

	if (err == -EINPROGRESS)
		return;

	/* Swap IV and ESP header back to correct order. */
	scatterwalk_map_and_copy(data, req->dst, 0, req->assoclen + ivsize, 0);
	scatterwalk_map_and_copy(data + ivsize, req->dst, 0, req->assoclen, 1);
	scatterwalk_map_and_copy(data, req->dst, req->assoclen, ivsize, 1);
}

static void seqniv_aead_encrypt_complete(struct crypto_async_request *base,
					int err)
{
	struct aead_request *req = base->data;

	seqniv_aead_encrypt_complete2(req, err);
	aead_request_complete(req, err);
}

static void seqniv_aead_decrypt_complete2(struct aead_request *req, int err)
{
	u8 data[4];

	if (err == -EINPROGRESS)
		return;

	/* Move ESP header back to correct location. */
	scatterwalk_map_and_copy(data, req->dst, 16, req->assoclen - 8, 0);
	scatterwalk_map_and_copy(data, req->dst, 8, req->assoclen - 8, 1);
}

static void seqniv_aead_decrypt_complete(struct crypto_async_request *base,
					 int err)
{
	struct aead_request *req = base->data;

	seqniv_aead_decrypt_complete2(req, err);
	aead_request_complete(req, err);
}

H
Herbert Xu 已提交
187 188 189 190 191 192 193 194 195 196 197 198 199 200
static void seqiv_geniv(struct seqiv_ctx *ctx, u8 *info, u64 seq,
			unsigned int ivsize)
{
	unsigned int len = ivsize;

	if (ivsize > sizeof(u64)) {
		memset(info, 0, ivsize - sizeof(u64));
		len = sizeof(u64);
	}
	seq = cpu_to_be64(seq);
	memcpy(info + ivsize - len, &seq, len);
	crypto_xor(info, ctx->salt, ivsize);
}

201 202 203 204 205
static int seqiv_givencrypt(struct skcipher_givcrypt_request *req)
{
	struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
	struct seqiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
	struct ablkcipher_request *subreq = skcipher_givcrypt_reqctx(req);
M
Mark Rustad 已提交
206
	crypto_completion_t compl;
207 208 209 210 211 212 213
	void *data;
	u8 *info;
	unsigned int ivsize;
	int err;

	ablkcipher_request_set_tfm(subreq, skcipher_geniv_cipher(geniv));

M
Mark Rustad 已提交
214
	compl = req->creq.base.complete;
215 216 217 218 219 220 221 222 223 224 225 226 227
	data = req->creq.base.data;
	info = req->creq.info;

	ivsize = crypto_ablkcipher_ivsize(geniv);

	if (unlikely(!IS_ALIGNED((unsigned long)info,
				 crypto_ablkcipher_alignmask(geniv) + 1))) {
		info = kmalloc(ivsize, req->creq.base.flags &
				       CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL:
								  GFP_ATOMIC);
		if (!info)
			return -ENOMEM;

M
Mark Rustad 已提交
228
		compl = seqiv_complete;
229 230 231
		data = req;
	}

M
Mark Rustad 已提交
232
	ablkcipher_request_set_callback(subreq, req->creq.base.flags, compl,
233 234 235 236
					data);
	ablkcipher_request_set_crypt(subreq, req->creq.src, req->creq.dst,
				     req->creq.nbytes, info);

H
Herbert Xu 已提交
237
	seqiv_geniv(ctx, info, req->seq, ivsize);
238 239 240 241 242 243 244 245
	memcpy(req->giv, info, ivsize);

	err = crypto_ablkcipher_encrypt(subreq);
	if (unlikely(info != req->creq.info))
		seqiv_complete2(req, err);
	return err;
}

H
Herbert Xu 已提交
246 247 248 249 250 251
static int seqiv_aead_givencrypt(struct aead_givcrypt_request *req)
{
	struct crypto_aead *geniv = aead_givcrypt_reqtfm(req);
	struct seqiv_ctx *ctx = crypto_aead_ctx(geniv);
	struct aead_request *areq = &req->areq;
	struct aead_request *subreq = aead_givcrypt_reqctx(req);
M
Mark Rustad 已提交
252
	crypto_completion_t compl;
H
Herbert Xu 已提交
253 254 255 256 257 258 259
	void *data;
	u8 *info;
	unsigned int ivsize;
	int err;

	aead_request_set_tfm(subreq, aead_geniv_base(geniv));

M
Mark Rustad 已提交
260
	compl = areq->base.complete;
H
Herbert Xu 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273
	data = areq->base.data;
	info = areq->iv;

	ivsize = crypto_aead_ivsize(geniv);

	if (unlikely(!IS_ALIGNED((unsigned long)info,
				 crypto_aead_alignmask(geniv) + 1))) {
		info = kmalloc(ivsize, areq->base.flags &
				       CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL:
								  GFP_ATOMIC);
		if (!info)
			return -ENOMEM;

M
Mark Rustad 已提交
274
		compl = seqiv_aead_complete;
H
Herbert Xu 已提交
275 276 277
		data = req;
	}

M
Mark Rustad 已提交
278
	aead_request_set_callback(subreq, areq->base.flags, compl, data);
H
Herbert Xu 已提交
279 280 281 282 283 284 285 286 287 288 289 290 291
	aead_request_set_crypt(subreq, areq->src, areq->dst, areq->cryptlen,
			       info);
	aead_request_set_assoc(subreq, areq->assoc, areq->assoclen);

	seqiv_geniv(ctx, info, req->seq, ivsize);
	memcpy(req->giv, info, ivsize);

	err = crypto_aead_encrypt(subreq);
	if (unlikely(info != areq->iv))
		seqiv_aead_complete2(req, err);
	return err;
}

292 293 294 295
static int seqiv_aead_encrypt_compat(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
H
Herbert Xu 已提交
296 297 298
	struct seqniv_request_ctx *rctx = aead_request_ctx(req);
	struct aead_request *subreq = &rctx->subreq;
	struct scatterlist *dst;
299 300
	crypto_completion_t compl;
	void *data;
H
Herbert Xu 已提交
301 302
	unsigned int ivsize = 8;
	u8 buf[20] __attribute__ ((aligned(__alignof__(u32))));
303 304
	int err;

H
Herbert Xu 已提交
305 306
	if (req->cryptlen < ivsize)
		return -EINVAL;
307

H
Herbert Xu 已提交
308 309 310
	/* ESP AD is at most 12 bytes (ESN). */
	if (req->assoclen > 12)
		return -EINVAL;
311

H
Herbert Xu 已提交
312
	aead_request_set_tfm(subreq, ctx->child);
313

H
Herbert Xu 已提交
314 315
	compl = seqniv_aead_encrypt_complete;
	data = req;
316

H
Herbert Xu 已提交
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
	if (req->src != req->dst) {
		struct scatterlist srcbuf[2];
		struct scatterlist dstbuf[2];
		struct blkcipher_desc desc = {
			.tfm = ctx->null,
		};

		err = crypto_blkcipher_encrypt(
			&desc,
			scatterwalk_ffwd(dstbuf, req->dst,
					 req->assoclen + ivsize),
			scatterwalk_ffwd(srcbuf, req->src,
					 req->assoclen + ivsize),
			req->cryptlen - ivsize);
		if (err)
			return err;
333 334
	}

H
Herbert Xu 已提交
335 336
	dst = scatterwalk_ffwd(rctx->dst, req->dst, ivsize);

337
	aead_request_set_callback(subreq, req->base.flags, compl, data);
H
Herbert Xu 已提交
338 339
	aead_request_set_crypt(subreq, dst, dst,
			       req->cryptlen - ivsize, req->iv);
340
	aead_request_set_ad(subreq, req->assoclen);
341

H
Herbert Xu 已提交
342 343 344 345 346 347 348
	memcpy(buf, req->iv, ivsize);
	crypto_xor(buf, ctx->salt, ivsize);
	memcpy(req->iv, buf, ivsize);

	/* Swap order of IV and ESP AD for ICV generation. */
	scatterwalk_map_and_copy(buf + ivsize, req->dst, 0, req->assoclen, 0);
	scatterwalk_map_and_copy(buf, req->dst, 0, req->assoclen + ivsize, 1);
349 350

	err = crypto_aead_encrypt(subreq);
H
Herbert Xu 已提交
351
	seqniv_aead_encrypt_complete2(req, err);
352 353 354 355 356 357 358 359 360 361 362
	return err;
}

static int seqiv_aead_encrypt(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
	struct aead_request *subreq = aead_request_ctx(req);
	crypto_completion_t compl;
	void *data;
	u8 *info;
H
Herbert Xu 已提交
363
	unsigned int ivsize = 8;
364 365
	int err;

H
Herbert Xu 已提交
366 367 368
	if (req->cryptlen < ivsize)
		return -EINVAL;

369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
	aead_request_set_tfm(subreq, ctx->child);

	compl = req->base.complete;
	data = req->base.data;
	info = req->iv;

	if (req->src != req->dst) {
		struct scatterlist src[2];
		struct scatterlist dst[2];
		struct blkcipher_desc desc = {
			.tfm = ctx->null,
		};

		err = crypto_blkcipher_encrypt(
			&desc,
			scatterwalk_ffwd(dst, req->dst,
					 req->assoclen + ivsize),
			scatterwalk_ffwd(src, req->src,
					 req->assoclen + ivsize),
			req->cryptlen - ivsize);
		if (err)
			return err;
	}

	if (unlikely(!IS_ALIGNED((unsigned long)info,
				 crypto_aead_alignmask(geniv) + 1))) {
		info = kmalloc(ivsize, req->base.flags &
				       CRYPTO_TFM_REQ_MAY_SLEEP ? GFP_KERNEL:
								  GFP_ATOMIC);
		if (!info)
			return -ENOMEM;

		memcpy(info, req->iv, ivsize);
		compl = seqiv_aead_encrypt_complete;
		data = req;
	}

	aead_request_set_callback(subreq, req->base.flags, compl, data);
	aead_request_set_crypt(subreq, req->dst, req->dst,
			       req->cryptlen - ivsize, info);
409
	aead_request_set_ad(subreq, req->assoclen + ivsize);
410 411 412 413 414 415 416 417 418 419 420 421 422 423

	crypto_xor(info, ctx->salt, ivsize);
	scatterwalk_map_and_copy(info, req->dst, req->assoclen, ivsize, 1);

	err = crypto_aead_encrypt(subreq);
	if (unlikely(info != req->iv))
		seqiv_aead_encrypt_complete2(req, err);
	return err;
}

static int seqiv_aead_decrypt_compat(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
H
Herbert Xu 已提交
424 425 426
	struct seqniv_request_ctx *rctx = aead_request_ctx(req);
	struct aead_request *subreq = &rctx->subreq;
	struct scatterlist *dst;
427 428
	crypto_completion_t compl;
	void *data;
H
Herbert Xu 已提交
429 430 431 432 433 434
	unsigned int ivsize = 8;
	u8 buf[20];
	int err;

	if (req->cryptlen < ivsize + crypto_aead_authsize(geniv))
		return -EINVAL;
435 436 437 438 439 440

	aead_request_set_tfm(subreq, ctx->child);

	compl = req->base.complete;
	data = req->base.data;

H
Herbert Xu 已提交
441 442 443 444 445 446 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
	if (req->assoclen > 12)
		return -EINVAL;
	else if (req->assoclen > 8) {
		compl = seqniv_aead_decrypt_complete;
		data = req;
	}

	if (req->src != req->dst) {
		struct scatterlist srcbuf[2];
		struct scatterlist dstbuf[2];
		struct blkcipher_desc desc = {
			.tfm = ctx->null,
		};

		err = crypto_blkcipher_encrypt(
			&desc,
			scatterwalk_ffwd(dstbuf, req->dst,
					 req->assoclen + ivsize),
			scatterwalk_ffwd(srcbuf, req->src,
					 req->assoclen + ivsize),
			req->cryptlen - ivsize);
		if (err)
			return err;
	}

	/* Move ESP AD forward for ICV generation. */
	scatterwalk_map_and_copy(buf, req->dst, 0, req->assoclen + ivsize, 0);
	memcpy(req->iv, buf + req->assoclen, ivsize);
	scatterwalk_map_and_copy(buf, req->dst, ivsize, req->assoclen, 1);

	dst = scatterwalk_ffwd(rctx->dst, req->dst, ivsize);
472 473

	aead_request_set_callback(subreq, req->base.flags, compl, data);
H
Herbert Xu 已提交
474
	aead_request_set_crypt(subreq, dst, dst,
475
			       req->cryptlen - ivsize, req->iv);
476
	aead_request_set_ad(subreq, req->assoclen);
477

H
Herbert Xu 已提交
478 479 480 481
	err = crypto_aead_decrypt(subreq);
	if (req->assoclen > 8)
		seqniv_aead_decrypt_complete2(req, err);
	return err;
482 483 484 485 486 487 488 489 490
}

static int seqiv_aead_decrypt(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
	struct aead_request *subreq = aead_request_ctx(req);
	crypto_completion_t compl;
	void *data;
H
Herbert Xu 已提交
491 492 493 494
	unsigned int ivsize = 8;

	if (req->cryptlen < ivsize + crypto_aead_authsize(geniv))
		return -EINVAL;
495 496 497 498 499 500 501 502 503

	aead_request_set_tfm(subreq, ctx->child);

	compl = req->base.complete;
	data = req->base.data;

	aead_request_set_callback(subreq, req->base.flags, compl, data);
	aead_request_set_crypt(subreq, req->src, req->dst,
			       req->cryptlen - ivsize, req->iv);
504
	aead_request_set_ad(subreq, req->assoclen + ivsize);
505 506 507 508 509 510 511 512 513

	scatterwalk_map_and_copy(req->iv, req->src, req->assoclen, ivsize, 0);
	if (req->src != req->dst)
		scatterwalk_map_and_copy(req->iv, req->dst,
					 req->assoclen, ivsize, 1);

	return crypto_aead_decrypt(subreq);
}

514 515 516 517
static int seqiv_givencrypt_first(struct skcipher_givcrypt_request *req)
{
	struct crypto_ablkcipher *geniv = skcipher_givcrypt_reqtfm(req);
	struct seqiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);
518
	int err = 0;
519 520 521 522 523 524

	spin_lock_bh(&ctx->lock);
	if (crypto_ablkcipher_crt(geniv)->givencrypt != seqiv_givencrypt_first)
		goto unlock;

	crypto_ablkcipher_crt(geniv)->givencrypt = seqiv_givencrypt;
525 526
	err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
				   crypto_ablkcipher_ivsize(geniv));
527 528 529 530

unlock:
	spin_unlock_bh(&ctx->lock);

531 532 533
	if (err)
		return err;

534 535 536
	return seqiv_givencrypt(req);
}

H
Herbert Xu 已提交
537 538 539 540
static int seqiv_aead_givencrypt_first(struct aead_givcrypt_request *req)
{
	struct crypto_aead *geniv = aead_givcrypt_reqtfm(req);
	struct seqiv_ctx *ctx = crypto_aead_ctx(geniv);
541
	int err = 0;
H
Herbert Xu 已提交
542 543 544 545 546 547

	spin_lock_bh(&ctx->lock);
	if (crypto_aead_crt(geniv)->givencrypt != seqiv_aead_givencrypt_first)
		goto unlock;

	crypto_aead_crt(geniv)->givencrypt = seqiv_aead_givencrypt;
548 549
	err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
				   crypto_aead_ivsize(geniv));
H
Herbert Xu 已提交
550 551 552 553

unlock:
	spin_unlock_bh(&ctx->lock);

554 555 556
	if (err)
		return err;

H
Herbert Xu 已提交
557 558 559
	return seqiv_aead_givencrypt(req);
}

560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
static int seqiv_aead_encrypt_compat_first(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
	int err = 0;

	spin_lock_bh(&ctx->lock);
	if (geniv->encrypt != seqiv_aead_encrypt_compat_first)
		goto unlock;

	geniv->encrypt = seqiv_aead_encrypt_compat;
	err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
				   crypto_aead_ivsize(geniv));

unlock:
	spin_unlock_bh(&ctx->lock);

	if (err)
		return err;

	return seqiv_aead_encrypt_compat(req);
}

static int seqiv_aead_encrypt_first(struct aead_request *req)
{
	struct crypto_aead *geniv = crypto_aead_reqtfm(req);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
	int err = 0;

	spin_lock_bh(&ctx->lock);
	if (geniv->encrypt != seqiv_aead_encrypt_first)
		goto unlock;

	geniv->encrypt = seqiv_aead_encrypt;
	err = crypto_rng_get_bytes(crypto_default_rng, ctx->salt,
				   crypto_aead_ivsize(geniv));

unlock:
	spin_unlock_bh(&ctx->lock);

	if (err)
		return err;

	return seqiv_aead_encrypt(req);
}

606 607 608 609 610 611 612 613 614 615 616 617
static int seqiv_init(struct crypto_tfm *tfm)
{
	struct crypto_ablkcipher *geniv = __crypto_ablkcipher_cast(tfm);
	struct seqiv_ctx *ctx = crypto_ablkcipher_ctx(geniv);

	spin_lock_init(&ctx->lock);

	tfm->crt_ablkcipher.reqsize = sizeof(struct ablkcipher_request);

	return skcipher_geniv_init(tfm);
}

618
static int seqiv_old_aead_init(struct crypto_tfm *tfm)
H
Herbert Xu 已提交
619 620 621 622 623 624
{
	struct crypto_aead *geniv = __crypto_aead_cast(tfm);
	struct seqiv_ctx *ctx = crypto_aead_ctx(geniv);

	spin_lock_init(&ctx->lock);

625 626
	crypto_aead_set_reqsize(__crypto_aead_cast(tfm),
				sizeof(struct aead_request));
H
Herbert Xu 已提交
627 628 629 630

	return aead_geniv_init(tfm);
}

H
Herbert Xu 已提交
631
static int seqiv_aead_init_common(struct crypto_tfm *tfm, unsigned int reqsize)
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
{
	struct crypto_aead *geniv = __crypto_aead_cast(tfm);
	struct seqiv_aead_ctx *ctx = crypto_aead_ctx(geniv);
	int err;

	spin_lock_init(&ctx->lock);

	crypto_aead_set_reqsize(geniv, sizeof(struct aead_request));

	ctx->null = crypto_get_default_null_skcipher();
	err = PTR_ERR(ctx->null);
	if (IS_ERR(ctx->null))
		goto out;

	err = aead_geniv_init(tfm);
	if (err)
		goto drop_null;

	ctx->child = geniv->child;
	geniv->child = geniv;

out:
	return err;

drop_null:
	crypto_put_default_null_skcipher();
	goto out;
}

H
Herbert Xu 已提交
661
static int seqiv_aead_init(struct crypto_tfm *tfm)
662
{
H
Herbert Xu 已提交
663 664
	return seqiv_aead_init_common(tfm, sizeof(struct aead_request));
}
665

H
Herbert Xu 已提交
666 667 668
static int seqniv_aead_init(struct crypto_tfm *tfm)
{
	return seqiv_aead_init_common(tfm, sizeof(struct seqniv_request_ctx));
669 670 671 672 673 674 675 676 677 678
}

static void seqiv_aead_exit(struct crypto_tfm *tfm)
{
	struct seqiv_aead_ctx *ctx = crypto_tfm_ctx(tfm);

	crypto_free_aead(ctx->child);
	crypto_put_default_null_skcipher();
}

679 680
static int seqiv_ablkcipher_create(struct crypto_template *tmpl,
				   struct rtattr **tb)
681 682
{
	struct crypto_instance *inst;
683
	int err;
684

685
	inst = skcipher_geniv_alloc(tmpl, tb, 0, 0);
H
Herbert Xu 已提交
686

687
	if (IS_ERR(inst))
688
		return PTR_ERR(inst);
689

690 691 692
	err = -EINVAL;
	if (inst->alg.cra_ablkcipher.ivsize < sizeof(u64))
		goto free_inst;
693

694 695 696 697 698 699
	inst->alg.cra_ablkcipher.givencrypt = seqiv_givencrypt_first;

	inst->alg.cra_init = seqiv_init;
	inst->alg.cra_exit = skcipher_geniv_exit;

	inst->alg.cra_ctxsize += inst->alg.cra_ablkcipher.ivsize;
700
	inst->alg.cra_ctxsize += sizeof(struct seqiv_ctx);
701

702 703 704 705 706 707
	inst->alg.cra_alignmask |= __alignof__(u32) - 1;

	err = crypto_register_instance(tmpl, inst);
	if (err)
		goto free_inst;

708
out:
709 710 711 712 713
	return err;

free_inst:
	skcipher_geniv_free(inst);
	goto out;
714 715
}

716 717
static int seqiv_old_aead_create(struct crypto_template *tmpl,
				 struct aead_instance *aead)
718 719
{
	struct crypto_instance *inst = aead_crypto_instance(aead);
720
	int err = -EINVAL;
721

722 723
	if (inst->alg.cra_aead.ivsize < sizeof(u64))
		goto free_inst;
724 725 726 727 728 729 730 731 732

	inst->alg.cra_aead.givencrypt = seqiv_aead_givencrypt_first;

	inst->alg.cra_init = seqiv_old_aead_init;
	inst->alg.cra_exit = aead_geniv_exit;

	inst->alg.cra_ctxsize = inst->alg.cra_aead.ivsize;
	inst->alg.cra_ctxsize += sizeof(struct seqiv_ctx);

733 734 735 736 737 738 739 740 741 742
	err = crypto_register_instance(tmpl, inst);
	if (err)
		goto free_inst;

out:
	return err;

free_inst:
	aead_geniv_free(aead);
	goto out;
743 744
}

745
static int seqiv_aead_create(struct crypto_template *tmpl, struct rtattr **tb)
H
Herbert Xu 已提交
746
{
747 748 749
	struct aead_instance *inst;
	struct crypto_aead_spawn *spawn;
	struct aead_alg *alg;
750
	int err;
H
Herbert Xu 已提交
751

752
	inst = aead_geniv_alloc(tmpl, tb, 0, 0);
H
Herbert Xu 已提交
753 754

	if (IS_ERR(inst))
755 756 757
		return PTR_ERR(inst);

	inst->alg.base.cra_alignmask |= __alignof__(u32) - 1;
H
Herbert Xu 已提交
758

759
	if (inst->alg.base.cra_aead.encrypt)
760
		return seqiv_old_aead_create(tmpl, inst);
761

762
	err = -EINVAL;
H
Herbert Xu 已提交
763
	if (inst->alg.ivsize != sizeof(u64))
764
		goto free_inst;
765

766 767
	spawn = aead_instance_ctx(inst);
	alg = crypto_spawn_aead_alg(spawn);
H
Herbert Xu 已提交
768

769 770 771 772
	inst->alg.setkey = seqiv_aead_setkey;
	inst->alg.setauthsize = seqiv_aead_setauthsize;
	inst->alg.encrypt = seqiv_aead_encrypt_first;
	inst->alg.decrypt = seqiv_aead_decrypt;
H
Herbert Xu 已提交
773

774 775 776 777 778 779 780 781 782 783
	inst->alg.base.cra_init = seqiv_aead_init;
	inst->alg.base.cra_exit = seqiv_aead_exit;

	inst->alg.base.cra_ctxsize = sizeof(struct seqiv_aead_ctx);
	inst->alg.base.cra_ctxsize += inst->alg.base.cra_aead.ivsize;

	if (alg->base.cra_aead.encrypt) {
		inst->alg.encrypt = seqiv_aead_encrypt_compat_first;
		inst->alg.decrypt = seqiv_aead_decrypt_compat;

H
Herbert Xu 已提交
784 785
		inst->alg.base.cra_init = seqniv_aead_init;
		inst->alg.base.cra_exit = seqiv_aead_exit;
786
	}
H
Herbert Xu 已提交
787

788 789 790 791
	err = aead_register_instance(tmpl, inst);
	if (err)
		goto free_inst;

H
Herbert Xu 已提交
792
out:
793 794 795 796 797
	return err;

free_inst:
	aead_geniv_free(inst);
	goto out;
H
Herbert Xu 已提交
798 799
}

800
static int seqiv_create(struct crypto_template *tmpl, struct rtattr **tb)
H
Herbert Xu 已提交
801 802 803 804 805 806
{
	struct crypto_attr_type *algt;
	int err;

	algt = crypto_get_attr_type(tb);
	if (IS_ERR(algt))
807
		return PTR_ERR(algt);
H
Herbert Xu 已提交
808

809 810
	err = crypto_get_default_rng();
	if (err)
811
		return err;
812

H
Herbert Xu 已提交
813
	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & CRYPTO_ALG_TYPE_MASK)
814
		err = seqiv_ablkcipher_create(tmpl, tb);
H
Herbert Xu 已提交
815
	else
816
		err = seqiv_aead_create(tmpl, tb);
H
Herbert Xu 已提交
817

818 819
	if (err)
		crypto_put_default_rng();
820

821
	return err;
H
Herbert Xu 已提交
822 823
}

824
static int seqniv_create(struct crypto_template *tmpl, struct rtattr **tb)
H
Herbert Xu 已提交
825 826 827 828 829 830 831 832
{
	struct aead_instance *inst;
	struct crypto_aead_spawn *spawn;
	struct aead_alg *alg;
	int err;

	err = crypto_get_default_rng();
	if (err)
833
		return err;
H
Herbert Xu 已提交
834

835 836
	inst = aead_geniv_alloc(tmpl, tb, 0, 0);
	err = PTR_ERR(inst);
H
Herbert Xu 已提交
837 838 839
	if (IS_ERR(inst))
		goto put_rng;

840
	err = -EINVAL;
H
Herbert Xu 已提交
841
	if (inst->alg.ivsize != sizeof(u64))
842
		goto free_inst;
H
Herbert Xu 已提交
843 844 845 846 847 848 849 850 851

	spawn = aead_instance_ctx(inst);
	alg = crypto_spawn_aead_alg(spawn);

	inst->alg.setkey = seqiv_aead_setkey;
	inst->alg.setauthsize = seqiv_aead_setauthsize;
	inst->alg.encrypt = seqiv_aead_encrypt_compat_first;
	inst->alg.decrypt = seqiv_aead_decrypt_compat;

H
Herbert Xu 已提交
852 853
	inst->alg.base.cra_init = seqniv_aead_init;
	inst->alg.base.cra_exit = seqiv_aead_exit;
H
Herbert Xu 已提交
854 855 856 857 858

	inst->alg.base.cra_alignmask |= __alignof__(u32) - 1;
	inst->alg.base.cra_ctxsize = sizeof(struct seqiv_aead_ctx);
	inst->alg.base.cra_ctxsize += inst->alg.base.cra_aead.ivsize;

859 860 861 862
	err = aead_register_instance(tmpl, inst);
	if (err)
		goto free_inst;

H
Herbert Xu 已提交
863
out:
864
	return err;
H
Herbert Xu 已提交
865

866 867
free_inst:
	aead_geniv_free(inst);
H
Herbert Xu 已提交
868 869 870 871 872
put_rng:
	crypto_put_default_rng();
	goto out;
}

H
Herbert Xu 已提交
873 874 875 876 877
static void seqiv_free(struct crypto_instance *inst)
{
	if ((inst->alg.cra_flags ^ CRYPTO_ALG_TYPE_AEAD) & CRYPTO_ALG_TYPE_MASK)
		skcipher_geniv_free(inst);
	else
878
		aead_geniv_free(aead_instance(inst));
879
	crypto_put_default_rng();
H
Herbert Xu 已提交
880 881
}

882 883
static struct crypto_template seqiv_tmpl = {
	.name = "seqiv",
884
	.create = seqiv_create,
H
Herbert Xu 已提交
885
	.free = seqiv_free,
886 887 888
	.module = THIS_MODULE,
};

H
Herbert Xu 已提交
889 890
static struct crypto_template seqniv_tmpl = {
	.name = "seqniv",
891
	.create = seqniv_create,
H
Herbert Xu 已提交
892 893 894 895
	.free = seqiv_free,
	.module = THIS_MODULE,
};

896 897
static int __init seqiv_module_init(void)
{
H
Herbert Xu 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	int err;

	err = crypto_register_template(&seqiv_tmpl);
	if (err)
		goto out;

	err = crypto_register_template(&seqniv_tmpl);
	if (err)
		goto out_undo_niv;

out:
	return err;

out_undo_niv:
	crypto_unregister_template(&seqiv_tmpl);
	goto out;
914 915 916 917 918 919 920 921 922 923 924 925
}

static void __exit seqiv_module_exit(void)
{
	crypto_unregister_template(&seqiv_tmpl);
}

module_init(seqiv_module_init);
module_exit(seqiv_module_exit);

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Sequence Number IV Generator");
926
MODULE_ALIAS_CRYPTO("seqiv");
H
Herbert Xu 已提交
927
MODULE_ALIAS_CRYPTO("seqniv");