blob: ffd6bbc819f7a23c8bb73e1caa6e823375c1e794 [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
Sagi Grimberg6aabfa72014-10-01 14:02:09 +030042#define ISER_MAX_RX_LEN (ISER_QP_MAX_RECV_DTOS * ISCSI_ISER_MAX_CONN)
43#define ISER_MAX_TX_LEN (ISER_QP_MAX_REQ_DTOS * ISCSI_ISER_MAX_CONN)
Sagi Grimbergff3dd522014-10-01 14:02:10 +030044#define ISER_MAX_CQ_LEN (ISER_MAX_RX_LEN + ISER_MAX_TX_LEN + \
45 ISCSI_ISER_MAX_CONN)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030046
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030047static void iser_qp_event_callback(struct ib_event *cause, void *context)
48{
Sagi Grimberg871e00a2015-05-18 13:40:30 +030049 iser_err("qp event %s (%d)\n",
50 ib_event_msg(cause->event), cause->event);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030051}
52
Or Gerlitz2110f9b2010-05-05 17:30:10 +030053static void iser_event_handler(struct ib_event_handler *handler,
54 struct ib_event *event)
55{
Sagi Grimberg871e00a2015-05-18 13:40:30 +030056 iser_err("async event %s (%d) on device %s port %d\n",
57 ib_event_msg(event->event), event->event,
Jason Gunthorpe6c854112018-09-20 16:42:27 -060058 dev_name(&event->device->dev), event->element.port_num);
Or Gerlitz2110f9b2010-05-05 17:30:10 +030059}
60
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030061/**
62 * iser_create_device_ib_res - creates Protection Domain (PD), Completion
63 * Queue (CQ), DMA Memory Region (DMA MR) with the device associated with
64 * the adapator.
65 *
66 * returns 0 on success, -1 on failure
67 */
68static int iser_create_device_ib_res(struct iser_device *device)
69{
Or Gerlitz4a061b22015-12-18 10:59:46 +020070 struct ib_device *ib_dev = device->ib_device;
Minh Tranf4641ef2014-12-07 16:09:52 +020071 int ret, i, max_cqe;
Alex Tabachnik5a33a662012-09-23 15:17:44 +000072
Sagi Grimberg48afbff2015-08-06 18:32:56 +030073 ret = iser_assign_reg_ops(device);
74 if (ret)
75 return ret;
Sagi Grimbergb4e155f2013-07-28 12:35:39 +030076
Sagi Grimbergda64bdb2014-12-07 16:10:03 +020077 device->comps_used = min_t(int, num_online_cpus(),
Or Gerlitz4a061b22015-12-18 10:59:46 +020078 ib_dev->num_comp_vectors);
Minh Tranf4641ef2014-12-07 16:09:52 +020079
Sagi Grimbergda64bdb2014-12-07 16:10:03 +020080 device->comps = kcalloc(device->comps_used, sizeof(*device->comps),
81 GFP_KERNEL);
82 if (!device->comps)
83 goto comps_err;
84
Or Gerlitz4a061b22015-12-18 10:59:46 +020085 max_cqe = min(ISER_MAX_CQ_LEN, ib_dev->attrs.max_cqe);
Minh Tranf4641ef2014-12-07 16:09:52 +020086
87 iser_info("using %d CQs, device %s supports %d vectors max_cqe %d\n",
Jason Gunthorpe6c854112018-09-20 16:42:27 -060088 device->comps_used, dev_name(&ib_dev->dev),
Or Gerlitz4a061b22015-12-18 10:59:46 +020089 ib_dev->num_comp_vectors, max_cqe);
Alex Tabachnik5a33a662012-09-23 15:17:44 +000090
Christoph Hellwig8e612122016-09-05 12:56:18 +020091 device->pd = ib_alloc_pd(ib_dev,
92 iser_always_reg ? 0 : IB_PD_UNSAFE_GLOBAL_RKEY);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030093 if (IS_ERR(device->pd))
94 goto pd_err;
95
Sagi Grimbergbf175542014-10-01 14:02:07 +030096 for (i = 0; i < device->comps_used; i++) {
97 struct iser_comp *comp = &device->comps[i];
Or Gerlitz1cfa0a72006-05-11 10:02:46 +030098
Doug Ledford882f3b32015-12-22 17:03:15 -050099 comp->cq = ib_alloc_cq(ib_dev, comp, max_cqe, i,
100 IB_POLL_SOFTIRQ);
Sagi Grimberg6aabfa72014-10-01 14:02:09 +0300101 if (IS_ERR(comp->cq)) {
102 comp->cq = NULL;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000103 goto cq_err;
Roi Dayanc33b15f2014-09-02 17:08:41 +0300104 }
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000105 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300106
Doug Ledford882f3b32015-12-22 17:03:15 -0500107 INIT_IB_EVENT_HANDLER(&device->event_handler, ib_dev,
108 iser_event_handler);
Leon Romanovskydcc98812017-08-17 15:50:36 +0300109 ib_register_event_handler(&device->event_handler);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300110 return 0;
111
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000112cq_err:
Sagi Grimbergbf175542014-10-01 14:02:07 +0300113 for (i = 0; i < device->comps_used; i++) {
114 struct iser_comp *comp = &device->comps[i];
115
Sagi Grimberg6aabfa72014-10-01 14:02:09 +0300116 if (comp->cq)
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800117 ib_free_cq(comp->cq);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000118 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300119 ib_dealloc_pd(device->pd);
120pd_err:
Sagi Grimbergda64bdb2014-12-07 16:10:03 +0200121 kfree(device->comps);
122comps_err:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300123 iser_err("failed to allocate an IB resource\n");
124 return -1;
125}
126
127/**
Oliver Pinter38dc7322008-01-25 14:15:32 -0800128 * iser_free_device_ib_res - destroy/dealloc/dereg the DMA MR,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300129 * CQ and PD created with the device associated with the adapator.
130 */
131static void iser_free_device_ib_res(struct iser_device *device)
132{
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000133 int i;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300134
Sagi Grimbergbf175542014-10-01 14:02:07 +0300135 for (i = 0; i < device->comps_used; i++) {
136 struct iser_comp *comp = &device->comps[i];
137
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800138 ib_free_cq(comp->cq);
Sagi Grimberg6aabfa72014-10-01 14:02:09 +0300139 comp->cq = NULL;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000140 }
141
Leon Romanovskydcc98812017-08-17 15:50:36 +0300142 ib_unregister_event_handler(&device->event_handler);
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600143 ib_dealloc_pd(device->pd);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300144
Sagi Grimbergda64bdb2014-12-07 16:10:03 +0200145 kfree(device->comps);
146 device->comps = NULL;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300147 device->pd = NULL;
148}
149
150/**
Sagi Grimberg48afbff2015-08-06 18:32:56 +0300151 * iser_alloc_fmr_pool - Creates FMR pool and page_vector
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300152 *
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300153 * returns 0 on success, or errno code on failure
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300154 */
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300155int iser_alloc_fmr_pool(struct ib_conn *ib_conn,
156 unsigned cmds_max,
157 unsigned int size)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300158{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300159 struct iser_device *device = ib_conn->device;
Sagi Grimberg385ad872015-08-06 18:32:58 +0300160 struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
161 struct iser_page_vec *page_vec;
Adir Lev2b3bf952015-08-06 18:32:59 +0300162 struct iser_fr_desc *desc;
Sagi Grimberg385ad872015-08-06 18:32:58 +0300163 struct ib_fmr_pool *fmr_pool;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300164 struct ib_fmr_pool_param params;
Adir Lev2b3bf952015-08-06 18:32:59 +0300165 int ret;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000166
Adir Lev2b3bf952015-08-06 18:32:59 +0300167 INIT_LIST_HEAD(&fr_pool->list);
Sagi Grimberg385ad872015-08-06 18:32:58 +0300168 spin_lock_init(&fr_pool->lock);
169
Adir Lev2b3bf952015-08-06 18:32:59 +0300170 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
171 if (!desc)
172 return -ENOMEM;
173
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300174 page_vec = kmalloc(sizeof(*page_vec) + (sizeof(u64) * size),
Sagi Grimberg385ad872015-08-06 18:32:58 +0300175 GFP_KERNEL);
Adir Lev2b3bf952015-08-06 18:32:59 +0300176 if (!page_vec) {
177 ret = -ENOMEM;
178 goto err_frpl;
179 }
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300180
Sagi Grimberg385ad872015-08-06 18:32:58 +0300181 page_vec->pages = (u64 *)(page_vec + 1);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300182
Erez Zilber8dfa0872006-09-11 12:22:30 +0300183 params.page_shift = SHIFT_4K;
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300184 params.max_pages_per_fmr = size;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300185 /* make the pool size twice the max number of SCSI commands *
186 * the ML is expected to queue, watermark for unmap at 50% */
Shlomo Pongratzb7f04512013-07-28 12:35:38 +0300187 params.pool_size = cmds_max * 2;
188 params.dirty_watermark = cmds_max;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300189 params.cache = 0;
190 params.flush_function = NULL;
191 params.access = (IB_ACCESS_LOCAL_WRITE |
192 IB_ACCESS_REMOTE_WRITE |
193 IB_ACCESS_REMOTE_READ);
194
Sagi Grimberg385ad872015-08-06 18:32:58 +0300195 fmr_pool = ib_create_fmr_pool(device->pd, &params);
196 if (IS_ERR(fmr_pool)) {
197 ret = PTR_ERR(fmr_pool);
Sagi Grimberg8c18ed02015-08-06 18:32:55 +0300198 iser_err("FMR allocation failed, err %d\n", ret);
Adir Lev2b3bf952015-08-06 18:32:59 +0300199 goto err_fmr;
Sagi Grimberg8c18ed02015-08-06 18:32:55 +0300200 }
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300201
Adir Lev2b3bf952015-08-06 18:32:59 +0300202 desc->rsc.page_vec = page_vec;
203 desc->rsc.fmr_pool = fmr_pool;
204 list_add(&desc->list, &fr_pool->list);
Sagi Grimberg385ad872015-08-06 18:32:58 +0300205
Sagi Grimberg8c18ed02015-08-06 18:32:55 +0300206 return 0;
207
Adir Lev2b3bf952015-08-06 18:32:59 +0300208err_fmr:
Sagi Grimberg385ad872015-08-06 18:32:58 +0300209 kfree(page_vec);
Adir Lev2b3bf952015-08-06 18:32:59 +0300210err_frpl:
211 kfree(desc);
212
Sagi Grimberg8c18ed02015-08-06 18:32:55 +0300213 return ret;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300214}
215
216/**
217 * iser_free_fmr_pool - releases the FMR pool and page vec
218 */
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300219void iser_free_fmr_pool(struct ib_conn *ib_conn)
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300220{
Sagi Grimberg385ad872015-08-06 18:32:58 +0300221 struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
Adir Lev2b3bf952015-08-06 18:32:59 +0300222 struct iser_fr_desc *desc;
223
224 desc = list_first_entry(&fr_pool->list,
225 struct iser_fr_desc, list);
226 list_del(&desc->list);
Sagi Grimberg385ad872015-08-06 18:32:58 +0300227
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300228 iser_info("freeing conn %p fmr pool %p\n",
Adir Lev2b3bf952015-08-06 18:32:59 +0300229 ib_conn, desc->rsc.fmr_pool);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300230
Adir Lev2b3bf952015-08-06 18:32:59 +0300231 ib_destroy_fmr_pool(desc->rsc.fmr_pool);
232 kfree(desc->rsc.page_vec);
233 kfree(desc);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300234}
235
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300236static struct iser_fr_desc *
Sagi Grimberg318d3112016-02-29 19:07:34 +0200237iser_create_fastreg_desc(struct iser_device *device,
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300238 struct ib_pd *pd,
239 bool pi_enable,
240 unsigned int size)
Sagi Grimberg310b3472014-03-05 19:43:41 +0200241{
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300242 struct iser_fr_desc *desc;
Israel Rukshinb76a4392019-06-11 18:52:47 +0300243 struct ib_device *ib_dev = device->ib_device;
244 enum ib_mr_type mr_type;
Sagi Grimberg310b3472014-03-05 19:43:41 +0200245 int ret;
246
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300247 desc = kzalloc(sizeof(*desc), GFP_KERNEL);
248 if (!desc)
249 return ERR_PTR(-ENOMEM);
250
Israel Rukshinb76a4392019-06-11 18:52:47 +0300251 if (ib_dev->attrs.device_cap_flags & IB_DEVICE_SG_GAPS_REG)
252 mr_type = IB_MR_TYPE_SG_GAPS;
253 else
254 mr_type = IB_MR_TYPE_MEM_REG;
255
256 desc->rsc.mr = ib_alloc_mr(pd, mr_type, size);
257 if (IS_ERR(desc->rsc.mr)) {
258 ret = PTR_ERR(desc->rsc.mr);
259 iser_err("Failed to allocate ib_fast_reg_mr err=%d\n", ret);
260 goto err_alloc_mr;
261 }
Sagi Grimberg310b3472014-03-05 19:43:41 +0200262
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200263 if (pi_enable) {
Israel Rukshinb76a4392019-06-11 18:52:47 +0300264 desc->rsc.sig_mr = ib_alloc_mr_integrity(pd, size, size);
265 if (IS_ERR(desc->rsc.sig_mr)) {
266 ret = PTR_ERR(desc->rsc.sig_mr);
267 iser_err("Failed to allocate sig_mr err=%d\n", ret);
268 goto err_alloc_mr_integrity;
269 }
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200270 }
Israel Rukshinb76a4392019-06-11 18:52:47 +0300271 desc->rsc.mr_valid = 0;
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200272
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300273 return desc;
Sagi Grimbergd711d812015-08-06 18:32:53 +0300274
Israel Rukshinb76a4392019-06-11 18:52:47 +0300275err_alloc_mr_integrity:
276 ib_dereg_mr(desc->rsc.mr);
277err_alloc_mr:
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300278 kfree(desc);
Sagi Grimberg310b3472014-03-05 19:43:41 +0200279
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300280 return ERR_PTR(ret);
Sagi Grimberg310b3472014-03-05 19:43:41 +0200281}
282
Israel Rukshinb76a4392019-06-11 18:52:47 +0300283static void iser_destroy_fastreg_desc(struct iser_fr_desc *desc)
284{
285 struct iser_reg_resources *res = &desc->rsc;
286
287 ib_dereg_mr(res->mr);
288 if (res->sig_mr) {
289 ib_dereg_mr(res->sig_mr);
290 res->sig_mr = NULL;
291 }
292 kfree(desc);
293}
294
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300295/**
Sagi Grimberg48afbff2015-08-06 18:32:56 +0300296 * iser_alloc_fastreg_pool - Creates pool of fast_reg descriptors
Sagi Grimberg55878562013-07-28 12:35:42 +0300297 * for fast registration work requests.
298 * returns 0 on success, or errno code on failure
299 */
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300300int iser_alloc_fastreg_pool(struct ib_conn *ib_conn,
301 unsigned cmds_max,
302 unsigned int size)
Sagi Grimberg55878562013-07-28 12:35:42 +0300303{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300304 struct iser_device *device = ib_conn->device;
Sagi Grimberg385ad872015-08-06 18:32:58 +0300305 struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
Sagi Grimberg5190cc22015-08-06 18:32:54 +0300306 struct iser_fr_desc *desc;
Sagi Grimberg55878562013-07-28 12:35:42 +0300307 int i, ret;
308
Adir Lev2b3bf952015-08-06 18:32:59 +0300309 INIT_LIST_HEAD(&fr_pool->list);
Sagi Grimbergea174c92017-02-27 20:16:33 +0200310 INIT_LIST_HEAD(&fr_pool->all_list);
Sagi Grimberg385ad872015-08-06 18:32:58 +0300311 spin_lock_init(&fr_pool->lock);
Adir Lev2b3bf952015-08-06 18:32:59 +0300312 fr_pool->size = 0;
Sagi Grimberg55878562013-07-28 12:35:42 +0300313 for (i = 0; i < cmds_max; i++) {
Sagi Grimberg318d3112016-02-29 19:07:34 +0200314 desc = iser_create_fastreg_desc(device, device->pd,
Sagi Grimbergf8db6512015-08-06 18:33:03 +0300315 ib_conn->pi_support, size);
Sagi Grimbergeb6ea8c32015-08-06 18:32:57 +0300316 if (IS_ERR(desc)) {
317 ret = PTR_ERR(desc);
Sagi Grimberg310b3472014-03-05 19:43:41 +0200318 goto err;
Sagi Grimberg55878562013-07-28 12:35:42 +0300319 }
320
Adir Lev2b3bf952015-08-06 18:32:59 +0300321 list_add_tail(&desc->list, &fr_pool->list);
Sagi Grimbergea174c92017-02-27 20:16:33 +0200322 list_add_tail(&desc->all_list, &fr_pool->all_list);
Adir Lev2b3bf952015-08-06 18:32:59 +0300323 fr_pool->size++;
Sagi Grimberg55878562013-07-28 12:35:42 +0300324 }
325
326 return 0;
Roi Dayan27ae2d12013-08-19 16:41:51 +0300327
Sagi Grimberg55878562013-07-28 12:35:42 +0300328err:
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300329 iser_free_fastreg_pool(ib_conn);
Sagi Grimberg55878562013-07-28 12:35:42 +0300330 return ret;
331}
332
333/**
Sagi Grimberg7306b8f2014-03-05 19:43:39 +0200334 * iser_free_fastreg_pool - releases the pool of fast_reg descriptors
Sagi Grimberg55878562013-07-28 12:35:42 +0300335 */
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300336void iser_free_fastreg_pool(struct ib_conn *ib_conn)
Sagi Grimberg55878562013-07-28 12:35:42 +0300337{
Sagi Grimberg385ad872015-08-06 18:32:58 +0300338 struct iser_fr_pool *fr_pool = &ib_conn->fr_pool;
Sagi Grimberg5190cc22015-08-06 18:32:54 +0300339 struct iser_fr_desc *desc, *tmp;
Sagi Grimberg55878562013-07-28 12:35:42 +0300340 int i = 0;
341
Sagi Grimbergea174c92017-02-27 20:16:33 +0200342 if (list_empty(&fr_pool->all_list))
Sagi Grimberg55878562013-07-28 12:35:42 +0300343 return;
344
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300345 iser_info("freeing conn %p fr pool\n", ib_conn);
Sagi Grimberg55878562013-07-28 12:35:42 +0300346
Sagi Grimbergea174c92017-02-27 20:16:33 +0200347 list_for_each_entry_safe(desc, tmp, &fr_pool->all_list, all_list) {
348 list_del(&desc->all_list);
Israel Rukshinb76a4392019-06-11 18:52:47 +0300349 iser_destroy_fastreg_desc(desc);
Sagi Grimberg55878562013-07-28 12:35:42 +0300350 ++i;
351 }
352
Adir Lev2b3bf952015-08-06 18:32:59 +0300353 if (i < fr_pool->size)
Sagi Grimberg55878562013-07-28 12:35:42 +0300354 iser_warn("pool still has %d regions registered\n",
Adir Lev2b3bf952015-08-06 18:32:59 +0300355 fr_pool->size - i);
Sagi Grimberg55878562013-07-28 12:35:42 +0300356}
357
358/**
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300359 * iser_create_ib_conn_res - Queue-Pair (QP)
360 *
361 * returns 0 on success, -1 on failure
362 */
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300363static int iser_create_ib_conn_res(struct ib_conn *ib_conn)
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300364{
Sagi Grimberg7edc5a92015-11-04 10:50:32 +0200365 struct iser_conn *iser_conn = to_iser_conn(ib_conn);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300366 struct iser_device *device;
Or Gerlitz4a061b22015-12-18 10:59:46 +0200367 struct ib_device *ib_dev;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300368 struct ib_qp_init_attr init_attr;
369 int ret = -ENOMEM;
370 int index, min_index = 0;
371
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300372 BUG_ON(ib_conn->device == NULL);
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300373
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300374 device = ib_conn->device;
Or Gerlitz4a061b22015-12-18 10:59:46 +0200375 ib_dev = device->ib_device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300376
377 memset(&init_attr, 0, sizeof init_attr);
378
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000379 mutex_lock(&ig.connlist_mutex);
380 /* select the CQ with the minimal number of usages */
Sagi Grimbergbf175542014-10-01 14:02:07 +0300381 for (index = 0; index < device->comps_used; index++) {
382 if (device->comps[index].active_qps <
383 device->comps[min_index].active_qps)
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000384 min_index = index;
Sagi Grimbergbf175542014-10-01 14:02:07 +0300385 }
386 ib_conn->comp = &device->comps[min_index];
387 ib_conn->comp->active_qps++;
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000388 mutex_unlock(&ig.connlist_mutex);
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300389 iser_info("cq index %d used for ib_conn %p\n", min_index, ib_conn);
Alex Tabachnik5a33a662012-09-23 15:17:44 +0000390
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300391 init_attr.event_handler = iser_qp_event_callback;
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300392 init_attr.qp_context = (void *)ib_conn;
Sagi Grimberg6aabfa72014-10-01 14:02:09 +0300393 init_attr.send_cq = ib_conn->comp->cq;
394 init_attr.recv_cq = ib_conn->comp->cq;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300395 init_attr.cap.max_recv_wr = ISER_QP_MAX_RECV_DTOS;
Or Gerlitzf19624a2010-02-08 13:19:56 +0000396 init_attr.cap.max_send_sge = 2;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000397 init_attr.cap.max_recv_sge = 1;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300398 init_attr.sq_sig_type = IB_SIGNAL_REQ_WR;
399 init_attr.qp_type = IB_QPT_RC;
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300400 if (ib_conn->pi_support) {
Sagi Grimbergff3dd522014-10-01 14:02:10 +0300401 init_attr.cap.max_send_wr = ISER_QP_SIG_MAX_REQ_DTOS + 1;
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200402 init_attr.create_flags |= IB_QP_CREATE_SIGNATURE_EN;
Minh Tranf4641ef2014-12-07 16:09:52 +0200403 iser_conn->max_cmds =
404 ISER_GET_MAX_XMIT_CMDS(ISER_QP_SIG_MAX_REQ_DTOS);
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200405 } else {
Or Gerlitz4a061b22015-12-18 10:59:46 +0200406 if (ib_dev->attrs.max_qp_wr > ISER_QP_MAX_REQ_DTOS) {
Minh Tranf4641ef2014-12-07 16:09:52 +0200407 init_attr.cap.max_send_wr = ISER_QP_MAX_REQ_DTOS + 1;
408 iser_conn->max_cmds =
409 ISER_GET_MAX_XMIT_CMDS(ISER_QP_MAX_REQ_DTOS);
410 } else {
Or Gerlitz4a061b22015-12-18 10:59:46 +0200411 init_attr.cap.max_send_wr = ib_dev->attrs.max_qp_wr;
Minh Tranf4641ef2014-12-07 16:09:52 +0200412 iser_conn->max_cmds =
Or Gerlitz4a061b22015-12-18 10:59:46 +0200413 ISER_GET_MAX_XMIT_CMDS(ib_dev->attrs.max_qp_wr);
Minh Tranf4641ef2014-12-07 16:09:52 +0200414 iser_dbg("device %s supports max_send_wr %d\n",
Jason Gunthorpe6c854112018-09-20 16:42:27 -0600415 dev_name(&device->ib_device->dev),
416 ib_dev->attrs.max_qp_wr);
Minh Tranf4641ef2014-12-07 16:09:52 +0200417 }
Alex Tabachnik6b5a8fb2014-03-05 19:43:47 +0200418 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300419
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300420 ret = rdma_create_qp(ib_conn->cma_id, device->pd, &init_attr);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300421 if (ret)
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300422 goto out_err;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300423
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300424 ib_conn->qp = ib_conn->cma_id->qp;
Shlomo Pongratz986db0d2013-07-28 12:35:37 +0300425 iser_info("setting conn %p cma_id %p qp %p\n",
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300426 ib_conn, ib_conn->cma_id,
427 ib_conn->cma_id->qp);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300428 return ret;
429
Dan Carpenter9fda1ac2010-05-06 16:22:21 +0300430out_err:
Sagi Grimberg93acb7b2014-12-07 16:09:55 +0200431 mutex_lock(&ig.connlist_mutex);
432 ib_conn->comp->active_qps--;
433 mutex_unlock(&ig.connlist_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300434 iser_err("unable to alloc mem or create resource, err %d\n", ret);
Sagi Grimberg93acb7b2014-12-07 16:09:55 +0200435
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300436 return ret;
437}
438
439/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300440 * based on the resolved device node GUID see if there already allocated
441 * device for this device. If there's no such, create one.
442 */
443static
444struct iser_device *iser_device_find_by_ib_device(struct rdma_cm_id *cma_id)
445{
Arne Redlich9a378272008-03-04 14:07:22 +0200446 struct iser_device *device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300447
448 mutex_lock(&ig.device_list_mutex);
449
Arne Redlich9a378272008-03-04 14:07:22 +0200450 list_for_each_entry(device, &ig.device_list, ig_list)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300451 /* find if there's a match using the node GUID */
452 if (device->ib_device->node_guid == cma_id->device->node_guid)
Arne Redlichd33ed422008-03-04 14:11:54 +0200453 goto inc_refcnt;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300454
Arne Redlich9a378272008-03-04 14:07:22 +0200455 device = kzalloc(sizeof *device, GFP_KERNEL);
456 if (device == NULL)
457 goto out;
458
459 /* assign this device to the device */
460 device->ib_device = cma_id->device;
461 /* init the device and link it into ig device list */
462 if (iser_create_device_ib_res(device)) {
463 kfree(device);
464 device = NULL;
465 goto out;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300466 }
Arne Redlich9a378272008-03-04 14:07:22 +0200467 list_add(&device->ig_list, &ig.device_list);
468
Arne Redlichd33ed422008-03-04 14:11:54 +0200469inc_refcnt:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300470 device->refcount++;
Arne Redlichd33ed422008-03-04 14:11:54 +0200471out:
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300472 mutex_unlock(&ig.device_list_mutex);
473 return device;
474}
475
476/* if there's no demand for this device, release it */
477static void iser_device_try_release(struct iser_device *device)
478{
479 mutex_lock(&ig.device_list_mutex);
480 device->refcount--;
Roi Dayan4f363882013-05-01 13:25:25 +0000481 iser_info("device %p refcount %d\n", device, device->refcount);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300482 if (!device->refcount) {
483 iser_free_device_ib_res(device);
484 list_del(&device->ig_list);
485 kfree(device);
486 }
487 mutex_unlock(&ig.device_list_mutex);
488}
489
Ariel Nahum504130c2014-07-31 13:27:49 +0300490/**
491 * Called with state mutex held
492 **/
Sagi Grimberg5716af62014-10-01 14:01:57 +0300493static int iser_conn_state_comp_exch(struct iser_conn *iser_conn,
494 enum iser_conn_state comp,
495 enum iser_conn_state exch)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300496{
497 int ret;
498
Sagi Grimberg5716af62014-10-01 14:01:57 +0300499 ret = (iser_conn->state == comp);
500 if (ret)
501 iser_conn->state = exch;
502
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300503 return ret;
504}
505
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300506void iser_release_work(struct work_struct *work)
507{
Sagi Grimberg5716af62014-10-01 14:01:57 +0300508 struct iser_conn *iser_conn;
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300509
Sagi Grimberg5716af62014-10-01 14:01:57 +0300510 iser_conn = container_of(work, struct iser_conn, release_work);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300511
Sagi Grimbergc107a6c2014-10-01 14:02:02 +0300512 /* Wait for conn_stop to complete */
513 wait_for_completion(&iser_conn->stop_completion);
514 /* Wait for IB resouces cleanup to complete */
515 wait_for_completion(&iser_conn->ib_completion);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300516
Sagi Grimberg5716af62014-10-01 14:01:57 +0300517 mutex_lock(&iser_conn->state_mutex);
518 iser_conn->state = ISER_CONN_DOWN;
519 mutex_unlock(&iser_conn->state_mutex);
Ariel Nahum504130c2014-07-31 13:27:49 +0300520
Sagi Grimberg5716af62014-10-01 14:01:57 +0300521 iser_conn_release(iser_conn);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300522}
523
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300524/**
Sagi Grimberg96f15192014-10-01 14:02:00 +0300525 * iser_free_ib_conn_res - release IB related resources
526 * @iser_conn: iser connection struct
Sagi Grimberg6606e6a2015-01-18 16:51:06 +0200527 * @destroy: indicator if we need to try to release the
528 * iser device and memory regoins pool (only iscsi
529 * shutdown and DEVICE_REMOVAL will use this).
Sagi Grimberg96f15192014-10-01 14:02:00 +0300530 *
531 * This routine is called with the iser state mutex held
532 * so the cm_id removal is out of here. It is Safe to
533 * be invoked multiple times.
534 */
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300535static void iser_free_ib_conn_res(struct iser_conn *iser_conn,
Sagi Grimberg6606e6a2015-01-18 16:51:06 +0200536 bool destroy)
Sagi Grimberg96f15192014-10-01 14:02:00 +0300537{
538 struct ib_conn *ib_conn = &iser_conn->ib_conn;
539 struct iser_device *device = ib_conn->device;
540
541 iser_info("freeing conn %p cma_id %p qp %p\n",
542 iser_conn, ib_conn->cma_id, ib_conn->qp);
543
Sagi Grimberg96f15192014-10-01 14:02:00 +0300544 if (ib_conn->qp != NULL) {
Max Gurtovoy32f8e832017-02-02 01:55:18 +0200545 mutex_lock(&ig.connlist_mutex);
Sagi Grimbergbf175542014-10-01 14:02:07 +0300546 ib_conn->comp->active_qps--;
Max Gurtovoy32f8e832017-02-02 01:55:18 +0200547 mutex_unlock(&ig.connlist_mutex);
Sagi Grimberg96f15192014-10-01 14:02:00 +0300548 rdma_destroy_qp(ib_conn->cma_id);
549 ib_conn->qp = NULL;
550 }
551
Sagi Grimberg6606e6a2015-01-18 16:51:06 +0200552 if (destroy) {
553 if (iser_conn->rx_descs)
554 iser_free_rx_descriptors(iser_conn);
555
556 if (device != NULL) {
557 iser_device_try_release(device);
558 ib_conn->device = NULL;
559 }
Sagi Grimberg96f15192014-10-01 14:02:00 +0300560 }
561}
562
563/**
Roland Dreier41179e22007-07-17 18:37:42 -0700564 * Frees all conn objects and deallocs conn descriptor
565 */
Sagi Grimberg5716af62014-10-01 14:01:57 +0300566void iser_conn_release(struct iser_conn *iser_conn)
Roland Dreier41179e22007-07-17 18:37:42 -0700567{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300568 struct ib_conn *ib_conn = &iser_conn->ib_conn;
Roland Dreier41179e22007-07-17 18:37:42 -0700569
Roland Dreier41179e22007-07-17 18:37:42 -0700570 mutex_lock(&ig.connlist_mutex);
Sagi Grimberg5716af62014-10-01 14:01:57 +0300571 list_del(&iser_conn->conn_list);
Roland Dreier41179e22007-07-17 18:37:42 -0700572 mutex_unlock(&ig.connlist_mutex);
Ariel Nahum504130c2014-07-31 13:27:49 +0300573
Sagi Grimberg5716af62014-10-01 14:01:57 +0300574 mutex_lock(&iser_conn->state_mutex);
Ariel Nahum9a3119e2015-01-18 16:51:07 +0200575 /* In case we endup here without ep_disconnect being invoked. */
Ariel Nahum5426b172014-12-07 16:09:54 +0200576 if (iser_conn->state != ISER_CONN_DOWN) {
Ariel Nahumaea8f4d2014-10-01 14:02:06 +0300577 iser_warn("iser conn %p state %d, expected state down.\n",
578 iser_conn, iser_conn->state);
Ariel Nahum9a3119e2015-01-18 16:51:07 +0200579 iscsi_destroy_endpoint(iser_conn->ep);
Ariel Nahum5426b172014-12-07 16:09:54 +0200580 iser_conn->state = ISER_CONN_DOWN;
581 }
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300582 /*
583 * In case we never got to bind stage, we still need to
584 * release IB resources (which is safe to call more than once).
585 */
586 iser_free_ib_conn_res(iser_conn, true);
Sagi Grimberg5716af62014-10-01 14:01:57 +0300587 mutex_unlock(&iser_conn->state_mutex);
Ariel Nahum504130c2014-07-31 13:27:49 +0300588
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300589 if (ib_conn->cma_id != NULL) {
590 rdma_destroy_id(ib_conn->cma_id);
591 ib_conn->cma_id = NULL;
Roi Dayan5b61ff42013-05-08 12:21:17 +0000592 }
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300593
Sagi Grimberg5716af62014-10-01 14:01:57 +0300594 kfree(iser_conn);
Roland Dreier41179e22007-07-17 18:37:42 -0700595}
596
597/**
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300598 * triggers start of the disconnect procedures and wait for them to be done
599 * Called with state mutex held
600 */
601int iser_conn_terminate(struct iser_conn *iser_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300602{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300603 struct ib_conn *ib_conn = &iser_conn->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300604 int err = 0;
605
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300606 /* terminate the iser conn only if the conn state is UP */
607 if (!iser_conn_state_comp_exch(iser_conn, ISER_CONN_UP,
608 ISER_CONN_TERMINATING))
609 return 0;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300610
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300611 iser_info("iser_conn %p state %d\n", iser_conn, iser_conn->state);
612
613 /* suspend queuing of new iscsi commands */
614 if (iser_conn->iscsi_conn)
615 iscsi_suspend_queue(iser_conn->iscsi_conn);
616
617 /*
618 * In case we didn't already clean up the cma_id (peer initiated
619 * a disconnection), we need to Cause the CMA to change the QP
620 * state to ERROR.
621 */
622 if (ib_conn->cma_id) {
623 err = rdma_disconnect(ib_conn->cma_id);
624 if (err)
625 iser_err("Failed to disconnect, conn: 0x%p err %d\n",
626 iser_conn, err);
627
Steve Wise4c8ba942016-02-17 08:17:12 -0800628 /* block until all flush errors are consumed */
629 ib_drain_sq(ib_conn->qp);
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300630 }
631
632 return 1;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300633}
634
Ariel Nahum504130c2014-07-31 13:27:49 +0300635/**
636 * Called with state mutex held
637 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300638static void iser_connect_error(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300639{
Sagi Grimberg5716af62014-10-01 14:01:57 +0300640 struct iser_conn *iser_conn;
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300641
Sagi Grimberg5716af62014-10-01 14:01:57 +0300642 iser_conn = (struct iser_conn *)cma_id->context;
Sagi Grimbergc4de4662015-04-14 18:08:11 +0300643 iser_conn->state = ISER_CONN_TERMINATING;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300644}
645
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300646static void
647iser_calc_scsi_params(struct iser_conn *iser_conn,
648 unsigned int max_sectors)
649{
650 struct iser_device *device = iser_conn->ib_conn.device;
Sergey Gorenko434dda42018-05-21 18:55:53 +0300651 struct ib_device_attr *attr = &device->ib_device->attrs;
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300652 unsigned short sg_tablesize, sup_sg_tablesize;
Sergey Gorenko434dda42018-05-21 18:55:53 +0300653 unsigned short reserved_mr_pages;
Israel Rukshinb76a4392019-06-11 18:52:47 +0300654 u32 max_num_sg;
Sergey Gorenko434dda42018-05-21 18:55:53 +0300655
656 /*
657 * FRs without SG_GAPS or FMRs can only map up to a (device) page per
658 * entry, but if the first entry is misaligned we'll end up using two
659 * entries (head and tail) for a single page worth data, so one
660 * additional entry is required.
661 */
662 if ((attr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS) &&
663 (attr->device_cap_flags & IB_DEVICE_SG_GAPS_REG))
664 reserved_mr_pages = 0;
665 else
666 reserved_mr_pages = 1;
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300667
Israel Rukshinb76a4392019-06-11 18:52:47 +0300668 if (iser_conn->ib_conn.pi_support)
669 max_num_sg = attr->max_pi_fast_reg_page_list_len;
670 else
671 max_num_sg = attr->max_fast_reg_page_list_len;
672
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300673 sg_tablesize = DIV_ROUND_UP(max_sectors * 512, SIZE_4K);
Sergey Gorenko434dda42018-05-21 18:55:53 +0300674 if (attr->device_cap_flags & IB_DEVICE_MEM_MGT_EXTENSIONS)
Mike Marciniszyne7d80c8302017-06-22 15:01:10 -0400675 sup_sg_tablesize =
676 min_t(
677 uint, ISCSI_ISER_MAX_SG_TABLESIZE,
Israel Rukshinb76a4392019-06-11 18:52:47 +0300678 max_num_sg - reserved_mr_pages);
Mike Marciniszyne7d80c8302017-06-22 15:01:10 -0400679 else
680 sup_sg_tablesize = ISCSI_ISER_MAX_SG_TABLESIZE;
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300681
Max Gurtovoy83236f02017-01-18 00:40:40 +0200682 iser_conn->scsi_sg_tablesize = min(sg_tablesize, sup_sg_tablesize);
Sergey Gorenko434dda42018-05-21 18:55:53 +0300683 iser_conn->pages_per_mr =
684 iser_conn->scsi_sg_tablesize + reserved_mr_pages;
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300685}
686
Ariel Nahum504130c2014-07-31 13:27:49 +0300687/**
688 * Called with state mutex held
689 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300690static void iser_addr_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300691{
692 struct iser_device *device;
Sagi Grimberg5716af62014-10-01 14:01:57 +0300693 struct iser_conn *iser_conn;
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300694 struct ib_conn *ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300695 int ret;
696
Sagi Grimberg5716af62014-10-01 14:01:57 +0300697 iser_conn = (struct iser_conn *)cma_id->context;
698 if (iser_conn->state != ISER_CONN_PENDING)
Ariel Nahum504130c2014-07-31 13:27:49 +0300699 /* bailout */
700 return;
701
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300702 ib_conn = &iser_conn->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300703 device = iser_device_find_by_ib_device(cma_id);
Arne Redlichd33ed422008-03-04 14:11:54 +0200704 if (!device) {
705 iser_err("device lookup/creation failed\n");
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300706 iser_connect_error(cma_id);
707 return;
Arne Redlichd33ed422008-03-04 14:11:54 +0200708 }
709
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300710 ib_conn->device = device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300711
Alex Tabachnik7f733842014-03-05 19:43:46 +0200712 /* connection T10-PI support */
713 if (iser_pi_enable) {
Or Gerlitz4a061b22015-12-18 10:59:46 +0200714 if (!(device->ib_device->attrs.device_cap_flags &
Alex Tabachnik7f733842014-03-05 19:43:46 +0200715 IB_DEVICE_SIGNATURE_HANDOVER)) {
716 iser_warn("T10-PI requested but not supported on %s, "
717 "continue without T10-PI\n",
Jason Gunthorpe6c854112018-09-20 16:42:27 -0600718 dev_name(&ib_conn->device->ib_device->dev));
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300719 ib_conn->pi_support = false;
Alex Tabachnik7f733842014-03-05 19:43:46 +0200720 } else {
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300721 ib_conn->pi_support = true;
Alex Tabachnik7f733842014-03-05 19:43:46 +0200722 }
723 }
724
Sagi Grimbergdf749cdc2015-08-06 18:33:04 +0300725 iser_calc_scsi_params(iser_conn, iser_max_sectors);
726
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300727 ret = rdma_resolve_route(cma_id, 1000);
728 if (ret) {
729 iser_err("resolve route failed: %d\n", ret);
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300730 iser_connect_error(cma_id);
731 return;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300732 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300733}
734
Ariel Nahum504130c2014-07-31 13:27:49 +0300735/**
736 * Called with state mutex held
737 **/
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300738static void iser_route_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300739{
740 struct rdma_conn_param conn_param;
741 int ret;
Or Gerlitz8d8399d2013-05-01 13:25:27 +0000742 struct iser_cm_hdr req_hdr;
Sagi Grimberg5716af62014-10-01 14:01:57 +0300743 struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context;
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300744 struct ib_conn *ib_conn = &iser_conn->ib_conn;
745 struct iser_device *device = ib_conn->device;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300746
Sagi Grimberg5716af62014-10-01 14:01:57 +0300747 if (iser_conn->state != ISER_CONN_PENDING)
Ariel Nahum504130c2014-07-31 13:27:49 +0300748 /* bailout */
749 return;
750
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300751 ret = iser_create_ib_conn_res(ib_conn);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300752 if (ret)
753 goto failure;
754
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300755 memset(&conn_param, 0, sizeof conn_param);
Or Gerlitz4a061b22015-12-18 10:59:46 +0200756 conn_param.responder_resources = device->ib_device->attrs.max_qp_rd_atom;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300757 conn_param.initiator_depth = 1;
758 conn_param.retry_count = 7;
759 conn_param.rnr_retry_count = 6;
760
Or Gerlitz8d8399d2013-05-01 13:25:27 +0000761 memset(&req_hdr, 0, sizeof(req_hdr));
Jenny Derzhavetz59caaed2015-12-24 12:20:48 +0200762 req_hdr.flags = ISER_ZBVA_NOT_SUP;
763 if (!device->remote_inv_sup)
764 req_hdr.flags |= ISER_SEND_W_INV_NOT_SUP;
Sagi Grimbergd3cf81f2015-12-09 14:12:03 +0200765 conn_param.private_data = (void *)&req_hdr;
766 conn_param.private_data_len = sizeof(struct iser_cm_hdr);
Or Gerlitz8d8399d2013-05-01 13:25:27 +0000767
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300768 ret = rdma_connect(cma_id, &conn_param);
769 if (ret) {
770 iser_err("failure connecting: %d\n", ret);
771 goto failure;
772 }
773
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300774 return;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300775failure:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300776 iser_connect_error(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300777}
778
Jenny Derzhavetz59caaed2015-12-24 12:20:48 +0200779static void iser_connected_handler(struct rdma_cm_id *cma_id,
780 const void *private_data)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300781{
Sagi Grimberg5716af62014-10-01 14:01:57 +0300782 struct iser_conn *iser_conn;
Or Gerlitz4f9208a2014-04-01 16:28:40 +0300783 struct ib_qp_attr attr;
784 struct ib_qp_init_attr init_attr;
785
Sagi Grimberg5716af62014-10-01 14:01:57 +0300786 iser_conn = (struct iser_conn *)cma_id->context;
787 if (iser_conn->state != ISER_CONN_PENDING)
Ariel Nahum504130c2014-07-31 13:27:49 +0300788 /* bailout */
789 return;
790
Or Gerlitz4f9208a2014-04-01 16:28:40 +0300791 (void)ib_query_qp(cma_id->qp, &attr, ~0, &init_attr);
792 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 +0300793
Jenny Derzhavetz59caaed2015-12-24 12:20:48 +0200794 if (private_data) {
795 u8 flags = *(u8 *)private_data;
796
797 iser_conn->snd_w_inv = !(flags & ISER_SEND_W_INV_NOT_SUP);
798 }
799
800 iser_info("conn %p: negotiated %s invalidation\n",
801 iser_conn, iser_conn->snd_w_inv ? "remote" : "local");
802
Sagi Grimberg5716af62014-10-01 14:01:57 +0300803 iser_conn->state = ISER_CONN_UP;
804 complete(&iser_conn->up_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300805}
806
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300807static void iser_disconnected_handler(struct rdma_cm_id *cma_id)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300808{
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300809 struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300810
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300811 if (iser_conn_terminate(iser_conn)) {
Sagi Grimberg5716af62014-10-01 14:01:57 +0300812 if (iser_conn->iscsi_conn)
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300813 iscsi_conn_failure(iser_conn->iscsi_conn,
814 ISCSI_ERR_CONN_FAILED);
Roi Dayan7d9eacf2014-02-04 16:54:54 +0200815 else
816 iser_err("iscsi_iser connection isn't bound\n");
817 }
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300818}
819
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300820static void iser_cleanup_handler(struct rdma_cm_id *cma_id,
Sagi Grimberg6606e6a2015-01-18 16:51:06 +0200821 bool destroy)
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300822{
823 struct iser_conn *iser_conn = (struct iser_conn *)cma_id->context;
824
825 /*
826 * We are not guaranteed that we visited disconnected_handler
827 * by now, call it here to be safe that we handle CM drep
828 * and flush errors.
829 */
830 iser_disconnected_handler(cma_id);
Sagi Grimberg6606e6a2015-01-18 16:51:06 +0200831 iser_free_ib_conn_res(iser_conn, destroy);
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300832 complete(&iser_conn->ib_completion);
833};
834
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300835static int iser_cma_handler(struct rdma_cm_id *cma_id, struct rdma_cm_event *event)
836{
Sagi Grimberg5716af62014-10-01 14:01:57 +0300837 struct iser_conn *iser_conn;
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300838 int ret = 0;
Ariel Nahum504130c2014-07-31 13:27:49 +0300839
Sagi Grimberg5716af62014-10-01 14:01:57 +0300840 iser_conn = (struct iser_conn *)cma_id->context;
Sagi Grimberg871e00a2015-05-18 13:40:30 +0300841 iser_info("%s (%d): status %d conn %p id %p\n",
842 rdma_event_msg(event->event), event->event,
843 event->status, cma_id->context, cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300844
Sagi Grimberg5716af62014-10-01 14:01:57 +0300845 mutex_lock(&iser_conn->state_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300846 switch (event->event) {
847 case RDMA_CM_EVENT_ADDR_RESOLVED:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300848 iser_addr_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300849 break;
850 case RDMA_CM_EVENT_ROUTE_RESOLVED:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300851 iser_route_handler(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300852 break;
853 case RDMA_CM_EVENT_ESTABLISHED:
Jenny Derzhavetz59caaed2015-12-24 12:20:48 +0200854 iser_connected_handler(cma_id, event->param.conn.private_data);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300855 break;
Steve Wise97540bb2016-10-26 12:36:47 -0700856 case RDMA_CM_EVENT_REJECTED:
857 iser_info("Connection rejected: %s\n",
858 rdma_reject_msg(cma_id, event->status));
859 /* FALLTHROUGH */
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300860 case RDMA_CM_EVENT_ADDR_ERROR:
861 case RDMA_CM_EVENT_ROUTE_ERROR:
862 case RDMA_CM_EVENT_CONNECT_ERROR:
863 case RDMA_CM_EVENT_UNREACHABLE:
Ariel Nahumb73c3ad2014-05-22 11:00:18 +0300864 iser_connect_error(cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300865 break;
866 case RDMA_CM_EVENT_DISCONNECTED:
Or Gerlitz2f5de152008-07-22 14:16:21 -0700867 case RDMA_CM_EVENT_ADDR_CHANGE:
Ariel Nahum5426b172014-12-07 16:09:54 +0200868 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
869 iser_cleanup_handler(cma_id, false);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300870 break;
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300871 case RDMA_CM_EVENT_DEVICE_REMOVAL:
872 /*
873 * we *must* destroy the device as we cannot rely
874 * on iscsid to be around to initiate error handling.
Ariel Nahum5426b172014-12-07 16:09:54 +0200875 * also if we are not in state DOWN implicitly destroy
876 * the cma_id.
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300877 */
878 iser_cleanup_handler(cma_id, true);
Ariel Nahum5426b172014-12-07 16:09:54 +0200879 if (iser_conn->state != ISER_CONN_DOWN) {
880 iser_conn->ib_conn.cma_id = NULL;
881 ret = 1;
882 }
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300883 break;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300884 default:
Sagi Grimberg871e00a2015-05-18 13:40:30 +0300885 iser_err("Unexpected RDMA CM event: %s (%d)\n",
886 rdma_event_msg(event->event), event->event);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300887 break;
888 }
Sagi Grimberg5716af62014-10-01 14:01:57 +0300889 mutex_unlock(&iser_conn->state_mutex);
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300890
891 return ret;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300892}
893
Sagi Grimberg5716af62014-10-01 14:01:57 +0300894void iser_conn_init(struct iser_conn *iser_conn)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300895{
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800896 struct ib_conn *ib_conn = &iser_conn->ib_conn;
897
Sagi Grimberg5716af62014-10-01 14:01:57 +0300898 iser_conn->state = ISER_CONN_INIT;
Sagi Grimberg5716af62014-10-01 14:01:57 +0300899 init_completion(&iser_conn->stop_completion);
Sagi Grimbergc47a3c92014-10-01 14:02:01 +0300900 init_completion(&iser_conn->ib_completion);
Sagi Grimberg5716af62014-10-01 14:01:57 +0300901 init_completion(&iser_conn->up_completion);
902 INIT_LIST_HEAD(&iser_conn->conn_list);
Sagi Grimberg5716af62014-10-01 14:01:57 +0300903 mutex_init(&iser_conn->state_mutex);
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800904
905 ib_conn->post_recv_buf_count = 0;
906 ib_conn->reg_cqe.done = iser_reg_comp;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300907}
908
909 /**
910 * starts the process of connecting to the target
Thadeu Lima de Souza Cascardo94e2bd62009-10-16 15:20:49 +0200911 * sleeps until the connection is established or rejected
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300912 */
Sagi Grimberg5716af62014-10-01 14:01:57 +0300913int iser_connect(struct iser_conn *iser_conn,
Roi Dayan96ed02d2014-07-31 13:27:44 +0300914 struct sockaddr *src_addr,
915 struct sockaddr *dst_addr,
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300916 int non_blocking)
917{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300918 struct ib_conn *ib_conn = &iser_conn->ib_conn;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300919 int err = 0;
920
Sagi Grimberg5716af62014-10-01 14:01:57 +0300921 mutex_lock(&iser_conn->state_mutex);
Ariel Nahum504130c2014-07-31 13:27:49 +0300922
Sagi Grimberg5716af62014-10-01 14:01:57 +0300923 sprintf(iser_conn->name, "%pISp", dst_addr);
Roi Dayan96ed02d2014-07-31 13:27:44 +0300924
Sagi Grimberg5716af62014-10-01 14:01:57 +0300925 iser_info("connecting to: %s\n", iser_conn->name);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300926
927 /* the device is known only --after-- address resolution */
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300928 ib_conn->device = NULL;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300929
Sagi Grimberg5716af62014-10-01 14:01:57 +0300930 iser_conn->state = ISER_CONN_PENDING;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300931
Guy Shapirofa201052015-10-22 15:20:10 +0300932 ib_conn->cma_id = rdma_create_id(&init_net, iser_cma_handler,
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300933 (void *)iser_conn,
934 RDMA_PS_TCP, IB_QPT_RC);
935 if (IS_ERR(ib_conn->cma_id)) {
936 err = PTR_ERR(ib_conn->cma_id);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300937 iser_err("rdma_create_id failed: %d\n", err);
938 goto id_failure;
939 }
940
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300941 err = rdma_resolve_addr(ib_conn->cma_id, src_addr, dst_addr, 1000);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300942 if (err) {
943 iser_err("rdma_resolve_addr failed: %d\n", err);
944 goto addr_failure;
945 }
946
947 if (!non_blocking) {
Sagi Grimberg5716af62014-10-01 14:01:57 +0300948 wait_for_completion_interruptible(&iser_conn->up_completion);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300949
Sagi Grimberg5716af62014-10-01 14:01:57 +0300950 if (iser_conn->state != ISER_CONN_UP) {
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300951 err = -EIO;
952 goto connect_failure;
953 }
954 }
Sagi Grimberg5716af62014-10-01 14:01:57 +0300955 mutex_unlock(&iser_conn->state_mutex);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300956
957 mutex_lock(&ig.connlist_mutex);
Sagi Grimberg5716af62014-10-01 14:01:57 +0300958 list_add(&iser_conn->conn_list, &ig.connlist);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300959 mutex_unlock(&ig.connlist_mutex);
960 return 0;
961
962id_failure:
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300963 ib_conn->cma_id = NULL;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300964addr_failure:
Sagi Grimberg5716af62014-10-01 14:01:57 +0300965 iser_conn->state = ISER_CONN_DOWN;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300966connect_failure:
Sagi Grimberg5716af62014-10-01 14:01:57 +0300967 mutex_unlock(&iser_conn->state_mutex);
968 iser_conn_release(iser_conn);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +0300969 return err;
970}
971
Sagi Grimberg5716af62014-10-01 14:01:57 +0300972int iser_post_recvl(struct iser_conn *iser_conn)
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000973{
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300974 struct ib_conn *ib_conn = &iser_conn->ib_conn;
Sagi Grimberg0f512b32015-11-04 10:50:31 +0200975 struct iser_login_desc *desc = &iser_conn->login_desc;
Bart Van Assche604dbdc2018-07-18 09:25:19 -0700976 struct ib_recv_wr wr;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000977 int ib_ret;
978
Sagi Grimberg0f512b32015-11-04 10:50:31 +0200979 desc->sge.addr = desc->rsp_dma;
980 desc->sge.length = ISER_RX_LOGIN_SIZE;
981 desc->sge.lkey = ib_conn->device->pd->local_dma_lkey;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000982
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800983 desc->cqe.done = iser_login_rsp;
984 wr.wr_cqe = &desc->cqe;
985 wr.sg_list = &desc->sge;
986 wr.num_sge = 1;
987 wr.next = NULL;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000988
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300989 ib_conn->post_recv_buf_count++;
Bart Van Assche604dbdc2018-07-18 09:25:19 -0700990 ib_ret = ib_post_recv(ib_conn->qp, &wr, NULL);
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000991 if (ib_ret) {
992 iser_err("ib_post_recv failed ret=%d\n", ib_ret);
Sagi Grimberga4ee3532014-10-01 14:01:58 +0300993 ib_conn->post_recv_buf_count--;
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000994 }
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -0800995
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000996 return ib_ret;
997}
998
Sagi Grimberg5716af62014-10-01 14:01:57 +0300999int iser_post_recvm(struct iser_conn *iser_conn, int count)
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001000{
Sagi Grimberga4ee3532014-10-01 14:01:58 +03001001 struct ib_conn *ib_conn = &iser_conn->ib_conn;
Sagi Grimberg5716af62014-10-01 14:01:57 +03001002 unsigned int my_rx_head = iser_conn->rx_desc_head;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001003 struct iser_rx_desc *rx_desc;
Bart Van Assche604dbdc2018-07-18 09:25:19 -07001004 struct ib_recv_wr *wr;
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001005 int i, ib_ret;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001006
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001007 for (wr = ib_conn->rx_wr, i = 0; i < count; i++, wr++) {
1008 rx_desc = &iser_conn->rx_descs[my_rx_head];
1009 rx_desc->cqe.done = iser_task_rsp;
1010 wr->wr_cqe = &rx_desc->cqe;
1011 wr->sg_list = &rx_desc->rx_sg;
1012 wr->num_sge = 1;
1013 wr->next = wr + 1;
Sagi Grimberg5716af62014-10-01 14:01:57 +03001014 my_rx_head = (my_rx_head + 1) & iser_conn->qp_max_recv_dtos_mask;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001015 }
1016
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001017 wr--;
1018 wr->next = NULL; /* mark end of work requests list */
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001019
Sagi Grimberga4ee3532014-10-01 14:01:58 +03001020 ib_conn->post_recv_buf_count += count;
Bart Van Assche604dbdc2018-07-18 09:25:19 -07001021 ib_ret = ib_post_recv(ib_conn->qp, ib_conn->rx_wr, NULL);
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001022 if (ib_ret) {
1023 iser_err("ib_post_recv failed ret=%d\n", ib_ret);
Sagi Grimberga4ee3532014-10-01 14:01:58 +03001024 ib_conn->post_recv_buf_count -= count;
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001025 } else
Sagi Grimberg5716af62014-10-01 14:01:57 +03001026 iser_conn->rx_desc_head = my_rx_head;
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001027
Or Gerlitzbcc60c32010-02-08 13:17:42 +00001028 return ib_ret;
1029}
1030
1031
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001032/**
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001033 * iser_start_send - Initiate a Send DTO operation
1034 *
1035 * returns 0 on success, -1 on failure
1036 */
Sagi Grimberg6df5a122014-10-01 14:02:12 +03001037int iser_post_send(struct ib_conn *ib_conn, struct iser_tx_desc *tx_desc,
1038 bool signal)
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001039{
Bart Van Assche604dbdc2018-07-18 09:25:19 -07001040 struct ib_send_wr *wr = iser_tx_next_wr(tx_desc);
Sagi Grimberg7332bed2015-08-06 18:33:06 +03001041 int ib_ret;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001042
Sagi Grimberga4ee3532014-10-01 14:01:58 +03001043 ib_dma_sync_single_for_device(ib_conn->device->ib_device,
Sagi Grimberg5716af62014-10-01 14:01:57 +03001044 tx_desc->dma_addr, ISER_HEADERS_LEN,
1045 DMA_TO_DEVICE);
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001046
Sagi Grimberg7332bed2015-08-06 18:33:06 +03001047 wr->next = NULL;
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001048 wr->wr_cqe = &tx_desc->cqe;
Sagi Grimberg7332bed2015-08-06 18:33:06 +03001049 wr->sg_list = tx_desc->tx_sg;
1050 wr->num_sge = tx_desc->num_sge;
1051 wr->opcode = IB_WR_SEND;
1052 wr->send_flags = signal ? IB_SEND_SIGNALED : 0;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001053
Bart Van Assche604dbdc2018-07-18 09:25:19 -07001054 ib_ret = ib_post_send(ib_conn->qp, &tx_desc->wrs[0].send, NULL);
Sagi Grimbergff3dd522014-10-01 14:02:10 +03001055 if (ib_ret)
Sagi Grimberg7332bed2015-08-06 18:33:06 +03001056 iser_err("ib_post_send failed, ret:%d opcode:%d\n",
Bart Van Assche604dbdc2018-07-18 09:25:19 -07001057 ib_ret, wr->opcode);
Sagi Grimbergff3dd522014-10-01 14:02:10 +03001058
Or Gerlitzf19624a2010-02-08 13:19:56 +00001059 return ib_ret;
Or Gerlitz1cfa0a72006-05-11 10:02:46 +03001060}
1061
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001062u8 iser_check_task_pi_status(struct iscsi_iser_task *iser_task,
1063 enum iser_data_dir cmd_dir, sector_t *sector)
1064{
Sagi Grimbergb130ede2015-04-14 18:08:19 +03001065 struct iser_mem_reg *reg = &iser_task->rdma_reg[cmd_dir];
Sagi Grimberg5190cc22015-08-06 18:32:54 +03001066 struct iser_fr_desc *desc = reg->mem_h;
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001067 unsigned long sector_size = iser_task->sc->device->sector_size;
1068 struct ib_mr_status mr_status;
1069 int ret;
1070
Israel Rukshinb76a4392019-06-11 18:52:47 +03001071 if (desc && desc->sig_protected) {
1072 desc->sig_protected = 0;
1073 ret = ib_check_mr_status(desc->rsc.sig_mr,
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001074 IB_MR_CHECK_SIG_STATUS, &mr_status);
1075 if (ret) {
1076 pr_err("ib_check_mr_status failed, ret %d\n", ret);
Sagi Grimberg24c34562018-11-14 10:17:01 -08001077 /* Not a lot we can do, return ambiguous guard error */
1078 *sector = 0;
1079 return 0x1;
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001080 }
1081
1082 if (mr_status.fail_status & IB_MR_CHECK_SIG_STATUS) {
1083 sector_t sector_off = mr_status.sig_err.sig_err_offset;
1084
Arnd Bergmann2c63d102015-11-20 17:41:36 +01001085 sector_div(sector_off, sector_size + 8);
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001086 *sector = scsi_get_lba(iser_task->sc) + sector_off;
1087
Randy Dunlap39c978c2014-03-28 14:03:40 -07001088 pr_err("PI error found type %d at sector %llx "
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001089 "expected %x vs actual %x\n",
Randy Dunlap39c978c2014-03-28 14:03:40 -07001090 mr_status.sig_err.err_type,
1091 (unsigned long long)*sector,
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001092 mr_status.sig_err.expected,
1093 mr_status.sig_err.actual);
1094
1095 switch (mr_status.sig_err.err_type) {
1096 case IB_SIG_BAD_GUARD:
1097 return 0x1;
1098 case IB_SIG_BAD_REFTAG:
1099 return 0x3;
1100 case IB_SIG_BAD_APPTAG:
1101 return 0x2;
1102 }
1103 }
1104 }
1105
1106 return 0;
Sagi Grimberg0a7a08a2014-03-05 19:43:50 +02001107}
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001108
1109void iser_err_comp(struct ib_wc *wc, const char *type)
1110{
1111 if (wc->status != IB_WC_WR_FLUSH_ERR) {
1112 struct iser_conn *iser_conn = to_iser_conn(wc->qp->qp_context);
1113
Ajaykumar Hotchandanib04dc192017-09-27 21:26:08 +03001114 iser_err("%s failure: %s (%d) vend_err %#x\n", type,
Christoph Hellwigcfeb91b2015-12-11 11:54:28 -08001115 ib_wc_status_msg(wc->status), wc->status,
1116 wc->vendor_err);
1117
1118 if (iser_conn->iscsi_conn)
1119 iscsi_conn_failure(iser_conn->iscsi_conn,
1120 ISCSI_ERR_CONN_FAILED);
1121 } else {
1122 iser_dbg("%s failure: %s (%d)\n", type,
1123 ib_wc_status_msg(wc->status), wc->status);
1124 }
1125}