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_sync_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_sync_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_sync_skcipher("pcbc(fcrypt)", 0, 0);
73 if (crypto_sync_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
);
84 case RXRPC_SECURITY_ENCRYPT
:
86 conn
->security_size
= sizeof(struct rxkad_level2_hdr
);
101 * prime the encryption state with the invariant parts of a connection's
104 static int rxkad_prime_packet_security(struct rxrpc_connection
*conn
)
106 struct rxrpc_key_token
*token
;
107 SYNC_SKCIPHER_REQUEST_ON_STACK(req
, conn
->cipher
);
108 struct scatterlist sg
;
109 struct rxrpc_crypt iv
;
111 size_t tmpsize
= 4 * sizeof(__be32
);
115 if (!conn
->params
.key
)
118 tmpbuf
= kmalloc(tmpsize
, GFP_KERNEL
);
122 token
= conn
->params
.key
->payload
.data
[0];
123 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
125 tmpbuf
[0] = htonl(conn
->proto
.epoch
);
126 tmpbuf
[1] = htonl(conn
->proto
.cid
);
128 tmpbuf
[3] = htonl(conn
->security_ix
);
130 sg_init_one(&sg
, tmpbuf
, tmpsize
);
131 skcipher_request_set_sync_tfm(req
, conn
->cipher
);
132 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
133 skcipher_request_set_crypt(req
, &sg
, &sg
, tmpsize
, iv
.x
);
134 crypto_skcipher_encrypt(req
);
135 skcipher_request_zero(req
);
137 memcpy(&conn
->csum_iv
, tmpbuf
+ 2, sizeof(conn
->csum_iv
));
144 * partially encrypt a packet (level 1 security)
146 static int rxkad_secure_packet_auth(const struct rxrpc_call
*call
,
150 struct skcipher_request
*req
)
152 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
153 struct rxkad_level1_hdr hdr
;
154 struct rxrpc_crypt iv
;
155 struct scatterlist sg
;
160 check
= sp
->hdr
.seq
^ call
->call_id
;
161 data_size
|= (u32
)check
<< 16;
163 hdr
.data_size
= htonl(data_size
);
164 memcpy(sechdr
, &hdr
, sizeof(hdr
));
166 /* start the encryption afresh */
167 memset(&iv
, 0, sizeof(iv
));
169 sg_init_one(&sg
, sechdr
, 8);
170 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
171 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
172 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
173 crypto_skcipher_encrypt(req
);
174 skcipher_request_zero(req
);
181 * wholly encrypt a packet (level 2 security)
183 static int rxkad_secure_packet_encrypt(const struct rxrpc_call
*call
,
187 struct skcipher_request
*req
)
189 const struct rxrpc_key_token
*token
;
190 struct rxkad_level2_hdr rxkhdr
;
191 struct rxrpc_skb_priv
*sp
;
192 struct rxrpc_crypt iv
;
193 struct scatterlist sg
[16];
194 struct sk_buff
*trailer
;
204 check
= sp
->hdr
.seq
^ call
->call_id
;
206 rxkhdr
.data_size
= htonl(data_size
| (u32
)check
<< 16);
208 memcpy(sechdr
, &rxkhdr
, sizeof(rxkhdr
));
210 /* encrypt from the session key */
211 token
= call
->conn
->params
.key
->payload
.data
[0];
212 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
214 sg_init_one(&sg
[0], sechdr
, sizeof(rxkhdr
));
215 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
216 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
217 skcipher_request_set_crypt(req
, &sg
[0], &sg
[0], sizeof(rxkhdr
), iv
.x
);
218 crypto_skcipher_encrypt(req
);
220 /* we want to encrypt the skbuff in-place */
221 nsg
= skb_cow_data(skb
, 0, &trailer
);
223 if (nsg
< 0 || nsg
> 16)
226 len
= data_size
+ call
->conn
->size_align
- 1;
227 len
&= ~(call
->conn
->size_align
- 1);
229 sg_init_table(sg
, nsg
);
230 err
= skb_to_sgvec(skb
, sg
, 0, len
);
231 if (unlikely(err
< 0))
233 skcipher_request_set_crypt(req
, sg
, sg
, len
, iv
.x
);
234 crypto_skcipher_encrypt(req
);
240 skcipher_request_zero(req
);
245 * checksum an RxRPC packet header
247 static int rxkad_secure_packet(struct rxrpc_call
*call
,
252 struct rxrpc_skb_priv
*sp
;
253 SYNC_SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
254 struct rxrpc_crypt iv
;
255 struct scatterlist sg
;
261 _enter("{%d{%x}},{#%u},%zu,",
262 call
->debug_id
, key_serial(call
->conn
->params
.key
),
263 sp
->hdr
.seq
, data_size
);
265 if (!call
->conn
->cipher
)
268 ret
= key_validate(call
->conn
->params
.key
);
272 /* continue encrypting from where we left off */
273 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
275 /* calculate the security checksum */
276 x
= (call
->cid
& RXRPC_CHANNELMASK
) << (32 - RXRPC_CIDSHIFT
);
277 x
|= sp
->hdr
.seq
& 0x3fffffff;
278 call
->crypto_buf
[0] = htonl(call
->call_id
);
279 call
->crypto_buf
[1] = htonl(x
);
281 sg_init_one(&sg
, call
->crypto_buf
, 8);
282 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
283 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
284 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
285 crypto_skcipher_encrypt(req
);
286 skcipher_request_zero(req
);
288 y
= ntohl(call
->crypto_buf
[1]);
289 y
= (y
>> 16) & 0xffff;
291 y
= 1; /* zero checksums are not permitted */
294 switch (call
->conn
->params
.security_level
) {
295 case RXRPC_SECURITY_PLAIN
:
298 case RXRPC_SECURITY_AUTH
:
299 ret
= rxkad_secure_packet_auth(call
, skb
, data_size
, sechdr
,
302 case RXRPC_SECURITY_ENCRYPT
:
303 ret
= rxkad_secure_packet_encrypt(call
, skb
, data_size
,
311 _leave(" = %d [set %hx]", ret
, y
);
316 * decrypt partial encryption on a packet (level 1 security)
318 static int rxkad_verify_packet_1(struct rxrpc_call
*call
, struct sk_buff
*skb
,
319 unsigned int offset
, unsigned int len
,
321 struct skcipher_request
*req
)
323 struct rxkad_level1_hdr sechdr
;
324 struct rxrpc_crypt iv
;
325 struct scatterlist sg
[16];
326 struct sk_buff
*trailer
;
335 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_1_hdr", "V1H",
340 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
341 * directly into the target buffer.
343 nsg
= skb_cow_data(skb
, 0, &trailer
);
344 if (nsg
< 0 || nsg
> 16)
347 sg_init_table(sg
, nsg
);
348 ret
= skb_to_sgvec(skb
, sg
, offset
, 8);
349 if (unlikely(ret
< 0))
352 /* start the decryption afresh */
353 memset(&iv
, 0, sizeof(iv
));
355 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
356 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
357 skcipher_request_set_crypt(req
, sg
, sg
, 8, iv
.x
);
358 crypto_skcipher_decrypt(req
);
359 skcipher_request_zero(req
);
361 /* Extract the decrypted packet length */
362 if (skb_copy_bits(skb
, offset
, &sechdr
, sizeof(sechdr
)) < 0) {
363 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_1_len", "XV1",
367 offset
+= sizeof(sechdr
);
368 len
-= sizeof(sechdr
);
370 buf
= ntohl(sechdr
.data_size
);
371 data_size
= buf
& 0xffff;
374 check
^= seq
^ call
->call_id
;
377 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_1_check", "V1C",
382 if (data_size
> len
) {
383 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_1_datalen", "V1L",
388 _leave(" = 0 [dlen=%x]", data_size
);
393 rxrpc_send_abort_packet(call
);
397 _leave(" = -ENOMEM");
402 * wholly decrypt a packet (level 2 security)
404 static int rxkad_verify_packet_2(struct rxrpc_call
*call
, struct sk_buff
*skb
,
405 unsigned int offset
, unsigned int len
,
407 struct skcipher_request
*req
)
409 const struct rxrpc_key_token
*token
;
410 struct rxkad_level2_hdr sechdr
;
411 struct rxrpc_crypt iv
;
412 struct scatterlist _sg
[4], *sg
;
413 struct sk_buff
*trailer
;
419 _enter(",{%d}", skb
->len
);
422 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_2_hdr", "V2H",
427 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
428 * directly into the target buffer.
430 nsg
= skb_cow_data(skb
, 0, &trailer
);
435 if (unlikely(nsg
> 4)) {
436 sg
= kmalloc_array(nsg
, sizeof(*sg
), GFP_NOIO
);
441 sg_init_table(sg
, nsg
);
442 ret
= skb_to_sgvec(skb
, sg
, offset
, len
);
443 if (unlikely(ret
< 0)) {
449 /* decrypt from the session key */
450 token
= call
->conn
->params
.key
->payload
.data
[0];
451 memcpy(&iv
, token
->kad
->session_key
, sizeof(iv
));
453 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
454 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
455 skcipher_request_set_crypt(req
, sg
, sg
, len
, iv
.x
);
456 crypto_skcipher_decrypt(req
);
457 skcipher_request_zero(req
);
461 /* Extract the decrypted packet length */
462 if (skb_copy_bits(skb
, offset
, &sechdr
, sizeof(sechdr
)) < 0) {
463 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_2_len", "XV2",
467 offset
+= sizeof(sechdr
);
468 len
-= sizeof(sechdr
);
470 buf
= ntohl(sechdr
.data_size
);
471 data_size
= buf
& 0xffff;
474 check
^= seq
^ call
->call_id
;
477 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_2_check", "V2C",
482 if (data_size
> len
) {
483 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_2_datalen", "V2L",
488 _leave(" = 0 [dlen=%x]", data_size
);
493 rxrpc_send_abort_packet(call
);
497 _leave(" = -ENOMEM");
502 * Verify the security on a received packet or subpacket (if part of a
505 static int rxkad_verify_packet(struct rxrpc_call
*call
, struct sk_buff
*skb
,
506 unsigned int offset
, unsigned int len
,
507 rxrpc_seq_t seq
, u16 expected_cksum
)
509 SYNC_SKCIPHER_REQUEST_ON_STACK(req
, call
->conn
->cipher
);
510 struct rxrpc_crypt iv
;
511 struct scatterlist sg
;
516 _enter("{%d{%x}},{#%u}",
517 call
->debug_id
, key_serial(call
->conn
->params
.key
), seq
);
519 if (!call
->conn
->cipher
)
522 /* continue encrypting from where we left off */
523 memcpy(&iv
, call
->conn
->csum_iv
.x
, sizeof(iv
));
525 /* validate the security checksum */
526 x
= (call
->cid
& RXRPC_CHANNELMASK
) << (32 - RXRPC_CIDSHIFT
);
527 x
|= seq
& 0x3fffffff;
528 call
->crypto_buf
[0] = htonl(call
->call_id
);
529 call
->crypto_buf
[1] = htonl(x
);
531 sg_init_one(&sg
, call
->crypto_buf
, 8);
532 skcipher_request_set_sync_tfm(req
, call
->conn
->cipher
);
533 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
534 skcipher_request_set_crypt(req
, &sg
, &sg
, 8, iv
.x
);
535 crypto_skcipher_encrypt(req
);
536 skcipher_request_zero(req
);
538 y
= ntohl(call
->crypto_buf
[1]);
539 cksum
= (y
>> 16) & 0xffff;
541 cksum
= 1; /* zero checksums are not permitted */
543 if (cksum
!= expected_cksum
) {
544 aborted
= rxrpc_abort_eproto(call
, skb
, "rxkad_csum", "VCK",
549 switch (call
->conn
->params
.security_level
) {
550 case RXRPC_SECURITY_PLAIN
:
552 case RXRPC_SECURITY_AUTH
:
553 return rxkad_verify_packet_1(call
, skb
, offset
, len
, seq
, req
);
554 case RXRPC_SECURITY_ENCRYPT
:
555 return rxkad_verify_packet_2(call
, skb
, offset
, len
, seq
, req
);
562 rxrpc_send_abort_packet(call
);
567 * Locate the data contained in a packet that was partially encrypted.
569 static void rxkad_locate_data_1(struct rxrpc_call
*call
, struct sk_buff
*skb
,
570 unsigned int *_offset
, unsigned int *_len
)
572 struct rxkad_level1_hdr sechdr
;
574 if (skb_copy_bits(skb
, *_offset
, &sechdr
, sizeof(sechdr
)) < 0)
576 *_offset
+= sizeof(sechdr
);
577 *_len
= ntohl(sechdr
.data_size
) & 0xffff;
581 * Locate the data contained in a packet that was completely encrypted.
583 static void rxkad_locate_data_2(struct rxrpc_call
*call
, struct sk_buff
*skb
,
584 unsigned int *_offset
, unsigned int *_len
)
586 struct rxkad_level2_hdr sechdr
;
588 if (skb_copy_bits(skb
, *_offset
, &sechdr
, sizeof(sechdr
)) < 0)
590 *_offset
+= sizeof(sechdr
);
591 *_len
= ntohl(sechdr
.data_size
) & 0xffff;
595 * Locate the data contained in an already decrypted packet.
597 static void rxkad_locate_data(struct rxrpc_call
*call
, struct sk_buff
*skb
,
598 unsigned int *_offset
, unsigned int *_len
)
600 switch (call
->conn
->params
.security_level
) {
601 case RXRPC_SECURITY_AUTH
:
602 rxkad_locate_data_1(call
, skb
, _offset
, _len
);
604 case RXRPC_SECURITY_ENCRYPT
:
605 rxkad_locate_data_2(call
, skb
, _offset
, _len
);
615 static int rxkad_issue_challenge(struct rxrpc_connection
*conn
)
617 struct rxkad_challenge challenge
;
618 struct rxrpc_wire_header whdr
;
625 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->params
.key
));
627 ret
= key_validate(conn
->params
.key
);
631 get_random_bytes(&conn
->security_nonce
, sizeof(conn
->security_nonce
));
633 challenge
.version
= htonl(2);
634 challenge
.nonce
= htonl(conn
->security_nonce
);
635 challenge
.min_level
= htonl(0);
636 challenge
.__padding
= 0;
638 msg
.msg_name
= &conn
->params
.peer
->srx
.transport
;
639 msg
.msg_namelen
= conn
->params
.peer
->srx
.transport_len
;
640 msg
.msg_control
= NULL
;
641 msg
.msg_controllen
= 0;
644 whdr
.epoch
= htonl(conn
->proto
.epoch
);
645 whdr
.cid
= htonl(conn
->proto
.cid
);
648 whdr
.type
= RXRPC_PACKET_TYPE_CHALLENGE
;
649 whdr
.flags
= conn
->out_clientflag
;
651 whdr
.securityIndex
= conn
->security_ix
;
653 whdr
.serviceId
= htons(conn
->service_id
);
655 iov
[0].iov_base
= &whdr
;
656 iov
[0].iov_len
= sizeof(whdr
);
657 iov
[1].iov_base
= &challenge
;
658 iov
[1].iov_len
= sizeof(challenge
);
660 len
= iov
[0].iov_len
+ iov
[1].iov_len
;
662 serial
= atomic_inc_return(&conn
->serial
);
663 whdr
.serial
= htonl(serial
);
664 _proto("Tx CHALLENGE %%%u", serial
);
666 ret
= kernel_sendmsg(conn
->params
.local
->socket
, &msg
, iov
, 2, len
);
668 trace_rxrpc_tx_fail(conn
->debug_id
, serial
, ret
,
669 rxrpc_tx_point_rxkad_challenge
);
673 conn
->params
.peer
->last_tx_at
= ktime_get_seconds();
674 trace_rxrpc_tx_packet(conn
->debug_id
, &whdr
,
675 rxrpc_tx_point_rxkad_challenge
);
681 * send a Kerberos security response
683 static int rxkad_send_response(struct rxrpc_connection
*conn
,
684 struct rxrpc_host_header
*hdr
,
685 struct rxkad_response
*resp
,
686 const struct rxkad_key
*s2
)
688 struct rxrpc_wire_header whdr
;
697 msg
.msg_name
= &conn
->params
.peer
->srx
.transport
;
698 msg
.msg_namelen
= conn
->params
.peer
->srx
.transport_len
;
699 msg
.msg_control
= NULL
;
700 msg
.msg_controllen
= 0;
703 memset(&whdr
, 0, sizeof(whdr
));
704 whdr
.epoch
= htonl(hdr
->epoch
);
705 whdr
.cid
= htonl(hdr
->cid
);
706 whdr
.type
= RXRPC_PACKET_TYPE_RESPONSE
;
707 whdr
.flags
= conn
->out_clientflag
;
708 whdr
.securityIndex
= hdr
->securityIndex
;
709 whdr
.serviceId
= htons(hdr
->serviceId
);
711 iov
[0].iov_base
= &whdr
;
712 iov
[0].iov_len
= sizeof(whdr
);
713 iov
[1].iov_base
= resp
;
714 iov
[1].iov_len
= sizeof(*resp
);
715 iov
[2].iov_base
= (void *)s2
->ticket
;
716 iov
[2].iov_len
= s2
->ticket_len
;
718 len
= iov
[0].iov_len
+ iov
[1].iov_len
+ iov
[2].iov_len
;
720 serial
= atomic_inc_return(&conn
->serial
);
721 whdr
.serial
= htonl(serial
);
722 _proto("Tx RESPONSE %%%u", serial
);
724 ret
= kernel_sendmsg(conn
->params
.local
->socket
, &msg
, iov
, 3, len
);
726 trace_rxrpc_tx_fail(conn
->debug_id
, serial
, ret
,
727 rxrpc_tx_point_rxkad_response
);
731 conn
->params
.peer
->last_tx_at
= ktime_get_seconds();
737 * calculate the response checksum
739 static void rxkad_calc_response_checksum(struct rxkad_response
*response
)
743 u8
*p
= (u8
*) response
;
745 for (loop
= sizeof(*response
); loop
> 0; loop
--)
746 csum
= csum
* 0x10204081 + *p
++;
748 response
->encrypted
.checksum
= htonl(csum
);
752 * encrypt the response packet
754 static void rxkad_encrypt_response(struct rxrpc_connection
*conn
,
755 struct rxkad_response
*resp
,
756 const struct rxkad_key
*s2
)
758 SYNC_SKCIPHER_REQUEST_ON_STACK(req
, conn
->cipher
);
759 struct rxrpc_crypt iv
;
760 struct scatterlist sg
[1];
762 /* continue encrypting from where we left off */
763 memcpy(&iv
, s2
->session_key
, sizeof(iv
));
765 sg_init_table(sg
, 1);
766 sg_set_buf(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
767 skcipher_request_set_sync_tfm(req
, conn
->cipher
);
768 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
769 skcipher_request_set_crypt(req
, sg
, sg
, sizeof(resp
->encrypted
), iv
.x
);
770 crypto_skcipher_encrypt(req
);
771 skcipher_request_zero(req
);
775 * respond to a challenge packet
777 static int rxkad_respond_to_challenge(struct rxrpc_connection
*conn
,
781 const struct rxrpc_key_token
*token
;
782 struct rxkad_challenge challenge
;
783 struct rxkad_response
*resp
;
784 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
786 u32 version
, nonce
, min_level
, abort_code
;
789 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->params
.key
));
791 eproto
= tracepoint_string("chall_no_key");
792 abort_code
= RX_PROTOCOL_ERROR
;
793 if (!conn
->params
.key
)
796 abort_code
= RXKADEXPIRED
;
797 ret
= key_validate(conn
->params
.key
);
801 eproto
= tracepoint_string("chall_short");
802 abort_code
= RXKADPACKETSHORT
;
803 if (skb_copy_bits(skb
, sizeof(struct rxrpc_wire_header
),
804 &challenge
, sizeof(challenge
)) < 0)
807 version
= ntohl(challenge
.version
);
808 nonce
= ntohl(challenge
.nonce
);
809 min_level
= ntohl(challenge
.min_level
);
811 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
812 sp
->hdr
.serial
, version
, nonce
, min_level
);
814 eproto
= tracepoint_string("chall_ver");
815 abort_code
= RXKADINCONSISTENCY
;
816 if (version
!= RXKAD_VERSION
)
819 abort_code
= RXKADLEVELFAIL
;
821 if (conn
->params
.security_level
< min_level
)
824 token
= conn
->params
.key
->payload
.data
[0];
826 /* build the response packet */
827 resp
= kzalloc(sizeof(struct rxkad_response
), GFP_NOFS
);
831 resp
->version
= htonl(RXKAD_VERSION
);
832 resp
->encrypted
.epoch
= htonl(conn
->proto
.epoch
);
833 resp
->encrypted
.cid
= htonl(conn
->proto
.cid
);
834 resp
->encrypted
.securityIndex
= htonl(conn
->security_ix
);
835 resp
->encrypted
.inc_nonce
= htonl(nonce
+ 1);
836 resp
->encrypted
.level
= htonl(conn
->params
.security_level
);
837 resp
->kvno
= htonl(token
->kad
->kvno
);
838 resp
->ticket_len
= htonl(token
->kad
->ticket_len
);
839 resp
->encrypted
.call_id
[0] = htonl(conn
->channels
[0].call_counter
);
840 resp
->encrypted
.call_id
[1] = htonl(conn
->channels
[1].call_counter
);
841 resp
->encrypted
.call_id
[2] = htonl(conn
->channels
[2].call_counter
);
842 resp
->encrypted
.call_id
[3] = htonl(conn
->channels
[3].call_counter
);
844 /* calculate the response checksum and then do the encryption */
845 rxkad_calc_response_checksum(resp
);
846 rxkad_encrypt_response(conn
, resp
, token
->kad
);
847 ret
= rxkad_send_response(conn
, &sp
->hdr
, resp
, token
->kad
);
852 trace_rxrpc_rx_eproto(NULL
, sp
->hdr
.serial
, eproto
);
855 *_abort_code
= abort_code
;
860 * decrypt the kerberos IV ticket in the response
862 static int rxkad_decrypt_ticket(struct rxrpc_connection
*conn
,
864 void *ticket
, size_t ticket_len
,
865 struct rxrpc_crypt
*_session_key
,
869 struct skcipher_request
*req
;
870 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
871 struct rxrpc_crypt iv
, key
;
872 struct scatterlist sg
[1];
880 u8
*p
, *q
, *name
, *end
;
882 _enter("{%d},{%x}", conn
->debug_id
, key_serial(conn
->server_key
));
886 ret
= key_validate(conn
->server_key
);
890 abort_code
= RXKADEXPIRED
;
893 abort_code
= RXKADNOAUTH
;
898 ASSERT(conn
->server_key
->payload
.data
[0] != NULL
);
899 ASSERTCMP((unsigned long) ticket
& 7UL, ==, 0);
901 memcpy(&iv
, &conn
->server_key
->payload
.data
[2], sizeof(iv
));
904 req
= skcipher_request_alloc(conn
->server_key
->payload
.data
[0],
907 goto temporary_error
;
909 sg_init_one(&sg
[0], ticket
, ticket_len
);
910 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
911 skcipher_request_set_crypt(req
, sg
, sg
, ticket_len
, iv
.x
);
912 crypto_skcipher_decrypt(req
);
913 skcipher_request_free(req
);
916 end
= p
+ ticket_len
;
921 eproto = tracepoint_string("rxkad_bad_"#field); \
922 q = memchr(p, 0, end - p); \
923 if (!q || q - p > (field##_SZ)) \
932 /* extract the ticket flags */
933 _debug("KIV FLAGS: %x", *p
);
934 little_endian
= *p
& 1;
937 /* extract the authentication name */
939 _debug("KIV ANAME: %s", name
);
941 /* extract the principal's instance */
943 _debug("KIV INST : %s", name
);
945 /* extract the principal's authentication domain */
947 _debug("KIV REALM: %s", name
);
949 eproto
= tracepoint_string("rxkad_bad_len");
950 if (end
- p
< 4 + 8 + 4 + 2)
953 /* get the IPv4 address of the entity that requested the ticket */
954 memcpy(&addr
, p
, sizeof(addr
));
956 _debug("KIV ADDR : %pI4", &addr
);
958 /* get the session key from the ticket */
959 memcpy(&key
, p
, sizeof(key
));
961 _debug("KIV KEY : %08x %08x", ntohl(key
.n
[0]), ntohl(key
.n
[1]));
962 memcpy(_session_key
, &key
, sizeof(key
));
964 /* get the ticket's lifetime */
965 life
= *p
++ * 5 * 60;
966 _debug("KIV LIFE : %u", life
);
968 /* get the issue time of the ticket */
971 memcpy(&stamp
, p
, 4);
972 issue
= rxrpc_u32_to_time64(le32_to_cpu(stamp
));
975 memcpy(&stamp
, p
, 4);
976 issue
= rxrpc_u32_to_time64(be32_to_cpu(stamp
));
979 now
= ktime_get_real_seconds();
980 _debug("KIV ISSUE: %llx [%llx]", issue
, now
);
982 /* check the ticket is in date */
984 abort_code
= RXKADNOAUTH
;
989 if (issue
< now
- life
) {
990 abort_code
= RXKADEXPIRED
;
995 *_expiry
= issue
+ life
;
997 /* get the service name */
999 _debug("KIV SNAME: %s", name
);
1001 /* get the service instance name */
1003 _debug("KIV SINST: %s", name
);
1007 trace_rxrpc_rx_eproto(NULL
, sp
->hdr
.serial
, eproto
);
1008 abort_code
= RXKADBADTICKET
;
1011 *_abort_code
= abort_code
;
1018 * decrypt the response packet
1020 static void rxkad_decrypt_response(struct rxrpc_connection
*conn
,
1021 struct rxkad_response
*resp
,
1022 const struct rxrpc_crypt
*session_key
)
1024 SYNC_SKCIPHER_REQUEST_ON_STACK(req
, rxkad_ci
);
1025 struct scatterlist sg
[1];
1026 struct rxrpc_crypt iv
;
1028 _enter(",,%08x%08x",
1029 ntohl(session_key
->n
[0]), ntohl(session_key
->n
[1]));
1031 ASSERT(rxkad_ci
!= NULL
);
1033 mutex_lock(&rxkad_ci_mutex
);
1034 if (crypto_sync_skcipher_setkey(rxkad_ci
, session_key
->x
,
1035 sizeof(*session_key
)) < 0)
1038 memcpy(&iv
, session_key
, sizeof(iv
));
1040 sg_init_table(sg
, 1);
1041 sg_set_buf(sg
, &resp
->encrypted
, sizeof(resp
->encrypted
));
1042 skcipher_request_set_sync_tfm(req
, rxkad_ci
);
1043 skcipher_request_set_callback(req
, 0, NULL
, NULL
);
1044 skcipher_request_set_crypt(req
, sg
, sg
, sizeof(resp
->encrypted
), iv
.x
);
1045 crypto_skcipher_decrypt(req
);
1046 skcipher_request_zero(req
);
1048 mutex_unlock(&rxkad_ci_mutex
);
1056 static int rxkad_verify_response(struct rxrpc_connection
*conn
,
1057 struct sk_buff
*skb
,
1060 struct rxkad_response
*response
;
1061 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
1062 struct rxrpc_crypt session_key
;
1066 u32 abort_code
, version
, kvno
, ticket_len
, level
;
1070 _enter("{%d,%x}", conn
->debug_id
, key_serial(conn
->server_key
));
1073 response
= kzalloc(sizeof(struct rxkad_response
), GFP_NOFS
);
1075 goto temporary_error
;
1077 eproto
= tracepoint_string("rxkad_rsp_short");
1078 abort_code
= RXKADPACKETSHORT
;
1079 if (skb_copy_bits(skb
, sizeof(struct rxrpc_wire_header
),
1080 response
, sizeof(*response
)) < 0)
1081 goto protocol_error
;
1082 if (!pskb_pull(skb
, sizeof(*response
)))
1085 version
= ntohl(response
->version
);
1086 ticket_len
= ntohl(response
->ticket_len
);
1087 kvno
= ntohl(response
->kvno
);
1088 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
1089 sp
->hdr
.serial
, version
, kvno
, ticket_len
);
1091 eproto
= tracepoint_string("rxkad_rsp_ver");
1092 abort_code
= RXKADINCONSISTENCY
;
1093 if (version
!= RXKAD_VERSION
)
1094 goto protocol_error
;
1096 eproto
= tracepoint_string("rxkad_rsp_tktlen");
1097 abort_code
= RXKADTICKETLEN
;
1098 if (ticket_len
< 4 || ticket_len
> MAXKRB5TICKETLEN
)
1099 goto protocol_error
;
1101 eproto
= tracepoint_string("rxkad_rsp_unkkey");
1102 abort_code
= RXKADUNKNOWNKEY
;
1103 if (kvno
>= RXKAD_TKT_TYPE_KERBEROS_V5
)
1104 goto protocol_error
;
1106 /* extract the kerberos ticket and decrypt and decode it */
1108 ticket
= kmalloc(ticket_len
, GFP_NOFS
);
1110 goto temporary_error
;
1112 eproto
= tracepoint_string("rxkad_tkt_short");
1113 abort_code
= RXKADPACKETSHORT
;
1114 if (skb_copy_bits(skb
, sizeof(struct rxrpc_wire_header
),
1115 ticket
, ticket_len
) < 0)
1116 goto protocol_error_free
;
1118 ret
= rxkad_decrypt_ticket(conn
, skb
, ticket
, ticket_len
, &session_key
,
1119 &expiry
, _abort_code
);
1121 goto temporary_error_free_resp
;
1123 /* use the session key from inside the ticket to decrypt the
1125 rxkad_decrypt_response(conn
, response
, &session_key
);
1127 eproto
= tracepoint_string("rxkad_rsp_param");
1128 abort_code
= RXKADSEALEDINCON
;
1129 if (ntohl(response
->encrypted
.epoch
) != conn
->proto
.epoch
)
1130 goto protocol_error_free
;
1131 if (ntohl(response
->encrypted
.cid
) != conn
->proto
.cid
)
1132 goto protocol_error_free
;
1133 if (ntohl(response
->encrypted
.securityIndex
) != conn
->security_ix
)
1134 goto protocol_error_free
;
1135 csum
= response
->encrypted
.checksum
;
1136 response
->encrypted
.checksum
= 0;
1137 rxkad_calc_response_checksum(response
);
1138 eproto
= tracepoint_string("rxkad_rsp_csum");
1139 if (response
->encrypted
.checksum
!= csum
)
1140 goto protocol_error_free
;
1142 spin_lock(&conn
->channel_lock
);
1143 for (i
= 0; i
< RXRPC_MAXCALLS
; i
++) {
1144 struct rxrpc_call
*call
;
1145 u32 call_id
= ntohl(response
->encrypted
.call_id
[i
]);
1147 eproto
= tracepoint_string("rxkad_rsp_callid");
1148 if (call_id
> INT_MAX
)
1149 goto protocol_error_unlock
;
1151 eproto
= tracepoint_string("rxkad_rsp_callctr");
1152 if (call_id
< conn
->channels
[i
].call_counter
)
1153 goto protocol_error_unlock
;
1155 eproto
= tracepoint_string("rxkad_rsp_callst");
1156 if (call_id
> conn
->channels
[i
].call_counter
) {
1157 call
= rcu_dereference_protected(
1158 conn
->channels
[i
].call
,
1159 lockdep_is_held(&conn
->channel_lock
));
1160 if (call
&& call
->state
< RXRPC_CALL_COMPLETE
)
1161 goto protocol_error_unlock
;
1162 conn
->channels
[i
].call_counter
= call_id
;
1165 spin_unlock(&conn
->channel_lock
);
1167 eproto
= tracepoint_string("rxkad_rsp_seq");
1168 abort_code
= RXKADOUTOFSEQUENCE
;
1169 if (ntohl(response
->encrypted
.inc_nonce
) != conn
->security_nonce
+ 1)
1170 goto protocol_error_free
;
1172 eproto
= tracepoint_string("rxkad_rsp_level");
1173 abort_code
= RXKADLEVELFAIL
;
1174 level
= ntohl(response
->encrypted
.level
);
1175 if (level
> RXRPC_SECURITY_ENCRYPT
)
1176 goto protocol_error_free
;
1177 conn
->params
.security_level
= level
;
1179 /* create a key to hold the security data and expiration time - after
1180 * this the connection security can be handled in exactly the same way
1181 * as for a client connection */
1182 ret
= rxrpc_get_server_data_key(conn
, &session_key
, expiry
, kvno
);
1184 goto temporary_error_free_ticket
;
1191 protocol_error_unlock
:
1192 spin_unlock(&conn
->channel_lock
);
1193 protocol_error_free
:
1197 trace_rxrpc_rx_eproto(NULL
, sp
->hdr
.serial
, eproto
);
1198 *_abort_code
= abort_code
;
1201 temporary_error_free_ticket
:
1203 temporary_error_free_resp
:
1206 /* Ignore the response packet if we got a temporary error such as
1207 * ENOMEM. We just want to send the challenge again. Note that we
1208 * also come out this way if the ticket decryption fails.
1214 * clear the connection security
1216 static void rxkad_clear(struct rxrpc_connection
*conn
)
1221 crypto_free_sync_skcipher(conn
->cipher
);
1225 * Initialise the rxkad security service.
1227 static int rxkad_init(void)
1229 /* pin the cipher we need so that the crypto layer doesn't invoke
1230 * keventd to go get it */
1231 rxkad_ci
= crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
1232 return PTR_ERR_OR_ZERO(rxkad_ci
);
1236 * Clean up the rxkad security service.
1238 static void rxkad_exit(void)
1241 crypto_free_sync_skcipher(rxkad_ci
);
1245 * RxRPC Kerberos-based security
1247 const struct rxrpc_security rxkad
= {
1249 .security_index
= RXRPC_SECURITY_RXKAD
,
1252 .init_connection_security
= rxkad_init_connection_security
,
1253 .prime_packet_security
= rxkad_prime_packet_security
,
1254 .secure_packet
= rxkad_secure_packet
,
1255 .verify_packet
= rxkad_verify_packet
,
1256 .locate_data
= rxkad_locate_data
,
1257 .issue_challenge
= rxkad_issue_challenge
,
1258 .respond_to_challenge
= rxkad_respond_to_challenge
,
1259 .verify_response
= rxkad_verify_response
,
1260 .clear
= rxkad_clear
,