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 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the |
| 9 | * OpenIB.org BSD license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or |
| 12 | * without modification, are permitted provided that the following |
| 13 | * conditions are met: |
| 14 | * |
| 15 | * - Redistributions of source code must retain the above |
| 16 | * copyright notice, this list of conditions and the following |
| 17 | * disclaimer. |
| 18 | * |
| 19 | * - Redistributions in binary form must reproduce the above |
| 20 | * copyright notice, this list of conditions and the following |
| 21 | * disclaimer in the documentation and/or other materials |
| 22 | * provided with the distribution. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 31 | * SOFTWARE. |
| 32 | */ |
| 33 | |
| 34 | #include <linux/module.h> |
| 35 | |
| 36 | #include <net/tcp.h> |
| 37 | #include <net/inet_common.h> |
| 38 | #include <linux/highmem.h> |
| 39 | #include <linux/netdevice.h> |
| 40 | #include <linux/sched/signal.h> |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 41 | #include <linux/inetdevice.h> |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 42 | |
| 43 | #include <net/tls.h> |
| 44 | |
| 45 | MODULE_AUTHOR("Mellanox Technologies"); |
| 46 | MODULE_DESCRIPTION("Transport Layer Security Support"); |
| 47 | MODULE_LICENSE("Dual BSD/GPL"); |
Daniel Borkmann | 037b0b8 | 2018-08-16 21:49:06 +0200 | [diff] [blame] | 48 | MODULE_ALIAS_TCP_ULP("tls"); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 49 | |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 50 | enum { |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 51 | TLSV4, |
| 52 | TLSV6, |
| 53 | TLS_NUM_PROTS, |
| 54 | }; |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 55 | |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 56 | static struct proto *saved_tcpv6_prot; |
| 57 | static DEFINE_MUTEX(tcpv6_prot_mutex); |
John Fastabend | 28cb6f1 | 2018-12-20 11:35:36 -0800 | [diff] [blame] | 58 | static struct proto *saved_tcpv4_prot; |
| 59 | static DEFINE_MUTEX(tcpv4_prot_mutex); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 60 | static LIST_HEAD(device_list); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 61 | static DEFINE_SPINLOCK(device_spinlock); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 62 | static struct proto tls_prots[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG]; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 63 | static struct proto_ops tls_sw_proto_ops; |
Atul Gupta | 63a6b3f | 2019-01-17 20:55:53 -0800 | [diff] [blame] | 64 | static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG], |
| 65 | struct proto *base); |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 66 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 67 | static void update_sk_prot(struct sock *sk, struct tls_context *ctx) |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 68 | { |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 69 | int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4; |
| 70 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 71 | sk->sk_prot = &tls_prots[ip_ver][ctx->tx_conf][ctx->rx_conf]; |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 72 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 73 | |
| 74 | int wait_on_pending_writer(struct sock *sk, long *timeo) |
| 75 | { |
| 76 | int rc = 0; |
| 77 | DEFINE_WAIT_FUNC(wait, woken_wake_function); |
| 78 | |
| 79 | add_wait_queue(sk_sleep(sk), &wait); |
| 80 | while (1) { |
| 81 | if (!*timeo) { |
| 82 | rc = -EAGAIN; |
| 83 | break; |
| 84 | } |
| 85 | |
| 86 | if (signal_pending(current)) { |
| 87 | rc = sock_intr_errno(*timeo); |
| 88 | break; |
| 89 | } |
| 90 | |
| 91 | if (sk_wait_event(sk, timeo, !sk->sk_write_pending, &wait)) |
| 92 | break; |
| 93 | } |
| 94 | remove_wait_queue(sk_sleep(sk), &wait); |
| 95 | return rc; |
| 96 | } |
| 97 | |
| 98 | int tls_push_sg(struct sock *sk, |
| 99 | struct tls_context *ctx, |
| 100 | struct scatterlist *sg, |
| 101 | u16 first_offset, |
| 102 | int flags) |
| 103 | { |
| 104 | int sendpage_flags = flags | MSG_SENDPAGE_NOTLAST; |
| 105 | int ret = 0; |
| 106 | struct page *p; |
| 107 | size_t size; |
| 108 | int offset = first_offset; |
| 109 | |
| 110 | size = sg->length - offset; |
| 111 | offset += sg->offset; |
| 112 | |
Dave Watson | c212d2c | 2018-05-01 13:05:39 -0700 | [diff] [blame] | 113 | ctx->in_tcp_sendpages = true; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 114 | while (1) { |
| 115 | if (sg_is_last(sg)) |
| 116 | sendpage_flags = flags; |
| 117 | |
| 118 | /* is sending application-limited? */ |
| 119 | tcp_rate_check_app_limited(sk); |
| 120 | p = sg_page(sg); |
| 121 | retry: |
| 122 | ret = do_tcp_sendpages(sk, p, offset, size, sendpage_flags); |
| 123 | |
| 124 | if (ret != size) { |
| 125 | if (ret > 0) { |
| 126 | offset += ret; |
| 127 | size -= ret; |
| 128 | goto retry; |
| 129 | } |
| 130 | |
| 131 | offset -= sg->offset; |
| 132 | ctx->partially_sent_offset = offset; |
| 133 | ctx->partially_sent_record = (void *)sg; |
Andre Tomt | 080324c | 2018-05-07 04:24:39 +0200 | [diff] [blame] | 134 | ctx->in_tcp_sendpages = false; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 135 | return ret; |
| 136 | } |
| 137 | |
| 138 | put_page(p); |
| 139 | sk_mem_uncharge(sk, sg->length); |
| 140 | sg = sg_next(sg); |
| 141 | if (!sg) |
| 142 | break; |
| 143 | |
| 144 | offset = sg->offset; |
| 145 | size = sg->length; |
| 146 | } |
| 147 | |
Dave Watson | c212d2c | 2018-05-01 13:05:39 -0700 | [diff] [blame] | 148 | ctx->in_tcp_sendpages = false; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 149 | |
| 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | static int tls_handle_open_record(struct sock *sk, int flags) |
| 154 | { |
| 155 | struct tls_context *ctx = tls_get_ctx(sk); |
| 156 | |
| 157 | if (tls_is_pending_open_record(ctx)) |
| 158 | return ctx->push_pending_record(sk, flags); |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | int tls_proccess_cmsg(struct sock *sk, struct msghdr *msg, |
| 164 | unsigned char *record_type) |
| 165 | { |
| 166 | struct cmsghdr *cmsg; |
| 167 | int rc = -EINVAL; |
| 168 | |
| 169 | for_each_cmsghdr(cmsg, msg) { |
| 170 | if (!CMSG_OK(msg, cmsg)) |
| 171 | return -EINVAL; |
| 172 | if (cmsg->cmsg_level != SOL_TLS) |
| 173 | continue; |
| 174 | |
| 175 | switch (cmsg->cmsg_type) { |
| 176 | case TLS_SET_RECORD_TYPE: |
| 177 | if (cmsg->cmsg_len < CMSG_LEN(sizeof(*record_type))) |
| 178 | return -EINVAL; |
| 179 | |
| 180 | if (msg->msg_flags & MSG_MORE) |
| 181 | return -EINVAL; |
| 182 | |
| 183 | rc = tls_handle_open_record(sk, msg->msg_flags); |
| 184 | if (rc) |
| 185 | return rc; |
| 186 | |
| 187 | *record_type = *(unsigned char *)CMSG_DATA(cmsg); |
| 188 | rc = 0; |
| 189 | break; |
| 190 | default: |
| 191 | return -EINVAL; |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | return rc; |
| 196 | } |
| 197 | |
Vakul Garg | a42055e | 2018-09-21 09:46:13 +0530 | [diff] [blame] | 198 | int tls_push_partial_record(struct sock *sk, struct tls_context *ctx, |
| 199 | int flags) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 200 | { |
| 201 | struct scatterlist *sg; |
| 202 | u16 offset; |
| 203 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 204 | sg = ctx->partially_sent_record; |
| 205 | offset = ctx->partially_sent_offset; |
| 206 | |
| 207 | ctx->partially_sent_record = NULL; |
| 208 | return tls_push_sg(sk, ctx, sg, offset, flags); |
| 209 | } |
| 210 | |
Jakub Kicinski | 35b71a34 | 2019-04-10 11:04:31 -0700 | [diff] [blame] | 211 | bool tls_free_partial_record(struct sock *sk, struct tls_context *ctx) |
| 212 | { |
| 213 | struct scatterlist *sg; |
| 214 | |
| 215 | sg = ctx->partially_sent_record; |
| 216 | if (!sg) |
| 217 | return false; |
| 218 | |
| 219 | while (1) { |
| 220 | put_page(sg_page(sg)); |
| 221 | sk_mem_uncharge(sk, sg->length); |
| 222 | |
| 223 | if (sg_is_last(sg)) |
| 224 | break; |
| 225 | sg++; |
| 226 | } |
| 227 | ctx->partially_sent_record = NULL; |
| 228 | return true; |
| 229 | } |
| 230 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 231 | static void tls_write_space(struct sock *sk) |
| 232 | { |
| 233 | struct tls_context *ctx = tls_get_ctx(sk); |
| 234 | |
John Fastabend | 67db7cd | 2018-08-22 08:37:32 -0700 | [diff] [blame] | 235 | /* If in_tcp_sendpages call lower protocol write space handler |
| 236 | * to ensure we wake up any waiting operations there. For example |
| 237 | * if do_tcp_sendpages where to call sk_wait_event. |
| 238 | */ |
| 239 | if (ctx->in_tcp_sendpages) { |
| 240 | ctx->sk_write_space(sk); |
Dave Watson | c212d2c | 2018-05-01 13:05:39 -0700 | [diff] [blame] | 241 | return; |
John Fastabend | 67db7cd | 2018-08-22 08:37:32 -0700 | [diff] [blame] | 242 | } |
Dave Watson | c212d2c | 2018-05-01 13:05:39 -0700 | [diff] [blame] | 243 | |
Boris Pismenny | 7463d3a | 2019-02-27 17:38:04 +0200 | [diff] [blame] | 244 | #ifdef CONFIG_TLS_DEVICE |
| 245 | if (ctx->tx_conf == TLS_HW) |
| 246 | tls_device_write_space(sk, ctx); |
| 247 | else |
| 248 | #endif |
| 249 | tls_sw_write_space(sk, ctx); |
Vakul Garg | 4504ab0 | 2019-03-12 08:22:57 +0000 | [diff] [blame] | 250 | |
| 251 | ctx->sk_write_space(sk); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 252 | } |
| 253 | |
Jakub Kicinski | acd3e96 | 2019-06-28 16:11:39 -0700 | [diff] [blame] | 254 | void tls_ctx_free(struct tls_context *ctx) |
Sabrina Dubroca | 86029d1 | 2018-09-12 17:44:42 +0200 | [diff] [blame] | 255 | { |
| 256 | if (!ctx) |
| 257 | return; |
| 258 | |
| 259 | memzero_explicit(&ctx->crypto_send, sizeof(ctx->crypto_send)); |
| 260 | memzero_explicit(&ctx->crypto_recv, sizeof(ctx->crypto_recv)); |
| 261 | kfree(ctx); |
| 262 | } |
| 263 | |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 264 | static void tls_ctx_free_deferred(struct work_struct *gc) |
| 265 | { |
| 266 | struct tls_context *ctx = container_of(gc, struct tls_context, gc); |
| 267 | |
| 268 | /* Ensure any remaining work items are completed. The sk will |
| 269 | * already have lost its tls_ctx reference by the time we get |
| 270 | * here so no xmit operation will actually be performed. |
| 271 | */ |
| 272 | if (ctx->tx_conf == TLS_SW) { |
| 273 | tls_sw_cancel_work_tx(ctx); |
| 274 | tls_sw_free_ctx_tx(ctx); |
| 275 | } |
| 276 | |
| 277 | if (ctx->rx_conf == TLS_SW) { |
| 278 | tls_sw_strparser_done(ctx); |
| 279 | tls_sw_free_ctx_rx(ctx); |
| 280 | } |
| 281 | |
| 282 | tls_ctx_free(ctx); |
| 283 | } |
| 284 | |
| 285 | static void tls_ctx_free_wq(struct tls_context *ctx) |
| 286 | { |
| 287 | INIT_WORK(&ctx->gc, tls_ctx_free_deferred); |
| 288 | schedule_work(&ctx->gc); |
| 289 | } |
| 290 | |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 291 | static void tls_sk_proto_cleanup(struct sock *sk, |
| 292 | struct tls_context *ctx, long timeo) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 293 | { |
Dirk van der Merwe | 9354544 | 2019-06-23 21:26:58 -0700 | [diff] [blame] | 294 | if (unlikely(sk->sk_write_pending) && |
| 295 | !wait_on_pending_writer(sk, &timeo)) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 296 | tls_handle_open_record(sk, 0); |
| 297 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 298 | /* We need these for tls_sw_fallback handling of other packets */ |
| 299 | if (ctx->tx_conf == TLS_SW) { |
| 300 | kfree(ctx->tx.rec_seq); |
| 301 | kfree(ctx->tx.iv); |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 302 | tls_sw_release_resources_tx(sk); |
Jakub Kicinski | 903f1a1 | 2019-04-10 16:23:39 -0700 | [diff] [blame] | 303 | #ifdef CONFIG_TLS_DEVICE |
Jakub Kicinski | 35b71a34 | 2019-04-10 11:04:31 -0700 | [diff] [blame] | 304 | } else if (ctx->tx_conf == TLS_HW) { |
| 305 | tls_device_free_resources_tx(sk); |
Jakub Kicinski | 903f1a1 | 2019-04-10 16:23:39 -0700 | [diff] [blame] | 306 | #endif |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 307 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 308 | |
Jakub Kicinski | 12c7686 | 2019-04-19 16:52:19 -0700 | [diff] [blame] | 309 | if (ctx->rx_conf == TLS_SW) |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 310 | tls_sw_release_resources_rx(sk); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 311 | |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 312 | #ifdef CONFIG_TLS_DEVICE |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 313 | if (ctx->rx_conf == TLS_HW) |
| 314 | tls_device_offload_cleanup_rx(sk); |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 315 | #endif |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 316 | } |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 317 | |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 318 | static void tls_sk_proto_unhash(struct sock *sk) |
| 319 | { |
| 320 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 321 | long timeo = sock_sndtimeo(sk, 0); |
| 322 | struct tls_context *ctx; |
| 323 | |
| 324 | if (unlikely(!icsk->icsk_ulp_data)) { |
| 325 | if (sk->sk_prot->unhash) |
| 326 | sk->sk_prot->unhash(sk); |
| 327 | } |
| 328 | |
| 329 | ctx = tls_get_ctx(sk); |
| 330 | tls_sk_proto_cleanup(sk, ctx, timeo); |
| 331 | icsk->icsk_ulp_data = NULL; |
| 332 | |
| 333 | if (ctx->sk_proto->unhash) |
| 334 | ctx->sk_proto->unhash(sk); |
| 335 | tls_ctx_free_wq(ctx); |
| 336 | } |
| 337 | |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 338 | static void tls_sk_proto_close(struct sock *sk, long timeout) |
| 339 | { |
| 340 | void (*sk_proto_close)(struct sock *sk, long timeout); |
| 341 | struct tls_context *ctx = tls_get_ctx(sk); |
| 342 | long timeo = sock_sndtimeo(sk, 0); |
| 343 | bool free_ctx; |
| 344 | |
| 345 | if (ctx->tx_conf == TLS_SW) |
| 346 | tls_sw_cancel_work_tx(ctx); |
| 347 | |
| 348 | lock_sock(sk); |
| 349 | free_ctx = ctx->tx_conf != TLS_HW && ctx->rx_conf != TLS_HW; |
| 350 | sk_proto_close = ctx->sk_proto_close; |
| 351 | |
| 352 | if (ctx->tx_conf != TLS_BASE || ctx->rx_conf != TLS_BASE) |
| 353 | tls_sk_proto_cleanup(sk, ctx, timeo); |
| 354 | |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 355 | sk->sk_prot = ctx->sk_proto; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 356 | release_sock(sk); |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 357 | if (ctx->tx_conf == TLS_SW) |
| 358 | tls_sw_free_ctx_tx(ctx); |
| 359 | if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW) |
| 360 | tls_sw_strparser_done(ctx); |
| 361 | if (ctx->rx_conf == TLS_SW) |
| 362 | tls_sw_free_ctx_rx(ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 363 | sk_proto_close(sk, timeout); |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 364 | |
Eric Dumazet | 98f0a39 | 2018-05-05 08:35:04 -0700 | [diff] [blame] | 365 | if (free_ctx) |
Sabrina Dubroca | 86029d1 | 2018-09-12 17:44:42 +0200 | [diff] [blame] | 366 | tls_ctx_free(ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | static int do_tls_getsockopt_tx(struct sock *sk, char __user *optval, |
| 370 | int __user *optlen) |
| 371 | { |
| 372 | int rc = 0; |
| 373 | struct tls_context *ctx = tls_get_ctx(sk); |
| 374 | struct tls_crypto_info *crypto_info; |
| 375 | int len; |
| 376 | |
| 377 | if (get_user(len, optlen)) |
| 378 | return -EFAULT; |
| 379 | |
| 380 | if (!optval || (len < sizeof(*crypto_info))) { |
| 381 | rc = -EINVAL; |
| 382 | goto out; |
| 383 | } |
| 384 | |
| 385 | if (!ctx) { |
| 386 | rc = -EBUSY; |
| 387 | goto out; |
| 388 | } |
| 389 | |
| 390 | /* get user crypto info */ |
Sabrina Dubroca | 86029d1 | 2018-09-12 17:44:42 +0200 | [diff] [blame] | 391 | crypto_info = &ctx->crypto_send.info; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 392 | |
| 393 | if (!TLS_CRYPTO_INFO_READY(crypto_info)) { |
| 394 | rc = -EBUSY; |
| 395 | goto out; |
| 396 | } |
| 397 | |
Matthias Rosenfelder | 5a3b886 | 2017-07-06 00:56:36 -0400 | [diff] [blame] | 398 | if (len == sizeof(*crypto_info)) { |
Dan Carpenter | ac55cd6 | 2017-06-23 13:15:44 +0300 | [diff] [blame] | 399 | if (copy_to_user(optval, crypto_info, sizeof(*crypto_info))) |
| 400 | rc = -EFAULT; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 401 | goto out; |
| 402 | } |
| 403 | |
| 404 | switch (crypto_info->cipher_type) { |
| 405 | case TLS_CIPHER_AES_GCM_128: { |
| 406 | struct tls12_crypto_info_aes_gcm_128 * |
| 407 | crypto_info_aes_gcm_128 = |
| 408 | container_of(crypto_info, |
| 409 | struct tls12_crypto_info_aes_gcm_128, |
| 410 | info); |
| 411 | |
| 412 | if (len != sizeof(*crypto_info_aes_gcm_128)) { |
| 413 | rc = -EINVAL; |
| 414 | goto out; |
| 415 | } |
| 416 | lock_sock(sk); |
Boris Pismenny | a1dfa68 | 2018-02-14 10:46:06 +0200 | [diff] [blame] | 417 | memcpy(crypto_info_aes_gcm_128->iv, |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 418 | ctx->tx.iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE, |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 419 | TLS_CIPHER_AES_GCM_128_IV_SIZE); |
Dave Watson | dbe4255 | 2018-03-22 10:10:06 -0700 | [diff] [blame] | 420 | memcpy(crypto_info_aes_gcm_128->rec_seq, ctx->tx.rec_seq, |
Boris Pismenny | c410c19 | 2018-02-14 10:46:08 +0200 | [diff] [blame] | 421 | TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 422 | release_sock(sk); |
Dan Carpenter | ac55cd6 | 2017-06-23 13:15:44 +0300 | [diff] [blame] | 423 | if (copy_to_user(optval, |
| 424 | crypto_info_aes_gcm_128, |
| 425 | sizeof(*crypto_info_aes_gcm_128))) |
| 426 | rc = -EFAULT; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 427 | break; |
| 428 | } |
Dave Watson | fb99bce | 2019-01-30 21:58:05 +0000 | [diff] [blame] | 429 | case TLS_CIPHER_AES_GCM_256: { |
| 430 | struct tls12_crypto_info_aes_gcm_256 * |
| 431 | crypto_info_aes_gcm_256 = |
| 432 | container_of(crypto_info, |
| 433 | struct tls12_crypto_info_aes_gcm_256, |
| 434 | info); |
| 435 | |
| 436 | if (len != sizeof(*crypto_info_aes_gcm_256)) { |
| 437 | rc = -EINVAL; |
| 438 | goto out; |
| 439 | } |
| 440 | lock_sock(sk); |
| 441 | memcpy(crypto_info_aes_gcm_256->iv, |
| 442 | ctx->tx.iv + TLS_CIPHER_AES_GCM_256_SALT_SIZE, |
| 443 | TLS_CIPHER_AES_GCM_256_IV_SIZE); |
| 444 | memcpy(crypto_info_aes_gcm_256->rec_seq, ctx->tx.rec_seq, |
| 445 | TLS_CIPHER_AES_GCM_256_REC_SEQ_SIZE); |
| 446 | release_sock(sk); |
| 447 | if (copy_to_user(optval, |
| 448 | crypto_info_aes_gcm_256, |
| 449 | sizeof(*crypto_info_aes_gcm_256))) |
| 450 | rc = -EFAULT; |
| 451 | break; |
| 452 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 453 | default: |
| 454 | rc = -EINVAL; |
| 455 | } |
| 456 | |
| 457 | out: |
| 458 | return rc; |
| 459 | } |
| 460 | |
| 461 | static int do_tls_getsockopt(struct sock *sk, int optname, |
| 462 | char __user *optval, int __user *optlen) |
| 463 | { |
| 464 | int rc = 0; |
| 465 | |
| 466 | switch (optname) { |
| 467 | case TLS_TX: |
| 468 | rc = do_tls_getsockopt_tx(sk, optval, optlen); |
| 469 | break; |
| 470 | default: |
| 471 | rc = -ENOPROTOOPT; |
| 472 | break; |
| 473 | } |
| 474 | return rc; |
| 475 | } |
| 476 | |
| 477 | static int tls_getsockopt(struct sock *sk, int level, int optname, |
| 478 | char __user *optval, int __user *optlen) |
| 479 | { |
| 480 | struct tls_context *ctx = tls_get_ctx(sk); |
| 481 | |
| 482 | if (level != SOL_TLS) |
| 483 | return ctx->getsockopt(sk, level, optname, optval, optlen); |
| 484 | |
| 485 | return do_tls_getsockopt(sk, optname, optval, optlen); |
| 486 | } |
| 487 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 488 | static int do_tls_setsockopt_conf(struct sock *sk, char __user *optval, |
| 489 | unsigned int optlen, int tx) |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 490 | { |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 491 | struct tls_crypto_info *crypto_info; |
Vakul Garg | 4509de1 | 2019-02-14 07:11:35 +0000 | [diff] [blame] | 492 | struct tls_crypto_info *alt_crypto_info; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 493 | struct tls_context *ctx = tls_get_ctx(sk); |
Dave Watson | fb99bce | 2019-01-30 21:58:05 +0000 | [diff] [blame] | 494 | size_t optsize; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 495 | int rc = 0; |
Dave Watson | 5837158 | 2018-03-22 10:10:26 -0700 | [diff] [blame] | 496 | int conf; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 497 | |
| 498 | if (!optval || (optlen < sizeof(*crypto_info))) { |
| 499 | rc = -EINVAL; |
| 500 | goto out; |
| 501 | } |
| 502 | |
Vakul Garg | 4509de1 | 2019-02-14 07:11:35 +0000 | [diff] [blame] | 503 | if (tx) { |
Sabrina Dubroca | 86029d1 | 2018-09-12 17:44:42 +0200 | [diff] [blame] | 504 | crypto_info = &ctx->crypto_send.info; |
Vakul Garg | 4509de1 | 2019-02-14 07:11:35 +0000 | [diff] [blame] | 505 | alt_crypto_info = &ctx->crypto_recv.info; |
| 506 | } else { |
Sabrina Dubroca | 86029d1 | 2018-09-12 17:44:42 +0200 | [diff] [blame] | 507 | crypto_info = &ctx->crypto_recv.info; |
Vakul Garg | 4509de1 | 2019-02-14 07:11:35 +0000 | [diff] [blame] | 508 | alt_crypto_info = &ctx->crypto_send.info; |
| 509 | } |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 510 | |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 511 | /* Currently we don't support set crypto info more than one time */ |
Sabrina Dubroca | 877d17c | 2018-01-16 16:04:27 +0100 | [diff] [blame] | 512 | if (TLS_CRYPTO_INFO_READY(crypto_info)) { |
| 513 | rc = -EBUSY; |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 514 | goto out; |
Sabrina Dubroca | 877d17c | 2018-01-16 16:04:27 +0100 | [diff] [blame] | 515 | } |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 516 | |
| 517 | rc = copy_from_user(crypto_info, optval, sizeof(*crypto_info)); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 518 | if (rc) { |
| 519 | rc = -EFAULT; |
Boris Pismenny | 257082e | 2018-02-14 10:46:07 +0200 | [diff] [blame] | 520 | goto err_crypto_info; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | /* check version */ |
Dave Watson | 130b392 | 2019-01-30 21:58:31 +0000 | [diff] [blame] | 524 | if (crypto_info->version != TLS_1_2_VERSION && |
| 525 | crypto_info->version != TLS_1_3_VERSION) { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 526 | rc = -ENOTSUPP; |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 527 | goto err_crypto_info; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 528 | } |
| 529 | |
Vakul Garg | 4509de1 | 2019-02-14 07:11:35 +0000 | [diff] [blame] | 530 | /* Ensure that TLS version and ciphers are same in both directions */ |
| 531 | if (TLS_CRYPTO_INFO_READY(alt_crypto_info)) { |
| 532 | if (alt_crypto_info->version != crypto_info->version || |
| 533 | alt_crypto_info->cipher_type != crypto_info->cipher_type) { |
| 534 | rc = -EINVAL; |
| 535 | goto err_crypto_info; |
| 536 | } |
| 537 | } |
| 538 | |
Ilya Lesokhin | 196c31b | 2017-11-13 10:22:48 +0200 | [diff] [blame] | 539 | switch (crypto_info->cipher_type) { |
Dave Watson | fb99bce | 2019-01-30 21:58:05 +0000 | [diff] [blame] | 540 | case TLS_CIPHER_AES_GCM_128: |
Vakul Garg | f295b3a | 2019-03-20 02:03:36 +0000 | [diff] [blame] | 541 | optsize = sizeof(struct tls12_crypto_info_aes_gcm_128); |
| 542 | break; |
Dave Watson | fb99bce | 2019-01-30 21:58:05 +0000 | [diff] [blame] | 543 | case TLS_CIPHER_AES_GCM_256: { |
Vakul Garg | f295b3a | 2019-03-20 02:03:36 +0000 | [diff] [blame] | 544 | optsize = sizeof(struct tls12_crypto_info_aes_gcm_256); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 545 | break; |
| 546 | } |
Vakul Garg | f295b3a | 2019-03-20 02:03:36 +0000 | [diff] [blame] | 547 | case TLS_CIPHER_AES_CCM_128: |
| 548 | optsize = sizeof(struct tls12_crypto_info_aes_ccm_128); |
| 549 | break; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 550 | default: |
| 551 | rc = -EINVAL; |
Sabrina Dubroca | 6db959c | 2018-01-16 16:04:28 +0100 | [diff] [blame] | 552 | goto err_crypto_info; |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 553 | } |
| 554 | |
Vakul Garg | f295b3a | 2019-03-20 02:03:36 +0000 | [diff] [blame] | 555 | if (optlen != optsize) { |
| 556 | rc = -EINVAL; |
| 557 | goto err_crypto_info; |
| 558 | } |
| 559 | |
| 560 | rc = copy_from_user(crypto_info + 1, optval + sizeof(*crypto_info), |
| 561 | optlen - sizeof(*crypto_info)); |
| 562 | if (rc) { |
| 563 | rc = -EFAULT; |
| 564 | goto err_crypto_info; |
| 565 | } |
| 566 | |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 567 | if (tx) { |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 568 | #ifdef CONFIG_TLS_DEVICE |
| 569 | rc = tls_set_device_offload(sk, ctx); |
| 570 | conf = TLS_HW; |
| 571 | if (rc) { |
| 572 | #else |
| 573 | { |
| 574 | #endif |
| 575 | rc = tls_set_sw_offload(sk, ctx, 1); |
Jakub Kicinski | 318892a | 2019-07-19 10:29:14 -0700 | [diff] [blame] | 576 | if (rc) |
| 577 | goto err_crypto_info; |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 578 | conf = TLS_SW; |
| 579 | } |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 580 | } else { |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 581 | #ifdef CONFIG_TLS_DEVICE |
| 582 | rc = tls_set_device_offload_rx(sk, ctx); |
| 583 | conf = TLS_HW; |
| 584 | if (rc) { |
| 585 | #else |
| 586 | { |
| 587 | #endif |
| 588 | rc = tls_set_sw_offload(sk, ctx, 0); |
Jakub Kicinski | 318892a | 2019-07-19 10:29:14 -0700 | [diff] [blame] | 589 | if (rc) |
| 590 | goto err_crypto_info; |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 591 | conf = TLS_SW; |
| 592 | } |
John Fastabend | 313ab00 | 2019-07-19 10:29:17 -0700 | [diff] [blame] | 593 | tls_sw_strparser_arm(sk, ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 594 | } |
| 595 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 596 | if (tx) |
| 597 | ctx->tx_conf = conf; |
| 598 | else |
| 599 | ctx->rx_conf = conf; |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 600 | update_sk_prot(sk, ctx); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 601 | if (tx) { |
| 602 | ctx->sk_write_space = sk->sk_write_space; |
| 603 | sk->sk_write_space = tls_write_space; |
| 604 | } else { |
| 605 | sk->sk_socket->ops = &tls_sw_proto_ops; |
| 606 | } |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 607 | goto out; |
| 608 | |
| 609 | err_crypto_info: |
Sabrina Dubroca | c844eb4 | 2018-09-12 17:44:43 +0200 | [diff] [blame] | 610 | memzero_explicit(crypto_info, sizeof(union tls_crypto_context)); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 611 | out: |
| 612 | return rc; |
| 613 | } |
| 614 | |
| 615 | static int do_tls_setsockopt(struct sock *sk, int optname, |
| 616 | char __user *optval, unsigned int optlen) |
| 617 | { |
| 618 | int rc = 0; |
| 619 | |
| 620 | switch (optname) { |
| 621 | case TLS_TX: |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 622 | case TLS_RX: |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 623 | lock_sock(sk); |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 624 | rc = do_tls_setsockopt_conf(sk, optval, optlen, |
| 625 | optname == TLS_TX); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 626 | release_sock(sk); |
| 627 | break; |
| 628 | default: |
| 629 | rc = -ENOPROTOOPT; |
| 630 | break; |
| 631 | } |
| 632 | return rc; |
| 633 | } |
| 634 | |
| 635 | static int tls_setsockopt(struct sock *sk, int level, int optname, |
| 636 | char __user *optval, unsigned int optlen) |
| 637 | { |
| 638 | struct tls_context *ctx = tls_get_ctx(sk); |
| 639 | |
| 640 | if (level != SOL_TLS) |
| 641 | return ctx->setsockopt(sk, level, optname, optval, optlen); |
| 642 | |
| 643 | return do_tls_setsockopt(sk, optname, optval, optlen); |
| 644 | } |
| 645 | |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 646 | static struct tls_context *create_ctx(struct sock *sk) |
| 647 | { |
| 648 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 649 | struct tls_context *ctx; |
| 650 | |
Ganesh Goudar | c6ec179 | 2018-12-19 17:18:22 +0530 | [diff] [blame] | 651 | ctx = kzalloc(sizeof(*ctx), GFP_ATOMIC); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 652 | if (!ctx) |
| 653 | return NULL; |
| 654 | |
| 655 | icsk->icsk_ulp_data = ctx; |
Atul Gupta | 6c0563e | 2018-12-11 02:19:40 -0800 | [diff] [blame] | 656 | ctx->setsockopt = sk->sk_prot->setsockopt; |
| 657 | ctx->getsockopt = sk->sk_prot->getsockopt; |
| 658 | ctx->sk_proto_close = sk->sk_prot->close; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 659 | ctx->unhash = sk->sk_prot->unhash; |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 660 | return ctx; |
| 661 | } |
| 662 | |
Atul Gupta | 63a6b3f | 2019-01-17 20:55:53 -0800 | [diff] [blame] | 663 | static void tls_build_proto(struct sock *sk) |
| 664 | { |
| 665 | int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4; |
| 666 | |
| 667 | /* Build IPv6 TLS whenever the address of tcpv6 _prot changes */ |
| 668 | if (ip_ver == TLSV6 && |
| 669 | unlikely(sk->sk_prot != smp_load_acquire(&saved_tcpv6_prot))) { |
| 670 | mutex_lock(&tcpv6_prot_mutex); |
| 671 | if (likely(sk->sk_prot != saved_tcpv6_prot)) { |
| 672 | build_protos(tls_prots[TLSV6], sk->sk_prot); |
| 673 | smp_store_release(&saved_tcpv6_prot, sk->sk_prot); |
| 674 | } |
| 675 | mutex_unlock(&tcpv6_prot_mutex); |
| 676 | } |
| 677 | |
| 678 | if (ip_ver == TLSV4 && |
| 679 | unlikely(sk->sk_prot != smp_load_acquire(&saved_tcpv4_prot))) { |
| 680 | mutex_lock(&tcpv4_prot_mutex); |
| 681 | if (likely(sk->sk_prot != saved_tcpv4_prot)) { |
| 682 | build_protos(tls_prots[TLSV4], sk->sk_prot); |
| 683 | smp_store_release(&saved_tcpv4_prot, sk->sk_prot); |
| 684 | } |
| 685 | mutex_unlock(&tcpv4_prot_mutex); |
| 686 | } |
| 687 | } |
| 688 | |
Atul Gupta | 76f7164 | 2019-01-17 20:56:21 -0800 | [diff] [blame] | 689 | static void tls_hw_sk_destruct(struct sock *sk) |
| 690 | { |
| 691 | struct tls_context *ctx = tls_get_ctx(sk); |
| 692 | struct inet_connection_sock *icsk = inet_csk(sk); |
| 693 | |
| 694 | ctx->sk_destruct(sk); |
| 695 | /* Free ctx */ |
Jakub Kicinski | acd3e96 | 2019-06-28 16:11:39 -0700 | [diff] [blame] | 696 | tls_ctx_free(ctx); |
Atul Gupta | 76f7164 | 2019-01-17 20:56:21 -0800 | [diff] [blame] | 697 | icsk->icsk_ulp_data = NULL; |
| 698 | } |
| 699 | |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 700 | static int tls_hw_prot(struct sock *sk) |
| 701 | { |
| 702 | struct tls_context *ctx; |
| 703 | struct tls_device *dev; |
| 704 | int rc = 0; |
| 705 | |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 706 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 707 | list_for_each_entry(dev, &device_list, dev_list) { |
| 708 | if (dev->feature && dev->feature(dev)) { |
| 709 | ctx = create_ctx(sk); |
| 710 | if (!ctx) |
| 711 | goto out; |
| 712 | |
Atul Gupta | 63a6b3f | 2019-01-17 20:55:53 -0800 | [diff] [blame] | 713 | spin_unlock_bh(&device_spinlock); |
| 714 | tls_build_proto(sk); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 715 | ctx->hash = sk->sk_prot->hash; |
| 716 | ctx->unhash = sk->sk_prot->unhash; |
| 717 | ctx->sk_proto_close = sk->sk_prot->close; |
Atul Gupta | 76f7164 | 2019-01-17 20:56:21 -0800 | [diff] [blame] | 718 | ctx->sk_destruct = sk->sk_destruct; |
| 719 | sk->sk_destruct = tls_hw_sk_destruct; |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 720 | ctx->rx_conf = TLS_HW_RECORD; |
| 721 | ctx->tx_conf = TLS_HW_RECORD; |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 722 | update_sk_prot(sk, ctx); |
Atul Gupta | 63a6b3f | 2019-01-17 20:55:53 -0800 | [diff] [blame] | 723 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 724 | rc = 1; |
| 725 | break; |
| 726 | } |
| 727 | } |
| 728 | out: |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 729 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 730 | return rc; |
| 731 | } |
| 732 | |
| 733 | static void tls_hw_unhash(struct sock *sk) |
| 734 | { |
| 735 | struct tls_context *ctx = tls_get_ctx(sk); |
| 736 | struct tls_device *dev; |
| 737 | |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 738 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 739 | list_for_each_entry(dev, &device_list, dev_list) { |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 740 | if (dev->unhash) { |
| 741 | kref_get(&dev->kref); |
| 742 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 743 | dev->unhash(dev, sk); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 744 | kref_put(&dev->kref, dev->release); |
| 745 | spin_lock_bh(&device_spinlock); |
| 746 | } |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 747 | } |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 748 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 749 | ctx->unhash(sk); |
| 750 | } |
| 751 | |
| 752 | static int tls_hw_hash(struct sock *sk) |
| 753 | { |
| 754 | struct tls_context *ctx = tls_get_ctx(sk); |
| 755 | struct tls_device *dev; |
| 756 | int err; |
| 757 | |
| 758 | err = ctx->hash(sk); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 759 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 760 | list_for_each_entry(dev, &device_list, dev_list) { |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 761 | if (dev->hash) { |
| 762 | kref_get(&dev->kref); |
| 763 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 764 | err |= dev->hash(dev, sk); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 765 | kref_put(&dev->kref, dev->release); |
| 766 | spin_lock_bh(&device_spinlock); |
| 767 | } |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 768 | } |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 769 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 770 | |
| 771 | if (err) |
| 772 | tls_hw_unhash(sk); |
| 773 | return err; |
| 774 | } |
| 775 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 776 | static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG], |
| 777 | struct proto *base) |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 778 | { |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 779 | prot[TLS_BASE][TLS_BASE] = *base; |
| 780 | prot[TLS_BASE][TLS_BASE].setsockopt = tls_setsockopt; |
| 781 | prot[TLS_BASE][TLS_BASE].getsockopt = tls_getsockopt; |
| 782 | prot[TLS_BASE][TLS_BASE].close = tls_sk_proto_close; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 783 | prot[TLS_BASE][TLS_BASE].unhash = tls_sk_proto_unhash; |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 784 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 785 | prot[TLS_SW][TLS_BASE] = prot[TLS_BASE][TLS_BASE]; |
| 786 | prot[TLS_SW][TLS_BASE].sendmsg = tls_sw_sendmsg; |
| 787 | prot[TLS_SW][TLS_BASE].sendpage = tls_sw_sendpage; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 788 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 789 | prot[TLS_BASE][TLS_SW] = prot[TLS_BASE][TLS_BASE]; |
John Fastabend | 924ad65 | 2018-10-13 02:46:00 +0200 | [diff] [blame] | 790 | prot[TLS_BASE][TLS_SW].recvmsg = tls_sw_recvmsg; |
| 791 | prot[TLS_BASE][TLS_SW].stream_memory_read = tls_sw_stream_read; |
| 792 | prot[TLS_BASE][TLS_SW].close = tls_sk_proto_close; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 793 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 794 | prot[TLS_SW][TLS_SW] = prot[TLS_SW][TLS_BASE]; |
John Fastabend | 924ad65 | 2018-10-13 02:46:00 +0200 | [diff] [blame] | 795 | prot[TLS_SW][TLS_SW].recvmsg = tls_sw_recvmsg; |
| 796 | prot[TLS_SW][TLS_SW].stream_memory_read = tls_sw_stream_read; |
| 797 | prot[TLS_SW][TLS_SW].close = tls_sk_proto_close; |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 798 | |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 799 | #ifdef CONFIG_TLS_DEVICE |
| 800 | prot[TLS_HW][TLS_BASE] = prot[TLS_BASE][TLS_BASE]; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 801 | prot[TLS_HW][TLS_BASE].unhash = base->unhash; |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 802 | prot[TLS_HW][TLS_BASE].sendmsg = tls_device_sendmsg; |
| 803 | prot[TLS_HW][TLS_BASE].sendpage = tls_device_sendpage; |
| 804 | |
| 805 | prot[TLS_HW][TLS_SW] = prot[TLS_BASE][TLS_SW]; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 806 | prot[TLS_HW][TLS_SW].unhash = base->unhash; |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 807 | prot[TLS_HW][TLS_SW].sendmsg = tls_device_sendmsg; |
| 808 | prot[TLS_HW][TLS_SW].sendpage = tls_device_sendpage; |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 809 | |
| 810 | prot[TLS_BASE][TLS_HW] = prot[TLS_BASE][TLS_SW]; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 811 | prot[TLS_BASE][TLS_HW].unhash = base->unhash; |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 812 | |
| 813 | prot[TLS_SW][TLS_HW] = prot[TLS_SW][TLS_SW]; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 814 | prot[TLS_SW][TLS_HW].unhash = base->unhash; |
Boris Pismenny | 4799ac8 | 2018-07-13 14:33:43 +0300 | [diff] [blame] | 815 | |
| 816 | prot[TLS_HW][TLS_HW] = prot[TLS_HW][TLS_SW]; |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 817 | #endif |
| 818 | |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 819 | prot[TLS_HW_RECORD][TLS_HW_RECORD] = *base; |
| 820 | prot[TLS_HW_RECORD][TLS_HW_RECORD].hash = tls_hw_hash; |
| 821 | prot[TLS_HW_RECORD][TLS_HW_RECORD].unhash = tls_hw_unhash; |
Boris Pismenny | c113187 | 2018-02-27 14:18:39 +0200 | [diff] [blame] | 822 | } |
| 823 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 824 | static int tls_init(struct sock *sk) |
| 825 | { |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 826 | struct tls_context *ctx; |
| 827 | int rc = 0; |
| 828 | |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 829 | if (tls_hw_prot(sk)) |
| 830 | goto out; |
| 831 | |
Ilya Lesokhin | d91c3e1 | 2018-01-16 15:31:52 +0200 | [diff] [blame] | 832 | /* The TLS ulp is currently supported only for TCP sockets |
| 833 | * in ESTABLISHED state. |
| 834 | * Supporting sockets in LISTEN state will require us |
| 835 | * to modify the accept implementation to clone rather then |
| 836 | * share the ulp context. |
| 837 | */ |
| 838 | if (sk->sk_state != TCP_ESTABLISHED) |
| 839 | return -ENOTSUPP; |
| 840 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 841 | /* allocate tls context */ |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 842 | ctx = create_ctx(sk); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 843 | if (!ctx) { |
| 844 | rc = -ENOMEM; |
| 845 | goto out; |
| 846 | } |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 847 | |
Atul Gupta | 63a6b3f | 2019-01-17 20:55:53 -0800 | [diff] [blame] | 848 | tls_build_proto(sk); |
Boris Pismenny | f66de3e | 2018-04-30 10:16:15 +0300 | [diff] [blame] | 849 | ctx->tx_conf = TLS_BASE; |
| 850 | ctx->rx_conf = TLS_BASE; |
John Fastabend | 32857cf | 2019-07-19 10:29:18 -0700 | [diff] [blame^] | 851 | ctx->sk_proto = sk->sk_prot; |
Ilya Lesokhin | 6d88207 | 2017-11-13 10:22:45 +0200 | [diff] [blame] | 852 | update_sk_prot(sk, ctx); |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 853 | out: |
| 854 | return rc; |
| 855 | } |
| 856 | |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 857 | void tls_register_device(struct tls_device *device) |
| 858 | { |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 859 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 860 | list_add_tail(&device->dev_list, &device_list); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 861 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 862 | } |
| 863 | EXPORT_SYMBOL(tls_register_device); |
| 864 | |
| 865 | void tls_unregister_device(struct tls_device *device) |
| 866 | { |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 867 | spin_lock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 868 | list_del(&device->dev_list); |
Atul Gupta | df9d4a1 | 2018-12-11 02:20:09 -0800 | [diff] [blame] | 869 | spin_unlock_bh(&device_spinlock); |
Atul Gupta | dd0bed1 | 2018-03-31 21:41:52 +0530 | [diff] [blame] | 870 | } |
| 871 | EXPORT_SYMBOL(tls_unregister_device); |
| 872 | |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 873 | static struct tcp_ulp_ops tcp_tls_ulp_ops __read_mostly = { |
| 874 | .name = "tls", |
| 875 | .owner = THIS_MODULE, |
| 876 | .init = tls_init, |
| 877 | }; |
| 878 | |
| 879 | static int __init tls_register(void) |
| 880 | { |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 881 | tls_sw_proto_ops = inet_stream_ops; |
Dave Watson | c46234e | 2018-03-22 10:10:35 -0700 | [diff] [blame] | 882 | tls_sw_proto_ops.splice_read = tls_sw_splice_read; |
| 883 | |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 884 | #ifdef CONFIG_TLS_DEVICE |
| 885 | tls_device_init(); |
| 886 | #endif |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 887 | tcp_register_ulp(&tcp_tls_ulp_ops); |
| 888 | |
| 889 | return 0; |
| 890 | } |
| 891 | |
| 892 | static void __exit tls_unregister(void) |
| 893 | { |
| 894 | tcp_unregister_ulp(&tcp_tls_ulp_ops); |
Ilya Lesokhin | e8f6979 | 2018-04-30 10:16:16 +0300 | [diff] [blame] | 895 | #ifdef CONFIG_TLS_DEVICE |
| 896 | tls_device_cleanup(); |
| 897 | #endif |
Dave Watson | 3c4d755 | 2017-06-14 11:37:39 -0700 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | module_init(tls_register); |
| 901 | module_exit(tls_unregister); |