blob: 588fea0dd3627e5ea6515963d9eabebca603831e [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* Kerberos-based RxRPC security
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Herbert Xu1afe5932016-01-24 21:19:01 +080014#include <crypto/skcipher.h>
David Howells17926a72007-04-26 15:48:28 -070015#include <linux/module.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
18#include <linux/udp.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <linux/scatterlist.h>
20#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070022#include <net/sock.h>
23#include <net/af_rxrpc.h>
David Howells33941282009-09-14 01:17:35 +000024#include <keys/rxrpc-type.h>
David Howells17926a72007-04-26 15:48:28 -070025#include "ar-internal.h"
26
27#define RXKAD_VERSION 2
28#define MAXKRB5TICKETLEN 1024
29#define RXKAD_TKT_TYPE_KERBEROS_V5 256
30#define ANAME_SZ 40 /* size of authentication name */
31#define INST_SZ 40 /* size of principal's instance */
32#define REALM_SZ 40 /* size of principal's auth domain */
33#define SNAME_SZ 40 /* size of service name */
34
David Howells17926a72007-04-26 15:48:28 -070035struct rxkad_level1_hdr {
36 __be32 data_size; /* true data size (excluding padding) */
37};
38
39struct rxkad_level2_hdr {
40 __be32 data_size; /* true data size (excluding padding) */
41 __be32 checksum; /* decrypted data checksum */
42};
43
David Howells17926a72007-04-26 15:48:28 -070044/*
45 * this holds a pinned cipher so that keventd doesn't get called by the cipher
46 * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE
47 * packets
48 */
Herbert Xu1afe5932016-01-24 21:19:01 +080049static struct crypto_skcipher *rxkad_ci;
David Howells17926a72007-04-26 15:48:28 -070050static DEFINE_MUTEX(rxkad_ci_mutex);
51
52/*
53 * initialise connection security
54 */
55static int rxkad_init_connection_security(struct rxrpc_connection *conn)
56{
Herbert Xu1afe5932016-01-24 21:19:01 +080057 struct crypto_skcipher *ci;
David Howells33941282009-09-14 01:17:35 +000058 struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -070059 int ret;
60
David Howells19ffa012016-04-04 14:00:36 +010061 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -070062
David Howells19ffa012016-04-04 14:00:36 +010063 token = conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +000064 conn->security_ix = token->security_index;
David Howells17926a72007-04-26 15:48:28 -070065
Herbert Xu1afe5932016-01-24 21:19:01 +080066 ci = crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC);
David Howells17926a72007-04-26 15:48:28 -070067 if (IS_ERR(ci)) {
68 _debug("no cipher");
69 ret = PTR_ERR(ci);
70 goto error;
71 }
72
Herbert Xu1afe5932016-01-24 21:19:01 +080073 if (crypto_skcipher_setkey(ci, token->kad->session_key,
74 sizeof(token->kad->session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -070075 BUG();
76
David Howells19ffa012016-04-04 14:00:36 +010077 switch (conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -070078 case RXRPC_SECURITY_PLAIN:
79 break;
80 case RXRPC_SECURITY_AUTH:
81 conn->size_align = 8;
82 conn->security_size = sizeof(struct rxkad_level1_hdr);
David Howells17926a72007-04-26 15:48:28 -070083 break;
84 case RXRPC_SECURITY_ENCRYPT:
85 conn->size_align = 8;
86 conn->security_size = sizeof(struct rxkad_level2_hdr);
David Howells17926a72007-04-26 15:48:28 -070087 break;
88 default:
89 ret = -EKEYREJECTED;
90 goto error;
91 }
92
93 conn->cipher = ci;
94 ret = 0;
95error:
96 _leave(" = %d", ret);
97 return ret;
98}
99
100/*
101 * prime the encryption state with the invariant parts of a connection's
102 * description
103 */
Herbert Xua2636292016-06-26 14:55:24 -0700104static int rxkad_prime_packet_security(struct rxrpc_connection *conn)
David Howells17926a72007-04-26 15:48:28 -0700105{
David Howells33941282009-09-14 01:17:35 +0000106 struct rxrpc_key_token *token;
Herbert Xu1afe5932016-01-24 21:19:01 +0800107 SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
Herbert Xua2636292016-06-26 14:55:24 -0700108 struct scatterlist sg;
David Howells17926a72007-04-26 15:48:28 -0700109 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700110 __be32 *tmpbuf;
111 size_t tmpsize = 4 * sizeof(__be32);
David Howells17926a72007-04-26 15:48:28 -0700112
113 _enter("");
114
David Howells19ffa012016-04-04 14:00:36 +0100115 if (!conn->params.key)
Herbert Xua2636292016-06-26 14:55:24 -0700116 return 0;
117
118 tmpbuf = kmalloc(tmpsize, GFP_KERNEL);
119 if (!tmpbuf)
120 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700121
David Howells19ffa012016-04-04 14:00:36 +0100122 token = conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000123 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700124
Herbert Xua2636292016-06-26 14:55:24 -0700125 tmpbuf[0] = htonl(conn->proto.epoch);
126 tmpbuf[1] = htonl(conn->proto.cid);
127 tmpbuf[2] = 0;
128 tmpbuf[3] = htonl(conn->security_ix);
David Howells17926a72007-04-26 15:48:28 -0700129
Herbert Xua2636292016-06-26 14:55:24 -0700130 sg_init_one(&sg, tmpbuf, tmpsize);
Herbert Xu1afe5932016-01-24 21:19:01 +0800131 skcipher_request_set_tfm(req, conn->cipher);
132 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700133 skcipher_request_set_crypt(req, &sg, &sg, tmpsize, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800134 crypto_skcipher_encrypt(req);
135 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700136
Herbert Xua2636292016-06-26 14:55:24 -0700137 memcpy(&conn->csum_iv, tmpbuf + 2, sizeof(conn->csum_iv));
138 kfree(tmpbuf);
139 _leave(" = 0");
140 return 0;
David Howells17926a72007-04-26 15:48:28 -0700141}
142
143/*
144 * partially encrypt a packet (level 1 security)
145 */
146static int rxkad_secure_packet_auth(const struct rxrpc_call *call,
147 struct sk_buff *skb,
148 u32 data_size,
149 void *sechdr)
150{
David Howellsfb46f6e2017-04-06 10:12:00 +0100151 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
Herbert Xu1afe5932016-01-24 21:19:01 +0800152 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
Herbert Xua2636292016-06-26 14:55:24 -0700153 struct rxkad_level1_hdr hdr;
David Howells17926a72007-04-26 15:48:28 -0700154 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700155 struct scatterlist sg;
David Howells17926a72007-04-26 15:48:28 -0700156 u16 check;
157
David Howells17926a72007-04-26 15:48:28 -0700158 _enter("");
159
David Howells5a924b82016-09-22 00:29:31 +0100160 check = sp->hdr.seq ^ call->call_id;
David Howells0d12f8a2016-03-04 15:53:46 +0000161 data_size |= (u32)check << 16;
David Howells17926a72007-04-26 15:48:28 -0700162
Herbert Xua2636292016-06-26 14:55:24 -0700163 hdr.data_size = htonl(data_size);
164 memcpy(sechdr, &hdr, sizeof(hdr));
David Howells17926a72007-04-26 15:48:28 -0700165
166 /* start the encryption afresh */
167 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700168
Herbert Xua2636292016-06-26 14:55:24 -0700169 sg_init_one(&sg, sechdr, 8);
Herbert Xu1afe5932016-01-24 21:19:01 +0800170 skcipher_request_set_tfm(req, call->conn->cipher);
171 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700172 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800173 crypto_skcipher_encrypt(req);
174 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700175
David Howells17926a72007-04-26 15:48:28 -0700176 _leave(" = 0");
177 return 0;
178}
179
180/*
181 * wholly encrypt a packet (level 2 security)
182 */
183static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
David Howellsb4f13422016-03-04 15:56:19 +0000184 struct sk_buff *skb,
185 u32 data_size,
186 void *sechdr)
David Howells17926a72007-04-26 15:48:28 -0700187{
David Howells33941282009-09-14 01:17:35 +0000188 const struct rxrpc_key_token *token;
Herbert Xua2636292016-06-26 14:55:24 -0700189 struct rxkad_level2_hdr rxkhdr;
David Howells17926a72007-04-26 15:48:28 -0700190 struct rxrpc_skb_priv *sp;
Herbert Xu1afe5932016-01-24 21:19:01 +0800191 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700192 struct rxrpc_crypt iv;
193 struct scatterlist sg[16];
194 struct sk_buff *trailer;
Eric Dumazet95c96172012-04-15 05:58:06 +0000195 unsigned int len;
David Howells17926a72007-04-26 15:48:28 -0700196 u16 check;
197 int nsg;
Herbert Xu1afe5932016-01-24 21:19:01 +0800198 int err;
David Howells17926a72007-04-26 15:48:28 -0700199
200 sp = rxrpc_skb(skb);
201
202 _enter("");
203
David Howells5a924b82016-09-22 00:29:31 +0100204 check = sp->hdr.seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700205
David Howells0d12f8a2016-03-04 15:53:46 +0000206 rxkhdr.data_size = htonl(data_size | (u32)check << 16);
David Howells17926a72007-04-26 15:48:28 -0700207 rxkhdr.checksum = 0;
Herbert Xua2636292016-06-26 14:55:24 -0700208 memcpy(sechdr, &rxkhdr, sizeof(rxkhdr));
David Howells17926a72007-04-26 15:48:28 -0700209
210 /* encrypt from the session key */
David Howells19ffa012016-04-04 14:00:36 +0100211 token = call->conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000212 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700213
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700214 sg_init_one(&sg[0], sechdr, sizeof(rxkhdr));
Herbert Xu1afe5932016-01-24 21:19:01 +0800215 skcipher_request_set_tfm(req, call->conn->cipher);
216 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700217 skcipher_request_set_crypt(req, &sg[0], &sg[0], sizeof(rxkhdr), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800218 crypto_skcipher_encrypt(req);
David Howells17926a72007-04-26 15:48:28 -0700219
220 /* we want to encrypt the skbuff in-place */
221 nsg = skb_cow_data(skb, 0, &trailer);
Herbert Xu1afe5932016-01-24 21:19:01 +0800222 err = -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700223 if (nsg < 0 || nsg > 16)
Herbert Xu1afe5932016-01-24 21:19:01 +0800224 goto out;
David Howells17926a72007-04-26 15:48:28 -0700225
226 len = data_size + call->conn->size_align - 1;
227 len &= ~(call->conn->size_align - 1);
228
David S. Miller51c739d2007-10-30 21:29:29 -0700229 sg_init_table(sg, nsg);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200230 err = skb_to_sgvec(skb, sg, 0, len);
231 if (unlikely(err < 0))
232 goto out;
Herbert Xu1afe5932016-01-24 21:19:01 +0800233 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800234 crypto_skcipher_encrypt(req);
David Howells17926a72007-04-26 15:48:28 -0700235
236 _leave(" = 0");
Herbert Xu1afe5932016-01-24 21:19:01 +0800237 err = 0;
238
239out:
240 skcipher_request_zero(req);
241 return err;
David Howells17926a72007-04-26 15:48:28 -0700242}
243
244/*
245 * checksum an RxRPC packet header
246 */
Herbert Xua2636292016-06-26 14:55:24 -0700247static int rxkad_secure_packet(struct rxrpc_call *call,
David Howellsb4f13422016-03-04 15:56:19 +0000248 struct sk_buff *skb,
249 size_t data_size,
250 void *sechdr)
David Howells17926a72007-04-26 15:48:28 -0700251{
252 struct rxrpc_skb_priv *sp;
Herbert Xu1afe5932016-01-24 21:19:01 +0800253 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700254 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700255 struct scatterlist sg;
David Howells0d12f8a2016-03-04 15:53:46 +0000256 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700257 int ret;
258
259 sp = rxrpc_skb(skb);
260
261 _enter("{%d{%x}},{#%u},%zu,",
David Howells19ffa012016-04-04 14:00:36 +0100262 call->debug_id, key_serial(call->conn->params.key),
263 sp->hdr.seq, data_size);
David Howells17926a72007-04-26 15:48:28 -0700264
265 if (!call->conn->cipher)
266 return 0;
267
David Howells19ffa012016-04-04 14:00:36 +0100268 ret = key_validate(call->conn->params.key);
David Howells17926a72007-04-26 15:48:28 -0700269 if (ret < 0)
270 return ret;
271
272 /* continue encrypting from where we left off */
273 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700274
275 /* calculate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100276 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells0d12f8a2016-03-04 15:53:46 +0000277 x |= sp->hdr.seq & 0x3fffffff;
David Howells5a924b82016-09-22 00:29:31 +0100278 call->crypto_buf[0] = htonl(call->call_id);
Herbert Xua2636292016-06-26 14:55:24 -0700279 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700280
Herbert Xua2636292016-06-26 14:55:24 -0700281 sg_init_one(&sg, call->crypto_buf, 8);
Herbert Xu1afe5932016-01-24 21:19:01 +0800282 skcipher_request_set_tfm(req, call->conn->cipher);
283 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700284 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800285 crypto_skcipher_encrypt(req);
286 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700287
Herbert Xua2636292016-06-26 14:55:24 -0700288 y = ntohl(call->crypto_buf[1]);
Al Viro91e916c2008-03-29 03:08:38 +0000289 y = (y >> 16) & 0xffff;
290 if (y == 0)
291 y = 1; /* zero checksums are not permitted */
David Howells0d12f8a2016-03-04 15:53:46 +0000292 sp->hdr.cksum = y;
David Howells17926a72007-04-26 15:48:28 -0700293
David Howells19ffa012016-04-04 14:00:36 +0100294 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700295 case RXRPC_SECURITY_PLAIN:
296 ret = 0;
297 break;
298 case RXRPC_SECURITY_AUTH:
299 ret = rxkad_secure_packet_auth(call, skb, data_size, sechdr);
300 break;
301 case RXRPC_SECURITY_ENCRYPT:
302 ret = rxkad_secure_packet_encrypt(call, skb, data_size,
303 sechdr);
304 break;
305 default:
306 ret = -EPERM;
307 break;
308 }
309
Al Viro91e916c2008-03-29 03:08:38 +0000310 _leave(" = %d [set %hx]", ret, y);
David Howells17926a72007-04-26 15:48:28 -0700311 return ret;
312}
313
314/*
315 * decrypt partial encryption on a packet (level 1 security)
316 */
David Howells5a429762016-09-06 22:19:51 +0100317static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100318 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100319 rxrpc_seq_t seq)
David Howells17926a72007-04-26 15:48:28 -0700320{
321 struct rxkad_level1_hdr sechdr;
Herbert Xu1afe5932016-01-24 21:19:01 +0800322 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700323 struct rxrpc_crypt iv;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700324 struct scatterlist sg[16];
David Howells17926a72007-04-26 15:48:28 -0700325 struct sk_buff *trailer;
David Howellsfb46f6e2017-04-06 10:12:00 +0100326 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700327 u32 data_size, buf;
328 u16 check;
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200329 int nsg, ret;
David Howells17926a72007-04-26 15:48:28 -0700330
331 _enter("");
332
David Howells248f2192016-09-08 11:10:12 +0100333 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100334 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_hdr", "V1H",
335 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100336 goto protocol_error;
337 }
David Howells17926a72007-04-26 15:48:28 -0700338
David Howells248f2192016-09-08 11:10:12 +0100339 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
340 * directly into the target buffer.
341 */
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700342 nsg = skb_cow_data(skb, 0, &trailer);
343 if (nsg < 0 || nsg > 16)
David Howells17926a72007-04-26 15:48:28 -0700344 goto nomem;
345
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700346 sg_init_table(sg, nsg);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200347 ret = skb_to_sgvec(skb, sg, offset, 8);
348 if (unlikely(ret < 0))
349 return ret;
David Howells17926a72007-04-26 15:48:28 -0700350
351 /* start the decryption afresh */
352 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700353
Herbert Xu1afe5932016-01-24 21:19:01 +0800354 skcipher_request_set_tfm(req, call->conn->cipher);
355 skcipher_request_set_callback(req, 0, NULL, NULL);
356 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800357 crypto_skcipher_decrypt(req);
358 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700359
David Howells5a429762016-09-06 22:19:51 +0100360 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100361 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100362 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_len", "XV1",
363 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100364 goto protocol_error;
365 }
David Howells248f2192016-09-08 11:10:12 +0100366 offset += sizeof(sechdr);
367 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700368
369 buf = ntohl(sechdr.data_size);
370 data_size = buf & 0xffff;
371
372 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100373 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700374 check &= 0xffff;
375 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100376 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_check", "V1C",
377 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700378 goto protocol_error;
379 }
380
David Howells248f2192016-09-08 11:10:12 +0100381 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100382 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_datalen", "V1L",
383 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100384 goto protocol_error;
385 }
David Howells17926a72007-04-26 15:48:28 -0700386
387 _leave(" = 0 [dlen=%x]", data_size);
388 return 0;
389
David Howells17926a72007-04-26 15:48:28 -0700390protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100391 if (aborted)
392 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700393 return -EPROTO;
394
395nomem:
396 _leave(" = -ENOMEM");
397 return -ENOMEM;
398}
399
400/*
401 * wholly decrypt a packet (level 2 security)
402 */
David Howells5a429762016-09-06 22:19:51 +0100403static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100404 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100405 rxrpc_seq_t seq)
David Howells17926a72007-04-26 15:48:28 -0700406{
David Howells33941282009-09-14 01:17:35 +0000407 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700408 struct rxkad_level2_hdr sechdr;
Herbert Xu1afe5932016-01-24 21:19:01 +0800409 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700410 struct rxrpc_crypt iv;
411 struct scatterlist _sg[4], *sg;
412 struct sk_buff *trailer;
David Howellsfb46f6e2017-04-06 10:12:00 +0100413 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700414 u32 data_size, buf;
415 u16 check;
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200416 int nsg, ret;
David Howells17926a72007-04-26 15:48:28 -0700417
418 _enter(",{%d}", skb->len);
419
David Howells248f2192016-09-08 11:10:12 +0100420 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100421 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_hdr", "V2H",
422 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100423 goto protocol_error;
424 }
David Howells17926a72007-04-26 15:48:28 -0700425
David Howells248f2192016-09-08 11:10:12 +0100426 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
427 * directly into the target buffer.
428 */
David Howells17926a72007-04-26 15:48:28 -0700429 nsg = skb_cow_data(skb, 0, &trailer);
430 if (nsg < 0)
431 goto nomem;
432
433 sg = _sg;
434 if (unlikely(nsg > 4)) {
435 sg = kmalloc(sizeof(*sg) * nsg, GFP_NOIO);
436 if (!sg)
437 goto nomem;
438 }
439
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700440 sg_init_table(sg, nsg);
Jason A. Donenfeld89a5ea92017-06-04 04:16:24 +0200441 ret = skb_to_sgvec(skb, sg, offset, len);
442 if (unlikely(ret < 0)) {
443 if (sg != _sg)
444 kfree(sg);
445 return ret;
446 }
David Howells17926a72007-04-26 15:48:28 -0700447
448 /* decrypt from the session key */
David Howells19ffa012016-04-04 14:00:36 +0100449 token = call->conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000450 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700451
Herbert Xu1afe5932016-01-24 21:19:01 +0800452 skcipher_request_set_tfm(req, call->conn->cipher);
453 skcipher_request_set_callback(req, 0, NULL, NULL);
David Howells248f2192016-09-08 11:10:12 +0100454 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800455 crypto_skcipher_decrypt(req);
456 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700457 if (sg != _sg)
458 kfree(sg);
459
David Howells5a429762016-09-06 22:19:51 +0100460 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100461 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100462 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_len", "XV2",
463 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100464 goto protocol_error;
465 }
David Howells248f2192016-09-08 11:10:12 +0100466 offset += sizeof(sechdr);
467 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700468
469 buf = ntohl(sechdr.data_size);
470 data_size = buf & 0xffff;
471
472 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100473 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700474 check &= 0xffff;
475 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100476 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_check", "V2C",
477 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700478 goto protocol_error;
479 }
480
David Howells248f2192016-09-08 11:10:12 +0100481 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100482 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_datalen", "V2L",
483 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100484 goto protocol_error;
485 }
David Howells17926a72007-04-26 15:48:28 -0700486
487 _leave(" = 0 [dlen=%x]", data_size);
488 return 0;
489
David Howells17926a72007-04-26 15:48:28 -0700490protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100491 if (aborted)
492 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700493 return -EPROTO;
494
495nomem:
496 _leave(" = -ENOMEM");
497 return -ENOMEM;
498}
499
500/*
David Howells5a429762016-09-06 22:19:51 +0100501 * Verify the security on a received packet or subpacket (if part of a
502 * jumbo packet).
David Howells17926a72007-04-26 15:48:28 -0700503 */
David Howells5a429762016-09-06 22:19:51 +0100504static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100505 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100506 rxrpc_seq_t seq, u16 expected_cksum)
David Howells17926a72007-04-26 15:48:28 -0700507{
Herbert Xu1afe5932016-01-24 21:19:01 +0800508 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700509 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700510 struct scatterlist sg;
David Howellsfb46f6e2017-04-06 10:12:00 +0100511 bool aborted;
David Howells0d12f8a2016-03-04 15:53:46 +0000512 u16 cksum;
513 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700514
515 _enter("{%d{%x}},{#%u}",
David Howells5a429762016-09-06 22:19:51 +0100516 call->debug_id, key_serial(call->conn->params.key), seq);
David Howells17926a72007-04-26 15:48:28 -0700517
518 if (!call->conn->cipher)
519 return 0;
520
David Howells17926a72007-04-26 15:48:28 -0700521 /* continue encrypting from where we left off */
522 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700523
524 /* validate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100525 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells5a429762016-09-06 22:19:51 +0100526 x |= seq & 0x3fffffff;
Herbert Xua2636292016-06-26 14:55:24 -0700527 call->crypto_buf[0] = htonl(call->call_id);
528 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700529
Herbert Xua2636292016-06-26 14:55:24 -0700530 sg_init_one(&sg, call->crypto_buf, 8);
Herbert Xu1afe5932016-01-24 21:19:01 +0800531 skcipher_request_set_tfm(req, call->conn->cipher);
532 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700533 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800534 crypto_skcipher_encrypt(req);
535 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700536
Herbert Xua2636292016-06-26 14:55:24 -0700537 y = ntohl(call->crypto_buf[1]);
David Howells0d12f8a2016-03-04 15:53:46 +0000538 cksum = (y >> 16) & 0xffff;
539 if (cksum == 0)
540 cksum = 1; /* zero checksums are not permitted */
David Howells17926a72007-04-26 15:48:28 -0700541
David Howells5a429762016-09-06 22:19:51 +0100542 if (cksum != expected_cksum) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100543 aborted = rxrpc_abort_eproto(call, skb, "rxkad_csum", "VCK",
544 RXKADSEALEDINCON);
545 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700546 }
547
David Howells19ffa012016-04-04 14:00:36 +0100548 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700549 case RXRPC_SECURITY_PLAIN:
David Howells5a429762016-09-06 22:19:51 +0100550 return 0;
David Howells17926a72007-04-26 15:48:28 -0700551 case RXRPC_SECURITY_AUTH:
David Howells248f2192016-09-08 11:10:12 +0100552 return rxkad_verify_packet_1(call, skb, offset, len, seq);
David Howells17926a72007-04-26 15:48:28 -0700553 case RXRPC_SECURITY_ENCRYPT:
David Howells248f2192016-09-08 11:10:12 +0100554 return rxkad_verify_packet_2(call, skb, offset, len, seq);
David Howells17926a72007-04-26 15:48:28 -0700555 default:
David Howells5a429762016-09-06 22:19:51 +0100556 return -ENOANO;
David Howells17926a72007-04-26 15:48:28 -0700557 }
David Howellsfb46f6e2017-04-06 10:12:00 +0100558
559protocol_error:
560 if (aborted)
561 rxrpc_send_abort_packet(call);
562 return -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700563}
564
565/*
David Howells248f2192016-09-08 11:10:12 +0100566 * Locate the data contained in a packet that was partially encrypted.
567 */
568static void rxkad_locate_data_1(struct rxrpc_call *call, struct sk_buff *skb,
569 unsigned int *_offset, unsigned int *_len)
570{
571 struct rxkad_level1_hdr sechdr;
572
573 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
574 BUG();
575 *_offset += sizeof(sechdr);
576 *_len = ntohl(sechdr.data_size) & 0xffff;
577}
578
579/*
580 * Locate the data contained in a packet that was completely encrypted.
581 */
582static void rxkad_locate_data_2(struct rxrpc_call *call, struct sk_buff *skb,
583 unsigned int *_offset, unsigned int *_len)
584{
585 struct rxkad_level2_hdr sechdr;
586
587 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
588 BUG();
589 *_offset += sizeof(sechdr);
590 *_len = ntohl(sechdr.data_size) & 0xffff;
591}
592
593/*
594 * Locate the data contained in an already decrypted packet.
595 */
596static void rxkad_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
597 unsigned int *_offset, unsigned int *_len)
598{
599 switch (call->conn->params.security_level) {
600 case RXRPC_SECURITY_AUTH:
601 rxkad_locate_data_1(call, skb, _offset, _len);
602 return;
603 case RXRPC_SECURITY_ENCRYPT:
604 rxkad_locate_data_2(call, skb, _offset, _len);
605 return;
606 default:
607 return;
608 }
609}
610
611/*
David Howells17926a72007-04-26 15:48:28 -0700612 * issue a challenge
613 */
614static int rxkad_issue_challenge(struct rxrpc_connection *conn)
615{
616 struct rxkad_challenge challenge;
David Howells0d12f8a2016-03-04 15:53:46 +0000617 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700618 struct msghdr msg;
619 struct kvec iov[2];
620 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000621 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700622 int ret;
623
David Howells19ffa012016-04-04 14:00:36 +0100624 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -0700625
David Howells19ffa012016-04-04 14:00:36 +0100626 ret = key_validate(conn->params.key);
David Howells17926a72007-04-26 15:48:28 -0700627 if (ret < 0)
628 return ret;
629
630 get_random_bytes(&conn->security_nonce, sizeof(conn->security_nonce));
631
632 challenge.version = htonl(2);
633 challenge.nonce = htonl(conn->security_nonce);
634 challenge.min_level = htonl(0);
635 challenge.__padding = 0;
636
David Howells7b674e32017-08-29 10:18:37 +0100637 msg.msg_name = &conn->params.peer->srx.transport;
638 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700639 msg.msg_control = NULL;
640 msg.msg_controllen = 0;
641 msg.msg_flags = 0;
642
David Howells19ffa012016-04-04 14:00:36 +0100643 whdr.epoch = htonl(conn->proto.epoch);
644 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000645 whdr.callNumber = 0;
646 whdr.seq = 0;
647 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
648 whdr.flags = conn->out_clientflag;
649 whdr.userStatus = 0;
650 whdr.securityIndex = conn->security_ix;
651 whdr._rsvd = 0;
David Howells68d6d1a2017-06-05 14:30:49 +0100652 whdr.serviceId = htons(conn->service_id);
David Howells17926a72007-04-26 15:48:28 -0700653
David Howells0d12f8a2016-03-04 15:53:46 +0000654 iov[0].iov_base = &whdr;
655 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700656 iov[1].iov_base = &challenge;
657 iov[1].iov_len = sizeof(challenge);
658
659 len = iov[0].iov_len + iov[1].iov_len;
660
David Howells0d12f8a2016-03-04 15:53:46 +0000661 serial = atomic_inc_return(&conn->serial);
662 whdr.serial = htonl(serial);
663 _proto("Tx CHALLENGE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700664
David Howells85f32272016-04-04 14:00:36 +0100665 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700666 if (ret < 0) {
667 _debug("sendmsg failed: %d", ret);
668 return -EAGAIN;
669 }
670
David Howellsace45be2018-03-30 21:04:43 +0100671 conn->params.peer->last_tx_at = ktime_get_real();
David Howells17926a72007-04-26 15:48:28 -0700672 _leave(" = 0");
673 return 0;
674}
675
676/*
677 * send a Kerberos security response
678 */
679static int rxkad_send_response(struct rxrpc_connection *conn,
David Howells0d12f8a2016-03-04 15:53:46 +0000680 struct rxrpc_host_header *hdr,
David Howells17926a72007-04-26 15:48:28 -0700681 struct rxkad_response *resp,
682 const struct rxkad_key *s2)
683{
David Howells0d12f8a2016-03-04 15:53:46 +0000684 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700685 struct msghdr msg;
686 struct kvec iov[3];
687 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000688 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700689 int ret;
690
691 _enter("");
692
David Howells7b674e32017-08-29 10:18:37 +0100693 msg.msg_name = &conn->params.peer->srx.transport;
694 msg.msg_namelen = conn->params.peer->srx.transport_len;
David Howells17926a72007-04-26 15:48:28 -0700695 msg.msg_control = NULL;
696 msg.msg_controllen = 0;
697 msg.msg_flags = 0;
698
David Howells0d12f8a2016-03-04 15:53:46 +0000699 memset(&whdr, 0, sizeof(whdr));
700 whdr.epoch = htonl(hdr->epoch);
701 whdr.cid = htonl(hdr->cid);
702 whdr.type = RXRPC_PACKET_TYPE_RESPONSE;
703 whdr.flags = conn->out_clientflag;
704 whdr.securityIndex = hdr->securityIndex;
705 whdr.serviceId = htons(hdr->serviceId);
David Howells17926a72007-04-26 15:48:28 -0700706
David Howells0d12f8a2016-03-04 15:53:46 +0000707 iov[0].iov_base = &whdr;
708 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700709 iov[1].iov_base = resp;
710 iov[1].iov_len = sizeof(*resp);
David Howells0d12f8a2016-03-04 15:53:46 +0000711 iov[2].iov_base = (void *)s2->ticket;
David Howells17926a72007-04-26 15:48:28 -0700712 iov[2].iov_len = s2->ticket_len;
713
714 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
715
David Howells0d12f8a2016-03-04 15:53:46 +0000716 serial = atomic_inc_return(&conn->serial);
717 whdr.serial = htonl(serial);
718 _proto("Tx RESPONSE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700719
David Howells85f32272016-04-04 14:00:36 +0100720 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len);
David Howells17926a72007-04-26 15:48:28 -0700721 if (ret < 0) {
722 _debug("sendmsg failed: %d", ret);
723 return -EAGAIN;
724 }
725
David Howellsace45be2018-03-30 21:04:43 +0100726 conn->params.peer->last_tx_at = ktime_get_real();
David Howells17926a72007-04-26 15:48:28 -0700727 _leave(" = 0");
728 return 0;
729}
730
731/*
732 * calculate the response checksum
733 */
734static void rxkad_calc_response_checksum(struct rxkad_response *response)
735{
736 u32 csum = 1000003;
737 int loop;
738 u8 *p = (u8 *) response;
739
740 for (loop = sizeof(*response); loop > 0; loop--)
741 csum = csum * 0x10204081 + *p++;
742
743 response->encrypted.checksum = htonl(csum);
744}
745
746/*
David Howells17926a72007-04-26 15:48:28 -0700747 * encrypt the response packet
748 */
749static void rxkad_encrypt_response(struct rxrpc_connection *conn,
750 struct rxkad_response *resp,
751 const struct rxkad_key *s2)
752{
Herbert Xu1afe5932016-01-24 21:19:01 +0800753 SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700754 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700755 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700756
757 /* continue encrypting from where we left off */
758 memcpy(&iv, s2->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700759
Herbert Xua2636292016-06-26 14:55:24 -0700760 sg_init_table(sg, 1);
761 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Herbert Xu1afe5932016-01-24 21:19:01 +0800762 skcipher_request_set_tfm(req, conn->cipher);
763 skcipher_request_set_callback(req, 0, NULL, NULL);
764 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800765 crypto_skcipher_encrypt(req);
766 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700767}
768
769/*
770 * respond to a challenge packet
771 */
772static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
773 struct sk_buff *skb,
774 u32 *_abort_code)
775{
David Howells33941282009-09-14 01:17:35 +0000776 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700777 struct rxkad_challenge challenge;
David Howells8c2f8262018-02-08 15:59:07 +0000778 struct rxkad_response *resp;
David Howells248f2192016-09-08 11:10:12 +0100779 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howellsfb46f6e2017-04-06 10:12:00 +0100780 const char *eproto;
David Howells17926a72007-04-26 15:48:28 -0700781 u32 version, nonce, min_level, abort_code;
782 int ret;
783
David Howells19ffa012016-04-04 14:00:36 +0100784 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -0700785
David Howellsfb46f6e2017-04-06 10:12:00 +0100786 eproto = tracepoint_string("chall_no_key");
David Howellsef686222017-04-06 10:11:59 +0100787 abort_code = RX_PROTOCOL_ERROR;
788 if (!conn->params.key)
789 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700790
David Howellsef686222017-04-06 10:11:59 +0100791 abort_code = RXKADEXPIRED;
David Howells19ffa012016-04-04 14:00:36 +0100792 ret = key_validate(conn->params.key);
David Howellsef686222017-04-06 10:11:59 +0100793 if (ret < 0)
794 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700795
David Howellsfb46f6e2017-04-06 10:12:00 +0100796 eproto = tracepoint_string("chall_short");
David Howells17926a72007-04-26 15:48:28 -0700797 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +0100798 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
799 &challenge, sizeof(challenge)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700800 goto protocol_error;
801
802 version = ntohl(challenge.version);
803 nonce = ntohl(challenge.nonce);
804 min_level = ntohl(challenge.min_level);
805
806 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +0000807 sp->hdr.serial, version, nonce, min_level);
David Howells17926a72007-04-26 15:48:28 -0700808
David Howellsfb46f6e2017-04-06 10:12:00 +0100809 eproto = tracepoint_string("chall_ver");
David Howells17926a72007-04-26 15:48:28 -0700810 abort_code = RXKADINCONSISTENCY;
811 if (version != RXKAD_VERSION)
812 goto protocol_error;
813
814 abort_code = RXKADLEVELFAIL;
David Howellsef686222017-04-06 10:11:59 +0100815 ret = -EACCES;
David Howells19ffa012016-04-04 14:00:36 +0100816 if (conn->params.security_level < min_level)
David Howellsef686222017-04-06 10:11:59 +0100817 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700818
David Howells19ffa012016-04-04 14:00:36 +0100819 token = conn->params.key->payload.data[0];
David Howells17926a72007-04-26 15:48:28 -0700820
821 /* build the response packet */
David Howells8c2f8262018-02-08 15:59:07 +0000822 resp = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
823 if (!resp)
824 return -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -0700825
David Howells8c2f8262018-02-08 15:59:07 +0000826 resp->version = htonl(RXKAD_VERSION);
827 resp->encrypted.epoch = htonl(conn->proto.epoch);
828 resp->encrypted.cid = htonl(conn->proto.cid);
829 resp->encrypted.securityIndex = htonl(conn->security_ix);
830 resp->encrypted.inc_nonce = htonl(nonce + 1);
831 resp->encrypted.level = htonl(conn->params.security_level);
832 resp->kvno = htonl(token->kad->kvno);
833 resp->ticket_len = htonl(token->kad->ticket_len);
834 resp->encrypted.call_id[0] = htonl(conn->channels[0].call_counter);
835 resp->encrypted.call_id[1] = htonl(conn->channels[1].call_counter);
836 resp->encrypted.call_id[2] = htonl(conn->channels[2].call_counter);
837 resp->encrypted.call_id[3] = htonl(conn->channels[3].call_counter);
David Howells17926a72007-04-26 15:48:28 -0700838
839 /* calculate the response checksum and then do the encryption */
David Howells8c2f8262018-02-08 15:59:07 +0000840 rxkad_calc_response_checksum(resp);
841 rxkad_encrypt_response(conn, resp, token->kad);
842 ret = rxkad_send_response(conn, &sp->hdr, resp, token->kad);
843 kfree(resp);
844 return ret;
David Howells17926a72007-04-26 15:48:28 -0700845
846protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100847 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howellsef686222017-04-06 10:11:59 +0100848 ret = -EPROTO;
849other_error:
David Howells17926a72007-04-26 15:48:28 -0700850 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +0100851 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 Howellsfb46f6e2017-04-06 10:12:00 +0100858 struct sk_buff *skb,
David Howells17926a72007-04-26 15:48:28 -0700859 void *ticket, size_t ticket_len,
860 struct rxrpc_crypt *_session_key,
Baolin Wang10674a02017-08-29 10:15:40 +0100861 time64_t *_expiry,
David Howells17926a72007-04-26 15:48:28 -0700862 u32 *_abort_code)
863{
Herbert Xu1afe5932016-01-24 21:19:01 +0800864 struct skcipher_request *req;
David Howellsfb46f6e2017-04-06 10:12:00 +0100865 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700866 struct rxrpc_crypt iv, key;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700867 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700868 struct in_addr addr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000869 unsigned int life;
David Howellsfb46f6e2017-04-06 10:12:00 +0100870 const char *eproto;
Baolin Wang10674a02017-08-29 10:15:40 +0100871 time64_t issue, now;
David Howells17926a72007-04-26 15:48:28 -0700872 bool little_endian;
873 int ret;
David Howellsfb46f6e2017-04-06 10:12:00 +0100874 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700875 u8 *p, *q, *name, *end;
876
877 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->server_key));
878
879 *_expiry = 0;
880
881 ret = key_validate(conn->server_key);
882 if (ret < 0) {
883 switch (ret) {
884 case -EKEYEXPIRED:
David Howellsfb46f6e2017-04-06 10:12:00 +0100885 abort_code = RXKADEXPIRED;
David Howellsef686222017-04-06 10:11:59 +0100886 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700887 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100888 abort_code = RXKADNOAUTH;
David Howellsef686222017-04-06 10:11:59 +0100889 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700890 }
891 }
892
David Howells146aa8b2015-10-21 14:04:48 +0100893 ASSERT(conn->server_key->payload.data[0] != NULL);
David Howells17926a72007-04-26 15:48:28 -0700894 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
895
David Howells146aa8b2015-10-21 14:04:48 +0100896 memcpy(&iv, &conn->server_key->payload.data[2], sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700897
David Howellsef686222017-04-06 10:11:59 +0100898 ret = -ENOMEM;
Herbert Xu1afe5932016-01-24 21:19:01 +0800899 req = skcipher_request_alloc(conn->server_key->payload.data[0],
900 GFP_NOFS);
David Howellsef686222017-04-06 10:11:59 +0100901 if (!req)
902 goto temporary_error;
David Howells17926a72007-04-26 15:48:28 -0700903
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700904 sg_init_one(&sg[0], ticket, ticket_len);
Herbert Xu1afe5932016-01-24 21:19:01 +0800905 skcipher_request_set_callback(req, 0, NULL, NULL);
906 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800907 crypto_skcipher_decrypt(req);
908 skcipher_request_free(req);
David Howells17926a72007-04-26 15:48:28 -0700909
910 p = ticket;
911 end = p + ticket_len;
912
David Howellsfb46f6e2017-04-06 10:12:00 +0100913#define Z(field) \
David Howells17926a72007-04-26 15:48:28 -0700914 ({ \
915 u8 *__str = p; \
David Howellsfb46f6e2017-04-06 10:12:00 +0100916 eproto = tracepoint_string("rxkad_bad_"#field); \
David Howells17926a72007-04-26 15:48:28 -0700917 q = memchr(p, 0, end - p); \
David Howellsfb46f6e2017-04-06 10:12:00 +0100918 if (!q || q - p > (field##_SZ)) \
David Howells17926a72007-04-26 15:48:28 -0700919 goto bad_ticket; \
920 for (; p < q; p++) \
921 if (!isprint(*p)) \
922 goto bad_ticket; \
923 p++; \
924 __str; \
925 })
926
927 /* extract the ticket flags */
928 _debug("KIV FLAGS: %x", *p);
929 little_endian = *p & 1;
930 p++;
931
932 /* extract the authentication name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100933 name = Z(ANAME);
David Howells17926a72007-04-26 15:48:28 -0700934 _debug("KIV ANAME: %s", name);
935
936 /* extract the principal's instance */
David Howellsfb46f6e2017-04-06 10:12:00 +0100937 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -0700938 _debug("KIV INST : %s", name);
939
940 /* extract the principal's authentication domain */
David Howellsfb46f6e2017-04-06 10:12:00 +0100941 name = Z(REALM);
David Howells17926a72007-04-26 15:48:28 -0700942 _debug("KIV REALM: %s", name);
943
David Howellsfb46f6e2017-04-06 10:12:00 +0100944 eproto = tracepoint_string("rxkad_bad_len");
David Howells17926a72007-04-26 15:48:28 -0700945 if (end - p < 4 + 8 + 4 + 2)
946 goto bad_ticket;
947
948 /* get the IPv4 address of the entity that requested the ticket */
949 memcpy(&addr, p, sizeof(addr));
950 p += 4;
Harvey Harrison21454aa2008-10-31 00:54:56 -0700951 _debug("KIV ADDR : %pI4", &addr);
David Howells17926a72007-04-26 15:48:28 -0700952
953 /* get the session key from the ticket */
954 memcpy(&key, p, sizeof(key));
955 p += 8;
956 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
957 memcpy(_session_key, &key, sizeof(key));
958
959 /* get the ticket's lifetime */
960 life = *p++ * 5 * 60;
961 _debug("KIV LIFE : %u", life);
962
963 /* get the issue time of the ticket */
964 if (little_endian) {
965 __le32 stamp;
966 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +0100967 issue = rxrpc_u32_to_time64(le32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -0700968 } else {
969 __be32 stamp;
970 memcpy(&stamp, p, 4);
Baolin Wang10674a02017-08-29 10:15:40 +0100971 issue = rxrpc_u32_to_time64(be32_to_cpu(stamp));
David Howells17926a72007-04-26 15:48:28 -0700972 }
973 p += 4;
Baolin Wang10674a02017-08-29 10:15:40 +0100974 now = ktime_get_real_seconds();
975 _debug("KIV ISSUE: %llx [%llx]", issue, now);
David Howells17926a72007-04-26 15:48:28 -0700976
977 /* check the ticket is in date */
978 if (issue > now) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100979 abort_code = RXKADNOAUTH;
David Howells17926a72007-04-26 15:48:28 -0700980 ret = -EKEYREJECTED;
David Howellsef686222017-04-06 10:11:59 +0100981 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700982 }
983
984 if (issue < now - life) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100985 abort_code = RXKADEXPIRED;
David Howells17926a72007-04-26 15:48:28 -0700986 ret = -EKEYEXPIRED;
David Howellsef686222017-04-06 10:11:59 +0100987 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700988 }
989
990 *_expiry = issue + life;
991
992 /* get the service name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100993 name = Z(SNAME);
David Howells17926a72007-04-26 15:48:28 -0700994 _debug("KIV SNAME: %s", name);
995
996 /* get the service instance name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100997 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -0700998 _debug("KIV SINST: %s", name);
David Howellsef686222017-04-06 10:11:59 +0100999 return 0;
David Howells17926a72007-04-26 15:48:28 -07001000
1001bad_ticket:
David Howellsfb46f6e2017-04-06 10:12:00 +01001002 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
1003 abort_code = RXKADBADTICKET;
David Howellsef686222017-04-06 10:11:59 +01001004 ret = -EPROTO;
1005other_error:
David Howellsfb46f6e2017-04-06 10:12:00 +01001006 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +01001007 return ret;
1008temporary_error:
1009 return ret;
David Howells17926a72007-04-26 15:48:28 -07001010}
1011
1012/*
1013 * decrypt the response packet
1014 */
1015static void rxkad_decrypt_response(struct rxrpc_connection *conn,
1016 struct rxkad_response *resp,
1017 const struct rxrpc_crypt *session_key)
1018{
Herbert Xu1afe5932016-01-24 21:19:01 +08001019 SKCIPHER_REQUEST_ON_STACK(req, rxkad_ci);
Herbert Xua2636292016-06-26 14:55:24 -07001020 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -07001021 struct rxrpc_crypt iv;
1022
1023 _enter(",,%08x%08x",
1024 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
1025
1026 ASSERT(rxkad_ci != NULL);
1027
1028 mutex_lock(&rxkad_ci_mutex);
Herbert Xu1afe5932016-01-24 21:19:01 +08001029 if (crypto_skcipher_setkey(rxkad_ci, session_key->x,
1030 sizeof(*session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001031 BUG();
1032
1033 memcpy(&iv, session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -07001034
Herbert Xua2636292016-06-26 14:55:24 -07001035 sg_init_table(sg, 1);
1036 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Herbert Xu1afe5932016-01-24 21:19:01 +08001037 skcipher_request_set_tfm(req, rxkad_ci);
1038 skcipher_request_set_callback(req, 0, NULL, NULL);
1039 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +08001040 crypto_skcipher_decrypt(req);
1041 skcipher_request_zero(req);
1042
David Howells17926a72007-04-26 15:48:28 -07001043 mutex_unlock(&rxkad_ci_mutex);
1044
1045 _leave("");
1046}
1047
1048/*
1049 * verify a response
1050 */
1051static int rxkad_verify_response(struct rxrpc_connection *conn,
1052 struct sk_buff *skb,
1053 u32 *_abort_code)
1054{
David Howells8c2f8262018-02-08 15:59:07 +00001055 struct rxkad_response *response;
David Howells248f2192016-09-08 11:10:12 +01001056 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -07001057 struct rxrpc_crypt session_key;
David Howellsfb46f6e2017-04-06 10:12:00 +01001058 const char *eproto;
Baolin Wang10674a02017-08-29 10:15:40 +01001059 time64_t expiry;
David Howells17926a72007-04-26 15:48:28 -07001060 void *ticket;
Al Viro91e916c2008-03-29 03:08:38 +00001061 u32 abort_code, version, kvno, ticket_len, level;
1062 __be32 csum;
David Howellsa1399f82016-06-27 14:39:44 +01001063 int ret, i;
David Howells17926a72007-04-26 15:48:28 -07001064
1065 _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key));
1066
David Howells8c2f8262018-02-08 15:59:07 +00001067 ret = -ENOMEM;
1068 response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
1069 if (!response)
1070 goto temporary_error;
1071
David Howellsfb46f6e2017-04-06 10:12:00 +01001072 eproto = tracepoint_string("rxkad_rsp_short");
David Howells17926a72007-04-26 15:48:28 -07001073 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +01001074 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
David Howells8c2f8262018-02-08 15:59:07 +00001075 response, sizeof(*response)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001076 goto protocol_error;
David Howells8c2f8262018-02-08 15:59:07 +00001077 if (!pskb_pull(skb, sizeof(*response)))
David Howells17926a72007-04-26 15:48:28 -07001078 BUG();
1079
David Howells8c2f8262018-02-08 15:59:07 +00001080 version = ntohl(response->version);
1081 ticket_len = ntohl(response->ticket_len);
1082 kvno = ntohl(response->kvno);
David Howells17926a72007-04-26 15:48:28 -07001083 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +00001084 sp->hdr.serial, version, kvno, ticket_len);
David Howells17926a72007-04-26 15:48:28 -07001085
David Howellsfb46f6e2017-04-06 10:12:00 +01001086 eproto = tracepoint_string("rxkad_rsp_ver");
David Howells17926a72007-04-26 15:48:28 -07001087 abort_code = RXKADINCONSISTENCY;
1088 if (version != RXKAD_VERSION)
David Howells4aa9cb32007-12-07 04:31:47 -08001089 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -07001090
David Howellsfb46f6e2017-04-06 10:12:00 +01001091 eproto = tracepoint_string("rxkad_rsp_tktlen");
David Howells17926a72007-04-26 15:48:28 -07001092 abort_code = RXKADTICKETLEN;
1093 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
1094 goto protocol_error;
1095
David Howellsfb46f6e2017-04-06 10:12:00 +01001096 eproto = tracepoint_string("rxkad_rsp_unkkey");
David Howells17926a72007-04-26 15:48:28 -07001097 abort_code = RXKADUNKNOWNKEY;
1098 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5)
1099 goto protocol_error;
1100
1101 /* extract the kerberos ticket and decrypt and decode it */
David Howellsef686222017-04-06 10:11:59 +01001102 ret = -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -07001103 ticket = kmalloc(ticket_len, GFP_NOFS);
1104 if (!ticket)
David Howellsef686222017-04-06 10:11:59 +01001105 goto temporary_error;
David Howells17926a72007-04-26 15:48:28 -07001106
David Howellsfb46f6e2017-04-06 10:12:00 +01001107 eproto = tracepoint_string("rxkad_tkt_short");
David Howells17926a72007-04-26 15:48:28 -07001108 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +01001109 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
1110 ticket, ticket_len) < 0)
David Howells17926a72007-04-26 15:48:28 -07001111 goto protocol_error_free;
1112
David Howellsfb46f6e2017-04-06 10:12:00 +01001113 ret = rxkad_decrypt_ticket(conn, skb, ticket, ticket_len, &session_key,
David Howellsef686222017-04-06 10:11:59 +01001114 &expiry, _abort_code);
1115 if (ret < 0)
David Howells8c2f8262018-02-08 15:59:07 +00001116 goto temporary_error_free_resp;
David Howells17926a72007-04-26 15:48:28 -07001117
1118 /* use the session key from inside the ticket to decrypt the
1119 * response */
David Howells8c2f8262018-02-08 15:59:07 +00001120 rxkad_decrypt_response(conn, response, &session_key);
David Howells17926a72007-04-26 15:48:28 -07001121
David Howellsfb46f6e2017-04-06 10:12:00 +01001122 eproto = tracepoint_string("rxkad_rsp_param");
David Howells17926a72007-04-26 15:48:28 -07001123 abort_code = RXKADSEALEDINCON;
David Howells8c2f8262018-02-08 15:59:07 +00001124 if (ntohl(response->encrypted.epoch) != conn->proto.epoch)
David Howells17926a72007-04-26 15:48:28 -07001125 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001126 if (ntohl(response->encrypted.cid) != conn->proto.cid)
David Howells17926a72007-04-26 15:48:28 -07001127 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001128 if (ntohl(response->encrypted.securityIndex) != conn->security_ix)
David Howells17926a72007-04-26 15:48:28 -07001129 goto protocol_error_free;
David Howells8c2f8262018-02-08 15:59:07 +00001130 csum = response->encrypted.checksum;
1131 response->encrypted.checksum = 0;
1132 rxkad_calc_response_checksum(response);
David Howellsfb46f6e2017-04-06 10:12:00 +01001133 eproto = tracepoint_string("rxkad_rsp_csum");
David Howells8c2f8262018-02-08 15:59:07 +00001134 if (response->encrypted.checksum != csum)
David Howells17926a72007-04-26 15:48:28 -07001135 goto protocol_error_free;
1136
David Howellsa1399f82016-06-27 14:39:44 +01001137 spin_lock(&conn->channel_lock);
1138 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1139 struct rxrpc_call *call;
David Howells8c2f8262018-02-08 15:59:07 +00001140 u32 call_id = ntohl(response->encrypted.call_id[i]);
David Howellsa1399f82016-06-27 14:39:44 +01001141
David Howellsfb46f6e2017-04-06 10:12:00 +01001142 eproto = tracepoint_string("rxkad_rsp_callid");
David Howellsa1399f82016-06-27 14:39:44 +01001143 if (call_id > INT_MAX)
1144 goto protocol_error_unlock;
1145
David Howellsfb46f6e2017-04-06 10:12:00 +01001146 eproto = tracepoint_string("rxkad_rsp_callctr");
David Howellsa1399f82016-06-27 14:39:44 +01001147 if (call_id < conn->channels[i].call_counter)
1148 goto protocol_error_unlock;
David Howellsfb46f6e2017-04-06 10:12:00 +01001149
1150 eproto = tracepoint_string("rxkad_rsp_callst");
David Howellsa1399f82016-06-27 14:39:44 +01001151 if (call_id > conn->channels[i].call_counter) {
1152 call = rcu_dereference_protected(
1153 conn->channels[i].call,
1154 lockdep_is_held(&conn->channel_lock));
1155 if (call && call->state < RXRPC_CALL_COMPLETE)
1156 goto protocol_error_unlock;
1157 conn->channels[i].call_counter = call_id;
1158 }
1159 }
1160 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001161
David Howellsfb46f6e2017-04-06 10:12:00 +01001162 eproto = tracepoint_string("rxkad_rsp_seq");
David Howells17926a72007-04-26 15:48:28 -07001163 abort_code = RXKADOUTOFSEQUENCE;
David Howells8c2f8262018-02-08 15:59:07 +00001164 if (ntohl(response->encrypted.inc_nonce) != conn->security_nonce + 1)
David Howells17926a72007-04-26 15:48:28 -07001165 goto protocol_error_free;
1166
David Howellsfb46f6e2017-04-06 10:12:00 +01001167 eproto = tracepoint_string("rxkad_rsp_level");
David Howells17926a72007-04-26 15:48:28 -07001168 abort_code = RXKADLEVELFAIL;
David Howells8c2f8262018-02-08 15:59:07 +00001169 level = ntohl(response->encrypted.level);
David Howells17926a72007-04-26 15:48:28 -07001170 if (level > RXRPC_SECURITY_ENCRYPT)
1171 goto protocol_error_free;
David Howells19ffa012016-04-04 14:00:36 +01001172 conn->params.security_level = level;
David Howells17926a72007-04-26 15:48:28 -07001173
1174 /* create a key to hold the security data and expiration time - after
1175 * this the connection security can be handled in exactly the same way
1176 * as for a client connection */
1177 ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
David Howellsef686222017-04-06 10:11:59 +01001178 if (ret < 0)
David Howells8c2f8262018-02-08 15:59:07 +00001179 goto temporary_error_free_ticket;
David Howells17926a72007-04-26 15:48:28 -07001180
1181 kfree(ticket);
David Howells8c2f8262018-02-08 15:59:07 +00001182 kfree(response);
David Howells17926a72007-04-26 15:48:28 -07001183 _leave(" = 0");
1184 return 0;
1185
David Howellsa1399f82016-06-27 14:39:44 +01001186protocol_error_unlock:
1187 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001188protocol_error_free:
1189 kfree(ticket);
1190protocol_error:
David Howells8c2f8262018-02-08 15:59:07 +00001191 kfree(response);
David Howellsfb46f6e2017-04-06 10:12:00 +01001192 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howells17926a72007-04-26 15:48:28 -07001193 *_abort_code = abort_code;
David Howells17926a72007-04-26 15:48:28 -07001194 return -EPROTO;
David Howellsef686222017-04-06 10:11:59 +01001195
David Howells8c2f8262018-02-08 15:59:07 +00001196temporary_error_free_ticket:
David Howellsef686222017-04-06 10:11:59 +01001197 kfree(ticket);
David Howells8c2f8262018-02-08 15:59:07 +00001198temporary_error_free_resp:
1199 kfree(response);
David Howellsef686222017-04-06 10:11:59 +01001200temporary_error:
1201 /* Ignore the response packet if we got a temporary error such as
1202 * ENOMEM. We just want to send the challenge again. Note that we
1203 * also come out this way if the ticket decryption fails.
1204 */
1205 return ret;
David Howells17926a72007-04-26 15:48:28 -07001206}
1207
1208/*
1209 * clear the connection security
1210 */
1211static void rxkad_clear(struct rxrpc_connection *conn)
1212{
1213 _enter("");
1214
1215 if (conn->cipher)
Herbert Xu1afe5932016-01-24 21:19:01 +08001216 crypto_free_skcipher(conn->cipher);
David Howells17926a72007-04-26 15:48:28 -07001217}
1218
1219/*
David Howells648af7f2016-04-07 17:23:51 +01001220 * Initialise the rxkad security service.
1221 */
1222static int rxkad_init(void)
1223{
1224 /* pin the cipher we need so that the crypto layer doesn't invoke
1225 * keventd to go get it */
1226 rxkad_ci = crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC);
Wu Fengguangfa54cc72016-06-05 07:17:19 +08001227 return PTR_ERR_OR_ZERO(rxkad_ci);
David Howells648af7f2016-04-07 17:23:51 +01001228}
1229
1230/*
1231 * Clean up the rxkad security service.
1232 */
1233static void rxkad_exit(void)
1234{
1235 if (rxkad_ci)
1236 crypto_free_skcipher(rxkad_ci);
1237}
1238
1239/*
David Howells17926a72007-04-26 15:48:28 -07001240 * RxRPC Kerberos-based security
1241 */
David Howells648af7f2016-04-07 17:23:51 +01001242const struct rxrpc_security rxkad = {
David Howells17926a72007-04-26 15:48:28 -07001243 .name = "rxkad",
David Howells8b815472009-09-14 01:17:30 +00001244 .security_index = RXRPC_SECURITY_RXKAD,
David Howells648af7f2016-04-07 17:23:51 +01001245 .init = rxkad_init,
1246 .exit = rxkad_exit,
David Howells17926a72007-04-26 15:48:28 -07001247 .init_connection_security = rxkad_init_connection_security,
1248 .prime_packet_security = rxkad_prime_packet_security,
1249 .secure_packet = rxkad_secure_packet,
1250 .verify_packet = rxkad_verify_packet,
David Howells248f2192016-09-08 11:10:12 +01001251 .locate_data = rxkad_locate_data,
David Howells17926a72007-04-26 15:48:28 -07001252 .issue_challenge = rxkad_issue_challenge,
1253 .respond_to_challenge = rxkad_respond_to_challenge,
1254 .verify_response = rxkad_verify_response,
1255 .clear = rxkad_clear,
1256};