xen-blkfront: don't add indirect pages to list when !feature_persistent
[linux-2.6-block.git] / net / ceph / auth_x.c
CommitLineData
ec0994e4 1
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
ec0994e4
SW
3
4#include <linux/err.h>
5#include <linux/module.h>
6#include <linux/random.h>
5a0e3ad6 7#include <linux/slab.h>
ec0994e4 8
3d14c5d2
YS
9#include <linux/ceph/decode.h>
10#include <linux/ceph/auth.h>
33d07337 11#include <linux/ceph/messenger.h>
3d14c5d2
YS
12
13#include "crypto.h"
ec0994e4
SW
14#include "auth_x.h"
15#include "auth_x_protocol.h"
ec0994e4 16
ec0994e4
SW
17static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);
18
19static int ceph_x_is_authenticated(struct ceph_auth_client *ac)
20{
21 struct ceph_x_info *xi = ac->private;
22 int need;
23
24 ceph_x_validate_tickets(ac, &need);
25 dout("ceph_x_is_authenticated want=%d need=%d have=%d\n",
26 ac->want_keys, need, xi->have_keys);
27 return (ac->want_keys & xi->have_keys) == ac->want_keys;
28}
29
a41359fa
SW
30static int ceph_x_should_authenticate(struct ceph_auth_client *ac)
31{
32 struct ceph_x_info *xi = ac->private;
33 int need;
34
35 ceph_x_validate_tickets(ac, &need);
36 dout("ceph_x_should_authenticate want=%d need=%d have=%d\n",
37 ac->want_keys, need, xi->have_keys);
38 return need != 0;
39}
40
807c86e2
SW
41static int ceph_x_encrypt_buflen(int ilen)
42{
43 return sizeof(struct ceph_x_encrypt_header) + ilen + 16 +
44 sizeof(u32);
45}
46
ec0994e4
SW
47static int ceph_x_encrypt(struct ceph_crypto_key *secret,
48 void *ibuf, int ilen, void *obuf, size_t olen)
49{
50 struct ceph_x_encrypt_header head = {
51 .struct_v = 1,
52 .magic = cpu_to_le64(CEPHX_ENC_MAGIC)
53 };
54 size_t len = olen - sizeof(u32);
55 int ret;
56
57 ret = ceph_encrypt2(secret, obuf + sizeof(u32), &len,
58 &head, sizeof(head), ibuf, ilen);
59 if (ret)
60 return ret;
61 ceph_encode_32(&obuf, len);
62 return len + sizeof(u32);
63}
64
65static int ceph_x_decrypt(struct ceph_crypto_key *secret,
c27a3e4d 66 void **p, void *end, void **obuf, size_t olen)
ec0994e4
SW
67{
68 struct ceph_x_encrypt_header head;
69 size_t head_len = sizeof(head);
70 int len, ret;
71
72 len = ceph_decode_32(p);
73 if (*p + len > end)
74 return -EINVAL;
75
76 dout("ceph_x_decrypt len %d\n", len);
c27a3e4d
ID
77 if (*obuf == NULL) {
78 *obuf = kmalloc(len, GFP_NOFS);
79 if (!*obuf)
80 return -ENOMEM;
81 olen = len;
82 }
83
84 ret = ceph_decrypt2(secret, &head, &head_len, *obuf, &olen, *p, len);
ec0994e4
SW
85 if (ret)
86 return ret;
87 if (head.struct_v != 1 || le64_to_cpu(head.magic) != CEPHX_ENC_MAGIC)
88 return -EPERM;
89 *p += len;
90 return olen;
91}
92
93/*
94 * get existing (or insert new) ticket handler
95 */
cd84db6e
YS
96static struct ceph_x_ticket_handler *
97get_ticket_handler(struct ceph_auth_client *ac, int service)
ec0994e4
SW
98{
99 struct ceph_x_ticket_handler *th;
100 struct ceph_x_info *xi = ac->private;
101 struct rb_node *parent = NULL, **p = &xi->ticket_handlers.rb_node;
102
103 while (*p) {
104 parent = *p;
105 th = rb_entry(parent, struct ceph_x_ticket_handler, node);
106 if (service < th->service)
107 p = &(*p)->rb_left;
108 else if (service > th->service)
109 p = &(*p)->rb_right;
110 else
111 return th;
112 }
113
114 /* add it */
115 th = kzalloc(sizeof(*th), GFP_NOFS);
116 if (!th)
117 return ERR_PTR(-ENOMEM);
118 th->service = service;
119 rb_link_node(&th->node, parent, p);
120 rb_insert_color(&th->node, &xi->ticket_handlers);
121 return th;
122}
123
124static void remove_ticket_handler(struct ceph_auth_client *ac,
125 struct ceph_x_ticket_handler *th)
126{
127 struct ceph_x_info *xi = ac->private;
128
129 dout("remove_ticket_handler %p %d\n", th, th->service);
130 rb_erase(&th->node, &xi->ticket_handlers);
131 ceph_crypto_key_destroy(&th->session_key);
132 if (th->ticket_blob)
133 ceph_buffer_put(th->ticket_blob);
134 kfree(th);
135}
136
597cda35
ID
137static int process_one_ticket(struct ceph_auth_client *ac,
138 struct ceph_crypto_key *secret,
c27a3e4d 139 void **p, void *end)
597cda35
ID
140{
141 struct ceph_x_info *xi = ac->private;
142 int type;
143 u8 tkt_struct_v, blob_struct_v;
144 struct ceph_x_ticket_handler *th;
c27a3e4d 145 void *dbuf = NULL;
597cda35
ID
146 void *dp, *dend;
147 int dlen;
148 char is_enc;
149 struct timespec validity;
150 struct ceph_crypto_key old_key;
c27a3e4d 151 void *ticket_buf = NULL;
597cda35 152 void *tp, *tpend;
e9226d7c 153 void **ptp;
597cda35
ID
154 struct ceph_timespec new_validity;
155 struct ceph_crypto_key new_session_key;
156 struct ceph_buffer *new_ticket_blob;
157 unsigned long new_expires, new_renew_after;
158 u64 new_secret_id;
159 int ret;
160
161 ceph_decode_need(p, end, sizeof(u32) + 1, bad);
162
163 type = ceph_decode_32(p);
164 dout(" ticket type %d %s\n", type, ceph_entity_type_name(type));
165
166 tkt_struct_v = ceph_decode_8(p);
167 if (tkt_struct_v != 1)
168 goto bad;
169
170 th = get_ticket_handler(ac, type);
171 if (IS_ERR(th)) {
172 ret = PTR_ERR(th);
173 goto out;
174 }
175
176 /* blob for me */
c27a3e4d 177 dlen = ceph_x_decrypt(secret, p, end, &dbuf, 0);
597cda35
ID
178 if (dlen <= 0) {
179 ret = dlen;
180 goto out;
181 }
182 dout(" decrypted %d bytes\n", dlen);
183 dp = dbuf;
184 dend = dp + dlen;
185
186 tkt_struct_v = ceph_decode_8(&dp);
187 if (tkt_struct_v != 1)
188 goto bad;
189
190 memcpy(&old_key, &th->session_key, sizeof(old_key));
191 ret = ceph_crypto_key_decode(&new_session_key, &dp, dend);
192 if (ret)
193 goto out;
194
195 ceph_decode_copy(&dp, &new_validity, sizeof(new_validity));
196 ceph_decode_timespec(&validity, &new_validity);
197 new_expires = get_seconds() + validity.tv_sec;
198 new_renew_after = new_expires - (validity.tv_sec / 4);
199 dout(" expires=%lu renew_after=%lu\n", new_expires,
200 new_renew_after);
201
202 /* ticket blob for service */
203 ceph_decode_8_safe(p, end, is_enc, bad);
597cda35
ID
204 if (is_enc) {
205 /* encrypted */
206 dout(" encrypted ticket\n");
c27a3e4d 207 dlen = ceph_x_decrypt(&old_key, p, end, &ticket_buf, 0);
597cda35
ID
208 if (dlen < 0) {
209 ret = dlen;
210 goto out;
211 }
c27a3e4d 212 tp = ticket_buf;
e9226d7c
ID
213 ptp = &tp;
214 tpend = *ptp + dlen;
597cda35
ID
215 } else {
216 /* unencrypted */
e9226d7c
ID
217 ptp = p;
218 tpend = end;
597cda35 219 }
e9226d7c 220 ceph_decode_32_safe(ptp, tpend, dlen, bad);
597cda35 221 dout(" ticket blob is %d bytes\n", dlen);
e9226d7c
ID
222 ceph_decode_need(ptp, tpend, 1 + sizeof(u64), bad);
223 blob_struct_v = ceph_decode_8(ptp);
224 new_secret_id = ceph_decode_64(ptp);
225 ret = ceph_decode_buffer(&new_ticket_blob, ptp, tpend);
597cda35
ID
226 if (ret)
227 goto out;
228
229 /* all is well, update our ticket */
230 ceph_crypto_key_destroy(&th->session_key);
231 if (th->ticket_blob)
232 ceph_buffer_put(th->ticket_blob);
233 th->session_key = new_session_key;
234 th->ticket_blob = new_ticket_blob;
235 th->validity = new_validity;
236 th->secret_id = new_secret_id;
237 th->expires = new_expires;
238 th->renew_after = new_renew_after;
239 dout(" got ticket service %d (%s) secret_id %lld len %d\n",
240 type, ceph_entity_type_name(type), th->secret_id,
241 (int)th->ticket_blob->vec.iov_len);
242 xi->have_keys |= th->service;
243
244out:
c27a3e4d
ID
245 kfree(ticket_buf);
246 kfree(dbuf);
597cda35
ID
247 return ret;
248
249bad:
250 ret = -EINVAL;
251 goto out;
252}
253
ec0994e4
SW
254static int ceph_x_proc_ticket_reply(struct ceph_auth_client *ac,
255 struct ceph_crypto_key *secret,
256 void *buf, void *end)
257{
ec0994e4 258 void *p = buf;
b736b3d9 259 u8 reply_struct_v;
597cda35
ID
260 u32 num;
261 int ret;
ec0994e4 262
597cda35 263 ceph_decode_8_safe(&p, end, reply_struct_v, bad);
b736b3d9 264 if (reply_struct_v != 1)
597cda35 265 return -EINVAL;
ec0994e4 266
597cda35
ID
267 ceph_decode_32_safe(&p, end, num, bad);
268 dout("%d tickets\n", num);
ec0994e4 269
597cda35 270 while (num--) {
c27a3e4d 271 ret = process_one_ticket(ac, secret, &p, end);
ec0994e4 272 if (ret)
c27a3e4d 273 return ret;
ec0994e4
SW
274 }
275
c27a3e4d 276 return 0;
ec0994e4
SW
277
278bad:
c27a3e4d 279 return -EINVAL;
ec0994e4
SW
280}
281
282static int ceph_x_build_authorizer(struct ceph_auth_client *ac,
283 struct ceph_x_ticket_handler *th,
284 struct ceph_x_authorizer *au)
285{
807c86e2 286 int maxlen;
ec0994e4
SW
287 struct ceph_x_authorize_a *msg_a;
288 struct ceph_x_authorize_b msg_b;
289 void *p, *end;
290 int ret;
291 int ticket_blob_len =
292 (th->ticket_blob ? th->ticket_blob->vec.iov_len : 0);
293
294 dout("build_authorizer for %s %p\n",
295 ceph_entity_type_name(th->service), au);
296
ae385eaf
YZ
297 ceph_crypto_key_destroy(&au->session_key);
298 ret = ceph_crypto_key_clone(&au->session_key, &th->session_key);
299 if (ret)
300 return ret;
301
807c86e2
SW
302 maxlen = sizeof(*msg_a) + sizeof(msg_b) +
303 ceph_x_encrypt_buflen(ticket_blob_len);
304 dout(" need len %d\n", maxlen);
305 if (au->buf && au->buf->alloc_len < maxlen) {
ec0994e4
SW
306 ceph_buffer_put(au->buf);
307 au->buf = NULL;
308 }
309 if (!au->buf) {
807c86e2 310 au->buf = ceph_buffer_new(maxlen, GFP_NOFS);
ae385eaf
YZ
311 if (!au->buf) {
312 ceph_crypto_key_destroy(&au->session_key);
ec0994e4 313 return -ENOMEM;
ae385eaf 314 }
ec0994e4
SW
315 }
316 au->service = th->service;
0bed9b5c 317 au->secret_id = th->secret_id;
ec0994e4
SW
318
319 msg_a = au->buf->vec.iov_base;
320 msg_a->struct_v = 1;
321 msg_a->global_id = cpu_to_le64(ac->global_id);
322 msg_a->service_id = cpu_to_le32(th->service);
323 msg_a->ticket_blob.struct_v = 1;
324 msg_a->ticket_blob.secret_id = cpu_to_le64(th->secret_id);
325 msg_a->ticket_blob.blob_len = cpu_to_le32(ticket_blob_len);
326 if (ticket_blob_len) {
327 memcpy(msg_a->ticket_blob.blob, th->ticket_blob->vec.iov_base,
328 th->ticket_blob->vec.iov_len);
329 }
330 dout(" th %p secret_id %lld %lld\n", th, th->secret_id,
331 le64_to_cpu(msg_a->ticket_blob.secret_id));
332
333 p = msg_a + 1;
334 p += ticket_blob_len;
335 end = au->buf->vec.iov_base + au->buf->vec.iov_len;
336
337 get_random_bytes(&au->nonce, sizeof(au->nonce));
338 msg_b.struct_v = 1;
339 msg_b.nonce = cpu_to_le64(au->nonce);
ae385eaf 340 ret = ceph_x_encrypt(&au->session_key, &msg_b, sizeof(msg_b),
ec0994e4
SW
341 p, end - p);
342 if (ret < 0)
343 goto out_buf;
344 p += ret;
345 au->buf->vec.iov_len = p - au->buf->vec.iov_base;
346 dout(" built authorizer nonce %llx len %d\n", au->nonce,
347 (int)au->buf->vec.iov_len);
807c86e2 348 BUG_ON(au->buf->vec.iov_len > maxlen);
ec0994e4
SW
349 return 0;
350
351out_buf:
352 ceph_buffer_put(au->buf);
353 au->buf = NULL;
354 return ret;
355}
356
357static int ceph_x_encode_ticket(struct ceph_x_ticket_handler *th,
358 void **p, void *end)
359{
360 ceph_decode_need(p, end, 1 + sizeof(u64), bad);
361 ceph_encode_8(p, 1);
362 ceph_encode_64(p, th->secret_id);
363 if (th->ticket_blob) {
364 const char *buf = th->ticket_blob->vec.iov_base;
365 u32 len = th->ticket_blob->vec.iov_len;
366
367 ceph_encode_32_safe(p, end, len, bad);
368 ceph_encode_copy_safe(p, end, buf, len, bad);
369 } else {
370 ceph_encode_32_safe(p, end, 0, bad);
371 }
372
373 return 0;
374bad:
375 return -ERANGE;
376}
377
378static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed)
379{
380 int want = ac->want_keys;
381 struct ceph_x_info *xi = ac->private;
382 int service;
383
384 *pneed = ac->want_keys & ~(xi->have_keys);
385
386 for (service = 1; service <= want; service <<= 1) {
387 struct ceph_x_ticket_handler *th;
388
389 if (!(ac->want_keys & service))
390 continue;
391
392 if (*pneed & service)
393 continue;
394
395 th = get_ticket_handler(ac, service);
396
b545787d 397 if (IS_ERR(th)) {
ec0994e4
SW
398 *pneed |= service;
399 continue;
400 }
401
402 if (get_seconds() >= th->renew_after)
403 *pneed |= service;
404 if (get_seconds() >= th->expires)
405 xi->have_keys &= ~service;
406 }
407}
408
409
410static int ceph_x_build_request(struct ceph_auth_client *ac,
411 void *buf, void *end)
412{
413 struct ceph_x_info *xi = ac->private;
414 int need;
415 struct ceph_x_request_header *head = buf;
416 int ret;
417 struct ceph_x_ticket_handler *th =
418 get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);
419
b545787d
DC
420 if (IS_ERR(th))
421 return PTR_ERR(th);
422
ec0994e4
SW
423 ceph_x_validate_tickets(ac, &need);
424
425 dout("build_request want %x have %x need %x\n",
426 ac->want_keys, xi->have_keys, need);
427
428 if (need & CEPH_ENTITY_TYPE_AUTH) {
429 struct ceph_x_authenticate *auth = (void *)(head + 1);
430 void *p = auth + 1;
431 struct ceph_x_challenge_blob tmp;
432 char tmp_enc[40];
433 u64 *u;
434
435 if (p > end)
436 return -ERANGE;
437
438 dout(" get_auth_session_key\n");
439 head->op = cpu_to_le16(CEPHX_GET_AUTH_SESSION_KEY);
440
441 /* encrypt and hash */
442 get_random_bytes(&auth->client_challenge, sizeof(u64));
443 tmp.client_challenge = auth->client_challenge;
444 tmp.server_challenge = cpu_to_le64(xi->server_challenge);
445 ret = ceph_x_encrypt(&xi->secret, &tmp, sizeof(tmp),
446 tmp_enc, sizeof(tmp_enc));
447 if (ret < 0)
448 return ret;
449
450 auth->struct_v = 1;
451 auth->key = 0;
452 for (u = (u64 *)tmp_enc; u + 1 <= (u64 *)(tmp_enc + ret); u++)
cd84db6e 453 auth->key ^= *(__le64 *)u;
ec0994e4
SW
454 dout(" server_challenge %llx client_challenge %llx key %llx\n",
455 xi->server_challenge, le64_to_cpu(auth->client_challenge),
456 le64_to_cpu(auth->key));
457
458 /* now encode the old ticket if exists */
459 ret = ceph_x_encode_ticket(th, &p, end);
460 if (ret < 0)
461 return ret;
462
463 return p - buf;
464 }
465
466 if (need) {
467 void *p = head + 1;
468 struct ceph_x_service_ticket_request *req;
469
470 if (p > end)
471 return -ERANGE;
472 head->op = cpu_to_le16(CEPHX_GET_PRINCIPAL_SESSION_KEY);
473
ec0994e4
SW
474 ret = ceph_x_build_authorizer(ac, th, &xi->auth_authorizer);
475 if (ret)
476 return ret;
477 ceph_encode_copy(&p, xi->auth_authorizer.buf->vec.iov_base,
478 xi->auth_authorizer.buf->vec.iov_len);
479
480 req = p;
481 req->keys = cpu_to_le32(need);
482 p += sizeof(*req);
483 return p - buf;
484 }
485
486 return 0;
487}
488
489static int ceph_x_handle_reply(struct ceph_auth_client *ac, int result,
490 void *buf, void *end)
491{
492 struct ceph_x_info *xi = ac->private;
493 struct ceph_x_reply_header *head = buf;
494 struct ceph_x_ticket_handler *th;
495 int len = end - buf;
496 int op;
497 int ret;
498
499 if (result)
500 return result; /* XXX hmm? */
501
502 if (xi->starting) {
503 /* it's a hello */
504 struct ceph_x_server_challenge *sc = buf;
505
506 if (len != sizeof(*sc))
507 return -EINVAL;
508 xi->server_challenge = le64_to_cpu(sc->server_challenge);
509 dout("handle_reply got server challenge %llx\n",
510 xi->server_challenge);
511 xi->starting = false;
512 xi->have_keys &= ~CEPH_ENTITY_TYPE_AUTH;
513 return -EAGAIN;
514 }
515
0cf5537b 516 op = le16_to_cpu(head->op);
ec0994e4
SW
517 result = le32_to_cpu(head->result);
518 dout("handle_reply op %d result %d\n", op, result);
519 switch (op) {
520 case CEPHX_GET_AUTH_SESSION_KEY:
521 /* verify auth key */
522 ret = ceph_x_proc_ticket_reply(ac, &xi->secret,
523 buf + sizeof(*head), end);
524 break;
525
526 case CEPHX_GET_PRINCIPAL_SESSION_KEY:
527 th = get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);
b545787d
DC
528 if (IS_ERR(th))
529 return PTR_ERR(th);
ec0994e4
SW
530 ret = ceph_x_proc_ticket_reply(ac, &th->session_key,
531 buf + sizeof(*head), end);
532 break;
533
534 default:
535 return -EINVAL;
536 }
537 if (ret)
538 return ret;
539 if (ac->want_keys == xi->have_keys)
540 return 0;
541 return -EAGAIN;
542}
543
544static int ceph_x_create_authorizer(
545 struct ceph_auth_client *ac, int peer_type,
74f1869f 546 struct ceph_auth_handshake *auth)
ec0994e4
SW
547{
548 struct ceph_x_authorizer *au;
549 struct ceph_x_ticket_handler *th;
550 int ret;
551
552 th = get_ticket_handler(ac, peer_type);
553 if (IS_ERR(th))
554 return PTR_ERR(th);
555
556 au = kzalloc(sizeof(*au), GFP_NOFS);
557 if (!au)
558 return -ENOMEM;
559
560 ret = ceph_x_build_authorizer(ac, th, au);
561 if (ret) {
562 kfree(au);
563 return ret;
564 }
565
74f1869f
AE
566 auth->authorizer = (struct ceph_authorizer *) au;
567 auth->authorizer_buf = au->buf->vec.iov_base;
568 auth->authorizer_buf_len = au->buf->vec.iov_len;
569 auth->authorizer_reply_buf = au->reply_buf;
570 auth->authorizer_reply_buf_len = sizeof (au->reply_buf);
33d07337
YZ
571 auth->sign_message = ac->ops->sign_message;
572 auth->check_message_signature = ac->ops->check_message_signature;
74f1869f 573
ec0994e4
SW
574 return 0;
575}
576
0bed9b5c
SW
577static int ceph_x_update_authorizer(
578 struct ceph_auth_client *ac, int peer_type,
579 struct ceph_auth_handshake *auth)
580{
581 struct ceph_x_authorizer *au;
582 struct ceph_x_ticket_handler *th;
0bed9b5c
SW
583
584 th = get_ticket_handler(ac, peer_type);
585 if (IS_ERR(th))
586 return PTR_ERR(th);
587
588 au = (struct ceph_x_authorizer *)auth->authorizer;
589 if (au->secret_id < th->secret_id) {
590 dout("ceph_x_update_authorizer service %u secret %llu < %llu\n",
591 au->service, au->secret_id, th->secret_id);
592 return ceph_x_build_authorizer(ac, th, au);
593 }
594 return 0;
595}
596
ec0994e4
SW
597static int ceph_x_verify_authorizer_reply(struct ceph_auth_client *ac,
598 struct ceph_authorizer *a, size_t len)
599{
600 struct ceph_x_authorizer *au = (void *)a;
ec0994e4
SW
601 int ret = 0;
602 struct ceph_x_authorize_reply reply;
c27a3e4d 603 void *preply = &reply;
ec0994e4
SW
604 void *p = au->reply_buf;
605 void *end = p + sizeof(au->reply_buf);
606
ae385eaf 607 ret = ceph_x_decrypt(&au->session_key, &p, end, &preply, sizeof(reply));
ec0994e4
SW
608 if (ret < 0)
609 return ret;
610 if (ret != sizeof(reply))
611 return -EPERM;
612
613 if (au->nonce + 1 != le64_to_cpu(reply.nonce_plus_one))
614 ret = -EPERM;
615 else
616 ret = 0;
617 dout("verify_authorizer_reply nonce %llx got %llx ret %d\n",
618 au->nonce, le64_to_cpu(reply.nonce_plus_one), ret);
619 return ret;
620}
621
622static void ceph_x_destroy_authorizer(struct ceph_auth_client *ac,
623 struct ceph_authorizer *a)
624{
625 struct ceph_x_authorizer *au = (void *)a;
626
ae385eaf 627 ceph_crypto_key_destroy(&au->session_key);
ec0994e4
SW
628 ceph_buffer_put(au->buf);
629 kfree(au);
630}
631
632
633static void ceph_x_reset(struct ceph_auth_client *ac)
634{
635 struct ceph_x_info *xi = ac->private;
636
637 dout("reset\n");
638 xi->starting = true;
639 xi->server_challenge = 0;
640}
641
642static void ceph_x_destroy(struct ceph_auth_client *ac)
643{
644 struct ceph_x_info *xi = ac->private;
645 struct rb_node *p;
646
647 dout("ceph_x_destroy %p\n", ac);
648 ceph_crypto_key_destroy(&xi->secret);
649
650 while ((p = rb_first(&xi->ticket_handlers)) != NULL) {
651 struct ceph_x_ticket_handler *th =
652 rb_entry(p, struct ceph_x_ticket_handler, node);
653 remove_ticket_handler(ac, th);
654 }
655
22b1de06
SW
656 if (xi->auth_authorizer.buf)
657 ceph_buffer_put(xi->auth_authorizer.buf);
658
ec0994e4
SW
659 kfree(ac->private);
660 ac->private = NULL;
661}
662
663static void ceph_x_invalidate_authorizer(struct ceph_auth_client *ac,
664 int peer_type)
665{
666 struct ceph_x_ticket_handler *th;
667
668 th = get_ticket_handler(ac, peer_type);
b545787d 669 if (!IS_ERR(th))
4b8e8b5d 670 memset(&th->validity, 0, sizeof(th->validity));
ec0994e4
SW
671}
672
33d07337
YZ
673static int calcu_signature(struct ceph_x_authorizer *au,
674 struct ceph_msg *msg, __le64 *sig)
675{
676 int ret;
677 char tmp_enc[40];
678 __le32 tmp[5] = {
d7d5a007 679 cpu_to_le32(16), msg->hdr.crc, msg->footer.front_crc,
33d07337
YZ
680 msg->footer.middle_crc, msg->footer.data_crc,
681 };
682 ret = ceph_x_encrypt(&au->session_key, &tmp, sizeof(tmp),
683 tmp_enc, sizeof(tmp_enc));
684 if (ret < 0)
685 return ret;
686 *sig = *(__le64*)(tmp_enc + 4);
687 return 0;
688}
689
690static int ceph_x_sign_message(struct ceph_auth_handshake *auth,
691 struct ceph_msg *msg)
692{
693 int ret;
694 if (!auth->authorizer)
695 return 0;
696 ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
697 msg, &msg->footer.sig);
698 if (ret < 0)
699 return ret;
700 msg->footer.flags |= CEPH_MSG_FOOTER_SIGNED;
701 return 0;
702}
703
704static int ceph_x_check_message_signature(struct ceph_auth_handshake *auth,
705 struct ceph_msg *msg)
706{
707 __le64 sig_check;
708 int ret;
709
710 if (!auth->authorizer)
711 return 0;
712 ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
713 msg, &sig_check);
714 if (ret < 0)
715 return ret;
716 if (sig_check == msg->footer.sig)
717 return 0;
718 if (msg->footer.flags & CEPH_MSG_FOOTER_SIGNED)
719 dout("ceph_x_check_message_signature %p has signature %llx "
720 "expect %llx\n", msg, msg->footer.sig, sig_check);
721 else
722 dout("ceph_x_check_message_signature %p sender did not set "
723 "CEPH_MSG_FOOTER_SIGNED\n", msg);
724 return -EBADMSG;
725}
ec0994e4
SW
726
727static const struct ceph_auth_client_ops ceph_x_ops = {
559c1e00 728 .name = "x",
ec0994e4 729 .is_authenticated = ceph_x_is_authenticated,
a41359fa 730 .should_authenticate = ceph_x_should_authenticate,
ec0994e4
SW
731 .build_request = ceph_x_build_request,
732 .handle_reply = ceph_x_handle_reply,
733 .create_authorizer = ceph_x_create_authorizer,
0bed9b5c 734 .update_authorizer = ceph_x_update_authorizer,
ec0994e4
SW
735 .verify_authorizer_reply = ceph_x_verify_authorizer_reply,
736 .destroy_authorizer = ceph_x_destroy_authorizer,
737 .invalidate_authorizer = ceph_x_invalidate_authorizer,
738 .reset = ceph_x_reset,
739 .destroy = ceph_x_destroy,
33d07337
YZ
740 .sign_message = ceph_x_sign_message,
741 .check_message_signature = ceph_x_check_message_signature,
ec0994e4
SW
742};
743
744
745int ceph_x_init(struct ceph_auth_client *ac)
746{
747 struct ceph_x_info *xi;
748 int ret;
749
750 dout("ceph_x_init %p\n", ac);
b0930f8d 751 ret = -ENOMEM;
ec0994e4
SW
752 xi = kzalloc(sizeof(*xi), GFP_NOFS);
753 if (!xi)
b0930f8d 754 goto out;
ec0994e4 755
ec0994e4 756 ret = -EINVAL;
8323c3aa 757 if (!ac->key) {
ec0994e4 758 pr_err("no secret set (for auth_x protocol)\n");
b0930f8d 759 goto out_nomem;
ec0994e4
SW
760 }
761
8323c3aa
TV
762 ret = ceph_crypto_key_clone(&xi->secret, ac->key);
763 if (ret < 0) {
764 pr_err("cannot clone key: %d\n", ret);
b0930f8d 765 goto out_nomem;
8323c3aa 766 }
ec0994e4
SW
767
768 xi->starting = true;
769 xi->ticket_handlers = RB_ROOT;
770
771 ac->protocol = CEPH_AUTH_CEPHX;
772 ac->private = xi;
773 ac->ops = &ceph_x_ops;
774 return 0;
775
b0930f8d 776out_nomem:
ec0994e4 777 kfree(xi);
b0930f8d 778out:
ec0994e4
SW
779 return ret;
780}
781
782