1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3 * This file contains iSCSI extentions for RDMA (iSER) Verbs
5 * (c) Copyright 2013 Datera, Inc.
7 * Nicholas A. Bellinger <nab@linux-iscsi.org>
9 ****************************************************************************/
11 #include <linux/string.h>
12 #include <linux/module.h>
13 #include <linux/scatterlist.h>
14 #include <linux/socket.h>
16 #include <linux/in6.h>
17 #include <rdma/ib_verbs.h>
18 #include <rdma/rdma_cm.h>
19 #include <target/target_core_base.h>
20 #include <target/target_core_fabric.h>
21 #include <target/iscsi/iscsi_transport.h>
22 #include <linux/semaphore.h>
26 #define ISERT_MAX_CONN 8
27 #define ISER_MAX_RX_CQ_LEN (ISERT_QP_MAX_RECV_DTOS * ISERT_MAX_CONN)
28 #define ISER_MAX_TX_CQ_LEN \
29 ((ISERT_QP_MAX_REQ_DTOS + ISCSI_DEF_XMIT_CMDS_MAX) * ISERT_MAX_CONN)
30 #define ISER_MAX_CQ_LEN (ISER_MAX_RX_CQ_LEN + ISER_MAX_TX_CQ_LEN + \
33 static int isert_debug_level
;
34 module_param_named(debug_level
, isert_debug_level
, int, 0644);
35 MODULE_PARM_DESC(debug_level
, "Enable debug tracing if > 0 (default:0)");
37 static DEFINE_MUTEX(device_list_mutex
);
38 static LIST_HEAD(device_list
);
39 static struct workqueue_struct
*isert_comp_wq
;
40 static struct workqueue_struct
*isert_release_wq
;
43 isert_put_response(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
);
45 isert_login_post_recv(struct isert_conn
*isert_conn
);
47 isert_rdma_accept(struct isert_conn
*isert_conn
);
48 struct rdma_cm_id
*isert_setup_id(struct isert_np
*isert_np
);
50 static void isert_release_work(struct work_struct
*work
);
51 static void isert_recv_done(struct ib_cq
*cq
, struct ib_wc
*wc
);
52 static void isert_send_done(struct ib_cq
*cq
, struct ib_wc
*wc
);
53 static void isert_login_recv_done(struct ib_cq
*cq
, struct ib_wc
*wc
);
54 static void isert_login_send_done(struct ib_cq
*cq
, struct ib_wc
*wc
);
57 isert_prot_cmd(struct isert_conn
*conn
, struct se_cmd
*cmd
)
59 return (conn
->pi_support
&&
60 cmd
->prot_op
!= TARGET_PROT_NORMAL
);
65 isert_qp_event_callback(struct ib_event
*e
, void *context
)
67 struct isert_conn
*isert_conn
= context
;
69 isert_err("%s (%d): conn %p\n",
70 ib_event_msg(e
->event
), e
->event
, isert_conn
);
73 case IB_EVENT_COMM_EST
:
74 rdma_notify(isert_conn
->cm_id
, IB_EVENT_COMM_EST
);
76 case IB_EVENT_QP_LAST_WQE_REACHED
:
77 isert_warn("Reached TX IB_EVENT_QP_LAST_WQE_REACHED\n");
84 static struct isert_comp
*
85 isert_comp_get(struct isert_conn
*isert_conn
)
87 struct isert_device
*device
= isert_conn
->device
;
88 struct isert_comp
*comp
;
91 mutex_lock(&device_list_mutex
);
92 for (i
= 0; i
< device
->comps_used
; i
++)
93 if (device
->comps
[i
].active_qps
<
94 device
->comps
[min
].active_qps
)
96 comp
= &device
->comps
[min
];
98 mutex_unlock(&device_list_mutex
);
100 isert_info("conn %p, using comp %p min_index: %d\n",
101 isert_conn
, comp
, min
);
107 isert_comp_put(struct isert_comp
*comp
)
109 mutex_lock(&device_list_mutex
);
111 mutex_unlock(&device_list_mutex
);
114 static struct ib_qp
*
115 isert_create_qp(struct isert_conn
*isert_conn
,
116 struct isert_comp
*comp
,
117 struct rdma_cm_id
*cma_id
)
119 struct isert_device
*device
= isert_conn
->device
;
120 struct ib_qp_init_attr attr
;
123 memset(&attr
, 0, sizeof(struct ib_qp_init_attr
));
124 attr
.event_handler
= isert_qp_event_callback
;
125 attr
.qp_context
= isert_conn
;
126 attr
.send_cq
= comp
->cq
;
127 attr
.recv_cq
= comp
->cq
;
128 attr
.cap
.max_send_wr
= ISERT_QP_MAX_REQ_DTOS
+ 1;
129 attr
.cap
.max_recv_wr
= ISERT_QP_MAX_RECV_DTOS
+ 1;
130 attr
.cap
.max_rdma_ctxs
= ISCSI_DEF_XMIT_CMDS_MAX
;
131 attr
.cap
.max_send_sge
= device
->ib_device
->attrs
.max_send_sge
;
132 attr
.cap
.max_recv_sge
= 1;
133 attr
.sq_sig_type
= IB_SIGNAL_REQ_WR
;
134 attr
.qp_type
= IB_QPT_RC
;
135 if (device
->pi_capable
)
136 attr
.create_flags
|= IB_QP_CREATE_INTEGRITY_EN
;
138 ret
= rdma_create_qp(cma_id
, device
->pd
, &attr
);
140 isert_err("rdma_create_qp failed for cma_id %d\n", ret
);
148 isert_conn_setup_qp(struct isert_conn
*isert_conn
, struct rdma_cm_id
*cma_id
)
150 struct isert_comp
*comp
;
153 comp
= isert_comp_get(isert_conn
);
154 isert_conn
->qp
= isert_create_qp(isert_conn
, comp
, cma_id
);
155 if (IS_ERR(isert_conn
->qp
)) {
156 ret
= PTR_ERR(isert_conn
->qp
);
162 isert_comp_put(comp
);
167 isert_alloc_rx_descriptors(struct isert_conn
*isert_conn
)
169 struct isert_device
*device
= isert_conn
->device
;
170 struct ib_device
*ib_dev
= device
->ib_device
;
171 struct iser_rx_desc
*rx_desc
;
172 struct ib_sge
*rx_sg
;
176 isert_conn
->rx_descs
= kcalloc(ISERT_QP_MAX_RECV_DTOS
,
177 sizeof(struct iser_rx_desc
),
179 if (!isert_conn
->rx_descs
)
182 rx_desc
= isert_conn
->rx_descs
;
184 for (i
= 0; i
< ISERT_QP_MAX_RECV_DTOS
; i
++, rx_desc
++) {
185 dma_addr
= ib_dma_map_single(ib_dev
, (void *)rx_desc
,
186 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
187 if (ib_dma_mapping_error(ib_dev
, dma_addr
))
190 rx_desc
->dma_addr
= dma_addr
;
192 rx_sg
= &rx_desc
->rx_sg
;
193 rx_sg
->addr
= rx_desc
->dma_addr
;
194 rx_sg
->length
= ISER_RX_PAYLOAD_SIZE
;
195 rx_sg
->lkey
= device
->pd
->local_dma_lkey
;
196 rx_desc
->rx_cqe
.done
= isert_recv_done
;
202 rx_desc
= isert_conn
->rx_descs
;
203 for (j
= 0; j
< i
; j
++, rx_desc
++) {
204 ib_dma_unmap_single(ib_dev
, rx_desc
->dma_addr
,
205 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
207 kfree(isert_conn
->rx_descs
);
208 isert_conn
->rx_descs
= NULL
;
209 isert_err("conn %p failed to allocate rx descriptors\n", isert_conn
);
214 isert_free_rx_descriptors(struct isert_conn
*isert_conn
)
216 struct ib_device
*ib_dev
= isert_conn
->device
->ib_device
;
217 struct iser_rx_desc
*rx_desc
;
220 if (!isert_conn
->rx_descs
)
223 rx_desc
= isert_conn
->rx_descs
;
224 for (i
= 0; i
< ISERT_QP_MAX_RECV_DTOS
; i
++, rx_desc
++) {
225 ib_dma_unmap_single(ib_dev
, rx_desc
->dma_addr
,
226 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
229 kfree(isert_conn
->rx_descs
);
230 isert_conn
->rx_descs
= NULL
;
234 isert_free_comps(struct isert_device
*device
)
238 for (i
= 0; i
< device
->comps_used
; i
++) {
239 struct isert_comp
*comp
= &device
->comps
[i
];
242 ib_free_cq(comp
->cq
);
244 kfree(device
->comps
);
248 isert_alloc_comps(struct isert_device
*device
)
250 int i
, max_cqe
, ret
= 0;
252 device
->comps_used
= min(ISERT_MAX_CQ
, min_t(int, num_online_cpus(),
253 device
->ib_device
->num_comp_vectors
));
255 isert_info("Using %d CQs, %s supports %d vectors support "
257 device
->comps_used
, dev_name(&device
->ib_device
->dev
),
258 device
->ib_device
->num_comp_vectors
,
261 device
->comps
= kcalloc(device
->comps_used
, sizeof(struct isert_comp
),
266 max_cqe
= min(ISER_MAX_CQ_LEN
, device
->ib_device
->attrs
.max_cqe
);
268 for (i
= 0; i
< device
->comps_used
; i
++) {
269 struct isert_comp
*comp
= &device
->comps
[i
];
271 comp
->device
= device
;
272 comp
->cq
= ib_alloc_cq(device
->ib_device
, comp
, max_cqe
, i
,
274 if (IS_ERR(comp
->cq
)) {
275 isert_err("Unable to allocate cq\n");
276 ret
= PTR_ERR(comp
->cq
);
284 isert_free_comps(device
);
289 isert_create_device_ib_res(struct isert_device
*device
)
291 struct ib_device
*ib_dev
= device
->ib_device
;
294 isert_dbg("devattr->max_send_sge: %d devattr->max_recv_sge %d\n",
295 ib_dev
->attrs
.max_send_sge
, ib_dev
->attrs
.max_recv_sge
);
296 isert_dbg("devattr->max_sge_rd: %d\n", ib_dev
->attrs
.max_sge_rd
);
298 ret
= isert_alloc_comps(device
);
302 device
->pd
= ib_alloc_pd(ib_dev
, 0);
303 if (IS_ERR(device
->pd
)) {
304 ret
= PTR_ERR(device
->pd
);
305 isert_err("failed to allocate pd, device %p, ret=%d\n",
310 /* Check signature cap */
311 device
->pi_capable
= ib_dev
->attrs
.device_cap_flags
&
312 IB_DEVICE_INTEGRITY_HANDOVER
? true : false;
317 isert_free_comps(device
);
325 isert_free_device_ib_res(struct isert_device
*device
)
327 isert_info("device %p\n", device
);
329 ib_dealloc_pd(device
->pd
);
330 isert_free_comps(device
);
334 isert_device_put(struct isert_device
*device
)
336 mutex_lock(&device_list_mutex
);
338 isert_info("device %p refcount %d\n", device
, device
->refcount
);
339 if (!device
->refcount
) {
340 isert_free_device_ib_res(device
);
341 list_del(&device
->dev_node
);
344 mutex_unlock(&device_list_mutex
);
347 static struct isert_device
*
348 isert_device_get(struct rdma_cm_id
*cma_id
)
350 struct isert_device
*device
;
353 mutex_lock(&device_list_mutex
);
354 list_for_each_entry(device
, &device_list
, dev_node
) {
355 if (device
->ib_device
->node_guid
== cma_id
->device
->node_guid
) {
357 isert_info("Found iser device %p refcount %d\n",
358 device
, device
->refcount
);
359 mutex_unlock(&device_list_mutex
);
364 device
= kzalloc(sizeof(struct isert_device
), GFP_KERNEL
);
366 mutex_unlock(&device_list_mutex
);
367 return ERR_PTR(-ENOMEM
);
370 INIT_LIST_HEAD(&device
->dev_node
);
372 device
->ib_device
= cma_id
->device
;
373 ret
= isert_create_device_ib_res(device
);
376 mutex_unlock(&device_list_mutex
);
381 list_add_tail(&device
->dev_node
, &device_list
);
382 isert_info("Created a new iser device %p refcount %d\n",
383 device
, device
->refcount
);
384 mutex_unlock(&device_list_mutex
);
390 isert_init_conn(struct isert_conn
*isert_conn
)
392 isert_conn
->state
= ISER_CONN_INIT
;
393 INIT_LIST_HEAD(&isert_conn
->node
);
394 init_completion(&isert_conn
->login_comp
);
395 init_completion(&isert_conn
->login_req_comp
);
396 init_waitqueue_head(&isert_conn
->rem_wait
);
397 kref_init(&isert_conn
->kref
);
398 mutex_init(&isert_conn
->mutex
);
399 INIT_WORK(&isert_conn
->release_work
, isert_release_work
);
403 isert_free_login_buf(struct isert_conn
*isert_conn
)
405 struct ib_device
*ib_dev
= isert_conn
->device
->ib_device
;
407 ib_dma_unmap_single(ib_dev
, isert_conn
->login_rsp_dma
,
408 ISER_RX_PAYLOAD_SIZE
, DMA_TO_DEVICE
);
409 kfree(isert_conn
->login_rsp_buf
);
411 ib_dma_unmap_single(ib_dev
, isert_conn
->login_req_dma
,
412 ISER_RX_PAYLOAD_SIZE
,
414 kfree(isert_conn
->login_req_buf
);
418 isert_alloc_login_buf(struct isert_conn
*isert_conn
,
419 struct ib_device
*ib_dev
)
423 isert_conn
->login_req_buf
= kzalloc(sizeof(*isert_conn
->login_req_buf
),
425 if (!isert_conn
->login_req_buf
)
428 isert_conn
->login_req_dma
= ib_dma_map_single(ib_dev
,
429 isert_conn
->login_req_buf
,
430 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
431 ret
= ib_dma_mapping_error(ib_dev
, isert_conn
->login_req_dma
);
433 isert_err("login_req_dma mapping error: %d\n", ret
);
434 isert_conn
->login_req_dma
= 0;
435 goto out_free_login_req_buf
;
438 isert_conn
->login_rsp_buf
= kzalloc(ISER_RX_PAYLOAD_SIZE
, GFP_KERNEL
);
439 if (!isert_conn
->login_rsp_buf
) {
441 goto out_unmap_login_req_buf
;
444 isert_conn
->login_rsp_dma
= ib_dma_map_single(ib_dev
,
445 isert_conn
->login_rsp_buf
,
446 ISER_RX_PAYLOAD_SIZE
, DMA_TO_DEVICE
);
447 ret
= ib_dma_mapping_error(ib_dev
, isert_conn
->login_rsp_dma
);
449 isert_err("login_rsp_dma mapping error: %d\n", ret
);
450 isert_conn
->login_rsp_dma
= 0;
451 goto out_free_login_rsp_buf
;
456 out_free_login_rsp_buf
:
457 kfree(isert_conn
->login_rsp_buf
);
458 out_unmap_login_req_buf
:
459 ib_dma_unmap_single(ib_dev
, isert_conn
->login_req_dma
,
460 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
461 out_free_login_req_buf
:
462 kfree(isert_conn
->login_req_buf
);
467 isert_set_nego_params(struct isert_conn
*isert_conn
,
468 struct rdma_conn_param
*param
)
470 struct ib_device_attr
*attr
= &isert_conn
->device
->ib_device
->attrs
;
472 /* Set max inflight RDMA READ requests */
473 isert_conn
->initiator_depth
= min_t(u8
, param
->initiator_depth
,
474 attr
->max_qp_init_rd_atom
);
475 isert_dbg("Using initiator_depth: %u\n", isert_conn
->initiator_depth
);
477 if (param
->private_data
) {
478 u8 flags
= *(u8
*)param
->private_data
;
481 * use remote invalidation if the both initiator
482 * and the HCA support it
484 isert_conn
->snd_w_inv
= !(flags
& ISER_SEND_W_INV_NOT_SUP
) &&
485 (attr
->device_cap_flags
&
486 IB_DEVICE_MEM_MGT_EXTENSIONS
);
487 if (isert_conn
->snd_w_inv
)
488 isert_info("Using remote invalidation\n");
493 isert_connect_request(struct rdma_cm_id
*cma_id
, struct rdma_cm_event
*event
)
495 struct isert_np
*isert_np
= cma_id
->context
;
496 struct iscsi_np
*np
= isert_np
->np
;
497 struct isert_conn
*isert_conn
;
498 struct isert_device
*device
;
501 spin_lock_bh(&np
->np_thread_lock
);
503 spin_unlock_bh(&np
->np_thread_lock
);
504 isert_dbg("iscsi_np is not enabled, reject connect request\n");
505 return rdma_reject(cma_id
, NULL
, 0);
507 spin_unlock_bh(&np
->np_thread_lock
);
509 isert_dbg("cma_id: %p, portal: %p\n",
510 cma_id
, cma_id
->context
);
512 isert_conn
= kzalloc(sizeof(struct isert_conn
), GFP_KERNEL
);
516 isert_init_conn(isert_conn
);
517 isert_conn
->cm_id
= cma_id
;
519 ret
= isert_alloc_login_buf(isert_conn
, cma_id
->device
);
523 device
= isert_device_get(cma_id
);
524 if (IS_ERR(device
)) {
525 ret
= PTR_ERR(device
);
526 goto out_rsp_dma_map
;
528 isert_conn
->device
= device
;
530 isert_set_nego_params(isert_conn
, &event
->param
.conn
);
532 ret
= isert_conn_setup_qp(isert_conn
, cma_id
);
536 ret
= isert_login_post_recv(isert_conn
);
540 ret
= isert_rdma_accept(isert_conn
);
544 mutex_lock(&isert_np
->mutex
);
545 list_add_tail(&isert_conn
->node
, &isert_np
->accepted
);
546 mutex_unlock(&isert_np
->mutex
);
551 isert_device_put(device
);
553 isert_free_login_buf(isert_conn
);
556 rdma_reject(cma_id
, NULL
, 0);
561 isert_connect_release(struct isert_conn
*isert_conn
)
563 struct isert_device
*device
= isert_conn
->device
;
565 isert_dbg("conn %p\n", isert_conn
);
569 isert_free_rx_descriptors(isert_conn
);
570 if (isert_conn
->cm_id
&&
571 !isert_conn
->dev_removed
)
572 rdma_destroy_id(isert_conn
->cm_id
);
574 if (isert_conn
->qp
) {
575 struct isert_comp
*comp
= isert_conn
->qp
->recv_cq
->cq_context
;
577 isert_comp_put(comp
);
578 ib_destroy_qp(isert_conn
->qp
);
581 if (isert_conn
->login_req_buf
)
582 isert_free_login_buf(isert_conn
);
584 isert_device_put(device
);
586 if (isert_conn
->dev_removed
)
587 wake_up_interruptible(&isert_conn
->rem_wait
);
593 isert_connected_handler(struct rdma_cm_id
*cma_id
)
595 struct isert_conn
*isert_conn
= cma_id
->qp
->qp_context
;
596 struct isert_np
*isert_np
= cma_id
->context
;
598 isert_info("conn %p\n", isert_conn
);
600 mutex_lock(&isert_conn
->mutex
);
601 isert_conn
->state
= ISER_CONN_UP
;
602 kref_get(&isert_conn
->kref
);
603 mutex_unlock(&isert_conn
->mutex
);
605 mutex_lock(&isert_np
->mutex
);
606 list_move_tail(&isert_conn
->node
, &isert_np
->pending
);
607 mutex_unlock(&isert_np
->mutex
);
609 isert_info("np %p: Allow accept_np to continue\n", isert_np
);
614 isert_release_kref(struct kref
*kref
)
616 struct isert_conn
*isert_conn
= container_of(kref
,
617 struct isert_conn
, kref
);
619 isert_info("conn %p final kref %s/%d\n", isert_conn
, current
->comm
,
622 isert_connect_release(isert_conn
);
626 isert_put_conn(struct isert_conn
*isert_conn
)
628 kref_put(&isert_conn
->kref
, isert_release_kref
);
632 isert_handle_unbound_conn(struct isert_conn
*isert_conn
)
634 struct isert_np
*isert_np
= isert_conn
->cm_id
->context
;
636 mutex_lock(&isert_np
->mutex
);
637 if (!list_empty(&isert_conn
->node
)) {
639 * This means iscsi doesn't know this connection
640 * so schedule a cleanup ourselves
642 list_del_init(&isert_conn
->node
);
643 isert_put_conn(isert_conn
);
644 queue_work(isert_release_wq
, &isert_conn
->release_work
);
646 mutex_unlock(&isert_np
->mutex
);
650 * isert_conn_terminate() - Initiate connection termination
651 * @isert_conn: isert connection struct
654 * In case the connection state is BOUND, move state
655 * to TEMINATING and start teardown sequence (rdma_disconnect).
656 * In case the connection state is UP, complete flush as well.
658 * This routine must be called with mutex held. Thus it is
659 * safe to call multiple times.
662 isert_conn_terminate(struct isert_conn
*isert_conn
)
666 if (isert_conn
->state
>= ISER_CONN_TERMINATING
)
669 isert_info("Terminating conn %p state %d\n",
670 isert_conn
, isert_conn
->state
);
671 isert_conn
->state
= ISER_CONN_TERMINATING
;
672 err
= rdma_disconnect(isert_conn
->cm_id
);
674 isert_warn("Failed rdma_disconnect isert_conn %p\n",
679 isert_np_cma_handler(struct isert_np
*isert_np
,
680 enum rdma_cm_event_type event
)
682 isert_dbg("%s (%d): isert np %p\n",
683 rdma_event_msg(event
), event
, isert_np
);
686 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
687 isert_np
->cm_id
= NULL
;
689 case RDMA_CM_EVENT_ADDR_CHANGE
:
690 isert_np
->cm_id
= isert_setup_id(isert_np
);
691 if (IS_ERR(isert_np
->cm_id
)) {
692 isert_err("isert np %p setup id failed: %ld\n",
693 isert_np
, PTR_ERR(isert_np
->cm_id
));
694 isert_np
->cm_id
= NULL
;
698 isert_err("isert np %p Unexpected event %d\n",
706 isert_disconnected_handler(struct rdma_cm_id
*cma_id
,
707 enum rdma_cm_event_type event
)
709 struct isert_conn
*isert_conn
= cma_id
->qp
->qp_context
;
711 mutex_lock(&isert_conn
->mutex
);
712 switch (isert_conn
->state
) {
713 case ISER_CONN_TERMINATING
:
716 isert_conn_terminate(isert_conn
);
717 ib_drain_qp(isert_conn
->qp
);
718 isert_handle_unbound_conn(isert_conn
);
720 case ISER_CONN_BOUND
:
721 case ISER_CONN_FULL_FEATURE
: /* FALLTHRU */
722 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
725 isert_warn("conn %p terminating in state %d\n",
726 isert_conn
, isert_conn
->state
);
728 mutex_unlock(&isert_conn
->mutex
);
734 isert_connect_error(struct rdma_cm_id
*cma_id
)
736 struct isert_conn
*isert_conn
= cma_id
->qp
->qp_context
;
738 ib_drain_qp(isert_conn
->qp
);
739 list_del_init(&isert_conn
->node
);
740 isert_conn
->cm_id
= NULL
;
741 isert_put_conn(isert_conn
);
747 isert_cma_handler(struct rdma_cm_id
*cma_id
, struct rdma_cm_event
*event
)
749 struct isert_np
*isert_np
= cma_id
->context
;
750 struct isert_conn
*isert_conn
;
753 isert_info("%s (%d): status %d id %p np %p\n",
754 rdma_event_msg(event
->event
), event
->event
,
755 event
->status
, cma_id
, cma_id
->context
);
757 if (isert_np
->cm_id
== cma_id
)
758 return isert_np_cma_handler(cma_id
->context
, event
->event
);
760 switch (event
->event
) {
761 case RDMA_CM_EVENT_CONNECT_REQUEST
:
762 ret
= isert_connect_request(cma_id
, event
);
764 isert_err("failed handle connect request %d\n", ret
);
766 case RDMA_CM_EVENT_ESTABLISHED
:
767 isert_connected_handler(cma_id
);
769 case RDMA_CM_EVENT_ADDR_CHANGE
: /* FALLTHRU */
770 case RDMA_CM_EVENT_DISCONNECTED
: /* FALLTHRU */
771 case RDMA_CM_EVENT_TIMEWAIT_EXIT
: /* FALLTHRU */
772 ret
= isert_disconnected_handler(cma_id
, event
->event
);
774 case RDMA_CM_EVENT_DEVICE_REMOVAL
:
775 isert_conn
= cma_id
->qp
->qp_context
;
776 isert_conn
->dev_removed
= true;
777 isert_disconnected_handler(cma_id
, event
->event
);
778 wait_event_interruptible(isert_conn
->rem_wait
,
779 isert_conn
->state
== ISER_CONN_DOWN
);
782 * return non-zero from the callback to destroy
786 case RDMA_CM_EVENT_REJECTED
:
787 isert_info("Connection rejected: %s\n",
788 rdma_reject_msg(cma_id
, event
->status
));
790 case RDMA_CM_EVENT_UNREACHABLE
:
791 case RDMA_CM_EVENT_CONNECT_ERROR
:
792 ret
= isert_connect_error(cma_id
);
795 isert_err("Unhandled RDMA CMA event: %d\n", event
->event
);
803 isert_post_recvm(struct isert_conn
*isert_conn
, u32 count
)
805 struct ib_recv_wr
*rx_wr
;
807 struct iser_rx_desc
*rx_desc
;
809 for (rx_wr
= isert_conn
->rx_wr
, i
= 0; i
< count
; i
++, rx_wr
++) {
810 rx_desc
= &isert_conn
->rx_descs
[i
];
812 rx_wr
->wr_cqe
= &rx_desc
->rx_cqe
;
813 rx_wr
->sg_list
= &rx_desc
->rx_sg
;
815 rx_wr
->next
= rx_wr
+ 1;
816 rx_desc
->in_use
= false;
819 rx_wr
->next
= NULL
; /* mark end of work requests list */
821 ret
= ib_post_recv(isert_conn
->qp
, isert_conn
->rx_wr
, NULL
);
823 isert_err("ib_post_recv() failed with ret: %d\n", ret
);
829 isert_post_recv(struct isert_conn
*isert_conn
, struct iser_rx_desc
*rx_desc
)
831 struct ib_recv_wr rx_wr
;
834 if (!rx_desc
->in_use
) {
836 * if the descriptor is not in-use we already reposted it
837 * for recv, so just silently return
842 rx_desc
->in_use
= false;
843 rx_wr
.wr_cqe
= &rx_desc
->rx_cqe
;
844 rx_wr
.sg_list
= &rx_desc
->rx_sg
;
848 ret
= ib_post_recv(isert_conn
->qp
, &rx_wr
, NULL
);
850 isert_err("ib_post_recv() failed with ret: %d\n", ret
);
856 isert_login_post_send(struct isert_conn
*isert_conn
, struct iser_tx_desc
*tx_desc
)
858 struct ib_device
*ib_dev
= isert_conn
->cm_id
->device
;
859 struct ib_send_wr send_wr
;
862 ib_dma_sync_single_for_device(ib_dev
, tx_desc
->dma_addr
,
863 ISER_HEADERS_LEN
, DMA_TO_DEVICE
);
865 tx_desc
->tx_cqe
.done
= isert_login_send_done
;
868 send_wr
.wr_cqe
= &tx_desc
->tx_cqe
;
869 send_wr
.sg_list
= tx_desc
->tx_sg
;
870 send_wr
.num_sge
= tx_desc
->num_sge
;
871 send_wr
.opcode
= IB_WR_SEND
;
872 send_wr
.send_flags
= IB_SEND_SIGNALED
;
874 ret
= ib_post_send(isert_conn
->qp
, &send_wr
, NULL
);
876 isert_err("ib_post_send() failed, ret: %d\n", ret
);
882 __isert_create_send_desc(struct isert_device
*device
,
883 struct iser_tx_desc
*tx_desc
)
886 memset(&tx_desc
->iser_header
, 0, sizeof(struct iser_ctrl
));
887 tx_desc
->iser_header
.flags
= ISCSI_CTRL
;
889 tx_desc
->num_sge
= 1;
891 if (tx_desc
->tx_sg
[0].lkey
!= device
->pd
->local_dma_lkey
) {
892 tx_desc
->tx_sg
[0].lkey
= device
->pd
->local_dma_lkey
;
893 isert_dbg("tx_desc %p lkey mismatch, fixing\n", tx_desc
);
898 isert_create_send_desc(struct isert_conn
*isert_conn
,
899 struct isert_cmd
*isert_cmd
,
900 struct iser_tx_desc
*tx_desc
)
902 struct isert_device
*device
= isert_conn
->device
;
903 struct ib_device
*ib_dev
= device
->ib_device
;
905 ib_dma_sync_single_for_cpu(ib_dev
, tx_desc
->dma_addr
,
906 ISER_HEADERS_LEN
, DMA_TO_DEVICE
);
908 __isert_create_send_desc(device
, tx_desc
);
912 isert_init_tx_hdrs(struct isert_conn
*isert_conn
,
913 struct iser_tx_desc
*tx_desc
)
915 struct isert_device
*device
= isert_conn
->device
;
916 struct ib_device
*ib_dev
= device
->ib_device
;
919 dma_addr
= ib_dma_map_single(ib_dev
, (void *)tx_desc
,
920 ISER_HEADERS_LEN
, DMA_TO_DEVICE
);
921 if (ib_dma_mapping_error(ib_dev
, dma_addr
)) {
922 isert_err("ib_dma_mapping_error() failed\n");
926 tx_desc
->dma_addr
= dma_addr
;
927 tx_desc
->tx_sg
[0].addr
= tx_desc
->dma_addr
;
928 tx_desc
->tx_sg
[0].length
= ISER_HEADERS_LEN
;
929 tx_desc
->tx_sg
[0].lkey
= device
->pd
->local_dma_lkey
;
931 isert_dbg("Setup tx_sg[0].addr: 0x%llx length: %u lkey: 0x%x\n",
932 tx_desc
->tx_sg
[0].addr
, tx_desc
->tx_sg
[0].length
,
933 tx_desc
->tx_sg
[0].lkey
);
939 isert_init_send_wr(struct isert_conn
*isert_conn
, struct isert_cmd
*isert_cmd
,
940 struct ib_send_wr
*send_wr
)
942 struct iser_tx_desc
*tx_desc
= &isert_cmd
->tx_desc
;
944 tx_desc
->tx_cqe
.done
= isert_send_done
;
945 send_wr
->wr_cqe
= &tx_desc
->tx_cqe
;
947 if (isert_conn
->snd_w_inv
&& isert_cmd
->inv_rkey
) {
948 send_wr
->opcode
= IB_WR_SEND_WITH_INV
;
949 send_wr
->ex
.invalidate_rkey
= isert_cmd
->inv_rkey
;
951 send_wr
->opcode
= IB_WR_SEND
;
954 send_wr
->sg_list
= &tx_desc
->tx_sg
[0];
955 send_wr
->num_sge
= isert_cmd
->tx_desc
.num_sge
;
956 send_wr
->send_flags
= IB_SEND_SIGNALED
;
960 isert_login_post_recv(struct isert_conn
*isert_conn
)
962 struct ib_recv_wr rx_wr
;
966 memset(&sge
, 0, sizeof(struct ib_sge
));
967 sge
.addr
= isert_conn
->login_req_dma
;
968 sge
.length
= ISER_RX_PAYLOAD_SIZE
;
969 sge
.lkey
= isert_conn
->device
->pd
->local_dma_lkey
;
971 isert_dbg("Setup sge: addr: %llx length: %d 0x%08x\n",
972 sge
.addr
, sge
.length
, sge
.lkey
);
974 isert_conn
->login_req_buf
->rx_cqe
.done
= isert_login_recv_done
;
976 memset(&rx_wr
, 0, sizeof(struct ib_recv_wr
));
977 rx_wr
.wr_cqe
= &isert_conn
->login_req_buf
->rx_cqe
;
978 rx_wr
.sg_list
= &sge
;
981 ret
= ib_post_recv(isert_conn
->qp
, &rx_wr
, NULL
);
983 isert_err("ib_post_recv() failed: %d\n", ret
);
989 isert_put_login_tx(struct iscsi_conn
*conn
, struct iscsi_login
*login
,
992 struct isert_conn
*isert_conn
= conn
->context
;
993 struct isert_device
*device
= isert_conn
->device
;
994 struct ib_device
*ib_dev
= device
->ib_device
;
995 struct iser_tx_desc
*tx_desc
= &isert_conn
->login_tx_desc
;
998 __isert_create_send_desc(device
, tx_desc
);
1000 memcpy(&tx_desc
->iscsi_header
, &login
->rsp
[0],
1001 sizeof(struct iscsi_hdr
));
1003 isert_init_tx_hdrs(isert_conn
, tx_desc
);
1006 struct ib_sge
*tx_dsg
= &tx_desc
->tx_sg
[1];
1008 ib_dma_sync_single_for_cpu(ib_dev
, isert_conn
->login_rsp_dma
,
1009 length
, DMA_TO_DEVICE
);
1011 memcpy(isert_conn
->login_rsp_buf
, login
->rsp_buf
, length
);
1013 ib_dma_sync_single_for_device(ib_dev
, isert_conn
->login_rsp_dma
,
1014 length
, DMA_TO_DEVICE
);
1016 tx_dsg
->addr
= isert_conn
->login_rsp_dma
;
1017 tx_dsg
->length
= length
;
1018 tx_dsg
->lkey
= isert_conn
->device
->pd
->local_dma_lkey
;
1019 tx_desc
->num_sge
= 2;
1021 if (!login
->login_failed
) {
1022 if (login
->login_complete
) {
1023 ret
= isert_alloc_rx_descriptors(isert_conn
);
1027 ret
= isert_post_recvm(isert_conn
,
1028 ISERT_QP_MAX_RECV_DTOS
);
1032 /* Now we are in FULL_FEATURE phase */
1033 mutex_lock(&isert_conn
->mutex
);
1034 isert_conn
->state
= ISER_CONN_FULL_FEATURE
;
1035 mutex_unlock(&isert_conn
->mutex
);
1039 ret
= isert_login_post_recv(isert_conn
);
1044 ret
= isert_login_post_send(isert_conn
, tx_desc
);
1052 isert_rx_login_req(struct isert_conn
*isert_conn
)
1054 struct iser_rx_desc
*rx_desc
= isert_conn
->login_req_buf
;
1055 int rx_buflen
= isert_conn
->login_req_len
;
1056 struct iscsi_conn
*conn
= isert_conn
->conn
;
1057 struct iscsi_login
*login
= conn
->conn_login
;
1060 isert_info("conn %p\n", isert_conn
);
1062 WARN_ON_ONCE(!login
);
1064 if (login
->first_request
) {
1065 struct iscsi_login_req
*login_req
=
1066 (struct iscsi_login_req
*)&rx_desc
->iscsi_header
;
1068 * Setup the initial iscsi_login values from the leading
1069 * login request PDU.
1071 login
->leading_connection
= (!login_req
->tsih
) ? 1 : 0;
1072 login
->current_stage
=
1073 (login_req
->flags
& ISCSI_FLAG_LOGIN_CURRENT_STAGE_MASK
)
1075 login
->version_min
= login_req
->min_version
;
1076 login
->version_max
= login_req
->max_version
;
1077 memcpy(login
->isid
, login_req
->isid
, 6);
1078 login
->cmd_sn
= be32_to_cpu(login_req
->cmdsn
);
1079 login
->init_task_tag
= login_req
->itt
;
1080 login
->initial_exp_statsn
= be32_to_cpu(login_req
->exp_statsn
);
1081 login
->cid
= be16_to_cpu(login_req
->cid
);
1082 login
->tsih
= be16_to_cpu(login_req
->tsih
);
1085 memcpy(&login
->req
[0], (void *)&rx_desc
->iscsi_header
, ISCSI_HDR_LEN
);
1087 size
= min(rx_buflen
, MAX_KEY_VALUE_PAIRS
);
1088 isert_dbg("Using login payload size: %d, rx_buflen: %d "
1089 "MAX_KEY_VALUE_PAIRS: %d\n", size
, rx_buflen
,
1090 MAX_KEY_VALUE_PAIRS
);
1091 memcpy(login
->req_buf
, &rx_desc
->data
[0], size
);
1093 if (login
->first_request
) {
1094 complete(&isert_conn
->login_comp
);
1097 schedule_delayed_work(&conn
->login_work
, 0);
1100 static struct iscsi_cmd
1101 *isert_allocate_cmd(struct iscsi_conn
*conn
, struct iser_rx_desc
*rx_desc
)
1103 struct isert_conn
*isert_conn
= conn
->context
;
1104 struct isert_cmd
*isert_cmd
;
1105 struct iscsi_cmd
*cmd
;
1107 cmd
= iscsit_allocate_cmd(conn
, TASK_INTERRUPTIBLE
);
1109 isert_err("Unable to allocate iscsi_cmd + isert_cmd\n");
1112 isert_cmd
= iscsit_priv_cmd(cmd
);
1113 isert_cmd
->conn
= isert_conn
;
1114 isert_cmd
->iscsi_cmd
= cmd
;
1115 isert_cmd
->rx_desc
= rx_desc
;
1121 isert_handle_scsi_cmd(struct isert_conn
*isert_conn
,
1122 struct isert_cmd
*isert_cmd
, struct iscsi_cmd
*cmd
,
1123 struct iser_rx_desc
*rx_desc
, unsigned char *buf
)
1125 struct iscsi_conn
*conn
= isert_conn
->conn
;
1126 struct iscsi_scsi_req
*hdr
= (struct iscsi_scsi_req
*)buf
;
1127 int imm_data
, imm_data_len
, unsol_data
, sg_nents
, rc
;
1128 bool dump_payload
= false;
1129 unsigned int data_len
;
1131 rc
= iscsit_setup_scsi_cmd(conn
, cmd
, buf
);
1135 imm_data
= cmd
->immediate_data
;
1136 imm_data_len
= cmd
->first_burst_len
;
1137 unsol_data
= cmd
->unsolicited_data
;
1138 data_len
= cmd
->se_cmd
.data_length
;
1140 if (imm_data
&& imm_data_len
== data_len
)
1141 cmd
->se_cmd
.se_cmd_flags
|= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC
;
1142 rc
= iscsit_process_scsi_cmd(conn
, cmd
, hdr
);
1145 } else if (rc
> 0) {
1146 dump_payload
= true;
1153 if (imm_data_len
!= data_len
) {
1154 sg_nents
= max(1UL, DIV_ROUND_UP(imm_data_len
, PAGE_SIZE
));
1155 sg_copy_from_buffer(cmd
->se_cmd
.t_data_sg
, sg_nents
,
1156 &rx_desc
->data
[0], imm_data_len
);
1157 isert_dbg("Copy Immediate sg_nents: %u imm_data_len: %d\n",
1158 sg_nents
, imm_data_len
);
1160 sg_init_table(&isert_cmd
->sg
, 1);
1161 cmd
->se_cmd
.t_data_sg
= &isert_cmd
->sg
;
1162 cmd
->se_cmd
.t_data_nents
= 1;
1163 sg_set_buf(&isert_cmd
->sg
, &rx_desc
->data
[0], imm_data_len
);
1164 isert_dbg("Transfer Immediate imm_data_len: %d\n",
1168 cmd
->write_data_done
+= imm_data_len
;
1170 if (cmd
->write_data_done
== cmd
->se_cmd
.data_length
) {
1171 spin_lock_bh(&cmd
->istate_lock
);
1172 cmd
->cmd_flags
|= ICF_GOT_LAST_DATAOUT
;
1173 cmd
->i_state
= ISTATE_RECEIVED_LAST_DATAOUT
;
1174 spin_unlock_bh(&cmd
->istate_lock
);
1178 rc
= iscsit_sequence_cmd(conn
, cmd
, buf
, hdr
->cmdsn
);
1180 if (!rc
&& dump_payload
== false && unsol_data
)
1181 iscsit_set_unsolicited_dataout(cmd
);
1182 else if (dump_payload
&& imm_data
)
1183 target_put_sess_cmd(&cmd
->se_cmd
);
1189 isert_handle_iscsi_dataout(struct isert_conn
*isert_conn
,
1190 struct iser_rx_desc
*rx_desc
, unsigned char *buf
)
1192 struct scatterlist
*sg_start
;
1193 struct iscsi_conn
*conn
= isert_conn
->conn
;
1194 struct iscsi_cmd
*cmd
= NULL
;
1195 struct iscsi_data
*hdr
= (struct iscsi_data
*)buf
;
1196 u32 unsol_data_len
= ntoh24(hdr
->dlength
);
1197 int rc
, sg_nents
, sg_off
, page_off
;
1199 rc
= iscsit_check_dataout_hdr(conn
, buf
, &cmd
);
1205 * FIXME: Unexpected unsolicited_data out
1207 if (!cmd
->unsolicited_data
) {
1208 isert_err("Received unexpected solicited data payload\n");
1213 isert_dbg("Unsolicited DataOut unsol_data_len: %u, "
1214 "write_data_done: %u, data_length: %u\n",
1215 unsol_data_len
, cmd
->write_data_done
,
1216 cmd
->se_cmd
.data_length
);
1218 sg_off
= cmd
->write_data_done
/ PAGE_SIZE
;
1219 sg_start
= &cmd
->se_cmd
.t_data_sg
[sg_off
];
1220 sg_nents
= max(1UL, DIV_ROUND_UP(unsol_data_len
, PAGE_SIZE
));
1221 page_off
= cmd
->write_data_done
% PAGE_SIZE
;
1223 * FIXME: Non page-aligned unsolicited_data out
1226 isert_err("unexpected non-page aligned data payload\n");
1230 isert_dbg("Copying DataOut: sg_start: %p, sg_off: %u "
1231 "sg_nents: %u from %p %u\n", sg_start
, sg_off
,
1232 sg_nents
, &rx_desc
->data
[0], unsol_data_len
);
1234 sg_copy_from_buffer(sg_start
, sg_nents
, &rx_desc
->data
[0],
1237 rc
= iscsit_check_dataout_payload(cmd
, hdr
, false);
1242 * multiple data-outs on the same command can arrive -
1243 * so post the buffer before hand
1245 rc
= isert_post_recv(isert_conn
, rx_desc
);
1247 isert_err("ib_post_recv failed with %d\n", rc
);
1254 isert_handle_nop_out(struct isert_conn
*isert_conn
, struct isert_cmd
*isert_cmd
,
1255 struct iscsi_cmd
*cmd
, struct iser_rx_desc
*rx_desc
,
1258 struct iscsi_conn
*conn
= isert_conn
->conn
;
1259 struct iscsi_nopout
*hdr
= (struct iscsi_nopout
*)buf
;
1262 rc
= iscsit_setup_nop_out(conn
, cmd
, hdr
);
1266 * FIXME: Add support for NOPOUT payload using unsolicited RDMA payload
1269 return iscsit_process_nop_out(conn
, cmd
, hdr
);
1273 isert_handle_text_cmd(struct isert_conn
*isert_conn
, struct isert_cmd
*isert_cmd
,
1274 struct iscsi_cmd
*cmd
, struct iser_rx_desc
*rx_desc
,
1275 struct iscsi_text
*hdr
)
1277 struct iscsi_conn
*conn
= isert_conn
->conn
;
1278 u32 payload_length
= ntoh24(hdr
->dlength
);
1280 unsigned char *text_in
= NULL
;
1282 rc
= iscsit_setup_text_cmd(conn
, cmd
, hdr
);
1286 if (payload_length
) {
1287 text_in
= kzalloc(payload_length
, GFP_KERNEL
);
1291 cmd
->text_in_ptr
= text_in
;
1293 memcpy(cmd
->text_in_ptr
, &rx_desc
->data
[0], payload_length
);
1295 return iscsit_process_text_cmd(conn
, cmd
, hdr
);
1299 isert_rx_opcode(struct isert_conn
*isert_conn
, struct iser_rx_desc
*rx_desc
,
1300 uint32_t read_stag
, uint64_t read_va
,
1301 uint32_t write_stag
, uint64_t write_va
)
1303 struct iscsi_hdr
*hdr
= &rx_desc
->iscsi_header
;
1304 struct iscsi_conn
*conn
= isert_conn
->conn
;
1305 struct iscsi_cmd
*cmd
;
1306 struct isert_cmd
*isert_cmd
;
1308 u8 opcode
= (hdr
->opcode
& ISCSI_OPCODE_MASK
);
1310 if (conn
->sess
->sess_ops
->SessionType
&&
1311 (!(opcode
& ISCSI_OP_TEXT
) || !(opcode
& ISCSI_OP_LOGOUT
))) {
1312 isert_err("Got illegal opcode: 0x%02x in SessionType=Discovery,"
1313 " ignoring\n", opcode
);
1318 case ISCSI_OP_SCSI_CMD
:
1319 cmd
= isert_allocate_cmd(conn
, rx_desc
);
1323 isert_cmd
= iscsit_priv_cmd(cmd
);
1324 isert_cmd
->read_stag
= read_stag
;
1325 isert_cmd
->read_va
= read_va
;
1326 isert_cmd
->write_stag
= write_stag
;
1327 isert_cmd
->write_va
= write_va
;
1328 isert_cmd
->inv_rkey
= read_stag
? read_stag
: write_stag
;
1330 ret
= isert_handle_scsi_cmd(isert_conn
, isert_cmd
, cmd
,
1331 rx_desc
, (unsigned char *)hdr
);
1333 case ISCSI_OP_NOOP_OUT
:
1334 cmd
= isert_allocate_cmd(conn
, rx_desc
);
1338 isert_cmd
= iscsit_priv_cmd(cmd
);
1339 ret
= isert_handle_nop_out(isert_conn
, isert_cmd
, cmd
,
1340 rx_desc
, (unsigned char *)hdr
);
1342 case ISCSI_OP_SCSI_DATA_OUT
:
1343 ret
= isert_handle_iscsi_dataout(isert_conn
, rx_desc
,
1344 (unsigned char *)hdr
);
1346 case ISCSI_OP_SCSI_TMFUNC
:
1347 cmd
= isert_allocate_cmd(conn
, rx_desc
);
1351 ret
= iscsit_handle_task_mgt_cmd(conn
, cmd
,
1352 (unsigned char *)hdr
);
1354 case ISCSI_OP_LOGOUT
:
1355 cmd
= isert_allocate_cmd(conn
, rx_desc
);
1359 ret
= iscsit_handle_logout_cmd(conn
, cmd
, (unsigned char *)hdr
);
1362 if (be32_to_cpu(hdr
->ttt
) != 0xFFFFFFFF)
1363 cmd
= iscsit_find_cmd_from_itt(conn
, hdr
->itt
);
1365 cmd
= isert_allocate_cmd(conn
, rx_desc
);
1370 isert_cmd
= iscsit_priv_cmd(cmd
);
1371 ret
= isert_handle_text_cmd(isert_conn
, isert_cmd
, cmd
,
1372 rx_desc
, (struct iscsi_text
*)hdr
);
1375 isert_err("Got unknown iSCSI OpCode: 0x%02x\n", opcode
);
1384 isert_print_wc(struct ib_wc
*wc
, const char *type
)
1386 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1387 isert_err("%s failure: %s (%d) vend_err %x\n", type
,
1388 ib_wc_status_msg(wc
->status
), wc
->status
,
1391 isert_dbg("%s failure: %s (%d)\n", type
,
1392 ib_wc_status_msg(wc
->status
), wc
->status
);
1396 isert_recv_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1398 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1399 struct ib_device
*ib_dev
= isert_conn
->cm_id
->device
;
1400 struct iser_rx_desc
*rx_desc
= cqe_to_rx_desc(wc
->wr_cqe
);
1401 struct iscsi_hdr
*hdr
= &rx_desc
->iscsi_header
;
1402 struct iser_ctrl
*iser_ctrl
= &rx_desc
->iser_header
;
1403 uint64_t read_va
= 0, write_va
= 0;
1404 uint32_t read_stag
= 0, write_stag
= 0;
1406 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1407 isert_print_wc(wc
, "recv");
1408 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1409 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
1413 rx_desc
->in_use
= true;
1415 ib_dma_sync_single_for_cpu(ib_dev
, rx_desc
->dma_addr
,
1416 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
1418 isert_dbg("DMA: 0x%llx, iSCSI opcode: 0x%02x, ITT: 0x%08x, flags: 0x%02x dlen: %d\n",
1419 rx_desc
->dma_addr
, hdr
->opcode
, hdr
->itt
, hdr
->flags
,
1420 (int)(wc
->byte_len
- ISER_HEADERS_LEN
));
1422 switch (iser_ctrl
->flags
& 0xF0) {
1424 if (iser_ctrl
->flags
& ISER_RSV
) {
1425 read_stag
= be32_to_cpu(iser_ctrl
->read_stag
);
1426 read_va
= be64_to_cpu(iser_ctrl
->read_va
);
1427 isert_dbg("ISER_RSV: read_stag: 0x%x read_va: 0x%llx\n",
1428 read_stag
, (unsigned long long)read_va
);
1430 if (iser_ctrl
->flags
& ISER_WSV
) {
1431 write_stag
= be32_to_cpu(iser_ctrl
->write_stag
);
1432 write_va
= be64_to_cpu(iser_ctrl
->write_va
);
1433 isert_dbg("ISER_WSV: write_stag: 0x%x write_va: 0x%llx\n",
1434 write_stag
, (unsigned long long)write_va
);
1437 isert_dbg("ISER ISCSI_CTRL PDU\n");
1440 isert_err("iSER Hello message\n");
1443 isert_warn("Unknown iSER hdr flags: 0x%02x\n", iser_ctrl
->flags
);
1447 isert_rx_opcode(isert_conn
, rx_desc
,
1448 read_stag
, read_va
, write_stag
, write_va
);
1450 ib_dma_sync_single_for_device(ib_dev
, rx_desc
->dma_addr
,
1451 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
1455 isert_login_recv_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1457 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1458 struct ib_device
*ib_dev
= isert_conn
->device
->ib_device
;
1460 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1461 isert_print_wc(wc
, "login recv");
1465 ib_dma_sync_single_for_cpu(ib_dev
, isert_conn
->login_req_dma
,
1466 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
1468 isert_conn
->login_req_len
= wc
->byte_len
- ISER_HEADERS_LEN
;
1470 if (isert_conn
->conn
) {
1471 struct iscsi_login
*login
= isert_conn
->conn
->conn_login
;
1473 if (login
&& !login
->first_request
)
1474 isert_rx_login_req(isert_conn
);
1477 mutex_lock(&isert_conn
->mutex
);
1478 complete(&isert_conn
->login_req_comp
);
1479 mutex_unlock(&isert_conn
->mutex
);
1481 ib_dma_sync_single_for_device(ib_dev
, isert_conn
->login_req_dma
,
1482 ISER_RX_PAYLOAD_SIZE
, DMA_FROM_DEVICE
);
1486 isert_rdma_rw_ctx_destroy(struct isert_cmd
*cmd
, struct isert_conn
*conn
)
1488 struct se_cmd
*se_cmd
= &cmd
->iscsi_cmd
->se_cmd
;
1489 enum dma_data_direction dir
= target_reverse_dma_direction(se_cmd
);
1491 if (!cmd
->rw
.nr_ops
)
1494 if (isert_prot_cmd(conn
, se_cmd
)) {
1495 rdma_rw_ctx_destroy_signature(&cmd
->rw
, conn
->qp
,
1496 conn
->cm_id
->port_num
, se_cmd
->t_data_sg
,
1497 se_cmd
->t_data_nents
, se_cmd
->t_prot_sg
,
1498 se_cmd
->t_prot_nents
, dir
);
1500 rdma_rw_ctx_destroy(&cmd
->rw
, conn
->qp
, conn
->cm_id
->port_num
,
1501 se_cmd
->t_data_sg
, se_cmd
->t_data_nents
, dir
);
1508 isert_put_cmd(struct isert_cmd
*isert_cmd
, bool comp_err
)
1510 struct iscsi_cmd
*cmd
= isert_cmd
->iscsi_cmd
;
1511 struct isert_conn
*isert_conn
= isert_cmd
->conn
;
1512 struct iscsi_conn
*conn
= isert_conn
->conn
;
1513 struct iscsi_text_rsp
*hdr
;
1515 isert_dbg("Cmd %p\n", isert_cmd
);
1517 switch (cmd
->iscsi_opcode
) {
1518 case ISCSI_OP_SCSI_CMD
:
1519 spin_lock_bh(&conn
->cmd_lock
);
1520 if (!list_empty(&cmd
->i_conn_node
))
1521 list_del_init(&cmd
->i_conn_node
);
1522 spin_unlock_bh(&conn
->cmd_lock
);
1524 if (cmd
->data_direction
== DMA_TO_DEVICE
) {
1525 iscsit_stop_dataout_timer(cmd
);
1527 * Check for special case during comp_err where
1528 * WRITE_PENDING has been handed off from core,
1529 * but requires an extra target_put_sess_cmd()
1530 * before transport_generic_free_cmd() below.
1533 cmd
->se_cmd
.t_state
== TRANSPORT_WRITE_PENDING
) {
1534 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
1536 target_put_sess_cmd(se_cmd
);
1540 isert_rdma_rw_ctx_destroy(isert_cmd
, isert_conn
);
1541 transport_generic_free_cmd(&cmd
->se_cmd
, 0);
1543 case ISCSI_OP_SCSI_TMFUNC
:
1544 spin_lock_bh(&conn
->cmd_lock
);
1545 if (!list_empty(&cmd
->i_conn_node
))
1546 list_del_init(&cmd
->i_conn_node
);
1547 spin_unlock_bh(&conn
->cmd_lock
);
1549 transport_generic_free_cmd(&cmd
->se_cmd
, 0);
1551 case ISCSI_OP_REJECT
:
1552 case ISCSI_OP_NOOP_OUT
:
1554 hdr
= (struct iscsi_text_rsp
*)&isert_cmd
->tx_desc
.iscsi_header
;
1555 /* If the continue bit is on, keep the command alive */
1556 if (hdr
->flags
& ISCSI_FLAG_TEXT_CONTINUE
)
1559 spin_lock_bh(&conn
->cmd_lock
);
1560 if (!list_empty(&cmd
->i_conn_node
))
1561 list_del_init(&cmd
->i_conn_node
);
1562 spin_unlock_bh(&conn
->cmd_lock
);
1565 * Handle special case for REJECT when iscsi_add_reject*() has
1566 * overwritten the original iscsi_opcode assignment, and the
1567 * associated cmd->se_cmd needs to be released.
1569 if (cmd
->se_cmd
.se_tfo
!= NULL
) {
1570 isert_dbg("Calling transport_generic_free_cmd for 0x%02x\n",
1572 transport_generic_free_cmd(&cmd
->se_cmd
, 0);
1577 iscsit_release_cmd(cmd
);
1583 isert_unmap_tx_desc(struct iser_tx_desc
*tx_desc
, struct ib_device
*ib_dev
)
1585 if (tx_desc
->dma_addr
!= 0) {
1586 isert_dbg("unmap single for tx_desc->dma_addr\n");
1587 ib_dma_unmap_single(ib_dev
, tx_desc
->dma_addr
,
1588 ISER_HEADERS_LEN
, DMA_TO_DEVICE
);
1589 tx_desc
->dma_addr
= 0;
1594 isert_completion_put(struct iser_tx_desc
*tx_desc
, struct isert_cmd
*isert_cmd
,
1595 struct ib_device
*ib_dev
, bool comp_err
)
1597 if (isert_cmd
->pdu_buf_dma
!= 0) {
1598 isert_dbg("unmap single for isert_cmd->pdu_buf_dma\n");
1599 ib_dma_unmap_single(ib_dev
, isert_cmd
->pdu_buf_dma
,
1600 isert_cmd
->pdu_buf_len
, DMA_TO_DEVICE
);
1601 isert_cmd
->pdu_buf_dma
= 0;
1604 isert_unmap_tx_desc(tx_desc
, ib_dev
);
1605 isert_put_cmd(isert_cmd
, comp_err
);
1609 isert_check_pi_status(struct se_cmd
*se_cmd
, struct ib_mr
*sig_mr
)
1611 struct ib_mr_status mr_status
;
1614 ret
= ib_check_mr_status(sig_mr
, IB_MR_CHECK_SIG_STATUS
, &mr_status
);
1616 isert_err("ib_check_mr_status failed, ret %d\n", ret
);
1617 goto fail_mr_status
;
1620 if (mr_status
.fail_status
& IB_MR_CHECK_SIG_STATUS
) {
1622 u32 block_size
= se_cmd
->se_dev
->dev_attrib
.block_size
+ 8;
1624 switch (mr_status
.sig_err
.err_type
) {
1625 case IB_SIG_BAD_GUARD
:
1626 se_cmd
->pi_err
= TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED
;
1628 case IB_SIG_BAD_REFTAG
:
1629 se_cmd
->pi_err
= TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED
;
1631 case IB_SIG_BAD_APPTAG
:
1632 se_cmd
->pi_err
= TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED
;
1635 sec_offset_err
= mr_status
.sig_err
.sig_err_offset
;
1636 do_div(sec_offset_err
, block_size
);
1637 se_cmd
->bad_sector
= sec_offset_err
+ se_cmd
->t_task_lba
;
1639 isert_err("PI error found type %d at sector 0x%llx "
1640 "expected 0x%x vs actual 0x%x\n",
1641 mr_status
.sig_err
.err_type
,
1642 (unsigned long long)se_cmd
->bad_sector
,
1643 mr_status
.sig_err
.expected
,
1644 mr_status
.sig_err
.actual
);
1653 isert_rdma_write_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1655 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1656 struct isert_device
*device
= isert_conn
->device
;
1657 struct iser_tx_desc
*desc
= cqe_to_tx_desc(wc
->wr_cqe
);
1658 struct isert_cmd
*isert_cmd
= tx_desc_to_cmd(desc
);
1659 struct se_cmd
*cmd
= &isert_cmd
->iscsi_cmd
->se_cmd
;
1662 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1663 isert_print_wc(wc
, "rdma write");
1664 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1665 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
1666 isert_completion_put(desc
, isert_cmd
, device
->ib_device
, true);
1670 isert_dbg("Cmd %p\n", isert_cmd
);
1672 ret
= isert_check_pi_status(cmd
, isert_cmd
->rw
.reg
->mr
);
1673 isert_rdma_rw_ctx_destroy(isert_cmd
, isert_conn
);
1677 * transport_generic_request_failure() expects to have
1678 * plus two references to handle queue-full, so re-add
1679 * one here as target-core will have already dropped
1680 * it after the first isert_put_datain() callback.
1682 kref_get(&cmd
->cmd_kref
);
1683 transport_generic_request_failure(cmd
, cmd
->pi_err
);
1686 * XXX: isert_put_response() failure is not retried.
1688 ret
= isert_put_response(isert_conn
->conn
, isert_cmd
->iscsi_cmd
);
1690 pr_warn_ratelimited("isert_put_response() ret: %d\n", ret
);
1695 isert_rdma_read_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1697 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1698 struct isert_device
*device
= isert_conn
->device
;
1699 struct iser_tx_desc
*desc
= cqe_to_tx_desc(wc
->wr_cqe
);
1700 struct isert_cmd
*isert_cmd
= tx_desc_to_cmd(desc
);
1701 struct iscsi_cmd
*cmd
= isert_cmd
->iscsi_cmd
;
1702 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
1705 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1706 isert_print_wc(wc
, "rdma read");
1707 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1708 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
1709 isert_completion_put(desc
, isert_cmd
, device
->ib_device
, true);
1713 isert_dbg("Cmd %p\n", isert_cmd
);
1715 iscsit_stop_dataout_timer(cmd
);
1717 if (isert_prot_cmd(isert_conn
, se_cmd
))
1718 ret
= isert_check_pi_status(se_cmd
, isert_cmd
->rw
.reg
->mr
);
1719 isert_rdma_rw_ctx_destroy(isert_cmd
, isert_conn
);
1720 cmd
->write_data_done
= 0;
1722 isert_dbg("Cmd: %p RDMA_READ comp calling execute_cmd\n", isert_cmd
);
1723 spin_lock_bh(&cmd
->istate_lock
);
1724 cmd
->cmd_flags
|= ICF_GOT_LAST_DATAOUT
;
1725 cmd
->i_state
= ISTATE_RECEIVED_LAST_DATAOUT
;
1726 spin_unlock_bh(&cmd
->istate_lock
);
1729 * transport_generic_request_failure() will drop the extra
1730 * se_cmd->cmd_kref reference after T10-PI error, and handle
1731 * any non-zero ->queue_status() callback error retries.
1734 transport_generic_request_failure(se_cmd
, se_cmd
->pi_err
);
1736 target_execute_cmd(se_cmd
);
1740 isert_do_control_comp(struct work_struct
*work
)
1742 struct isert_cmd
*isert_cmd
= container_of(work
,
1743 struct isert_cmd
, comp_work
);
1744 struct isert_conn
*isert_conn
= isert_cmd
->conn
;
1745 struct ib_device
*ib_dev
= isert_conn
->cm_id
->device
;
1746 struct iscsi_cmd
*cmd
= isert_cmd
->iscsi_cmd
;
1748 isert_dbg("Cmd %p i_state %d\n", isert_cmd
, cmd
->i_state
);
1750 switch (cmd
->i_state
) {
1751 case ISTATE_SEND_TASKMGTRSP
:
1752 iscsit_tmr_post_handler(cmd
, cmd
->conn
);
1754 case ISTATE_SEND_REJECT
:
1755 case ISTATE_SEND_TEXTRSP
:
1756 cmd
->i_state
= ISTATE_SENT_STATUS
;
1757 isert_completion_put(&isert_cmd
->tx_desc
, isert_cmd
,
1760 case ISTATE_SEND_LOGOUTRSP
:
1761 iscsit_logout_post_handler(cmd
, cmd
->conn
);
1764 isert_err("Unknown i_state %d\n", cmd
->i_state
);
1771 isert_login_send_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1773 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1774 struct ib_device
*ib_dev
= isert_conn
->cm_id
->device
;
1775 struct iser_tx_desc
*tx_desc
= cqe_to_tx_desc(wc
->wr_cqe
);
1777 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1778 isert_print_wc(wc
, "login send");
1779 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1780 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
1783 isert_unmap_tx_desc(tx_desc
, ib_dev
);
1787 isert_send_done(struct ib_cq
*cq
, struct ib_wc
*wc
)
1789 struct isert_conn
*isert_conn
= wc
->qp
->qp_context
;
1790 struct ib_device
*ib_dev
= isert_conn
->cm_id
->device
;
1791 struct iser_tx_desc
*tx_desc
= cqe_to_tx_desc(wc
->wr_cqe
);
1792 struct isert_cmd
*isert_cmd
= tx_desc_to_cmd(tx_desc
);
1794 if (unlikely(wc
->status
!= IB_WC_SUCCESS
)) {
1795 isert_print_wc(wc
, "send");
1796 if (wc
->status
!= IB_WC_WR_FLUSH_ERR
)
1797 iscsit_cause_connection_reinstatement(isert_conn
->conn
, 0);
1798 isert_completion_put(tx_desc
, isert_cmd
, ib_dev
, true);
1802 isert_dbg("Cmd %p\n", isert_cmd
);
1804 switch (isert_cmd
->iscsi_cmd
->i_state
) {
1805 case ISTATE_SEND_TASKMGTRSP
:
1806 case ISTATE_SEND_LOGOUTRSP
:
1807 case ISTATE_SEND_REJECT
:
1808 case ISTATE_SEND_TEXTRSP
:
1809 isert_unmap_tx_desc(tx_desc
, ib_dev
);
1811 INIT_WORK(&isert_cmd
->comp_work
, isert_do_control_comp
);
1812 queue_work(isert_comp_wq
, &isert_cmd
->comp_work
);
1815 isert_cmd
->iscsi_cmd
->i_state
= ISTATE_SENT_STATUS
;
1816 isert_completion_put(tx_desc
, isert_cmd
, ib_dev
, false);
1822 isert_post_response(struct isert_conn
*isert_conn
, struct isert_cmd
*isert_cmd
)
1826 ret
= isert_post_recv(isert_conn
, isert_cmd
->rx_desc
);
1828 isert_err("ib_post_recv failed with %d\n", ret
);
1832 ret
= ib_post_send(isert_conn
->qp
, &isert_cmd
->tx_desc
.send_wr
, NULL
);
1834 isert_err("ib_post_send failed with %d\n", ret
);
1841 isert_put_response(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
)
1843 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1844 struct isert_conn
*isert_conn
= conn
->context
;
1845 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
1846 struct iscsi_scsi_rsp
*hdr
= (struct iscsi_scsi_rsp
*)
1847 &isert_cmd
->tx_desc
.iscsi_header
;
1849 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
1850 iscsit_build_rsp_pdu(cmd
, conn
, true, hdr
);
1851 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
1853 * Attach SENSE DATA payload to iSCSI Response PDU
1855 if (cmd
->se_cmd
.sense_buffer
&&
1856 ((cmd
->se_cmd
.se_cmd_flags
& SCF_TRANSPORT_TASK_SENSE
) ||
1857 (cmd
->se_cmd
.se_cmd_flags
& SCF_EMULATED_TASK_SENSE
))) {
1858 struct isert_device
*device
= isert_conn
->device
;
1859 struct ib_device
*ib_dev
= device
->ib_device
;
1860 struct ib_sge
*tx_dsg
= &isert_cmd
->tx_desc
.tx_sg
[1];
1861 u32 padding
, pdu_len
;
1863 put_unaligned_be16(cmd
->se_cmd
.scsi_sense_length
,
1865 cmd
->se_cmd
.scsi_sense_length
+= sizeof(__be16
);
1867 padding
= -(cmd
->se_cmd
.scsi_sense_length
) & 3;
1868 hton24(hdr
->dlength
, (u32
)cmd
->se_cmd
.scsi_sense_length
);
1869 pdu_len
= cmd
->se_cmd
.scsi_sense_length
+ padding
;
1871 isert_cmd
->pdu_buf_dma
= ib_dma_map_single(ib_dev
,
1872 (void *)cmd
->sense_buffer
, pdu_len
,
1874 if (ib_dma_mapping_error(ib_dev
, isert_cmd
->pdu_buf_dma
))
1877 isert_cmd
->pdu_buf_len
= pdu_len
;
1878 tx_dsg
->addr
= isert_cmd
->pdu_buf_dma
;
1879 tx_dsg
->length
= pdu_len
;
1880 tx_dsg
->lkey
= device
->pd
->local_dma_lkey
;
1881 isert_cmd
->tx_desc
.num_sge
= 2;
1884 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
1886 isert_dbg("Posting SCSI Response\n");
1888 return isert_post_response(isert_conn
, isert_cmd
);
1892 isert_aborted_task(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
)
1894 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1895 struct isert_conn
*isert_conn
= conn
->context
;
1897 spin_lock_bh(&conn
->cmd_lock
);
1898 if (!list_empty(&cmd
->i_conn_node
))
1899 list_del_init(&cmd
->i_conn_node
);
1900 spin_unlock_bh(&conn
->cmd_lock
);
1902 if (cmd
->data_direction
== DMA_TO_DEVICE
)
1903 iscsit_stop_dataout_timer(cmd
);
1904 isert_rdma_rw_ctx_destroy(isert_cmd
, isert_conn
);
1907 static enum target_prot_op
1908 isert_get_sup_prot_ops(struct iscsi_conn
*conn
)
1910 struct isert_conn
*isert_conn
= conn
->context
;
1911 struct isert_device
*device
= isert_conn
->device
;
1913 if (conn
->tpg
->tpg_attrib
.t10_pi
) {
1914 if (device
->pi_capable
) {
1915 isert_info("conn %p PI offload enabled\n", isert_conn
);
1916 isert_conn
->pi_support
= true;
1917 return TARGET_PROT_ALL
;
1921 isert_info("conn %p PI offload disabled\n", isert_conn
);
1922 isert_conn
->pi_support
= false;
1924 return TARGET_PROT_NORMAL
;
1928 isert_put_nopin(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
,
1929 bool nopout_response
)
1931 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1932 struct isert_conn
*isert_conn
= conn
->context
;
1933 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
1935 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
1936 iscsit_build_nopin_rsp(cmd
, conn
, (struct iscsi_nopin
*)
1937 &isert_cmd
->tx_desc
.iscsi_header
,
1939 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
1940 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
1942 isert_dbg("conn %p Posting NOPIN Response\n", isert_conn
);
1944 return isert_post_response(isert_conn
, isert_cmd
);
1948 isert_put_logout_rsp(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
1950 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1951 struct isert_conn
*isert_conn
= conn
->context
;
1952 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
1954 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
1955 iscsit_build_logout_rsp(cmd
, conn
, (struct iscsi_logout_rsp
*)
1956 &isert_cmd
->tx_desc
.iscsi_header
);
1957 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
1958 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
1960 isert_dbg("conn %p Posting Logout Response\n", isert_conn
);
1962 return isert_post_response(isert_conn
, isert_cmd
);
1966 isert_put_tm_rsp(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
1968 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1969 struct isert_conn
*isert_conn
= conn
->context
;
1970 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
1972 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
1973 iscsit_build_task_mgt_rsp(cmd
, conn
, (struct iscsi_tm_rsp
*)
1974 &isert_cmd
->tx_desc
.iscsi_header
);
1975 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
1976 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
1978 isert_dbg("conn %p Posting Task Management Response\n", isert_conn
);
1980 return isert_post_response(isert_conn
, isert_cmd
);
1984 isert_put_reject(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
1986 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
1987 struct isert_conn
*isert_conn
= conn
->context
;
1988 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
1989 struct isert_device
*device
= isert_conn
->device
;
1990 struct ib_device
*ib_dev
= device
->ib_device
;
1991 struct ib_sge
*tx_dsg
= &isert_cmd
->tx_desc
.tx_sg
[1];
1992 struct iscsi_reject
*hdr
=
1993 (struct iscsi_reject
*)&isert_cmd
->tx_desc
.iscsi_header
;
1995 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
1996 iscsit_build_reject(cmd
, conn
, hdr
);
1997 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
1999 hton24(hdr
->dlength
, ISCSI_HDR_LEN
);
2000 isert_cmd
->pdu_buf_dma
= ib_dma_map_single(ib_dev
,
2001 (void *)cmd
->buf_ptr
, ISCSI_HDR_LEN
,
2003 if (ib_dma_mapping_error(ib_dev
, isert_cmd
->pdu_buf_dma
))
2005 isert_cmd
->pdu_buf_len
= ISCSI_HDR_LEN
;
2006 tx_dsg
->addr
= isert_cmd
->pdu_buf_dma
;
2007 tx_dsg
->length
= ISCSI_HDR_LEN
;
2008 tx_dsg
->lkey
= device
->pd
->local_dma_lkey
;
2009 isert_cmd
->tx_desc
.num_sge
= 2;
2011 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
2013 isert_dbg("conn %p Posting Reject\n", isert_conn
);
2015 return isert_post_response(isert_conn
, isert_cmd
);
2019 isert_put_text_rsp(struct iscsi_cmd
*cmd
, struct iscsi_conn
*conn
)
2021 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
2022 struct isert_conn
*isert_conn
= conn
->context
;
2023 struct ib_send_wr
*send_wr
= &isert_cmd
->tx_desc
.send_wr
;
2024 struct iscsi_text_rsp
*hdr
=
2025 (struct iscsi_text_rsp
*)&isert_cmd
->tx_desc
.iscsi_header
;
2029 isert_create_send_desc(isert_conn
, isert_cmd
, &isert_cmd
->tx_desc
);
2030 rc
= iscsit_build_text_rsp(cmd
, conn
, hdr
, ISCSI_INFINIBAND
);
2035 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
2038 struct isert_device
*device
= isert_conn
->device
;
2039 struct ib_device
*ib_dev
= device
->ib_device
;
2040 struct ib_sge
*tx_dsg
= &isert_cmd
->tx_desc
.tx_sg
[1];
2041 void *txt_rsp_buf
= cmd
->buf_ptr
;
2043 isert_cmd
->pdu_buf_dma
= ib_dma_map_single(ib_dev
,
2044 txt_rsp_buf
, txt_rsp_len
, DMA_TO_DEVICE
);
2045 if (ib_dma_mapping_error(ib_dev
, isert_cmd
->pdu_buf_dma
))
2048 isert_cmd
->pdu_buf_len
= txt_rsp_len
;
2049 tx_dsg
->addr
= isert_cmd
->pdu_buf_dma
;
2050 tx_dsg
->length
= txt_rsp_len
;
2051 tx_dsg
->lkey
= device
->pd
->local_dma_lkey
;
2052 isert_cmd
->tx_desc
.num_sge
= 2;
2054 isert_init_send_wr(isert_conn
, isert_cmd
, send_wr
);
2056 isert_dbg("conn %p Text Response\n", isert_conn
);
2058 return isert_post_response(isert_conn
, isert_cmd
);
2062 isert_set_dif_domain(struct se_cmd
*se_cmd
, struct ib_sig_domain
*domain
)
2064 domain
->sig_type
= IB_SIG_TYPE_T10_DIF
;
2065 domain
->sig
.dif
.bg_type
= IB_T10DIF_CRC
;
2066 domain
->sig
.dif
.pi_interval
= se_cmd
->se_dev
->dev_attrib
.block_size
;
2067 domain
->sig
.dif
.ref_tag
= se_cmd
->reftag_seed
;
2069 * At the moment we hard code those, but if in the future
2070 * the target core would like to use it, we will take it
2073 domain
->sig
.dif
.apptag_check_mask
= 0xffff;
2074 domain
->sig
.dif
.app_escape
= true;
2075 domain
->sig
.dif
.ref_escape
= true;
2076 if (se_cmd
->prot_type
== TARGET_DIF_TYPE1_PROT
||
2077 se_cmd
->prot_type
== TARGET_DIF_TYPE2_PROT
)
2078 domain
->sig
.dif
.ref_remap
= true;
2082 isert_set_sig_attrs(struct se_cmd
*se_cmd
, struct ib_sig_attrs
*sig_attrs
)
2084 memset(sig_attrs
, 0, sizeof(*sig_attrs
));
2086 switch (se_cmd
->prot_op
) {
2087 case TARGET_PROT_DIN_INSERT
:
2088 case TARGET_PROT_DOUT_STRIP
:
2089 sig_attrs
->mem
.sig_type
= IB_SIG_TYPE_NONE
;
2090 isert_set_dif_domain(se_cmd
, &sig_attrs
->wire
);
2092 case TARGET_PROT_DOUT_INSERT
:
2093 case TARGET_PROT_DIN_STRIP
:
2094 sig_attrs
->wire
.sig_type
= IB_SIG_TYPE_NONE
;
2095 isert_set_dif_domain(se_cmd
, &sig_attrs
->mem
);
2097 case TARGET_PROT_DIN_PASS
:
2098 case TARGET_PROT_DOUT_PASS
:
2099 isert_set_dif_domain(se_cmd
, &sig_attrs
->wire
);
2100 isert_set_dif_domain(se_cmd
, &sig_attrs
->mem
);
2103 isert_err("Unsupported PI operation %d\n", se_cmd
->prot_op
);
2107 if (se_cmd
->prot_checks
& TARGET_DIF_CHECK_GUARD
)
2108 sig_attrs
->check_mask
|= IB_SIG_CHECK_GUARD
;
2109 if (se_cmd
->prot_checks
& TARGET_DIF_CHECK_APPTAG
)
2110 sig_attrs
->check_mask
|= IB_SIG_CHECK_APPTAG
;
2111 if (se_cmd
->prot_checks
& TARGET_DIF_CHECK_REFTAG
)
2112 sig_attrs
->check_mask
|= IB_SIG_CHECK_REFTAG
;
2118 isert_rdma_rw_ctx_post(struct isert_cmd
*cmd
, struct isert_conn
*conn
,
2119 struct ib_cqe
*cqe
, struct ib_send_wr
*chain_wr
)
2121 struct se_cmd
*se_cmd
= &cmd
->iscsi_cmd
->se_cmd
;
2122 enum dma_data_direction dir
= target_reverse_dma_direction(se_cmd
);
2123 u8 port_num
= conn
->cm_id
->port_num
;
2128 if (cmd
->ctx_init_done
)
2131 if (dir
== DMA_FROM_DEVICE
) {
2132 addr
= cmd
->write_va
;
2133 rkey
= cmd
->write_stag
;
2134 offset
= cmd
->iscsi_cmd
->write_data_done
;
2136 addr
= cmd
->read_va
;
2137 rkey
= cmd
->read_stag
;
2141 if (isert_prot_cmd(conn
, se_cmd
)) {
2142 struct ib_sig_attrs sig_attrs
;
2144 ret
= isert_set_sig_attrs(se_cmd
, &sig_attrs
);
2148 WARN_ON_ONCE(offset
);
2149 ret
= rdma_rw_ctx_signature_init(&cmd
->rw
, conn
->qp
, port_num
,
2150 se_cmd
->t_data_sg
, se_cmd
->t_data_nents
,
2151 se_cmd
->t_prot_sg
, se_cmd
->t_prot_nents
,
2152 &sig_attrs
, addr
, rkey
, dir
);
2154 ret
= rdma_rw_ctx_init(&cmd
->rw
, conn
->qp
, port_num
,
2155 se_cmd
->t_data_sg
, se_cmd
->t_data_nents
,
2156 offset
, addr
, rkey
, dir
);
2160 isert_err("Cmd: %p failed to prepare RDMA res\n", cmd
);
2164 cmd
->ctx_init_done
= true;
2167 ret
= rdma_rw_ctx_post(&cmd
->rw
, conn
->qp
, port_num
, cqe
, chain_wr
);
2169 isert_err("Cmd: %p failed to post RDMA res\n", cmd
);
2174 isert_put_datain(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
)
2176 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
2177 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
2178 struct isert_conn
*isert_conn
= conn
->context
;
2179 struct ib_cqe
*cqe
= NULL
;
2180 struct ib_send_wr
*chain_wr
= NULL
;
2183 isert_dbg("Cmd: %p RDMA_WRITE data_length: %u\n",
2184 isert_cmd
, se_cmd
->data_length
);
2186 if (isert_prot_cmd(isert_conn
, se_cmd
)) {
2187 isert_cmd
->tx_desc
.tx_cqe
.done
= isert_rdma_write_done
;
2188 cqe
= &isert_cmd
->tx_desc
.tx_cqe
;
2191 * Build isert_conn->tx_desc for iSCSI response PDU and attach
2193 isert_create_send_desc(isert_conn
, isert_cmd
,
2194 &isert_cmd
->tx_desc
);
2195 iscsit_build_rsp_pdu(cmd
, conn
, true, (struct iscsi_scsi_rsp
*)
2196 &isert_cmd
->tx_desc
.iscsi_header
);
2197 isert_init_tx_hdrs(isert_conn
, &isert_cmd
->tx_desc
);
2198 isert_init_send_wr(isert_conn
, isert_cmd
,
2199 &isert_cmd
->tx_desc
.send_wr
);
2201 rc
= isert_post_recv(isert_conn
, isert_cmd
->rx_desc
);
2203 isert_err("ib_post_recv failed with %d\n", rc
);
2207 chain_wr
= &isert_cmd
->tx_desc
.send_wr
;
2210 rc
= isert_rdma_rw_ctx_post(isert_cmd
, isert_conn
, cqe
, chain_wr
);
2211 isert_dbg("Cmd: %p posted RDMA_WRITE for iSER Data READ rc: %d\n",
2217 isert_get_dataout(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
, bool recovery
)
2219 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
2222 isert_dbg("Cmd: %p RDMA_READ data_length: %u write_data_done: %u\n",
2223 isert_cmd
, cmd
->se_cmd
.data_length
, cmd
->write_data_done
);
2225 isert_cmd
->tx_desc
.tx_cqe
.done
= isert_rdma_read_done
;
2226 ret
= isert_rdma_rw_ctx_post(isert_cmd
, conn
->context
,
2227 &isert_cmd
->tx_desc
.tx_cqe
, NULL
);
2229 isert_dbg("Cmd: %p posted RDMA_READ memory for ISER Data WRITE rc: %d\n",
2235 isert_immediate_queue(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
, int state
)
2237 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
2242 spin_lock_bh(&conn
->cmd_lock
);
2243 list_del_init(&cmd
->i_conn_node
);
2244 spin_unlock_bh(&conn
->cmd_lock
);
2245 isert_put_cmd(isert_cmd
, true);
2247 case ISTATE_SEND_NOPIN_WANT_RESPONSE
:
2248 ret
= isert_put_nopin(cmd
, conn
, false);
2251 isert_err("Unknown immediate state: 0x%02x\n", state
);
2260 isert_response_queue(struct iscsi_conn
*conn
, struct iscsi_cmd
*cmd
, int state
)
2262 struct isert_conn
*isert_conn
= conn
->context
;
2266 case ISTATE_SEND_LOGOUTRSP
:
2267 ret
= isert_put_logout_rsp(cmd
, conn
);
2269 isert_conn
->logout_posted
= true;
2271 case ISTATE_SEND_NOPIN
:
2272 ret
= isert_put_nopin(cmd
, conn
, true);
2274 case ISTATE_SEND_TASKMGTRSP
:
2275 ret
= isert_put_tm_rsp(cmd
, conn
);
2277 case ISTATE_SEND_REJECT
:
2278 ret
= isert_put_reject(cmd
, conn
);
2280 case ISTATE_SEND_TEXTRSP
:
2281 ret
= isert_put_text_rsp(cmd
, conn
);
2283 case ISTATE_SEND_STATUS
:
2285 * Special case for sending non GOOD SCSI status from TX thread
2286 * context during pre se_cmd excecution failure.
2288 ret
= isert_put_response(conn
, cmd
);
2291 isert_err("Unknown response state: 0x%02x\n", state
);
2300 isert_setup_id(struct isert_np
*isert_np
)
2302 struct iscsi_np
*np
= isert_np
->np
;
2303 struct rdma_cm_id
*id
;
2304 struct sockaddr
*sa
;
2307 sa
= (struct sockaddr
*)&np
->np_sockaddr
;
2308 isert_dbg("ksockaddr: %p, sa: %p\n", &np
->np_sockaddr
, sa
);
2310 id
= rdma_create_id(&init_net
, isert_cma_handler
, isert_np
,
2311 RDMA_PS_TCP
, IB_QPT_RC
);
2313 isert_err("rdma_create_id() failed: %ld\n", PTR_ERR(id
));
2317 isert_dbg("id %p context %p\n", id
, id
->context
);
2319 ret
= rdma_bind_addr(id
, sa
);
2321 isert_err("rdma_bind_addr() failed: %d\n", ret
);
2325 ret
= rdma_listen(id
, 0);
2327 isert_err("rdma_listen() failed: %d\n", ret
);
2333 rdma_destroy_id(id
);
2335 return ERR_PTR(ret
);
2339 isert_setup_np(struct iscsi_np
*np
,
2340 struct sockaddr_storage
*ksockaddr
)
2342 struct isert_np
*isert_np
;
2343 struct rdma_cm_id
*isert_lid
;
2346 isert_np
= kzalloc(sizeof(struct isert_np
), GFP_KERNEL
);
2350 sema_init(&isert_np
->sem
, 0);
2351 mutex_init(&isert_np
->mutex
);
2352 INIT_LIST_HEAD(&isert_np
->accepted
);
2353 INIT_LIST_HEAD(&isert_np
->pending
);
2357 * Setup the np->np_sockaddr from the passed sockaddr setup
2358 * in iscsi_target_configfs.c code..
2360 memcpy(&np
->np_sockaddr
, ksockaddr
,
2361 sizeof(struct sockaddr_storage
));
2363 isert_lid
= isert_setup_id(isert_np
);
2364 if (IS_ERR(isert_lid
)) {
2365 ret
= PTR_ERR(isert_lid
);
2369 isert_np
->cm_id
= isert_lid
;
2370 np
->np_context
= isert_np
;
2381 isert_rdma_accept(struct isert_conn
*isert_conn
)
2383 struct rdma_cm_id
*cm_id
= isert_conn
->cm_id
;
2384 struct rdma_conn_param cp
;
2386 struct iser_cm_hdr rsp_hdr
;
2388 memset(&cp
, 0, sizeof(struct rdma_conn_param
));
2389 cp
.initiator_depth
= isert_conn
->initiator_depth
;
2391 cp
.rnr_retry_count
= 7;
2393 memset(&rsp_hdr
, 0, sizeof(rsp_hdr
));
2394 rsp_hdr
.flags
= ISERT_ZBVA_NOT_USED
;
2395 if (!isert_conn
->snd_w_inv
)
2396 rsp_hdr
.flags
= rsp_hdr
.flags
| ISERT_SEND_W_INV_NOT_USED
;
2397 cp
.private_data
= (void *)&rsp_hdr
;
2398 cp
.private_data_len
= sizeof(rsp_hdr
);
2400 ret
= rdma_accept(cm_id
, &cp
);
2402 isert_err("rdma_accept() failed with: %d\n", ret
);
2410 isert_get_login_rx(struct iscsi_conn
*conn
, struct iscsi_login
*login
)
2412 struct isert_conn
*isert_conn
= conn
->context
;
2415 isert_info("before login_req comp conn: %p\n", isert_conn
);
2416 ret
= wait_for_completion_interruptible(&isert_conn
->login_req_comp
);
2418 isert_err("isert_conn %p interrupted before got login req\n",
2422 reinit_completion(&isert_conn
->login_req_comp
);
2425 * For login requests after the first PDU, isert_rx_login_req() will
2426 * kick schedule_delayed_work(&conn->login_work) as the packet is
2427 * received, which turns this callback from iscsi_target_do_login_rx()
2430 if (!login
->first_request
)
2433 isert_rx_login_req(isert_conn
);
2435 isert_info("before login_comp conn: %p\n", conn
);
2436 ret
= wait_for_completion_interruptible(&isert_conn
->login_comp
);
2440 isert_info("processing login->req: %p\n", login
->req
);
2446 isert_set_conn_info(struct iscsi_np
*np
, struct iscsi_conn
*conn
,
2447 struct isert_conn
*isert_conn
)
2449 struct rdma_cm_id
*cm_id
= isert_conn
->cm_id
;
2450 struct rdma_route
*cm_route
= &cm_id
->route
;
2452 conn
->login_family
= np
->np_sockaddr
.ss_family
;
2454 conn
->login_sockaddr
= cm_route
->addr
.dst_addr
;
2455 conn
->local_sockaddr
= cm_route
->addr
.src_addr
;
2459 isert_accept_np(struct iscsi_np
*np
, struct iscsi_conn
*conn
)
2461 struct isert_np
*isert_np
= np
->np_context
;
2462 struct isert_conn
*isert_conn
;
2466 ret
= down_interruptible(&isert_np
->sem
);
2470 spin_lock_bh(&np
->np_thread_lock
);
2471 if (np
->np_thread_state
>= ISCSI_NP_THREAD_RESET
) {
2472 spin_unlock_bh(&np
->np_thread_lock
);
2473 isert_dbg("np_thread_state %d\n",
2474 np
->np_thread_state
);
2476 * No point in stalling here when np_thread
2477 * is in state RESET/SHUTDOWN/EXIT - bail
2481 spin_unlock_bh(&np
->np_thread_lock
);
2483 mutex_lock(&isert_np
->mutex
);
2484 if (list_empty(&isert_np
->pending
)) {
2485 mutex_unlock(&isert_np
->mutex
);
2488 isert_conn
= list_first_entry(&isert_np
->pending
,
2489 struct isert_conn
, node
);
2490 list_del_init(&isert_conn
->node
);
2491 mutex_unlock(&isert_np
->mutex
);
2493 conn
->context
= isert_conn
;
2494 isert_conn
->conn
= conn
;
2495 isert_conn
->state
= ISER_CONN_BOUND
;
2497 isert_set_conn_info(np
, conn
, isert_conn
);
2499 isert_dbg("Processing isert_conn: %p\n", isert_conn
);
2505 isert_free_np(struct iscsi_np
*np
)
2507 struct isert_np
*isert_np
= np
->np_context
;
2508 struct isert_conn
*isert_conn
, *n
;
2510 if (isert_np
->cm_id
)
2511 rdma_destroy_id(isert_np
->cm_id
);
2514 * FIXME: At this point we don't have a good way to insure
2515 * that at this point we don't have hanging connections that
2516 * completed RDMA establishment but didn't start iscsi login
2517 * process. So work-around this by cleaning up what ever piled
2518 * up in accepted and pending lists.
2520 mutex_lock(&isert_np
->mutex
);
2521 if (!list_empty(&isert_np
->pending
)) {
2522 isert_info("Still have isert pending connections\n");
2523 list_for_each_entry_safe(isert_conn
, n
,
2526 isert_info("cleaning isert_conn %p state (%d)\n",
2527 isert_conn
, isert_conn
->state
);
2528 isert_connect_release(isert_conn
);
2532 if (!list_empty(&isert_np
->accepted
)) {
2533 isert_info("Still have isert accepted connections\n");
2534 list_for_each_entry_safe(isert_conn
, n
,
2535 &isert_np
->accepted
,
2537 isert_info("cleaning isert_conn %p state (%d)\n",
2538 isert_conn
, isert_conn
->state
);
2539 isert_connect_release(isert_conn
);
2542 mutex_unlock(&isert_np
->mutex
);
2544 np
->np_context
= NULL
;
2548 static void isert_release_work(struct work_struct
*work
)
2550 struct isert_conn
*isert_conn
= container_of(work
,
2554 isert_info("Starting release conn %p\n", isert_conn
);
2556 mutex_lock(&isert_conn
->mutex
);
2557 isert_conn
->state
= ISER_CONN_DOWN
;
2558 mutex_unlock(&isert_conn
->mutex
);
2560 isert_info("Destroying conn %p\n", isert_conn
);
2561 isert_put_conn(isert_conn
);
2565 isert_wait4logout(struct isert_conn
*isert_conn
)
2567 struct iscsi_conn
*conn
= isert_conn
->conn
;
2569 isert_info("conn %p\n", isert_conn
);
2571 if (isert_conn
->logout_posted
) {
2572 isert_info("conn %p wait for conn_logout_comp\n", isert_conn
);
2573 wait_for_completion_timeout(&conn
->conn_logout_comp
,
2574 SECONDS_FOR_LOGOUT_COMP
* HZ
);
2579 * isert_put_unsol_pending_cmds() - Drop commands waiting for
2580 * unsolicitate dataout
2581 * @conn: iscsi connection
2583 * We might still have commands that are waiting for unsolicited
2584 * dataouts messages. We must put the extra reference on those
2585 * before blocking on the target_wait_for_session_cmds
2588 isert_put_unsol_pending_cmds(struct iscsi_conn
*conn
)
2590 struct iscsi_cmd
*cmd
, *tmp
;
2591 static LIST_HEAD(drop_cmd_list
);
2593 spin_lock_bh(&conn
->cmd_lock
);
2594 list_for_each_entry_safe(cmd
, tmp
, &conn
->conn_cmd_list
, i_conn_node
) {
2595 if ((cmd
->cmd_flags
& ICF_NON_IMMEDIATE_UNSOLICITED_DATA
) &&
2596 (cmd
->write_data_done
< conn
->sess
->sess_ops
->FirstBurstLength
) &&
2597 (cmd
->write_data_done
< cmd
->se_cmd
.data_length
))
2598 list_move_tail(&cmd
->i_conn_node
, &drop_cmd_list
);
2600 spin_unlock_bh(&conn
->cmd_lock
);
2602 list_for_each_entry_safe(cmd
, tmp
, &drop_cmd_list
, i_conn_node
) {
2603 list_del_init(&cmd
->i_conn_node
);
2604 if (cmd
->i_state
!= ISTATE_REMOVE
) {
2605 struct isert_cmd
*isert_cmd
= iscsit_priv_cmd(cmd
);
2607 isert_info("conn %p dropping cmd %p\n", conn
, cmd
);
2608 isert_put_cmd(isert_cmd
, true);
2613 static void isert_wait_conn(struct iscsi_conn
*conn
)
2615 struct isert_conn
*isert_conn
= conn
->context
;
2617 isert_info("Starting conn %p\n", isert_conn
);
2619 mutex_lock(&isert_conn
->mutex
);
2620 isert_conn_terminate(isert_conn
);
2621 mutex_unlock(&isert_conn
->mutex
);
2623 ib_drain_qp(isert_conn
->qp
);
2624 isert_put_unsol_pending_cmds(conn
);
2625 isert_wait4logout(isert_conn
);
2627 queue_work(isert_release_wq
, &isert_conn
->release_work
);
2630 static void isert_free_conn(struct iscsi_conn
*conn
)
2632 struct isert_conn
*isert_conn
= conn
->context
;
2634 ib_drain_qp(isert_conn
->qp
);
2635 isert_put_conn(isert_conn
);
2638 static void isert_get_rx_pdu(struct iscsi_conn
*conn
)
2640 struct completion comp
;
2642 init_completion(&comp
);
2644 wait_for_completion_interruptible(&comp
);
2647 static struct iscsit_transport iser_target_transport
= {
2649 .transport_type
= ISCSI_INFINIBAND
,
2650 .rdma_shutdown
= true,
2651 .priv_size
= sizeof(struct isert_cmd
),
2652 .owner
= THIS_MODULE
,
2653 .iscsit_setup_np
= isert_setup_np
,
2654 .iscsit_accept_np
= isert_accept_np
,
2655 .iscsit_free_np
= isert_free_np
,
2656 .iscsit_wait_conn
= isert_wait_conn
,
2657 .iscsit_free_conn
= isert_free_conn
,
2658 .iscsit_get_login_rx
= isert_get_login_rx
,
2659 .iscsit_put_login_tx
= isert_put_login_tx
,
2660 .iscsit_immediate_queue
= isert_immediate_queue
,
2661 .iscsit_response_queue
= isert_response_queue
,
2662 .iscsit_get_dataout
= isert_get_dataout
,
2663 .iscsit_queue_data_in
= isert_put_datain
,
2664 .iscsit_queue_status
= isert_put_response
,
2665 .iscsit_aborted_task
= isert_aborted_task
,
2666 .iscsit_get_rx_pdu
= isert_get_rx_pdu
,
2667 .iscsit_get_sup_prot_ops
= isert_get_sup_prot_ops
,
2670 static int __init
isert_init(void)
2674 isert_comp_wq
= alloc_workqueue("isert_comp_wq",
2675 WQ_UNBOUND
| WQ_HIGHPRI
, 0);
2676 if (!isert_comp_wq
) {
2677 isert_err("Unable to allocate isert_comp_wq\n");
2681 isert_release_wq
= alloc_workqueue("isert_release_wq", WQ_UNBOUND
,
2682 WQ_UNBOUND_MAX_ACTIVE
);
2683 if (!isert_release_wq
) {
2684 isert_err("Unable to allocate isert_release_wq\n");
2686 goto destroy_comp_wq
;
2689 iscsit_register_transport(&iser_target_transport
);
2690 isert_info("iSER_TARGET[0] - Loaded iser_target_transport\n");
2695 destroy_workqueue(isert_comp_wq
);
2700 static void __exit
isert_exit(void)
2702 flush_scheduled_work();
2703 destroy_workqueue(isert_release_wq
);
2704 destroy_workqueue(isert_comp_wq
);
2705 iscsit_unregister_transport(&iser_target_transport
);
2706 isert_info("iSER_TARGET[0] - Released iser_target_transport\n");
2709 MODULE_DESCRIPTION("iSER-Target for mainline target infrastructure");
2710 MODULE_AUTHOR("nab@Linux-iSCSI.org");
2711 MODULE_LICENSE("GPL");
2713 module_init(isert_init
);
2714 module_exit(isert_exit
);