Linux Audio

Check our new training course

Loading...
v3.15
   1/*
   2 * GCM: Galois/Counter Mode.
   3 *
   4 * Copyright (c) 2007 Nokia Siemens Networks - Mikko Herranen <mh1@iki.fi>
   5 *
   6 * This program is free software; you can redistribute it and/or modify it
   7 * under the terms of the GNU General Public License version 2 as published
   8 * by the Free Software Foundation.
   9 */
  10
  11#include <crypto/gf128mul.h>
  12#include <crypto/internal/aead.h>
  13#include <crypto/internal/skcipher.h>
  14#include <crypto/internal/hash.h>
  15#include <crypto/scatterwalk.h>
  16#include <crypto/hash.h>
  17#include "internal.h"
  18#include <linux/completion.h>
  19#include <linux/err.h>
  20#include <linux/init.h>
  21#include <linux/kernel.h>
  22#include <linux/module.h>
  23#include <linux/slab.h>
  24
  25struct gcm_instance_ctx {
  26	struct crypto_skcipher_spawn ctr;
  27	struct crypto_ahash_spawn ghash;
  28};
  29
  30struct crypto_gcm_ctx {
  31	struct crypto_ablkcipher *ctr;
  32	struct crypto_ahash *ghash;
  33};
  34
  35struct crypto_rfc4106_ctx {
  36	struct crypto_aead *child;
  37	u8 nonce[4];
  38};
  39
  40struct crypto_rfc4543_instance_ctx {
  41	struct crypto_aead_spawn aead;
  42	struct crypto_skcipher_spawn null;
  43};
  44
  45struct crypto_rfc4543_ctx {
  46	struct crypto_aead *child;
  47	struct crypto_blkcipher *null;
  48	u8 nonce[4];
  49};
  50
  51struct crypto_rfc4543_req_ctx {
  52	u8 auth_tag[16];
  53	u8 assocbuf[32];
  54	struct scatterlist cipher[1];
  55	struct scatterlist payload[2];
  56	struct scatterlist assoc[2];
  57	struct aead_request subreq;
  58};
  59
  60struct crypto_gcm_ghash_ctx {
  61	unsigned int cryptlen;
  62	struct scatterlist *src;
  63	void (*complete)(struct aead_request *req, int err);
  64};
  65
  66struct crypto_gcm_req_priv_ctx {
  67	u8 auth_tag[16];
  68	u8 iauth_tag[16];
  69	struct scatterlist src[2];
  70	struct scatterlist dst[2];
  71	struct crypto_gcm_ghash_ctx ghash_ctx;
  72	union {
  73		struct ahash_request ahreq;
  74		struct ablkcipher_request abreq;
  75	} u;
  76};
  77
  78struct crypto_gcm_setkey_result {
  79	int err;
  80	struct completion completion;
  81};
  82
  83static void *gcm_zeroes;
  84
  85static inline struct crypto_gcm_req_priv_ctx *crypto_gcm_reqctx(
  86	struct aead_request *req)
  87{
  88	unsigned long align = crypto_aead_alignmask(crypto_aead_reqtfm(req));
  89
  90	return (void *)PTR_ALIGN((u8 *)aead_request_ctx(req), align + 1);
  91}
  92
  93static void crypto_gcm_setkey_done(struct crypto_async_request *req, int err)
  94{
  95	struct crypto_gcm_setkey_result *result = req->data;
  96
  97	if (err == -EINPROGRESS)
  98		return;
  99
 100	result->err = err;
 101	complete(&result->completion);
 102}
 103
 104static int crypto_gcm_setkey(struct crypto_aead *aead, const u8 *key,
 105			     unsigned int keylen)
 106{
 107	struct crypto_gcm_ctx *ctx = crypto_aead_ctx(aead);
 108	struct crypto_ahash *ghash = ctx->ghash;
 109	struct crypto_ablkcipher *ctr = ctx->ctr;
 110	struct {
 111		be128 hash;
 112		u8 iv[8];
 113
 114		struct crypto_gcm_setkey_result result;
 115
 116		struct scatterlist sg[1];
 117		struct ablkcipher_request req;
 118	} *data;
 119	int err;
 120
 121	crypto_ablkcipher_clear_flags(ctr, CRYPTO_TFM_REQ_MASK);
 122	crypto_ablkcipher_set_flags(ctr, crypto_aead_get_flags(aead) &
 123				   CRYPTO_TFM_REQ_MASK);
 124
 125	err = crypto_ablkcipher_setkey(ctr, key, keylen);
 126	if (err)
 127		return err;
 128
 129	crypto_aead_set_flags(aead, crypto_ablkcipher_get_flags(ctr) &
 130				       CRYPTO_TFM_RES_MASK);
 131
 132	data = kzalloc(sizeof(*data) + crypto_ablkcipher_reqsize(ctr),
 133		       GFP_KERNEL);
 134	if (!data)
 135		return -ENOMEM;
 136
 137	init_completion(&data->result.completion);
 138	sg_init_one(data->sg, &data->hash, sizeof(data->hash));
 139	ablkcipher_request_set_tfm(&data->req, ctr);
 140	ablkcipher_request_set_callback(&data->req, CRYPTO_TFM_REQ_MAY_SLEEP |
 141						    CRYPTO_TFM_REQ_MAY_BACKLOG,
 142					crypto_gcm_setkey_done,
 143					&data->result);
 144	ablkcipher_request_set_crypt(&data->req, data->sg, data->sg,
 145				     sizeof(data->hash), data->iv);
 146
 147	err = crypto_ablkcipher_encrypt(&data->req);
 148	if (err == -EINPROGRESS || err == -EBUSY) {
 149		err = wait_for_completion_interruptible(
 150			&data->result.completion);
 151		if (!err)
 152			err = data->result.err;
 153	}
 154
 155	if (err)
 156		goto out;
 157
 158	crypto_ahash_clear_flags(ghash, CRYPTO_TFM_REQ_MASK);
 159	crypto_ahash_set_flags(ghash, crypto_aead_get_flags(aead) &
 160			       CRYPTO_TFM_REQ_MASK);
 161	err = crypto_ahash_setkey(ghash, (u8 *)&data->hash, sizeof(be128));
 162	crypto_aead_set_flags(aead, crypto_ahash_get_flags(ghash) &
 163			      CRYPTO_TFM_RES_MASK);
 164
 165out:
 166	kfree(data);
 167	return err;
 168}
 169
 170static int crypto_gcm_setauthsize(struct crypto_aead *tfm,
 171				  unsigned int authsize)
 172{
 173	switch (authsize) {
 174	case 4:
 175	case 8:
 176	case 12:
 177	case 13:
 178	case 14:
 179	case 15:
 180	case 16:
 181		break;
 182	default:
 183		return -EINVAL;
 184	}
 185
 186	return 0;
 187}
 188
 189static void crypto_gcm_init_crypt(struct ablkcipher_request *ablk_req,
 190				  struct aead_request *req,
 191				  unsigned int cryptlen)
 192{
 193	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 194	struct crypto_gcm_ctx *ctx = crypto_aead_ctx(aead);
 195	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 196	struct scatterlist *dst;
 197	__be32 counter = cpu_to_be32(1);
 198
 199	memset(pctx->auth_tag, 0, sizeof(pctx->auth_tag));
 200	memcpy(req->iv + 12, &counter, 4);
 201
 202	sg_init_table(pctx->src, 2);
 203	sg_set_buf(pctx->src, pctx->auth_tag, sizeof(pctx->auth_tag));
 204	scatterwalk_sg_chain(pctx->src, 2, req->src);
 205
 206	dst = pctx->src;
 207	if (req->src != req->dst) {
 208		sg_init_table(pctx->dst, 2);
 209		sg_set_buf(pctx->dst, pctx->auth_tag, sizeof(pctx->auth_tag));
 210		scatterwalk_sg_chain(pctx->dst, 2, req->dst);
 211		dst = pctx->dst;
 212	}
 213
 214	ablkcipher_request_set_tfm(ablk_req, ctx->ctr);
 215	ablkcipher_request_set_crypt(ablk_req, pctx->src, dst,
 216				     cryptlen + sizeof(pctx->auth_tag),
 217				     req->iv);
 218}
 219
 220static inline unsigned int gcm_remain(unsigned int len)
 221{
 222	len &= 0xfU;
 223	return len ? 16 - len : 0;
 224}
 225
 226static void gcm_hash_len_done(struct crypto_async_request *areq, int err);
 227static void gcm_hash_final_done(struct crypto_async_request *areq, int err);
 228
 229static int gcm_hash_update(struct aead_request *req,
 230			   struct crypto_gcm_req_priv_ctx *pctx,
 231			   crypto_completion_t complete,
 232			   struct scatterlist *src,
 233			   unsigned int len)
 234{
 235	struct ahash_request *ahreq = &pctx->u.ahreq;
 236
 237	ahash_request_set_callback(ahreq, aead_request_flags(req),
 238				   complete, req);
 239	ahash_request_set_crypt(ahreq, src, NULL, len);
 240
 241	return crypto_ahash_update(ahreq);
 242}
 243
 244static int gcm_hash_remain(struct aead_request *req,
 245			   struct crypto_gcm_req_priv_ctx *pctx,
 246			   unsigned int remain,
 247			   crypto_completion_t complete)
 248{
 249	struct ahash_request *ahreq = &pctx->u.ahreq;
 250
 251	ahash_request_set_callback(ahreq, aead_request_flags(req),
 252				   complete, req);
 253	sg_init_one(pctx->src, gcm_zeroes, remain);
 254	ahash_request_set_crypt(ahreq, pctx->src, NULL, remain);
 255
 256	return crypto_ahash_update(ahreq);
 257}
 258
 259static int gcm_hash_len(struct aead_request *req,
 260			struct crypto_gcm_req_priv_ctx *pctx)
 261{
 262	struct ahash_request *ahreq = &pctx->u.ahreq;
 263	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 264	u128 lengths;
 265
 266	lengths.a = cpu_to_be64(req->assoclen * 8);
 267	lengths.b = cpu_to_be64(gctx->cryptlen * 8);
 268	memcpy(pctx->iauth_tag, &lengths, 16);
 269	sg_init_one(pctx->src, pctx->iauth_tag, 16);
 270	ahash_request_set_callback(ahreq, aead_request_flags(req),
 271				   gcm_hash_len_done, req);
 272	ahash_request_set_crypt(ahreq, pctx->src,
 273				NULL, sizeof(lengths));
 274
 275	return crypto_ahash_update(ahreq);
 276}
 277
 278static int gcm_hash_final(struct aead_request *req,
 279			  struct crypto_gcm_req_priv_ctx *pctx)
 280{
 281	struct ahash_request *ahreq = &pctx->u.ahreq;
 282
 283	ahash_request_set_callback(ahreq, aead_request_flags(req),
 284				   gcm_hash_final_done, req);
 285	ahash_request_set_crypt(ahreq, NULL, pctx->iauth_tag, 0);
 286
 287	return crypto_ahash_final(ahreq);
 288}
 289
 290static void __gcm_hash_final_done(struct aead_request *req, int err)
 291{
 292	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 293	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 294
 295	if (!err)
 296		crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 297
 298	gctx->complete(req, err);
 299}
 300
 301static void gcm_hash_final_done(struct crypto_async_request *areq, int err)
 302{
 303	struct aead_request *req = areq->data;
 304
 305	__gcm_hash_final_done(req, err);
 306}
 307
 308static void __gcm_hash_len_done(struct aead_request *req, int err)
 309{
 310	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 311
 312	if (!err) {
 313		err = gcm_hash_final(req, pctx);
 314		if (err == -EINPROGRESS || err == -EBUSY)
 315			return;
 316	}
 317
 318	__gcm_hash_final_done(req, err);
 319}
 320
 321static void gcm_hash_len_done(struct crypto_async_request *areq, int err)
 322{
 323	struct aead_request *req = areq->data;
 324
 325	__gcm_hash_len_done(req, err);
 326}
 327
 328static void __gcm_hash_crypt_remain_done(struct aead_request *req, int err)
 329{
 330	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 331
 332	if (!err) {
 333		err = gcm_hash_len(req, pctx);
 334		if (err == -EINPROGRESS || err == -EBUSY)
 335			return;
 336	}
 337
 338	__gcm_hash_len_done(req, err);
 339}
 340
 341static void gcm_hash_crypt_remain_done(struct crypto_async_request *areq,
 342				       int err)
 343{
 344	struct aead_request *req = areq->data;
 345
 346	__gcm_hash_crypt_remain_done(req, err);
 347}
 348
 349static void __gcm_hash_crypt_done(struct aead_request *req, int err)
 350{
 351	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 352	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 353	unsigned int remain;
 354
 355	if (!err) {
 356		remain = gcm_remain(gctx->cryptlen);
 357		BUG_ON(!remain);
 358		err = gcm_hash_remain(req, pctx, remain,
 359				      gcm_hash_crypt_remain_done);
 360		if (err == -EINPROGRESS || err == -EBUSY)
 361			return;
 362	}
 363
 364	__gcm_hash_crypt_remain_done(req, err);
 365}
 366
 367static void gcm_hash_crypt_done(struct crypto_async_request *areq, int err)
 368{
 369	struct aead_request *req = areq->data;
 370
 371	__gcm_hash_crypt_done(req, err);
 372}
 373
 374static void __gcm_hash_assoc_remain_done(struct aead_request *req, int err)
 375{
 376	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 377	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 378	crypto_completion_t complete;
 379	unsigned int remain = 0;
 380
 381	if (!err && gctx->cryptlen) {
 382		remain = gcm_remain(gctx->cryptlen);
 383		complete = remain ? gcm_hash_crypt_done :
 384			gcm_hash_crypt_remain_done;
 385		err = gcm_hash_update(req, pctx, complete,
 386				      gctx->src, gctx->cryptlen);
 387		if (err == -EINPROGRESS || err == -EBUSY)
 388			return;
 389	}
 390
 391	if (remain)
 392		__gcm_hash_crypt_done(req, err);
 393	else
 394		__gcm_hash_crypt_remain_done(req, err);
 395}
 396
 397static void gcm_hash_assoc_remain_done(struct crypto_async_request *areq,
 398				       int err)
 399{
 400	struct aead_request *req = areq->data;
 401
 402	__gcm_hash_assoc_remain_done(req, err);
 403}
 404
 405static void __gcm_hash_assoc_done(struct aead_request *req, int err)
 406{
 407	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 408	unsigned int remain;
 409
 410	if (!err) {
 411		remain = gcm_remain(req->assoclen);
 412		BUG_ON(!remain);
 413		err = gcm_hash_remain(req, pctx, remain,
 414				      gcm_hash_assoc_remain_done);
 415		if (err == -EINPROGRESS || err == -EBUSY)
 416			return;
 417	}
 418
 419	__gcm_hash_assoc_remain_done(req, err);
 420}
 421
 422static void gcm_hash_assoc_done(struct crypto_async_request *areq, int err)
 423{
 424	struct aead_request *req = areq->data;
 425
 426	__gcm_hash_assoc_done(req, err);
 427}
 428
 429static void __gcm_hash_init_done(struct aead_request *req, int err)
 430{
 431	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 432	crypto_completion_t complete;
 433	unsigned int remain = 0;
 434
 435	if (!err && req->assoclen) {
 436		remain = gcm_remain(req->assoclen);
 437		complete = remain ? gcm_hash_assoc_done :
 438			gcm_hash_assoc_remain_done;
 439		err = gcm_hash_update(req, pctx, complete,
 440				      req->assoc, req->assoclen);
 441		if (err == -EINPROGRESS || err == -EBUSY)
 442			return;
 443	}
 444
 445	if (remain)
 446		__gcm_hash_assoc_done(req, err);
 447	else
 448		__gcm_hash_assoc_remain_done(req, err);
 449}
 450
 451static void gcm_hash_init_done(struct crypto_async_request *areq, int err)
 452{
 453	struct aead_request *req = areq->data;
 454
 455	__gcm_hash_init_done(req, err);
 456}
 457
 458static int gcm_hash(struct aead_request *req,
 459		    struct crypto_gcm_req_priv_ctx *pctx)
 460{
 461	struct ahash_request *ahreq = &pctx->u.ahreq;
 462	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 463	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(req->base.tfm);
 464	unsigned int remain;
 465	crypto_completion_t complete;
 466	int err;
 467
 468	ahash_request_set_tfm(ahreq, ctx->ghash);
 469
 470	ahash_request_set_callback(ahreq, aead_request_flags(req),
 471				   gcm_hash_init_done, req);
 472	err = crypto_ahash_init(ahreq);
 473	if (err)
 474		return err;
 475	remain = gcm_remain(req->assoclen);
 476	complete = remain ? gcm_hash_assoc_done : gcm_hash_assoc_remain_done;
 477	err = gcm_hash_update(req, pctx, complete, req->assoc, req->assoclen);
 478	if (err)
 479		return err;
 480	if (remain) {
 481		err = gcm_hash_remain(req, pctx, remain,
 482				      gcm_hash_assoc_remain_done);
 483		if (err)
 484			return err;
 485	}
 486	remain = gcm_remain(gctx->cryptlen);
 487	complete = remain ? gcm_hash_crypt_done : gcm_hash_crypt_remain_done;
 488	err = gcm_hash_update(req, pctx, complete, gctx->src, gctx->cryptlen);
 489	if (err)
 490		return err;
 491	if (remain) {
 492		err = gcm_hash_remain(req, pctx, remain,
 493				      gcm_hash_crypt_remain_done);
 494		if (err)
 495			return err;
 496	}
 497	err = gcm_hash_len(req, pctx);
 498	if (err)
 499		return err;
 500	err = gcm_hash_final(req, pctx);
 501	if (err)
 502		return err;
 503
 504	return 0;
 505}
 506
 507static void gcm_enc_copy_hash(struct aead_request *req,
 508			      struct crypto_gcm_req_priv_ctx *pctx)
 509{
 510	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 511	u8 *auth_tag = pctx->auth_tag;
 512
 513	scatterwalk_map_and_copy(auth_tag, req->dst, req->cryptlen,
 514				 crypto_aead_authsize(aead), 1);
 515}
 516
 517static void gcm_enc_hash_done(struct aead_request *req, int err)
 518{
 519	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 520
 521	if (!err)
 522		gcm_enc_copy_hash(req, pctx);
 523
 524	aead_request_complete(req, err);
 525}
 526
 527static void gcm_encrypt_done(struct crypto_async_request *areq, int err)
 528{
 529	struct aead_request *req = areq->data;
 530	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 531
 532	if (!err) {
 533		err = gcm_hash(req, pctx);
 534		if (err == -EINPROGRESS || err == -EBUSY)
 535			return;
 536		else if (!err) {
 537			crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 538			gcm_enc_copy_hash(req, pctx);
 539		}
 540	}
 541
 542	aead_request_complete(req, err);
 543}
 544
 545static int crypto_gcm_encrypt(struct aead_request *req)
 546{
 547	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 548	struct ablkcipher_request *abreq = &pctx->u.abreq;
 549	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 550	int err;
 551
 552	crypto_gcm_init_crypt(abreq, req, req->cryptlen);
 553	ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 554					gcm_encrypt_done, req);
 555
 556	gctx->src = req->dst;
 557	gctx->cryptlen = req->cryptlen;
 558	gctx->complete = gcm_enc_hash_done;
 559
 560	err = crypto_ablkcipher_encrypt(abreq);
 561	if (err)
 562		return err;
 563
 564	err = gcm_hash(req, pctx);
 565	if (err)
 566		return err;
 567
 568	crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 569	gcm_enc_copy_hash(req, pctx);
 570
 571	return 0;
 572}
 573
 574static int crypto_gcm_verify(struct aead_request *req,
 575			     struct crypto_gcm_req_priv_ctx *pctx)
 576{
 577	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 578	u8 *auth_tag = pctx->auth_tag;
 579	u8 *iauth_tag = pctx->iauth_tag;
 580	unsigned int authsize = crypto_aead_authsize(aead);
 581	unsigned int cryptlen = req->cryptlen - authsize;
 582
 583	crypto_xor(auth_tag, iauth_tag, 16);
 584	scatterwalk_map_and_copy(iauth_tag, req->src, cryptlen, authsize, 0);
 585	return crypto_memneq(iauth_tag, auth_tag, authsize) ? -EBADMSG : 0;
 586}
 587
 588static void gcm_decrypt_done(struct crypto_async_request *areq, int err)
 589{
 590	struct aead_request *req = areq->data;
 591	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 592
 593	if (!err)
 594		err = crypto_gcm_verify(req, pctx);
 595
 596	aead_request_complete(req, err);
 597}
 598
 599static void gcm_dec_hash_done(struct aead_request *req, int err)
 600{
 601	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 602	struct ablkcipher_request *abreq = &pctx->u.abreq;
 603	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 604
 605	if (!err) {
 606		ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 607						gcm_decrypt_done, req);
 608		crypto_gcm_init_crypt(abreq, req, gctx->cryptlen);
 609		err = crypto_ablkcipher_decrypt(abreq);
 610		if (err == -EINPROGRESS || err == -EBUSY)
 611			return;
 612		else if (!err)
 613			err = crypto_gcm_verify(req, pctx);
 614	}
 615
 616	aead_request_complete(req, err);
 617}
 618
 619static int crypto_gcm_decrypt(struct aead_request *req)
 620{
 621	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 622	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 623	struct ablkcipher_request *abreq = &pctx->u.abreq;
 624	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 625	unsigned int authsize = crypto_aead_authsize(aead);
 626	unsigned int cryptlen = req->cryptlen;
 627	int err;
 628
 629	if (cryptlen < authsize)
 630		return -EINVAL;
 631	cryptlen -= authsize;
 632
 633	gctx->src = req->src;
 634	gctx->cryptlen = cryptlen;
 635	gctx->complete = gcm_dec_hash_done;
 636
 637	err = gcm_hash(req, pctx);
 638	if (err)
 639		return err;
 640
 641	ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 642					gcm_decrypt_done, req);
 643	crypto_gcm_init_crypt(abreq, req, cryptlen);
 644	err = crypto_ablkcipher_decrypt(abreq);
 645	if (err)
 646		return err;
 647
 648	return crypto_gcm_verify(req, pctx);
 649}
 650
 651static int crypto_gcm_init_tfm(struct crypto_tfm *tfm)
 652{
 653	struct crypto_instance *inst = (void *)tfm->__crt_alg;
 654	struct gcm_instance_ctx *ictx = crypto_instance_ctx(inst);
 655	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(tfm);
 656	struct crypto_ablkcipher *ctr;
 657	struct crypto_ahash *ghash;
 658	unsigned long align;
 659	int err;
 660
 661	ghash = crypto_spawn_ahash(&ictx->ghash);
 662	if (IS_ERR(ghash))
 663		return PTR_ERR(ghash);
 664
 665	ctr = crypto_spawn_skcipher(&ictx->ctr);
 666	err = PTR_ERR(ctr);
 667	if (IS_ERR(ctr))
 668		goto err_free_hash;
 669
 670	ctx->ctr = ctr;
 671	ctx->ghash = ghash;
 672
 673	align = crypto_tfm_alg_alignmask(tfm);
 674	align &= ~(crypto_tfm_ctx_alignment() - 1);
 675	tfm->crt_aead.reqsize = align +
 676		offsetof(struct crypto_gcm_req_priv_ctx, u) +
 677		max(sizeof(struct ablkcipher_request) +
 678		    crypto_ablkcipher_reqsize(ctr),
 679		    sizeof(struct ahash_request) +
 680		    crypto_ahash_reqsize(ghash));
 681
 682	return 0;
 683
 684err_free_hash:
 685	crypto_free_ahash(ghash);
 686	return err;
 687}
 688
 689static void crypto_gcm_exit_tfm(struct crypto_tfm *tfm)
 690{
 691	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(tfm);
 692
 693	crypto_free_ahash(ctx->ghash);
 694	crypto_free_ablkcipher(ctx->ctr);
 695}
 696
 697static struct crypto_instance *crypto_gcm_alloc_common(struct rtattr **tb,
 698						       const char *full_name,
 699						       const char *ctr_name,
 700						       const char *ghash_name)
 701{
 702	struct crypto_attr_type *algt;
 703	struct crypto_instance *inst;
 704	struct crypto_alg *ctr;
 705	struct crypto_alg *ghash_alg;
 706	struct ahash_alg *ghash_ahash_alg;
 707	struct gcm_instance_ctx *ctx;
 708	int err;
 709
 710	algt = crypto_get_attr_type(tb);
 
 711	if (IS_ERR(algt))
 712		return ERR_CAST(algt);
 713
 714	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
 715		return ERR_PTR(-EINVAL);
 716
 717	ghash_alg = crypto_find_alg(ghash_name, &crypto_ahash_type,
 718				    CRYPTO_ALG_TYPE_HASH,
 719				    CRYPTO_ALG_TYPE_AHASH_MASK);
 
 720	if (IS_ERR(ghash_alg))
 721		return ERR_CAST(ghash_alg);
 722
 723	err = -ENOMEM;
 724	inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
 725	if (!inst)
 726		goto out_put_ghash;
 727
 728	ctx = crypto_instance_ctx(inst);
 729	ghash_ahash_alg = container_of(ghash_alg, struct ahash_alg, halg.base);
 730	err = crypto_init_ahash_spawn(&ctx->ghash, &ghash_ahash_alg->halg,
 731				      inst);
 732	if (err)
 733		goto err_free_inst;
 734
 735	crypto_set_skcipher_spawn(&ctx->ctr, inst);
 736	err = crypto_grab_skcipher(&ctx->ctr, ctr_name, 0,
 737				   crypto_requires_sync(algt->type,
 738							algt->mask));
 739	if (err)
 740		goto err_drop_ghash;
 741
 742	ctr = crypto_skcipher_spawn_alg(&ctx->ctr);
 743
 744	/* We only support 16-byte blocks. */
 745	if (ctr->cra_ablkcipher.ivsize != 16)
 746		goto out_put_ctr;
 747
 748	/* Not a stream cipher? */
 749	err = -EINVAL;
 750	if (ctr->cra_blocksize != 1)
 751		goto out_put_ctr;
 752
 753	err = -ENAMETOOLONG;
 754	if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
 755		     "gcm_base(%s,%s)", ctr->cra_driver_name,
 756		     ghash_alg->cra_driver_name) >=
 757	    CRYPTO_MAX_ALG_NAME)
 758		goto out_put_ctr;
 759
 760	memcpy(inst->alg.cra_name, full_name, CRYPTO_MAX_ALG_NAME);
 761
 762	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
 763	inst->alg.cra_flags |= ctr->cra_flags & CRYPTO_ALG_ASYNC;
 764	inst->alg.cra_priority = ctr->cra_priority;
 765	inst->alg.cra_blocksize = 1;
 766	inst->alg.cra_alignmask = ctr->cra_alignmask | (__alignof__(u64) - 1);
 767	inst->alg.cra_type = &crypto_aead_type;
 768	inst->alg.cra_aead.ivsize = 16;
 769	inst->alg.cra_aead.maxauthsize = 16;
 770	inst->alg.cra_ctxsize = sizeof(struct crypto_gcm_ctx);
 771	inst->alg.cra_init = crypto_gcm_init_tfm;
 772	inst->alg.cra_exit = crypto_gcm_exit_tfm;
 773	inst->alg.cra_aead.setkey = crypto_gcm_setkey;
 774	inst->alg.cra_aead.setauthsize = crypto_gcm_setauthsize;
 775	inst->alg.cra_aead.encrypt = crypto_gcm_encrypt;
 776	inst->alg.cra_aead.decrypt = crypto_gcm_decrypt;
 777
 778out:
 779	crypto_mod_put(ghash_alg);
 780	return inst;
 781
 782out_put_ctr:
 783	crypto_drop_skcipher(&ctx->ctr);
 784err_drop_ghash:
 785	crypto_drop_ahash(&ctx->ghash);
 786err_free_inst:
 787	kfree(inst);
 788out_put_ghash:
 789	inst = ERR_PTR(err);
 790	goto out;
 791}
 792
 793static struct crypto_instance *crypto_gcm_alloc(struct rtattr **tb)
 794{
 
 795	const char *cipher_name;
 796	char ctr_name[CRYPTO_MAX_ALG_NAME];
 797	char full_name[CRYPTO_MAX_ALG_NAME];
 798
 799	cipher_name = crypto_attr_alg_name(tb[1]);
 
 800	if (IS_ERR(cipher_name))
 801		return ERR_CAST(cipher_name);
 802
 803	if (snprintf(ctr_name, CRYPTO_MAX_ALG_NAME, "ctr(%s)", cipher_name) >=
 804	    CRYPTO_MAX_ALG_NAME)
 805		return ERR_PTR(-ENAMETOOLONG);
 806
 807	if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm(%s)", cipher_name) >=
 808	    CRYPTO_MAX_ALG_NAME)
 809		return ERR_PTR(-ENAMETOOLONG);
 810
 811	return crypto_gcm_alloc_common(tb, full_name, ctr_name, "ghash");
 812}
 813
 814static void crypto_gcm_free(struct crypto_instance *inst)
 815{
 816	struct gcm_instance_ctx *ctx = crypto_instance_ctx(inst);
 817
 818	crypto_drop_skcipher(&ctx->ctr);
 819	crypto_drop_ahash(&ctx->ghash);
 820	kfree(inst);
 821}
 822
 823static struct crypto_template crypto_gcm_tmpl = {
 824	.name = "gcm",
 825	.alloc = crypto_gcm_alloc,
 826	.free = crypto_gcm_free,
 827	.module = THIS_MODULE,
 828};
 829
 830static struct crypto_instance *crypto_gcm_base_alloc(struct rtattr **tb)
 831{
 
 832	const char *ctr_name;
 833	const char *ghash_name;
 834	char full_name[CRYPTO_MAX_ALG_NAME];
 835
 836	ctr_name = crypto_attr_alg_name(tb[1]);
 
 837	if (IS_ERR(ctr_name))
 838		return ERR_CAST(ctr_name);
 839
 840	ghash_name = crypto_attr_alg_name(tb[2]);
 
 841	if (IS_ERR(ghash_name))
 842		return ERR_CAST(ghash_name);
 843
 844	if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm_base(%s,%s)",
 845		     ctr_name, ghash_name) >= CRYPTO_MAX_ALG_NAME)
 846		return ERR_PTR(-ENAMETOOLONG);
 847
 848	return crypto_gcm_alloc_common(tb, full_name, ctr_name, ghash_name);
 849}
 850
 851static struct crypto_template crypto_gcm_base_tmpl = {
 852	.name = "gcm_base",
 853	.alloc = crypto_gcm_base_alloc,
 854	.free = crypto_gcm_free,
 855	.module = THIS_MODULE,
 856};
 857
 858static int crypto_rfc4106_setkey(struct crypto_aead *parent, const u8 *key,
 859				 unsigned int keylen)
 860{
 861	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(parent);
 862	struct crypto_aead *child = ctx->child;
 863	int err;
 864
 865	if (keylen < 4)
 866		return -EINVAL;
 867
 868	keylen -= 4;
 869	memcpy(ctx->nonce, key + keylen, 4);
 870
 871	crypto_aead_clear_flags(child, CRYPTO_TFM_REQ_MASK);
 872	crypto_aead_set_flags(child, crypto_aead_get_flags(parent) &
 873				     CRYPTO_TFM_REQ_MASK);
 874	err = crypto_aead_setkey(child, key, keylen);
 875	crypto_aead_set_flags(parent, crypto_aead_get_flags(child) &
 876				      CRYPTO_TFM_RES_MASK);
 877
 878	return err;
 879}
 880
 881static int crypto_rfc4106_setauthsize(struct crypto_aead *parent,
 882				      unsigned int authsize)
 883{
 884	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(parent);
 885
 886	switch (authsize) {
 887	case 8:
 888	case 12:
 889	case 16:
 890		break;
 891	default:
 892		return -EINVAL;
 893	}
 894
 895	return crypto_aead_setauthsize(ctx->child, authsize);
 896}
 897
 898static struct aead_request *crypto_rfc4106_crypt(struct aead_request *req)
 899{
 900	struct aead_request *subreq = aead_request_ctx(req);
 901	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 902	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(aead);
 903	struct crypto_aead *child = ctx->child;
 904	u8 *iv = PTR_ALIGN((u8 *)(subreq + 1) + crypto_aead_reqsize(child),
 905			   crypto_aead_alignmask(child) + 1);
 906
 907	memcpy(iv, ctx->nonce, 4);
 908	memcpy(iv + 4, req->iv, 8);
 909
 910	aead_request_set_tfm(subreq, child);
 911	aead_request_set_callback(subreq, req->base.flags, req->base.complete,
 912				  req->base.data);
 913	aead_request_set_crypt(subreq, req->src, req->dst, req->cryptlen, iv);
 914	aead_request_set_assoc(subreq, req->assoc, req->assoclen);
 915
 916	return subreq;
 917}
 918
 919static int crypto_rfc4106_encrypt(struct aead_request *req)
 920{
 921	req = crypto_rfc4106_crypt(req);
 922
 923	return crypto_aead_encrypt(req);
 924}
 925
 926static int crypto_rfc4106_decrypt(struct aead_request *req)
 927{
 928	req = crypto_rfc4106_crypt(req);
 929
 930	return crypto_aead_decrypt(req);
 931}
 932
 933static int crypto_rfc4106_init_tfm(struct crypto_tfm *tfm)
 934{
 935	struct crypto_instance *inst = (void *)tfm->__crt_alg;
 936	struct crypto_aead_spawn *spawn = crypto_instance_ctx(inst);
 937	struct crypto_rfc4106_ctx *ctx = crypto_tfm_ctx(tfm);
 938	struct crypto_aead *aead;
 939	unsigned long align;
 940
 941	aead = crypto_spawn_aead(spawn);
 942	if (IS_ERR(aead))
 943		return PTR_ERR(aead);
 944
 945	ctx->child = aead;
 946
 947	align = crypto_aead_alignmask(aead);
 948	align &= ~(crypto_tfm_ctx_alignment() - 1);
 949	tfm->crt_aead.reqsize = sizeof(struct aead_request) +
 950				ALIGN(crypto_aead_reqsize(aead),
 951				      crypto_tfm_ctx_alignment()) +
 952				align + 16;
 953
 954	return 0;
 955}
 956
 957static void crypto_rfc4106_exit_tfm(struct crypto_tfm *tfm)
 958{
 959	struct crypto_rfc4106_ctx *ctx = crypto_tfm_ctx(tfm);
 960
 961	crypto_free_aead(ctx->child);
 962}
 963
 964static struct crypto_instance *crypto_rfc4106_alloc(struct rtattr **tb)
 965{
 966	struct crypto_attr_type *algt;
 967	struct crypto_instance *inst;
 968	struct crypto_aead_spawn *spawn;
 969	struct crypto_alg *alg;
 970	const char *ccm_name;
 971	int err;
 972
 973	algt = crypto_get_attr_type(tb);
 
 974	if (IS_ERR(algt))
 975		return ERR_CAST(algt);
 976
 977	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
 978		return ERR_PTR(-EINVAL);
 979
 980	ccm_name = crypto_attr_alg_name(tb[1]);
 
 981	if (IS_ERR(ccm_name))
 982		return ERR_CAST(ccm_name);
 983
 984	inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
 985	if (!inst)
 986		return ERR_PTR(-ENOMEM);
 987
 988	spawn = crypto_instance_ctx(inst);
 989	crypto_set_aead_spawn(spawn, inst);
 990	err = crypto_grab_aead(spawn, ccm_name, 0,
 991			       crypto_requires_sync(algt->type, algt->mask));
 992	if (err)
 993		goto out_free_inst;
 994
 995	alg = crypto_aead_spawn_alg(spawn);
 996
 997	err = -EINVAL;
 998
 999	/* We only support 16-byte blocks. */
1000	if (alg->cra_aead.ivsize != 16)
1001		goto out_drop_alg;
1002
1003	/* Not a stream cipher? */
1004	if (alg->cra_blocksize != 1)
1005		goto out_drop_alg;
1006
1007	err = -ENAMETOOLONG;
1008	if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
1009		     "rfc4106(%s)", alg->cra_name) >= CRYPTO_MAX_ALG_NAME ||
1010	    snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1011		     "rfc4106(%s)", alg->cra_driver_name) >=
1012	    CRYPTO_MAX_ALG_NAME)
1013		goto out_drop_alg;
1014
1015	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
1016	inst->alg.cra_flags |= alg->cra_flags & CRYPTO_ALG_ASYNC;
1017	inst->alg.cra_priority = alg->cra_priority;
1018	inst->alg.cra_blocksize = 1;
1019	inst->alg.cra_alignmask = alg->cra_alignmask;
1020	inst->alg.cra_type = &crypto_nivaead_type;
1021
1022	inst->alg.cra_aead.ivsize = 8;
1023	inst->alg.cra_aead.maxauthsize = 16;
1024
1025	inst->alg.cra_ctxsize = sizeof(struct crypto_rfc4106_ctx);
1026
1027	inst->alg.cra_init = crypto_rfc4106_init_tfm;
1028	inst->alg.cra_exit = crypto_rfc4106_exit_tfm;
1029
1030	inst->alg.cra_aead.setkey = crypto_rfc4106_setkey;
1031	inst->alg.cra_aead.setauthsize = crypto_rfc4106_setauthsize;
1032	inst->alg.cra_aead.encrypt = crypto_rfc4106_encrypt;
1033	inst->alg.cra_aead.decrypt = crypto_rfc4106_decrypt;
1034
1035	inst->alg.cra_aead.geniv = "seqiv";
1036
1037out:
1038	return inst;
1039
1040out_drop_alg:
1041	crypto_drop_aead(spawn);
1042out_free_inst:
1043	kfree(inst);
1044	inst = ERR_PTR(err);
1045	goto out;
1046}
1047
1048static void crypto_rfc4106_free(struct crypto_instance *inst)
1049{
1050	crypto_drop_spawn(crypto_instance_ctx(inst));
1051	kfree(inst);
1052}
1053
1054static struct crypto_template crypto_rfc4106_tmpl = {
1055	.name = "rfc4106",
1056	.alloc = crypto_rfc4106_alloc,
1057	.free = crypto_rfc4106_free,
1058	.module = THIS_MODULE,
1059};
1060
1061static inline struct crypto_rfc4543_req_ctx *crypto_rfc4543_reqctx(
1062	struct aead_request *req)
1063{
1064	unsigned long align = crypto_aead_alignmask(crypto_aead_reqtfm(req));
1065
1066	return (void *)PTR_ALIGN((u8 *)aead_request_ctx(req), align + 1);
1067}
1068
1069static int crypto_rfc4543_setkey(struct crypto_aead *parent, const u8 *key,
1070				 unsigned int keylen)
1071{
1072	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(parent);
1073	struct crypto_aead *child = ctx->child;
1074	int err;
1075
1076	if (keylen < 4)
1077		return -EINVAL;
1078
1079	keylen -= 4;
1080	memcpy(ctx->nonce, key + keylen, 4);
1081
1082	crypto_aead_clear_flags(child, CRYPTO_TFM_REQ_MASK);
1083	crypto_aead_set_flags(child, crypto_aead_get_flags(parent) &
1084				     CRYPTO_TFM_REQ_MASK);
1085	err = crypto_aead_setkey(child, key, keylen);
1086	crypto_aead_set_flags(parent, crypto_aead_get_flags(child) &
1087				      CRYPTO_TFM_RES_MASK);
1088
1089	return err;
1090}
1091
1092static int crypto_rfc4543_setauthsize(struct crypto_aead *parent,
1093				      unsigned int authsize)
1094{
1095	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(parent);
1096
1097	if (authsize != 16)
1098		return -EINVAL;
1099
1100	return crypto_aead_setauthsize(ctx->child, authsize);
1101}
1102
1103static void crypto_rfc4543_done(struct crypto_async_request *areq, int err)
1104{
1105	struct aead_request *req = areq->data;
1106	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1107	struct crypto_rfc4543_req_ctx *rctx = crypto_rfc4543_reqctx(req);
1108
1109	if (!err) {
1110		scatterwalk_map_and_copy(rctx->auth_tag, req->dst,
1111					 req->cryptlen,
1112					 crypto_aead_authsize(aead), 1);
1113	}
1114
1115	aead_request_complete(req, err);
1116}
1117
1118static struct aead_request *crypto_rfc4543_crypt(struct aead_request *req,
1119						 bool enc)
1120{
1121	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1122	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(aead);
1123	struct crypto_rfc4543_req_ctx *rctx = crypto_rfc4543_reqctx(req);
1124	struct aead_request *subreq = &rctx->subreq;
1125	struct scatterlist *src = req->src;
1126	struct scatterlist *cipher = rctx->cipher;
1127	struct scatterlist *payload = rctx->payload;
1128	struct scatterlist *assoc = rctx->assoc;
1129	unsigned int authsize = crypto_aead_authsize(aead);
1130	unsigned int assoclen = req->assoclen;
1131	struct page *srcp;
1132	u8 *vsrc;
1133	u8 *iv = PTR_ALIGN((u8 *)(rctx + 1) + crypto_aead_reqsize(ctx->child),
1134			   crypto_aead_alignmask(ctx->child) + 1);
1135
1136	memcpy(iv, ctx->nonce, 4);
1137	memcpy(iv + 4, req->iv, 8);
1138
1139	/* construct cipher/plaintext */
1140	if (enc)
1141		memset(rctx->auth_tag, 0, authsize);
1142	else
1143		scatterwalk_map_and_copy(rctx->auth_tag, src,
1144					 req->cryptlen - authsize,
1145					 authsize, 0);
1146
1147	sg_init_one(cipher, rctx->auth_tag, authsize);
1148
1149	/* construct the aad */
1150	srcp = sg_page(src);
1151	vsrc = PageHighMem(srcp) ? NULL : page_address(srcp) + src->offset;
1152
1153	sg_init_table(payload, 2);
1154	sg_set_buf(payload, req->iv, 8);
1155	scatterwalk_crypto_chain(payload, src, vsrc == req->iv + 8, 2);
1156	assoclen += 8 + req->cryptlen - (enc ? 0 : authsize);
1157
1158	if (req->assoc->length == req->assoclen) {
1159		sg_init_table(assoc, 2);
1160		sg_set_page(assoc, sg_page(req->assoc), req->assoc->length,
1161			    req->assoc->offset);
1162	} else {
1163		BUG_ON(req->assoclen > sizeof(rctx->assocbuf));
1164
1165		scatterwalk_map_and_copy(rctx->assocbuf, req->assoc, 0,
1166					 req->assoclen, 0);
1167
1168		sg_init_table(assoc, 2);
1169		sg_set_buf(assoc, rctx->assocbuf, req->assoclen);
1170	}
1171	scatterwalk_crypto_chain(assoc, payload, 0, 2);
1172
1173	aead_request_set_tfm(subreq, ctx->child);
1174	aead_request_set_callback(subreq, req->base.flags, crypto_rfc4543_done,
1175				  req);
1176	aead_request_set_crypt(subreq, cipher, cipher, enc ? 0 : authsize, iv);
1177	aead_request_set_assoc(subreq, assoc, assoclen);
1178
1179	return subreq;
1180}
1181
1182static int crypto_rfc4543_copy_src_to_dst(struct aead_request *req, bool enc)
1183{
1184	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1185	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(aead);
1186	unsigned int authsize = crypto_aead_authsize(aead);
1187	unsigned int nbytes = req->cryptlen - (enc ? 0 : authsize);
1188	struct blkcipher_desc desc = {
1189		.tfm = ctx->null,
1190	};
1191
1192	return crypto_blkcipher_encrypt(&desc, req->dst, req->src, nbytes);
1193}
1194
1195static int crypto_rfc4543_encrypt(struct aead_request *req)
1196{
1197	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1198	struct crypto_rfc4543_req_ctx *rctx = crypto_rfc4543_reqctx(req);
1199	struct aead_request *subreq;
1200	int err;
1201
1202	if (req->src != req->dst) {
1203		err = crypto_rfc4543_copy_src_to_dst(req, true);
1204		if (err)
1205			return err;
1206	}
1207
1208	subreq = crypto_rfc4543_crypt(req, true);
1209	err = crypto_aead_encrypt(subreq);
1210	if (err)
1211		return err;
1212
1213	scatterwalk_map_and_copy(rctx->auth_tag, req->dst, req->cryptlen,
1214				 crypto_aead_authsize(aead), 1);
1215
1216	return 0;
1217}
1218
1219static int crypto_rfc4543_decrypt(struct aead_request *req)
1220{
1221	int err;
1222
1223	if (req->src != req->dst) {
1224		err = crypto_rfc4543_copy_src_to_dst(req, false);
1225		if (err)
1226			return err;
1227	}
1228
1229	req = crypto_rfc4543_crypt(req, false);
1230
1231	return crypto_aead_decrypt(req);
1232}
1233
1234static int crypto_rfc4543_init_tfm(struct crypto_tfm *tfm)
1235{
1236	struct crypto_instance *inst = (void *)tfm->__crt_alg;
1237	struct crypto_rfc4543_instance_ctx *ictx = crypto_instance_ctx(inst);
1238	struct crypto_aead_spawn *spawn = &ictx->aead;
1239	struct crypto_rfc4543_ctx *ctx = crypto_tfm_ctx(tfm);
1240	struct crypto_aead *aead;
1241	struct crypto_blkcipher *null;
1242	unsigned long align;
1243	int err = 0;
1244
1245	aead = crypto_spawn_aead(spawn);
1246	if (IS_ERR(aead))
1247		return PTR_ERR(aead);
1248
1249	null = crypto_spawn_blkcipher(&ictx->null.base);
1250	err = PTR_ERR(null);
1251	if (IS_ERR(null))
1252		goto err_free_aead;
1253
1254	ctx->child = aead;
1255	ctx->null = null;
1256
1257	align = crypto_aead_alignmask(aead);
1258	align &= ~(crypto_tfm_ctx_alignment() - 1);
1259	tfm->crt_aead.reqsize = sizeof(struct crypto_rfc4543_req_ctx) +
1260				ALIGN(crypto_aead_reqsize(aead),
1261				      crypto_tfm_ctx_alignment()) +
1262				align + 16;
1263
1264	return 0;
1265
1266err_free_aead:
1267	crypto_free_aead(aead);
1268	return err;
1269}
1270
1271static void crypto_rfc4543_exit_tfm(struct crypto_tfm *tfm)
1272{
1273	struct crypto_rfc4543_ctx *ctx = crypto_tfm_ctx(tfm);
1274
1275	crypto_free_aead(ctx->child);
1276	crypto_free_blkcipher(ctx->null);
1277}
1278
1279static struct crypto_instance *crypto_rfc4543_alloc(struct rtattr **tb)
1280{
1281	struct crypto_attr_type *algt;
1282	struct crypto_instance *inst;
1283	struct crypto_aead_spawn *spawn;
1284	struct crypto_alg *alg;
1285	struct crypto_rfc4543_instance_ctx *ctx;
1286	const char *ccm_name;
1287	int err;
1288
1289	algt = crypto_get_attr_type(tb);
 
1290	if (IS_ERR(algt))
1291		return ERR_CAST(algt);
1292
1293	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
1294		return ERR_PTR(-EINVAL);
1295
1296	ccm_name = crypto_attr_alg_name(tb[1]);
 
1297	if (IS_ERR(ccm_name))
1298		return ERR_CAST(ccm_name);
1299
1300	inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
1301	if (!inst)
1302		return ERR_PTR(-ENOMEM);
1303
1304	ctx = crypto_instance_ctx(inst);
1305	spawn = &ctx->aead;
1306	crypto_set_aead_spawn(spawn, inst);
1307	err = crypto_grab_aead(spawn, ccm_name, 0,
1308			       crypto_requires_sync(algt->type, algt->mask));
1309	if (err)
1310		goto out_free_inst;
1311
1312	alg = crypto_aead_spawn_alg(spawn);
1313
1314	crypto_set_skcipher_spawn(&ctx->null, inst);
1315	err = crypto_grab_skcipher(&ctx->null, "ecb(cipher_null)", 0,
1316				   CRYPTO_ALG_ASYNC);
1317	if (err)
1318		goto out_drop_alg;
1319
1320	crypto_skcipher_spawn_alg(&ctx->null);
1321
1322	err = -EINVAL;
1323
1324	/* We only support 16-byte blocks. */
1325	if (alg->cra_aead.ivsize != 16)
1326		goto out_drop_ecbnull;
1327
1328	/* Not a stream cipher? */
1329	if (alg->cra_blocksize != 1)
1330		goto out_drop_ecbnull;
1331
1332	err = -ENAMETOOLONG;
1333	if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
1334		     "rfc4543(%s)", alg->cra_name) >= CRYPTO_MAX_ALG_NAME ||
1335	    snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1336		     "rfc4543(%s)", alg->cra_driver_name) >=
1337	    CRYPTO_MAX_ALG_NAME)
1338		goto out_drop_ecbnull;
1339
1340	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
1341	inst->alg.cra_flags |= alg->cra_flags & CRYPTO_ALG_ASYNC;
1342	inst->alg.cra_priority = alg->cra_priority;
1343	inst->alg.cra_blocksize = 1;
1344	inst->alg.cra_alignmask = alg->cra_alignmask;
1345	inst->alg.cra_type = &crypto_nivaead_type;
1346
1347	inst->alg.cra_aead.ivsize = 8;
1348	inst->alg.cra_aead.maxauthsize = 16;
1349
1350	inst->alg.cra_ctxsize = sizeof(struct crypto_rfc4543_ctx);
1351
1352	inst->alg.cra_init = crypto_rfc4543_init_tfm;
1353	inst->alg.cra_exit = crypto_rfc4543_exit_tfm;
1354
1355	inst->alg.cra_aead.setkey = crypto_rfc4543_setkey;
1356	inst->alg.cra_aead.setauthsize = crypto_rfc4543_setauthsize;
1357	inst->alg.cra_aead.encrypt = crypto_rfc4543_encrypt;
1358	inst->alg.cra_aead.decrypt = crypto_rfc4543_decrypt;
1359
1360	inst->alg.cra_aead.geniv = "seqiv";
1361
1362out:
1363	return inst;
1364
1365out_drop_ecbnull:
1366	crypto_drop_skcipher(&ctx->null);
1367out_drop_alg:
1368	crypto_drop_aead(spawn);
1369out_free_inst:
1370	kfree(inst);
1371	inst = ERR_PTR(err);
1372	goto out;
1373}
1374
1375static void crypto_rfc4543_free(struct crypto_instance *inst)
1376{
1377	struct crypto_rfc4543_instance_ctx *ctx = crypto_instance_ctx(inst);
1378
1379	crypto_drop_aead(&ctx->aead);
1380	crypto_drop_skcipher(&ctx->null);
1381
1382	kfree(inst);
1383}
1384
1385static struct crypto_template crypto_rfc4543_tmpl = {
1386	.name = "rfc4543",
1387	.alloc = crypto_rfc4543_alloc,
1388	.free = crypto_rfc4543_free,
1389	.module = THIS_MODULE,
1390};
1391
1392static int __init crypto_gcm_module_init(void)
1393{
1394	int err;
1395
1396	gcm_zeroes = kzalloc(16, GFP_KERNEL);
1397	if (!gcm_zeroes)
1398		return -ENOMEM;
1399
1400	err = crypto_register_template(&crypto_gcm_base_tmpl);
1401	if (err)
1402		goto out;
1403
1404	err = crypto_register_template(&crypto_gcm_tmpl);
1405	if (err)
1406		goto out_undo_base;
1407
1408	err = crypto_register_template(&crypto_rfc4106_tmpl);
1409	if (err)
1410		goto out_undo_gcm;
1411
1412	err = crypto_register_template(&crypto_rfc4543_tmpl);
1413	if (err)
1414		goto out_undo_rfc4106;
1415
1416	return 0;
1417
1418out_undo_rfc4106:
1419	crypto_unregister_template(&crypto_rfc4106_tmpl);
1420out_undo_gcm:
1421	crypto_unregister_template(&crypto_gcm_tmpl);
1422out_undo_base:
1423	crypto_unregister_template(&crypto_gcm_base_tmpl);
1424out:
1425	kfree(gcm_zeroes);
1426	return err;
1427}
1428
1429static void __exit crypto_gcm_module_exit(void)
1430{
1431	kfree(gcm_zeroes);
1432	crypto_unregister_template(&crypto_rfc4543_tmpl);
1433	crypto_unregister_template(&crypto_rfc4106_tmpl);
1434	crypto_unregister_template(&crypto_gcm_tmpl);
1435	crypto_unregister_template(&crypto_gcm_base_tmpl);
1436}
1437
1438module_init(crypto_gcm_module_init);
1439module_exit(crypto_gcm_module_exit);
1440
1441MODULE_LICENSE("GPL");
1442MODULE_DESCRIPTION("Galois/Counter Mode");
1443MODULE_AUTHOR("Mikko Herranen <mh1@iki.fi>");
1444MODULE_ALIAS("gcm_base");
1445MODULE_ALIAS("rfc4106");
1446MODULE_ALIAS("rfc4543");
v3.1
   1/*
   2 * GCM: Galois/Counter Mode.
   3 *
   4 * Copyright (c) 2007 Nokia Siemens Networks - Mikko Herranen <mh1@iki.fi>
   5 *
   6 * This program is free software; you can redistribute it and/or modify it
   7 * under the terms of the GNU General Public License version 2 as published
   8 * by the Free Software Foundation.
   9 */
  10
  11#include <crypto/gf128mul.h>
  12#include <crypto/internal/aead.h>
  13#include <crypto/internal/skcipher.h>
  14#include <crypto/internal/hash.h>
  15#include <crypto/scatterwalk.h>
  16#include <crypto/hash.h>
  17#include "internal.h"
  18#include <linux/completion.h>
  19#include <linux/err.h>
  20#include <linux/init.h>
  21#include <linux/kernel.h>
  22#include <linux/module.h>
  23#include <linux/slab.h>
  24
  25struct gcm_instance_ctx {
  26	struct crypto_skcipher_spawn ctr;
  27	struct crypto_ahash_spawn ghash;
  28};
  29
  30struct crypto_gcm_ctx {
  31	struct crypto_ablkcipher *ctr;
  32	struct crypto_ahash *ghash;
  33};
  34
  35struct crypto_rfc4106_ctx {
  36	struct crypto_aead *child;
  37	u8 nonce[4];
  38};
  39
 
 
 
 
 
  40struct crypto_rfc4543_ctx {
  41	struct crypto_aead *child;
 
  42	u8 nonce[4];
  43};
  44
  45struct crypto_rfc4543_req_ctx {
  46	u8 auth_tag[16];
 
  47	struct scatterlist cipher[1];
  48	struct scatterlist payload[2];
  49	struct scatterlist assoc[2];
  50	struct aead_request subreq;
  51};
  52
  53struct crypto_gcm_ghash_ctx {
  54	unsigned int cryptlen;
  55	struct scatterlist *src;
  56	void (*complete)(struct aead_request *req, int err);
  57};
  58
  59struct crypto_gcm_req_priv_ctx {
  60	u8 auth_tag[16];
  61	u8 iauth_tag[16];
  62	struct scatterlist src[2];
  63	struct scatterlist dst[2];
  64	struct crypto_gcm_ghash_ctx ghash_ctx;
  65	union {
  66		struct ahash_request ahreq;
  67		struct ablkcipher_request abreq;
  68	} u;
  69};
  70
  71struct crypto_gcm_setkey_result {
  72	int err;
  73	struct completion completion;
  74};
  75
  76static void *gcm_zeroes;
  77
  78static inline struct crypto_gcm_req_priv_ctx *crypto_gcm_reqctx(
  79	struct aead_request *req)
  80{
  81	unsigned long align = crypto_aead_alignmask(crypto_aead_reqtfm(req));
  82
  83	return (void *)PTR_ALIGN((u8 *)aead_request_ctx(req), align + 1);
  84}
  85
  86static void crypto_gcm_setkey_done(struct crypto_async_request *req, int err)
  87{
  88	struct crypto_gcm_setkey_result *result = req->data;
  89
  90	if (err == -EINPROGRESS)
  91		return;
  92
  93	result->err = err;
  94	complete(&result->completion);
  95}
  96
  97static int crypto_gcm_setkey(struct crypto_aead *aead, const u8 *key,
  98			     unsigned int keylen)
  99{
 100	struct crypto_gcm_ctx *ctx = crypto_aead_ctx(aead);
 101	struct crypto_ahash *ghash = ctx->ghash;
 102	struct crypto_ablkcipher *ctr = ctx->ctr;
 103	struct {
 104		be128 hash;
 105		u8 iv[8];
 106
 107		struct crypto_gcm_setkey_result result;
 108
 109		struct scatterlist sg[1];
 110		struct ablkcipher_request req;
 111	} *data;
 112	int err;
 113
 114	crypto_ablkcipher_clear_flags(ctr, CRYPTO_TFM_REQ_MASK);
 115	crypto_ablkcipher_set_flags(ctr, crypto_aead_get_flags(aead) &
 116				   CRYPTO_TFM_REQ_MASK);
 117
 118	err = crypto_ablkcipher_setkey(ctr, key, keylen);
 119	if (err)
 120		return err;
 121
 122	crypto_aead_set_flags(aead, crypto_ablkcipher_get_flags(ctr) &
 123				       CRYPTO_TFM_RES_MASK);
 124
 125	data = kzalloc(sizeof(*data) + crypto_ablkcipher_reqsize(ctr),
 126		       GFP_KERNEL);
 127	if (!data)
 128		return -ENOMEM;
 129
 130	init_completion(&data->result.completion);
 131	sg_init_one(data->sg, &data->hash, sizeof(data->hash));
 132	ablkcipher_request_set_tfm(&data->req, ctr);
 133	ablkcipher_request_set_callback(&data->req, CRYPTO_TFM_REQ_MAY_SLEEP |
 134						    CRYPTO_TFM_REQ_MAY_BACKLOG,
 135					crypto_gcm_setkey_done,
 136					&data->result);
 137	ablkcipher_request_set_crypt(&data->req, data->sg, data->sg,
 138				     sizeof(data->hash), data->iv);
 139
 140	err = crypto_ablkcipher_encrypt(&data->req);
 141	if (err == -EINPROGRESS || err == -EBUSY) {
 142		err = wait_for_completion_interruptible(
 143			&data->result.completion);
 144		if (!err)
 145			err = data->result.err;
 146	}
 147
 148	if (err)
 149		goto out;
 150
 151	crypto_ahash_clear_flags(ghash, CRYPTO_TFM_REQ_MASK);
 152	crypto_ahash_set_flags(ghash, crypto_aead_get_flags(aead) &
 153			       CRYPTO_TFM_REQ_MASK);
 154	err = crypto_ahash_setkey(ghash, (u8 *)&data->hash, sizeof(be128));
 155	crypto_aead_set_flags(aead, crypto_ahash_get_flags(ghash) &
 156			      CRYPTO_TFM_RES_MASK);
 157
 158out:
 159	kfree(data);
 160	return err;
 161}
 162
 163static int crypto_gcm_setauthsize(struct crypto_aead *tfm,
 164				  unsigned int authsize)
 165{
 166	switch (authsize) {
 167	case 4:
 168	case 8:
 169	case 12:
 170	case 13:
 171	case 14:
 172	case 15:
 173	case 16:
 174		break;
 175	default:
 176		return -EINVAL;
 177	}
 178
 179	return 0;
 180}
 181
 182static void crypto_gcm_init_crypt(struct ablkcipher_request *ablk_req,
 183				  struct aead_request *req,
 184				  unsigned int cryptlen)
 185{
 186	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 187	struct crypto_gcm_ctx *ctx = crypto_aead_ctx(aead);
 188	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 189	struct scatterlist *dst;
 190	__be32 counter = cpu_to_be32(1);
 191
 192	memset(pctx->auth_tag, 0, sizeof(pctx->auth_tag));
 193	memcpy(req->iv + 12, &counter, 4);
 194
 195	sg_init_table(pctx->src, 2);
 196	sg_set_buf(pctx->src, pctx->auth_tag, sizeof(pctx->auth_tag));
 197	scatterwalk_sg_chain(pctx->src, 2, req->src);
 198
 199	dst = pctx->src;
 200	if (req->src != req->dst) {
 201		sg_init_table(pctx->dst, 2);
 202		sg_set_buf(pctx->dst, pctx->auth_tag, sizeof(pctx->auth_tag));
 203		scatterwalk_sg_chain(pctx->dst, 2, req->dst);
 204		dst = pctx->dst;
 205	}
 206
 207	ablkcipher_request_set_tfm(ablk_req, ctx->ctr);
 208	ablkcipher_request_set_crypt(ablk_req, pctx->src, dst,
 209				     cryptlen + sizeof(pctx->auth_tag),
 210				     req->iv);
 211}
 212
 213static inline unsigned int gcm_remain(unsigned int len)
 214{
 215	len &= 0xfU;
 216	return len ? 16 - len : 0;
 217}
 218
 219static void gcm_hash_len_done(struct crypto_async_request *areq, int err);
 220static void gcm_hash_final_done(struct crypto_async_request *areq, int err);
 221
 222static int gcm_hash_update(struct aead_request *req,
 223			   struct crypto_gcm_req_priv_ctx *pctx,
 224			   crypto_completion_t complete,
 225			   struct scatterlist *src,
 226			   unsigned int len)
 227{
 228	struct ahash_request *ahreq = &pctx->u.ahreq;
 229
 230	ahash_request_set_callback(ahreq, aead_request_flags(req),
 231				   complete, req);
 232	ahash_request_set_crypt(ahreq, src, NULL, len);
 233
 234	return crypto_ahash_update(ahreq);
 235}
 236
 237static int gcm_hash_remain(struct aead_request *req,
 238			   struct crypto_gcm_req_priv_ctx *pctx,
 239			   unsigned int remain,
 240			   crypto_completion_t complete)
 241{
 242	struct ahash_request *ahreq = &pctx->u.ahreq;
 243
 244	ahash_request_set_callback(ahreq, aead_request_flags(req),
 245				   complete, req);
 246	sg_init_one(pctx->src, gcm_zeroes, remain);
 247	ahash_request_set_crypt(ahreq, pctx->src, NULL, remain);
 248
 249	return crypto_ahash_update(ahreq);
 250}
 251
 252static int gcm_hash_len(struct aead_request *req,
 253			struct crypto_gcm_req_priv_ctx *pctx)
 254{
 255	struct ahash_request *ahreq = &pctx->u.ahreq;
 256	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 257	u128 lengths;
 258
 259	lengths.a = cpu_to_be64(req->assoclen * 8);
 260	lengths.b = cpu_to_be64(gctx->cryptlen * 8);
 261	memcpy(pctx->iauth_tag, &lengths, 16);
 262	sg_init_one(pctx->src, pctx->iauth_tag, 16);
 263	ahash_request_set_callback(ahreq, aead_request_flags(req),
 264				   gcm_hash_len_done, req);
 265	ahash_request_set_crypt(ahreq, pctx->src,
 266				NULL, sizeof(lengths));
 267
 268	return crypto_ahash_update(ahreq);
 269}
 270
 271static int gcm_hash_final(struct aead_request *req,
 272			  struct crypto_gcm_req_priv_ctx *pctx)
 273{
 274	struct ahash_request *ahreq = &pctx->u.ahreq;
 275
 276	ahash_request_set_callback(ahreq, aead_request_flags(req),
 277				   gcm_hash_final_done, req);
 278	ahash_request_set_crypt(ahreq, NULL, pctx->iauth_tag, 0);
 279
 280	return crypto_ahash_final(ahreq);
 281}
 282
 283static void __gcm_hash_final_done(struct aead_request *req, int err)
 284{
 285	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 286	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 287
 288	if (!err)
 289		crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 290
 291	gctx->complete(req, err);
 292}
 293
 294static void gcm_hash_final_done(struct crypto_async_request *areq, int err)
 295{
 296	struct aead_request *req = areq->data;
 297
 298	__gcm_hash_final_done(req, err);
 299}
 300
 301static void __gcm_hash_len_done(struct aead_request *req, int err)
 302{
 303	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 304
 305	if (!err) {
 306		err = gcm_hash_final(req, pctx);
 307		if (err == -EINPROGRESS || err == -EBUSY)
 308			return;
 309	}
 310
 311	__gcm_hash_final_done(req, err);
 312}
 313
 314static void gcm_hash_len_done(struct crypto_async_request *areq, int err)
 315{
 316	struct aead_request *req = areq->data;
 317
 318	__gcm_hash_len_done(req, err);
 319}
 320
 321static void __gcm_hash_crypt_remain_done(struct aead_request *req, int err)
 322{
 323	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 324
 325	if (!err) {
 326		err = gcm_hash_len(req, pctx);
 327		if (err == -EINPROGRESS || err == -EBUSY)
 328			return;
 329	}
 330
 331	__gcm_hash_len_done(req, err);
 332}
 333
 334static void gcm_hash_crypt_remain_done(struct crypto_async_request *areq,
 335				       int err)
 336{
 337	struct aead_request *req = areq->data;
 338
 339	__gcm_hash_crypt_remain_done(req, err);
 340}
 341
 342static void __gcm_hash_crypt_done(struct aead_request *req, int err)
 343{
 344	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 345	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 346	unsigned int remain;
 347
 348	if (!err) {
 349		remain = gcm_remain(gctx->cryptlen);
 350		BUG_ON(!remain);
 351		err = gcm_hash_remain(req, pctx, remain,
 352				      gcm_hash_crypt_remain_done);
 353		if (err == -EINPROGRESS || err == -EBUSY)
 354			return;
 355	}
 356
 357	__gcm_hash_crypt_remain_done(req, err);
 358}
 359
 360static void gcm_hash_crypt_done(struct crypto_async_request *areq, int err)
 361{
 362	struct aead_request *req = areq->data;
 363
 364	__gcm_hash_crypt_done(req, err);
 365}
 366
 367static void __gcm_hash_assoc_remain_done(struct aead_request *req, int err)
 368{
 369	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 370	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 371	crypto_completion_t complete;
 372	unsigned int remain = 0;
 373
 374	if (!err && gctx->cryptlen) {
 375		remain = gcm_remain(gctx->cryptlen);
 376		complete = remain ? gcm_hash_crypt_done :
 377			gcm_hash_crypt_remain_done;
 378		err = gcm_hash_update(req, pctx, complete,
 379				      gctx->src, gctx->cryptlen);
 380		if (err == -EINPROGRESS || err == -EBUSY)
 381			return;
 382	}
 383
 384	if (remain)
 385		__gcm_hash_crypt_done(req, err);
 386	else
 387		__gcm_hash_crypt_remain_done(req, err);
 388}
 389
 390static void gcm_hash_assoc_remain_done(struct crypto_async_request *areq,
 391				       int err)
 392{
 393	struct aead_request *req = areq->data;
 394
 395	__gcm_hash_assoc_remain_done(req, err);
 396}
 397
 398static void __gcm_hash_assoc_done(struct aead_request *req, int err)
 399{
 400	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 401	unsigned int remain;
 402
 403	if (!err) {
 404		remain = gcm_remain(req->assoclen);
 405		BUG_ON(!remain);
 406		err = gcm_hash_remain(req, pctx, remain,
 407				      gcm_hash_assoc_remain_done);
 408		if (err == -EINPROGRESS || err == -EBUSY)
 409			return;
 410	}
 411
 412	__gcm_hash_assoc_remain_done(req, err);
 413}
 414
 415static void gcm_hash_assoc_done(struct crypto_async_request *areq, int err)
 416{
 417	struct aead_request *req = areq->data;
 418
 419	__gcm_hash_assoc_done(req, err);
 420}
 421
 422static void __gcm_hash_init_done(struct aead_request *req, int err)
 423{
 424	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 425	crypto_completion_t complete;
 426	unsigned int remain = 0;
 427
 428	if (!err && req->assoclen) {
 429		remain = gcm_remain(req->assoclen);
 430		complete = remain ? gcm_hash_assoc_done :
 431			gcm_hash_assoc_remain_done;
 432		err = gcm_hash_update(req, pctx, complete,
 433				      req->assoc, req->assoclen);
 434		if (err == -EINPROGRESS || err == -EBUSY)
 435			return;
 436	}
 437
 438	if (remain)
 439		__gcm_hash_assoc_done(req, err);
 440	else
 441		__gcm_hash_assoc_remain_done(req, err);
 442}
 443
 444static void gcm_hash_init_done(struct crypto_async_request *areq, int err)
 445{
 446	struct aead_request *req = areq->data;
 447
 448	__gcm_hash_init_done(req, err);
 449}
 450
 451static int gcm_hash(struct aead_request *req,
 452		    struct crypto_gcm_req_priv_ctx *pctx)
 453{
 454	struct ahash_request *ahreq = &pctx->u.ahreq;
 455	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 456	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(req->base.tfm);
 457	unsigned int remain;
 458	crypto_completion_t complete;
 459	int err;
 460
 461	ahash_request_set_tfm(ahreq, ctx->ghash);
 462
 463	ahash_request_set_callback(ahreq, aead_request_flags(req),
 464				   gcm_hash_init_done, req);
 465	err = crypto_ahash_init(ahreq);
 466	if (err)
 467		return err;
 468	remain = gcm_remain(req->assoclen);
 469	complete = remain ? gcm_hash_assoc_done : gcm_hash_assoc_remain_done;
 470	err = gcm_hash_update(req, pctx, complete, req->assoc, req->assoclen);
 471	if (err)
 472		return err;
 473	if (remain) {
 474		err = gcm_hash_remain(req, pctx, remain,
 475				      gcm_hash_assoc_remain_done);
 476		if (err)
 477			return err;
 478	}
 479	remain = gcm_remain(gctx->cryptlen);
 480	complete = remain ? gcm_hash_crypt_done : gcm_hash_crypt_remain_done;
 481	err = gcm_hash_update(req, pctx, complete, gctx->src, gctx->cryptlen);
 482	if (err)
 483		return err;
 484	if (remain) {
 485		err = gcm_hash_remain(req, pctx, remain,
 486				      gcm_hash_crypt_remain_done);
 487		if (err)
 488			return err;
 489	}
 490	err = gcm_hash_len(req, pctx);
 491	if (err)
 492		return err;
 493	err = gcm_hash_final(req, pctx);
 494	if (err)
 495		return err;
 496
 497	return 0;
 498}
 499
 500static void gcm_enc_copy_hash(struct aead_request *req,
 501			      struct crypto_gcm_req_priv_ctx *pctx)
 502{
 503	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 504	u8 *auth_tag = pctx->auth_tag;
 505
 506	scatterwalk_map_and_copy(auth_tag, req->dst, req->cryptlen,
 507				 crypto_aead_authsize(aead), 1);
 508}
 509
 510static void gcm_enc_hash_done(struct aead_request *req, int err)
 511{
 512	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 513
 514	if (!err)
 515		gcm_enc_copy_hash(req, pctx);
 516
 517	aead_request_complete(req, err);
 518}
 519
 520static void gcm_encrypt_done(struct crypto_async_request *areq, int err)
 521{
 522	struct aead_request *req = areq->data;
 523	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 524
 525	if (!err) {
 526		err = gcm_hash(req, pctx);
 527		if (err == -EINPROGRESS || err == -EBUSY)
 528			return;
 529		else if (!err) {
 530			crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 531			gcm_enc_copy_hash(req, pctx);
 532		}
 533	}
 534
 535	aead_request_complete(req, err);
 536}
 537
 538static int crypto_gcm_encrypt(struct aead_request *req)
 539{
 540	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 541	struct ablkcipher_request *abreq = &pctx->u.abreq;
 542	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 543	int err;
 544
 545	crypto_gcm_init_crypt(abreq, req, req->cryptlen);
 546	ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 547					gcm_encrypt_done, req);
 548
 549	gctx->src = req->dst;
 550	gctx->cryptlen = req->cryptlen;
 551	gctx->complete = gcm_enc_hash_done;
 552
 553	err = crypto_ablkcipher_encrypt(abreq);
 554	if (err)
 555		return err;
 556
 557	err = gcm_hash(req, pctx);
 558	if (err)
 559		return err;
 560
 561	crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16);
 562	gcm_enc_copy_hash(req, pctx);
 563
 564	return 0;
 565}
 566
 567static int crypto_gcm_verify(struct aead_request *req,
 568			     struct crypto_gcm_req_priv_ctx *pctx)
 569{
 570	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 571	u8 *auth_tag = pctx->auth_tag;
 572	u8 *iauth_tag = pctx->iauth_tag;
 573	unsigned int authsize = crypto_aead_authsize(aead);
 574	unsigned int cryptlen = req->cryptlen - authsize;
 575
 576	crypto_xor(auth_tag, iauth_tag, 16);
 577	scatterwalk_map_and_copy(iauth_tag, req->src, cryptlen, authsize, 0);
 578	return memcmp(iauth_tag, auth_tag, authsize) ? -EBADMSG : 0;
 579}
 580
 581static void gcm_decrypt_done(struct crypto_async_request *areq, int err)
 582{
 583	struct aead_request *req = areq->data;
 584	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 585
 586	if (!err)
 587		err = crypto_gcm_verify(req, pctx);
 588
 589	aead_request_complete(req, err);
 590}
 591
 592static void gcm_dec_hash_done(struct aead_request *req, int err)
 593{
 594	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 595	struct ablkcipher_request *abreq = &pctx->u.abreq;
 596	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 597
 598	if (!err) {
 599		ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 600						gcm_decrypt_done, req);
 601		crypto_gcm_init_crypt(abreq, req, gctx->cryptlen);
 602		err = crypto_ablkcipher_decrypt(abreq);
 603		if (err == -EINPROGRESS || err == -EBUSY)
 604			return;
 605		else if (!err)
 606			err = crypto_gcm_verify(req, pctx);
 607	}
 608
 609	aead_request_complete(req, err);
 610}
 611
 612static int crypto_gcm_decrypt(struct aead_request *req)
 613{
 614	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 615	struct crypto_gcm_req_priv_ctx *pctx = crypto_gcm_reqctx(req);
 616	struct ablkcipher_request *abreq = &pctx->u.abreq;
 617	struct crypto_gcm_ghash_ctx *gctx = &pctx->ghash_ctx;
 618	unsigned int authsize = crypto_aead_authsize(aead);
 619	unsigned int cryptlen = req->cryptlen;
 620	int err;
 621
 622	if (cryptlen < authsize)
 623		return -EINVAL;
 624	cryptlen -= authsize;
 625
 626	gctx->src = req->src;
 627	gctx->cryptlen = cryptlen;
 628	gctx->complete = gcm_dec_hash_done;
 629
 630	err = gcm_hash(req, pctx);
 631	if (err)
 632		return err;
 633
 634	ablkcipher_request_set_callback(abreq, aead_request_flags(req),
 635					gcm_decrypt_done, req);
 636	crypto_gcm_init_crypt(abreq, req, cryptlen);
 637	err = crypto_ablkcipher_decrypt(abreq);
 638	if (err)
 639		return err;
 640
 641	return crypto_gcm_verify(req, pctx);
 642}
 643
 644static int crypto_gcm_init_tfm(struct crypto_tfm *tfm)
 645{
 646	struct crypto_instance *inst = (void *)tfm->__crt_alg;
 647	struct gcm_instance_ctx *ictx = crypto_instance_ctx(inst);
 648	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(tfm);
 649	struct crypto_ablkcipher *ctr;
 650	struct crypto_ahash *ghash;
 651	unsigned long align;
 652	int err;
 653
 654	ghash = crypto_spawn_ahash(&ictx->ghash);
 655	if (IS_ERR(ghash))
 656		return PTR_ERR(ghash);
 657
 658	ctr = crypto_spawn_skcipher(&ictx->ctr);
 659	err = PTR_ERR(ctr);
 660	if (IS_ERR(ctr))
 661		goto err_free_hash;
 662
 663	ctx->ctr = ctr;
 664	ctx->ghash = ghash;
 665
 666	align = crypto_tfm_alg_alignmask(tfm);
 667	align &= ~(crypto_tfm_ctx_alignment() - 1);
 668	tfm->crt_aead.reqsize = align +
 669		offsetof(struct crypto_gcm_req_priv_ctx, u) +
 670		max(sizeof(struct ablkcipher_request) +
 671		    crypto_ablkcipher_reqsize(ctr),
 672		    sizeof(struct ahash_request) +
 673		    crypto_ahash_reqsize(ghash));
 674
 675	return 0;
 676
 677err_free_hash:
 678	crypto_free_ahash(ghash);
 679	return err;
 680}
 681
 682static void crypto_gcm_exit_tfm(struct crypto_tfm *tfm)
 683{
 684	struct crypto_gcm_ctx *ctx = crypto_tfm_ctx(tfm);
 685
 686	crypto_free_ahash(ctx->ghash);
 687	crypto_free_ablkcipher(ctx->ctr);
 688}
 689
 690static struct crypto_instance *crypto_gcm_alloc_common(struct rtattr **tb,
 691						       const char *full_name,
 692						       const char *ctr_name,
 693						       const char *ghash_name)
 694{
 695	struct crypto_attr_type *algt;
 696	struct crypto_instance *inst;
 697	struct crypto_alg *ctr;
 698	struct crypto_alg *ghash_alg;
 699	struct ahash_alg *ghash_ahash_alg;
 700	struct gcm_instance_ctx *ctx;
 701	int err;
 702
 703	algt = crypto_get_attr_type(tb);
 704	err = PTR_ERR(algt);
 705	if (IS_ERR(algt))
 706		return ERR_PTR(err);
 707
 708	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
 709		return ERR_PTR(-EINVAL);
 710
 711	ghash_alg = crypto_find_alg(ghash_name, &crypto_ahash_type,
 712				    CRYPTO_ALG_TYPE_HASH,
 713				    CRYPTO_ALG_TYPE_AHASH_MASK);
 714	err = PTR_ERR(ghash_alg);
 715	if (IS_ERR(ghash_alg))
 716		return ERR_PTR(err);
 717
 718	err = -ENOMEM;
 719	inst = kzalloc(sizeof(*inst) + sizeof(*ctx), GFP_KERNEL);
 720	if (!inst)
 721		goto out_put_ghash;
 722
 723	ctx = crypto_instance_ctx(inst);
 724	ghash_ahash_alg = container_of(ghash_alg, struct ahash_alg, halg.base);
 725	err = crypto_init_ahash_spawn(&ctx->ghash, &ghash_ahash_alg->halg,
 726				      inst);
 727	if (err)
 728		goto err_free_inst;
 729
 730	crypto_set_skcipher_spawn(&ctx->ctr, inst);
 731	err = crypto_grab_skcipher(&ctx->ctr, ctr_name, 0,
 732				   crypto_requires_sync(algt->type,
 733							algt->mask));
 734	if (err)
 735		goto err_drop_ghash;
 736
 737	ctr = crypto_skcipher_spawn_alg(&ctx->ctr);
 738
 739	/* We only support 16-byte blocks. */
 740	if (ctr->cra_ablkcipher.ivsize != 16)
 741		goto out_put_ctr;
 742
 743	/* Not a stream cipher? */
 744	err = -EINVAL;
 745	if (ctr->cra_blocksize != 1)
 746		goto out_put_ctr;
 747
 748	err = -ENAMETOOLONG;
 749	if (snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
 750		     "gcm_base(%s,%s)", ctr->cra_driver_name,
 751		     ghash_alg->cra_driver_name) >=
 752	    CRYPTO_MAX_ALG_NAME)
 753		goto out_put_ctr;
 754
 755	memcpy(inst->alg.cra_name, full_name, CRYPTO_MAX_ALG_NAME);
 756
 757	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
 758	inst->alg.cra_flags |= ctr->cra_flags & CRYPTO_ALG_ASYNC;
 759	inst->alg.cra_priority = ctr->cra_priority;
 760	inst->alg.cra_blocksize = 1;
 761	inst->alg.cra_alignmask = ctr->cra_alignmask | (__alignof__(u64) - 1);
 762	inst->alg.cra_type = &crypto_aead_type;
 763	inst->alg.cra_aead.ivsize = 16;
 764	inst->alg.cra_aead.maxauthsize = 16;
 765	inst->alg.cra_ctxsize = sizeof(struct crypto_gcm_ctx);
 766	inst->alg.cra_init = crypto_gcm_init_tfm;
 767	inst->alg.cra_exit = crypto_gcm_exit_tfm;
 768	inst->alg.cra_aead.setkey = crypto_gcm_setkey;
 769	inst->alg.cra_aead.setauthsize = crypto_gcm_setauthsize;
 770	inst->alg.cra_aead.encrypt = crypto_gcm_encrypt;
 771	inst->alg.cra_aead.decrypt = crypto_gcm_decrypt;
 772
 773out:
 774	crypto_mod_put(ghash_alg);
 775	return inst;
 776
 777out_put_ctr:
 778	crypto_drop_skcipher(&ctx->ctr);
 779err_drop_ghash:
 780	crypto_drop_ahash(&ctx->ghash);
 781err_free_inst:
 782	kfree(inst);
 783out_put_ghash:
 784	inst = ERR_PTR(err);
 785	goto out;
 786}
 787
 788static struct crypto_instance *crypto_gcm_alloc(struct rtattr **tb)
 789{
 790	int err;
 791	const char *cipher_name;
 792	char ctr_name[CRYPTO_MAX_ALG_NAME];
 793	char full_name[CRYPTO_MAX_ALG_NAME];
 794
 795	cipher_name = crypto_attr_alg_name(tb[1]);
 796	err = PTR_ERR(cipher_name);
 797	if (IS_ERR(cipher_name))
 798		return ERR_PTR(err);
 799
 800	if (snprintf(ctr_name, CRYPTO_MAX_ALG_NAME, "ctr(%s)", cipher_name) >=
 801	    CRYPTO_MAX_ALG_NAME)
 802		return ERR_PTR(-ENAMETOOLONG);
 803
 804	if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm(%s)", cipher_name) >=
 805	    CRYPTO_MAX_ALG_NAME)
 806		return ERR_PTR(-ENAMETOOLONG);
 807
 808	return crypto_gcm_alloc_common(tb, full_name, ctr_name, "ghash");
 809}
 810
 811static void crypto_gcm_free(struct crypto_instance *inst)
 812{
 813	struct gcm_instance_ctx *ctx = crypto_instance_ctx(inst);
 814
 815	crypto_drop_skcipher(&ctx->ctr);
 816	crypto_drop_ahash(&ctx->ghash);
 817	kfree(inst);
 818}
 819
 820static struct crypto_template crypto_gcm_tmpl = {
 821	.name = "gcm",
 822	.alloc = crypto_gcm_alloc,
 823	.free = crypto_gcm_free,
 824	.module = THIS_MODULE,
 825};
 826
 827static struct crypto_instance *crypto_gcm_base_alloc(struct rtattr **tb)
 828{
 829	int err;
 830	const char *ctr_name;
 831	const char *ghash_name;
 832	char full_name[CRYPTO_MAX_ALG_NAME];
 833
 834	ctr_name = crypto_attr_alg_name(tb[1]);
 835	err = PTR_ERR(ctr_name);
 836	if (IS_ERR(ctr_name))
 837		return ERR_PTR(err);
 838
 839	ghash_name = crypto_attr_alg_name(tb[2]);
 840	err = PTR_ERR(ghash_name);
 841	if (IS_ERR(ghash_name))
 842		return ERR_PTR(err);
 843
 844	if (snprintf(full_name, CRYPTO_MAX_ALG_NAME, "gcm_base(%s,%s)",
 845		     ctr_name, ghash_name) >= CRYPTO_MAX_ALG_NAME)
 846		return ERR_PTR(-ENAMETOOLONG);
 847
 848	return crypto_gcm_alloc_common(tb, full_name, ctr_name, ghash_name);
 849}
 850
 851static struct crypto_template crypto_gcm_base_tmpl = {
 852	.name = "gcm_base",
 853	.alloc = crypto_gcm_base_alloc,
 854	.free = crypto_gcm_free,
 855	.module = THIS_MODULE,
 856};
 857
 858static int crypto_rfc4106_setkey(struct crypto_aead *parent, const u8 *key,
 859				 unsigned int keylen)
 860{
 861	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(parent);
 862	struct crypto_aead *child = ctx->child;
 863	int err;
 864
 865	if (keylen < 4)
 866		return -EINVAL;
 867
 868	keylen -= 4;
 869	memcpy(ctx->nonce, key + keylen, 4);
 870
 871	crypto_aead_clear_flags(child, CRYPTO_TFM_REQ_MASK);
 872	crypto_aead_set_flags(child, crypto_aead_get_flags(parent) &
 873				     CRYPTO_TFM_REQ_MASK);
 874	err = crypto_aead_setkey(child, key, keylen);
 875	crypto_aead_set_flags(parent, crypto_aead_get_flags(child) &
 876				      CRYPTO_TFM_RES_MASK);
 877
 878	return err;
 879}
 880
 881static int crypto_rfc4106_setauthsize(struct crypto_aead *parent,
 882				      unsigned int authsize)
 883{
 884	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(parent);
 885
 886	switch (authsize) {
 887	case 8:
 888	case 12:
 889	case 16:
 890		break;
 891	default:
 892		return -EINVAL;
 893	}
 894
 895	return crypto_aead_setauthsize(ctx->child, authsize);
 896}
 897
 898static struct aead_request *crypto_rfc4106_crypt(struct aead_request *req)
 899{
 900	struct aead_request *subreq = aead_request_ctx(req);
 901	struct crypto_aead *aead = crypto_aead_reqtfm(req);
 902	struct crypto_rfc4106_ctx *ctx = crypto_aead_ctx(aead);
 903	struct crypto_aead *child = ctx->child;
 904	u8 *iv = PTR_ALIGN((u8 *)(subreq + 1) + crypto_aead_reqsize(child),
 905			   crypto_aead_alignmask(child) + 1);
 906
 907	memcpy(iv, ctx->nonce, 4);
 908	memcpy(iv + 4, req->iv, 8);
 909
 910	aead_request_set_tfm(subreq, child);
 911	aead_request_set_callback(subreq, req->base.flags, req->base.complete,
 912				  req->base.data);
 913	aead_request_set_crypt(subreq, req->src, req->dst, req->cryptlen, iv);
 914	aead_request_set_assoc(subreq, req->assoc, req->assoclen);
 915
 916	return subreq;
 917}
 918
 919static int crypto_rfc4106_encrypt(struct aead_request *req)
 920{
 921	req = crypto_rfc4106_crypt(req);
 922
 923	return crypto_aead_encrypt(req);
 924}
 925
 926static int crypto_rfc4106_decrypt(struct aead_request *req)
 927{
 928	req = crypto_rfc4106_crypt(req);
 929
 930	return crypto_aead_decrypt(req);
 931}
 932
 933static int crypto_rfc4106_init_tfm(struct crypto_tfm *tfm)
 934{
 935	struct crypto_instance *inst = (void *)tfm->__crt_alg;
 936	struct crypto_aead_spawn *spawn = crypto_instance_ctx(inst);
 937	struct crypto_rfc4106_ctx *ctx = crypto_tfm_ctx(tfm);
 938	struct crypto_aead *aead;
 939	unsigned long align;
 940
 941	aead = crypto_spawn_aead(spawn);
 942	if (IS_ERR(aead))
 943		return PTR_ERR(aead);
 944
 945	ctx->child = aead;
 946
 947	align = crypto_aead_alignmask(aead);
 948	align &= ~(crypto_tfm_ctx_alignment() - 1);
 949	tfm->crt_aead.reqsize = sizeof(struct aead_request) +
 950				ALIGN(crypto_aead_reqsize(aead),
 951				      crypto_tfm_ctx_alignment()) +
 952				align + 16;
 953
 954	return 0;
 955}
 956
 957static void crypto_rfc4106_exit_tfm(struct crypto_tfm *tfm)
 958{
 959	struct crypto_rfc4106_ctx *ctx = crypto_tfm_ctx(tfm);
 960
 961	crypto_free_aead(ctx->child);
 962}
 963
 964static struct crypto_instance *crypto_rfc4106_alloc(struct rtattr **tb)
 965{
 966	struct crypto_attr_type *algt;
 967	struct crypto_instance *inst;
 968	struct crypto_aead_spawn *spawn;
 969	struct crypto_alg *alg;
 970	const char *ccm_name;
 971	int err;
 972
 973	algt = crypto_get_attr_type(tb);
 974	err = PTR_ERR(algt);
 975	if (IS_ERR(algt))
 976		return ERR_PTR(err);
 977
 978	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
 979		return ERR_PTR(-EINVAL);
 980
 981	ccm_name = crypto_attr_alg_name(tb[1]);
 982	err = PTR_ERR(ccm_name);
 983	if (IS_ERR(ccm_name))
 984		return ERR_PTR(err);
 985
 986	inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
 987	if (!inst)
 988		return ERR_PTR(-ENOMEM);
 989
 990	spawn = crypto_instance_ctx(inst);
 991	crypto_set_aead_spawn(spawn, inst);
 992	err = crypto_grab_aead(spawn, ccm_name, 0,
 993			       crypto_requires_sync(algt->type, algt->mask));
 994	if (err)
 995		goto out_free_inst;
 996
 997	alg = crypto_aead_spawn_alg(spawn);
 998
 999	err = -EINVAL;
1000
1001	/* We only support 16-byte blocks. */
1002	if (alg->cra_aead.ivsize != 16)
1003		goto out_drop_alg;
1004
1005	/* Not a stream cipher? */
1006	if (alg->cra_blocksize != 1)
1007		goto out_drop_alg;
1008
1009	err = -ENAMETOOLONG;
1010	if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
1011		     "rfc4106(%s)", alg->cra_name) >= CRYPTO_MAX_ALG_NAME ||
1012	    snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1013		     "rfc4106(%s)", alg->cra_driver_name) >=
1014	    CRYPTO_MAX_ALG_NAME)
1015		goto out_drop_alg;
1016
1017	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
1018	inst->alg.cra_flags |= alg->cra_flags & CRYPTO_ALG_ASYNC;
1019	inst->alg.cra_priority = alg->cra_priority;
1020	inst->alg.cra_blocksize = 1;
1021	inst->alg.cra_alignmask = alg->cra_alignmask;
1022	inst->alg.cra_type = &crypto_nivaead_type;
1023
1024	inst->alg.cra_aead.ivsize = 8;
1025	inst->alg.cra_aead.maxauthsize = 16;
1026
1027	inst->alg.cra_ctxsize = sizeof(struct crypto_rfc4106_ctx);
1028
1029	inst->alg.cra_init = crypto_rfc4106_init_tfm;
1030	inst->alg.cra_exit = crypto_rfc4106_exit_tfm;
1031
1032	inst->alg.cra_aead.setkey = crypto_rfc4106_setkey;
1033	inst->alg.cra_aead.setauthsize = crypto_rfc4106_setauthsize;
1034	inst->alg.cra_aead.encrypt = crypto_rfc4106_encrypt;
1035	inst->alg.cra_aead.decrypt = crypto_rfc4106_decrypt;
1036
1037	inst->alg.cra_aead.geniv = "seqiv";
1038
1039out:
1040	return inst;
1041
1042out_drop_alg:
1043	crypto_drop_aead(spawn);
1044out_free_inst:
1045	kfree(inst);
1046	inst = ERR_PTR(err);
1047	goto out;
1048}
1049
1050static void crypto_rfc4106_free(struct crypto_instance *inst)
1051{
1052	crypto_drop_spawn(crypto_instance_ctx(inst));
1053	kfree(inst);
1054}
1055
1056static struct crypto_template crypto_rfc4106_tmpl = {
1057	.name = "rfc4106",
1058	.alloc = crypto_rfc4106_alloc,
1059	.free = crypto_rfc4106_free,
1060	.module = THIS_MODULE,
1061};
1062
1063static inline struct crypto_rfc4543_req_ctx *crypto_rfc4543_reqctx(
1064	struct aead_request *req)
1065{
1066	unsigned long align = crypto_aead_alignmask(crypto_aead_reqtfm(req));
1067
1068	return (void *)PTR_ALIGN((u8 *)aead_request_ctx(req), align + 1);
1069}
1070
1071static int crypto_rfc4543_setkey(struct crypto_aead *parent, const u8 *key,
1072				 unsigned int keylen)
1073{
1074	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(parent);
1075	struct crypto_aead *child = ctx->child;
1076	int err;
1077
1078	if (keylen < 4)
1079		return -EINVAL;
1080
1081	keylen -= 4;
1082	memcpy(ctx->nonce, key + keylen, 4);
1083
1084	crypto_aead_clear_flags(child, CRYPTO_TFM_REQ_MASK);
1085	crypto_aead_set_flags(child, crypto_aead_get_flags(parent) &
1086				     CRYPTO_TFM_REQ_MASK);
1087	err = crypto_aead_setkey(child, key, keylen);
1088	crypto_aead_set_flags(parent, crypto_aead_get_flags(child) &
1089				      CRYPTO_TFM_RES_MASK);
1090
1091	return err;
1092}
1093
1094static int crypto_rfc4543_setauthsize(struct crypto_aead *parent,
1095				      unsigned int authsize)
1096{
1097	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(parent);
1098
1099	if (authsize != 16)
1100		return -EINVAL;
1101
1102	return crypto_aead_setauthsize(ctx->child, authsize);
1103}
1104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1105static struct aead_request *crypto_rfc4543_crypt(struct aead_request *req,
1106						 int enc)
1107{
1108	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1109	struct crypto_rfc4543_ctx *ctx = crypto_aead_ctx(aead);
1110	struct crypto_rfc4543_req_ctx *rctx = crypto_rfc4543_reqctx(req);
1111	struct aead_request *subreq = &rctx->subreq;
1112	struct scatterlist *dst = req->dst;
1113	struct scatterlist *cipher = rctx->cipher;
1114	struct scatterlist *payload = rctx->payload;
1115	struct scatterlist *assoc = rctx->assoc;
1116	unsigned int authsize = crypto_aead_authsize(aead);
1117	unsigned int assoclen = req->assoclen;
1118	struct page *dstp;
1119	u8 *vdst;
1120	u8 *iv = PTR_ALIGN((u8 *)(rctx + 1) + crypto_aead_reqsize(ctx->child),
1121			   crypto_aead_alignmask(ctx->child) + 1);
1122
1123	memcpy(iv, ctx->nonce, 4);
1124	memcpy(iv + 4, req->iv, 8);
1125
1126	/* construct cipher/plaintext */
1127	if (enc)
1128		memset(rctx->auth_tag, 0, authsize);
1129	else
1130		scatterwalk_map_and_copy(rctx->auth_tag, dst,
1131					 req->cryptlen - authsize,
1132					 authsize, 0);
1133
1134	sg_init_one(cipher, rctx->auth_tag, authsize);
1135
1136	/* construct the aad */
1137	dstp = sg_page(dst);
1138	vdst = PageHighMem(dstp) ? NULL : page_address(dstp) + dst->offset;
1139
1140	sg_init_table(payload, 2);
1141	sg_set_buf(payload, req->iv, 8);
1142	scatterwalk_crypto_chain(payload, dst, vdst == req->iv + 8, 2);
1143	assoclen += 8 + req->cryptlen - (enc ? 0 : authsize);
1144
1145	sg_init_table(assoc, 2);
1146	sg_set_page(assoc, sg_page(req->assoc), req->assoc->length,
1147		    req->assoc->offset);
 
 
 
 
 
 
 
 
 
 
1148	scatterwalk_crypto_chain(assoc, payload, 0, 2);
1149
1150	aead_request_set_tfm(subreq, ctx->child);
1151	aead_request_set_callback(subreq, req->base.flags, req->base.complete,
1152				  req->base.data);
1153	aead_request_set_crypt(subreq, cipher, cipher, enc ? 0 : authsize, iv);
1154	aead_request_set_assoc(subreq, assoc, assoclen);
1155
1156	return subreq;
1157}
1158
 
 
 
 
 
 
 
 
 
 
 
 
 
1159static int crypto_rfc4543_encrypt(struct aead_request *req)
1160{
1161	struct crypto_aead *aead = crypto_aead_reqtfm(req);
1162	struct crypto_rfc4543_req_ctx *rctx = crypto_rfc4543_reqctx(req);
1163	struct aead_request *subreq;
1164	int err;
1165
1166	subreq = crypto_rfc4543_crypt(req, 1);
 
 
 
 
 
 
1167	err = crypto_aead_encrypt(subreq);
1168	if (err)
1169		return err;
1170
1171	scatterwalk_map_and_copy(rctx->auth_tag, req->dst, req->cryptlen,
1172				 crypto_aead_authsize(aead), 1);
1173
1174	return 0;
1175}
1176
1177static int crypto_rfc4543_decrypt(struct aead_request *req)
1178{
1179	req = crypto_rfc4543_crypt(req, 0);
 
 
 
 
 
 
 
 
1180
1181	return crypto_aead_decrypt(req);
1182}
1183
1184static int crypto_rfc4543_init_tfm(struct crypto_tfm *tfm)
1185{
1186	struct crypto_instance *inst = (void *)tfm->__crt_alg;
1187	struct crypto_aead_spawn *spawn = crypto_instance_ctx(inst);
 
1188	struct crypto_rfc4543_ctx *ctx = crypto_tfm_ctx(tfm);
1189	struct crypto_aead *aead;
 
1190	unsigned long align;
 
1191
1192	aead = crypto_spawn_aead(spawn);
1193	if (IS_ERR(aead))
1194		return PTR_ERR(aead);
1195
 
 
 
 
 
1196	ctx->child = aead;
 
1197
1198	align = crypto_aead_alignmask(aead);
1199	align &= ~(crypto_tfm_ctx_alignment() - 1);
1200	tfm->crt_aead.reqsize = sizeof(struct crypto_rfc4543_req_ctx) +
1201				ALIGN(crypto_aead_reqsize(aead),
1202				      crypto_tfm_ctx_alignment()) +
1203				align + 16;
1204
1205	return 0;
 
 
 
 
1206}
1207
1208static void crypto_rfc4543_exit_tfm(struct crypto_tfm *tfm)
1209{
1210	struct crypto_rfc4543_ctx *ctx = crypto_tfm_ctx(tfm);
1211
1212	crypto_free_aead(ctx->child);
 
1213}
1214
1215static struct crypto_instance *crypto_rfc4543_alloc(struct rtattr **tb)
1216{
1217	struct crypto_attr_type *algt;
1218	struct crypto_instance *inst;
1219	struct crypto_aead_spawn *spawn;
1220	struct crypto_alg *alg;
 
1221	const char *ccm_name;
1222	int err;
1223
1224	algt = crypto_get_attr_type(tb);
1225	err = PTR_ERR(algt);
1226	if (IS_ERR(algt))
1227		return ERR_PTR(err);
1228
1229	if ((algt->type ^ CRYPTO_ALG_TYPE_AEAD) & algt->mask)
1230		return ERR_PTR(-EINVAL);
1231
1232	ccm_name = crypto_attr_alg_name(tb[1]);
1233	err = PTR_ERR(ccm_name);
1234	if (IS_ERR(ccm_name))
1235		return ERR_PTR(err);
1236
1237	inst = kzalloc(sizeof(*inst) + sizeof(*spawn), GFP_KERNEL);
1238	if (!inst)
1239		return ERR_PTR(-ENOMEM);
1240
1241	spawn = crypto_instance_ctx(inst);
 
1242	crypto_set_aead_spawn(spawn, inst);
1243	err = crypto_grab_aead(spawn, ccm_name, 0,
1244			       crypto_requires_sync(algt->type, algt->mask));
1245	if (err)
1246		goto out_free_inst;
1247
1248	alg = crypto_aead_spawn_alg(spawn);
1249
 
 
 
 
 
 
 
 
1250	err = -EINVAL;
1251
1252	/* We only support 16-byte blocks. */
1253	if (alg->cra_aead.ivsize != 16)
1254		goto out_drop_alg;
1255
1256	/* Not a stream cipher? */
1257	if (alg->cra_blocksize != 1)
1258		goto out_drop_alg;
1259
1260	err = -ENAMETOOLONG;
1261	if (snprintf(inst->alg.cra_name, CRYPTO_MAX_ALG_NAME,
1262		     "rfc4543(%s)", alg->cra_name) >= CRYPTO_MAX_ALG_NAME ||
1263	    snprintf(inst->alg.cra_driver_name, CRYPTO_MAX_ALG_NAME,
1264		     "rfc4543(%s)", alg->cra_driver_name) >=
1265	    CRYPTO_MAX_ALG_NAME)
1266		goto out_drop_alg;
1267
1268	inst->alg.cra_flags = CRYPTO_ALG_TYPE_AEAD;
1269	inst->alg.cra_flags |= alg->cra_flags & CRYPTO_ALG_ASYNC;
1270	inst->alg.cra_priority = alg->cra_priority;
1271	inst->alg.cra_blocksize = 1;
1272	inst->alg.cra_alignmask = alg->cra_alignmask;
1273	inst->alg.cra_type = &crypto_nivaead_type;
1274
1275	inst->alg.cra_aead.ivsize = 8;
1276	inst->alg.cra_aead.maxauthsize = 16;
1277
1278	inst->alg.cra_ctxsize = sizeof(struct crypto_rfc4543_ctx);
1279
1280	inst->alg.cra_init = crypto_rfc4543_init_tfm;
1281	inst->alg.cra_exit = crypto_rfc4543_exit_tfm;
1282
1283	inst->alg.cra_aead.setkey = crypto_rfc4543_setkey;
1284	inst->alg.cra_aead.setauthsize = crypto_rfc4543_setauthsize;
1285	inst->alg.cra_aead.encrypt = crypto_rfc4543_encrypt;
1286	inst->alg.cra_aead.decrypt = crypto_rfc4543_decrypt;
1287
1288	inst->alg.cra_aead.geniv = "seqiv";
1289
1290out:
1291	return inst;
1292
 
 
1293out_drop_alg:
1294	crypto_drop_aead(spawn);
1295out_free_inst:
1296	kfree(inst);
1297	inst = ERR_PTR(err);
1298	goto out;
1299}
1300
1301static void crypto_rfc4543_free(struct crypto_instance *inst)
1302{
1303	crypto_drop_spawn(crypto_instance_ctx(inst));
 
 
 
 
1304	kfree(inst);
1305}
1306
1307static struct crypto_template crypto_rfc4543_tmpl = {
1308	.name = "rfc4543",
1309	.alloc = crypto_rfc4543_alloc,
1310	.free = crypto_rfc4543_free,
1311	.module = THIS_MODULE,
1312};
1313
1314static int __init crypto_gcm_module_init(void)
1315{
1316	int err;
1317
1318	gcm_zeroes = kzalloc(16, GFP_KERNEL);
1319	if (!gcm_zeroes)
1320		return -ENOMEM;
1321
1322	err = crypto_register_template(&crypto_gcm_base_tmpl);
1323	if (err)
1324		goto out;
1325
1326	err = crypto_register_template(&crypto_gcm_tmpl);
1327	if (err)
1328		goto out_undo_base;
1329
1330	err = crypto_register_template(&crypto_rfc4106_tmpl);
1331	if (err)
1332		goto out_undo_gcm;
1333
1334	err = crypto_register_template(&crypto_rfc4543_tmpl);
1335	if (err)
1336		goto out_undo_rfc4106;
1337
1338	return 0;
1339
1340out_undo_rfc4106:
1341	crypto_unregister_template(&crypto_rfc4106_tmpl);
1342out_undo_gcm:
1343	crypto_unregister_template(&crypto_gcm_tmpl);
1344out_undo_base:
1345	crypto_unregister_template(&crypto_gcm_base_tmpl);
1346out:
1347	kfree(gcm_zeroes);
1348	return err;
1349}
1350
1351static void __exit crypto_gcm_module_exit(void)
1352{
1353	kfree(gcm_zeroes);
1354	crypto_unregister_template(&crypto_rfc4543_tmpl);
1355	crypto_unregister_template(&crypto_rfc4106_tmpl);
1356	crypto_unregister_template(&crypto_gcm_tmpl);
1357	crypto_unregister_template(&crypto_gcm_base_tmpl);
1358}
1359
1360module_init(crypto_gcm_module_init);
1361module_exit(crypto_gcm_module_exit);
1362
1363MODULE_LICENSE("GPL");
1364MODULE_DESCRIPTION("Galois/Counter Mode");
1365MODULE_AUTHOR("Mikko Herranen <mh1@iki.fi>");
1366MODULE_ALIAS("gcm_base");
1367MODULE_ALIAS("rfc4106");
1368MODULE_ALIAS("rfc4543");