1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 2 /* 3 * Copyright (c) 2015-2018 Oracle. All rights reserved. 4 * Copyright (c) 2014 Open Grid Computing, Inc. All rights reserved. 5 * Copyright (c) 2005-2007 Network Appliance, Inc. All rights reserved. 6 * 7 * This software is available to you under a choice of one of two 8 * licenses. You may choose to be licensed under the terms of the GNU 9 * General Public License (GPL) Version 2, available from the file 10 * COPYING in the main directory of this source tree, or the BSD-type 11 * license below: 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 17 * Redistributions of source code must retain the above copyright 18 * notice, this list of conditions and the following disclaimer. 19 * 20 * Redistributions in binary form must reproduce the above 21 * copyright notice, this list of conditions and the following 22 * disclaimer in the documentation and/or other materials provided 23 * with the distribution. 24 * 25 * Neither the name of the Network Appliance, Inc. nor the names of 26 * its contributors may be used to endorse or promote products 27 * derived from this software without specific prior written 28 * permission. 29 * 30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 33 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 34 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 35 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 36 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 37 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 38 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 40 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 41 * 42 * Author: Tom Tucker <tom@opengridcomputing.com> 43 */ 44 45 #include <linux/interrupt.h> 46 #include <linux/sched.h> 47 #include <linux/slab.h> 48 #include <linux/spinlock.h> 49 #include <linux/workqueue.h> 50 #include <linux/export.h> 51 52 #include <rdma/ib_verbs.h> 53 #include <rdma/rdma_cm.h> 54 #include <rdma/rw.h> 55 56 #include <linux/sunrpc/addr.h> 57 #include <linux/sunrpc/debug.h> 58 #include <linux/sunrpc/rpc_rdma.h> 59 #include <linux/sunrpc/svc_xprt.h> 60 #include <linux/sunrpc/svc_rdma.h> 61 62 #include "xprt_rdma.h" 63 #include <trace/events/rpcrdma.h> 64 65 #define RPCDBG_FACILITY RPCDBG_SVCXPRT 66 67 static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv, 68 struct net *net); 69 static struct svc_xprt *svc_rdma_create(struct svc_serv *serv, 70 struct net *net, 71 struct sockaddr *sa, int salen, 72 int flags); 73 static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt); 74 static void svc_rdma_detach(struct svc_xprt *xprt); 75 static void svc_rdma_free(struct svc_xprt *xprt); 76 static int svc_rdma_has_wspace(struct svc_xprt *xprt); 77 static void svc_rdma_secure_port(struct svc_rqst *); 78 static void svc_rdma_kill_temp_xprt(struct svc_xprt *); 79 80 static const struct svc_xprt_ops svc_rdma_ops = { 81 .xpo_create = svc_rdma_create, 82 .xpo_recvfrom = svc_rdma_recvfrom, 83 .xpo_sendto = svc_rdma_sendto, 84 .xpo_read_payload = svc_rdma_read_payload, 85 .xpo_release_rqst = svc_rdma_release_rqst, 86 .xpo_detach = svc_rdma_detach, 87 .xpo_free = svc_rdma_free, 88 .xpo_has_wspace = svc_rdma_has_wspace, 89 .xpo_accept = svc_rdma_accept, 90 .xpo_secure_port = svc_rdma_secure_port, 91 .xpo_kill_temp_xprt = svc_rdma_kill_temp_xprt, 92 }; 93 94 struct svc_xprt_class svc_rdma_class = { 95 .xcl_name = "rdma", 96 .xcl_owner = THIS_MODULE, 97 .xcl_ops = &svc_rdma_ops, 98 .xcl_max_payload = RPCSVC_MAXPAYLOAD_RDMA, 99 .xcl_ident = XPRT_TRANSPORT_RDMA, 100 }; 101 102 /* QP event handler */ 103 static void qp_event_handler(struct ib_event *event, void *context) 104 { 105 struct svc_xprt *xprt = context; 106 107 trace_svcrdma_qp_error(event, (struct sockaddr *)&xprt->xpt_remote); 108 switch (event->event) { 109 /* These are considered benign events */ 110 case IB_EVENT_PATH_MIG: 111 case IB_EVENT_COMM_EST: 112 case IB_EVENT_SQ_DRAINED: 113 case IB_EVENT_QP_LAST_WQE_REACHED: 114 break; 115 116 /* These are considered fatal events */ 117 case IB_EVENT_PATH_MIG_ERR: 118 case IB_EVENT_QP_FATAL: 119 case IB_EVENT_QP_REQ_ERR: 120 case IB_EVENT_QP_ACCESS_ERR: 121 case IB_EVENT_DEVICE_FATAL: 122 default: 123 set_bit(XPT_CLOSE, &xprt->xpt_flags); 124 svc_xprt_enqueue(xprt); 125 break; 126 } 127 } 128 129 static struct svcxprt_rdma *svc_rdma_create_xprt(struct svc_serv *serv, 130 struct net *net) 131 { 132 struct svcxprt_rdma *cma_xprt = kzalloc(sizeof *cma_xprt, GFP_KERNEL); 133 134 if (!cma_xprt) { 135 dprintk("svcrdma: failed to create new transport\n"); 136 return NULL; 137 } 138 svc_xprt_init(net, &svc_rdma_class, &cma_xprt->sc_xprt, serv); 139 INIT_LIST_HEAD(&cma_xprt->sc_accept_q); 140 INIT_LIST_HEAD(&cma_xprt->sc_rq_dto_q); 141 INIT_LIST_HEAD(&cma_xprt->sc_read_complete_q); 142 INIT_LIST_HEAD(&cma_xprt->sc_send_ctxts); 143 init_llist_head(&cma_xprt->sc_recv_ctxts); 144 INIT_LIST_HEAD(&cma_xprt->sc_rw_ctxts); 145 init_waitqueue_head(&cma_xprt->sc_send_wait); 146 147 spin_lock_init(&cma_xprt->sc_lock); 148 spin_lock_init(&cma_xprt->sc_rq_dto_lock); 149 spin_lock_init(&cma_xprt->sc_send_lock); 150 spin_lock_init(&cma_xprt->sc_rw_ctxt_lock); 151 152 /* 153 * Note that this implies that the underlying transport support 154 * has some form of congestion control (see RFC 7530 section 3.1 155 * paragraph 2). For now, we assume that all supported RDMA 156 * transports are suitable here. 157 */ 158 set_bit(XPT_CONG_CTRL, &cma_xprt->sc_xprt.xpt_flags); 159 160 return cma_xprt; 161 } 162 163 static void 164 svc_rdma_parse_connect_private(struct svcxprt_rdma *newxprt, 165 struct rdma_conn_param *param) 166 { 167 const struct rpcrdma_connect_private *pmsg = param->private_data; 168 169 if (pmsg && 170 pmsg->cp_magic == rpcrdma_cmp_magic && 171 pmsg->cp_version == RPCRDMA_CMP_VERSION) { 172 newxprt->sc_snd_w_inv = pmsg->cp_flags & 173 RPCRDMA_CMP_F_SND_W_INV_OK; 174 175 dprintk("svcrdma: client send_size %u, recv_size %u " 176 "remote inv %ssupported\n", 177 rpcrdma_decode_buffer_size(pmsg->cp_send_size), 178 rpcrdma_decode_buffer_size(pmsg->cp_recv_size), 179 newxprt->sc_snd_w_inv ? "" : "un"); 180 } 181 } 182 183 /* 184 * This function handles the CONNECT_REQUEST event on a listening 185 * endpoint. It is passed the cma_id for the _new_ connection. The context in 186 * this cma_id is inherited from the listening cma_id and is the svc_xprt 187 * structure for the listening endpoint. 188 * 189 * This function creates a new xprt for the new connection and enqueues it on 190 * the accept queue for the listent xprt. When the listen thread is kicked, it 191 * will call the recvfrom method on the listen xprt which will accept the new 192 * connection. 193 */ 194 static void handle_connect_req(struct rdma_cm_id *new_cma_id, 195 struct rdma_conn_param *param) 196 { 197 struct svcxprt_rdma *listen_xprt = new_cma_id->context; 198 struct svcxprt_rdma *newxprt; 199 struct sockaddr *sa; 200 201 /* Create a new transport */ 202 newxprt = svc_rdma_create_xprt(listen_xprt->sc_xprt.xpt_server, 203 listen_xprt->sc_xprt.xpt_net); 204 if (!newxprt) 205 return; 206 newxprt->sc_cm_id = new_cma_id; 207 new_cma_id->context = newxprt; 208 svc_rdma_parse_connect_private(newxprt, param); 209 210 /* Save client advertised inbound read limit for use later in accept. */ 211 newxprt->sc_ord = param->initiator_depth; 212 213 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr; 214 newxprt->sc_xprt.xpt_remotelen = svc_addr_len(sa); 215 memcpy(&newxprt->sc_xprt.xpt_remote, sa, 216 newxprt->sc_xprt.xpt_remotelen); 217 snprintf(newxprt->sc_xprt.xpt_remotebuf, 218 sizeof(newxprt->sc_xprt.xpt_remotebuf) - 1, "%pISc", sa); 219 220 /* The remote port is arbitrary and not under the control of the 221 * client ULP. Set it to a fixed value so that the DRC continues 222 * to be effective after a reconnect. 223 */ 224 rpc_set_port((struct sockaddr *)&newxprt->sc_xprt.xpt_remote, 0); 225 226 sa = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr; 227 svc_xprt_set_local(&newxprt->sc_xprt, sa, svc_addr_len(sa)); 228 229 /* 230 * Enqueue the new transport on the accept queue of the listening 231 * transport 232 */ 233 spin_lock(&listen_xprt->sc_lock); 234 list_add_tail(&newxprt->sc_accept_q, &listen_xprt->sc_accept_q); 235 spin_unlock(&listen_xprt->sc_lock); 236 237 set_bit(XPT_CONN, &listen_xprt->sc_xprt.xpt_flags); 238 svc_xprt_enqueue(&listen_xprt->sc_xprt); 239 } 240 241 /* 242 * Handles events generated on the listening endpoint. These events will be 243 * either be incoming connect requests or adapter removal events. 244 */ 245 static int rdma_listen_handler(struct rdma_cm_id *cma_id, 246 struct rdma_cm_event *event) 247 { 248 switch (event->event) { 249 case RDMA_CM_EVENT_CONNECT_REQUEST: 250 dprintk("svcrdma: Connect request on cma_id=%p, xprt = %p, " 251 "event = %s (%d)\n", cma_id, cma_id->context, 252 rdma_event_msg(event->event), event->event); 253 handle_connect_req(cma_id, &event->param.conn); 254 break; 255 default: 256 /* NB: No device removal upcall for INADDR_ANY listeners */ 257 dprintk("svcrdma: Unexpected event on listening endpoint %p, " 258 "event = %s (%d)\n", cma_id, 259 rdma_event_msg(event->event), event->event); 260 break; 261 } 262 263 return 0; 264 } 265 266 static int rdma_cma_handler(struct rdma_cm_id *cma_id, 267 struct rdma_cm_event *event) 268 { 269 struct svcxprt_rdma *rdma = cma_id->context; 270 struct svc_xprt *xprt = &rdma->sc_xprt; 271 272 switch (event->event) { 273 case RDMA_CM_EVENT_ESTABLISHED: 274 /* Accept complete */ 275 svc_xprt_get(xprt); 276 dprintk("svcrdma: Connection completed on DTO xprt=%p, " 277 "cm_id=%p\n", xprt, cma_id); 278 clear_bit(RDMAXPRT_CONN_PENDING, &rdma->sc_flags); 279 svc_xprt_enqueue(xprt); 280 break; 281 case RDMA_CM_EVENT_DISCONNECTED: 282 dprintk("svcrdma: Disconnect on DTO xprt=%p, cm_id=%p\n", 283 xprt, cma_id); 284 set_bit(XPT_CLOSE, &xprt->xpt_flags); 285 svc_xprt_enqueue(xprt); 286 svc_xprt_put(xprt); 287 break; 288 case RDMA_CM_EVENT_DEVICE_REMOVAL: 289 dprintk("svcrdma: Device removal cma_id=%p, xprt = %p, " 290 "event = %s (%d)\n", cma_id, xprt, 291 rdma_event_msg(event->event), event->event); 292 set_bit(XPT_CLOSE, &xprt->xpt_flags); 293 svc_xprt_enqueue(xprt); 294 svc_xprt_put(xprt); 295 break; 296 default: 297 dprintk("svcrdma: Unexpected event on DTO endpoint %p, " 298 "event = %s (%d)\n", cma_id, 299 rdma_event_msg(event->event), event->event); 300 break; 301 } 302 return 0; 303 } 304 305 /* 306 * Create a listening RDMA service endpoint. 307 */ 308 static struct svc_xprt *svc_rdma_create(struct svc_serv *serv, 309 struct net *net, 310 struct sockaddr *sa, int salen, 311 int flags) 312 { 313 struct rdma_cm_id *listen_id; 314 struct svcxprt_rdma *cma_xprt; 315 int ret; 316 317 if (sa->sa_family != AF_INET && sa->sa_family != AF_INET6) 318 return ERR_PTR(-EAFNOSUPPORT); 319 cma_xprt = svc_rdma_create_xprt(serv, net); 320 if (!cma_xprt) 321 return ERR_PTR(-ENOMEM); 322 set_bit(XPT_LISTENER, &cma_xprt->sc_xprt.xpt_flags); 323 strcpy(cma_xprt->sc_xprt.xpt_remotebuf, "listener"); 324 325 listen_id = rdma_create_id(net, rdma_listen_handler, cma_xprt, 326 RDMA_PS_TCP, IB_QPT_RC); 327 if (IS_ERR(listen_id)) { 328 ret = PTR_ERR(listen_id); 329 goto err0; 330 } 331 332 /* Allow both IPv4 and IPv6 sockets to bind a single port 333 * at the same time. 334 */ 335 #if IS_ENABLED(CONFIG_IPV6) 336 ret = rdma_set_afonly(listen_id, 1); 337 if (ret) 338 goto err1; 339 #endif 340 ret = rdma_bind_addr(listen_id, sa); 341 if (ret) 342 goto err1; 343 cma_xprt->sc_cm_id = listen_id; 344 345 ret = rdma_listen(listen_id, RPCRDMA_LISTEN_BACKLOG); 346 if (ret) 347 goto err1; 348 349 /* 350 * We need to use the address from the cm_id in case the 351 * caller specified 0 for the port number. 352 */ 353 sa = (struct sockaddr *)&cma_xprt->sc_cm_id->route.addr.src_addr; 354 svc_xprt_set_local(&cma_xprt->sc_xprt, sa, salen); 355 356 return &cma_xprt->sc_xprt; 357 358 err1: 359 rdma_destroy_id(listen_id); 360 err0: 361 kfree(cma_xprt); 362 return ERR_PTR(ret); 363 } 364 365 /* 366 * This is the xpo_recvfrom function for listening endpoints. Its 367 * purpose is to accept incoming connections. The CMA callback handler 368 * has already created a new transport and attached it to the new CMA 369 * ID. 370 * 371 * There is a queue of pending connections hung on the listening 372 * transport. This queue contains the new svc_xprt structure. This 373 * function takes svc_xprt structures off the accept_q and completes 374 * the connection. 375 */ 376 static struct svc_xprt *svc_rdma_accept(struct svc_xprt *xprt) 377 { 378 struct svcxprt_rdma *listen_rdma; 379 struct svcxprt_rdma *newxprt = NULL; 380 struct rdma_conn_param conn_param; 381 struct rpcrdma_connect_private pmsg; 382 struct ib_qp_init_attr qp_attr; 383 unsigned int ctxts, rq_depth; 384 struct ib_device *dev; 385 int ret = 0; 386 RPC_IFDEBUG(struct sockaddr *sap); 387 388 listen_rdma = container_of(xprt, struct svcxprt_rdma, sc_xprt); 389 clear_bit(XPT_CONN, &xprt->xpt_flags); 390 /* Get the next entry off the accept list */ 391 spin_lock(&listen_rdma->sc_lock); 392 if (!list_empty(&listen_rdma->sc_accept_q)) { 393 newxprt = list_entry(listen_rdma->sc_accept_q.next, 394 struct svcxprt_rdma, sc_accept_q); 395 list_del_init(&newxprt->sc_accept_q); 396 } 397 if (!list_empty(&listen_rdma->sc_accept_q)) 398 set_bit(XPT_CONN, &listen_rdma->sc_xprt.xpt_flags); 399 spin_unlock(&listen_rdma->sc_lock); 400 if (!newxprt) 401 return NULL; 402 403 dev = newxprt->sc_cm_id->device; 404 newxprt->sc_port_num = newxprt->sc_cm_id->port_num; 405 406 /* Qualify the transport resource defaults with the 407 * capabilities of this particular device */ 408 /* Transport header, head iovec, tail iovec */ 409 newxprt->sc_max_send_sges = 3; 410 /* Add one SGE per page list entry */ 411 newxprt->sc_max_send_sges += (svcrdma_max_req_size / PAGE_SIZE) + 1; 412 if (newxprt->sc_max_send_sges > dev->attrs.max_send_sge) 413 newxprt->sc_max_send_sges = dev->attrs.max_send_sge; 414 newxprt->sc_max_req_size = svcrdma_max_req_size; 415 newxprt->sc_max_requests = svcrdma_max_requests; 416 newxprt->sc_max_bc_requests = svcrdma_max_bc_requests; 417 rq_depth = newxprt->sc_max_requests + newxprt->sc_max_bc_requests; 418 if (rq_depth > dev->attrs.max_qp_wr) { 419 pr_warn("svcrdma: reducing receive depth to %d\n", 420 dev->attrs.max_qp_wr); 421 rq_depth = dev->attrs.max_qp_wr; 422 newxprt->sc_max_requests = rq_depth - 2; 423 newxprt->sc_max_bc_requests = 2; 424 } 425 newxprt->sc_fc_credits = cpu_to_be32(newxprt->sc_max_requests); 426 ctxts = rdma_rw_mr_factor(dev, newxprt->sc_port_num, RPCSVC_MAXPAGES); 427 ctxts *= newxprt->sc_max_requests; 428 newxprt->sc_sq_depth = rq_depth + ctxts; 429 if (newxprt->sc_sq_depth > dev->attrs.max_qp_wr) { 430 pr_warn("svcrdma: reducing send depth to %d\n", 431 dev->attrs.max_qp_wr); 432 newxprt->sc_sq_depth = dev->attrs.max_qp_wr; 433 } 434 atomic_set(&newxprt->sc_sq_avail, newxprt->sc_sq_depth); 435 436 newxprt->sc_pd = ib_alloc_pd(dev, 0); 437 if (IS_ERR(newxprt->sc_pd)) { 438 trace_svcrdma_pd_err(newxprt, PTR_ERR(newxprt->sc_pd)); 439 goto errout; 440 } 441 newxprt->sc_sq_cq = ib_alloc_cq_any(dev, newxprt, newxprt->sc_sq_depth, 442 IB_POLL_WORKQUEUE); 443 if (IS_ERR(newxprt->sc_sq_cq)) 444 goto errout; 445 newxprt->sc_rq_cq = 446 ib_alloc_cq_any(dev, newxprt, rq_depth, IB_POLL_WORKQUEUE); 447 if (IS_ERR(newxprt->sc_rq_cq)) 448 goto errout; 449 450 memset(&qp_attr, 0, sizeof qp_attr); 451 qp_attr.event_handler = qp_event_handler; 452 qp_attr.qp_context = &newxprt->sc_xprt; 453 qp_attr.port_num = newxprt->sc_port_num; 454 qp_attr.cap.max_rdma_ctxs = ctxts; 455 qp_attr.cap.max_send_wr = newxprt->sc_sq_depth - ctxts; 456 qp_attr.cap.max_recv_wr = rq_depth; 457 qp_attr.cap.max_send_sge = newxprt->sc_max_send_sges; 458 qp_attr.cap.max_recv_sge = 1; 459 qp_attr.sq_sig_type = IB_SIGNAL_REQ_WR; 460 qp_attr.qp_type = IB_QPT_RC; 461 qp_attr.send_cq = newxprt->sc_sq_cq; 462 qp_attr.recv_cq = newxprt->sc_rq_cq; 463 dprintk("svcrdma: newxprt->sc_cm_id=%p, newxprt->sc_pd=%p\n", 464 newxprt->sc_cm_id, newxprt->sc_pd); 465 dprintk(" cap.max_send_wr = %d, cap.max_recv_wr = %d\n", 466 qp_attr.cap.max_send_wr, qp_attr.cap.max_recv_wr); 467 dprintk(" cap.max_send_sge = %d, cap.max_recv_sge = %d\n", 468 qp_attr.cap.max_send_sge, qp_attr.cap.max_recv_sge); 469 470 ret = rdma_create_qp(newxprt->sc_cm_id, newxprt->sc_pd, &qp_attr); 471 if (ret) { 472 trace_svcrdma_qp_err(newxprt, ret); 473 goto errout; 474 } 475 newxprt->sc_qp = newxprt->sc_cm_id->qp; 476 477 if (!(dev->attrs.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS)) 478 newxprt->sc_snd_w_inv = false; 479 if (!rdma_protocol_iwarp(dev, newxprt->sc_port_num) && 480 !rdma_ib_or_roce(dev, newxprt->sc_port_num)) { 481 trace_svcrdma_fabric_err(newxprt, -EINVAL); 482 goto errout; 483 } 484 485 if (!svc_rdma_post_recvs(newxprt)) 486 goto errout; 487 488 /* Swap out the handler */ 489 newxprt->sc_cm_id->event_handler = rdma_cma_handler; 490 491 /* Construct RDMA-CM private message */ 492 pmsg.cp_magic = rpcrdma_cmp_magic; 493 pmsg.cp_version = RPCRDMA_CMP_VERSION; 494 pmsg.cp_flags = 0; 495 pmsg.cp_send_size = pmsg.cp_recv_size = 496 rpcrdma_encode_buffer_size(newxprt->sc_max_req_size); 497 498 /* Accept Connection */ 499 set_bit(RDMAXPRT_CONN_PENDING, &newxprt->sc_flags); 500 memset(&conn_param, 0, sizeof conn_param); 501 conn_param.responder_resources = 0; 502 conn_param.initiator_depth = min_t(int, newxprt->sc_ord, 503 dev->attrs.max_qp_init_rd_atom); 504 if (!conn_param.initiator_depth) { 505 ret = -EINVAL; 506 trace_svcrdma_initdepth_err(newxprt, ret); 507 goto errout; 508 } 509 conn_param.private_data = &pmsg; 510 conn_param.private_data_len = sizeof(pmsg); 511 ret = rdma_accept(newxprt->sc_cm_id, &conn_param); 512 if (ret) { 513 trace_svcrdma_accept_err(newxprt, ret); 514 goto errout; 515 } 516 517 #if IS_ENABLED(CONFIG_SUNRPC_DEBUG) 518 dprintk("svcrdma: new connection %p accepted:\n", newxprt); 519 sap = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.src_addr; 520 dprintk(" local address : %pIS:%u\n", sap, rpc_get_port(sap)); 521 sap = (struct sockaddr *)&newxprt->sc_cm_id->route.addr.dst_addr; 522 dprintk(" remote address : %pIS:%u\n", sap, rpc_get_port(sap)); 523 dprintk(" max_sge : %d\n", newxprt->sc_max_send_sges); 524 dprintk(" sq_depth : %d\n", newxprt->sc_sq_depth); 525 dprintk(" rdma_rw_ctxs : %d\n", ctxts); 526 dprintk(" max_requests : %d\n", newxprt->sc_max_requests); 527 dprintk(" ord : %d\n", conn_param.initiator_depth); 528 #endif 529 530 return &newxprt->sc_xprt; 531 532 errout: 533 /* Take a reference in case the DTO handler runs */ 534 svc_xprt_get(&newxprt->sc_xprt); 535 if (newxprt->sc_qp && !IS_ERR(newxprt->sc_qp)) 536 ib_destroy_qp(newxprt->sc_qp); 537 rdma_destroy_id(newxprt->sc_cm_id); 538 /* This call to put will destroy the transport */ 539 svc_xprt_put(&newxprt->sc_xprt); 540 return NULL; 541 } 542 543 /* 544 * When connected, an svc_xprt has at least two references: 545 * 546 * - A reference held by the cm_id between the ESTABLISHED and 547 * DISCONNECTED events. If the remote peer disconnected first, this 548 * reference could be gone. 549 * 550 * - A reference held by the svc_recv code that called this function 551 * as part of close processing. 552 * 553 * At a minimum one references should still be held. 554 */ 555 static void svc_rdma_detach(struct svc_xprt *xprt) 556 { 557 struct svcxprt_rdma *rdma = 558 container_of(xprt, struct svcxprt_rdma, sc_xprt); 559 560 /* Disconnect and flush posted WQE */ 561 rdma_disconnect(rdma->sc_cm_id); 562 } 563 564 static void __svc_rdma_free(struct work_struct *work) 565 { 566 struct svcxprt_rdma *rdma = 567 container_of(work, struct svcxprt_rdma, sc_work); 568 struct svc_xprt *xprt = &rdma->sc_xprt; 569 570 if (rdma->sc_qp && !IS_ERR(rdma->sc_qp)) 571 ib_drain_qp(rdma->sc_qp); 572 573 svc_rdma_flush_recv_queues(rdma); 574 575 /* Final put of backchannel client transport */ 576 if (xprt->xpt_bc_xprt) { 577 xprt_put(xprt->xpt_bc_xprt); 578 xprt->xpt_bc_xprt = NULL; 579 } 580 581 svc_rdma_destroy_rw_ctxts(rdma); 582 svc_rdma_send_ctxts_destroy(rdma); 583 svc_rdma_recv_ctxts_destroy(rdma); 584 585 /* Destroy the QP if present (not a listener) */ 586 if (rdma->sc_qp && !IS_ERR(rdma->sc_qp)) 587 ib_destroy_qp(rdma->sc_qp); 588 589 if (rdma->sc_sq_cq && !IS_ERR(rdma->sc_sq_cq)) 590 ib_free_cq(rdma->sc_sq_cq); 591 592 if (rdma->sc_rq_cq && !IS_ERR(rdma->sc_rq_cq)) 593 ib_free_cq(rdma->sc_rq_cq); 594 595 if (rdma->sc_pd && !IS_ERR(rdma->sc_pd)) 596 ib_dealloc_pd(rdma->sc_pd); 597 598 /* Destroy the CM ID */ 599 rdma_destroy_id(rdma->sc_cm_id); 600 601 kfree(rdma); 602 } 603 604 static void svc_rdma_free(struct svc_xprt *xprt) 605 { 606 struct svcxprt_rdma *rdma = 607 container_of(xprt, struct svcxprt_rdma, sc_xprt); 608 609 INIT_WORK(&rdma->sc_work, __svc_rdma_free); 610 schedule_work(&rdma->sc_work); 611 } 612 613 static int svc_rdma_has_wspace(struct svc_xprt *xprt) 614 { 615 struct svcxprt_rdma *rdma = 616 container_of(xprt, struct svcxprt_rdma, sc_xprt); 617 618 /* 619 * If there are already waiters on the SQ, 620 * return false. 621 */ 622 if (waitqueue_active(&rdma->sc_send_wait)) 623 return 0; 624 625 /* Otherwise return true. */ 626 return 1; 627 } 628 629 static void svc_rdma_secure_port(struct svc_rqst *rqstp) 630 { 631 set_bit(RQ_SECURE, &rqstp->rq_flags); 632 } 633 634 static void svc_rdma_kill_temp_xprt(struct svc_xprt *xprt) 635 { 636 } 637