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