2 #include "ceph_debug.h"
5 #include <linux/module.h>
6 #include <linux/random.h>
7 #include <linux/slab.h>
10 #include "auth_x_protocol.h"
15 #define TEMP_TICKET_BUF_LEN 256
17 static void ceph_x_validate_tickets(struct ceph_auth_client
*ac
, int *pneed
);
19 static int ceph_x_is_authenticated(struct ceph_auth_client
*ac
)
21 struct ceph_x_info
*xi
= ac
->private;
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
;
30 static int ceph_x_should_authenticate(struct ceph_auth_client
*ac
)
32 struct ceph_x_info
*xi
= ac
->private;
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
);
41 static int ceph_x_encrypt_buflen(int ilen
)
43 return sizeof(struct ceph_x_encrypt_header
) + ilen
+ 16 +
47 static int ceph_x_encrypt(struct ceph_crypto_key
*secret
,
48 void *ibuf
, int ilen
, void *obuf
, size_t olen
)
50 struct ceph_x_encrypt_header head
= {
52 .magic
= cpu_to_le64(CEPHX_ENC_MAGIC
)
54 size_t len
= olen
- sizeof(u32
);
57 ret
= ceph_encrypt2(secret
, obuf
+ sizeof(u32
), &len
,
58 &head
, sizeof(head
), ibuf
, ilen
);
61 ceph_encode_32(&obuf
, len
);
62 return len
+ sizeof(u32
);
65 static int ceph_x_decrypt(struct ceph_crypto_key
*secret
,
66 void **p
, void *end
, void *obuf
, size_t olen
)
68 struct ceph_x_encrypt_header head
;
69 size_t head_len
= sizeof(head
);
72 len
= ceph_decode_32(p
);
76 dout("ceph_x_decrypt len %d\n", len
);
77 ret
= ceph_decrypt2(secret
, &head
, &head_len
, obuf
, &olen
,
81 if (head
.struct_v
!= 1 || le64_to_cpu(head
.magic
) != CEPHX_ENC_MAGIC
)
88 * get existing (or insert new) ticket handler
90 struct ceph_x_ticket_handler
*get_ticket_handler(struct ceph_auth_client
*ac
,
93 struct ceph_x_ticket_handler
*th
;
94 struct ceph_x_info
*xi
= ac
->private;
95 struct rb_node
*parent
= NULL
, **p
= &xi
->ticket_handlers
.rb_node
;
99 th
= rb_entry(parent
, struct ceph_x_ticket_handler
, node
);
100 if (service
< th
->service
)
102 else if (service
> th
->service
)
109 th
= kzalloc(sizeof(*th
), GFP_NOFS
);
111 return ERR_PTR(-ENOMEM
);
112 th
->service
= service
;
113 rb_link_node(&th
->node
, parent
, p
);
114 rb_insert_color(&th
->node
, &xi
->ticket_handlers
);
118 static void remove_ticket_handler(struct ceph_auth_client
*ac
,
119 struct ceph_x_ticket_handler
*th
)
121 struct ceph_x_info
*xi
= ac
->private;
123 dout("remove_ticket_handler %p %d\n", th
, th
->service
);
124 rb_erase(&th
->node
, &xi
->ticket_handlers
);
125 ceph_crypto_key_destroy(&th
->session_key
);
127 ceph_buffer_put(th
->ticket_blob
);
131 static int ceph_x_proc_ticket_reply(struct ceph_auth_client
*ac
,
132 struct ceph_crypto_key
*secret
,
133 void *buf
, void *end
)
135 struct ceph_x_info
*xi
= ac
->private;
143 dbuf
= kmalloc(TEMP_TICKET_BUF_LEN
, GFP_NOFS
);
148 ticket_buf
= kmalloc(TEMP_TICKET_BUF_LEN
, GFP_NOFS
);
152 ceph_decode_need(&p
, end
, 1 + sizeof(u32
), bad
);
153 reply_struct_v
= ceph_decode_8(&p
);
154 if (reply_struct_v
!= 1)
156 num
= ceph_decode_32(&p
);
157 dout("%d tickets\n", num
);
160 u8 tkt_struct_v
, blob_struct_v
;
161 struct ceph_x_ticket_handler
*th
;
165 struct timespec validity
;
166 struct ceph_crypto_key old_key
;
168 struct ceph_timespec new_validity
;
169 struct ceph_crypto_key new_session_key
;
170 struct ceph_buffer
*new_ticket_blob
;
171 unsigned long new_expires
, new_renew_after
;
174 ceph_decode_need(&p
, end
, sizeof(u32
) + 1, bad
);
176 type
= ceph_decode_32(&p
);
177 dout(" ticket type %d %s\n", type
, ceph_entity_type_name(type
));
179 tkt_struct_v
= ceph_decode_8(&p
);
180 if (tkt_struct_v
!= 1)
183 th
= get_ticket_handler(ac
, type
);
190 dlen
= ceph_x_decrypt(secret
, &p
, end
, dbuf
,
191 TEMP_TICKET_BUF_LEN
);
196 dout(" decrypted %d bytes\n", dlen
);
200 tkt_struct_v
= ceph_decode_8(&dp
);
201 if (tkt_struct_v
!= 1)
204 memcpy(&old_key
, &th
->session_key
, sizeof(old_key
));
205 ret
= ceph_crypto_key_decode(&new_session_key
, &dp
, dend
);
209 ceph_decode_copy(&dp
, &new_validity
, sizeof(new_validity
));
210 ceph_decode_timespec(&validity
, &new_validity
);
211 new_expires
= get_seconds() + validity
.tv_sec
;
212 new_renew_after
= new_expires
- (validity
.tv_sec
/ 4);
213 dout(" expires=%lu renew_after=%lu\n", new_expires
,
216 /* ticket blob for service */
217 ceph_decode_8_safe(&p
, end
, is_enc
, bad
);
221 dout(" encrypted ticket\n");
222 dlen
= ceph_x_decrypt(&old_key
, &p
, end
, ticket_buf
,
223 TEMP_TICKET_BUF_LEN
);
228 dlen
= ceph_decode_32(&tp
);
231 ceph_decode_32_safe(&p
, end
, dlen
, bad
);
232 ceph_decode_need(&p
, end
, dlen
, bad
);
233 ceph_decode_copy(&p
, ticket_buf
, dlen
);
236 dout(" ticket blob is %d bytes\n", dlen
);
237 ceph_decode_need(&tp
, tpend
, 1 + sizeof(u64
), bad
);
238 blob_struct_v
= ceph_decode_8(&tp
);
239 new_secret_id
= ceph_decode_64(&tp
);
240 ret
= ceph_decode_buffer(&new_ticket_blob
, &tp
, tpend
);
244 /* all is well, update our ticket */
245 ceph_crypto_key_destroy(&th
->session_key
);
247 ceph_buffer_put(th
->ticket_blob
);
248 th
->session_key
= new_session_key
;
249 th
->ticket_blob
= new_ticket_blob
;
250 th
->validity
= new_validity
;
251 th
->secret_id
= new_secret_id
;
252 th
->expires
= new_expires
;
253 th
->renew_after
= new_renew_after
;
254 dout(" got ticket service %d (%s) secret_id %lld len %d\n",
255 type
, ceph_entity_type_name(type
), th
->secret_id
,
256 (int)th
->ticket_blob
->vec
.iov_len
);
257 xi
->have_keys
|= th
->service
;
272 static int ceph_x_build_authorizer(struct ceph_auth_client
*ac
,
273 struct ceph_x_ticket_handler
*th
,
274 struct ceph_x_authorizer
*au
)
277 struct ceph_x_authorize_a
*msg_a
;
278 struct ceph_x_authorize_b msg_b
;
281 int ticket_blob_len
=
282 (th
->ticket_blob
? th
->ticket_blob
->vec
.iov_len
: 0);
284 dout("build_authorizer for %s %p\n",
285 ceph_entity_type_name(th
->service
), au
);
287 maxlen
= sizeof(*msg_a
) + sizeof(msg_b
) +
288 ceph_x_encrypt_buflen(ticket_blob_len
);
289 dout(" need len %d\n", maxlen
);
290 if (au
->buf
&& au
->buf
->alloc_len
< maxlen
) {
291 ceph_buffer_put(au
->buf
);
295 au
->buf
= ceph_buffer_new(maxlen
, GFP_NOFS
);
299 au
->service
= th
->service
;
301 msg_a
= au
->buf
->vec
.iov_base
;
303 msg_a
->global_id
= cpu_to_le64(ac
->global_id
);
304 msg_a
->service_id
= cpu_to_le32(th
->service
);
305 msg_a
->ticket_blob
.struct_v
= 1;
306 msg_a
->ticket_blob
.secret_id
= cpu_to_le64(th
->secret_id
);
307 msg_a
->ticket_blob
.blob_len
= cpu_to_le32(ticket_blob_len
);
308 if (ticket_blob_len
) {
309 memcpy(msg_a
->ticket_blob
.blob
, th
->ticket_blob
->vec
.iov_base
,
310 th
->ticket_blob
->vec
.iov_len
);
312 dout(" th %p secret_id %lld %lld\n", th
, th
->secret_id
,
313 le64_to_cpu(msg_a
->ticket_blob
.secret_id
));
316 p
+= ticket_blob_len
;
317 end
= au
->buf
->vec
.iov_base
+ au
->buf
->vec
.iov_len
;
319 get_random_bytes(&au
->nonce
, sizeof(au
->nonce
));
321 msg_b
.nonce
= cpu_to_le64(au
->nonce
);
322 ret
= ceph_x_encrypt(&th
->session_key
, &msg_b
, sizeof(msg_b
),
327 au
->buf
->vec
.iov_len
= p
- au
->buf
->vec
.iov_base
;
328 dout(" built authorizer nonce %llx len %d\n", au
->nonce
,
329 (int)au
->buf
->vec
.iov_len
);
330 BUG_ON(au
->buf
->vec
.iov_len
> maxlen
);
334 ceph_buffer_put(au
->buf
);
339 static int ceph_x_encode_ticket(struct ceph_x_ticket_handler
*th
,
342 ceph_decode_need(p
, end
, 1 + sizeof(u64
), bad
);
344 ceph_encode_64(p
, th
->secret_id
);
345 if (th
->ticket_blob
) {
346 const char *buf
= th
->ticket_blob
->vec
.iov_base
;
347 u32 len
= th
->ticket_blob
->vec
.iov_len
;
349 ceph_encode_32_safe(p
, end
, len
, bad
);
350 ceph_encode_copy_safe(p
, end
, buf
, len
, bad
);
352 ceph_encode_32_safe(p
, end
, 0, bad
);
360 static void ceph_x_validate_tickets(struct ceph_auth_client
*ac
, int *pneed
)
362 int want
= ac
->want_keys
;
363 struct ceph_x_info
*xi
= ac
->private;
366 *pneed
= ac
->want_keys
& ~(xi
->have_keys
);
368 for (service
= 1; service
<= want
; service
<<= 1) {
369 struct ceph_x_ticket_handler
*th
;
371 if (!(ac
->want_keys
& service
))
374 if (*pneed
& service
)
377 th
= get_ticket_handler(ac
, service
);
384 if (get_seconds() >= th
->renew_after
)
386 if (get_seconds() >= th
->expires
)
387 xi
->have_keys
&= ~service
;
392 static int ceph_x_build_request(struct ceph_auth_client
*ac
,
393 void *buf
, void *end
)
395 struct ceph_x_info
*xi
= ac
->private;
397 struct ceph_x_request_header
*head
= buf
;
399 struct ceph_x_ticket_handler
*th
=
400 get_ticket_handler(ac
, CEPH_ENTITY_TYPE_AUTH
);
402 ceph_x_validate_tickets(ac
, &need
);
404 dout("build_request want %x have %x need %x\n",
405 ac
->want_keys
, xi
->have_keys
, need
);
407 if (need
& CEPH_ENTITY_TYPE_AUTH
) {
408 struct ceph_x_authenticate
*auth
= (void *)(head
+ 1);
410 struct ceph_x_challenge_blob tmp
;
417 dout(" get_auth_session_key\n");
418 head
->op
= cpu_to_le16(CEPHX_GET_AUTH_SESSION_KEY
);
420 /* encrypt and hash */
421 get_random_bytes(&auth
->client_challenge
, sizeof(u64
));
422 tmp
.client_challenge
= auth
->client_challenge
;
423 tmp
.server_challenge
= cpu_to_le64(xi
->server_challenge
);
424 ret
= ceph_x_encrypt(&xi
->secret
, &tmp
, sizeof(tmp
),
425 tmp_enc
, sizeof(tmp_enc
));
431 for (u
= (u64
*)tmp_enc
; u
+ 1 <= (u64
*)(tmp_enc
+ ret
); u
++)
433 dout(" server_challenge %llx client_challenge %llx key %llx\n",
434 xi
->server_challenge
, le64_to_cpu(auth
->client_challenge
),
435 le64_to_cpu(auth
->key
));
437 /* now encode the old ticket if exists */
438 ret
= ceph_x_encode_ticket(th
, &p
, end
);
447 struct ceph_x_service_ticket_request
*req
;
451 head
->op
= cpu_to_le16(CEPHX_GET_PRINCIPAL_SESSION_KEY
);
454 ret
= ceph_x_build_authorizer(ac
, th
, &xi
->auth_authorizer
);
457 ceph_encode_copy(&p
, xi
->auth_authorizer
.buf
->vec
.iov_base
,
458 xi
->auth_authorizer
.buf
->vec
.iov_len
);
461 req
->keys
= cpu_to_le32(need
);
469 static int ceph_x_handle_reply(struct ceph_auth_client
*ac
, int result
,
470 void *buf
, void *end
)
472 struct ceph_x_info
*xi
= ac
->private;
473 struct ceph_x_reply_header
*head
= buf
;
474 struct ceph_x_ticket_handler
*th
;
480 return result
; /* XXX hmm? */
484 struct ceph_x_server_challenge
*sc
= buf
;
486 if (len
!= sizeof(*sc
))
488 xi
->server_challenge
= le64_to_cpu(sc
->server_challenge
);
489 dout("handle_reply got server challenge %llx\n",
490 xi
->server_challenge
);
491 xi
->starting
= false;
492 xi
->have_keys
&= ~CEPH_ENTITY_TYPE_AUTH
;
496 op
= le32_to_cpu(head
->op
);
497 result
= le32_to_cpu(head
->result
);
498 dout("handle_reply op %d result %d\n", op
, result
);
500 case CEPHX_GET_AUTH_SESSION_KEY
:
501 /* verify auth key */
502 ret
= ceph_x_proc_ticket_reply(ac
, &xi
->secret
,
503 buf
+ sizeof(*head
), end
);
506 case CEPHX_GET_PRINCIPAL_SESSION_KEY
:
507 th
= get_ticket_handler(ac
, CEPH_ENTITY_TYPE_AUTH
);
509 ret
= ceph_x_proc_ticket_reply(ac
, &th
->session_key
,
510 buf
+ sizeof(*head
), end
);
518 if (ac
->want_keys
== xi
->have_keys
)
523 static int ceph_x_create_authorizer(
524 struct ceph_auth_client
*ac
, int peer_type
,
525 struct ceph_authorizer
**a
,
526 void **buf
, size_t *len
,
527 void **reply_buf
, size_t *reply_len
)
529 struct ceph_x_authorizer
*au
;
530 struct ceph_x_ticket_handler
*th
;
533 th
= get_ticket_handler(ac
, peer_type
);
537 au
= kzalloc(sizeof(*au
), GFP_NOFS
);
541 ret
= ceph_x_build_authorizer(ac
, th
, au
);
547 *a
= (struct ceph_authorizer
*)au
;
548 *buf
= au
->buf
->vec
.iov_base
;
549 *len
= au
->buf
->vec
.iov_len
;
550 *reply_buf
= au
->reply_buf
;
551 *reply_len
= sizeof(au
->reply_buf
);
555 static int ceph_x_verify_authorizer_reply(struct ceph_auth_client
*ac
,
556 struct ceph_authorizer
*a
, size_t len
)
558 struct ceph_x_authorizer
*au
= (void *)a
;
559 struct ceph_x_ticket_handler
*th
;
561 struct ceph_x_authorize_reply reply
;
562 void *p
= au
->reply_buf
;
563 void *end
= p
+ sizeof(au
->reply_buf
);
565 th
= get_ticket_handler(ac
, au
->service
);
567 return -EIO
; /* hrm! */
568 ret
= ceph_x_decrypt(&th
->session_key
, &p
, end
, &reply
, sizeof(reply
));
571 if (ret
!= sizeof(reply
))
574 if (au
->nonce
+ 1 != le64_to_cpu(reply
.nonce_plus_one
))
578 dout("verify_authorizer_reply nonce %llx got %llx ret %d\n",
579 au
->nonce
, le64_to_cpu(reply
.nonce_plus_one
), ret
);
583 static void ceph_x_destroy_authorizer(struct ceph_auth_client
*ac
,
584 struct ceph_authorizer
*a
)
586 struct ceph_x_authorizer
*au
= (void *)a
;
588 ceph_buffer_put(au
->buf
);
593 static void ceph_x_reset(struct ceph_auth_client
*ac
)
595 struct ceph_x_info
*xi
= ac
->private;
599 xi
->server_challenge
= 0;
602 static void ceph_x_destroy(struct ceph_auth_client
*ac
)
604 struct ceph_x_info
*xi
= ac
->private;
607 dout("ceph_x_destroy %p\n", ac
);
608 ceph_crypto_key_destroy(&xi
->secret
);
610 while ((p
= rb_first(&xi
->ticket_handlers
)) != NULL
) {
611 struct ceph_x_ticket_handler
*th
=
612 rb_entry(p
, struct ceph_x_ticket_handler
, node
);
613 remove_ticket_handler(ac
, th
);
620 static void ceph_x_invalidate_authorizer(struct ceph_auth_client
*ac
,
623 struct ceph_x_ticket_handler
*th
;
625 th
= get_ticket_handler(ac
, peer_type
);
626 if (th
&& !IS_ERR(th
))
627 remove_ticket_handler(ac
, th
);
631 static const struct ceph_auth_client_ops ceph_x_ops
= {
633 .is_authenticated
= ceph_x_is_authenticated
,
634 .should_authenticate
= ceph_x_should_authenticate
,
635 .build_request
= ceph_x_build_request
,
636 .handle_reply
= ceph_x_handle_reply
,
637 .create_authorizer
= ceph_x_create_authorizer
,
638 .verify_authorizer_reply
= ceph_x_verify_authorizer_reply
,
639 .destroy_authorizer
= ceph_x_destroy_authorizer
,
640 .invalidate_authorizer
= ceph_x_invalidate_authorizer
,
641 .reset
= ceph_x_reset
,
642 .destroy
= ceph_x_destroy
,
646 int ceph_x_init(struct ceph_auth_client
*ac
)
648 struct ceph_x_info
*xi
;
651 dout("ceph_x_init %p\n", ac
);
653 xi
= kzalloc(sizeof(*xi
), GFP_NOFS
);
659 pr_err("no secret set (for auth_x protocol)\n");
663 ret
= ceph_crypto_key_unarmor(&xi
->secret
, ac
->secret
);
668 xi
->ticket_handlers
= RB_ROOT
;
670 ac
->protocol
= CEPH_AUTH_CEPHX
;
672 ac
->ops
= &ceph_x_ops
;