key.c 29.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* RxRPC key management
 *
 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 *
 * RxRPC keys should have a description of describing their purpose:
 *	"afs@CAMBRIDGE.REDHAT.COM>
 */

15 16
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

H
Herbert Xu 已提交
17
#include <crypto/skcipher.h>
18 19 20
#include <linux/module.h>
#include <linux/net.h>
#include <linux/skbuff.h>
21
#include <linux/key-type.h>
22
#include <linux/ctype.h>
23
#include <linux/slab.h>
24 25 26 27 28 29
#include <net/sock.h>
#include <net/af_rxrpc.h>
#include <keys/rxrpc-type.h>
#include <keys/user-type.h>
#include "ar-internal.h"

30
static int rxrpc_vet_description_s(const char *);
D
David Howells 已提交
31 32 33 34
static int rxrpc_preparse(struct key_preparsed_payload *);
static int rxrpc_preparse_s(struct key_preparsed_payload *);
static void rxrpc_free_preparse(struct key_preparsed_payload *);
static void rxrpc_free_preparse_s(struct key_preparsed_payload *);
35 36 37
static void rxrpc_destroy(struct key *);
static void rxrpc_destroy_s(struct key *);
static void rxrpc_describe(const struct key *, struct seq_file *);
38
static long rxrpc_read(const struct key *, char __user *, size_t);
39 40 41 42 43 44 45

/*
 * rxrpc defined keys take an arbitrary string as the description and an
 * arbitrary blob of data as the payload
 */
struct key_type key_type_rxrpc = {
	.name		= "rxrpc",
D
David Howells 已提交
46 47 48
	.preparse	= rxrpc_preparse,
	.free_preparse	= rxrpc_free_preparse,
	.instantiate	= generic_key_instantiate,
49 50
	.destroy	= rxrpc_destroy,
	.describe	= rxrpc_describe,
51
	.read		= rxrpc_read,
52 53 54 55 56 57 58 59 60
};
EXPORT_SYMBOL(key_type_rxrpc);

/*
 * rxrpc server defined keys take "<serviceId>:<securityIndex>" as the
 * description and an 8-byte decryption key as the payload
 */
struct key_type key_type_rxrpc_s = {
	.name		= "rxrpc_s",
61
	.vet_description = rxrpc_vet_description_s,
D
David Howells 已提交
62 63 64
	.preparse	= rxrpc_preparse_s,
	.free_preparse	= rxrpc_free_preparse_s,
	.instantiate	= generic_key_instantiate,
65 66 67 68
	.destroy	= rxrpc_destroy_s,
	.describe	= rxrpc_describe,
};

69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/*
 * Vet the description for an RxRPC server key
 */
static int rxrpc_vet_description_s(const char *desc)
{
	unsigned long num;
	char *p;

	num = simple_strtoul(desc, &p, 10);
	if (*p != ':' || num > 65535)
		return -EINVAL;
	num = simple_strtoul(p + 1, &p, 10);
	if (*p || num < 1 || num > 255)
		return -EINVAL;
	return 0;
}

86 87 88 89
/*
 * parse an RxKAD type XDR format token
 * - the caller guarantees we have at least 4 words
 */
D
David Howells 已提交
90 91 92
static int rxrpc_preparse_xdr_rxkad(struct key_preparsed_payload *prep,
				    size_t datalen,
				    const __be32 *xdr, unsigned int toklen)
93
{
94
	struct rxrpc_key_token *token, **pptoken;
95
	time64_t expiry;
96 97 98 99 100 101 102 103 104 105 106 107 108
	size_t plen;
	u32 tktlen;

	_enter(",{%x,%x,%x,%x},%u",
	       ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
	       toklen);

	if (toklen <= 8 * 4)
		return -EKEYREJECTED;
	tktlen = ntohl(xdr[7]);
	_debug("tktlen: %x", tktlen);
	if (tktlen > AFSTOKEN_RK_TIX_MAX)
		return -EKEYREJECTED;
109
	if (toklen < 8 * 4 + tktlen)
110 111 112
		return -EKEYREJECTED;

	plen = sizeof(*token) + sizeof(*token->kad) + tktlen;
D
David Howells 已提交
113
	prep->quotalen = datalen + plen;
114 115

	plen -= sizeof(*token);
116
	token = kzalloc(sizeof(*token), GFP_KERNEL);
117 118 119
	if (!token)
		return -ENOMEM;

120
	token->kad = kzalloc(plen, GFP_KERNEL);
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
	if (!token->kad) {
		kfree(token);
		return -ENOMEM;
	}

	token->security_index	= RXRPC_SECURITY_RXKAD;
	token->kad->ticket_len	= tktlen;
	token->kad->vice_id	= ntohl(xdr[0]);
	token->kad->kvno	= ntohl(xdr[1]);
	token->kad->start	= ntohl(xdr[4]);
	token->kad->expiry	= ntohl(xdr[5]);
	token->kad->primary_flag = ntohl(xdr[6]);
	memcpy(&token->kad->session_key, &xdr[2], 8);
	memcpy(&token->kad->ticket, &xdr[8], tktlen);

	_debug("SCIX: %u", token->security_index);
	_debug("TLEN: %u", token->kad->ticket_len);
	_debug("EXPY: %x", token->kad->expiry);
	_debug("KVNO: %u", token->kad->kvno);
	_debug("PRIM: %u", token->kad->primary_flag);
	_debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
	       token->kad->session_key[0], token->kad->session_key[1],
	       token->kad->session_key[2], token->kad->session_key[3],
	       token->kad->session_key[4], token->kad->session_key[5],
	       token->kad->session_key[6], token->kad->session_key[7]);
	if (token->kad->ticket_len >= 8)
		_debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
		       token->kad->ticket[0], token->kad->ticket[1],
		       token->kad->ticket[2], token->kad->ticket[3],
		       token->kad->ticket[4], token->kad->ticket[5],
		       token->kad->ticket[6], token->kad->ticket[7]);

	/* count the number of tokens attached */
154
	prep->payload.data[1] = (void *)((unsigned long)prep->payload.data[1] + 1);
155 156

	/* attach the data */
157
	for (pptoken = (struct rxrpc_key_token **)&prep->payload.data[0];
158 159 160 161
	     *pptoken;
	     pptoken = &(*pptoken)->next)
		continue;
	*pptoken = token;
162 163 164
	expiry = rxrpc_u32_to_time64(token->kad->expiry);
	if (expiry < prep->expiry)
		prep->expiry = expiry;
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218

	_leave(" = 0");
	return 0;
}

static void rxrpc_free_krb5_principal(struct krb5_principal *princ)
{
	int loop;

	if (princ->name_parts) {
		for (loop = princ->n_name_parts - 1; loop >= 0; loop--)
			kfree(princ->name_parts[loop]);
		kfree(princ->name_parts);
	}
	kfree(princ->realm);
}

static void rxrpc_free_krb5_tagged(struct krb5_tagged_data *td)
{
	kfree(td->data);
}

/*
 * free up an RxK5 token
 */
static void rxrpc_rxk5_free(struct rxk5_key *rxk5)
{
	int loop;

	rxrpc_free_krb5_principal(&rxk5->client);
	rxrpc_free_krb5_principal(&rxk5->server);
	rxrpc_free_krb5_tagged(&rxk5->session);

	if (rxk5->addresses) {
		for (loop = rxk5->n_addresses - 1; loop >= 0; loop--)
			rxrpc_free_krb5_tagged(&rxk5->addresses[loop]);
		kfree(rxk5->addresses);
	}
	if (rxk5->authdata) {
		for (loop = rxk5->n_authdata - 1; loop >= 0; loop--)
			rxrpc_free_krb5_tagged(&rxk5->authdata[loop]);
		kfree(rxk5->authdata);
	}

	kfree(rxk5->ticket);
	kfree(rxk5->ticket2);
	kfree(rxk5);
}

/*
 * extract a krb5 principal
 */
static int rxrpc_krb5_decode_principal(struct krb5_principal *princ,
				       const __be32 **_xdr,
219
				       unsigned int *_toklen)
220 221
{
	const __be32 *xdr = *_xdr;
222
	unsigned int toklen = *_toklen, n_parts, loop, tmp, paddedlen;
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

	/* there must be at least one name, and at least #names+1 length
	 * words */
	if (toklen <= 12)
		return -EINVAL;

	_enter(",{%x,%x,%x},%u",
	       ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), toklen);

	n_parts = ntohl(*xdr++);
	toklen -= 4;
	if (n_parts <= 0 || n_parts > AFSTOKEN_K5_COMPONENTS_MAX)
		return -EINVAL;
	princ->n_name_parts = n_parts;

	if (toklen <= (n_parts + 1) * 4)
		return -EINVAL;

A
Axel Lin 已提交
241
	princ->name_parts = kcalloc(n_parts, sizeof(char *), GFP_KERNEL);
242 243 244 245 246 247 248 249 250 251
	if (!princ->name_parts)
		return -ENOMEM;

	for (loop = 0; loop < n_parts; loop++) {
		if (toklen < 4)
			return -EINVAL;
		tmp = ntohl(*xdr++);
		toklen -= 4;
		if (tmp <= 0 || tmp > AFSTOKEN_STRING_MAX)
			return -EINVAL;
252 253
		paddedlen = (tmp + 3) & ~3;
		if (paddedlen > toklen)
254 255 256 257 258 259
			return -EINVAL;
		princ->name_parts[loop] = kmalloc(tmp + 1, GFP_KERNEL);
		if (!princ->name_parts[loop])
			return -ENOMEM;
		memcpy(princ->name_parts[loop], xdr, tmp);
		princ->name_parts[loop][tmp] = 0;
260 261
		toklen -= paddedlen;
		xdr += paddedlen >> 2;
262 263 264 265 266 267 268 269
	}

	if (toklen < 4)
		return -EINVAL;
	tmp = ntohl(*xdr++);
	toklen -= 4;
	if (tmp <= 0 || tmp > AFSTOKEN_K5_REALM_MAX)
		return -EINVAL;
270 271
	paddedlen = (tmp + 3) & ~3;
	if (paddedlen > toklen)
272 273 274 275 276 277
		return -EINVAL;
	princ->realm = kmalloc(tmp + 1, GFP_KERNEL);
	if (!princ->realm)
		return -ENOMEM;
	memcpy(princ->realm, xdr, tmp);
	princ->realm[tmp] = 0;
278 279
	toklen -= paddedlen;
	xdr += paddedlen >> 2;
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294

	_debug("%s/...@%s", princ->name_parts[0], princ->realm);

	*_xdr = xdr;
	*_toklen = toklen;
	_leave(" = 0 [toklen=%u]", toklen);
	return 0;
}

/*
 * extract a piece of krb5 tagged data
 */
static int rxrpc_krb5_decode_tagged_data(struct krb5_tagged_data *td,
					 size_t max_data_size,
					 const __be32 **_xdr,
295
					 unsigned int *_toklen)
296 297
{
	const __be32 *xdr = *_xdr;
298
	unsigned int toklen = *_toklen, len, paddedlen;
299 300 301 302 303 304 305 306 307 308 309 310 311

	/* there must be at least one tag and one length word */
	if (toklen <= 8)
		return -EINVAL;

	_enter(",%zu,{%x,%x},%u",
	       max_data_size, ntohl(xdr[0]), ntohl(xdr[1]), toklen);

	td->tag = ntohl(*xdr++);
	len = ntohl(*xdr++);
	toklen -= 8;
	if (len > max_data_size)
		return -EINVAL;
312 313 314
	paddedlen = (len + 3) & ~3;
	if (paddedlen > toklen)
		return -EINVAL;
315 316 317
	td->data_len = len;

	if (len > 0) {
318
		td->data = kmemdup(xdr, len, GFP_KERNEL);
319 320
		if (!td->data)
			return -ENOMEM;
321 322
		toklen -= paddedlen;
		xdr += paddedlen >> 2;
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
	}

	_debug("tag %x len %x", td->tag, td->data_len);

	*_xdr = xdr;
	*_toklen = toklen;
	_leave(" = 0 [toklen=%u]", toklen);
	return 0;
}

/*
 * extract an array of tagged data
 */
static int rxrpc_krb5_decode_tagged_array(struct krb5_tagged_data **_td,
					  u8 *_n_elem,
					  u8 max_n_elem,
					  size_t max_elem_size,
					  const __be32 **_xdr,
341
					  unsigned int *_toklen)
342 343 344
{
	struct krb5_tagged_data *td;
	const __be32 *xdr = *_xdr;
345
	unsigned int toklen = *_toklen, n_elem, loop;
346 347 348 349 350 351 352 353 354 355 356
	int ret;

	/* there must be at least one count */
	if (toklen < 4)
		return -EINVAL;

	_enter(",,%u,%zu,{%x},%u",
	       max_n_elem, max_elem_size, ntohl(xdr[0]), toklen);

	n_elem = ntohl(*xdr++);
	toklen -= 4;
357
	if (n_elem > max_n_elem)
358 359 360 361 362 363 364 365
		return -EINVAL;
	*_n_elem = n_elem;
	if (n_elem > 0) {
		if (toklen <= (n_elem + 1) * 4)
			return -EINVAL;

		_debug("n_elem %d", n_elem);

A
Axel Lin 已提交
366
		td = kcalloc(n_elem, sizeof(struct krb5_tagged_data),
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
			     GFP_KERNEL);
		if (!td)
			return -ENOMEM;
		*_td = td;

		for (loop = 0; loop < n_elem; loop++) {
			ret = rxrpc_krb5_decode_tagged_data(&td[loop],
							    max_elem_size,
							    &xdr, &toklen);
			if (ret < 0)
				return ret;
		}
	}

	*_xdr = xdr;
	*_toklen = toklen;
	_leave(" = 0 [toklen=%u]", toklen);
	return 0;
}

/*
 * extract a krb5 ticket
 */
390
static int rxrpc_krb5_decode_ticket(u8 **_ticket, u16 *_tktlen,
391
				    const __be32 **_xdr, unsigned int *_toklen)
392 393
{
	const __be32 *xdr = *_xdr;
394
	unsigned int toklen = *_toklen, len, paddedlen;
395 396 397 398 399 400 401 402 403 404 405

	/* there must be at least one length word */
	if (toklen <= 4)
		return -EINVAL;

	_enter(",{%x},%u", ntohl(xdr[0]), toklen);

	len = ntohl(*xdr++);
	toklen -= 4;
	if (len > AFSTOKEN_K5_TIX_MAX)
		return -EINVAL;
406 407 408
	paddedlen = (len + 3) & ~3;
	if (paddedlen > toklen)
		return -EINVAL;
409 410 411 412 413
	*_tktlen = len;

	_debug("ticket len %u", len);

	if (len > 0) {
414
		*_ticket = kmemdup(xdr, len, GFP_KERNEL);
415 416
		if (!*_ticket)
			return -ENOMEM;
417 418
		toklen -= paddedlen;
		xdr += paddedlen >> 2;
419 420 421 422 423 424 425 426 427 428 429 430
	}

	*_xdr = xdr;
	*_toklen = toklen;
	_leave(" = 0 [toklen=%u]", toklen);
	return 0;
}

/*
 * parse an RxK5 type XDR format token
 * - the caller guarantees we have at least 4 words
 */
D
David Howells 已提交
431 432 433
static int rxrpc_preparse_xdr_rxk5(struct key_preparsed_payload *prep,
				   size_t datalen,
				   const __be32 *xdr, unsigned int toklen)
434 435 436 437
{
	struct rxrpc_key_token *token, **pptoken;
	struct rxk5_key *rxk5;
	const __be32 *end_xdr = xdr + (toklen >> 2);
438
	time64_t expiry;
439 440 441 442 443 444 445 446
	int ret;

	_enter(",{%x,%x,%x,%x},%u",
	       ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
	       toklen);

	/* reserve some payload space for this subkey - the length of the token
	 * is a reasonable approximation */
D
David Howells 已提交
447
	prep->quotalen = datalen + toklen;
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532

	token = kzalloc(sizeof(*token), GFP_KERNEL);
	if (!token)
		return -ENOMEM;

	rxk5 = kzalloc(sizeof(*rxk5), GFP_KERNEL);
	if (!rxk5) {
		kfree(token);
		return -ENOMEM;
	}

	token->security_index = RXRPC_SECURITY_RXK5;
	token->k5 = rxk5;

	/* extract the principals */
	ret = rxrpc_krb5_decode_principal(&rxk5->client, &xdr, &toklen);
	if (ret < 0)
		goto error;
	ret = rxrpc_krb5_decode_principal(&rxk5->server, &xdr, &toklen);
	if (ret < 0)
		goto error;

	/* extract the session key and the encoding type (the tag field ->
	 * ENCTYPE_xxx) */
	ret = rxrpc_krb5_decode_tagged_data(&rxk5->session, AFSTOKEN_DATA_MAX,
					    &xdr, &toklen);
	if (ret < 0)
		goto error;

	if (toklen < 4 * 8 + 2 * 4)
		goto inval;
	rxk5->authtime	= be64_to_cpup((const __be64 *) xdr);
	xdr += 2;
	rxk5->starttime	= be64_to_cpup((const __be64 *) xdr);
	xdr += 2;
	rxk5->endtime	= be64_to_cpup((const __be64 *) xdr);
	xdr += 2;
	rxk5->renew_till = be64_to_cpup((const __be64 *) xdr);
	xdr += 2;
	rxk5->is_skey = ntohl(*xdr++);
	rxk5->flags = ntohl(*xdr++);
	toklen -= 4 * 8 + 2 * 4;

	_debug("times: a=%llx s=%llx e=%llx rt=%llx",
	       rxk5->authtime, rxk5->starttime, rxk5->endtime,
	       rxk5->renew_till);
	_debug("is_skey=%x flags=%x", rxk5->is_skey, rxk5->flags);

	/* extract the permitted client addresses */
	ret = rxrpc_krb5_decode_tagged_array(&rxk5->addresses,
					     &rxk5->n_addresses,
					     AFSTOKEN_K5_ADDRESSES_MAX,
					     AFSTOKEN_DATA_MAX,
					     &xdr, &toklen);
	if (ret < 0)
		goto error;

	ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);

	/* extract the tickets */
	ret = rxrpc_krb5_decode_ticket(&rxk5->ticket, &rxk5->ticket_len,
				       &xdr, &toklen);
	if (ret < 0)
		goto error;
	ret = rxrpc_krb5_decode_ticket(&rxk5->ticket2, &rxk5->ticket2_len,
				       &xdr, &toklen);
	if (ret < 0)
		goto error;

	ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);

	/* extract the typed auth data */
	ret = rxrpc_krb5_decode_tagged_array(&rxk5->authdata,
					     &rxk5->n_authdata,
					     AFSTOKEN_K5_AUTHDATA_MAX,
					     AFSTOKEN_BDATALN_MAX,
					     &xdr, &toklen);
	if (ret < 0)
		goto error;

	ASSERTCMP((end_xdr - xdr) << 2, ==, toklen);

	if (toklen != 0)
		goto inval;

D
David Howells 已提交
533
	/* attach the payload */
534
	for (pptoken = (struct rxrpc_key_token **)&prep->payload.data[0];
535 536 537 538
	     *pptoken;
	     pptoken = &(*pptoken)->next)
		continue;
	*pptoken = token;
539
	expiry = rxrpc_u32_to_time64(token->k5->endtime);
540 541
	if (expiry < prep->expiry)
		prep->expiry = expiry;
542 543 544

	_leave(" = 0");
	return 0;
545 546 547 548 549 550 551 552

inval:
	ret = -EINVAL;
error:
	rxrpc_rxk5_free(rxk5);
	kfree(token);
	_leave(" = %d", ret);
	return ret;
553 554 555 556 557 558
}

/*
 * attempt to parse the data as the XDR format
 * - the caller guarantees we have more than 7 words
 */
D
David Howells 已提交
559
static int rxrpc_preparse_xdr(struct key_preparsed_payload *prep)
560
{
D
David Howells 已提交
561
	const __be32 *xdr = prep->data, *token;
562
	const char *cp;
563
	unsigned int len, paddedlen, loop, ntoken, toklen, sec_ix;
D
David Howells 已提交
564
	size_t datalen = prep->datalen;
565 566 567 568
	int ret;

	_enter(",{%x,%x,%x,%x},%zu",
	       ntohl(xdr[0]), ntohl(xdr[1]), ntohl(xdr[2]), ntohl(xdr[3]),
D
David Howells 已提交
569
	       prep->datalen);
570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588

	if (datalen > AFSTOKEN_LENGTH_MAX)
		goto not_xdr;

	/* XDR is an array of __be32's */
	if (datalen & 3)
		goto not_xdr;

	/* the flags should be 0 (the setpag bit must be handled by
	 * userspace) */
	if (ntohl(*xdr++) != 0)
		goto not_xdr;
	datalen -= 4;

	/* check the cell name */
	len = ntohl(*xdr++);
	if (len < 1 || len > AFSTOKEN_CELL_MAX)
		goto not_xdr;
	datalen -= 4;
589 590
	paddedlen = (len + 3) & ~3;
	if (paddedlen > datalen)
591 592 593 594 595 596
		goto not_xdr;

	cp = (const char *) xdr;
	for (loop = 0; loop < len; loop++)
		if (!isprint(cp[loop]))
			goto not_xdr;
597 598 599
	for (; loop < paddedlen; loop++)
		if (cp[loop])
			goto not_xdr;
600
	_debug("cellname: [%u/%u] '%*.*s'",
601 602 603
	       len, paddedlen, len, len, (const char *) xdr);
	datalen -= paddedlen;
	xdr += paddedlen >> 2;
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623

	/* get the token count */
	if (datalen < 12)
		goto not_xdr;
	ntoken = ntohl(*xdr++);
	datalen -= 4;
	_debug("ntoken: %x", ntoken);
	if (ntoken < 1 || ntoken > AFSTOKEN_MAX)
		goto not_xdr;

	/* check each token wrapper */
	token = xdr;
	loop = ntoken;
	do {
		if (datalen < 8)
			goto not_xdr;
		toklen = ntohl(*xdr++);
		sec_ix = ntohl(*xdr);
		datalen -= 4;
		_debug("token: [%x/%zx] %x", toklen, datalen, sec_ix);
624 625
		paddedlen = (toklen + 3) & ~3;
		if (toklen < 20 || toklen > datalen || paddedlen > datalen)
626
			goto not_xdr;
627 628
		datalen -= paddedlen;
		xdr += paddedlen >> 2;
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645

	} while (--loop > 0);

	_debug("remainder: %zu", datalen);
	if (datalen != 0)
		goto not_xdr;

	/* okay: we're going to assume it's valid XDR format
	 * - we ignore the cellname, relying on the key to be correctly named
	 */
	do {
		xdr = token;
		toklen = ntohl(*xdr++);
		token = xdr + ((toklen + 3) >> 2);
		sec_ix = ntohl(*xdr++);
		toklen -= 4;

646 647
		_debug("TOKEN type=%u [%p-%p]", sec_ix, xdr, token);

648 649
		switch (sec_ix) {
		case RXRPC_SECURITY_RXKAD:
D
David Howells 已提交
650
			ret = rxrpc_preparse_xdr_rxkad(prep, datalen, xdr, toklen);
651 652 653 654
			if (ret != 0)
				goto error;
			break;

655
		case RXRPC_SECURITY_RXK5:
D
David Howells 已提交
656
			ret = rxrpc_preparse_xdr_rxk5(prep, datalen, xdr, toklen);
657 658 659 660
			if (ret != 0)
				goto error;
			break;

661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
		default:
			ret = -EPROTONOSUPPORT;
			goto error;
		}

	} while (--ntoken > 0);

	_leave(" = 0");
	return 0;

not_xdr:
	_leave(" = -EPROTO");
	return -EPROTO;
error:
	_leave(" = %d", ret);
	return ret;
}

679
/*
D
David Howells 已提交
680 681 682
 * Preparse an rxrpc defined key.
 *
 * Data should be of the form:
683 684 685 686 687 688 689 690 691 692 693
 *	OFFSET	LEN	CONTENT
 *	0	4	key interface version number
 *	4	2	security index (type)
 *	6	2	ticket length
 *	8	4	key expiry time (time_t)
 *	12	4	kvno
 *	16	8	session key
 *	24	[len]	ticket
 *
 * if no data is provided, then a no-security key is made
 */
D
David Howells 已提交
694
static int rxrpc_preparse(struct key_preparsed_payload *prep)
695
{
696 697
	const struct rxrpc_key_data_v1 *v1;
	struct rxrpc_key_token *token, **pp;
698
	time64_t expiry;
699 700 701 702
	size_t plen;
	u32 kver;
	int ret;

D
David Howells 已提交
703
	_enter("%zu", prep->datalen);
704 705

	/* handle a no-security key */
706
	if (!prep->data && prep->datalen == 0)
707 708
		return 0;

709
	/* determine if the XDR payload format is being used */
710
	if (prep->datalen > 7 * 4) {
D
David Howells 已提交
711
		ret = rxrpc_preparse_xdr(prep);
712 713 714 715
		if (ret != -EPROTO)
			return ret;
	}

716 717
	/* get the key interface version number */
	ret = -EINVAL;
718
	if (prep->datalen <= 4 || !prep->data)
719
		goto error;
720 721 722
	memcpy(&kver, prep->data, sizeof(kver));
	prep->data += sizeof(kver);
	prep->datalen -= sizeof(kver);
723 724 725 726 727 728 729 730 731

	_debug("KEY I/F VERSION: %u", kver);

	ret = -EKEYREJECTED;
	if (kver != 1)
		goto error;

	/* deal with a version 1 key */
	ret = -EINVAL;
732
	if (prep->datalen < sizeof(*v1))
733 734
		goto error;

735 736
	v1 = prep->data;
	if (prep->datalen != sizeof(*v1) + v1->ticket_length)
737 738
		goto error;

739 740 741 742
	_debug("SCIX: %u", v1->security_index);
	_debug("TLEN: %u", v1->ticket_length);
	_debug("EXPY: %x", v1->expiry);
	_debug("KVNO: %u", v1->kvno);
743
	_debug("SKEY: %02x%02x%02x%02x%02x%02x%02x%02x",
744 745 746 747 748
	       v1->session_key[0], v1->session_key[1],
	       v1->session_key[2], v1->session_key[3],
	       v1->session_key[4], v1->session_key[5],
	       v1->session_key[6], v1->session_key[7]);
	if (v1->ticket_length >= 8)
749
		_debug("TCKT: %02x%02x%02x%02x%02x%02x%02x%02x",
750 751 752 753
		       v1->ticket[0], v1->ticket[1],
		       v1->ticket[2], v1->ticket[3],
		       v1->ticket[4], v1->ticket[5],
		       v1->ticket[6], v1->ticket[7]);
754 755

	ret = -EPROTONOSUPPORT;
756
	if (v1->security_index != RXRPC_SECURITY_RXKAD)
757 758
		goto error;

759
	plen = sizeof(*token->kad) + v1->ticket_length;
D
David Howells 已提交
760
	prep->quotalen = plen + sizeof(*token);
761 762

	ret = -ENOMEM;
763
	token = kzalloc(sizeof(*token), GFP_KERNEL);
764
	if (!token)
765
		goto error;
766
	token->kad = kzalloc(plen, GFP_KERNEL);
767 768 769 770 771 772 773 774 775
	if (!token->kad)
		goto error_free;

	token->security_index		= RXRPC_SECURITY_RXKAD;
	token->kad->ticket_len		= v1->ticket_length;
	token->kad->expiry		= v1->expiry;
	token->kad->kvno		= v1->kvno;
	memcpy(&token->kad->session_key, &v1->session_key, 8);
	memcpy(&token->kad->ticket, v1->ticket, v1->ticket_length);
776

D
David Howells 已提交
777
	/* count the number of tokens attached */
778
	prep->payload.data[1] = (void *)((unsigned long)prep->payload.data[1] + 1);
779

D
David Howells 已提交
780
	/* attach the data */
781
	pp = (struct rxrpc_key_token **)&prep->payload.data[0];
782 783 784
	while (*pp)
		pp = &(*pp)->next;
	*pp = token;
785 786 787
	expiry = rxrpc_u32_to_time64(token->kad->expiry);
	if (expiry < prep->expiry)
		prep->expiry = expiry;
788
	token = NULL;
789 790
	ret = 0;

791 792
error_free:
	kfree(token);
793 794 795 796 797
error:
	return ret;
}

/*
D
David Howells 已提交
798
 * Free token list.
799
 */
D
David Howells 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
static void rxrpc_free_token_list(struct rxrpc_key_token *token)
{
	struct rxrpc_key_token *next;

	for (; token; token = next) {
		next = token->next;
		switch (token->security_index) {
		case RXRPC_SECURITY_RXKAD:
			kfree(token->kad);
			break;
		case RXRPC_SECURITY_RXK5:
			if (token->k5)
				rxrpc_rxk5_free(token->k5);
			break;
		default:
815
			pr_err("Unknown token type %x on rxrpc key\n",
D
David Howells 已提交
816 817 818 819 820 821 822 823 824 825 826 827 828
			       token->security_index);
			BUG();
		}

		kfree(token);
	}
}

/*
 * Clean up preparse data.
 */
static void rxrpc_free_preparse(struct key_preparsed_payload *prep)
{
829
	rxrpc_free_token_list(prep->payload.data[0]);
D
David Howells 已提交
830 831 832 833 834 835 836 837
}

/*
 * Preparse a server secret key.
 *
 * The data should be the 8-byte secret key.
 */
static int rxrpc_preparse_s(struct key_preparsed_payload *prep)
838
{
H
Herbert Xu 已提交
839
	struct crypto_skcipher *ci;
840

D
David Howells 已提交
841
	_enter("%zu", prep->datalen);
842

843
	if (prep->datalen != 8)
844 845
		return -EINVAL;

846
	memcpy(&prep->payload.data[2], prep->data, 8);
847

H
Herbert Xu 已提交
848
	ci = crypto_alloc_skcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
849 850 851 852 853
	if (IS_ERR(ci)) {
		_leave(" = %ld", PTR_ERR(ci));
		return PTR_ERR(ci);
	}

H
Herbert Xu 已提交
854
	if (crypto_skcipher_setkey(ci, prep->data, 8) < 0)
855 856
		BUG();

857
	prep->payload.data[0] = ci;
858 859 860 861
	_leave(" = 0");
	return 0;
}

D
David Howells 已提交
862 863 864 865 866
/*
 * Clean up preparse data.
 */
static void rxrpc_free_preparse_s(struct key_preparsed_payload *prep)
{
867
	if (prep->payload.data[0])
H
Herbert Xu 已提交
868
		crypto_free_skcipher(prep->payload.data[0]);
D
David Howells 已提交
869 870
}

871 872 873 874 875
/*
 * dispose of the data dangling from the corpse of a rxrpc key
 */
static void rxrpc_destroy(struct key *key)
{
876
	rxrpc_free_token_list(key->payload.data[0]);
877 878 879 880 881 882 883
}

/*
 * dispose of the data dangling from the corpse of a rxrpc key
 */
static void rxrpc_destroy_s(struct key *key)
{
884
	if (key->payload.data[0]) {
H
Herbert Xu 已提交
885
		crypto_free_skcipher(key->payload.data[0]);
886
		key->payload.data[0] = NULL;
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
	}
}

/*
 * describe the rxrpc key
 */
static void rxrpc_describe(const struct key *key, struct seq_file *m)
{
	seq_puts(m, key->description);
}

/*
 * grab the security key for a socket
 */
int rxrpc_request_key(struct rxrpc_sock *rx, char __user *optval, int optlen)
{
	struct key *key;
	char *description;

	_enter("");

	if (optlen <= 0 || optlen > PAGE_SIZE - 1)
		return -EINVAL;

911 912 913
	description = memdup_user_nul(optval, optlen);
	if (IS_ERR(description))
		return PTR_ERR(description);
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941

	key = request_key(&key_type_rxrpc, description, NULL);
	if (IS_ERR(key)) {
		kfree(description);
		_leave(" = %ld", PTR_ERR(key));
		return PTR_ERR(key);
	}

	rx->key = key;
	kfree(description);
	_leave(" = 0 [key %x]", key->serial);
	return 0;
}

/*
 * grab the security keyring for a server socket
 */
int rxrpc_server_keyring(struct rxrpc_sock *rx, char __user *optval,
			 int optlen)
{
	struct key *key;
	char *description;

	_enter("");

	if (optlen <= 0 || optlen > PAGE_SIZE - 1)
		return -EINVAL;

942 943 944
	description = memdup_user_nul(optval, optlen);
	if (IS_ERR(description))
		return PTR_ERR(description);
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963

	key = request_key(&key_type_keyring, description, NULL);
	if (IS_ERR(key)) {
		kfree(description);
		_leave(" = %ld", PTR_ERR(key));
		return PTR_ERR(key);
	}

	rx->securities = key;
	kfree(description);
	_leave(" = 0 [key %x]", key->serial);
	return 0;
}

/*
 * generate a server data key
 */
int rxrpc_get_server_data_key(struct rxrpc_connection *conn,
			      const void *session_key,
964
			      time64_t expiry,
965 966
			      u32 kvno)
{
D
David Howells 已提交
967
	const struct cred *cred = current_cred();
968 969 970 971 972
	struct key *key;
	int ret;

	struct {
		u32 kver;
973
		struct rxrpc_key_data_v1 v1;
974 975 976 977
	} data;

	_enter("");

978 979
	key = key_alloc(&key_type_rxrpc, "x",
			GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred, 0,
980
			KEY_ALLOC_NOT_IN_QUOTA, NULL);
981 982 983 984 985 986 987 988
	if (IS_ERR(key)) {
		_leave(" = -ENOMEM [alloc %ld]", PTR_ERR(key));
		return -ENOMEM;
	}

	_debug("key %d", key_serial(key));

	data.kver = 1;
989 990
	data.v1.security_index = RXRPC_SECURITY_RXKAD;
	data.v1.ticket_length = 0;
991
	data.v1.expiry = rxrpc_time64_to_u32(expiry);
992
	data.v1.kvno = 0;
993

994
	memcpy(&data.v1.session_key, session_key, sizeof(data.v1.session_key));
995 996 997 998 999

	ret = key_instantiate_and_link(key, &data, sizeof(data), NULL, NULL);
	if (ret < 0)
		goto error;

1000
	conn->params.key = key;
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
	_leave(" = 0 [%d]", key_serial(key));
	return 0;

error:
	key_revoke(key);
	key_put(key);
	_leave(" = -ENOMEM [ins %d]", ret);
	return -ENOMEM;
}
EXPORT_SYMBOL(rxrpc_get_server_data_key);
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020

/**
 * rxrpc_get_null_key - Generate a null RxRPC key
 * @keyname: The name to give the key.
 *
 * Generate a null RxRPC key that can be used to indicate anonymous security is
 * required for a particular domain.
 */
struct key *rxrpc_get_null_key(const char *keyname)
{
D
David Howells 已提交
1021
	const struct cred *cred = current_cred();
1022 1023 1024
	struct key *key;
	int ret;

1025 1026
	key = key_alloc(&key_type_rxrpc, keyname,
			GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
1027
			KEY_POS_SEARCH, KEY_ALLOC_NOT_IN_QUOTA, NULL);
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
	if (IS_ERR(key))
		return key;

	ret = key_instantiate_and_link(key, NULL, 0, NULL, NULL);
	if (ret < 0) {
		key_revoke(key);
		key_put(key);
		return ERR_PTR(ret);
	}

	return key;
}
EXPORT_SYMBOL(rxrpc_get_null_key);
1041 1042 1043 1044 1045 1046 1047 1048

/*
 * read the contents of an rxrpc key
 * - this returns the result in XDR form
 */
static long rxrpc_read(const struct key *key,
		       char __user *buffer, size_t buflen)
{
1049 1050 1051 1052 1053 1054 1055
	const struct rxrpc_key_token *token;
	const struct krb5_principal *princ;
	size_t size;
	__be32 __user *xdr, *oldxdr;
	u32 cnlen, toksize, ntoks, tok, zero;
	u16 toksizes[AFSTOKEN_MAX];
	int loop;
1056 1057 1058 1059 1060 1061 1062 1063

	_enter("");

	/* we don't know what form we should return non-AFS keys in */
	if (memcmp(key->description, "afs@", 4) != 0)
		return -EOPNOTSUPP;
	cnlen = strlen(key->description + 4);

1064 1065
#define RND(X) (((X) + 3) & ~3)

1066 1067 1068
	/* AFS keys we return in XDR form, so we need to work out the size of
	 * the XDR */
	size = 2 * 4;	/* flags, cellname len */
1069
	size += RND(cnlen);	/* cellname */
1070 1071 1072
	size += 1 * 4;	/* token count */

	ntoks = 0;
1073
	for (token = key->payload.data[0]; token; token = token->next) {
1074 1075
		toksize = 4;	/* sec index */

1076 1077
		switch (token->security_index) {
		case RXRPC_SECURITY_RXKAD:
1078
			toksize += 9 * 4;	/* viceid, kvno, key*2 + len, begin,
1079 1080
						 * end, primary, tktlen */
			toksize += RND(token->kad->ticket_len);
1081 1082
			break;

1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
		case RXRPC_SECURITY_RXK5:
			princ = &token->k5->client;
			toksize += 4 + princ->n_name_parts * 4;
			for (loop = 0; loop < princ->n_name_parts; loop++)
				toksize += RND(strlen(princ->name_parts[loop]));
			toksize += 4 + RND(strlen(princ->realm));

			princ = &token->k5->server;
			toksize += 4 + princ->n_name_parts * 4;
			for (loop = 0; loop < princ->n_name_parts; loop++)
				toksize += RND(strlen(princ->name_parts[loop]));
			toksize += 4 + RND(strlen(princ->realm));

			toksize += 8 + RND(token->k5->session.data_len);

			toksize += 4 * 8 + 2 * 4;

			toksize += 4 + token->k5->n_addresses * 8;
			for (loop = 0; loop < token->k5->n_addresses; loop++)
				toksize += RND(token->k5->addresses[loop].data_len);

			toksize += 4 + RND(token->k5->ticket_len);
			toksize += 4 + RND(token->k5->ticket2_len);

			toksize += 4 + token->k5->n_authdata * 8;
			for (loop = 0; loop < token->k5->n_authdata; loop++)
				toksize += RND(token->k5->authdata[loop].data_len);
1110
			break;
1111 1112 1113 1114

		default: /* we have a ticket we can't encode */
			BUG();
			continue;
1115
		}
1116 1117 1118 1119 1120 1121

		_debug("token[%u]: toksize=%u", ntoks, toksize);
		ASSERTCMP(toksize, <=, AFSTOKEN_LENGTH_MAX);

		toksizes[ntoks++] = toksize;
		size += toksize + 4; /* each token has a length word */
1122 1123
	}

1124 1125
#undef RND

1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
	if (!buffer || buflen < size)
		return size;

	xdr = (__be32 __user *) buffer;
	zero = 0;
#define ENCODE(x)				\
	do {					\
		__be32 y = htonl(x);		\
		if (put_user(y, xdr++) < 0)	\
			goto fault;		\
	} while(0)
1137 1138 1139 1140 1141 1142 1143
#define ENCODE_DATA(l, s)						\
	do {								\
		u32 _l = (l);						\
		ENCODE(l);						\
		if (copy_to_user(xdr, (s), _l) != 0)			\
			goto fault;					\
		if (_l & 3 &&						\
1144
		    copy_to_user((u8 __user *)xdr + _l, &zero, 4 - (_l & 3)) != 0) \
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
			goto fault;					\
		xdr += (_l + 3) >> 2;					\
	} while(0)
#define ENCODE64(x)					\
	do {						\
		__be64 y = cpu_to_be64(x);		\
		if (copy_to_user(xdr, &y, 8) != 0)	\
			goto fault;			\
		xdr += 8 >> 2;				\
	} while(0)
#define ENCODE_STR(s)				\
	do {					\
		const char *_s = (s);		\
		ENCODE_DATA(strlen(_s), _s);	\
	} while(0)
1160

1161 1162 1163
	ENCODE(0);					/* flags */
	ENCODE_DATA(cnlen, key->description + 4);	/* cellname */
	ENCODE(ntoks);
1164

1165
	tok = 0;
1166
	for (token = key->payload.data[0]; token; token = token->next) {
1167 1168 1169 1170
		toksize = toksizes[tok++];
		ENCODE(toksize);
		oldxdr = xdr;
		ENCODE(token->security_index);
1171 1172 1173 1174 1175

		switch (token->security_index) {
		case RXRPC_SECURITY_RXKAD:
			ENCODE(token->kad->vice_id);
			ENCODE(token->kad->kvno);
1176
			ENCODE_DATA(8, token->kad->session_key);
1177 1178 1179
			ENCODE(token->kad->start);
			ENCODE(token->kad->expiry);
			ENCODE(token->kad->primary_flag);
1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
			ENCODE_DATA(token->kad->ticket_len, token->kad->ticket);
			break;

		case RXRPC_SECURITY_RXK5:
			princ = &token->k5->client;
			ENCODE(princ->n_name_parts);
			for (loop = 0; loop < princ->n_name_parts; loop++)
				ENCODE_STR(princ->name_parts[loop]);
			ENCODE_STR(princ->realm);

			princ = &token->k5->server;
			ENCODE(princ->n_name_parts);
			for (loop = 0; loop < princ->n_name_parts; loop++)
				ENCODE_STR(princ->name_parts[loop]);
			ENCODE_STR(princ->realm);

			ENCODE(token->k5->session.tag);
			ENCODE_DATA(token->k5->session.data_len,
				    token->k5->session.data);

			ENCODE64(token->k5->authtime);
			ENCODE64(token->k5->starttime);
			ENCODE64(token->k5->endtime);
			ENCODE64(token->k5->renew_till);
			ENCODE(token->k5->is_skey);
			ENCODE(token->k5->flags);

			ENCODE(token->k5->n_addresses);
			for (loop = 0; loop < token->k5->n_addresses; loop++) {
				ENCODE(token->k5->addresses[loop].tag);
				ENCODE_DATA(token->k5->addresses[loop].data_len,
					    token->k5->addresses[loop].data);
			}

			ENCODE_DATA(token->k5->ticket_len, token->k5->ticket);
			ENCODE_DATA(token->k5->ticket2_len, token->k5->ticket2);

			ENCODE(token->k5->n_authdata);
			for (loop = 0; loop < token->k5->n_authdata; loop++) {
				ENCODE(token->k5->authdata[loop].tag);
				ENCODE_DATA(token->k5->authdata[loop].data_len,
					    token->k5->authdata[loop].data);
			}
1223 1224 1225
			break;

		default:
1226
			BUG();
1227 1228
			break;
		}
1229 1230 1231

		ASSERTCMP((unsigned long)xdr - (unsigned long)oldxdr, ==,
			  toksize);
1232 1233
	}

1234 1235 1236
#undef ENCODE_STR
#undef ENCODE_DATA
#undef ENCODE64
1237 1238
#undef ENCODE

1239
	ASSERTCMP(tok, ==, ntoks);
1240 1241 1242 1243 1244 1245 1246 1247
	ASSERTCMP((char __user *) xdr - buffer, ==, size);
	_leave(" = %zu", size);
	return size;

fault:
	_leave(" = -EFAULT");
	return -EFAULT;
}