Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016-2017, Mellanox Technologies. All rights reserved. |
| 3 | * Copyright (c) 2016-2017, Dave Watson <davejwatson@fb.com>. All rights reserved. |
| 4 | * Copyright (c) 2016-2017, Lance Chao <lancerchao@fb.com>. All rights reserved. |
| 5 | * Copyright (c) 2016, Fridolin Pokorny <fridolin.pokorny@gmail.com>. All rights reserved. |
| 6 | * Copyright (c) 2016, Nikos Mavrogiannopoulos <nmav@gnutls.org>. All rights reserved. |
| 7 | * |
| 8 | * This software is available to you under a choice of one of two |
| 9 | * licenses. You may choose to be licensed under the terms of the GNU |
| 10 | * General Public License (GPL) Version 2, available from the file |
| 11 | * COPYING in the main directory of this source tree, or the |
| 12 | * OpenIB.org BSD license below: |
| 13 | * |
| 14 | * Redistribution and use in source and binary forms, with or |
| 15 | * without modification, are permitted provided that the following |
| 16 | * conditions are met: |
| 17 | * |
| 18 | * - Redistributions of source code must retain the above |
| 19 | * copyright notice, this list of conditions and the following |
| 20 | * disclaimer. |
| 21 | * |
| 22 | * - Redistributions in binary form must reproduce the above |
| 23 | * copyright notice, this list of conditions and the following |
| 24 | * disclaimer in the documentation and/or other materials |
| 25 | * provided with the distribution. |
| 26 | * |
| 27 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 28 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 29 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 30 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 31 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 32 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 33 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 34 | * SOFTWARE. |
| 35 | */ |
| 36 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 37 | #include <linux/sched/signal.h> |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 38 | #include <linux/module.h> |
| 39 | #include <crypto/aead.h> |
| 40 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 41 | #include <net/strparser.h> |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 42 | #include <net/tls.h> |
| 43 | |
Kees Cook | b16520f | 2018-04-10 17:52:34 -0700 | [diff] [blame] | 44 | #define MAX_IV_SIZE TLS_CIPHER_AES_GCM_128_IV_SIZE |
| 45 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 46 | static int tls_do_decryption(struct sock *sk, |
| 47 | struct scatterlist *sgin, |
| 48 | struct scatterlist *sgout, |
| 49 | char *iv_recv, |
| 50 | size_t data_len, |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 51 | struct aead_request *aead_req) |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 52 | { |
| 53 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 54 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 55 | int ret; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 56 | |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 57 | aead_request_set_tfm(aead_req, ctx->aead_recv); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 58 | aead_request_set_ad(aead_req, TLS_AAD_SPACE_SIZE); |
| 59 | aead_request_set_crypt(aead_req, sgin, sgout, |
| 60 | data_len + tls_ctx->rx.tag_size, |
| 61 | (u8 *)iv_recv); |
| 62 | aead_request_set_callback(aead_req, CRYPTO_TFM_REQ_MAY_BACKLOG, |
| 63 | crypto_req_done, &ctx->async_wait); |
| 64 | |
| 65 | ret = crypto_wait_req(crypto_aead_decrypt(aead_req), &ctx->async_wait); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 66 | return ret; |
| 67 | } |
| 68 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 69 | static void trim_sg(struct sock *sk, struct scatterlist *sg, |
| 70 | int *sg_num_elem, unsigned int *sg_size, int target_size) |
| 71 | { |
| 72 | int i = *sg_num_elem - 1; |
| 73 | int trim = *sg_size - target_size; |
| 74 | |
| 75 | if (trim <= 0) { |
| 76 | WARN_ON(trim < 0); |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | *sg_size = target_size; |
| 81 | while (trim >= sg[i].length) { |
| 82 | trim -= sg[i].length; |
| 83 | sk_mem_uncharge(sk, sg[i].length); |
| 84 | put_page(sg_page(&sg[i])); |
| 85 | i--; |
| 86 | |
| 87 | if (i < 0) |
| 88 | goto out; |
| 89 | } |
| 90 | |
| 91 | sg[i].length -= trim; |
| 92 | sk_mem_uncharge(sk, trim); |
| 93 | |
| 94 | out: |
| 95 | *sg_num_elem = i + 1; |
| 96 | } |
| 97 | |
| 98 | static void trim_both_sgl(struct sock *sk, int target_size) |
| 99 | { |
| 100 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 101 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 102 | |
| 103 | trim_sg(sk, ctx->sg_plaintext_data, |
| 104 | &ctx->sg_plaintext_num_elem, |
| 105 | &ctx->sg_plaintext_size, |
| 106 | target_size); |
| 107 | |
| 108 | if (target_size > 0) |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 109 | target_size += tls_ctx->tx.overhead_size; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 110 | |
| 111 | trim_sg(sk, ctx->sg_encrypted_data, |
| 112 | &ctx->sg_encrypted_num_elem, |
| 113 | &ctx->sg_encrypted_size, |
| 114 | target_size); |
| 115 | } |
| 116 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 117 | static int alloc_encrypted_sg(struct sock *sk, int len) |
| 118 | { |
| 119 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 120 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 121 | int rc = 0; |
| 122 | |
John Fastabend | 2c3682f | 2018-03-18 12:56:49 -0700 | [diff] [blame] | 123 | rc = sk_alloc_sg(sk, len, |
John Fastabend | 8c05dbf | 2018-03-18 12:57:05 -0700 | [diff] [blame] | 124 | ctx->sg_encrypted_data, 0, |
John Fastabend | 2c3682f | 2018-03-18 12:56:49 -0700 | [diff] [blame] | 125 | &ctx->sg_encrypted_num_elem, |
| 126 | &ctx->sg_encrypted_size, 0); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 127 | |
| 128 | return rc; |
| 129 | } |
| 130 | |
| 131 | static int alloc_plaintext_sg(struct sock *sk, int len) |
| 132 | { |
| 133 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 134 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 135 | int rc = 0; |
| 136 | |
John Fastabend | 8c05dbf | 2018-03-18 12:57:05 -0700 | [diff] [blame] | 137 | rc = sk_alloc_sg(sk, len, ctx->sg_plaintext_data, 0, |
John Fastabend | 2c3682f | 2018-03-18 12:56:49 -0700 | [diff] [blame] | 138 | &ctx->sg_plaintext_num_elem, &ctx->sg_plaintext_size, |
| 139 | tls_ctx->pending_open_record_frags); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 140 | |
| 141 | return rc; |
| 142 | } |
| 143 | |
| 144 | static void free_sg(struct sock *sk, struct scatterlist *sg, |
| 145 | int *sg_num_elem, unsigned int *sg_size) |
| 146 | { |
| 147 | int i, n = *sg_num_elem; |
| 148 | |
| 149 | for (i = 0; i < n; ++i) { |
| 150 | sk_mem_uncharge(sk, sg[i].length); |
| 151 | put_page(sg_page(&sg[i])); |
| 152 | } |
| 153 | *sg_num_elem = 0; |
| 154 | *sg_size = 0; |
| 155 | } |
| 156 | |
| 157 | static void tls_free_both_sg(struct sock *sk) |
| 158 | { |
| 159 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 160 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 161 | |
| 162 | free_sg(sk, ctx->sg_encrypted_data, &ctx->sg_encrypted_num_elem, |
| 163 | &ctx->sg_encrypted_size); |
| 164 | |
| 165 | free_sg(sk, ctx->sg_plaintext_data, &ctx->sg_plaintext_num_elem, |
| 166 | &ctx->sg_plaintext_size); |
| 167 | } |
| 168 | |
| 169 | static int tls_do_encryption(struct tls_context *tls_ctx, |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 170 | struct tls_sw_context_tx *ctx, |
| 171 | struct aead_request *aead_req, |
| 172 | size_t data_len) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 173 | { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 174 | int rc; |
| 175 | |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 176 | ctx->sg_encrypted_data[0].offset += tls_ctx->tx.prepend_size; |
| 177 | ctx->sg_encrypted_data[0].length -= tls_ctx->tx.prepend_size; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 178 | |
| 179 | aead_request_set_tfm(aead_req, ctx->aead_send); |
| 180 | aead_request_set_ad(aead_req, TLS_AAD_SPACE_SIZE); |
| 181 | aead_request_set_crypt(aead_req, ctx->sg_aead_in, ctx->sg_aead_out, |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 182 | data_len, tls_ctx->tx.iv); |
Vakul Garg | a54667f | 2018-01-31 21:34:37 +0530 | [diff] [blame] | 183 | |
| 184 | aead_request_set_callback(aead_req, CRYPTO_TFM_REQ_MAY_BACKLOG, |
| 185 | crypto_req_done, &ctx->async_wait); |
| 186 | |
| 187 | rc = crypto_wait_req(crypto_aead_encrypt(aead_req), &ctx->async_wait); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 188 | |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 189 | ctx->sg_encrypted_data[0].offset -= tls_ctx->tx.prepend_size; |
| 190 | ctx->sg_encrypted_data[0].length += tls_ctx->tx.prepend_size; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 191 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 192 | return rc; |
| 193 | } |
| 194 | |
| 195 | static int tls_push_record(struct sock *sk, int flags, |
| 196 | unsigned char record_type) |
| 197 | { |
| 198 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 199 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 200 | struct aead_request *req; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 201 | int rc; |
| 202 | |
Vakul Garg | d2bdd26 | 2018-07-11 14:32:20 +0530 | [diff] [blame] | 203 | req = aead_request_alloc(ctx->aead_send, sk->sk_allocation); |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 204 | if (!req) |
| 205 | return -ENOMEM; |
| 206 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 207 | sg_mark_end(ctx->sg_plaintext_data + ctx->sg_plaintext_num_elem - 1); |
| 208 | sg_mark_end(ctx->sg_encrypted_data + ctx->sg_encrypted_num_elem - 1); |
| 209 | |
Ilya Lesokhin | 213ef6e | 2017-11-13 10:22:47 +0200 | [diff] [blame] | 210 | tls_make_aad(ctx->aad_space, ctx->sg_plaintext_size, |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 211 | tls_ctx->tx.rec_seq, tls_ctx->tx.rec_seq_size, |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 212 | record_type); |
| 213 | |
| 214 | tls_fill_prepend(tls_ctx, |
| 215 | page_address(sg_page(&ctx->sg_encrypted_data[0])) + |
| 216 | ctx->sg_encrypted_data[0].offset, |
| 217 | ctx->sg_plaintext_size, record_type); |
| 218 | |
| 219 | tls_ctx->pending_open_record_frags = 0; |
| 220 | set_bit(TLS_PENDING_CLOSED_RECORD, &tls_ctx->flags); |
| 221 | |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 222 | rc = tls_do_encryption(tls_ctx, ctx, req, ctx->sg_plaintext_size); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 223 | if (rc < 0) { |
| 224 | /* If we are called from write_space and |
| 225 | * we fail, we need to set this SOCK_NOSPACE |
| 226 | * to trigger another write_space in the future. |
| 227 | */ |
| 228 | set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 229 | goto out_req; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | free_sg(sk, ctx->sg_plaintext_data, &ctx->sg_plaintext_num_elem, |
| 233 | &ctx->sg_plaintext_size); |
| 234 | |
| 235 | ctx->sg_encrypted_num_elem = 0; |
| 236 | ctx->sg_encrypted_size = 0; |
| 237 | |
| 238 | /* Only pass through MSG_DONTWAIT and MSG_NOSIGNAL flags */ |
| 239 | rc = tls_push_sg(sk, tls_ctx, ctx->sg_encrypted_data, 0, flags); |
| 240 | if (rc < 0 && rc != -EAGAIN) |
Dave Watson | f4a8e43 | 2018-03-22 10:10:15 -0700 | [diff] [blame] | 241 | tls_err_abort(sk, EBADMSG); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 242 | |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 243 | tls_advance_record_sn(sk, &tls_ctx->tx); |
Daniel Borkmann | a447da7 | 2018-06-15 03:07:45 +0200 | [diff] [blame] | 244 | out_req: |
Vakul Garg | d2bdd26 | 2018-07-11 14:32:20 +0530 | [diff] [blame] | 245 | aead_request_free(req); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 246 | return rc; |
| 247 | } |
| 248 | |
| 249 | static int tls_sw_push_pending_record(struct sock *sk, int flags) |
| 250 | { |
| 251 | return tls_push_record(sk, flags, TLS_RECORD_TYPE_DATA); |
| 252 | } |
| 253 | |
| 254 | static int zerocopy_from_iter(struct sock *sk, struct iov_iter *from, |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 255 | int length, int *pages_used, |
| 256 | unsigned int *size_used, |
| 257 | struct scatterlist *to, int to_max_pages, |
Doron Roberts-Kedes | 2da19ed | 2018-07-26 07:59:36 -0700 | [diff] [blame] | 258 | bool charge) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 259 | { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 260 | struct page *pages[MAX_SKB_FRAGS]; |
| 261 | |
| 262 | size_t offset; |
| 263 | ssize_t copied, use; |
| 264 | int i = 0; |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 265 | unsigned int size = *size_used; |
| 266 | int num_elem = *pages_used; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 267 | int rc = 0; |
| 268 | int maxpages; |
| 269 | |
| 270 | while (length > 0) { |
| 271 | i = 0; |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 272 | maxpages = to_max_pages - num_elem; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 273 | if (maxpages == 0) { |
| 274 | rc = -EFAULT; |
| 275 | goto out; |
| 276 | } |
| 277 | copied = iov_iter_get_pages(from, pages, |
| 278 | length, |
| 279 | maxpages, &offset); |
| 280 | if (copied <= 0) { |
| 281 | rc = -EFAULT; |
| 282 | goto out; |
| 283 | } |
| 284 | |
| 285 | iov_iter_advance(from, copied); |
| 286 | |
| 287 | length -= copied; |
| 288 | size += copied; |
| 289 | while (copied) { |
| 290 | use = min_t(int, copied, PAGE_SIZE - offset); |
| 291 | |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 292 | sg_set_page(&to[num_elem], |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 293 | pages[i], use, offset); |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 294 | sg_unmark_end(&to[num_elem]); |
| 295 | if (charge) |
| 296 | sk_mem_charge(sk, use); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 297 | |
| 298 | offset = 0; |
| 299 | copied -= use; |
| 300 | |
| 301 | ++i; |
| 302 | ++num_elem; |
| 303 | } |
| 304 | } |
| 305 | |
Vakul Garg | cfb4099 | 2018-08-02 20:43:10 +0530 | [diff] [blame] | 306 | /* Mark the end in the last sg entry if newly added */ |
| 307 | if (num_elem > *pages_used) |
| 308 | sg_mark_end(&to[num_elem - 1]); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 309 | out: |
Doron Roberts-Kedes | 2da19ed | 2018-07-26 07:59:36 -0700 | [diff] [blame] | 310 | if (rc) |
| 311 | iov_iter_revert(from, size - *size_used); |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 312 | *size_used = size; |
| 313 | *pages_used = num_elem; |
| 314 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 315 | return rc; |
| 316 | } |
| 317 | |
| 318 | static int memcopy_from_iter(struct sock *sk, struct iov_iter *from, |
| 319 | int bytes) |
| 320 | { |
| 321 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 322 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 323 | struct scatterlist *sg = ctx->sg_plaintext_data; |
| 324 | int copy, i, rc = 0; |
| 325 | |
| 326 | for (i = tls_ctx->pending_open_record_frags; |
| 327 | i < ctx->sg_plaintext_num_elem; ++i) { |
| 328 | copy = sg[i].length; |
| 329 | if (copy_from_iter( |
| 330 | page_address(sg_page(&sg[i])) + sg[i].offset, |
| 331 | copy, from) != copy) { |
| 332 | rc = -EFAULT; |
| 333 | goto out; |
| 334 | } |
| 335 | bytes -= copy; |
| 336 | |
| 337 | ++tls_ctx->pending_open_record_frags; |
| 338 | |
| 339 | if (!bytes) |
| 340 | break; |
| 341 | } |
| 342 | |
| 343 | out: |
| 344 | return rc; |
| 345 | } |
| 346 | |
| 347 | int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size) |
| 348 | { |
| 349 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 350 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 351 | int ret = 0; |
| 352 | int required_size; |
| 353 | long timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT); |
| 354 | bool eor = !(msg->msg_flags & MSG_MORE); |
| 355 | size_t try_to_copy, copied = 0; |
| 356 | unsigned char record_type = TLS_RECORD_TYPE_DATA; |
| 357 | int record_room; |
| 358 | bool full_record; |
| 359 | int orig_size; |
Doron Roberts-Kedes | 0a26cf3 | 2018-07-25 14:48:21 -0700 | [diff] [blame] | 360 | bool is_kvec = msg->msg_iter.type & ITER_KVEC; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 361 | |
| 362 | if (msg->msg_flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL)) |
| 363 | return -ENOTSUPP; |
| 364 | |
| 365 | lock_sock(sk); |
| 366 | |
| 367 | if (tls_complete_pending_work(sk, tls_ctx, msg->msg_flags, &timeo)) |
| 368 | goto send_end; |
| 369 | |
| 370 | if (unlikely(msg->msg_controllen)) { |
| 371 | ret = tls_proccess_cmsg(sk, msg, &record_type); |
| 372 | if (ret) |
| 373 | goto send_end; |
| 374 | } |
| 375 | |
| 376 | while (msg_data_left(msg)) { |
| 377 | if (sk->sk_err) { |
r.hering@avm.de | 30be8f8 | 2018-01-12 15:42:06 +0100 | [diff] [blame] | 378 | ret = -sk->sk_err; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 379 | goto send_end; |
| 380 | } |
| 381 | |
| 382 | orig_size = ctx->sg_plaintext_size; |
| 383 | full_record = false; |
| 384 | try_to_copy = msg_data_left(msg); |
| 385 | record_room = TLS_MAX_PAYLOAD_SIZE - ctx->sg_plaintext_size; |
| 386 | if (try_to_copy >= record_room) { |
| 387 | try_to_copy = record_room; |
| 388 | full_record = true; |
| 389 | } |
| 390 | |
| 391 | required_size = ctx->sg_plaintext_size + try_to_copy + |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 392 | tls_ctx->tx.overhead_size; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 393 | |
| 394 | if (!sk_stream_memory_free(sk)) |
| 395 | goto wait_for_sndbuf; |
| 396 | alloc_encrypted: |
| 397 | ret = alloc_encrypted_sg(sk, required_size); |
| 398 | if (ret) { |
| 399 | if (ret != -ENOSPC) |
| 400 | goto wait_for_memory; |
| 401 | |
| 402 | /* Adjust try_to_copy according to the amount that was |
| 403 | * actually allocated. The difference is due |
| 404 | * to max sg elements limit |
| 405 | */ |
| 406 | try_to_copy -= required_size - ctx->sg_encrypted_size; |
| 407 | full_record = true; |
| 408 | } |
Doron Roberts-Kedes | 0a26cf3 | 2018-07-25 14:48:21 -0700 | [diff] [blame] | 409 | if (!is_kvec && (full_record || eor)) { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 410 | ret = zerocopy_from_iter(sk, &msg->msg_iter, |
Dave Watson | 69ca929 | 2018-03-22 10:09:53 -0700 | [diff] [blame] | 411 | try_to_copy, &ctx->sg_plaintext_num_elem, |
| 412 | &ctx->sg_plaintext_size, |
| 413 | ctx->sg_plaintext_data, |
| 414 | ARRAY_SIZE(ctx->sg_plaintext_data), |
Doron Roberts-Kedes | 2da19ed | 2018-07-26 07:59:36 -0700 | [diff] [blame] | 415 | true); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 416 | if (ret) |
| 417 | goto fallback_to_reg_send; |
| 418 | |
| 419 | copied += try_to_copy; |
| 420 | ret = tls_push_record(sk, msg->msg_flags, record_type); |
Doron Roberts-Kedes | 5a3611e | 2018-07-26 07:59:35 -0700 | [diff] [blame] | 421 | if (ret) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 422 | goto send_end; |
Doron Roberts-Kedes | 5a3611e | 2018-07-26 07:59:35 -0700 | [diff] [blame] | 423 | continue; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 424 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 425 | fallback_to_reg_send: |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 426 | trim_sg(sk, ctx->sg_plaintext_data, |
| 427 | &ctx->sg_plaintext_num_elem, |
| 428 | &ctx->sg_plaintext_size, |
| 429 | orig_size); |
| 430 | } |
| 431 | |
| 432 | required_size = ctx->sg_plaintext_size + try_to_copy; |
| 433 | alloc_plaintext: |
| 434 | ret = alloc_plaintext_sg(sk, required_size); |
| 435 | if (ret) { |
| 436 | if (ret != -ENOSPC) |
| 437 | goto wait_for_memory; |
| 438 | |
| 439 | /* Adjust try_to_copy according to the amount that was |
| 440 | * actually allocated. The difference is due |
| 441 | * to max sg elements limit |
| 442 | */ |
| 443 | try_to_copy -= required_size - ctx->sg_plaintext_size; |
| 444 | full_record = true; |
| 445 | |
| 446 | trim_sg(sk, ctx->sg_encrypted_data, |
| 447 | &ctx->sg_encrypted_num_elem, |
| 448 | &ctx->sg_encrypted_size, |
| 449 | ctx->sg_plaintext_size + |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 450 | tls_ctx->tx.overhead_size); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 451 | } |
| 452 | |
| 453 | ret = memcopy_from_iter(sk, &msg->msg_iter, try_to_copy); |
| 454 | if (ret) |
| 455 | goto trim_sgl; |
| 456 | |
| 457 | copied += try_to_copy; |
| 458 | if (full_record || eor) { |
| 459 | push_record: |
| 460 | ret = tls_push_record(sk, msg->msg_flags, record_type); |
| 461 | if (ret) { |
| 462 | if (ret == -ENOMEM) |
| 463 | goto wait_for_memory; |
| 464 | |
| 465 | goto send_end; |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | continue; |
| 470 | |
| 471 | wait_for_sndbuf: |
| 472 | set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); |
| 473 | wait_for_memory: |
| 474 | ret = sk_stream_wait_memory(sk, &timeo); |
| 475 | if (ret) { |
| 476 | trim_sgl: |
| 477 | trim_both_sgl(sk, orig_size); |
| 478 | goto send_end; |
| 479 | } |
| 480 | |
| 481 | if (tls_is_pending_closed_record(tls_ctx)) |
| 482 | goto push_record; |
| 483 | |
| 484 | if (ctx->sg_encrypted_size < required_size) |
| 485 | goto alloc_encrypted; |
| 486 | |
| 487 | goto alloc_plaintext; |
| 488 | } |
| 489 | |
| 490 | send_end: |
| 491 | ret = sk_stream_error(sk, msg->msg_flags, ret); |
| 492 | |
| 493 | release_sock(sk); |
| 494 | return copied ? copied : ret; |
| 495 | } |
| 496 | |
| 497 | int tls_sw_sendpage(struct sock *sk, struct page *page, |
| 498 | int offset, size_t size, int flags) |
| 499 | { |
| 500 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 501 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 502 | int ret = 0; |
| 503 | long timeo = sock_sndtimeo(sk, flags & MSG_DONTWAIT); |
| 504 | bool eor; |
| 505 | size_t orig_size = size; |
| 506 | unsigned char record_type = TLS_RECORD_TYPE_DATA; |
| 507 | struct scatterlist *sg; |
| 508 | bool full_record; |
| 509 | int record_room; |
| 510 | |
| 511 | if (flags & ~(MSG_MORE | MSG_DONTWAIT | MSG_NOSIGNAL | |
| 512 | MSG_SENDPAGE_NOTLAST)) |
| 513 | return -ENOTSUPP; |
| 514 | |
| 515 | /* No MSG_EOR from splice, only look at MSG_MORE */ |
| 516 | eor = !(flags & (MSG_MORE | MSG_SENDPAGE_NOTLAST)); |
| 517 | |
| 518 | lock_sock(sk); |
| 519 | |
| 520 | sk_clear_bit(SOCKWQ_ASYNC_NOSPACE, sk); |
| 521 | |
| 522 | if (tls_complete_pending_work(sk, tls_ctx, flags, &timeo)) |
| 523 | goto sendpage_end; |
| 524 | |
| 525 | /* Call the sk_stream functions to manage the sndbuf mem. */ |
| 526 | while (size > 0) { |
| 527 | size_t copy, required_size; |
| 528 | |
| 529 | if (sk->sk_err) { |
r.hering@avm.de | 30be8f8 | 2018-01-12 15:42:06 +0100 | [diff] [blame] | 530 | ret = -sk->sk_err; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 531 | goto sendpage_end; |
| 532 | } |
| 533 | |
| 534 | full_record = false; |
| 535 | record_room = TLS_MAX_PAYLOAD_SIZE - ctx->sg_plaintext_size; |
| 536 | copy = size; |
| 537 | if (copy >= record_room) { |
| 538 | copy = record_room; |
| 539 | full_record = true; |
| 540 | } |
| 541 | required_size = ctx->sg_plaintext_size + copy + |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 542 | tls_ctx->tx.overhead_size; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 543 | |
| 544 | if (!sk_stream_memory_free(sk)) |
| 545 | goto wait_for_sndbuf; |
| 546 | alloc_payload: |
| 547 | ret = alloc_encrypted_sg(sk, required_size); |
| 548 | if (ret) { |
| 549 | if (ret != -ENOSPC) |
| 550 | goto wait_for_memory; |
| 551 | |
| 552 | /* Adjust copy according to the amount that was |
| 553 | * actually allocated. The difference is due |
| 554 | * to max sg elements limit |
| 555 | */ |
| 556 | copy -= required_size - ctx->sg_plaintext_size; |
| 557 | full_record = true; |
| 558 | } |
| 559 | |
| 560 | get_page(page); |
| 561 | sg = ctx->sg_plaintext_data + ctx->sg_plaintext_num_elem; |
| 562 | sg_set_page(sg, page, copy, offset); |
Dave Watson | 7a8c4dd | 2018-01-19 12:30:13 -0800 | [diff] [blame] | 563 | sg_unmark_end(sg); |
| 564 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 565 | ctx->sg_plaintext_num_elem++; |
| 566 | |
| 567 | sk_mem_charge(sk, copy); |
| 568 | offset += copy; |
| 569 | size -= copy; |
| 570 | ctx->sg_plaintext_size += copy; |
| 571 | tls_ctx->pending_open_record_frags = ctx->sg_plaintext_num_elem; |
| 572 | |
| 573 | if (full_record || eor || |
| 574 | ctx->sg_plaintext_num_elem == |
| 575 | ARRAY_SIZE(ctx->sg_plaintext_data)) { |
| 576 | push_record: |
| 577 | ret = tls_push_record(sk, flags, record_type); |
| 578 | if (ret) { |
| 579 | if (ret == -ENOMEM) |
| 580 | goto wait_for_memory; |
| 581 | |
| 582 | goto sendpage_end; |
| 583 | } |
| 584 | } |
| 585 | continue; |
| 586 | wait_for_sndbuf: |
| 587 | set_bit(SOCK_NOSPACE, &sk->sk_socket->flags); |
| 588 | wait_for_memory: |
| 589 | ret = sk_stream_wait_memory(sk, &timeo); |
| 590 | if (ret) { |
| 591 | trim_both_sgl(sk, ctx->sg_plaintext_size); |
| 592 | goto sendpage_end; |
| 593 | } |
| 594 | |
| 595 | if (tls_is_pending_closed_record(tls_ctx)) |
| 596 | goto push_record; |
| 597 | |
| 598 | goto alloc_payload; |
| 599 | } |
| 600 | |
| 601 | sendpage_end: |
| 602 | if (orig_size > size) |
| 603 | ret = orig_size - size; |
| 604 | else |
| 605 | ret = sk_stream_error(sk, flags, ret); |
| 606 | |
| 607 | release_sock(sk); |
| 608 | return ret; |
| 609 | } |
| 610 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 611 | static struct sk_buff *tls_wait_data(struct sock *sk, int flags, |
| 612 | long timeo, int *err) |
| 613 | { |
| 614 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 615 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 616 | struct sk_buff *skb; |
| 617 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
| 618 | |
| 619 | while (!(skb = ctx->recv_pkt)) { |
| 620 | if (sk->sk_err) { |
| 621 | *err = sock_error(sk); |
| 622 | return NULL; |
| 623 | } |
| 624 | |
Doron Roberts-Kedes | fcf4793 | 2018-07-18 16:22:27 -0700 | [diff] [blame] | 625 | if (sk->sk_shutdown & RCV_SHUTDOWN) |
| 626 | return NULL; |
| 627 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 628 | if (sock_flag(sk, SOCK_DONE)) |
| 629 | return NULL; |
| 630 | |
| 631 | if ((flags & MSG_DONTWAIT) || !timeo) { |
| 632 | *err = -EAGAIN; |
| 633 | return NULL; |
| 634 | } |
| 635 | |
| 636 | add_wait_queue(sk_sleep(sk), &wait); |
| 637 | sk_set_bit(SOCKWQ_ASYNC_WAITDATA, sk); |
| 638 | sk_wait_event(sk, &timeo, ctx->recv_pkt != skb, &wait); |
| 639 | sk_clear_bit(SOCKWQ_ASYNC_WAITDATA, sk); |
| 640 | remove_wait_queue(sk_sleep(sk), &wait); |
| 641 | |
| 642 | /* Handle signals */ |
| 643 | if (signal_pending(current)) { |
| 644 | *err = sock_intr_errno(timeo); |
| 645 | return NULL; |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | return skb; |
| 650 | } |
| 651 | |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 652 | /* This function decrypts the input skb into either out_iov or in out_sg |
| 653 | * or in skb buffers itself. The input parameter 'zc' indicates if |
| 654 | * zero-copy mode needs to be tried or not. With zero-copy mode, either |
| 655 | * out_iov or out_sg must be non-NULL. In case both out_iov and out_sg are |
| 656 | * NULL, then the decryption happens inside skb buffers itself, i.e. |
| 657 | * zero-copy gets disabled and 'zc' is updated. |
| 658 | */ |
| 659 | |
| 660 | static int decrypt_internal(struct sock *sk, struct sk_buff *skb, |
| 661 | struct iov_iter *out_iov, |
| 662 | struct scatterlist *out_sg, |
| 663 | int *chunk, bool *zc) |
| 664 | { |
| 665 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
| 666 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
| 667 | struct strp_msg *rxm = strp_msg(skb); |
| 668 | int n_sgin, n_sgout, nsg, mem_size, aead_size, err, pages = 0; |
| 669 | struct aead_request *aead_req; |
| 670 | struct sk_buff *unused; |
| 671 | u8 *aad, *iv, *mem = NULL; |
| 672 | struct scatterlist *sgin = NULL; |
| 673 | struct scatterlist *sgout = NULL; |
| 674 | const int data_len = rxm->full_len - tls_ctx->rx.overhead_size; |
| 675 | |
| 676 | if (*zc && (out_iov || out_sg)) { |
| 677 | if (out_iov) |
| 678 | n_sgout = iov_iter_npages(out_iov, INT_MAX) + 1; |
| 679 | else |
| 680 | n_sgout = sg_nents(out_sg); |
| 681 | } else { |
| 682 | n_sgout = 0; |
| 683 | *zc = false; |
| 684 | } |
| 685 | |
| 686 | n_sgin = skb_cow_data(skb, 0, &unused); |
| 687 | if (n_sgin < 1) |
| 688 | return -EBADMSG; |
| 689 | |
| 690 | /* Increment to accommodate AAD */ |
| 691 | n_sgin = n_sgin + 1; |
| 692 | |
| 693 | nsg = n_sgin + n_sgout; |
| 694 | |
| 695 | aead_size = sizeof(*aead_req) + crypto_aead_reqsize(ctx->aead_recv); |
| 696 | mem_size = aead_size + (nsg * sizeof(struct scatterlist)); |
| 697 | mem_size = mem_size + TLS_AAD_SPACE_SIZE; |
| 698 | mem_size = mem_size + crypto_aead_ivsize(ctx->aead_recv); |
| 699 | |
| 700 | /* Allocate a single block of memory which contains |
| 701 | * aead_req || sgin[] || sgout[] || aad || iv. |
| 702 | * This order achieves correct alignment for aead_req, sgin, sgout. |
| 703 | */ |
| 704 | mem = kmalloc(mem_size, sk->sk_allocation); |
| 705 | if (!mem) |
| 706 | return -ENOMEM; |
| 707 | |
| 708 | /* Segment the allocated memory */ |
| 709 | aead_req = (struct aead_request *)mem; |
| 710 | sgin = (struct scatterlist *)(mem + aead_size); |
| 711 | sgout = sgin + n_sgin; |
| 712 | aad = (u8 *)(sgout + n_sgout); |
| 713 | iv = aad + TLS_AAD_SPACE_SIZE; |
| 714 | |
| 715 | /* Prepare IV */ |
| 716 | err = skb_copy_bits(skb, rxm->offset + TLS_HEADER_SIZE, |
| 717 | iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, |
| 718 | tls_ctx->rx.iv_size); |
| 719 | if (err < 0) { |
| 720 | kfree(mem); |
| 721 | return err; |
| 722 | } |
| 723 | memcpy(iv, tls_ctx->rx.iv, TLS_CIPHER_AES_GCM_128_SALT_SIZE); |
| 724 | |
| 725 | /* Prepare AAD */ |
| 726 | tls_make_aad(aad, rxm->full_len - tls_ctx->rx.overhead_size, |
| 727 | tls_ctx->rx.rec_seq, tls_ctx->rx.rec_seq_size, |
| 728 | ctx->control); |
| 729 | |
| 730 | /* Prepare sgin */ |
| 731 | sg_init_table(sgin, n_sgin); |
| 732 | sg_set_buf(&sgin[0], aad, TLS_AAD_SPACE_SIZE); |
| 733 | err = skb_to_sgvec(skb, &sgin[1], |
| 734 | rxm->offset + tls_ctx->rx.prepend_size, |
| 735 | rxm->full_len - tls_ctx->rx.prepend_size); |
| 736 | if (err < 0) { |
| 737 | kfree(mem); |
| 738 | return err; |
| 739 | } |
| 740 | |
| 741 | if (n_sgout) { |
| 742 | if (out_iov) { |
| 743 | sg_init_table(sgout, n_sgout); |
| 744 | sg_set_buf(&sgout[0], aad, TLS_AAD_SPACE_SIZE); |
| 745 | |
| 746 | *chunk = 0; |
| 747 | err = zerocopy_from_iter(sk, out_iov, data_len, &pages, |
| 748 | chunk, &sgout[1], |
| 749 | (n_sgout - 1), false); |
| 750 | if (err < 0) |
| 751 | goto fallback_to_reg_recv; |
| 752 | } else if (out_sg) { |
| 753 | memcpy(sgout, out_sg, n_sgout * sizeof(*sgout)); |
| 754 | } else { |
| 755 | goto fallback_to_reg_recv; |
| 756 | } |
| 757 | } else { |
| 758 | fallback_to_reg_recv: |
| 759 | sgout = sgin; |
| 760 | pages = 0; |
| 761 | *chunk = 0; |
| 762 | *zc = false; |
| 763 | } |
| 764 | |
| 765 | /* Prepare and submit AEAD request */ |
| 766 | err = tls_do_decryption(sk, sgin, sgout, iv, data_len, aead_req); |
| 767 | |
| 768 | /* Release the pages in case iov was mapped to pages */ |
| 769 | for (; pages > 0; pages--) |
| 770 | put_page(sg_page(&sgout[pages])); |
| 771 | |
| 772 | kfree(mem); |
| 773 | return err; |
| 774 | } |
| 775 | |
Boris Pismenny | dafb67f | 2018-07-13 14:33:40 +0300 | [diff] [blame] | 776 | static int decrypt_skb_update(struct sock *sk, struct sk_buff *skb, |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 777 | struct iov_iter *dest, int *chunk, bool *zc) |
Boris Pismenny | dafb67f | 2018-07-13 14:33:40 +0300 | [diff] [blame] | 778 | { |
| 779 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
| 780 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
| 781 | struct strp_msg *rxm = strp_msg(skb); |
| 782 | int err = 0; |
| 783 | |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 784 | #ifdef CONFIG_TLS_DEVICE |
| 785 | err = tls_device_decrypted(sk, skb); |
Boris Pismenny | dafb67f | 2018-07-13 14:33:40 +0300 | [diff] [blame] | 786 | if (err < 0) |
| 787 | return err; |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 788 | #endif |
| 789 | if (!ctx->decrypted) { |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 790 | err = decrypt_internal(sk, skb, dest, NULL, chunk, zc); |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 791 | if (err < 0) |
| 792 | return err; |
| 793 | } else { |
| 794 | *zc = false; |
| 795 | } |
Boris Pismenny | dafb67f | 2018-07-13 14:33:40 +0300 | [diff] [blame] | 796 | |
| 797 | rxm->offset += tls_ctx->rx.prepend_size; |
| 798 | rxm->full_len -= tls_ctx->rx.overhead_size; |
| 799 | tls_advance_record_sn(sk, &tls_ctx->rx); |
| 800 | ctx->decrypted = true; |
| 801 | ctx->saved_data_ready(sk); |
| 802 | |
| 803 | return err; |
| 804 | } |
| 805 | |
| 806 | int decrypt_skb(struct sock *sk, struct sk_buff *skb, |
| 807 | struct scatterlist *sgout) |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 808 | { |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 809 | bool zc = true; |
| 810 | int chunk; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 811 | |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 812 | return decrypt_internal(sk, skb, NULL, sgout, &chunk, &zc); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | static bool tls_sw_advance_skb(struct sock *sk, struct sk_buff *skb, |
| 816 | unsigned int len) |
| 817 | { |
| 818 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 819 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 820 | struct strp_msg *rxm = strp_msg(skb); |
| 821 | |
| 822 | if (len < rxm->full_len) { |
| 823 | rxm->offset += len; |
| 824 | rxm->full_len -= len; |
| 825 | |
| 826 | return false; |
| 827 | } |
| 828 | |
| 829 | /* Finished with message */ |
| 830 | ctx->recv_pkt = NULL; |
| 831 | kfree_skb(skb); |
Doron Roberts-Kedes | 7170e60 | 2018-06-06 09:33:28 -0700 | [diff] [blame] | 832 | __strp_unpause(&ctx->strp); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 833 | |
| 834 | return true; |
| 835 | } |
| 836 | |
| 837 | int tls_sw_recvmsg(struct sock *sk, |
| 838 | struct msghdr *msg, |
| 839 | size_t len, |
| 840 | int nonblock, |
| 841 | int flags, |
| 842 | int *addr_len) |
| 843 | { |
| 844 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 845 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 846 | unsigned char control; |
| 847 | struct strp_msg *rxm; |
| 848 | struct sk_buff *skb; |
| 849 | ssize_t copied = 0; |
| 850 | bool cmsg = false; |
Daniel Borkmann | 06030db | 2018-06-15 03:07:46 +0200 | [diff] [blame] | 851 | int target, err = 0; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 852 | long timeo; |
Doron Roberts-Kedes | 0a26cf3 | 2018-07-25 14:48:21 -0700 | [diff] [blame] | 853 | bool is_kvec = msg->msg_iter.type & ITER_KVEC; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 854 | |
| 855 | flags |= nonblock; |
| 856 | |
| 857 | if (unlikely(flags & MSG_ERRQUEUE)) |
| 858 | return sock_recv_errqueue(sk, msg, len, SOL_IP, IP_RECVERR); |
| 859 | |
| 860 | lock_sock(sk); |
| 861 | |
Daniel Borkmann | 06030db | 2018-06-15 03:07:46 +0200 | [diff] [blame] | 862 | target = sock_rcvlowat(sk, flags & MSG_WAITALL, len); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 863 | timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); |
| 864 | do { |
| 865 | bool zc = false; |
| 866 | int chunk = 0; |
| 867 | |
| 868 | skb = tls_wait_data(sk, flags, timeo, &err); |
| 869 | if (!skb) |
| 870 | goto recv_end; |
| 871 | |
| 872 | rxm = strp_msg(skb); |
| 873 | if (!cmsg) { |
| 874 | int cerr; |
| 875 | |
| 876 | cerr = put_cmsg(msg, SOL_TLS, TLS_GET_RECORD_TYPE, |
| 877 | sizeof(ctx->control), &ctx->control); |
| 878 | cmsg = true; |
| 879 | control = ctx->control; |
| 880 | if (ctx->control != TLS_RECORD_TYPE_DATA) { |
| 881 | if (cerr || msg->msg_flags & MSG_CTRUNC) { |
| 882 | err = -EIO; |
| 883 | goto recv_end; |
| 884 | } |
| 885 | } |
| 886 | } else if (control != ctx->control) { |
| 887 | goto recv_end; |
| 888 | } |
| 889 | |
| 890 | if (!ctx->decrypted) { |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 891 | int to_copy = rxm->full_len - tls_ctx->rx.overhead_size; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 892 | |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 893 | if (!is_kvec && to_copy <= len && |
| 894 | likely(!(flags & MSG_PEEK))) |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 895 | zc = true; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 896 | |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 897 | err = decrypt_skb_update(sk, skb, &msg->msg_iter, |
| 898 | &chunk, &zc); |
| 899 | if (err < 0) { |
| 900 | tls_err_abort(sk, EBADMSG); |
| 901 | goto recv_end; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 902 | } |
| 903 | ctx->decrypted = true; |
| 904 | } |
| 905 | |
| 906 | if (!zc) { |
| 907 | chunk = min_t(unsigned int, rxm->full_len, len); |
| 908 | err = skb_copy_datagram_msg(skb, rxm->offset, msg, |
| 909 | chunk); |
| 910 | if (err < 0) |
| 911 | goto recv_end; |
| 912 | } |
| 913 | |
| 914 | copied += chunk; |
| 915 | len -= chunk; |
| 916 | if (likely(!(flags & MSG_PEEK))) { |
| 917 | u8 control = ctx->control; |
| 918 | |
| 919 | if (tls_sw_advance_skb(sk, skb, chunk)) { |
| 920 | /* Return full control message to |
| 921 | * userspace before trying to parse |
| 922 | * another message type |
| 923 | */ |
| 924 | msg->msg_flags |= MSG_EOR; |
| 925 | if (control != TLS_RECORD_TYPE_DATA) |
| 926 | goto recv_end; |
| 927 | } |
| 928 | } |
Daniel Borkmann | 06030db | 2018-06-15 03:07:46 +0200 | [diff] [blame] | 929 | /* If we have a new message from strparser, continue now. */ |
| 930 | if (copied >= target && !ctx->recv_pkt) |
| 931 | break; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 932 | } while (len); |
| 933 | |
| 934 | recv_end: |
| 935 | release_sock(sk); |
| 936 | return copied ? : err; |
| 937 | } |
| 938 | |
| 939 | ssize_t tls_sw_splice_read(struct socket *sock, loff_t *ppos, |
| 940 | struct pipe_inode_info *pipe, |
| 941 | size_t len, unsigned int flags) |
| 942 | { |
| 943 | struct tls_context *tls_ctx = tls_get_ctx(sock->sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 944 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 945 | struct strp_msg *rxm = NULL; |
| 946 | struct sock *sk = sock->sk; |
| 947 | struct sk_buff *skb; |
| 948 | ssize_t copied = 0; |
| 949 | int err = 0; |
| 950 | long timeo; |
| 951 | int chunk; |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 952 | bool zc = false; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 953 | |
| 954 | lock_sock(sk); |
| 955 | |
| 956 | timeo = sock_rcvtimeo(sk, flags & MSG_DONTWAIT); |
| 957 | |
| 958 | skb = tls_wait_data(sk, flags, timeo, &err); |
| 959 | if (!skb) |
| 960 | goto splice_read_end; |
| 961 | |
| 962 | /* splice does not support reading control messages */ |
| 963 | if (ctx->control != TLS_RECORD_TYPE_DATA) { |
| 964 | err = -ENOTSUPP; |
| 965 | goto splice_read_end; |
| 966 | } |
| 967 | |
| 968 | if (!ctx->decrypted) { |
Vakul Garg | 0b243d0 | 2018-08-10 20:46:41 +0530 | [diff] [blame] | 969 | err = decrypt_skb_update(sk, skb, NULL, &chunk, &zc); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 970 | |
| 971 | if (err < 0) { |
| 972 | tls_err_abort(sk, EBADMSG); |
| 973 | goto splice_read_end; |
| 974 | } |
| 975 | ctx->decrypted = true; |
| 976 | } |
| 977 | rxm = strp_msg(skb); |
| 978 | |
| 979 | chunk = min_t(unsigned int, rxm->full_len, len); |
| 980 | copied = skb_splice_bits(skb, sk, rxm->offset, pipe, chunk, flags); |
| 981 | if (copied < 0) |
| 982 | goto splice_read_end; |
| 983 | |
| 984 | if (likely(!(flags & MSG_PEEK))) |
| 985 | tls_sw_advance_skb(sk, skb, copied); |
| 986 | |
| 987 | splice_read_end: |
| 988 | release_sock(sk); |
| 989 | return copied ? : err; |
| 990 | } |
| 991 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 992 | unsigned int tls_sw_poll(struct file *file, struct socket *sock, |
| 993 | struct poll_table_struct *wait) |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 994 | { |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 995 | unsigned int ret; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 996 | struct sock *sk = sock->sk; |
| 997 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 998 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 999 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1000 | /* Grab POLLOUT and POLLHUP from the underlying socket */ |
| 1001 | ret = ctx->sk_poll(file, sock, wait); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1002 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1003 | /* Clear POLLIN bits, and set based on recv_pkt */ |
| 1004 | ret &= ~(POLLIN | POLLRDNORM); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1005 | if (ctx->recv_pkt) |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1006 | ret |= POLLIN | POLLRDNORM; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1007 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1008 | return ret; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1009 | } |
| 1010 | |
| 1011 | static int tls_read_size(struct strparser *strp, struct sk_buff *skb) |
| 1012 | { |
| 1013 | struct tls_context *tls_ctx = tls_get_ctx(strp->sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1014 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Kees Cook | 3463e51 | 2018-06-25 16:55:05 -0700 | [diff] [blame] | 1015 | char header[TLS_HEADER_SIZE + MAX_IV_SIZE]; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1016 | struct strp_msg *rxm = strp_msg(skb); |
| 1017 | size_t cipher_overhead; |
| 1018 | size_t data_len = 0; |
| 1019 | int ret; |
| 1020 | |
| 1021 | /* Verify that we have a full TLS header, or wait for more data */ |
| 1022 | if (rxm->offset + tls_ctx->rx.prepend_size > skb->len) |
| 1023 | return 0; |
| 1024 | |
Kees Cook | 3463e51 | 2018-06-25 16:55:05 -0700 | [diff] [blame] | 1025 | /* Sanity-check size of on-stack buffer. */ |
| 1026 | if (WARN_ON(tls_ctx->rx.prepend_size > sizeof(header))) { |
| 1027 | ret = -EINVAL; |
| 1028 | goto read_failure; |
| 1029 | } |
| 1030 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1031 | /* Linearize header to local buffer */ |
| 1032 | ret = skb_copy_bits(skb, rxm->offset, header, tls_ctx->rx.prepend_size); |
| 1033 | |
| 1034 | if (ret < 0) |
| 1035 | goto read_failure; |
| 1036 | |
| 1037 | ctx->control = header[0]; |
| 1038 | |
| 1039 | data_len = ((header[4] & 0xFF) | (header[3] << 8)); |
| 1040 | |
| 1041 | cipher_overhead = tls_ctx->rx.tag_size + tls_ctx->rx.iv_size; |
| 1042 | |
| 1043 | if (data_len > TLS_MAX_PAYLOAD_SIZE + cipher_overhead) { |
| 1044 | ret = -EMSGSIZE; |
| 1045 | goto read_failure; |
| 1046 | } |
| 1047 | if (data_len < cipher_overhead) { |
| 1048 | ret = -EBADMSG; |
| 1049 | goto read_failure; |
| 1050 | } |
| 1051 | |
| 1052 | if (header[1] != TLS_VERSION_MINOR(tls_ctx->crypto_recv.version) || |
| 1053 | header[2] != TLS_VERSION_MAJOR(tls_ctx->crypto_recv.version)) { |
| 1054 | ret = -EINVAL; |
| 1055 | goto read_failure; |
| 1056 | } |
| 1057 | |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 1058 | #ifdef CONFIG_TLS_DEVICE |
| 1059 | handle_device_resync(strp->sk, TCP_SKB_CB(skb)->seq + rxm->offset, |
| 1060 | *(u64*)tls_ctx->rx.rec_seq); |
| 1061 | #endif |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1062 | return data_len + TLS_HEADER_SIZE; |
| 1063 | |
| 1064 | read_failure: |
| 1065 | tls_err_abort(strp->sk, ret); |
| 1066 | |
| 1067 | return ret; |
| 1068 | } |
| 1069 | |
| 1070 | static void tls_queue(struct strparser *strp, struct sk_buff *skb) |
| 1071 | { |
| 1072 | struct tls_context *tls_ctx = tls_get_ctx(strp->sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1073 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1074 | |
| 1075 | ctx->decrypted = false; |
| 1076 | |
| 1077 | ctx->recv_pkt = skb; |
| 1078 | strp_pause(strp); |
| 1079 | |
Vakul Garg | ad13acc | 2018-07-30 16:08:33 +0530 | [diff] [blame] | 1080 | ctx->saved_data_ready(strp->sk); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | static void tls_data_ready(struct sock *sk) |
| 1084 | { |
| 1085 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1086 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1087 | |
| 1088 | strp_data_ready(&ctx->strp); |
| 1089 | } |
| 1090 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1091 | void tls_sw_free_resources_tx(struct sock *sk) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1092 | { |
| 1093 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1094 | struct tls_sw_context_tx *ctx = tls_sw_ctx_tx(tls_ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1095 | |
Vakul Garg | 201876b | 2018-07-24 16:54:27 +0530 | [diff] [blame] | 1096 | crypto_free_aead(ctx->aead_send); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1097 | tls_free_both_sg(sk); |
| 1098 | |
| 1099 | kfree(ctx); |
| 1100 | } |
| 1101 | |
Boris Pismenny | 39f56e1 | 2018-07-13 14:33:41 +0300 | [diff] [blame] | 1102 | void tls_sw_release_resources_rx(struct sock *sk) |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1103 | { |
| 1104 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
| 1105 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
| 1106 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1107 | if (ctx->aead_recv) { |
Vakul Garg | 201876b | 2018-07-24 16:54:27 +0530 | [diff] [blame] | 1108 | kfree_skb(ctx->recv_pkt); |
| 1109 | ctx->recv_pkt = NULL; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1110 | crypto_free_aead(ctx->aead_recv); |
| 1111 | strp_stop(&ctx->strp); |
| 1112 | write_lock_bh(&sk->sk_callback_lock); |
| 1113 | sk->sk_data_ready = ctx->saved_data_ready; |
| 1114 | write_unlock_bh(&sk->sk_callback_lock); |
| 1115 | release_sock(sk); |
| 1116 | strp_done(&ctx->strp); |
| 1117 | lock_sock(sk); |
| 1118 | } |
Boris Pismenny | 39f56e1 | 2018-07-13 14:33:41 +0300 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | void tls_sw_free_resources_rx(struct sock *sk) |
| 1122 | { |
| 1123 | struct tls_context *tls_ctx = tls_get_ctx(sk); |
| 1124 | struct tls_sw_context_rx *ctx = tls_sw_ctx_rx(tls_ctx); |
| 1125 | |
| 1126 | tls_sw_release_resources_rx(sk); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1127 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1128 | kfree(ctx); |
| 1129 | } |
| 1130 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1131 | int tls_set_sw_offload(struct sock *sk, struct tls_context *ctx, int tx) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1132 | { |
| 1133 | char keyval[TLS_CIPHER_AES_GCM_128_KEY_SIZE]; |
| 1134 | struct tls_crypto_info *crypto_info; |
| 1135 | struct tls12_crypto_info_aes_gcm_128 *gcm_128_info; |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1136 | struct tls_sw_context_tx *sw_ctx_tx = NULL; |
| 1137 | struct tls_sw_context_rx *sw_ctx_rx = NULL; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1138 | struct cipher_context *cctx; |
| 1139 | struct crypto_aead **aead; |
| 1140 | struct strp_callbacks cb; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1141 | u16 nonce_size, tag_size, iv_size, rec_seq_size; |
| 1142 | char *iv, *rec_seq; |
| 1143 | int rc = 0; |
| 1144 | |
| 1145 | if (!ctx) { |
| 1146 | rc = -EINVAL; |
| 1147 | goto out; |
| 1148 | } |
| 1149 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1150 | if (tx) { |
Boris Pismenny | b190a58 | 2018-07-13 14:33:42 +0300 | [diff] [blame] | 1151 | if (!ctx->priv_ctx_tx) { |
| 1152 | sw_ctx_tx = kzalloc(sizeof(*sw_ctx_tx), GFP_KERNEL); |
| 1153 | if (!sw_ctx_tx) { |
| 1154 | rc = -ENOMEM; |
| 1155 | goto out; |
| 1156 | } |
| 1157 | ctx->priv_ctx_tx = sw_ctx_tx; |
| 1158 | } else { |
| 1159 | sw_ctx_tx = |
| 1160 | (struct tls_sw_context_tx *)ctx->priv_ctx_tx; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1161 | } |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1162 | } else { |
Boris Pismenny | b190a58 | 2018-07-13 14:33:42 +0300 | [diff] [blame] | 1163 | if (!ctx->priv_ctx_rx) { |
| 1164 | sw_ctx_rx = kzalloc(sizeof(*sw_ctx_rx), GFP_KERNEL); |
| 1165 | if (!sw_ctx_rx) { |
| 1166 | rc = -ENOMEM; |
| 1167 | goto out; |
| 1168 | } |
| 1169 | ctx->priv_ctx_rx = sw_ctx_rx; |
| 1170 | } else { |
| 1171 | sw_ctx_rx = |
| 1172 | (struct tls_sw_context_rx *)ctx->priv_ctx_rx; |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1173 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1174 | } |
| 1175 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1176 | if (tx) { |
Boris Pismenny | b190a58 | 2018-07-13 14:33:42 +0300 | [diff] [blame] | 1177 | crypto_init_wait(&sw_ctx_tx->async_wait); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1178 | crypto_info = &ctx->crypto_send; |
| 1179 | cctx = &ctx->tx; |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1180 | aead = &sw_ctx_tx->aead_send; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1181 | } else { |
Boris Pismenny | b190a58 | 2018-07-13 14:33:42 +0300 | [diff] [blame] | 1182 | crypto_init_wait(&sw_ctx_rx->async_wait); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1183 | crypto_info = &ctx->crypto_recv; |
| 1184 | cctx = &ctx->rx; |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1185 | aead = &sw_ctx_rx->aead_recv; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1186 | } |
| 1187 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1188 | switch (crypto_info->cipher_type) { |
| 1189 | case TLS_CIPHER_AES_GCM_128: { |
| 1190 | nonce_size = TLS_CIPHER_AES_GCM_128_IV_SIZE; |
| 1191 | tag_size = TLS_CIPHER_AES_GCM_128_TAG_SIZE; |
| 1192 | iv_size = TLS_CIPHER_AES_GCM_128_IV_SIZE; |
| 1193 | iv = ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->iv; |
| 1194 | rec_seq_size = TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE; |
| 1195 | rec_seq = |
| 1196 | ((struct tls12_crypto_info_aes_gcm_128 *)crypto_info)->rec_seq; |
| 1197 | gcm_128_info = |
| 1198 | (struct tls12_crypto_info_aes_gcm_128 *)crypto_info; |
| 1199 | break; |
| 1200 | } |
| 1201 | default: |
| 1202 | rc = -EINVAL; |
Sabrina Dubroca | cf6d43e | 2018-01-16 16:04:26 +0100 | [diff] [blame] | 1203 | goto free_priv; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1204 | } |
| 1205 | |
Kees Cook | b16520f | 2018-04-10 17:52:34 -0700 | [diff] [blame] | 1206 | /* Sanity-check the IV size for stack allocations. */ |
Kees Cook | 3463e51 | 2018-06-25 16:55:05 -0700 | [diff] [blame] | 1207 | if (iv_size > MAX_IV_SIZE || nonce_size > MAX_IV_SIZE) { |
Kees Cook | b16520f | 2018-04-10 17:52:34 -0700 | [diff] [blame] | 1208 | rc = -EINVAL; |
| 1209 | goto free_priv; |
| 1210 | } |
| 1211 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1212 | cctx->prepend_size = TLS_HEADER_SIZE + nonce_size; |
| 1213 | cctx->tag_size = tag_size; |
| 1214 | cctx->overhead_size = cctx->prepend_size + cctx->tag_size; |
| 1215 | cctx->iv_size = iv_size; |
| 1216 | cctx->iv = kmalloc(iv_size + TLS_CIPHER_AES_GCM_128_SALT_SIZE, |
| 1217 | GFP_KERNEL); |
| 1218 | if (!cctx->iv) { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1219 | rc = -ENOMEM; |
Sabrina Dubroca | cf6d43e | 2018-01-16 16:04:26 +0100 | [diff] [blame] | 1220 | goto free_priv; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1221 | } |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1222 | memcpy(cctx->iv, gcm_128_info->salt, TLS_CIPHER_AES_GCM_128_SALT_SIZE); |
| 1223 | memcpy(cctx->iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, iv, iv_size); |
| 1224 | cctx->rec_seq_size = rec_seq_size; |
zhong jiang | 969d509 | 2018-08-01 00:50:24 +0800 | [diff] [blame] | 1225 | cctx->rec_seq = kmemdup(rec_seq, rec_seq_size, GFP_KERNEL); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1226 | if (!cctx->rec_seq) { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1227 | rc = -ENOMEM; |
| 1228 | goto free_iv; |
| 1229 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1230 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1231 | if (sw_ctx_tx) { |
| 1232 | sg_init_table(sw_ctx_tx->sg_encrypted_data, |
| 1233 | ARRAY_SIZE(sw_ctx_tx->sg_encrypted_data)); |
| 1234 | sg_init_table(sw_ctx_tx->sg_plaintext_data, |
| 1235 | ARRAY_SIZE(sw_ctx_tx->sg_plaintext_data)); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1236 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1237 | sg_init_table(sw_ctx_tx->sg_aead_in, 2); |
| 1238 | sg_set_buf(&sw_ctx_tx->sg_aead_in[0], sw_ctx_tx->aad_space, |
| 1239 | sizeof(sw_ctx_tx->aad_space)); |
| 1240 | sg_unmark_end(&sw_ctx_tx->sg_aead_in[1]); |
| 1241 | sg_chain(sw_ctx_tx->sg_aead_in, 2, |
| 1242 | sw_ctx_tx->sg_plaintext_data); |
| 1243 | sg_init_table(sw_ctx_tx->sg_aead_out, 2); |
| 1244 | sg_set_buf(&sw_ctx_tx->sg_aead_out[0], sw_ctx_tx->aad_space, |
| 1245 | sizeof(sw_ctx_tx->aad_space)); |
| 1246 | sg_unmark_end(&sw_ctx_tx->sg_aead_out[1]); |
| 1247 | sg_chain(sw_ctx_tx->sg_aead_out, 2, |
| 1248 | sw_ctx_tx->sg_encrypted_data); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1249 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1250 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1251 | if (!*aead) { |
| 1252 | *aead = crypto_alloc_aead("gcm(aes)", 0, 0); |
| 1253 | if (IS_ERR(*aead)) { |
| 1254 | rc = PTR_ERR(*aead); |
| 1255 | *aead = NULL; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1256 | goto free_rec_seq; |
| 1257 | } |
| 1258 | } |
| 1259 | |
| 1260 | ctx->push_pending_record = tls_sw_push_pending_record; |
| 1261 | |
| 1262 | memcpy(keyval, gcm_128_info->key, TLS_CIPHER_AES_GCM_128_KEY_SIZE); |
| 1263 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1264 | rc = crypto_aead_setkey(*aead, keyval, |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1265 | TLS_CIPHER_AES_GCM_128_KEY_SIZE); |
| 1266 | if (rc) |
| 1267 | goto free_aead; |
| 1268 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1269 | rc = crypto_aead_setauthsize(*aead, cctx->tag_size); |
| 1270 | if (rc) |
| 1271 | goto free_aead; |
| 1272 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1273 | if (sw_ctx_rx) { |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1274 | /* Set up strparser */ |
| 1275 | memset(&cb, 0, sizeof(cb)); |
| 1276 | cb.rcv_msg = tls_queue; |
| 1277 | cb.parse_msg = tls_read_size; |
| 1278 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1279 | strp_init(&sw_ctx_rx->strp, sk, &cb); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1280 | |
| 1281 | write_lock_bh(&sk->sk_callback_lock); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1282 | sw_ctx_rx->saved_data_ready = sk->sk_data_ready; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1283 | sk->sk_data_ready = tls_data_ready; |
| 1284 | write_unlock_bh(&sk->sk_callback_lock); |
| 1285 | |
Linus Torvalds | a11e1d4 | 2018-06-28 09:43:44 -0700 | [diff] [blame] | 1286 | sw_ctx_rx->sk_poll = sk->sk_socket->ops->poll; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1287 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1288 | strp_check_rcv(&sw_ctx_rx->strp); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | goto out; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1292 | |
| 1293 | free_aead: |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1294 | crypto_free_aead(*aead); |
| 1295 | *aead = NULL; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1296 | free_rec_seq: |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 1297 | kfree(cctx->rec_seq); |
| 1298 | cctx->rec_seq = NULL; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1299 | free_iv: |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1300 | kfree(cctx->iv); |
| 1301 | cctx->iv = NULL; |
Sabrina Dubroca | cf6d43e | 2018-01-16 16:04:26 +0100 | [diff] [blame] | 1302 | free_priv: |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 1303 | if (tx) { |
| 1304 | kfree(ctx->priv_ctx_tx); |
| 1305 | ctx->priv_ctx_tx = NULL; |
| 1306 | } else { |
| 1307 | kfree(ctx->priv_ctx_rx); |
| 1308 | ctx->priv_ctx_rx = NULL; |
| 1309 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 1310 | out: |
| 1311 | return rc; |
| 1312 | } |