2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
6 * This file contains code imported from the OFED rds source file threads.c
7 * Oracle elects to have and use the contents of threads.c under and governed
8 * by the OpenIB.org BSD license (see below for full license text). However,
9 * the following notice accompanied the original version of this file:
13 * Copyright (c) 2006 Oracle. All rights reserved.
15 * This software is available to you under a choice of one of two
16 * licenses. You may choose to be licensed under the terms of the GNU
17 * General Public License (GPL) Version 2, available from the file
18 * COPYING in the main directory of this source tree, or the
19 * OpenIB.org BSD license below:
21 * Redistribution and use in source and binary forms, with or
22 * without modification, are permitted provided that the following
25 * - Redistributions of source code must retain the above
26 * copyright notice, this list of conditions and the following
29 * - Redistributions in binary form must reproduce the above
30 * copyright notice, this list of conditions and the following
31 * disclaimer in the documentation and/or other materials
32 * provided with the distribution.
34 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
36 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
38 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
39 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
40 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
45 #include <sys/sunddi.h>
46 #include <sys/containerof.h>
48 #include <sys/ib/clients/rdsv3/rdsv3.h>
49 #include <sys/ib/clients/rdsv3/rdsv3_debug.h>
52 * All of connection management is simplified by serializing it through
53 * work queues that execute in a connection managing thread.
55 * TCP wants to send acks through sendpage() in response to data_ready(),
56 * but it needs a process context to do so.
58 * The receive paths need to allocate but can't drop packets (!) so we have
59 * a thread around to block allocating if the receive fast path sees an
64 * Grand Unified Theory of connection life cycle:
65 * At any point in time, the connection can be in one of these states:
66 * DOWN, CONNECTING, UP, DISCONNECTING, ERROR
68 * The following transitions are possible:
71 * ERROR -> DISCONNECTING
72 * DISCONNECTING -> DOWN
76 * Transition to state DISCONNECTING/DOWN:
77 * - Inside the shutdown worker; synchronizes with xmit path
78 * through c_send_lock, and with connection management callbacks
81 * For receive callbacks, we rely on the underlying transport
82 * (TCP, IB/RDMA) to provide the necessary synchronisation.
84 struct rdsv3_workqueue_struct_s
*rdsv3_wq
;
87 rdsv3_connect_complete(struct rdsv3_connection
*conn
)
89 RDSV3_DPRINTF4("rdsv3_connect_complete", "Enter(conn: %p)", conn
);
91 if (!rdsv3_conn_transition(conn
, RDSV3_CONN_CONNECTING
,
94 RDSV3_DPRINTF2("rdsv3_connect_complete",
95 "%s: Cannot transition to state UP, "
96 "current state is %d",
98 atomic_get(&conn
->c_state
));
100 conn
->c_state
= RDSV3_CONN_ERROR
;
101 rdsv3_queue_work(rdsv3_wq
, &conn
->c_down_w
);
105 RDSV3_DPRINTF2("rdsv3_connect_complete",
106 "conn %p for %u.%u.%u.%u to %u.%u.%u.%u complete",
107 conn
, NIPQUAD(conn
->c_laddr
), NIPQUAD(conn
->c_faddr
));
109 conn
->c_reconnect_jiffies
= 0;
110 conn
->c_last_connect_jiffies
= ddi_get_lbolt();
112 set_bit(0, &conn
->c_map_queued
);
113 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_send_w
, 0);
114 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_recv_w
, 0);
116 RDSV3_DPRINTF4("rdsv3_connect_complete", "Return(conn: %p)", conn
);
120 * This random exponential backoff is relied on to eventually resolve racing
123 * If connect attempts race then both parties drop both connections and come
124 * here to wait for a random amount of time before trying again. Eventually
125 * the backoff range will be so much greater than the time it takes to
126 * establish a connection that one of the pair will establish the connection
127 * before the other's random delay fires.
129 * Connection attempts that arrive while a connection is already established
130 * are also considered to be racing connects. This lets a connection from
131 * a rebooted machine replace an existing stale connection before the transport
132 * notices that the connection has failed.
134 * We should *always* start with a random backoff; otherwise a broken connection
135 * will always take several iterations to be re-established.
138 rdsv3_queue_reconnect(struct rdsv3_connection
*conn
)
142 RDSV3_DPRINTF2("rdsv3_queue_reconnect",
143 "conn %p for %u.%u.%u.%u to %u.%u.%u.%u reconnect jiffies %lu",
144 conn
, NIPQUAD(conn
->c_laddr
), NIPQUAD(conn
->c_faddr
),
145 conn
->c_reconnect_jiffies
);
147 set_bit(RDSV3_RECONNECT_PENDING
, &conn
->c_flags
);
148 if (conn
->c_reconnect_jiffies
== 0) {
149 conn
->c_reconnect_jiffies
= rdsv3_sysctl_reconnect_min_jiffies
;
150 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_conn_w
, 0);
154 (void) random_get_pseudo_bytes((uint8_t *)&rand
, sizeof (rand
));
156 RDSV3_DPRINTF5("rdsv3",
157 "%lu delay %lu ceil conn %p for %u.%u.%u.%u -> %u.%u.%u.%u",
158 rand
% conn
->c_reconnect_jiffies
, conn
->c_reconnect_jiffies
,
159 conn
, NIPQUAD(conn
->c_laddr
), NIPQUAD(conn
->c_faddr
));
161 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_conn_w
,
162 rand
% conn
->c_reconnect_jiffies
);
164 conn
->c_reconnect_jiffies
= min(conn
->c_reconnect_jiffies
* 2,
165 rdsv3_sysctl_reconnect_max_jiffies
);
169 rdsv3_connect_worker(struct rdsv3_work_s
*work
)
171 struct rdsv3_connection
*conn
= __containerof(work
,
172 struct rdsv3_connection
, c_conn_w
.work
);
175 RDSV3_DPRINTF2("rdsv3_connect_worker", "Enter(work: %p)", work
);
177 clear_bit(RDSV3_RECONNECT_PENDING
, &conn
->c_flags
);
178 if (rdsv3_conn_transition(conn
, RDSV3_CONN_DOWN
,
179 RDSV3_CONN_CONNECTING
)) {
180 ret
= conn
->c_trans
->conn_connect(conn
);
182 RDSV3_DPRINTF5("rdsv3",
183 "connect conn %p for %u.%u.%u.%u -> %u.%u.%u.%u "
184 "ret %d", conn
, NIPQUAD(conn
->c_laddr
),
185 NIPQUAD(conn
->c_faddr
), ret
);
187 RDSV3_DPRINTF2("rdsv3_connect_worker",
188 "conn %p for %u.%u.%u.%u to %u.%u.%u.%u dispatched, ret %d",
189 conn
, NIPQUAD(conn
->c_laddr
), NIPQUAD(conn
->c_faddr
), ret
);
192 if (rdsv3_conn_transition(conn
, RDSV3_CONN_CONNECTING
,
194 rdsv3_queue_reconnect(conn
);
196 RDSV3_DPRINTF2("rdsv3_connect_worker",
197 "RDS: connect failed: %p", conn
);
198 rdsv3_conn_drop(conn
);
203 RDSV3_DPRINTF2("rdsv3_connect_worker", "Return(work: %p)", work
);
207 rdsv3_send_worker(struct rdsv3_work_s
*work
)
209 struct rdsv3_connection
*conn
= __containerof(work
,
210 struct rdsv3_connection
, c_send_w
.work
);
213 RDSV3_DPRINTF4("rdsv3_send_worker", "Enter(work: %p)", work
);
215 if (rdsv3_conn_state(conn
) == RDSV3_CONN_UP
) {
216 ret
= rdsv3_send_xmit(conn
);
217 RDSV3_DPRINTF5("rdsv3", "conn %p ret %d", conn
, ret
);
220 rdsv3_stats_inc(s_send_immediate_retry
);
221 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_send_w
, 0);
224 rdsv3_stats_inc(s_send_delayed_retry
);
225 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_send_w
, 2);
231 RDSV3_DPRINTF4("rdsv3_send_worker", "Return(work: %p)", work
);
235 rdsv3_recv_worker(struct rdsv3_work_s
*work
)
237 struct rdsv3_connection
*conn
= __containerof(work
,
238 struct rdsv3_connection
, c_recv_w
.work
);
241 RDSV3_DPRINTF4("rdsv3_recv_worker", "Enter(work: %p)", work
);
243 if (rdsv3_conn_state(conn
) == RDSV3_CONN_UP
) {
244 ret
= conn
->c_trans
->recv(conn
);
245 RDSV3_DPRINTF5("rdsv3", "conn %p ret %d", conn
, ret
);
248 rdsv3_stats_inc(s_recv_immediate_retry
);
249 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_recv_w
, 0);
252 rdsv3_stats_inc(s_recv_delayed_retry
);
253 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_recv_w
, 2);
259 RDSV3_DPRINTF4("rdsv3_recv_worker", "Return(work: %p)", work
);
263 rdsv3_shutdown_worker(struct rdsv3_work_s
*work
)
265 struct rdsv3_connection
*conn
= __containerof(work
,
266 struct rdsv3_connection
, c_down_w
);
267 rdsv3_conn_shutdown(conn
);
270 #define time_after(a, b) ((long)(b) - (long)(a) < 0)
273 rdsv3_reaper_worker(struct rdsv3_work_s
*work
)
275 struct rdsv3_connection
*conn
= __containerof(work
,
276 struct rdsv3_connection
, c_reap_w
.work
);
278 if (rdsv3_conn_state(conn
) != RDSV3_CONN_UP
&&
279 !time_after(conn
->c_last_connect_jiffies
,
280 ddi_get_lbolt() - RDSV3_REAPER_WAIT_JIFFIES
)) {
281 rdsv3_conn_destroy(conn
);
283 rdsv3_queue_delayed_work(rdsv3_wq
, &conn
->c_reap_w
,
284 RDSV3_REAPER_WAIT_JIFFIES
);
289 rdsv3_threads_exit(void)
291 rdsv3_destroy_task_workqueue(rdsv3_wq
);
295 rdsv3_threads_init(void)
297 rdsv3_wq
= rdsv3_create_task_workqueue("krdsd");