blob: 08aab5c01437d3300d6abf105f08ca24811f3776 [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 Howells19ffa012016-04-04 14:00:36 +0100106 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->params.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 Howells19ffa012016-04-04 14:00:36 +0100121 switch (conn->params.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
153 switch (call->conn->params.security_level) {
154 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 Howells19ffa012016-04-04 14:00:36 +0100195 if (!conn->params.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 Howells19ffa012016-04-04 14:00:36 +0100208 token = conn->params.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 struct skcipher_request *cipher_req = call->cipher_req;
237
238 if (!cipher_req) {
239 cipher_req = skcipher_request_alloc(tfm, GFP_NOFS);
240 if (!cipher_req)
241 return NULL;
242 call->cipher_req = cipher_req;
243 }
244
245 return cipher_req;
246}
247
248/*
249 * Clean up the crypto on a call.
250 */
251static void rxkad_free_call_crypto(struct rxrpc_call *call)
252{
253 if (call->cipher_req)
254 skcipher_request_free(call->cipher_req);
255 call->cipher_req = NULL;
256}
257
258/*
David Howells17926a72007-04-26 15:48:28 -0700259 * partially encrypt a packet (level 1 security)
260 */
261static int rxkad_secure_packet_auth(const struct rxrpc_call *call,
David Howellsf4bdf3d2020-09-17 23:23:38 +0100262 struct sk_buff *skb, u32 data_size,
Kees Cook54424d32018-08-03 10:15:25 +0100263 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700264{
David Howellsfb46f6e2017-04-06 10:12:00 +0100265 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
Herbert Xua2636292016-06-26 14:55:24 -0700266 struct rxkad_level1_hdr hdr;
David Howells17926a72007-04-26 15:48:28 -0700267 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700268 struct scatterlist sg;
David Howellsd7d775b2020-09-16 01:34:39 +0100269 size_t pad;
David Howells17926a72007-04-26 15:48:28 -0700270 u16 check;
271
David Howells17926a72007-04-26 15:48:28 -0700272 _enter("");
273
David Howells5a924b82016-09-22 00:29:31 +0100274 check = sp->hdr.seq ^ call->call_id;
David Howells0d12f8a2016-03-04 15:53:46 +0000275 data_size |= (u32)check << 16;
David Howells17926a72007-04-26 15:48:28 -0700276
Herbert Xua2636292016-06-26 14:55:24 -0700277 hdr.data_size = htonl(data_size);
David Howellsf4bdf3d2020-09-17 23:23:38 +0100278 memcpy(skb->head, &hdr, sizeof(hdr));
David Howells17926a72007-04-26 15:48:28 -0700279
David Howellsd7d775b2020-09-16 01:34:39 +0100280 pad = sizeof(struct rxkad_level1_hdr) + data_size;
281 pad = RXKAD_ALIGN - pad;
282 pad &= RXKAD_ALIGN - 1;
283 if (pad)
284 skb_put_zero(skb, pad);
285
David Howells17926a72007-04-26 15:48:28 -0700286 /* start the encryption afresh */
287 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700288
David Howellsf4bdf3d2020-09-17 23:23:38 +0100289 sg_init_one(&sg, skb->head, 8);
David Howells521bb302020-09-22 13:36:17 +0100290 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800291 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700292 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800293 crypto_skcipher_encrypt(req);
294 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700295
David Howells17926a72007-04-26 15:48:28 -0700296 _leave(" = 0");
297 return 0;
298}
299
300/*
301 * wholly encrypt a packet (level 2 security)
302 */
303static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
David Howellsb4f13422016-03-04 15:56:19 +0000304 struct sk_buff *skb,
305 u32 data_size,
Kees Cook54424d32018-08-03 10:15:25 +0100306 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700307{
David Howells33941282009-09-14 01:17:35 +0000308 const struct rxrpc_key_token *token;
Herbert Xua2636292016-06-26 14:55:24 -0700309 struct rxkad_level2_hdr rxkhdr;
David Howells17926a72007-04-26 15:48:28 -0700310 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700311 struct rxrpc_crypt iv;
312 struct scatterlist sg[16];
Eric Dumazet95c96172012-04-15 05:58:06 +0000313 unsigned int len;
David Howellsd7d775b2020-09-16 01:34:39 +0100314 size_t pad;
David Howells17926a72007-04-26 15:48:28 -0700315 u16 check;
Herbert Xu1afe5932016-01-24 21:19:01 +0800316 int err;
David Howells17926a72007-04-26 15:48:28 -0700317
318 sp = rxrpc_skb(skb);
319
320 _enter("");
321
David Howells5a924b82016-09-22 00:29:31 +0100322 check = sp->hdr.seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700323
David Howells0d12f8a2016-03-04 15:53:46 +0000324 rxkhdr.data_size = htonl(data_size | (u32)check << 16);
David Howells17926a72007-04-26 15:48:28 -0700325 rxkhdr.checksum = 0;
David Howellsf4bdf3d2020-09-17 23:23:38 +0100326 memcpy(skb->head, &rxkhdr, sizeof(rxkhdr));
David Howells17926a72007-04-26 15:48:28 -0700327
David Howellsd7d775b2020-09-16 01:34:39 +0100328 pad = sizeof(struct rxkad_level2_hdr) + data_size;
329 pad = RXKAD_ALIGN - pad;
330 pad &= RXKAD_ALIGN - 1;
331 if (pad)
332 skb_put_zero(skb, pad);
333
David Howells17926a72007-04-26 15:48:28 -0700334 /* encrypt from the session key */
David Howells19ffa012016-04-04 14:00:36 +0100335 token = call->conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000336 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700337
David Howellsf4bdf3d2020-09-17 23:23:38 +0100338 sg_init_one(&sg[0], skb->head, sizeof(rxkhdr));
David Howells521bb302020-09-22 13:36:17 +0100339 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800340 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700341 skcipher_request_set_crypt(req, &sg[0], &sg[0], sizeof(rxkhdr), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800342 crypto_skcipher_encrypt(req);
David Howells17926a72007-04-26 15:48:28 -0700343
344 /* we want to encrypt the skbuff in-place */
David Howellsd0d5c0c2019-08-27 10:13:46 +0100345 err = -EMSGSIZE;
346 if (skb_shinfo(skb)->nr_frags > 16)
Herbert Xu1afe5932016-01-24 21:19:01 +0800347 goto out;
David Howells17926a72007-04-26 15:48:28 -0700348
David Howellsd7d775b2020-09-16 01:34:39 +0100349 len = round_up(data_size, RXKAD_ALIGN);
David Howells17926a72007-04-26 15:48:28 -0700350
David Howellsd0d5c0c2019-08-27 10:13:46 +0100351 sg_init_table(sg, ARRAY_SIZE(sg));
David Howellsf4bdf3d2020-09-17 23:23:38 +0100352 err = skb_to_sgvec(skb, sg, 8, len);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200353 if (unlikely(err < 0))
354 goto out;
Herbert Xu1afe5932016-01-24 21:19:01 +0800355 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800356 crypto_skcipher_encrypt(req);
David Howells17926a72007-04-26 15:48:28 -0700357
358 _leave(" = 0");
Herbert Xu1afe5932016-01-24 21:19:01 +0800359 err = 0;
360
361out:
362 skcipher_request_zero(req);
363 return err;
David Howells17926a72007-04-26 15:48:28 -0700364}
365
366/*
367 * checksum an RxRPC packet header
368 */
Herbert Xua2636292016-06-26 14:55:24 -0700369static int rxkad_secure_packet(struct rxrpc_call *call,
David Howellsb4f13422016-03-04 15:56:19 +0000370 struct sk_buff *skb,
David Howellsf4bdf3d2020-09-17 23:23:38 +0100371 size_t data_size)
David Howells17926a72007-04-26 15:48:28 -0700372{
373 struct rxrpc_skb_priv *sp;
David Howells1db88c52019-07-30 15:56:57 +0100374 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700375 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700376 struct scatterlist sg;
David Howells0d12f8a2016-03-04 15:53:46 +0000377 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700378 int ret;
379
380 sp = rxrpc_skb(skb);
381
382 _enter("{%d{%x}},{#%u},%zu,",
David Howells19ffa012016-04-04 14:00:36 +0100383 call->debug_id, key_serial(call->conn->params.key),
384 sp->hdr.seq, data_size);
David Howells17926a72007-04-26 15:48:28 -0700385
David Howells521bb302020-09-22 13:36:17 +0100386 if (!call->conn->rxkad.cipher)
David Howells17926a72007-04-26 15:48:28 -0700387 return 0;
388
David Howells19ffa012016-04-04 14:00:36 +0100389 ret = key_validate(call->conn->params.key);
David Howells17926a72007-04-26 15:48:28 -0700390 if (ret < 0)
391 return ret;
392
David Howells1db88c52019-07-30 15:56:57 +0100393 req = rxkad_get_call_crypto(call);
394 if (!req)
395 return -ENOMEM;
396
David Howells17926a72007-04-26 15:48:28 -0700397 /* continue encrypting from where we left off */
David Howells521bb302020-09-22 13:36:17 +0100398 memcpy(&iv, call->conn->rxkad.csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700399
400 /* calculate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100401 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells0d12f8a2016-03-04 15:53:46 +0000402 x |= sp->hdr.seq & 0x3fffffff;
David Howells5a924b82016-09-22 00:29:31 +0100403 call->crypto_buf[0] = htonl(call->call_id);
Herbert Xua2636292016-06-26 14:55:24 -0700404 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700405
Herbert Xua2636292016-06-26 14:55:24 -0700406 sg_init_one(&sg, call->crypto_buf, 8);
David Howells521bb302020-09-22 13:36:17 +0100407 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800408 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700409 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800410 crypto_skcipher_encrypt(req);
411 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700412
Herbert Xua2636292016-06-26 14:55:24 -0700413 y = ntohl(call->crypto_buf[1]);
Al Viro91e916c2008-03-29 03:08:38 +0000414 y = (y >> 16) & 0xffff;
415 if (y == 0)
416 y = 1; /* zero checksums are not permitted */
David Howells0d12f8a2016-03-04 15:53:46 +0000417 sp->hdr.cksum = y;
David Howells17926a72007-04-26 15:48:28 -0700418
David Howells19ffa012016-04-04 14:00:36 +0100419 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700420 case RXRPC_SECURITY_PLAIN:
421 ret = 0;
422 break;
423 case RXRPC_SECURITY_AUTH:
David Howellsf4bdf3d2020-09-17 23:23:38 +0100424 ret = rxkad_secure_packet_auth(call, skb, data_size, req);
David Howells17926a72007-04-26 15:48:28 -0700425 break;
426 case RXRPC_SECURITY_ENCRYPT:
David Howellsf4bdf3d2020-09-17 23:23:38 +0100427 ret = rxkad_secure_packet_encrypt(call, skb, data_size, req);
David Howells17926a72007-04-26 15:48:28 -0700428 break;
429 default:
430 ret = -EPERM;
431 break;
432 }
433
Al Viro91e916c2008-03-29 03:08:38 +0000434 _leave(" = %d [set %hx]", ret, y);
David Howells17926a72007-04-26 15:48:28 -0700435 return ret;
436}
437
438/*
439 * decrypt partial encryption on a packet (level 1 security)
440 */
David Howells5a429762016-09-06 22:19:51 +0100441static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100442 unsigned int offset, unsigned int len,
Kees Cook54424d32018-08-03 10:15:25 +0100443 rxrpc_seq_t seq,
444 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700445{
446 struct rxkad_level1_hdr sechdr;
David Howells17926a72007-04-26 15:48:28 -0700447 struct rxrpc_crypt iv;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700448 struct scatterlist sg[16];
David Howellsfb46f6e2017-04-06 10:12:00 +0100449 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700450 u32 data_size, buf;
451 u16 check;
David Howellsd0d5c0c2019-08-27 10:13:46 +0100452 int ret;
David Howells17926a72007-04-26 15:48:28 -0700453
454 _enter("");
455
David Howells248f2192016-09-08 11:10:12 +0100456 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100457 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_hdr", "V1H",
458 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100459 goto protocol_error;
460 }
David Howells17926a72007-04-26 15:48:28 -0700461
David Howells248f2192016-09-08 11:10:12 +0100462 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
463 * directly into the target buffer.
464 */
David Howellsd0d5c0c2019-08-27 10:13:46 +0100465 sg_init_table(sg, ARRAY_SIZE(sg));
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200466 ret = skb_to_sgvec(skb, sg, offset, 8);
467 if (unlikely(ret < 0))
468 return ret;
David Howells17926a72007-04-26 15:48:28 -0700469
470 /* start the decryption afresh */
471 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700472
David Howells521bb302020-09-22 13:36:17 +0100473 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800474 skcipher_request_set_callback(req, 0, NULL, NULL);
475 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800476 crypto_skcipher_decrypt(req);
477 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700478
David Howells5a429762016-09-06 22:19:51 +0100479 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100480 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100481 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_len", "XV1",
482 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100483 goto protocol_error;
484 }
David Howells248f2192016-09-08 11:10:12 +0100485 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700486
487 buf = ntohl(sechdr.data_size);
488 data_size = buf & 0xffff;
489
490 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100491 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700492 check &= 0xffff;
493 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100494 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_check", "V1C",
495 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700496 goto protocol_error;
497 }
498
David Howells248f2192016-09-08 11:10:12 +0100499 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100500 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_datalen", "V1L",
501 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100502 goto protocol_error;
503 }
David Howells17926a72007-04-26 15:48:28 -0700504
505 _leave(" = 0 [dlen=%x]", data_size);
506 return 0;
507
David Howells17926a72007-04-26 15:48:28 -0700508protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100509 if (aborted)
510 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700511 return -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700512}
513
514/*
515 * wholly decrypt a packet (level 2 security)
516 */
David Howells5a429762016-09-06 22:19:51 +0100517static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100518 unsigned int offset, unsigned int len,
Kees Cook54424d32018-08-03 10:15:25 +0100519 rxrpc_seq_t seq,
520 struct skcipher_request *req)
David Howells17926a72007-04-26 15:48:28 -0700521{
David Howells33941282009-09-14 01:17:35 +0000522 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700523 struct rxkad_level2_hdr sechdr;
David Howells17926a72007-04-26 15:48:28 -0700524 struct rxrpc_crypt iv;
525 struct scatterlist _sg[4], *sg;
David Howellsfb46f6e2017-04-06 10:12:00 +0100526 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700527 u32 data_size, buf;
528 u16 check;
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200529 int nsg, ret;
David Howells17926a72007-04-26 15:48:28 -0700530
531 _enter(",{%d}", skb->len);
532
David Howells248f2192016-09-08 11:10:12 +0100533 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100534 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_hdr", "V2H",
535 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100536 goto protocol_error;
537 }
David Howells17926a72007-04-26 15:48:28 -0700538
David Howells248f2192016-09-08 11:10:12 +0100539 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
540 * directly into the target buffer.
541 */
David Howells17926a72007-04-26 15:48:28 -0700542 sg = _sg;
David Howellsd0d5c0c2019-08-27 10:13:46 +0100543 nsg = skb_shinfo(skb)->nr_frags;
544 if (nsg <= 4) {
545 nsg = 4;
546 } else {
Kees Cook6da2ec52018-06-12 13:55:00 -0700547 sg = kmalloc_array(nsg, sizeof(*sg), GFP_NOIO);
David Howells17926a72007-04-26 15:48:28 -0700548 if (!sg)
549 goto nomem;
550 }
551
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700552 sg_init_table(sg, nsg);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200553 ret = skb_to_sgvec(skb, sg, offset, len);
554 if (unlikely(ret < 0)) {
555 if (sg != _sg)
556 kfree(sg);
557 return ret;
558 }
David Howells17926a72007-04-26 15:48:28 -0700559
560 /* decrypt from the session key */
David Howells19ffa012016-04-04 14:00:36 +0100561 token = call->conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000562 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700563
David Howells521bb302020-09-22 13:36:17 +0100564 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800565 skcipher_request_set_callback(req, 0, NULL, NULL);
David Howells248f2192016-09-08 11:10:12 +0100566 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800567 crypto_skcipher_decrypt(req);
568 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700569 if (sg != _sg)
570 kfree(sg);
571
David Howells5a429762016-09-06 22:19:51 +0100572 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100573 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100574 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_len", "XV2",
575 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100576 goto protocol_error;
577 }
David Howells248f2192016-09-08 11:10:12 +0100578 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700579
580 buf = ntohl(sechdr.data_size);
581 data_size = buf & 0xffff;
582
583 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100584 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700585 check &= 0xffff;
586 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100587 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_check", "V2C",
588 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700589 goto protocol_error;
590 }
591
David Howells248f2192016-09-08 11:10:12 +0100592 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100593 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_datalen", "V2L",
594 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100595 goto protocol_error;
596 }
David Howells17926a72007-04-26 15:48:28 -0700597
598 _leave(" = 0 [dlen=%x]", data_size);
599 return 0;
600
David Howells17926a72007-04-26 15:48:28 -0700601protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100602 if (aborted)
603 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700604 return -EPROTO;
605
606nomem:
607 _leave(" = -ENOMEM");
608 return -ENOMEM;
609}
610
611/*
David Howells5a429762016-09-06 22:19:51 +0100612 * Verify the security on a received packet or subpacket (if part of a
613 * jumbo packet).
David Howells17926a72007-04-26 15:48:28 -0700614 */
David Howells5a429762016-09-06 22:19:51 +0100615static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100616 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100617 rxrpc_seq_t seq, u16 expected_cksum)
David Howells17926a72007-04-26 15:48:28 -0700618{
David Howells1db88c52019-07-30 15:56:57 +0100619 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700620 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700621 struct scatterlist sg;
David Howellsfb46f6e2017-04-06 10:12:00 +0100622 bool aborted;
David Howells0d12f8a2016-03-04 15:53:46 +0000623 u16 cksum;
624 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700625
626 _enter("{%d{%x}},{#%u}",
David Howells5a429762016-09-06 22:19:51 +0100627 call->debug_id, key_serial(call->conn->params.key), seq);
David Howells17926a72007-04-26 15:48:28 -0700628
David Howells521bb302020-09-22 13:36:17 +0100629 if (!call->conn->rxkad.cipher)
David Howells17926a72007-04-26 15:48:28 -0700630 return 0;
631
David Howells1db88c52019-07-30 15:56:57 +0100632 req = rxkad_get_call_crypto(call);
633 if (!req)
634 return -ENOMEM;
635
David Howells17926a72007-04-26 15:48:28 -0700636 /* continue encrypting from where we left off */
David Howells521bb302020-09-22 13:36:17 +0100637 memcpy(&iv, call->conn->rxkad.csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700638
639 /* validate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100640 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells5a429762016-09-06 22:19:51 +0100641 x |= seq & 0x3fffffff;
Herbert Xua2636292016-06-26 14:55:24 -0700642 call->crypto_buf[0] = htonl(call->call_id);
643 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700644
Herbert Xua2636292016-06-26 14:55:24 -0700645 sg_init_one(&sg, call->crypto_buf, 8);
David Howells521bb302020-09-22 13:36:17 +0100646 skcipher_request_set_sync_tfm(req, call->conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800647 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700648 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800649 crypto_skcipher_encrypt(req);
650 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700651
Herbert Xua2636292016-06-26 14:55:24 -0700652 y = ntohl(call->crypto_buf[1]);
David Howells0d12f8a2016-03-04 15:53:46 +0000653 cksum = (y >> 16) & 0xffff;
654 if (cksum == 0)
655 cksum = 1; /* zero checksums are not permitted */
David Howells17926a72007-04-26 15:48:28 -0700656
David Howells5a429762016-09-06 22:19:51 +0100657 if (cksum != expected_cksum) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100658 aborted = rxrpc_abort_eproto(call, skb, "rxkad_csum", "VCK",
659 RXKADSEALEDINCON);
660 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700661 }
662
David Howells19ffa012016-04-04 14:00:36 +0100663 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700664 case RXRPC_SECURITY_PLAIN:
David Howells5a429762016-09-06 22:19:51 +0100665 return 0;
David Howells17926a72007-04-26 15:48:28 -0700666 case RXRPC_SECURITY_AUTH:
Kees Cook54424d32018-08-03 10:15:25 +0100667 return rxkad_verify_packet_1(call, skb, offset, len, seq, req);
David Howells17926a72007-04-26 15:48:28 -0700668 case RXRPC_SECURITY_ENCRYPT:
Kees Cook54424d32018-08-03 10:15:25 +0100669 return rxkad_verify_packet_2(call, skb, offset, len, seq, req);
David Howells17926a72007-04-26 15:48:28 -0700670 default:
David Howells5a429762016-09-06 22:19:51 +0100671 return -ENOANO;
David Howells17926a72007-04-26 15:48:28 -0700672 }
David Howellsfb46f6e2017-04-06 10:12:00 +0100673
674protocol_error:
675 if (aborted)
676 rxrpc_send_abort_packet(call);
677 return -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700678}
679
680/*
David Howells248f2192016-09-08 11:10:12 +0100681 * Locate the data contained in a packet that was partially encrypted.
682 */
683static void rxkad_locate_data_1(struct rxrpc_call *call, struct sk_buff *skb,
684 unsigned int *_offset, unsigned int *_len)
685{
686 struct rxkad_level1_hdr sechdr;
687
688 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
689 BUG();
690 *_offset += sizeof(sechdr);
691 *_len = ntohl(sechdr.data_size) & 0xffff;
692}
693
694/*
695 * Locate the data contained in a packet that was completely encrypted.
696 */
697static void rxkad_locate_data_2(struct rxrpc_call *call, struct sk_buff *skb,
698 unsigned int *_offset, unsigned int *_len)
699{
700 struct rxkad_level2_hdr sechdr;
701
702 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
703 BUG();
704 *_offset += sizeof(sechdr);
705 *_len = ntohl(sechdr.data_size) & 0xffff;
706}
707
708/*
709 * Locate the data contained in an already decrypted packet.
710 */
711static void rxkad_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
712 unsigned int *_offset, unsigned int *_len)
713{
714 switch (call->conn->params.security_level) {
715 case RXRPC_SECURITY_AUTH:
716 rxkad_locate_data_1(call, skb, _offset, _len);
717 return;
718 case RXRPC_SECURITY_ENCRYPT:
719 rxkad_locate_data_2(call, skb, _offset, _len);
720 return;
721 default:
722 return;
723 }
724}
725
726/*
David Howells17926a72007-04-26 15:48:28 -0700727 * issue a challenge
728 */
729static int rxkad_issue_challenge(struct rxrpc_connection *conn)
730{
731 struct rxkad_challenge challenge;
David Howells0d12f8a2016-03-04 15:53:46 +0000732 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700733 struct msghdr msg;
734 struct kvec iov[2];
735 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000736 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700737 int ret;
738
David Howellsec832bd2020-09-16 08:00:44 +0100739 _enter("{%d}", conn->debug_id);
David Howells17926a72007-04-26 15:48:28 -0700740
David Howells521bb302020-09-22 13:36:17 +0100741 get_random_bytes(&conn->rxkad.nonce, sizeof(conn->rxkad.nonce));
David Howells17926a72007-04-26 15:48:28 -0700742
743 challenge.version = htonl(2);
David Howells521bb302020-09-22 13:36:17 +0100744 challenge.nonce = htonl(conn->rxkad.nonce);
David Howells17926a72007-04-26 15:48:28 -0700745 challenge.min_level = htonl(0);
746 challenge.__padding = 0;
747
David Howells7b674e32017-08-29 10:18:37 +0100748 msg.msg_name = &conn->params.peer->srx.transport;
749 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700750 msg.msg_control = NULL;
751 msg.msg_controllen = 0;
752 msg.msg_flags = 0;
753
David Howells19ffa012016-04-04 14:00:36 +0100754 whdr.epoch = htonl(conn->proto.epoch);
755 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000756 whdr.callNumber = 0;
757 whdr.seq = 0;
758 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
759 whdr.flags = conn->out_clientflag;
760 whdr.userStatus = 0;
761 whdr.securityIndex = conn->security_ix;
762 whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +0100763 whdr.serviceId = htons(conn->service_id);
David Howells17926a72007-04-26 15:48:28 -0700764
David Howells0d12f8a2016-03-04 15:53:46 +0000765 iov[0].iov_base = &whdr;
766 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700767 iov[1].iov_base = &challenge;
768 iov[1].iov_len = sizeof(challenge);
769
770 len = iov[0].iov_len + iov[1].iov_len;
771
David Howells0d12f8a2016-03-04 15:53:46 +0000772 serial = atomic_inc_return(&conn->serial);
773 whdr.serial = htonl(serial);
774 _proto("Tx CHALLENGE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700775
David Howells85f32272016-04-04 14:00:36 +0100776 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700777 if (ret < 0) {
David Howells6b47fe12018-05-10 23:26:01 +0100778 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100779 rxrpc_tx_point_rxkad_challenge);
David Howells17926a72007-04-26 15:48:28 -0700780 return -EAGAIN;
781 }
782
David Howells330bdcf2018-08-08 11:30:02 +0100783 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells4764c0d2018-07-23 17:18:37 +0100784 trace_rxrpc_tx_packet(conn->debug_id, &whdr,
785 rxrpc_tx_point_rxkad_challenge);
David Howells17926a72007-04-26 15:48:28 -0700786 _leave(" = 0");
787 return 0;
788}
789
790/*
791 * send a Kerberos security response
792 */
793static int rxkad_send_response(struct rxrpc_connection *conn,
David Howells0d12f8a2016-03-04 15:53:46 +0000794 struct rxrpc_host_header *hdr,
David Howells17926a72007-04-26 15:48:28 -0700795 struct rxkad_response *resp,
796 const struct rxkad_key *s2)
797{
David Howells0d12f8a2016-03-04 15:53:46 +0000798 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700799 struct msghdr msg;
800 struct kvec iov[3];
801 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000802 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700803 int ret;
804
805 _enter("");
806
David Howells7b674e32017-08-29 10:18:37 +0100807 msg.msg_name = &conn->params.peer->srx.transport;
808 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700809 msg.msg_control = NULL;
810 msg.msg_controllen = 0;
811 msg.msg_flags = 0;
812
David Howells0d12f8a2016-03-04 15:53:46 +0000813 memset(&whdr, 0, sizeof(whdr));
814 whdr.epoch = htonl(hdr->epoch);
815 whdr.cid = htonl(hdr->cid);
816 whdr.type = RXRPC_PACKET_TYPE_RESPONSE;
817 whdr.flags = conn->out_clientflag;
818 whdr.securityIndex = hdr->securityIndex;
819 whdr.serviceId = htons(hdr->serviceId);
David Howells17926a72007-04-26 15:48:28 -0700820
David Howells0d12f8a2016-03-04 15:53:46 +0000821 iov[0].iov_base = &whdr;
822 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700823 iov[1].iov_base = resp;
824 iov[1].iov_len = sizeof(*resp);
David Howells0d12f8a2016-03-04 15:53:46 +0000825 iov[2].iov_base = (void *)s2->ticket;
David Howells17926a72007-04-26 15:48:28 -0700826 iov[2].iov_len = s2->ticket_len;
827
828 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
829
David Howells0d12f8a2016-03-04 15:53:46 +0000830 serial = atomic_inc_return(&conn->serial);
831 whdr.serial = htonl(serial);
832 _proto("Tx RESPONSE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700833
David Howells85f32272016-04-04 14:00:36 +0100834 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len);
David Howells17926a72007-04-26 15:48:28 -0700835 if (ret < 0) {
David Howells6b47fe12018-05-10 23:26:01 +0100836 trace_rxrpc_tx_fail(conn->debug_id, serial, ret,
David Howells4764c0d2018-07-23 17:18:37 +0100837 rxrpc_tx_point_rxkad_response);
David Howells17926a72007-04-26 15:48:28 -0700838 return -EAGAIN;
839 }
840
David Howells330bdcf2018-08-08 11:30:02 +0100841 conn->params.peer->last_tx_at = ktime_get_seconds();
David Howells17926a72007-04-26 15:48:28 -0700842 _leave(" = 0");
843 return 0;
844}
845
846/*
847 * calculate the response checksum
848 */
849static void rxkad_calc_response_checksum(struct rxkad_response *response)
850{
851 u32 csum = 1000003;
852 int loop;
853 u8 *p = (u8 *) response;
854
855 for (loop = sizeof(*response); loop > 0; loop--)
856 csum = csum * 0x10204081 + *p++;
857
858 response->encrypted.checksum = htonl(csum);
859}
860
861/*
David Howells17926a72007-04-26 15:48:28 -0700862 * encrypt the response packet
863 */
David Howells1db88c52019-07-30 15:56:57 +0100864static int rxkad_encrypt_response(struct rxrpc_connection *conn,
865 struct rxkad_response *resp,
866 const struct rxkad_key *s2)
David Howells17926a72007-04-26 15:48:28 -0700867{
David Howells1db88c52019-07-30 15:56:57 +0100868 struct skcipher_request *req;
David Howells17926a72007-04-26 15:48:28 -0700869 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700870 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700871
David Howells521bb302020-09-22 13:36:17 +0100872 req = skcipher_request_alloc(&conn->rxkad.cipher->base, GFP_NOFS);
David Howells1db88c52019-07-30 15:56:57 +0100873 if (!req)
874 return -ENOMEM;
875
David Howells17926a72007-04-26 15:48:28 -0700876 /* continue encrypting from where we left off */
877 memcpy(&iv, s2->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700878
Herbert Xua2636292016-06-26 14:55:24 -0700879 sg_init_table(sg, 1);
880 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
David Howells521bb302020-09-22 13:36:17 +0100881 skcipher_request_set_sync_tfm(req, conn->rxkad.cipher);
Herbert Xu1afe5932016-01-24 21:19:01 +0800882 skcipher_request_set_callback(req, 0, NULL, NULL);
883 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800884 crypto_skcipher_encrypt(req);
David Howells1db88c52019-07-30 15:56:57 +0100885 skcipher_request_free(req);
886 return 0;
David Howells17926a72007-04-26 15:48:28 -0700887}
888
889/*
890 * respond to a challenge packet
891 */
892static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
893 struct sk_buff *skb,
894 u32 *_abort_code)
895{
David Howells33941282009-09-14 01:17:35 +0000896 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700897 struct rxkad_challenge challenge;
David Howells8c2f8262018-02-08 15:59:07 +0000898 struct rxkad_response *resp;
David Howells248f2192016-09-08 11:10:12 +0100899 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howellsfb46f6e2017-04-06 10:12:00 +0100900 const char *eproto;
David Howells17926a72007-04-26 15:48:28 -0700901 u32 version, nonce, min_level, abort_code;
902 int ret;
903
David Howells19ffa012016-04-04 14:00:36 +0100904 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -0700905
David Howellsfb46f6e2017-04-06 10:12:00 +0100906 eproto = tracepoint_string("chall_no_key");
David Howellsef686222017-04-06 10:11:59 +0100907 abort_code = RX_PROTOCOL_ERROR;
908 if (!conn->params.key)
909 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700910
David Howellsef686222017-04-06 10:11:59 +0100911 abort_code = RXKADEXPIRED;
David Howells19ffa012016-04-04 14:00:36 +0100912 ret = key_validate(conn->params.key);
David Howellsef686222017-04-06 10:11:59 +0100913 if (ret < 0)
914 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700915
David Howellsfb46f6e2017-04-06 10:12:00 +0100916 eproto = tracepoint_string("chall_short");
David Howells17926a72007-04-26 15:48:28 -0700917 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +0100918 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
919 &challenge, sizeof(challenge)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700920 goto protocol_error;
921
922 version = ntohl(challenge.version);
923 nonce = ntohl(challenge.nonce);
924 min_level = ntohl(challenge.min_level);
925
926 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +0000927 sp->hdr.serial, version, nonce, min_level);
David Howells17926a72007-04-26 15:48:28 -0700928
David Howellsfb46f6e2017-04-06 10:12:00 +0100929 eproto = tracepoint_string("chall_ver");
David Howells17926a72007-04-26 15:48:28 -0700930 abort_code = RXKADINCONSISTENCY;
931 if (version != RXKAD_VERSION)
932 goto protocol_error;
933
934 abort_code = RXKADLEVELFAIL;
David Howellsef686222017-04-06 10:11:59 +0100935 ret = -EACCES;
David Howells19ffa012016-04-04 14:00:36 +0100936 if (conn->params.security_level < min_level)
David Howellsef686222017-04-06 10:11:59 +0100937 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700938
David Howells19ffa012016-04-04 14:00:36 +0100939 token = conn->params.key->payload.data[0];
David Howells17926a72007-04-26 15:48:28 -0700940
941 /* build the response packet */
David Howells8c2f8262018-02-08 15:59:07 +0000942 resp = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
943 if (!resp)
944 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700945
David Howells8c2f8262018-02-08 15:59:07 +0000946 resp->version = htonl(RXKAD_VERSION);
947 resp->encrypted.epoch = htonl(conn->proto.epoch);
948 resp->encrypted.cid = htonl(conn->proto.cid);
949 resp->encrypted.securityIndex = htonl(conn->security_ix);
950 resp->encrypted.inc_nonce = htonl(nonce + 1);
951 resp->encrypted.level = htonl(conn->params.security_level);
952 resp->kvno = htonl(token->kad->kvno);
953 resp->ticket_len = htonl(token->kad->ticket_len);
954 resp->encrypted.call_id[0] = htonl(conn->channels[0].call_counter);
955 resp->encrypted.call_id[1] = htonl(conn->channels[1].call_counter);
956 resp->encrypted.call_id[2] = htonl(conn->channels[2].call_counter);
957 resp->encrypted.call_id[3] = htonl(conn->channels[3].call_counter);
David Howells17926a72007-04-26 15:48:28 -0700958
959 /* calculate the response checksum and then do the encryption */
David Howells8c2f8262018-02-08 15:59:07 +0000960 rxkad_calc_response_checksum(resp);
David Howells1db88c52019-07-30 15:56:57 +0100961 ret = rxkad_encrypt_response(conn, resp, token->kad);
962 if (ret == 0)
963 ret = rxkad_send_response(conn, &sp->hdr, resp, token->kad);
David Howells8c2f8262018-02-08 15:59:07 +0000964 kfree(resp);
965 return ret;
David Howells17926a72007-04-26 15:48:28 -0700966
967protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100968 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howellsef686222017-04-06 10:11:59 +0100969 ret = -EPROTO;
970other_error:
David Howells17926a72007-04-26 15:48:28 -0700971 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +0100972 return ret;
David Howells17926a72007-04-26 15:48:28 -0700973}
974
975/*
976 * decrypt the kerberos IV ticket in the response
977 */
978static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
David Howellsec832bd2020-09-16 08:00:44 +0100979 struct key *server_key,
David Howellsfb46f6e2017-04-06 10:12:00 +0100980 struct sk_buff *skb,
David Howells17926a72007-04-26 15:48:28 -0700981 void *ticket, size_t ticket_len,
982 struct rxrpc_crypt *_session_key,
Baolin Wang10674a02017-08-29 10:15:40 +0100983 time64_t *_expiry,
David Howells17926a72007-04-26 15:48:28 -0700984 u32 *_abort_code)
985{
Herbert Xu1afe5932016-01-24 21:19:01 +0800986 struct skcipher_request *req;
David Howellsfb46f6e2017-04-06 10:12:00 +0100987 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700988 struct rxrpc_crypt iv, key;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700989 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700990 struct in_addr addr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000991 unsigned int life;
David Howellsfb46f6e2017-04-06 10:12:00 +0100992 const char *eproto;
Baolin Wang10674a02017-08-29 10:15:40 +0100993 time64_t issue, now;
David Howells17926a72007-04-26 15:48:28 -0700994 bool little_endian;
995 int ret;
David Howellsfb46f6e2017-04-06 10:12:00 +0100996 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700997 u8 *p, *q, *name, *end;
998
David Howellsec832bd2020-09-16 08:00:44 +0100999 _enter("{%d},{%x}", conn->debug_id, key_serial(server_key));
David Howells17926a72007-04-26 15:48:28 -07001000
1001 *_expiry = 0;
1002
David Howellsec832bd2020-09-16 08:00:44 +01001003 ASSERT(server_key->payload.data[0] != NULL);
David Howells17926a72007-04-26 15:48:28 -07001004 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
1005
David Howellsec832bd2020-09-16 08:00:44 +01001006 memcpy(&iv, &server_key->payload.data[2], sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -07001007
David Howellsef686222017-04-06 10:11:59 +01001008 ret = -ENOMEM;
David Howellsec832bd2020-09-16 08:00:44 +01001009 req = skcipher_request_alloc(server_key->payload.data[0], GFP_NOFS);
David Howellsef686222017-04-06 10:11:59 +01001010 if (!req)
1011 goto temporary_error;
David Howells17926a72007-04-26 15:48:28 -07001012
Herbert Xu68e3f5d2007-10-27 00:52:07 -07001013 sg_init_one(&sg[0], ticket, ticket_len);
Herbert Xu1afe5932016-01-24 21:19:01 +08001014 skcipher_request_set_callback(req, 0, NULL, NULL);
1015 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +08001016 crypto_skcipher_decrypt(req);
1017 skcipher_request_free(req);
David Howells17926a72007-04-26 15:48:28 -07001018
1019 p = ticket;
1020 end = p + ticket_len;
1021
David Howellsfb46f6e2017-04-06 10:12:00 +01001022#define Z(field) \
David Howells17926a72007-04-26 15:48:28 -07001023 ({ \
1024 u8 *__str = p; \
David Howellsfb46f6e2017-04-06 10:12:00 +01001025 eproto = tracepoint_string("rxkad_bad_"#field); \
David Howells17926a72007-04-26 15:48:28 -07001026 q = memchr(p, 0, end - p); \
David Howellsfb46f6e2017-04-06 10:12:00 +01001027 if (!q || q - p > (field##_SZ)) \
David Howells17926a72007-04-26 15:48:28 -07001028 goto bad_ticket; \
1029 for (; p < q; p++) \
1030 if (!isprint(*p)) \
1031 goto bad_ticket; \
1032 p++; \
1033 __str; \
1034 })
1035
1036 /* extract the ticket flags */
1037 _debug("KIV FLAGS: %x", *p);
1038 little_endian = *p & 1;
1039 p++;
1040
1041 /* extract the authentication name */
David Howellsfb46f6e2017-04-06 10:12:00 +01001042 name = Z(ANAME);
David Howells17926a72007-04-26 15:48:28 -07001043 _debug("KIV ANAME: %s", name);
1044
1045 /* extract the principal's instance */
David Howellsfb46f6e2017-04-06 10:12:00 +01001046 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -07001047 _debug("KIV INST : %s", name);
1048
1049 /* extract the principal's authentication domain */
David Howellsfb46f6e2017-04-06 10:12:00 +01001050 name = Z(REALM);
David Howells17926a72007-04-26 15:48:28 -07001051 _debug("KIV REALM: %s", name);
1052
David Howellsfb46f6e2017-04-06 10:12:00 +01001053 eproto = tracepoint_string("rxkad_bad_len");
David Howells17926a72007-04-26 15:48:28 -07001054 if (end - p < 4 + 8 + 4 + 2)
1055 goto bad_ticket;
1056
1057 /* get the IPv4 address of the entity that requested the ticket */
1058 memcpy(&addr, p, sizeof(addr));
1059 p += 4;
Harvey Harrison21454aa2008-10-31 00:54:56 -07001060 _debug("KIV ADDR : %pI4", &addr);
David Howells17926a72007-04-26 15:48:28 -07001061
1062 /* get the session key from the ticket */
1063 memcpy(&key, p, sizeof(key));
1064 p += 8;
1065 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
1066 memcpy(_session_key, &key, sizeof(key));
1067
1068 /* get the ticket's lifetime */
1069 life = *p++ * 5 * 60;
1070 _debug("KIV LIFE : %u", life);
1071
1072 /* get the issue time of the ticket */
1073 if (little_endian) {
1074 __le32 stamp;
1075 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +01001076 issue = rxrpc_u32_to_time64(le32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -07001077 } else {
1078 __be32 stamp;
1079 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +01001080 issue = rxrpc_u32_to_time64(be32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -07001081 }
1082 p += 4;
Baolin Wang10674a02017-08-29 10:15:40 +01001083 now = ktime_get_real_seconds();
1084 _debug("KIV ISSUE: %llx [%llx]", issue, now);
David Howells17926a72007-04-26 15:48:28 -07001085
1086 /* check the ticket is in date */
1087 if (issue > now) {
David Howellsfb46f6e2017-04-06 10:12:00 +01001088 abort_code = RXKADNOAUTH;
David Howells17926a72007-04-26 15:48:28 -07001089 ret = -EKEYREJECTED;
David Howellsef686222017-04-06 10:11:59 +01001090 goto other_error;
David Howells17926a72007-04-26 15:48:28 -07001091 }
1092
1093 if (issue < now - life) {
David Howellsfb46f6e2017-04-06 10:12:00 +01001094 abort_code = RXKADEXPIRED;
David Howells17926a72007-04-26 15:48:28 -07001095 ret = -EKEYEXPIRED;
David Howellsef686222017-04-06 10:11:59 +01001096 goto other_error;
David Howells17926a72007-04-26 15:48:28 -07001097 }
1098
1099 *_expiry = issue + life;
1100
1101 /* get the service name */
David Howellsfb46f6e2017-04-06 10:12:00 +01001102 name = Z(SNAME);
David Howells17926a72007-04-26 15:48:28 -07001103 _debug("KIV SNAME: %s", name);
1104
1105 /* get the service instance name */
David Howellsfb46f6e2017-04-06 10:12:00 +01001106 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -07001107 _debug("KIV SINST: %s", name);
David Howellsef686222017-04-06 10:11:59 +01001108 return 0;
David Howells17926a72007-04-26 15:48:28 -07001109
1110bad_ticket:
David Howellsfb46f6e2017-04-06 10:12:00 +01001111 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
1112 abort_code = RXKADBADTICKET;
David Howellsef686222017-04-06 10:11:59 +01001113 ret = -EPROTO;
1114other_error:
David Howellsfb46f6e2017-04-06 10:12:00 +01001115 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +01001116 return ret;
1117temporary_error:
1118 return ret;
David Howells17926a72007-04-26 15:48:28 -07001119}
1120
1121/*
1122 * decrypt the response packet
1123 */
1124static void rxkad_decrypt_response(struct rxrpc_connection *conn,
1125 struct rxkad_response *resp,
1126 const struct rxrpc_crypt *session_key)
1127{
David Howells1db88c52019-07-30 15:56:57 +01001128 struct skcipher_request *req = rxkad_ci_req;
Herbert Xua2636292016-06-26 14:55:24 -07001129 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -07001130 struct rxrpc_crypt iv;
1131
1132 _enter(",,%08x%08x",
1133 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
1134
David Howells17926a72007-04-26 15:48:28 -07001135 mutex_lock(&rxkad_ci_mutex);
Kees Cook69d826f2018-09-18 19:10:47 -07001136 if (crypto_sync_skcipher_setkey(rxkad_ci, session_key->x,
David Howells1db88c52019-07-30 15:56:57 +01001137 sizeof(*session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001138 BUG();
1139
1140 memcpy(&iv, session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -07001141
Herbert Xua2636292016-06-26 14:55:24 -07001142 sg_init_table(sg, 1);
1143 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Kees Cook69d826f2018-09-18 19:10:47 -07001144 skcipher_request_set_sync_tfm(req, rxkad_ci);
Herbert Xu1afe5932016-01-24 21:19:01 +08001145 skcipher_request_set_callback(req, 0, NULL, NULL);
1146 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +08001147 crypto_skcipher_decrypt(req);
1148 skcipher_request_zero(req);
1149
David Howells17926a72007-04-26 15:48:28 -07001150 mutex_unlock(&rxkad_ci_mutex);
1151
1152 _leave("");
1153}
1154
1155/*
1156 * verify a response
1157 */
1158static int rxkad_verify_response(struct rxrpc_connection *conn,
1159 struct sk_buff *skb,
1160 u32 *_abort_code)
1161{
David Howells8c2f8262018-02-08 15:59:07 +00001162 struct rxkad_response *response;
David Howells248f2192016-09-08 11:10:12 +01001163 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -07001164 struct rxrpc_crypt session_key;
David Howellsec832bd2020-09-16 08:00:44 +01001165 struct key *server_key;
David Howellsfb46f6e2017-04-06 10:12:00 +01001166 const char *eproto;
Baolin Wang10674a02017-08-29 10:15:40 +01001167 time64_t expiry;
David Howells17926a72007-04-26 15:48:28 -07001168 void *ticket;
Al Viro91e916c2008-03-29 03:08:38 +00001169 u32 abort_code, version, kvno, ticket_len, level;
1170 __be32 csum;
David Howellsa1399f82016-06-27 14:39:44 +01001171 int ret, i;
David Howells17926a72007-04-26 15:48:28 -07001172
David Howellsec832bd2020-09-16 08:00:44 +01001173 _enter("{%d}", conn->debug_id);
1174
1175 server_key = rxrpc_look_up_server_security(conn, skb, 0, 0);
1176 if (IS_ERR(server_key)) {
1177 switch (PTR_ERR(server_key)) {
1178 case -ENOKEY:
1179 abort_code = RXKADUNKNOWNKEY;
1180 break;
1181 case -EKEYEXPIRED:
1182 abort_code = RXKADEXPIRED;
1183 break;
1184 default:
1185 abort_code = RXKADNOAUTH;
1186 break;
1187 }
1188 trace_rxrpc_abort(0, "SVK",
1189 sp->hdr.cid, sp->hdr.callNumber, sp->hdr.seq,
1190 abort_code, PTR_ERR(server_key));
1191 *_abort_code = abort_code;
1192 return -EPROTO;
1193 }
David Howells17926a72007-04-26 15:48:28 -07001194
David Howells8c2f8262018-02-08 15:59:07 +00001195 ret = -ENOMEM;
1196 response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
1197 if (!response)
1198 goto temporary_error;
1199
David Howellsfb46f6e2017-04-06 10:12:00 +01001200 eproto = tracepoint_string("rxkad_rsp_short");
David Howells17926a72007-04-26 15:48:28 -07001201 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +01001202 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
David Howells8c2f8262018-02-08 15:59:07 +00001203 response, sizeof(*response)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001204 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -07001205
David Howells8c2f8262018-02-08 15:59:07 +00001206 version = ntohl(response->version);
1207 ticket_len = ntohl(response->ticket_len);
1208 kvno = ntohl(response->kvno);
David Howells17926a72007-04-26 15:48:28 -07001209 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +00001210 sp->hdr.serial, version, kvno, ticket_len);
David Howells17926a72007-04-26 15:48:28 -07001211
David Howellsfb46f6e2017-04-06 10:12:00 +01001212 eproto = tracepoint_string("rxkad_rsp_ver");
David Howells17926a72007-04-26 15:48:28 -07001213 abort_code = RXKADINCONSISTENCY;
1214 if (version != RXKAD_VERSION)
David Howells4aa9cb32007-12-07 04:31:47 -08001215 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -07001216
David Howellsfb46f6e2017-04-06 10:12:00 +01001217 eproto = tracepoint_string("rxkad_rsp_tktlen");
David Howells17926a72007-04-26 15:48:28 -07001218 abort_code = RXKADTICKETLEN;
1219 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
1220 goto protocol_error;
1221
David Howellsfb46f6e2017-04-06 10:12:00 +01001222 eproto = tracepoint_string("rxkad_rsp_unkkey");
David Howells17926a72007-04-26 15:48:28 -07001223 abort_code = RXKADUNKNOWNKEY;
1224 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5)
1225 goto protocol_error;
1226
1227 /* extract the kerberos ticket and decrypt and decode it */
David Howellsef686222017-04-06 10:11:59 +01001228 ret = -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -07001229 ticket = kmalloc(ticket_len, GFP_NOFS);
1230 if (!ticket)
Dinghao Liub43c75a2020-08-27 16:55:46 +01001231 goto temporary_error_free_resp;
David Howells17926a72007-04-26 15:48:28 -07001232
David Howellsfb46f6e2017-04-06 10:12:00 +01001233 eproto = tracepoint_string("rxkad_tkt_short");
David Howells17926a72007-04-26 15:48:28 -07001234 abort_code = RXKADPACKETSHORT;
David Howellsceff5222020-09-29 21:48:50 +01001235 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header) + sizeof(*response),
David Howells775e5b72016-09-30 13:26:03 +01001236 ticket, ticket_len) < 0)
David Howells17926a72007-04-26 15:48:28 -07001237 goto protocol_error_free;
1238
David Howellsec832bd2020-09-16 08:00:44 +01001239 ret = rxkad_decrypt_ticket(conn, server_key, skb, ticket, ticket_len,
1240 &session_key, &expiry, _abort_code);
David Howellsef686222017-04-06 10:11:59 +01001241 if (ret < 0)
Qiushi Wuf45d01f2020-05-22 13:45:18 -05001242 goto temporary_error_free_ticket;
David Howells17926a72007-04-26 15:48:28 -07001243
1244 /* use the session key from inside the ticket to decrypt the
1245 * response */
David Howells8c2f8262018-02-08 15:59:07 +00001246 rxkad_decrypt_response(conn, response, &session_key);
David Howells17926a72007-04-26 15:48:28 -07001247
David Howellsfb46f6e2017-04-06 10:12:00 +01001248 eproto = tracepoint_string("rxkad_rsp_param");
David Howells17926a72007-04-26 15:48:28 -07001249 abort_code = RXKADSEALEDINCON;
David Howells8c2f8262018-02-08 15:59:07 +00001250 if (ntohl(response->encrypted.epoch) != conn->proto.epoch)
David Howells17926a72007-04-26 15:48:28 -07001251 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001252 if (ntohl(response->encrypted.cid) != conn->proto.cid)
David Howells17926a72007-04-26 15:48:28 -07001253 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001254 if (ntohl(response->encrypted.securityIndex) != conn->security_ix)
David Howells17926a72007-04-26 15:48:28 -07001255 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001256 csum = response->encrypted.checksum;
1257 response->encrypted.checksum = 0;
1258 rxkad_calc_response_checksum(response);
David Howellsfb46f6e2017-04-06 10:12:00 +01001259 eproto = tracepoint_string("rxkad_rsp_csum");
David Howells8c2f8262018-02-08 15:59:07 +00001260 if (response->encrypted.checksum != csum)
David Howells17926a72007-04-26 15:48:28 -07001261 goto protocol_error_free;
1262
David Howells245500d2020-07-01 11:15:32 +01001263 spin_lock(&conn->bundle->channel_lock);
David Howellsa1399f82016-06-27 14:39:44 +01001264 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1265 struct rxrpc_call *call;
David Howells8c2f8262018-02-08 15:59:07 +00001266 u32 call_id = ntohl(response->encrypted.call_id[i]);
David Howellsa1399f82016-06-27 14:39:44 +01001267
David Howellsfb46f6e2017-04-06 10:12:00 +01001268 eproto = tracepoint_string("rxkad_rsp_callid");
David Howellsa1399f82016-06-27 14:39:44 +01001269 if (call_id > INT_MAX)
1270 goto protocol_error_unlock;
1271
David Howellsfb46f6e2017-04-06 10:12:00 +01001272 eproto = tracepoint_string("rxkad_rsp_callctr");
David Howellsa1399f82016-06-27 14:39:44 +01001273 if (call_id < conn->channels[i].call_counter)
1274 goto protocol_error_unlock;
David Howellsfb46f6e2017-04-06 10:12:00 +01001275
1276 eproto = tracepoint_string("rxkad_rsp_callst");
David Howellsa1399f82016-06-27 14:39:44 +01001277 if (call_id > conn->channels[i].call_counter) {
1278 call = rcu_dereference_protected(
1279 conn->channels[i].call,
David Howells245500d2020-07-01 11:15:32 +01001280 lockdep_is_held(&conn->bundle->channel_lock));
David Howellsa1399f82016-06-27 14:39:44 +01001281 if (call && call->state < RXRPC_CALL_COMPLETE)
1282 goto protocol_error_unlock;
1283 conn->channels[i].call_counter = call_id;
1284 }
1285 }
David Howells245500d2020-07-01 11:15:32 +01001286 spin_unlock(&conn->bundle->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001287
David Howellsfb46f6e2017-04-06 10:12:00 +01001288 eproto = tracepoint_string("rxkad_rsp_seq");
David Howells17926a72007-04-26 15:48:28 -07001289 abort_code = RXKADOUTOFSEQUENCE;
David Howells521bb302020-09-22 13:36:17 +01001290 if (ntohl(response->encrypted.inc_nonce) != conn->rxkad.nonce + 1)
David Howells17926a72007-04-26 15:48:28 -07001291 goto protocol_error_free;
1292
David Howellsfb46f6e2017-04-06 10:12:00 +01001293 eproto = tracepoint_string("rxkad_rsp_level");
David Howells17926a72007-04-26 15:48:28 -07001294 abort_code = RXKADLEVELFAIL;
David Howells8c2f8262018-02-08 15:59:07 +00001295 level = ntohl(response->encrypted.level);
David Howells17926a72007-04-26 15:48:28 -07001296 if (level > RXRPC_SECURITY_ENCRYPT)
1297 goto protocol_error_free;
David Howells19ffa012016-04-04 14:00:36 +01001298 conn->params.security_level = level;
David Howells17926a72007-04-26 15:48:28 -07001299
1300 /* create a key to hold the security data and expiration time - after
1301 * this the connection security can be handled in exactly the same way
1302 * as for a client connection */
1303 ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
David Howellsef686222017-04-06 10:11:59 +01001304 if (ret < 0)
David Howells8c2f8262018-02-08 15:59:07 +00001305 goto temporary_error_free_ticket;
David Howells17926a72007-04-26 15:48:28 -07001306
1307 kfree(ticket);
David Howells8c2f8262018-02-08 15:59:07 +00001308 kfree(response);
David Howells17926a72007-04-26 15:48:28 -07001309 _leave(" = 0");
1310 return 0;
1311
David Howellsa1399f82016-06-27 14:39:44 +01001312protocol_error_unlock:
David Howells245500d2020-07-01 11:15:32 +01001313 spin_unlock(&conn->bundle->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001314protocol_error_free:
1315 kfree(ticket);
1316protocol_error:
David Howells8c2f8262018-02-08 15:59:07 +00001317 kfree(response);
David Howellsfb46f6e2017-04-06 10:12:00 +01001318 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howellsec832bd2020-09-16 08:00:44 +01001319 key_put(server_key);
David Howells17926a72007-04-26 15:48:28 -07001320 *_abort_code = abort_code;
David Howells17926a72007-04-26 15:48:28 -07001321 return -EPROTO;
David Howellsef686222017-04-06 10:11:59 +01001322
David Howells8c2f8262018-02-08 15:59:07 +00001323temporary_error_free_ticket:
David Howellsef686222017-04-06 10:11:59 +01001324 kfree(ticket);
Dinghao Liub43c75a2020-08-27 16:55:46 +01001325temporary_error_free_resp:
David Howells8c2f8262018-02-08 15:59:07 +00001326 kfree(response);
David Howellsef686222017-04-06 10:11:59 +01001327temporary_error:
1328 /* Ignore the response packet if we got a temporary error such as
1329 * ENOMEM. We just want to send the challenge again. Note that we
1330 * also come out this way if the ticket decryption fails.
1331 */
David Howellsec832bd2020-09-16 08:00:44 +01001332 key_put(server_key);
David Howellsef686222017-04-06 10:11:59 +01001333 return ret;
David Howells17926a72007-04-26 15:48:28 -07001334}
1335
1336/*
1337 * clear the connection security
1338 */
1339static void rxkad_clear(struct rxrpc_connection *conn)
1340{
1341 _enter("");
1342
David Howells521bb302020-09-22 13:36:17 +01001343 if (conn->rxkad.cipher)
1344 crypto_free_sync_skcipher(conn->rxkad.cipher);
David Howells17926a72007-04-26 15:48:28 -07001345}
1346
1347/*
David Howells648af7f2016-04-07 17:23:51 +01001348 * Initialise the rxkad security service.
1349 */
1350static int rxkad_init(void)
1351{
David Howells1db88c52019-07-30 15:56:57 +01001352 struct crypto_sync_skcipher *tfm;
1353 struct skcipher_request *req;
1354
David Howells648af7f2016-04-07 17:23:51 +01001355 /* pin the cipher we need so that the crypto layer doesn't invoke
1356 * keventd to go get it */
David Howells1db88c52019-07-30 15:56:57 +01001357 tfm = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0);
1358 if (IS_ERR(tfm))
1359 return PTR_ERR(tfm);
1360
1361 req = skcipher_request_alloc(&tfm->base, GFP_KERNEL);
1362 if (!req)
1363 goto nomem_tfm;
1364
1365 rxkad_ci_req = req;
1366 rxkad_ci = tfm;
1367 return 0;
1368
1369nomem_tfm:
1370 crypto_free_sync_skcipher(tfm);
1371 return -ENOMEM;
David Howells648af7f2016-04-07 17:23:51 +01001372}
1373
1374/*
1375 * Clean up the rxkad security service.
1376 */
1377static void rxkad_exit(void)
1378{
David Howells1db88c52019-07-30 15:56:57 +01001379 crypto_free_sync_skcipher(rxkad_ci);
1380 skcipher_request_free(rxkad_ci_req);
David Howells648af7f2016-04-07 17:23:51 +01001381}
1382
1383/*
David Howells17926a72007-04-26 15:48:28 -07001384 * RxRPC Kerberos-based security
1385 */
David Howells648af7f2016-04-07 17:23:51 +01001386const struct rxrpc_security rxkad = {
David Howells17926a72007-04-26 15:48:28 -07001387 .name = "rxkad",
David Howells8b815472009-09-14 01:17:30 +00001388 .security_index = RXRPC_SECURITY_RXKAD,
David Howells063c60d2019-12-20 16:17:16 +00001389 .no_key_abort = RXKADUNKNOWNKEY,
David Howells648af7f2016-04-07 17:23:51 +01001390 .init = rxkad_init,
1391 .exit = rxkad_exit,
David Howells12da59f2020-09-16 08:37:29 +01001392 .preparse_server_key = rxkad_preparse_server_key,
1393 .free_preparse_server_key = rxkad_free_preparse_server_key,
1394 .destroy_server_key = rxkad_destroy_server_key,
David Howells17926a72007-04-26 15:48:28 -07001395 .init_connection_security = rxkad_init_connection_security,
David Howellsd7d775b2020-09-16 01:34:39 +01001396 .how_much_data = rxkad_how_much_data,
David Howells17926a72007-04-26 15:48:28 -07001397 .secure_packet = rxkad_secure_packet,
1398 .verify_packet = rxkad_verify_packet,
David Howells1db88c52019-07-30 15:56:57 +01001399 .free_call_crypto = rxkad_free_call_crypto,
David Howells248f2192016-09-08 11:10:12 +01001400 .locate_data = rxkad_locate_data,
David Howells17926a72007-04-26 15:48:28 -07001401 .issue_challenge = rxkad_issue_challenge,
1402 .respond_to_challenge = rxkad_respond_to_challenge,
1403 .verify_response = rxkad_verify_response,
1404 .clear = rxkad_clear,
1405};