2 * Copyright (c) 2016-2017, Mellanox Technologies. All rights reserved.
3 * Copyright (c) 2016-2017, Dave Watson <davejwatson@fb.com>. All rights reserved.
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:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
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.
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
34 #include <linux/module.h>
37 #include <net/inet_common.h>
38 #include <linux/highmem.h>
39 #include <linux/netdevice.h>
40 #include <linux/sched/signal.h>
41 #include <linux/inetdevice.h>
42 #include <linux/inet_diag.h>
46 #include <net/tls_toe.h>
48 MODULE_AUTHOR("Mellanox Technologies");
49 MODULE_DESCRIPTION("Transport Layer Security Support");
50 MODULE_LICENSE("Dual BSD/GPL");
51 MODULE_ALIAS_TCP_ULP("tls");
59 static const struct proto *saved_tcpv6_prot;
60 static DEFINE_MUTEX(tcpv6_prot_mutex);
61 static const struct proto *saved_tcpv4_prot;
62 static DEFINE_MUTEX(tcpv4_prot_mutex);
63 static struct proto tls_prots[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG];
64 static struct proto_ops tls_proto_ops[TLS_NUM_PROTS][TLS_NUM_CONFIG][TLS_NUM_CONFIG];
65 static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG],
66 const struct proto *base);
68 void update_sk_prot(struct sock *sk, struct tls_context *ctx)
70 int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4;
72 WRITE_ONCE(sk->sk_prot,
73 &tls_prots[ip_ver][ctx->tx_conf][ctx->rx_conf]);
74 WRITE_ONCE(sk->sk_socket->ops,
75 &tls_proto_ops[ip_ver][ctx->tx_conf][ctx->rx_conf]);
78 int wait_on_pending_writer(struct sock *sk, long *timeo)
81 DEFINE_WAIT_FUNC(wait, woken_wake_function);
83 add_wait_queue(sk_sleep(sk), &wait);
90 if (signal_pending(current)) {
91 rc = sock_intr_errno(*timeo);
95 if (sk_wait_event(sk, timeo, !sk->sk_write_pending, &wait))
98 remove_wait_queue(sk_sleep(sk), &wait);
102 int tls_push_sg(struct sock *sk,
103 struct tls_context *ctx,
104 struct scatterlist *sg,
108 int sendpage_flags = flags | MSG_SENDPAGE_NOTLAST;
112 int offset = first_offset;
114 size = sg->length - offset;
115 offset += sg->offset;
117 ctx->in_tcp_sendpages = true;
120 sendpage_flags = flags;
122 /* is sending application-limited? */
123 tcp_rate_check_app_limited(sk);
126 ret = do_tcp_sendpages(sk, p, offset, size, sendpage_flags);
135 offset -= sg->offset;
136 ctx->partially_sent_offset = offset;
137 ctx->partially_sent_record = (void *)sg;
138 ctx->in_tcp_sendpages = false;
143 sk_mem_uncharge(sk, sg->length);
152 ctx->in_tcp_sendpages = false;
157 static int tls_handle_open_record(struct sock *sk, int flags)
159 struct tls_context *ctx = tls_get_ctx(sk);
161 if (tls_is_pending_open_record(ctx))
162 return ctx->push_pending_record(sk, flags);
167 int tls_proccess_cmsg(struct sock *sk, struct msghdr *msg,
168 unsigned char *record_type)
170 struct cmsghdr *cmsg;
173 for_each_cmsghdr(cmsg, msg) {
174 if (!CMSG_OK(msg, cmsg))
176 if (cmsg->cmsg_level != SOL_TLS)
179 switch (cmsg->cmsg_type) {
180 case TLS_SET_RECORD_TYPE:
181 if (cmsg->cmsg_len < CMSG_LEN(sizeof(*record_type)))
184 if (msg->msg_flags & MSG_MORE)
187 rc = tls_handle_open_record(sk, msg->msg_flags);
191 *record_type = *(unsigned char *)CMSG_DATA(cmsg);
202 int tls_push_partial_record(struct sock *sk, struct tls_context *ctx,
205 struct scatterlist *sg;
208 sg = ctx->partially_sent_record;
209 offset = ctx->partially_sent_offset;
211 ctx->partially_sent_record = NULL;
212 return tls_push_sg(sk, ctx, sg, offset, flags);
215 void tls_free_partial_record(struct sock *sk, struct tls_context *ctx)
217 struct scatterlist *sg;
219 for (sg = ctx->partially_sent_record; sg; sg = sg_next(sg)) {
220 put_page(sg_page(sg));
221 sk_mem_uncharge(sk, sg->length);
223 ctx->partially_sent_record = NULL;
226 static void tls_write_space(struct sock *sk)
228 struct tls_context *ctx = tls_get_ctx(sk);
230 /* If in_tcp_sendpages call lower protocol write space handler
231 * to ensure we wake up any waiting operations there. For example
232 * if do_tcp_sendpages where to call sk_wait_event.
234 if (ctx->in_tcp_sendpages) {
235 ctx->sk_write_space(sk);
239 #ifdef CONFIG_TLS_DEVICE
240 if (ctx->tx_conf == TLS_HW)
241 tls_device_write_space(sk, ctx);
244 tls_sw_write_space(sk, ctx);
246 ctx->sk_write_space(sk);
250 * tls_ctx_free() - free TLS ULP context
251 * @sk: socket to with @ctx is attached
252 * @ctx: TLS context structure
254 * Free TLS context. If @sk is %NULL caller guarantees that the socket
255 * to which @ctx was attached has no outstanding references.
257 void tls_ctx_free(struct sock *sk, struct tls_context *ctx)
262 memzero_explicit(&ctx->crypto_send, sizeof(ctx->crypto_send));
263 memzero_explicit(&ctx->crypto_recv, sizeof(ctx->crypto_recv));
264 mutex_destroy(&ctx->tx_lock);
272 static void tls_sk_proto_cleanup(struct sock *sk,
273 struct tls_context *ctx, long timeo)
275 if (unlikely(sk->sk_write_pending) &&
276 !wait_on_pending_writer(sk, &timeo))
277 tls_handle_open_record(sk, 0);
279 /* We need these for tls_sw_fallback handling of other packets */
280 if (ctx->tx_conf == TLS_SW) {
281 kfree(ctx->tx.rec_seq);
283 tls_sw_release_resources_tx(sk);
284 TLS_DEC_STATS(sock_net(sk), LINUX_MIB_TLSCURRTXSW);
285 } else if (ctx->tx_conf == TLS_HW) {
286 tls_device_free_resources_tx(sk);
287 TLS_DEC_STATS(sock_net(sk), LINUX_MIB_TLSCURRTXDEVICE);
290 if (ctx->rx_conf == TLS_SW) {
291 tls_sw_release_resources_rx(sk);
292 TLS_DEC_STATS(sock_net(sk), LINUX_MIB_TLSCURRRXSW);
293 } else if (ctx->rx_conf == TLS_HW) {
294 tls_device_offload_cleanup_rx(sk);
295 TLS_DEC_STATS(sock_net(sk), LINUX_MIB_TLSCURRRXDEVICE);
299 static void tls_sk_proto_close(struct sock *sk, long timeout)
301 struct inet_connection_sock *icsk = inet_csk(sk);
302 struct tls_context *ctx = tls_get_ctx(sk);
303 long timeo = sock_sndtimeo(sk, 0);
306 if (ctx->tx_conf == TLS_SW)
307 tls_sw_cancel_work_tx(ctx);
310 free_ctx = ctx->tx_conf != TLS_HW && ctx->rx_conf != TLS_HW;
312 if (ctx->tx_conf != TLS_BASE || ctx->rx_conf != TLS_BASE)
313 tls_sk_proto_cleanup(sk, ctx, timeo);
315 write_lock_bh(&sk->sk_callback_lock);
317 rcu_assign_pointer(icsk->icsk_ulp_data, NULL);
318 WRITE_ONCE(sk->sk_prot, ctx->sk_proto);
319 if (sk->sk_write_space == tls_write_space)
320 sk->sk_write_space = ctx->sk_write_space;
321 write_unlock_bh(&sk->sk_callback_lock);
323 if (ctx->tx_conf == TLS_SW)
324 tls_sw_free_ctx_tx(ctx);
325 if (ctx->rx_conf == TLS_SW || ctx->rx_conf == TLS_HW)
326 tls_sw_strparser_done(ctx);
327 if (ctx->rx_conf == TLS_SW)
328 tls_sw_free_ctx_rx(ctx);
329 ctx->sk_proto->close(sk, timeout);
332 tls_ctx_free(sk, ctx);
335 static int do_tls_getsockopt_conf(struct sock *sk, char __user *optval,
336 int __user *optlen, int tx)
339 struct tls_context *ctx = tls_get_ctx(sk);
340 struct tls_crypto_info *crypto_info;
341 struct cipher_context *cctx;
344 if (get_user(len, optlen))
347 if (!optval || (len < sizeof(*crypto_info))) {
357 /* get user crypto info */
359 crypto_info = &ctx->crypto_send.info;
362 crypto_info = &ctx->crypto_recv.info;
366 if (!TLS_CRYPTO_INFO_READY(crypto_info)) {
371 if (len == sizeof(*crypto_info)) {
372 if (copy_to_user(optval, crypto_info, sizeof(*crypto_info)))
377 switch (crypto_info->cipher_type) {
378 case TLS_CIPHER_AES_GCM_128: {
379 struct tls12_crypto_info_aes_gcm_128 *
380 crypto_info_aes_gcm_128 =
381 container_of(crypto_info,
382 struct tls12_crypto_info_aes_gcm_128,
385 if (len != sizeof(*crypto_info_aes_gcm_128)) {
390 memcpy(crypto_info_aes_gcm_128->iv,
391 cctx->iv + TLS_CIPHER_AES_GCM_128_SALT_SIZE,
392 TLS_CIPHER_AES_GCM_128_IV_SIZE);
393 memcpy(crypto_info_aes_gcm_128->rec_seq, cctx->rec_seq,
394 TLS_CIPHER_AES_GCM_128_REC_SEQ_SIZE);
396 if (copy_to_user(optval,
397 crypto_info_aes_gcm_128,
398 sizeof(*crypto_info_aes_gcm_128)))
402 case TLS_CIPHER_AES_GCM_256: {
403 struct tls12_crypto_info_aes_gcm_256 *
404 crypto_info_aes_gcm_256 =
405 container_of(crypto_info,
406 struct tls12_crypto_info_aes_gcm_256,
409 if (len != sizeof(*crypto_info_aes_gcm_256)) {
414 memcpy(crypto_info_aes_gcm_256->iv,
415 cctx->iv + TLS_CIPHER_AES_GCM_256_SALT_SIZE,
416 TLS_CIPHER_AES_GCM_256_IV_SIZE);
417 memcpy(crypto_info_aes_gcm_256->rec_seq, cctx->rec_seq,
418 TLS_CIPHER_AES_GCM_256_REC_SEQ_SIZE);
420 if (copy_to_user(optval,
421 crypto_info_aes_gcm_256,
422 sizeof(*crypto_info_aes_gcm_256)))
426 case TLS_CIPHER_AES_CCM_128: {
427 struct tls12_crypto_info_aes_ccm_128 *aes_ccm_128 =
428 container_of(crypto_info,
429 struct tls12_crypto_info_aes_ccm_128, info);
431 if (len != sizeof(*aes_ccm_128)) {
436 memcpy(aes_ccm_128->iv,
437 cctx->iv + TLS_CIPHER_AES_CCM_128_SALT_SIZE,
438 TLS_CIPHER_AES_CCM_128_IV_SIZE);
439 memcpy(aes_ccm_128->rec_seq, cctx->rec_seq,
440 TLS_CIPHER_AES_CCM_128_REC_SEQ_SIZE);
442 if (copy_to_user(optval, aes_ccm_128, sizeof(*aes_ccm_128)))
446 case TLS_CIPHER_CHACHA20_POLY1305: {
447 struct tls12_crypto_info_chacha20_poly1305 *chacha20_poly1305 =
448 container_of(crypto_info,
449 struct tls12_crypto_info_chacha20_poly1305,
452 if (len != sizeof(*chacha20_poly1305)) {
457 memcpy(chacha20_poly1305->iv,
458 cctx->iv + TLS_CIPHER_CHACHA20_POLY1305_SALT_SIZE,
459 TLS_CIPHER_CHACHA20_POLY1305_IV_SIZE);
460 memcpy(chacha20_poly1305->rec_seq, cctx->rec_seq,
461 TLS_CIPHER_CHACHA20_POLY1305_REC_SEQ_SIZE);
463 if (copy_to_user(optval, chacha20_poly1305,
464 sizeof(*chacha20_poly1305)))
468 case TLS_CIPHER_SM4_GCM: {
469 struct tls12_crypto_info_sm4_gcm *sm4_gcm_info =
470 container_of(crypto_info,
471 struct tls12_crypto_info_sm4_gcm, info);
473 if (len != sizeof(*sm4_gcm_info)) {
478 memcpy(sm4_gcm_info->iv,
479 cctx->iv + TLS_CIPHER_SM4_GCM_SALT_SIZE,
480 TLS_CIPHER_SM4_GCM_IV_SIZE);
481 memcpy(sm4_gcm_info->rec_seq, cctx->rec_seq,
482 TLS_CIPHER_SM4_GCM_REC_SEQ_SIZE);
484 if (copy_to_user(optval, sm4_gcm_info, sizeof(*sm4_gcm_info)))
488 case TLS_CIPHER_SM4_CCM: {
489 struct tls12_crypto_info_sm4_ccm *sm4_ccm_info =
490 container_of(crypto_info,
491 struct tls12_crypto_info_sm4_ccm, info);
493 if (len != sizeof(*sm4_ccm_info)) {
498 memcpy(sm4_ccm_info->iv,
499 cctx->iv + TLS_CIPHER_SM4_CCM_SALT_SIZE,
500 TLS_CIPHER_SM4_CCM_IV_SIZE);
501 memcpy(sm4_ccm_info->rec_seq, cctx->rec_seq,
502 TLS_CIPHER_SM4_CCM_REC_SEQ_SIZE);
504 if (copy_to_user(optval, sm4_ccm_info, sizeof(*sm4_ccm_info)))
516 static int do_tls_getsockopt_tx_zc(struct sock *sk, char __user *optval,
519 struct tls_context *ctx = tls_get_ctx(sk);
523 if (get_user(len, optlen))
526 if (len != sizeof(value))
529 value = ctx->zerocopy_sendfile;
530 if (copy_to_user(optval, &value, sizeof(value)))
536 static int do_tls_getsockopt(struct sock *sk, int optname,
537 char __user *optval, int __user *optlen)
544 rc = do_tls_getsockopt_conf(sk, optval, optlen,
547 case TLS_TX_ZEROCOPY_SENDFILE:
548 rc = do_tls_getsockopt_tx_zc(sk, optval, optlen);
557 static int tls_getsockopt(struct sock *sk, int level, int optname,
558 char __user *optval, int __user *optlen)
560 struct tls_context *ctx = tls_get_ctx(sk);
562 if (level != SOL_TLS)
563 return ctx->sk_proto->getsockopt(sk, level,
564 optname, optval, optlen);
566 return do_tls_getsockopt(sk, optname, optval, optlen);
569 static int do_tls_setsockopt_conf(struct sock *sk, sockptr_t optval,
570 unsigned int optlen, int tx)
572 struct tls_crypto_info *crypto_info;
573 struct tls_crypto_info *alt_crypto_info;
574 struct tls_context *ctx = tls_get_ctx(sk);
579 if (sockptr_is_null(optval) || (optlen < sizeof(*crypto_info)))
583 crypto_info = &ctx->crypto_send.info;
584 alt_crypto_info = &ctx->crypto_recv.info;
586 crypto_info = &ctx->crypto_recv.info;
587 alt_crypto_info = &ctx->crypto_send.info;
590 /* Currently we don't support set crypto info more than one time */
591 if (TLS_CRYPTO_INFO_READY(crypto_info))
594 rc = copy_from_sockptr(crypto_info, optval, sizeof(*crypto_info));
597 goto err_crypto_info;
601 if (crypto_info->version != TLS_1_2_VERSION &&
602 crypto_info->version != TLS_1_3_VERSION) {
604 goto err_crypto_info;
607 /* Ensure that TLS version and ciphers are same in both directions */
608 if (TLS_CRYPTO_INFO_READY(alt_crypto_info)) {
609 if (alt_crypto_info->version != crypto_info->version ||
610 alt_crypto_info->cipher_type != crypto_info->cipher_type) {
612 goto err_crypto_info;
616 switch (crypto_info->cipher_type) {
617 case TLS_CIPHER_AES_GCM_128:
618 optsize = sizeof(struct tls12_crypto_info_aes_gcm_128);
620 case TLS_CIPHER_AES_GCM_256: {
621 optsize = sizeof(struct tls12_crypto_info_aes_gcm_256);
624 case TLS_CIPHER_AES_CCM_128:
625 optsize = sizeof(struct tls12_crypto_info_aes_ccm_128);
627 case TLS_CIPHER_CHACHA20_POLY1305:
628 optsize = sizeof(struct tls12_crypto_info_chacha20_poly1305);
630 case TLS_CIPHER_SM4_GCM:
631 optsize = sizeof(struct tls12_crypto_info_sm4_gcm);
633 case TLS_CIPHER_SM4_CCM:
634 optsize = sizeof(struct tls12_crypto_info_sm4_ccm);
638 goto err_crypto_info;
641 if (optlen != optsize) {
643 goto err_crypto_info;
646 rc = copy_from_sockptr_offset(crypto_info + 1, optval,
647 sizeof(*crypto_info),
648 optlen - sizeof(*crypto_info));
651 goto err_crypto_info;
655 rc = tls_set_device_offload(sk, ctx);
658 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSTXDEVICE);
659 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSCURRTXDEVICE);
661 rc = tls_set_sw_offload(sk, ctx, 1);
663 goto err_crypto_info;
664 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSTXSW);
665 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSCURRTXSW);
669 rc = tls_set_device_offload_rx(sk, ctx);
672 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSRXDEVICE);
673 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSCURRRXDEVICE);
675 rc = tls_set_sw_offload(sk, ctx, 0);
677 goto err_crypto_info;
678 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSRXSW);
679 TLS_INC_STATS(sock_net(sk), LINUX_MIB_TLSCURRRXSW);
682 tls_sw_strparser_arm(sk, ctx);
689 update_sk_prot(sk, ctx);
691 ctx->sk_write_space = sk->sk_write_space;
692 sk->sk_write_space = tls_write_space;
697 memzero_explicit(crypto_info, sizeof(union tls_crypto_context));
701 static int do_tls_setsockopt_tx_zc(struct sock *sk, sockptr_t optval,
704 struct tls_context *ctx = tls_get_ctx(sk);
707 if (sockptr_is_null(optval) || optlen != sizeof(value))
710 if (copy_from_sockptr(&value, optval, sizeof(value)))
716 ctx->zerocopy_sendfile = value;
721 static int do_tls_setsockopt(struct sock *sk, int optname, sockptr_t optval,
730 rc = do_tls_setsockopt_conf(sk, optval, optlen,
734 case TLS_TX_ZEROCOPY_SENDFILE:
736 rc = do_tls_setsockopt_tx_zc(sk, optval, optlen);
746 static int tls_setsockopt(struct sock *sk, int level, int optname,
747 sockptr_t optval, unsigned int optlen)
749 struct tls_context *ctx = tls_get_ctx(sk);
751 if (level != SOL_TLS)
752 return ctx->sk_proto->setsockopt(sk, level, optname, optval,
755 return do_tls_setsockopt(sk, optname, optval, optlen);
758 struct tls_context *tls_ctx_create(struct sock *sk)
760 struct inet_connection_sock *icsk = inet_csk(sk);
761 struct tls_context *ctx;
763 ctx = kzalloc(sizeof(*ctx), GFP_ATOMIC);
767 mutex_init(&ctx->tx_lock);
768 rcu_assign_pointer(icsk->icsk_ulp_data, ctx);
769 ctx->sk_proto = READ_ONCE(sk->sk_prot);
774 static void build_proto_ops(struct proto_ops ops[TLS_NUM_CONFIG][TLS_NUM_CONFIG],
775 const struct proto_ops *base)
777 ops[TLS_BASE][TLS_BASE] = *base;
779 ops[TLS_SW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE];
780 ops[TLS_SW ][TLS_BASE].sendpage_locked = tls_sw_sendpage_locked;
782 ops[TLS_BASE][TLS_SW ] = ops[TLS_BASE][TLS_BASE];
783 ops[TLS_BASE][TLS_SW ].splice_read = tls_sw_splice_read;
785 ops[TLS_SW ][TLS_SW ] = ops[TLS_SW ][TLS_BASE];
786 ops[TLS_SW ][TLS_SW ].splice_read = tls_sw_splice_read;
788 #ifdef CONFIG_TLS_DEVICE
789 ops[TLS_HW ][TLS_BASE] = ops[TLS_BASE][TLS_BASE];
790 ops[TLS_HW ][TLS_BASE].sendpage_locked = NULL;
792 ops[TLS_HW ][TLS_SW ] = ops[TLS_BASE][TLS_SW ];
793 ops[TLS_HW ][TLS_SW ].sendpage_locked = NULL;
795 ops[TLS_BASE][TLS_HW ] = ops[TLS_BASE][TLS_SW ];
797 ops[TLS_SW ][TLS_HW ] = ops[TLS_SW ][TLS_SW ];
799 ops[TLS_HW ][TLS_HW ] = ops[TLS_HW ][TLS_SW ];
800 ops[TLS_HW ][TLS_HW ].sendpage_locked = NULL;
802 #ifdef CONFIG_TLS_TOE
803 ops[TLS_HW_RECORD][TLS_HW_RECORD] = *base;
807 static void tls_build_proto(struct sock *sk)
809 int ip_ver = sk->sk_family == AF_INET6 ? TLSV6 : TLSV4;
810 struct proto *prot = READ_ONCE(sk->sk_prot);
812 /* Build IPv6 TLS whenever the address of tcpv6 _prot changes */
813 if (ip_ver == TLSV6 &&
814 unlikely(prot != smp_load_acquire(&saved_tcpv6_prot))) {
815 mutex_lock(&tcpv6_prot_mutex);
816 if (likely(prot != saved_tcpv6_prot)) {
817 build_protos(tls_prots[TLSV6], prot);
818 build_proto_ops(tls_proto_ops[TLSV6],
820 smp_store_release(&saved_tcpv6_prot, prot);
822 mutex_unlock(&tcpv6_prot_mutex);
825 if (ip_ver == TLSV4 &&
826 unlikely(prot != smp_load_acquire(&saved_tcpv4_prot))) {
827 mutex_lock(&tcpv4_prot_mutex);
828 if (likely(prot != saved_tcpv4_prot)) {
829 build_protos(tls_prots[TLSV4], prot);
830 build_proto_ops(tls_proto_ops[TLSV4],
832 smp_store_release(&saved_tcpv4_prot, prot);
834 mutex_unlock(&tcpv4_prot_mutex);
838 static void build_protos(struct proto prot[TLS_NUM_CONFIG][TLS_NUM_CONFIG],
839 const struct proto *base)
841 prot[TLS_BASE][TLS_BASE] = *base;
842 prot[TLS_BASE][TLS_BASE].setsockopt = tls_setsockopt;
843 prot[TLS_BASE][TLS_BASE].getsockopt = tls_getsockopt;
844 prot[TLS_BASE][TLS_BASE].close = tls_sk_proto_close;
846 prot[TLS_SW][TLS_BASE] = prot[TLS_BASE][TLS_BASE];
847 prot[TLS_SW][TLS_BASE].sendmsg = tls_sw_sendmsg;
848 prot[TLS_SW][TLS_BASE].sendpage = tls_sw_sendpage;
850 prot[TLS_BASE][TLS_SW] = prot[TLS_BASE][TLS_BASE];
851 prot[TLS_BASE][TLS_SW].recvmsg = tls_sw_recvmsg;
852 prot[TLS_BASE][TLS_SW].sock_is_readable = tls_sw_sock_is_readable;
853 prot[TLS_BASE][TLS_SW].close = tls_sk_proto_close;
855 prot[TLS_SW][TLS_SW] = prot[TLS_SW][TLS_BASE];
856 prot[TLS_SW][TLS_SW].recvmsg = tls_sw_recvmsg;
857 prot[TLS_SW][TLS_SW].sock_is_readable = tls_sw_sock_is_readable;
858 prot[TLS_SW][TLS_SW].close = tls_sk_proto_close;
860 #ifdef CONFIG_TLS_DEVICE
861 prot[TLS_HW][TLS_BASE] = prot[TLS_BASE][TLS_BASE];
862 prot[TLS_HW][TLS_BASE].sendmsg = tls_device_sendmsg;
863 prot[TLS_HW][TLS_BASE].sendpage = tls_device_sendpage;
865 prot[TLS_HW][TLS_SW] = prot[TLS_BASE][TLS_SW];
866 prot[TLS_HW][TLS_SW].sendmsg = tls_device_sendmsg;
867 prot[TLS_HW][TLS_SW].sendpage = tls_device_sendpage;
869 prot[TLS_BASE][TLS_HW] = prot[TLS_BASE][TLS_SW];
871 prot[TLS_SW][TLS_HW] = prot[TLS_SW][TLS_SW];
873 prot[TLS_HW][TLS_HW] = prot[TLS_HW][TLS_SW];
875 #ifdef CONFIG_TLS_TOE
876 prot[TLS_HW_RECORD][TLS_HW_RECORD] = *base;
877 prot[TLS_HW_RECORD][TLS_HW_RECORD].hash = tls_toe_hash;
878 prot[TLS_HW_RECORD][TLS_HW_RECORD].unhash = tls_toe_unhash;
882 static int tls_init(struct sock *sk)
884 struct tls_context *ctx;
889 #ifdef CONFIG_TLS_TOE
890 if (tls_toe_bypass(sk))
894 /* The TLS ulp is currently supported only for TCP sockets
895 * in ESTABLISHED state.
896 * Supporting sockets in LISTEN state will require us
897 * to modify the accept implementation to clone rather then
898 * share the ulp context.
900 if (sk->sk_state != TCP_ESTABLISHED)
903 /* allocate tls context */
904 write_lock_bh(&sk->sk_callback_lock);
905 ctx = tls_ctx_create(sk);
911 ctx->tx_conf = TLS_BASE;
912 ctx->rx_conf = TLS_BASE;
913 update_sk_prot(sk, ctx);
915 write_unlock_bh(&sk->sk_callback_lock);
919 static void tls_update(struct sock *sk, struct proto *p,
920 void (*write_space)(struct sock *sk))
922 struct tls_context *ctx;
924 ctx = tls_get_ctx(sk);
926 ctx->sk_write_space = write_space;
929 /* Pairs with lockless read in sk_clone_lock(). */
930 WRITE_ONCE(sk->sk_prot, p);
931 sk->sk_write_space = write_space;
935 static int tls_get_info(const struct sock *sk, struct sk_buff *skb)
937 u16 version, cipher_type;
938 struct tls_context *ctx;
939 struct nlattr *start;
942 start = nla_nest_start_noflag(skb, INET_ULP_INFO_TLS);
947 ctx = rcu_dereference(inet_csk(sk)->icsk_ulp_data);
952 version = ctx->prot_info.version;
954 err = nla_put_u16(skb, TLS_INFO_VERSION, version);
958 cipher_type = ctx->prot_info.cipher_type;
960 err = nla_put_u16(skb, TLS_INFO_CIPHER, cipher_type);
964 err = nla_put_u16(skb, TLS_INFO_TXCONF, tls_user_config(ctx, true));
968 err = nla_put_u16(skb, TLS_INFO_RXCONF, tls_user_config(ctx, false));
972 if (ctx->tx_conf == TLS_HW && ctx->zerocopy_sendfile) {
973 err = nla_put_flag(skb, TLS_INFO_ZC_SENDFILE);
979 nla_nest_end(skb, start);
984 nla_nest_cancel(skb, start);
988 static size_t tls_get_info_size(const struct sock *sk)
992 size += nla_total_size(0) + /* INET_ULP_INFO_TLS */
993 nla_total_size(sizeof(u16)) + /* TLS_INFO_VERSION */
994 nla_total_size(sizeof(u16)) + /* TLS_INFO_CIPHER */
995 nla_total_size(sizeof(u16)) + /* TLS_INFO_RXCONF */
996 nla_total_size(sizeof(u16)) + /* TLS_INFO_TXCONF */
997 nla_total_size(0) + /* TLS_INFO_ZC_SENDFILE */
1003 static int __net_init tls_init_net(struct net *net)
1007 net->mib.tls_statistics = alloc_percpu(struct linux_tls_mib);
1008 if (!net->mib.tls_statistics)
1011 err = tls_proc_init(net);
1013 goto err_free_stats;
1017 free_percpu(net->mib.tls_statistics);
1021 static void __net_exit tls_exit_net(struct net *net)
1024 free_percpu(net->mib.tls_statistics);
1027 static struct pernet_operations tls_proc_ops = {
1028 .init = tls_init_net,
1029 .exit = tls_exit_net,
1032 static struct tcp_ulp_ops tcp_tls_ulp_ops __read_mostly = {
1034 .owner = THIS_MODULE,
1036 .update = tls_update,
1037 .get_info = tls_get_info,
1038 .get_info_size = tls_get_info_size,
1041 static int __init tls_register(void)
1045 err = register_pernet_subsys(&tls_proc_ops);
1050 tcp_register_ulp(&tcp_tls_ulp_ops);
1055 static void __exit tls_unregister(void)
1057 tcp_unregister_ulp(&tcp_tls_ulp_ops);
1058 tls_device_cleanup();
1059 unregister_pernet_subsys(&tls_proc_ops);
1062 module_init(tls_register);
1063 module_exit(tls_unregister);