blob: e52cb8058156f260964190e98db3303db23f5f23 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells17926a72007-04-26 15:48:28 -07002/* Kerberos-based RxRPC security
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
David Howells17926a72007-04-26 15:48:28 -07006 */
7
Joe Perches9b6d5392016-06-02 12:08:52 -07008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Herbert Xu1afe5932016-01-24 21:19:01 +080010#include <crypto/skcipher.h>
David Howells17926a72007-04-26 15:48:28 -070011#include <linux/module.h>
12#include <linux/net.h>
13#include <linux/skbuff.h>
14#include <linux/udp.h>
David Howells17926a72007-04-26 15:48:28 -070015#include <linux/scatterlist.h>
16#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
David Howells12da59f2020-09-16 08:37:29 +010018#include <linux/key-type.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <net/sock.h>
20#include <net/af_rxrpc.h>
David Howells33941282009-09-14 01:17:35 +000021#include <keys/rxrpc-type.h>
David Howells17926a72007-04-26 15:48:28 -070022#include "ar-internal.h"
23
24#define RXKAD_VERSION 2
25#define MAXKRB5TICKETLEN 1024
26#define RXKAD_TKT_TYPE_KERBEROS_V5 256
27#define ANAME_SZ 40 /* size of authentication name */
28#define INST_SZ 40 /* size of principal's instance */
29#define REALM_SZ 40 /* size of principal's auth domain */
30#define SNAME_SZ 40 /* size of service name */
David Howellsd7d775b2020-09-16 01:34:39 +010031#define RXKAD_ALIGN 8
David Howells17926a72007-04-26 15:48:28 -070032
David Howells17926a72007-04-26 15:48:28 -070033struct rxkad_level1_hdr {
34 __be32 data_size; /* true data size (excluding padding) */
35};
36
37struct rxkad_level2_hdr {
38 __be32 data_size; /* true data size (excluding padding) */
39 __be32 checksum; /* decrypted data checksum */
40};
41
David Howells8d47a432020-09-16 01:38:15 +010042static int rxkad_prime_packet_security(struct rxrpc_connection *conn,
43 struct crypto_sync_skcipher *ci);
44
David Howells17926a72007-04-26 15:48:28 -070045/*
46 * this holds a pinned cipher so that keventd doesn't get called by the cipher
47 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
48 * packets
49 */
Kees Cook69d826f2018-09-18 19:10:47 -070050static struct crypto_sync_skcipher *rxkad_ci;
David Howells1db88c52019-07-30 15:56:57 +010051static struct skcipher_request *rxkad_ci_req;
David Howells17926a72007-04-26 15:48:28 -070052static DEFINE_MUTEX(rxkad_ci_mutex);
53
54/*
David Howells12da59f2020-09-16 08:37:29 +010055 * Parse the information from a server key
56 *
57 * The data should be the 8-byte secret key.
58 */
59static int rxkad_preparse_server_key(struct key_preparsed_payload *prep)
60{
61 struct crypto_skcipher *ci;
62
63 if (prep->datalen != 8)
64 return -EINVAL;
65
66 memcpy(&prep->payload.data[2], prep->data, 8);
67
68 ci = crypto_alloc_skcipher("pcbc(des)", 0, CRYPTO_ALG_ASYNC);
69 if (IS_ERR(ci)) {
70 _leave(" = %ld", PTR_ERR(ci));
71 return PTR_ERR(ci);
72 }
73
74 if (crypto_skcipher_setkey(ci, prep->data, 8) < 0)
75 BUG();
76
77 prep->payload.data[0] = ci;
78 _leave(" = 0");
79 return 0;
80}
81
82static void rxkad_free_preparse_server_key(struct key_preparsed_payload *prep)
83{
David Howellsd7d775b2020-09-16 01:34:39 +010084
David Howells12da59f2020-09-16 08:37:29 +010085 if (prep->payload.data[0])
86 crypto_free_skcipher(prep->payload.data[0]);
87}
88
89static void rxkad_destroy_server_key(struct key *key)
90{
91 if (key->payload.data[0]) {
92 crypto_free_skcipher(key->payload.data[0]);
93 key->payload.data[0] = NULL;
94 }
95}
96
97/*
David Howells17926a72007-04-26 15:48:28 -070098 * initialise connection security
99 */
David Howells41057eb2020-09-16 08:19:12 +0100100static int rxkad_init_connection_security(struct rxrpc_connection *conn,
101 struct rxrpc_key_token *token)
David Howells17926a72007-04-26 15:48:28 -0700102{
Kees Cook69d826f2018-09-18 19:10:47 -0700103 struct crypto_sync_skcipher *ci;
David Howells17926a72007-04-26 15:48:28 -0700104 int ret;
105
David Howells2cc80082022-10-19 13:49:02 +0100106 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->key));
David Howells17926a72007-04-26 15:48:28 -0700107
David Howells33941282009-09-14 01:17:35 +0000108 conn->security_ix = token->security_index;
David Howells17926a72007-04-26 15:48:28 -0700109
Kees Cook69d826f2018-09-18 19:10:47 -0700110 ci = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
David Howells17926a72007-04-26 15:48:28 -0700111 if (IS_ERR(ci)) {
112 _debug("no cipher");
113 ret = PTR_ERR(ci);
114 goto error;
115 }
116
Kees Cook69d826f2018-09-18 19:10:47 -0700117 if (crypto_sync_skcipher_setkey(ci, token->kad->session_key,
Herbert Xu1afe5932016-01-24 21:19:01 +0800118 sizeof(token->kad->session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700119 BUG();
120
David Howells2cc80082022-10-19 13:49:02 +0100121 switch (conn->security_level) {
David Howells17926a72007-04-26 15:48:28 -0700122 case RXRPC_SECURITY_PLAIN:
David Howells17926a72007-04-26 15:48:28 -0700123 case RXRPC_SECURITY_AUTH:
David Howells17926a72007-04-26 15:48:28 -0700124 case RXRPC_SECURITY_ENCRYPT:
David Howells17926a72007-04-26 15:48:28 -0700125 break;
126 default:
127 ret = -EKEYREJECTED;
128 goto error;
129 }
130
David Howells8d47a432020-09-16 01:38:15 +0100131 ret = rxkad_prime_packet_security(conn, ci);
132 if (ret < 0)
133 goto error_ci;
134
David Howells521bb302020-09-22 13:36:17 +0100135 conn->rxkad.cipher = ci;
David Howells8d47a432020-09-16 01:38:15 +0100136 return 0;
137
138error_ci:
139 crypto_free_sync_skcipher(ci);
David Howells17926a72007-04-26 15:48:28 -0700140error:
141 _leave(" = %d", ret);
142 return ret;
143}
144
145/*
David Howellsd7d775b2020-09-16 01:34:39 +0100146 * Work out how much data we can put in a packet.
147 */
148static int rxkad_how_much_data(struct rxrpc_call *call, size_t remain,
149 size_t *_buf_size, size_t *_data_size, size_t *_offset)
150{
151 size_t shdr, buf_size, chunk;
152
David Howells2cc80082022-10-19 13:49:02 +0100153 switch (call->conn->security_level) {
David Howellsd7d775b2020-09-16 01:34:39 +0100154 default:
155 buf_size = chunk = min_t(size_t, remain, RXRPC_JUMBO_DATALEN);
156 shdr = 0;
157 goto out;
158 case RXRPC_SECURITY_AUTH:
159 shdr = sizeof(struct rxkad_level1_hdr);
160 break;
161 case RXRPC_SECURITY_ENCRYPT:
162 shdr = sizeof(struct rxkad_level2_hdr);
163 break;
164 }
165
166 buf_size = round_down(RXRPC_JUMBO_DATALEN, RXKAD_ALIGN);
167
168 chunk = buf_size - shdr;
169 if (remain < chunk)
170 buf_size = round_up(shdr + remain, RXKAD_ALIGN);
171
172out:
173 *_buf_size = buf_size;
174 *_data_size = chunk;
175 *_offset = shdr;
176 return 0;
177}
178
179/*
David Howells17926a72007-04-26 15:48:28 -0700180 * prime the encryption state with the invariant parts of a connection's
181 * description
182 */
David Howells8d47a432020-09-16 01:38:15 +0100183static int rxkad_prime_packet_security(struct rxrpc_connection *conn,
184 struct crypto_sync_skcipher *ci)
David Howells17926a72007-04-26 15:48:28 -0700185{
David Howells1db88c52019-07-30 15:56:57 +0100186 struct skcipher_request *req;
David Howells33941282009-09-14 01:17:35 +0000187 struct rxrpc_key_token *token;
Herbert Xua2636292016-06-26 14:55:24 -0700188 struct scatterlist sg;
David Howells17926a72007-04-26 15:48:28 -0700189 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700190 __be32 *tmpbuf;
191 size_t tmpsize = 4 * sizeof(__be32);
David Howells17926a72007-04-26 15:48:28 -0700192
193 _enter("");
194
David Howells2cc80082022-10-19 13:49:02 +0100195 if (!conn->key)
Herbert Xua2636292016-06-26 14:55:24 -0700196 return 0;
197
198 tmpbuf = kmalloc(tmpsize, GFP_KERNEL);
199 if (!tmpbuf)
200 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700201
David Howells8d47a432020-09-16 01:38:15 +0100202 req = skcipher_request_alloc(&ci->base, GFP_NOFS);
David Howells1db88c52019-07-30 15:56:57 +0100203 if (!req) {
204 kfree(tmpbuf);
205 return -ENOMEM;
206 }
207
David Howells2cc80082022-10-19 13:49:02 +0100208 token = conn->key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000209 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700210
Herbert Xua2636292016-06-26 14:55:24 -0700211 tmpbuf[0] = htonl(conn->proto.epoch);
212 tmpbuf[1] = htonl(conn->proto.cid);
213 tmpbuf[2] = 0;
214 tmpbuf[3] = htonl(conn->security_ix);
David Howells17926a72007-04-26 15:48:28 -0700215
Herbert Xua2636292016-06-26 14:55:24 -0700216 sg_init_one(&sg, tmpbuf, tmpsize);
David Howells8d47a432020-09-16 01:38:15 +0100217 skcipher_request_set_sync_tfm(req, ci);
Herbert Xu1afe5932016-01-24 21:19:01 +0800218 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700219 skcipher_request_set_crypt(req, &sg, &sg, tmpsize, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800220 crypto_skcipher_encrypt(req);
David Howells1db88c52019-07-30 15:56:57 +0100221 skcipher_request_free(req);
David Howells17926a72007-04-26 15:48:28 -0700222
David Howells521bb302020-09-22 13:36:17 +0100223 memcpy(&conn->rxkad.csum_iv, tmpbuf + 2, sizeof(conn->rxkad.csum_iv));
Herbert Xua2636292016-06-26 14:55:24 -0700224 kfree(tmpbuf);
225 _leave(" = 0");
226 return 0;
David Howells17926a72007-04-26 15:48:28 -0700227}
228
229/*
David Howells1db88c52019-07-30 15:56:57 +0100230 * Allocate and prepare the crypto request on a call. For any particular call,
231 * this is called serially for the packets, so no lock should be necessary.
232 */
233static struct skcipher_request *rxkad_get_call_crypto(struct rxrpc_call *call)
234{
David Howells521bb302020-09-22 13:36:17 +0100235 struct crypto_skcipher *tfm = &call->conn->rxkad.cipher->base;
David Howells1db88c52019-07-30 15:56:57 +0100236
David Howells30d95ef2022-11-04 23:13:40 +0000237 return skcipher_request_alloc(tfm, GFP_NOFS);
David Howells1db88c52019-07-30 15:56:57 +0100238}
239
240/*
241 * Clean up the crypto on a call.
242 */
243static void rxkad_free_call_crypto(struct rxrpc_call *call)
244{
David Howells1db88c52019-07-30 15:56:57 +0100245}
246
247/*
David Howells17926a72007-04-26 15:48:28 -0700248 * partially encrypt a packet (level 1 security)
249 */
250static int rxkad_secure_packet_auth(const struct rxrpc_call *call,
David Howellsa4ea4c42022-03-31 23:55:08 +0100251 struct rxrpc_txbuf *txb,
Kees Cook54424d32018-08-03 10:15:25 +0100252 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700253{
David Howellsa4ea4c42022-03-31 23:55:08 +0100254 struct rxkad_level1_hdr *hdr = (void *)txb->data;
David Howells17926a72007-04-26 15:48:28 -0700255 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700256 struct scatterlist sg;
David Howellsd7d775b2020-09-16 01:34:39 +0100257 size_t pad;
David Howells17926a72007-04-26 15:48:28 -0700258 u16 check;
259
David Howells17926a72007-04-26 15:48:28 -0700260 _enter("");
261
David Howellsa4ea4c42022-03-31 23:55:08 +0100262 check = txb->seq ^ ntohl(txb->wire.callNumber);
263 hdr->data_size = htonl((u32)check << 16 | txb->len);
David Howells17926a72007-04-26 15:48:28 -0700264
David Howellsa4ea4c42022-03-31 23:55:08 +0100265 txb->len += sizeof(struct rxkad_level1_hdr);
266 pad = txb->len;
David Howellsd7d775b2020-09-16 01:34:39 +0100267 pad = RXKAD_ALIGN - pad;
268 pad &= RXKAD_ALIGN - 1;
David Howellsa4ea4c42022-03-31 23:55:08 +0100269 if (pad) {
270 memset(txb->data + txb->offset, 0, pad);
271 txb->len += pad;
272 }
David Howellsd7d775b2020-09-16 01:34:39 +0100273
David Howells17926a72007-04-26 15:48:28 -0700274 /* start the encryption afresh */
275 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700276
David Howellsa4ea4c42022-03-31 23:55:08 +0100277 sg_init_one(&sg, txb->data, 8);
David Howells521bb302020-09-22 13:36:17 +0100278 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800279 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700280 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800281 crypto_skcipher_encrypt(req);
282 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700283
David Howells17926a72007-04-26 15:48:28 -0700284 _leave(" = 0");
285 return 0;
286}
287
288/*
289 * wholly encrypt a packet (level 2 security)
290 */
291static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
David Howellsa4ea4c42022-03-31 23:55:08 +0100292 struct rxrpc_txbuf *txb,
Kees Cook54424d32018-08-03 10:15:25 +0100293 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700294{
David Howells33941282009-09-14 01:17:35 +0000295 const struct rxrpc_key_token *token;
David Howellsa4ea4c42022-03-31 23:55:08 +0100296 struct rxkad_level2_hdr *rxkhdr = (void *)txb->data;
David Howells17926a72007-04-26 15:48:28 -0700297 struct rxrpc_crypt iv;
David Howellsa4ea4c42022-03-31 23:55:08 +0100298 struct scatterlist sg;
David Howellsd7d775b2020-09-16 01:34:39 +0100299 size_t pad;
David Howells17926a72007-04-26 15:48:28 -0700300 u16 check;
David Howellsa4ea4c42022-03-31 23:55:08 +0100301 int ret;
David Howells17926a72007-04-26 15:48:28 -0700302
303 _enter("");
304
David Howellsa4ea4c42022-03-31 23:55:08 +0100305 check = txb->seq ^ ntohl(txb->wire.callNumber);
David Howells17926a72007-04-26 15:48:28 -0700306
David Howellsa4ea4c42022-03-31 23:55:08 +0100307 rxkhdr->data_size = htonl(txb->len | (u32)check << 16);
308 rxkhdr->checksum = 0;
David Howells17926a72007-04-26 15:48:28 -0700309
David Howellsa4ea4c42022-03-31 23:55:08 +0100310 txb->len += sizeof(struct rxkad_level2_hdr);
311 pad = txb->len;
David Howellsd7d775b2020-09-16 01:34:39 +0100312 pad = RXKAD_ALIGN - pad;
313 pad &= RXKAD_ALIGN - 1;
David Howellsa4ea4c42022-03-31 23:55:08 +0100314 if (pad) {
315 memset(txb->data + txb->offset, 0, pad);
316 txb->len += pad;
317 }
David Howellsd7d775b2020-09-16 01:34:39 +0100318
David Howells17926a72007-04-26 15:48:28 -0700319 /* encrypt from the session key */
David Howells2cc80082022-10-19 13:49:02 +0100320 token = call->conn->key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000321 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700322
David Howellsa4ea4c42022-03-31 23:55:08 +0100323 sg_init_one(&sg, txb->data, txb->len);
David Howells521bb302020-09-22 13:36:17 +0100324 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800325 skcipher_request_set_callback(req, 0, NULL, NULL);
David Howellsa4ea4c42022-03-31 23:55:08 +0100326 skcipher_request_set_crypt(req, &sg, &sg, txb->len, iv.x);
327 ret = crypto_skcipher_encrypt(req);
Herbert Xu1afe5932016-01-24 21:19:01 +0800328 skcipher_request_zero(req);
David Howellsa4ea4c42022-03-31 23:55:08 +0100329 return ret;
David Howells17926a72007-04-26 15:48:28 -0700330}
331
332/*
333 * checksum an RxRPC packet header
334 */
David Howellsa4ea4c42022-03-31 23:55:08 +0100335static int rxkad_secure_packet(struct rxrpc_call *call, struct rxrpc_txbuf *txb)
David Howells17926a72007-04-26 15:48:28 -0700336{
David Howells1db88c52019-07-30 15:56:57 +0100337 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700338 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700339 struct scatterlist sg;
David Howells30d95ef2022-11-04 23:13:40 +0000340 union {
341 __be32 buf[2];
342 } crypto __aligned(8);
David Howells0d12f8a2016-03-04 15:53:46 +0000343 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700344 int ret;
345
David Howellsa4ea4c42022-03-31 23:55:08 +0100346 _enter("{%d{%x}},{#%u},%u,",
David Howells2cc80082022-10-19 13:49:02 +0100347 call->debug_id, key_serial(call->conn->key),
David Howellsa4ea4c42022-03-31 23:55:08 +0100348 txb->seq, txb->len);
David Howells17926a72007-04-26 15:48:28 -0700349
David Howells521bb302020-09-22 13:36:17 +0100350 if (!call->conn->rxkad.cipher)
David Howells17926a72007-04-26 15:48:28 -0700351 return 0;
352
David Howells2cc80082022-10-19 13:49:02 +0100353 ret = key_validate(call->conn->key);
David Howells17926a72007-04-26 15:48:28 -0700354 if (ret < 0)
355 return ret;
356
David Howells1db88c52019-07-30 15:56:57 +0100357 req = rxkad_get_call_crypto(call);
358 if (!req)
359 return -ENOMEM;
360
David Howells17926a72007-04-26 15:48:28 -0700361 /* continue encrypting from where we left off */
David Howells521bb302020-09-22 13:36:17 +0100362 memcpy(&iv, call->conn->rxkad.csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700363
364 /* calculate the security checksum */
David Howellsa4ea4c42022-03-31 23:55:08 +0100365 x = (ntohl(txb->wire.cid) & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
366 x |= txb->seq & 0x3fffffff;
David Howells30d95ef2022-11-04 23:13:40 +0000367 crypto.buf[0] = txb->wire.callNumber;
368 crypto.buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700369
David Howells30d95ef2022-11-04 23:13:40 +0000370 sg_init_one(&sg, crypto.buf, 8);
David Howells521bb302020-09-22 13:36:17 +0100371 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800372 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700373 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800374 crypto_skcipher_encrypt(req);
375 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700376
David Howells30d95ef2022-11-04 23:13:40 +0000377 y = ntohl(crypto.buf[1]);
Al Viro91e916c2008-03-29 03:08:38 +0000378 y = (y >> 16) & 0xffff;
379 if (y == 0)
380 y = 1; /* zero checksums are not permitted */
David Howellsa4ea4c42022-03-31 23:55:08 +0100381 txb->wire.cksum = htons(y);
David Howells17926a72007-04-26 15:48:28 -0700382
David Howells2cc80082022-10-19 13:49:02 +0100383 switch (call->conn->security_level) {
David Howells17926a72007-04-26 15:48:28 -0700384 case RXRPC_SECURITY_PLAIN:
385 ret = 0;
386 break;
387 case RXRPC_SECURITY_AUTH:
David Howellsa4ea4c42022-03-31 23:55:08 +0100388 ret = rxkad_secure_packet_auth(call, txb, req);
David Howells17926a72007-04-26 15:48:28 -0700389 break;
390 case RXRPC_SECURITY_ENCRYPT:
David Howellsa4ea4c42022-03-31 23:55:08 +0100391 ret = rxkad_secure_packet_encrypt(call, txb, req);
David Howells17926a72007-04-26 15:48:28 -0700392 break;
393 default:
394 ret = -EPERM;
395 break;
396 }
397
David Howells30d95ef2022-11-04 23:13:40 +0000398 skcipher_request_free(req);
Justin Stitt5b47d232022-07-07 11:20:52 -0700399 _leave(" = %d [set %x]", ret, y);
David Howells17926a72007-04-26 15:48:28 -0700400 return ret;
401}
402
403/*
404 * decrypt partial encryption on a packet (level 1 security)
405 */
David Howells5a429762016-09-06 22:19:51 +0100406static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb,
Kees Cook54424d32018-08-03 10:15:25 +0100407 rxrpc_seq_t seq,
408 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700409{
410 struct rxkad_level1_hdr sechdr;
David Howellsd4d02d82022-10-07 17:44:39 +0100411 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700412 struct rxrpc_crypt iv;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700413 struct scatterlist sg[16];
David Howells17926a72007-04-26 15:48:28 -0700414 u32 data_size, buf;
415 u16 check;
David Howellsd0d5c0c2019-08-27 10:13:46 +0100416 int ret;
David Howells17926a72007-04-26 15:48:28 -0700417
418 _enter("");
419
David Howells57af2812022-10-06 21:45:42 +0100420 if (sp->len < 8)
421 return rxrpc_abort_eproto(call, skb, RXKADSEALEDINCON,
422 rxkad_abort_1_short_header);
David Howells17926a72007-04-26 15:48:28 -0700423
David Howells248f2192016-09-08 11:10:12 +0100424 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
425 * directly into the target buffer.
426 */
David Howellsd0d5c0c2019-08-27 10:13:46 +0100427 sg_init_table(sg, ARRAY_SIZE(sg));
David Howellsd4d02d82022-10-07 17:44:39 +0100428 ret = skb_to_sgvec(skb, sg, sp->offset, 8);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200429 if (unlikely(ret < 0))
430 return ret;
David Howells17926a72007-04-26 15:48:28 -0700431
432 /* start the decryption afresh */
433 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700434
David Howells521bb302020-09-22 13:36:17 +0100435 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800436 skcipher_request_set_callback(req, 0, NULL, NULL);
437 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800438 crypto_skcipher_decrypt(req);
439 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700440
David Howells5a429762016-09-06 22:19:51 +0100441 /* Extract the decrypted packet length */
David Howells57af2812022-10-06 21:45:42 +0100442 if (skb_copy_bits(skb, sp->offset, &sechdr, sizeof(sechdr)) < 0)
443 return rxrpc_abort_eproto(call, skb, RXKADDATALEN,
444 rxkad_abort_1_short_encdata);
David Howellsd4d02d82022-10-07 17:44:39 +0100445 sp->offset += sizeof(sechdr);
446 sp->len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700447
448 buf = ntohl(sechdr.data_size);
449 data_size = buf & 0xffff;
450
451 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100452 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700453 check &= 0xffff;
David Howells57af2812022-10-06 21:45:42 +0100454 if (check != 0)
455 return rxrpc_abort_eproto(call, skb, RXKADSEALEDINCON,
456 rxkad_abort_1_short_check);
457 if (data_size > sp->len)
458 return rxrpc_abort_eproto(call, skb, RXKADDATALEN,
459 rxkad_abort_1_short_data);
David Howellsd4d02d82022-10-07 17:44:39 +0100460 sp->len = data_size;
David Howells17926a72007-04-26 15:48:28 -0700461
462 _leave(" = 0 [dlen=%x]", data_size);
463 return 0;
David Howells17926a72007-04-26 15:48:28 -0700464}
465
466/*
467 * wholly decrypt a packet (level 2 security)
468 */
David Howells5a429762016-09-06 22:19:51 +0100469static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb,
Kees Cook54424d32018-08-03 10:15:25 +0100470 rxrpc_seq_t seq,
471 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700472{
David Howells33941282009-09-14 01:17:35 +0000473 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700474 struct rxkad_level2_hdr sechdr;
David Howellsd4d02d82022-10-07 17:44:39 +0100475 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700476 struct rxrpc_crypt iv;
477 struct scatterlist _sg[4], *sg;
David Howells17926a72007-04-26 15:48:28 -0700478 u32 data_size, buf;
479 u16 check;
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200480 int nsg, ret;
David Howells17926a72007-04-26 15:48:28 -0700481
David Howellsd4d02d82022-10-07 17:44:39 +0100482 _enter(",{%d}", sp->len);
David Howells17926a72007-04-26 15:48:28 -0700483
David Howells57af2812022-10-06 21:45:42 +0100484 if (sp->len < 8)
485 return rxrpc_abort_eproto(call, skb, RXKADSEALEDINCON,
486 rxkad_abort_2_short_header);
David Howells17926a72007-04-26 15:48:28 -0700487
David Howells248f2192016-09-08 11:10:12 +0100488 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
489 * directly into the target buffer.
490 */
David Howells17926a72007-04-26 15:48:28 -0700491 sg = _sg;
David Howells0d40f722022-08-24 22:39:28 +0100492 nsg = skb_shinfo(skb)->nr_frags + 1;
David Howellsd0d5c0c2019-08-27 10:13:46 +0100493 if (nsg <= 4) {
494 nsg = 4;
495 } else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700496 sg = kmalloc_array(nsg, sizeof(*sg), GFP_NOIO);
David Howells17926a72007-04-26 15:48:28 -0700497 if (!sg)
David Howells57af2812022-10-06 21:45:42 +0100498 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700499 }
500
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700501 sg_init_table(sg, nsg);
David Howellsd4d02d82022-10-07 17:44:39 +0100502 ret = skb_to_sgvec(skb, sg, sp->offset, sp->len);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200503 if (unlikely(ret < 0)) {
504 if (sg != _sg)
505 kfree(sg);
506 return ret;
507 }
David Howells17926a72007-04-26 15:48:28 -0700508
509 /* decrypt from the session key */
David Howells2cc80082022-10-19 13:49:02 +0100510 token = call->conn->key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000511 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700512
David Howells521bb302020-09-22 13:36:17 +0100513 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800514 skcipher_request_set_callback(req, 0, NULL, NULL);
David Howellsd4d02d82022-10-07 17:44:39 +0100515 skcipher_request_set_crypt(req, sg, sg, sp->len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800516 crypto_skcipher_decrypt(req);
517 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700518 if (sg != _sg)
519 kfree(sg);
520
David Howells5a429762016-09-06 22:19:51 +0100521 /* Extract the decrypted packet length */
David Howells57af2812022-10-06 21:45:42 +0100522 if (skb_copy_bits(skb, sp->offset, &sechdr, sizeof(sechdr)) < 0)
523 return rxrpc_abort_eproto(call, skb, RXKADDATALEN,
524 rxkad_abort_2_short_len);
David Howellsd4d02d82022-10-07 17:44:39 +0100525 sp->offset += sizeof(sechdr);
526 sp->len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700527
528 buf = ntohl(sechdr.data_size);
529 data_size = buf & 0xffff;
530
531 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100532 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700533 check &= 0xffff;
David Howells57af2812022-10-06 21:45:42 +0100534 if (check != 0)
535 return rxrpc_abort_eproto(call, skb, RXKADSEALEDINCON,
536 rxkad_abort_2_short_check);
David Howells17926a72007-04-26 15:48:28 -0700537
David Howells57af2812022-10-06 21:45:42 +0100538 if (data_size > sp->len)
539 return rxrpc_abort_eproto(call, skb, RXKADDATALEN,
540 rxkad_abort_2_short_data);
David Howells17926a72007-04-26 15:48:28 -0700541
David Howellsd4d02d82022-10-07 17:44:39 +0100542 sp->len = data_size;
David Howells17926a72007-04-26 15:48:28 -0700543 _leave(" = 0 [dlen=%x]", data_size);
544 return 0;
David Howells17926a72007-04-26 15:48:28 -0700545}
546
547/*
David Howellsd4d02d82022-10-07 17:44:39 +0100548 * Verify the security on a received packet and the subpackets therein.
David Howells17926a72007-04-26 15:48:28 -0700549 */
David Howellsd4d02d82022-10-07 17:44:39 +0100550static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700551{
David Howellsd4d02d82022-10-07 17:44:39 +0100552 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells1db88c52019-07-30 15:56:57 +0100553 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700554 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700555 struct scatterlist sg;
David Howells30d95ef2022-11-04 23:13:40 +0000556 union {
557 __be32 buf[2];
558 } crypto __aligned(8);
David Howellsd4d02d82022-10-07 17:44:39 +0100559 rxrpc_seq_t seq = sp->hdr.seq;
David Howells30d95ef2022-11-04 23:13:40 +0000560 int ret;
David Howells0d12f8a2016-03-04 15:53:46 +0000561 u16 cksum;
562 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700563
564 _enter("{%d{%x}},{#%u}",
David Howells2cc80082022-10-19 13:49:02 +0100565 call->debug_id, key_serial(call->conn->key), seq);
David Howells17926a72007-04-26 15:48:28 -0700566
David Howells521bb302020-09-22 13:36:17 +0100567 if (!call->conn->rxkad.cipher)
David Howells17926a72007-04-26 15:48:28 -0700568 return 0;
569
David Howells1db88c52019-07-30 15:56:57 +0100570 req = rxkad_get_call_crypto(call);
571 if (!req)
572 return -ENOMEM;
573
David Howells17926a72007-04-26 15:48:28 -0700574 /* continue encrypting from where we left off */
David Howells521bb302020-09-22 13:36:17 +0100575 memcpy(&iv, call->conn->rxkad.csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700576
577 /* validate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100578 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells5a429762016-09-06 22:19:51 +0100579 x |= seq & 0x3fffffff;
David Howells30d95ef2022-11-04 23:13:40 +0000580 crypto.buf[0] = htonl(call->call_id);
581 crypto.buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700582
David Howells30d95ef2022-11-04 23:13:40 +0000583 sg_init_one(&sg, crypto.buf, 8);
David Howells521bb302020-09-22 13:36:17 +0100584 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800585 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700586 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800587 crypto_skcipher_encrypt(req);
588 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700589
David Howells30d95ef2022-11-04 23:13:40 +0000590 y = ntohl(crypto.buf[1]);
David Howells0d12f8a2016-03-04 15:53:46 +0000591 cksum = (y >> 16) & 0xffff;
592 if (cksum == 0)
593 cksum = 1; /* zero checksums are not permitted */
David Howells17926a72007-04-26 15:48:28 -0700594
David Howellsd4d02d82022-10-07 17:44:39 +0100595 if (cksum != sp->hdr.cksum) {
David Howells57af2812022-10-06 21:45:42 +0100596 ret = rxrpc_abort_eproto(call, skb, RXKADSEALEDINCON,
597 rxkad_abort_bad_checksum);
598 goto out;
David Howells17926a72007-04-26 15:48:28 -0700599 }
600
David Howells2cc80082022-10-19 13:49:02 +0100601 switch (call->conn->security_level) {
David Howells17926a72007-04-26 15:48:28 -0700602 case RXRPC_SECURITY_PLAIN:
David Howells30d95ef2022-11-04 23:13:40 +0000603 ret = 0;
604 break;
David Howells17926a72007-04-26 15:48:28 -0700605 case RXRPC_SECURITY_AUTH:
David Howells30d95ef2022-11-04 23:13:40 +0000606 ret = rxkad_verify_packet_1(call, skb, seq, req);
607 break;
David Howells17926a72007-04-26 15:48:28 -0700608 case RXRPC_SECURITY_ENCRYPT:
David Howells30d95ef2022-11-04 23:13:40 +0000609 ret = rxkad_verify_packet_2(call, skb, seq, req);
610 break;
David Howells17926a72007-04-26 15:48:28 -0700611 default:
David Howells30d95ef2022-11-04 23:13:40 +0000612 ret = -ENOANO;
613 break;
David Howells17926a72007-04-26 15:48:28 -0700614 }
David Howellsfb46f6e2017-04-06 10:12:00 +0100615
David Howells57af2812022-10-06 21:45:42 +0100616out:
David Howells30d95ef2022-11-04 23:13:40 +0000617 skcipher_request_free(req);
618 return ret;
David Howells17926a72007-04-26 15:48:28 -0700619}
620
621/*
622 * issue a challenge
623 */
624static int rxkad_issue_challenge(struct rxrpc_connection *conn)
625{
626 struct rxkad_challenge challenge;
David Howells0d12f8a2016-03-04 15:53:46 +0000627 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700628 struct msghdr msg;
629 struct kvec iov[2];
630 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000631 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700632 int ret;
633
David Howellsec832bd2020-09-16 08:00:44 +0100634 _enter("{%d}", conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700635
David Howells521bb302020-09-22 13:36:17 +0100636 get_random_bytes(&conn->rxkad.nonce, sizeof(conn->rxkad.nonce));
David Howells17926a72007-04-26 15:48:28 -0700637
638 challenge.version = htonl(2);
David Howells521bb302020-09-22 13:36:17 +0100639 challenge.nonce = htonl(conn->rxkad.nonce);
David Howells17926a72007-04-26 15:48:28 -0700640 challenge.min_level = htonl(0);
641 challenge.__padding = 0;
642
David Howells2cc80082022-10-19 13:49:02 +0100643 msg.msg_name = &conn->peer->srx.transport;
644 msg.msg_namelen = conn->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700645 msg.msg_control = NULL;
646 msg.msg_controllen = 0;
647 msg.msg_flags = 0;
648
David Howells19ffa012016-04-04 14:00:36 +0100649 whdr.epoch = htonl(conn->proto.epoch);
650 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000651 whdr.callNumber = 0;
652 whdr.seq = 0;
653 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
654 whdr.flags = conn->out_clientflag;
655 whdr.userStatus = 0;
656 whdr.securityIndex = conn->security_ix;
657 whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +0100658 whdr.serviceId = htons(conn->service_id);
David Howells17926a72007-04-26 15:48:28 -0700659
David Howells0d12f8a2016-03-04 15:53:46 +0000660 iov[0].iov_base = &whdr;
661 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700662 iov[1].iov_base = &challenge;
663 iov[1].iov_len = sizeof(challenge);
664
665 len = iov[0].iov_len + iov[1].iov_len;
666
David Howells0d12f8a2016-03-04 15:53:46 +0000667 serial = atomic_inc_return(&conn->serial);
668 whdr.serial = htonl(serial);
David Howells17926a72007-04-26 15:48:28 -0700669
David Howells2cc80082022-10-19 13:49:02 +0100670 ret = kernel_sendmsg(conn->local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700671 if (ret < 0) {
David Howells6b47fe12018-05-10 23:26:01 +0100672 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100673 rxrpc_tx_point_rxkad_challenge);
David Howells17926a72007-04-26 15:48:28 -0700674 return -EAGAIN;
675 }
676
David Howells2cc80082022-10-19 13:49:02 +0100677 conn->peer->last_tx_at = ktime_get_seconds();
David Howells4764c0d2018-07-23 17:18:37 +0100678 trace_rxrpc_tx_packet(conn->debug_id, &whdr,
679 rxrpc_tx_point_rxkad_challenge);
David Howells17926a72007-04-26 15:48:28 -0700680 _leave(" = 0");
681 return 0;
682}
683
684/*
685 * send a Kerberos security response
686 */
687static int rxkad_send_response(struct rxrpc_connection *conn,
David Howells0d12f8a2016-03-04 15:53:46 +0000688 struct rxrpc_host_header *hdr,
David Howells17926a72007-04-26 15:48:28 -0700689 struct rxkad_response *resp,
690 const struct rxkad_key *s2)
691{
David Howells0d12f8a2016-03-04 15:53:46 +0000692 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700693 struct msghdr msg;
694 struct kvec iov[3];
695 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000696 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700697 int ret;
698
699 _enter("");
700
David Howells2cc80082022-10-19 13:49:02 +0100701 msg.msg_name = &conn->peer->srx.transport;
702 msg.msg_namelen = conn->peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700703 msg.msg_control = NULL;
704 msg.msg_controllen = 0;
705 msg.msg_flags = 0;
706
David Howells0d12f8a2016-03-04 15:53:46 +0000707 memset(&whdr, 0, sizeof(whdr));
708 whdr.epoch = htonl(hdr->epoch);
709 whdr.cid = htonl(hdr->cid);
710 whdr.type = RXRPC_PACKET_TYPE_RESPONSE;
711 whdr.flags = conn->out_clientflag;
712 whdr.securityIndex = hdr->securityIndex;
713 whdr.serviceId = htons(hdr->serviceId);
David Howells17926a72007-04-26 15:48:28 -0700714
David Howells0d12f8a2016-03-04 15:53:46 +0000715 iov[0].iov_base = &whdr;
716 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700717 iov[1].iov_base = resp;
718 iov[1].iov_len = sizeof(*resp);
David Howells0d12f8a2016-03-04 15:53:46 +0000719 iov[2].iov_base = (void *)s2->ticket;
David Howells17926a72007-04-26 15:48:28 -0700720 iov[2].iov_len = s2->ticket_len;
721
722 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
723
David Howells0d12f8a2016-03-04 15:53:46 +0000724 serial = atomic_inc_return(&conn->serial);
725 whdr.serial = htonl(serial);
David Howells17926a72007-04-26 15:48:28 -0700726
David Howells2cc80082022-10-19 13:49:02 +0100727 ret = kernel_sendmsg(conn->local->socket, &msg, iov, 3, len);
David Howells17926a72007-04-26 15:48:28 -0700728 if (ret < 0) {
David Howells6b47fe12018-05-10 23:26:01 +0100729 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100730 rxrpc_tx_point_rxkad_response);
David Howells17926a72007-04-26 15:48:28 -0700731 return -EAGAIN;
732 }
733
David Howells2cc80082022-10-19 13:49:02 +0100734 conn->peer->last_tx_at = ktime_get_seconds();
David Howells17926a72007-04-26 15:48:28 -0700735 _leave(" = 0");
736 return 0;
737}
738
739/*
740 * calculate the response checksum
741 */
742static void rxkad_calc_response_checksum(struct rxkad_response *response)
743{
744 u32 csum = 1000003;
745 int loop;
746 u8 *p = (u8 *) response;
747
748 for (loop = sizeof(*response); loop > 0; loop--)
749 csum = csum * 0x10204081 + *p++;
750
751 response->encrypted.checksum = htonl(csum);
752}
753
754/*
David Howells17926a72007-04-26 15:48:28 -0700755 * encrypt the response packet
756 */
David Howells1db88c52019-07-30 15:56:57 +0100757static int rxkad_encrypt_response(struct rxrpc_connection *conn,
758 struct rxkad_response *resp,
759 const struct rxkad_key *s2)
David Howells17926a72007-04-26 15:48:28 -0700760{
David Howells1db88c52019-07-30 15:56:57 +0100761 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700762 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700763 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700764
David Howells521bb302020-09-22 13:36:17 +0100765 req = skcipher_request_alloc(&conn->rxkad.cipher->base, GFP_NOFS);
David Howells1db88c52019-07-30 15:56:57 +0100766 if (!req)
767 return -ENOMEM;
768
David Howells17926a72007-04-26 15:48:28 -0700769 /* continue encrypting from where we left off */
770 memcpy(&iv, s2->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700771
Herbert Xua2636292016-06-26 14:55:24 -0700772 sg_init_table(sg, 1);
773 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
David Howells521bb302020-09-22 13:36:17 +0100774 skcipher_request_set_sync_tfm(req, conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800775 skcipher_request_set_callback(req, 0, NULL, NULL);
776 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800777 crypto_skcipher_encrypt(req);
David Howells1db88c52019-07-30 15:56:57 +0100778 skcipher_request_free(req);
779 return 0;
David Howells17926a72007-04-26 15:48:28 -0700780}
781
782/*
783 * respond to a challenge packet
784 */
785static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
David Howellsa00ce282022-10-20 09:56:36 +0100786 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -0700787{
David Howells33941282009-09-14 01:17:35 +0000788 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700789 struct rxkad_challenge challenge;
David Howells8c2f8262018-02-08 15:59:07 +0000790 struct rxkad_response *resp;
David Howells248f2192016-09-08 11:10:12 +0100791 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells57af2812022-10-06 21:45:42 +0100792 u32 version, nonce, min_level;
793 int ret = -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700794
David Howells2cc80082022-10-19 13:49:02 +0100795 _enter("{%d,%x}", conn->debug_id, key_serial(conn->key));
David Howells17926a72007-04-26 15:48:28 -0700796
David Howells2cc80082022-10-19 13:49:02 +0100797 if (!conn->key)
David Howells57af2812022-10-06 21:45:42 +0100798 return rxrpc_abort_conn(conn, skb, RX_PROTOCOL_ERROR, -EPROTO,
799 rxkad_abort_chall_no_key);
David Howells17926a72007-04-26 15:48:28 -0700800
David Howells2cc80082022-10-19 13:49:02 +0100801 ret = key_validate(conn->key);
David Howellsef686222017-04-06 10:11:59 +0100802 if (ret < 0)
David Howells57af2812022-10-06 21:45:42 +0100803 return rxrpc_abort_conn(conn, skb, RXKADEXPIRED, ret,
804 rxkad_abort_chall_key_expired);
David Howells17926a72007-04-26 15:48:28 -0700805
David Howells775e5b72016-09-30 13:26:03 +0100806 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
807 &challenge, sizeof(challenge)) < 0)
David Howells57af2812022-10-06 21:45:42 +0100808 return rxrpc_abort_conn(conn, skb, RXKADPACKETSHORT, -EPROTO,
809 rxkad_abort_chall_short);
David Howells17926a72007-04-26 15:48:28 -0700810
811 version = ntohl(challenge.version);
812 nonce = ntohl(challenge.nonce);
813 min_level = ntohl(challenge.min_level);
814
David Howells2ebdb262022-10-20 11:51:06 +0100815 trace_rxrpc_rx_challenge(conn, sp->hdr.serial, version, nonce, min_level);
David Howells17926a72007-04-26 15:48:28 -0700816
David Howells17926a72007-04-26 15:48:28 -0700817 if (version != RXKAD_VERSION)
David Howells57af2812022-10-06 21:45:42 +0100818 return rxrpc_abort_conn(conn, skb, RXKADINCONSISTENCY, -EPROTO,
819 rxkad_abort_chall_version);
David Howells17926a72007-04-26 15:48:28 -0700820
David Howells2cc80082022-10-19 13:49:02 +0100821 if (conn->security_level < min_level)
David Howells57af2812022-10-06 21:45:42 +0100822 return rxrpc_abort_conn(conn, skb, RXKADLEVELFAIL, -EACCES,
823 rxkad_abort_chall_level);
David Howells17926a72007-04-26 15:48:28 -0700824
David Howells2cc80082022-10-19 13:49:02 +0100825 token = conn->key->payload.data[0];
David Howells17926a72007-04-26 15:48:28 -0700826
827 /* build the response packet */
David Howells8c2f8262018-02-08 15:59:07 +0000828 resp = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
829 if (!resp)
830 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700831
David Howells8c2f8262018-02-08 15:59:07 +0000832 resp->version = htonl(RXKAD_VERSION);
833 resp->encrypted.epoch = htonl(conn->proto.epoch);
834 resp->encrypted.cid = htonl(conn->proto.cid);
835 resp->encrypted.securityIndex = htonl(conn->security_ix);
836 resp->encrypted.inc_nonce = htonl(nonce + 1);
David Howells2cc80082022-10-19 13:49:02 +0100837 resp->encrypted.level = htonl(conn->security_level);
David Howells8c2f8262018-02-08 15:59:07 +0000838 resp->kvno = htonl(token->kad->kvno);
839 resp->ticket_len = htonl(token->kad->ticket_len);
840 resp->encrypted.call_id[0] = htonl(conn->channels[0].call_counter);
841 resp->encrypted.call_id[1] = htonl(conn->channels[1].call_counter);
842 resp->encrypted.call_id[2] = htonl(conn->channels[2].call_counter);
843 resp->encrypted.call_id[3] = htonl(conn->channels[3].call_counter);
David Howells17926a72007-04-26 15:48:28 -0700844
845 /* calculate the response checksum and then do the encryption */
David Howells8c2f8262018-02-08 15:59:07 +0000846 rxkad_calc_response_checksum(resp);
David Howells1db88c52019-07-30 15:56:57 +0100847 ret = rxkad_encrypt_response(conn, resp, token->kad);
848 if (ret == 0)
849 ret = rxkad_send_response(conn, &sp->hdr, resp, token->kad);
David Howells8c2f8262018-02-08 15:59:07 +0000850 kfree(resp);
851 return ret;
David Howells17926a72007-04-26 15:48:28 -0700852}
853
854/*
855 * decrypt the kerberos IV ticket in the response
856 */
857static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
David Howellsec832bd2020-09-16 08:00:44 +0100858 struct key *server_key,
David Howellsfb46f6e2017-04-06 10:12:00 +0100859 struct sk_buff *skb,
David Howells17926a72007-04-26 15:48:28 -0700860 void *ticket, size_t ticket_len,
861 struct rxrpc_crypt *_session_key,
David Howellsa00ce282022-10-20 09:56:36 +0100862 time64_t *_expiry)
David Howells17926a72007-04-26 15:48:28 -0700863{
Herbert Xu1afe5932016-01-24 21:19:01 +0800864 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700865 struct rxrpc_crypt iv, key;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700866 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700867 struct in_addr addr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000868 unsigned int life;
Baolin Wang10674a02017-08-29 10:15:40 +0100869 time64_t issue, now;
David Howells17926a72007-04-26 15:48:28 -0700870 bool little_endian;
David Howells17926a72007-04-26 15:48:28 -0700871 u8 *p, *q, *name, *end;
872
David Howellsec832bd2020-09-16 08:00:44 +0100873 _enter("{%d},{%x}", conn->debug_id, key_serial(server_key));
David Howells17926a72007-04-26 15:48:28 -0700874
875 *_expiry = 0;
876
David Howellsec832bd2020-09-16 08:00:44 +0100877 ASSERT(server_key->payload.data[0] != NULL);
David Howells17926a72007-04-26 15:48:28 -0700878 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
879
David Howellsec832bd2020-09-16 08:00:44 +0100880 memcpy(&iv, &server_key->payload.data[2], sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700881
David Howellsec832bd2020-09-16 08:00:44 +0100882 req = skcipher_request_alloc(server_key->payload.data[0], GFP_NOFS);
David Howellsef686222017-04-06 10:11:59 +0100883 if (!req)
David Howells57af2812022-10-06 21:45:42 +0100884 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700885
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700886 sg_init_one(&sg[0], ticket, ticket_len);
Herbert Xu1afe5932016-01-24 21:19:01 +0800887 skcipher_request_set_callback(req, 0, NULL, NULL);
888 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800889 crypto_skcipher_decrypt(req);
890 skcipher_request_free(req);
David Howells17926a72007-04-26 15:48:28 -0700891
892 p = ticket;
893 end = p + ticket_len;
894
David Howells57af2812022-10-06 21:45:42 +0100895#define Z(field, fieldl) \
896 ({ \
897 u8 *__str = p; \
898 q = memchr(p, 0, end - p); \
899 if (!q || q - p > field##_SZ) \
900 return rxrpc_abort_conn( \
901 conn, skb, RXKADBADTICKET, -EPROTO, \
902 rxkad_abort_resp_tkt_##fieldl); \
903 for (; p < q; p++) \
904 if (!isprint(*p)) \
905 return rxrpc_abort_conn( \
906 conn, skb, RXKADBADTICKET, -EPROTO, \
907 rxkad_abort_resp_tkt_##fieldl); \
908 p++; \
909 __str; \
David Howells17926a72007-04-26 15:48:28 -0700910 })
911
912 /* extract the ticket flags */
913 _debug("KIV FLAGS: %x", *p);
914 little_endian = *p & 1;
915 p++;
916
917 /* extract the authentication name */
David Howells57af2812022-10-06 21:45:42 +0100918 name = Z(ANAME, aname);
David Howells17926a72007-04-26 15:48:28 -0700919 _debug("KIV ANAME: %s", name);
920
921 /* extract the principal's instance */
David Howells57af2812022-10-06 21:45:42 +0100922 name = Z(INST, inst);
David Howells17926a72007-04-26 15:48:28 -0700923 _debug("KIV INST : %s", name);
924
925 /* extract the principal's authentication domain */
David Howells57af2812022-10-06 21:45:42 +0100926 name = Z(REALM, realm);
David Howells17926a72007-04-26 15:48:28 -0700927 _debug("KIV REALM: %s", name);
928
929 if (end - p < 4 + 8 + 4 + 2)
David Howells57af2812022-10-06 21:45:42 +0100930 return rxrpc_abort_conn(conn, skb, RXKADBADTICKET, -EPROTO,
931 rxkad_abort_resp_tkt_short);
David Howells17926a72007-04-26 15:48:28 -0700932
933 /* get the IPv4 address of the entity that requested the ticket */
934 memcpy(&addr, p, sizeof(addr));
935 p += 4;
Harvey Harrison21454aa2008-10-31 00:54:56 -0700936 _debug("KIV ADDR : %pI4", &addr);
David Howells17926a72007-04-26 15:48:28 -0700937
938 /* get the session key from the ticket */
939 memcpy(&key, p, sizeof(key));
940 p += 8;
941 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
942 memcpy(_session_key, &key, sizeof(key));
943
944 /* get the ticket's lifetime */
945 life = *p++ * 5 * 60;
946 _debug("KIV LIFE : %u", life);
947
948 /* get the issue time of the ticket */
949 if (little_endian) {
950 __le32 stamp;
951 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +0100952 issue = rxrpc_u32_to_time64(le32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -0700953 } else {
954 __be32 stamp;
955 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +0100956 issue = rxrpc_u32_to_time64(be32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -0700957 }
958 p += 4;
Baolin Wang10674a02017-08-29 10:15:40 +0100959 now = ktime_get_real_seconds();
960 _debug("KIV ISSUE: %llx [%llx]", issue, now);
David Howells17926a72007-04-26 15:48:28 -0700961
962 /* check the ticket is in date */
David Howells57af2812022-10-06 21:45:42 +0100963 if (issue > now)
964 return rxrpc_abort_conn(conn, skb, RXKADNOAUTH, -EKEYREJECTED,
965 rxkad_abort_resp_tkt_future);
966 if (issue < now - life)
967 return rxrpc_abort_conn(conn, skb, RXKADEXPIRED, -EKEYEXPIRED,
968 rxkad_abort_resp_tkt_expired);
David Howells17926a72007-04-26 15:48:28 -0700969
970 *_expiry = issue + life;
971
972 /* get the service name */
David Howells57af2812022-10-06 21:45:42 +0100973 name = Z(SNAME, sname);
David Howells17926a72007-04-26 15:48:28 -0700974 _debug("KIV SNAME: %s", name);
975
976 /* get the service instance name */
David Howells57af2812022-10-06 21:45:42 +0100977 name = Z(INST, sinst);
David Howells17926a72007-04-26 15:48:28 -0700978 _debug("KIV SINST: %s", name);
David Howellsef686222017-04-06 10:11:59 +0100979 return 0;
David Howells17926a72007-04-26 15:48:28 -0700980}
981
982/*
983 * decrypt the response packet
984 */
985static void rxkad_decrypt_response(struct rxrpc_connection *conn,
986 struct rxkad_response *resp,
987 const struct rxrpc_crypt *session_key)
988{
David Howells1db88c52019-07-30 15:56:57 +0100989 struct skcipher_request *req = rxkad_ci_req;
Herbert Xua2636292016-06-26 14:55:24 -0700990 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700991 struct rxrpc_crypt iv;
992
993 _enter(",,%08x%08x",
994 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
995
David Howells17926a72007-04-26 15:48:28 -0700996 mutex_lock(&rxkad_ci_mutex);
Kees Cook69d826f2018-09-18 19:10:47 -0700997 if (crypto_sync_skcipher_setkey(rxkad_ci, session_key->x,
David Howells1db88c52019-07-30 15:56:57 +0100998 sizeof(*session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700999 BUG();
1000
1001 memcpy(&iv, session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -07001002
Herbert Xua2636292016-06-26 14:55:24 -07001003 sg_init_table(sg, 1);
1004 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Kees Cook69d826f2018-09-18 19:10:47 -07001005 skcipher_request_set_sync_tfm(req, rxkad_ci);
Herbert Xu1afe5932016-01-24 21:19:01 +08001006 skcipher_request_set_callback(req, 0, NULL, NULL);
1007 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +08001008 crypto_skcipher_decrypt(req);
1009 skcipher_request_zero(req);
1010
David Howells17926a72007-04-26 15:48:28 -07001011 mutex_unlock(&rxkad_ci_mutex);
1012
1013 _leave("");
1014}
1015
1016/*
1017 * verify a response
1018 */
1019static int rxkad_verify_response(struct rxrpc_connection *conn,
David Howellsa00ce282022-10-20 09:56:36 +01001020 struct sk_buff *skb)
David Howells17926a72007-04-26 15:48:28 -07001021{
David Howells8c2f8262018-02-08 15:59:07 +00001022 struct rxkad_response *response;
David Howells248f2192016-09-08 11:10:12 +01001023 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -07001024 struct rxrpc_crypt session_key;
David Howellsec832bd2020-09-16 08:00:44 +01001025 struct key *server_key;
Baolin Wang10674a02017-08-29 10:15:40 +01001026 time64_t expiry;
David Howells17926a72007-04-26 15:48:28 -07001027 void *ticket;
David Howells57af2812022-10-06 21:45:42 +01001028 u32 version, kvno, ticket_len, level;
Al Viro91e916c2008-03-29 03:08:38 +00001029 __be32 csum;
David Howellsa1399f82016-06-27 14:39:44 +01001030 int ret, i;
David Howells17926a72007-04-26 15:48:28 -07001031
David Howellsec832bd2020-09-16 08:00:44 +01001032 _enter("{%d}", conn->debug_id);
1033
1034 server_key = rxrpc_look_up_server_security(conn, skb, 0, 0);
1035 if (IS_ERR(server_key)) {
David Howells57af2812022-10-06 21:45:42 +01001036 ret = PTR_ERR(server_key);
1037 switch (ret) {
David Howellsec832bd2020-09-16 08:00:44 +01001038 case -ENOKEY:
David Howells57af2812022-10-06 21:45:42 +01001039 return rxrpc_abort_conn(conn, skb, RXKADUNKNOWNKEY, ret,
1040 rxkad_abort_resp_nokey);
David Howellsec832bd2020-09-16 08:00:44 +01001041 case -EKEYEXPIRED:
David Howells57af2812022-10-06 21:45:42 +01001042 return rxrpc_abort_conn(conn, skb, RXKADEXPIRED, ret,
1043 rxkad_abort_resp_key_expired);
David Howellsec832bd2020-09-16 08:00:44 +01001044 default:
David Howells57af2812022-10-06 21:45:42 +01001045 return rxrpc_abort_conn(conn, skb, RXKADNOAUTH, ret,
1046 rxkad_abort_resp_key_rejected);
David Howellsec832bd2020-09-16 08:00:44 +01001047 }
David Howellsec832bd2020-09-16 08:00:44 +01001048 }
David Howells17926a72007-04-26 15:48:28 -07001049
David Howells8c2f8262018-02-08 15:59:07 +00001050 ret = -ENOMEM;
1051 response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
1052 if (!response)
1053 goto temporary_error;
1054
David Howells775e5b72016-09-30 13:26:03 +01001055 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
David Howells57af2812022-10-06 21:45:42 +01001056 response, sizeof(*response)) < 0) {
1057 rxrpc_abort_conn(conn, skb, RXKADPACKETSHORT, -EPROTO,
1058 rxkad_abort_resp_short);
David Howells17926a72007-04-26 15:48:28 -07001059 goto protocol_error;
David Howells57af2812022-10-06 21:45:42 +01001060 }
David Howells17926a72007-04-26 15:48:28 -07001061
David Howells8c2f8262018-02-08 15:59:07 +00001062 version = ntohl(response->version);
1063 ticket_len = ntohl(response->ticket_len);
1064 kvno = ntohl(response->kvno);
David Howells2ebdb262022-10-20 11:51:06 +01001065
1066 trace_rxrpc_rx_response(conn, sp->hdr.serial, version, kvno, ticket_len);
David Howells17926a72007-04-26 15:48:28 -07001067
David Howells57af2812022-10-06 21:45:42 +01001068 if (version != RXKAD_VERSION) {
1069 rxrpc_abort_conn(conn, skb, RXKADINCONSISTENCY, -EPROTO,
1070 rxkad_abort_resp_version);
David Howells4aa9cb32007-12-07 04:31:47 -08001071 goto protocol_error;
David Howells57af2812022-10-06 21:45:42 +01001072 }
David Howells17926a72007-04-26 15:48:28 -07001073
David Howells57af2812022-10-06 21:45:42 +01001074 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN) {
1075 rxrpc_abort_conn(conn, skb, RXKADTICKETLEN, -EPROTO,
1076 rxkad_abort_resp_tkt_len);
David Howells17926a72007-04-26 15:48:28 -07001077 goto protocol_error;
David Howells57af2812022-10-06 21:45:42 +01001078 }
David Howells17926a72007-04-26 15:48:28 -07001079
David Howells57af2812022-10-06 21:45:42 +01001080 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5) {
1081 rxrpc_abort_conn(conn, skb, RXKADUNKNOWNKEY, -EPROTO,
1082 rxkad_abort_resp_unknown_tkt);
David Howells17926a72007-04-26 15:48:28 -07001083 goto protocol_error;
David Howells57af2812022-10-06 21:45:42 +01001084 }
David Howells17926a72007-04-26 15:48:28 -07001085
1086 /* extract the kerberos ticket and decrypt and decode it */
David Howellsef686222017-04-06 10:11:59 +01001087 ret = -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -07001088 ticket = kmalloc(ticket_len, GFP_NOFS);
1089 if (!ticket)
Dinghao Liub43c75a2020-08-27 16:55:46 +01001090 goto temporary_error_free_resp;
David Howells17926a72007-04-26 15:48:28 -07001091
David Howells57af2812022-10-06 21:45:42 +01001092 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header) + sizeof(*response),
1093 ticket, ticket_len) < 0) {
1094 rxrpc_abort_conn(conn, skb, RXKADPACKETSHORT, -EPROTO,
1095 rxkad_abort_resp_short_tkt);
1096 goto protocol_error;
1097 }
David Howells17926a72007-04-26 15:48:28 -07001098
David Howellsec832bd2020-09-16 08:00:44 +01001099 ret = rxkad_decrypt_ticket(conn, server_key, skb, ticket, ticket_len,
David Howellsa00ce282022-10-20 09:56:36 +01001100 &session_key, &expiry);
David Howellsef686222017-04-06 10:11:59 +01001101 if (ret < 0)
Qiushi Wuf45d01f2020-05-22 13:45:18 -05001102 goto temporary_error_free_ticket;
David Howells17926a72007-04-26 15:48:28 -07001103
1104 /* use the session key from inside the ticket to decrypt the
1105 * response */
David Howells8c2f8262018-02-08 15:59:07 +00001106 rxkad_decrypt_response(conn, response, &session_key);
David Howells17926a72007-04-26 15:48:28 -07001107
David Howells57af2812022-10-06 21:45:42 +01001108 if (ntohl(response->encrypted.epoch) != conn->proto.epoch ||
1109 ntohl(response->encrypted.cid) != conn->proto.cid ||
1110 ntohl(response->encrypted.securityIndex) != conn->security_ix) {
1111 rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO,
1112 rxkad_abort_resp_bad_param);
David Howells17926a72007-04-26 15:48:28 -07001113 goto protocol_error_free;
David Howells57af2812022-10-06 21:45:42 +01001114 }
1115
David Howells8c2f8262018-02-08 15:59:07 +00001116 csum = response->encrypted.checksum;
1117 response->encrypted.checksum = 0;
1118 rxkad_calc_response_checksum(response);
David Howells57af2812022-10-06 21:45:42 +01001119 if (response->encrypted.checksum != csum) {
1120 rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO,
1121 rxkad_abort_resp_bad_checksum);
David Howells17926a72007-04-26 15:48:28 -07001122 goto protocol_error_free;
David Howells57af2812022-10-06 21:45:42 +01001123 }
David Howells17926a72007-04-26 15:48:28 -07001124
David Howells245500d2020-07-01 11:15:32 +01001125 spin_lock(&conn->bundle->channel_lock);
David Howellsa1399f82016-06-27 14:39:44 +01001126 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1127 struct rxrpc_call *call;
David Howells8c2f8262018-02-08 15:59:07 +00001128 u32 call_id = ntohl(response->encrypted.call_id[i]);
David Howellsa1399f82016-06-27 14:39:44 +01001129
David Howells57af2812022-10-06 21:45:42 +01001130 if (call_id > INT_MAX) {
1131 rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO,
1132 rxkad_abort_resp_bad_callid);
David Howellsa1399f82016-06-27 14:39:44 +01001133 goto protocol_error_unlock;
David Howells57af2812022-10-06 21:45:42 +01001134 }
David Howellsa1399f82016-06-27 14:39:44 +01001135
David Howells57af2812022-10-06 21:45:42 +01001136 if (call_id < conn->channels[i].call_counter) {
1137 rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO,
1138 rxkad_abort_resp_call_ctr);
David Howellsa1399f82016-06-27 14:39:44 +01001139 goto protocol_error_unlock;
David Howells57af2812022-10-06 21:45:42 +01001140 }
David Howellsfb46f6e2017-04-06 10:12:00 +01001141
David Howellsa1399f82016-06-27 14:39:44 +01001142 if (call_id > conn->channels[i].call_counter) {
1143 call = rcu_dereference_protected(
1144 conn->channels[i].call,
David Howells245500d2020-07-01 11:15:32 +01001145 lockdep_is_held(&conn->bundle->channel_lock));
David Howells57af2812022-10-06 21:45:42 +01001146 if (call && call->state < RXRPC_CALL_COMPLETE) {
1147 rxrpc_abort_conn(conn, skb, RXKADSEALEDINCON, -EPROTO,
1148 rxkad_abort_resp_call_state);
David Howellsa1399f82016-06-27 14:39:44 +01001149 goto protocol_error_unlock;
David Howells57af2812022-10-06 21:45:42 +01001150 }
David Howellsa1399f82016-06-27 14:39:44 +01001151 conn->channels[i].call_counter = call_id;
1152 }
1153 }
David Howells245500d2020-07-01 11:15:32 +01001154 spin_unlock(&conn->bundle->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001155
David Howells57af2812022-10-06 21:45:42 +01001156 if (ntohl(response->encrypted.inc_nonce) != conn->rxkad.nonce + 1) {
1157 rxrpc_abort_conn(conn, skb, RXKADOUTOFSEQUENCE, -EPROTO,
1158 rxkad_abort_resp_ooseq);
David Howells17926a72007-04-26 15:48:28 -07001159 goto protocol_error_free;
David Howells57af2812022-10-06 21:45:42 +01001160 }
David Howells17926a72007-04-26 15:48:28 -07001161
David Howells8c2f8262018-02-08 15:59:07 +00001162 level = ntohl(response->encrypted.level);
David Howells57af2812022-10-06 21:45:42 +01001163 if (level > RXRPC_SECURITY_ENCRYPT) {
1164 rxrpc_abort_conn(conn, skb, RXKADLEVELFAIL, -EPROTO,
1165 rxkad_abort_resp_level);
David Howells17926a72007-04-26 15:48:28 -07001166 goto protocol_error_free;
David Howells57af2812022-10-06 21:45:42 +01001167 }
David Howells2cc80082022-10-19 13:49:02 +01001168 conn->security_level = level;
David Howells17926a72007-04-26 15:48:28 -07001169
1170 /* create a key to hold the security data and expiration time - after
1171 * this the connection security can be handled in exactly the same way
1172 * as for a client connection */
1173 ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
David Howellsef686222017-04-06 10:11:59 +01001174 if (ret < 0)
David Howells8c2f8262018-02-08 15:59:07 +00001175 goto temporary_error_free_ticket;
David Howells17926a72007-04-26 15:48:28 -07001176
1177 kfree(ticket);
David Howells8c2f8262018-02-08 15:59:07 +00001178 kfree(response);
David Howells17926a72007-04-26 15:48:28 -07001179 _leave(" = 0");
1180 return 0;
1181
David Howellsa1399f82016-06-27 14:39:44 +01001182protocol_error_unlock:
David Howells245500d2020-07-01 11:15:32 +01001183 spin_unlock(&conn->bundle->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001184protocol_error_free:
1185 kfree(ticket);
1186protocol_error:
David Howells8c2f8262018-02-08 15:59:07 +00001187 kfree(response);
David Howellsec832bd2020-09-16 08:00:44 +01001188 key_put(server_key);
David Howells57af2812022-10-06 21:45:42 +01001189 return -EPROTO;
David Howellsef686222017-04-06 10:11:59 +01001190
David Howells8c2f8262018-02-08 15:59:07 +00001191temporary_error_free_ticket:
David Howellsef686222017-04-06 10:11:59 +01001192 kfree(ticket);
Dinghao Liub43c75a2020-08-27 16:55:46 +01001193temporary_error_free_resp:
David Howells8c2f8262018-02-08 15:59:07 +00001194 kfree(response);
David Howellsef686222017-04-06 10:11:59 +01001195temporary_error:
1196 /* Ignore the response packet if we got a temporary error such as
1197 * ENOMEM. We just want to send the challenge again. Note that we
1198 * also come out this way if the ticket decryption fails.
1199 */
David Howellsec832bd2020-09-16 08:00:44 +01001200 key_put(server_key);
David Howellsef686222017-04-06 10:11:59 +01001201 return ret;
David Howells17926a72007-04-26 15:48:28 -07001202}
1203
1204/*
1205 * clear the connection security
1206 */
1207static void rxkad_clear(struct rxrpc_connection *conn)
1208{
1209 _enter("");
1210
David Howells521bb302020-09-22 13:36:17 +01001211 if (conn->rxkad.cipher)
1212 crypto_free_sync_skcipher(conn->rxkad.cipher);
David Howells17926a72007-04-26 15:48:28 -07001213}
1214
1215/*
David Howells648af7f2016-04-07 17:23:51 +01001216 * Initialise the rxkad security service.
1217 */
1218static int rxkad_init(void)
1219{
David Howells1db88c52019-07-30 15:56:57 +01001220 struct crypto_sync_skcipher *tfm;
1221 struct skcipher_request *req;
1222
David Howells648af7f2016-04-07 17:23:51 +01001223 /* pin the cipher we need so that the crypto layer doesn't invoke
1224 * keventd to go get it */
David Howells1db88c52019-07-30 15:56:57 +01001225 tfm = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
1226 if (IS_ERR(tfm))
1227 return PTR_ERR(tfm);
1228
1229 req = skcipher_request_alloc(&tfm->base, GFP_KERNEL);
1230 if (!req)
1231 goto nomem_tfm;
1232
1233 rxkad_ci_req = req;
1234 rxkad_ci = tfm;
1235 return 0;
1236
1237nomem_tfm:
1238 crypto_free_sync_skcipher(tfm);
1239 return -ENOMEM;
David Howells648af7f2016-04-07 17:23:51 +01001240}
1241
1242/*
1243 * Clean up the rxkad security service.
1244 */
1245static void rxkad_exit(void)
1246{
David Howells1db88c52019-07-30 15:56:57 +01001247 crypto_free_sync_skcipher(rxkad_ci);
1248 skcipher_request_free(rxkad_ci_req);
David Howells648af7f2016-04-07 17:23:51 +01001249}
1250
1251/*
David Howells17926a72007-04-26 15:48:28 -07001252 * RxRPC Kerberos-based security
1253 */
David Howells648af7f2016-04-07 17:23:51 +01001254const struct rxrpc_security rxkad = {
David Howells17926a72007-04-26 15:48:28 -07001255 .name = "rxkad",
David Howells8b815472009-09-14 01:17:30 +00001256 .security_index = RXRPC_SECURITY_RXKAD,
David Howells063c60d2019-12-20 16:17:16 +00001257 .no_key_abort = RXKADUNKNOWNKEY,
David Howells648af7f2016-04-07 17:23:51 +01001258 .init = rxkad_init,
1259 .exit = rxkad_exit,
David Howells12da59f2020-09-16 08:37:29 +01001260 .preparse_server_key = rxkad_preparse_server_key,
1261 .free_preparse_server_key = rxkad_free_preparse_server_key,
1262 .destroy_server_key = rxkad_destroy_server_key,
David Howells17926a72007-04-26 15:48:28 -07001263 .init_connection_security = rxkad_init_connection_security,
David Howellsd7d775b2020-09-16 01:34:39 +01001264 .how_much_data = rxkad_how_much_data,
David Howells17926a72007-04-26 15:48:28 -07001265 .secure_packet = rxkad_secure_packet,
1266 .verify_packet = rxkad_verify_packet,
David Howells1db88c52019-07-30 15:56:57 +01001267 .free_call_crypto = rxkad_free_call_crypto,
David Howells17926a72007-04-26 15:48:28 -07001268 .issue_challenge = rxkad_issue_challenge,
1269 .respond_to_challenge = rxkad_respond_to_challenge,
1270 .verify_response = rxkad_verify_response,
1271 .clear = rxkad_clear,
1272};