netfilter: ctnetlink: reject new conntrack request with different l4proto
[deliverable/linux.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 */
1afe593b 49static struct crypto_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{
1afe593b 57 struct crypto_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
1afe593b 66 ci = crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC);
17926a79
DH
67 if (IS_ERR(ci)) {
68 _debug("no cipher");
69 ret = PTR_ERR(ci);
70 goto error;
71 }
72
1afe593b
HX
73 if (crypto_skcipher_setkey(ci, token->kad->session_key,
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);
83 conn->header_size += sizeof(struct rxkad_level1_hdr);
84 break;
85 case RXRPC_SECURITY_ENCRYPT:
86 conn->size_align = 8;
87 conn->security_size = sizeof(struct rxkad_level2_hdr);
88 conn->header_size += sizeof(struct rxkad_level2_hdr);
89 break;
90 default:
91 ret = -EKEYREJECTED;
92 goto error;
93 }
94
95 conn->cipher = ci;
96 ret = 0;
97error:
98 _leave(" = %d", ret);
99 return ret;
100}
101
102/*
103 * prime the encryption state with the invariant parts of a connection's
104 * description
105 */
a263629d 106static int rxkad_prime_packet_security(struct rxrpc_connection *conn)
17926a79 107{
33941284 108 struct rxrpc_key_token *token;
1afe593b 109 SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
a263629d 110 struct scatterlist sg;
17926a79 111 struct rxrpc_crypt iv;
a263629d
HX
112 __be32 *tmpbuf;
113 size_t tmpsize = 4 * sizeof(__be32);
17926a79
DH
114
115 _enter("");
116
19ffa01c 117 if (!conn->params.key)
a263629d
HX
118 return 0;
119
120 tmpbuf = kmalloc(tmpsize, GFP_KERNEL);
121 if (!tmpbuf)
122 return -ENOMEM;
17926a79 123
19ffa01c 124 token = conn->params.key->payload.data[0];
33941284 125 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 126
a263629d
HX
127 tmpbuf[0] = htonl(conn->proto.epoch);
128 tmpbuf[1] = htonl(conn->proto.cid);
129 tmpbuf[2] = 0;
130 tmpbuf[3] = htonl(conn->security_ix);
1afe593b 131
a263629d 132 sg_init_one(&sg, tmpbuf, tmpsize);
1afe593b
HX
133 skcipher_request_set_tfm(req, conn->cipher);
134 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 135 skcipher_request_set_crypt(req, &sg, &sg, tmpsize, iv.x);
1afe593b
HX
136 crypto_skcipher_encrypt(req);
137 skcipher_request_zero(req);
17926a79 138
a263629d
HX
139 memcpy(&conn->csum_iv, tmpbuf + 2, sizeof(conn->csum_iv));
140 kfree(tmpbuf);
141 _leave(" = 0");
142 return 0;
17926a79
DH
143}
144
145/*
146 * partially encrypt a packet (level 1 security)
147 */
148static int rxkad_secure_packet_auth(const struct rxrpc_call *call,
149 struct sk_buff *skb,
150 u32 data_size,
151 void *sechdr)
152{
153 struct rxrpc_skb_priv *sp;
1afe593b 154 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
a263629d 155 struct rxkad_level1_hdr hdr;
17926a79 156 struct rxrpc_crypt iv;
a263629d 157 struct scatterlist sg;
17926a79
DH
158 u16 check;
159
160 sp = rxrpc_skb(skb);
161
162 _enter("");
163
0d12f8a4
DH
164 check = sp->hdr.seq ^ sp->hdr.callNumber;
165 data_size |= (u32)check << 16;
17926a79 166
a263629d
HX
167 hdr.data_size = htonl(data_size);
168 memcpy(sechdr, &hdr, sizeof(hdr));
17926a79
DH
169
170 /* start the encryption afresh */
171 memset(&iv, 0, sizeof(iv));
17926a79 172
a263629d 173 sg_init_one(&sg, sechdr, 8);
1afe593b
HX
174 skcipher_request_set_tfm(req, call->conn->cipher);
175 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 176 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
177 crypto_skcipher_encrypt(req);
178 skcipher_request_zero(req);
17926a79 179
17926a79
DH
180 _leave(" = 0");
181 return 0;
182}
183
184/*
185 * wholly encrypt a packet (level 2 security)
186 */
187static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
b4f1342f
DH
188 struct sk_buff *skb,
189 u32 data_size,
190 void *sechdr)
17926a79 191{
33941284 192 const struct rxrpc_key_token *token;
a263629d 193 struct rxkad_level2_hdr rxkhdr;
17926a79 194 struct rxrpc_skb_priv *sp;
1afe593b 195 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79
DH
196 struct rxrpc_crypt iv;
197 struct scatterlist sg[16];
198 struct sk_buff *trailer;
95c96174 199 unsigned int len;
17926a79
DH
200 u16 check;
201 int nsg;
1afe593b 202 int err;
17926a79
DH
203
204 sp = rxrpc_skb(skb);
205
206 _enter("");
207
0d12f8a4 208 check = sp->hdr.seq ^ sp->hdr.callNumber;
17926a79 209
0d12f8a4 210 rxkhdr.data_size = htonl(data_size | (u32)check << 16);
17926a79 211 rxkhdr.checksum = 0;
a263629d 212 memcpy(sechdr, &rxkhdr, sizeof(rxkhdr));
17926a79
DH
213
214 /* encrypt from the session key */
19ffa01c 215 token = call->conn->params.key->payload.data[0];
33941284 216 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 217
68e3f5dd 218 sg_init_one(&sg[0], sechdr, sizeof(rxkhdr));
1afe593b
HX
219 skcipher_request_set_tfm(req, call->conn->cipher);
220 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 221 skcipher_request_set_crypt(req, &sg[0], &sg[0], sizeof(rxkhdr), iv.x);
1afe593b 222 crypto_skcipher_encrypt(req);
17926a79
DH
223
224 /* we want to encrypt the skbuff in-place */
225 nsg = skb_cow_data(skb, 0, &trailer);
1afe593b 226 err = -ENOMEM;
17926a79 227 if (nsg < 0 || nsg > 16)
1afe593b 228 goto out;
17926a79
DH
229
230 len = data_size + call->conn->size_align - 1;
231 len &= ~(call->conn->size_align - 1);
232
51c739d1
DM
233 sg_init_table(sg, nsg);
234 skb_to_sgvec(skb, sg, 0, len);
1afe593b 235 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
1afe593b 236 crypto_skcipher_encrypt(req);
17926a79
DH
237
238 _leave(" = 0");
1afe593b
HX
239 err = 0;
240
241out:
242 skcipher_request_zero(req);
243 return err;
17926a79
DH
244}
245
246/*
247 * checksum an RxRPC packet header
248 */
a263629d 249static int rxkad_secure_packet(struct rxrpc_call *call,
b4f1342f
DH
250 struct sk_buff *skb,
251 size_t data_size,
252 void *sechdr)
17926a79
DH
253{
254 struct rxrpc_skb_priv *sp;
1afe593b 255 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79 256 struct rxrpc_crypt iv;
a263629d 257 struct scatterlist sg;
0d12f8a4 258 u32 x, y;
17926a79
DH
259 int ret;
260
261 sp = rxrpc_skb(skb);
262
263 _enter("{%d{%x}},{#%u},%zu,",
19ffa01c
DH
264 call->debug_id, key_serial(call->conn->params.key),
265 sp->hdr.seq, data_size);
17926a79
DH
266
267 if (!call->conn->cipher)
268 return 0;
269
19ffa01c 270 ret = key_validate(call->conn->params.key);
17926a79
DH
271 if (ret < 0)
272 return ret;
273
274 /* continue encrypting from where we left off */
275 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
17926a79
DH
276
277 /* calculate the security checksum */
0d12f8a4
DH
278 x = call->channel << (32 - RXRPC_CIDSHIFT);
279 x |= sp->hdr.seq & 0x3fffffff;
a263629d
HX
280 call->crypto_buf[0] = htonl(sp->hdr.callNumber);
281 call->crypto_buf[1] = htonl(x);
1afe593b 282
a263629d 283 sg_init_one(&sg, call->crypto_buf, 8);
1afe593b
HX
284 skcipher_request_set_tfm(req, call->conn->cipher);
285 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 286 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
287 crypto_skcipher_encrypt(req);
288 skcipher_request_zero(req);
17926a79 289
a263629d 290 y = ntohl(call->crypto_buf[1]);
91e916cf
AV
291 y = (y >> 16) & 0xffff;
292 if (y == 0)
293 y = 1; /* zero checksums are not permitted */
0d12f8a4 294 sp->hdr.cksum = y;
17926a79 295
19ffa01c 296 switch (call->conn->params.security_level) {
17926a79
DH
297 case RXRPC_SECURITY_PLAIN:
298 ret = 0;
299 break;
300 case RXRPC_SECURITY_AUTH:
301 ret = rxkad_secure_packet_auth(call, skb, data_size, sechdr);
302 break;
303 case RXRPC_SECURITY_ENCRYPT:
304 ret = rxkad_secure_packet_encrypt(call, skb, data_size,
305 sechdr);
306 break;
307 default:
308 ret = -EPERM;
309 break;
310 }
311
91e916cf 312 _leave(" = %d [set %hx]", ret, y);
17926a79
DH
313 return ret;
314}
315
316/*
317 * decrypt partial encryption on a packet (level 1 security)
318 */
319static int rxkad_verify_packet_auth(const struct rxrpc_call *call,
320 struct sk_buff *skb,
321 u32 *_abort_code)
322{
323 struct rxkad_level1_hdr sechdr;
324 struct rxrpc_skb_priv *sp;
1afe593b 325 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79 326 struct rxrpc_crypt iv;
68e3f5dd 327 struct scatterlist sg[16];
17926a79
DH
328 struct sk_buff *trailer;
329 u32 data_size, buf;
330 u16 check;
68e3f5dd 331 int nsg;
17926a79
DH
332
333 _enter("");
334
335 sp = rxrpc_skb(skb);
336
337 /* we want to decrypt the skbuff in-place */
68e3f5dd
HX
338 nsg = skb_cow_data(skb, 0, &trailer);
339 if (nsg < 0 || nsg > 16)
17926a79
DH
340 goto nomem;
341
68e3f5dd 342 sg_init_table(sg, nsg);
51c739d1 343 skb_to_sgvec(skb, sg, 0, 8);
17926a79
DH
344
345 /* start the decryption afresh */
346 memset(&iv, 0, sizeof(iv));
17926a79 347
1afe593b
HX
348 skcipher_request_set_tfm(req, call->conn->cipher);
349 skcipher_request_set_callback(req, 0, NULL, NULL);
350 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
1afe593b
HX
351 crypto_skcipher_decrypt(req);
352 skcipher_request_zero(req);
17926a79
DH
353
354 /* remove the decrypted packet length */
355 if (skb_copy_bits(skb, 0, &sechdr, sizeof(sechdr)) < 0)
356 goto datalen_error;
357 if (!skb_pull(skb, sizeof(sechdr)))
358 BUG();
359
360 buf = ntohl(sechdr.data_size);
361 data_size = buf & 0xffff;
362
363 check = buf >> 16;
0d12f8a4 364 check ^= sp->hdr.seq ^ sp->hdr.callNumber;
17926a79
DH
365 check &= 0xffff;
366 if (check != 0) {
367 *_abort_code = RXKADSEALEDINCON;
368 goto protocol_error;
369 }
370
371 /* shorten the packet to remove the padding */
372 if (data_size > skb->len)
373 goto datalen_error;
374 else if (data_size < skb->len)
375 skb->len = data_size;
376
377 _leave(" = 0 [dlen=%x]", data_size);
378 return 0;
379
380datalen_error:
381 *_abort_code = RXKADDATALEN;
382protocol_error:
383 _leave(" = -EPROTO");
384 return -EPROTO;
385
386nomem:
387 _leave(" = -ENOMEM");
388 return -ENOMEM;
389}
390
391/*
392 * wholly decrypt a packet (level 2 security)
393 */
394static int rxkad_verify_packet_encrypt(const struct rxrpc_call *call,
395 struct sk_buff *skb,
396 u32 *_abort_code)
397{
33941284 398 const struct rxrpc_key_token *token;
17926a79
DH
399 struct rxkad_level2_hdr sechdr;
400 struct rxrpc_skb_priv *sp;
1afe593b 401 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79
DH
402 struct rxrpc_crypt iv;
403 struct scatterlist _sg[4], *sg;
404 struct sk_buff *trailer;
405 u32 data_size, buf;
406 u16 check;
407 int nsg;
408
409 _enter(",{%d}", skb->len);
410
411 sp = rxrpc_skb(skb);
412
413 /* we want to decrypt the skbuff in-place */
414 nsg = skb_cow_data(skb, 0, &trailer);
415 if (nsg < 0)
416 goto nomem;
417
418 sg = _sg;
419 if (unlikely(nsg > 4)) {
420 sg = kmalloc(sizeof(*sg) * nsg, GFP_NOIO);
421 if (!sg)
422 goto nomem;
423 }
424
68e3f5dd 425 sg_init_table(sg, nsg);
51c739d1 426 skb_to_sgvec(skb, sg, 0, skb->len);
17926a79
DH
427
428 /* decrypt from the session key */
19ffa01c 429 token = call->conn->params.key->payload.data[0];
33941284 430 memcpy(&iv, token->kad->session_key, sizeof(iv));
17926a79 431
1afe593b
HX
432 skcipher_request_set_tfm(req, call->conn->cipher);
433 skcipher_request_set_callback(req, 0, NULL, NULL);
434 skcipher_request_set_crypt(req, sg, sg, skb->len, iv.x);
1afe593b
HX
435 crypto_skcipher_decrypt(req);
436 skcipher_request_zero(req);
17926a79
DH
437 if (sg != _sg)
438 kfree(sg);
439
440 /* remove the decrypted packet length */
441 if (skb_copy_bits(skb, 0, &sechdr, sizeof(sechdr)) < 0)
442 goto datalen_error;
443 if (!skb_pull(skb, sizeof(sechdr)))
444 BUG();
445
446 buf = ntohl(sechdr.data_size);
447 data_size = buf & 0xffff;
448
449 check = buf >> 16;
0d12f8a4 450 check ^= sp->hdr.seq ^ sp->hdr.callNumber;
17926a79
DH
451 check &= 0xffff;
452 if (check != 0) {
453 *_abort_code = RXKADSEALEDINCON;
454 goto protocol_error;
455 }
456
457 /* shorten the packet to remove the padding */
458 if (data_size > skb->len)
459 goto datalen_error;
460 else if (data_size < skb->len)
461 skb->len = data_size;
462
463 _leave(" = 0 [dlen=%x]", data_size);
464 return 0;
465
466datalen_error:
467 *_abort_code = RXKADDATALEN;
468protocol_error:
469 _leave(" = -EPROTO");
470 return -EPROTO;
471
472nomem:
473 _leave(" = -ENOMEM");
474 return -ENOMEM;
475}
476
477/*
478 * verify the security on a received packet
479 */
a263629d 480static int rxkad_verify_packet(struct rxrpc_call *call,
17926a79
DH
481 struct sk_buff *skb,
482 u32 *_abort_code)
483{
1afe593b 484 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
17926a79
DH
485 struct rxrpc_skb_priv *sp;
486 struct rxrpc_crypt iv;
a263629d 487 struct scatterlist sg;
0d12f8a4
DH
488 u16 cksum;
489 u32 x, y;
17926a79
DH
490 int ret;
491
492 sp = rxrpc_skb(skb);
493
494 _enter("{%d{%x}},{#%u}",
19ffa01c 495 call->debug_id, key_serial(call->conn->params.key), sp->hdr.seq);
17926a79
DH
496
497 if (!call->conn->cipher)
498 return 0;
499
8b815477 500 if (sp->hdr.securityIndex != RXRPC_SECURITY_RXKAD) {
17926a79
DH
501 *_abort_code = RXKADINCONSISTENCY;
502 _leave(" = -EPROTO [not rxkad]");
503 return -EPROTO;
504 }
505
506 /* continue encrypting from where we left off */
507 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
17926a79
DH
508
509 /* validate the security checksum */
0d12f8a4
DH
510 x = call->channel << (32 - RXRPC_CIDSHIFT);
511 x |= sp->hdr.seq & 0x3fffffff;
a263629d
HX
512 call->crypto_buf[0] = htonl(call->call_id);
513 call->crypto_buf[1] = htonl(x);
1afe593b 514
a263629d 515 sg_init_one(&sg, call->crypto_buf, 8);
1afe593b
HX
516 skcipher_request_set_tfm(req, call->conn->cipher);
517 skcipher_request_set_callback(req, 0, NULL, NULL);
a263629d 518 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
1afe593b
HX
519 crypto_skcipher_encrypt(req);
520 skcipher_request_zero(req);
17926a79 521
a263629d 522 y = ntohl(call->crypto_buf[1]);
0d12f8a4
DH
523 cksum = (y >> 16) & 0xffff;
524 if (cksum == 0)
525 cksum = 1; /* zero checksums are not permitted */
17926a79 526
17926a79
DH
527 if (sp->hdr.cksum != cksum) {
528 *_abort_code = RXKADSEALEDINCON;
529 _leave(" = -EPROTO [csum failed]");
530 return -EPROTO;
531 }
532
19ffa01c 533 switch (call->conn->params.security_level) {
17926a79
DH
534 case RXRPC_SECURITY_PLAIN:
535 ret = 0;
536 break;
537 case RXRPC_SECURITY_AUTH:
538 ret = rxkad_verify_packet_auth(call, skb, _abort_code);
539 break;
540 case RXRPC_SECURITY_ENCRYPT:
541 ret = rxkad_verify_packet_encrypt(call, skb, _abort_code);
542 break;
543 default:
544 ret = -ENOANO;
545 break;
546 }
547
548 _leave(" = %d", ret);
549 return ret;
550}
551
552/*
553 * issue a challenge
554 */
555static int rxkad_issue_challenge(struct rxrpc_connection *conn)
556{
557 struct rxkad_challenge challenge;
0d12f8a4 558 struct rxrpc_wire_header whdr;
17926a79
DH
559 struct msghdr msg;
560 struct kvec iov[2];
561 size_t len;
0d12f8a4 562 u32 serial;
17926a79
DH
563 int ret;
564
19ffa01c 565 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
17926a79 566
19ffa01c 567 ret = key_validate(conn->params.key);
17926a79
DH
568 if (ret < 0)
569 return ret;
570
571 get_random_bytes(&conn->security_nonce, sizeof(conn->security_nonce));
572
573 challenge.version = htonl(2);
574 challenge.nonce = htonl(conn->security_nonce);
575 challenge.min_level = htonl(0);
576 challenge.__padding = 0;
577
85f32278
DH
578 msg.msg_name = &conn->params.peer->srx.transport.sin;
579 msg.msg_namelen = sizeof(conn->params.peer->srx.transport.sin);
17926a79
DH
580 msg.msg_control = NULL;
581 msg.msg_controllen = 0;
582 msg.msg_flags = 0;
583
19ffa01c
DH
584 whdr.epoch = htonl(conn->proto.epoch);
585 whdr.cid = htonl(conn->proto.cid);
0d12f8a4
DH
586 whdr.callNumber = 0;
587 whdr.seq = 0;
588 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
589 whdr.flags = conn->out_clientflag;
590 whdr.userStatus = 0;
591 whdr.securityIndex = conn->security_ix;
592 whdr._rsvd = 0;
19ffa01c 593 whdr.serviceId = htons(conn->params.service_id);
0d12f8a4
DH
594
595 iov[0].iov_base = &whdr;
596 iov[0].iov_len = sizeof(whdr);
17926a79
DH
597 iov[1].iov_base = &challenge;
598 iov[1].iov_len = sizeof(challenge);
599
600 len = iov[0].iov_len + iov[1].iov_len;
601
0d12f8a4
DH
602 serial = atomic_inc_return(&conn->serial);
603 whdr.serial = htonl(serial);
604 _proto("Tx CHALLENGE %%%u", serial);
17926a79 605
85f32278 606 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
17926a79
DH
607 if (ret < 0) {
608 _debug("sendmsg failed: %d", ret);
609 return -EAGAIN;
610 }
611
612 _leave(" = 0");
613 return 0;
614}
615
616/*
617 * send a Kerberos security response
618 */
619static int rxkad_send_response(struct rxrpc_connection *conn,
0d12f8a4 620 struct rxrpc_host_header *hdr,
17926a79
DH
621 struct rxkad_response *resp,
622 const struct rxkad_key *s2)
623{
0d12f8a4 624 struct rxrpc_wire_header whdr;
17926a79
DH
625 struct msghdr msg;
626 struct kvec iov[3];
627 size_t len;
0d12f8a4 628 u32 serial;
17926a79
DH
629 int ret;
630
631 _enter("");
632
85f32278
DH
633 msg.msg_name = &conn->params.peer->srx.transport.sin;
634 msg.msg_namelen = sizeof(conn->params.peer->srx.transport.sin);
17926a79
DH
635 msg.msg_control = NULL;
636 msg.msg_controllen = 0;
637 msg.msg_flags = 0;
638
0d12f8a4
DH
639 memset(&whdr, 0, sizeof(whdr));
640 whdr.epoch = htonl(hdr->epoch);
641 whdr.cid = htonl(hdr->cid);
642 whdr.type = RXRPC_PACKET_TYPE_RESPONSE;
643 whdr.flags = conn->out_clientflag;
644 whdr.securityIndex = hdr->securityIndex;
645 whdr.serviceId = htons(hdr->serviceId);
17926a79 646
0d12f8a4
DH
647 iov[0].iov_base = &whdr;
648 iov[0].iov_len = sizeof(whdr);
17926a79
DH
649 iov[1].iov_base = resp;
650 iov[1].iov_len = sizeof(*resp);
0d12f8a4 651 iov[2].iov_base = (void *)s2->ticket;
17926a79
DH
652 iov[2].iov_len = s2->ticket_len;
653
654 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
655
0d12f8a4
DH
656 serial = atomic_inc_return(&conn->serial);
657 whdr.serial = htonl(serial);
658 _proto("Tx RESPONSE %%%u", serial);
17926a79 659
85f32278 660 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len);
17926a79
DH
661 if (ret < 0) {
662 _debug("sendmsg failed: %d", ret);
663 return -EAGAIN;
664 }
665
666 _leave(" = 0");
667 return 0;
668}
669
670/*
671 * calculate the response checksum
672 */
673static void rxkad_calc_response_checksum(struct rxkad_response *response)
674{
675 u32 csum = 1000003;
676 int loop;
677 u8 *p = (u8 *) response;
678
679 for (loop = sizeof(*response); loop > 0; loop--)
680 csum = csum * 0x10204081 + *p++;
681
682 response->encrypted.checksum = htonl(csum);
683}
684
17926a79
DH
685/*
686 * encrypt the response packet
687 */
688static void rxkad_encrypt_response(struct rxrpc_connection *conn,
689 struct rxkad_response *resp,
690 const struct rxkad_key *s2)
691{
1afe593b 692 SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
17926a79 693 struct rxrpc_crypt iv;
a263629d 694 struct scatterlist sg[1];
17926a79
DH
695
696 /* continue encrypting from where we left off */
697 memcpy(&iv, s2->session_key, sizeof(iv));
17926a79 698
a263629d
HX
699 sg_init_table(sg, 1);
700 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
1afe593b
HX
701 skcipher_request_set_tfm(req, conn->cipher);
702 skcipher_request_set_callback(req, 0, NULL, NULL);
703 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
1afe593b
HX
704 crypto_skcipher_encrypt(req);
705 skcipher_request_zero(req);
17926a79
DH
706}
707
708/*
709 * respond to a challenge packet
710 */
711static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
712 struct sk_buff *skb,
713 u32 *_abort_code)
714{
33941284 715 const struct rxrpc_key_token *token;
17926a79
DH
716 struct rxkad_challenge challenge;
717 struct rxkad_response resp
718 __attribute__((aligned(8))); /* must be aligned for crypto */
719 struct rxrpc_skb_priv *sp;
720 u32 version, nonce, min_level, abort_code;
721 int ret;
722
19ffa01c 723 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
17926a79 724
19ffa01c 725 if (!conn->params.key) {
17926a79
DH
726 _leave(" = -EPROTO [no key]");
727 return -EPROTO;
728 }
729
19ffa01c 730 ret = key_validate(conn->params.key);
17926a79
DH
731 if (ret < 0) {
732 *_abort_code = RXKADEXPIRED;
733 return ret;
734 }
735
736 abort_code = RXKADPACKETSHORT;
737 sp = rxrpc_skb(skb);
738 if (skb_copy_bits(skb, 0, &challenge, sizeof(challenge)) < 0)
739 goto protocol_error;
740
741 version = ntohl(challenge.version);
742 nonce = ntohl(challenge.nonce);
743 min_level = ntohl(challenge.min_level);
744
745 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
0d12f8a4 746 sp->hdr.serial, version, nonce, min_level);
17926a79
DH
747
748 abort_code = RXKADINCONSISTENCY;
749 if (version != RXKAD_VERSION)
750 goto protocol_error;
751
752 abort_code = RXKADLEVELFAIL;
19ffa01c 753 if (conn->params.security_level < min_level)
17926a79
DH
754 goto protocol_error;
755
19ffa01c 756 token = conn->params.key->payload.data[0];
17926a79
DH
757
758 /* build the response packet */
759 memset(&resp, 0, sizeof(resp));
760
098a2099 761 resp.version = htonl(RXKAD_VERSION);
19ffa01c
DH
762 resp.encrypted.epoch = htonl(conn->proto.epoch);
763 resp.encrypted.cid = htonl(conn->proto.cid);
098a2099
DH
764 resp.encrypted.securityIndex = htonl(conn->security_ix);
765 resp.encrypted.inc_nonce = htonl(nonce + 1);
19ffa01c 766 resp.encrypted.level = htonl(conn->params.security_level);
098a2099
DH
767 resp.kvno = htonl(token->kad->kvno);
768 resp.ticket_len = htonl(token->kad->ticket_len);
769
a1399f8b
DH
770 resp.encrypted.call_id[0] = htonl(conn->channels[0].call_counter);
771 resp.encrypted.call_id[1] = htonl(conn->channels[1].call_counter);
772 resp.encrypted.call_id[2] = htonl(conn->channels[2].call_counter);
773 resp.encrypted.call_id[3] = htonl(conn->channels[3].call_counter);
17926a79
DH
774
775 /* calculate the response checksum and then do the encryption */
776 rxkad_calc_response_checksum(&resp);
33941284
DH
777 rxkad_encrypt_response(conn, &resp, token->kad);
778 return rxkad_send_response(conn, &sp->hdr, &resp, token->kad);
17926a79
DH
779
780protocol_error:
781 *_abort_code = abort_code;
782 _leave(" = -EPROTO [%d]", abort_code);
783 return -EPROTO;
784}
785
786/*
787 * decrypt the kerberos IV ticket in the response
788 */
789static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
790 void *ticket, size_t ticket_len,
791 struct rxrpc_crypt *_session_key,
792 time_t *_expiry,
793 u32 *_abort_code)
794{
1afe593b 795 struct skcipher_request *req;
17926a79 796 struct rxrpc_crypt iv, key;
68e3f5dd 797 struct scatterlist sg[1];
17926a79 798 struct in_addr addr;
95c96174 799 unsigned int life;
17926a79
DH
800 time_t issue, now;
801 bool little_endian;
802 int ret;
803 u8 *p, *q, *name, *end;
804
805 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->server_key));
806
807 *_expiry = 0;
808
809 ret = key_validate(conn->server_key);
810 if (ret < 0) {
811 switch (ret) {
812 case -EKEYEXPIRED:
813 *_abort_code = RXKADEXPIRED;
814 goto error;
815 default:
816 *_abort_code = RXKADNOAUTH;
817 goto error;
818 }
819 }
820
146aa8b1 821 ASSERT(conn->server_key->payload.data[0] != NULL);
17926a79
DH
822 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
823
146aa8b1 824 memcpy(&iv, &conn->server_key->payload.data[2], sizeof(iv));
17926a79 825
1afe593b
HX
826 req = skcipher_request_alloc(conn->server_key->payload.data[0],
827 GFP_NOFS);
828 if (!req) {
829 *_abort_code = RXKADNOAUTH;
830 ret = -ENOMEM;
831 goto error;
832 }
17926a79 833
68e3f5dd 834 sg_init_one(&sg[0], ticket, ticket_len);
1afe593b
HX
835 skcipher_request_set_callback(req, 0, NULL, NULL);
836 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
1afe593b
HX
837 crypto_skcipher_decrypt(req);
838 skcipher_request_free(req);
17926a79
DH
839
840 p = ticket;
841 end = p + ticket_len;
842
843#define Z(size) \
844 ({ \
845 u8 *__str = p; \
846 q = memchr(p, 0, end - p); \
847 if (!q || q - p > (size)) \
848 goto bad_ticket; \
849 for (; p < q; p++) \
850 if (!isprint(*p)) \
851 goto bad_ticket; \
852 p++; \
853 __str; \
854 })
855
856 /* extract the ticket flags */
857 _debug("KIV FLAGS: %x", *p);
858 little_endian = *p & 1;
859 p++;
860
861 /* extract the authentication name */
862 name = Z(ANAME_SZ);
863 _debug("KIV ANAME: %s", name);
864
865 /* extract the principal's instance */
866 name = Z(INST_SZ);
867 _debug("KIV INST : %s", name);
868
869 /* extract the principal's authentication domain */
870 name = Z(REALM_SZ);
871 _debug("KIV REALM: %s", name);
872
873 if (end - p < 4 + 8 + 4 + 2)
874 goto bad_ticket;
875
876 /* get the IPv4 address of the entity that requested the ticket */
877 memcpy(&addr, p, sizeof(addr));
878 p += 4;
21454aaa 879 _debug("KIV ADDR : %pI4", &addr);
17926a79
DH
880
881 /* get the session key from the ticket */
882 memcpy(&key, p, sizeof(key));
883 p += 8;
884 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
885 memcpy(_session_key, &key, sizeof(key));
886
887 /* get the ticket's lifetime */
888 life = *p++ * 5 * 60;
889 _debug("KIV LIFE : %u", life);
890
891 /* get the issue time of the ticket */
892 if (little_endian) {
893 __le32 stamp;
894 memcpy(&stamp, p, 4);
895 issue = le32_to_cpu(stamp);
896 } else {
897 __be32 stamp;
898 memcpy(&stamp, p, 4);
899 issue = be32_to_cpu(stamp);
900 }
901 p += 4;
2c6b47de 902 now = get_seconds();
17926a79
DH
903 _debug("KIV ISSUE: %lx [%lx]", issue, now);
904
905 /* check the ticket is in date */
906 if (issue > now) {
907 *_abort_code = RXKADNOAUTH;
908 ret = -EKEYREJECTED;
909 goto error;
910 }
911
912 if (issue < now - life) {
913 *_abort_code = RXKADEXPIRED;
914 ret = -EKEYEXPIRED;
915 goto error;
916 }
917
918 *_expiry = issue + life;
919
920 /* get the service name */
921 name = Z(SNAME_SZ);
922 _debug("KIV SNAME: %s", name);
923
924 /* get the service instance name */
925 name = Z(INST_SZ);
926 _debug("KIV SINST: %s", name);
927
928 ret = 0;
929error:
930 _leave(" = %d", ret);
931 return ret;
932
933bad_ticket:
934 *_abort_code = RXKADBADTICKET;
935 ret = -EBADMSG;
936 goto error;
937}
938
939/*
940 * decrypt the response packet
941 */
942static void rxkad_decrypt_response(struct rxrpc_connection *conn,
943 struct rxkad_response *resp,
944 const struct rxrpc_crypt *session_key)
945{
1afe593b 946 SKCIPHER_REQUEST_ON_STACK(req, rxkad_ci);
a263629d 947 struct scatterlist sg[1];
17926a79
DH
948 struct rxrpc_crypt iv;
949
950 _enter(",,%08x%08x",
951 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
952
953 ASSERT(rxkad_ci != NULL);
954
955 mutex_lock(&rxkad_ci_mutex);
1afe593b
HX
956 if (crypto_skcipher_setkey(rxkad_ci, session_key->x,
957 sizeof(*session_key)) < 0)
17926a79
DH
958 BUG();
959
960 memcpy(&iv, session_key, sizeof(iv));
17926a79 961
a263629d
HX
962 sg_init_table(sg, 1);
963 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
1afe593b
HX
964 skcipher_request_set_tfm(req, rxkad_ci);
965 skcipher_request_set_callback(req, 0, NULL, NULL);
966 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
1afe593b
HX
967 crypto_skcipher_decrypt(req);
968 skcipher_request_zero(req);
969
17926a79
DH
970 mutex_unlock(&rxkad_ci_mutex);
971
972 _leave("");
973}
974
975/*
976 * verify a response
977 */
978static int rxkad_verify_response(struct rxrpc_connection *conn,
979 struct sk_buff *skb,
980 u32 *_abort_code)
981{
982 struct rxkad_response response
983 __attribute__((aligned(8))); /* must be aligned for crypto */
984 struct rxrpc_skb_priv *sp;
985 struct rxrpc_crypt session_key;
986 time_t expiry;
987 void *ticket;
91e916cf
AV
988 u32 abort_code, version, kvno, ticket_len, level;
989 __be32 csum;
a1399f8b 990 int ret, i;
17926a79
DH
991
992 _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key));
993
994 abort_code = RXKADPACKETSHORT;
995 if (skb_copy_bits(skb, 0, &response, sizeof(response)) < 0)
996 goto protocol_error;
997 if (!pskb_pull(skb, sizeof(response)))
998 BUG();
999
1000 version = ntohl(response.version);
1001 ticket_len = ntohl(response.ticket_len);
1002 kvno = ntohl(response.kvno);
1003 sp = rxrpc_skb(skb);
1004 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
0d12f8a4 1005 sp->hdr.serial, version, kvno, ticket_len);
17926a79
DH
1006
1007 abort_code = RXKADINCONSISTENCY;
1008 if (version != RXKAD_VERSION)
4aa9cb32 1009 goto protocol_error;
17926a79
DH
1010
1011 abort_code = RXKADTICKETLEN;
1012 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
1013 goto protocol_error;
1014
1015 abort_code = RXKADUNKNOWNKEY;
1016 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5)
1017 goto protocol_error;
1018
1019 /* extract the kerberos ticket and decrypt and decode it */
1020 ticket = kmalloc(ticket_len, GFP_NOFS);
1021 if (!ticket)
1022 return -ENOMEM;
1023
1024 abort_code = RXKADPACKETSHORT;
1025 if (skb_copy_bits(skb, 0, ticket, ticket_len) < 0)
1026 goto protocol_error_free;
1027
1028 ret = rxkad_decrypt_ticket(conn, ticket, ticket_len, &session_key,
1029 &expiry, &abort_code);
1030 if (ret < 0) {
1031 *_abort_code = abort_code;
1032 kfree(ticket);
1033 return ret;
1034 }
1035
1036 /* use the session key from inside the ticket to decrypt the
1037 * response */
1038 rxkad_decrypt_response(conn, &response, &session_key);
1039
1040 abort_code = RXKADSEALEDINCON;
19ffa01c 1041 if (ntohl(response.encrypted.epoch) != conn->proto.epoch)
17926a79 1042 goto protocol_error_free;
19ffa01c 1043 if (ntohl(response.encrypted.cid) != conn->proto.cid)
17926a79
DH
1044 goto protocol_error_free;
1045 if (ntohl(response.encrypted.securityIndex) != conn->security_ix)
1046 goto protocol_error_free;
1047 csum = response.encrypted.checksum;
1048 response.encrypted.checksum = 0;
1049 rxkad_calc_response_checksum(&response);
1050 if (response.encrypted.checksum != csum)
1051 goto protocol_error_free;
1052
a1399f8b
DH
1053 spin_lock(&conn->channel_lock);
1054 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1055 struct rxrpc_call *call;
1056 u32 call_id = ntohl(response.encrypted.call_id[i]);
1057
1058 if (call_id > INT_MAX)
1059 goto protocol_error_unlock;
1060
1061 if (call_id < conn->channels[i].call_counter)
1062 goto protocol_error_unlock;
1063 if (call_id > conn->channels[i].call_counter) {
1064 call = rcu_dereference_protected(
1065 conn->channels[i].call,
1066 lockdep_is_held(&conn->channel_lock));
1067 if (call && call->state < RXRPC_CALL_COMPLETE)
1068 goto protocol_error_unlock;
1069 conn->channels[i].call_counter = call_id;
1070 }
1071 }
1072 spin_unlock(&conn->channel_lock);
17926a79
DH
1073
1074 abort_code = RXKADOUTOFSEQUENCE;
0d12f8a4 1075 if (ntohl(response.encrypted.inc_nonce) != conn->security_nonce + 1)
17926a79
DH
1076 goto protocol_error_free;
1077
1078 abort_code = RXKADLEVELFAIL;
1079 level = ntohl(response.encrypted.level);
1080 if (level > RXRPC_SECURITY_ENCRYPT)
1081 goto protocol_error_free;
19ffa01c 1082 conn->params.security_level = level;
17926a79
DH
1083
1084 /* create a key to hold the security data and expiration time - after
1085 * this the connection security can be handled in exactly the same way
1086 * as for a client connection */
1087 ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
1088 if (ret < 0) {
1089 kfree(ticket);
1090 return ret;
1091 }
1092
1093 kfree(ticket);
1094 _leave(" = 0");
1095 return 0;
1096
a1399f8b
DH
1097protocol_error_unlock:
1098 spin_unlock(&conn->channel_lock);
17926a79
DH
1099protocol_error_free:
1100 kfree(ticket);
1101protocol_error:
1102 *_abort_code = abort_code;
1103 _leave(" = -EPROTO [%d]", abort_code);
1104 return -EPROTO;
1105}
1106
1107/*
1108 * clear the connection security
1109 */
1110static void rxkad_clear(struct rxrpc_connection *conn)
1111{
1112 _enter("");
1113
1114 if (conn->cipher)
1afe593b 1115 crypto_free_skcipher(conn->cipher);
17926a79
DH
1116}
1117
648af7fc
DH
1118/*
1119 * Initialise the rxkad security service.
1120 */
1121static int rxkad_init(void)
1122{
1123 /* pin the cipher we need so that the crypto layer doesn't invoke
1124 * keventd to go get it */
1125 rxkad_ci = crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC);
fa54cc70 1126 return PTR_ERR_OR_ZERO(rxkad_ci);
648af7fc
DH
1127}
1128
1129/*
1130 * Clean up the rxkad security service.
1131 */
1132static void rxkad_exit(void)
1133{
1134 if (rxkad_ci)
1135 crypto_free_skcipher(rxkad_ci);
1136}
1137
17926a79
DH
1138/*
1139 * RxRPC Kerberos-based security
1140 */
648af7fc 1141const struct rxrpc_security rxkad = {
17926a79 1142 .name = "rxkad",
8b815477 1143 .security_index = RXRPC_SECURITY_RXKAD,
648af7fc
DH
1144 .init = rxkad_init,
1145 .exit = rxkad_exit,
17926a79
DH
1146 .init_connection_security = rxkad_init_connection_security,
1147 .prime_packet_security = rxkad_prime_packet_security,
1148 .secure_packet = rxkad_secure_packet,
1149 .verify_packet = rxkad_verify_packet,
1150 .issue_challenge = rxkad_issue_challenge,
1151 .respond_to_challenge = rxkad_respond_to_challenge,
1152 .verify_response = rxkad_verify_response,
1153 .clear = rxkad_clear,
1154};
This page took 0.644525 seconds and 5 git commands to generate.