]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - net/rxrpc/rxkad.c
Merge tag 'kbuild-v5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[mirror_ubuntu-focal-kernel.git] / net / rxrpc / rxkad.c
CommitLineData
17926a79
DH
1/* Kerberos-based RxRPC security
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
1afe593b 14#include <crypto/skcipher.h>
17926a79
DH
15#include <linux/module.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
18#include <linux/udp.h>
17926a79
DH
19#include <linux/scatterlist.h>
20#include <linux/ctype.h>
5a0e3ad6 21#include <linux/slab.h>
17926a79
DH
22#include <net/sock.h>
23#include <net/af_rxrpc.h>
33941284 24#include <keys/rxrpc-type.h>
17926a79
DH
25#include "ar-internal.h"
26
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 */
34
17926a79
DH
35struct rxkad_level1_hdr {
36 __be32 data_size; /* true data size (excluding padding) */
37};
38
39struct rxkad_level2_hdr {
40 __be32 data_size; /* true data size (excluding padding) */
41 __be32 checksum; /* decrypted data checksum */
42};
43
17926a79
DH
44/*
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
47 * packets
48 */
69d826fa 49static struct crypto_sync_skcipher *rxkad_ci;
17926a79
DH
50static DEFINE_MUTEX(rxkad_ci_mutex);
51
52/*
53 * initialise connection security
54 */
55static int rxkad_init_connection_security(struct rxrpc_connection *conn)
56{
69d826fa 57 struct crypto_sync_skcipher *ci;
33941284 58 struct rxrpc_key_token *token;
17926a79
DH
59 int ret;
60
19ffa01c 61 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->params.key));
17926a79 62
19ffa01c 63 token = conn->params.key->payload.data[0];
33941284 64 conn->security_ix = token->security_index;
17926a79 65
69d826fa 66 ci = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
17926a79
DH
67 if (IS_ERR(ci)) {
68 _debug("no cipher");
69 ret = PTR_ERR(ci);
70 goto error;
71 }
72
69d826fa 73 if (crypto_sync_skcipher_setkey(ci, token->kad->session_key,
1afe593b 74 sizeof(token->kad->session_key)) < 0)
17926a79
DH
75 BUG();
76
19ffa01c 77 switch (conn->params.security_level) {
17926a79
DH
78 case RXRPC_SECURITY_PLAIN:
79 break;
80 case RXRPC_SECURITY_AUTH:
81 conn->size_align = 8;
82 conn->security_size = sizeof(struct rxkad_level1_hdr);
17926a79
DH
83 break;
84 case RXRPC_SECURITY_ENCRYPT:
85 conn->size_align = 8;
86 conn->security_size = sizeof(struct rxkad_level2_hdr);
17926a79
DH
87 break;
88 default:
89 ret = -EKEYREJECTED;
90 goto error;
91 }
92
93 conn->cipher = ci;
94 ret = 0;
95error:
96 _leave(" = %d", ret);
97 return ret;
98}
99
100/*
101 * prime the encryption state with the invariant parts of a connection's
102 * description
103 */
a263629d 104static int rxkad_prime_packet_security(struct rxrpc_connection *conn)
17926a79 105{
33941284 106 struct rxrpc_key_token *token;
69d826fa 107 SYNC_SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
a263629d 108 struct scatterlist sg;
17926a79 109 struct rxrpc_crypt iv;
a263629d
HX
110 __be32 *tmpbuf;
111 size_t tmpsize = 4 * sizeof(__be32);
17926a79
DH
112
113 _enter("");
114
19ffa01c 115 if (!conn->params.key)
a263629d
HX
116 return 0;
117
118 tmpbuf = kmalloc(tmpsize, GFP_KERNEL);
119 if (!tmpbuf)
120 return -ENOMEM;
17926a79 121
19ffa01c 122 token = conn->params.key->payload.data[0];
33941284 123 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 124
a263629d
HX
125 tmpbuf[0] = htonl(conn->proto.epoch);
126 tmpbuf[1] = htonl(conn->proto.cid);
127 tmpbuf[2] = 0;
128 tmpbuf[3] = htonl(conn->security_ix);
1afe593b 129
a263629d 130 sg_init_one(&sg, tmpbuf, tmpsize);
69d826fa 131 skcipher_request_set_sync_tfm(req, conn->cipher);
1afe593b 132 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 133 skcipher_request_set_crypt(req, &sg, &sg, tmpsize, iv.x);
1afe593b
HX
134 crypto_skcipher_encrypt(req);
135 skcipher_request_zero(req);
17926a79 136
a263629d
HX
137 memcpy(&conn->csum_iv, tmpbuf + 2, sizeof(conn->csum_iv));
138 kfree(tmpbuf);
139 _leave(" = 0");
140 return 0;
17926a79
DH
141}
142
143/*
144 * partially encrypt a packet (level 1 security)
145 */
146static int rxkad_secure_packet_auth(const struct rxrpc_call *call,
147 struct sk_buff *skb,
148 u32 data_size,
54424d38
KC
149 void *sechdr,
150 struct skcipher_request *req)
17926a79 151{
fb46f6ee 152 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
a263629d 153 struct rxkad_level1_hdr hdr;
17926a79 154 struct rxrpc_crypt iv;
a263629d 155 struct scatterlist sg;
17926a79
DH
156 u16 check;
157
17926a79
DH
158 _enter("");
159
5a924b89 160 check = sp->hdr.seq ^ call->call_id;
0d12f8a4 161 data_size |= (u32)check << 16;
17926a79 162
a263629d
HX
163 hdr.data_size = htonl(data_size);
164 memcpy(sechdr, &hdr, sizeof(hdr));
17926a79
DH
165
166 /* start the encryption afresh */
167 memset(&iv, 0, sizeof(iv));
17926a79 168
a263629d 169 sg_init_one(&sg, sechdr, 8);
69d826fa 170 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b 171 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 172 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
173 crypto_skcipher_encrypt(req);
174 skcipher_request_zero(req);
17926a79 175
17926a79
DH
176 _leave(" = 0");
177 return 0;
178}
179
180/*
181 * wholly encrypt a packet (level 2 security)
182 */
183static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
b4f1342f
DH
184 struct sk_buff *skb,
185 u32 data_size,
54424d38
KC
186 void *sechdr,
187 struct skcipher_request *req)
17926a79 188{
33941284 189 const struct rxrpc_key_token *token;
a263629d 190 struct rxkad_level2_hdr rxkhdr;
17926a79 191 struct rxrpc_skb_priv *sp;
17926a79
DH
192 struct rxrpc_crypt iv;
193 struct scatterlist sg[16];
194 struct sk_buff *trailer;
95c96174 195 unsigned int len;
17926a79
DH
196 u16 check;
197 int nsg;
1afe593b 198 int err;
17926a79
DH
199
200 sp = rxrpc_skb(skb);
201
202 _enter("");
203
5a924b89 204 check = sp->hdr.seq ^ call->call_id;
17926a79 205
0d12f8a4 206 rxkhdr.data_size = htonl(data_size | (u32)check << 16);
17926a79 207 rxkhdr.checksum = 0;
a263629d 208 memcpy(sechdr, &rxkhdr, sizeof(rxkhdr));
17926a79
DH
209
210 /* encrypt from the session key */
19ffa01c 211 token = call->conn->params.key->payload.data[0];
33941284 212 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 213
68e3f5dd 214 sg_init_one(&sg[0], sechdr, sizeof(rxkhdr));
69d826fa 215 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b 216 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 217 skcipher_request_set_crypt(req, &sg[0], &sg[0], sizeof(rxkhdr), iv.x);
1afe593b 218 crypto_skcipher_encrypt(req);
17926a79
DH
219
220 /* we want to encrypt the skbuff in-place */
221 nsg = skb_cow_data(skb, 0, &trailer);
1afe593b 222 err = -ENOMEM;
17926a79 223 if (nsg < 0 || nsg > 16)
1afe593b 224 goto out;
17926a79
DH
225
226 len = data_size + call->conn->size_align - 1;
227 len &= ~(call->conn->size_align - 1);
228
51c739d1 229 sg_init_table(sg, nsg);
89a5ea99
JD
230 err = skb_to_sgvec(skb, sg, 0, len);
231 if (unlikely(err < 0))
232 goto out;
1afe593b 233 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
1afe593b 234 crypto_skcipher_encrypt(req);
17926a79
DH
235
236 _leave(" = 0");
1afe593b
HX
237 err = 0;
238
239out:
240 skcipher_request_zero(req);
241 return err;
17926a79
DH
242}
243
244/*
245 * checksum an RxRPC packet header
246 */
a263629d 247static int rxkad_secure_packet(struct rxrpc_call *call,
b4f1342f
DH
248 struct sk_buff *skb,
249 size_t data_size,
250 void *sechdr)
17926a79
DH
251{
252 struct rxrpc_skb_priv *sp;
69d826fa 253 SYNC_SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79 254 struct rxrpc_crypt iv;
a263629d 255 struct scatterlist sg;
0d12f8a4 256 u32 x, y;
17926a79
DH
257 int ret;
258
259 sp = rxrpc_skb(skb);
260
261 _enter("{%d{%x}},{#%u},%zu,",
19ffa01c
DH
262 call->debug_id, key_serial(call->conn->params.key),
263 sp->hdr.seq, data_size);
17926a79
DH
264
265 if (!call->conn->cipher)
266 return 0;
267
19ffa01c 268 ret = key_validate(call->conn->params.key);
17926a79
DH
269 if (ret < 0)
270 return ret;
271
272 /* continue encrypting from where we left off */
273 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
17926a79
DH
274
275 /* calculate the security checksum */
01a90a45 276 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
0d12f8a4 277 x |= sp->hdr.seq & 0x3fffffff;
5a924b89 278 call->crypto_buf[0] = htonl(call->call_id);
a263629d 279 call->crypto_buf[1] = htonl(x);
1afe593b 280
a263629d 281 sg_init_one(&sg, call->crypto_buf, 8);
69d826fa 282 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b 283 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 284 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
285 crypto_skcipher_encrypt(req);
286 skcipher_request_zero(req);
17926a79 287
a263629d 288 y = ntohl(call->crypto_buf[1]);
91e916cf
AV
289 y = (y >> 16) & 0xffff;
290 if (y == 0)
291 y = 1; /* zero checksums are not permitted */
0d12f8a4 292 sp->hdr.cksum = y;
17926a79 293
19ffa01c 294 switch (call->conn->params.security_level) {
17926a79
DH
295 case RXRPC_SECURITY_PLAIN:
296 ret = 0;
297 break;
298 case RXRPC_SECURITY_AUTH:
54424d38
KC
299 ret = rxkad_secure_packet_auth(call, skb, data_size, sechdr,
300 req);
17926a79
DH
301 break;
302 case RXRPC_SECURITY_ENCRYPT:
303 ret = rxkad_secure_packet_encrypt(call, skb, data_size,
54424d38 304 sechdr, req);
17926a79
DH
305 break;
306 default:
307 ret = -EPERM;
308 break;
309 }
310
91e916cf 311 _leave(" = %d [set %hx]", ret, y);
17926a79
DH
312 return ret;
313}
314
315/*
316 * decrypt partial encryption on a packet (level 1 security)
317 */
5a42976d 318static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb,
248f219c 319 unsigned int offset, unsigned int len,
54424d38
KC
320 rxrpc_seq_t seq,
321 struct skcipher_request *req)
17926a79
DH
322{
323 struct rxkad_level1_hdr sechdr;
17926a79 324 struct rxrpc_crypt iv;
68e3f5dd 325 struct scatterlist sg[16];
17926a79 326 struct sk_buff *trailer;
fb46f6ee 327 bool aborted;
17926a79
DH
328 u32 data_size, buf;
329 u16 check;
89a5ea99 330 int nsg, ret;
17926a79
DH
331
332 _enter("");
333
248f219c 334 if (len < 8) {
fb46f6ee
DH
335 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_hdr", "V1H",
336 RXKADSEALEDINCON);
5a42976d
DH
337 goto protocol_error;
338 }
17926a79 339
248f219c
DH
340 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
341 * directly into the target buffer.
342 */
68e3f5dd
HX
343 nsg = skb_cow_data(skb, 0, &trailer);
344 if (nsg < 0 || nsg > 16)
17926a79
DH
345 goto nomem;
346
68e3f5dd 347 sg_init_table(sg, nsg);
89a5ea99
JD
348 ret = skb_to_sgvec(skb, sg, offset, 8);
349 if (unlikely(ret < 0))
350 return ret;
17926a79
DH
351
352 /* start the decryption afresh */
353 memset(&iv, 0, sizeof(iv));
17926a79 354
69d826fa 355 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b
HX
356 skcipher_request_set_callback(req, 0, NULL, NULL);
357 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
1afe593b
HX
358 crypto_skcipher_decrypt(req);
359 skcipher_request_zero(req);
17926a79 360
5a42976d 361 /* Extract the decrypted packet length */
248f219c 362 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
fb46f6ee
DH
363 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_len", "XV1",
364 RXKADDATALEN);
5a42976d
DH
365 goto protocol_error;
366 }
248f219c
DH
367 offset += sizeof(sechdr);
368 len -= sizeof(sechdr);
17926a79
DH
369
370 buf = ntohl(sechdr.data_size);
371 data_size = buf & 0xffff;
372
373 check = buf >> 16;
5a42976d 374 check ^= seq ^ call->call_id;
17926a79
DH
375 check &= 0xffff;
376 if (check != 0) {
fb46f6ee
DH
377 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_check", "V1C",
378 RXKADSEALEDINCON);
17926a79
DH
379 goto protocol_error;
380 }
381
248f219c 382 if (data_size > len) {
fb46f6ee
DH
383 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_datalen", "V1L",
384 RXKADDATALEN);
5a42976d
DH
385 goto protocol_error;
386 }
17926a79
DH
387
388 _leave(" = 0 [dlen=%x]", data_size);
389 return 0;
390
17926a79 391protocol_error:
fb46f6ee
DH
392 if (aborted)
393 rxrpc_send_abort_packet(call);
17926a79
DH
394 return -EPROTO;
395
396nomem:
397 _leave(" = -ENOMEM");
398 return -ENOMEM;
399}
400
401/*
402 * wholly decrypt a packet (level 2 security)
403 */
5a42976d 404static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb,
248f219c 405 unsigned int offset, unsigned int len,
54424d38
KC
406 rxrpc_seq_t seq,
407 struct skcipher_request *req)
17926a79 408{
33941284 409 const struct rxrpc_key_token *token;
17926a79 410 struct rxkad_level2_hdr sechdr;
17926a79
DH
411 struct rxrpc_crypt iv;
412 struct scatterlist _sg[4], *sg;
413 struct sk_buff *trailer;
fb46f6ee 414 bool aborted;
17926a79
DH
415 u32 data_size, buf;
416 u16 check;
89a5ea99 417 int nsg, ret;
17926a79
DH
418
419 _enter(",{%d}", skb->len);
420
248f219c 421 if (len < 8) {
fb46f6ee
DH
422 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_hdr", "V2H",
423 RXKADSEALEDINCON);
5a42976d
DH
424 goto protocol_error;
425 }
17926a79 426
248f219c
DH
427 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
428 * directly into the target buffer.
429 */
17926a79
DH
430 nsg = skb_cow_data(skb, 0, &trailer);
431 if (nsg < 0)
432 goto nomem;
433
434 sg = _sg;
435 if (unlikely(nsg > 4)) {
6da2ec56 436 sg = kmalloc_array(nsg, sizeof(*sg), GFP_NOIO);
17926a79
DH
437 if (!sg)
438 goto nomem;
439 }
440
68e3f5dd 441 sg_init_table(sg, nsg);
89a5ea99
JD
442 ret = skb_to_sgvec(skb, sg, offset, len);
443 if (unlikely(ret < 0)) {
444 if (sg != _sg)
445 kfree(sg);
446 return ret;
447 }
17926a79
DH
448
449 /* decrypt from the session key */
19ffa01c 450 token = call->conn->params.key->payload.data[0];
33941284 451 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 452
69d826fa 453 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b 454 skcipher_request_set_callback(req, 0, NULL, NULL);
248f219c 455 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
1afe593b
HX
456 crypto_skcipher_decrypt(req);
457 skcipher_request_zero(req);
17926a79
DH
458 if (sg != _sg)
459 kfree(sg);
460
5a42976d 461 /* Extract the decrypted packet length */
248f219c 462 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
fb46f6ee
DH
463 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_len", "XV2",
464 RXKADDATALEN);
5a42976d
DH
465 goto protocol_error;
466 }
248f219c
DH
467 offset += sizeof(sechdr);
468 len -= sizeof(sechdr);
17926a79
DH
469
470 buf = ntohl(sechdr.data_size);
471 data_size = buf & 0xffff;
472
473 check = buf >> 16;
5a42976d 474 check ^= seq ^ call->call_id;
17926a79
DH
475 check &= 0xffff;
476 if (check != 0) {
fb46f6ee
DH
477 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_check", "V2C",
478 RXKADSEALEDINCON);
17926a79
DH
479 goto protocol_error;
480 }
481
248f219c 482 if (data_size > len) {
fb46f6ee
DH
483 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_datalen", "V2L",
484 RXKADDATALEN);
5a42976d
DH
485 goto protocol_error;
486 }
17926a79
DH
487
488 _leave(" = 0 [dlen=%x]", data_size);
489 return 0;
490
17926a79 491protocol_error:
fb46f6ee
DH
492 if (aborted)
493 rxrpc_send_abort_packet(call);
17926a79
DH
494 return -EPROTO;
495
496nomem:
497 _leave(" = -ENOMEM");
498 return -ENOMEM;
499}
500
501/*
5a42976d
DH
502 * Verify the security on a received packet or subpacket (if part of a
503 * jumbo packet).
17926a79 504 */
5a42976d 505static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
248f219c 506 unsigned int offset, unsigned int len,
5a42976d 507 rxrpc_seq_t seq, u16 expected_cksum)
17926a79 508{
69d826fa 509 SYNC_SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79 510 struct rxrpc_crypt iv;
a263629d 511 struct scatterlist sg;
fb46f6ee 512 bool aborted;
0d12f8a4
DH
513 u16 cksum;
514 u32 x, y;
17926a79
DH
515
516 _enter("{%d{%x}},{#%u}",
5a42976d 517 call->debug_id, key_serial(call->conn->params.key), seq);
17926a79
DH
518
519 if (!call->conn->cipher)
520 return 0;
521
17926a79
DH
522 /* continue encrypting from where we left off */
523 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
17926a79
DH
524
525 /* validate the security checksum */
01a90a45 526 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
5a42976d 527 x |= seq & 0x3fffffff;
a263629d
HX
528 call->crypto_buf[0] = htonl(call->call_id);
529 call->crypto_buf[1] = htonl(x);
1afe593b 530
a263629d 531 sg_init_one(&sg, call->crypto_buf, 8);
69d826fa 532 skcipher_request_set_sync_tfm(req, call->conn->cipher);
1afe593b 533 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 534 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
535 crypto_skcipher_encrypt(req);
536 skcipher_request_zero(req);
17926a79 537
a263629d 538 y = ntohl(call->crypto_buf[1]);
0d12f8a4
DH
539 cksum = (y >> 16) & 0xffff;
540 if (cksum == 0)
541 cksum = 1; /* zero checksums are not permitted */
17926a79 542
5a42976d 543 if (cksum != expected_cksum) {
fb46f6ee
DH
544 aborted = rxrpc_abort_eproto(call, skb, "rxkad_csum", "VCK",
545 RXKADSEALEDINCON);
546 goto protocol_error;
17926a79
DH
547 }
548
19ffa01c 549 switch (call->conn->params.security_level) {
17926a79 550 case RXRPC_SECURITY_PLAIN:
5a42976d 551 return 0;
17926a79 552 case RXRPC_SECURITY_AUTH:
54424d38 553 return rxkad_verify_packet_1(call, skb, offset, len, seq, req);
17926a79 554 case RXRPC_SECURITY_ENCRYPT:
54424d38 555 return rxkad_verify_packet_2(call, skb, offset, len, seq, req);
17926a79 556 default:
5a42976d 557 return -ENOANO;
17926a79 558 }
fb46f6ee
DH
559
560protocol_error:
561 if (aborted)
562 rxrpc_send_abort_packet(call);
563 return -EPROTO;
17926a79
DH
564}
565
248f219c
DH
566/*
567 * Locate the data contained in a packet that was partially encrypted.
568 */
569static void rxkad_locate_data_1(struct rxrpc_call *call, struct sk_buff *skb,
570 unsigned int *_offset, unsigned int *_len)
571{
572 struct rxkad_level1_hdr sechdr;
573
574 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
575 BUG();
576 *_offset += sizeof(sechdr);
577 *_len = ntohl(sechdr.data_size) & 0xffff;
578}
579
580/*
581 * Locate the data contained in a packet that was completely encrypted.
582 */
583static void rxkad_locate_data_2(struct rxrpc_call *call, struct sk_buff *skb,
584 unsigned int *_offset, unsigned int *_len)
585{
586 struct rxkad_level2_hdr sechdr;
587
588 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
589 BUG();
590 *_offset += sizeof(sechdr);
591 *_len = ntohl(sechdr.data_size) & 0xffff;
592}
593
594/*
595 * Locate the data contained in an already decrypted packet.
596 */
597static void rxkad_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
598 unsigned int *_offset, unsigned int *_len)
599{
600 switch (call->conn->params.security_level) {
601 case RXRPC_SECURITY_AUTH:
602 rxkad_locate_data_1(call, skb, _offset, _len);
603 return;
604 case RXRPC_SECURITY_ENCRYPT:
605 rxkad_locate_data_2(call, skb, _offset, _len);
606 return;
607 default:
608 return;
609 }
610}
611
17926a79
DH
612/*
613 * issue a challenge
614 */
615static int rxkad_issue_challenge(struct rxrpc_connection *conn)
616{
617 struct rxkad_challenge challenge;
0d12f8a4 618 struct rxrpc_wire_header whdr;
17926a79
DH
619 struct msghdr msg;
620 struct kvec iov[2];
621 size_t len;
0d12f8a4 622 u32 serial;
17926a79
DH
623 int ret;
624
19ffa01c 625 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
17926a79 626
19ffa01c 627 ret = key_validate(conn->params.key);
17926a79
DH
628 if (ret < 0)
629 return ret;
630
631 get_random_bytes(&conn->security_nonce, sizeof(conn->security_nonce));
632
633 challenge.version = htonl(2);
634 challenge.nonce = htonl(conn->security_nonce);
635 challenge.min_level = htonl(0);
636 challenge.__padding = 0;
637
7b674e39
DH
638 msg.msg_name = &conn->params.peer->srx.transport;
639 msg.msg_namelen = conn->params.peer->srx.transport_len;
17926a79
DH
640 msg.msg_control = NULL;
641 msg.msg_controllen = 0;
642 msg.msg_flags = 0;
643
19ffa01c
DH
644 whdr.epoch = htonl(conn->proto.epoch);
645 whdr.cid = htonl(conn->proto.cid);
0d12f8a4
DH
646 whdr.callNumber = 0;
647 whdr.seq = 0;
648 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
649 whdr.flags = conn->out_clientflag;
650 whdr.userStatus = 0;
651 whdr.securityIndex = conn->security_ix;
652 whdr._rsvd = 0;
68d6d1ae 653 whdr.serviceId = htons(conn->service_id);
0d12f8a4
DH
654
655 iov[0].iov_base = &whdr;
656 iov[0].iov_len = sizeof(whdr);
17926a79
DH
657 iov[1].iov_base = &challenge;
658 iov[1].iov_len = sizeof(challenge);
659
660 len = iov[0].iov_len + iov[1].iov_len;
661
0d12f8a4
DH
662 serial = atomic_inc_return(&conn->serial);
663 whdr.serial = htonl(serial);
664 _proto("Tx CHALLENGE %%%u", serial);
17926a79 665
85f32278 666 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
17926a79 667 if (ret < 0) {
6b47fe1d 668 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
4764c0da 669 rxrpc_tx_point_rxkad_challenge);
17926a79
DH
670 return -EAGAIN;
671 }
672
330bdcfa 673 conn->params.peer->last_tx_at = ktime_get_seconds();
4764c0da
DH
674 trace_rxrpc_tx_packet(conn->debug_id, &whdr,
675 rxrpc_tx_point_rxkad_challenge);
17926a79
DH
676 _leave(" = 0");
677 return 0;
678}
679
680/*
681 * send a Kerberos security response
682 */
683static int rxkad_send_response(struct rxrpc_connection *conn,
0d12f8a4 684 struct rxrpc_host_header *hdr,
17926a79
DH
685 struct rxkad_response *resp,
686 const struct rxkad_key *s2)
687{
0d12f8a4 688 struct rxrpc_wire_header whdr;
17926a79
DH
689 struct msghdr msg;
690 struct kvec iov[3];
691 size_t len;
0d12f8a4 692 u32 serial;
17926a79
DH
693 int ret;
694
695 _enter("");
696
7b674e39
DH
697 msg.msg_name = &conn->params.peer->srx.transport;
698 msg.msg_namelen = conn->params.peer->srx.transport_len;
17926a79
DH
699 msg.msg_control = NULL;
700 msg.msg_controllen = 0;
701 msg.msg_flags = 0;
702
0d12f8a4
DH
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);
17926a79 710
0d12f8a4
DH
711 iov[0].iov_base = &whdr;
712 iov[0].iov_len = sizeof(whdr);
17926a79
DH
713 iov[1].iov_base = resp;
714 iov[1].iov_len = sizeof(*resp);
0d12f8a4 715 iov[2].iov_base = (void *)s2->ticket;
17926a79
DH
716 iov[2].iov_len = s2->ticket_len;
717
718 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
719
0d12f8a4
DH
720 serial = atomic_inc_return(&conn->serial);
721 whdr.serial = htonl(serial);
722 _proto("Tx RESPONSE %%%u", serial);
17926a79 723
85f32278 724 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len);
17926a79 725 if (ret < 0) {
6b47fe1d 726 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
4764c0da 727 rxrpc_tx_point_rxkad_response);
17926a79
DH
728 return -EAGAIN;
729 }
730
330bdcfa 731 conn->params.peer->last_tx_at = ktime_get_seconds();
17926a79
DH
732 _leave(" = 0");
733 return 0;
734}
735
736/*
737 * calculate the response checksum
738 */
739static void rxkad_calc_response_checksum(struct rxkad_response *response)
740{
741 u32 csum = 1000003;
742 int loop;
743 u8 *p = (u8 *) response;
744
745 for (loop = sizeof(*response); loop > 0; loop--)
746 csum = csum * 0x10204081 + *p++;
747
748 response->encrypted.checksum = htonl(csum);
749}
750
17926a79
DH
751/*
752 * encrypt the response packet
753 */
754static void rxkad_encrypt_response(struct rxrpc_connection *conn,
755 struct rxkad_response *resp,
756 const struct rxkad_key *s2)
757{
69d826fa 758 SYNC_SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
17926a79 759 struct rxrpc_crypt iv;
a263629d 760 struct scatterlist sg[1];
17926a79
DH
761
762 /* continue encrypting from where we left off */
763 memcpy(&iv, s2->session_key, sizeof(iv));
17926a79 764
a263629d
HX
765 sg_init_table(sg, 1);
766 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
69d826fa 767 skcipher_request_set_sync_tfm(req, conn->cipher);
1afe593b
HX
768 skcipher_request_set_callback(req, 0, NULL, NULL);
769 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
1afe593b
HX
770 crypto_skcipher_encrypt(req);
771 skcipher_request_zero(req);
17926a79
DH
772}
773
774/*
775 * respond to a challenge packet
776 */
777static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
778 struct sk_buff *skb,
779 u32 *_abort_code)
780{
33941284 781 const struct rxrpc_key_token *token;
17926a79 782 struct rxkad_challenge challenge;
8c2f826d 783 struct rxkad_response *resp;
248f219c 784 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
fb46f6ee 785 const char *eproto;
17926a79
DH
786 u32 version, nonce, min_level, abort_code;
787 int ret;
788
19ffa01c 789 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
17926a79 790
fb46f6ee 791 eproto = tracepoint_string("chall_no_key");
ef68622d
DH
792 abort_code = RX_PROTOCOL_ERROR;
793 if (!conn->params.key)
794 goto protocol_error;
17926a79 795
ef68622d 796 abort_code = RXKADEXPIRED;
19ffa01c 797 ret = key_validate(conn->params.key);
ef68622d
DH
798 if (ret < 0)
799 goto other_error;
17926a79 800
fb46f6ee 801 eproto = tracepoint_string("chall_short");
17926a79 802 abort_code = RXKADPACKETSHORT;
775e5b71
DH
803 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
804 &challenge, sizeof(challenge)) < 0)
17926a79
DH
805 goto protocol_error;
806
807 version = ntohl(challenge.version);
808 nonce = ntohl(challenge.nonce);
809 min_level = ntohl(challenge.min_level);
810
811 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
0d12f8a4 812 sp->hdr.serial, version, nonce, min_level);
17926a79 813
fb46f6ee 814 eproto = tracepoint_string("chall_ver");
17926a79
DH
815 abort_code = RXKADINCONSISTENCY;
816 if (version != RXKAD_VERSION)
817 goto protocol_error;
818
819 abort_code = RXKADLEVELFAIL;
ef68622d 820 ret = -EACCES;
19ffa01c 821 if (conn->params.security_level < min_level)
ef68622d 822 goto other_error;
17926a79 823
19ffa01c 824 token = conn->params.key->payload.data[0];
17926a79
DH
825
826 /* build the response packet */
8c2f826d
DH
827 resp = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
828 if (!resp)
829 return -ENOMEM;
830
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);
17926a79
DH
843
844 /* calculate the response checksum and then do the encryption */
8c2f826d
DH
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);
848 kfree(resp);
849 return ret;
17926a79
DH
850
851protocol_error:
fb46f6ee 852 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
ef68622d
DH
853 ret = -EPROTO;
854other_error:
17926a79 855 *_abort_code = abort_code;
ef68622d 856 return ret;
17926a79
DH
857}
858
859/*
860 * decrypt the kerberos IV ticket in the response
861 */
862static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
fb46f6ee 863 struct sk_buff *skb,
17926a79
DH
864 void *ticket, size_t ticket_len,
865 struct rxrpc_crypt *_session_key,
10674a03 866 time64_t *_expiry,
17926a79
DH
867 u32 *_abort_code)
868{
1afe593b 869 struct skcipher_request *req;
fb46f6ee 870 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
17926a79 871 struct rxrpc_crypt iv, key;
68e3f5dd 872 struct scatterlist sg[1];
17926a79 873 struct in_addr addr;
95c96174 874 unsigned int life;
fb46f6ee 875 const char *eproto;
10674a03 876 time64_t issue, now;
17926a79
DH
877 bool little_endian;
878 int ret;
fb46f6ee 879 u32 abort_code;
17926a79
DH
880 u8 *p, *q, *name, *end;
881
882 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->server_key));
883
884 *_expiry = 0;
885
886 ret = key_validate(conn->server_key);
887 if (ret < 0) {
888 switch (ret) {
889 case -EKEYEXPIRED:
fb46f6ee 890 abort_code = RXKADEXPIRED;
ef68622d 891 goto other_error;
17926a79 892 default:
fb46f6ee 893 abort_code = RXKADNOAUTH;
ef68622d 894 goto other_error;
17926a79
DH
895 }
896 }
897
146aa8b1 898 ASSERT(conn->server_key->payload.data[0] != NULL);
17926a79
DH
899 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
900
146aa8b1 901 memcpy(&iv, &conn->server_key->payload.data[2], sizeof(iv));
17926a79 902
ef68622d 903 ret = -ENOMEM;
1afe593b
HX
904 req = skcipher_request_alloc(conn->server_key->payload.data[0],
905 GFP_NOFS);
ef68622d
DH
906 if (!req)
907 goto temporary_error;
17926a79 908
68e3f5dd 909 sg_init_one(&sg[0], ticket, ticket_len);
1afe593b
HX
910 skcipher_request_set_callback(req, 0, NULL, NULL);
911 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
1afe593b
HX
912 crypto_skcipher_decrypt(req);
913 skcipher_request_free(req);
17926a79
DH
914
915 p = ticket;
916 end = p + ticket_len;
917
fb46f6ee 918#define Z(field) \
17926a79
DH
919 ({ \
920 u8 *__str = p; \
fb46f6ee 921 eproto = tracepoint_string("rxkad_bad_"#field); \
17926a79 922 q = memchr(p, 0, end - p); \
fb46f6ee 923 if (!q || q - p > (field##_SZ)) \
17926a79
DH
924 goto bad_ticket; \
925 for (; p < q; p++) \
926 if (!isprint(*p)) \
927 goto bad_ticket; \
928 p++; \
929 __str; \
930 })
931
932 /* extract the ticket flags */
933 _debug("KIV FLAGS: %x", *p);
934 little_endian = *p & 1;
935 p++;
936
937 /* extract the authentication name */
fb46f6ee 938 name = Z(ANAME);
17926a79
DH
939 _debug("KIV ANAME: %s", name);
940
941 /* extract the principal's instance */
fb46f6ee 942 name = Z(INST);
17926a79
DH
943 _debug("KIV INST : %s", name);
944
945 /* extract the principal's authentication domain */
fb46f6ee 946 name = Z(REALM);
17926a79
DH
947 _debug("KIV REALM: %s", name);
948
fb46f6ee 949 eproto = tracepoint_string("rxkad_bad_len");
17926a79
DH
950 if (end - p < 4 + 8 + 4 + 2)
951 goto bad_ticket;
952
953 /* get the IPv4 address of the entity that requested the ticket */
954 memcpy(&addr, p, sizeof(addr));
955 p += 4;
21454aaa 956 _debug("KIV ADDR : %pI4", &addr);
17926a79
DH
957
958 /* get the session key from the ticket */
959 memcpy(&key, p, sizeof(key));
960 p += 8;
961 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
962 memcpy(_session_key, &key, sizeof(key));
963
964 /* get the ticket's lifetime */
965 life = *p++ * 5 * 60;
966 _debug("KIV LIFE : %u", life);
967
968 /* get the issue time of the ticket */
969 if (little_endian) {
970 __le32 stamp;
971 memcpy(&stamp, p, 4);
10674a03 972 issue = rxrpc_u32_to_time64(le32_to_cpu(stamp));
17926a79
DH
973 } else {
974 __be32 stamp;
975 memcpy(&stamp, p, 4);
10674a03 976 issue = rxrpc_u32_to_time64(be32_to_cpu(stamp));
17926a79
DH
977 }
978 p += 4;
10674a03
BW
979 now = ktime_get_real_seconds();
980 _debug("KIV ISSUE: %llx [%llx]", issue, now);
17926a79
DH
981
982 /* check the ticket is in date */
983 if (issue > now) {
fb46f6ee 984 abort_code = RXKADNOAUTH;
17926a79 985 ret = -EKEYREJECTED;
ef68622d 986 goto other_error;
17926a79
DH
987 }
988
989 if (issue < now - life) {
fb46f6ee 990 abort_code = RXKADEXPIRED;
17926a79 991 ret = -EKEYEXPIRED;
ef68622d 992 goto other_error;
17926a79
DH
993 }
994
995 *_expiry = issue + life;
996
997 /* get the service name */
fb46f6ee 998 name = Z(SNAME);
17926a79
DH
999 _debug("KIV SNAME: %s", name);
1000
1001 /* get the service instance name */
fb46f6ee 1002 name = Z(INST);
17926a79 1003 _debug("KIV SINST: %s", name);
ef68622d 1004 return 0;
17926a79
DH
1005
1006bad_ticket:
fb46f6ee
DH
1007 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
1008 abort_code = RXKADBADTICKET;
ef68622d
DH
1009 ret = -EPROTO;
1010other_error:
fb46f6ee 1011 *_abort_code = abort_code;
ef68622d
DH
1012 return ret;
1013temporary_error:
1014 return ret;
17926a79
DH
1015}
1016
1017/*
1018 * decrypt the response packet
1019 */
1020static void rxkad_decrypt_response(struct rxrpc_connection *conn,
1021 struct rxkad_response *resp,
1022 const struct rxrpc_crypt *session_key)
1023{
69d826fa 1024 SYNC_SKCIPHER_REQUEST_ON_STACK(req, rxkad_ci);
a263629d 1025 struct scatterlist sg[1];
17926a79
DH
1026 struct rxrpc_crypt iv;
1027
1028 _enter(",,%08x%08x",
1029 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
1030
1031 ASSERT(rxkad_ci != NULL);
1032
1033 mutex_lock(&rxkad_ci_mutex);
69d826fa 1034 if (crypto_sync_skcipher_setkey(rxkad_ci, session_key->x,
1afe593b 1035 sizeof(*session_key)) < 0)
17926a79
DH
1036 BUG();
1037
1038 memcpy(&iv, session_key, sizeof(iv));
17926a79 1039
a263629d
HX
1040 sg_init_table(sg, 1);
1041 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
69d826fa 1042 skcipher_request_set_sync_tfm(req, rxkad_ci);
1afe593b
HX
1043 skcipher_request_set_callback(req, 0, NULL, NULL);
1044 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
1afe593b
HX
1045 crypto_skcipher_decrypt(req);
1046 skcipher_request_zero(req);
1047
17926a79
DH
1048 mutex_unlock(&rxkad_ci_mutex);
1049
1050 _leave("");
1051}
1052
1053/*
1054 * verify a response
1055 */
1056static int rxkad_verify_response(struct rxrpc_connection *conn,
1057 struct sk_buff *skb,
1058 u32 *_abort_code)
1059{
8c2f826d 1060 struct rxkad_response *response;
248f219c 1061 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
17926a79 1062 struct rxrpc_crypt session_key;
fb46f6ee 1063 const char *eproto;
10674a03 1064 time64_t expiry;
17926a79 1065 void *ticket;
91e916cf
AV
1066 u32 abort_code, version, kvno, ticket_len, level;
1067 __be32 csum;
a1399f8b 1068 int ret, i;
17926a79
DH
1069
1070 _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key));
1071
8c2f826d
DH
1072 ret = -ENOMEM;
1073 response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
1074 if (!response)
1075 goto temporary_error;
1076
fb46f6ee 1077 eproto = tracepoint_string("rxkad_rsp_short");
17926a79 1078 abort_code = RXKADPACKETSHORT;
775e5b71 1079 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
8c2f826d 1080 response, sizeof(*response)) < 0)
17926a79 1081 goto protocol_error;
8c2f826d 1082 if (!pskb_pull(skb, sizeof(*response)))
17926a79
DH
1083 BUG();
1084
8c2f826d
DH
1085 version = ntohl(response->version);
1086 ticket_len = ntohl(response->ticket_len);
1087 kvno = ntohl(response->kvno);
17926a79 1088 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
0d12f8a4 1089 sp->hdr.serial, version, kvno, ticket_len);
17926a79 1090
fb46f6ee 1091 eproto = tracepoint_string("rxkad_rsp_ver");
17926a79
DH
1092 abort_code = RXKADINCONSISTENCY;
1093 if (version != RXKAD_VERSION)
4aa9cb32 1094 goto protocol_error;
17926a79 1095
fb46f6ee 1096 eproto = tracepoint_string("rxkad_rsp_tktlen");
17926a79
DH
1097 abort_code = RXKADTICKETLEN;
1098 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
1099 goto protocol_error;
1100
fb46f6ee 1101 eproto = tracepoint_string("rxkad_rsp_unkkey");
17926a79
DH
1102 abort_code = RXKADUNKNOWNKEY;
1103 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5)
1104 goto protocol_error;
1105
1106 /* extract the kerberos ticket and decrypt and decode it */
ef68622d 1107 ret = -ENOMEM;
17926a79
DH
1108 ticket = kmalloc(ticket_len, GFP_NOFS);
1109 if (!ticket)
ef68622d 1110 goto temporary_error;
17926a79 1111
fb46f6ee 1112 eproto = tracepoint_string("rxkad_tkt_short");
17926a79 1113 abort_code = RXKADPACKETSHORT;
775e5b71
DH
1114 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
1115 ticket, ticket_len) < 0)
17926a79
DH
1116 goto protocol_error_free;
1117
fb46f6ee 1118 ret = rxkad_decrypt_ticket(conn, skb, ticket, ticket_len, &session_key,
ef68622d
DH
1119 &expiry, _abort_code);
1120 if (ret < 0)
8c2f826d 1121 goto temporary_error_free_resp;
17926a79
DH
1122
1123 /* use the session key from inside the ticket to decrypt the
1124 * response */
8c2f826d 1125 rxkad_decrypt_response(conn, response, &session_key);
17926a79 1126
fb46f6ee 1127 eproto = tracepoint_string("rxkad_rsp_param");
17926a79 1128 abort_code = RXKADSEALEDINCON;
8c2f826d 1129 if (ntohl(response->encrypted.epoch) != conn->proto.epoch)
17926a79 1130 goto protocol_error_free;
8c2f826d 1131 if (ntohl(response->encrypted.cid) != conn->proto.cid)
17926a79 1132 goto protocol_error_free;
8c2f826d 1133 if (ntohl(response->encrypted.securityIndex) != conn->security_ix)
17926a79 1134 goto protocol_error_free;
8c2f826d
DH
1135 csum = response->encrypted.checksum;
1136 response->encrypted.checksum = 0;
1137 rxkad_calc_response_checksum(response);
fb46f6ee 1138 eproto = tracepoint_string("rxkad_rsp_csum");
8c2f826d 1139 if (response->encrypted.checksum != csum)
17926a79
DH
1140 goto protocol_error_free;
1141
a1399f8b
DH
1142 spin_lock(&conn->channel_lock);
1143 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1144 struct rxrpc_call *call;
8c2f826d 1145 u32 call_id = ntohl(response->encrypted.call_id[i]);
a1399f8b 1146
fb46f6ee 1147 eproto = tracepoint_string("rxkad_rsp_callid");
a1399f8b
DH
1148 if (call_id > INT_MAX)
1149 goto protocol_error_unlock;
1150
fb46f6ee 1151 eproto = tracepoint_string("rxkad_rsp_callctr");
a1399f8b
DH
1152 if (call_id < conn->channels[i].call_counter)
1153 goto protocol_error_unlock;
fb46f6ee
DH
1154
1155 eproto = tracepoint_string("rxkad_rsp_callst");
a1399f8b
DH
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;
1163 }
1164 }
1165 spin_unlock(&conn->channel_lock);
17926a79 1166
fb46f6ee 1167 eproto = tracepoint_string("rxkad_rsp_seq");
17926a79 1168 abort_code = RXKADOUTOFSEQUENCE;
8c2f826d 1169 if (ntohl(response->encrypted.inc_nonce) != conn->security_nonce + 1)
17926a79
DH
1170 goto protocol_error_free;
1171
fb46f6ee 1172 eproto = tracepoint_string("rxkad_rsp_level");
17926a79 1173 abort_code = RXKADLEVELFAIL;
8c2f826d 1174 level = ntohl(response->encrypted.level);
17926a79
DH
1175 if (level > RXRPC_SECURITY_ENCRYPT)
1176 goto protocol_error_free;
19ffa01c 1177 conn->params.security_level = level;
17926a79
DH
1178
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);
ef68622d 1183 if (ret < 0)
8c2f826d 1184 goto temporary_error_free_ticket;
17926a79
DH
1185
1186 kfree(ticket);
8c2f826d 1187 kfree(response);
17926a79
DH
1188 _leave(" = 0");
1189 return 0;
1190
a1399f8b
DH
1191protocol_error_unlock:
1192 spin_unlock(&conn->channel_lock);
17926a79
DH
1193protocol_error_free:
1194 kfree(ticket);
1195protocol_error:
8c2f826d 1196 kfree(response);
fb46f6ee 1197 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
17926a79 1198 *_abort_code = abort_code;
17926a79 1199 return -EPROTO;
ef68622d 1200
8c2f826d 1201temporary_error_free_ticket:
ef68622d 1202 kfree(ticket);
8c2f826d
DH
1203temporary_error_free_resp:
1204 kfree(response);
ef68622d
DH
1205temporary_error:
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.
1209 */
1210 return ret;
17926a79
DH
1211}
1212
1213/*
1214 * clear the connection security
1215 */
1216static void rxkad_clear(struct rxrpc_connection *conn)
1217{
1218 _enter("");
1219
1220 if (conn->cipher)
69d826fa 1221 crypto_free_sync_skcipher(conn->cipher);
17926a79
DH
1222}
1223
648af7fc
DH
1224/*
1225 * Initialise the rxkad security service.
1226 */
1227static int rxkad_init(void)
1228{
1229 /* pin the cipher we need so that the crypto layer doesn't invoke
1230 * keventd to go get it */
69d826fa 1231 rxkad_ci = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
fa54cc70 1232 return PTR_ERR_OR_ZERO(rxkad_ci);
648af7fc
DH
1233}
1234
1235/*
1236 * Clean up the rxkad security service.
1237 */
1238static void rxkad_exit(void)
1239{
1240 if (rxkad_ci)
69d826fa 1241 crypto_free_sync_skcipher(rxkad_ci);
648af7fc
DH
1242}
1243
17926a79
DH
1244/*
1245 * RxRPC Kerberos-based security
1246 */
648af7fc 1247const struct rxrpc_security rxkad = {
17926a79 1248 .name = "rxkad",
8b815477 1249 .security_index = RXRPC_SECURITY_RXKAD,
648af7fc
DH
1250 .init = rxkad_init,
1251 .exit = rxkad_exit,
17926a79
DH
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,
248f219c 1256 .locate_data = rxkad_locate_data,
17926a79
DH
1257 .issue_challenge = rxkad_issue_challenge,
1258 .respond_to_challenge = rxkad_respond_to_challenge,
1259 .verify_response = rxkad_verify_response,
1260 .clear = rxkad_clear,
1261};