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 #include <linux/module.h>
13 #include <linux/net.h>
14 #include <linux/skbuff.h>
15 #include <linux/udp.h>
16 #include <linux/crypto.h>
17 #include <linux/scatterlist.h>
18 #include <linux/ctype.h>
20 #include <net/af_rxrpc.h>
21 #define rxrpc_debug rxkad_debug
22 #include "ar-internal.h"
24 #define RXKAD_VERSION 2
25 #define MAXKRB5TICKETLEN 1024
26 #define RXKAD_TKT_TYPE_KERBEROS_V5 256
27 #define ANAME_SZ 40 /* size of authentication name */
28 #define INST_SZ 40 /* size of principal's instance */
29 #define REALM_SZ 40 /* size of principal's auth domain */
30 #define SNAME_SZ 40 /* size of service name */
33 module_param_named(debug
, rxrpc_debug
, uint
, S_IWUSR
| S_IRUGO
);
34 MODULE_PARM_DESC(debug
, "rxkad debugging mask");
36 struct rxkad_level1_hdr
{
37 __be32 data_size
; /* true data size (excluding padding) */
40 struct rxkad_level2_hdr
{
41 __be32 data_size
; /* true data size (excluding padding) */
42 __be32 checksum
; /* decrypted data checksum */
45 MODULE_DESCRIPTION("RxRPC network protocol type-2 security (Kerberos)");
46 MODULE_AUTHOR("Red Hat, Inc.");
47 MODULE_LICENSE("GPL");
50 * this holds a pinned cipher so that keventd doesn't get called by the cipher
51 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
54 static struct crypto_blkcipher
*rxkad_ci
;
55 static DEFINE_MUTEX(rxkad_ci_mutex
);
58 * initialise connection security
60 static int rxkad_init_connection_security(struct rxrpc_connection
*conn
)
62 struct rxrpc_key_payload
*payload
;
63 struct crypto_blkcipher
*ci
;
66 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->key
));
68 payload
= conn
->key
->payload
.data
;
69 conn
->security_ix
= payload
->k
.security_index
;
71 ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
78 if (crypto_blkcipher_setkey(ci
, payload
->k
.session_key
,
79 sizeof(payload
->k
.session_key
)) < 0)
82 switch (conn
->security_level
) {
83 case RXRPC_SECURITY_PLAIN
:
85 case RXRPC_SECURITY_AUTH
:
87 conn
->security_size
= sizeof(struct rxkad_level1_hdr
);
88 conn
->header_size
+= sizeof(struct rxkad_level1_hdr
);
90 case RXRPC_SECURITY_ENCRYPT
:
92 conn
->security_size
= sizeof(struct rxkad_level2_hdr
);
93 conn
->header_size
+= sizeof(struct rxkad_level2_hdr
);
103 _leave(" = %d", ret
);
108 * prime the encryption state with the invariant parts of a connection's
111 static void rxkad_prime_packet_security(struct rxrpc_connection
*conn
)
113 struct rxrpc_key_payload
*payload
;
114 struct blkcipher_desc desc
;
115 struct scatterlist sg
[2];
116 struct rxrpc_crypt iv
;
119 } tmpbuf
__attribute__((aligned(16))); /* must all be in same page */
126 payload
= conn
->key
->payload
.data
;
127 memcpy(&iv
, payload
->k
.session_key
, sizeof(iv
));
129 desc
.tfm
= conn
->cipher
;
133 tmpbuf
.x
[0] = conn
->epoch
;
134 tmpbuf
.x
[1] = conn
->cid
;
136 tmpbuf
.x
[3] = htonl(conn
->security_ix
);
138 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
139 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
140 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
142 memcpy(&conn
->csum_iv
, &tmpbuf
.x
[2], sizeof(conn
->csum_iv
));
143 ASSERTCMP(conn
->csum_iv
.n
[0], ==, tmpbuf
.x
[2]);
149 * partially encrypt a packet (level 1 security)
151 static int rxkad_secure_packet_auth(const struct rxrpc_call
*call
,
156 struct rxrpc_skb_priv
*sp
;
157 struct blkcipher_desc desc
;
158 struct rxrpc_crypt iv
;
159 struct scatterlist sg
[2];
161 struct rxkad_level1_hdr hdr
;
162 __be32 first
; /* first four bytes of data and padding */
163 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
170 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
171 data_size
|= (u32
) check
<< 16;
173 tmpbuf
.hdr
.data_size
= htonl(data_size
);
174 memcpy(&tmpbuf
.first
, sechdr
+ 4, sizeof(tmpbuf
.first
));
176 /* start the encryption afresh */
177 memset(&iv
, 0, sizeof(iv
));
178 desc
.tfm
= call
->conn
->cipher
;
182 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
183 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
184 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
186 memcpy(sechdr
, &tmpbuf
, sizeof(tmpbuf
));
193 * wholly encrypt a packet (level 2 security)
195 static int rxkad_secure_packet_encrypt(const struct rxrpc_call
*call
,
200 const struct rxrpc_key_payload
*payload
;
201 struct rxkad_level2_hdr rxkhdr
202 __attribute__((aligned(8))); /* must be all on one page */
203 struct rxrpc_skb_priv
*sp
;
204 struct blkcipher_desc desc
;
205 struct rxrpc_crypt iv
;
206 struct scatterlist sg
[16];
207 struct sk_buff
*trailer
;
216 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
218 rxkhdr
.data_size
= htonl(data_size
| (u32
) check
<< 16);
221 /* encrypt from the session key */
222 payload
= call
->conn
->key
->payload
.data
;
223 memcpy(&iv
, payload
->k
.session_key
, sizeof(iv
));
224 desc
.tfm
= call
->conn
->cipher
;
228 sg_init_one(&sg
[0], sechdr
, sizeof(rxkhdr
));
229 sg_init_one(&sg
[1], &rxkhdr
, sizeof(rxkhdr
));
230 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(rxkhdr
));
232 /* we want to encrypt the skbuff in-place */
233 nsg
= skb_cow_data(skb
, 0, &trailer
);
234 if (nsg
< 0 || nsg
> 16)
237 len
= data_size
+ call
->conn
->size_align
- 1;
238 len
&= ~(call
->conn
->size_align
- 1);
240 sg_init_table(sg
, nsg
);
241 skb_to_sgvec(skb
, sg
, 0, len
);
242 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, len
);
249 * checksum an RxRPC packet header
251 static int rxkad_secure_packet(const struct rxrpc_call
*call
,
256 struct rxrpc_skb_priv
*sp
;
257 struct blkcipher_desc desc
;
258 struct rxrpc_crypt iv
;
259 struct scatterlist sg
[2];
262 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
269 _enter("{%d{%x}},{#%u},%zu,",
270 call
->debug_id
, key_serial(call
->conn
->key
), ntohl(sp
->hdr
.seq
),
273 if (!call
->conn
->cipher
)
276 ret
= key_validate(call
->conn
->key
);
280 /* continue encrypting from where we left off */
281 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
282 desc
.tfm
= call
->conn
->cipher
;
286 /* calculate the security checksum */
287 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
288 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
289 tmpbuf
.x
[0] = sp
->hdr
.callNumber
;
292 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
293 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
294 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
296 y
= ntohl(tmpbuf
.x
[1]);
297 y
= (y
>> 16) & 0xffff;
299 y
= 1; /* zero checksums are not permitted */
300 sp
->hdr
.cksum
= htons(y
);
302 switch (call
->conn
->security_level
) {
303 case RXRPC_SECURITY_PLAIN
:
306 case RXRPC_SECURITY_AUTH
:
307 ret
= rxkad_secure_packet_auth(call
, skb
, data_size
, sechdr
);
309 case RXRPC_SECURITY_ENCRYPT
:
310 ret
= rxkad_secure_packet_encrypt(call
, skb
, data_size
,
318 _leave(" = %d [set %hx]", ret
, y
);
323 * decrypt partial encryption on a packet (level 1 security)
325 static int rxkad_verify_packet_auth(const struct rxrpc_call
*call
,
329 struct rxkad_level1_hdr sechdr
;
330 struct rxrpc_skb_priv
*sp
;
331 struct blkcipher_desc desc
;
332 struct rxrpc_crypt iv
;
333 struct scatterlist sg
[16];
334 struct sk_buff
*trailer
;
343 /* we want to decrypt the skbuff in-place */
344 nsg
= skb_cow_data(skb
, 0, &trailer
);
345 if (nsg
< 0 || nsg
> 16)
348 sg_init_table(sg
, nsg
);
349 skb_to_sgvec(skb
, sg
, 0, 8);
351 /* start the decryption afresh */
352 memset(&iv
, 0, sizeof(iv
));
353 desc
.tfm
= call
->conn
->cipher
;
357 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, 8);
359 /* remove the decrypted packet length */
360 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
362 if (!skb_pull(skb
, sizeof(sechdr
)))
365 buf
= ntohl(sechdr
.data_size
);
366 data_size
= buf
& 0xffff;
369 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
372 *_abort_code
= RXKADSEALEDINCON
;
376 /* shorten the packet to remove the padding */
377 if (data_size
> skb
->len
)
379 else if (data_size
< skb
->len
)
380 skb
->len
= data_size
;
382 _leave(" = 0 [dlen=%x]", data_size
);
386 *_abort_code
= RXKADDATALEN
;
388 _leave(" = -EPROTO");
392 _leave(" = -ENOMEM");
397 * wholly decrypt a packet (level 2 security)
399 static int rxkad_verify_packet_encrypt(const struct rxrpc_call
*call
,
403 const struct rxrpc_key_payload
*payload
;
404 struct rxkad_level2_hdr sechdr
;
405 struct rxrpc_skb_priv
*sp
;
406 struct blkcipher_desc desc
;
407 struct rxrpc_crypt iv
;
408 struct scatterlist _sg
[4], *sg
;
409 struct sk_buff
*trailer
;
414 _enter(",{%d}", skb
->len
);
418 /* we want to decrypt the skbuff in-place */
419 nsg
= skb_cow_data(skb
, 0, &trailer
);
424 if (unlikely(nsg
> 4)) {
425 sg
= kmalloc(sizeof(*sg
) * nsg
, GFP_NOIO
);
430 sg_init_table(sg
, nsg
);
431 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
433 /* decrypt from the session key */
434 payload
= call
->conn
->key
->payload
.data
;
435 memcpy(&iv
, payload
->k
.session_key
, sizeof(iv
));
436 desc
.tfm
= call
->conn
->cipher
;
440 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, skb
->len
);
444 /* remove the decrypted packet length */
445 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
447 if (!skb_pull(skb
, sizeof(sechdr
)))
450 buf
= ntohl(sechdr
.data_size
);
451 data_size
= buf
& 0xffff;
454 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
457 *_abort_code
= RXKADSEALEDINCON
;
461 /* shorten the packet to remove the padding */
462 if (data_size
> skb
->len
)
464 else if (data_size
< skb
->len
)
465 skb
->len
= data_size
;
467 _leave(" = 0 [dlen=%x]", data_size
);
471 *_abort_code
= RXKADDATALEN
;
473 _leave(" = -EPROTO");
477 _leave(" = -ENOMEM");
482 * verify the security on a received packet
484 static int rxkad_verify_packet(const struct rxrpc_call
*call
,
488 struct blkcipher_desc desc
;
489 struct rxrpc_skb_priv
*sp
;
490 struct rxrpc_crypt iv
;
491 struct scatterlist sg
[2];
494 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
502 _enter("{%d{%x}},{#%u}",
503 call
->debug_id
, key_serial(call
->conn
->key
),
506 if (!call
->conn
->cipher
)
509 if (sp
->hdr
.securityIndex
!= 2) {
510 *_abort_code
= RXKADINCONSISTENCY
;
511 _leave(" = -EPROTO [not rxkad]");
515 /* continue encrypting from where we left off */
516 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
517 desc
.tfm
= call
->conn
->cipher
;
521 /* validate the security checksum */
522 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
523 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
524 tmpbuf
.x
[0] = call
->call_id
;
527 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
528 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
529 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
531 y
= ntohl(tmpbuf
.x
[1]);
532 y
= (y
>> 16) & 0xffff;
534 y
= 1; /* zero checksums are not permitted */
537 if (sp
->hdr
.cksum
!= cksum
) {
538 *_abort_code
= RXKADSEALEDINCON
;
539 _leave(" = -EPROTO [csum failed]");
543 switch (call
->conn
->security_level
) {
544 case RXRPC_SECURITY_PLAIN
:
547 case RXRPC_SECURITY_AUTH
:
548 ret
= rxkad_verify_packet_auth(call
, skb
, _abort_code
);
550 case RXRPC_SECURITY_ENCRYPT
:
551 ret
= rxkad_verify_packet_encrypt(call
, skb
, _abort_code
);
558 _leave(" = %d", ret
);
565 static int rxkad_issue_challenge(struct rxrpc_connection
*conn
)
567 struct rxkad_challenge challenge
;
568 struct rxrpc_header hdr
;
574 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
576 ret
= key_validate(conn
->key
);
580 get_random_bytes(&conn
->security_nonce
, sizeof(conn
->security_nonce
));
582 challenge
.version
= htonl(2);
583 challenge
.nonce
= htonl(conn
->security_nonce
);
584 challenge
.min_level
= htonl(0);
585 challenge
.__padding
= 0;
587 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
588 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
589 msg
.msg_control
= NULL
;
590 msg
.msg_controllen
= 0;
593 hdr
.epoch
= conn
->epoch
;
597 hdr
.type
= RXRPC_PACKET_TYPE_CHALLENGE
;
598 hdr
.flags
= conn
->out_clientflag
;
600 hdr
.securityIndex
= conn
->security_ix
;
602 hdr
.serviceId
= conn
->service_id
;
604 iov
[0].iov_base
= &hdr
;
605 iov
[0].iov_len
= sizeof(hdr
);
606 iov
[1].iov_base
= &challenge
;
607 iov
[1].iov_len
= sizeof(challenge
);
609 len
= iov
[0].iov_len
+ iov
[1].iov_len
;
611 hdr
.serial
= htonl(atomic_inc_return(&conn
->serial
));
612 _proto("Tx CHALLENGE %%%u", ntohl(hdr
.serial
));
614 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 2, len
);
616 _debug("sendmsg failed: %d", ret
);
625 * send a Kerberos security response
627 static int rxkad_send_response(struct rxrpc_connection
*conn
,
628 struct rxrpc_header
*hdr
,
629 struct rxkad_response
*resp
,
630 const struct rxkad_key
*s2
)
639 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
640 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
641 msg
.msg_control
= NULL
;
642 msg
.msg_controllen
= 0;
645 hdr
->epoch
= conn
->epoch
;
647 hdr
->type
= RXRPC_PACKET_TYPE_RESPONSE
;
648 hdr
->flags
= conn
->out_clientflag
;
652 iov
[0].iov_base
= hdr
;
653 iov
[0].iov_len
= sizeof(*hdr
);
654 iov
[1].iov_base
= resp
;
655 iov
[1].iov_len
= sizeof(*resp
);
656 iov
[2].iov_base
= (void *) s2
->ticket
;
657 iov
[2].iov_len
= s2
->ticket_len
;
659 len
= iov
[0].iov_len
+ iov
[1].iov_len
+ iov
[2].iov_len
;
661 hdr
->serial
= htonl(atomic_inc_return(&conn
->serial
));
662 _proto("Tx RESPONSE %%%u", ntohl(hdr
->serial
));
664 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 3, len
);
666 _debug("sendmsg failed: %d", ret
);
675 * calculate the response checksum
677 static void rxkad_calc_response_checksum(struct rxkad_response
*response
)
681 u8
*p
= (u8
*) response
;
683 for (loop
= sizeof(*response
); loop
> 0; loop
--)
684 csum
= csum
* 0x10204081 + *p
++;
686 response
->encrypted
.checksum
= htonl(csum
);
690 * load a scatterlist with a potentially split-page buffer
692 static void rxkad_sg_set_buf2(struct scatterlist sg
[2],
693 void *buf
, size_t buflen
)
697 sg_init_table(sg
, 2);
699 sg_set_buf(&sg
[0], buf
, buflen
);
700 if (sg
[0].offset
+ buflen
> PAGE_SIZE
) {
701 /* the buffer was split over two pages */
702 sg
[0].length
= PAGE_SIZE
- sg
[0].offset
;
703 sg_set_buf(&sg
[1], buf
+ sg
[0].length
, buflen
- sg
[0].length
);
707 sg_mark_end(&sg
[nsg
- 1]);
709 ASSERTCMP(sg
[0].length
+ sg
[1].length
, ==, buflen
);
713 * encrypt the response packet
715 static void rxkad_encrypt_response(struct rxrpc_connection
*conn
,
716 struct rxkad_response
*resp
,
717 const struct rxkad_key
*s2
)
719 struct blkcipher_desc desc
;
720 struct rxrpc_crypt iv
;
721 struct scatterlist sg
[2];
723 /* continue encrypting from where we left off */
724 memcpy(&iv
, s2
->session_key
, sizeof(iv
));
725 desc
.tfm
= conn
->cipher
;
729 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
730 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
734 * respond to a challenge packet
736 static int rxkad_respond_to_challenge(struct rxrpc_connection
*conn
,
740 const struct rxrpc_key_payload
*payload
;
741 struct rxkad_challenge challenge
;
742 struct rxkad_response resp
743 __attribute__((aligned(8))); /* must be aligned for crypto */
744 struct rxrpc_skb_priv
*sp
;
745 u32 version
, nonce
, min_level
, abort_code
;
748 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
751 _leave(" = -EPROTO [no key]");
755 ret
= key_validate(conn
->key
);
757 *_abort_code
= RXKADEXPIRED
;
761 abort_code
= RXKADPACKETSHORT
;
763 if (skb_copy_bits(skb
, 0, &challenge
, sizeof(challenge
)) < 0)
766 version
= ntohl(challenge
.version
);
767 nonce
= ntohl(challenge
.nonce
);
768 min_level
= ntohl(challenge
.min_level
);
770 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
771 ntohl(sp
->hdr
.serial
), version
, nonce
, min_level
);
773 abort_code
= RXKADINCONSISTENCY
;
774 if (version
!= RXKAD_VERSION
)
777 abort_code
= RXKADLEVELFAIL
;
778 if (conn
->security_level
< min_level
)
781 payload
= conn
->key
->payload
.data
;
783 /* build the response packet */
784 memset(&resp
, 0, sizeof(resp
));
786 resp
.version
= RXKAD_VERSION
;
787 resp
.encrypted
.epoch
= conn
->epoch
;
788 resp
.encrypted
.cid
= conn
->cid
;
789 resp
.encrypted
.securityIndex
= htonl(conn
->security_ix
);
790 resp
.encrypted
.call_id
[0] =
791 (conn
->channels
[0] ? conn
->channels
[0]->call_id
: 0);
792 resp
.encrypted
.call_id
[1] =
793 (conn
->channels
[1] ? conn
->channels
[1]->call_id
: 0);
794 resp
.encrypted
.call_id
[2] =
795 (conn
->channels
[2] ? conn
->channels
[2]->call_id
: 0);
796 resp
.encrypted
.call_id
[3] =
797 (conn
->channels
[3] ? conn
->channels
[3]->call_id
: 0);
798 resp
.encrypted
.inc_nonce
= htonl(nonce
+ 1);
799 resp
.encrypted
.level
= htonl(conn
->security_level
);
800 resp
.kvno
= htonl(payload
->k
.kvno
);
801 resp
.ticket_len
= htonl(payload
->k
.ticket_len
);
803 /* calculate the response checksum and then do the encryption */
804 rxkad_calc_response_checksum(&resp
);
805 rxkad_encrypt_response(conn
, &resp
, &payload
->k
);
806 return rxkad_send_response(conn
, &sp
->hdr
, &resp
, &payload
->k
);
809 *_abort_code
= abort_code
;
810 _leave(" = -EPROTO [%d]", abort_code
);
815 * decrypt the kerberos IV ticket in the response
817 static int rxkad_decrypt_ticket(struct rxrpc_connection
*conn
,
818 void *ticket
, size_t ticket_len
,
819 struct rxrpc_crypt
*_session_key
,
823 struct blkcipher_desc desc
;
824 struct rxrpc_crypt iv
, key
;
825 struct scatterlist sg
[1];
831 u8
*p
, *q
, *name
, *end
;
833 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->server_key
));
837 ret
= key_validate(conn
->server_key
);
841 *_abort_code
= RXKADEXPIRED
;
844 *_abort_code
= RXKADNOAUTH
;
849 ASSERT(conn
->server_key
->payload
.data
!= NULL
);
850 ASSERTCMP((unsigned long) ticket
& 7UL, ==, 0);
852 memcpy(&iv
, &conn
->server_key
->type_data
, sizeof(iv
));
854 desc
.tfm
= conn
->server_key
->payload
.data
;
858 sg_init_one(&sg
[0], ticket
, ticket_len
);
859 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, ticket_len
);
862 end
= p
+ ticket_len
;
867 q = memchr(p, 0, end - p); \
868 if (!q || q - p > (size)) \
877 /* extract the ticket flags */
878 _debug("KIV FLAGS: %x", *p
);
879 little_endian
= *p
& 1;
882 /* extract the authentication name */
884 _debug("KIV ANAME: %s", name
);
886 /* extract the principal's instance */
888 _debug("KIV INST : %s", name
);
890 /* extract the principal's authentication domain */
892 _debug("KIV REALM: %s", name
);
894 if (end
- p
< 4 + 8 + 4 + 2)
897 /* get the IPv4 address of the entity that requested the ticket */
898 memcpy(&addr
, p
, sizeof(addr
));
900 _debug("KIV ADDR : %pI4", &addr
);
902 /* get the session key from the ticket */
903 memcpy(&key
, p
, sizeof(key
));
905 _debug("KIV KEY : %08x %08x", ntohl(key
.n
[0]), ntohl(key
.n
[1]));
906 memcpy(_session_key
, &key
, sizeof(key
));
908 /* get the ticket's lifetime */
909 life
= *p
++ * 5 * 60;
910 _debug("KIV LIFE : %u", life
);
912 /* get the issue time of the ticket */
915 memcpy(&stamp
, p
, 4);
916 issue
= le32_to_cpu(stamp
);
919 memcpy(&stamp
, p
, 4);
920 issue
= be32_to_cpu(stamp
);
924 _debug("KIV ISSUE: %lx [%lx]", issue
, now
);
926 /* check the ticket is in date */
928 *_abort_code
= RXKADNOAUTH
;
933 if (issue
< now
- life
) {
934 *_abort_code
= RXKADEXPIRED
;
939 *_expiry
= issue
+ life
;
941 /* get the service name */
943 _debug("KIV SNAME: %s", name
);
945 /* get the service instance name */
947 _debug("KIV SINST: %s", name
);
951 _leave(" = %d", ret
);
955 *_abort_code
= RXKADBADTICKET
;
961 * decrypt the response packet
963 static void rxkad_decrypt_response(struct rxrpc_connection
*conn
,
964 struct rxkad_response
*resp
,
965 const struct rxrpc_crypt
*session_key
)
967 struct blkcipher_desc desc
;
968 struct scatterlist sg
[2];
969 struct rxrpc_crypt iv
;
972 ntohl(session_key
->n
[0]), ntohl(session_key
->n
[1]));
974 ASSERT(rxkad_ci
!= NULL
);
976 mutex_lock(&rxkad_ci_mutex
);
977 if (crypto_blkcipher_setkey(rxkad_ci
, session_key
->x
,
978 sizeof(*session_key
)) < 0)
981 memcpy(&iv
, session_key
, sizeof(iv
));
986 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
987 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
988 mutex_unlock(&rxkad_ci_mutex
);
996 static int rxkad_verify_response(struct rxrpc_connection
*conn
,
1000 struct rxkad_response response
1001 __attribute__((aligned(8))); /* must be aligned for crypto */
1002 struct rxrpc_skb_priv
*sp
;
1003 struct rxrpc_crypt session_key
;
1006 u32 abort_code
, version
, kvno
, ticket_len
, level
;
1010 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->server_key
));
1012 abort_code
= RXKADPACKETSHORT
;
1013 if (skb_copy_bits(skb
, 0, &response
, sizeof(response
)) < 0)
1014 goto protocol_error
;
1015 if (!pskb_pull(skb
, sizeof(response
)))
1018 version
= ntohl(response
.version
);
1019 ticket_len
= ntohl(response
.ticket_len
);
1020 kvno
= ntohl(response
.kvno
);
1021 sp
= rxrpc_skb(skb
);
1022 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
1023 ntohl(sp
->hdr
.serial
), version
, kvno
, ticket_len
);
1025 abort_code
= RXKADINCONSISTENCY
;
1026 if (version
!= RXKAD_VERSION
)
1027 goto protocol_error
;
1029 abort_code
= RXKADTICKETLEN
;
1030 if (ticket_len
< 4 || ticket_len
> MAXKRB5TICKETLEN
)
1031 goto protocol_error
;
1033 abort_code
= RXKADUNKNOWNKEY
;
1034 if (kvno
>= RXKAD_TKT_TYPE_KERBEROS_V5
)
1035 goto protocol_error
;
1037 /* extract the kerberos ticket and decrypt and decode it */
1038 ticket
= kmalloc(ticket_len
, GFP_NOFS
);
1042 abort_code
= RXKADPACKETSHORT
;
1043 if (skb_copy_bits(skb
, 0, ticket
, ticket_len
) < 0)
1044 goto protocol_error_free
;
1046 ret
= rxkad_decrypt_ticket(conn
, ticket
, ticket_len
, &session_key
,
1047 &expiry
, &abort_code
);
1049 *_abort_code
= abort_code
;
1054 /* use the session key from inside the ticket to decrypt the
1056 rxkad_decrypt_response(conn
, &response
, &session_key
);
1058 abort_code
= RXKADSEALEDINCON
;
1059 if (response
.encrypted
.epoch
!= conn
->epoch
)
1060 goto protocol_error_free
;
1061 if (response
.encrypted
.cid
!= conn
->cid
)
1062 goto protocol_error_free
;
1063 if (ntohl(response
.encrypted
.securityIndex
) != conn
->security_ix
)
1064 goto protocol_error_free
;
1065 csum
= response
.encrypted
.checksum
;
1066 response
.encrypted
.checksum
= 0;
1067 rxkad_calc_response_checksum(&response
);
1068 if (response
.encrypted
.checksum
!= csum
)
1069 goto protocol_error_free
;
1071 if (ntohl(response
.encrypted
.call_id
[0]) > INT_MAX
||
1072 ntohl(response
.encrypted
.call_id
[1]) > INT_MAX
||
1073 ntohl(response
.encrypted
.call_id
[2]) > INT_MAX
||
1074 ntohl(response
.encrypted
.call_id
[3]) > INT_MAX
)
1075 goto protocol_error_free
;
1077 abort_code
= RXKADOUTOFSEQUENCE
;
1078 if (response
.encrypted
.inc_nonce
!= htonl(conn
->security_nonce
+ 1))
1079 goto protocol_error_free
;
1081 abort_code
= RXKADLEVELFAIL
;
1082 level
= ntohl(response
.encrypted
.level
);
1083 if (level
> RXRPC_SECURITY_ENCRYPT
)
1084 goto protocol_error_free
;
1085 conn
->security_level
= level
;
1087 /* create a key to hold the security data and expiration time - after
1088 * this the connection security can be handled in exactly the same way
1089 * as for a client connection */
1090 ret
= rxrpc_get_server_data_key(conn
, &session_key
, expiry
, kvno
);
1100 protocol_error_free
:
1103 *_abort_code
= abort_code
;
1104 _leave(" = -EPROTO [%d]", abort_code
);
1109 * clear the connection security
1111 static void rxkad_clear(struct rxrpc_connection
*conn
)
1116 crypto_free_blkcipher(conn
->cipher
);
1120 * RxRPC Kerberos-based security
1122 static struct rxrpc_security rxkad
= {
1123 .owner
= THIS_MODULE
,
1125 .security_index
= RXKAD_VERSION
,
1126 .init_connection_security
= rxkad_init_connection_security
,
1127 .prime_packet_security
= rxkad_prime_packet_security
,
1128 .secure_packet
= rxkad_secure_packet
,
1129 .verify_packet
= rxkad_verify_packet
,
1130 .issue_challenge
= rxkad_issue_challenge
,
1131 .respond_to_challenge
= rxkad_respond_to_challenge
,
1132 .verify_response
= rxkad_verify_response
,
1133 .clear
= rxkad_clear
,
1136 static __init
int rxkad_init(void)
1140 /* pin the cipher we need so that the crypto layer doesn't invoke
1141 * keventd to go get it */
1142 rxkad_ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
1143 if (IS_ERR(rxkad_ci
))
1144 return PTR_ERR(rxkad_ci
);
1146 return rxrpc_register_security(&rxkad
);
1149 module_init(rxkad_init
);
1151 static __exit
void rxkad_exit(void)
1155 rxrpc_unregister_security(&rxkad
);
1156 crypto_free_blkcipher(rxkad_ci
);
1159 module_exit(rxkad_exit
);