Linux Audio

Check our new training course

Loading...
v4.6
   1/*
   2 *  linux/net/sunrpc/gss_krb5_crypto.c
   3 *
   4 *  Copyright (c) 2000-2008 The Regents of the University of Michigan.
   5 *  All rights reserved.
   6 *
   7 *  Andy Adamson   <andros@umich.edu>
   8 *  Bruce Fields   <bfields@umich.edu>
   9 */
  10
  11/*
  12 * Copyright (C) 1998 by the FundsXpress, INC.
  13 *
  14 * All rights reserved.
  15 *
  16 * Export of this software from the United States of America may require
  17 * a specific license from the United States Government.  It is the
  18 * responsibility of any person or organization contemplating export to
  19 * obtain such a license before exporting.
  20 *
  21 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  22 * distribute this software and its documentation for any purpose and
  23 * without fee is hereby granted, provided that the above copyright
  24 * notice appear in all copies and that both that copyright notice and
  25 * this permission notice appear in supporting documentation, and that
  26 * the name of FundsXpress. not be used in advertising or publicity pertaining
  27 * to distribution of the software without specific, written prior
  28 * permission.  FundsXpress makes no representations about the suitability of
  29 * this software for any purpose.  It is provided "as is" without express
  30 * or implied warranty.
  31 *
  32 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  33 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  34 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  35 */
  36
  37#include <crypto/hash.h>
  38#include <crypto/skcipher.h>
 
  39#include <linux/err.h>
  40#include <linux/types.h>
  41#include <linux/mm.h>
  42#include <linux/scatterlist.h>
  43#include <linux/highmem.h>
  44#include <linux/pagemap.h>
  45#include <linux/random.h>
  46#include <linux/sunrpc/gss_krb5.h>
  47#include <linux/sunrpc/xdr.h>
 
 
 
  48
  49#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
  50# define RPCDBG_FACILITY        RPCDBG_AUTH
  51#endif
  52
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  53u32
  54krb5_encrypt(
  55	struct crypto_skcipher *tfm,
  56	void * iv,
  57	void * in,
  58	void * out,
  59	int length)
  60{
  61	u32 ret = -EINVAL;
  62	struct scatterlist sg[1];
  63	u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
  64	SKCIPHER_REQUEST_ON_STACK(req, tfm);
  65
  66	if (length % crypto_skcipher_blocksize(tfm) != 0)
  67		goto out;
  68
  69	if (crypto_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
  70		dprintk("RPC:       gss_k5encrypt: tfm iv size too large %d\n",
  71			crypto_skcipher_ivsize(tfm));
  72		goto out;
  73	}
  74
  75	if (iv)
  76		memcpy(local_iv, iv, crypto_skcipher_ivsize(tfm));
  77
  78	memcpy(out, in, length);
  79	sg_init_one(sg, out, length);
  80
  81	skcipher_request_set_tfm(req, tfm);
  82	skcipher_request_set_callback(req, 0, NULL, NULL);
  83	skcipher_request_set_crypt(req, sg, sg, length, local_iv);
  84
  85	ret = crypto_skcipher_encrypt(req);
  86	skcipher_request_zero(req);
  87out:
  88	dprintk("RPC:       krb5_encrypt returns %d\n", ret);
  89	return ret;
  90}
  91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  92u32
  93krb5_decrypt(
  94     struct crypto_skcipher *tfm,
  95     void * iv,
  96     void * in,
  97     void * out,
  98     int length)
  99{
 100	u32 ret = -EINVAL;
 101	struct scatterlist sg[1];
 102	u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
 103	SKCIPHER_REQUEST_ON_STACK(req, tfm);
 104
 105	if (length % crypto_skcipher_blocksize(tfm) != 0)
 106		goto out;
 107
 108	if (crypto_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
 109		dprintk("RPC:       gss_k5decrypt: tfm iv size too large %d\n",
 110			crypto_skcipher_ivsize(tfm));
 111		goto out;
 112	}
 113	if (iv)
 114		memcpy(local_iv,iv, crypto_skcipher_ivsize(tfm));
 115
 116	memcpy(out, in, length);
 117	sg_init_one(sg, out, length);
 118
 119	skcipher_request_set_tfm(req, tfm);
 120	skcipher_request_set_callback(req, 0, NULL, NULL);
 121	skcipher_request_set_crypt(req, sg, sg, length, local_iv);
 122
 123	ret = crypto_skcipher_decrypt(req);
 124	skcipher_request_zero(req);
 125out:
 126	dprintk("RPC:       gss_k5decrypt returns %d\n",ret);
 127	return ret;
 128}
 129
 130static int
 131checksummer(struct scatterlist *sg, void *data)
 132{
 133	struct ahash_request *req = data;
 134
 135	ahash_request_set_crypt(req, sg, NULL, sg->length);
 136
 137	return crypto_ahash_update(req);
 138}
 139
 140static int
 141arcfour_hmac_md5_usage_to_salt(unsigned int usage, u8 salt[4])
 142{
 143	unsigned int ms_usage;
 144
 145	switch (usage) {
 146	case KG_USAGE_SIGN:
 147		ms_usage = 15;
 148		break;
 149	case KG_USAGE_SEAL:
 150		ms_usage = 13;
 151		break;
 152	default:
 153		return -EINVAL;
 154	}
 155	salt[0] = (ms_usage >> 0) & 0xff;
 156	salt[1] = (ms_usage >> 8) & 0xff;
 157	salt[2] = (ms_usage >> 16) & 0xff;
 158	salt[3] = (ms_usage >> 24) & 0xff;
 159
 160	return 0;
 161}
 162
 163static u32
 164make_checksum_hmac_md5(struct krb5_ctx *kctx, char *header, int hdrlen,
 165		       struct xdr_buf *body, int body_offset, u8 *cksumkey,
 166		       unsigned int usage, struct xdr_netobj *cksumout)
 167{
 168	struct scatterlist              sg[1];
 169	int err;
 170	u8 checksumdata[GSS_KRB5_MAX_CKSUM_LEN];
 171	u8 rc4salt[4];
 172	struct crypto_ahash *md5;
 173	struct crypto_ahash *hmac_md5;
 174	struct ahash_request *req;
 175
 176	if (cksumkey == NULL)
 177		return GSS_S_FAILURE;
 178
 179	if (cksumout->len < kctx->gk5e->cksumlength) {
 180		dprintk("%s: checksum buffer length, %u, too small for %s\n",
 181			__func__, cksumout->len, kctx->gk5e->name);
 182		return GSS_S_FAILURE;
 183	}
 184
 185	if (arcfour_hmac_md5_usage_to_salt(usage, rc4salt)) {
 186		dprintk("%s: invalid usage value %u\n", __func__, usage);
 187		return GSS_S_FAILURE;
 188	}
 189
 190	md5 = crypto_alloc_ahash("md5", 0, CRYPTO_ALG_ASYNC);
 191	if (IS_ERR(md5))
 192		return GSS_S_FAILURE;
 193
 194	hmac_md5 = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0,
 195				      CRYPTO_ALG_ASYNC);
 196	if (IS_ERR(hmac_md5)) {
 197		crypto_free_ahash(md5);
 198		return GSS_S_FAILURE;
 199	}
 200
 201	req = ahash_request_alloc(md5, GFP_KERNEL);
 202	if (!req) {
 203		crypto_free_ahash(hmac_md5);
 204		crypto_free_ahash(md5);
 205		return GSS_S_FAILURE;
 206	}
 207
 208	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 209
 210	err = crypto_ahash_init(req);
 211	if (err)
 212		goto out;
 213	sg_init_one(sg, rc4salt, 4);
 214	ahash_request_set_crypt(req, sg, NULL, 4);
 215	err = crypto_ahash_update(req);
 216	if (err)
 217		goto out;
 218
 219	sg_init_one(sg, header, hdrlen);
 220	ahash_request_set_crypt(req, sg, NULL, hdrlen);
 221	err = crypto_ahash_update(req);
 222	if (err)
 223		goto out;
 224	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 225			      checksummer, req);
 226	if (err)
 227		goto out;
 228	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 229	err = crypto_ahash_final(req);
 230	if (err)
 231		goto out;
 232
 233	ahash_request_free(req);
 234	req = ahash_request_alloc(hmac_md5, GFP_KERNEL);
 235	if (!req) {
 236		crypto_free_ahash(hmac_md5);
 237		crypto_free_ahash(md5);
 238		return GSS_S_FAILURE;
 239	}
 240
 241	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 242
 243	err = crypto_ahash_init(req);
 244	if (err)
 245		goto out;
 246	err = crypto_ahash_setkey(hmac_md5, cksumkey, kctx->gk5e->keylength);
 247	if (err)
 248		goto out;
 249
 250	sg_init_one(sg, checksumdata, crypto_ahash_digestsize(md5));
 251	ahash_request_set_crypt(req, sg, checksumdata,
 252				crypto_ahash_digestsize(md5));
 253	err = crypto_ahash_digest(req);
 254	if (err)
 255		goto out;
 256
 257	memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
 258	cksumout->len = kctx->gk5e->cksumlength;
 259out:
 260	ahash_request_free(req);
 261	crypto_free_ahash(md5);
 262	crypto_free_ahash(hmac_md5);
 263	return err ? GSS_S_FAILURE : 0;
 264}
 265
 266/*
 267 * checksum the plaintext data and hdrlen bytes of the token header
 268 * The checksum is performed over the first 8 bytes of the
 269 * gss token header and then over the data body
 270 */
 271u32
 272make_checksum(struct krb5_ctx *kctx, char *header, int hdrlen,
 273	      struct xdr_buf *body, int body_offset, u8 *cksumkey,
 274	      unsigned int usage, struct xdr_netobj *cksumout)
 275{
 276	struct crypto_ahash *tfm;
 277	struct ahash_request *req;
 278	struct scatterlist              sg[1];
 279	int err;
 280	u8 checksumdata[GSS_KRB5_MAX_CKSUM_LEN];
 281	unsigned int checksumlen;
 282
 283	if (kctx->gk5e->ctype == CKSUMTYPE_HMAC_MD5_ARCFOUR)
 284		return make_checksum_hmac_md5(kctx, header, hdrlen,
 285					      body, body_offset,
 286					      cksumkey, usage, cksumout);
 287
 288	if (cksumout->len < kctx->gk5e->cksumlength) {
 289		dprintk("%s: checksum buffer length, %u, too small for %s\n",
 290			__func__, cksumout->len, kctx->gk5e->name);
 291		return GSS_S_FAILURE;
 292	}
 293
 
 
 
 
 294	tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
 295	if (IS_ERR(tfm))
 296		return GSS_S_FAILURE;
 297
 298	req = ahash_request_alloc(tfm, GFP_KERNEL);
 299	if (!req) {
 300		crypto_free_ahash(tfm);
 301		return GSS_S_FAILURE;
 302	}
 303
 304	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 305
 306	checksumlen = crypto_ahash_digestsize(tfm);
 307
 308	if (cksumkey != NULL) {
 309		err = crypto_ahash_setkey(tfm, cksumkey,
 310					  kctx->gk5e->keylength);
 311		if (err)
 312			goto out;
 313	}
 314
 315	err = crypto_ahash_init(req);
 316	if (err)
 317		goto out;
 318	sg_init_one(sg, header, hdrlen);
 319	ahash_request_set_crypt(req, sg, NULL, hdrlen);
 320	err = crypto_ahash_update(req);
 321	if (err)
 322		goto out;
 323	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 324			      checksummer, req);
 325	if (err)
 326		goto out;
 327	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 328	err = crypto_ahash_final(req);
 329	if (err)
 330		goto out;
 331
 332	switch (kctx->gk5e->ctype) {
 333	case CKSUMTYPE_RSA_MD5:
 334		err = kctx->gk5e->encrypt(kctx->seq, NULL, checksumdata,
 335					  checksumdata, checksumlen);
 336		if (err)
 337			goto out;
 338		memcpy(cksumout->data,
 339		       checksumdata + checksumlen - kctx->gk5e->cksumlength,
 340		       kctx->gk5e->cksumlength);
 341		break;
 342	case CKSUMTYPE_HMAC_SHA1_DES3:
 343		memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
 344		break;
 345	default:
 346		BUG();
 347		break;
 348	}
 349	cksumout->len = kctx->gk5e->cksumlength;
 350out:
 351	ahash_request_free(req);
 
 352	crypto_free_ahash(tfm);
 
 
 353	return err ? GSS_S_FAILURE : 0;
 354}
 355
 356/*
 357 * checksum the plaintext data and hdrlen bytes of the token header
 358 * Per rfc4121, sec. 4.2.4, the checksum is performed over the data
 359 * body then over the first 16 octets of the MIC token
 360 * Inclusion of the header data in the calculation of the
 361 * checksum is optional.
 
 
 
 
 
 
 
 
 
 
 
 362 */
 363u32
 364make_checksum_v2(struct krb5_ctx *kctx, char *header, int hdrlen,
 365		 struct xdr_buf *body, int body_offset, u8 *cksumkey,
 366		 unsigned int usage, struct xdr_netobj *cksumout)
 367{
 368	struct crypto_ahash *tfm;
 369	struct ahash_request *req;
 370	struct scatterlist sg[1];
 371	int err;
 372	u8 checksumdata[GSS_KRB5_MAX_CKSUM_LEN];
 373	unsigned int checksumlen;
 374
 375	if (kctx->gk5e->keyed_cksum == 0) {
 376		dprintk("%s: expected keyed hash for %s\n",
 377			__func__, kctx->gk5e->name);
 378		return GSS_S_FAILURE;
 379	}
 380	if (cksumkey == NULL) {
 381		dprintk("%s: no key supplied for %s\n",
 382			__func__, kctx->gk5e->name);
 383		return GSS_S_FAILURE;
 384	}
 385
 386	tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
 387	if (IS_ERR(tfm))
 388		return GSS_S_FAILURE;
 389	checksumlen = crypto_ahash_digestsize(tfm);
 390
 391	req = ahash_request_alloc(tfm, GFP_KERNEL);
 392	if (!req) {
 393		crypto_free_ahash(tfm);
 394		return GSS_S_FAILURE;
 395	}
 396
 397	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 398
 399	err = crypto_ahash_setkey(tfm, cksumkey, kctx->gk5e->keylength);
 400	if (err)
 401		goto out;
 402
 403	err = crypto_ahash_init(req);
 404	if (err)
 405		goto out;
 
 
 
 
 
 406	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 407			      checksummer, req);
 408	if (err)
 409		goto out;
 410	if (header != NULL) {
 
 
 411		sg_init_one(sg, header, hdrlen);
 412		ahash_request_set_crypt(req, sg, NULL, hdrlen);
 413		err = crypto_ahash_update(req);
 414		if (err)
 415			goto out;
 416	}
 
 417	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 418	err = crypto_ahash_final(req);
 419	if (err)
 420		goto out;
 421
 422	cksumout->len = kctx->gk5e->cksumlength;
 
 423
 424	switch (kctx->gk5e->ctype) {
 425	case CKSUMTYPE_HMAC_SHA1_96_AES128:
 426	case CKSUMTYPE_HMAC_SHA1_96_AES256:
 427		/* note that this truncates the hash */
 428		memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
 429		break;
 430	default:
 431		BUG();
 432		break;
 433	}
 434out:
 435	ahash_request_free(req);
 436	crypto_free_ahash(tfm);
 437	return err ? GSS_S_FAILURE : 0;
 
 438}
 
 439
 440struct encryptor_desc {
 441	u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
 442	struct skcipher_request *req;
 443	int pos;
 444	struct xdr_buf *outbuf;
 445	struct page **pages;
 446	struct scatterlist infrags[4];
 447	struct scatterlist outfrags[4];
 448	int fragno;
 449	int fraglen;
 450};
 451
 452static int
 453encryptor(struct scatterlist *sg, void *data)
 454{
 455	struct encryptor_desc *desc = data;
 456	struct xdr_buf *outbuf = desc->outbuf;
 457	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(desc->req);
 
 458	struct page *in_page;
 459	int thislen = desc->fraglen + sg->length;
 460	int fraglen, ret;
 461	int page_pos;
 462
 463	/* Worst case is 4 fragments: head, end of page 1, start
 464	 * of page 2, tail.  Anything more is a bug. */
 465	BUG_ON(desc->fragno > 3);
 466
 467	page_pos = desc->pos - outbuf->head[0].iov_len;
 468	if (page_pos >= 0 && page_pos < outbuf->page_len) {
 469		/* pages are not in place: */
 470		int i = (page_pos + outbuf->page_base) >> PAGE_SHIFT;
 471		in_page = desc->pages[i];
 472	} else {
 473		in_page = sg_page(sg);
 474	}
 475	sg_set_page(&desc->infrags[desc->fragno], in_page, sg->length,
 476		    sg->offset);
 477	sg_set_page(&desc->outfrags[desc->fragno], sg_page(sg), sg->length,
 478		    sg->offset);
 479	desc->fragno++;
 480	desc->fraglen += sg->length;
 481	desc->pos += sg->length;
 482
 483	fraglen = thislen & (crypto_skcipher_blocksize(tfm) - 1);
 484	thislen -= fraglen;
 485
 486	if (thislen == 0)
 487		return 0;
 488
 489	sg_mark_end(&desc->infrags[desc->fragno - 1]);
 490	sg_mark_end(&desc->outfrags[desc->fragno - 1]);
 491
 492	skcipher_request_set_crypt(desc->req, desc->infrags, desc->outfrags,
 493				   thislen, desc->iv);
 494
 495	ret = crypto_skcipher_encrypt(desc->req);
 496	if (ret)
 497		return ret;
 498
 499	sg_init_table(desc->infrags, 4);
 500	sg_init_table(desc->outfrags, 4);
 501
 502	if (fraglen) {
 503		sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen,
 504				sg->offset + sg->length - fraglen);
 505		desc->infrags[0] = desc->outfrags[0];
 506		sg_assign_page(&desc->infrags[0], in_page);
 507		desc->fragno = 1;
 508		desc->fraglen = fraglen;
 509	} else {
 510		desc->fragno = 0;
 511		desc->fraglen = 0;
 512	}
 513	return 0;
 514}
 515
 516int
 517gss_encrypt_xdr_buf(struct crypto_skcipher *tfm, struct xdr_buf *buf,
 518		    int offset, struct page **pages)
 519{
 520	int ret;
 521	struct encryptor_desc desc;
 522	SKCIPHER_REQUEST_ON_STACK(req, tfm);
 523
 524	BUG_ON((buf->len - offset) % crypto_skcipher_blocksize(tfm) != 0);
 525
 526	skcipher_request_set_tfm(req, tfm);
 527	skcipher_request_set_callback(req, 0, NULL, NULL);
 528
 529	memset(desc.iv, 0, sizeof(desc.iv));
 530	desc.req = req;
 531	desc.pos = offset;
 532	desc.outbuf = buf;
 533	desc.pages = pages;
 534	desc.fragno = 0;
 535	desc.fraglen = 0;
 536
 537	sg_init_table(desc.infrags, 4);
 538	sg_init_table(desc.outfrags, 4);
 539
 540	ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
 541	skcipher_request_zero(req);
 542	return ret;
 543}
 544
 545struct decryptor_desc {
 546	u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
 547	struct skcipher_request *req;
 548	struct scatterlist frags[4];
 549	int fragno;
 550	int fraglen;
 551};
 552
 553static int
 554decryptor(struct scatterlist *sg, void *data)
 555{
 556	struct decryptor_desc *desc = data;
 557	int thislen = desc->fraglen + sg->length;
 558	struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(desc->req);
 
 559	int fraglen, ret;
 560
 561	/* Worst case is 4 fragments: head, end of page 1, start
 562	 * of page 2, tail.  Anything more is a bug. */
 563	BUG_ON(desc->fragno > 3);
 564	sg_set_page(&desc->frags[desc->fragno], sg_page(sg), sg->length,
 565		    sg->offset);
 566	desc->fragno++;
 567	desc->fraglen += sg->length;
 568
 569	fraglen = thislen & (crypto_skcipher_blocksize(tfm) - 1);
 570	thislen -= fraglen;
 571
 572	if (thislen == 0)
 573		return 0;
 574
 575	sg_mark_end(&desc->frags[desc->fragno - 1]);
 576
 577	skcipher_request_set_crypt(desc->req, desc->frags, desc->frags,
 578				   thislen, desc->iv);
 579
 580	ret = crypto_skcipher_decrypt(desc->req);
 581	if (ret)
 582		return ret;
 583
 584	sg_init_table(desc->frags, 4);
 585
 586	if (fraglen) {
 587		sg_set_page(&desc->frags[0], sg_page(sg), fraglen,
 588				sg->offset + sg->length - fraglen);
 589		desc->fragno = 1;
 590		desc->fraglen = fraglen;
 591	} else {
 592		desc->fragno = 0;
 593		desc->fraglen = 0;
 594	}
 595	return 0;
 596}
 597
 598int
 599gss_decrypt_xdr_buf(struct crypto_skcipher *tfm, struct xdr_buf *buf,
 600		    int offset)
 601{
 602	int ret;
 603	struct decryptor_desc desc;
 604	SKCIPHER_REQUEST_ON_STACK(req, tfm);
 605
 606	/* XXXJBF: */
 607	BUG_ON((buf->len - offset) % crypto_skcipher_blocksize(tfm) != 0);
 608
 609	skcipher_request_set_tfm(req, tfm);
 610	skcipher_request_set_callback(req, 0, NULL, NULL);
 611
 612	memset(desc.iv, 0, sizeof(desc.iv));
 613	desc.req = req;
 614	desc.fragno = 0;
 615	desc.fraglen = 0;
 616
 617	sg_init_table(desc.frags, 4);
 618
 619	ret = xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);
 620	skcipher_request_zero(req);
 621	return ret;
 622}
 623
 624/*
 625 * This function makes the assumption that it was ultimately called
 626 * from gss_wrap().
 627 *
 628 * The client auth_gss code moves any existing tail data into a
 629 * separate page before calling gss_wrap.
 630 * The server svcauth_gss code ensures that both the head and the
 631 * tail have slack space of RPC_MAX_AUTH_SIZE before calling gss_wrap.
 632 *
 633 * Even with that guarantee, this function may be called more than
 634 * once in the processing of gss_wrap().  The best we can do is
 635 * verify at compile-time (see GSS_KRB5_SLACK_CHECK) that the
 636 * largest expected shift will fit within RPC_MAX_AUTH_SIZE.
 637 * At run-time we can verify that a single invocation of this
 638 * function doesn't attempt to use more the RPC_MAX_AUTH_SIZE.
 639 */
 640
 641int
 642xdr_extend_head(struct xdr_buf *buf, unsigned int base, unsigned int shiftlen)
 643{
 644	u8 *p;
 645
 646	if (shiftlen == 0)
 647		return 0;
 648
 649	BUILD_BUG_ON(GSS_KRB5_MAX_SLACK_NEEDED > RPC_MAX_AUTH_SIZE);
 650	BUG_ON(shiftlen > RPC_MAX_AUTH_SIZE);
 651
 652	p = buf->head[0].iov_base + base;
 653
 654	memmove(p + shiftlen, p, buf->head[0].iov_len - base);
 655
 656	buf->head[0].iov_len += shiftlen;
 657	buf->len += shiftlen;
 658
 659	return 0;
 660}
 661
 662static u32
 663gss_krb5_cts_crypt(struct crypto_skcipher *cipher, struct xdr_buf *buf,
 664		   u32 offset, u8 *iv, struct page **pages, int encrypt)
 665{
 666	u32 ret;
 667	struct scatterlist sg[1];
 668	SKCIPHER_REQUEST_ON_STACK(req, cipher);
 669	u8 data[GSS_KRB5_MAX_BLOCKSIZE * 2];
 670	struct page **save_pages;
 671	u32 len = buf->len - offset;
 672
 673	if (len > ARRAY_SIZE(data)) {
 674		WARN_ON(0);
 675		return -ENOMEM;
 676	}
 
 
 
 677
 678	/*
 679	 * For encryption, we want to read from the cleartext
 680	 * page cache pages, and write the encrypted data to
 681	 * the supplied xdr_buf pages.
 682	 */
 683	save_pages = buf->pages;
 684	if (encrypt)
 685		buf->pages = pages;
 686
 687	ret = read_bytes_from_xdr_buf(buf, offset, data, len);
 688	buf->pages = save_pages;
 689	if (ret)
 690		goto out;
 691
 692	sg_init_one(sg, data, len);
 693
 694	skcipher_request_set_tfm(req, cipher);
 695	skcipher_request_set_callback(req, 0, NULL, NULL);
 696	skcipher_request_set_crypt(req, sg, sg, len, iv);
 697
 698	if (encrypt)
 699		ret = crypto_skcipher_encrypt(req);
 700	else
 701		ret = crypto_skcipher_decrypt(req);
 702
 703	skcipher_request_zero(req);
 704
 705	if (ret)
 706		goto out;
 707
 708	ret = write_bytes_to_xdr_buf(buf, offset, data, len);
 709
 
 
 
 
 
 
 
 
 
 
 710out:
 
 711	return ret;
 712}
 713
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 714u32
 715gss_krb5_aes_encrypt(struct krb5_ctx *kctx, u32 offset,
 716		     struct xdr_buf *buf, struct page **pages)
 717{
 718	u32 err;
 719	struct xdr_netobj hmac;
 720	u8 *cksumkey;
 721	u8 *ecptr;
 722	struct crypto_skcipher *cipher, *aux_cipher;
 723	int blocksize;
 724	struct page **save_pages;
 725	int nblocks, nbytes;
 726	struct encryptor_desc desc;
 727	u32 cbcbytes;
 728	unsigned int usage;
 729
 730	if (kctx->initiate) {
 731		cipher = kctx->initiator_enc;
 732		aux_cipher = kctx->initiator_enc_aux;
 733		cksumkey = kctx->initiator_integ;
 734		usage = KG_USAGE_INITIATOR_SEAL;
 735	} else {
 736		cipher = kctx->acceptor_enc;
 737		aux_cipher = kctx->acceptor_enc_aux;
 738		cksumkey = kctx->acceptor_integ;
 739		usage = KG_USAGE_ACCEPTOR_SEAL;
 740	}
 741	blocksize = crypto_skcipher_blocksize(cipher);
 742
 743	/* hide the gss token header and insert the confounder */
 744	offset += GSS_KRB5_TOK_HDR_LEN;
 745	if (xdr_extend_head(buf, offset, kctx->gk5e->conflen))
 746		return GSS_S_FAILURE;
 747	gss_krb5_make_confounder(buf->head[0].iov_base + offset, kctx->gk5e->conflen);
 748	offset -= GSS_KRB5_TOK_HDR_LEN;
 749
 750	if (buf->tail[0].iov_base != NULL) {
 751		ecptr = buf->tail[0].iov_base + buf->tail[0].iov_len;
 752	} else {
 753		buf->tail[0].iov_base = buf->head[0].iov_base
 754							+ buf->head[0].iov_len;
 755		buf->tail[0].iov_len = 0;
 756		ecptr = buf->tail[0].iov_base;
 757	}
 758
 759	/* copy plaintext gss token header after filler (if any) */
 760	memcpy(ecptr, buf->head[0].iov_base + offset, GSS_KRB5_TOK_HDR_LEN);
 761	buf->tail[0].iov_len += GSS_KRB5_TOK_HDR_LEN;
 762	buf->len += GSS_KRB5_TOK_HDR_LEN;
 763
 764	/* Do the HMAC */
 765	hmac.len = GSS_KRB5_MAX_CKSUM_LEN;
 766	hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
 767
 768	/*
 769	 * When we are called, pages points to the real page cache
 770	 * data -- which we can't go and encrypt!  buf->pages points
 771	 * to scratch pages which we are going to send off to the
 772	 * client/server.  Swap in the plaintext pages to calculate
 773	 * the hmac.
 774	 */
 775	save_pages = buf->pages;
 776	buf->pages = pages;
 777
 778	err = make_checksum_v2(kctx, NULL, 0, buf,
 779			       offset + GSS_KRB5_TOK_HDR_LEN,
 780			       cksumkey, usage, &hmac);
 781	buf->pages = save_pages;
 782	if (err)
 783		return GSS_S_FAILURE;
 784
 785	nbytes = buf->len - offset - GSS_KRB5_TOK_HDR_LEN;
 786	nblocks = (nbytes + blocksize - 1) / blocksize;
 787	cbcbytes = 0;
 788	if (nblocks > 2)
 789		cbcbytes = (nblocks - 2) * blocksize;
 790
 791	memset(desc.iv, 0, sizeof(desc.iv));
 792
 793	if (cbcbytes) {
 794		SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
 795
 796		desc.pos = offset + GSS_KRB5_TOK_HDR_LEN;
 797		desc.fragno = 0;
 798		desc.fraglen = 0;
 799		desc.pages = pages;
 800		desc.outbuf = buf;
 801		desc.req = req;
 802
 803		skcipher_request_set_tfm(req, aux_cipher);
 804		skcipher_request_set_callback(req, 0, NULL, NULL);
 805
 806		sg_init_table(desc.infrags, 4);
 807		sg_init_table(desc.outfrags, 4);
 808
 809		err = xdr_process_buf(buf, offset + GSS_KRB5_TOK_HDR_LEN,
 810				      cbcbytes, encryptor, &desc);
 811		skcipher_request_zero(req);
 812		if (err)
 813			goto out_err;
 814	}
 815
 816	/* Make sure IV carries forward from any CBC results. */
 817	err = gss_krb5_cts_crypt(cipher, buf,
 818				 offset + GSS_KRB5_TOK_HDR_LEN + cbcbytes,
 819				 desc.iv, pages, 1);
 820	if (err) {
 821		err = GSS_S_FAILURE;
 822		goto out_err;
 823	}
 824
 825	/* Now update buf to account for HMAC */
 826	buf->tail[0].iov_len += kctx->gk5e->cksumlength;
 827	buf->len += kctx->gk5e->cksumlength;
 828
 829out_err:
 830	if (err)
 831		err = GSS_S_FAILURE;
 832	return err;
 833}
 834
 835u32
 836gss_krb5_aes_decrypt(struct krb5_ctx *kctx, u32 offset, struct xdr_buf *buf,
 837		     u32 *headskip, u32 *tailskip)
 838{
 839	struct xdr_buf subbuf;
 840	u32 ret = 0;
 841	u8 *cksum_key;
 842	struct crypto_skcipher *cipher, *aux_cipher;
 843	struct xdr_netobj our_hmac_obj;
 844	u8 our_hmac[GSS_KRB5_MAX_CKSUM_LEN];
 845	u8 pkt_hmac[GSS_KRB5_MAX_CKSUM_LEN];
 846	int nblocks, blocksize, cbcbytes;
 847	struct decryptor_desc desc;
 848	unsigned int usage;
 849
 850	if (kctx->initiate) {
 851		cipher = kctx->acceptor_enc;
 852		aux_cipher = kctx->acceptor_enc_aux;
 853		cksum_key = kctx->acceptor_integ;
 854		usage = KG_USAGE_ACCEPTOR_SEAL;
 855	} else {
 856		cipher = kctx->initiator_enc;
 857		aux_cipher = kctx->initiator_enc_aux;
 858		cksum_key = kctx->initiator_integ;
 859		usage = KG_USAGE_INITIATOR_SEAL;
 860	}
 861	blocksize = crypto_skcipher_blocksize(cipher);
 862
 863
 864	/* create a segment skipping the header and leaving out the checksum */
 865	xdr_buf_subsegment(buf, &subbuf, offset + GSS_KRB5_TOK_HDR_LEN,
 866				    (buf->len - offset - GSS_KRB5_TOK_HDR_LEN -
 867				     kctx->gk5e->cksumlength));
 868
 869	nblocks = (subbuf.len + blocksize - 1) / blocksize;
 870
 871	cbcbytes = 0;
 872	if (nblocks > 2)
 873		cbcbytes = (nblocks - 2) * blocksize;
 874
 875	memset(desc.iv, 0, sizeof(desc.iv));
 876
 877	if (cbcbytes) {
 878		SKCIPHER_REQUEST_ON_STACK(req, aux_cipher);
 879
 880		desc.fragno = 0;
 881		desc.fraglen = 0;
 882		desc.req = req;
 883
 884		skcipher_request_set_tfm(req, aux_cipher);
 885		skcipher_request_set_callback(req, 0, NULL, NULL);
 886
 887		sg_init_table(desc.frags, 4);
 888
 889		ret = xdr_process_buf(&subbuf, 0, cbcbytes, decryptor, &desc);
 890		skcipher_request_zero(req);
 891		if (ret)
 892			goto out_err;
 893	}
 894
 895	/* Make sure IV carries forward from any CBC results. */
 896	ret = gss_krb5_cts_crypt(cipher, &subbuf, cbcbytes, desc.iv, NULL, 0);
 897	if (ret)
 898		goto out_err;
 899
 900
 901	/* Calculate our hmac over the plaintext data */
 902	our_hmac_obj.len = sizeof(our_hmac);
 903	our_hmac_obj.data = our_hmac;
 904
 905	ret = make_checksum_v2(kctx, NULL, 0, &subbuf, 0,
 906			       cksum_key, usage, &our_hmac_obj);
 907	if (ret)
 908		goto out_err;
 909
 910	/* Get the packet's hmac value */
 911	ret = read_bytes_from_xdr_buf(buf, buf->len - kctx->gk5e->cksumlength,
 912				      pkt_hmac, kctx->gk5e->cksumlength);
 913	if (ret)
 914		goto out_err;
 915
 916	if (memcmp(pkt_hmac, our_hmac, kctx->gk5e->cksumlength) != 0) {
 917		ret = GSS_S_BAD_SIG;
 918		goto out_err;
 919	}
 920	*headskip = kctx->gk5e->conflen;
 921	*tailskip = kctx->gk5e->cksumlength;
 922out_err:
 923	if (ret && ret != GSS_S_BAD_SIG)
 924		ret = GSS_S_FAILURE;
 925	return ret;
 926}
 927
 928/*
 929 * Compute Kseq given the initial session key and the checksum.
 930 * Set the key of the given cipher.
 
 
 
 
 
 
 
 
 
 
 
 
 
 931 */
 932int
 933krb5_rc4_setup_seq_key(struct krb5_ctx *kctx, struct crypto_skcipher *cipher,
 934		       unsigned char *cksum)
 
 935{
 936	struct crypto_shash *hmac;
 937	struct shash_desc *desc;
 938	u8 Kseq[GSS_KRB5_MAX_KEYLEN];
 939	u32 zeroconstant = 0;
 940	int err;
 941
 942	dprintk("%s: entered\n", __func__);
 943
 944	hmac = crypto_alloc_shash(kctx->gk5e->cksum_name, 0, 0);
 945	if (IS_ERR(hmac)) {
 946		dprintk("%s: error %ld, allocating hash '%s'\n",
 947			__func__, PTR_ERR(hmac), kctx->gk5e->cksum_name);
 948		return PTR_ERR(hmac);
 949	}
 950
 951	desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(hmac),
 952		       GFP_KERNEL);
 953	if (!desc) {
 954		dprintk("%s: failed to allocate shash descriptor for '%s'\n",
 955			__func__, kctx->gk5e->cksum_name);
 956		crypto_free_shash(hmac);
 957		return -ENOMEM;
 958	}
 959
 960	desc->tfm = hmac;
 961	desc->flags = 0;
 962
 963	/* Compute intermediate Kseq from session key */
 964	err = crypto_shash_setkey(hmac, kctx->Ksess, kctx->gk5e->keylength);
 965	if (err)
 966		goto out_err;
 
 
 
 967
 968	err = crypto_shash_digest(desc, (u8 *)&zeroconstant, 4, Kseq);
 
 
 
 
 969	if (err)
 970		goto out_err;
 971
 972	/* Compute final Kseq from the checksum and intermediate Kseq */
 973	err = crypto_shash_setkey(hmac, Kseq, kctx->gk5e->keylength);
 
 974	if (err)
 975		goto out_err;
 976
 977	err = crypto_shash_digest(desc, cksum, 8, Kseq);
 978	if (err)
 979		goto out_err;
 980
 981	err = crypto_skcipher_setkey(cipher, Kseq, kctx->gk5e->keylength);
 
 982	if (err)
 983		goto out_err;
 
 984
 985	err = 0;
 986
 987out_err:
 988	kzfree(desc);
 989	crypto_free_shash(hmac);
 990	dprintk("%s: returning %d\n", __func__, err);
 991	return err;
 992}
 
 993
 994/*
 995 * Compute Kcrypt given the initial session key and the plaintext seqnum.
 996 * Set the key of cipher kctx->enc.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 997 */
 998int
 999krb5_rc4_setup_enc_key(struct krb5_ctx *kctx, struct crypto_skcipher *cipher,
1000		       s32 seqnum)
1001{
1002	struct crypto_shash *hmac;
1003	struct shash_desc *desc;
1004	u8 Kcrypt[GSS_KRB5_MAX_KEYLEN];
1005	u8 zeroconstant[4] = {0};
1006	u8 seqnumarray[4];
1007	int err, i;
1008
1009	dprintk("%s: entered, seqnum %u\n", __func__, seqnum);
1010
1011	hmac = crypto_alloc_shash(kctx->gk5e->cksum_name, 0, 0);
1012	if (IS_ERR(hmac)) {
1013		dprintk("%s: error %ld, allocating hash '%s'\n",
1014			__func__, PTR_ERR(hmac), kctx->gk5e->cksum_name);
1015		return PTR_ERR(hmac);
1016	}
1017
1018	desc = kmalloc(sizeof(*desc) + crypto_shash_descsize(hmac),
1019		       GFP_KERNEL);
1020	if (!desc) {
1021		dprintk("%s: failed to allocate shash descriptor for '%s'\n",
1022			__func__, kctx->gk5e->cksum_name);
1023		crypto_free_shash(hmac);
1024		return -ENOMEM;
1025	}
 
1026
1027	desc->tfm = hmac;
1028	desc->flags = 0;
 
 
 
1029
1030	/* Compute intermediate Kcrypt from session key */
1031	for (i = 0; i < kctx->gk5e->keylength; i++)
1032		Kcrypt[i] = kctx->Ksess[i] ^ 0xf0;
 
 
 
 
 
1033
1034	err = crypto_shash_setkey(hmac, Kcrypt, kctx->gk5e->keylength);
1035	if (err)
1036		goto out_err;
1037
1038	err = crypto_shash_digest(desc, zeroconstant, 4, Kcrypt);
 
 
1039	if (err)
1040		goto out_err;
1041
1042	/* Compute final Kcrypt from the seqnum and intermediate Kcrypt */
1043	err = crypto_shash_setkey(hmac, Kcrypt, kctx->gk5e->keylength);
 
 
1044	if (err)
1045		goto out_err;
 
 
1046
1047	seqnumarray[0] = (unsigned char) ((seqnum >> 24) & 0xff);
1048	seqnumarray[1] = (unsigned char) ((seqnum >> 16) & 0xff);
1049	seqnumarray[2] = (unsigned char) ((seqnum >> 8) & 0xff);
1050	seqnumarray[3] = (unsigned char) ((seqnum >> 0) & 0xff);
1051
1052	err = crypto_shash_digest(desc, seqnumarray, 4, Kcrypt);
1053	if (err)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1054		goto out_err;
 
1055
1056	err = crypto_skcipher_setkey(cipher, Kcrypt, kctx->gk5e->keylength);
1057	if (err)
 
1058		goto out_err;
 
1059
1060	err = 0;
 
 
1061
1062out_err:
1063	kzfree(desc);
1064	crypto_free_shash(hmac);
1065	dprintk("%s: returning %d\n", __func__, err);
1066	return err;
1067}
1068
v6.13.7
   1/*
   2 *  linux/net/sunrpc/gss_krb5_crypto.c
   3 *
   4 *  Copyright (c) 2000-2008 The Regents of the University of Michigan.
   5 *  All rights reserved.
   6 *
   7 *  Andy Adamson   <andros@umich.edu>
   8 *  Bruce Fields   <bfields@umich.edu>
   9 */
  10
  11/*
  12 * Copyright (C) 1998 by the FundsXpress, INC.
  13 *
  14 * All rights reserved.
  15 *
  16 * Export of this software from the United States of America may require
  17 * a specific license from the United States Government.  It is the
  18 * responsibility of any person or organization contemplating export to
  19 * obtain such a license before exporting.
  20 *
  21 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  22 * distribute this software and its documentation for any purpose and
  23 * without fee is hereby granted, provided that the above copyright
  24 * notice appear in all copies and that both that copyright notice and
  25 * this permission notice appear in supporting documentation, and that
  26 * the name of FundsXpress. not be used in advertising or publicity pertaining
  27 * to distribution of the software without specific, written prior
  28 * permission.  FundsXpress makes no representations about the suitability of
  29 * this software for any purpose.  It is provided "as is" without express
  30 * or implied warranty.
  31 *
  32 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  33 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  34 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  35 */
  36
  37#include <crypto/hash.h>
  38#include <crypto/skcipher.h>
  39#include <crypto/utils.h>
  40#include <linux/err.h>
  41#include <linux/types.h>
  42#include <linux/mm.h>
  43#include <linux/scatterlist.h>
  44#include <linux/highmem.h>
  45#include <linux/pagemap.h>
  46#include <linux/random.h>
  47#include <linux/sunrpc/gss_krb5.h>
  48#include <linux/sunrpc/xdr.h>
  49#include <kunit/visibility.h>
  50
  51#include "gss_krb5_internal.h"
  52
  53#if IS_ENABLED(CONFIG_SUNRPC_DEBUG)
  54# define RPCDBG_FACILITY        RPCDBG_AUTH
  55#endif
  56
  57/**
  58 * krb5_make_confounder - Generate a confounder string
  59 * @p: memory location into which to write the string
  60 * @conflen: string length to write, in octets
  61 *
  62 * RFCs 1964 and 3961 mention only "a random confounder" without going
  63 * into detail about its function or cryptographic requirements. The
  64 * assumed purpose is to prevent repeated encryption of a plaintext with
  65 * the same key from generating the same ciphertext. It is also used to
  66 * pad minimum plaintext length to at least a single cipher block.
  67 *
  68 * However, in situations like the GSS Kerberos 5 mechanism, where the
  69 * encryption IV is always all zeroes, the confounder also effectively
  70 * functions like an IV. Thus, not only must it be unique from message
  71 * to message, but it must also be difficult to predict. Otherwise an
  72 * attacker can correlate the confounder to previous or future values,
  73 * making the encryption easier to break.
  74 *
  75 * Given that the primary consumer of this encryption mechanism is a
  76 * network storage protocol, a type of traffic that often carries
  77 * predictable payloads (eg, all zeroes when reading unallocated blocks
  78 * from a file), our confounder generation has to be cryptographically
  79 * strong.
  80 */
  81void krb5_make_confounder(u8 *p, int conflen)
  82{
  83	get_random_bytes(p, conflen);
  84}
  85
  86/**
  87 * krb5_encrypt - simple encryption of an RPCSEC GSS payload
  88 * @tfm: initialized cipher transform
  89 * @iv: pointer to an IV
  90 * @in: plaintext to encrypt
  91 * @out: OUT: ciphertext
  92 * @length: length of input and output buffers, in bytes
  93 *
  94 * @iv may be NULL to force the use of an all-zero IV.
  95 * The buffer containing the IV must be as large as the
  96 * cipher's ivsize.
  97 *
  98 * Return values:
  99 *   %0: @in successfully encrypted into @out
 100 *   negative errno: @in not encrypted
 101 */
 102u32
 103krb5_encrypt(
 104	struct crypto_sync_skcipher *tfm,
 105	void * iv,
 106	void * in,
 107	void * out,
 108	int length)
 109{
 110	u32 ret = -EINVAL;
 111	struct scatterlist sg[1];
 112	u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
 113	SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
 114
 115	if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
 116		goto out;
 117
 118	if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
 119		dprintk("RPC:       gss_k5encrypt: tfm iv size too large %d\n",
 120			crypto_sync_skcipher_ivsize(tfm));
 121		goto out;
 122	}
 123
 124	if (iv)
 125		memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
 126
 127	memcpy(out, in, length);
 128	sg_init_one(sg, out, length);
 129
 130	skcipher_request_set_sync_tfm(req, tfm);
 131	skcipher_request_set_callback(req, 0, NULL, NULL);
 132	skcipher_request_set_crypt(req, sg, sg, length, local_iv);
 133
 134	ret = crypto_skcipher_encrypt(req);
 135	skcipher_request_zero(req);
 136out:
 137	dprintk("RPC:       krb5_encrypt returns %d\n", ret);
 138	return ret;
 139}
 140
 141/**
 142 * krb5_decrypt - simple decryption of an RPCSEC GSS payload
 143 * @tfm: initialized cipher transform
 144 * @iv: pointer to an IV
 145 * @in: ciphertext to decrypt
 146 * @out: OUT: plaintext
 147 * @length: length of input and output buffers, in bytes
 148 *
 149 * @iv may be NULL to force the use of an all-zero IV.
 150 * The buffer containing the IV must be as large as the
 151 * cipher's ivsize.
 152 *
 153 * Return values:
 154 *   %0: @in successfully decrypted into @out
 155 *   negative errno: @in not decrypted
 156 */
 157u32
 158krb5_decrypt(
 159     struct crypto_sync_skcipher *tfm,
 160     void * iv,
 161     void * in,
 162     void * out,
 163     int length)
 164{
 165	u32 ret = -EINVAL;
 166	struct scatterlist sg[1];
 167	u8 local_iv[GSS_KRB5_MAX_BLOCKSIZE] = {0};
 168	SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
 169
 170	if (length % crypto_sync_skcipher_blocksize(tfm) != 0)
 171		goto out;
 172
 173	if (crypto_sync_skcipher_ivsize(tfm) > GSS_KRB5_MAX_BLOCKSIZE) {
 174		dprintk("RPC:       gss_k5decrypt: tfm iv size too large %d\n",
 175			crypto_sync_skcipher_ivsize(tfm));
 176		goto out;
 177	}
 178	if (iv)
 179		memcpy(local_iv, iv, crypto_sync_skcipher_ivsize(tfm));
 180
 181	memcpy(out, in, length);
 182	sg_init_one(sg, out, length);
 183
 184	skcipher_request_set_sync_tfm(req, tfm);
 185	skcipher_request_set_callback(req, 0, NULL, NULL);
 186	skcipher_request_set_crypt(req, sg, sg, length, local_iv);
 187
 188	ret = crypto_skcipher_decrypt(req);
 189	skcipher_request_zero(req);
 190out:
 191	dprintk("RPC:       gss_k5decrypt returns %d\n",ret);
 192	return ret;
 193}
 194
 195static int
 196checksummer(struct scatterlist *sg, void *data)
 197{
 198	struct ahash_request *req = data;
 199
 200	ahash_request_set_crypt(req, sg, NULL, sg->length);
 201
 202	return crypto_ahash_update(req);
 203}
 204
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 205/*
 206 * checksum the plaintext data and hdrlen bytes of the token header
 207 * The checksum is performed over the first 8 bytes of the
 208 * gss token header and then over the data body
 209 */
 210u32
 211make_checksum(struct krb5_ctx *kctx, char *header, int hdrlen,
 212	      struct xdr_buf *body, int body_offset, u8 *cksumkey,
 213	      unsigned int usage, struct xdr_netobj *cksumout)
 214{
 215	struct crypto_ahash *tfm;
 216	struct ahash_request *req;
 217	struct scatterlist              sg[1];
 218	int err = -1;
 219	u8 *checksumdata;
 220	unsigned int checksumlen;
 221
 
 
 
 
 
 222	if (cksumout->len < kctx->gk5e->cksumlength) {
 223		dprintk("%s: checksum buffer length, %u, too small for %s\n",
 224			__func__, cksumout->len, kctx->gk5e->name);
 225		return GSS_S_FAILURE;
 226	}
 227
 228	checksumdata = kmalloc(GSS_KRB5_MAX_CKSUM_LEN, GFP_KERNEL);
 229	if (checksumdata == NULL)
 230		return GSS_S_FAILURE;
 231
 232	tfm = crypto_alloc_ahash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
 233	if (IS_ERR(tfm))
 234		goto out_free_cksum;
 235
 236	req = ahash_request_alloc(tfm, GFP_KERNEL);
 237	if (!req)
 238		goto out_free_ahash;
 
 
 239
 240	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 241
 242	checksumlen = crypto_ahash_digestsize(tfm);
 243
 244	if (cksumkey != NULL) {
 245		err = crypto_ahash_setkey(tfm, cksumkey,
 246					  kctx->gk5e->keylength);
 247		if (err)
 248			goto out;
 249	}
 250
 251	err = crypto_ahash_init(req);
 252	if (err)
 253		goto out;
 254	sg_init_one(sg, header, hdrlen);
 255	ahash_request_set_crypt(req, sg, NULL, hdrlen);
 256	err = crypto_ahash_update(req);
 257	if (err)
 258		goto out;
 259	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 260			      checksummer, req);
 261	if (err)
 262		goto out;
 263	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 264	err = crypto_ahash_final(req);
 265	if (err)
 266		goto out;
 267
 268	switch (kctx->gk5e->ctype) {
 269	case CKSUMTYPE_RSA_MD5:
 270		err = krb5_encrypt(kctx->seq, NULL, checksumdata,
 271				   checksumdata, checksumlen);
 272		if (err)
 273			goto out;
 274		memcpy(cksumout->data,
 275		       checksumdata + checksumlen - kctx->gk5e->cksumlength,
 276		       kctx->gk5e->cksumlength);
 277		break;
 278	case CKSUMTYPE_HMAC_SHA1_DES3:
 279		memcpy(cksumout->data, checksumdata, kctx->gk5e->cksumlength);
 280		break;
 281	default:
 282		BUG();
 283		break;
 284	}
 285	cksumout->len = kctx->gk5e->cksumlength;
 286out:
 287	ahash_request_free(req);
 288out_free_ahash:
 289	crypto_free_ahash(tfm);
 290out_free_cksum:
 291	kfree(checksumdata);
 292	return err ? GSS_S_FAILURE : 0;
 293}
 294
 295/**
 296 * gss_krb5_checksum - Compute the MAC for a GSS Wrap or MIC token
 297 * @tfm: an initialized hash transform
 298 * @header: pointer to a buffer containing the token header, or NULL
 299 * @hdrlen: number of octets in @header
 300 * @body: xdr_buf containing an RPC message (body.len is the message length)
 301 * @body_offset: byte offset into @body to start checksumming
 302 * @cksumout: OUT: a buffer to be filled in with the computed HMAC
 303 *
 304 * Usually expressed as H = HMAC(K, message)[1..h] .
 305 *
 306 * Caller provides the truncation length of the output token (h) in
 307 * cksumout.len.
 308 *
 309 * Return values:
 310 *   %GSS_S_COMPLETE: Digest computed, @cksumout filled in
 311 *   %GSS_S_FAILURE: Call failed
 312 */
 313u32
 314gss_krb5_checksum(struct crypto_ahash *tfm, char *header, int hdrlen,
 315		  const struct xdr_buf *body, int body_offset,
 316		  struct xdr_netobj *cksumout)
 317{
 
 318	struct ahash_request *req;
 319	int err = -ENOMEM;
 320	u8 *checksumdata;
 
 
 321
 322	checksumdata = kmalloc(crypto_ahash_digestsize(tfm), GFP_KERNEL);
 323	if (!checksumdata)
 
 324		return GSS_S_FAILURE;
 
 
 
 
 
 
 
 
 
 
 
 325
 326	req = ahash_request_alloc(tfm, GFP_KERNEL);
 327	if (!req)
 328		goto out_free_cksum;
 
 
 
 329	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 
 
 
 
 
 330	err = crypto_ahash_init(req);
 331	if (err)
 332		goto out_free_ahash;
 333
 334	/*
 335	 * Per RFC 4121 Section 4.2.4, the checksum is performed over the
 336	 * data body first, then over the octets in "header".
 337	 */
 338	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 339			      checksummer, req);
 340	if (err)
 341		goto out_free_ahash;
 342	if (header) {
 343		struct scatterlist sg[1];
 344
 345		sg_init_one(sg, header, hdrlen);
 346		ahash_request_set_crypt(req, sg, NULL, hdrlen);
 347		err = crypto_ahash_update(req);
 348		if (err)
 349			goto out_free_ahash;
 350	}
 351
 352	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 353	err = crypto_ahash_final(req);
 354	if (err)
 355		goto out_free_ahash;
 356
 357	memcpy(cksumout->data, checksumdata,
 358	       min_t(int, cksumout->len, crypto_ahash_digestsize(tfm)));
 359
 360out_free_ahash:
 
 
 
 
 
 
 
 
 
 
 361	ahash_request_free(req);
 362out_free_cksum:
 363	kfree_sensitive(checksumdata);
 364	return err ? GSS_S_FAILURE : GSS_S_COMPLETE;
 365}
 366EXPORT_SYMBOL_IF_KUNIT(gss_krb5_checksum);
 367
 368struct encryptor_desc {
 369	u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
 370	struct skcipher_request *req;
 371	int pos;
 372	struct xdr_buf *outbuf;
 373	struct page **pages;
 374	struct scatterlist infrags[4];
 375	struct scatterlist outfrags[4];
 376	int fragno;
 377	int fraglen;
 378};
 379
 380static int
 381encryptor(struct scatterlist *sg, void *data)
 382{
 383	struct encryptor_desc *desc = data;
 384	struct xdr_buf *outbuf = desc->outbuf;
 385	struct crypto_sync_skcipher *tfm =
 386		crypto_sync_skcipher_reqtfm(desc->req);
 387	struct page *in_page;
 388	int thislen = desc->fraglen + sg->length;
 389	int fraglen, ret;
 390	int page_pos;
 391
 392	/* Worst case is 4 fragments: head, end of page 1, start
 393	 * of page 2, tail.  Anything more is a bug. */
 394	BUG_ON(desc->fragno > 3);
 395
 396	page_pos = desc->pos - outbuf->head[0].iov_len;
 397	if (page_pos >= 0 && page_pos < outbuf->page_len) {
 398		/* pages are not in place: */
 399		int i = (page_pos + outbuf->page_base) >> PAGE_SHIFT;
 400		in_page = desc->pages[i];
 401	} else {
 402		in_page = sg_page(sg);
 403	}
 404	sg_set_page(&desc->infrags[desc->fragno], in_page, sg->length,
 405		    sg->offset);
 406	sg_set_page(&desc->outfrags[desc->fragno], sg_page(sg), sg->length,
 407		    sg->offset);
 408	desc->fragno++;
 409	desc->fraglen += sg->length;
 410	desc->pos += sg->length;
 411
 412	fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
 413	thislen -= fraglen;
 414
 415	if (thislen == 0)
 416		return 0;
 417
 418	sg_mark_end(&desc->infrags[desc->fragno - 1]);
 419	sg_mark_end(&desc->outfrags[desc->fragno - 1]);
 420
 421	skcipher_request_set_crypt(desc->req, desc->infrags, desc->outfrags,
 422				   thislen, desc->iv);
 423
 424	ret = crypto_skcipher_encrypt(desc->req);
 425	if (ret)
 426		return ret;
 427
 428	sg_init_table(desc->infrags, 4);
 429	sg_init_table(desc->outfrags, 4);
 430
 431	if (fraglen) {
 432		sg_set_page(&desc->outfrags[0], sg_page(sg), fraglen,
 433				sg->offset + sg->length - fraglen);
 434		desc->infrags[0] = desc->outfrags[0];
 435		sg_assign_page(&desc->infrags[0], in_page);
 436		desc->fragno = 1;
 437		desc->fraglen = fraglen;
 438	} else {
 439		desc->fragno = 0;
 440		desc->fraglen = 0;
 441	}
 442	return 0;
 443}
 444
 445int
 446gss_encrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
 447		    int offset, struct page **pages)
 448{
 449	int ret;
 450	struct encryptor_desc desc;
 451	SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
 452
 453	BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
 454
 455	skcipher_request_set_sync_tfm(req, tfm);
 456	skcipher_request_set_callback(req, 0, NULL, NULL);
 457
 458	memset(desc.iv, 0, sizeof(desc.iv));
 459	desc.req = req;
 460	desc.pos = offset;
 461	desc.outbuf = buf;
 462	desc.pages = pages;
 463	desc.fragno = 0;
 464	desc.fraglen = 0;
 465
 466	sg_init_table(desc.infrags, 4);
 467	sg_init_table(desc.outfrags, 4);
 468
 469	ret = xdr_process_buf(buf, offset, buf->len - offset, encryptor, &desc);
 470	skcipher_request_zero(req);
 471	return ret;
 472}
 473
 474struct decryptor_desc {
 475	u8 iv[GSS_KRB5_MAX_BLOCKSIZE];
 476	struct skcipher_request *req;
 477	struct scatterlist frags[4];
 478	int fragno;
 479	int fraglen;
 480};
 481
 482static int
 483decryptor(struct scatterlist *sg, void *data)
 484{
 485	struct decryptor_desc *desc = data;
 486	int thislen = desc->fraglen + sg->length;
 487	struct crypto_sync_skcipher *tfm =
 488		crypto_sync_skcipher_reqtfm(desc->req);
 489	int fraglen, ret;
 490
 491	/* Worst case is 4 fragments: head, end of page 1, start
 492	 * of page 2, tail.  Anything more is a bug. */
 493	BUG_ON(desc->fragno > 3);
 494	sg_set_page(&desc->frags[desc->fragno], sg_page(sg), sg->length,
 495		    sg->offset);
 496	desc->fragno++;
 497	desc->fraglen += sg->length;
 498
 499	fraglen = thislen & (crypto_sync_skcipher_blocksize(tfm) - 1);
 500	thislen -= fraglen;
 501
 502	if (thislen == 0)
 503		return 0;
 504
 505	sg_mark_end(&desc->frags[desc->fragno - 1]);
 506
 507	skcipher_request_set_crypt(desc->req, desc->frags, desc->frags,
 508				   thislen, desc->iv);
 509
 510	ret = crypto_skcipher_decrypt(desc->req);
 511	if (ret)
 512		return ret;
 513
 514	sg_init_table(desc->frags, 4);
 515
 516	if (fraglen) {
 517		sg_set_page(&desc->frags[0], sg_page(sg), fraglen,
 518				sg->offset + sg->length - fraglen);
 519		desc->fragno = 1;
 520		desc->fraglen = fraglen;
 521	} else {
 522		desc->fragno = 0;
 523		desc->fraglen = 0;
 524	}
 525	return 0;
 526}
 527
 528int
 529gss_decrypt_xdr_buf(struct crypto_sync_skcipher *tfm, struct xdr_buf *buf,
 530		    int offset)
 531{
 532	int ret;
 533	struct decryptor_desc desc;
 534	SYNC_SKCIPHER_REQUEST_ON_STACK(req, tfm);
 535
 536	/* XXXJBF: */
 537	BUG_ON((buf->len - offset) % crypto_sync_skcipher_blocksize(tfm) != 0);
 538
 539	skcipher_request_set_sync_tfm(req, tfm);
 540	skcipher_request_set_callback(req, 0, NULL, NULL);
 541
 542	memset(desc.iv, 0, sizeof(desc.iv));
 543	desc.req = req;
 544	desc.fragno = 0;
 545	desc.fraglen = 0;
 546
 547	sg_init_table(desc.frags, 4);
 548
 549	ret = xdr_process_buf(buf, offset, buf->len - offset, decryptor, &desc);
 550	skcipher_request_zero(req);
 551	return ret;
 552}
 553
 554/*
 555 * This function makes the assumption that it was ultimately called
 556 * from gss_wrap().
 557 *
 558 * The client auth_gss code moves any existing tail data into a
 559 * separate page before calling gss_wrap.
 560 * The server svcauth_gss code ensures that both the head and the
 561 * tail have slack space of RPC_MAX_AUTH_SIZE before calling gss_wrap.
 562 *
 563 * Even with that guarantee, this function may be called more than
 564 * once in the processing of gss_wrap().  The best we can do is
 565 * verify at compile-time (see GSS_KRB5_SLACK_CHECK) that the
 566 * largest expected shift will fit within RPC_MAX_AUTH_SIZE.
 567 * At run-time we can verify that a single invocation of this
 568 * function doesn't attempt to use more the RPC_MAX_AUTH_SIZE.
 569 */
 570
 571int
 572xdr_extend_head(struct xdr_buf *buf, unsigned int base, unsigned int shiftlen)
 573{
 574	u8 *p;
 575
 576	if (shiftlen == 0)
 577		return 0;
 578
 
 579	BUG_ON(shiftlen > RPC_MAX_AUTH_SIZE);
 580
 581	p = buf->head[0].iov_base + base;
 582
 583	memmove(p + shiftlen, p, buf->head[0].iov_len - base);
 584
 585	buf->head[0].iov_len += shiftlen;
 586	buf->len += shiftlen;
 587
 588	return 0;
 589}
 590
 591static u32
 592gss_krb5_cts_crypt(struct crypto_sync_skcipher *cipher, struct xdr_buf *buf,
 593		   u32 offset, u8 *iv, struct page **pages, int encrypt)
 594{
 595	u32 ret;
 596	struct scatterlist sg[1];
 597	SYNC_SKCIPHER_REQUEST_ON_STACK(req, cipher);
 598	u8 *data;
 599	struct page **save_pages;
 600	u32 len = buf->len - offset;
 601
 602	if (len > GSS_KRB5_MAX_BLOCKSIZE * 2) {
 603		WARN_ON(0);
 604		return -ENOMEM;
 605	}
 606	data = kmalloc(GSS_KRB5_MAX_BLOCKSIZE * 2, GFP_KERNEL);
 607	if (!data)
 608		return -ENOMEM;
 609
 610	/*
 611	 * For encryption, we want to read from the cleartext
 612	 * page cache pages, and write the encrypted data to
 613	 * the supplied xdr_buf pages.
 614	 */
 615	save_pages = buf->pages;
 616	if (encrypt)
 617		buf->pages = pages;
 618
 619	ret = read_bytes_from_xdr_buf(buf, offset, data, len);
 620	buf->pages = save_pages;
 621	if (ret)
 622		goto out;
 623
 624	sg_init_one(sg, data, len);
 625
 626	skcipher_request_set_sync_tfm(req, cipher);
 627	skcipher_request_set_callback(req, 0, NULL, NULL);
 628	skcipher_request_set_crypt(req, sg, sg, len, iv);
 629
 630	if (encrypt)
 631		ret = crypto_skcipher_encrypt(req);
 632	else
 633		ret = crypto_skcipher_decrypt(req);
 634
 635	skcipher_request_zero(req);
 636
 637	if (ret)
 638		goto out;
 639
 640	ret = write_bytes_to_xdr_buf(buf, offset, data, len);
 641
 642#if IS_ENABLED(CONFIG_KUNIT)
 643	/*
 644	 * CBC-CTS does not define an output IV but RFC 3962 defines it as the
 645	 * penultimate block of ciphertext, so copy that into the IV buffer
 646	 * before returning.
 647	 */
 648	if (encrypt)
 649		memcpy(iv, data, crypto_sync_skcipher_ivsize(cipher));
 650#endif
 651
 652out:
 653	kfree(data);
 654	return ret;
 655}
 656
 657/**
 658 * krb5_cbc_cts_encrypt - encrypt in CBC mode with CTS
 659 * @cts_tfm: CBC cipher with CTS
 660 * @cbc_tfm: base CBC cipher
 661 * @offset: starting byte offset for plaintext
 662 * @buf: OUT: output buffer
 663 * @pages: plaintext
 664 * @iv: output CBC initialization vector, or NULL
 665 * @ivsize: size of @iv, in octets
 666 *
 667 * To provide confidentiality, encrypt using cipher block chaining
 668 * with ciphertext stealing. Message integrity is handled separately.
 669 *
 670 * Return values:
 671 *   %0: encryption successful
 672 *   negative errno: encryption could not be completed
 673 */
 674VISIBLE_IF_KUNIT
 675int krb5_cbc_cts_encrypt(struct crypto_sync_skcipher *cts_tfm,
 676			 struct crypto_sync_skcipher *cbc_tfm,
 677			 u32 offset, struct xdr_buf *buf, struct page **pages,
 678			 u8 *iv, unsigned int ivsize)
 679{
 680	u32 blocksize, nbytes, nblocks, cbcbytes;
 681	struct encryptor_desc desc;
 682	int err;
 683
 684	blocksize = crypto_sync_skcipher_blocksize(cts_tfm);
 685	nbytes = buf->len - offset;
 686	nblocks = (nbytes + blocksize - 1) / blocksize;
 687	cbcbytes = 0;
 688	if (nblocks > 2)
 689		cbcbytes = (nblocks - 2) * blocksize;
 690
 691	memset(desc.iv, 0, sizeof(desc.iv));
 692
 693	/* Handle block-sized chunks of plaintext with CBC. */
 694	if (cbcbytes) {
 695		SYNC_SKCIPHER_REQUEST_ON_STACK(req, cbc_tfm);
 696
 697		desc.pos = offset;
 698		desc.fragno = 0;
 699		desc.fraglen = 0;
 700		desc.pages = pages;
 701		desc.outbuf = buf;
 702		desc.req = req;
 703
 704		skcipher_request_set_sync_tfm(req, cbc_tfm);
 705		skcipher_request_set_callback(req, 0, NULL, NULL);
 706
 707		sg_init_table(desc.infrags, 4);
 708		sg_init_table(desc.outfrags, 4);
 709
 710		err = xdr_process_buf(buf, offset, cbcbytes, encryptor, &desc);
 711		skcipher_request_zero(req);
 712		if (err)
 713			return err;
 714	}
 715
 716	/* Remaining plaintext is handled with CBC-CTS. */
 717	err = gss_krb5_cts_crypt(cts_tfm, buf, offset + cbcbytes,
 718				 desc.iv, pages, 1);
 719	if (err)
 720		return err;
 721
 722	if (unlikely(iv))
 723		memcpy(iv, desc.iv, ivsize);
 724	return 0;
 725}
 726EXPORT_SYMBOL_IF_KUNIT(krb5_cbc_cts_encrypt);
 727
 728/**
 729 * krb5_cbc_cts_decrypt - decrypt in CBC mode with CTS
 730 * @cts_tfm: CBC cipher with CTS
 731 * @cbc_tfm: base CBC cipher
 732 * @offset: starting byte offset for plaintext
 733 * @buf: OUT: output buffer
 734 *
 735 * Return values:
 736 *   %0: decryption successful
 737 *   negative errno: decryption could not be completed
 738 */
 739VISIBLE_IF_KUNIT
 740int krb5_cbc_cts_decrypt(struct crypto_sync_skcipher *cts_tfm,
 741			 struct crypto_sync_skcipher *cbc_tfm,
 742			 u32 offset, struct xdr_buf *buf)
 743{
 744	u32 blocksize, nblocks, cbcbytes;
 745	struct decryptor_desc desc;
 746	int err;
 747
 748	blocksize = crypto_sync_skcipher_blocksize(cts_tfm);
 749	nblocks = (buf->len + blocksize - 1) / blocksize;
 750	cbcbytes = 0;
 751	if (nblocks > 2)
 752		cbcbytes = (nblocks - 2) * blocksize;
 753
 754	memset(desc.iv, 0, sizeof(desc.iv));
 755
 756	/* Handle block-sized chunks of plaintext with CBC. */
 757	if (cbcbytes) {
 758		SYNC_SKCIPHER_REQUEST_ON_STACK(req, cbc_tfm);
 759
 760		desc.fragno = 0;
 761		desc.fraglen = 0;
 762		desc.req = req;
 763
 764		skcipher_request_set_sync_tfm(req, cbc_tfm);
 765		skcipher_request_set_callback(req, 0, NULL, NULL);
 766
 767		sg_init_table(desc.frags, 4);
 768
 769		err = xdr_process_buf(buf, 0, cbcbytes, decryptor, &desc);
 770		skcipher_request_zero(req);
 771		if (err)
 772			return err;
 773	}
 774
 775	/* Remaining plaintext is handled with CBC-CTS. */
 776	return gss_krb5_cts_crypt(cts_tfm, buf, cbcbytes, desc.iv, NULL, 0);
 777}
 778EXPORT_SYMBOL_IF_KUNIT(krb5_cbc_cts_decrypt);
 779
 780u32
 781gss_krb5_aes_encrypt(struct krb5_ctx *kctx, u32 offset,
 782		     struct xdr_buf *buf, struct page **pages)
 783{
 784	u32 err;
 785	struct xdr_netobj hmac;
 
 786	u8 *ecptr;
 787	struct crypto_sync_skcipher *cipher, *aux_cipher;
 788	struct crypto_ahash *ahash;
 789	struct page **save_pages;
 790	unsigned int conflen;
 
 
 
 791
 792	if (kctx->initiate) {
 793		cipher = kctx->initiator_enc;
 794		aux_cipher = kctx->initiator_enc_aux;
 795		ahash = kctx->initiator_integ;
 
 796	} else {
 797		cipher = kctx->acceptor_enc;
 798		aux_cipher = kctx->acceptor_enc_aux;
 799		ahash = kctx->acceptor_integ;
 
 800	}
 801	conflen = crypto_sync_skcipher_blocksize(cipher);
 802
 803	/* hide the gss token header and insert the confounder */
 804	offset += GSS_KRB5_TOK_HDR_LEN;
 805	if (xdr_extend_head(buf, offset, conflen))
 806		return GSS_S_FAILURE;
 807	krb5_make_confounder(buf->head[0].iov_base + offset, conflen);
 808	offset -= GSS_KRB5_TOK_HDR_LEN;
 809
 810	if (buf->tail[0].iov_base != NULL) {
 811		ecptr = buf->tail[0].iov_base + buf->tail[0].iov_len;
 812	} else {
 813		buf->tail[0].iov_base = buf->head[0].iov_base
 814							+ buf->head[0].iov_len;
 815		buf->tail[0].iov_len = 0;
 816		ecptr = buf->tail[0].iov_base;
 817	}
 818
 819	/* copy plaintext gss token header after filler (if any) */
 820	memcpy(ecptr, buf->head[0].iov_base + offset, GSS_KRB5_TOK_HDR_LEN);
 821	buf->tail[0].iov_len += GSS_KRB5_TOK_HDR_LEN;
 822	buf->len += GSS_KRB5_TOK_HDR_LEN;
 823
 824	hmac.len = kctx->gk5e->cksumlength;
 
 825	hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
 826
 827	/*
 828	 * When we are called, pages points to the real page cache
 829	 * data -- which we can't go and encrypt!  buf->pages points
 830	 * to scratch pages which we are going to send off to the
 831	 * client/server.  Swap in the plaintext pages to calculate
 832	 * the hmac.
 833	 */
 834	save_pages = buf->pages;
 835	buf->pages = pages;
 836
 837	err = gss_krb5_checksum(ahash, NULL, 0, buf,
 838				offset + GSS_KRB5_TOK_HDR_LEN, &hmac);
 
 839	buf->pages = save_pages;
 840	if (err)
 841		return GSS_S_FAILURE;
 842
 843	err = krb5_cbc_cts_encrypt(cipher, aux_cipher,
 844				   offset + GSS_KRB5_TOK_HDR_LEN,
 845				   buf, pages, NULL, 0);
 846	if (err)
 847		return GSS_S_FAILURE;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 848
 849	/* Now update buf to account for HMAC */
 850	buf->tail[0].iov_len += kctx->gk5e->cksumlength;
 851	buf->len += kctx->gk5e->cksumlength;
 852
 853	return GSS_S_COMPLETE;
 
 
 
 854}
 855
 856u32
 857gss_krb5_aes_decrypt(struct krb5_ctx *kctx, u32 offset, u32 len,
 858		     struct xdr_buf *buf, u32 *headskip, u32 *tailskip)
 859{
 860	struct crypto_sync_skcipher *cipher, *aux_cipher;
 861	struct crypto_ahash *ahash;
 
 
 862	struct xdr_netobj our_hmac_obj;
 863	u8 our_hmac[GSS_KRB5_MAX_CKSUM_LEN];
 864	u8 pkt_hmac[GSS_KRB5_MAX_CKSUM_LEN];
 865	struct xdr_buf subbuf;
 866	u32 ret = 0;
 
 867
 868	if (kctx->initiate) {
 869		cipher = kctx->acceptor_enc;
 870		aux_cipher = kctx->acceptor_enc_aux;
 871		ahash = kctx->acceptor_integ;
 
 872	} else {
 873		cipher = kctx->initiator_enc;
 874		aux_cipher = kctx->initiator_enc_aux;
 875		ahash = kctx->initiator_integ;
 
 876	}
 
 
 877
 878	/* create a segment skipping the header and leaving out the checksum */
 879	xdr_buf_subsegment(buf, &subbuf, offset + GSS_KRB5_TOK_HDR_LEN,
 880				    (len - offset - GSS_KRB5_TOK_HDR_LEN -
 881				     kctx->gk5e->cksumlength));
 882
 883	ret = krb5_cbc_cts_decrypt(cipher, aux_cipher, 0, &subbuf);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 884	if (ret)
 885		goto out_err;
 886
 887	our_hmac_obj.len = kctx->gk5e->cksumlength;
 
 
 888	our_hmac_obj.data = our_hmac;
 889	ret = gss_krb5_checksum(ahash, NULL, 0, &subbuf, 0, &our_hmac_obj);
 
 
 890	if (ret)
 891		goto out_err;
 892
 893	/* Get the packet's hmac value */
 894	ret = read_bytes_from_xdr_buf(buf, len - kctx->gk5e->cksumlength,
 895				      pkt_hmac, kctx->gk5e->cksumlength);
 896	if (ret)
 897		goto out_err;
 898
 899	if (crypto_memneq(pkt_hmac, our_hmac, kctx->gk5e->cksumlength) != 0) {
 900		ret = GSS_S_BAD_SIG;
 901		goto out_err;
 902	}
 903	*headskip = crypto_sync_skcipher_blocksize(cipher);
 904	*tailskip = kctx->gk5e->cksumlength;
 905out_err:
 906	if (ret && ret != GSS_S_BAD_SIG)
 907		ret = GSS_S_FAILURE;
 908	return ret;
 909}
 910
 911/**
 912 * krb5_etm_checksum - Compute a MAC for a GSS Wrap token
 913 * @cipher: an initialized cipher transform
 914 * @tfm: an initialized hash transform
 915 * @body: xdr_buf containing an RPC message (body.len is the message length)
 916 * @body_offset: byte offset into @body to start checksumming
 917 * @cksumout: OUT: a buffer to be filled in with the computed HMAC
 918 *
 919 * Usually expressed as H = HMAC(K, IV | ciphertext)[1..h] .
 920 *
 921 * Caller provides the truncation length of the output token (h) in
 922 * cksumout.len.
 923 *
 924 * Return values:
 925 *   %GSS_S_COMPLETE: Digest computed, @cksumout filled in
 926 *   %GSS_S_FAILURE: Call failed
 927 */
 928VISIBLE_IF_KUNIT
 929u32 krb5_etm_checksum(struct crypto_sync_skcipher *cipher,
 930		      struct crypto_ahash *tfm, const struct xdr_buf *body,
 931		      int body_offset, struct xdr_netobj *cksumout)
 932{
 933	unsigned int ivsize = crypto_sync_skcipher_ivsize(cipher);
 934	struct ahash_request *req;
 935	struct scatterlist sg[1];
 936	u8 *iv, *checksumdata;
 937	int err = -ENOMEM;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 938
 939	checksumdata = kmalloc(crypto_ahash_digestsize(tfm), GFP_KERNEL);
 940	if (!checksumdata)
 941		return GSS_S_FAILURE;
 942	/* For RPCSEC, the "initial cipher state" is always all zeroes. */
 943	iv = kzalloc(ivsize, GFP_KERNEL);
 944	if (!iv)
 945		goto out_free_mem;
 946
 947	req = ahash_request_alloc(tfm, GFP_KERNEL);
 948	if (!req)
 949		goto out_free_mem;
 950	ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_SLEEP, NULL, NULL);
 951	err = crypto_ahash_init(req);
 952	if (err)
 953		goto out_free_ahash;
 954
 955	sg_init_one(sg, iv, ivsize);
 956	ahash_request_set_crypt(req, sg, NULL, ivsize);
 957	err = crypto_ahash_update(req);
 958	if (err)
 959		goto out_free_ahash;
 960	err = xdr_process_buf(body, body_offset, body->len - body_offset,
 961			      checksummer, req);
 962	if (err)
 963		goto out_free_ahash;
 964
 965	ahash_request_set_crypt(req, NULL, checksumdata, 0);
 966	err = crypto_ahash_final(req);
 967	if (err)
 968		goto out_free_ahash;
 969	memcpy(cksumout->data, checksumdata, cksumout->len);
 970
 971out_free_ahash:
 972	ahash_request_free(req);
 973out_free_mem:
 974	kfree(iv);
 975	kfree_sensitive(checksumdata);
 976	return err ? GSS_S_FAILURE : GSS_S_COMPLETE;
 
 977}
 978EXPORT_SYMBOL_IF_KUNIT(krb5_etm_checksum);
 979
 980/**
 981 * krb5_etm_encrypt - Encrypt using the RFC 8009 rules
 982 * @kctx: Kerberos context
 983 * @offset: starting offset of the payload, in bytes
 984 * @buf: OUT: send buffer to contain the encrypted payload
 985 * @pages: plaintext payload
 986 *
 987 * The main difference with aes_encrypt is that "The HMAC is
 988 * calculated over the cipher state concatenated with the AES
 989 * output, instead of being calculated over the confounder and
 990 * plaintext.  This allows the message receiver to verify the
 991 * integrity of the message before decrypting the message."
 992 *
 993 * RFC 8009 Section 5:
 994 *
 995 * encryption function: as follows, where E() is AES encryption in
 996 * CBC-CS3 mode, and h is the size of truncated HMAC (128 bits or
 997 * 192 bits as described above).
 998 *
 999 *    N = random value of length 128 bits (the AES block size)
1000 *    IV = cipher state
1001 *    C = E(Ke, N | plaintext, IV)
1002 *    H = HMAC(Ki, IV | C)
1003 *    ciphertext = C | H[1..h]
1004 *
1005 * This encryption formula provides AEAD EtM with key separation.
1006 *
1007 * Return values:
1008 *   %GSS_S_COMPLETE: Encryption successful
1009 *   %GSS_S_FAILURE: Encryption failed
1010 */
1011u32
1012krb5_etm_encrypt(struct krb5_ctx *kctx, u32 offset,
1013		 struct xdr_buf *buf, struct page **pages)
1014{
1015	struct crypto_sync_skcipher *cipher, *aux_cipher;
1016	struct crypto_ahash *ahash;
1017	struct xdr_netobj hmac;
1018	unsigned int conflen;
1019	u8 *ecptr;
1020	u32 err;
1021
1022	if (kctx->initiate) {
1023		cipher = kctx->initiator_enc;
1024		aux_cipher = kctx->initiator_enc_aux;
1025		ahash = kctx->initiator_integ;
1026	} else {
1027		cipher = kctx->acceptor_enc;
1028		aux_cipher = kctx->acceptor_enc_aux;
1029		ahash = kctx->acceptor_integ;
 
 
 
 
 
 
 
 
1030	}
1031	conflen = crypto_sync_skcipher_blocksize(cipher);
1032
1033	offset += GSS_KRB5_TOK_HDR_LEN;
1034	if (xdr_extend_head(buf, offset, conflen))
1035		return GSS_S_FAILURE;
1036	krb5_make_confounder(buf->head[0].iov_base + offset, conflen);
1037	offset -= GSS_KRB5_TOK_HDR_LEN;
1038
1039	if (buf->tail[0].iov_base) {
1040		ecptr = buf->tail[0].iov_base + buf->tail[0].iov_len;
1041	} else {
1042		buf->tail[0].iov_base = buf->head[0].iov_base
1043							+ buf->head[0].iov_len;
1044		buf->tail[0].iov_len = 0;
1045		ecptr = buf->tail[0].iov_base;
1046	}
1047
1048	memcpy(ecptr, buf->head[0].iov_base + offset, GSS_KRB5_TOK_HDR_LEN);
1049	buf->tail[0].iov_len += GSS_KRB5_TOK_HDR_LEN;
1050	buf->len += GSS_KRB5_TOK_HDR_LEN;
1051
1052	err = krb5_cbc_cts_encrypt(cipher, aux_cipher,
1053				   offset + GSS_KRB5_TOK_HDR_LEN,
1054				   buf, pages, NULL, 0);
1055	if (err)
1056		return GSS_S_FAILURE;
1057
1058	hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
1059	hmac.len = kctx->gk5e->cksumlength;
1060	err = krb5_etm_checksum(cipher, ahash,
1061				buf, offset + GSS_KRB5_TOK_HDR_LEN, &hmac);
1062	if (err)
1063		goto out_err;
1064	buf->tail[0].iov_len += kctx->gk5e->cksumlength;
1065	buf->len += kctx->gk5e->cksumlength;
1066
1067	return GSS_S_COMPLETE;
 
 
 
1068
1069out_err:
1070	return GSS_S_FAILURE;
1071}
1072
1073/**
1074 * krb5_etm_decrypt - Decrypt using the RFC 8009 rules
1075 * @kctx: Kerberos context
1076 * @offset: starting offset of the ciphertext, in bytes
1077 * @len:
1078 * @buf:
1079 * @headskip: OUT: the enctype's confounder length, in octets
1080 * @tailskip: OUT: the enctype's HMAC length, in octets
1081 *
1082 * RFC 8009 Section 5:
1083 *
1084 * decryption function: as follows, where D() is AES decryption in
1085 * CBC-CS3 mode, and h is the size of truncated HMAC.
1086 *
1087 *    (C, H) = ciphertext
1088 *        (Note: H is the last h bits of the ciphertext.)
1089 *    IV = cipher state
1090 *    if H != HMAC(Ki, IV | C)[1..h]
1091 *        stop, report error
1092 *    (N, P) = D(Ke, C, IV)
1093 *
1094 * Return values:
1095 *   %GSS_S_COMPLETE: Decryption successful
1096 *   %GSS_S_BAD_SIG: computed HMAC != received HMAC
1097 *   %GSS_S_FAILURE: Decryption failed
1098 */
1099u32
1100krb5_etm_decrypt(struct krb5_ctx *kctx, u32 offset, u32 len,
1101		 struct xdr_buf *buf, u32 *headskip, u32 *tailskip)
1102{
1103	struct crypto_sync_skcipher *cipher, *aux_cipher;
1104	u8 our_hmac[GSS_KRB5_MAX_CKSUM_LEN];
1105	u8 pkt_hmac[GSS_KRB5_MAX_CKSUM_LEN];
1106	struct xdr_netobj our_hmac_obj;
1107	struct crypto_ahash *ahash;
1108	struct xdr_buf subbuf;
1109	u32 ret = 0;
1110
1111	if (kctx->initiate) {
1112		cipher = kctx->acceptor_enc;
1113		aux_cipher = kctx->acceptor_enc_aux;
1114		ahash = kctx->acceptor_integ;
1115	} else {
1116		cipher = kctx->initiator_enc;
1117		aux_cipher = kctx->initiator_enc_aux;
1118		ahash = kctx->initiator_integ;
1119	}
1120
1121	/* Extract the ciphertext into @subbuf. */
1122	xdr_buf_subsegment(buf, &subbuf, offset + GSS_KRB5_TOK_HDR_LEN,
1123			   (len - offset - GSS_KRB5_TOK_HDR_LEN -
1124			    kctx->gk5e->cksumlength));
1125
1126	our_hmac_obj.data = our_hmac;
1127	our_hmac_obj.len = kctx->gk5e->cksumlength;
1128	ret = krb5_etm_checksum(cipher, ahash, &subbuf, 0, &our_hmac_obj);
1129	if (ret)
1130		goto out_err;
1131	ret = read_bytes_from_xdr_buf(buf, len - kctx->gk5e->cksumlength,
1132				      pkt_hmac, kctx->gk5e->cksumlength);
1133	if (ret)
1134		goto out_err;
1135	if (crypto_memneq(pkt_hmac, our_hmac, kctx->gk5e->cksumlength) != 0) {
1136		ret = GSS_S_BAD_SIG;
1137		goto out_err;
1138	}
1139
1140	ret = krb5_cbc_cts_decrypt(cipher, aux_cipher, 0, &subbuf);
1141	if (ret) {
1142		ret = GSS_S_FAILURE;
1143		goto out_err;
1144	}
1145
1146	*headskip = crypto_sync_skcipher_blocksize(cipher);
1147	*tailskip = kctx->gk5e->cksumlength;
1148	return GSS_S_COMPLETE;
1149
1150out_err:
1151	if (ret != GSS_S_BAD_SIG)
1152		ret = GSS_S_FAILURE;
1153	return ret;
 
1154}