Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 2 | /* Kerberos-based RxRPC security |
| 3 | * |
| 4 | * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. |
| 5 | * Written by David Howells (dhowells@redhat.com) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
Joe Perches | 9b6d539 | 2016-06-02 12:08:52 -0700 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 10 | #include <crypto/skcipher.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/net.h> |
| 13 | #include <linux/skbuff.h> |
| 14 | #include <linux/udp.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 15 | #include <linux/scatterlist.h> |
| 16 | #include <linux/ctype.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 18 | #include <net/sock.h> |
| 19 | #include <net/af_rxrpc.h> |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 20 | #include <keys/rxrpc-type.h> |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 21 | #include "ar-internal.h" |
| 22 | |
| 23 | #define RXKAD_VERSION 2 |
| 24 | #define MAXKRB5TICKETLEN 1024 |
| 25 | #define RXKAD_TKT_TYPE_KERBEROS_V5 256 |
| 26 | #define ANAME_SZ 40 /* size of authentication name */ |
| 27 | #define INST_SZ 40 /* size of principal's instance */ |
| 28 | #define REALM_SZ 40 /* size of principal's auth domain */ |
| 29 | #define SNAME_SZ 40 /* size of service name */ |
| 30 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 31 | struct rxkad_level1_hdr { |
| 32 | __be32 data_size; /* true data size (excluding padding) */ |
| 33 | }; |
| 34 | |
| 35 | struct rxkad_level2_hdr { |
| 36 | __be32 data_size; /* true data size (excluding padding) */ |
| 37 | __be32 checksum; /* decrypted data checksum */ |
| 38 | }; |
| 39 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 40 | /* |
| 41 | * this holds a pinned cipher so that keventd doesn't get called by the cipher |
| 42 | * alloc routine, but since we have it to hand, we use it to decrypt RESPONSE |
| 43 | * packets |
| 44 | */ |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 45 | static struct crypto_sync_skcipher *rxkad_ci; |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 46 | static struct skcipher_request *rxkad_ci_req; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 47 | static DEFINE_MUTEX(rxkad_ci_mutex); |
| 48 | |
| 49 | /* |
| 50 | * initialise connection security |
| 51 | */ |
| 52 | static int rxkad_init_connection_security(struct rxrpc_connection *conn) |
| 53 | { |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 54 | struct crypto_sync_skcipher *ci; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 55 | struct rxrpc_key_token *token; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 56 | int ret; |
| 57 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 58 | _enter("{%d},{%x}", conn->debug_id, key_serial(conn->params.key)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 59 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 60 | token = conn->params.key->payload.data[0]; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 61 | conn->security_ix = token->security_index; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 62 | |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 63 | ci = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 64 | if (IS_ERR(ci)) { |
| 65 | _debug("no cipher"); |
| 66 | ret = PTR_ERR(ci); |
| 67 | goto error; |
| 68 | } |
| 69 | |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 70 | if (crypto_sync_skcipher_setkey(ci, token->kad->session_key, |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 71 | sizeof(token->kad->session_key)) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 72 | BUG(); |
| 73 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 74 | switch (conn->params.security_level) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 75 | case RXRPC_SECURITY_PLAIN: |
| 76 | break; |
| 77 | case RXRPC_SECURITY_AUTH: |
| 78 | conn->size_align = 8; |
| 79 | conn->security_size = sizeof(struct rxkad_level1_hdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 80 | break; |
| 81 | case RXRPC_SECURITY_ENCRYPT: |
| 82 | conn->size_align = 8; |
| 83 | conn->security_size = sizeof(struct rxkad_level2_hdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 84 | break; |
| 85 | default: |
| 86 | ret = -EKEYREJECTED; |
| 87 | goto error; |
| 88 | } |
| 89 | |
| 90 | conn->cipher = ci; |
| 91 | ret = 0; |
| 92 | error: |
| 93 | _leave(" = %d", ret); |
| 94 | return ret; |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * prime the encryption state with the invariant parts of a connection's |
| 99 | * description |
| 100 | */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 101 | static int rxkad_prime_packet_security(struct rxrpc_connection *conn) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 102 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 103 | struct skcipher_request *req; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 104 | struct rxrpc_key_token *token; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 105 | struct scatterlist sg; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 106 | struct rxrpc_crypt iv; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 107 | __be32 *tmpbuf; |
| 108 | size_t tmpsize = 4 * sizeof(__be32); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 109 | |
| 110 | _enter(""); |
| 111 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 112 | if (!conn->params.key) |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 113 | return 0; |
| 114 | |
| 115 | tmpbuf = kmalloc(tmpsize, GFP_KERNEL); |
| 116 | if (!tmpbuf) |
| 117 | return -ENOMEM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 118 | |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 119 | req = skcipher_request_alloc(&conn->cipher->base, GFP_NOFS); |
| 120 | if (!req) { |
| 121 | kfree(tmpbuf); |
| 122 | return -ENOMEM; |
| 123 | } |
| 124 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 125 | token = conn->params.key->payload.data[0]; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 126 | memcpy(&iv, token->kad->session_key, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 127 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 128 | tmpbuf[0] = htonl(conn->proto.epoch); |
| 129 | tmpbuf[1] = htonl(conn->proto.cid); |
| 130 | tmpbuf[2] = 0; |
| 131 | tmpbuf[3] = htonl(conn->security_ix); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 132 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 133 | sg_init_one(&sg, tmpbuf, tmpsize); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 134 | skcipher_request_set_sync_tfm(req, conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 135 | skcipher_request_set_callback(req, 0, NULL, NULL); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 136 | skcipher_request_set_crypt(req, &sg, &sg, tmpsize, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 137 | crypto_skcipher_encrypt(req); |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 138 | skcipher_request_free(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 139 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 140 | memcpy(&conn->csum_iv, tmpbuf + 2, sizeof(conn->csum_iv)); |
| 141 | kfree(tmpbuf); |
| 142 | _leave(" = 0"); |
| 143 | return 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /* |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 147 | * Allocate and prepare the crypto request on a call. For any particular call, |
| 148 | * this is called serially for the packets, so no lock should be necessary. |
| 149 | */ |
| 150 | static struct skcipher_request *rxkad_get_call_crypto(struct rxrpc_call *call) |
| 151 | { |
| 152 | struct crypto_skcipher *tfm = &call->conn->cipher->base; |
| 153 | struct skcipher_request *cipher_req = call->cipher_req; |
| 154 | |
| 155 | if (!cipher_req) { |
| 156 | cipher_req = skcipher_request_alloc(tfm, GFP_NOFS); |
| 157 | if (!cipher_req) |
| 158 | return NULL; |
| 159 | call->cipher_req = cipher_req; |
| 160 | } |
| 161 | |
| 162 | return cipher_req; |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Clean up the crypto on a call. |
| 167 | */ |
| 168 | static void rxkad_free_call_crypto(struct rxrpc_call *call) |
| 169 | { |
| 170 | if (call->cipher_req) |
| 171 | skcipher_request_free(call->cipher_req); |
| 172 | call->cipher_req = NULL; |
| 173 | } |
| 174 | |
| 175 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 176 | * partially encrypt a packet (level 1 security) |
| 177 | */ |
| 178 | static int rxkad_secure_packet_auth(const struct rxrpc_call *call, |
| 179 | struct sk_buff *skb, |
| 180 | u32 data_size, |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 181 | void *sechdr, |
| 182 | struct skcipher_request *req) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 183 | { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 184 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 185 | struct rxkad_level1_hdr hdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 186 | struct rxrpc_crypt iv; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 187 | struct scatterlist sg; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 188 | u16 check; |
| 189 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 190 | _enter(""); |
| 191 | |
David Howells | 5a924b8 | 2016-09-22 00:29:31 +0100 | [diff] [blame] | 192 | check = sp->hdr.seq ^ call->call_id; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 193 | data_size |= (u32)check << 16; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 194 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 195 | hdr.data_size = htonl(data_size); |
| 196 | memcpy(sechdr, &hdr, sizeof(hdr)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 197 | |
| 198 | /* start the encryption afresh */ |
| 199 | memset(&iv, 0, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 200 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 201 | sg_init_one(&sg, sechdr, 8); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 202 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 203 | skcipher_request_set_callback(req, 0, NULL, NULL); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 204 | skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 205 | crypto_skcipher_encrypt(req); |
| 206 | skcipher_request_zero(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 207 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 208 | _leave(" = 0"); |
| 209 | return 0; |
| 210 | } |
| 211 | |
| 212 | /* |
| 213 | * wholly encrypt a packet (level 2 security) |
| 214 | */ |
| 215 | static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call, |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 216 | struct sk_buff *skb, |
| 217 | u32 data_size, |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 218 | void *sechdr, |
| 219 | struct skcipher_request *req) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 220 | { |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 221 | const struct rxrpc_key_token *token; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 222 | struct rxkad_level2_hdr rxkhdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 223 | struct rxrpc_skb_priv *sp; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 224 | struct rxrpc_crypt iv; |
| 225 | struct scatterlist sg[16]; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 226 | unsigned int len; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 227 | u16 check; |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 228 | int err; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 229 | |
| 230 | sp = rxrpc_skb(skb); |
| 231 | |
| 232 | _enter(""); |
| 233 | |
David Howells | 5a924b8 | 2016-09-22 00:29:31 +0100 | [diff] [blame] | 234 | check = sp->hdr.seq ^ call->call_id; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 235 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 236 | rxkhdr.data_size = htonl(data_size | (u32)check << 16); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 237 | rxkhdr.checksum = 0; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 238 | memcpy(sechdr, &rxkhdr, sizeof(rxkhdr)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 239 | |
| 240 | /* encrypt from the session key */ |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 241 | token = call->conn->params.key->payload.data[0]; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 242 | memcpy(&iv, token->kad->session_key, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 243 | |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 244 | sg_init_one(&sg[0], sechdr, sizeof(rxkhdr)); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 245 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 246 | skcipher_request_set_callback(req, 0, NULL, NULL); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 247 | skcipher_request_set_crypt(req, &sg[0], &sg[0], sizeof(rxkhdr), iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 248 | crypto_skcipher_encrypt(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 249 | |
| 250 | /* we want to encrypt the skbuff in-place */ |
David Howells | d0d5c0c | 2019-08-27 10:13:46 +0100 | [diff] [blame] | 251 | err = -EMSGSIZE; |
| 252 | if (skb_shinfo(skb)->nr_frags > 16) |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 253 | goto out; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 254 | |
| 255 | len = data_size + call->conn->size_align - 1; |
| 256 | len &= ~(call->conn->size_align - 1); |
| 257 | |
David Howells | d0d5c0c | 2019-08-27 10:13:46 +0100 | [diff] [blame] | 258 | sg_init_table(sg, ARRAY_SIZE(sg)); |
Jason A. Donenfeld | 89a5ea9 | 2017-06-04 04:16:24 +0200 | [diff] [blame] | 259 | err = skb_to_sgvec(skb, sg, 0, len); |
| 260 | if (unlikely(err < 0)) |
| 261 | goto out; |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 262 | skcipher_request_set_crypt(req, sg, sg, len, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 263 | crypto_skcipher_encrypt(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 264 | |
| 265 | _leave(" = 0"); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 266 | err = 0; |
| 267 | |
| 268 | out: |
| 269 | skcipher_request_zero(req); |
| 270 | return err; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 271 | } |
| 272 | |
| 273 | /* |
| 274 | * checksum an RxRPC packet header |
| 275 | */ |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 276 | static int rxkad_secure_packet(struct rxrpc_call *call, |
David Howells | b4f1342 | 2016-03-04 15:56:19 +0000 | [diff] [blame] | 277 | struct sk_buff *skb, |
| 278 | size_t data_size, |
| 279 | void *sechdr) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 280 | { |
| 281 | struct rxrpc_skb_priv *sp; |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 282 | struct skcipher_request *req; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 283 | struct rxrpc_crypt iv; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 284 | struct scatterlist sg; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 285 | u32 x, y; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 286 | int ret; |
| 287 | |
| 288 | sp = rxrpc_skb(skb); |
| 289 | |
| 290 | _enter("{%d{%x}},{#%u},%zu,", |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 291 | call->debug_id, key_serial(call->conn->params.key), |
| 292 | sp->hdr.seq, data_size); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 293 | |
| 294 | if (!call->conn->cipher) |
| 295 | return 0; |
| 296 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 297 | ret = key_validate(call->conn->params.key); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 298 | if (ret < 0) |
| 299 | return ret; |
| 300 | |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 301 | req = rxkad_get_call_crypto(call); |
| 302 | if (!req) |
| 303 | return -ENOMEM; |
| 304 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 305 | /* continue encrypting from where we left off */ |
| 306 | memcpy(&iv, call->conn->csum_iv.x, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 307 | |
| 308 | /* calculate the security checksum */ |
David Howells | 01a90a4 | 2016-08-23 15:27:24 +0100 | [diff] [blame] | 309 | x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 310 | x |= sp->hdr.seq & 0x3fffffff; |
David Howells | 5a924b8 | 2016-09-22 00:29:31 +0100 | [diff] [blame] | 311 | call->crypto_buf[0] = htonl(call->call_id); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 312 | call->crypto_buf[1] = htonl(x); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 313 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 314 | sg_init_one(&sg, call->crypto_buf, 8); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 315 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 316 | skcipher_request_set_callback(req, 0, NULL, NULL); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 317 | skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 318 | crypto_skcipher_encrypt(req); |
| 319 | skcipher_request_zero(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 320 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 321 | y = ntohl(call->crypto_buf[1]); |
Al Viro | 91e916c | 2008-03-29 03:08:38 +0000 | [diff] [blame] | 322 | y = (y >> 16) & 0xffff; |
| 323 | if (y == 0) |
| 324 | y = 1; /* zero checksums are not permitted */ |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 325 | sp->hdr.cksum = y; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 326 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 327 | switch (call->conn->params.security_level) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 328 | case RXRPC_SECURITY_PLAIN: |
| 329 | ret = 0; |
| 330 | break; |
| 331 | case RXRPC_SECURITY_AUTH: |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 332 | ret = rxkad_secure_packet_auth(call, skb, data_size, sechdr, |
| 333 | req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 334 | break; |
| 335 | case RXRPC_SECURITY_ENCRYPT: |
| 336 | ret = rxkad_secure_packet_encrypt(call, skb, data_size, |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 337 | sechdr, req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 338 | break; |
| 339 | default: |
| 340 | ret = -EPERM; |
| 341 | break; |
| 342 | } |
| 343 | |
Al Viro | 91e916c | 2008-03-29 03:08:38 +0000 | [diff] [blame] | 344 | _leave(" = %d [set %hx]", ret, y); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 345 | return ret; |
| 346 | } |
| 347 | |
| 348 | /* |
| 349 | * decrypt partial encryption on a packet (level 1 security) |
| 350 | */ |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 351 | static int rxkad_verify_packet_1(struct rxrpc_call *call, struct sk_buff *skb, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 352 | unsigned int offset, unsigned int len, |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 353 | rxrpc_seq_t seq, |
| 354 | struct skcipher_request *req) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 355 | { |
| 356 | struct rxkad_level1_hdr sechdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 357 | struct rxrpc_crypt iv; |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 358 | struct scatterlist sg[16]; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 359 | bool aborted; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 360 | u32 data_size, buf; |
| 361 | u16 check; |
David Howells | d0d5c0c | 2019-08-27 10:13:46 +0100 | [diff] [blame] | 362 | int ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 363 | |
| 364 | _enter(""); |
| 365 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 366 | if (len < 8) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 367 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_hdr", "V1H", |
| 368 | RXKADSEALEDINCON); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 369 | goto protocol_error; |
| 370 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 371 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 372 | /* Decrypt the skbuff in-place. TODO: We really want to decrypt |
| 373 | * directly into the target buffer. |
| 374 | */ |
David Howells | d0d5c0c | 2019-08-27 10:13:46 +0100 | [diff] [blame] | 375 | sg_init_table(sg, ARRAY_SIZE(sg)); |
Jason A. Donenfeld | 89a5ea9 | 2017-06-04 04:16:24 +0200 | [diff] [blame] | 376 | ret = skb_to_sgvec(skb, sg, offset, 8); |
| 377 | if (unlikely(ret < 0)) |
| 378 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 379 | |
| 380 | /* start the decryption afresh */ |
| 381 | memset(&iv, 0, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 382 | |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 383 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 384 | skcipher_request_set_callback(req, 0, NULL, NULL); |
| 385 | skcipher_request_set_crypt(req, sg, sg, 8, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 386 | crypto_skcipher_decrypt(req); |
| 387 | skcipher_request_zero(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 388 | |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 389 | /* Extract the decrypted packet length */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 390 | if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 391 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_len", "XV1", |
| 392 | RXKADDATALEN); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 393 | goto protocol_error; |
| 394 | } |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 395 | offset += sizeof(sechdr); |
| 396 | len -= sizeof(sechdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 397 | |
| 398 | buf = ntohl(sechdr.data_size); |
| 399 | data_size = buf & 0xffff; |
| 400 | |
| 401 | check = buf >> 16; |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 402 | check ^= seq ^ call->call_id; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 403 | check &= 0xffff; |
| 404 | if (check != 0) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 405 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_check", "V1C", |
| 406 | RXKADSEALEDINCON); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 407 | goto protocol_error; |
| 408 | } |
| 409 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 410 | if (data_size > len) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 411 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_1_datalen", "V1L", |
| 412 | RXKADDATALEN); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 413 | goto protocol_error; |
| 414 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 415 | |
| 416 | _leave(" = 0 [dlen=%x]", data_size); |
| 417 | return 0; |
| 418 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 419 | protocol_error: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 420 | if (aborted) |
| 421 | rxrpc_send_abort_packet(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 422 | return -EPROTO; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | /* |
| 426 | * wholly decrypt a packet (level 2 security) |
| 427 | */ |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 428 | static int rxkad_verify_packet_2(struct rxrpc_call *call, struct sk_buff *skb, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 429 | unsigned int offset, unsigned int len, |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 430 | rxrpc_seq_t seq, |
| 431 | struct skcipher_request *req) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 432 | { |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 433 | const struct rxrpc_key_token *token; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 434 | struct rxkad_level2_hdr sechdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 435 | struct rxrpc_crypt iv; |
| 436 | struct scatterlist _sg[4], *sg; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 437 | bool aborted; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 438 | u32 data_size, buf; |
| 439 | u16 check; |
Jason A. Donenfeld | 89a5ea9 | 2017-06-04 04:16:24 +0200 | [diff] [blame] | 440 | int nsg, ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 441 | |
| 442 | _enter(",{%d}", skb->len); |
| 443 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 444 | if (len < 8) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 445 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_hdr", "V2H", |
| 446 | RXKADSEALEDINCON); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 447 | goto protocol_error; |
| 448 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 449 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 450 | /* Decrypt the skbuff in-place. TODO: We really want to decrypt |
| 451 | * directly into the target buffer. |
| 452 | */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 453 | sg = _sg; |
David Howells | d0d5c0c | 2019-08-27 10:13:46 +0100 | [diff] [blame] | 454 | nsg = skb_shinfo(skb)->nr_frags; |
| 455 | if (nsg <= 4) { |
| 456 | nsg = 4; |
| 457 | } else { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 458 | sg = kmalloc_array(nsg, sizeof(*sg), GFP_NOIO); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 459 | if (!sg) |
| 460 | goto nomem; |
| 461 | } |
| 462 | |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 463 | sg_init_table(sg, nsg); |
Jason A. Donenfeld | 89a5ea9 | 2017-06-04 04:16:24 +0200 | [diff] [blame] | 464 | ret = skb_to_sgvec(skb, sg, offset, len); |
| 465 | if (unlikely(ret < 0)) { |
| 466 | if (sg != _sg) |
| 467 | kfree(sg); |
| 468 | return ret; |
| 469 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 470 | |
| 471 | /* decrypt from the session key */ |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 472 | token = call->conn->params.key->payload.data[0]; |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 473 | memcpy(&iv, token->kad->session_key, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 474 | |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 475 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 476 | skcipher_request_set_callback(req, 0, NULL, NULL); |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 477 | skcipher_request_set_crypt(req, sg, sg, len, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 478 | crypto_skcipher_decrypt(req); |
| 479 | skcipher_request_zero(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 480 | if (sg != _sg) |
| 481 | kfree(sg); |
| 482 | |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 483 | /* Extract the decrypted packet length */ |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 484 | if (skb_copy_bits(skb, offset, &sechdr, sizeof(sechdr)) < 0) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 485 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_len", "XV2", |
| 486 | RXKADDATALEN); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 487 | goto protocol_error; |
| 488 | } |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 489 | offset += sizeof(sechdr); |
| 490 | len -= sizeof(sechdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 491 | |
| 492 | buf = ntohl(sechdr.data_size); |
| 493 | data_size = buf & 0xffff; |
| 494 | |
| 495 | check = buf >> 16; |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 496 | check ^= seq ^ call->call_id; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 497 | check &= 0xffff; |
| 498 | if (check != 0) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 499 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_check", "V2C", |
| 500 | RXKADSEALEDINCON); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 501 | goto protocol_error; |
| 502 | } |
| 503 | |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 504 | if (data_size > len) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 505 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_2_datalen", "V2L", |
| 506 | RXKADDATALEN); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 507 | goto protocol_error; |
| 508 | } |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 509 | |
| 510 | _leave(" = 0 [dlen=%x]", data_size); |
| 511 | return 0; |
| 512 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 513 | protocol_error: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 514 | if (aborted) |
| 515 | rxrpc_send_abort_packet(call); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 516 | return -EPROTO; |
| 517 | |
| 518 | nomem: |
| 519 | _leave(" = -ENOMEM"); |
| 520 | return -ENOMEM; |
| 521 | } |
| 522 | |
| 523 | /* |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 524 | * Verify the security on a received packet or subpacket (if part of a |
| 525 | * jumbo packet). |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 526 | */ |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 527 | static int rxkad_verify_packet(struct rxrpc_call *call, struct sk_buff *skb, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 528 | unsigned int offset, unsigned int len, |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 529 | rxrpc_seq_t seq, u16 expected_cksum) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 530 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 531 | struct skcipher_request *req; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 532 | struct rxrpc_crypt iv; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 533 | struct scatterlist sg; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 534 | bool aborted; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 535 | u16 cksum; |
| 536 | u32 x, y; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 537 | |
| 538 | _enter("{%d{%x}},{#%u}", |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 539 | call->debug_id, key_serial(call->conn->params.key), seq); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 540 | |
| 541 | if (!call->conn->cipher) |
| 542 | return 0; |
| 543 | |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 544 | req = rxkad_get_call_crypto(call); |
| 545 | if (!req) |
| 546 | return -ENOMEM; |
| 547 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 548 | /* continue encrypting from where we left off */ |
| 549 | memcpy(&iv, call->conn->csum_iv.x, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 550 | |
| 551 | /* validate the security checksum */ |
David Howells | 01a90a4 | 2016-08-23 15:27:24 +0100 | [diff] [blame] | 552 | x = (call->cid & RXRPC_CHANNELMASK) << (32 - RXRPC_CIDSHIFT); |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 553 | x |= seq & 0x3fffffff; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 554 | call->crypto_buf[0] = htonl(call->call_id); |
| 555 | call->crypto_buf[1] = htonl(x); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 556 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 557 | sg_init_one(&sg, call->crypto_buf, 8); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 558 | skcipher_request_set_sync_tfm(req, call->conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 559 | skcipher_request_set_callback(req, 0, NULL, NULL); |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 560 | skcipher_request_set_crypt(req, &sg, &sg, 8, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 561 | crypto_skcipher_encrypt(req); |
| 562 | skcipher_request_zero(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 563 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 564 | y = ntohl(call->crypto_buf[1]); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 565 | cksum = (y >> 16) & 0xffff; |
| 566 | if (cksum == 0) |
| 567 | cksum = 1; /* zero checksums are not permitted */ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 568 | |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 569 | if (cksum != expected_cksum) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 570 | aborted = rxrpc_abort_eproto(call, skb, "rxkad_csum", "VCK", |
| 571 | RXKADSEALEDINCON); |
| 572 | goto protocol_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 573 | } |
| 574 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 575 | switch (call->conn->params.security_level) { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 576 | case RXRPC_SECURITY_PLAIN: |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 577 | return 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 578 | case RXRPC_SECURITY_AUTH: |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 579 | return rxkad_verify_packet_1(call, skb, offset, len, seq, req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 580 | case RXRPC_SECURITY_ENCRYPT: |
Kees Cook | 54424d3 | 2018-08-03 10:15:25 +0100 | [diff] [blame] | 581 | return rxkad_verify_packet_2(call, skb, offset, len, seq, req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 582 | default: |
David Howells | 5a42976 | 2016-09-06 22:19:51 +0100 | [diff] [blame] | 583 | return -ENOANO; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 584 | } |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 585 | |
| 586 | protocol_error: |
| 587 | if (aborted) |
| 588 | rxrpc_send_abort_packet(call); |
| 589 | return -EPROTO; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 590 | } |
| 591 | |
| 592 | /* |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 593 | * Locate the data contained in a packet that was partially encrypted. |
| 594 | */ |
| 595 | static void rxkad_locate_data_1(struct rxrpc_call *call, struct sk_buff *skb, |
| 596 | unsigned int *_offset, unsigned int *_len) |
| 597 | { |
| 598 | struct rxkad_level1_hdr sechdr; |
| 599 | |
| 600 | if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0) |
| 601 | BUG(); |
| 602 | *_offset += sizeof(sechdr); |
| 603 | *_len = ntohl(sechdr.data_size) & 0xffff; |
| 604 | } |
| 605 | |
| 606 | /* |
| 607 | * Locate the data contained in a packet that was completely encrypted. |
| 608 | */ |
| 609 | static void rxkad_locate_data_2(struct rxrpc_call *call, struct sk_buff *skb, |
| 610 | unsigned int *_offset, unsigned int *_len) |
| 611 | { |
| 612 | struct rxkad_level2_hdr sechdr; |
| 613 | |
| 614 | if (skb_copy_bits(skb, *_offset, &sechdr, sizeof(sechdr)) < 0) |
| 615 | BUG(); |
| 616 | *_offset += sizeof(sechdr); |
| 617 | *_len = ntohl(sechdr.data_size) & 0xffff; |
| 618 | } |
| 619 | |
| 620 | /* |
| 621 | * Locate the data contained in an already decrypted packet. |
| 622 | */ |
| 623 | static void rxkad_locate_data(struct rxrpc_call *call, struct sk_buff *skb, |
| 624 | unsigned int *_offset, unsigned int *_len) |
| 625 | { |
| 626 | switch (call->conn->params.security_level) { |
| 627 | case RXRPC_SECURITY_AUTH: |
| 628 | rxkad_locate_data_1(call, skb, _offset, _len); |
| 629 | return; |
| 630 | case RXRPC_SECURITY_ENCRYPT: |
| 631 | rxkad_locate_data_2(call, skb, _offset, _len); |
| 632 | return; |
| 633 | default: |
| 634 | return; |
| 635 | } |
| 636 | } |
| 637 | |
| 638 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 639 | * issue a challenge |
| 640 | */ |
| 641 | static int rxkad_issue_challenge(struct rxrpc_connection *conn) |
| 642 | { |
| 643 | struct rxkad_challenge challenge; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 644 | struct rxrpc_wire_header whdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 645 | struct msghdr msg; |
| 646 | struct kvec iov[2]; |
| 647 | size_t len; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 648 | u32 serial; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 649 | int ret; |
| 650 | |
David Howells | 063c60d | 2019-12-20 16:17:16 +0000 | [diff] [blame] | 651 | _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 652 | |
David Howells | 063c60d | 2019-12-20 16:17:16 +0000 | [diff] [blame] | 653 | ret = key_validate(conn->server_key); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 654 | if (ret < 0) |
| 655 | return ret; |
| 656 | |
| 657 | get_random_bytes(&conn->security_nonce, sizeof(conn->security_nonce)); |
| 658 | |
| 659 | challenge.version = htonl(2); |
| 660 | challenge.nonce = htonl(conn->security_nonce); |
| 661 | challenge.min_level = htonl(0); |
| 662 | challenge.__padding = 0; |
| 663 | |
David Howells | 7b674e3 | 2017-08-29 10:18:37 +0100 | [diff] [blame] | 664 | msg.msg_name = &conn->params.peer->srx.transport; |
| 665 | msg.msg_namelen = conn->params.peer->srx.transport_len; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 666 | msg.msg_control = NULL; |
| 667 | msg.msg_controllen = 0; |
| 668 | msg.msg_flags = 0; |
| 669 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 670 | whdr.epoch = htonl(conn->proto.epoch); |
| 671 | whdr.cid = htonl(conn->proto.cid); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 672 | whdr.callNumber = 0; |
| 673 | whdr.seq = 0; |
| 674 | whdr.type = RXRPC_PACKET_TYPE_CHALLENGE; |
| 675 | whdr.flags = conn->out_clientflag; |
| 676 | whdr.userStatus = 0; |
| 677 | whdr.securityIndex = conn->security_ix; |
| 678 | whdr._rsvd = 0; |
David Howells | 68d6d1a | 2017-06-05 14:30:49 +0100 | [diff] [blame] | 679 | whdr.serviceId = htons(conn->service_id); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 680 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 681 | iov[0].iov_base = &whdr; |
| 682 | iov[0].iov_len = sizeof(whdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 683 | iov[1].iov_base = &challenge; |
| 684 | iov[1].iov_len = sizeof(challenge); |
| 685 | |
| 686 | len = iov[0].iov_len + iov[1].iov_len; |
| 687 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 688 | serial = atomic_inc_return(&conn->serial); |
| 689 | whdr.serial = htonl(serial); |
| 690 | _proto("Tx CHALLENGE %%%u", serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 691 | |
David Howells | 85f3227 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 692 | ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 2, len); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 693 | if (ret < 0) { |
David Howells | 6b47fe1 | 2018-05-10 23:26:01 +0100 | [diff] [blame] | 694 | trace_rxrpc_tx_fail(conn->debug_id, serial, ret, |
David Howells | 4764c0d | 2018-07-23 17:18:37 +0100 | [diff] [blame] | 695 | rxrpc_tx_point_rxkad_challenge); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 696 | return -EAGAIN; |
| 697 | } |
| 698 | |
David Howells | 330bdcf | 2018-08-08 11:30:02 +0100 | [diff] [blame] | 699 | conn->params.peer->last_tx_at = ktime_get_seconds(); |
David Howells | 4764c0d | 2018-07-23 17:18:37 +0100 | [diff] [blame] | 700 | trace_rxrpc_tx_packet(conn->debug_id, &whdr, |
| 701 | rxrpc_tx_point_rxkad_challenge); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 702 | _leave(" = 0"); |
| 703 | return 0; |
| 704 | } |
| 705 | |
| 706 | /* |
| 707 | * send a Kerberos security response |
| 708 | */ |
| 709 | static int rxkad_send_response(struct rxrpc_connection *conn, |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 710 | struct rxrpc_host_header *hdr, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 711 | struct rxkad_response *resp, |
| 712 | const struct rxkad_key *s2) |
| 713 | { |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 714 | struct rxrpc_wire_header whdr; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 715 | struct msghdr msg; |
| 716 | struct kvec iov[3]; |
| 717 | size_t len; |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 718 | u32 serial; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 719 | int ret; |
| 720 | |
| 721 | _enter(""); |
| 722 | |
David Howells | 7b674e3 | 2017-08-29 10:18:37 +0100 | [diff] [blame] | 723 | msg.msg_name = &conn->params.peer->srx.transport; |
| 724 | msg.msg_namelen = conn->params.peer->srx.transport_len; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 725 | msg.msg_control = NULL; |
| 726 | msg.msg_controllen = 0; |
| 727 | msg.msg_flags = 0; |
| 728 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 729 | memset(&whdr, 0, sizeof(whdr)); |
| 730 | whdr.epoch = htonl(hdr->epoch); |
| 731 | whdr.cid = htonl(hdr->cid); |
| 732 | whdr.type = RXRPC_PACKET_TYPE_RESPONSE; |
| 733 | whdr.flags = conn->out_clientflag; |
| 734 | whdr.securityIndex = hdr->securityIndex; |
| 735 | whdr.serviceId = htons(hdr->serviceId); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 736 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 737 | iov[0].iov_base = &whdr; |
| 738 | iov[0].iov_len = sizeof(whdr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 739 | iov[1].iov_base = resp; |
| 740 | iov[1].iov_len = sizeof(*resp); |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 741 | iov[2].iov_base = (void *)s2->ticket; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 742 | iov[2].iov_len = s2->ticket_len; |
| 743 | |
| 744 | len = iov[0].iov_len + iov[1].iov_len + iov[2].iov_len; |
| 745 | |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 746 | serial = atomic_inc_return(&conn->serial); |
| 747 | whdr.serial = htonl(serial); |
| 748 | _proto("Tx RESPONSE %%%u", serial); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 749 | |
David Howells | 85f3227 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 750 | ret = kernel_sendmsg(conn->params.local->socket, &msg, iov, 3, len); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 751 | if (ret < 0) { |
David Howells | 6b47fe1 | 2018-05-10 23:26:01 +0100 | [diff] [blame] | 752 | trace_rxrpc_tx_fail(conn->debug_id, serial, ret, |
David Howells | 4764c0d | 2018-07-23 17:18:37 +0100 | [diff] [blame] | 753 | rxrpc_tx_point_rxkad_response); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 754 | return -EAGAIN; |
| 755 | } |
| 756 | |
David Howells | 330bdcf | 2018-08-08 11:30:02 +0100 | [diff] [blame] | 757 | conn->params.peer->last_tx_at = ktime_get_seconds(); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 758 | _leave(" = 0"); |
| 759 | return 0; |
| 760 | } |
| 761 | |
| 762 | /* |
| 763 | * calculate the response checksum |
| 764 | */ |
| 765 | static void rxkad_calc_response_checksum(struct rxkad_response *response) |
| 766 | { |
| 767 | u32 csum = 1000003; |
| 768 | int loop; |
| 769 | u8 *p = (u8 *) response; |
| 770 | |
| 771 | for (loop = sizeof(*response); loop > 0; loop--) |
| 772 | csum = csum * 0x10204081 + *p++; |
| 773 | |
| 774 | response->encrypted.checksum = htonl(csum); |
| 775 | } |
| 776 | |
| 777 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 778 | * encrypt the response packet |
| 779 | */ |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 780 | static int rxkad_encrypt_response(struct rxrpc_connection *conn, |
| 781 | struct rxkad_response *resp, |
| 782 | const struct rxkad_key *s2) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 783 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 784 | struct skcipher_request *req; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 785 | struct rxrpc_crypt iv; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 786 | struct scatterlist sg[1]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 787 | |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 788 | req = skcipher_request_alloc(&conn->cipher->base, GFP_NOFS); |
| 789 | if (!req) |
| 790 | return -ENOMEM; |
| 791 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 792 | /* continue encrypting from where we left off */ |
| 793 | memcpy(&iv, s2->session_key, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 794 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 795 | sg_init_table(sg, 1); |
| 796 | sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted)); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 797 | skcipher_request_set_sync_tfm(req, conn->cipher); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 798 | skcipher_request_set_callback(req, 0, NULL, NULL); |
| 799 | skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 800 | crypto_skcipher_encrypt(req); |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 801 | skcipher_request_free(req); |
| 802 | return 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | /* |
| 806 | * respond to a challenge packet |
| 807 | */ |
| 808 | static int rxkad_respond_to_challenge(struct rxrpc_connection *conn, |
| 809 | struct sk_buff *skb, |
| 810 | u32 *_abort_code) |
| 811 | { |
David Howells | 3394128 | 2009-09-14 01:17:35 +0000 | [diff] [blame] | 812 | const struct rxrpc_key_token *token; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 813 | struct rxkad_challenge challenge; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 814 | struct rxkad_response *resp; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 815 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 816 | const char *eproto; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 817 | u32 version, nonce, min_level, abort_code; |
| 818 | int ret; |
| 819 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 820 | _enter("{%d,%x}", conn->debug_id, key_serial(conn->params.key)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 821 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 822 | eproto = tracepoint_string("chall_no_key"); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 823 | abort_code = RX_PROTOCOL_ERROR; |
| 824 | if (!conn->params.key) |
| 825 | goto protocol_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 826 | |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 827 | abort_code = RXKADEXPIRED; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 828 | ret = key_validate(conn->params.key); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 829 | if (ret < 0) |
| 830 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 831 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 832 | eproto = tracepoint_string("chall_short"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 833 | abort_code = RXKADPACKETSHORT; |
David Howells | 775e5b7 | 2016-09-30 13:26:03 +0100 | [diff] [blame] | 834 | if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header), |
| 835 | &challenge, sizeof(challenge)) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 836 | goto protocol_error; |
| 837 | |
| 838 | version = ntohl(challenge.version); |
| 839 | nonce = ntohl(challenge.nonce); |
| 840 | min_level = ntohl(challenge.min_level); |
| 841 | |
| 842 | _proto("Rx CHALLENGE %%%u { v=%u n=%u ml=%u }", |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 843 | sp->hdr.serial, version, nonce, min_level); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 844 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 845 | eproto = tracepoint_string("chall_ver"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 846 | abort_code = RXKADINCONSISTENCY; |
| 847 | if (version != RXKAD_VERSION) |
| 848 | goto protocol_error; |
| 849 | |
| 850 | abort_code = RXKADLEVELFAIL; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 851 | ret = -EACCES; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 852 | if (conn->params.security_level < min_level) |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 853 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 854 | |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 855 | token = conn->params.key->payload.data[0]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 856 | |
| 857 | /* build the response packet */ |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 858 | resp = kzalloc(sizeof(struct rxkad_response), GFP_NOFS); |
| 859 | if (!resp) |
| 860 | return -ENOMEM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 861 | |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 862 | resp->version = htonl(RXKAD_VERSION); |
| 863 | resp->encrypted.epoch = htonl(conn->proto.epoch); |
| 864 | resp->encrypted.cid = htonl(conn->proto.cid); |
| 865 | resp->encrypted.securityIndex = htonl(conn->security_ix); |
| 866 | resp->encrypted.inc_nonce = htonl(nonce + 1); |
| 867 | resp->encrypted.level = htonl(conn->params.security_level); |
| 868 | resp->kvno = htonl(token->kad->kvno); |
| 869 | resp->ticket_len = htonl(token->kad->ticket_len); |
| 870 | resp->encrypted.call_id[0] = htonl(conn->channels[0].call_counter); |
| 871 | resp->encrypted.call_id[1] = htonl(conn->channels[1].call_counter); |
| 872 | resp->encrypted.call_id[2] = htonl(conn->channels[2].call_counter); |
| 873 | resp->encrypted.call_id[3] = htonl(conn->channels[3].call_counter); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 874 | |
| 875 | /* calculate the response checksum and then do the encryption */ |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 876 | rxkad_calc_response_checksum(resp); |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 877 | ret = rxkad_encrypt_response(conn, resp, token->kad); |
| 878 | if (ret == 0) |
| 879 | ret = rxkad_send_response(conn, &sp->hdr, resp, token->kad); |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 880 | kfree(resp); |
| 881 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 882 | |
| 883 | protocol_error: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 884 | trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 885 | ret = -EPROTO; |
| 886 | other_error: |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 887 | *_abort_code = abort_code; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 888 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | /* |
| 892 | * decrypt the kerberos IV ticket in the response |
| 893 | */ |
| 894 | static int rxkad_decrypt_ticket(struct rxrpc_connection *conn, |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 895 | struct sk_buff *skb, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 896 | void *ticket, size_t ticket_len, |
| 897 | struct rxrpc_crypt *_session_key, |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 898 | time64_t *_expiry, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 899 | u32 *_abort_code) |
| 900 | { |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 901 | struct skcipher_request *req; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 902 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 903 | struct rxrpc_crypt iv, key; |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 904 | struct scatterlist sg[1]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 905 | struct in_addr addr; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 906 | unsigned int life; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 907 | const char *eproto; |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 908 | time64_t issue, now; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 909 | bool little_endian; |
| 910 | int ret; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 911 | u32 abort_code; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 912 | u8 *p, *q, *name, *end; |
| 913 | |
| 914 | _enter("{%d},{%x}", conn->debug_id, key_serial(conn->server_key)); |
| 915 | |
| 916 | *_expiry = 0; |
| 917 | |
| 918 | ret = key_validate(conn->server_key); |
| 919 | if (ret < 0) { |
| 920 | switch (ret) { |
| 921 | case -EKEYEXPIRED: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 922 | abort_code = RXKADEXPIRED; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 923 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 924 | default: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 925 | abort_code = RXKADNOAUTH; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 926 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 927 | } |
| 928 | } |
| 929 | |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 930 | ASSERT(conn->server_key->payload.data[0] != NULL); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 931 | ASSERTCMP((unsigned long) ticket & 7UL, ==, 0); |
| 932 | |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 933 | memcpy(&iv, &conn->server_key->payload.data[2], sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 934 | |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 935 | ret = -ENOMEM; |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 936 | req = skcipher_request_alloc(conn->server_key->payload.data[0], |
| 937 | GFP_NOFS); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 938 | if (!req) |
| 939 | goto temporary_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 940 | |
Herbert Xu | 68e3f5d | 2007-10-27 00:52:07 -0700 | [diff] [blame] | 941 | sg_init_one(&sg[0], ticket, ticket_len); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 942 | skcipher_request_set_callback(req, 0, NULL, NULL); |
| 943 | skcipher_request_set_crypt(req, sg, sg, ticket_len, iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 944 | crypto_skcipher_decrypt(req); |
| 945 | skcipher_request_free(req); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 946 | |
| 947 | p = ticket; |
| 948 | end = p + ticket_len; |
| 949 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 950 | #define Z(field) \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 951 | ({ \ |
| 952 | u8 *__str = p; \ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 953 | eproto = tracepoint_string("rxkad_bad_"#field); \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 954 | q = memchr(p, 0, end - p); \ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 955 | if (!q || q - p > (field##_SZ)) \ |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 956 | goto bad_ticket; \ |
| 957 | for (; p < q; p++) \ |
| 958 | if (!isprint(*p)) \ |
| 959 | goto bad_ticket; \ |
| 960 | p++; \ |
| 961 | __str; \ |
| 962 | }) |
| 963 | |
| 964 | /* extract the ticket flags */ |
| 965 | _debug("KIV FLAGS: %x", *p); |
| 966 | little_endian = *p & 1; |
| 967 | p++; |
| 968 | |
| 969 | /* extract the authentication name */ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 970 | name = Z(ANAME); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 971 | _debug("KIV ANAME: %s", name); |
| 972 | |
| 973 | /* extract the principal's instance */ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 974 | name = Z(INST); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 975 | _debug("KIV INST : %s", name); |
| 976 | |
| 977 | /* extract the principal's authentication domain */ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 978 | name = Z(REALM); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 979 | _debug("KIV REALM: %s", name); |
| 980 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 981 | eproto = tracepoint_string("rxkad_bad_len"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 982 | if (end - p < 4 + 8 + 4 + 2) |
| 983 | goto bad_ticket; |
| 984 | |
| 985 | /* get the IPv4 address of the entity that requested the ticket */ |
| 986 | memcpy(&addr, p, sizeof(addr)); |
| 987 | p += 4; |
Harvey Harrison | 21454aa | 2008-10-31 00:54:56 -0700 | [diff] [blame] | 988 | _debug("KIV ADDR : %pI4", &addr); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 989 | |
| 990 | /* get the session key from the ticket */ |
| 991 | memcpy(&key, p, sizeof(key)); |
| 992 | p += 8; |
| 993 | _debug("KIV KEY : %08x %08x", ntohl(key.n[0]), ntohl(key.n[1])); |
| 994 | memcpy(_session_key, &key, sizeof(key)); |
| 995 | |
| 996 | /* get the ticket's lifetime */ |
| 997 | life = *p++ * 5 * 60; |
| 998 | _debug("KIV LIFE : %u", life); |
| 999 | |
| 1000 | /* get the issue time of the ticket */ |
| 1001 | if (little_endian) { |
| 1002 | __le32 stamp; |
| 1003 | memcpy(&stamp, p, 4); |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 1004 | issue = rxrpc_u32_to_time64(le32_to_cpu(stamp)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1005 | } else { |
| 1006 | __be32 stamp; |
| 1007 | memcpy(&stamp, p, 4); |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 1008 | issue = rxrpc_u32_to_time64(be32_to_cpu(stamp)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1009 | } |
| 1010 | p += 4; |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 1011 | now = ktime_get_real_seconds(); |
| 1012 | _debug("KIV ISSUE: %llx [%llx]", issue, now); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1013 | |
| 1014 | /* check the ticket is in date */ |
| 1015 | if (issue > now) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1016 | abort_code = RXKADNOAUTH; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1017 | ret = -EKEYREJECTED; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1018 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1019 | } |
| 1020 | |
| 1021 | if (issue < now - life) { |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1022 | abort_code = RXKADEXPIRED; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1023 | ret = -EKEYEXPIRED; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1024 | goto other_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
| 1027 | *_expiry = issue + life; |
| 1028 | |
| 1029 | /* get the service name */ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1030 | name = Z(SNAME); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1031 | _debug("KIV SNAME: %s", name); |
| 1032 | |
| 1033 | /* get the service instance name */ |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1034 | name = Z(INST); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1035 | _debug("KIV SINST: %s", name); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1036 | return 0; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1037 | |
| 1038 | bad_ticket: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1039 | trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto); |
| 1040 | abort_code = RXKADBADTICKET; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1041 | ret = -EPROTO; |
| 1042 | other_error: |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1043 | *_abort_code = abort_code; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1044 | return ret; |
| 1045 | temporary_error: |
| 1046 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1047 | } |
| 1048 | |
| 1049 | /* |
| 1050 | * decrypt the response packet |
| 1051 | */ |
| 1052 | static void rxkad_decrypt_response(struct rxrpc_connection *conn, |
| 1053 | struct rxkad_response *resp, |
| 1054 | const struct rxrpc_crypt *session_key) |
| 1055 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1056 | struct skcipher_request *req = rxkad_ci_req; |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 1057 | struct scatterlist sg[1]; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1058 | struct rxrpc_crypt iv; |
| 1059 | |
| 1060 | _enter(",,%08x%08x", |
| 1061 | ntohl(session_key->n[0]), ntohl(session_key->n[1])); |
| 1062 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1063 | mutex_lock(&rxkad_ci_mutex); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 1064 | if (crypto_sync_skcipher_setkey(rxkad_ci, session_key->x, |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1065 | sizeof(*session_key)) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1066 | BUG(); |
| 1067 | |
| 1068 | memcpy(&iv, session_key, sizeof(iv)); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1069 | |
Herbert Xu | a263629 | 2016-06-26 14:55:24 -0700 | [diff] [blame] | 1070 | sg_init_table(sg, 1); |
| 1071 | sg_set_buf(sg, &resp->encrypted, sizeof(resp->encrypted)); |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 1072 | skcipher_request_set_sync_tfm(req, rxkad_ci); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 1073 | skcipher_request_set_callback(req, 0, NULL, NULL); |
| 1074 | skcipher_request_set_crypt(req, sg, sg, sizeof(resp->encrypted), iv.x); |
Herbert Xu | 1afe593 | 2016-01-24 21:19:01 +0800 | [diff] [blame] | 1075 | crypto_skcipher_decrypt(req); |
| 1076 | skcipher_request_zero(req); |
| 1077 | |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1078 | mutex_unlock(&rxkad_ci_mutex); |
| 1079 | |
| 1080 | _leave(""); |
| 1081 | } |
| 1082 | |
| 1083 | /* |
| 1084 | * verify a response |
| 1085 | */ |
| 1086 | static int rxkad_verify_response(struct rxrpc_connection *conn, |
| 1087 | struct sk_buff *skb, |
| 1088 | u32 *_abort_code) |
| 1089 | { |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1090 | struct rxkad_response *response; |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 1091 | struct rxrpc_skb_priv *sp = rxrpc_skb(skb); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1092 | struct rxrpc_crypt session_key; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1093 | const char *eproto; |
Baolin Wang | 10674a0 | 2017-08-29 10:15:40 +0100 | [diff] [blame] | 1094 | time64_t expiry; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1095 | void *ticket; |
Al Viro | 91e916c | 2008-03-29 03:08:38 +0000 | [diff] [blame] | 1096 | u32 abort_code, version, kvno, ticket_len, level; |
| 1097 | __be32 csum; |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1098 | int ret, i; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1099 | |
| 1100 | _enter("{%d,%x}", conn->debug_id, key_serial(conn->server_key)); |
| 1101 | |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1102 | ret = -ENOMEM; |
| 1103 | response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS); |
| 1104 | if (!response) |
| 1105 | goto temporary_error; |
| 1106 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1107 | eproto = tracepoint_string("rxkad_rsp_short"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1108 | abort_code = RXKADPACKETSHORT; |
David Howells | 775e5b7 | 2016-09-30 13:26:03 +0100 | [diff] [blame] | 1109 | if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header), |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1110 | response, sizeof(*response)) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1111 | goto protocol_error; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1112 | if (!pskb_pull(skb, sizeof(*response))) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1113 | BUG(); |
| 1114 | |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1115 | version = ntohl(response->version); |
| 1116 | ticket_len = ntohl(response->ticket_len); |
| 1117 | kvno = ntohl(response->kvno); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1118 | _proto("Rx RESPONSE %%%u { v=%u kv=%u tl=%u }", |
David Howells | 0d12f8a | 2016-03-04 15:53:46 +0000 | [diff] [blame] | 1119 | sp->hdr.serial, version, kvno, ticket_len); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1120 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1121 | eproto = tracepoint_string("rxkad_rsp_ver"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1122 | abort_code = RXKADINCONSISTENCY; |
| 1123 | if (version != RXKAD_VERSION) |
David Howells | 4aa9cb3 | 2007-12-07 04:31:47 -0800 | [diff] [blame] | 1124 | goto protocol_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1125 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1126 | eproto = tracepoint_string("rxkad_rsp_tktlen"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1127 | abort_code = RXKADTICKETLEN; |
| 1128 | if (ticket_len < 4 || ticket_len > MAXKRB5TICKETLEN) |
| 1129 | goto protocol_error; |
| 1130 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1131 | eproto = tracepoint_string("rxkad_rsp_unkkey"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1132 | abort_code = RXKADUNKNOWNKEY; |
| 1133 | if (kvno >= RXKAD_TKT_TYPE_KERBEROS_V5) |
| 1134 | goto protocol_error; |
| 1135 | |
| 1136 | /* extract the kerberos ticket and decrypt and decode it */ |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1137 | ret = -ENOMEM; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1138 | ticket = kmalloc(ticket_len, GFP_NOFS); |
| 1139 | if (!ticket) |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1140 | goto temporary_error; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1141 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1142 | eproto = tracepoint_string("rxkad_tkt_short"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1143 | abort_code = RXKADPACKETSHORT; |
David Howells | 775e5b7 | 2016-09-30 13:26:03 +0100 | [diff] [blame] | 1144 | if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header), |
| 1145 | ticket, ticket_len) < 0) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1146 | goto protocol_error_free; |
| 1147 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1148 | ret = rxkad_decrypt_ticket(conn, skb, ticket, ticket_len, &session_key, |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1149 | &expiry, _abort_code); |
| 1150 | if (ret < 0) |
Qiushi Wu | f45d01f | 2020-05-22 13:45:18 -0500 | [diff] [blame] | 1151 | goto temporary_error_free_ticket; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1152 | |
| 1153 | /* use the session key from inside the ticket to decrypt the |
| 1154 | * response */ |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1155 | rxkad_decrypt_response(conn, response, &session_key); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1156 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1157 | eproto = tracepoint_string("rxkad_rsp_param"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1158 | abort_code = RXKADSEALEDINCON; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1159 | if (ntohl(response->encrypted.epoch) != conn->proto.epoch) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1160 | goto protocol_error_free; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1161 | if (ntohl(response->encrypted.cid) != conn->proto.cid) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1162 | goto protocol_error_free; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1163 | if (ntohl(response->encrypted.securityIndex) != conn->security_ix) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1164 | goto protocol_error_free; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1165 | csum = response->encrypted.checksum; |
| 1166 | response->encrypted.checksum = 0; |
| 1167 | rxkad_calc_response_checksum(response); |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1168 | eproto = tracepoint_string("rxkad_rsp_csum"); |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1169 | if (response->encrypted.checksum != csum) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1170 | goto protocol_error_free; |
| 1171 | |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1172 | spin_lock(&conn->channel_lock); |
| 1173 | for (i = 0; i < RXRPC_MAXCALLS; i++) { |
| 1174 | struct rxrpc_call *call; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1175 | u32 call_id = ntohl(response->encrypted.call_id[i]); |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1176 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1177 | eproto = tracepoint_string("rxkad_rsp_callid"); |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1178 | if (call_id > INT_MAX) |
| 1179 | goto protocol_error_unlock; |
| 1180 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1181 | eproto = tracepoint_string("rxkad_rsp_callctr"); |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1182 | if (call_id < conn->channels[i].call_counter) |
| 1183 | goto protocol_error_unlock; |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1184 | |
| 1185 | eproto = tracepoint_string("rxkad_rsp_callst"); |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1186 | if (call_id > conn->channels[i].call_counter) { |
| 1187 | call = rcu_dereference_protected( |
| 1188 | conn->channels[i].call, |
| 1189 | lockdep_is_held(&conn->channel_lock)); |
| 1190 | if (call && call->state < RXRPC_CALL_COMPLETE) |
| 1191 | goto protocol_error_unlock; |
| 1192 | conn->channels[i].call_counter = call_id; |
| 1193 | } |
| 1194 | } |
| 1195 | spin_unlock(&conn->channel_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1196 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1197 | eproto = tracepoint_string("rxkad_rsp_seq"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1198 | abort_code = RXKADOUTOFSEQUENCE; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1199 | if (ntohl(response->encrypted.inc_nonce) != conn->security_nonce + 1) |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1200 | goto protocol_error_free; |
| 1201 | |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1202 | eproto = tracepoint_string("rxkad_rsp_level"); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1203 | abort_code = RXKADLEVELFAIL; |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1204 | level = ntohl(response->encrypted.level); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1205 | if (level > RXRPC_SECURITY_ENCRYPT) |
| 1206 | goto protocol_error_free; |
David Howells | 19ffa01 | 2016-04-04 14:00:36 +0100 | [diff] [blame] | 1207 | conn->params.security_level = level; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1208 | |
| 1209 | /* create a key to hold the security data and expiration time - after |
| 1210 | * this the connection security can be handled in exactly the same way |
| 1211 | * as for a client connection */ |
| 1212 | ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1213 | if (ret < 0) |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1214 | goto temporary_error_free_ticket; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1215 | |
| 1216 | kfree(ticket); |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1217 | kfree(response); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1218 | _leave(" = 0"); |
| 1219 | return 0; |
| 1220 | |
David Howells | a1399f8 | 2016-06-27 14:39:44 +0100 | [diff] [blame] | 1221 | protocol_error_unlock: |
| 1222 | spin_unlock(&conn->channel_lock); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1223 | protocol_error_free: |
| 1224 | kfree(ticket); |
| 1225 | protocol_error: |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1226 | kfree(response); |
David Howells | fb46f6e | 2017-04-06 10:12:00 +0100 | [diff] [blame] | 1227 | trace_rxrpc_rx_eproto(NULL, sp->hdr.serial, eproto); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1228 | *_abort_code = abort_code; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1229 | return -EPROTO; |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1230 | |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1231 | temporary_error_free_ticket: |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1232 | kfree(ticket); |
David Howells | 8c2f826 | 2018-02-08 15:59:07 +0000 | [diff] [blame] | 1233 | kfree(response); |
David Howells | ef68622 | 2017-04-06 10:11:59 +0100 | [diff] [blame] | 1234 | temporary_error: |
| 1235 | /* Ignore the response packet if we got a temporary error such as |
| 1236 | * ENOMEM. We just want to send the challenge again. Note that we |
| 1237 | * also come out this way if the ticket decryption fails. |
| 1238 | */ |
| 1239 | return ret; |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1240 | } |
| 1241 | |
| 1242 | /* |
| 1243 | * clear the connection security |
| 1244 | */ |
| 1245 | static void rxkad_clear(struct rxrpc_connection *conn) |
| 1246 | { |
| 1247 | _enter(""); |
| 1248 | |
| 1249 | if (conn->cipher) |
Kees Cook | 69d826f | 2018-09-18 19:10:47 -0700 | [diff] [blame] | 1250 | crypto_free_sync_skcipher(conn->cipher); |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1251 | } |
| 1252 | |
| 1253 | /* |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1254 | * Initialise the rxkad security service. |
| 1255 | */ |
| 1256 | static int rxkad_init(void) |
| 1257 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1258 | struct crypto_sync_skcipher *tfm; |
| 1259 | struct skcipher_request *req; |
| 1260 | |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1261 | /* pin the cipher we need so that the crypto layer doesn't invoke |
| 1262 | * keventd to go get it */ |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1263 | tfm = crypto_alloc_sync_skcipher("pcbc(fcrypt)", 0, 0); |
| 1264 | if (IS_ERR(tfm)) |
| 1265 | return PTR_ERR(tfm); |
| 1266 | |
| 1267 | req = skcipher_request_alloc(&tfm->base, GFP_KERNEL); |
| 1268 | if (!req) |
| 1269 | goto nomem_tfm; |
| 1270 | |
| 1271 | rxkad_ci_req = req; |
| 1272 | rxkad_ci = tfm; |
| 1273 | return 0; |
| 1274 | |
| 1275 | nomem_tfm: |
| 1276 | crypto_free_sync_skcipher(tfm); |
| 1277 | return -ENOMEM; |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1278 | } |
| 1279 | |
| 1280 | /* |
| 1281 | * Clean up the rxkad security service. |
| 1282 | */ |
| 1283 | static void rxkad_exit(void) |
| 1284 | { |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1285 | crypto_free_sync_skcipher(rxkad_ci); |
| 1286 | skcipher_request_free(rxkad_ci_req); |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | /* |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1290 | * RxRPC Kerberos-based security |
| 1291 | */ |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1292 | const struct rxrpc_security rxkad = { |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1293 | .name = "rxkad", |
David Howells | 8b81547 | 2009-09-14 01:17:30 +0000 | [diff] [blame] | 1294 | .security_index = RXRPC_SECURITY_RXKAD, |
David Howells | 063c60d | 2019-12-20 16:17:16 +0000 | [diff] [blame] | 1295 | .no_key_abort = RXKADUNKNOWNKEY, |
David Howells | 648af7f | 2016-04-07 17:23:51 +0100 | [diff] [blame] | 1296 | .init = rxkad_init, |
| 1297 | .exit = rxkad_exit, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1298 | .init_connection_security = rxkad_init_connection_security, |
| 1299 | .prime_packet_security = rxkad_prime_packet_security, |
| 1300 | .secure_packet = rxkad_secure_packet, |
| 1301 | .verify_packet = rxkad_verify_packet, |
David Howells | 1db88c5 | 2019-07-30 15:56:57 +0100 | [diff] [blame] | 1302 | .free_call_crypto = rxkad_free_call_crypto, |
David Howells | 248f219 | 2016-09-08 11:10:12 +0100 | [diff] [blame] | 1303 | .locate_data = rxkad_locate_data, |
David Howells | 17926a7 | 2007-04-26 15:48:28 -0700 | [diff] [blame] | 1304 | .issue_challenge = rxkad_issue_challenge, |
| 1305 | .respond_to_challenge = rxkad_respond_to_challenge, |
| 1306 | .verify_response = rxkad_verify_response, |
| 1307 | .clear = rxkad_clear, |
| 1308 | }; |