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 #include <keys/rxrpc-type.h>
22 #define rxrpc_debug rxkad_debug
23 #include "ar-internal.h"
25 #define RXKAD_VERSION 2
26 #define MAXKRB5TICKETLEN 1024
27 #define RXKAD_TKT_TYPE_KERBEROS_V5 256
28 #define ANAME_SZ 40 /* size of authentication name */
29 #define INST_SZ 40 /* size of principal's instance */
30 #define REALM_SZ 40 /* size of principal's auth domain */
31 #define SNAME_SZ 40 /* size of service name */
34 module_param_named(debug
, rxrpc_debug
, uint
, S_IWUSR
| S_IRUGO
);
35 MODULE_PARM_DESC(debug
, "rxkad debugging mask");
37 struct rxkad_level1_hdr
{
38 __be32 data_size
; /* true data size (excluding padding) */
41 struct rxkad_level2_hdr
{
42 __be32 data_size
; /* true data size (excluding padding) */
43 __be32 checksum
; /* decrypted data checksum */
46 MODULE_DESCRIPTION("RxRPC network protocol type-2 security (Kerberos 4)");
47 MODULE_AUTHOR("Red Hat, Inc.");
48 MODULE_LICENSE("GPL");
51 * this holds a pinned cipher so that keventd doesn't get called by the cipher
52 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
55 static struct crypto_blkcipher
*rxkad_ci
;
56 static DEFINE_MUTEX(rxkad_ci_mutex
);
59 * initialise connection security
61 static int rxkad_init_connection_security(struct rxrpc_connection
*conn
)
63 struct crypto_blkcipher
*ci
;
64 struct rxrpc_key_token
*token
;
67 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->key
));
69 token
= conn
->key
->payload
.data
;
70 conn
->security_ix
= token
->security_index
;
72 ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
79 if (crypto_blkcipher_setkey(ci
, token
->kad
->session_key
,
80 sizeof(token
->kad
->session_key
)) < 0)
83 switch (conn
->security_level
) {
84 case RXRPC_SECURITY_PLAIN
:
86 case RXRPC_SECURITY_AUTH
:
88 conn
->security_size
= sizeof(struct rxkad_level1_hdr
);
89 conn
->header_size
+= sizeof(struct rxkad_level1_hdr
);
91 case RXRPC_SECURITY_ENCRYPT
:
93 conn
->security_size
= sizeof(struct rxkad_level2_hdr
);
94 conn
->header_size
+= sizeof(struct rxkad_level2_hdr
);
104 _leave(" = %d", ret
);
109 * prime the encryption state with the invariant parts of a connection's
112 static void rxkad_prime_packet_security(struct rxrpc_connection
*conn
)
114 struct rxrpc_key_token
*token
;
115 struct blkcipher_desc desc
;
116 struct scatterlist sg
[2];
117 struct rxrpc_crypt iv
;
120 } tmpbuf
__attribute__((aligned(16))); /* must all be in same page */
127 token
= conn
->key
->payload
.data
;
128 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
130 desc
.tfm
= conn
->cipher
;
134 tmpbuf
.x
[0] = conn
->epoch
;
135 tmpbuf
.x
[1] = conn
->cid
;
137 tmpbuf
.x
[3] = htonl(conn
->security_ix
);
139 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
140 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
141 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
143 memcpy(&conn
->csum_iv
, &tmpbuf
.x
[2], sizeof(conn
->csum_iv
));
144 ASSERTCMP(conn
->csum_iv
.n
[0], ==, tmpbuf
.x
[2]);
150 * partially encrypt a packet (level 1 security)
152 static int rxkad_secure_packet_auth(const struct rxrpc_call
*call
,
157 struct rxrpc_skb_priv
*sp
;
158 struct blkcipher_desc desc
;
159 struct rxrpc_crypt iv
;
160 struct scatterlist sg
[2];
162 struct rxkad_level1_hdr hdr
;
163 __be32 first
; /* first four bytes of data and padding */
164 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
171 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
172 data_size
|= (u32
) check
<< 16;
174 tmpbuf
.hdr
.data_size
= htonl(data_size
);
175 memcpy(&tmpbuf
.first
, sechdr
+ 4, sizeof(tmpbuf
.first
));
177 /* start the encryption afresh */
178 memset(&iv
, 0, sizeof(iv
));
179 desc
.tfm
= call
->conn
->cipher
;
183 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
184 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
185 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
187 memcpy(sechdr
, &tmpbuf
, sizeof(tmpbuf
));
194 * wholly encrypt a packet (level 2 security)
196 static int rxkad_secure_packet_encrypt(const struct rxrpc_call
*call
,
201 const struct rxrpc_key_token
*token
;
202 struct rxkad_level2_hdr rxkhdr
203 __attribute__((aligned(8))); /* must be all on one page */
204 struct rxrpc_skb_priv
*sp
;
205 struct blkcipher_desc desc
;
206 struct rxrpc_crypt iv
;
207 struct scatterlist sg
[16];
208 struct sk_buff
*trailer
;
217 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
219 rxkhdr
.data_size
= htonl(data_size
| (u32
) check
<< 16);
222 /* encrypt from the session key */
223 token
= call
->conn
->key
->payload
.data
;
224 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
225 desc
.tfm
= call
->conn
->cipher
;
229 sg_init_one(&sg
[0], sechdr
, sizeof(rxkhdr
));
230 sg_init_one(&sg
[1], &rxkhdr
, sizeof(rxkhdr
));
231 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(rxkhdr
));
233 /* we want to encrypt the skbuff in-place */
234 nsg
= skb_cow_data(skb
, 0, &trailer
);
235 if (nsg
< 0 || nsg
> 16)
238 len
= data_size
+ call
->conn
->size_align
- 1;
239 len
&= ~(call
->conn
->size_align
- 1);
241 sg_init_table(sg
, nsg
);
242 skb_to_sgvec(skb
, sg
, 0, len
);
243 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, len
);
250 * checksum an RxRPC packet header
252 static int rxkad_secure_packet(const struct rxrpc_call
*call
,
257 struct rxrpc_skb_priv
*sp
;
258 struct blkcipher_desc desc
;
259 struct rxrpc_crypt iv
;
260 struct scatterlist sg
[2];
263 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
270 _enter("{%d{%x}},{#%u},%zu,",
271 call
->debug_id
, key_serial(call
->conn
->key
), ntohl(sp
->hdr
.seq
),
274 if (!call
->conn
->cipher
)
277 ret
= key_validate(call
->conn
->key
);
281 /* continue encrypting from where we left off */
282 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
283 desc
.tfm
= call
->conn
->cipher
;
287 /* calculate the security checksum */
288 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
289 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
290 tmpbuf
.x
[0] = sp
->hdr
.callNumber
;
293 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
294 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
295 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
297 y
= ntohl(tmpbuf
.x
[1]);
298 y
= (y
>> 16) & 0xffff;
300 y
= 1; /* zero checksums are not permitted */
301 sp
->hdr
.cksum
= htons(y
);
303 switch (call
->conn
->security_level
) {
304 case RXRPC_SECURITY_PLAIN
:
307 case RXRPC_SECURITY_AUTH
:
308 ret
= rxkad_secure_packet_auth(call
, skb
, data_size
, sechdr
);
310 case RXRPC_SECURITY_ENCRYPT
:
311 ret
= rxkad_secure_packet_encrypt(call
, skb
, data_size
,
319 _leave(" = %d [set %hx]", ret
, y
);
324 * decrypt partial encryption on a packet (level 1 security)
326 static int rxkad_verify_packet_auth(const struct rxrpc_call
*call
,
330 struct rxkad_level1_hdr sechdr
;
331 struct rxrpc_skb_priv
*sp
;
332 struct blkcipher_desc desc
;
333 struct rxrpc_crypt iv
;
334 struct scatterlist sg
[16];
335 struct sk_buff
*trailer
;
344 /* we want to decrypt the skbuff in-place */
345 nsg
= skb_cow_data(skb
, 0, &trailer
);
346 if (nsg
< 0 || nsg
> 16)
349 sg_init_table(sg
, nsg
);
350 skb_to_sgvec(skb
, sg
, 0, 8);
352 /* start the decryption afresh */
353 memset(&iv
, 0, sizeof(iv
));
354 desc
.tfm
= call
->conn
->cipher
;
358 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, 8);
360 /* remove the decrypted packet length */
361 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
363 if (!skb_pull(skb
, sizeof(sechdr
)))
366 buf
= ntohl(sechdr
.data_size
);
367 data_size
= buf
& 0xffff;
370 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
373 *_abort_code
= RXKADSEALEDINCON
;
377 /* shorten the packet to remove the padding */
378 if (data_size
> skb
->len
)
380 else if (data_size
< skb
->len
)
381 skb
->len
= data_size
;
383 _leave(" = 0 [dlen=%x]", data_size
);
387 *_abort_code
= RXKADDATALEN
;
389 _leave(" = -EPROTO");
393 _leave(" = -ENOMEM");
398 * wholly decrypt a packet (level 2 security)
400 static int rxkad_verify_packet_encrypt(const struct rxrpc_call
*call
,
404 const struct rxrpc_key_token
*token
;
405 struct rxkad_level2_hdr sechdr
;
406 struct rxrpc_skb_priv
*sp
;
407 struct blkcipher_desc desc
;
408 struct rxrpc_crypt iv
;
409 struct scatterlist _sg
[4], *sg
;
410 struct sk_buff
*trailer
;
415 _enter(",{%d}", skb
->len
);
419 /* we want to decrypt the skbuff in-place */
420 nsg
= skb_cow_data(skb
, 0, &trailer
);
425 if (unlikely(nsg
> 4)) {
426 sg
= kmalloc(sizeof(*sg
) * nsg
, GFP_NOIO
);
431 sg_init_table(sg
, nsg
);
432 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
434 /* decrypt from the session key */
435 token
= call
->conn
->key
->payload
.data
;
436 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
437 desc
.tfm
= call
->conn
->cipher
;
441 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, skb
->len
);
445 /* remove the decrypted packet length */
446 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
448 if (!skb_pull(skb
, sizeof(sechdr
)))
451 buf
= ntohl(sechdr
.data_size
);
452 data_size
= buf
& 0xffff;
455 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
458 *_abort_code
= RXKADSEALEDINCON
;
462 /* shorten the packet to remove the padding */
463 if (data_size
> skb
->len
)
465 else if (data_size
< skb
->len
)
466 skb
->len
= data_size
;
468 _leave(" = 0 [dlen=%x]", data_size
);
472 *_abort_code
= RXKADDATALEN
;
474 _leave(" = -EPROTO");
478 _leave(" = -ENOMEM");
483 * verify the security on a received packet
485 static int rxkad_verify_packet(const struct rxrpc_call
*call
,
489 struct blkcipher_desc desc
;
490 struct rxrpc_skb_priv
*sp
;
491 struct rxrpc_crypt iv
;
492 struct scatterlist sg
[2];
495 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
503 _enter("{%d{%x}},{#%u}",
504 call
->debug_id
, key_serial(call
->conn
->key
),
507 if (!call
->conn
->cipher
)
510 if (sp
->hdr
.securityIndex
!= RXRPC_SECURITY_RXKAD
) {
511 *_abort_code
= RXKADINCONSISTENCY
;
512 _leave(" = -EPROTO [not rxkad]");
516 /* continue encrypting from where we left off */
517 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
518 desc
.tfm
= call
->conn
->cipher
;
522 /* validate the security checksum */
523 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
524 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
525 tmpbuf
.x
[0] = call
->call_id
;
528 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
529 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
530 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
532 y
= ntohl(tmpbuf
.x
[1]);
533 y
= (y
>> 16) & 0xffff;
535 y
= 1; /* zero checksums are not permitted */
538 if (sp
->hdr
.cksum
!= cksum
) {
539 *_abort_code
= RXKADSEALEDINCON
;
540 _leave(" = -EPROTO [csum failed]");
544 switch (call
->conn
->security_level
) {
545 case RXRPC_SECURITY_PLAIN
:
548 case RXRPC_SECURITY_AUTH
:
549 ret
= rxkad_verify_packet_auth(call
, skb
, _abort_code
);
551 case RXRPC_SECURITY_ENCRYPT
:
552 ret
= rxkad_verify_packet_encrypt(call
, skb
, _abort_code
);
559 _leave(" = %d", ret
);
566 static int rxkad_issue_challenge(struct rxrpc_connection
*conn
)
568 struct rxkad_challenge challenge
;
569 struct rxrpc_header hdr
;
575 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
577 ret
= key_validate(conn
->key
);
581 get_random_bytes(&conn
->security_nonce
, sizeof(conn
->security_nonce
));
583 challenge
.version
= htonl(2);
584 challenge
.nonce
= htonl(conn
->security_nonce
);
585 challenge
.min_level
= htonl(0);
586 challenge
.__padding
= 0;
588 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
589 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
590 msg
.msg_control
= NULL
;
591 msg
.msg_controllen
= 0;
594 hdr
.epoch
= conn
->epoch
;
598 hdr
.type
= RXRPC_PACKET_TYPE_CHALLENGE
;
599 hdr
.flags
= conn
->out_clientflag
;
601 hdr
.securityIndex
= conn
->security_ix
;
603 hdr
.serviceId
= conn
->service_id
;
605 iov
[0].iov_base
= &hdr
;
606 iov
[0].iov_len
= sizeof(hdr
);
607 iov
[1].iov_base
= &challenge
;
608 iov
[1].iov_len
= sizeof(challenge
);
610 len
= iov
[0].iov_len
+ iov
[1].iov_len
;
612 hdr
.serial
= htonl(atomic_inc_return(&conn
->serial
));
613 _proto("Tx CHALLENGE %%%u", ntohl(hdr
.serial
));
615 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 2, len
);
617 _debug("sendmsg failed: %d", ret
);
626 * send a Kerberos security response
628 static int rxkad_send_response(struct rxrpc_connection
*conn
,
629 struct rxrpc_header
*hdr
,
630 struct rxkad_response
*resp
,
631 const struct rxkad_key
*s2
)
640 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
641 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
642 msg
.msg_control
= NULL
;
643 msg
.msg_controllen
= 0;
646 hdr
->epoch
= conn
->epoch
;
648 hdr
->type
= RXRPC_PACKET_TYPE_RESPONSE
;
649 hdr
->flags
= conn
->out_clientflag
;
653 iov
[0].iov_base
= hdr
;
654 iov
[0].iov_len
= sizeof(*hdr
);
655 iov
[1].iov_base
= resp
;
656 iov
[1].iov_len
= sizeof(*resp
);
657 iov
[2].iov_base
= (void *) s2
->ticket
;
658 iov
[2].iov_len
= s2
->ticket_len
;
660 len
= iov
[0].iov_len
+ iov
[1].iov_len
+ iov
[2].iov_len
;
662 hdr
->serial
= htonl(atomic_inc_return(&conn
->serial
));
663 _proto("Tx RESPONSE %%%u", ntohl(hdr
->serial
));
665 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 3, len
);
667 _debug("sendmsg failed: %d", ret
);
676 * calculate the response checksum
678 static void rxkad_calc_response_checksum(struct rxkad_response
*response
)
682 u8
*p
= (u8
*) response
;
684 for (loop
= sizeof(*response
); loop
> 0; loop
--)
685 csum
= csum
* 0x10204081 + *p
++;
687 response
->encrypted
.checksum
= htonl(csum
);
691 * load a scatterlist with a potentially split-page buffer
693 static void rxkad_sg_set_buf2(struct scatterlist sg
[2],
694 void *buf
, size_t buflen
)
698 sg_init_table(sg
, 2);
700 sg_set_buf(&sg
[0], buf
, buflen
);
701 if (sg
[0].offset
+ buflen
> PAGE_SIZE
) {
702 /* the buffer was split over two pages */
703 sg
[0].length
= PAGE_SIZE
- sg
[0].offset
;
704 sg_set_buf(&sg
[1], buf
+ sg
[0].length
, buflen
- sg
[0].length
);
708 sg_mark_end(&sg
[nsg
- 1]);
710 ASSERTCMP(sg
[0].length
+ sg
[1].length
, ==, buflen
);
714 * encrypt the response packet
716 static void rxkad_encrypt_response(struct rxrpc_connection
*conn
,
717 struct rxkad_response
*resp
,
718 const struct rxkad_key
*s2
)
720 struct blkcipher_desc desc
;
721 struct rxrpc_crypt iv
;
722 struct scatterlist sg
[2];
724 /* continue encrypting from where we left off */
725 memcpy(&iv
, s2
->session_key
, sizeof(iv
));
726 desc
.tfm
= conn
->cipher
;
730 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
731 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
735 * respond to a challenge packet
737 static int rxkad_respond_to_challenge(struct rxrpc_connection
*conn
,
741 const struct rxrpc_key_token
*token
;
742 struct rxkad_challenge challenge
;
743 struct rxkad_response resp
744 __attribute__((aligned(8))); /* must be aligned for crypto */
745 struct rxrpc_skb_priv
*sp
;
746 u32 version
, nonce
, min_level
, abort_code
;
749 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
752 _leave(" = -EPROTO [no key]");
756 ret
= key_validate(conn
->key
);
758 *_abort_code
= RXKADEXPIRED
;
762 abort_code
= RXKADPACKETSHORT
;
764 if (skb_copy_bits(skb
, 0, &challenge
, sizeof(challenge
)) < 0)
767 version
= ntohl(challenge
.version
);
768 nonce
= ntohl(challenge
.nonce
);
769 min_level
= ntohl(challenge
.min_level
);
771 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
772 ntohl(sp
->hdr
.serial
), version
, nonce
, min_level
);
774 abort_code
= RXKADINCONSISTENCY
;
775 if (version
!= RXKAD_VERSION
)
778 abort_code
= RXKADLEVELFAIL
;
779 if (conn
->security_level
< min_level
)
782 token
= conn
->key
->payload
.data
;
784 /* build the response packet */
785 memset(&resp
, 0, sizeof(resp
));
787 resp
.version
= RXKAD_VERSION
;
788 resp
.encrypted
.epoch
= conn
->epoch
;
789 resp
.encrypted
.cid
= conn
->cid
;
790 resp
.encrypted
.securityIndex
= htonl(conn
->security_ix
);
791 resp
.encrypted
.call_id
[0] =
792 (conn
->channels
[0] ? conn
->channels
[0]->call_id
: 0);
793 resp
.encrypted
.call_id
[1] =
794 (conn
->channels
[1] ? conn
->channels
[1]->call_id
: 0);
795 resp
.encrypted
.call_id
[2] =
796 (conn
->channels
[2] ? conn
->channels
[2]->call_id
: 0);
797 resp
.encrypted
.call_id
[3] =
798 (conn
->channels
[3] ? conn
->channels
[3]->call_id
: 0);
799 resp
.encrypted
.inc_nonce
= htonl(nonce
+ 1);
800 resp
.encrypted
.level
= htonl(conn
->security_level
);
801 resp
.kvno
= htonl(token
->kad
->kvno
);
802 resp
.ticket_len
= htonl(token
->kad
->ticket_len
);
804 /* calculate the response checksum and then do the encryption */
805 rxkad_calc_response_checksum(&resp
);
806 rxkad_encrypt_response(conn
, &resp
, token
->kad
);
807 return rxkad_send_response(conn
, &sp
->hdr
, &resp
, token
->kad
);
810 *_abort_code
= abort_code
;
811 _leave(" = -EPROTO [%d]", abort_code
);
816 * decrypt the kerberos IV ticket in the response
818 static int rxkad_decrypt_ticket(struct rxrpc_connection
*conn
,
819 void *ticket
, size_t ticket_len
,
820 struct rxrpc_crypt
*_session_key
,
824 struct blkcipher_desc desc
;
825 struct rxrpc_crypt iv
, key
;
826 struct scatterlist sg
[1];
832 u8
*p
, *q
, *name
, *end
;
834 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->server_key
));
838 ret
= key_validate(conn
->server_key
);
842 *_abort_code
= RXKADEXPIRED
;
845 *_abort_code
= RXKADNOAUTH
;
850 ASSERT(conn
->server_key
->payload
.data
!= NULL
);
851 ASSERTCMP((unsigned long) ticket
& 7UL, ==, 0);
853 memcpy(&iv
, &conn
->server_key
->type_data
, sizeof(iv
));
855 desc
.tfm
= conn
->server_key
->payload
.data
;
859 sg_init_one(&sg
[0], ticket
, ticket_len
);
860 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, ticket_len
);
863 end
= p
+ ticket_len
;
868 q = memchr(p, 0, end - p); \
869 if (!q || q - p > (size)) \
878 /* extract the ticket flags */
879 _debug("KIV FLAGS: %x", *p
);
880 little_endian
= *p
& 1;
883 /* extract the authentication name */
885 _debug("KIV ANAME: %s", name
);
887 /* extract the principal's instance */
889 _debug("KIV INST : %s", name
);
891 /* extract the principal's authentication domain */
893 _debug("KIV REALM: %s", name
);
895 if (end
- p
< 4 + 8 + 4 + 2)
898 /* get the IPv4 address of the entity that requested the ticket */
899 memcpy(&addr
, p
, sizeof(addr
));
901 _debug("KIV ADDR : %pI4", &addr
);
903 /* get the session key from the ticket */
904 memcpy(&key
, p
, sizeof(key
));
906 _debug("KIV KEY : %08x %08x", ntohl(key
.n
[0]), ntohl(key
.n
[1]));
907 memcpy(_session_key
, &key
, sizeof(key
));
909 /* get the ticket's lifetime */
910 life
= *p
++ * 5 * 60;
911 _debug("KIV LIFE : %u", life
);
913 /* get the issue time of the ticket */
916 memcpy(&stamp
, p
, 4);
917 issue
= le32_to_cpu(stamp
);
920 memcpy(&stamp
, p
, 4);
921 issue
= be32_to_cpu(stamp
);
925 _debug("KIV ISSUE: %lx [%lx]", issue
, now
);
927 /* check the ticket is in date */
929 *_abort_code
= RXKADNOAUTH
;
934 if (issue
< now
- life
) {
935 *_abort_code
= RXKADEXPIRED
;
940 *_expiry
= issue
+ life
;
942 /* get the service name */
944 _debug("KIV SNAME: %s", name
);
946 /* get the service instance name */
948 _debug("KIV SINST: %s", name
);
952 _leave(" = %d", ret
);
956 *_abort_code
= RXKADBADTICKET
;
962 * decrypt the response packet
964 static void rxkad_decrypt_response(struct rxrpc_connection
*conn
,
965 struct rxkad_response
*resp
,
966 const struct rxrpc_crypt
*session_key
)
968 struct blkcipher_desc desc
;
969 struct scatterlist sg
[2];
970 struct rxrpc_crypt iv
;
973 ntohl(session_key
->n
[0]), ntohl(session_key
->n
[1]));
975 ASSERT(rxkad_ci
!= NULL
);
977 mutex_lock(&rxkad_ci_mutex
);
978 if (crypto_blkcipher_setkey(rxkad_ci
, session_key
->x
,
979 sizeof(*session_key
)) < 0)
982 memcpy(&iv
, session_key
, sizeof(iv
));
987 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
988 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
989 mutex_unlock(&rxkad_ci_mutex
);
997 static int rxkad_verify_response(struct rxrpc_connection
*conn
,
1001 struct rxkad_response response
1002 __attribute__((aligned(8))); /* must be aligned for crypto */
1003 struct rxrpc_skb_priv
*sp
;
1004 struct rxrpc_crypt session_key
;
1007 u32 abort_code
, version
, kvno
, ticket_len
, level
;
1011 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->server_key
));
1013 abort_code
= RXKADPACKETSHORT
;
1014 if (skb_copy_bits(skb
, 0, &response
, sizeof(response
)) < 0)
1015 goto protocol_error
;
1016 if (!pskb_pull(skb
, sizeof(response
)))
1019 version
= ntohl(response
.version
);
1020 ticket_len
= ntohl(response
.ticket_len
);
1021 kvno
= ntohl(response
.kvno
);
1022 sp
= rxrpc_skb(skb
);
1023 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
1024 ntohl(sp
->hdr
.serial
), version
, kvno
, ticket_len
);
1026 abort_code
= RXKADINCONSISTENCY
;
1027 if (version
!= RXKAD_VERSION
)
1028 goto protocol_error
;
1030 abort_code
= RXKADTICKETLEN
;
1031 if (ticket_len
< 4 || ticket_len
> MAXKRB5TICKETLEN
)
1032 goto protocol_error
;
1034 abort_code
= RXKADUNKNOWNKEY
;
1035 if (kvno
>= RXKAD_TKT_TYPE_KERBEROS_V5
)
1036 goto protocol_error
;
1038 /* extract the kerberos ticket and decrypt and decode it */
1039 ticket
= kmalloc(ticket_len
, GFP_NOFS
);
1043 abort_code
= RXKADPACKETSHORT
;
1044 if (skb_copy_bits(skb
, 0, ticket
, ticket_len
) < 0)
1045 goto protocol_error_free
;
1047 ret
= rxkad_decrypt_ticket(conn
, ticket
, ticket_len
, &session_key
,
1048 &expiry
, &abort_code
);
1050 *_abort_code
= abort_code
;
1055 /* use the session key from inside the ticket to decrypt the
1057 rxkad_decrypt_response(conn
, &response
, &session_key
);
1059 abort_code
= RXKADSEALEDINCON
;
1060 if (response
.encrypted
.epoch
!= conn
->epoch
)
1061 goto protocol_error_free
;
1062 if (response
.encrypted
.cid
!= conn
->cid
)
1063 goto protocol_error_free
;
1064 if (ntohl(response
.encrypted
.securityIndex
) != conn
->security_ix
)
1065 goto protocol_error_free
;
1066 csum
= response
.encrypted
.checksum
;
1067 response
.encrypted
.checksum
= 0;
1068 rxkad_calc_response_checksum(&response
);
1069 if (response
.encrypted
.checksum
!= csum
)
1070 goto protocol_error_free
;
1072 if (ntohl(response
.encrypted
.call_id
[0]) > INT_MAX
||
1073 ntohl(response
.encrypted
.call_id
[1]) > INT_MAX
||
1074 ntohl(response
.encrypted
.call_id
[2]) > INT_MAX
||
1075 ntohl(response
.encrypted
.call_id
[3]) > INT_MAX
)
1076 goto protocol_error_free
;
1078 abort_code
= RXKADOUTOFSEQUENCE
;
1079 if (response
.encrypted
.inc_nonce
!= htonl(conn
->security_nonce
+ 1))
1080 goto protocol_error_free
;
1082 abort_code
= RXKADLEVELFAIL
;
1083 level
= ntohl(response
.encrypted
.level
);
1084 if (level
> RXRPC_SECURITY_ENCRYPT
)
1085 goto protocol_error_free
;
1086 conn
->security_level
= level
;
1088 /* create a key to hold the security data and expiration time - after
1089 * this the connection security can be handled in exactly the same way
1090 * as for a client connection */
1091 ret
= rxrpc_get_server_data_key(conn
, &session_key
, expiry
, kvno
);
1101 protocol_error_free
:
1104 *_abort_code
= abort_code
;
1105 _leave(" = -EPROTO [%d]", abort_code
);
1110 * clear the connection security
1112 static void rxkad_clear(struct rxrpc_connection
*conn
)
1117 crypto_free_blkcipher(conn
->cipher
);
1121 * RxRPC Kerberos-based security
1123 static struct rxrpc_security rxkad
= {
1124 .owner
= THIS_MODULE
,
1126 .security_index
= RXRPC_SECURITY_RXKAD
,
1127 .init_connection_security
= rxkad_init_connection_security
,
1128 .prime_packet_security
= rxkad_prime_packet_security
,
1129 .secure_packet
= rxkad_secure_packet
,
1130 .verify_packet
= rxkad_verify_packet
,
1131 .issue_challenge
= rxkad_issue_challenge
,
1132 .respond_to_challenge
= rxkad_respond_to_challenge
,
1133 .verify_response
= rxkad_verify_response
,
1134 .clear
= rxkad_clear
,
1137 static __init
int rxkad_init(void)
1141 /* pin the cipher we need so that the crypto layer doesn't invoke
1142 * keventd to go get it */
1143 rxkad_ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
1144 if (IS_ERR(rxkad_ci
))
1145 return PTR_ERR(rxkad_ci
);
1147 return rxrpc_register_security(&rxkad
);
1150 module_init(rxkad_init
);
1152 static __exit
void rxkad_exit(void)
1156 rxrpc_unregister_security(&rxkad
);
1157 crypto_free_blkcipher(rxkad_ci
);
1160 module_exit(rxkad_exit
);