auth_x.c 19.6 KB
Newer Older
1

2
#include <linux/ceph/ceph_debug.h>
3 4 5 6

#include <linux/err.h>
#include <linux/module.h>
#include <linux/random.h>
7
#include <linux/slab.h>
8

9 10
#include <linux/ceph/decode.h>
#include <linux/ceph/auth.h>
11
#include <linux/ceph/libceph.h>
Y
Yan, Zheng 已提交
12
#include <linux/ceph/messenger.h>
13 14

#include "crypto.h"
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
#include "auth_x.h"
#include "auth_x_protocol.h"

static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);

static int ceph_x_is_authenticated(struct ceph_auth_client *ac)
{
	struct ceph_x_info *xi = ac->private;
	int need;

	ceph_x_validate_tickets(ac, &need);
	dout("ceph_x_is_authenticated want=%d need=%d have=%d\n",
	     ac->want_keys, need, xi->have_keys);
	return (ac->want_keys & xi->have_keys) == ac->want_keys;
}

31 32 33 34 35 36 37 38 39 40 41
static int ceph_x_should_authenticate(struct ceph_auth_client *ac)
{
	struct ceph_x_info *xi = ac->private;
	int need;

	ceph_x_validate_tickets(ac, &need);
	dout("ceph_x_should_authenticate want=%d need=%d have=%d\n",
	     ac->want_keys, need, xi->have_keys);
	return need != 0;
}

42 43 44 45 46
static int ceph_x_encrypt_offset(void)
{
	return sizeof(u32) + sizeof(struct ceph_x_encrypt_header);
}

47 48
static int ceph_x_encrypt_buflen(int ilen)
{
49
	return ceph_x_encrypt_offset() + ilen + 16;
50 51
}

52 53
static int ceph_x_encrypt(struct ceph_crypto_key *secret, void *buf,
			  int buf_len, int plaintext_len)
54
{
55 56
	struct ceph_x_encrypt_header *hdr = buf + sizeof(u32);
	int ciphertext_len;
57 58
	int ret;

59 60 61 62 63 64
	hdr->struct_v = 1;
	hdr->magic = cpu_to_le64(CEPHX_ENC_MAGIC);

	ret = ceph_crypt(secret, true, buf + sizeof(u32), buf_len - sizeof(u32),
			 plaintext_len + sizeof(struct ceph_x_encrypt_header),
			 &ciphertext_len);
65 66
	if (ret)
		return ret;
67 68 69

	ceph_encode_32(&buf, ciphertext_len);
	return sizeof(u32) + ciphertext_len;
70 71
}

72
static int ceph_x_decrypt(struct ceph_crypto_key *secret, void **p, void *end)
73
{
74 75 76
	struct ceph_x_encrypt_header *hdr = *p + sizeof(u32);
	int ciphertext_len, plaintext_len;
	int ret;
77

78 79
	ceph_decode_32_safe(p, end, ciphertext_len, e_inval);
	ceph_decode_need(p, end, ciphertext_len, e_inval);
80

81 82
	ret = ceph_crypt(secret, false, *p, end - *p, ciphertext_len,
			 &plaintext_len);
83 84
	if (ret)
		return ret;
85 86

	if (hdr->struct_v != 1 || le64_to_cpu(hdr->magic) != CEPHX_ENC_MAGIC)
87
		return -EPERM;
88 89 90 91 92 93

	*p += ciphertext_len;
	return plaintext_len - sizeof(struct ceph_x_encrypt_header);

e_inval:
	return -EINVAL;
94 95 96 97 98
}

/*
 * get existing (or insert new) ticket handler
 */
Y
Yehuda Sadeh 已提交
99 100
static struct ceph_x_ticket_handler *
get_ticket_handler(struct ceph_auth_client *ac, int service)
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
{
	struct ceph_x_ticket_handler *th;
	struct ceph_x_info *xi = ac->private;
	struct rb_node *parent = NULL, **p = &xi->ticket_handlers.rb_node;

	while (*p) {
		parent = *p;
		th = rb_entry(parent, struct ceph_x_ticket_handler, node);
		if (service < th->service)
			p = &(*p)->rb_left;
		else if (service > th->service)
			p = &(*p)->rb_right;
		else
			return th;
	}

	/* add it */
	th = kzalloc(sizeof(*th), GFP_NOFS);
	if (!th)
		return ERR_PTR(-ENOMEM);
	th->service = service;
	rb_link_node(&th->node, parent, p);
	rb_insert_color(&th->node, &xi->ticket_handlers);
	return th;
}

static void remove_ticket_handler(struct ceph_auth_client *ac,
				  struct ceph_x_ticket_handler *th)
{
	struct ceph_x_info *xi = ac->private;

	dout("remove_ticket_handler %p %d\n", th, th->service);
	rb_erase(&th->node, &xi->ticket_handlers);
	ceph_crypto_key_destroy(&th->session_key);
	if (th->ticket_blob)
		ceph_buffer_put(th->ticket_blob);
	kfree(th);
}

140 141
static int process_one_ticket(struct ceph_auth_client *ac,
			      struct ceph_crypto_key *secret,
142
			      void **p, void *end)
143 144 145 146 147 148 149 150 151 152
{
	struct ceph_x_info *xi = ac->private;
	int type;
	u8 tkt_struct_v, blob_struct_v;
	struct ceph_x_ticket_handler *th;
	void *dp, *dend;
	int dlen;
	char is_enc;
	struct timespec validity;
	void *tp, *tpend;
153
	void **ptp;
154
	struct ceph_crypto_key new_session_key = { 0 };
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
	struct ceph_buffer *new_ticket_blob;
	unsigned long new_expires, new_renew_after;
	u64 new_secret_id;
	int ret;

	ceph_decode_need(p, end, sizeof(u32) + 1, bad);

	type = ceph_decode_32(p);
	dout(" ticket type %d %s\n", type, ceph_entity_type_name(type));

	tkt_struct_v = ceph_decode_8(p);
	if (tkt_struct_v != 1)
		goto bad;

	th = get_ticket_handler(ac, type);
	if (IS_ERR(th)) {
		ret = PTR_ERR(th);
		goto out;
	}

	/* blob for me */
176 177 178
	dp = *p + ceph_x_encrypt_offset();
	ret = ceph_x_decrypt(secret, p, end);
	if (ret < 0)
179
		goto out;
180 181
	dout(" decrypted %d bytes\n", ret);
	dend = dp + ret;
182 183 184 185 186 187 188 189 190

	tkt_struct_v = ceph_decode_8(&dp);
	if (tkt_struct_v != 1)
		goto bad;

	ret = ceph_crypto_key_decode(&new_session_key, &dp, dend);
	if (ret)
		goto out;

191 192
	ceph_decode_timespec(&validity, dp);
	dp += sizeof(struct ceph_timespec);
193 194 195 196 197 198 199 200 201
	new_expires = get_seconds() + validity.tv_sec;
	new_renew_after = new_expires - (validity.tv_sec / 4);
	dout(" expires=%lu renew_after=%lu\n", new_expires,
	     new_renew_after);

	/* ticket blob for service */
	ceph_decode_8_safe(p, end, is_enc, bad);
	if (is_enc) {
		/* encrypted */
202 203 204
		tp = *p + ceph_x_encrypt_offset();
		ret = ceph_x_decrypt(&th->session_key, p, end);
		if (ret < 0)
205
			goto out;
206
		dout(" encrypted ticket, decrypted %d bytes\n", ret);
207
		ptp = &tp;
208
		tpend = tp + ret;
209 210
	} else {
		/* unencrypted */
211 212
		ptp = p;
		tpend = end;
213
	}
214
	ceph_decode_32_safe(ptp, tpend, dlen, bad);
215
	dout(" ticket blob is %d bytes\n", dlen);
216 217
	ceph_decode_need(ptp, tpend, 1 + sizeof(u64), bad);
	blob_struct_v = ceph_decode_8(ptp);
218 219 220
	if (blob_struct_v != 1)
		goto bad;

221 222
	new_secret_id = ceph_decode_64(ptp);
	ret = ceph_decode_buffer(&new_ticket_blob, ptp, tpend);
223 224 225 226 227 228 229 230 231 232 233 234
	if (ret)
		goto out;

	/* all is well, update our ticket */
	ceph_crypto_key_destroy(&th->session_key);
	if (th->ticket_blob)
		ceph_buffer_put(th->ticket_blob);
	th->session_key = new_session_key;
	th->ticket_blob = new_ticket_blob;
	th->secret_id = new_secret_id;
	th->expires = new_expires;
	th->renew_after = new_renew_after;
235
	th->have_key = true;
236 237 238 239
	dout(" got ticket service %d (%s) secret_id %lld len %d\n",
	     type, ceph_entity_type_name(type), th->secret_id,
	     (int)th->ticket_blob->vec.iov_len);
	xi->have_keys |= th->service;
240
	return 0;
241 242 243

bad:
	ret = -EINVAL;
244 245 246
out:
	ceph_crypto_key_destroy(&new_session_key);
	return ret;
247 248
}

249 250 251 252 253
static int ceph_x_proc_ticket_reply(struct ceph_auth_client *ac,
				    struct ceph_crypto_key *secret,
				    void *buf, void *end)
{
	void *p = buf;
254
	u8 reply_struct_v;
255 256
	u32 num;
	int ret;
257

258
	ceph_decode_8_safe(&p, end, reply_struct_v, bad);
259
	if (reply_struct_v != 1)
260
		return -EINVAL;
261

262 263
	ceph_decode_32_safe(&p, end, num, bad);
	dout("%d tickets\n", num);
264

265
	while (num--) {
266
		ret = process_one_ticket(ac, secret, &p, end);
267
		if (ret)
268
			return ret;
269 270
	}

271
	return 0;
272 273

bad:
274
	return -EINVAL;
275 276
}

277 278 279 280 281 282 283 284 285
static void ceph_x_authorizer_cleanup(struct ceph_x_authorizer *au)
{
	ceph_crypto_key_destroy(&au->session_key);
	if (au->buf) {
		ceph_buffer_put(au->buf);
		au->buf = NULL;
	}
}

286 287 288 289
static int ceph_x_build_authorizer(struct ceph_auth_client *ac,
				   struct ceph_x_ticket_handler *th,
				   struct ceph_x_authorizer *au)
{
290
	int maxlen;
291
	struct ceph_x_authorize_a *msg_a;
292
	struct ceph_x_authorize_b *msg_b;
293 294 295 296 297 298 299 300
	void *p, *end;
	int ret;
	int ticket_blob_len =
		(th->ticket_blob ? th->ticket_blob->vec.iov_len : 0);

	dout("build_authorizer for %s %p\n",
	     ceph_entity_type_name(th->service), au);

301 302 303
	ceph_crypto_key_destroy(&au->session_key);
	ret = ceph_crypto_key_clone(&au->session_key, &th->session_key);
	if (ret)
304
		goto out_au;
305

306
	maxlen = sizeof(*msg_a) + ticket_blob_len +
307
		ceph_x_encrypt_buflen(sizeof(*msg_b));
308 309
	dout("  need len %d\n", maxlen);
	if (au->buf && au->buf->alloc_len < maxlen) {
310 311 312 313
		ceph_buffer_put(au->buf);
		au->buf = NULL;
	}
	if (!au->buf) {
314
		au->buf = ceph_buffer_new(maxlen, GFP_NOFS);
315
		if (!au->buf) {
316 317
			ret = -ENOMEM;
			goto out_au;
318
		}
319 320
	}
	au->service = th->service;
321
	au->secret_id = th->secret_id;
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340

	msg_a = au->buf->vec.iov_base;
	msg_a->struct_v = 1;
	msg_a->global_id = cpu_to_le64(ac->global_id);
	msg_a->service_id = cpu_to_le32(th->service);
	msg_a->ticket_blob.struct_v = 1;
	msg_a->ticket_blob.secret_id = cpu_to_le64(th->secret_id);
	msg_a->ticket_blob.blob_len = cpu_to_le32(ticket_blob_len);
	if (ticket_blob_len) {
		memcpy(msg_a->ticket_blob.blob, th->ticket_blob->vec.iov_base,
		       th->ticket_blob->vec.iov_len);
	}
	dout(" th %p secret_id %lld %lld\n", th, th->secret_id,
	     le64_to_cpu(msg_a->ticket_blob.secret_id));

	p = msg_a + 1;
	p += ticket_blob_len;
	end = au->buf->vec.iov_base + au->buf->vec.iov_len;

341 342
	msg_b = p + ceph_x_encrypt_offset();
	msg_b->struct_v = 1;
343
	get_random_bytes(&au->nonce, sizeof(au->nonce));
344 345
	msg_b->nonce = cpu_to_le64(au->nonce);
	ret = ceph_x_encrypt(&au->session_key, p, end - p, sizeof(*msg_b));
346
	if (ret < 0)
347
		goto out_au;
348

349
	p += ret;
350
	WARN_ON(p > end);
351 352 353 354 355
	au->buf->vec.iov_len = p - au->buf->vec.iov_base;
	dout(" built authorizer nonce %llx len %d\n", au->nonce,
	     (int)au->buf->vec.iov_len);
	return 0;

356 357
out_au:
	ceph_x_authorizer_cleanup(au);
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
	return ret;
}

static int ceph_x_encode_ticket(struct ceph_x_ticket_handler *th,
				void **p, void *end)
{
	ceph_decode_need(p, end, 1 + sizeof(u64), bad);
	ceph_encode_8(p, 1);
	ceph_encode_64(p, th->secret_id);
	if (th->ticket_blob) {
		const char *buf = th->ticket_blob->vec.iov_base;
		u32 len = th->ticket_blob->vec.iov_len;

		ceph_encode_32_safe(p, end, len, bad);
		ceph_encode_copy_safe(p, end, buf, len, bad);
	} else {
		ceph_encode_32_safe(p, end, 0, bad);
	}

	return 0;
bad:
	return -ERANGE;
}

382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
static bool need_key(struct ceph_x_ticket_handler *th)
{
	if (!th->have_key)
		return true;

	return get_seconds() >= th->renew_after;
}

static bool have_key(struct ceph_x_ticket_handler *th)
{
	if (th->have_key) {
		if (get_seconds() >= th->expires)
			th->have_key = false;
	}

	return th->have_key;
}

400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed)
{
	int want = ac->want_keys;
	struct ceph_x_info *xi = ac->private;
	int service;

	*pneed = ac->want_keys & ~(xi->have_keys);

	for (service = 1; service <= want; service <<= 1) {
		struct ceph_x_ticket_handler *th;

		if (!(ac->want_keys & service))
			continue;

		if (*pneed & service)
			continue;

		th = get_ticket_handler(ac, service);
418
		if (IS_ERR(th)) {
419 420 421 422
			*pneed |= service;
			continue;
		}

423
		if (need_key(th))
424
			*pneed |= service;
425
		if (!have_key(th))
426 427 428 429 430 431 432 433 434 435 436 437 438 439
			xi->have_keys &= ~service;
	}
}

static int ceph_x_build_request(struct ceph_auth_client *ac,
				void *buf, void *end)
{
	struct ceph_x_info *xi = ac->private;
	int need;
	struct ceph_x_request_header *head = buf;
	int ret;
	struct ceph_x_ticket_handler *th =
		get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);

440 441 442
	if (IS_ERR(th))
		return PTR_ERR(th);

443 444 445 446 447 448 449 450
	ceph_x_validate_tickets(ac, &need);

	dout("build_request want %x have %x need %x\n",
	     ac->want_keys, xi->have_keys, need);

	if (need & CEPH_ENTITY_TYPE_AUTH) {
		struct ceph_x_authenticate *auth = (void *)(head + 1);
		void *p = auth + 1;
451 452 453
		void *enc_buf = xi->auth_authorizer.enc_buf;
		struct ceph_x_challenge_blob *blob = enc_buf +
							ceph_x_encrypt_offset();
454 455 456 457 458 459 460 461 462 463
		u64 *u;

		if (p > end)
			return -ERANGE;

		dout(" get_auth_session_key\n");
		head->op = cpu_to_le16(CEPHX_GET_AUTH_SESSION_KEY);

		/* encrypt and hash */
		get_random_bytes(&auth->client_challenge, sizeof(u64));
464 465 466 467
		blob->client_challenge = auth->client_challenge;
		blob->server_challenge = cpu_to_le64(xi->server_challenge);
		ret = ceph_x_encrypt(&xi->secret, enc_buf, CEPHX_AU_ENC_BUF_LEN,
				     sizeof(*blob));
468 469 470 471 472
		if (ret < 0)
			return ret;

		auth->struct_v = 1;
		auth->key = 0;
473
		for (u = (u64 *)enc_buf; u + 1 <= (u64 *)(enc_buf + ret); u++)
Y
Yehuda Sadeh 已提交
474
			auth->key ^= *(__le64 *)u;
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 533 534 535 536
		dout(" server_challenge %llx client_challenge %llx key %llx\n",
		     xi->server_challenge, le64_to_cpu(auth->client_challenge),
		     le64_to_cpu(auth->key));

		/* now encode the old ticket if exists */
		ret = ceph_x_encode_ticket(th, &p, end);
		if (ret < 0)
			return ret;

		return p - buf;
	}

	if (need) {
		void *p = head + 1;
		struct ceph_x_service_ticket_request *req;

		if (p > end)
			return -ERANGE;
		head->op = cpu_to_le16(CEPHX_GET_PRINCIPAL_SESSION_KEY);

		ret = ceph_x_build_authorizer(ac, th, &xi->auth_authorizer);
		if (ret)
			return ret;
		ceph_encode_copy(&p, xi->auth_authorizer.buf->vec.iov_base,
				 xi->auth_authorizer.buf->vec.iov_len);

		req = p;
		req->keys = cpu_to_le32(need);
		p += sizeof(*req);
		return p - buf;
	}

	return 0;
}

static int ceph_x_handle_reply(struct ceph_auth_client *ac, int result,
			       void *buf, void *end)
{
	struct ceph_x_info *xi = ac->private;
	struct ceph_x_reply_header *head = buf;
	struct ceph_x_ticket_handler *th;
	int len = end - buf;
	int op;
	int ret;

	if (result)
		return result;  /* XXX hmm? */

	if (xi->starting) {
		/* it's a hello */
		struct ceph_x_server_challenge *sc = buf;

		if (len != sizeof(*sc))
			return -EINVAL;
		xi->server_challenge = le64_to_cpu(sc->server_challenge);
		dout("handle_reply got server challenge %llx\n",
		     xi->server_challenge);
		xi->starting = false;
		xi->have_keys &= ~CEPH_ENTITY_TYPE_AUTH;
		return -EAGAIN;
	}

Y
Yehuda Sadeh 已提交
537
	op = le16_to_cpu(head->op);
538 539 540 541 542 543 544 545 546 547 548
	result = le32_to_cpu(head->result);
	dout("handle_reply op %d result %d\n", op, result);
	switch (op) {
	case CEPHX_GET_AUTH_SESSION_KEY:
		/* verify auth key */
		ret = ceph_x_proc_ticket_reply(ac, &xi->secret,
					       buf + sizeof(*head), end);
		break;

	case CEPHX_GET_PRINCIPAL_SESSION_KEY:
		th = get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);
549 550
		if (IS_ERR(th))
			return PTR_ERR(th);
551 552 553 554 555 556 557 558 559 560 561 562 563 564
		ret = ceph_x_proc_ticket_reply(ac, &th->session_key,
					       buf + sizeof(*head), end);
		break;

	default:
		return -EINVAL;
	}
	if (ret)
		return ret;
	if (ac->want_keys == xi->have_keys)
		return 0;
	return -EAGAIN;
}

565 566 567 568 569 570 571 572
static void ceph_x_destroy_authorizer(struct ceph_authorizer *a)
{
	struct ceph_x_authorizer *au = (void *)a;

	ceph_x_authorizer_cleanup(au);
	kfree(au);
}

573 574
static int ceph_x_create_authorizer(
	struct ceph_auth_client *ac, int peer_type,
575
	struct ceph_auth_handshake *auth)
576 577 578 579 580 581 582 583 584 585 586 587 588
{
	struct ceph_x_authorizer *au;
	struct ceph_x_ticket_handler *th;
	int ret;

	th = get_ticket_handler(ac, peer_type);
	if (IS_ERR(th))
		return PTR_ERR(th);

	au = kzalloc(sizeof(*au), GFP_NOFS);
	if (!au)
		return -ENOMEM;

589 590
	au->base.destroy = ceph_x_destroy_authorizer;

591 592 593 594 595 596
	ret = ceph_x_build_authorizer(ac, th, au);
	if (ret) {
		kfree(au);
		return ret;
	}

597 598 599
	auth->authorizer = (struct ceph_authorizer *) au;
	auth->authorizer_buf = au->buf->vec.iov_base;
	auth->authorizer_buf_len = au->buf->vec.iov_len;
600 601
	auth->authorizer_reply_buf = au->enc_buf;
	auth->authorizer_reply_buf_len = CEPHX_AU_ENC_BUF_LEN;
Y
Yan, Zheng 已提交
602 603
	auth->sign_message = ac->ops->sign_message;
	auth->check_message_signature = ac->ops->check_message_signature;
604

605 606 607
	return 0;
}

608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
static int ceph_x_update_authorizer(
	struct ceph_auth_client *ac, int peer_type,
	struct ceph_auth_handshake *auth)
{
	struct ceph_x_authorizer *au;
	struct ceph_x_ticket_handler *th;

	th = get_ticket_handler(ac, peer_type);
	if (IS_ERR(th))
		return PTR_ERR(th);

	au = (struct ceph_x_authorizer *)auth->authorizer;
	if (au->secret_id < th->secret_id) {
		dout("ceph_x_update_authorizer service %u secret %llu < %llu\n",
		     au->service, au->secret_id, th->secret_id);
		return ceph_x_build_authorizer(ac, th, au);
	}
	return 0;
}

628
static int ceph_x_verify_authorizer_reply(struct ceph_auth_client *ac,
629
					  struct ceph_authorizer *a)
630 631
{
	struct ceph_x_authorizer *au = (void *)a;
632
	void *p = au->enc_buf;
633 634
	struct ceph_x_authorize_reply *reply = p + ceph_x_encrypt_offset();
	int ret;
635

636
	ret = ceph_x_decrypt(&au->session_key, &p, p + CEPHX_AU_ENC_BUF_LEN);
637 638
	if (ret < 0)
		return ret;
639
	if (ret != sizeof(*reply))
640 641
		return -EPERM;

642
	if (au->nonce + 1 != le64_to_cpu(reply->nonce_plus_one))
643 644 645 646
		ret = -EPERM;
	else
		ret = 0;
	dout("verify_authorizer_reply nonce %llx got %llx ret %d\n",
647
	     au->nonce, le64_to_cpu(reply->nonce_plus_one), ret);
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
	return ret;
}

static void ceph_x_reset(struct ceph_auth_client *ac)
{
	struct ceph_x_info *xi = ac->private;

	dout("reset\n");
	xi->starting = true;
	xi->server_challenge = 0;
}

static void ceph_x_destroy(struct ceph_auth_client *ac)
{
	struct ceph_x_info *xi = ac->private;
	struct rb_node *p;

	dout("ceph_x_destroy %p\n", ac);
	ceph_crypto_key_destroy(&xi->secret);

	while ((p = rb_first(&xi->ticket_handlers)) != NULL) {
		struct ceph_x_ticket_handler *th =
			rb_entry(p, struct ceph_x_ticket_handler, node);
		remove_ticket_handler(ac, th);
	}

674
	ceph_x_authorizer_cleanup(&xi->auth_authorizer);
S
Sage Weil 已提交
675

676 677 678 679
	kfree(ac->private);
	ac->private = NULL;
}

680
static void invalidate_ticket(struct ceph_auth_client *ac, int peer_type)
681 682 683 684
{
	struct ceph_x_ticket_handler *th;

	th = get_ticket_handler(ac, peer_type);
685
	if (!IS_ERR(th))
686
		th->have_key = false;
687 688
}

689 690 691 692 693 694 695 696 697 698 699 700 701
static void ceph_x_invalidate_authorizer(struct ceph_auth_client *ac,
					 int peer_type)
{
	/*
	 * We are to invalidate a service ticket in the hopes of
	 * getting a new, hopefully more valid, one.  But, we won't get
	 * it unless our AUTH ticket is good, so invalidate AUTH ticket
	 * as well, just in case.
	 */
	invalidate_ticket(ac, peer_type);
	invalidate_ticket(ac, CEPH_ENTITY_TYPE_AUTH);
}

702 703
static int calc_signature(struct ceph_x_authorizer *au, struct ceph_msg *msg,
			  __le64 *psig)
Y
Yan, Zheng 已提交
704
{
705
	void *enc_buf = au->enc_buf;
706 707 708 709 710 711
	struct {
		__le32 len;
		__le32 header_crc;
		__le32 front_crc;
		__le32 middle_crc;
		__le32 data_crc;
712
	} __packed *sigblock = enc_buf + ceph_x_encrypt_offset();
713 714
	int ret;

715 716 717 718 719 720 721
	sigblock->len = cpu_to_le32(4*sizeof(u32));
	sigblock->header_crc = msg->hdr.crc;
	sigblock->front_crc = msg->footer.front_crc;
	sigblock->middle_crc = msg->footer.middle_crc;
	sigblock->data_crc =  msg->footer.data_crc;
	ret = ceph_x_encrypt(&au->session_key, enc_buf, CEPHX_AU_ENC_BUF_LEN,
			     sizeof(*sigblock));
Y
Yan, Zheng 已提交
722 723
	if (ret < 0)
		return ret;
724

725
	*psig = *(__le64 *)(enc_buf + sizeof(u32));
Y
Yan, Zheng 已提交
726 727 728 729 730 731
	return 0;
}

static int ceph_x_sign_message(struct ceph_auth_handshake *auth,
			       struct ceph_msg *msg)
{
732
	__le64 sig;
Y
Yan, Zheng 已提交
733
	int ret;
734

735 736 737
	if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN))
		return 0;

738 739 740
	ret = calc_signature((struct ceph_x_authorizer *)auth->authorizer,
			     msg, &sig);
	if (ret)
Y
Yan, Zheng 已提交
741
		return ret;
742 743

	msg->footer.sig = sig;
Y
Yan, Zheng 已提交
744 745 746 747 748 749 750 751 752 753
	msg->footer.flags |= CEPH_MSG_FOOTER_SIGNED;
	return 0;
}

static int ceph_x_check_message_signature(struct ceph_auth_handshake *auth,
					  struct ceph_msg *msg)
{
	__le64 sig_check;
	int ret;

754 755 756
	if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN))
		return 0;

757 758 759
	ret = calc_signature((struct ceph_x_authorizer *)auth->authorizer,
			     msg, &sig_check);
	if (ret)
Y
Yan, Zheng 已提交
760 761 762 763 764 765 766 767 768 769 770
		return ret;
	if (sig_check == msg->footer.sig)
		return 0;
	if (msg->footer.flags & CEPH_MSG_FOOTER_SIGNED)
		dout("ceph_x_check_message_signature %p has signature %llx "
		     "expect %llx\n", msg, msg->footer.sig, sig_check);
	else
		dout("ceph_x_check_message_signature %p sender did not set "
		     "CEPH_MSG_FOOTER_SIGNED\n", msg);
	return -EBADMSG;
}
771 772

static const struct ceph_auth_client_ops ceph_x_ops = {
773
	.name = "x",
774
	.is_authenticated = ceph_x_is_authenticated,
775
	.should_authenticate = ceph_x_should_authenticate,
776 777 778
	.build_request = ceph_x_build_request,
	.handle_reply = ceph_x_handle_reply,
	.create_authorizer = ceph_x_create_authorizer,
779
	.update_authorizer = ceph_x_update_authorizer,
780 781 782 783
	.verify_authorizer_reply = ceph_x_verify_authorizer_reply,
	.invalidate_authorizer = ceph_x_invalidate_authorizer,
	.reset =  ceph_x_reset,
	.destroy = ceph_x_destroy,
Y
Yan, Zheng 已提交
784 785
	.sign_message = ceph_x_sign_message,
	.check_message_signature = ceph_x_check_message_signature,
786 787 788 789 790 791 792 793 794
};


int ceph_x_init(struct ceph_auth_client *ac)
{
	struct ceph_x_info *xi;
	int ret;

	dout("ceph_x_init %p\n", ac);
S
Sage Weil 已提交
795
	ret = -ENOMEM;
796 797
	xi = kzalloc(sizeof(*xi), GFP_NOFS);
	if (!xi)
S
Sage Weil 已提交
798
		goto out;
799 800

	ret = -EINVAL;
801
	if (!ac->key) {
802
		pr_err("no secret set (for auth_x protocol)\n");
S
Sage Weil 已提交
803
		goto out_nomem;
804 805
	}

806 807 808
	ret = ceph_crypto_key_clone(&xi->secret, ac->key);
	if (ret < 0) {
		pr_err("cannot clone key: %d\n", ret);
S
Sage Weil 已提交
809
		goto out_nomem;
810
	}
811 812 813 814 815 816 817 818 819

	xi->starting = true;
	xi->ticket_handlers = RB_ROOT;

	ac->protocol = CEPH_AUTH_CEPHX;
	ac->private = xi;
	ac->ops = &ceph_x_ops;
	return 0;

S
Sage Weil 已提交
820
out_nomem:
821
	kfree(xi);
S
Sage Weil 已提交
822
out:
823 824 825 826
	return ret;
}