blob: 231ae927858eb7637f0fc84d623dea0d47630ac1 [file] [log] [blame]
Andy Grover70041082009-08-21 12:28:31 +00001/*
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -07002 * Copyright (c) 2006, 2017 Oracle and/or its affiliates. All rights reserved.
Andy Grover70041082009-08-21 12:28:31 +00003 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33#include <linux/kernel.h>
34#include <linux/in.h>
35#include <net/tcp.h>
36
37#include "rds.h"
38#include "tcp.h"
39
40void rds_tcp_state_change(struct sock *sk)
41{
42 void (*state_change)(struct sock *sk);
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070043 struct rds_conn_path *cp;
Andy Grover70041082009-08-21 12:28:31 +000044 struct rds_tcp_connection *tc;
45
Eric Dumazet38036622016-05-17 17:44:08 -070046 read_lock_bh(&sk->sk_callback_lock);
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070047 cp = sk->sk_user_data;
48 if (!cp) {
Andy Grover70041082009-08-21 12:28:31 +000049 state_change = sk->sk_state_change;
50 goto out;
51 }
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070052 tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +000053 state_change = tc->t_orig_state_change;
54
55 rdsdebug("sock %p state_change to %d\n", tc->t_sock, sk->sk_state);
56
Joshua Houghton5c3da572016-06-18 15:46:31 +000057 switch (sk->sk_state) {
58 /* ignore connecting sockets as they make progress */
59 case TCP_SYN_SENT:
60 case TCP_SYN_RECV:
61 break;
62 case TCP_ESTABLISHED:
Sowmini Varadhan1a0e1002016-11-16 13:29:50 -080063 /* Force the peer to reconnect so that we have the
64 * TCP ports going from <smaller-ip>.<transient> to
65 * <larger-ip>.<RDS_TCP_PORT>. We avoid marking the
66 * RDS connection as RDS_CONN_UP until the reconnect,
67 * to avoid RDS datagram loss.
68 */
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -070069 if (rds_addr_cmp(&cp->cp_conn->c_laddr,
70 &cp->cp_conn->c_faddr) >= 0 &&
Sowmini Varadhan1a0e1002016-11-16 13:29:50 -080071 rds_conn_path_transition(cp, RDS_CONN_CONNECTING,
72 RDS_CONN_ERROR)) {
Sowmini Varadhanaed20a52017-07-16 16:43:46 -070073 rds_conn_path_drop(cp, false);
Sowmini Varadhan1a0e1002016-11-16 13:29:50 -080074 } else {
75 rds_connect_path_complete(cp, RDS_CONN_CONNECTING);
76 }
Joshua Houghton5c3da572016-06-18 15:46:31 +000077 break;
78 case TCP_CLOSE_WAIT:
79 case TCP_CLOSE:
Sowmini Varadhanaed20a52017-07-16 16:43:46 -070080 rds_conn_path_drop(cp, false);
Joshua Houghton5c3da572016-06-18 15:46:31 +000081 default:
82 break;
Andy Grover70041082009-08-21 12:28:31 +000083 }
84out:
Eric Dumazet38036622016-05-17 17:44:08 -070085 read_unlock_bh(&sk->sk_callback_lock);
Andy Grover70041082009-08-21 12:28:31 +000086 state_change(sk);
87}
88
Sowmini Varadhanb04e8552016-06-30 16:11:16 -070089int rds_tcp_conn_path_connect(struct rds_conn_path *cp)
Andy Grover70041082009-08-21 12:28:31 +000090{
91 struct socket *sock = NULL;
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -070092 struct sockaddr_in sin;
93 struct sockaddr *addr;
94 int addrlen;
Andy Grover70041082009-08-21 12:28:31 +000095 int ret;
Sowmini Varadhanb04e8552016-06-30 16:11:16 -070096 struct rds_connection *conn = cp->cp_conn;
97 struct rds_tcp_connection *tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +000098
Sowmini Varadhan5916e2c2016-07-14 03:51:03 -070099 /* for multipath rds,we only trigger the connection after
100 * the handshake probe has determined the number of paths.
101 */
102 if (cp->cp_index > 0 && cp->cp_conn->c_npaths < 2)
103 return -EAGAIN;
104
Sowmini Varadhan02105b22016-06-30 16:11:12 -0700105 mutex_lock(&tc->t_conn_path_lock);
Sowmini Varadhanbd7c5f92016-05-02 11:24:52 -0700106
Sowmini Varadhanb04e8552016-06-30 16:11:16 -0700107 if (rds_conn_path_up(cp)) {
Sowmini Varadhan02105b22016-06-30 16:11:12 -0700108 mutex_unlock(&tc->t_conn_path_lock);
Sowmini Varadhanbd7c5f92016-05-02 11:24:52 -0700109 return 0;
110 }
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400111 ret = sock_create_kern(rds_conn_net(conn), PF_INET,
112 SOCK_STREAM, IPPROTO_TCP, &sock);
Andy Grover70041082009-08-21 12:28:31 +0000113 if (ret < 0)
114 goto out;
115
116 rds_tcp_tune(sock);
117
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700118 sin.sin_family = AF_INET;
119 sin.sin_addr.s_addr = conn->c_laddr.s6_addr32[3];
120 sin.sin_port = 0;
121 addr = (struct sockaddr *)&sin;
122 addrlen = sizeof(sin);
Andy Grover70041082009-08-21 12:28:31 +0000123
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700124 ret = sock->ops->bind(sock, addr, addrlen);
Andy Grover70041082009-08-21 12:28:31 +0000125 if (ret) {
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700126 rdsdebug("bind failed with %d at address %pI6c\n",
Joe Perches6884b342010-02-02 12:43:59 +0000127 ret, &conn->c_laddr);
Andy Grover70041082009-08-21 12:28:31 +0000128 goto out;
129 }
130
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700131 sin.sin_family = AF_INET;
132 sin.sin_addr.s_addr = conn->c_faddr.s6_addr32[3];
133 sin.sin_port = htons(RDS_TCP_PORT);
134 addr = (struct sockaddr *)&sin;
135 addrlen = sizeof(sin);
Andy Grover70041082009-08-21 12:28:31 +0000136
137 /*
138 * once we call connect() we can start getting callbacks and they
139 * own the socket
140 */
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -0700141 rds_tcp_set_callbacks(sock, cp);
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700142 ret = sock->ops->connect(sock, addr, addrlen, O_NONBLOCK);
Andy Grover70041082009-08-21 12:28:31 +0000143
Ka-Cheong Pooneee2fa62018-07-23 20:51:21 -0700144 rdsdebug("connect to address %pI6c returned %d\n", &conn->c_faddr, ret);
Andy Grover70041082009-08-21 12:28:31 +0000145 if (ret == -EINPROGRESS)
146 ret = 0;
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400147 if (ret == 0) {
148 rds_tcp_keepalive(sock);
Herton R. Krzesinskieb74cc92014-10-01 18:49:53 -0300149 sock = NULL;
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400150 } else {
Sowmini Varadhanb04e8552016-06-30 16:11:16 -0700151 rds_tcp_restore_callbacks(sock, cp->cp_transport_data);
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400152 }
Andy Grover70041082009-08-21 12:28:31 +0000153
154out:
Sowmini Varadhan02105b22016-06-30 16:11:12 -0700155 mutex_unlock(&tc->t_conn_path_lock);
Andy Grover70041082009-08-21 12:28:31 +0000156 if (sock)
157 sock_release(sock);
158 return ret;
159}
160
161/*
162 * Before killing the tcp socket this needs to serialize with callbacks. The
163 * caller has already grabbed the sending sem so we're serialized with other
164 * senders.
165 *
166 * TCP calls the callbacks with the sock lock so we hold it while we reset the
167 * callbacks to those set by TCP. Our callbacks won't execute again once we
168 * hold the sock lock.
169 */
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700170void rds_tcp_conn_path_shutdown(struct rds_conn_path *cp)
Andy Grover70041082009-08-21 12:28:31 +0000171{
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700172 struct rds_tcp_connection *tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +0000173 struct socket *sock = tc->t_sock;
174
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700175 rdsdebug("shutting down conn %p tc %p sock %p\n",
176 cp->cp_conn, tc, sock);
Andy Grover70041082009-08-21 12:28:31 +0000177
178 if (sock) {
Sowmini Varadhanebeeb1a2018-02-03 04:26:51 -0800179 if (rds_destroy_pending(cp->cp_conn))
Sowmini Varadhanc14b0362017-06-21 13:40:13 -0700180 rds_tcp_set_linger(sock);
Andy Grover70041082009-08-21 12:28:31 +0000181 sock->ops->shutdown(sock, RCV_SHUTDOWN | SEND_SHUTDOWN);
182 lock_sock(sock->sk);
183 rds_tcp_restore_callbacks(sock, tc); /* tc->tc_sock = NULL */
184
185 release_sock(sock->sk);
186 sock_release(sock);
Joe Perchesccbd6a52010-05-14 10:58:26 +0000187 }
Andy Grover70041082009-08-21 12:28:31 +0000188
189 if (tc->t_tinc) {
190 rds_inc_put(&tc->t_tinc->ti_inc);
191 tc->t_tinc = NULL;
192 }
193 tc->t_tinc_hdr_rem = sizeof(struct rds_header);
194 tc->t_tinc_data_rem = 0;
195}