blob: 3bfec4bbda5263ee636171c79f12f8548615823e [file] [log] [blame]
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001/*
2 * Copyright (c) 2004, 2005, 2006 Voltaire, Inc. All rights reserved.
3 * Copyright (c) 2005, 2006 Cisco Systems. All rights reserved.
Or Gerlitz3ee07d22014-04-01 16:28:41 +03004 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03005 *
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.
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030033 */
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030034#include <linux/kernel.h>
35#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030037#include <linux/delay.h>
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030038
39#include "iscsi_iser.h"
40
41#define ISCSI_ISER_MAX_CONN 8
Or Gerlitz78ad0a32010-02-08 13:19:21 +000042#define ISER_MAX_RX_CQ_LEN (ISER_QP_MAX_RECV_DTOS * ISCSI_ISER_MAX_CONN)
43#define ISER_MAX_TX_CQ_LEN (ISER_QP_MAX_REQ_DTOS * ISCSI_ISER_MAX_CONN)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030044
45static void iser_cq_tasklet_fn(unsigned long data);
46static void iser_cq_callback(struct ib_cq *cq, void *cq_context);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030047
48static void iser_cq_event_callback(struct ib_event *cause, void *context)
49{
50 iser_err("got cq event %d \n", cause->event);
51}
52
53static void iser_qp_event_callback(struct ib_event *cause, void *context)
54{
55 iser_err("got qp event %d\n",cause->event);
56}
57
Or Gerlitz2110f9b2010-05-05 17:30:10 +030058static void iser_event_handler(struct ib_event_handler *handler,
59 struct ib_event *event)
60{
61 iser_err("async event %d on device %s port %d\n", event->event,
62 event->device->name, event->element.port_num);
63}
64
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030065/**
66 * iser_create_device_ib_res - creates Protection Domain (PD), Completion
67 * Queue (CQ), DMA Memory Region (DMA MR) with the device associated with
68 * the adapator.
69 *
70 * returns 0 on success, -1 on failure
71 */
72static int iser_create_device_ib_res(struct iser_device *device)
73{
Alex Tabachnik5a33a662012-09-23 15:17:44 +000074 struct iser_cq_desc *cq_desc;
Sagi Grimberg65198d62014-03-05 19:43:42 +020075 struct ib_device_attr *dev_attr = &device->dev_attr;
Roi Dayanc33b15f2014-09-02 17:08:41 +030076 int ret, i;
Alex Tabachnik5a33a662012-09-23 15:17:44 +000077
Sagi Grimberg65198d62014-03-05 19:43:42 +020078 ret = ib_query_device(device->ib_device, dev_attr);
79 if (ret) {
Sagi Grimberg55878562013-07-28 12:35:42 +030080 pr_warn("Query device failed for %s\n", device->ib_device->name);
Sagi Grimberg65198d62014-03-05 19:43:42 +020081 return ret;
Sagi Grimberg55878562013-07-28 12:35:42 +030082 }
83
84 /* Assign function handles - based on FMR support */
85 if (device->ib_device->alloc_fmr && device->ib_device->dealloc_fmr &&
86 device->ib_device->map_phys_fmr && device->ib_device->unmap_fmr) {
87 iser_info("FMR supported, using FMR for registration\n");
88 device->iser_alloc_rdma_reg_res = iser_create_fmr_pool;
89 device->iser_free_rdma_reg_res = iser_free_fmr_pool;
90 device->iser_reg_rdma_mem = iser_reg_rdma_mem_fmr;
91 device->iser_unreg_rdma_mem = iser_unreg_mem_fmr;
92 } else
93 if (dev_attr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) {
Sagi Grimberg7306b8f2014-03-05 19:43:39 +020094 iser_info("FastReg supported, using FastReg for registration\n");
95 device->iser_alloc_rdma_reg_res = iser_create_fastreg_pool;
96 device->iser_free_rdma_reg_res = iser_free_fastreg_pool;
97 device->iser_reg_rdma_mem = iser_reg_rdma_mem_fastreg;
98 device->iser_unreg_rdma_mem = iser_unreg_mem_fastreg;
Sagi Grimberg55878562013-07-28 12:35:42 +030099 } else {
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200100 iser_err("IB device does not support FMRs nor FastRegs, can't register memory\n");
Sagi Grimberg65198d62014-03-05 19:43:42 +0200101 return -1;
Sagi Grimberg55878562013-07-28 12:35:42 +0300102 }
Sagi Grimbergb4e155f2013-07-28 12:35:39 +0300103
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000104 device->cqs_used = min(ISER_MAX_CQ, device->ib_device->num_comp_vectors);
Roi Dayan4f363882013-05-01 13:25:25 +0000105 iser_info("using %d CQs, device %s supports %d vectors\n",
106 device->cqs_used, device->ib_device->name,
107 device->ib_device->num_comp_vectors);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000108
109 device->cq_desc = kmalloc(sizeof(struct iser_cq_desc) * device->cqs_used,
110 GFP_KERNEL);
111 if (device->cq_desc == NULL)
112 goto cq_desc_err;
113 cq_desc = device->cq_desc;
114
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300115 device->pd = ib_alloc_pd(device->ib_device);
116 if (IS_ERR(device->pd))
117 goto pd_err;
118
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000119 for (i = 0; i < device->cqs_used; i++) {
120 cq_desc[i].device = device;
121 cq_desc[i].cq_index = i;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300122
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000123 device->rx_cq[i] = ib_create_cq(device->ib_device,
124 iser_cq_callback,
125 iser_cq_event_callback,
126 (void *)&cq_desc[i],
127 ISER_MAX_RX_CQ_LEN, i);
Roi Dayanc33b15f2014-09-02 17:08:41 +0300128 if (IS_ERR(device->rx_cq[i])) {
129 device->rx_cq[i] = NULL;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000130 goto cq_err;
Roi Dayanc33b15f2014-09-02 17:08:41 +0300131 }
Or Gerlitz78ad0a32010-02-08 13:19:21 +0000132
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000133 device->tx_cq[i] = ib_create_cq(device->ib_device,
134 NULL, iser_cq_event_callback,
135 (void *)&cq_desc[i],
136 ISER_MAX_TX_CQ_LEN, i);
Or Gerlitz78ad0a32010-02-08 13:19:21 +0000137
Roi Dayanc33b15f2014-09-02 17:08:41 +0300138 if (IS_ERR(device->tx_cq[i])) {
139 device->tx_cq[i] = NULL;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000140 goto cq_err;
Roi Dayanc33b15f2014-09-02 17:08:41 +0300141 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300142
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000143 if (ib_req_notify_cq(device->rx_cq[i], IB_CQ_NEXT_COMP))
144 goto cq_err;
145
146 tasklet_init(&device->cq_tasklet[i],
147 iser_cq_tasklet_fn,
148 (unsigned long)&cq_desc[i]);
149 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300150
Erez Zilberd8111022006-09-11 12:26:33 +0300151 device->mr = ib_get_dma_mr(device->pd, IB_ACCESS_LOCAL_WRITE |
152 IB_ACCESS_REMOTE_WRITE |
153 IB_ACCESS_REMOTE_READ);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300154 if (IS_ERR(device->mr))
155 goto dma_mr_err;
156
Or Gerlitz2110f9b2010-05-05 17:30:10 +0300157 INIT_IB_EVENT_HANDLER(&device->event_handler, device->ib_device,
158 iser_event_handler);
159 if (ib_register_event_handler(&device->event_handler))
160 goto handler_err;
161
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300162 return 0;
163
Or Gerlitz2110f9b2010-05-05 17:30:10 +0300164handler_err:
165 ib_dereg_mr(device->mr);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300166dma_mr_err:
Roi Dayanc33b15f2014-09-02 17:08:41 +0300167 for (i = 0; i < device->cqs_used; i++)
168 tasklet_kill(&device->cq_tasklet[i]);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000169cq_err:
Roi Dayanc33b15f2014-09-02 17:08:41 +0300170 for (i = 0; i < device->cqs_used; i++) {
171 if (device->tx_cq[i])
172 ib_destroy_cq(device->tx_cq[i]);
173 if (device->rx_cq[i])
174 ib_destroy_cq(device->rx_cq[i]);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000175 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300176 ib_dealloc_pd(device->pd);
177pd_err:
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000178 kfree(device->cq_desc);
179cq_desc_err:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300180 iser_err("failed to allocate an IB resource\n");
181 return -1;
182}
183
184/**
Oliver Pinter38dc7322008-01-25 14:15:32 -0800185 * iser_free_device_ib_res - destroy/dealloc/dereg the DMA MR,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300186 * CQ and PD created with the device associated with the adapator.
187 */
188static void iser_free_device_ib_res(struct iser_device *device)
189{
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000190 int i;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300191 BUG_ON(device->mr == NULL);
192
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000193 for (i = 0; i < device->cqs_used; i++) {
194 tasklet_kill(&device->cq_tasklet[i]);
195 (void)ib_destroy_cq(device->tx_cq[i]);
196 (void)ib_destroy_cq(device->rx_cq[i]);
197 device->tx_cq[i] = NULL;
198 device->rx_cq[i] = NULL;
199 }
200
Or Gerlitz2110f9b2010-05-05 17:30:10 +0300201 (void)ib_unregister_event_handler(&device->event_handler);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300202 (void)ib_dereg_mr(device->mr);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300203 (void)ib_dealloc_pd(device->pd);
204
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000205 kfree(device->cq_desc);
206
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300207 device->mr = NULL;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300208 device->pd = NULL;
209}
210
211/**
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300212 * iser_create_fmr_pool - Creates FMR pool and page_vector
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300213 *
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300214 * returns 0 on success, or errno code on failure
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300215 */
Shlomo Pongratzb7f04512013-07-28 12:35:38 +0300216int iser_create_fmr_pool(struct iser_conn *ib_conn, unsigned cmds_max)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300217{
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300218 struct iser_device *device = ib_conn->device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300219 struct ib_fmr_pool_param params;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300220 int ret = -ENOMEM;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000221
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200222 ib_conn->fmr.page_vec = kmalloc(sizeof(*ib_conn->fmr.page_vec) +
223 (sizeof(u64)*(ISCSI_ISER_SG_TABLESIZE + 1)),
224 GFP_KERNEL);
225 if (!ib_conn->fmr.page_vec)
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300226 return ret;
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300227
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200228 ib_conn->fmr.page_vec->pages = (u64 *)(ib_conn->fmr.page_vec + 1);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300229
Erez Zilber8dfa0872006-09-11 12:22:30 +0300230 params.page_shift = SHIFT_4K;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300231 /* when the first/last SG element are not start/end *
232 * page aligned, the map whould be of N+1 pages */
233 params.max_pages_per_fmr = ISCSI_ISER_SG_TABLESIZE + 1;
234 /* make the pool size twice the max number of SCSI commands *
235 * the ML is expected to queue, watermark for unmap at 50% */
Shlomo Pongratzb7f04512013-07-28 12:35:38 +0300236 params.pool_size = cmds_max * 2;
237 params.dirty_watermark = cmds_max;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300238 params.cache = 0;
239 params.flush_function = NULL;
240 params.access = (IB_ACCESS_LOCAL_WRITE |
241 IB_ACCESS_REMOTE_WRITE |
242 IB_ACCESS_REMOTE_READ);
243
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200244 ib_conn->fmr.pool = ib_create_fmr_pool(device->pd, &params);
245 if (!IS_ERR(ib_conn->fmr.pool))
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300246 return 0;
247
248 /* no FMR => no need for page_vec */
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200249 kfree(ib_conn->fmr.page_vec);
250 ib_conn->fmr.page_vec = NULL;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300251
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200252 ret = PTR_ERR(ib_conn->fmr.pool);
253 ib_conn->fmr.pool = NULL;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300254 if (ret != -ENOSYS) {
255 iser_err("FMR allocation failed, err %d\n", ret);
256 return ret;
257 } else {
Or Gerlitz5525d212013-02-21 14:50:10 +0000258 iser_warn("FMRs are not supported, using unaligned mode\n");
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300259 return 0;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300260 }
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300261}
262
263/**
264 * iser_free_fmr_pool - releases the FMR pool and page vec
265 */
266void iser_free_fmr_pool(struct iser_conn *ib_conn)
267{
268 iser_info("freeing conn %p fmr pool %p\n",
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200269 ib_conn, ib_conn->fmr.pool);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300270
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200271 if (ib_conn->fmr.pool != NULL)
272 ib_destroy_fmr_pool(ib_conn->fmr.pool);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300273
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200274 ib_conn->fmr.pool = NULL;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300275
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200276 kfree(ib_conn->fmr.page_vec);
277 ib_conn->fmr.page_vec = NULL;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300278}
279
Sagi Grimberg310b3472014-03-05 19:43:41 +0200280static int
281iser_create_fastreg_desc(struct ib_device *ib_device, struct ib_pd *pd,
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200282 bool pi_enable, struct fast_reg_descriptor *desc)
Sagi Grimberg310b3472014-03-05 19:43:41 +0200283{
284 int ret;
285
286 desc->data_frpl = ib_alloc_fast_reg_page_list(ib_device,
287 ISCSI_ISER_SG_TABLESIZE + 1);
288 if (IS_ERR(desc->data_frpl)) {
289 ret = PTR_ERR(desc->data_frpl);
290 iser_err("Failed to allocate ib_fast_reg_page_list err=%d\n",
291 ret);
292 return PTR_ERR(desc->data_frpl);
293 }
294
295 desc->data_mr = ib_alloc_fast_reg_mr(pd, ISCSI_ISER_SG_TABLESIZE + 1);
296 if (IS_ERR(desc->data_mr)) {
297 ret = PTR_ERR(desc->data_mr);
298 iser_err("Failed to allocate ib_fast_reg_mr err=%d\n", ret);
299 goto fast_reg_mr_failure;
300 }
Sagi Grimberg73bc06b2014-03-05 19:43:43 +0200301 desc->reg_indicators |= ISER_DATA_KEY_VALID;
Sagi Grimberg310b3472014-03-05 19:43:41 +0200302
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200303 if (pi_enable) {
304 struct ib_mr_init_attr mr_init_attr = {0};
305 struct iser_pi_context *pi_ctx = NULL;
Sagi Grimberg310b3472014-03-05 19:43:41 +0200306
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200307 desc->pi_ctx = kzalloc(sizeof(*desc->pi_ctx), GFP_KERNEL);
308 if (!desc->pi_ctx) {
309 iser_err("Failed to allocate pi context\n");
310 ret = -ENOMEM;
311 goto pi_ctx_alloc_failure;
312 }
313 pi_ctx = desc->pi_ctx;
314
315 pi_ctx->prot_frpl = ib_alloc_fast_reg_page_list(ib_device,
316 ISCSI_ISER_SG_TABLESIZE);
317 if (IS_ERR(pi_ctx->prot_frpl)) {
318 ret = PTR_ERR(pi_ctx->prot_frpl);
319 iser_err("Failed to allocate prot frpl ret=%d\n",
320 ret);
321 goto prot_frpl_failure;
322 }
323
324 pi_ctx->prot_mr = ib_alloc_fast_reg_mr(pd,
325 ISCSI_ISER_SG_TABLESIZE + 1);
326 if (IS_ERR(pi_ctx->prot_mr)) {
327 ret = PTR_ERR(pi_ctx->prot_mr);
328 iser_err("Failed to allocate prot frmr ret=%d\n",
329 ret);
330 goto prot_mr_failure;
331 }
332 desc->reg_indicators |= ISER_PROT_KEY_VALID;
333
334 mr_init_attr.max_reg_descriptors = 2;
335 mr_init_attr.flags |= IB_MR_SIGNATURE_EN;
336 pi_ctx->sig_mr = ib_create_mr(pd, &mr_init_attr);
337 if (IS_ERR(pi_ctx->sig_mr)) {
338 ret = PTR_ERR(pi_ctx->sig_mr);
339 iser_err("Failed to allocate signature enabled mr err=%d\n",
340 ret);
341 goto sig_mr_failure;
342 }
343 desc->reg_indicators |= ISER_SIG_KEY_VALID;
344 }
345 desc->reg_indicators &= ~ISER_FASTREG_PROTECTED;
346
Or Gerlitz4f9208a2014-04-01 16:28:40 +0300347 iser_dbg("Create fr_desc %p page_list %p\n",
348 desc, desc->data_frpl->page_list);
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200349
350 return 0;
351sig_mr_failure:
352 ib_dereg_mr(desc->pi_ctx->prot_mr);
353prot_mr_failure:
354 ib_free_fast_reg_page_list(desc->pi_ctx->prot_frpl);
355prot_frpl_failure:
356 kfree(desc->pi_ctx);
357pi_ctx_alloc_failure:
358 ib_dereg_mr(desc->data_mr);
Sagi Grimberg310b3472014-03-05 19:43:41 +0200359fast_reg_mr_failure:
360 ib_free_fast_reg_page_list(desc->data_frpl);
361
362 return ret;
363}
364
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300365/**
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200366 * iser_create_fastreg_pool - Creates pool of fast_reg descriptors
Sagi Grimberg55878562013-07-28 12:35:42 +0300367 * for fast registration work requests.
368 * returns 0 on success, or errno code on failure
369 */
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200370int iser_create_fastreg_pool(struct iser_conn *ib_conn, unsigned cmds_max)
Sagi Grimberg55878562013-07-28 12:35:42 +0300371{
372 struct iser_device *device = ib_conn->device;
373 struct fast_reg_descriptor *desc;
374 int i, ret;
375
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200376 INIT_LIST_HEAD(&ib_conn->fastreg.pool);
377 ib_conn->fastreg.pool_size = 0;
Sagi Grimberg55878562013-07-28 12:35:42 +0300378 for (i = 0; i < cmds_max; i++) {
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200379 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
Sagi Grimberg55878562013-07-28 12:35:42 +0300380 if (!desc) {
381 iser_err("Failed to allocate a new fast_reg descriptor\n");
382 ret = -ENOMEM;
383 goto err;
384 }
385
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200386 ret = iser_create_fastreg_desc(device->ib_device, device->pd,
387 ib_conn->pi_support, desc);
Sagi Grimberg310b3472014-03-05 19:43:41 +0200388 if (ret) {
389 iser_err("Failed to create fastreg descriptor err=%d\n",
390 ret);
391 kfree(desc);
392 goto err;
Sagi Grimberg55878562013-07-28 12:35:42 +0300393 }
394
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200395 list_add_tail(&desc->list, &ib_conn->fastreg.pool);
396 ib_conn->fastreg.pool_size++;
Sagi Grimberg55878562013-07-28 12:35:42 +0300397 }
398
399 return 0;
Roi Dayan27ae2d12013-08-19 16:41:51 +0300400
Sagi Grimberg55878562013-07-28 12:35:42 +0300401err:
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200402 iser_free_fastreg_pool(ib_conn);
Sagi Grimberg55878562013-07-28 12:35:42 +0300403 return ret;
404}
405
406/**
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200407 * iser_free_fastreg_pool - releases the pool of fast_reg descriptors
Sagi Grimberg55878562013-07-28 12:35:42 +0300408 */
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200409void iser_free_fastreg_pool(struct iser_conn *ib_conn)
Sagi Grimberg55878562013-07-28 12:35:42 +0300410{
411 struct fast_reg_descriptor *desc, *tmp;
412 int i = 0;
413
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200414 if (list_empty(&ib_conn->fastreg.pool))
Sagi Grimberg55878562013-07-28 12:35:42 +0300415 return;
416
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200417 iser_info("freeing conn %p fr pool\n", ib_conn);
Sagi Grimberg55878562013-07-28 12:35:42 +0300418
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200419 list_for_each_entry_safe(desc, tmp, &ib_conn->fastreg.pool, list) {
Sagi Grimberg55878562013-07-28 12:35:42 +0300420 list_del(&desc->list);
421 ib_free_fast_reg_page_list(desc->data_frpl);
422 ib_dereg_mr(desc->data_mr);
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200423 if (desc->pi_ctx) {
424 ib_free_fast_reg_page_list(desc->pi_ctx->prot_frpl);
425 ib_dereg_mr(desc->pi_ctx->prot_mr);
426 ib_destroy_mr(desc->pi_ctx->sig_mr);
427 kfree(desc->pi_ctx);
428 }
Sagi Grimberg55878562013-07-28 12:35:42 +0300429 kfree(desc);
430 ++i;
431 }
432
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200433 if (i < ib_conn->fastreg.pool_size)
Sagi Grimberg55878562013-07-28 12:35:42 +0300434 iser_warn("pool still has %d regions registered\n",
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200435 ib_conn->fastreg.pool_size - i);
Sagi Grimberg55878562013-07-28 12:35:42 +0300436}
437
438/**
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300439 * iser_create_ib_conn_res - Queue-Pair (QP)
440 *
441 * returns 0 on success, -1 on failure
442 */
443static int iser_create_ib_conn_res(struct iser_conn *ib_conn)
444{
445 struct iser_device *device;
446 struct ib_qp_init_attr init_attr;
447 int ret = -ENOMEM;
448 int index, min_index = 0;
449
450 BUG_ON(ib_conn->device == NULL);
451
452 device = ib_conn->device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300453
454 memset(&init_attr, 0, sizeof init_attr);
455
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000456 mutex_lock(&ig.connlist_mutex);
457 /* select the CQ with the minimal number of usages */
458 for (index = 0; index < device->cqs_used; index++)
459 if (device->cq_active_qps[index] <
460 device->cq_active_qps[min_index])
461 min_index = index;
462 device->cq_active_qps[min_index]++;
463 mutex_unlock(&ig.connlist_mutex);
Roi Dayan4f363882013-05-01 13:25:25 +0000464 iser_info("cq index %d used for ib_conn %p\n", min_index, ib_conn);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000465
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300466 init_attr.event_handler = iser_qp_event_callback;
467 init_attr.qp_context = (void *)ib_conn;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000468 init_attr.send_cq = device->tx_cq[min_index];
469 init_attr.recv_cq = device->rx_cq[min_index];
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300470 init_attr.cap.max_recv_wr = ISER_QP_MAX_RECV_DTOS;
Or Gerlitzf19624a2010-02-08 13:19:56 +0000471 init_attr.cap.max_send_sge = 2;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000472 init_attr.cap.max_recv_sge = 1;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300473 init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
474 init_attr.qp_type = IB_QPT_RC;
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200475 if (ib_conn->pi_support) {
476 init_attr.cap.max_send_wr = ISER_QP_SIG_MAX_REQ_DTOS;
477 init_attr.create_flags |= IB_QP_CREATE_SIGNATURE_EN;
478 } else {
479 init_attr.cap.max_send_wr = ISER_QP_MAX_REQ_DTOS;
480 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300481
482 ret = rdma_create_qp(ib_conn->cma_id, device->pd, &init_attr);
483 if (ret)
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300484 goto out_err;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300485
486 ib_conn->qp = ib_conn->cma_id->qp;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300487 iser_info("setting conn %p cma_id %p qp %p\n",
Roi Dayan4f363882013-05-01 13:25:25 +0000488 ib_conn, ib_conn->cma_id,
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300489 ib_conn->cma_id->qp);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300490 return ret;
491
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300492out_err:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300493 iser_err("unable to alloc mem or create resource, err %d\n", ret);
494 return ret;
495}
496
497/**
Sagi Grimbergf1a8bf02014-07-31 13:27:48 +0300498 * releases the QP object
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300499 */
Sagi Grimbergf1a8bf02014-07-31 13:27:48 +0300500static void iser_free_ib_conn_res(struct iser_conn *ib_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300501{
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000502 int cq_index;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300503 BUG_ON(ib_conn == NULL);
504
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300505 iser_info("freeing conn %p cma_id %p qp %p\n",
Roi Dayan4f363882013-05-01 13:25:25 +0000506 ib_conn, ib_conn->cma_id,
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300507 ib_conn->qp);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300508
509 /* qp is created only once both addr & route are resolved */
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300510
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000511 if (ib_conn->qp != NULL) {
512 cq_index = ((struct iser_cq_desc *)ib_conn->qp->recv_cq->cq_context)->cq_index;
513 ib_conn->device->cq_active_qps[cq_index]--;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300514
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000515 rdma_destroy_qp(ib_conn->cma_id);
516 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300517
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300518 ib_conn->qp = NULL;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300519}
520
521/**
522 * based on the resolved device node GUID see if there already allocated
523 * device for this device. If there's no such, create one.
524 */
525static
526struct iser_device *iser_device_find_by_ib_device(struct rdma_cm_id *cma_id)
527{
Arne Redlich9a378272008-03-04 14:07:22 +0200528 struct iser_device *device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300529
530 mutex_lock(&ig.device_list_mutex);
531
Arne Redlich9a378272008-03-04 14:07:22 +0200532 list_for_each_entry(device, &ig.device_list, ig_list)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300533 /* find if there's a match using the node GUID */
534 if (device->ib_device->node_guid == cma_id->device->node_guid)
Arne Redlichd33ed422008-03-04 14:11:54 +0200535 goto inc_refcnt;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300536
Arne Redlich9a378272008-03-04 14:07:22 +0200537 device = kzalloc(sizeof *device, GFP_KERNEL);
538 if (device == NULL)
539 goto out;
540
541 /* assign this device to the device */
542 device->ib_device = cma_id->device;
543 /* init the device and link it into ig device list */
544 if (iser_create_device_ib_res(device)) {
545 kfree(device);
546 device = NULL;
547 goto out;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300548 }
Arne Redlich9a378272008-03-04 14:07:22 +0200549 list_add(&device->ig_list, &ig.device_list);
550
Arne Redlichd33ed422008-03-04 14:11:54 +0200551inc_refcnt:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300552 device->refcount++;
Arne Redlichd33ed422008-03-04 14:11:54 +0200553out:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300554 mutex_unlock(&ig.device_list_mutex);
555 return device;
556}
557
558/* if there's no demand for this device, release it */
559static void iser_device_try_release(struct iser_device *device)
560{
561 mutex_lock(&ig.device_list_mutex);
562 device->refcount--;
Roi Dayan4f363882013-05-01 13:25:25 +0000563 iser_info("device %p refcount %d\n", device, device->refcount);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300564 if (!device->refcount) {
565 iser_free_device_ib_res(device);
566 list_del(&device->ig_list);
567 kfree(device);
568 }
569 mutex_unlock(&ig.device_list_mutex);
570}
571
Ariel Nahum504130c2014-07-31 13:27:49 +0300572/**
573 * Called with state mutex held
574 **/
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300575static int iser_conn_state_comp_exch(struct iser_conn *ib_conn,
576 enum iser_ib_conn_state comp,
577 enum iser_ib_conn_state exch)
578{
579 int ret;
580
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300581 if ((ret = (ib_conn->state == comp)))
582 ib_conn->state = exch;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300583 return ret;
584}
585
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300586void iser_release_work(struct work_struct *work)
587{
588 struct iser_conn *ib_conn;
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300589 int rc;
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300590
591 ib_conn = container_of(work, struct iser_conn, release_work);
592
593 /* wait for .conn_stop callback */
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300594 rc = wait_for_completion_timeout(&ib_conn->stop_completion, 30 * HZ);
595 WARN_ON(rc == 0);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300596
597 /* wait for the qp`s post send and post receive buffers to empty */
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300598 rc = wait_for_completion_timeout(&ib_conn->flush_completion, 30 * HZ);
599 WARN_ON(rc == 0);
600
601 ib_conn->state = ISER_CONN_DOWN;
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300602
Ariel Nahum504130c2014-07-31 13:27:49 +0300603 mutex_lock(&ib_conn->state_mutex);
604 ib_conn->state = ISER_CONN_DOWN;
605 mutex_unlock(&ib_conn->state_mutex);
606
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300607 iser_conn_release(ib_conn);
608}
609
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300610/**
Roland Dreier41179e22007-07-17 18:37:42 -0700611 * Frees all conn objects and deallocs conn descriptor
612 */
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300613void iser_conn_release(struct iser_conn *ib_conn)
Roland Dreier41179e22007-07-17 18:37:42 -0700614{
615 struct iser_device *device = ib_conn->device;
616
Roland Dreier41179e22007-07-17 18:37:42 -0700617 mutex_lock(&ig.connlist_mutex);
618 list_del(&ib_conn->conn_list);
619 mutex_unlock(&ig.connlist_mutex);
Ariel Nahum504130c2014-07-31 13:27:49 +0300620
621 mutex_lock(&ib_conn->state_mutex);
622 BUG_ON(ib_conn->state != ISER_CONN_DOWN);
623
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000624 iser_free_rx_descriptors(ib_conn);
Roi Dayan5b61ff42013-05-08 12:21:17 +0000625 iser_free_ib_conn_res(ib_conn);
Roland Dreier41179e22007-07-17 18:37:42 -0700626 ib_conn->device = NULL;
627 /* on EVENT_ADDR_ERROR there's no device yet for this conn */
628 if (device != NULL)
629 iser_device_try_release(device);
Ariel Nahum504130c2014-07-31 13:27:49 +0300630 mutex_unlock(&ib_conn->state_mutex);
631
Roi Dayan5b61ff42013-05-08 12:21:17 +0000632 /* if cma handler context, the caller actually destroy the id */
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300633 if (ib_conn->cma_id != NULL) {
Roi Dayan5b61ff42013-05-08 12:21:17 +0000634 rdma_destroy_id(ib_conn->cma_id);
635 ib_conn->cma_id = NULL;
636 }
Ariel Nahum0a690752014-07-31 13:27:47 +0300637 kfree(ib_conn);
Roland Dreier41179e22007-07-17 18:37:42 -0700638}
639
640/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300641 * triggers start of the disconnect procedures and wait for them to be done
642 */
643void iser_conn_terminate(struct iser_conn *ib_conn)
644{
645 int err = 0;
646
647 /* change the ib conn state only if the conn is UP, however always call
648 * rdma_disconnect since this is the only way to cause the CMA to change
649 * the QP state to ERROR
650 */
651
652 iser_conn_state_comp_exch(ib_conn, ISER_CONN_UP, ISER_CONN_TERMINATING);
653 err = rdma_disconnect(ib_conn->cma_id);
654 if (err)
655 iser_err("Failed to disconnect, conn: 0x%p err %d\n",
656 ib_conn,err);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300657}
658
Ariel Nahum504130c2014-07-31 13:27:49 +0300659/**
660 * Called with state mutex held
661 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300662static void iser_connect_error(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300663{
664 struct iser_conn *ib_conn;
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300665
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300666 ib_conn = (struct iser_conn *)cma_id->context;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300667 ib_conn->state = ISER_CONN_DOWN;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300668}
669
Ariel Nahum504130c2014-07-31 13:27:49 +0300670/**
671 * Called with state mutex held
672 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300673static void iser_addr_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300674{
675 struct iser_device *device;
676 struct iser_conn *ib_conn;
677 int ret;
678
Ariel Nahum504130c2014-07-31 13:27:49 +0300679 ib_conn = (struct iser_conn *)cma_id->context;
680 if (ib_conn->state != ISER_CONN_PENDING)
681 /* bailout */
682 return;
683
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300684 device = iser_device_find_by_ib_device(cma_id);
Arne Redlichd33ed422008-03-04 14:11:54 +0200685 if (!device) {
686 iser_err("device lookup/creation failed\n");
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300687 iser_connect_error(cma_id);
688 return;
Arne Redlichd33ed422008-03-04 14:11:54 +0200689 }
690
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300691 ib_conn->device = device;
692
Alex Tabachnik7f733842014-03-05 19:43:46 +0200693 /* connection T10-PI support */
694 if (iser_pi_enable) {
695 if (!(device->dev_attr.device_cap_flags &
696 IB_DEVICE_SIGNATURE_HANDOVER)) {
697 iser_warn("T10-PI requested but not supported on %s, "
698 "continue without T10-PI\n",
699 ib_conn->device->ib_device->name);
700 ib_conn->pi_support = false;
701 } else {
702 ib_conn->pi_support = true;
703 }
704 }
705
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300706 ret = rdma_resolve_route(cma_id, 1000);
707 if (ret) {
708 iser_err("resolve route failed: %d\n", ret);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300709 iser_connect_error(cma_id);
710 return;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300711 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300712}
713
Ariel Nahum504130c2014-07-31 13:27:49 +0300714/**
715 * Called with state mutex held
716 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300717static void iser_route_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300718{
719 struct rdma_conn_param conn_param;
720 int ret;
Or Gerlitz8d8399d2013-05-01 13:25:27 +0000721 struct iser_cm_hdr req_hdr;
Sagi Grimberg2ea32932014-07-31 13:27:46 +0300722 struct iser_conn *ib_conn = (struct iser_conn *)cma_id->context;
723 struct iser_device *device = ib_conn->device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300724
Ariel Nahum504130c2014-07-31 13:27:49 +0300725 if (ib_conn->state != ISER_CONN_PENDING)
726 /* bailout */
727 return;
728
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300729 ret = iser_create_ib_conn_res((struct iser_conn *)cma_id->context);
730 if (ret)
731 goto failure;
732
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300733 memset(&conn_param, 0, sizeof conn_param);
Sagi Grimberg2ea32932014-07-31 13:27:46 +0300734 conn_param.responder_resources = device->dev_attr.max_qp_rd_atom;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300735 conn_param.initiator_depth = 1;
736 conn_param.retry_count = 7;
737 conn_param.rnr_retry_count = 6;
738
Or Gerlitz8d8399d2013-05-01 13:25:27 +0000739 memset(&req_hdr, 0, sizeof(req_hdr));
740 req_hdr.flags = (ISER_ZBVA_NOT_SUPPORTED |
741 ISER_SEND_W_INV_NOT_SUPPORTED);
742 conn_param.private_data = (void *)&req_hdr;
743 conn_param.private_data_len = sizeof(struct iser_cm_hdr);
744
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300745 ret = rdma_connect(cma_id, &conn_param);
746 if (ret) {
747 iser_err("failure connecting: %d\n", ret);
748 goto failure;
749 }
750
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300751 return;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300752failure:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300753 iser_connect_error(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300754}
755
756static void iser_connected_handler(struct rdma_cm_id *cma_id)
757{
758 struct iser_conn *ib_conn;
Or Gerlitz4f9208a2014-04-01 16:28:40 +0300759 struct ib_qp_attr attr;
760 struct ib_qp_init_attr init_attr;
761
Ariel Nahum504130c2014-07-31 13:27:49 +0300762 ib_conn = (struct iser_conn *)cma_id->context;
763 if (ib_conn->state != ISER_CONN_PENDING)
764 /* bailout */
765 return;
766
Or Gerlitz4f9208a2014-04-01 16:28:40 +0300767 (void)ib_query_qp(cma_id->qp, &attr, ~0, &init_attr);
768 iser_info("remote qpn:%x my qpn:%x\n", attr.dest_qp_num, cma_id->qp->qp_num);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300769
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300770 ib_conn->state = ISER_CONN_UP;
771 complete(&ib_conn->up_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300772}
773
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300774static void iser_disconnected_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300775{
776 struct iser_conn *ib_conn;
777
778 ib_conn = (struct iser_conn *)cma_id->context;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300779
780 /* getting here when the state is UP means that the conn is being *
781 * terminated asynchronously from the iSCSI layer's perspective. */
782 if (iser_conn_state_comp_exch(ib_conn, ISER_CONN_UP,
Roi Dayan7d9eacf2014-02-04 16:54:54 +0200783 ISER_CONN_TERMINATING)){
Ariel Nahum4667f5d2014-04-01 16:28:39 +0300784 if (ib_conn->iscsi_conn)
785 iscsi_conn_failure(ib_conn->iscsi_conn, ISCSI_ERR_CONN_FAILED);
Roi Dayan7d9eacf2014-02-04 16:54:54 +0200786 else
787 iser_err("iscsi_iser connection isn't bound\n");
788 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300789
Roi Dayan8d4aca72014-07-31 13:27:51 +0300790 /* Complete the termination process if no posts are pending. This code
791 * block also exists in iser_handle_comp_error(), but it is needed here
792 * for cases of no flushes at all, e.g. discovery over rdma.
793 */
Or Gerlitz704315f2010-02-08 13:18:39 +0000794 if (ib_conn->post_recv_buf_count == 0 &&
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300795 (atomic_read(&ib_conn->post_send_buf_count) == 0)) {
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300796 complete(&ib_conn->flush_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300797 }
798}
799
800static int iser_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
801{
Ariel Nahum504130c2014-07-31 13:27:49 +0300802 struct iser_conn *ib_conn;
803
804 ib_conn = (struct iser_conn *)cma_id->context;
Roi Dayan4f363882013-05-01 13:25:25 +0000805 iser_info("event %d status %d conn %p id %p\n",
806 event->event, event->status, cma_id->context, cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300807
Ariel Nahum504130c2014-07-31 13:27:49 +0300808 mutex_lock(&ib_conn->state_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300809 switch (event->event) {
810 case RDMA_CM_EVENT_ADDR_RESOLVED:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300811 iser_addr_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300812 break;
813 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300814 iser_route_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300815 break;
816 case RDMA_CM_EVENT_ESTABLISHED:
817 iser_connected_handler(cma_id);
818 break;
819 case RDMA_CM_EVENT_ADDR_ERROR:
820 case RDMA_CM_EVENT_ROUTE_ERROR:
821 case RDMA_CM_EVENT_CONNECT_ERROR:
822 case RDMA_CM_EVENT_UNREACHABLE:
823 case RDMA_CM_EVENT_REJECTED:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300824 iser_connect_error(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300825 break;
826 case RDMA_CM_EVENT_DISCONNECTED:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300827 case RDMA_CM_EVENT_DEVICE_REMOVAL:
Or Gerlitz2f5de152008-07-22 14:16:21 -0700828 case RDMA_CM_EVENT_ADDR_CHANGE:
Roi Dayan9579d602014-07-31 13:27:45 +0300829 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300830 iser_disconnected_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300831 break;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300832 default:
Erez Zilbera4ef1452008-01-17 11:51:58 +0200833 iser_err("Unexpected RDMA CM event (%d)\n", event->event);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300834 break;
835 }
Ariel Nahum504130c2014-07-31 13:27:49 +0300836 mutex_unlock(&ib_conn->state_mutex);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300837 return 0;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300838}
839
Mike Christie412eeaf2008-05-21 15:54:14 -0500840void iser_conn_init(struct iser_conn *ib_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300841{
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300842 ib_conn->state = ISER_CONN_INIT;
Or Gerlitz704315f2010-02-08 13:18:39 +0000843 ib_conn->post_recv_buf_count = 0;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300844 atomic_set(&ib_conn->post_send_buf_count, 0);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300845 init_completion(&ib_conn->stop_completion);
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300846 init_completion(&ib_conn->flush_completion);
847 init_completion(&ib_conn->up_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300848 INIT_LIST_HEAD(&ib_conn->conn_list);
849 spin_lock_init(&ib_conn->lock);
Ariel Nahum504130c2014-07-31 13:27:49 +0300850 mutex_init(&ib_conn->state_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300851}
852
853 /**
854 * starts the process of connecting to the target
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200855 * sleeps until the connection is established or rejected
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300856 */
857int iser_connect(struct iser_conn *ib_conn,
Roi Dayan96ed02d2014-07-31 13:27:44 +0300858 struct sockaddr *src_addr,
859 struct sockaddr *dst_addr,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300860 int non_blocking)
861{
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300862 int err = 0;
863
Ariel Nahum504130c2014-07-31 13:27:49 +0300864 mutex_lock(&ib_conn->state_mutex);
865
Roi Dayan96ed02d2014-07-31 13:27:44 +0300866 sprintf(ib_conn->name, "%pISp", dst_addr);
867
868 iser_info("connecting to: %s\n", ib_conn->name);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300869
870 /* the device is known only --after-- address resolution */
871 ib_conn->device = NULL;
872
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300873 ib_conn->state = ISER_CONN_PENDING;
874
875 ib_conn->cma_id = rdma_create_id(iser_cma_handler,
876 (void *)ib_conn,
Sean Heftyb26f9b92010-04-01 17:08:41 +0000877 RDMA_PS_TCP, IB_QPT_RC);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300878 if (IS_ERR(ib_conn->cma_id)) {
879 err = PTR_ERR(ib_conn->cma_id);
880 iser_err("rdma_create_id failed: %d\n", err);
881 goto id_failure;
882 }
883
Roi Dayan96ed02d2014-07-31 13:27:44 +0300884 err = rdma_resolve_addr(ib_conn->cma_id, src_addr, dst_addr, 1000);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300885 if (err) {
886 iser_err("rdma_resolve_addr failed: %d\n", err);
887 goto addr_failure;
888 }
889
890 if (!non_blocking) {
Ariel Nahum9a6d3232014-07-31 13:27:50 +0300891 wait_for_completion_interruptible(&ib_conn->up_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300892
893 if (ib_conn->state != ISER_CONN_UP) {
894 err = -EIO;
895 goto connect_failure;
896 }
897 }
Ariel Nahum504130c2014-07-31 13:27:49 +0300898 mutex_unlock(&ib_conn->state_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300899
900 mutex_lock(&ig.connlist_mutex);
901 list_add(&ib_conn->conn_list, &ig.connlist);
902 mutex_unlock(&ig.connlist_mutex);
903 return 0;
904
905id_failure:
906 ib_conn->cma_id = NULL;
907addr_failure:
908 ib_conn->state = ISER_CONN_DOWN;
909connect_failure:
Ariel Nahum504130c2014-07-31 13:27:49 +0300910 mutex_unlock(&ib_conn->state_mutex);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300911 iser_conn_release(ib_conn);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300912 return err;
913}
914
915/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300916 * iser_reg_page_vec - Register physical memory
917 *
918 * returns: 0 on success, errno code on failure
919 */
920int iser_reg_page_vec(struct iser_conn *ib_conn,
921 struct iser_page_vec *page_vec,
922 struct iser_mem_reg *mem_reg)
923{
924 struct ib_pool_fmr *mem;
925 u64 io_addr;
926 u64 *page_list;
927 int status;
928
929 page_list = page_vec->pages;
930 io_addr = page_list[0];
931
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200932 mem = ib_fmr_pool_map_phys(ib_conn->fmr.pool,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300933 page_list,
934 page_vec->length,
Michael S. Tsirkinadfaa882006-07-14 00:23:55 -0700935 io_addr);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300936
937 if (IS_ERR(mem)) {
938 status = (int)PTR_ERR(mem);
939 iser_err("ib_fmr_pool_map_phys failed: %d\n", status);
940 return status;
941 }
942
943 mem_reg->lkey = mem->fmr->lkey;
944 mem_reg->rkey = mem->fmr->rkey;
Erez Zilber8dfa0872006-09-11 12:22:30 +0300945 mem_reg->len = page_vec->length * SIZE_4K;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300946 mem_reg->va = io_addr;
Sagi Grimberg55878562013-07-28 12:35:42 +0300947 mem_reg->is_mr = 1;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300948 mem_reg->mem_h = (void *)mem;
949
950 mem_reg->va += page_vec->offset;
951 mem_reg->len = page_vec->data_size;
952
953 iser_dbg("PHYSICAL Mem.register, [PHYS p_array: 0x%p, sz: %d, "
954 "entry[0]: (0x%08lx,%ld)] -> "
955 "[lkey: 0x%08X mem_h: 0x%p va: 0x%08lX sz: %ld]\n",
956 page_vec, page_vec->length,
957 (unsigned long)page_vec->pages[0],
958 (unsigned long)page_vec->data_size,
959 (unsigned int)mem_reg->lkey, mem_reg->mem_h,
960 (unsigned long)mem_reg->va, (unsigned long)mem_reg->len);
961 return 0;
962}
963
964/**
Sagi Grimberge6575712013-07-28 12:35:41 +0300965 * Unregister (previosuly registered using FMR) memory.
966 * If memory is non-FMR does nothing.
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300967 */
Sagi Grimberge6575712013-07-28 12:35:41 +0300968void iser_unreg_mem_fmr(struct iscsi_iser_task *iser_task,
969 enum iser_data_dir cmd_dir)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300970{
Sagi Grimbergb4e155f2013-07-28 12:35:39 +0300971 struct iser_mem_reg *reg = &iser_task->rdma_regd[cmd_dir].reg;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300972 int ret;
973
Sagi Grimberg55878562013-07-28 12:35:42 +0300974 if (!reg->is_mr)
Sagi Grimbergb4e155f2013-07-28 12:35:39 +0300975 return;
976
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300977 iser_dbg("PHYSICAL Mem.Unregister mem_h %p\n",reg->mem_h);
978
979 ret = ib_fmr_pool_unmap((struct ib_pool_fmr *)reg->mem_h);
980 if (ret)
981 iser_err("ib_fmr_pool_unmap failed %d\n", ret);
982
983 reg->mem_h = NULL;
984}
985
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200986void iser_unreg_mem_fastreg(struct iscsi_iser_task *iser_task,
987 enum iser_data_dir cmd_dir)
Sagi Grimberg55878562013-07-28 12:35:42 +0300988{
989 struct iser_mem_reg *reg = &iser_task->rdma_regd[cmd_dir].reg;
Ariel Nahum4667f5d2014-04-01 16:28:39 +0300990 struct iser_conn *ib_conn = iser_task->ib_conn;
Sagi Grimberg55878562013-07-28 12:35:42 +0300991 struct fast_reg_descriptor *desc = reg->mem_h;
992
993 if (!reg->is_mr)
994 return;
995
996 reg->mem_h = NULL;
997 reg->is_mr = 0;
998 spin_lock_bh(&ib_conn->lock);
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200999 list_add_tail(&desc->list, &ib_conn->fastreg.pool);
Sagi Grimberg55878562013-07-28 12:35:42 +03001000 spin_unlock_bh(&ib_conn->lock);
1001}
1002
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001003int iser_post_recvl(struct iser_conn *ib_conn)
1004{
1005 struct ib_recv_wr rx_wr, *rx_wr_failed;
1006 struct ib_sge sge;
1007 int ib_ret;
1008
Or Gerlitz2c4ce602011-11-04 00:19:46 +02001009 sge.addr = ib_conn->login_resp_dma;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001010 sge.length = ISER_RX_LOGIN_SIZE;
1011 sge.lkey = ib_conn->device->mr->lkey;
1012
Or Gerlitz2c4ce602011-11-04 00:19:46 +02001013 rx_wr.wr_id = (unsigned long)ib_conn->login_resp_buf;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001014 rx_wr.sg_list = &sge;
1015 rx_wr.num_sge = 1;
1016 rx_wr.next = NULL;
1017
Or Gerlitz704315f2010-02-08 13:18:39 +00001018 ib_conn->post_recv_buf_count++;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001019 ib_ret = ib_post_recv(ib_conn->qp, &rx_wr, &rx_wr_failed);
1020 if (ib_ret) {
1021 iser_err("ib_post_recv failed ret=%d\n", ib_ret);
Or Gerlitz704315f2010-02-08 13:18:39 +00001022 ib_conn->post_recv_buf_count--;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001023 }
1024 return ib_ret;
1025}
1026
1027int iser_post_recvm(struct iser_conn *ib_conn, int count)
1028{
1029 struct ib_recv_wr *rx_wr, *rx_wr_failed;
1030 int i, ib_ret;
1031 unsigned int my_rx_head = ib_conn->rx_desc_head;
1032 struct iser_rx_desc *rx_desc;
1033
1034 for (rx_wr = ib_conn->rx_wr, i = 0; i < count; i++, rx_wr++) {
1035 rx_desc = &ib_conn->rx_descs[my_rx_head];
1036 rx_wr->wr_id = (unsigned long)rx_desc;
1037 rx_wr->sg_list = &rx_desc->rx_sg;
1038 rx_wr->num_sge = 1;
1039 rx_wr->next = rx_wr + 1;
Shlomo Pongratzb7f04512013-07-28 12:35:38 +03001040 my_rx_head = (my_rx_head + 1) & ib_conn->qp_max_recv_dtos_mask;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001041 }
1042
1043 rx_wr--;
1044 rx_wr->next = NULL; /* mark end of work requests list */
1045
Or Gerlitz704315f2010-02-08 13:18:39 +00001046 ib_conn->post_recv_buf_count += count;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001047 ib_ret = ib_post_recv(ib_conn->qp, ib_conn->rx_wr, &rx_wr_failed);
1048 if (ib_ret) {
1049 iser_err("ib_post_recv failed ret=%d\n", ib_ret);
Or Gerlitz704315f2010-02-08 13:18:39 +00001050 ib_conn->post_recv_buf_count -= count;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001051 } else
1052 ib_conn->rx_desc_head = my_rx_head;
1053 return ib_ret;
1054}
1055
1056
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001057/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001058 * iser_start_send - Initiate a Send DTO operation
1059 *
1060 * returns 0 on success, -1 on failure
1061 */
Or Gerlitzf19624a2010-02-08 13:19:56 +00001062int iser_post_send(struct iser_conn *ib_conn, struct iser_tx_desc *tx_desc)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001063{
Or Gerlitzf19624a2010-02-08 13:19:56 +00001064 int ib_ret;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001065 struct ib_send_wr send_wr, *send_wr_failed;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001066
Or Gerlitzf19624a2010-02-08 13:19:56 +00001067 ib_dma_sync_single_for_device(ib_conn->device->ib_device,
1068 tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001069
1070 send_wr.next = NULL;
1071 send_wr.wr_id = (unsigned long)tx_desc;
Or Gerlitzf19624a2010-02-08 13:19:56 +00001072 send_wr.sg_list = tx_desc->tx_sg;
1073 send_wr.num_sge = tx_desc->num_sge;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001074 send_wr.opcode = IB_WR_SEND;
Or Gerlitzf19624a2010-02-08 13:19:56 +00001075 send_wr.send_flags = IB_SEND_SIGNALED;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001076
1077 atomic_inc(&ib_conn->post_send_buf_count);
1078
1079 ib_ret = ib_post_send(ib_conn->qp, &send_wr, &send_wr_failed);
1080 if (ib_ret) {
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001081 iser_err("ib_post_send failed, ret:%d\n", ib_ret);
1082 atomic_dec(&ib_conn->post_send_buf_count);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001083 }
Or Gerlitzf19624a2010-02-08 13:19:56 +00001084 return ib_ret;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001085}
1086
Or Gerlitzf19624a2010-02-08 13:19:56 +00001087static void iser_handle_comp_error(struct iser_tx_desc *desc,
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001088 struct iser_conn *ib_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001089{
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001090 if (desc && desc->type == ISCSI_TX_DATAOUT)
1091 kmem_cache_free(ig.desc_cache, desc);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001092
Or Gerlitz704315f2010-02-08 13:18:39 +00001093 if (ib_conn->post_recv_buf_count == 0 &&
Erez Zilber1d426d62007-04-01 12:53:43 +02001094 atomic_read(&ib_conn->post_send_buf_count) == 0) {
Ariel Nahum504130c2014-07-31 13:27:49 +03001095 /**
1096 * getting here when the state is UP means that the conn is
1097 * being terminated asynchronously from the iSCSI layer's
1098 * perspective. It is safe to peek at the connection state
1099 * since iscsi_conn_failure is allowed to be called twice.
1100 **/
1101 if (ib_conn->state == ISER_CONN_UP)
Ariel Nahum4667f5d2014-04-01 16:28:39 +03001102 iscsi_conn_failure(ib_conn->iscsi_conn,
Erez Zilber1d426d62007-04-01 12:53:43 +02001103 ISCSI_ERR_CONN_FAILED);
1104
Or Gerlitz39ff05d2010-05-05 17:31:44 +03001105 /* no more non completed posts to the QP, complete the
1106 * termination process w.o worrying on disconnect event */
Ariel Nahum9a6d3232014-07-31 13:27:50 +03001107 complete(&ib_conn->flush_completion);
Erez Zilber1d426d62007-04-01 12:53:43 +02001108 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001109}
1110
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001111static int iser_drain_tx_cq(struct iser_device *device, int cq_index)
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001112{
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001113 struct ib_cq *cq = device->tx_cq[cq_index];
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001114 struct ib_wc wc;
Or Gerlitzf19624a2010-02-08 13:19:56 +00001115 struct iser_tx_desc *tx_desc;
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001116 struct iser_conn *ib_conn;
1117 int completed_tx = 0;
1118
1119 while (ib_poll_cq(cq, 1, &wc) == 1) {
Or Gerlitzf19624a2010-02-08 13:19:56 +00001120 tx_desc = (struct iser_tx_desc *) (unsigned long) wc.wr_id;
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001121 ib_conn = wc.qp->qp_context;
1122 if (wc.status == IB_WC_SUCCESS) {
1123 if (wc.opcode == IB_WC_SEND)
Or Gerlitzf19624a2010-02-08 13:19:56 +00001124 iser_snd_completion(tx_desc, ib_conn);
Sagi Grimbergdb523b82014-01-23 12:31:28 +02001125 else
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001126 iser_err("expected opcode %d got %d\n",
1127 IB_WC_SEND, wc.opcode);
1128 } else {
1129 iser_err("tx id %llx status %d vend_err %x\n",
Sagi Grimbergdb523b82014-01-23 12:31:28 +02001130 wc.wr_id, wc.status, wc.vendor_err);
Sagi Grimberg7306b8f2014-03-05 19:43:39 +02001131 if (wc.wr_id != ISER_FASTREG_LI_WRID) {
Sagi Grimbergdb523b82014-01-23 12:31:28 +02001132 atomic_dec(&ib_conn->post_send_buf_count);
1133 iser_handle_comp_error(tx_desc, ib_conn);
1134 }
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001135 }
1136 completed_tx++;
1137 }
1138 return completed_tx;
1139}
1140
1141
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001142static void iser_cq_tasklet_fn(unsigned long data)
1143{
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001144 struct iser_cq_desc *cq_desc = (struct iser_cq_desc *)data;
1145 struct iser_device *device = cq_desc->device;
1146 int cq_index = cq_desc->cq_index;
1147 struct ib_cq *cq = device->rx_cq[cq_index];
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001148 struct ib_wc wc;
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001149 struct iser_rx_desc *desc;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001150 unsigned long xfer_len;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001151 struct iser_conn *ib_conn;
Roi Dayan1d6c2b72014-04-01 16:28:38 +03001152 int completed_tx, completed_rx = 0;
1153
1154 /* First do tx drain, so in a case where we have rx flushes and a successful
1155 * tx completion we will still go through completion error handling.
1156 */
1157 completed_tx = iser_drain_tx_cq(device, cq_index);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001158
1159 while (ib_poll_cq(cq, 1, &wc) == 1) {
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001160 desc = (struct iser_rx_desc *) (unsigned long) wc.wr_id;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001161 BUG_ON(desc == NULL);
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001162 ib_conn = wc.qp->qp_context;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001163 if (wc.status == IB_WC_SUCCESS) {
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001164 if (wc.opcode == IB_WC_RECV) {
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001165 xfer_len = (unsigned long)wc.byte_len;
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001166 iser_rcv_completion(desc, xfer_len, ib_conn);
1167 } else
1168 iser_err("expected opcode %d got %d\n",
1169 IB_WC_RECV, wc.opcode);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001170 } else {
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001171 if (wc.status != IB_WC_WR_FLUSH_ERR)
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001172 iser_err("rx id %llx status %d vend_err %x\n",
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001173 wc.wr_id, wc.status, wc.vendor_err);
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001174 ib_conn->post_recv_buf_count--;
1175 iser_handle_comp_error(NULL, ib_conn);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001176 }
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001177 completed_rx++;
1178 if (!(completed_rx & 63))
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001179 completed_tx += iser_drain_tx_cq(device, cq_index);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001180 }
1181 /* #warning "it is assumed here that arming CQ only once its empty" *
1182 * " would not cause interrupts to be missed" */
1183 ib_req_notify_cq(cq, IB_CQ_NEXT_COMP);
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001184
Or Gerlitz78ad0a32010-02-08 13:19:21 +00001185 iser_dbg("got %d rx %d tx completions\n", completed_rx, completed_tx);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001186}
1187
1188static void iser_cq_callback(struct ib_cq *cq, void *cq_context)
1189{
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001190 struct iser_cq_desc *cq_desc = (struct iser_cq_desc *)cq_context;
1191 struct iser_device *device = cq_desc->device;
1192 int cq_index = cq_desc->cq_index;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001193
Alex Tabachnik5a33a662012-09-23 15:17:44 +00001194 tasklet_schedule(&device->cq_tasklet[cq_index]);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001195}
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001196
1197u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task,
1198 enum iser_data_dir cmd_dir, sector_t *sector)
1199{
1200 struct iser_mem_reg *reg = &iser_task->rdma_regd[cmd_dir].reg;
1201 struct fast_reg_descriptor *desc = reg->mem_h;
1202 unsigned long sector_size = iser_task->sc->device->sector_size;
1203 struct ib_mr_status mr_status;
1204 int ret;
1205
1206 if (desc && desc->reg_indicators & ISER_FASTREG_PROTECTED) {
1207 desc->reg_indicators &= ~ISER_FASTREG_PROTECTED;
1208 ret = ib_check_mr_status(desc->pi_ctx->sig_mr,
1209 IB_MR_CHECK_SIG_STATUS, &mr_status);
1210 if (ret) {
1211 pr_err("ib_check_mr_status failed, ret %d\n", ret);
1212 goto err;
1213 }
1214
1215 if (mr_status.fail_status & IB_MR_CHECK_SIG_STATUS) {
1216 sector_t sector_off = mr_status.sig_err.sig_err_offset;
1217
1218 do_div(sector_off, sector_size + 8);
1219 *sector = scsi_get_lba(iser_task->sc) + sector_off;
1220
Randy Dunlap39c978c2014-03-28 14:03:40 -07001221 pr_err("PI error found type %d at sector %llx "
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001222 "expected %x vs actual %x\n",
Randy Dunlap39c978c2014-03-28 14:03:40 -07001223 mr_status.sig_err.err_type,
1224 (unsigned long long)*sector,
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001225 mr_status.sig_err.expected,
1226 mr_status.sig_err.actual);
1227
1228 switch (mr_status.sig_err.err_type) {
1229 case IB_SIG_BAD_GUARD:
1230 return 0x1;
1231 case IB_SIG_BAD_REFTAG:
1232 return 0x3;
1233 case IB_SIG_BAD_APPTAG:
1234 return 0x2;
1235 }
1236 }
1237 }
1238
1239 return 0;
1240err:
1241 /* Not alot we can do here, return ambiguous guard error */
1242 return 0x1;
1243}