Merge branches 'pm-opp-fixes', 'pm-cpufreq-fixes' and 'pm-cpuidle-fixes'
[deliverable/linux.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>
a51983e4 11#include <linux/ceph/libceph.h>
33d07337 12#include <linux/ceph/messenger.h>
3d14c5d2
YS
13
14#include "crypto.h"
ec0994e4
SW
15#include "auth_x.h"
16#include "auth_x_protocol.h"
ec0994e4 17
ec0994e4
SW
18static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);
19
20static int ceph_x_is_authenticated(struct ceph_auth_client *ac)
21{
22 struct ceph_x_info *xi = ac->private;
23 int need;
24
25 ceph_x_validate_tickets(ac, &need);
26 dout("ceph_x_is_authenticated want=%d need=%d have=%d\n",
27 ac->want_keys, need, xi->have_keys);
28 return (ac->want_keys & xi->have_keys) == ac->want_keys;
29}
30
a41359fa
SW
31static int ceph_x_should_authenticate(struct ceph_auth_client *ac)
32{
33 struct ceph_x_info *xi = ac->private;
34 int need;
35
36 ceph_x_validate_tickets(ac, &need);
37 dout("ceph_x_should_authenticate want=%d need=%d have=%d\n",
38 ac->want_keys, need, xi->have_keys);
39 return need != 0;
40}
41
807c86e2
SW
42static int ceph_x_encrypt_buflen(int ilen)
43{
44 return sizeof(struct ceph_x_encrypt_header) + ilen + 16 +
45 sizeof(u32);
46}
47
ec0994e4
SW
48static int ceph_x_encrypt(struct ceph_crypto_key *secret,
49 void *ibuf, int ilen, void *obuf, size_t olen)
50{
51 struct ceph_x_encrypt_header head = {
52 .struct_v = 1,
53 .magic = cpu_to_le64(CEPHX_ENC_MAGIC)
54 };
55 size_t len = olen - sizeof(u32);
56 int ret;
57
58 ret = ceph_encrypt2(secret, obuf + sizeof(u32), &len,
59 &head, sizeof(head), ibuf, ilen);
60 if (ret)
61 return ret;
62 ceph_encode_32(&obuf, len);
63 return len + sizeof(u32);
64}
65
66static int ceph_x_decrypt(struct ceph_crypto_key *secret,
c27a3e4d 67 void **p, void *end, void **obuf, size_t olen)
ec0994e4
SW
68{
69 struct ceph_x_encrypt_header head;
70 size_t head_len = sizeof(head);
71 int len, ret;
72
73 len = ceph_decode_32(p);
74 if (*p + len > end)
75 return -EINVAL;
76
77 dout("ceph_x_decrypt len %d\n", len);
c27a3e4d
ID
78 if (*obuf == NULL) {
79 *obuf = kmalloc(len, GFP_NOFS);
80 if (!*obuf)
81 return -ENOMEM;
82 olen = len;
83 }
84
85 ret = ceph_decrypt2(secret, &head, &head_len, *obuf, &olen, *p, len);
ec0994e4
SW
86 if (ret)
87 return ret;
88 if (head.struct_v != 1 || le64_to_cpu(head.magic) != CEPHX_ENC_MAGIC)
89 return -EPERM;
90 *p += len;
91 return olen;
92}
93
94/*
95 * get existing (or insert new) ticket handler
96 */
cd84db6e
YS
97static struct ceph_x_ticket_handler *
98get_ticket_handler(struct ceph_auth_client *ac, int service)
ec0994e4
SW
99{
100 struct ceph_x_ticket_handler *th;
101 struct ceph_x_info *xi = ac->private;
102 struct rb_node *parent = NULL, **p = &xi->ticket_handlers.rb_node;
103
104 while (*p) {
105 parent = *p;
106 th = rb_entry(parent, struct ceph_x_ticket_handler, node);
107 if (service < th->service)
108 p = &(*p)->rb_left;
109 else if (service > th->service)
110 p = &(*p)->rb_right;
111 else
112 return th;
113 }
114
115 /* add it */
116 th = kzalloc(sizeof(*th), GFP_NOFS);
117 if (!th)
118 return ERR_PTR(-ENOMEM);
119 th->service = service;
120 rb_link_node(&th->node, parent, p);
121 rb_insert_color(&th->node, &xi->ticket_handlers);
122 return th;
123}
124
125static void remove_ticket_handler(struct ceph_auth_client *ac,
126 struct ceph_x_ticket_handler *th)
127{
128 struct ceph_x_info *xi = ac->private;
129
130 dout("remove_ticket_handler %p %d\n", th, th->service);
131 rb_erase(&th->node, &xi->ticket_handlers);
132 ceph_crypto_key_destroy(&th->session_key);
133 if (th->ticket_blob)
134 ceph_buffer_put(th->ticket_blob);
135 kfree(th);
136}
137
597cda35
ID
138static int process_one_ticket(struct ceph_auth_client *ac,
139 struct ceph_crypto_key *secret,
c27a3e4d 140 void **p, void *end)
597cda35
ID
141{
142 struct ceph_x_info *xi = ac->private;
143 int type;
144 u8 tkt_struct_v, blob_struct_v;
145 struct ceph_x_ticket_handler *th;
c27a3e4d 146 void *dbuf = NULL;
597cda35
ID
147 void *dp, *dend;
148 int dlen;
149 char is_enc;
150 struct timespec validity;
151 struct ceph_crypto_key old_key;
c27a3e4d 152 void *ticket_buf = NULL;
597cda35 153 void *tp, *tpend;
e9226d7c 154 void **ptp;
597cda35
ID
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
f6cdb292
ID
195 ceph_decode_timespec(&validity, dp);
196 dp += sizeof(struct ceph_timespec);
597cda35
ID
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;
597cda35
ID
235 th->secret_id = new_secret_id;
236 th->expires = new_expires;
237 th->renew_after = new_renew_after;
6abe097d 238 th->have_key = true;
597cda35
ID
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
cbf99a11
ID
282static void ceph_x_authorizer_cleanup(struct ceph_x_authorizer *au)
283{
284 ceph_crypto_key_destroy(&au->session_key);
285 if (au->buf) {
286 ceph_buffer_put(au->buf);
287 au->buf = NULL;
288 }
289}
290
ec0994e4
SW
291static int ceph_x_build_authorizer(struct ceph_auth_client *ac,
292 struct ceph_x_ticket_handler *th,
293 struct ceph_x_authorizer *au)
294{
807c86e2 295 int maxlen;
ec0994e4
SW
296 struct ceph_x_authorize_a *msg_a;
297 struct ceph_x_authorize_b msg_b;
298 void *p, *end;
299 int ret;
300 int ticket_blob_len =
301 (th->ticket_blob ? th->ticket_blob->vec.iov_len : 0);
302
303 dout("build_authorizer for %s %p\n",
304 ceph_entity_type_name(th->service), au);
305
ae385eaf
YZ
306 ceph_crypto_key_destroy(&au->session_key);
307 ret = ceph_crypto_key_clone(&au->session_key, &th->session_key);
308 if (ret)
cbf99a11 309 goto out_au;
ae385eaf 310
807c86e2
SW
311 maxlen = sizeof(*msg_a) + sizeof(msg_b) +
312 ceph_x_encrypt_buflen(ticket_blob_len);
313 dout(" need len %d\n", maxlen);
314 if (au->buf && au->buf->alloc_len < maxlen) {
ec0994e4
SW
315 ceph_buffer_put(au->buf);
316 au->buf = NULL;
317 }
318 if (!au->buf) {
807c86e2 319 au->buf = ceph_buffer_new(maxlen, GFP_NOFS);
ae385eaf 320 if (!au->buf) {
cbf99a11
ID
321 ret = -ENOMEM;
322 goto out_au;
ae385eaf 323 }
ec0994e4
SW
324 }
325 au->service = th->service;
0bed9b5c 326 au->secret_id = th->secret_id;
ec0994e4
SW
327
328 msg_a = au->buf->vec.iov_base;
329 msg_a->struct_v = 1;
330 msg_a->global_id = cpu_to_le64(ac->global_id);
331 msg_a->service_id = cpu_to_le32(th->service);
332 msg_a->ticket_blob.struct_v = 1;
333 msg_a->ticket_blob.secret_id = cpu_to_le64(th->secret_id);
334 msg_a->ticket_blob.blob_len = cpu_to_le32(ticket_blob_len);
335 if (ticket_blob_len) {
336 memcpy(msg_a->ticket_blob.blob, th->ticket_blob->vec.iov_base,
337 th->ticket_blob->vec.iov_len);
338 }
339 dout(" th %p secret_id %lld %lld\n", th, th->secret_id,
340 le64_to_cpu(msg_a->ticket_blob.secret_id));
341
342 p = msg_a + 1;
343 p += ticket_blob_len;
344 end = au->buf->vec.iov_base + au->buf->vec.iov_len;
345
346 get_random_bytes(&au->nonce, sizeof(au->nonce));
347 msg_b.struct_v = 1;
348 msg_b.nonce = cpu_to_le64(au->nonce);
ae385eaf 349 ret = ceph_x_encrypt(&au->session_key, &msg_b, sizeof(msg_b),
ec0994e4
SW
350 p, end - p);
351 if (ret < 0)
cbf99a11 352 goto out_au;
ec0994e4
SW
353 p += ret;
354 au->buf->vec.iov_len = p - au->buf->vec.iov_base;
355 dout(" built authorizer nonce %llx len %d\n", au->nonce,
356 (int)au->buf->vec.iov_len);
807c86e2 357 BUG_ON(au->buf->vec.iov_len > maxlen);
ec0994e4
SW
358 return 0;
359
cbf99a11
ID
360out_au:
361 ceph_x_authorizer_cleanup(au);
ec0994e4
SW
362 return ret;
363}
364
365static int ceph_x_encode_ticket(struct ceph_x_ticket_handler *th,
366 void **p, void *end)
367{
368 ceph_decode_need(p, end, 1 + sizeof(u64), bad);
369 ceph_encode_8(p, 1);
370 ceph_encode_64(p, th->secret_id);
371 if (th->ticket_blob) {
372 const char *buf = th->ticket_blob->vec.iov_base;
373 u32 len = th->ticket_blob->vec.iov_len;
374
375 ceph_encode_32_safe(p, end, len, bad);
376 ceph_encode_copy_safe(p, end, buf, len, bad);
377 } else {
378 ceph_encode_32_safe(p, end, 0, bad);
379 }
380
381 return 0;
382bad:
383 return -ERANGE;
384}
385
6abe097d
ID
386static bool need_key(struct ceph_x_ticket_handler *th)
387{
388 if (!th->have_key)
389 return true;
390
391 return get_seconds() >= th->renew_after;
392}
393
394static bool have_key(struct ceph_x_ticket_handler *th)
395{
396 if (th->have_key) {
397 if (get_seconds() >= th->expires)
398 th->have_key = false;
399 }
400
401 return th->have_key;
402}
403
ec0994e4
SW
404static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed)
405{
406 int want = ac->want_keys;
407 struct ceph_x_info *xi = ac->private;
408 int service;
409
410 *pneed = ac->want_keys & ~(xi->have_keys);
411
412 for (service = 1; service <= want; service <<= 1) {
413 struct ceph_x_ticket_handler *th;
414
415 if (!(ac->want_keys & service))
416 continue;
417
418 if (*pneed & service)
419 continue;
420
421 th = get_ticket_handler(ac, service);
b545787d 422 if (IS_ERR(th)) {
ec0994e4
SW
423 *pneed |= service;
424 continue;
425 }
426
6abe097d 427 if (need_key(th))
ec0994e4 428 *pneed |= service;
6abe097d 429 if (!have_key(th))
ec0994e4
SW
430 xi->have_keys &= ~service;
431 }
432}
433
ec0994e4
SW
434static int ceph_x_build_request(struct ceph_auth_client *ac,
435 void *buf, void *end)
436{
437 struct ceph_x_info *xi = ac->private;
438 int need;
439 struct ceph_x_request_header *head = buf;
440 int ret;
441 struct ceph_x_ticket_handler *th =
442 get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);
443
b545787d
DC
444 if (IS_ERR(th))
445 return PTR_ERR(th);
446
ec0994e4
SW
447 ceph_x_validate_tickets(ac, &need);
448
449 dout("build_request want %x have %x need %x\n",
450 ac->want_keys, xi->have_keys, need);
451
452 if (need & CEPH_ENTITY_TYPE_AUTH) {
453 struct ceph_x_authenticate *auth = (void *)(head + 1);
454 void *p = auth + 1;
455 struct ceph_x_challenge_blob tmp;
456 char tmp_enc[40];
457 u64 *u;
458
459 if (p > end)
460 return -ERANGE;
461
462 dout(" get_auth_session_key\n");
463 head->op = cpu_to_le16(CEPHX_GET_AUTH_SESSION_KEY);
464
465 /* encrypt and hash */
466 get_random_bytes(&auth->client_challenge, sizeof(u64));
467 tmp.client_challenge = auth->client_challenge;
468 tmp.server_challenge = cpu_to_le64(xi->server_challenge);
469 ret = ceph_x_encrypt(&xi->secret, &tmp, sizeof(tmp),
470 tmp_enc, sizeof(tmp_enc));
471 if (ret < 0)
472 return ret;
473
474 auth->struct_v = 1;
475 auth->key = 0;
476 for (u = (u64 *)tmp_enc; u + 1 <= (u64 *)(tmp_enc + ret); u++)
cd84db6e 477 auth->key ^= *(__le64 *)u;
ec0994e4
SW
478 dout(" server_challenge %llx client_challenge %llx key %llx\n",
479 xi->server_challenge, le64_to_cpu(auth->client_challenge),
480 le64_to_cpu(auth->key));
481
482 /* now encode the old ticket if exists */
483 ret = ceph_x_encode_ticket(th, &p, end);
484 if (ret < 0)
485 return ret;
486
487 return p - buf;
488 }
489
490 if (need) {
491 void *p = head + 1;
492 struct ceph_x_service_ticket_request *req;
493
494 if (p > end)
495 return -ERANGE;
496 head->op = cpu_to_le16(CEPHX_GET_PRINCIPAL_SESSION_KEY);
497
ec0994e4
SW
498 ret = ceph_x_build_authorizer(ac, th, &xi->auth_authorizer);
499 if (ret)
500 return ret;
501 ceph_encode_copy(&p, xi->auth_authorizer.buf->vec.iov_base,
502 xi->auth_authorizer.buf->vec.iov_len);
503
504 req = p;
505 req->keys = cpu_to_le32(need);
506 p += sizeof(*req);
507 return p - buf;
508 }
509
510 return 0;
511}
512
513static int ceph_x_handle_reply(struct ceph_auth_client *ac, int result,
514 void *buf, void *end)
515{
516 struct ceph_x_info *xi = ac->private;
517 struct ceph_x_reply_header *head = buf;
518 struct ceph_x_ticket_handler *th;
519 int len = end - buf;
520 int op;
521 int ret;
522
523 if (result)
524 return result; /* XXX hmm? */
525
526 if (xi->starting) {
527 /* it's a hello */
528 struct ceph_x_server_challenge *sc = buf;
529
530 if (len != sizeof(*sc))
531 return -EINVAL;
532 xi->server_challenge = le64_to_cpu(sc->server_challenge);
533 dout("handle_reply got server challenge %llx\n",
534 xi->server_challenge);
535 xi->starting = false;
536 xi->have_keys &= ~CEPH_ENTITY_TYPE_AUTH;
537 return -EAGAIN;
538 }
539
0cf5537b 540 op = le16_to_cpu(head->op);
ec0994e4
SW
541 result = le32_to_cpu(head->result);
542 dout("handle_reply op %d result %d\n", op, result);
543 switch (op) {
544 case CEPHX_GET_AUTH_SESSION_KEY:
545 /* verify auth key */
546 ret = ceph_x_proc_ticket_reply(ac, &xi->secret,
547 buf + sizeof(*head), end);
548 break;
549
550 case CEPHX_GET_PRINCIPAL_SESSION_KEY:
551 th = get_ticket_handler(ac, CEPH_ENTITY_TYPE_AUTH);
b545787d
DC
552 if (IS_ERR(th))
553 return PTR_ERR(th);
ec0994e4
SW
554 ret = ceph_x_proc_ticket_reply(ac, &th->session_key,
555 buf + sizeof(*head), end);
556 break;
557
558 default:
559 return -EINVAL;
560 }
561 if (ret)
562 return ret;
563 if (ac->want_keys == xi->have_keys)
564 return 0;
565 return -EAGAIN;
566}
567
6c1ea260
ID
568static void ceph_x_destroy_authorizer(struct ceph_authorizer *a)
569{
570 struct ceph_x_authorizer *au = (void *)a;
571
572 ceph_x_authorizer_cleanup(au);
573 kfree(au);
574}
575
ec0994e4
SW
576static int ceph_x_create_authorizer(
577 struct ceph_auth_client *ac, int peer_type,
74f1869f 578 struct ceph_auth_handshake *auth)
ec0994e4
SW
579{
580 struct ceph_x_authorizer *au;
581 struct ceph_x_ticket_handler *th;
582 int ret;
583
584 th = get_ticket_handler(ac, peer_type);
585 if (IS_ERR(th))
586 return PTR_ERR(th);
587
588 au = kzalloc(sizeof(*au), GFP_NOFS);
589 if (!au)
590 return -ENOMEM;
591
6c1ea260
ID
592 au->base.destroy = ceph_x_destroy_authorizer;
593
ec0994e4
SW
594 ret = ceph_x_build_authorizer(ac, th, au);
595 if (ret) {
596 kfree(au);
597 return ret;
598 }
599
74f1869f
AE
600 auth->authorizer = (struct ceph_authorizer *) au;
601 auth->authorizer_buf = au->buf->vec.iov_base;
602 auth->authorizer_buf_len = au->buf->vec.iov_len;
603 auth->authorizer_reply_buf = au->reply_buf;
604 auth->authorizer_reply_buf_len = sizeof (au->reply_buf);
33d07337
YZ
605 auth->sign_message = ac->ops->sign_message;
606 auth->check_message_signature = ac->ops->check_message_signature;
74f1869f 607
ec0994e4
SW
608 return 0;
609}
610
0bed9b5c
SW
611static int ceph_x_update_authorizer(
612 struct ceph_auth_client *ac, int peer_type,
613 struct ceph_auth_handshake *auth)
614{
615 struct ceph_x_authorizer *au;
616 struct ceph_x_ticket_handler *th;
0bed9b5c
SW
617
618 th = get_ticket_handler(ac, peer_type);
619 if (IS_ERR(th))
620 return PTR_ERR(th);
621
622 au = (struct ceph_x_authorizer *)auth->authorizer;
623 if (au->secret_id < th->secret_id) {
624 dout("ceph_x_update_authorizer service %u secret %llu < %llu\n",
625 au->service, au->secret_id, th->secret_id);
626 return ceph_x_build_authorizer(ac, th, au);
627 }
628 return 0;
629}
630
ec0994e4
SW
631static int ceph_x_verify_authorizer_reply(struct ceph_auth_client *ac,
632 struct ceph_authorizer *a, size_t len)
633{
634 struct ceph_x_authorizer *au = (void *)a;
ec0994e4
SW
635 int ret = 0;
636 struct ceph_x_authorize_reply reply;
c27a3e4d 637 void *preply = &reply;
ec0994e4
SW
638 void *p = au->reply_buf;
639 void *end = p + sizeof(au->reply_buf);
640
ae385eaf 641 ret = ceph_x_decrypt(&au->session_key, &p, end, &preply, sizeof(reply));
ec0994e4
SW
642 if (ret < 0)
643 return ret;
644 if (ret != sizeof(reply))
645 return -EPERM;
646
647 if (au->nonce + 1 != le64_to_cpu(reply.nonce_plus_one))
648 ret = -EPERM;
649 else
650 ret = 0;
651 dout("verify_authorizer_reply nonce %llx got %llx ret %d\n",
652 au->nonce, le64_to_cpu(reply.nonce_plus_one), ret);
653 return ret;
654}
655
ec0994e4
SW
656static void ceph_x_reset(struct ceph_auth_client *ac)
657{
658 struct ceph_x_info *xi = ac->private;
659
660 dout("reset\n");
661 xi->starting = true;
662 xi->server_challenge = 0;
663}
664
665static void ceph_x_destroy(struct ceph_auth_client *ac)
666{
667 struct ceph_x_info *xi = ac->private;
668 struct rb_node *p;
669
670 dout("ceph_x_destroy %p\n", ac);
671 ceph_crypto_key_destroy(&xi->secret);
672
673 while ((p = rb_first(&xi->ticket_handlers)) != NULL) {
674 struct ceph_x_ticket_handler *th =
675 rb_entry(p, struct ceph_x_ticket_handler, node);
676 remove_ticket_handler(ac, th);
677 }
678
cbf99a11 679 ceph_x_authorizer_cleanup(&xi->auth_authorizer);
22b1de06 680
ec0994e4
SW
681 kfree(ac->private);
682 ac->private = NULL;
683}
684
187d131d 685static void invalidate_ticket(struct ceph_auth_client *ac, int peer_type)
ec0994e4
SW
686{
687 struct ceph_x_ticket_handler *th;
688
689 th = get_ticket_handler(ac, peer_type);
b545787d 690 if (!IS_ERR(th))
6abe097d 691 th->have_key = false;
ec0994e4
SW
692}
693
187d131d
ID
694static void ceph_x_invalidate_authorizer(struct ceph_auth_client *ac,
695 int peer_type)
696{
697 /*
698 * We are to invalidate a service ticket in the hopes of
699 * getting a new, hopefully more valid, one. But, we won't get
700 * it unless our AUTH ticket is good, so invalidate AUTH ticket
701 * as well, just in case.
702 */
703 invalidate_ticket(ac, peer_type);
704 invalidate_ticket(ac, CEPH_ENTITY_TYPE_AUTH);
705}
706
33d07337
YZ
707static int calcu_signature(struct ceph_x_authorizer *au,
708 struct ceph_msg *msg, __le64 *sig)
709{
710 int ret;
711 char tmp_enc[40];
712 __le32 tmp[5] = {
d7d5a007 713 cpu_to_le32(16), msg->hdr.crc, msg->footer.front_crc,
33d07337
YZ
714 msg->footer.middle_crc, msg->footer.data_crc,
715 };
716 ret = ceph_x_encrypt(&au->session_key, &tmp, sizeof(tmp),
717 tmp_enc, sizeof(tmp_enc));
718 if (ret < 0)
719 return ret;
720 *sig = *(__le64*)(tmp_enc + 4);
721 return 0;
722}
723
724static int ceph_x_sign_message(struct ceph_auth_handshake *auth,
725 struct ceph_msg *msg)
726{
727 int ret;
4199b8ee 728
a51983e4
ID
729 if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN))
730 return 0;
731
33d07337
YZ
732 ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
733 msg, &msg->footer.sig);
734 if (ret < 0)
735 return ret;
736 msg->footer.flags |= CEPH_MSG_FOOTER_SIGNED;
737 return 0;
738}
739
740static int ceph_x_check_message_signature(struct ceph_auth_handshake *auth,
741 struct ceph_msg *msg)
742{
743 __le64 sig_check;
744 int ret;
745
a51983e4
ID
746 if (ceph_test_opt(from_msgr(msg->con->msgr), NOMSGSIGN))
747 return 0;
748
33d07337
YZ
749 ret = calcu_signature((struct ceph_x_authorizer *)auth->authorizer,
750 msg, &sig_check);
751 if (ret < 0)
752 return ret;
753 if (sig_check == msg->footer.sig)
754 return 0;
755 if (msg->footer.flags & CEPH_MSG_FOOTER_SIGNED)
756 dout("ceph_x_check_message_signature %p has signature %llx "
757 "expect %llx\n", msg, msg->footer.sig, sig_check);
758 else
759 dout("ceph_x_check_message_signature %p sender did not set "
760 "CEPH_MSG_FOOTER_SIGNED\n", msg);
761 return -EBADMSG;
762}
ec0994e4
SW
763
764static const struct ceph_auth_client_ops ceph_x_ops = {
559c1e00 765 .name = "x",
ec0994e4 766 .is_authenticated = ceph_x_is_authenticated,
a41359fa 767 .should_authenticate = ceph_x_should_authenticate,
ec0994e4
SW
768 .build_request = ceph_x_build_request,
769 .handle_reply = ceph_x_handle_reply,
770 .create_authorizer = ceph_x_create_authorizer,
0bed9b5c 771 .update_authorizer = ceph_x_update_authorizer,
ec0994e4 772 .verify_authorizer_reply = ceph_x_verify_authorizer_reply,
ec0994e4
SW
773 .invalidate_authorizer = ceph_x_invalidate_authorizer,
774 .reset = ceph_x_reset,
775 .destroy = ceph_x_destroy,
33d07337
YZ
776 .sign_message = ceph_x_sign_message,
777 .check_message_signature = ceph_x_check_message_signature,
ec0994e4
SW
778};
779
780
781int ceph_x_init(struct ceph_auth_client *ac)
782{
783 struct ceph_x_info *xi;
784 int ret;
785
786 dout("ceph_x_init %p\n", ac);
b0930f8d 787 ret = -ENOMEM;
ec0994e4
SW
788 xi = kzalloc(sizeof(*xi), GFP_NOFS);
789 if (!xi)
b0930f8d 790 goto out;
ec0994e4 791
ec0994e4 792 ret = -EINVAL;
8323c3aa 793 if (!ac->key) {
ec0994e4 794 pr_err("no secret set (for auth_x protocol)\n");
b0930f8d 795 goto out_nomem;
ec0994e4
SW
796 }
797
8323c3aa
TV
798 ret = ceph_crypto_key_clone(&xi->secret, ac->key);
799 if (ret < 0) {
800 pr_err("cannot clone key: %d\n", ret);
b0930f8d 801 goto out_nomem;
8323c3aa 802 }
ec0994e4
SW
803
804 xi->starting = true;
805 xi->ticket_handlers = RB_ROOT;
806
807 ac->protocol = CEPH_AUTH_CEPHX;
808 ac->private = xi;
809 ac->ops = &ceph_x_ops;
810 return 0;
811
b0930f8d 812out_nomem:
ec0994e4 813 kfree(xi);
b0930f8d 814out:
ec0994e4
SW
815 return ret;
816}
817
818
This page took 0.376695 seconds and 5 git commands to generate.