1 /* Kerberos-based RxRPC security
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <crypto/skcipher.h>
15 #include <linux/module.h>
16 #include <linux/net.h>
17 #include <linux/skbuff.h>
18 #include <linux/udp.h>
19 #include <linux/scatterlist.h>
20 #include <linux/ctype.h>
21 #include <linux/slab.h>
23 #include <net/af_rxrpc.h>
24 #include <keys/rxrpc-type.h>
25 #include "ar-internal.h"
27 #define RXKAD_VERSION 2
28 #define MAXKRB5TICKETLEN 1024
29 #define RXKAD_TKT_TYPE_KERBEROS_V5 256
30 #define ANAME_SZ 40 /* size of authentication name */
31 #define INST_SZ 40 /* size of principal's instance */
32 #define REALM_SZ 40 /* size of principal's auth domain */
33 #define SNAME_SZ 40 /* size of service name */
35 struct rxkad_level1_hdr
{
36 __be32 data_size
; /* true data size (excluding padding) */
39 struct rxkad_level2_hdr
{
40 __be32 data_size
; /* true data size (excluding padding) */
41 __be32 checksum
; /* decrypted data checksum */
45 * this holds a pinned cipher so that keventd doesn't get called by the cipher
46 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
49 static struct crypto_skcipher
*rxkad_ci
;
50 static DEFINE_MUTEX(rxkad_ci_mutex
);
53 * initialise connection security
55 static int rxkad_init_connection_security(struct rxrpc_connection
*conn
)
57 struct crypto_skcipher
*ci
;
58 struct rxrpc_key_token
*token
;
61 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->params
.key
));
63 token
= conn
->params
.key
->payload
.data
[0];
64 conn
->security_ix
= token
->security_index
;
66 ci
= crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
73 if (crypto_skcipher_setkey(ci
, token
->kad
->session_key
,
74 sizeof(token
->kad
->session_key
)) < 0)
77 switch (conn
->params
.security_level
) {
78 case RXRPC_SECURITY_PLAIN
:
80 case RXRPC_SECURITY_AUTH
:
82 conn
->security_size
= sizeof(struct rxkad_level1_hdr
);
83 conn
->header_size
+= sizeof(struct rxkad_level1_hdr
);
85 case RXRPC_SECURITY_ENCRYPT
:
87 conn
->security_size
= sizeof(struct rxkad_level2_hdr
);
88 conn
->header_size
+= sizeof(struct rxkad_level2_hdr
);
103 * prime the encryption state with the invariant parts of a connection's
106 static int rxkad_prime_packet_security(struct rxrpc_connection
*conn
)
108 struct rxrpc_key_token
*token
;
109 SKCIPHER_REQUEST_ON_STACK(req
, conn
->cipher
);
110 struct scatterlist sg
;
111 struct rxrpc_crypt iv
;
113 size_t tmpsize
= 4 * sizeof(__be32
);
117 if (!conn
->params
.key
)
120 tmpbuf
= kmalloc(tmpsize
, GFP_KERNEL
);
124 token
= conn
->params
.key
->payload
.data
[0];
125 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
127 tmpbuf
[0] = htonl(conn
->proto
.epoch
);
128 tmpbuf
[1] = htonl(conn
->proto
.cid
);
130 tmpbuf
[3] = htonl(conn
->security_ix
);
132 sg_init_one(&sg
, tmpbuf
, tmpsize
);
133 skcipher_request_set_tfm(req
, conn
->cipher
);
134 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
135 skcipher_request_set_crypt(req
, &sg
, &sg
, tmpsize
, iv
.x
);
136 crypto_skcipher_encrypt(req
);
137 skcipher_request_zero(req
);
139 memcpy(&conn
->csum_iv
, tmpbuf
+ 2, sizeof(conn
->csum_iv
));
146 * partially encrypt a packet (level 1 security)
148 static int rxkad_secure_packet_auth(const struct rxrpc_call
*call
,
153 struct rxrpc_skb_priv
*sp
;
154 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
155 struct rxkad_level1_hdr hdr
;
156 struct rxrpc_crypt iv
;
157 struct scatterlist sg
;
164 check
= sp
->hdr
.seq
^ sp
->hdr
.callNumber
;
165 data_size
|= (u32
)check
<< 16;
167 hdr
.data_size
= htonl(data_size
);
168 memcpy(sechdr
, &hdr
, sizeof(hdr
));
170 /* start the encryption afresh */
171 memset(&iv
, 0, sizeof(iv
));
173 sg_init_one(&sg
, sechdr
, 8);
174 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
175 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
176 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
177 crypto_skcipher_encrypt(req
);
178 skcipher_request_zero(req
);
185 * wholly encrypt a packet (level 2 security)
187 static int rxkad_secure_packet_encrypt(const struct rxrpc_call
*call
,
192 const struct rxrpc_key_token
*token
;
193 struct rxkad_level2_hdr rxkhdr
;
194 struct rxrpc_skb_priv
*sp
;
195 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
196 struct rxrpc_crypt iv
;
197 struct scatterlist sg
[16];
198 struct sk_buff
*trailer
;
208 check
= sp
->hdr
.seq
^ sp
->hdr
.callNumber
;
210 rxkhdr
.data_size
= htonl(data_size
| (u32
)check
<< 16);
212 memcpy(sechdr
, &rxkhdr
, sizeof(rxkhdr
));
214 /* encrypt from the session key */
215 token
= call
->conn
->params
.key
->payload
.data
[0];
216 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
218 sg_init_one(&sg
[0], sechdr
, sizeof(rxkhdr
));
219 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
220 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
221 skcipher_request_set_crypt(req
, &sg
[0], &sg
[0], sizeof(rxkhdr
), iv
.x
);
222 crypto_skcipher_encrypt(req
);
224 /* we want to encrypt the skbuff in-place */
225 nsg
= skb_cow_data(skb
, 0, &trailer
);
227 if (nsg
< 0 || nsg
> 16)
230 len
= data_size
+ call
->conn
->size_align
- 1;
231 len
&= ~(call
->conn
->size_align
- 1);
233 sg_init_table(sg
, nsg
);
234 skb_to_sgvec(skb
, sg
, 0, len
);
235 skcipher_request_set_crypt(req
, sg
, sg
, len
, iv
.x
);
236 crypto_skcipher_encrypt(req
);
242 skcipher_request_zero(req
);
247 * checksum an RxRPC packet header
249 static int rxkad_secure_packet(struct rxrpc_call
*call
,
254 struct rxrpc_skb_priv
*sp
;
255 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
256 struct rxrpc_crypt iv
;
257 struct scatterlist sg
;
263 _enter("{%d{%x}},{#%u},%zu,",
264 call
->debug_id
, key_serial(call
->conn
->params
.key
),
265 sp
->hdr
.seq
, data_size
);
267 if (!call
->conn
->cipher
)
270 ret
= key_validate(call
->conn
->params
.key
);
274 /* continue encrypting from where we left off */
275 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
277 /* calculate the security checksum */
278 x
= call
->channel
<< (32 - RXRPC_CIDSHIFT
);
279 x
|= sp
->hdr
.seq
& 0x3fffffff;
280 call
->crypto_buf
[0] = htonl(sp
->hdr
.callNumber
);
281 call
->crypto_buf
[1] = htonl(x
);
283 sg_init_one(&sg
, call
->crypto_buf
, 8);
284 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
285 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
286 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
287 crypto_skcipher_encrypt(req
);
288 skcipher_request_zero(req
);
290 y
= ntohl(call
->crypto_buf
[1]);
291 y
= (y
>> 16) & 0xffff;
293 y
= 1; /* zero checksums are not permitted */
296 switch (call
->conn
->params
.security_level
) {
297 case RXRPC_SECURITY_PLAIN
:
300 case RXRPC_SECURITY_AUTH
:
301 ret
= rxkad_secure_packet_auth(call
, skb
, data_size
, sechdr
);
303 case RXRPC_SECURITY_ENCRYPT
:
304 ret
= rxkad_secure_packet_encrypt(call
, skb
, data_size
,
312 _leave(" = %d [set %hx]", ret
, y
);
317 * decrypt partial encryption on a packet (level 1 security)
319 static int rxkad_verify_packet_auth(const struct rxrpc_call
*call
,
323 struct rxkad_level1_hdr sechdr
;
324 struct rxrpc_skb_priv
*sp
;
325 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
326 struct rxrpc_crypt iv
;
327 struct scatterlist sg
[16];
328 struct sk_buff
*trailer
;
337 /* we want to decrypt the skbuff in-place */
338 nsg
= skb_cow_data(skb
, 0, &trailer
);
339 if (nsg
< 0 || nsg
> 16)
342 sg_init_table(sg
, nsg
);
343 skb_to_sgvec(skb
, sg
, 0, 8);
345 /* start the decryption afresh */
346 memset(&iv
, 0, sizeof(iv
));
348 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
349 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
350 skcipher_request_set_crypt(req
, sg
, sg
, 8, iv
.x
);
351 crypto_skcipher_decrypt(req
);
352 skcipher_request_zero(req
);
354 /* remove the decrypted packet length */
355 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
357 if (!skb_pull(skb
, sizeof(sechdr
)))
360 buf
= ntohl(sechdr
.data_size
);
361 data_size
= buf
& 0xffff;
364 check
^= sp
->hdr
.seq
^ sp
->hdr
.callNumber
;
367 *_abort_code
= RXKADSEALEDINCON
;
371 /* shorten the packet to remove the padding */
372 if (data_size
> skb
->len
)
374 else if (data_size
< skb
->len
)
375 skb
->len
= data_size
;
377 _leave(" = 0 [dlen=%x]", data_size
);
381 *_abort_code
= RXKADDATALEN
;
383 _leave(" = -EPROTO");
387 _leave(" = -ENOMEM");
392 * wholly decrypt a packet (level 2 security)
394 static int rxkad_verify_packet_encrypt(const struct rxrpc_call
*call
,
398 const struct rxrpc_key_token
*token
;
399 struct rxkad_level2_hdr sechdr
;
400 struct rxrpc_skb_priv
*sp
;
401 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
402 struct rxrpc_crypt iv
;
403 struct scatterlist _sg
[4], *sg
;
404 struct sk_buff
*trailer
;
409 _enter(",{%d}", skb
->len
);
413 /* we want to decrypt the skbuff in-place */
414 nsg
= skb_cow_data(skb
, 0, &trailer
);
419 if (unlikely(nsg
> 4)) {
420 sg
= kmalloc(sizeof(*sg
) * nsg
, GFP_NOIO
);
425 sg_init_table(sg
, nsg
);
426 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
428 /* decrypt from the session key */
429 token
= call
->conn
->params
.key
->payload
.data
[0];
430 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
432 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
433 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
434 skcipher_request_set_crypt(req
, sg
, sg
, skb
->len
, iv
.x
);
435 crypto_skcipher_decrypt(req
);
436 skcipher_request_zero(req
);
440 /* remove the decrypted packet length */
441 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
443 if (!skb_pull(skb
, sizeof(sechdr
)))
446 buf
= ntohl(sechdr
.data_size
);
447 data_size
= buf
& 0xffff;
450 check
^= sp
->hdr
.seq
^ sp
->hdr
.callNumber
;
453 *_abort_code
= RXKADSEALEDINCON
;
457 /* shorten the packet to remove the padding */
458 if (data_size
> skb
->len
)
460 else if (data_size
< skb
->len
)
461 skb
->len
= data_size
;
463 _leave(" = 0 [dlen=%x]", data_size
);
467 *_abort_code
= RXKADDATALEN
;
469 _leave(" = -EPROTO");
473 _leave(" = -ENOMEM");
478 * verify the security on a received packet
480 static int rxkad_verify_packet(struct rxrpc_call
*call
,
484 SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
485 struct rxrpc_skb_priv
*sp
;
486 struct rxrpc_crypt iv
;
487 struct scatterlist sg
;
494 _enter("{%d{%x}},{#%u}",
495 call
->debug_id
, key_serial(call
->conn
->params
.key
), sp
->hdr
.seq
);
497 if (!call
->conn
->cipher
)
500 if (sp
->hdr
.securityIndex
!= RXRPC_SECURITY_RXKAD
) {
501 *_abort_code
= RXKADINCONSISTENCY
;
502 _leave(" = -EPROTO [not rxkad]");
506 /* continue encrypting from where we left off */
507 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
509 /* validate the security checksum */
510 x
= call
->channel
<< (32 - RXRPC_CIDSHIFT
);
511 x
|= sp
->hdr
.seq
& 0x3fffffff;
512 call
->crypto_buf
[0] = htonl(call
->call_id
);
513 call
->crypto_buf
[1] = htonl(x
);
515 sg_init_one(&sg
, call
->crypto_buf
, 8);
516 skcipher_request_set_tfm(req
, call
->conn
->cipher
);
517 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
518 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
519 crypto_skcipher_encrypt(req
);
520 skcipher_request_zero(req
);
522 y
= ntohl(call
->crypto_buf
[1]);
523 cksum
= (y
>> 16) & 0xffff;
525 cksum
= 1; /* zero checksums are not permitted */
527 if (sp
->hdr
.cksum
!= cksum
) {
528 *_abort_code
= RXKADSEALEDINCON
;
529 _leave(" = -EPROTO [csum failed]");
533 switch (call
->conn
->params
.security_level
) {
534 case RXRPC_SECURITY_PLAIN
:
537 case RXRPC_SECURITY_AUTH
:
538 ret
= rxkad_verify_packet_auth(call
, skb
, _abort_code
);
540 case RXRPC_SECURITY_ENCRYPT
:
541 ret
= rxkad_verify_packet_encrypt(call
, skb
, _abort_code
);
548 _leave(" = %d", ret
);
555 static int rxkad_issue_challenge(struct rxrpc_connection
*conn
)
557 struct rxkad_challenge challenge
;
558 struct rxrpc_wire_header whdr
;
565 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->params
.key
));
567 ret
= key_validate(conn
->params
.key
);
571 get_random_bytes(&conn
->security_nonce
, sizeof(conn
->security_nonce
));
573 challenge
.version
= htonl(2);
574 challenge
.nonce
= htonl(conn
->security_nonce
);
575 challenge
.min_level
= htonl(0);
576 challenge
.__padding
= 0;
578 msg
.msg_name
= &conn
->params
.peer
->srx
.transport
.sin
;
579 msg
.msg_namelen
= sizeof(conn
->params
.peer
->srx
.transport
.sin
);
580 msg
.msg_control
= NULL
;
581 msg
.msg_controllen
= 0;
584 whdr
.epoch
= htonl(conn
->proto
.epoch
);
585 whdr
.cid
= htonl(conn
->proto
.cid
);
588 whdr
.type
= RXRPC_PACKET_TYPE_CHALLENGE
;
589 whdr
.flags
= conn
->out_clientflag
;
591 whdr
.securityIndex
= conn
->security_ix
;
593 whdr
.serviceId
= htons(conn
->params
.service_id
);
595 iov
[0].iov_base
= &whdr
;
596 iov
[0].iov_len
= sizeof(whdr
);
597 iov
[1].iov_base
= &challenge
;
598 iov
[1].iov_len
= sizeof(challenge
);
600 len
= iov
[0].iov_len
+ iov
[1].iov_len
;
602 serial
= atomic_inc_return(&conn
->serial
);
603 whdr
.serial
= htonl(serial
);
604 _proto("Tx CHALLENGE %%%u", serial
);
606 ret
= kernel_sendmsg(conn
->params
.local
->socket
, &msg
, iov
, 2, len
);
608 _debug("sendmsg failed: %d", ret
);
617 * send a Kerberos security response
619 static int rxkad_send_response(struct rxrpc_connection
*conn
,
620 struct rxrpc_host_header
*hdr
,
621 struct rxkad_response
*resp
,
622 const struct rxkad_key
*s2
)
624 struct rxrpc_wire_header whdr
;
633 msg
.msg_name
= &conn
->params
.peer
->srx
.transport
.sin
;
634 msg
.msg_namelen
= sizeof(conn
->params
.peer
->srx
.transport
.sin
);
635 msg
.msg_control
= NULL
;
636 msg
.msg_controllen
= 0;
639 memset(&whdr
, 0, sizeof(whdr
));
640 whdr
.epoch
= htonl(hdr
->epoch
);
641 whdr
.cid
= htonl(hdr
->cid
);
642 whdr
.type
= RXRPC_PACKET_TYPE_RESPONSE
;
643 whdr
.flags
= conn
->out_clientflag
;
644 whdr
.securityIndex
= hdr
->securityIndex
;
645 whdr
.serviceId
= htons(hdr
->serviceId
);
647 iov
[0].iov_base
= &whdr
;
648 iov
[0].iov_len
= sizeof(whdr
);
649 iov
[1].iov_base
= resp
;
650 iov
[1].iov_len
= sizeof(*resp
);
651 iov
[2].iov_base
= (void *)s2
->ticket
;
652 iov
[2].iov_len
= s2
->ticket_len
;
654 len
= iov
[0].iov_len
+ iov
[1].iov_len
+ iov
[2].iov_len
;
656 serial
= atomic_inc_return(&conn
->serial
);
657 whdr
.serial
= htonl(serial
);
658 _proto("Tx RESPONSE %%%u", serial
);
660 ret
= kernel_sendmsg(conn
->params
.local
->socket
, &msg
, iov
, 3, len
);
662 _debug("sendmsg failed: %d", ret
);
671 * calculate the response checksum
673 static void rxkad_calc_response_checksum(struct rxkad_response
*response
)
677 u8
*p
= (u8
*) response
;
679 for (loop
= sizeof(*response
); loop
> 0; loop
--)
680 csum
= csum
* 0x10204081 + *p
++;
682 response
->encrypted
.checksum
= htonl(csum
);
686 * encrypt the response packet
688 static void rxkad_encrypt_response(struct rxrpc_connection
*conn
,
689 struct rxkad_response
*resp
,
690 const struct rxkad_key
*s2
)
692 SKCIPHER_REQUEST_ON_STACK(req
, conn
->cipher
);
693 struct rxrpc_crypt iv
;
694 struct scatterlist sg
[1];
696 /* continue encrypting from where we left off */
697 memcpy(&iv
, s2
->session_key
, sizeof(iv
));
699 sg_init_table(sg
, 1);
700 sg_set_buf(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
701 skcipher_request_set_tfm(req
, conn
->cipher
);
702 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
703 skcipher_request_set_crypt(req
, sg
, sg
, sizeof(resp
->encrypted
), iv
.x
);
704 crypto_skcipher_encrypt(req
);
705 skcipher_request_zero(req
);
709 * respond to a challenge packet
711 static int rxkad_respond_to_challenge(struct rxrpc_connection
*conn
,
715 const struct rxrpc_key_token
*token
;
716 struct rxkad_challenge challenge
;
717 struct rxkad_response resp
718 __attribute__((aligned(8))); /* must be aligned for crypto */
719 struct rxrpc_skb_priv
*sp
;
720 u32 version
, nonce
, min_level
, abort_code
;
723 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->params
.key
));
725 if (!conn
->params
.key
) {
726 _leave(" = -EPROTO [no key]");
730 ret
= key_validate(conn
->params
.key
);
732 *_abort_code
= RXKADEXPIRED
;
736 abort_code
= RXKADPACKETSHORT
;
738 if (skb_copy_bits(skb
, 0, &challenge
, sizeof(challenge
)) < 0)
741 version
= ntohl(challenge
.version
);
742 nonce
= ntohl(challenge
.nonce
);
743 min_level
= ntohl(challenge
.min_level
);
745 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
746 sp
->hdr
.serial
, version
, nonce
, min_level
);
748 abort_code
= RXKADINCONSISTENCY
;
749 if (version
!= RXKAD_VERSION
)
752 abort_code
= RXKADLEVELFAIL
;
753 if (conn
->params
.security_level
< min_level
)
756 token
= conn
->params
.key
->payload
.data
[0];
758 /* build the response packet */
759 memset(&resp
, 0, sizeof(resp
));
761 resp
.version
= htonl(RXKAD_VERSION
);
762 resp
.encrypted
.epoch
= htonl(conn
->proto
.epoch
);
763 resp
.encrypted
.cid
= htonl(conn
->proto
.cid
);
764 resp
.encrypted
.securityIndex
= htonl(conn
->security_ix
);
765 resp
.encrypted
.inc_nonce
= htonl(nonce
+ 1);
766 resp
.encrypted
.level
= htonl(conn
->params
.security_level
);
767 resp
.kvno
= htonl(token
->kad
->kvno
);
768 resp
.ticket_len
= htonl(token
->kad
->ticket_len
);
770 resp
.encrypted
.call_id
[0] = htonl(conn
->channels
[0].call_counter
);
771 resp
.encrypted
.call_id
[1] = htonl(conn
->channels
[1].call_counter
);
772 resp
.encrypted
.call_id
[2] = htonl(conn
->channels
[2].call_counter
);
773 resp
.encrypted
.call_id
[3] = htonl(conn
->channels
[3].call_counter
);
775 /* calculate the response checksum and then do the encryption */
776 rxkad_calc_response_checksum(&resp
);
777 rxkad_encrypt_response(conn
, &resp
, token
->kad
);
778 return rxkad_send_response(conn
, &sp
->hdr
, &resp
, token
->kad
);
781 *_abort_code
= abort_code
;
782 _leave(" = -EPROTO [%d]", abort_code
);
787 * decrypt the kerberos IV ticket in the response
789 static int rxkad_decrypt_ticket(struct rxrpc_connection
*conn
,
790 void *ticket
, size_t ticket_len
,
791 struct rxrpc_crypt
*_session_key
,
795 struct skcipher_request
*req
;
796 struct rxrpc_crypt iv
, key
;
797 struct scatterlist sg
[1];
803 u8
*p
, *q
, *name
, *end
;
805 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->server_key
));
809 ret
= key_validate(conn
->server_key
);
813 *_abort_code
= RXKADEXPIRED
;
816 *_abort_code
= RXKADNOAUTH
;
821 ASSERT(conn
->server_key
->payload
.data
[0] != NULL
);
822 ASSERTCMP((unsigned long) ticket
& 7UL, ==, 0);
824 memcpy(&iv
, &conn
->server_key
->payload
.data
[2], sizeof(iv
));
826 req
= skcipher_request_alloc(conn
->server_key
->payload
.data
[0],
829 *_abort_code
= RXKADNOAUTH
;
834 sg_init_one(&sg
[0], ticket
, ticket_len
);
835 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
836 skcipher_request_set_crypt(req
, sg
, sg
, ticket_len
, iv
.x
);
837 crypto_skcipher_decrypt(req
);
838 skcipher_request_free(req
);
841 end
= p
+ ticket_len
;
846 q = memchr(p, 0, end - p); \
847 if (!q || q - p > (size)) \
856 /* extract the ticket flags */
857 _debug("KIV FLAGS: %x", *p
);
858 little_endian
= *p
& 1;
861 /* extract the authentication name */
863 _debug("KIV ANAME: %s", name
);
865 /* extract the principal's instance */
867 _debug("KIV INST : %s", name
);
869 /* extract the principal's authentication domain */
871 _debug("KIV REALM: %s", name
);
873 if (end
- p
< 4 + 8 + 4 + 2)
876 /* get the IPv4 address of the entity that requested the ticket */
877 memcpy(&addr
, p
, sizeof(addr
));
879 _debug("KIV ADDR : %pI4", &addr
);
881 /* get the session key from the ticket */
882 memcpy(&key
, p
, sizeof(key
));
884 _debug("KIV KEY : %08x %08x", ntohl(key
.n
[0]), ntohl(key
.n
[1]));
885 memcpy(_session_key
, &key
, sizeof(key
));
887 /* get the ticket's lifetime */
888 life
= *p
++ * 5 * 60;
889 _debug("KIV LIFE : %u", life
);
891 /* get the issue time of the ticket */
894 memcpy(&stamp
, p
, 4);
895 issue
= le32_to_cpu(stamp
);
898 memcpy(&stamp
, p
, 4);
899 issue
= be32_to_cpu(stamp
);
903 _debug("KIV ISSUE: %lx [%lx]", issue
, now
);
905 /* check the ticket is in date */
907 *_abort_code
= RXKADNOAUTH
;
912 if (issue
< now
- life
) {
913 *_abort_code
= RXKADEXPIRED
;
918 *_expiry
= issue
+ life
;
920 /* get the service name */
922 _debug("KIV SNAME: %s", name
);
924 /* get the service instance name */
926 _debug("KIV SINST: %s", name
);
930 _leave(" = %d", ret
);
934 *_abort_code
= RXKADBADTICKET
;
940 * decrypt the response packet
942 static void rxkad_decrypt_response(struct rxrpc_connection
*conn
,
943 struct rxkad_response
*resp
,
944 const struct rxrpc_crypt
*session_key
)
946 SKCIPHER_REQUEST_ON_STACK(req
, rxkad_ci
);
947 struct scatterlist sg
[1];
948 struct rxrpc_crypt iv
;
951 ntohl(session_key
->n
[0]), ntohl(session_key
->n
[1]));
953 ASSERT(rxkad_ci
!= NULL
);
955 mutex_lock(&rxkad_ci_mutex
);
956 if (crypto_skcipher_setkey(rxkad_ci
, session_key
->x
,
957 sizeof(*session_key
)) < 0)
960 memcpy(&iv
, session_key
, sizeof(iv
));
962 sg_init_table(sg
, 1);
963 sg_set_buf(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
964 skcipher_request_set_tfm(req
, rxkad_ci
);
965 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
966 skcipher_request_set_crypt(req
, sg
, sg
, sizeof(resp
->encrypted
), iv
.x
);
967 crypto_skcipher_decrypt(req
);
968 skcipher_request_zero(req
);
970 mutex_unlock(&rxkad_ci_mutex
);
978 static int rxkad_verify_response(struct rxrpc_connection
*conn
,
982 struct rxkad_response response
983 __attribute__((aligned(8))); /* must be aligned for crypto */
984 struct rxrpc_skb_priv
*sp
;
985 struct rxrpc_crypt session_key
;
988 u32 abort_code
, version
, kvno
, ticket_len
, level
;
992 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->server_key
));
994 abort_code
= RXKADPACKETSHORT
;
995 if (skb_copy_bits(skb
, 0, &response
, sizeof(response
)) < 0)
997 if (!pskb_pull(skb
, sizeof(response
)))
1000 version
= ntohl(response
.version
);
1001 ticket_len
= ntohl(response
.ticket_len
);
1002 kvno
= ntohl(response
.kvno
);
1003 sp
= rxrpc_skb(skb
);
1004 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
1005 sp
->hdr
.serial
, version
, kvno
, ticket_len
);
1007 abort_code
= RXKADINCONSISTENCY
;
1008 if (version
!= RXKAD_VERSION
)
1009 goto protocol_error
;
1011 abort_code
= RXKADTICKETLEN
;
1012 if (ticket_len
< 4 || ticket_len
> MAXKRB5TICKETLEN
)
1013 goto protocol_error
;
1015 abort_code
= RXKADUNKNOWNKEY
;
1016 if (kvno
>= RXKAD_TKT_TYPE_KERBEROS_V5
)
1017 goto protocol_error
;
1019 /* extract the kerberos ticket and decrypt and decode it */
1020 ticket
= kmalloc(ticket_len
, GFP_NOFS
);
1024 abort_code
= RXKADPACKETSHORT
;
1025 if (skb_copy_bits(skb
, 0, ticket
, ticket_len
) < 0)
1026 goto protocol_error_free
;
1028 ret
= rxkad_decrypt_ticket(conn
, ticket
, ticket_len
, &session_key
,
1029 &expiry
, &abort_code
);
1031 *_abort_code
= abort_code
;
1036 /* use the session key from inside the ticket to decrypt the
1038 rxkad_decrypt_response(conn
, &response
, &session_key
);
1040 abort_code
= RXKADSEALEDINCON
;
1041 if (ntohl(response
.encrypted
.epoch
) != conn
->proto
.epoch
)
1042 goto protocol_error_free
;
1043 if (ntohl(response
.encrypted
.cid
) != conn
->proto
.cid
)
1044 goto protocol_error_free
;
1045 if (ntohl(response
.encrypted
.securityIndex
) != conn
->security_ix
)
1046 goto protocol_error_free
;
1047 csum
= response
.encrypted
.checksum
;
1048 response
.encrypted
.checksum
= 0;
1049 rxkad_calc_response_checksum(&response
);
1050 if (response
.encrypted
.checksum
!= csum
)
1051 goto protocol_error_free
;
1053 spin_lock(&conn
->channel_lock
);
1054 for (i
= 0; i
< RXRPC_MAXCALLS
; i
++) {
1055 struct rxrpc_call
*call
;
1056 u32 call_id
= ntohl(response
.encrypted
.call_id
[i
]);
1058 if (call_id
> INT_MAX
)
1059 goto protocol_error_unlock
;
1061 if (call_id
< conn
->channels
[i
].call_counter
)
1062 goto protocol_error_unlock
;
1063 if (call_id
> conn
->channels
[i
].call_counter
) {
1064 call
= rcu_dereference_protected(
1065 conn
->channels
[i
].call
,
1066 lockdep_is_held(&conn
->channel_lock
));
1067 if (call
&& call
->state
< RXRPC_CALL_COMPLETE
)
1068 goto protocol_error_unlock
;
1069 conn
->channels
[i
].call_counter
= call_id
;
1072 spin_unlock(&conn
->channel_lock
);
1074 abort_code
= RXKADOUTOFSEQUENCE
;
1075 if (ntohl(response
.encrypted
.inc_nonce
) != conn
->security_nonce
+ 1)
1076 goto protocol_error_free
;
1078 abort_code
= RXKADLEVELFAIL
;
1079 level
= ntohl(response
.encrypted
.level
);
1080 if (level
> RXRPC_SECURITY_ENCRYPT
)
1081 goto protocol_error_free
;
1082 conn
->params
.security_level
= level
;
1084 /* create a key to hold the security data and expiration time - after
1085 * this the connection security can be handled in exactly the same way
1086 * as for a client connection */
1087 ret
= rxrpc_get_server_data_key(conn
, &session_key
, expiry
, kvno
);
1097 protocol_error_unlock
:
1098 spin_unlock(&conn
->channel_lock
);
1099 protocol_error_free
:
1102 *_abort_code
= abort_code
;
1103 _leave(" = -EPROTO [%d]", abort_code
);
1108 * clear the connection security
1110 static void rxkad_clear(struct rxrpc_connection
*conn
)
1115 crypto_free_skcipher(conn
->cipher
);
1119 * Initialise the rxkad security service.
1121 static int rxkad_init(void)
1123 /* pin the cipher we need so that the crypto layer doesn't invoke
1124 * keventd to go get it */
1125 rxkad_ci
= crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
1126 return PTR_ERR_OR_ZERO(rxkad_ci
);
1130 * Clean up the rxkad security service.
1132 static void rxkad_exit(void)
1135 crypto_free_skcipher(rxkad_ci
);
1139 * RxRPC Kerberos-based security
1141 const struct rxrpc_security rxkad
= {
1143 .security_index
= RXRPC_SECURITY_RXKAD
,
1146 .init_connection_security
= rxkad_init_connection_security
,
1147 .prime_packet_security
= rxkad_prime_packet_security
,
1148 .secure_packet
= rxkad_secure_packet
,
1149 .verify_packet
= rxkad_verify_packet
,
1150 .issue_challenge
= rxkad_issue_challenge
,
1151 .respond_to_challenge
= rxkad_respond_to_challenge
,
1152 .verify_response
= rxkad_verify_response
,
1153 .clear
= rxkad_clear
,