blob: 1eb0c291a0b41f441d2375e4b2aa228e0bcc5f27 [file] [log] [blame]
Andy Groverec162272009-02-24 15:30:30 +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 <linux/vmalloc.h>
36
37#include "rds.h"
38#include "ib.h"
39
40/*
41 * Set the selected protocol version
42 */
43static void rds_ib_set_protocol(struct rds_connection *conn, unsigned int version)
44{
45 conn->c_version = version;
46}
47
48/*
49 * Set up flow control
50 */
51static void rds_ib_set_flow_control(struct rds_connection *conn, u32 credits)
52{
53 struct rds_ib_connection *ic = conn->c_transport_data;
54
55 if (rds_ib_sysctl_flow_control && credits != 0) {
56 /* We're doing flow control */
57 ic->i_flowctl = 1;
58 rds_ib_send_add_credits(conn, credits);
59 } else {
60 ic->i_flowctl = 0;
61 }
62}
63
64/*
65 * Tune RNR behavior. Without flow control, we use a rather
66 * low timeout, but not the absolute minimum - this should
67 * be tunable.
68 *
69 * We already set the RNR retry count to 7 (which is the
70 * smallest infinite number :-) above.
71 * If flow control is off, we want to change this back to 0
72 * so that we learn quickly when our credit accounting is
73 * buggy.
74 *
75 * Caller passes in a qp_attr pointer - don't waste stack spacv
76 * by allocation this twice.
77 */
78static void
79rds_ib_tune_rnr(struct rds_ib_connection *ic, struct ib_qp_attr *attr)
80{
81 int ret;
82
83 attr->min_rnr_timer = IB_RNR_TIMER_000_32;
84 ret = ib_modify_qp(ic->i_cm_id->qp, attr, IB_QP_MIN_RNR_TIMER);
85 if (ret)
86 printk(KERN_NOTICE "ib_modify_qp(IB_QP_MIN_RNR_TIMER): err=%d\n", -ret);
87}
88
89/*
90 * Connection established.
91 * We get here for both outgoing and incoming connection.
92 */
93void rds_ib_cm_connect_complete(struct rds_connection *conn, struct rdma_cm_event *event)
94{
95 const struct rds_ib_connect_private *dp = NULL;
96 struct rds_ib_connection *ic = conn->c_transport_data;
97 struct rds_ib_device *rds_ibdev;
98 struct ib_qp_attr qp_attr;
99 int err;
100
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000101 if (event->param.conn.private_data_len >= sizeof(*dp)) {
Andy Groverec162272009-02-24 15:30:30 +0000102 dp = event->param.conn.private_data;
103
Andy Grover02a6a252009-07-17 13:13:24 +0000104 /* make sure it isn't empty data */
105 if (dp->dp_protocol_major) {
106 rds_ib_set_protocol(conn,
Andy Groverec162272009-02-24 15:30:30 +0000107 RDS_PROTOCOL(dp->dp_protocol_major,
Andy Grover02a6a252009-07-17 13:13:24 +0000108 dp->dp_protocol_minor));
109 rds_ib_set_flow_control(conn, be32_to_cpu(dp->dp_credit));
110 }
Andy Groverec162272009-02-24 15:30:30 +0000111 }
112
113 printk(KERN_NOTICE "RDS/IB: connected to %pI4 version %u.%u%s\n",
114 &conn->c_laddr,
115 RDS_PROTOCOL_MAJOR(conn->c_version),
116 RDS_PROTOCOL_MINOR(conn->c_version),
117 ic->i_flowctl ? ", flow control" : "");
118
119 /* Tune RNR behavior */
120 rds_ib_tune_rnr(ic, &qp_attr);
121
122 qp_attr.qp_state = IB_QPS_RTS;
123 err = ib_modify_qp(ic->i_cm_id->qp, &qp_attr, IB_QP_STATE);
124 if (err)
125 printk(KERN_NOTICE "ib_modify_qp(IB_QP_STATE, RTS): err=%d\n", err);
126
127 /* update ib_device with this local ipaddr & conn */
128 rds_ibdev = ib_get_client_data(ic->i_cm_id->device, &rds_ib_client);
129 err = rds_ib_update_ipaddr(rds_ibdev, conn->c_laddr);
130 if (err)
131 printk(KERN_ERR "rds_ib_update_ipaddr failed (%d)\n", err);
Andy Grover745cbcc2009-04-01 08:20:19 +0000132 rds_ib_add_conn(rds_ibdev, conn);
Andy Groverec162272009-02-24 15:30:30 +0000133
134 /* If the peer gave us the last packet it saw, process this as if
135 * we had received a regular ACK. */
136 if (dp && dp->dp_ack_seq)
137 rds_send_drop_acked(conn, be64_to_cpu(dp->dp_ack_seq), NULL);
138
139 rds_connect_complete(conn);
140}
141
142static void rds_ib_cm_fill_conn_param(struct rds_connection *conn,
143 struct rdma_conn_param *conn_param,
144 struct rds_ib_connect_private *dp,
145 u32 protocol_version)
146{
147 memset(conn_param, 0, sizeof(struct rdma_conn_param));
148 /* XXX tune these? */
149 conn_param->responder_resources = 1;
150 conn_param->initiator_depth = 1;
Andy Grover3ba23ad2009-07-17 13:13:22 +0000151 conn_param->retry_count = min_t(unsigned int, rds_ib_retry_count, 7);
Andy Groverec162272009-02-24 15:30:30 +0000152 conn_param->rnr_retry_count = 7;
153
154 if (dp) {
155 struct rds_ib_connection *ic = conn->c_transport_data;
156
157 memset(dp, 0, sizeof(*dp));
158 dp->dp_saddr = conn->c_laddr;
159 dp->dp_daddr = conn->c_faddr;
160 dp->dp_protocol_major = RDS_PROTOCOL_MAJOR(protocol_version);
161 dp->dp_protocol_minor = RDS_PROTOCOL_MINOR(protocol_version);
162 dp->dp_protocol_minor_mask = cpu_to_be16(RDS_IB_SUPPORTED_PROTOCOLS);
163 dp->dp_ack_seq = rds_ib_piggyb_ack(ic);
164
165 /* Advertise flow control */
166 if (ic->i_flowctl) {
167 unsigned int credits;
168
169 credits = IB_GET_POST_CREDITS(atomic_read(&ic->i_credits));
170 dp->dp_credit = cpu_to_be32(credits);
171 atomic_sub(IB_SET_POST_CREDITS(credits), &ic->i_credits);
172 }
173
174 conn_param->private_data = dp;
175 conn_param->private_data_len = sizeof(*dp);
176 }
177}
178
179static void rds_ib_cq_event_handler(struct ib_event *event, void *data)
180{
181 rdsdebug("event %u data %p\n", event->event, data);
182}
183
184static void rds_ib_qp_event_handler(struct ib_event *event, void *data)
185{
186 struct rds_connection *conn = data;
187 struct rds_ib_connection *ic = conn->c_transport_data;
188
189 rdsdebug("conn %p ic %p event %u\n", conn, ic, event->event);
190
191 switch (event->event) {
192 case IB_EVENT_COMM_EST:
193 rdma_notify(ic->i_cm_id, IB_EVENT_COMM_EST);
194 break;
195 default:
196 printk(KERN_WARNING "RDS/ib: unhandled QP event %u "
197 "on connection to %pI4\n", event->event,
198 &conn->c_faddr);
199 break;
200 }
201}
202
203/*
204 * This needs to be very careful to not leave IS_ERR pointers around for
205 * cleanup to trip over.
206 */
207static int rds_ib_setup_qp(struct rds_connection *conn)
208{
209 struct rds_ib_connection *ic = conn->c_transport_data;
210 struct ib_device *dev = ic->i_cm_id->device;
211 struct ib_qp_init_attr attr;
212 struct rds_ib_device *rds_ibdev;
213 int ret;
214
215 /* rds_ib_add_one creates a rds_ib_device object per IB device,
216 * and allocates a protection domain, memory range and FMR pool
217 * for each. If that fails for any reason, it will not register
218 * the rds_ibdev at all.
219 */
220 rds_ibdev = ib_get_client_data(dev, &rds_ib_client);
221 if (rds_ibdev == NULL) {
222 if (printk_ratelimit())
223 printk(KERN_NOTICE "RDS/IB: No client_data for device %s\n",
224 dev->name);
225 return -EOPNOTSUPP;
226 }
227
228 if (rds_ibdev->max_wrs < ic->i_send_ring.w_nr + 1)
229 rds_ib_ring_resize(&ic->i_send_ring, rds_ibdev->max_wrs - 1);
230 if (rds_ibdev->max_wrs < ic->i_recv_ring.w_nr + 1)
231 rds_ib_ring_resize(&ic->i_recv_ring, rds_ibdev->max_wrs - 1);
232
233 /* Protection domain and memory range */
234 ic->i_pd = rds_ibdev->pd;
235 ic->i_mr = rds_ibdev->mr;
236
237 ic->i_send_cq = ib_create_cq(dev, rds_ib_send_cq_comp_handler,
238 rds_ib_cq_event_handler, conn,
239 ic->i_send_ring.w_nr + 1, 0);
240 if (IS_ERR(ic->i_send_cq)) {
241 ret = PTR_ERR(ic->i_send_cq);
242 ic->i_send_cq = NULL;
243 rdsdebug("ib_create_cq send failed: %d\n", ret);
244 goto out;
245 }
246
247 ic->i_recv_cq = ib_create_cq(dev, rds_ib_recv_cq_comp_handler,
248 rds_ib_cq_event_handler, conn,
249 ic->i_recv_ring.w_nr, 0);
250 if (IS_ERR(ic->i_recv_cq)) {
251 ret = PTR_ERR(ic->i_recv_cq);
252 ic->i_recv_cq = NULL;
253 rdsdebug("ib_create_cq recv failed: %d\n", ret);
254 goto out;
255 }
256
257 ret = ib_req_notify_cq(ic->i_send_cq, IB_CQ_NEXT_COMP);
258 if (ret) {
259 rdsdebug("ib_req_notify_cq send failed: %d\n", ret);
260 goto out;
261 }
262
263 ret = ib_req_notify_cq(ic->i_recv_cq, IB_CQ_SOLICITED);
264 if (ret) {
265 rdsdebug("ib_req_notify_cq recv failed: %d\n", ret);
266 goto out;
267 }
268
269 /* XXX negotiate max send/recv with remote? */
270 memset(&attr, 0, sizeof(attr));
271 attr.event_handler = rds_ib_qp_event_handler;
272 attr.qp_context = conn;
273 /* + 1 to allow for the single ack message */
274 attr.cap.max_send_wr = ic->i_send_ring.w_nr + 1;
275 attr.cap.max_recv_wr = ic->i_recv_ring.w_nr + 1;
276 attr.cap.max_send_sge = rds_ibdev->max_sge;
277 attr.cap.max_recv_sge = RDS_IB_RECV_SGE;
278 attr.sq_sig_type = IB_SIGNAL_REQ_WR;
279 attr.qp_type = IB_QPT_RC;
280 attr.send_cq = ic->i_send_cq;
281 attr.recv_cq = ic->i_recv_cq;
282
283 /*
284 * XXX this can fail if max_*_wr is too large? Are we supposed
285 * to back off until we get a value that the hardware can support?
286 */
287 ret = rdma_create_qp(ic->i_cm_id, ic->i_pd, &attr);
288 if (ret) {
289 rdsdebug("rdma_create_qp failed: %d\n", ret);
290 goto out;
291 }
292
293 ic->i_send_hdrs = ib_dma_alloc_coherent(dev,
294 ic->i_send_ring.w_nr *
295 sizeof(struct rds_header),
296 &ic->i_send_hdrs_dma, GFP_KERNEL);
297 if (ic->i_send_hdrs == NULL) {
298 ret = -ENOMEM;
299 rdsdebug("ib_dma_alloc_coherent send failed\n");
300 goto out;
301 }
302
303 ic->i_recv_hdrs = ib_dma_alloc_coherent(dev,
304 ic->i_recv_ring.w_nr *
305 sizeof(struct rds_header),
306 &ic->i_recv_hdrs_dma, GFP_KERNEL);
307 if (ic->i_recv_hdrs == NULL) {
308 ret = -ENOMEM;
309 rdsdebug("ib_dma_alloc_coherent recv failed\n");
310 goto out;
311 }
312
313 ic->i_ack = ib_dma_alloc_coherent(dev, sizeof(struct rds_header),
314 &ic->i_ack_dma, GFP_KERNEL);
315 if (ic->i_ack == NULL) {
316 ret = -ENOMEM;
317 rdsdebug("ib_dma_alloc_coherent ack failed\n");
318 goto out;
319 }
320
321 ic->i_sends = vmalloc(ic->i_send_ring.w_nr * sizeof(struct rds_ib_send_work));
322 if (ic->i_sends == NULL) {
323 ret = -ENOMEM;
324 rdsdebug("send allocation failed\n");
325 goto out;
326 }
327 rds_ib_send_init_ring(ic);
328
329 ic->i_recvs = vmalloc(ic->i_recv_ring.w_nr * sizeof(struct rds_ib_recv_work));
330 if (ic->i_recvs == NULL) {
331 ret = -ENOMEM;
332 rdsdebug("recv allocation failed\n");
333 goto out;
334 }
335
336 rds_ib_recv_init_ring(ic);
337 rds_ib_recv_init_ack(ic);
338
339 /* Post receive buffers - as a side effect, this will update
340 * the posted credit count. */
341 rds_ib_recv_refill(conn, GFP_KERNEL, GFP_HIGHUSER, 1);
342
343 rdsdebug("conn %p pd %p mr %p cq %p %p\n", conn, ic->i_pd, ic->i_mr,
344 ic->i_send_cq, ic->i_recv_cq);
345
346out:
347 return ret;
348}
349
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000350static u32 rds_ib_protocol_compatible(struct rdma_cm_event *event)
Andy Groverec162272009-02-24 15:30:30 +0000351{
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000352 const struct rds_ib_connect_private *dp = event->param.conn.private_data;
Andy Groverec162272009-02-24 15:30:30 +0000353 u16 common;
354 u32 version = 0;
355
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000356 /*
357 * rdma_cm private data is odd - when there is any private data in the
Andy Groverec162272009-02-24 15:30:30 +0000358 * request, we will be given a pretty large buffer without telling us the
359 * original size. The only way to tell the difference is by looking at
360 * the contents, which are initialized to zero.
361 * If the protocol version fields aren't set, this is a connection attempt
362 * from an older version. This could could be 3.0 or 2.0 - we can't tell.
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000363 * We really should have changed this for OFED 1.3 :-(
364 */
365
366 /* Be paranoid. RDS always has privdata */
367 if (!event->param.conn.private_data_len) {
368 printk(KERN_NOTICE "RDS incoming connection has no private data, "
369 "rejecting\n");
370 return 0;
371 }
372
373 /* Even if len is crap *now* I still want to check it. -ASG */
374 if (event->param.conn.private_data_len < sizeof (*dp)
375 || dp->dp_protocol_major == 0)
Andy Groverec162272009-02-24 15:30:30 +0000376 return RDS_PROTOCOL_3_0;
377
378 common = be16_to_cpu(dp->dp_protocol_minor_mask) & RDS_IB_SUPPORTED_PROTOCOLS;
379 if (dp->dp_protocol_major == 3 && common) {
380 version = RDS_PROTOCOL_3_0;
381 while ((common >>= 1) != 0)
382 version++;
383 } else if (printk_ratelimit()) {
384 printk(KERN_NOTICE "RDS: Connection from %pI4 using "
385 "incompatible protocol version %u.%u\n",
386 &dp->dp_saddr,
387 dp->dp_protocol_major,
388 dp->dp_protocol_minor);
389 }
390 return version;
391}
392
393int rds_ib_cm_handle_connect(struct rdma_cm_id *cm_id,
394 struct rdma_cm_event *event)
395{
396 __be64 lguid = cm_id->route.path_rec->sgid.global.interface_id;
397 __be64 fguid = cm_id->route.path_rec->dgid.global.interface_id;
398 const struct rds_ib_connect_private *dp = event->param.conn.private_data;
399 struct rds_ib_connect_private dp_rep;
400 struct rds_connection *conn = NULL;
401 struct rds_ib_connection *ic = NULL;
402 struct rdma_conn_param conn_param;
403 u32 version;
404 int err, destroy = 1;
405
406 /* Check whether the remote protocol version matches ours. */
Andy Grover9ddbcfa2009-07-17 13:13:23 +0000407 version = rds_ib_protocol_compatible(event);
Andy Groverec162272009-02-24 15:30:30 +0000408 if (!version)
409 goto out;
410
411 rdsdebug("saddr %pI4 daddr %pI4 RDSv%u.%u lguid 0x%llx fguid "
412 "0x%llx\n", &dp->dp_saddr, &dp->dp_daddr,
413 RDS_PROTOCOL_MAJOR(version), RDS_PROTOCOL_MINOR(version),
414 (unsigned long long)be64_to_cpu(lguid),
415 (unsigned long long)be64_to_cpu(fguid));
416
417 conn = rds_conn_create(dp->dp_daddr, dp->dp_saddr, &rds_ib_transport,
418 GFP_KERNEL);
419 if (IS_ERR(conn)) {
420 rdsdebug("rds_conn_create failed (%ld)\n", PTR_ERR(conn));
421 conn = NULL;
422 goto out;
423 }
424
425 /*
426 * The connection request may occur while the
427 * previous connection exist, e.g. in case of failover.
428 * But as connections may be initiated simultaneously
429 * by both hosts, we have a random backoff mechanism -
430 * see the comment above rds_queue_reconnect()
431 */
432 mutex_lock(&conn->c_cm_lock);
433 if (!rds_conn_transition(conn, RDS_CONN_DOWN, RDS_CONN_CONNECTING)) {
434 if (rds_conn_state(conn) == RDS_CONN_UP) {
435 rdsdebug("incoming connect while connecting\n");
436 rds_conn_drop(conn);
437 rds_ib_stats_inc(s_ib_listen_closed_stale);
438 } else
439 if (rds_conn_state(conn) == RDS_CONN_CONNECTING) {
440 /* Wait and see - our connect may still be succeeding */
441 rds_ib_stats_inc(s_ib_connect_raced);
442 }
443 mutex_unlock(&conn->c_cm_lock);
444 goto out;
445 }
446
447 ic = conn->c_transport_data;
448
449 rds_ib_set_protocol(conn, version);
450 rds_ib_set_flow_control(conn, be32_to_cpu(dp->dp_credit));
451
452 /* If the peer gave us the last packet it saw, process this as if
453 * we had received a regular ACK. */
454 if (dp->dp_ack_seq)
455 rds_send_drop_acked(conn, be64_to_cpu(dp->dp_ack_seq), NULL);
456
457 BUG_ON(cm_id->context);
458 BUG_ON(ic->i_cm_id);
459
460 ic->i_cm_id = cm_id;
461 cm_id->context = conn;
462
463 /* We got halfway through setting up the ib_connection, if we
464 * fail now, we have to take the long route out of this mess. */
465 destroy = 0;
466
467 err = rds_ib_setup_qp(conn);
468 if (err) {
469 rds_ib_conn_error(conn, "rds_ib_setup_qp failed (%d)\n", err);
470 goto out;
471 }
472
473 rds_ib_cm_fill_conn_param(conn, &conn_param, &dp_rep, version);
474
475 /* rdma_accept() calls rdma_reject() internally if it fails */
476 err = rdma_accept(cm_id, &conn_param);
477 mutex_unlock(&conn->c_cm_lock);
478 if (err) {
479 rds_ib_conn_error(conn, "rdma_accept failed (%d)\n", err);
480 goto out;
481 }
482
483 return 0;
484
485out:
486 rdma_reject(cm_id, NULL, 0);
487 return destroy;
488}
489
490
491int rds_ib_cm_initiate_connect(struct rdma_cm_id *cm_id)
492{
493 struct rds_connection *conn = cm_id->context;
494 struct rds_ib_connection *ic = conn->c_transport_data;
495 struct rdma_conn_param conn_param;
496 struct rds_ib_connect_private dp;
497 int ret;
498
499 /* If the peer doesn't do protocol negotiation, we must
500 * default to RDSv3.0 */
501 rds_ib_set_protocol(conn, RDS_PROTOCOL_3_0);
502 ic->i_flowctl = rds_ib_sysctl_flow_control; /* advertise flow control */
503
504 ret = rds_ib_setup_qp(conn);
505 if (ret) {
506 rds_ib_conn_error(conn, "rds_ib_setup_qp failed (%d)\n", ret);
507 goto out;
508 }
509
510 rds_ib_cm_fill_conn_param(conn, &conn_param, &dp, RDS_PROTOCOL_VERSION);
511
512 ret = rdma_connect(cm_id, &conn_param);
513 if (ret)
514 rds_ib_conn_error(conn, "rdma_connect failed (%d)\n", ret);
515
516out:
517 /* Beware - returning non-zero tells the rdma_cm to destroy
518 * the cm_id. We should certainly not do it as long as we still
519 * "own" the cm_id. */
520 if (ret) {
521 if (ic->i_cm_id == cm_id)
522 ret = 0;
523 }
524 return ret;
525}
526
527int rds_ib_conn_connect(struct rds_connection *conn)
528{
529 struct rds_ib_connection *ic = conn->c_transport_data;
530 struct sockaddr_in src, dest;
531 int ret;
532
533 /* XXX I wonder what affect the port space has */
534 /* delegate cm event handler to rdma_transport */
535 ic->i_cm_id = rdma_create_id(rds_rdma_cm_event_handler, conn,
536 RDMA_PS_TCP);
537 if (IS_ERR(ic->i_cm_id)) {
538 ret = PTR_ERR(ic->i_cm_id);
539 ic->i_cm_id = NULL;
540 rdsdebug("rdma_create_id() failed: %d\n", ret);
541 goto out;
542 }
543
544 rdsdebug("created cm id %p for conn %p\n", ic->i_cm_id, conn);
545
546 src.sin_family = AF_INET;
547 src.sin_addr.s_addr = (__force u32)conn->c_laddr;
548 src.sin_port = (__force u16)htons(0);
549
550 dest.sin_family = AF_INET;
551 dest.sin_addr.s_addr = (__force u32)conn->c_faddr;
552 dest.sin_port = (__force u16)htons(RDS_PORT);
553
554 ret = rdma_resolve_addr(ic->i_cm_id, (struct sockaddr *)&src,
555 (struct sockaddr *)&dest,
556 RDS_RDMA_RESOLVE_TIMEOUT_MS);
557 if (ret) {
558 rdsdebug("addr resolve failed for cm id %p: %d\n", ic->i_cm_id,
559 ret);
560 rdma_destroy_id(ic->i_cm_id);
561 ic->i_cm_id = NULL;
562 }
563
564out:
565 return ret;
566}
567
568/*
569 * This is so careful about only cleaning up resources that were built up
570 * so that it can be called at any point during startup. In fact it
571 * can be called multiple times for a given connection.
572 */
573void rds_ib_conn_shutdown(struct rds_connection *conn)
574{
575 struct rds_ib_connection *ic = conn->c_transport_data;
576 int err = 0;
577
578 rdsdebug("cm %p pd %p cq %p %p qp %p\n", ic->i_cm_id,
579 ic->i_pd, ic->i_send_cq, ic->i_recv_cq,
580 ic->i_cm_id ? ic->i_cm_id->qp : NULL);
581
582 if (ic->i_cm_id) {
583 struct ib_device *dev = ic->i_cm_id->device;
584
585 rdsdebug("disconnecting cm %p\n", ic->i_cm_id);
586 err = rdma_disconnect(ic->i_cm_id);
587 if (err) {
588 /* Actually this may happen quite frequently, when
589 * an outgoing connect raced with an incoming connect.
590 */
591 rdsdebug("failed to disconnect, cm: %p err %d\n",
592 ic->i_cm_id, err);
593 }
594
595 wait_event(rds_ib_ring_empty_wait,
596 rds_ib_ring_empty(&ic->i_send_ring) &&
597 rds_ib_ring_empty(&ic->i_recv_ring));
598
599 if (ic->i_send_hdrs)
600 ib_dma_free_coherent(dev,
601 ic->i_send_ring.w_nr *
602 sizeof(struct rds_header),
603 ic->i_send_hdrs,
604 ic->i_send_hdrs_dma);
605
606 if (ic->i_recv_hdrs)
607 ib_dma_free_coherent(dev,
608 ic->i_recv_ring.w_nr *
609 sizeof(struct rds_header),
610 ic->i_recv_hdrs,
611 ic->i_recv_hdrs_dma);
612
613 if (ic->i_ack)
614 ib_dma_free_coherent(dev, sizeof(struct rds_header),
615 ic->i_ack, ic->i_ack_dma);
616
617 if (ic->i_sends)
618 rds_ib_send_clear_ring(ic);
619 if (ic->i_recvs)
620 rds_ib_recv_clear_ring(ic);
621
622 if (ic->i_cm_id->qp)
623 rdma_destroy_qp(ic->i_cm_id);
624 if (ic->i_send_cq)
625 ib_destroy_cq(ic->i_send_cq);
626 if (ic->i_recv_cq)
627 ib_destroy_cq(ic->i_recv_cq);
628 rdma_destroy_id(ic->i_cm_id);
629
630 /*
631 * Move connection back to the nodev list.
632 */
Andy Grover745cbcc2009-04-01 08:20:19 +0000633 if (ic->rds_ibdev)
634 rds_ib_remove_conn(ic->rds_ibdev, conn);
Andy Groverec162272009-02-24 15:30:30 +0000635
636 ic->i_cm_id = NULL;
637 ic->i_pd = NULL;
638 ic->i_mr = NULL;
639 ic->i_send_cq = NULL;
640 ic->i_recv_cq = NULL;
641 ic->i_send_hdrs = NULL;
642 ic->i_recv_hdrs = NULL;
643 ic->i_ack = NULL;
644 }
645 BUG_ON(ic->rds_ibdev);
646
647 /* Clear pending transmit */
648 if (ic->i_rm) {
649 rds_message_put(ic->i_rm);
650 ic->i_rm = NULL;
651 }
652
653 /* Clear the ACK state */
654 clear_bit(IB_ACK_IN_FLIGHT, &ic->i_ack_flags);
Andy Grover8cbd9602009-04-01 08:20:20 +0000655#ifdef KERNEL_HAS_ATOMIC64
656 atomic64_set(&ic->i_ack_next, 0);
657#else
658 ic->i_ack_next = 0;
659#endif
Andy Groverec162272009-02-24 15:30:30 +0000660 ic->i_ack_recv = 0;
661
662 /* Clear flow control state */
663 ic->i_flowctl = 0;
664 atomic_set(&ic->i_credits, 0);
665
666 rds_ib_ring_init(&ic->i_send_ring, rds_ib_sysctl_max_send_wr);
667 rds_ib_ring_init(&ic->i_recv_ring, rds_ib_sysctl_max_recv_wr);
668
669 if (ic->i_ibinc) {
670 rds_inc_put(&ic->i_ibinc->ii_inc);
671 ic->i_ibinc = NULL;
672 }
673
674 vfree(ic->i_sends);
675 ic->i_sends = NULL;
676 vfree(ic->i_recvs);
677 ic->i_recvs = NULL;
678}
679
680int rds_ib_conn_alloc(struct rds_connection *conn, gfp_t gfp)
681{
682 struct rds_ib_connection *ic;
683 unsigned long flags;
684
685 /* XXX too lazy? */
686 ic = kzalloc(sizeof(struct rds_ib_connection), GFP_KERNEL);
687 if (ic == NULL)
688 return -ENOMEM;
689
690 INIT_LIST_HEAD(&ic->ib_node);
691 mutex_init(&ic->i_recv_mutex);
Andy Grover8cbd9602009-04-01 08:20:20 +0000692#ifndef KERNEL_HAS_ATOMIC64
693 spin_lock_init(&ic->i_ack_lock);
694#endif
Andy Groverec162272009-02-24 15:30:30 +0000695
696 /*
697 * rds_ib_conn_shutdown() waits for these to be emptied so they
698 * must be initialized before it can be called.
699 */
700 rds_ib_ring_init(&ic->i_send_ring, rds_ib_sysctl_max_send_wr);
701 rds_ib_ring_init(&ic->i_recv_ring, rds_ib_sysctl_max_recv_wr);
702
703 ic->conn = conn;
704 conn->c_transport_data = ic;
705
706 spin_lock_irqsave(&ib_nodev_conns_lock, flags);
707 list_add_tail(&ic->ib_node, &ib_nodev_conns);
708 spin_unlock_irqrestore(&ib_nodev_conns_lock, flags);
709
710
711 rdsdebug("conn %p conn ic %p\n", conn, conn->c_transport_data);
712 return 0;
713}
714
Andy Grover745cbcc2009-04-01 08:20:19 +0000715/*
716 * Free a connection. Connection must be shut down and not set for reconnect.
717 */
Andy Groverec162272009-02-24 15:30:30 +0000718void rds_ib_conn_free(void *arg)
719{
720 struct rds_ib_connection *ic = arg;
Andy Grover745cbcc2009-04-01 08:20:19 +0000721 spinlock_t *lock_ptr;
722
Andy Groverec162272009-02-24 15:30:30 +0000723 rdsdebug("ic %p\n", ic);
Andy Grover745cbcc2009-04-01 08:20:19 +0000724
725 /*
726 * Conn is either on a dev's list or on the nodev list.
727 * A race with shutdown() or connect() would cause problems
728 * (since rds_ibdev would change) but that should never happen.
729 */
730 lock_ptr = ic->rds_ibdev ? &ic->rds_ibdev->spinlock : &ib_nodev_conns_lock;
731
732 spin_lock_irq(lock_ptr);
Andy Groverec162272009-02-24 15:30:30 +0000733 list_del(&ic->ib_node);
Andy Grover745cbcc2009-04-01 08:20:19 +0000734 spin_unlock_irq(lock_ptr);
735
Andy Groverec162272009-02-24 15:30:30 +0000736 kfree(ic);
737}
738
739
740/*
741 * An error occurred on the connection
742 */
743void
744__rds_ib_conn_error(struct rds_connection *conn, const char *fmt, ...)
745{
746 va_list ap;
747
748 rds_conn_drop(conn);
749
750 va_start(ap, fmt);
751 vprintk(fmt, ap);
752 va_end(ap);
753}