xref: /linux/drivers/infiniband/ulp/iser/iser_verbs.c (revision 570f7e331f5febb30f1384817463c7e42b65ca7d)
1 /*
2  * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved.
3  * Copyright (c) 2005, 2006 Cisco Systems.  All rights reserved.
4  * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the
10  * OpenIB.org BSD license below:
11  *
12  *     Redistribution and use in source and binary forms, with or
13  *     without modification, are permitted provided that the following
14  *     conditions are met:
15  *
16  *	- Redistributions of source code must retain the above
17  *	  copyright notice, this list of conditions and the following
18  *	  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
23  *	  provided with the distribution.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32  * SOFTWARE.
33  */
34 #include <linux/kernel.h>
35 #include <linux/slab.h>
36 #include <linux/delay.h>
37 
38 #include "iscsi_iser.h"
39 
40 static void iser_qp_event_callback(struct ib_event *cause, void *context)
41 {
42 	iser_err("qp event %s (%d)\n",
43 		 ib_event_msg(cause->event), cause->event);
44 }
45 
46 static void iser_event_handler(struct ib_event_handler *handler,
47 				struct ib_event *event)
48 {
49 	iser_err("async event %s (%d) on device %s port %d\n",
50 		 ib_event_msg(event->event), event->event,
51 		dev_name(&event->device->dev), event->element.port_num);
52 }
53 
54 /*
55  * iser_create_device_ib_res - creates Protection Domain (PD), Completion
56  * Queue (CQ), DMA Memory Region (DMA MR) with the device associated with
57  * the adaptor.
58  *
59  * Return: 0 on success, -1 on failure
60  */
61 static int iser_create_device_ib_res(struct iser_device *device)
62 {
63 	struct ib_device *ib_dev = device->ib_device;
64 
65 	if (!(ib_dev->attrs.device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS)) {
66 		iser_err("IB device does not support memory registrations\n");
67 		return -1;
68 	}
69 
70 	device->pd = ib_alloc_pd(ib_dev,
71 		iser_always_reg ? 0 : IB_PD_UNSAFE_GLOBAL_RKEY);
72 	if (IS_ERR(device->pd))
73 		goto pd_err;
74 
75 	INIT_IB_EVENT_HANDLER(&device->event_handler, ib_dev,
76 			      iser_event_handler);
77 	ib_register_event_handler(&device->event_handler);
78 	return 0;
79 
80 pd_err:
81 	iser_err("failed to allocate an IB resource\n");
82 	return -1;
83 }
84 
85 /*
86  * iser_free_device_ib_res - destroy/dealloc/dereg the DMA MR,
87  * CQ and PD created with the device associated with the adaptor.
88  */
89 static void iser_free_device_ib_res(struct iser_device *device)
90 {
91 	ib_unregister_event_handler(&device->event_handler);
92 	ib_dealloc_pd(device->pd);
93 
94 	device->pd = NULL;
95 }
96 
97 static struct iser_fr_desc *
98 iser_create_fastreg_desc(struct iser_device *device,
99 			 struct ib_pd *pd,
100 			 bool pi_enable,
101 			 unsigned int size)
102 {
103 	struct iser_fr_desc *desc;
104 	struct ib_device *ib_dev = device->ib_device;
105 	enum ib_mr_type mr_type;
106 	int ret;
107 
108 	desc = kzalloc_obj(*desc);
109 	if (!desc)
110 		return ERR_PTR(-ENOMEM);
111 
112 	if (ib_dev->attrs.kernel_cap_flags & IBK_SG_GAPS_REG)
113 		mr_type = IB_MR_TYPE_SG_GAPS;
114 	else
115 		mr_type = IB_MR_TYPE_MEM_REG;
116 
117 	desc->rsc.mr = ib_alloc_mr(pd, mr_type, size);
118 	if (IS_ERR(desc->rsc.mr)) {
119 		ret = PTR_ERR(desc->rsc.mr);
120 		iser_err("Failed to allocate ib_fast_reg_mr err=%d\n", ret);
121 		goto err_alloc_mr;
122 	}
123 
124 	if (pi_enable) {
125 		desc->rsc.sig_mr = ib_alloc_mr_integrity(pd, size, size);
126 		if (IS_ERR(desc->rsc.sig_mr)) {
127 			ret = PTR_ERR(desc->rsc.sig_mr);
128 			iser_err("Failed to allocate sig_mr err=%d\n", ret);
129 			goto err_alloc_mr_integrity;
130 		}
131 	}
132 
133 	return desc;
134 
135 err_alloc_mr_integrity:
136 	ib_dereg_mr(desc->rsc.mr);
137 err_alloc_mr:
138 	kfree(desc);
139 
140 	return ERR_PTR(ret);
141 }
142 
143 static void iser_destroy_fastreg_desc(struct iser_fr_desc *desc)
144 {
145 	struct iser_reg_resources *res = &desc->rsc;
146 
147 	ib_dereg_mr(res->mr);
148 	if (res->sig_mr) {
149 		ib_dereg_mr(res->sig_mr);
150 		res->sig_mr = NULL;
151 	}
152 	kfree(desc);
153 }
154 
155 /**
156  * iser_alloc_fastreg_pool - Creates pool of fast_reg descriptors
157  * for fast registration work requests.
158  * @ib_conn: connection RDMA resources
159  * @cmds_max: max number of SCSI commands for this connection
160  * @size: max number of pages per map request
161  *
162  * Return: 0 on success, or errno code on failure
163  */
164 int iser_alloc_fastreg_pool(struct ib_conn *ib_conn,
165 			    unsigned cmds_max,
166 			    unsigned int size)
167 {
168 	struct iser_device *device = ib_conn->device;
169 	struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
170 	struct iser_fr_desc *desc;
171 	int i, ret;
172 
173 	INIT_LIST_HEAD(&fr_pool->list);
174 	INIT_LIST_HEAD(&fr_pool->all_list);
175 	spin_lock_init(&fr_pool->lock);
176 	fr_pool->size = 0;
177 	for (i = 0; i < cmds_max; i++) {
178 		desc = iser_create_fastreg_desc(device, device->pd,
179 						ib_conn->pi_support, size);
180 		if (IS_ERR(desc)) {
181 			ret = PTR_ERR(desc);
182 			goto err;
183 		}
184 
185 		list_add_tail(&desc->list, &fr_pool->list);
186 		list_add_tail(&desc->all_list, &fr_pool->all_list);
187 		fr_pool->size++;
188 	}
189 
190 	return 0;
191 
192 err:
193 	iser_free_fastreg_pool(ib_conn);
194 	return ret;
195 }
196 
197 /**
198  * iser_free_fastreg_pool - releases the pool of fast_reg descriptors
199  * @ib_conn: connection RDMA resources
200  */
201 void iser_free_fastreg_pool(struct ib_conn *ib_conn)
202 {
203 	struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
204 	struct iser_fr_desc *desc, *tmp;
205 	int i = 0;
206 
207 	if (list_empty(&fr_pool->all_list))
208 		return;
209 
210 	iser_info("freeing conn %p fr pool\n", ib_conn);
211 
212 	list_for_each_entry_safe(desc, tmp, &fr_pool->all_list, all_list) {
213 		list_del(&desc->all_list);
214 		iser_destroy_fastreg_desc(desc);
215 		++i;
216 	}
217 
218 	if (i < fr_pool->size)
219 		iser_warn("pool still has %d regions registered\n",
220 			  fr_pool->size - i);
221 }
222 
223 /*
224  * iser_create_ib_conn_res - Queue-Pair (QP)
225  *
226  * Return: 0 on success, -1 on failure
227  */
228 static int iser_create_ib_conn_res(struct ib_conn *ib_conn)
229 {
230 	struct iser_conn *iser_conn = to_iser_conn(ib_conn);
231 	struct iser_device	*device;
232 	struct ib_device	*ib_dev;
233 	struct ib_qp_init_attr	init_attr;
234 	int			ret = -ENOMEM;
235 	unsigned int max_send_wr, cq_size;
236 
237 	BUG_ON(ib_conn->device == NULL);
238 
239 	device = ib_conn->device;
240 	ib_dev = device->ib_device;
241 
242 	/* +1 for drain */
243 	if (ib_conn->pi_support)
244 		max_send_wr = ISER_QP_SIG_MAX_REQ_DTOS + 1;
245 	else
246 		max_send_wr = ISER_QP_MAX_REQ_DTOS + 1;
247 	max_send_wr = min(max_send_wr, ib_dev->attrs.max_qp_wr);
248 
249 	cq_size = max_send_wr + ISER_QP_MAX_RECV_DTOS;
250 	ib_conn->cq = ib_cq_pool_get(ib_dev, cq_size, -1, IB_POLL_SOFTIRQ);
251 	if (IS_ERR(ib_conn->cq)) {
252 		ret = PTR_ERR(ib_conn->cq);
253 		goto cq_err;
254 	}
255 	ib_conn->cq_size = cq_size;
256 
257 	memset(&init_attr, 0, sizeof(init_attr));
258 
259 	init_attr.event_handler = iser_qp_event_callback;
260 	init_attr.qp_context = (void *)ib_conn;
261 	init_attr.send_cq = ib_conn->cq;
262 	init_attr.recv_cq = ib_conn->cq;
263 	/* +1 for drain */
264 	init_attr.cap.max_recv_wr = ISER_QP_MAX_RECV_DTOS + 1;
265 	init_attr.cap.max_send_sge = 2;
266 	init_attr.cap.max_recv_sge = 1;
267 	init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
268 	init_attr.qp_type = IB_QPT_RC;
269 	init_attr.cap.max_send_wr = max_send_wr;
270 	if (ib_conn->pi_support)
271 		init_attr.create_flags |= IB_QP_CREATE_INTEGRITY_EN;
272 	iser_conn->max_cmds = ISER_GET_MAX_XMIT_CMDS(max_send_wr - 1);
273 
274 	ret = rdma_create_qp(ib_conn->cma_id, device->pd, &init_attr);
275 	if (ret)
276 		goto out_err;
277 
278 	ib_conn->qp = ib_conn->cma_id->qp;
279 	iser_info("setting conn %p cma_id %p qp %p max_send_wr %d\n", ib_conn,
280 		  ib_conn->cma_id, ib_conn->cma_id->qp, max_send_wr);
281 	return ret;
282 
283 out_err:
284 	ib_cq_pool_put(ib_conn->cq, ib_conn->cq_size);
285 cq_err:
286 	iser_err("unable to alloc mem or create resource, err %d\n", ret);
287 
288 	return ret;
289 }
290 
291 /*
292  * based on the resolved device node GUID see if there already allocated
293  * device for this device. If there's no such, create one.
294  */
295 static
296 struct iser_device *iser_device_find_by_ib_device(struct rdma_cm_id *cma_id)
297 {
298 	struct iser_device *device;
299 
300 	mutex_lock(&ig.device_list_mutex);
301 
302 	list_for_each_entry(device, &ig.device_list, ig_list)
303 		/* find if there's a match using the node GUID */
304 		if (device->ib_device->node_guid == cma_id->device->node_guid)
305 			goto inc_refcnt;
306 
307 	device = kzalloc_obj(*device);
308 	if (!device)
309 		goto out;
310 
311 	/* assign this device to the device */
312 	device->ib_device = cma_id->device;
313 	/* init the device and link it into ig device list */
314 	if (iser_create_device_ib_res(device)) {
315 		kfree(device);
316 		device = NULL;
317 		goto out;
318 	}
319 	list_add(&device->ig_list, &ig.device_list);
320 
321 inc_refcnt:
322 	device->refcount++;
323 out:
324 	mutex_unlock(&ig.device_list_mutex);
325 	return device;
326 }
327 
328 /* if there's no demand for this device, release it */
329 static void iser_device_try_release(struct iser_device *device)
330 {
331 	mutex_lock(&ig.device_list_mutex);
332 	device->refcount--;
333 	iser_info("device %p refcount %d\n", device, device->refcount);
334 	if (!device->refcount) {
335 		iser_free_device_ib_res(device);
336 		list_del(&device->ig_list);
337 		kfree(device);
338 	}
339 	mutex_unlock(&ig.device_list_mutex);
340 }
341 
342 void iser_release_work(struct work_struct *work)
343 {
344 	struct iser_conn *iser_conn;
345 
346 	iser_conn = container_of(work, struct iser_conn, release_work);
347 
348 	/* Wait for conn_stop to complete */
349 	wait_for_completion(&iser_conn->stop_completion);
350 	/* Wait for IB resouces cleanup to complete */
351 	wait_for_completion(&iser_conn->ib_completion);
352 
353 	mutex_lock(&iser_conn->state_mutex);
354 	iser_conn->state = ISER_CONN_DOWN;
355 	mutex_unlock(&iser_conn->state_mutex);
356 
357 	iser_conn_release(iser_conn);
358 }
359 
360 /**
361  * iser_free_ib_conn_res - release IB related resources
362  * @iser_conn: iser connection struct
363  * @destroy: indicator if we need to try to release the
364  *     iser device and memory regoins pool (only iscsi
365  *     shutdown and DEVICE_REMOVAL will use this).
366  *
367  * This routine is called with the iser state mutex held
368  * so the cm_id removal is out of here. It is Safe to
369  * be invoked multiple times.
370  */
371 static void iser_free_ib_conn_res(struct iser_conn *iser_conn, bool destroy)
372 {
373 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
374 	struct iser_device *device = ib_conn->device;
375 
376 	iser_info("freeing conn %p cma_id %p qp %p\n",
377 		  iser_conn, ib_conn->cma_id, ib_conn->qp);
378 
379 	if (ib_conn->qp) {
380 		rdma_destroy_qp(ib_conn->cma_id);
381 		ib_cq_pool_put(ib_conn->cq, ib_conn->cq_size);
382 		ib_conn->qp = NULL;
383 	}
384 
385 	if (destroy) {
386 		if (iser_conn->rx_descs)
387 			iser_free_rx_descriptors(iser_conn);
388 
389 		if (device) {
390 			iser_device_try_release(device);
391 			ib_conn->device = NULL;
392 		}
393 	}
394 }
395 
396 /**
397  * iser_conn_release - Frees all conn objects and deallocs conn descriptor
398  * @iser_conn: iSER connection context
399  */
400 void iser_conn_release(struct iser_conn *iser_conn)
401 {
402 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
403 
404 	mutex_lock(&ig.connlist_mutex);
405 	list_del(&iser_conn->conn_list);
406 	mutex_unlock(&ig.connlist_mutex);
407 
408 	mutex_lock(&iser_conn->state_mutex);
409 	/* In case we endup here without ep_disconnect being invoked. */
410 	if (iser_conn->state != ISER_CONN_DOWN) {
411 		iser_warn("iser conn %p state %d, expected state down.\n",
412 			  iser_conn, iser_conn->state);
413 		iscsi_destroy_endpoint(iser_conn->ep);
414 		iser_conn->state = ISER_CONN_DOWN;
415 	}
416 	/*
417 	 * In case we never got to bind stage, we still need to
418 	 * release IB resources (which is safe to call more than once).
419 	 */
420 	iser_free_ib_conn_res(iser_conn, true);
421 	mutex_unlock(&iser_conn->state_mutex);
422 
423 	if (ib_conn->cma_id) {
424 		rdma_destroy_id(ib_conn->cma_id);
425 		ib_conn->cma_id = NULL;
426 	}
427 
428 	kfree(iser_conn);
429 }
430 
431 /**
432  * iser_conn_terminate - triggers start of the disconnect procedures and
433  * waits for them to be done
434  * @iser_conn: iSER connection context
435  *
436  * Called with state mutex held
437  */
438 int iser_conn_terminate(struct iser_conn *iser_conn)
439 {
440 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
441 	int err = 0;
442 
443 	lockdep_assert_held(&iser_conn->state_mutex);
444 
445 	/* terminate the iser conn only if the conn state is UP */
446 	if (iser_conn->state != ISER_CONN_UP)
447 		return 0;
448 
449 	iser_conn->state = ISER_CONN_TERMINATING;
450 	iser_info("iser_conn %p state %d\n", iser_conn, iser_conn->state);
451 
452 	/* suspend queuing of new iscsi commands */
453 	if (iser_conn->iscsi_conn)
454 		iscsi_suspend_queue(iser_conn->iscsi_conn);
455 
456 	/*
457 	 * In case we didn't already clean up the cma_id (peer initiated
458 	 * a disconnection), we need to Cause the CMA to change the QP
459 	 * state to ERROR.
460 	 */
461 	if (ib_conn->cma_id) {
462 		err = rdma_disconnect(ib_conn->cma_id);
463 		if (err)
464 			iser_err("Failed to disconnect, conn: 0x%p err %d\n",
465 				 iser_conn, err);
466 
467 		/* block until all flush errors are consumed */
468 		ib_drain_qp(ib_conn->qp);
469 	}
470 
471 	return 1;
472 }
473 
474 /*
475  * Called with state mutex held
476  */
477 static void iser_connect_error(struct rdma_cm_id *cma_id)
478 {
479 	struct iser_conn *iser_conn = cma_id->context;
480 
481 	lockdep_assert_held(&iser_conn->state_mutex);
482 
483 	iser_conn->state = ISER_CONN_TERMINATING;
484 }
485 
486 static void iser_calc_scsi_params(struct iser_conn *iser_conn,
487 				  unsigned int max_sectors)
488 {
489 	struct iser_device *device = iser_conn->ib_conn.device;
490 	struct ib_device_attr *attr = &device->ib_device->attrs;
491 	unsigned short sg_tablesize, sup_sg_tablesize;
492 	unsigned short reserved_mr_pages;
493 	u32 max_num_sg;
494 
495 	/*
496 	 * FRs without SG_GAPS can only map up to a (device) page per entry,
497 	 * but if the first entry is misaligned we'll end up using two entries
498 	 * (head and tail) for a single page worth data, so one additional
499 	 * entry is required.
500 	 */
501 	if (attr->kernel_cap_flags & IBK_SG_GAPS_REG)
502 		reserved_mr_pages = 0;
503 	else
504 		reserved_mr_pages = 1;
505 
506 	if (iser_conn->ib_conn.pi_support)
507 		max_num_sg = attr->max_pi_fast_reg_page_list_len;
508 	else
509 		max_num_sg = attr->max_fast_reg_page_list_len;
510 
511 	sg_tablesize = DIV_ROUND_UP(max_sectors * SECTOR_SIZE, SZ_4K);
512 	sup_sg_tablesize = min_t(uint, ISCSI_ISER_MAX_SG_TABLESIZE,
513 				 max_num_sg - reserved_mr_pages);
514 	iser_conn->scsi_sg_tablesize = min(sg_tablesize, sup_sg_tablesize);
515 	iser_conn->pages_per_mr =
516 		iser_conn->scsi_sg_tablesize + reserved_mr_pages;
517 }
518 
519 /*
520  * Called with state mutex held
521  */
522 static void iser_addr_handler(struct rdma_cm_id *cma_id)
523 {
524 	struct iser_conn *iser_conn = cma_id->context;
525 	struct iser_device *device;
526 	struct ib_conn *ib_conn;
527 	int    ret;
528 
529 	lockdep_assert_held(&iser_conn->state_mutex);
530 
531 	if (iser_conn->state != ISER_CONN_PENDING)
532 		/* bailout */
533 		return;
534 
535 	ib_conn = &iser_conn->ib_conn;
536 	device = iser_device_find_by_ib_device(cma_id);
537 	if (!device) {
538 		iser_err("device lookup/creation failed\n");
539 		iser_connect_error(cma_id);
540 		return;
541 	}
542 
543 	ib_conn->device = device;
544 
545 	/* connection T10-PI support */
546 	if (iser_pi_enable) {
547 		if (!(device->ib_device->attrs.kernel_cap_flags &
548 		      IBK_INTEGRITY_HANDOVER)) {
549 			iser_warn("T10-PI requested but not supported on %s, "
550 				  "continue without T10-PI\n",
551 				  dev_name(&ib_conn->device->ib_device->dev));
552 			ib_conn->pi_support = false;
553 		} else {
554 			ib_conn->pi_support = true;
555 		}
556 	}
557 
558 	iser_calc_scsi_params(iser_conn, iser_max_sectors);
559 
560 	ret = rdma_resolve_route(cma_id, 1000);
561 	if (ret) {
562 		iser_err("resolve route failed: %d\n", ret);
563 		iser_connect_error(cma_id);
564 		return;
565 	}
566 }
567 
568 /*
569  * Called with state mutex held
570  */
571 static void iser_route_handler(struct rdma_cm_id *cma_id)
572 {
573 	struct rdma_conn_param conn_param;
574 	int ret;
575 	struct iser_cm_hdr req_hdr;
576 	struct iser_conn *iser_conn = cma_id->context;
577 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
578 	struct ib_device *ib_dev = ib_conn->device->ib_device;
579 
580 	lockdep_assert_held(&iser_conn->state_mutex);
581 
582 	if (iser_conn->state != ISER_CONN_PENDING)
583 		/* bailout */
584 		return;
585 
586 	ret = iser_create_ib_conn_res(ib_conn);
587 	if (ret)
588 		goto failure;
589 
590 	memset(&conn_param, 0, sizeof conn_param);
591 	conn_param.responder_resources = min(ib_dev->attrs.max_qp_rd_atom, U8_MAX);
592 	conn_param.initiator_depth = 1;
593 	conn_param.retry_count = 7;
594 	conn_param.rnr_retry_count = 6;
595 
596 	memset(&req_hdr, 0, sizeof(req_hdr));
597 	req_hdr.flags = ISER_ZBVA_NOT_SUP;
598 	if (!iser_always_reg)
599 		req_hdr.flags |= ISER_SEND_W_INV_NOT_SUP;
600 	conn_param.private_data	= (void *)&req_hdr;
601 	conn_param.private_data_len = sizeof(struct iser_cm_hdr);
602 
603 	ret = rdma_connect_locked(cma_id, &conn_param);
604 	if (ret) {
605 		iser_err("failure connecting: %d\n", ret);
606 		goto failure;
607 	}
608 
609 	return;
610 failure:
611 	iser_connect_error(cma_id);
612 }
613 
614 /*
615  * Called with state mutex held
616  */
617 static void iser_connected_handler(struct rdma_cm_id *cma_id,
618 				   const void *private_data)
619 {
620 	struct iser_conn *iser_conn = cma_id->context;
621 	struct ib_qp_attr attr;
622 	struct ib_qp_init_attr init_attr;
623 
624 	lockdep_assert_held(&iser_conn->state_mutex);
625 
626 	if (iser_conn->state != ISER_CONN_PENDING)
627 		/* bailout */
628 		return;
629 
630 	(void)ib_query_qp(cma_id->qp, &attr, ~0, &init_attr);
631 	iser_info("remote qpn:%x my qpn:%x\n", attr.dest_qp_num, cma_id->qp->qp_num);
632 
633 	if (private_data) {
634 		u8 flags = *(u8 *)private_data;
635 
636 		iser_conn->snd_w_inv = !(flags & ISER_SEND_W_INV_NOT_SUP);
637 	}
638 
639 	iser_info("conn %p: negotiated %s invalidation\n",
640 		  iser_conn, iser_conn->snd_w_inv ? "remote" : "local");
641 
642 	iser_conn->state = ISER_CONN_UP;
643 	complete(&iser_conn->up_completion);
644 }
645 
646 /*
647  * Called with state mutex held
648  */
649 static void iser_cleanup_handler(struct rdma_cm_id *cma_id,
650 				 bool destroy)
651 {
652 	struct iser_conn *iser_conn = cma_id->context;
653 
654 	lockdep_assert_held(&iser_conn->state_mutex);
655 	/*
656 	 * We are not guaranteed that we visited disconnected_handler
657 	 * by now, call it here to be safe that we handle CM drep
658 	 * and flush errors.
659 	 */
660 	if (iser_conn_terminate(iser_conn)) {
661 		if (iser_conn->iscsi_conn)
662 			iscsi_conn_failure(iser_conn->iscsi_conn,
663 					   ISCSI_ERR_CONN_FAILED);
664 		else
665 			iser_err("iscsi_iser connection isn't bound\n");
666 	}
667 	iser_free_ib_conn_res(iser_conn, destroy);
668 	complete(&iser_conn->ib_completion);
669 }
670 
671 static int iser_cma_handler(struct rdma_cm_id *cma_id,
672 			    struct rdma_cm_event *event)
673 {
674 	struct iser_conn *iser_conn;
675 	int ret = 0;
676 
677 	iser_conn = cma_id->context;
678 	iser_info("%s (%d): status %d conn %p id %p\n",
679 		  rdma_event_msg(event->event), event->event,
680 		  event->status, cma_id->context, cma_id);
681 
682 	mutex_lock(&iser_conn->state_mutex);
683 	switch (event->event) {
684 	case RDMA_CM_EVENT_ADDR_RESOLVED:
685 		iser_addr_handler(cma_id);
686 		break;
687 	case RDMA_CM_EVENT_ROUTE_RESOLVED:
688 		iser_route_handler(cma_id);
689 		break;
690 	case RDMA_CM_EVENT_ESTABLISHED:
691 		iser_connected_handler(cma_id, event->param.conn.private_data);
692 		break;
693 	case RDMA_CM_EVENT_REJECTED:
694 		iser_info("Connection rejected: %s\n",
695 			 rdma_reject_msg(cma_id, event->status));
696 		fallthrough;
697 	case RDMA_CM_EVENT_ADDR_ERROR:
698 	case RDMA_CM_EVENT_ROUTE_ERROR:
699 	case RDMA_CM_EVENT_CONNECT_ERROR:
700 	case RDMA_CM_EVENT_UNREACHABLE:
701 		iser_connect_error(cma_id);
702 		break;
703 	case RDMA_CM_EVENT_DISCONNECTED:
704 	case RDMA_CM_EVENT_ADDR_CHANGE:
705 	case RDMA_CM_EVENT_TIMEWAIT_EXIT:
706 		iser_cleanup_handler(cma_id, false);
707 		break;
708 	case RDMA_CM_EVENT_DEVICE_REMOVAL:
709 		/*
710 		 * we *must* destroy the device as we cannot rely
711 		 * on iscsid to be around to initiate error handling.
712 		 * also if we are not in state DOWN implicitly destroy
713 		 * the cma_id.
714 		 */
715 		iser_cleanup_handler(cma_id, true);
716 		if (iser_conn->state != ISER_CONN_DOWN) {
717 			iser_conn->ib_conn.cma_id = NULL;
718 			ret = 1;
719 		}
720 		break;
721 	default:
722 		iser_err("Unexpected RDMA CM event: %s (%d)\n",
723 			 rdma_event_msg(event->event), event->event);
724 		break;
725 	}
726 	mutex_unlock(&iser_conn->state_mutex);
727 
728 	return ret;
729 }
730 
731 void iser_conn_init(struct iser_conn *iser_conn)
732 {
733 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
734 
735 	iser_conn->state = ISER_CONN_INIT;
736 	init_completion(&iser_conn->stop_completion);
737 	init_completion(&iser_conn->ib_completion);
738 	init_completion(&iser_conn->up_completion);
739 	INIT_LIST_HEAD(&iser_conn->conn_list);
740 	mutex_init(&iser_conn->state_mutex);
741 
742 	ib_conn->reg_cqe.done = iser_reg_comp;
743 }
744 
745 /*
746  * starts the process of connecting to the target
747  * sleeps until the connection is established or rejected
748  */
749 int iser_connect(struct iser_conn *iser_conn, struct sockaddr *src_addr,
750 		 struct sockaddr *dst_addr, int non_blocking)
751 {
752 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
753 	int err = 0;
754 
755 	mutex_lock(&iser_conn->state_mutex);
756 
757 	sprintf(iser_conn->name, "%pISp", dst_addr);
758 
759 	iser_info("connecting to: %s\n", iser_conn->name);
760 
761 	/* the device is known only --after-- address resolution */
762 	ib_conn->device = NULL;
763 
764 	iser_conn->state = ISER_CONN_PENDING;
765 
766 	ib_conn->cma_id = rdma_create_id(&init_net, iser_cma_handler,
767 					 iser_conn, RDMA_PS_TCP, IB_QPT_RC);
768 	if (IS_ERR(ib_conn->cma_id)) {
769 		err = PTR_ERR(ib_conn->cma_id);
770 		iser_err("rdma_create_id failed: %d\n", err);
771 		goto id_failure;
772 	}
773 
774 	err = rdma_resolve_addr(ib_conn->cma_id, src_addr, dst_addr, 1000);
775 	if (err) {
776 		iser_err("rdma_resolve_addr failed: %d\n", err);
777 		goto addr_failure;
778 	}
779 
780 	if (!non_blocking) {
781 		wait_for_completion_interruptible(&iser_conn->up_completion);
782 
783 		if (iser_conn->state != ISER_CONN_UP) {
784 			err =  -EIO;
785 			goto connect_failure;
786 		}
787 	}
788 	mutex_unlock(&iser_conn->state_mutex);
789 
790 	mutex_lock(&ig.connlist_mutex);
791 	list_add(&iser_conn->conn_list, &ig.connlist);
792 	mutex_unlock(&ig.connlist_mutex);
793 	return 0;
794 
795 id_failure:
796 	ib_conn->cma_id = NULL;
797 addr_failure:
798 	iser_conn->state = ISER_CONN_DOWN;
799 connect_failure:
800 	mutex_unlock(&iser_conn->state_mutex);
801 	iser_conn_release(iser_conn);
802 	return err;
803 }
804 
805 int iser_post_recvl(struct iser_conn *iser_conn)
806 {
807 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
808 	struct iser_login_desc *desc = &iser_conn->login_desc;
809 	struct ib_recv_wr wr;
810 	int ret;
811 
812 	desc->sge.addr = desc->rsp_dma;
813 	desc->sge.length = ISER_RX_LOGIN_SIZE;
814 	desc->sge.lkey = ib_conn->device->pd->local_dma_lkey;
815 
816 	desc->cqe.done = iser_login_rsp;
817 	wr.wr_cqe = &desc->cqe;
818 	wr.sg_list = &desc->sge;
819 	wr.num_sge = 1;
820 	wr.next = NULL;
821 
822 	ret = ib_post_recv(ib_conn->qp, &wr, NULL);
823 	if (unlikely(ret))
824 		iser_err("ib_post_recv login failed ret=%d\n", ret);
825 
826 	return ret;
827 }
828 
829 int iser_post_recvm(struct iser_conn *iser_conn, struct iser_rx_desc *rx_desc)
830 {
831 	struct ib_conn *ib_conn = &iser_conn->ib_conn;
832 	struct ib_recv_wr wr;
833 	int ret;
834 
835 	rx_desc->cqe.done = iser_task_rsp;
836 	wr.wr_cqe = &rx_desc->cqe;
837 	wr.sg_list = &rx_desc->rx_sg;
838 	wr.num_sge = 1;
839 	wr.next = NULL;
840 
841 	ret = ib_post_recv(ib_conn->qp, &wr, NULL);
842 	if (unlikely(ret))
843 		iser_err("ib_post_recv failed ret=%d\n", ret);
844 
845 	return ret;
846 }
847 
848 
849 /**
850  * iser_post_send - Initiate a Send DTO operation
851  * @ib_conn: connection RDMA resources
852  * @tx_desc: iSER TX descriptor
853  *
854  * Return: 0 on success, -1 on failure
855  */
856 int iser_post_send(struct ib_conn *ib_conn, struct iser_tx_desc *tx_desc)
857 {
858 	struct ib_send_wr *wr = &tx_desc->send_wr;
859 	struct ib_send_wr *first_wr;
860 	int ret;
861 
862 	ib_dma_sync_single_for_device(ib_conn->device->ib_device,
863 				      tx_desc->dma_addr, ISER_HEADERS_LEN,
864 				      DMA_TO_DEVICE);
865 
866 	wr->next = NULL;
867 	wr->wr_cqe = &tx_desc->cqe;
868 	wr->sg_list = tx_desc->tx_sg;
869 	wr->num_sge = tx_desc->num_sge;
870 	wr->opcode = IB_WR_SEND;
871 	wr->send_flags = IB_SEND_SIGNALED;
872 
873 	if (tx_desc->inv_wr.next)
874 		first_wr = &tx_desc->inv_wr;
875 	else if (tx_desc->reg_wr.wr.next)
876 		first_wr = &tx_desc->reg_wr.wr;
877 	else
878 		first_wr = wr;
879 
880 	ret = ib_post_send(ib_conn->qp, first_wr, NULL);
881 	if (unlikely(ret))
882 		iser_err("ib_post_send failed, ret:%d opcode:%d\n",
883 			 ret, wr->opcode);
884 
885 	return ret;
886 }
887 
888 u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task,
889 			     enum iser_data_dir cmd_dir, sector_t *sector)
890 {
891 	struct iser_mem_reg *reg = &iser_task->rdma_reg[cmd_dir];
892 	struct iser_fr_desc *desc = reg->desc;
893 	unsigned long sector_size = iser_task->sc->device->sector_size;
894 	struct ib_mr_status mr_status;
895 	int ret;
896 
897 	if (desc && desc->sig_protected) {
898 		desc->sig_protected = false;
899 		ret = ib_check_mr_status(desc->rsc.sig_mr,
900 					 IB_MR_CHECK_SIG_STATUS, &mr_status);
901 		if (ret) {
902 			iser_err("ib_check_mr_status failed, ret %d\n", ret);
903 			/* Not a lot we can do, return ambiguous guard error */
904 			*sector = 0;
905 			return 0x1;
906 		}
907 
908 		if (mr_status.fail_status & IB_MR_CHECK_SIG_STATUS) {
909 			sector_t sector_off = mr_status.sig_err.sig_err_offset;
910 
911 			sector_div(sector_off, sector_size + 8);
912 			*sector = scsi_get_sector(iser_task->sc) + sector_off;
913 
914 			iser_err("PI error found type %d at sector %llx "
915 			       "expected %x vs actual %x\n",
916 			       mr_status.sig_err.err_type,
917 			       (unsigned long long)*sector,
918 			       mr_status.sig_err.expected,
919 			       mr_status.sig_err.actual);
920 
921 			switch (mr_status.sig_err.err_type) {
922 			case IB_SIG_BAD_GUARD:
923 				return 0x1;
924 			case IB_SIG_BAD_REFTAG:
925 				return 0x3;
926 			case IB_SIG_BAD_APPTAG:
927 				return 0x2;
928 			}
929 		}
930 	}
931 
932 	return 0;
933 }
934 
935 void iser_err_comp(struct ib_wc *wc, const char *type)
936 {
937 	if (wc->status != IB_WC_WR_FLUSH_ERR) {
938 		struct iser_conn *iser_conn = to_iser_conn(wc->qp->qp_context);
939 
940 		iser_err("%s failure: %s (%d) vend_err %#x\n", type,
941 			 ib_wc_status_msg(wc->status), wc->status,
942 			 wc->vendor_err);
943 
944 		if (iser_conn->iscsi_conn)
945 			iscsi_conn_failure(iser_conn->iscsi_conn,
946 					   ISCSI_ERR_CONN_FAILED);
947 	} else {
948 		iser_dbg("%s failure: %s (%d)\n", type,
949 			 ib_wc_status_msg(wc->status), wc->status);
950 	}
951 }
952