blob: a88d26fd8223dbcb0faeb9169cabd8d5aa506086 [file] [log] [blame]
Andy Grover00e0f342009-02-24 15:30:23 +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/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040036#include <linux/export.h>
Andy Grover00e0f342009-02-24 15:30:23 +000037#include <net/inet_hashtables.h>
38
Sowmini Varadhan0cb43962016-06-13 09:44:26 -070039#include "rds_single_path.h"
Andy Grover00e0f342009-02-24 15:30:23 +000040#include "rds.h"
41#include "loop.h"
Andy Grover00e0f342009-02-24 15:30:23 +000042
43#define RDS_CONNECTION_HASH_BITS 12
44#define RDS_CONNECTION_HASH_ENTRIES (1 << RDS_CONNECTION_HASH_BITS)
45#define RDS_CONNECTION_HASH_MASK (RDS_CONNECTION_HASH_ENTRIES - 1)
46
47/* converting this to RCU is a chore for another day.. */
48static DEFINE_SPINLOCK(rds_conn_lock);
49static unsigned long rds_conn_count;
50static struct hlist_head rds_conn_hash[RDS_CONNECTION_HASH_ENTRIES];
51static struct kmem_cache *rds_conn_slab;
52
53static struct hlist_head *rds_conn_bucket(__be32 laddr, __be32 faddr)
54{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020055 static u32 rds_hash_secret __read_mostly;
56
57 unsigned long hash;
58
59 net_get_random_once(&rds_hash_secret, sizeof(rds_hash_secret));
60
Andy Grover00e0f342009-02-24 15:30:23 +000061 /* Pass NULL, don't need struct net for hash */
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020062 hash = __inet_ehashfn(be32_to_cpu(laddr), 0,
63 be32_to_cpu(faddr), 0,
64 rds_hash_secret);
Andy Grover00e0f342009-02-24 15:30:23 +000065 return &rds_conn_hash[hash & RDS_CONNECTION_HASH_MASK];
66}
67
68#define rds_conn_info_set(var, test, suffix) do { \
69 if (test) \
70 var |= RDS_INFO_CONNECTION_FLAG_##suffix; \
71} while (0)
72
Chris Masonbcf50ef2010-05-11 15:15:15 -070073/* rcu read lock must be held or the connection spinlock */
Sowmini Varadhan8f384c02015-09-03 16:24:52 -040074static struct rds_connection *rds_conn_lookup(struct net *net,
75 struct hlist_head *head,
Andy Grover00e0f342009-02-24 15:30:23 +000076 __be32 laddr, __be32 faddr,
77 struct rds_transport *trans)
78{
79 struct rds_connection *conn, *ret = NULL;
Andy Grover00e0f342009-02-24 15:30:23 +000080
Sasha Levinb67bfe02013-02-27 17:06:00 -080081 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
Andy Grover00e0f342009-02-24 15:30:23 +000082 if (conn->c_faddr == faddr && conn->c_laddr == laddr &&
Sowmini Varadhan8f384c02015-09-03 16:24:52 -040083 conn->c_trans == trans && net == rds_conn_net(conn)) {
Andy Grover00e0f342009-02-24 15:30:23 +000084 ret = conn;
85 break;
86 }
87 }
88 rdsdebug("returning conn %p for %pI4 -> %pI4\n", ret,
89 &laddr, &faddr);
90 return ret;
91}
92
93/*
94 * This is called by transports as they're bringing down a connection.
95 * It clears partial message state so that the transport can start sending
96 * and receiving over this connection again in the future. It is up to
97 * the transport to have serialized this call with its send and recv.
98 */
Sowmini Varadhand769ef82016-06-13 09:44:41 -070099static void rds_conn_path_reset(struct rds_conn_path *cp)
Andy Grover00e0f342009-02-24 15:30:23 +0000100{
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700101 struct rds_connection *conn = cp->cp_conn;
102
Andy Grover00e0f342009-02-24 15:30:23 +0000103 rdsdebug("connection %pI4 to %pI4 reset\n",
104 &conn->c_laddr, &conn->c_faddr);
105
106 rds_stats_inc(s_conn_reset);
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700107 rds_send_path_reset(cp);
108 cp->cp_flags = 0;
Andy Grover00e0f342009-02-24 15:30:23 +0000109
110 /* Do not clear next_rx_seq here, else we cannot distinguish
111 * retransmitted packets from new packets, and will hand all
112 * of them to the application. That is not consistent with the
113 * reliability guarantees of RDS. */
114}
115
Sowmini Varadhan1c5113c2016-06-13 09:44:40 -0700116static void __rds_conn_path_init(struct rds_connection *conn,
117 struct rds_conn_path *cp, bool is_outgoing)
118{
119 spin_lock_init(&cp->cp_lock);
120 cp->cp_next_tx_seq = 1;
121 init_waitqueue_head(&cp->cp_waitq);
122 INIT_LIST_HEAD(&cp->cp_send_queue);
123 INIT_LIST_HEAD(&cp->cp_retrans);
124
125 cp->cp_conn = conn;
126 atomic_set(&cp->cp_state, RDS_CONN_DOWN);
127 cp->cp_send_gen = 0;
128 /* cp_outgoing is per-path. So we can only set it here
129 * for the single-path transports.
130 */
131 if (!conn->c_trans->t_mp_capable)
132 cp->cp_outgoing = (is_outgoing ? 1 : 0);
133 cp->cp_reconnect_jiffies = 0;
134 INIT_DELAYED_WORK(&cp->cp_send_w, rds_send_worker);
135 INIT_DELAYED_WORK(&cp->cp_recv_w, rds_recv_worker);
136 INIT_DELAYED_WORK(&cp->cp_conn_w, rds_connect_worker);
137 INIT_WORK(&cp->cp_down_w, rds_shutdown_worker);
138 mutex_init(&cp->cp_cm_lock);
139 cp->cp_flags = 0;
140}
141
Andy Grover00e0f342009-02-24 15:30:23 +0000142/*
143 * There is only every one 'conn' for a given pair of addresses in the
144 * system at a time. They contain messages to be retransmitted and so
145 * span the lifetime of the actual underlying transport connections.
146 *
147 * For now they are not garbage collected once they're created. They
148 * are torn down as the module is removed, if ever.
149 */
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400150static struct rds_connection *__rds_conn_create(struct net *net,
151 __be32 laddr, __be32 faddr,
Andy Grover00e0f342009-02-24 15:30:23 +0000152 struct rds_transport *trans, gfp_t gfp,
153 int is_outgoing)
154{
Andy Grovercb244052009-07-17 13:13:36 +0000155 struct rds_connection *conn, *parent = NULL;
Andy Grover00e0f342009-02-24 15:30:23 +0000156 struct hlist_head *head = rds_conn_bucket(laddr, faddr);
Zach Brown5adb5bc2010-07-23 10:32:31 -0700157 struct rds_transport *loop_trans;
Andy Grover00e0f342009-02-24 15:30:23 +0000158 unsigned long flags;
159 int ret;
160
Chris Masonbcf50ef2010-05-11 15:15:15 -0700161 rcu_read_lock();
Sowmini Varadhan8f384c02015-09-03 16:24:52 -0400162 conn = rds_conn_lookup(net, head, laddr, faddr, trans);
Joe Perchesf64f9e72009-11-29 16:55:45 -0800163 if (conn && conn->c_loopback && conn->c_trans != &rds_loop_transport &&
Sowmini Varadhan1789b2c072015-04-08 12:33:46 -0400164 laddr == faddr && !is_outgoing) {
Andy Grover00e0f342009-02-24 15:30:23 +0000165 /* This is a looped back IB connection, and we're
166 * called by the code handling the incoming connect.
167 * We need a second connection object into which we
168 * can stick the other QP. */
169 parent = conn;
170 conn = parent->c_passive;
171 }
Chris Masonbcf50ef2010-05-11 15:15:15 -0700172 rcu_read_unlock();
Andy Grover00e0f342009-02-24 15:30:23 +0000173 if (conn)
174 goto out;
175
Wei Yongjun05a178e2009-04-09 14:09:44 +0000176 conn = kmem_cache_zalloc(rds_conn_slab, gfp);
Andy Grover8690bfa2010-01-12 11:56:44 -0800177 if (!conn) {
Andy Grover00e0f342009-02-24 15:30:23 +0000178 conn = ERR_PTR(-ENOMEM);
179 goto out;
180 }
181
Andy Grover00e0f342009-02-24 15:30:23 +0000182 INIT_HLIST_NODE(&conn->c_hash_node);
Andy Grover00e0f342009-02-24 15:30:23 +0000183 conn->c_laddr = laddr;
184 conn->c_faddr = faddr;
Andy Grover00e0f342009-02-24 15:30:23 +0000185
Sowmini Varadhan1c5113c2016-06-13 09:44:40 -0700186 rds_conn_net_set(conn, net);
Andy Grover00e0f342009-02-24 15:30:23 +0000187
188 ret = rds_cong_get_maps(conn);
189 if (ret) {
190 kmem_cache_free(rds_conn_slab, conn);
191 conn = ERR_PTR(ret);
192 goto out;
193 }
194
195 /*
196 * This is where a connection becomes loopback. If *any* RDS sockets
197 * can bind to the destination address then we'd rather the messages
198 * flow through loopback rather than either transport.
199 */
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400200 loop_trans = rds_trans_get_preferred(net, faddr);
Zach Brown5adb5bc2010-07-23 10:32:31 -0700201 if (loop_trans) {
202 rds_trans_put(loop_trans);
Andy Grover00e0f342009-02-24 15:30:23 +0000203 conn->c_loopback = 1;
204 if (is_outgoing && trans->t_prefer_loopback) {
205 /* "outgoing" connection - and the transport
206 * says it wants the connection handled by the
207 * loopback transport. This is what TCP does.
208 */
209 trans = &rds_loop_transport;
210 }
211 }
212
213 conn->c_trans = trans;
214
215 ret = trans->conn_alloc(conn, gfp);
216 if (ret) {
217 kmem_cache_free(rds_conn_slab, conn);
218 conn = ERR_PTR(ret);
219 goto out;
220 }
221
Andy Grover00e0f342009-02-24 15:30:23 +0000222 rdsdebug("allocated conn %p for %pI4 -> %pI4 over %s %s\n",
223 conn, &laddr, &faddr,
224 trans->t_name ? trans->t_name : "[unknown]",
225 is_outgoing ? "(outgoing)" : "");
226
Andy Grovercb244052009-07-17 13:13:36 +0000227 /*
228 * Since we ran without holding the conn lock, someone could
229 * have created the same conn (either normal or passive) in the
230 * interim. We check while holding the lock. If we won, we complete
231 * init and return our conn. If we lost, we rollback and return the
232 * other one.
233 */
Andy Grover00e0f342009-02-24 15:30:23 +0000234 spin_lock_irqsave(&rds_conn_lock, flags);
Andy Grovercb244052009-07-17 13:13:36 +0000235 if (parent) {
236 /* Creating passive conn */
237 if (parent->c_passive) {
Sowmini Varadhan1c5113c2016-06-13 09:44:40 -0700238 trans->conn_free(conn->c_path[0].cp_transport_data);
Andy Grovercb244052009-07-17 13:13:36 +0000239 kmem_cache_free(rds_conn_slab, conn);
240 conn = parent->c_passive;
241 } else {
Andy Grover00e0f342009-02-24 15:30:23 +0000242 parent->c_passive = conn;
Andy Grovercb244052009-07-17 13:13:36 +0000243 rds_cong_add_conn(conn);
244 rds_conn_count++;
245 }
Andy Grover00e0f342009-02-24 15:30:23 +0000246 } else {
Andy Grovercb244052009-07-17 13:13:36 +0000247 /* Creating normal conn */
248 struct rds_connection *found;
Andy Grover00e0f342009-02-24 15:30:23 +0000249
Sowmini Varadhan3b20fc32015-09-30 16:54:07 -0400250 found = rds_conn_lookup(net, head, laddr, faddr, trans);
Andy Grovercb244052009-07-17 13:13:36 +0000251 if (found) {
Sowmini Varadhan1c5113c2016-06-13 09:44:40 -0700252 struct rds_conn_path *cp;
253 int i;
254
255 for (i = 0; i < RDS_MPATH_WORKERS; i++) {
256 cp = &conn->c_path[i];
257 trans->conn_free(cp->cp_transport_data);
258 if (!trans->t_mp_capable)
259 break;
260 }
Andy Grovercb244052009-07-17 13:13:36 +0000261 kmem_cache_free(rds_conn_slab, conn);
262 conn = found;
263 } else {
Sowmini Varadhan1c5113c2016-06-13 09:44:40 -0700264 int i;
265
266 for (i = 0; i < RDS_MPATH_WORKERS; i++) {
267 __rds_conn_path_init(conn, &conn->c_path[i],
268 is_outgoing);
269 conn->c_path[i].cp_index = i;
270 }
271
Sowmini Varadhan3b20fc32015-09-30 16:54:07 -0400272 hlist_add_head_rcu(&conn->c_hash_node, head);
Andy Grovercb244052009-07-17 13:13:36 +0000273 rds_cong_add_conn(conn);
274 rds_conn_count++;
275 }
276 }
Andy Grover00e0f342009-02-24 15:30:23 +0000277 spin_unlock_irqrestore(&rds_conn_lock, flags);
278
279out:
280 return conn;
281}
282
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400283struct rds_connection *rds_conn_create(struct net *net,
284 __be32 laddr, __be32 faddr,
Andy Grover00e0f342009-02-24 15:30:23 +0000285 struct rds_transport *trans, gfp_t gfp)
286{
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400287 return __rds_conn_create(net, laddr, faddr, trans, gfp, 0);
Andy Grover00e0f342009-02-24 15:30:23 +0000288}
Andy Grover616b7572009-08-21 12:28:32 +0000289EXPORT_SYMBOL_GPL(rds_conn_create);
Andy Grover00e0f342009-02-24 15:30:23 +0000290
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400291struct rds_connection *rds_conn_create_outgoing(struct net *net,
292 __be32 laddr, __be32 faddr,
Andy Grover00e0f342009-02-24 15:30:23 +0000293 struct rds_transport *trans, gfp_t gfp)
294{
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400295 return __rds_conn_create(net, laddr, faddr, trans, gfp, 1);
Andy Grover00e0f342009-02-24 15:30:23 +0000296}
Andy Grover616b7572009-08-21 12:28:32 +0000297EXPORT_SYMBOL_GPL(rds_conn_create_outgoing);
Andy Grover00e0f342009-02-24 15:30:23 +0000298
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700299void rds_conn_shutdown(struct rds_conn_path *cp)
Andy Grover2dc39352010-06-11 13:49:13 -0700300{
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700301 struct rds_connection *conn = cp->cp_conn;
302
Andy Grover2dc39352010-06-11 13:49:13 -0700303 /* shut it down unless it's down already */
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700304 if (!rds_conn_path_transition(cp, RDS_CONN_DOWN, RDS_CONN_DOWN)) {
Andy Grover2dc39352010-06-11 13:49:13 -0700305 /*
306 * Quiesce the connection mgmt handlers before we start tearing
307 * things down. We don't hold the mutex for the entire
308 * duration of the shutdown operation, else we may be
309 * deadlocking with the CM handler. Instead, the CM event
310 * handler is supposed to check for state DISCONNECTING
311 */
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700312 mutex_lock(&cp->cp_cm_lock);
313 if (!rds_conn_path_transition(cp, RDS_CONN_UP,
314 RDS_CONN_DISCONNECTING) &&
315 !rds_conn_path_transition(cp, RDS_CONN_ERROR,
316 RDS_CONN_DISCONNECTING)) {
317 rds_conn_path_error(cp,
318 "shutdown called in state %d\n",
319 atomic_read(&cp->cp_state));
320 mutex_unlock(&cp->cp_cm_lock);
Andy Grover2dc39352010-06-11 13:49:13 -0700321 return;
322 }
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700323 mutex_unlock(&cp->cp_cm_lock);
Andy Grover2dc39352010-06-11 13:49:13 -0700324
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700325 wait_event(cp->cp_waitq,
326 !test_bit(RDS_IN_XMIT, &cp->cp_flags));
327 wait_event(cp->cp_waitq,
328 !test_bit(RDS_RECV_REFILL, &cp->cp_flags));
Chris Mason7e3f2952010-05-11 15:11:11 -0700329
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700330 if (!conn->c_trans->t_mp_capable)
331 conn->c_trans->conn_shutdown(conn);
332 else
333 conn->c_trans->conn_path_shutdown(cp);
334 rds_conn_path_reset(cp);
Andy Grover2dc39352010-06-11 13:49:13 -0700335
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700336 if (!rds_conn_path_transition(cp, RDS_CONN_DISCONNECTING,
337 RDS_CONN_DOWN)) {
Andy Grover2dc39352010-06-11 13:49:13 -0700338 /* This can happen - eg when we're in the middle of tearing
339 * down the connection, and someone unloads the rds module.
340 * Quite reproduceable with loopback connections.
341 * Mostly harmless.
342 */
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700343 rds_conn_path_error(cp, "%s: failed to transition "
344 "to state DOWN, current state "
345 "is %d\n", __func__,
346 atomic_read(&cp->cp_state));
Andy Grover2dc39352010-06-11 13:49:13 -0700347 return;
348 }
349 }
350
351 /* Then reconnect if it's still live.
352 * The passive side of an IB loopback connection is never added
353 * to the conn hash, so we never trigger a reconnect on this
354 * conn - the reconnect is always triggered by the active peer. */
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700355 cancel_delayed_work_sync(&cp->cp_conn_w);
Chris Masonbcf50ef2010-05-11 15:15:15 -0700356 rcu_read_lock();
357 if (!hlist_unhashed(&conn->c_hash_node)) {
358 rcu_read_unlock();
Sowmini Varadhan3b20fc32015-09-30 16:54:07 -0400359 if (conn->c_trans->t_type != RDS_TRANS_TCP ||
Sowmini Varadhand769ef82016-06-13 09:44:41 -0700360 cp->cp_outgoing == 1)
361 rds_queue_reconnect(cp);
Chris Masonbcf50ef2010-05-11 15:15:15 -0700362 } else {
363 rcu_read_unlock();
364 }
Andy Grover2dc39352010-06-11 13:49:13 -0700365}
366
367/*
368 * Stop and free a connection.
Zach Brownffcec0e2010-07-23 10:36:58 -0700369 *
370 * This can only be used in very limited circumstances. It assumes that once
371 * the conn has been shutdown that no one else is referencing the connection.
372 * We can only ensure this in the rmmod path in the current code.
Andy Grover2dc39352010-06-11 13:49:13 -0700373 */
Andy Grover00e0f342009-02-24 15:30:23 +0000374void rds_conn_destroy(struct rds_connection *conn)
375{
376 struct rds_message *rm, *rtmp;
Zach Brownfe8ff6b2010-07-23 10:30:45 -0700377 unsigned long flags;
Andy Grover00e0f342009-02-24 15:30:23 +0000378
379 rdsdebug("freeing conn %p for %pI4 -> "
380 "%pI4\n", conn, &conn->c_laddr,
381 &conn->c_faddr);
382
Chris Masonabf45432010-05-11 15:14:52 -0700383 /* Ensure conn will not be scheduled for reconnect */
384 spin_lock_irq(&rds_conn_lock);
Chris Masonbcf50ef2010-05-11 15:15:15 -0700385 hlist_del_init_rcu(&conn->c_hash_node);
Chris Masonabf45432010-05-11 15:14:52 -0700386 spin_unlock_irq(&rds_conn_lock);
Chris Masonbcf50ef2010-05-11 15:15:15 -0700387 synchronize_rcu();
388
Zach Brownffcec0e2010-07-23 10:36:58 -0700389 /* shut the connection down */
390 rds_conn_drop(conn);
391 flush_work(&conn->c_down_w);
Andy Grover00e0f342009-02-24 15:30:23 +0000392
Zach Brown45180712010-07-23 10:37:33 -0700393 /* make sure lingering queued work won't try to ref the conn */
394 cancel_delayed_work_sync(&conn->c_send_w);
395 cancel_delayed_work_sync(&conn->c_recv_w);
396
Andy Grover00e0f342009-02-24 15:30:23 +0000397 /* tear down queued messages */
398 list_for_each_entry_safe(rm, rtmp,
399 &conn->c_send_queue,
400 m_conn_item) {
401 list_del_init(&rm->m_conn_item);
402 BUG_ON(!list_empty(&rm->m_sock_item));
403 rds_message_put(rm);
404 }
405 if (conn->c_xmit_rm)
406 rds_message_put(conn->c_xmit_rm);
407
408 conn->c_trans->conn_free(conn->c_transport_data);
409
410 /*
411 * The congestion maps aren't freed up here. They're
412 * freed by rds_cong_exit() after all the connections
413 * have been freed.
414 */
415 rds_cong_remove_conn(conn);
416
417 BUG_ON(!list_empty(&conn->c_retrans));
418 kmem_cache_free(rds_conn_slab, conn);
419
Zach Brownfe8ff6b2010-07-23 10:30:45 -0700420 spin_lock_irqsave(&rds_conn_lock, flags);
Andy Grover00e0f342009-02-24 15:30:23 +0000421 rds_conn_count--;
Zach Brownfe8ff6b2010-07-23 10:30:45 -0700422 spin_unlock_irqrestore(&rds_conn_lock, flags);
Andy Grover00e0f342009-02-24 15:30:23 +0000423}
Andy Grover616b7572009-08-21 12:28:32 +0000424EXPORT_SYMBOL_GPL(rds_conn_destroy);
Andy Grover00e0f342009-02-24 15:30:23 +0000425
426static void rds_conn_message_info(struct socket *sock, unsigned int len,
427 struct rds_info_iterator *iter,
428 struct rds_info_lengths *lens,
429 int want_send)
430{
431 struct hlist_head *head;
Andy Grover00e0f342009-02-24 15:30:23 +0000432 struct list_head *list;
433 struct rds_connection *conn;
434 struct rds_message *rm;
Andy Grover00e0f342009-02-24 15:30:23 +0000435 unsigned int total = 0;
Zach Brown501dccc2010-06-04 14:25:27 -0700436 unsigned long flags;
Andy Grover00e0f342009-02-24 15:30:23 +0000437 size_t i;
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700438 int j;
Andy Grover00e0f342009-02-24 15:30:23 +0000439
440 len /= sizeof(struct rds_info_message);
441
Chris Masonbcf50ef2010-05-11 15:15:15 -0700442 rcu_read_lock();
Andy Grover00e0f342009-02-24 15:30:23 +0000443
444 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
445 i++, head++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800446 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700447 struct rds_conn_path *cp;
Andy Grover00e0f342009-02-24 15:30:23 +0000448
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700449 for (j = 0; j < RDS_MPATH_WORKERS; j++) {
450 cp = &conn->c_path[j];
451 if (want_send)
452 list = &cp->cp_send_queue;
453 else
454 list = &cp->cp_retrans;
Andy Grover00e0f342009-02-24 15:30:23 +0000455
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700456 spin_lock_irqsave(&cp->cp_lock, flags);
457
458 /* XXX too lazy to maintain counts.. */
459 list_for_each_entry(rm, list, m_conn_item) {
460 total++;
461 if (total <= len)
462 rds_inc_info_copy(&rm->m_inc,
463 iter,
464 conn->c_laddr,
465 conn->c_faddr,
466 0);
467 }
468
469 spin_unlock_irqrestore(&cp->cp_lock, flags);
470 if (!conn->c_trans->t_mp_capable)
471 break;
Andy Grover00e0f342009-02-24 15:30:23 +0000472 }
Andy Grover00e0f342009-02-24 15:30:23 +0000473 }
474 }
Chris Masonbcf50ef2010-05-11 15:15:15 -0700475 rcu_read_unlock();
Andy Grover00e0f342009-02-24 15:30:23 +0000476
477 lens->nr = total;
478 lens->each = sizeof(struct rds_info_message);
479}
480
481static void rds_conn_message_info_send(struct socket *sock, unsigned int len,
482 struct rds_info_iterator *iter,
483 struct rds_info_lengths *lens)
484{
485 rds_conn_message_info(sock, len, iter, lens, 1);
486}
487
488static void rds_conn_message_info_retrans(struct socket *sock,
489 unsigned int len,
490 struct rds_info_iterator *iter,
491 struct rds_info_lengths *lens)
492{
493 rds_conn_message_info(sock, len, iter, lens, 0);
494}
495
496void rds_for_each_conn_info(struct socket *sock, unsigned int len,
497 struct rds_info_iterator *iter,
498 struct rds_info_lengths *lens,
499 int (*visitor)(struct rds_connection *, void *),
500 size_t item_len)
501{
502 uint64_t buffer[(item_len + 7) / 8];
503 struct hlist_head *head;
Andy Grover00e0f342009-02-24 15:30:23 +0000504 struct rds_connection *conn;
Andy Grover00e0f342009-02-24 15:30:23 +0000505 size_t i;
506
Chris Masonbcf50ef2010-05-11 15:15:15 -0700507 rcu_read_lock();
Andy Grover00e0f342009-02-24 15:30:23 +0000508
509 lens->nr = 0;
510 lens->each = item_len;
511
512 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
513 i++, head++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800514 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
Andy Grover00e0f342009-02-24 15:30:23 +0000515
516 /* XXX no c_lock usage.. */
517 if (!visitor(conn, buffer))
518 continue;
519
520 /* We copy as much as we can fit in the buffer,
521 * but we count all items so that the caller
522 * can resize the buffer. */
523 if (len >= item_len) {
524 rds_info_copy(iter, buffer, item_len);
525 len -= item_len;
526 }
527 lens->nr++;
528 }
529 }
Chris Masonbcf50ef2010-05-11 15:15:15 -0700530 rcu_read_unlock();
Andy Grover00e0f342009-02-24 15:30:23 +0000531}
Andy Grover616b7572009-08-21 12:28:32 +0000532EXPORT_SYMBOL_GPL(rds_for_each_conn_info);
Andy Grover00e0f342009-02-24 15:30:23 +0000533
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700534void rds_walk_conn_path_info(struct socket *sock, unsigned int len,
535 struct rds_info_iterator *iter,
536 struct rds_info_lengths *lens,
537 int (*visitor)(struct rds_conn_path *, void *),
538 size_t item_len)
539{
540 u64 buffer[(item_len + 7) / 8];
541 struct hlist_head *head;
542 struct rds_connection *conn;
543 size_t i;
544 int j;
545
546 rcu_read_lock();
547
548 lens->nr = 0;
549 lens->each = item_len;
550
551 for (i = 0, head = rds_conn_hash; i < ARRAY_SIZE(rds_conn_hash);
552 i++, head++) {
553 hlist_for_each_entry_rcu(conn, head, c_hash_node) {
554 struct rds_conn_path *cp;
555
556 for (j = 0; j < RDS_MPATH_WORKERS; j++) {
557 cp = &conn->c_path[j];
558
559 /* XXX no cp_lock usage.. */
560 if (!visitor(cp, buffer))
561 continue;
562 if (!conn->c_trans->t_mp_capable)
563 break;
564 }
565
566 /* We copy as much as we can fit in the buffer,
567 * but we count all items so that the caller
568 * can resize the buffer.
569 */
570 if (len >= item_len) {
571 rds_info_copy(iter, buffer, item_len);
572 len -= item_len;
573 }
574 lens->nr++;
575 }
576 }
577 rcu_read_unlock();
578}
579
580static int rds_conn_info_visitor(struct rds_conn_path *cp, void *buffer)
Andy Grover00e0f342009-02-24 15:30:23 +0000581{
582 struct rds_info_connection *cinfo = buffer;
583
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700584 cinfo->next_tx_seq = cp->cp_next_tx_seq;
585 cinfo->next_rx_seq = cp->cp_next_rx_seq;
586 cinfo->laddr = cp->cp_conn->c_laddr;
587 cinfo->faddr = cp->cp_conn->c_faddr;
588 strncpy(cinfo->transport, cp->cp_conn->c_trans->t_name,
Andy Grover00e0f342009-02-24 15:30:23 +0000589 sizeof(cinfo->transport));
590 cinfo->flags = 0;
591
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700592 rds_conn_info_set(cinfo->flags, test_bit(RDS_IN_XMIT, &cp->cp_flags),
Zach Brown0f4b1c72010-06-04 14:41:41 -0700593 SENDING);
Andy Grover00e0f342009-02-24 15:30:23 +0000594 /* XXX Future: return the state rather than these funky bits */
595 rds_conn_info_set(cinfo->flags,
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700596 atomic_read(&cp->cp_state) == RDS_CONN_CONNECTING,
Andy Grover00e0f342009-02-24 15:30:23 +0000597 CONNECTING);
598 rds_conn_info_set(cinfo->flags,
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700599 atomic_read(&cp->cp_state) == RDS_CONN_UP,
Andy Grover00e0f342009-02-24 15:30:23 +0000600 CONNECTED);
601 return 1;
602}
603
604static void rds_conn_info(struct socket *sock, unsigned int len,
605 struct rds_info_iterator *iter,
606 struct rds_info_lengths *lens)
607{
Sowmini Varadhan992c9ec2016-06-13 09:44:38 -0700608 rds_walk_conn_path_info(sock, len, iter, lens,
Andy Grover00e0f342009-02-24 15:30:23 +0000609 rds_conn_info_visitor,
610 sizeof(struct rds_info_connection));
611}
612
Zach Brownef87b7e2010-07-09 12:26:20 -0700613int rds_conn_init(void)
Andy Grover00e0f342009-02-24 15:30:23 +0000614{
615 rds_conn_slab = kmem_cache_create("rds_connection",
616 sizeof(struct rds_connection),
617 0, 0, NULL);
Andy Grover8690bfa2010-01-12 11:56:44 -0800618 if (!rds_conn_slab)
Andy Grover00e0f342009-02-24 15:30:23 +0000619 return -ENOMEM;
620
621 rds_info_register_func(RDS_INFO_CONNECTIONS, rds_conn_info);
622 rds_info_register_func(RDS_INFO_SEND_MESSAGES,
623 rds_conn_message_info_send);
624 rds_info_register_func(RDS_INFO_RETRANS_MESSAGES,
625 rds_conn_message_info_retrans);
626
627 return 0;
628}
629
630void rds_conn_exit(void)
631{
632 rds_loop_exit();
633
634 WARN_ON(!hlist_empty(rds_conn_hash));
635
636 kmem_cache_destroy(rds_conn_slab);
637
638 rds_info_deregister_func(RDS_INFO_CONNECTIONS, rds_conn_info);
639 rds_info_deregister_func(RDS_INFO_SEND_MESSAGES,
640 rds_conn_message_info_send);
641 rds_info_deregister_func(RDS_INFO_RETRANS_MESSAGES,
642 rds_conn_message_info_retrans);
643}
644
645/*
646 * Force a disconnect
647 */
Sowmini Varadhan0cb43962016-06-13 09:44:26 -0700648void rds_conn_path_drop(struct rds_conn_path *cp)
649{
650 atomic_set(&cp->cp_state, RDS_CONN_ERROR);
651 queue_work(rds_wq, &cp->cp_down_w);
652}
653EXPORT_SYMBOL_GPL(rds_conn_path_drop);
654
Andy Grover00e0f342009-02-24 15:30:23 +0000655void rds_conn_drop(struct rds_connection *conn)
656{
Sowmini Varadhan0cb43962016-06-13 09:44:26 -0700657 rds_conn_path_drop(&conn->c_path[0]);
Andy Grover00e0f342009-02-24 15:30:23 +0000658}
Andy Grover616b7572009-08-21 12:28:32 +0000659EXPORT_SYMBOL_GPL(rds_conn_drop);
Andy Grover00e0f342009-02-24 15:30:23 +0000660
661/*
Zach Brownf3c68082010-05-24 13:14:36 -0700662 * If the connection is down, trigger a connect. We may have scheduled a
663 * delayed reconnect however - in this case we should not interfere.
664 */
Sowmini Varadhan3c0a5902016-06-13 09:44:37 -0700665void rds_conn_path_connect_if_down(struct rds_conn_path *cp)
666{
667 if (rds_conn_path_state(cp) == RDS_CONN_DOWN &&
668 !test_and_set_bit(RDS_RECONNECT_PENDING, &cp->cp_flags))
669 queue_delayed_work(rds_wq, &cp->cp_conn_w, 0);
670}
671
Zach Brownf3c68082010-05-24 13:14:36 -0700672void rds_conn_connect_if_down(struct rds_connection *conn)
673{
Sowmini Varadhan3c0a5902016-06-13 09:44:37 -0700674 WARN_ON(conn->c_trans->t_mp_capable);
675 rds_conn_path_connect_if_down(&conn->c_path[0]);
Zach Brownf3c68082010-05-24 13:14:36 -0700676}
677EXPORT_SYMBOL_GPL(rds_conn_connect_if_down);
678
679/*
Andy Grover00e0f342009-02-24 15:30:23 +0000680 * An error occurred on the connection
681 */
682void
683__rds_conn_error(struct rds_connection *conn, const char *fmt, ...)
684{
685 va_list ap;
686
687 va_start(ap, fmt);
688 vprintk(fmt, ap);
689 va_end(ap);
690
691 rds_conn_drop(conn);
692}
Sowmini Varadhanfb1b3dc2016-06-13 09:44:39 -0700693
694void
695__rds_conn_path_error(struct rds_conn_path *cp, const char *fmt, ...)
696{
697 va_list ap;
698
699 va_start(ap, fmt);
700 vprintk(fmt, ap);
701 va_end(ap);
702
703 rds_conn_path_drop(cp);
704}