blob: 1bb9b2ccc2673714367d2ec4356d39b5a3839895 [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);
230 skb_to_sgvec(skb, sg, 0, len);
Herbert Xu1afe5932016-01-24 21:19:01 +0800231 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800232 crypto_skcipher_encrypt(req);
David Howells17926a72007-04-26 15:48:28 -0700233
234 _leave(" = 0");
Herbert Xu1afe5932016-01-24 21:19:01 +0800235 err = 0;
236
237out:
238 skcipher_request_zero(req);
239 return err;
David Howells17926a72007-04-26 15:48:28 -0700240}
241
242/*
243 * checksum an RxRPC packet header
244 */
Herbert Xua2636292016-06-26 14:55:24 -0700245static int rxkad_secure_packet(struct rxrpc_call *call,
David Howellsb4f13422016-03-04 15:56:19 +0000246 struct sk_buff *skb,
247 size_t data_size,
248 void *sechdr)
David Howells17926a72007-04-26 15:48:28 -0700249{
250 struct rxrpc_skb_priv *sp;
Herbert Xu1afe5932016-01-24 21:19:01 +0800251 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700252 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700253 struct scatterlist sg;
David Howells0d12f8a2016-03-04 15:53:46 +0000254 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700255 int ret;
256
257 sp = rxrpc_skb(skb);
258
259 _enter("{%d{%x}},{#%u},%zu,",
David Howells19ffa012016-04-04 14:00:36 +0100260 call->debug_id, key_serial(call->conn->params.key),
261 sp->hdr.seq, data_size);
David Howells17926a72007-04-26 15:48:28 -0700262
263 if (!call->conn->cipher)
264 return 0;
265
David Howells19ffa012016-04-04 14:00:36 +0100266 ret = key_validate(call->conn->params.key);
David Howells17926a72007-04-26 15:48:28 -0700267 if (ret < 0)
268 return ret;
269
270 /* continue encrypting from where we left off */
271 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700272
273 /* calculate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100274 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells0d12f8a2016-03-04 15:53:46 +0000275 x |= sp->hdr.seq & 0x3fffffff;
David Howells5a924b82016-09-22 00:29:31 +0100276 call->crypto_buf[0] = htonl(call->call_id);
Herbert Xua2636292016-06-26 14:55:24 -0700277 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700278
Herbert Xua2636292016-06-26 14:55:24 -0700279 sg_init_one(&sg, call->crypto_buf, 8);
Herbert Xu1afe5932016-01-24 21:19:01 +0800280 skcipher_request_set_tfm(req, call->conn->cipher);
281 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700282 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800283 crypto_skcipher_encrypt(req);
284 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700285
Herbert Xua2636292016-06-26 14:55:24 -0700286 y = ntohl(call->crypto_buf[1]);
Al Viro91e916c2008-03-29 03:08:38 +0000287 y = (y >> 16) & 0xffff;
288 if (y == 0)
289 y = 1; /* zero checksums are not permitted */
David Howells0d12f8a2016-03-04 15:53:46 +0000290 sp->hdr.cksum = y;
David Howells17926a72007-04-26 15:48:28 -0700291
David Howells19ffa012016-04-04 14:00:36 +0100292 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700293 case RXRPC_SECURITY_PLAIN:
294 ret = 0;
295 break;
296 case RXRPC_SECURITY_AUTH:
297 ret = rxkad_secure_packet_auth(call, skb, data_size, sechdr);
298 break;
299 case RXRPC_SECURITY_ENCRYPT:
300 ret = rxkad_secure_packet_encrypt(call, skb, data_size,
301 sechdr);
302 break;
303 default:
304 ret = -EPERM;
305 break;
306 }
307
Al Viro91e916c2008-03-29 03:08:38 +0000308 _leave(" = %d [set %hx]", ret, y);
David Howells17926a72007-04-26 15:48:28 -0700309 return ret;
310}
311
312/*
313 * decrypt partial encryption on a packet (level 1 security)
314 */
David Howells5a429762016-09-06 22:19:51 +0100315static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100316 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100317 rxrpc_seq_t seq)
David Howells17926a72007-04-26 15:48:28 -0700318{
319 struct rxkad_level1_hdr sechdr;
Herbert Xu1afe5932016-01-24 21:19:01 +0800320 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700321 struct rxrpc_crypt iv;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700322 struct scatterlist sg[16];
David Howells17926a72007-04-26 15:48:28 -0700323 struct sk_buff *trailer;
David Howellsfb46f6e2017-04-06 10:12:00 +0100324 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700325 u32 data_size, buf;
326 u16 check;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700327 int nsg;
David Howells17926a72007-04-26 15:48:28 -0700328
329 _enter("");
330
David Howells248f2192016-09-08 11:10:12 +0100331 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100332 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_hdr", "V1H",
333 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100334 goto protocol_error;
335 }
David Howells17926a72007-04-26 15:48:28 -0700336
David Howells248f2192016-09-08 11:10:12 +0100337 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
338 * directly into the target buffer.
339 */
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700340 nsg = skb_cow_data(skb, 0, &trailer);
341 if (nsg < 0 || nsg > 16)
David Howells17926a72007-04-26 15:48:28 -0700342 goto nomem;
343
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700344 sg_init_table(sg, nsg);
David Howells248f2192016-09-08 11:10:12 +0100345 skb_to_sgvec(skb, sg, offset, 8);
David Howells17926a72007-04-26 15:48:28 -0700346
347 /* start the decryption afresh */
348 memset(&iv, 0, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700349
Herbert Xu1afe5932016-01-24 21:19:01 +0800350 skcipher_request_set_tfm(req, call->conn->cipher);
351 skcipher_request_set_callback(req, 0, NULL, NULL);
352 skcipher_request_set_crypt(req, sg, sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800353 crypto_skcipher_decrypt(req);
354 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700355
David Howells5a429762016-09-06 22:19:51 +0100356 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100357 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100358 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_len", "XV1",
359 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100360 goto protocol_error;
361 }
David Howells248f2192016-09-08 11:10:12 +0100362 offset += sizeof(sechdr);
363 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700364
365 buf = ntohl(sechdr.data_size);
366 data_size = buf & 0xffff;
367
368 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100369 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700370 check &= 0xffff;
371 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100372 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_check", "V1C",
373 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700374 goto protocol_error;
375 }
376
David Howells248f2192016-09-08 11:10:12 +0100377 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100378 aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_datalen", "V1L",
379 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100380 goto protocol_error;
381 }
David Howells17926a72007-04-26 15:48:28 -0700382
383 _leave(" = 0 [dlen=%x]", data_size);
384 return 0;
385
David Howells17926a72007-04-26 15:48:28 -0700386protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100387 if (aborted)
388 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700389 return -EPROTO;
390
391nomem:
392 _leave(" = -ENOMEM");
393 return -ENOMEM;
394}
395
396/*
397 * wholly decrypt a packet (level 2 security)
398 */
David Howells5a429762016-09-06 22:19:51 +0100399static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100400 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100401 rxrpc_seq_t seq)
David Howells17926a72007-04-26 15:48:28 -0700402{
David Howells33941282009-09-14 01:17:35 +0000403 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700404 struct rxkad_level2_hdr sechdr;
Herbert Xu1afe5932016-01-24 21:19:01 +0800405 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700406 struct rxrpc_crypt iv;
407 struct scatterlist _sg[4], *sg;
408 struct sk_buff *trailer;
David Howellsfb46f6e2017-04-06 10:12:00 +0100409 bool aborted;
David Howells17926a72007-04-26 15:48:28 -0700410 u32 data_size, buf;
411 u16 check;
412 int nsg;
413
414 _enter(",{%d}", skb->len);
415
David Howells248f2192016-09-08 11:10:12 +0100416 if (len < 8) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100417 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_hdr", "V2H",
418 RXKADSEALEDINCON);
David Howells5a429762016-09-06 22:19:51 +0100419 goto protocol_error;
420 }
David Howells17926a72007-04-26 15:48:28 -0700421
David Howells248f2192016-09-08 11:10:12 +0100422 /* Decrypt the skbuff in-place. TODO: We really want to decrypt
423 * directly into the target buffer.
424 */
David Howells17926a72007-04-26 15:48:28 -0700425 nsg = skb_cow_data(skb, 0, &trailer);
426 if (nsg < 0)
427 goto nomem;
428
429 sg = _sg;
430 if (unlikely(nsg > 4)) {
431 sg = kmalloc(sizeof(*sg) * nsg, GFP_NOIO);
432 if (!sg)
433 goto nomem;
434 }
435
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700436 sg_init_table(sg, nsg);
David Howells248f2192016-09-08 11:10:12 +0100437 skb_to_sgvec(skb, sg, offset, len);
David Howells17926a72007-04-26 15:48:28 -0700438
439 /* decrypt from the session key */
David Howells19ffa012016-04-04 14:00:36 +0100440 token = call->conn->params.key->payload.data[0];
David Howells33941282009-09-14 01:17:35 +0000441 memcpy(&iv, token->kad->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700442
Herbert Xu1afe5932016-01-24 21:19:01 +0800443 skcipher_request_set_tfm(req, call->conn->cipher);
444 skcipher_request_set_callback(req, 0, NULL, NULL);
David Howells248f2192016-09-08 11:10:12 +0100445 skcipher_request_set_crypt(req, sg, sg, len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800446 crypto_skcipher_decrypt(req);
447 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700448 if (sg != _sg)
449 kfree(sg);
450
David Howells5a429762016-09-06 22:19:51 +0100451 /* Extract the decrypted packet length */
David Howells248f2192016-09-08 11:10:12 +0100452 if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100453 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_len", "XV2",
454 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100455 goto protocol_error;
456 }
David Howells248f2192016-09-08 11:10:12 +0100457 offset += sizeof(sechdr);
458 len -= sizeof(sechdr);
David Howells17926a72007-04-26 15:48:28 -0700459
460 buf = ntohl(sechdr.data_size);
461 data_size = buf & 0xffff;
462
463 check = buf >> 16;
David Howells5a429762016-09-06 22:19:51 +0100464 check ^= seq ^ call->call_id;
David Howells17926a72007-04-26 15:48:28 -0700465 check &= 0xffff;
466 if (check != 0) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100467 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_check", "V2C",
468 RXKADSEALEDINCON);
David Howells17926a72007-04-26 15:48:28 -0700469 goto protocol_error;
470 }
471
David Howells248f2192016-09-08 11:10:12 +0100472 if (data_size > len) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100473 aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_datalen", "V2L",
474 RXKADDATALEN);
David Howells5a429762016-09-06 22:19:51 +0100475 goto protocol_error;
476 }
David Howells17926a72007-04-26 15:48:28 -0700477
478 _leave(" = 0 [dlen=%x]", data_size);
479 return 0;
480
David Howells17926a72007-04-26 15:48:28 -0700481protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100482 if (aborted)
483 rxrpc_send_abort_packet(call);
David Howells17926a72007-04-26 15:48:28 -0700484 return -EPROTO;
485
486nomem:
487 _leave(" = -ENOMEM");
488 return -ENOMEM;
489}
490
491/*
David Howells5a429762016-09-06 22:19:51 +0100492 * Verify the security on a received packet or subpacket (if part of a
493 * jumbo packet).
David Howells17926a72007-04-26 15:48:28 -0700494 */
David Howells5a429762016-09-06 22:19:51 +0100495static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb,
David Howells248f2192016-09-08 11:10:12 +0100496 unsigned int offset, unsigned int len,
David Howells5a429762016-09-06 22:19:51 +0100497 rxrpc_seq_t seq, u16 expected_cksum)
David Howells17926a72007-04-26 15:48:28 -0700498{
Herbert Xu1afe5932016-01-24 21:19:01 +0800499 SKCIPHER_REQUEST_ON_STACK(req, call->conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700500 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700501 struct scatterlist sg;
David Howellsfb46f6e2017-04-06 10:12:00 +0100502 bool aborted;
David Howells0d12f8a2016-03-04 15:53:46 +0000503 u16 cksum;
504 u32 x, y;
David Howells17926a72007-04-26 15:48:28 -0700505
506 _enter("{%d{%x}},{#%u}",
David Howells5a429762016-09-06 22:19:51 +0100507 call->debug_id, key_serial(call->conn->params.key), seq);
David Howells17926a72007-04-26 15:48:28 -0700508
509 if (!call->conn->cipher)
510 return 0;
511
David Howells17926a72007-04-26 15:48:28 -0700512 /* continue encrypting from where we left off */
513 memcpy(&iv, call->conn->csum_iv.x, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700514
515 /* validate the security checksum */
David Howells01a90a42016-08-23 15:27:24 +0100516 x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT);
David Howells5a429762016-09-06 22:19:51 +0100517 x |= seq & 0x3fffffff;
Herbert Xua2636292016-06-26 14:55:24 -0700518 call->crypto_buf[0] = htonl(call->call_id);
519 call->crypto_buf[1] = htonl(x);
David Howells17926a72007-04-26 15:48:28 -0700520
Herbert Xua2636292016-06-26 14:55:24 -0700521 sg_init_one(&sg, call->crypto_buf, 8);
Herbert Xu1afe5932016-01-24 21:19:01 +0800522 skcipher_request_set_tfm(req, call->conn->cipher);
523 skcipher_request_set_callback(req, 0, NULL, NULL);
Herbert Xua2636292016-06-26 14:55:24 -0700524 skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800525 crypto_skcipher_encrypt(req);
526 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700527
Herbert Xua2636292016-06-26 14:55:24 -0700528 y = ntohl(call->crypto_buf[1]);
David Howells0d12f8a2016-03-04 15:53:46 +0000529 cksum = (y >> 16) & 0xffff;
530 if (cksum == 0)
531 cksum = 1; /* zero checksums are not permitted */
David Howells17926a72007-04-26 15:48:28 -0700532
David Howells5a429762016-09-06 22:19:51 +0100533 if (cksum != expected_cksum) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100534 aborted = rxrpc_abort_eproto(call, skb, "rxkad_csum", "VCK",
535 RXKADSEALEDINCON);
536 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700537 }
538
David Howells19ffa012016-04-04 14:00:36 +0100539 switch (call->conn->params.security_level) {
David Howells17926a72007-04-26 15:48:28 -0700540 case RXRPC_SECURITY_PLAIN:
David Howells5a429762016-09-06 22:19:51 +0100541 return 0;
David Howells17926a72007-04-26 15:48:28 -0700542 case RXRPC_SECURITY_AUTH:
David Howells248f2192016-09-08 11:10:12 +0100543 return rxkad_verify_packet_1(call, skb, offset, len, seq);
David Howells17926a72007-04-26 15:48:28 -0700544 case RXRPC_SECURITY_ENCRYPT:
David Howells248f2192016-09-08 11:10:12 +0100545 return rxkad_verify_packet_2(call, skb, offset, len, seq);
David Howells17926a72007-04-26 15:48:28 -0700546 default:
David Howells5a429762016-09-06 22:19:51 +0100547 return -ENOANO;
David Howells17926a72007-04-26 15:48:28 -0700548 }
David Howellsfb46f6e2017-04-06 10:12:00 +0100549
550protocol_error:
551 if (aborted)
552 rxrpc_send_abort_packet(call);
553 return -EPROTO;
David Howells17926a72007-04-26 15:48:28 -0700554}
555
556/*
David Howells248f2192016-09-08 11:10:12 +0100557 * Locate the data contained in a packet that was partially encrypted.
558 */
559static void rxkad_locate_data_1(struct rxrpc_call *call, struct sk_buff *skb,
560 unsigned int *_offset, unsigned int *_len)
561{
562 struct rxkad_level1_hdr sechdr;
563
564 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
565 BUG();
566 *_offset += sizeof(sechdr);
567 *_len = ntohl(sechdr.data_size) & 0xffff;
568}
569
570/*
571 * Locate the data contained in a packet that was completely encrypted.
572 */
573static void rxkad_locate_data_2(struct rxrpc_call *call, struct sk_buff *skb,
574 unsigned int *_offset, unsigned int *_len)
575{
576 struct rxkad_level2_hdr sechdr;
577
578 if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0)
579 BUG();
580 *_offset += sizeof(sechdr);
581 *_len = ntohl(sechdr.data_size) & 0xffff;
582}
583
584/*
585 * Locate the data contained in an already decrypted packet.
586 */
587static void rxkad_locate_data(struct rxrpc_call *call, struct sk_buff *skb,
588 unsigned int *_offset, unsigned int *_len)
589{
590 switch (call->conn->params.security_level) {
591 case RXRPC_SECURITY_AUTH:
592 rxkad_locate_data_1(call, skb, _offset, _len);
593 return;
594 case RXRPC_SECURITY_ENCRYPT:
595 rxkad_locate_data_2(call, skb, _offset, _len);
596 return;
597 default:
598 return;
599 }
600}
601
602/*
David Howells17926a72007-04-26 15:48:28 -0700603 * issue a challenge
604 */
605static int rxkad_issue_challenge(struct rxrpc_connection *conn)
606{
607 struct rxkad_challenge challenge;
David Howells0d12f8a2016-03-04 15:53:46 +0000608 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700609 struct msghdr msg;
610 struct kvec iov[2];
611 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000612 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700613 int ret;
614
David Howells19ffa012016-04-04 14:00:36 +0100615 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -0700616
David Howells19ffa012016-04-04 14:00:36 +0100617 ret = key_validate(conn->params.key);
David Howells17926a72007-04-26 15:48:28 -0700618 if (ret < 0)
619 return ret;
620
621 get_random_bytes(&conn->security_nonce, sizeof(conn->security_nonce));
622
623 challenge.version = htonl(2);
624 challenge.nonce = htonl(conn->security_nonce);
625 challenge.min_level = htonl(0);
626 challenge.__padding = 0;
627
David Howells85f32272016-04-04 14:00:36 +0100628 msg.msg_name = &conn->params.peer->srx.transport.sin;
629 msg.msg_namelen = sizeof(conn->params.peer->srx.transport.sin);
David Howells17926a72007-04-26 15:48:28 -0700630 msg.msg_control = NULL;
631 msg.msg_controllen = 0;
632 msg.msg_flags = 0;
633
David Howells19ffa012016-04-04 14:00:36 +0100634 whdr.epoch = htonl(conn->proto.epoch);
635 whdr.cid = htonl(conn->proto.cid);
David Howells0d12f8a2016-03-04 15:53:46 +0000636 whdr.callNumber = 0;
637 whdr.seq = 0;
638 whdr.type = RXRPC_PACKET_TYPE_CHALLENGE;
639 whdr.flags = conn->out_clientflag;
640 whdr.userStatus = 0;
641 whdr.securityIndex = conn->security_ix;
642 whdr._rsvd = 0;
David Howells19ffa012016-04-04 14:00:36 +0100643 whdr.serviceId = htons(conn->params.service_id);
David Howells17926a72007-04-26 15:48:28 -0700644
David Howells0d12f8a2016-03-04 15:53:46 +0000645 iov[0].iov_base = &whdr;
646 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700647 iov[1].iov_base = &challenge;
648 iov[1].iov_len = sizeof(challenge);
649
650 len = iov[0].iov_len + iov[1].iov_len;
651
David Howells0d12f8a2016-03-04 15:53:46 +0000652 serial = atomic_inc_return(&conn->serial);
653 whdr.serial = htonl(serial);
654 _proto("Tx CHALLENGE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700655
David Howells85f32272016-04-04 14:00:36 +0100656 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len);
David Howells17926a72007-04-26 15:48:28 -0700657 if (ret < 0) {
658 _debug("sendmsg failed: %d", ret);
659 return -EAGAIN;
660 }
661
662 _leave(" = 0");
663 return 0;
664}
665
666/*
667 * send a Kerberos security response
668 */
669static int rxkad_send_response(struct rxrpc_connection *conn,
David Howells0d12f8a2016-03-04 15:53:46 +0000670 struct rxrpc_host_header *hdr,
David Howells17926a72007-04-26 15:48:28 -0700671 struct rxkad_response *resp,
672 const struct rxkad_key *s2)
673{
David Howells0d12f8a2016-03-04 15:53:46 +0000674 struct rxrpc_wire_header whdr;
David Howells17926a72007-04-26 15:48:28 -0700675 struct msghdr msg;
676 struct kvec iov[3];
677 size_t len;
David Howells0d12f8a2016-03-04 15:53:46 +0000678 u32 serial;
David Howells17926a72007-04-26 15:48:28 -0700679 int ret;
680
681 _enter("");
682
David Howells85f32272016-04-04 14:00:36 +0100683 msg.msg_name = &conn->params.peer->srx.transport.sin;
684 msg.msg_namelen = sizeof(conn->params.peer->srx.transport.sin);
David Howells17926a72007-04-26 15:48:28 -0700685 msg.msg_control = NULL;
686 msg.msg_controllen = 0;
687 msg.msg_flags = 0;
688
David Howells0d12f8a2016-03-04 15:53:46 +0000689 memset(&whdr, 0, sizeof(whdr));
690 whdr.epoch = htonl(hdr->epoch);
691 whdr.cid = htonl(hdr->cid);
692 whdr.type = RXRPC_PACKET_TYPE_RESPONSE;
693 whdr.flags = conn->out_clientflag;
694 whdr.securityIndex = hdr->securityIndex;
695 whdr.serviceId = htons(hdr->serviceId);
David Howells17926a72007-04-26 15:48:28 -0700696
David Howells0d12f8a2016-03-04 15:53:46 +0000697 iov[0].iov_base = &whdr;
698 iov[0].iov_len = sizeof(whdr);
David Howells17926a72007-04-26 15:48:28 -0700699 iov[1].iov_base = resp;
700 iov[1].iov_len = sizeof(*resp);
David Howells0d12f8a2016-03-04 15:53:46 +0000701 iov[2].iov_base = (void *)s2->ticket;
David Howells17926a72007-04-26 15:48:28 -0700702 iov[2].iov_len = s2->ticket_len;
703
704 len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len;
705
David Howells0d12f8a2016-03-04 15:53:46 +0000706 serial = atomic_inc_return(&conn->serial);
707 whdr.serial = htonl(serial);
708 _proto("Tx RESPONSE %%%u", serial);
David Howells17926a72007-04-26 15:48:28 -0700709
David Howells85f32272016-04-04 14:00:36 +0100710 ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len);
David Howells17926a72007-04-26 15:48:28 -0700711 if (ret < 0) {
712 _debug("sendmsg failed: %d", ret);
713 return -EAGAIN;
714 }
715
716 _leave(" = 0");
717 return 0;
718}
719
720/*
721 * calculate the response checksum
722 */
723static void rxkad_calc_response_checksum(struct rxkad_response *response)
724{
725 u32 csum = 1000003;
726 int loop;
727 u8 *p = (u8 *) response;
728
729 for (loop = sizeof(*response); loop > 0; loop--)
730 csum = csum * 0x10204081 + *p++;
731
732 response->encrypted.checksum = htonl(csum);
733}
734
735/*
David Howells17926a72007-04-26 15:48:28 -0700736 * encrypt the response packet
737 */
738static void rxkad_encrypt_response(struct rxrpc_connection *conn,
739 struct rxkad_response *resp,
740 const struct rxkad_key *s2)
741{
Herbert Xu1afe5932016-01-24 21:19:01 +0800742 SKCIPHER_REQUEST_ON_STACK(req, conn->cipher);
David Howells17926a72007-04-26 15:48:28 -0700743 struct rxrpc_crypt iv;
Herbert Xua2636292016-06-26 14:55:24 -0700744 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700745
746 /* continue encrypting from where we left off */
747 memcpy(&iv, s2->session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700748
Herbert Xua2636292016-06-26 14:55:24 -0700749 sg_init_table(sg, 1);
750 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Herbert Xu1afe5932016-01-24 21:19:01 +0800751 skcipher_request_set_tfm(req, conn->cipher);
752 skcipher_request_set_callback(req, 0, NULL, NULL);
753 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800754 crypto_skcipher_encrypt(req);
755 skcipher_request_zero(req);
David Howells17926a72007-04-26 15:48:28 -0700756}
757
758/*
759 * respond to a challenge packet
760 */
761static int rxkad_respond_to_challenge(struct rxrpc_connection *conn,
762 struct sk_buff *skb,
763 u32 *_abort_code)
764{
David Howells33941282009-09-14 01:17:35 +0000765 const struct rxrpc_key_token *token;
David Howells17926a72007-04-26 15:48:28 -0700766 struct rxkad_challenge challenge;
767 struct rxkad_response resp
768 __attribute__((aligned(8))); /* must be aligned for crypto */
David Howells248f2192016-09-08 11:10:12 +0100769 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howellsfb46f6e2017-04-06 10:12:00 +0100770 const char *eproto;
David Howells17926a72007-04-26 15:48:28 -0700771 u32 version, nonce, min_level, abort_code;
772 int ret;
773
David Howells19ffa012016-04-04 14:00:36 +0100774 _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key));
David Howells17926a72007-04-26 15:48:28 -0700775
David Howellsfb46f6e2017-04-06 10:12:00 +0100776 eproto = tracepoint_string("chall_no_key");
David Howellsef686222017-04-06 10:11:59 +0100777 abort_code = RX_PROTOCOL_ERROR;
778 if (!conn->params.key)
779 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -0700780
David Howellsef686222017-04-06 10:11:59 +0100781 abort_code = RXKADEXPIRED;
David Howells19ffa012016-04-04 14:00:36 +0100782 ret = key_validate(conn->params.key);
David Howellsef686222017-04-06 10:11:59 +0100783 if (ret < 0)
784 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700785
David Howellsfb46f6e2017-04-06 10:12:00 +0100786 eproto = tracepoint_string("chall_short");
David Howells17926a72007-04-26 15:48:28 -0700787 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +0100788 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
789 &challenge, sizeof(challenge)) < 0)
David Howells17926a72007-04-26 15:48:28 -0700790 goto protocol_error;
791
792 version = ntohl(challenge.version);
793 nonce = ntohl(challenge.nonce);
794 min_level = ntohl(challenge.min_level);
795
796 _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +0000797 sp->hdr.serial, version, nonce, min_level);
David Howells17926a72007-04-26 15:48:28 -0700798
David Howellsfb46f6e2017-04-06 10:12:00 +0100799 eproto = tracepoint_string("chall_ver");
David Howells17926a72007-04-26 15:48:28 -0700800 abort_code = RXKADINCONSISTENCY;
801 if (version != RXKAD_VERSION)
802 goto protocol_error;
803
804 abort_code = RXKADLEVELFAIL;
David Howellsef686222017-04-06 10:11:59 +0100805 ret = -EACCES;
David Howells19ffa012016-04-04 14:00:36 +0100806 if (conn->params.security_level < min_level)
David Howellsef686222017-04-06 10:11:59 +0100807 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700808
David Howells19ffa012016-04-04 14:00:36 +0100809 token = conn->params.key->payload.data[0];
David Howells17926a72007-04-26 15:48:28 -0700810
811 /* build the response packet */
812 memset(&resp, 0, sizeof(resp));
813
David Howells098a2092016-03-04 15:59:00 +0000814 resp.version = htonl(RXKAD_VERSION);
David Howells19ffa012016-04-04 14:00:36 +0100815 resp.encrypted.epoch = htonl(conn->proto.epoch);
816 resp.encrypted.cid = htonl(conn->proto.cid);
David Howells098a2092016-03-04 15:59:00 +0000817 resp.encrypted.securityIndex = htonl(conn->security_ix);
818 resp.encrypted.inc_nonce = htonl(nonce + 1);
David Howells19ffa012016-04-04 14:00:36 +0100819 resp.encrypted.level = htonl(conn->params.security_level);
David Howells098a2092016-03-04 15:59:00 +0000820 resp.kvno = htonl(token->kad->kvno);
821 resp.ticket_len = htonl(token->kad->ticket_len);
822
David Howellsa1399f82016-06-27 14:39:44 +0100823 resp.encrypted.call_id[0] = htonl(conn->channels[0].call_counter);
824 resp.encrypted.call_id[1] = htonl(conn->channels[1].call_counter);
825 resp.encrypted.call_id[2] = htonl(conn->channels[2].call_counter);
826 resp.encrypted.call_id[3] = htonl(conn->channels[3].call_counter);
David Howells17926a72007-04-26 15:48:28 -0700827
828 /* calculate the response checksum and then do the encryption */
829 rxkad_calc_response_checksum(&resp);
David Howells33941282009-09-14 01:17:35 +0000830 rxkad_encrypt_response(conn, &resp, token->kad);
831 return rxkad_send_response(conn, &sp->hdr, &resp, token->kad);
David Howells17926a72007-04-26 15:48:28 -0700832
833protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100834 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howellsef686222017-04-06 10:11:59 +0100835 ret = -EPROTO;
836other_error:
David Howells17926a72007-04-26 15:48:28 -0700837 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +0100838 return ret;
David Howells17926a72007-04-26 15:48:28 -0700839}
840
841/*
842 * decrypt the kerberos IV ticket in the response
843 */
844static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
David Howellsfb46f6e2017-04-06 10:12:00 +0100845 struct sk_buff *skb,
David Howells17926a72007-04-26 15:48:28 -0700846 void *ticket, size_t ticket_len,
847 struct rxrpc_crypt *_session_key,
848 time_t *_expiry,
849 u32 *_abort_code)
850{
Herbert Xu1afe5932016-01-24 21:19:01 +0800851 struct skcipher_request *req;
David Howellsfb46f6e2017-04-06 10:12:00 +0100852 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -0700853 struct rxrpc_crypt iv, key;
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700854 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -0700855 struct in_addr addr;
Eric Dumazet95c96172012-04-15 05:58:06 +0000856 unsigned int life;
David Howellsfb46f6e2017-04-06 10:12:00 +0100857 const char *eproto;
David Howells17926a72007-04-26 15:48:28 -0700858 time_t issue, now;
859 bool little_endian;
860 int ret;
David Howellsfb46f6e2017-04-06 10:12:00 +0100861 u32 abort_code;
David Howells17926a72007-04-26 15:48:28 -0700862 u8 *p, *q, *name, *end;
863
864 _enter("{%d},{%x}", conn->debug_id, key_serial(conn->server_key));
865
866 *_expiry = 0;
867
868 ret = key_validate(conn->server_key);
869 if (ret < 0) {
870 switch (ret) {
871 case -EKEYEXPIRED:
David Howellsfb46f6e2017-04-06 10:12:00 +0100872 abort_code = RXKADEXPIRED;
David Howellsef686222017-04-06 10:11:59 +0100873 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700874 default:
David Howellsfb46f6e2017-04-06 10:12:00 +0100875 abort_code = RXKADNOAUTH;
David Howellsef686222017-04-06 10:11:59 +0100876 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700877 }
878 }
879
David Howells146aa8b2015-10-21 14:04:48 +0100880 ASSERT(conn->server_key->payload.data[0] != NULL);
David Howells17926a72007-04-26 15:48:28 -0700881 ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
882
David Howells146aa8b2015-10-21 14:04:48 +0100883 memcpy(&iv, &conn->server_key->payload.data[2], sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -0700884
David Howellsef686222017-04-06 10:11:59 +0100885 ret = -ENOMEM;
Herbert Xu1afe5932016-01-24 21:19:01 +0800886 req = skcipher_request_alloc(conn->server_key->payload.data[0],
887 GFP_NOFS);
David Howellsef686222017-04-06 10:11:59 +0100888 if (!req)
889 goto temporary_error;
David Howells17926a72007-04-26 15:48:28 -0700890
Herbert Xu68e3f5d2007-10-27 00:52:07 -0700891 sg_init_one(&sg[0], ticket, ticket_len);
Herbert Xu1afe5932016-01-24 21:19:01 +0800892 skcipher_request_set_callback(req, 0, NULL, NULL);
893 skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +0800894 crypto_skcipher_decrypt(req);
895 skcipher_request_free(req);
David Howells17926a72007-04-26 15:48:28 -0700896
897 p = ticket;
898 end = p + ticket_len;
899
David Howellsfb46f6e2017-04-06 10:12:00 +0100900#define Z(field) \
David Howells17926a72007-04-26 15:48:28 -0700901 ({ \
902 u8 *__str = p; \
David Howellsfb46f6e2017-04-06 10:12:00 +0100903 eproto = tracepoint_string("rxkad_bad_"#field); \
David Howells17926a72007-04-26 15:48:28 -0700904 q = memchr(p, 0, end - p); \
David Howellsfb46f6e2017-04-06 10:12:00 +0100905 if (!q || q - p > (field##_SZ)) \
David Howells17926a72007-04-26 15:48:28 -0700906 goto bad_ticket; \
907 for (; p < q; p++) \
908 if (!isprint(*p)) \
909 goto bad_ticket; \
910 p++; \
911 __str; \
912 })
913
914 /* extract the ticket flags */
915 _debug("KIV FLAGS: %x", *p);
916 little_endian = *p & 1;
917 p++;
918
919 /* extract the authentication name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100920 name = Z(ANAME);
David Howells17926a72007-04-26 15:48:28 -0700921 _debug("KIV ANAME: %s", name);
922
923 /* extract the principal's instance */
David Howellsfb46f6e2017-04-06 10:12:00 +0100924 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -0700925 _debug("KIV INST : %s", name);
926
927 /* extract the principal's authentication domain */
David Howellsfb46f6e2017-04-06 10:12:00 +0100928 name = Z(REALM);
David Howells17926a72007-04-26 15:48:28 -0700929 _debug("KIV REALM: %s", name);
930
David Howellsfb46f6e2017-04-06 10:12:00 +0100931 eproto = tracepoint_string("rxkad_bad_len");
David Howells17926a72007-04-26 15:48:28 -0700932 if (end - p < 4 + 8 + 4 + 2)
933 goto bad_ticket;
934
935 /* get the IPv4 address of the entity that requested the ticket */
936 memcpy(&addr, p, sizeof(addr));
937 p += 4;
Harvey Harrison21454aa2008-10-31 00:54:56 -0700938 _debug("KIV ADDR : %pI4", &addr);
David Howells17926a72007-04-26 15:48:28 -0700939
940 /* get the session key from the ticket */
941 memcpy(&key, p, sizeof(key));
942 p += 8;
943 _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1]));
944 memcpy(_session_key, &key, sizeof(key));
945
946 /* get the ticket's lifetime */
947 life = *p++ * 5 * 60;
948 _debug("KIV LIFE : %u", life);
949
950 /* get the issue time of the ticket */
951 if (little_endian) {
952 __le32 stamp;
953 memcpy(&stamp, p, 4);
954 issue = le32_to_cpu(stamp);
955 } else {
956 __be32 stamp;
957 memcpy(&stamp, p, 4);
958 issue = be32_to_cpu(stamp);
959 }
960 p += 4;
john stultz2c6b47d2007-07-24 17:47:43 -0700961 now = get_seconds();
David Howells17926a72007-04-26 15:48:28 -0700962 _debug("KIV ISSUE: %lx [%lx]", issue, now);
963
964 /* check the ticket is in date */
965 if (issue > now) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100966 abort_code = RXKADNOAUTH;
David Howells17926a72007-04-26 15:48:28 -0700967 ret = -EKEYREJECTED;
David Howellsef686222017-04-06 10:11:59 +0100968 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700969 }
970
971 if (issue < now - life) {
David Howellsfb46f6e2017-04-06 10:12:00 +0100972 abort_code = RXKADEXPIRED;
David Howells17926a72007-04-26 15:48:28 -0700973 ret = -EKEYEXPIRED;
David Howellsef686222017-04-06 10:11:59 +0100974 goto other_error;
David Howells17926a72007-04-26 15:48:28 -0700975 }
976
977 *_expiry = issue + life;
978
979 /* get the service name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100980 name = Z(SNAME);
David Howells17926a72007-04-26 15:48:28 -0700981 _debug("KIV SNAME: %s", name);
982
983 /* get the service instance name */
David Howellsfb46f6e2017-04-06 10:12:00 +0100984 name = Z(INST);
David Howells17926a72007-04-26 15:48:28 -0700985 _debug("KIV SINST: %s", name);
David Howellsef686222017-04-06 10:11:59 +0100986 return 0;
David Howells17926a72007-04-26 15:48:28 -0700987
988bad_ticket:
David Howellsfb46f6e2017-04-06 10:12:00 +0100989 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
990 abort_code = RXKADBADTICKET;
David Howellsef686222017-04-06 10:11:59 +0100991 ret = -EPROTO;
992other_error:
David Howellsfb46f6e2017-04-06 10:12:00 +0100993 *_abort_code = abort_code;
David Howellsef686222017-04-06 10:11:59 +0100994 return ret;
995temporary_error:
996 return ret;
David Howells17926a72007-04-26 15:48:28 -0700997}
998
999/*
1000 * decrypt the response packet
1001 */
1002static void rxkad_decrypt_response(struct rxrpc_connection *conn,
1003 struct rxkad_response *resp,
1004 const struct rxrpc_crypt *session_key)
1005{
Herbert Xu1afe5932016-01-24 21:19:01 +08001006 SKCIPHER_REQUEST_ON_STACK(req, rxkad_ci);
Herbert Xua2636292016-06-26 14:55:24 -07001007 struct scatterlist sg[1];
David Howells17926a72007-04-26 15:48:28 -07001008 struct rxrpc_crypt iv;
1009
1010 _enter(",,%08x%08x",
1011 ntohl(session_key->n[0]), ntohl(session_key->n[1]));
1012
1013 ASSERT(rxkad_ci != NULL);
1014
1015 mutex_lock(&rxkad_ci_mutex);
Herbert Xu1afe5932016-01-24 21:19:01 +08001016 if (crypto_skcipher_setkey(rxkad_ci, session_key->x,
1017 sizeof(*session_key)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001018 BUG();
1019
1020 memcpy(&iv, session_key, sizeof(iv));
David Howells17926a72007-04-26 15:48:28 -07001021
Herbert Xua2636292016-06-26 14:55:24 -07001022 sg_init_table(sg, 1);
1023 sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted));
Herbert Xu1afe5932016-01-24 21:19:01 +08001024 skcipher_request_set_tfm(req, rxkad_ci);
1025 skcipher_request_set_callback(req, 0, NULL, NULL);
1026 skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x);
Herbert Xu1afe5932016-01-24 21:19:01 +08001027 crypto_skcipher_decrypt(req);
1028 skcipher_request_zero(req);
1029
David Howells17926a72007-04-26 15:48:28 -07001030 mutex_unlock(&rxkad_ci_mutex);
1031
1032 _leave("");
1033}
1034
1035/*
1036 * verify a response
1037 */
1038static int rxkad_verify_response(struct rxrpc_connection *conn,
1039 struct sk_buff *skb,
1040 u32 *_abort_code)
1041{
1042 struct rxkad_response response
1043 __attribute__((aligned(8))); /* must be aligned for crypto */
David Howells248f2192016-09-08 11:10:12 +01001044 struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
David Howells17926a72007-04-26 15:48:28 -07001045 struct rxrpc_crypt session_key;
David Howellsfb46f6e2017-04-06 10:12:00 +01001046 const char *eproto;
David Howells17926a72007-04-26 15:48:28 -07001047 time_t expiry;
1048 void *ticket;
Al Viro91e916c2008-03-29 03:08:38 +00001049 u32 abort_code, version, kvno, ticket_len, level;
1050 __be32 csum;
David Howellsa1399f82016-06-27 14:39:44 +01001051 int ret, i;
David Howells17926a72007-04-26 15:48:28 -07001052
1053 _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key));
1054
David Howellsfb46f6e2017-04-06 10:12:00 +01001055 eproto = tracepoint_string("rxkad_rsp_short");
David Howells17926a72007-04-26 15:48:28 -07001056 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +01001057 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
1058 &response, sizeof(response)) < 0)
David Howells17926a72007-04-26 15:48:28 -07001059 goto protocol_error;
1060 if (!pskb_pull(skb, sizeof(response)))
1061 BUG();
1062
1063 version = ntohl(response.version);
1064 ticket_len = ntohl(response.ticket_len);
1065 kvno = ntohl(response.kvno);
David Howells17926a72007-04-26 15:48:28 -07001066 _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }",
David Howells0d12f8a2016-03-04 15:53:46 +00001067 sp->hdr.serial, version, kvno, ticket_len);
David Howells17926a72007-04-26 15:48:28 -07001068
David Howellsfb46f6e2017-04-06 10:12:00 +01001069 eproto = tracepoint_string("rxkad_rsp_ver");
David Howells17926a72007-04-26 15:48:28 -07001070 abort_code = RXKADINCONSISTENCY;
1071 if (version != RXKAD_VERSION)
David Howells4aa9cb32007-12-07 04:31:47 -08001072 goto protocol_error;
David Howells17926a72007-04-26 15:48:28 -07001073
David Howellsfb46f6e2017-04-06 10:12:00 +01001074 eproto = tracepoint_string("rxkad_rsp_tktlen");
David Howells17926a72007-04-26 15:48:28 -07001075 abort_code = RXKADTICKETLEN;
1076 if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN)
1077 goto protocol_error;
1078
David Howellsfb46f6e2017-04-06 10:12:00 +01001079 eproto = tracepoint_string("rxkad_rsp_unkkey");
David Howells17926a72007-04-26 15:48:28 -07001080 abort_code = RXKADUNKNOWNKEY;
1081 if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5)
1082 goto protocol_error;
1083
1084 /* extract the kerberos ticket and decrypt and decode it */
David Howellsef686222017-04-06 10:11:59 +01001085 ret = -ENOMEM;
David Howells17926a72007-04-26 15:48:28 -07001086 ticket = kmalloc(ticket_len, GFP_NOFS);
1087 if (!ticket)
David Howellsef686222017-04-06 10:11:59 +01001088 goto temporary_error;
David Howells17926a72007-04-26 15:48:28 -07001089
David Howellsfb46f6e2017-04-06 10:12:00 +01001090 eproto = tracepoint_string("rxkad_tkt_short");
David Howells17926a72007-04-26 15:48:28 -07001091 abort_code = RXKADPACKETSHORT;
David Howells775e5b72016-09-30 13:26:03 +01001092 if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
1093 ticket, ticket_len) < 0)
David Howells17926a72007-04-26 15:48:28 -07001094 goto protocol_error_free;
1095
David Howellsfb46f6e2017-04-06 10:12:00 +01001096 ret = rxkad_decrypt_ticket(conn, skb, ticket, ticket_len, &session_key,
David Howellsef686222017-04-06 10:11:59 +01001097 &expiry, _abort_code);
1098 if (ret < 0)
1099 goto temporary_error_free;
David Howells17926a72007-04-26 15:48:28 -07001100
1101 /* use the session key from inside the ticket to decrypt the
1102 * response */
1103 rxkad_decrypt_response(conn, &response, &session_key);
1104
David Howellsfb46f6e2017-04-06 10:12:00 +01001105 eproto = tracepoint_string("rxkad_rsp_param");
David Howells17926a72007-04-26 15:48:28 -07001106 abort_code = RXKADSEALEDINCON;
David Howells19ffa012016-04-04 14:00:36 +01001107 if (ntohl(response.encrypted.epoch) != conn->proto.epoch)
David Howells17926a72007-04-26 15:48:28 -07001108 goto protocol_error_free;
David Howells19ffa012016-04-04 14:00:36 +01001109 if (ntohl(response.encrypted.cid) != conn->proto.cid)
David Howells17926a72007-04-26 15:48:28 -07001110 goto protocol_error_free;
1111 if (ntohl(response.encrypted.securityIndex) != conn->security_ix)
1112 goto protocol_error_free;
1113 csum = response.encrypted.checksum;
1114 response.encrypted.checksum = 0;
1115 rxkad_calc_response_checksum(&response);
David Howellsfb46f6e2017-04-06 10:12:00 +01001116 eproto = tracepoint_string("rxkad_rsp_csum");
David Howells17926a72007-04-26 15:48:28 -07001117 if (response.encrypted.checksum != csum)
1118 goto protocol_error_free;
1119
David Howellsa1399f82016-06-27 14:39:44 +01001120 spin_lock(&conn->channel_lock);
1121 for (i = 0; i < RXRPC_MAXCALLS; i++) {
1122 struct rxrpc_call *call;
1123 u32 call_id = ntohl(response.encrypted.call_id[i]);
1124
David Howellsfb46f6e2017-04-06 10:12:00 +01001125 eproto = tracepoint_string("rxkad_rsp_callid");
David Howellsa1399f82016-06-27 14:39:44 +01001126 if (call_id > INT_MAX)
1127 goto protocol_error_unlock;
1128
David Howellsfb46f6e2017-04-06 10:12:00 +01001129 eproto = tracepoint_string("rxkad_rsp_callctr");
David Howellsa1399f82016-06-27 14:39:44 +01001130 if (call_id < conn->channels[i].call_counter)
1131 goto protocol_error_unlock;
David Howellsfb46f6e2017-04-06 10:12:00 +01001132
1133 eproto = tracepoint_string("rxkad_rsp_callst");
David Howellsa1399f82016-06-27 14:39:44 +01001134 if (call_id > conn->channels[i].call_counter) {
1135 call = rcu_dereference_protected(
1136 conn->channels[i].call,
1137 lockdep_is_held(&conn->channel_lock));
1138 if (call && call->state < RXRPC_CALL_COMPLETE)
1139 goto protocol_error_unlock;
1140 conn->channels[i].call_counter = call_id;
1141 }
1142 }
1143 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001144
David Howellsfb46f6e2017-04-06 10:12:00 +01001145 eproto = tracepoint_string("rxkad_rsp_seq");
David Howells17926a72007-04-26 15:48:28 -07001146 abort_code = RXKADOUTOFSEQUENCE;
David Howells0d12f8a2016-03-04 15:53:46 +00001147 if (ntohl(response.encrypted.inc_nonce) != conn->security_nonce + 1)
David Howells17926a72007-04-26 15:48:28 -07001148 goto protocol_error_free;
1149
David Howellsfb46f6e2017-04-06 10:12:00 +01001150 eproto = tracepoint_string("rxkad_rsp_level");
David Howells17926a72007-04-26 15:48:28 -07001151 abort_code = RXKADLEVELFAIL;
1152 level = ntohl(response.encrypted.level);
1153 if (level > RXRPC_SECURITY_ENCRYPT)
1154 goto protocol_error_free;
David Howells19ffa012016-04-04 14:00:36 +01001155 conn->params.security_level = level;
David Howells17926a72007-04-26 15:48:28 -07001156
1157 /* create a key to hold the security data and expiration time - after
1158 * this the connection security can be handled in exactly the same way
1159 * as for a client connection */
1160 ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
David Howellsef686222017-04-06 10:11:59 +01001161 if (ret < 0)
1162 goto temporary_error_free;
David Howells17926a72007-04-26 15:48:28 -07001163
1164 kfree(ticket);
1165 _leave(" = 0");
1166 return 0;
1167
David Howellsa1399f82016-06-27 14:39:44 +01001168protocol_error_unlock:
1169 spin_unlock(&conn->channel_lock);
David Howells17926a72007-04-26 15:48:28 -07001170protocol_error_free:
1171 kfree(ticket);
1172protocol_error:
David Howellsfb46f6e2017-04-06 10:12:00 +01001173 trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto);
David Howells17926a72007-04-26 15:48:28 -07001174 *_abort_code = abort_code;
David Howells17926a72007-04-26 15:48:28 -07001175 return -EPROTO;
David Howellsef686222017-04-06 10:11:59 +01001176
1177temporary_error_free:
1178 kfree(ticket);
1179temporary_error:
1180 /* Ignore the response packet if we got a temporary error such as
1181 * ENOMEM. We just want to send the challenge again. Note that we
1182 * also come out this way if the ticket decryption fails.
1183 */
1184 return ret;
David Howells17926a72007-04-26 15:48:28 -07001185}
1186
1187/*
1188 * clear the connection security
1189 */
1190static void rxkad_clear(struct rxrpc_connection *conn)
1191{
1192 _enter("");
1193
1194 if (conn->cipher)
Herbert Xu1afe5932016-01-24 21:19:01 +08001195 crypto_free_skcipher(conn->cipher);
David Howells17926a72007-04-26 15:48:28 -07001196}
1197
1198/*
David Howells648af7f2016-04-07 17:23:51 +01001199 * Initialise the rxkad security service.
1200 */
1201static int rxkad_init(void)
1202{
1203 /* pin the cipher we need so that the crypto layer doesn't invoke
1204 * keventd to go get it */
1205 rxkad_ci = crypto_alloc_skcipher("pcbc(fcrypt)", 0, CRYPTO_ALG_ASYNC);
Wu Fengguangfa54cc72016-06-05 07:17:19 +08001206 return PTR_ERR_OR_ZERO(rxkad_ci);
David Howells648af7f2016-04-07 17:23:51 +01001207}
1208
1209/*
1210 * Clean up the rxkad security service.
1211 */
1212static void rxkad_exit(void)
1213{
1214 if (rxkad_ci)
1215 crypto_free_skcipher(rxkad_ci);
1216}
1217
1218/*
David Howells17926a72007-04-26 15:48:28 -07001219 * RxRPC Kerberos-based security
1220 */
David Howells648af7f2016-04-07 17:23:51 +01001221const struct rxrpc_security rxkad = {
David Howells17926a72007-04-26 15:48:28 -07001222 .name = "rxkad",
David Howells8b815472009-09-14 01:17:30 +00001223 .security_index = RXRPC_SECURITY_RXKAD,
David Howells648af7f2016-04-07 17:23:51 +01001224 .init = rxkad_init,
1225 .exit = rxkad_exit,
David Howells17926a72007-04-26 15:48:28 -07001226 .init_connection_security = rxkad_init_connection_security,
1227 .prime_packet_security = rxkad_prime_packet_security,
1228 .secure_packet = rxkad_secure_packet,
1229 .verify_packet = rxkad_verify_packet,
David Howells248f2192016-09-08 11:10:12 +01001230 .locate_data = rxkad_locate_data,
David Howells17926a72007-04-26 15:48:28 -07001231 .issue_challenge = rxkad_issue_challenge,
1232 .respond_to_challenge = rxkad_respond_to_challenge,
1233 .verify_response = rxkad_verify_response,
1234 .clear = rxkad_clear,
1235};