blob: c916715fbe6132ce1e3b9c94db62281c1a72a6ff [file] [log] [blame]
Andy Grover70041082009-08-21 12:28:31 +00001/*
2 * Copyright (c) 2006 Oracle. All rights reserved.
3 *
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
Sowmini Varadhan0cb43962016-06-13 09:44:26 -070037#include "rds_single_path.h"
Andy Grover70041082009-08-21 12:28:31 +000038#include "rds.h"
39#include "tcp.h"
40
41void rds_tcp_state_change(struct sock *sk)
42{
43 void (*state_change)(struct sock *sk);
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070044 struct rds_conn_path *cp;
Andy Grover70041082009-08-21 12:28:31 +000045 struct rds_tcp_connection *tc;
46
Eric Dumazet38036622016-05-17 17:44:08 -070047 read_lock_bh(&sk->sk_callback_lock);
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070048 cp = sk->sk_user_data;
49 if (!cp) {
Andy Grover70041082009-08-21 12:28:31 +000050 state_change = sk->sk_state_change;
51 goto out;
52 }
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070053 tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +000054 state_change = tc->t_orig_state_change;
55
56 rdsdebug("sock %p state_change to %d\n", tc->t_sock, sk->sk_state);
57
Joshua Houghton5c3da572016-06-18 15:46:31 +000058 switch (sk->sk_state) {
59 /* ignore connecting sockets as they make progress */
60 case TCP_SYN_SENT:
61 case TCP_SYN_RECV:
62 break;
63 case TCP_ESTABLISHED:
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070064 rds_connect_path_complete(cp, RDS_CONN_CONNECTING);
Joshua Houghton5c3da572016-06-18 15:46:31 +000065 break;
66 case TCP_CLOSE_WAIT:
67 case TCP_CLOSE:
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -070068 rds_conn_path_drop(cp);
Joshua Houghton5c3da572016-06-18 15:46:31 +000069 default:
70 break;
Andy Grover70041082009-08-21 12:28:31 +000071 }
72out:
Eric Dumazet38036622016-05-17 17:44:08 -070073 read_unlock_bh(&sk->sk_callback_lock);
Andy Grover70041082009-08-21 12:28:31 +000074 state_change(sk);
75}
76
Sowmini Varadhanb04e8552016-06-30 16:11:16 -070077int rds_tcp_conn_path_connect(struct rds_conn_path *cp)
Andy Grover70041082009-08-21 12:28:31 +000078{
79 struct socket *sock = NULL;
80 struct sockaddr_in src, dest;
81 int ret;
Sowmini Varadhanb04e8552016-06-30 16:11:16 -070082 struct rds_connection *conn = cp->cp_conn;
83 struct rds_tcp_connection *tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +000084
Sowmini Varadhan02105b22016-06-30 16:11:12 -070085 mutex_lock(&tc->t_conn_path_lock);
Sowmini Varadhanbd7c5f92016-05-02 11:24:52 -070086
Sowmini Varadhanb04e8552016-06-30 16:11:16 -070087 if (rds_conn_path_up(cp)) {
Sowmini Varadhan02105b22016-06-30 16:11:12 -070088 mutex_unlock(&tc->t_conn_path_lock);
Sowmini Varadhanbd7c5f92016-05-02 11:24:52 -070089 return 0;
90 }
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -040091 ret = sock_create_kern(rds_conn_net(conn), PF_INET,
92 SOCK_STREAM, IPPROTO_TCP, &sock);
Andy Grover70041082009-08-21 12:28:31 +000093 if (ret < 0)
94 goto out;
95
96 rds_tcp_tune(sock);
97
98 src.sin_family = AF_INET;
99 src.sin_addr.s_addr = (__force u32)conn->c_laddr;
100 src.sin_port = (__force u16)htons(0);
101
102 ret = sock->ops->bind(sock, (struct sockaddr *)&src, sizeof(src));
103 if (ret) {
Joe Perches6884b342010-02-02 12:43:59 +0000104 rdsdebug("bind failed with %d at address %pI4\n",
105 ret, &conn->c_laddr);
Andy Grover70041082009-08-21 12:28:31 +0000106 goto out;
107 }
108
109 dest.sin_family = AF_INET;
110 dest.sin_addr.s_addr = (__force u32)conn->c_faddr;
111 dest.sin_port = (__force u16)htons(RDS_TCP_PORT);
112
113 /*
114 * once we call connect() we can start getting callbacks and they
115 * own the socket
116 */
Sowmini Varadhanea3b1ea2016-06-30 16:11:14 -0700117 rds_tcp_set_callbacks(sock, cp);
Andy Grover70041082009-08-21 12:28:31 +0000118 ret = sock->ops->connect(sock, (struct sockaddr *)&dest, sizeof(dest),
119 O_NONBLOCK);
Andy Grover70041082009-08-21 12:28:31 +0000120
Sowmini Varadhanb04e8552016-06-30 16:11:16 -0700121 cp->cp_outgoing = 1;
Joe Perches6884b342010-02-02 12:43:59 +0000122 rdsdebug("connect to address %pI4 returned %d\n", &conn->c_faddr, ret);
Andy Grover70041082009-08-21 12:28:31 +0000123 if (ret == -EINPROGRESS)
124 ret = 0;
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400125 if (ret == 0) {
126 rds_tcp_keepalive(sock);
Herton R. Krzesinskieb74cc92014-10-01 18:49:53 -0300127 sock = NULL;
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400128 } else {
Sowmini Varadhanb04e8552016-06-30 16:11:16 -0700129 rds_tcp_restore_callbacks(sock, cp->cp_transport_data);
Sowmini Varadhan467fa152015-08-05 01:43:26 -0400130 }
Andy Grover70041082009-08-21 12:28:31 +0000131
132out:
Sowmini Varadhan02105b22016-06-30 16:11:12 -0700133 mutex_unlock(&tc->t_conn_path_lock);
Andy Grover70041082009-08-21 12:28:31 +0000134 if (sock)
135 sock_release(sock);
136 return ret;
137}
138
139/*
140 * Before killing the tcp socket this needs to serialize with callbacks. The
141 * caller has already grabbed the sending sem so we're serialized with other
142 * senders.
143 *
144 * TCP calls the callbacks with the sock lock so we hold it while we reset the
145 * callbacks to those set by TCP. Our callbacks won't execute again once we
146 * hold the sock lock.
147 */
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700148void rds_tcp_conn_path_shutdown(struct rds_conn_path *cp)
Andy Grover70041082009-08-21 12:28:31 +0000149{
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700150 struct rds_tcp_connection *tc = cp->cp_transport_data;
Andy Grover70041082009-08-21 12:28:31 +0000151 struct socket *sock = tc->t_sock;
152
Sowmini Varadhan226f7a72016-06-30 16:11:10 -0700153 rdsdebug("shutting down conn %p tc %p sock %p\n",
154 cp->cp_conn, tc, sock);
Andy Grover70041082009-08-21 12:28:31 +0000155
156 if (sock) {
157 sock->ops->shutdown(sock, RCV_SHUTDOWN | SEND_SHUTDOWN);
158 lock_sock(sock->sk);
159 rds_tcp_restore_callbacks(sock, tc); /* tc->tc_sock = NULL */
160
161 release_sock(sock->sk);
162 sock_release(sock);
Joe Perchesccbd6a52010-05-14 10:58:26 +0000163 }
Andy Grover70041082009-08-21 12:28:31 +0000164
165 if (tc->t_tinc) {
166 rds_inc_put(&tc->t_tinc->ti_inc);
167 tc->t_tinc = NULL;
168 }
169 tc->t_tinc_hdr_rem = sizeof(struct rds_header);
170 tc->t_tinc_data_rem = 0;
171}