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>
19 #include <linux/slab.h>
21 #include <net/af_rxrpc.h>
22 #include <keys/rxrpc-type.h>
23 #define rxrpc_debug rxkad_debug
24 #include "ar-internal.h"
26 #define RXKAD_VERSION 2
27 #define MAXKRB5TICKETLEN 1024
28 #define RXKAD_TKT_TYPE_KERBEROS_V5 256
29 #define ANAME_SZ 40 /* size of authentication name */
30 #define INST_SZ 40 /* size of principal's instance */
31 #define REALM_SZ 40 /* size of principal's auth domain */
32 #define SNAME_SZ 40 /* size of service name */
35 module_param_named(debug
, rxrpc_debug
, uint
, S_IWUSR
| S_IRUGO
);
36 MODULE_PARM_DESC(debug
, "rxkad debugging mask");
38 struct rxkad_level1_hdr
{
39 __be32 data_size
; /* true data size (excluding padding) */
42 struct rxkad_level2_hdr
{
43 __be32 data_size
; /* true data size (excluding padding) */
44 __be32 checksum
; /* decrypted data checksum */
47 MODULE_DESCRIPTION("RxRPC network protocol type-2 security (Kerberos 4)");
48 MODULE_AUTHOR("Red Hat, Inc.");
49 MODULE_LICENSE("GPL");
52 * this holds a pinned cipher so that keventd doesn't get called by the cipher
53 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
56 static struct crypto_blkcipher
*rxkad_ci
;
57 static DEFINE_MUTEX(rxkad_ci_mutex
);
60 * initialise connection security
62 static int rxkad_init_connection_security(struct rxrpc_connection
*conn
)
64 struct crypto_blkcipher
*ci
;
65 struct rxrpc_key_token
*token
;
68 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->key
));
70 token
= conn
->key
->payload
.data
;
71 conn
->security_ix
= token
->security_index
;
73 ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
80 if (crypto_blkcipher_setkey(ci
, token
->kad
->session_key
,
81 sizeof(token
->kad
->session_key
)) < 0)
84 switch (conn
->security_level
) {
85 case RXRPC_SECURITY_PLAIN
:
87 case RXRPC_SECURITY_AUTH
:
89 conn
->security_size
= sizeof(struct rxkad_level1_hdr
);
90 conn
->header_size
+= sizeof(struct rxkad_level1_hdr
);
92 case RXRPC_SECURITY_ENCRYPT
:
94 conn
->security_size
= sizeof(struct rxkad_level2_hdr
);
95 conn
->header_size
+= sizeof(struct rxkad_level2_hdr
);
105 _leave(" = %d", ret
);
110 * prime the encryption state with the invariant parts of a connection's
113 static void rxkad_prime_packet_security(struct rxrpc_connection
*conn
)
115 struct rxrpc_key_token
*token
;
116 struct blkcipher_desc desc
;
117 struct scatterlist sg
[2];
118 struct rxrpc_crypt iv
;
121 } tmpbuf
__attribute__((aligned(16))); /* must all be in same page */
128 token
= conn
->key
->payload
.data
;
129 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
131 desc
.tfm
= conn
->cipher
;
135 tmpbuf
.x
[0] = conn
->epoch
;
136 tmpbuf
.x
[1] = conn
->cid
;
138 tmpbuf
.x
[3] = htonl(conn
->security_ix
);
140 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
141 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
142 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
144 memcpy(&conn
->csum_iv
, &tmpbuf
.x
[2], sizeof(conn
->csum_iv
));
145 ASSERTCMP(conn
->csum_iv
.n
[0], ==, tmpbuf
.x
[2]);
151 * partially encrypt a packet (level 1 security)
153 static int rxkad_secure_packet_auth(const struct rxrpc_call
*call
,
158 struct rxrpc_skb_priv
*sp
;
159 struct blkcipher_desc desc
;
160 struct rxrpc_crypt iv
;
161 struct scatterlist sg
[2];
163 struct rxkad_level1_hdr hdr
;
164 __be32 first
; /* first four bytes of data and padding */
165 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
172 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
173 data_size
|= (u32
) check
<< 16;
175 tmpbuf
.hdr
.data_size
= htonl(data_size
);
176 memcpy(&tmpbuf
.first
, sechdr
+ 4, sizeof(tmpbuf
.first
));
178 /* start the encryption afresh */
179 memset(&iv
, 0, sizeof(iv
));
180 desc
.tfm
= call
->conn
->cipher
;
184 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
185 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
186 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
188 memcpy(sechdr
, &tmpbuf
, sizeof(tmpbuf
));
195 * wholly encrypt a packet (level 2 security)
197 static int rxkad_secure_packet_encrypt(const struct rxrpc_call
*call
,
202 const struct rxrpc_key_token
*token
;
203 struct rxkad_level2_hdr rxkhdr
204 __attribute__((aligned(8))); /* must be all on one page */
205 struct rxrpc_skb_priv
*sp
;
206 struct blkcipher_desc desc
;
207 struct rxrpc_crypt iv
;
208 struct scatterlist sg
[16];
209 struct sk_buff
*trailer
;
218 check
= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
220 rxkhdr
.data_size
= htonl(data_size
| (u32
) check
<< 16);
223 /* encrypt from the session key */
224 token
= call
->conn
->key
->payload
.data
;
225 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
226 desc
.tfm
= call
->conn
->cipher
;
230 sg_init_one(&sg
[0], sechdr
, sizeof(rxkhdr
));
231 sg_init_one(&sg
[1], &rxkhdr
, sizeof(rxkhdr
));
232 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(rxkhdr
));
234 /* we want to encrypt the skbuff in-place */
235 nsg
= skb_cow_data(skb
, 0, &trailer
);
236 if (nsg
< 0 || nsg
> 16)
239 len
= data_size
+ call
->conn
->size_align
- 1;
240 len
&= ~(call
->conn
->size_align
- 1);
242 sg_init_table(sg
, nsg
);
243 skb_to_sgvec(skb
, sg
, 0, len
);
244 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, len
);
251 * checksum an RxRPC packet header
253 static int rxkad_secure_packet(const struct rxrpc_call
*call
,
258 struct rxrpc_skb_priv
*sp
;
259 struct blkcipher_desc desc
;
260 struct rxrpc_crypt iv
;
261 struct scatterlist sg
[2];
264 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
271 _enter("{%d{%x}},{#%u},%zu,",
272 call
->debug_id
, key_serial(call
->conn
->key
), ntohl(sp
->hdr
.seq
),
275 if (!call
->conn
->cipher
)
278 ret
= key_validate(call
->conn
->key
);
282 /* continue encrypting from where we left off */
283 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
284 desc
.tfm
= call
->conn
->cipher
;
288 /* calculate the security checksum */
289 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
290 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
291 tmpbuf
.x
[0] = sp
->hdr
.callNumber
;
294 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
295 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
296 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
298 y
= ntohl(tmpbuf
.x
[1]);
299 y
= (y
>> 16) & 0xffff;
301 y
= 1; /* zero checksums are not permitted */
302 sp
->hdr
.cksum
= htons(y
);
304 switch (call
->conn
->security_level
) {
305 case RXRPC_SECURITY_PLAIN
:
308 case RXRPC_SECURITY_AUTH
:
309 ret
= rxkad_secure_packet_auth(call
, skb
, data_size
, sechdr
);
311 case RXRPC_SECURITY_ENCRYPT
:
312 ret
= rxkad_secure_packet_encrypt(call
, skb
, data_size
,
320 _leave(" = %d [set %hx]", ret
, y
);
325 * decrypt partial encryption on a packet (level 1 security)
327 static int rxkad_verify_packet_auth(const struct rxrpc_call
*call
,
331 struct rxkad_level1_hdr sechdr
;
332 struct rxrpc_skb_priv
*sp
;
333 struct blkcipher_desc desc
;
334 struct rxrpc_crypt iv
;
335 struct scatterlist sg
[16];
336 struct sk_buff
*trailer
;
345 /* we want to decrypt the skbuff in-place */
346 nsg
= skb_cow_data(skb
, 0, &trailer
);
347 if (nsg
< 0 || nsg
> 16)
350 sg_init_table(sg
, nsg
);
351 skb_to_sgvec(skb
, sg
, 0, 8);
353 /* start the decryption afresh */
354 memset(&iv
, 0, sizeof(iv
));
355 desc
.tfm
= call
->conn
->cipher
;
359 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, 8);
361 /* remove the decrypted packet length */
362 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
364 if (!skb_pull(skb
, sizeof(sechdr
)))
367 buf
= ntohl(sechdr
.data_size
);
368 data_size
= buf
& 0xffff;
371 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
374 *_abort_code
= RXKADSEALEDINCON
;
378 /* shorten the packet to remove the padding */
379 if (data_size
> skb
->len
)
381 else if (data_size
< skb
->len
)
382 skb
->len
= data_size
;
384 _leave(" = 0 [dlen=%x]", data_size
);
388 *_abort_code
= RXKADDATALEN
;
390 _leave(" = -EPROTO");
394 _leave(" = -ENOMEM");
399 * wholly decrypt a packet (level 2 security)
401 static int rxkad_verify_packet_encrypt(const struct rxrpc_call
*call
,
405 const struct rxrpc_key_token
*token
;
406 struct rxkad_level2_hdr sechdr
;
407 struct rxrpc_skb_priv
*sp
;
408 struct blkcipher_desc desc
;
409 struct rxrpc_crypt iv
;
410 struct scatterlist _sg
[4], *sg
;
411 struct sk_buff
*trailer
;
416 _enter(",{%d}", skb
->len
);
420 /* we want to decrypt the skbuff in-place */
421 nsg
= skb_cow_data(skb
, 0, &trailer
);
426 if (unlikely(nsg
> 4)) {
427 sg
= kmalloc(sizeof(*sg
) * nsg
, GFP_NOIO
);
432 sg_init_table(sg
, nsg
);
433 skb_to_sgvec(skb
, sg
, 0, skb
->len
);
435 /* decrypt from the session key */
436 token
= call
->conn
->key
->payload
.data
;
437 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
438 desc
.tfm
= call
->conn
->cipher
;
442 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, skb
->len
);
446 /* remove the decrypted packet length */
447 if (skb_copy_bits(skb
, 0, &sechdr
, sizeof(sechdr
)) < 0)
449 if (!skb_pull(skb
, sizeof(sechdr
)))
452 buf
= ntohl(sechdr
.data_size
);
453 data_size
= buf
& 0xffff;
456 check
^= ntohl(sp
->hdr
.seq
^ sp
->hdr
.callNumber
);
459 *_abort_code
= RXKADSEALEDINCON
;
463 /* shorten the packet to remove the padding */
464 if (data_size
> skb
->len
)
466 else if (data_size
< skb
->len
)
467 skb
->len
= data_size
;
469 _leave(" = 0 [dlen=%x]", data_size
);
473 *_abort_code
= RXKADDATALEN
;
475 _leave(" = -EPROTO");
479 _leave(" = -ENOMEM");
484 * verify the security on a received packet
486 static int rxkad_verify_packet(const struct rxrpc_call
*call
,
490 struct blkcipher_desc desc
;
491 struct rxrpc_skb_priv
*sp
;
492 struct rxrpc_crypt iv
;
493 struct scatterlist sg
[2];
496 } tmpbuf
__attribute__((aligned(8))); /* must all be in same page */
504 _enter("{%d{%x}},{#%u}",
505 call
->debug_id
, key_serial(call
->conn
->key
),
508 if (!call
->conn
->cipher
)
511 if (sp
->hdr
.securityIndex
!= RXRPC_SECURITY_RXKAD
) {
512 *_abort_code
= RXKADINCONSISTENCY
;
513 _leave(" = -EPROTO [not rxkad]");
517 /* continue encrypting from where we left off */
518 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
519 desc
.tfm
= call
->conn
->cipher
;
523 /* validate the security checksum */
524 x
= htonl(call
->channel
<< (32 - RXRPC_CIDSHIFT
));
525 x
|= sp
->hdr
.seq
& cpu_to_be32(0x3fffffff);
526 tmpbuf
.x
[0] = call
->call_id
;
529 sg_init_one(&sg
[0], &tmpbuf
, sizeof(tmpbuf
));
530 sg_init_one(&sg
[1], &tmpbuf
, sizeof(tmpbuf
));
531 crypto_blkcipher_encrypt_iv(&desc
, &sg
[0], &sg
[1], sizeof(tmpbuf
));
533 y
= ntohl(tmpbuf
.x
[1]);
534 y
= (y
>> 16) & 0xffff;
536 y
= 1; /* zero checksums are not permitted */
539 if (sp
->hdr
.cksum
!= cksum
) {
540 *_abort_code
= RXKADSEALEDINCON
;
541 _leave(" = -EPROTO [csum failed]");
545 switch (call
->conn
->security_level
) {
546 case RXRPC_SECURITY_PLAIN
:
549 case RXRPC_SECURITY_AUTH
:
550 ret
= rxkad_verify_packet_auth(call
, skb
, _abort_code
);
552 case RXRPC_SECURITY_ENCRYPT
:
553 ret
= rxkad_verify_packet_encrypt(call
, skb
, _abort_code
);
560 _leave(" = %d", ret
);
567 static int rxkad_issue_challenge(struct rxrpc_connection
*conn
)
569 struct rxkad_challenge challenge
;
570 struct rxrpc_header hdr
;
576 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
578 ret
= key_validate(conn
->key
);
582 get_random_bytes(&conn
->security_nonce
, sizeof(conn
->security_nonce
));
584 challenge
.version
= htonl(2);
585 challenge
.nonce
= htonl(conn
->security_nonce
);
586 challenge
.min_level
= htonl(0);
587 challenge
.__padding
= 0;
589 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
590 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
591 msg
.msg_control
= NULL
;
592 msg
.msg_controllen
= 0;
595 hdr
.epoch
= conn
->epoch
;
599 hdr
.type
= RXRPC_PACKET_TYPE_CHALLENGE
;
600 hdr
.flags
= conn
->out_clientflag
;
602 hdr
.securityIndex
= conn
->security_ix
;
604 hdr
.serviceId
= conn
->service_id
;
606 iov
[0].iov_base
= &hdr
;
607 iov
[0].iov_len
= sizeof(hdr
);
608 iov
[1].iov_base
= &challenge
;
609 iov
[1].iov_len
= sizeof(challenge
);
611 len
= iov
[0].iov_len
+ iov
[1].iov_len
;
613 hdr
.serial
= htonl(atomic_inc_return(&conn
->serial
));
614 _proto("Tx CHALLENGE %%%u", ntohl(hdr
.serial
));
616 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 2, len
);
618 _debug("sendmsg failed: %d", ret
);
627 * send a Kerberos security response
629 static int rxkad_send_response(struct rxrpc_connection
*conn
,
630 struct rxrpc_header
*hdr
,
631 struct rxkad_response
*resp
,
632 const struct rxkad_key
*s2
)
641 msg
.msg_name
= &conn
->trans
->peer
->srx
.transport
.sin
;
642 msg
.msg_namelen
= sizeof(conn
->trans
->peer
->srx
.transport
.sin
);
643 msg
.msg_control
= NULL
;
644 msg
.msg_controllen
= 0;
647 hdr
->epoch
= conn
->epoch
;
649 hdr
->type
= RXRPC_PACKET_TYPE_RESPONSE
;
650 hdr
->flags
= conn
->out_clientflag
;
654 iov
[0].iov_base
= hdr
;
655 iov
[0].iov_len
= sizeof(*hdr
);
656 iov
[1].iov_base
= resp
;
657 iov
[1].iov_len
= sizeof(*resp
);
658 iov
[2].iov_base
= (void *) s2
->ticket
;
659 iov
[2].iov_len
= s2
->ticket_len
;
661 len
= iov
[0].iov_len
+ iov
[1].iov_len
+ iov
[2].iov_len
;
663 hdr
->serial
= htonl(atomic_inc_return(&conn
->serial
));
664 _proto("Tx RESPONSE %%%u", ntohl(hdr
->serial
));
666 ret
= kernel_sendmsg(conn
->trans
->local
->socket
, &msg
, iov
, 3, len
);
668 _debug("sendmsg failed: %d", ret
);
677 * calculate the response checksum
679 static void rxkad_calc_response_checksum(struct rxkad_response
*response
)
683 u8
*p
= (u8
*) response
;
685 for (loop
= sizeof(*response
); loop
> 0; loop
--)
686 csum
= csum
* 0x10204081 + *p
++;
688 response
->encrypted
.checksum
= htonl(csum
);
692 * load a scatterlist with a potentially split-page buffer
694 static void rxkad_sg_set_buf2(struct scatterlist sg
[2],
695 void *buf
, size_t buflen
)
699 sg_init_table(sg
, 2);
701 sg_set_buf(&sg
[0], buf
, buflen
);
702 if (sg
[0].offset
+ buflen
> PAGE_SIZE
) {
703 /* the buffer was split over two pages */
704 sg
[0].length
= PAGE_SIZE
- sg
[0].offset
;
705 sg_set_buf(&sg
[1], buf
+ sg
[0].length
, buflen
- sg
[0].length
);
709 sg_mark_end(&sg
[nsg
- 1]);
711 ASSERTCMP(sg
[0].length
+ sg
[1].length
, ==, buflen
);
715 * encrypt the response packet
717 static void rxkad_encrypt_response(struct rxrpc_connection
*conn
,
718 struct rxkad_response
*resp
,
719 const struct rxkad_key
*s2
)
721 struct blkcipher_desc desc
;
722 struct rxrpc_crypt iv
;
723 struct scatterlist sg
[2];
725 /* continue encrypting from where we left off */
726 memcpy(&iv
, s2
->session_key
, sizeof(iv
));
727 desc
.tfm
= conn
->cipher
;
731 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
732 crypto_blkcipher_encrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
736 * respond to a challenge packet
738 static int rxkad_respond_to_challenge(struct rxrpc_connection
*conn
,
742 const struct rxrpc_key_token
*token
;
743 struct rxkad_challenge challenge
;
744 struct rxkad_response resp
745 __attribute__((aligned(8))); /* must be aligned for crypto */
746 struct rxrpc_skb_priv
*sp
;
747 u32 version
, nonce
, min_level
, abort_code
;
750 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->key
));
753 _leave(" = -EPROTO [no key]");
757 ret
= key_validate(conn
->key
);
759 *_abort_code
= RXKADEXPIRED
;
763 abort_code
= RXKADPACKETSHORT
;
765 if (skb_copy_bits(skb
, 0, &challenge
, sizeof(challenge
)) < 0)
768 version
= ntohl(challenge
.version
);
769 nonce
= ntohl(challenge
.nonce
);
770 min_level
= ntohl(challenge
.min_level
);
772 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
773 ntohl(sp
->hdr
.serial
), version
, nonce
, min_level
);
775 abort_code
= RXKADINCONSISTENCY
;
776 if (version
!= RXKAD_VERSION
)
779 abort_code
= RXKADLEVELFAIL
;
780 if (conn
->security_level
< min_level
)
783 token
= conn
->key
->payload
.data
;
785 /* build the response packet */
786 memset(&resp
, 0, sizeof(resp
));
788 resp
.version
= RXKAD_VERSION
;
789 resp
.encrypted
.epoch
= conn
->epoch
;
790 resp
.encrypted
.cid
= conn
->cid
;
791 resp
.encrypted
.securityIndex
= htonl(conn
->security_ix
);
792 resp
.encrypted
.call_id
[0] =
793 (conn
->channels
[0] ? conn
->channels
[0]->call_id
: 0);
794 resp
.encrypted
.call_id
[1] =
795 (conn
->channels
[1] ? conn
->channels
[1]->call_id
: 0);
796 resp
.encrypted
.call_id
[2] =
797 (conn
->channels
[2] ? conn
->channels
[2]->call_id
: 0);
798 resp
.encrypted
.call_id
[3] =
799 (conn
->channels
[3] ? conn
->channels
[3]->call_id
: 0);
800 resp
.encrypted
.inc_nonce
= htonl(nonce
+ 1);
801 resp
.encrypted
.level
= htonl(conn
->security_level
);
802 resp
.kvno
= htonl(token
->kad
->kvno
);
803 resp
.ticket_len
= htonl(token
->kad
->ticket_len
);
805 /* calculate the response checksum and then do the encryption */
806 rxkad_calc_response_checksum(&resp
);
807 rxkad_encrypt_response(conn
, &resp
, token
->kad
);
808 return rxkad_send_response(conn
, &sp
->hdr
, &resp
, token
->kad
);
811 *_abort_code
= abort_code
;
812 _leave(" = -EPROTO [%d]", abort_code
);
817 * decrypt the kerberos IV ticket in the response
819 static int rxkad_decrypt_ticket(struct rxrpc_connection
*conn
,
820 void *ticket
, size_t ticket_len
,
821 struct rxrpc_crypt
*_session_key
,
825 struct blkcipher_desc desc
;
826 struct rxrpc_crypt iv
, key
;
827 struct scatterlist sg
[1];
833 u8
*p
, *q
, *name
, *end
;
835 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->server_key
));
839 ret
= key_validate(conn
->server_key
);
843 *_abort_code
= RXKADEXPIRED
;
846 *_abort_code
= RXKADNOAUTH
;
851 ASSERT(conn
->server_key
->payload
.data
!= NULL
);
852 ASSERTCMP((unsigned long) ticket
& 7UL, ==, 0);
854 memcpy(&iv
, &conn
->server_key
->type_data
, sizeof(iv
));
856 desc
.tfm
= conn
->server_key
->payload
.data
;
860 sg_init_one(&sg
[0], ticket
, ticket_len
);
861 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, ticket_len
);
864 end
= p
+ ticket_len
;
869 q = memchr(p, 0, end - p); \
870 if (!q || q - p > (size)) \
879 /* extract the ticket flags */
880 _debug("KIV FLAGS: %x", *p
);
881 little_endian
= *p
& 1;
884 /* extract the authentication name */
886 _debug("KIV ANAME: %s", name
);
888 /* extract the principal's instance */
890 _debug("KIV INST : %s", name
);
892 /* extract the principal's authentication domain */
894 _debug("KIV REALM: %s", name
);
896 if (end
- p
< 4 + 8 + 4 + 2)
899 /* get the IPv4 address of the entity that requested the ticket */
900 memcpy(&addr
, p
, sizeof(addr
));
902 _debug("KIV ADDR : %pI4", &addr
);
904 /* get the session key from the ticket */
905 memcpy(&key
, p
, sizeof(key
));
907 _debug("KIV KEY : %08x %08x", ntohl(key
.n
[0]), ntohl(key
.n
[1]));
908 memcpy(_session_key
, &key
, sizeof(key
));
910 /* get the ticket's lifetime */
911 life
= *p
++ * 5 * 60;
912 _debug("KIV LIFE : %u", life
);
914 /* get the issue time of the ticket */
917 memcpy(&stamp
, p
, 4);
918 issue
= le32_to_cpu(stamp
);
921 memcpy(&stamp
, p
, 4);
922 issue
= be32_to_cpu(stamp
);
926 _debug("KIV ISSUE: %lx [%lx]", issue
, now
);
928 /* check the ticket is in date */
930 *_abort_code
= RXKADNOAUTH
;
935 if (issue
< now
- life
) {
936 *_abort_code
= RXKADEXPIRED
;
941 *_expiry
= issue
+ life
;
943 /* get the service name */
945 _debug("KIV SNAME: %s", name
);
947 /* get the service instance name */
949 _debug("KIV SINST: %s", name
);
953 _leave(" = %d", ret
);
957 *_abort_code
= RXKADBADTICKET
;
963 * decrypt the response packet
965 static void rxkad_decrypt_response(struct rxrpc_connection
*conn
,
966 struct rxkad_response
*resp
,
967 const struct rxrpc_crypt
*session_key
)
969 struct blkcipher_desc desc
;
970 struct scatterlist sg
[2];
971 struct rxrpc_crypt iv
;
974 ntohl(session_key
->n
[0]), ntohl(session_key
->n
[1]));
976 ASSERT(rxkad_ci
!= NULL
);
978 mutex_lock(&rxkad_ci_mutex
);
979 if (crypto_blkcipher_setkey(rxkad_ci
, session_key
->x
,
980 sizeof(*session_key
)) < 0)
983 memcpy(&iv
, session_key
, sizeof(iv
));
988 rxkad_sg_set_buf2(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
989 crypto_blkcipher_decrypt_iv(&desc
, sg
, sg
, sizeof(resp
->encrypted
));
990 mutex_unlock(&rxkad_ci_mutex
);
998 static int rxkad_verify_response(struct rxrpc_connection
*conn
,
1002 struct rxkad_response response
1003 __attribute__((aligned(8))); /* must be aligned for crypto */
1004 struct rxrpc_skb_priv
*sp
;
1005 struct rxrpc_crypt session_key
;
1008 u32 abort_code
, version
, kvno
, ticket_len
, level
;
1012 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->server_key
));
1014 abort_code
= RXKADPACKETSHORT
;
1015 if (skb_copy_bits(skb
, 0, &response
, sizeof(response
)) < 0)
1016 goto protocol_error
;
1017 if (!pskb_pull(skb
, sizeof(response
)))
1020 version
= ntohl(response
.version
);
1021 ticket_len
= ntohl(response
.ticket_len
);
1022 kvno
= ntohl(response
.kvno
);
1023 sp
= rxrpc_skb(skb
);
1024 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
1025 ntohl(sp
->hdr
.serial
), version
, kvno
, ticket_len
);
1027 abort_code
= RXKADINCONSISTENCY
;
1028 if (version
!= RXKAD_VERSION
)
1029 goto protocol_error
;
1031 abort_code
= RXKADTICKETLEN
;
1032 if (ticket_len
< 4 || ticket_len
> MAXKRB5TICKETLEN
)
1033 goto protocol_error
;
1035 abort_code
= RXKADUNKNOWNKEY
;
1036 if (kvno
>= RXKAD_TKT_TYPE_KERBEROS_V5
)
1037 goto protocol_error
;
1039 /* extract the kerberos ticket and decrypt and decode it */
1040 ticket
= kmalloc(ticket_len
, GFP_NOFS
);
1044 abort_code
= RXKADPACKETSHORT
;
1045 if (skb_copy_bits(skb
, 0, ticket
, ticket_len
) < 0)
1046 goto protocol_error_free
;
1048 ret
= rxkad_decrypt_ticket(conn
, ticket
, ticket_len
, &session_key
,
1049 &expiry
, &abort_code
);
1051 *_abort_code
= abort_code
;
1056 /* use the session key from inside the ticket to decrypt the
1058 rxkad_decrypt_response(conn
, &response
, &session_key
);
1060 abort_code
= RXKADSEALEDINCON
;
1061 if (response
.encrypted
.epoch
!= conn
->epoch
)
1062 goto protocol_error_free
;
1063 if (response
.encrypted
.cid
!= conn
->cid
)
1064 goto protocol_error_free
;
1065 if (ntohl(response
.encrypted
.securityIndex
) != conn
->security_ix
)
1066 goto protocol_error_free
;
1067 csum
= response
.encrypted
.checksum
;
1068 response
.encrypted
.checksum
= 0;
1069 rxkad_calc_response_checksum(&response
);
1070 if (response
.encrypted
.checksum
!= csum
)
1071 goto protocol_error_free
;
1073 if (ntohl(response
.encrypted
.call_id
[0]) > INT_MAX
||
1074 ntohl(response
.encrypted
.call_id
[1]) > INT_MAX
||
1075 ntohl(response
.encrypted
.call_id
[2]) > INT_MAX
||
1076 ntohl(response
.encrypted
.call_id
[3]) > INT_MAX
)
1077 goto protocol_error_free
;
1079 abort_code
= RXKADOUTOFSEQUENCE
;
1080 if (response
.encrypted
.inc_nonce
!= htonl(conn
->security_nonce
+ 1))
1081 goto protocol_error_free
;
1083 abort_code
= RXKADLEVELFAIL
;
1084 level
= ntohl(response
.encrypted
.level
);
1085 if (level
> RXRPC_SECURITY_ENCRYPT
)
1086 goto protocol_error_free
;
1087 conn
->security_level
= level
;
1089 /* create a key to hold the security data and expiration time - after
1090 * this the connection security can be handled in exactly the same way
1091 * as for a client connection */
1092 ret
= rxrpc_get_server_data_key(conn
, &session_key
, expiry
, kvno
);
1102 protocol_error_free
:
1105 *_abort_code
= abort_code
;
1106 _leave(" = -EPROTO [%d]", abort_code
);
1111 * clear the connection security
1113 static void rxkad_clear(struct rxrpc_connection
*conn
)
1118 crypto_free_blkcipher(conn
->cipher
);
1122 * RxRPC Kerberos-based security
1124 static struct rxrpc_security rxkad
= {
1125 .owner
= THIS_MODULE
,
1127 .security_index
= RXRPC_SECURITY_RXKAD
,
1128 .init_connection_security
= rxkad_init_connection_security
,
1129 .prime_packet_security
= rxkad_prime_packet_security
,
1130 .secure_packet
= rxkad_secure_packet
,
1131 .verify_packet
= rxkad_verify_packet
,
1132 .issue_challenge
= rxkad_issue_challenge
,
1133 .respond_to_challenge
= rxkad_respond_to_challenge
,
1134 .verify_response
= rxkad_verify_response
,
1135 .clear
= rxkad_clear
,
1138 static __init
int rxkad_init(void)
1142 /* pin the cipher we need so that the crypto layer doesn't invoke
1143 * keventd to go get it */
1144 rxkad_ci
= crypto_alloc_blkcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC
);
1145 if (IS_ERR(rxkad_ci
))
1146 return PTR_ERR(rxkad_ci
);
1148 return rxrpc_register_security(&rxkad
);
1151 module_init(rxkad_init
);
1153 static __exit
void rxkad_exit(void)
1157 rxrpc_unregister_security(&rxkad
);
1158 crypto_free_blkcipher(rxkad_ci
);
1161 module_exit(rxkad_exit
);