blob: 4a4155640d516252fba99c5728bb794e005218cf [file] [log] [blame]
Bart Van Asschea42d9852011-10-14 01:30:46 +00001/*
2 * Copyright (c) 2006 - 2009 Mellanox Technology Inc. All rights reserved.
3 * Copyright (C) 2008 - 2011 Bart Van Assche <bvanassche@acm.org>.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
32 *
33 */
34
35#include <linux/module.h>
36#include <linux/init.h>
37#include <linux/slab.h>
38#include <linux/err.h>
39#include <linux/ctype.h>
40#include <linux/kthread.h>
41#include <linux/string.h>
42#include <linux/delay.h>
43#include <linux/atomic.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020044#include <scsi/scsi_proto.h>
Bart Van Asschea42d9852011-10-14 01:30:46 +000045#include <scsi/scsi_tcq.h>
Bart Van Asschea42d9852011-10-14 01:30:46 +000046#include <target/target_core_base.h>
Bart Van Asschea42d9852011-10-14 01:30:46 +000047#include <target/target_core_fabric.h>
Bart Van Asschea42d9852011-10-14 01:30:46 +000048#include "ib_srpt.h"
49
50/* Name of this kernel module. */
51#define DRV_NAME "ib_srpt"
52#define DRV_VERSION "2.0.0"
53#define DRV_RELDATE "2011-02-14"
54
55#define SRPT_ID_STRING "Linux SRP target"
56
57#undef pr_fmt
58#define pr_fmt(fmt) DRV_NAME " " fmt
59
60MODULE_AUTHOR("Vu Pham and Bart Van Assche");
61MODULE_DESCRIPTION("InfiniBand SCSI RDMA Protocol target "
62 "v" DRV_VERSION " (" DRV_RELDATE ")");
63MODULE_LICENSE("Dual BSD/GPL");
64
65/*
66 * Global Variables
67 */
68
69static u64 srpt_service_guid;
Roland Dreier486d8b92012-02-02 12:55:58 -080070static DEFINE_SPINLOCK(srpt_dev_lock); /* Protects srpt_dev_list. */
71static LIST_HEAD(srpt_dev_list); /* List of srpt_device structures. */
Bart Van Asschea42d9852011-10-14 01:30:46 +000072
73static unsigned srp_max_req_size = DEFAULT_MAX_REQ_SIZE;
74module_param(srp_max_req_size, int, 0444);
75MODULE_PARM_DESC(srp_max_req_size,
76 "Maximum size of SRP request messages in bytes.");
77
78static int srpt_srq_size = DEFAULT_SRPT_SRQ_SIZE;
79module_param(srpt_srq_size, int, 0444);
80MODULE_PARM_DESC(srpt_srq_size,
81 "Shared receive queue (SRQ) size.");
82
83static int srpt_get_u64_x(char *buffer, struct kernel_param *kp)
84{
85 return sprintf(buffer, "0x%016llx", *(u64 *)kp->arg);
86}
87module_param_call(srpt_service_guid, NULL, srpt_get_u64_x, &srpt_service_guid,
88 0444);
89MODULE_PARM_DESC(srpt_service_guid,
90 "Using this value for ioc_guid, id_ext, and cm_listen_id"
91 " instead of using the node_guid of the first HCA.");
92
93static struct ib_client srpt_client;
Bart Van Assche2c7f37f2016-02-11 11:06:55 -080094static void srpt_release_cmd(struct se_cmd *se_cmd);
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -080095static void srpt_free_ch(struct kref *kref);
Bart Van Asschea42d9852011-10-14 01:30:46 +000096static int srpt_queue_status(struct se_cmd *cmd);
Christoph Hellwig59fae4d2015-09-29 13:00:44 +020097static void srpt_recv_done(struct ib_cq *cq, struct ib_wc *wc);
98static void srpt_send_done(struct ib_cq *cq, struct ib_wc *wc);
Bart Van Assche387add42016-02-11 11:10:09 -080099static void srpt_process_wait_list(struct srpt_rdma_ch *ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000100
Bart Van Asschef130c222016-02-11 11:05:38 -0800101/*
102 * The only allowed channel state changes are those that change the channel
103 * state into a state with a higher numerical value. Hence the new > prev test.
Bart Van Asschea42d9852011-10-14 01:30:46 +0000104 */
Bart Van Asschef130c222016-02-11 11:05:38 -0800105static bool srpt_set_ch_state(struct srpt_rdma_ch *ch, enum rdma_ch_state new)
Bart Van Asschea42d9852011-10-14 01:30:46 +0000106{
107 unsigned long flags;
108 enum rdma_ch_state prev;
Bart Van Asschef130c222016-02-11 11:05:38 -0800109 bool changed = false;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000110
111 spin_lock_irqsave(&ch->spinlock, flags);
112 prev = ch->state;
Bart Van Asschef130c222016-02-11 11:05:38 -0800113 if (new > prev) {
Bart Van Asschea42d9852011-10-14 01:30:46 +0000114 ch->state = new;
Bart Van Asschef130c222016-02-11 11:05:38 -0800115 changed = true;
116 }
Bart Van Asschea42d9852011-10-14 01:30:46 +0000117 spin_unlock_irqrestore(&ch->spinlock, flags);
Bart Van Asschef130c222016-02-11 11:05:38 -0800118
119 return changed;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000120}
121
122/**
123 * srpt_event_handler() - Asynchronous IB event callback function.
124 *
125 * Callback function called by the InfiniBand core when an asynchronous IB
126 * event occurs. This callback may occur in interrupt context. See also
127 * section 11.5.2, Set Asynchronous Event Handler in the InfiniBand
128 * Architecture Specification.
129 */
130static void srpt_event_handler(struct ib_event_handler *handler,
131 struct ib_event *event)
132{
133 struct srpt_device *sdev;
134 struct srpt_port *sport;
135
136 sdev = ib_get_client_data(event->device, &srpt_client);
137 if (!sdev || sdev->device != event->device)
138 return;
139
140 pr_debug("ASYNC event= %d on device= %s\n", event->event,
Bart Van Asschef68cba4e92016-02-11 11:04:20 -0800141 sdev->device->name);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000142
143 switch (event->event) {
144 case IB_EVENT_PORT_ERR:
145 if (event->element.port_num <= sdev->device->phys_port_cnt) {
146 sport = &sdev->port[event->element.port_num - 1];
147 sport->lid = 0;
148 sport->sm_lid = 0;
149 }
150 break;
151 case IB_EVENT_PORT_ACTIVE:
152 case IB_EVENT_LID_CHANGE:
153 case IB_EVENT_PKEY_CHANGE:
154 case IB_EVENT_SM_CHANGE:
155 case IB_EVENT_CLIENT_REREGISTER:
Doug Ledford2aa1cf62014-08-12 19:20:10 -0400156 case IB_EVENT_GID_CHANGE:
Bart Van Asschea42d9852011-10-14 01:30:46 +0000157 /* Refresh port data asynchronously. */
158 if (event->element.port_num <= sdev->device->phys_port_cnt) {
159 sport = &sdev->port[event->element.port_num - 1];
160 if (!sport->lid && !sport->sm_lid)
161 schedule_work(&sport->work);
162 }
163 break;
164 default:
Doug Ledford9f5d32a2014-10-20 18:25:15 -0400165 pr_err("received unrecognized IB event %d\n",
Bart Van Asschea42d9852011-10-14 01:30:46 +0000166 event->event);
167 break;
168 }
169}
170
171/**
172 * srpt_srq_event() - SRQ event callback function.
173 */
174static void srpt_srq_event(struct ib_event *event, void *ctx)
175{
Doug Ledford9f5d32a2014-10-20 18:25:15 -0400176 pr_info("SRQ event %d\n", event->event);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000177}
178
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -0800179static const char *get_ch_state_name(enum rdma_ch_state s)
180{
181 switch (s) {
182 case CH_CONNECTING:
183 return "connecting";
184 case CH_LIVE:
185 return "live";
186 case CH_DISCONNECTING:
187 return "disconnecting";
188 case CH_DRAINING:
189 return "draining";
190 case CH_DISCONNECTED:
191 return "disconnected";
192 }
193 return "???";
194}
195
Bart Van Asschea42d9852011-10-14 01:30:46 +0000196/**
197 * srpt_qp_event() - QP event callback function.
198 */
199static void srpt_qp_event(struct ib_event *event, struct srpt_rdma_ch *ch)
200{
201 pr_debug("QP event %d on cm_id=%p sess_name=%s state=%d\n",
Bart Van Assche33912d72016-02-11 11:04:43 -0800202 event->event, ch->cm_id, ch->sess_name, ch->state);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000203
204 switch (event->event) {
205 case IB_EVENT_COMM_EST:
206 ib_cm_notify(ch->cm_id, event->event);
207 break;
208 case IB_EVENT_QP_LAST_WQE_REACHED:
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -0800209 pr_debug("%s-%d, state %s: received Last WQE event.\n",
210 ch->sess_name, ch->qp->qp_num,
211 get_ch_state_name(ch->state));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000212 break;
213 default:
Doug Ledford9f5d32a2014-10-20 18:25:15 -0400214 pr_err("received unrecognized IB QP event %d\n", event->event);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000215 break;
216 }
217}
218
219/**
220 * srpt_set_ioc() - Helper function for initializing an IOUnitInfo structure.
221 *
222 * @slot: one-based slot number.
223 * @value: four-bit value.
224 *
225 * Copies the lowest four bits of value in element slot of the array of four
226 * bit elements called c_list (controller list). The index slot is one-based.
227 */
228static void srpt_set_ioc(u8 *c_list, u32 slot, u8 value)
229{
230 u16 id;
231 u8 tmp;
232
233 id = (slot - 1) / 2;
234 if (slot & 0x1) {
235 tmp = c_list[id] & 0xf;
236 c_list[id] = (value << 4) | tmp;
237 } else {
238 tmp = c_list[id] & 0xf0;
239 c_list[id] = (value & 0xf) | tmp;
240 }
241}
242
243/**
244 * srpt_get_class_port_info() - Copy ClassPortInfo to a management datagram.
245 *
246 * See also section 16.3.3.1 ClassPortInfo in the InfiniBand Architecture
247 * Specification.
248 */
249static void srpt_get_class_port_info(struct ib_dm_mad *mad)
250{
251 struct ib_class_port_info *cif;
252
253 cif = (struct ib_class_port_info *)mad->data;
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800254 memset(cif, 0, sizeof(*cif));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000255 cif->base_version = 1;
256 cif->class_version = 1;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000257
Erez Shitrit507f6af2016-05-25 22:02:04 +0300258 ib_set_cpi_resp_time(cif, 20);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000259 mad->mad_hdr.status = 0;
260}
261
262/**
263 * srpt_get_iou() - Write IOUnitInfo to a management datagram.
264 *
265 * See also section 16.3.3.3 IOUnitInfo in the InfiniBand Architecture
266 * Specification. See also section B.7, table B.6 in the SRP r16a document.
267 */
268static void srpt_get_iou(struct ib_dm_mad *mad)
269{
270 struct ib_dm_iou_info *ioui;
271 u8 slot;
272 int i;
273
274 ioui = (struct ib_dm_iou_info *)mad->data;
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530275 ioui->change_id = cpu_to_be16(1);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000276 ioui->max_controllers = 16;
277
278 /* set present for slot 1 and empty for the rest */
279 srpt_set_ioc(ioui->controller_list, 1, 1);
280 for (i = 1, slot = 2; i < 16; i++, slot++)
281 srpt_set_ioc(ioui->controller_list, slot, 0);
282
283 mad->mad_hdr.status = 0;
284}
285
286/**
287 * srpt_get_ioc() - Write IOControllerprofile to a management datagram.
288 *
289 * See also section 16.3.3.4 IOControllerProfile in the InfiniBand
290 * Architecture Specification. See also section B.7, table B.7 in the SRP
291 * r16a document.
292 */
293static void srpt_get_ioc(struct srpt_port *sport, u32 slot,
294 struct ib_dm_mad *mad)
295{
296 struct srpt_device *sdev = sport->sdev;
297 struct ib_dm_ioc_profile *iocp;
298
299 iocp = (struct ib_dm_ioc_profile *)mad->data;
300
301 if (!slot || slot > 16) {
302 mad->mad_hdr.status
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530303 = cpu_to_be16(DM_MAD_STATUS_INVALID_FIELD);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000304 return;
305 }
306
307 if (slot > 2) {
308 mad->mad_hdr.status
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530309 = cpu_to_be16(DM_MAD_STATUS_NO_IOC);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000310 return;
311 }
312
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800313 memset(iocp, 0, sizeof(*iocp));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000314 strcpy(iocp->id_string, SRPT_ID_STRING);
315 iocp->guid = cpu_to_be64(srpt_service_guid);
Or Gerlitz4a061b22015-12-18 10:59:46 +0200316 iocp->vendor_id = cpu_to_be32(sdev->device->attrs.vendor_id);
317 iocp->device_id = cpu_to_be32(sdev->device->attrs.vendor_part_id);
318 iocp->device_version = cpu_to_be16(sdev->device->attrs.hw_ver);
319 iocp->subsys_vendor_id = cpu_to_be32(sdev->device->attrs.vendor_id);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000320 iocp->subsys_device_id = 0x0;
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530321 iocp->io_class = cpu_to_be16(SRP_REV16A_IB_IO_CLASS);
322 iocp->io_subclass = cpu_to_be16(SRP_IO_SUBCLASS);
323 iocp->protocol = cpu_to_be16(SRP_PROTOCOL);
324 iocp->protocol_version = cpu_to_be16(SRP_PROTOCOL_VERSION);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000325 iocp->send_queue_depth = cpu_to_be16(sdev->srq_size);
326 iocp->rdma_read_depth = 4;
327 iocp->send_size = cpu_to_be32(srp_max_req_size);
328 iocp->rdma_size = cpu_to_be32(min(sport->port_attrib.srp_max_rdma_size,
329 1U << 24));
330 iocp->num_svc_entries = 1;
331 iocp->op_cap_mask = SRP_SEND_TO_IOC | SRP_SEND_FROM_IOC |
332 SRP_RDMA_READ_FROM_IOC | SRP_RDMA_WRITE_FROM_IOC;
333
334 mad->mad_hdr.status = 0;
335}
336
337/**
338 * srpt_get_svc_entries() - Write ServiceEntries to a management datagram.
339 *
340 * See also section 16.3.3.5 ServiceEntries in the InfiniBand Architecture
341 * Specification. See also section B.7, table B.8 in the SRP r16a document.
342 */
343static void srpt_get_svc_entries(u64 ioc_guid,
344 u16 slot, u8 hi, u8 lo, struct ib_dm_mad *mad)
345{
346 struct ib_dm_svc_entries *svc_entries;
347
348 WARN_ON(!ioc_guid);
349
350 if (!slot || slot > 16) {
351 mad->mad_hdr.status
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530352 = cpu_to_be16(DM_MAD_STATUS_INVALID_FIELD);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000353 return;
354 }
355
356 if (slot > 2 || lo > hi || hi > 1) {
357 mad->mad_hdr.status
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530358 = cpu_to_be16(DM_MAD_STATUS_NO_IOC);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000359 return;
360 }
361
362 svc_entries = (struct ib_dm_svc_entries *)mad->data;
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800363 memset(svc_entries, 0, sizeof(*svc_entries));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000364 svc_entries->service_entries[0].id = cpu_to_be64(ioc_guid);
365 snprintf(svc_entries->service_entries[0].name,
366 sizeof(svc_entries->service_entries[0].name),
367 "%s%016llx",
368 SRP_SERVICE_NAME_PREFIX,
369 ioc_guid);
370
371 mad->mad_hdr.status = 0;
372}
373
374/**
375 * srpt_mgmt_method_get() - Process a received management datagram.
376 * @sp: source port through which the MAD has been received.
377 * @rq_mad: received MAD.
378 * @rsp_mad: response MAD.
379 */
380static void srpt_mgmt_method_get(struct srpt_port *sp, struct ib_mad *rq_mad,
381 struct ib_dm_mad *rsp_mad)
382{
383 u16 attr_id;
384 u32 slot;
385 u8 hi, lo;
386
387 attr_id = be16_to_cpu(rq_mad->mad_hdr.attr_id);
388 switch (attr_id) {
389 case DM_ATTR_CLASS_PORT_INFO:
390 srpt_get_class_port_info(rsp_mad);
391 break;
392 case DM_ATTR_IOU_INFO:
393 srpt_get_iou(rsp_mad);
394 break;
395 case DM_ATTR_IOC_PROFILE:
396 slot = be32_to_cpu(rq_mad->mad_hdr.attr_mod);
397 srpt_get_ioc(sp, slot, rsp_mad);
398 break;
399 case DM_ATTR_SVC_ENTRIES:
400 slot = be32_to_cpu(rq_mad->mad_hdr.attr_mod);
401 hi = (u8) ((slot >> 8) & 0xff);
402 lo = (u8) (slot & 0xff);
403 slot = (u16) ((slot >> 16) & 0xffff);
404 srpt_get_svc_entries(srpt_service_guid,
405 slot, hi, lo, rsp_mad);
406 break;
407 default:
408 rsp_mad->mad_hdr.status =
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530409 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD_ATTR);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000410 break;
411 }
412}
413
414/**
415 * srpt_mad_send_handler() - Post MAD-send callback function.
416 */
417static void srpt_mad_send_handler(struct ib_mad_agent *mad_agent,
418 struct ib_mad_send_wc *mad_wc)
419{
420 ib_destroy_ah(mad_wc->send_buf->ah);
421 ib_free_send_mad(mad_wc->send_buf);
422}
423
424/**
425 * srpt_mad_recv_handler() - MAD reception callback function.
426 */
427static void srpt_mad_recv_handler(struct ib_mad_agent *mad_agent,
Christoph Hellwigca281262016-01-04 14:15:58 +0100428 struct ib_mad_send_buf *send_buf,
Bart Van Asschea42d9852011-10-14 01:30:46 +0000429 struct ib_mad_recv_wc *mad_wc)
430{
431 struct srpt_port *sport = (struct srpt_port *)mad_agent->context;
432 struct ib_ah *ah;
433 struct ib_mad_send_buf *rsp;
434 struct ib_dm_mad *dm_mad;
435
436 if (!mad_wc || !mad_wc->recv_buf.mad)
437 return;
438
439 ah = ib_create_ah_from_wc(mad_agent->qp->pd, mad_wc->wc,
440 mad_wc->recv_buf.grh, mad_agent->port_num);
441 if (IS_ERR(ah))
442 goto err;
443
444 BUILD_BUG_ON(offsetof(struct ib_dm_mad, data) != IB_MGMT_DEVICE_HDR);
445
446 rsp = ib_create_send_mad(mad_agent, mad_wc->wc->src_qp,
447 mad_wc->wc->pkey_index, 0,
448 IB_MGMT_DEVICE_HDR, IB_MGMT_DEVICE_DATA,
Ira Weinyda2dfaa2015-06-06 14:38:28 -0400449 GFP_KERNEL,
450 IB_MGMT_BASE_VERSION);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000451 if (IS_ERR(rsp))
452 goto err_rsp;
453
454 rsp->ah = ah;
455
456 dm_mad = rsp->mad;
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800457 memcpy(dm_mad, mad_wc->recv_buf.mad, sizeof(*dm_mad));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000458 dm_mad->mad_hdr.method = IB_MGMT_METHOD_GET_RESP;
459 dm_mad->mad_hdr.status = 0;
460
461 switch (mad_wc->recv_buf.mad->mad_hdr.method) {
462 case IB_MGMT_METHOD_GET:
463 srpt_mgmt_method_get(sport, mad_wc->recv_buf.mad, dm_mad);
464 break;
465 case IB_MGMT_METHOD_SET:
466 dm_mad->mad_hdr.status =
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530467 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD_ATTR);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000468 break;
469 default:
470 dm_mad->mad_hdr.status =
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +0530471 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000472 break;
473 }
474
475 if (!ib_post_send_mad(rsp, NULL)) {
476 ib_free_recv_mad(mad_wc);
477 /* will destroy_ah & free_send_mad in send completion */
478 return;
479 }
480
481 ib_free_send_mad(rsp);
482
483err_rsp:
484 ib_destroy_ah(ah);
485err:
486 ib_free_recv_mad(mad_wc);
487}
488
489/**
490 * srpt_refresh_port() - Configure a HCA port.
491 *
492 * Enable InfiniBand management datagram processing, update the cached sm_lid,
493 * lid and gid values, and register a callback function for processing MADs
494 * on the specified port.
495 *
496 * Note: It is safe to call this function more than once for the same port.
497 */
498static int srpt_refresh_port(struct srpt_port *sport)
499{
500 struct ib_mad_reg_req reg_req;
501 struct ib_port_modify port_modify;
502 struct ib_port_attr port_attr;
503 int ret;
504
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800505 memset(&port_modify, 0, sizeof(port_modify));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000506 port_modify.set_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP;
507 port_modify.clr_port_cap_mask = 0;
508
509 ret = ib_modify_port(sport->sdev->device, sport->port, 0, &port_modify);
510 if (ret)
511 goto err_mod_port;
512
513 ret = ib_query_port(sport->sdev->device, sport->port, &port_attr);
514 if (ret)
515 goto err_query_port;
516
517 sport->sm_lid = port_attr.sm_lid;
518 sport->lid = port_attr.lid;
519
Matan Barak55ee3ab2015-10-15 18:38:45 +0300520 ret = ib_query_gid(sport->sdev->device, sport->port, 0, &sport->gid,
521 NULL);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000522 if (ret)
523 goto err_query_port;
524
525 if (!sport->mad_agent) {
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800526 memset(&reg_req, 0, sizeof(reg_req));
Bart Van Asschea42d9852011-10-14 01:30:46 +0000527 reg_req.mgmt_class = IB_MGMT_CLASS_DEVICE_MGMT;
528 reg_req.mgmt_class_version = IB_MGMT_BASE_VERSION;
529 set_bit(IB_MGMT_METHOD_GET, reg_req.method_mask);
530 set_bit(IB_MGMT_METHOD_SET, reg_req.method_mask);
531
532 sport->mad_agent = ib_register_mad_agent(sport->sdev->device,
533 sport->port,
534 IB_QPT_GSI,
535 &reg_req, 0,
536 srpt_mad_send_handler,
537 srpt_mad_recv_handler,
Ira Weiny0f29b462014-08-08 19:00:55 -0400538 sport, 0);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000539 if (IS_ERR(sport->mad_agent)) {
540 ret = PTR_ERR(sport->mad_agent);
541 sport->mad_agent = NULL;
542 goto err_query_port;
543 }
544 }
545
546 return 0;
547
548err_query_port:
549
550 port_modify.set_port_cap_mask = 0;
551 port_modify.clr_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP;
552 ib_modify_port(sport->sdev->device, sport->port, 0, &port_modify);
553
554err_mod_port:
555
556 return ret;
557}
558
559/**
560 * srpt_unregister_mad_agent() - Unregister MAD callback functions.
561 *
562 * Note: It is safe to call this function more than once for the same device.
563 */
564static void srpt_unregister_mad_agent(struct srpt_device *sdev)
565{
566 struct ib_port_modify port_modify = {
567 .clr_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP,
568 };
569 struct srpt_port *sport;
570 int i;
571
572 for (i = 1; i <= sdev->device->phys_port_cnt; i++) {
573 sport = &sdev->port[i - 1];
574 WARN_ON(sport->port != i);
575 if (ib_modify_port(sdev->device, i, 0, &port_modify) < 0)
Doug Ledford9f5d32a2014-10-20 18:25:15 -0400576 pr_err("disabling MAD processing failed.\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +0000577 if (sport->mad_agent) {
578 ib_unregister_mad_agent(sport->mad_agent);
579 sport->mad_agent = NULL;
580 }
581 }
582}
583
584/**
585 * srpt_alloc_ioctx() - Allocate an SRPT I/O context structure.
586 */
587static struct srpt_ioctx *srpt_alloc_ioctx(struct srpt_device *sdev,
588 int ioctx_size, int dma_size,
589 enum dma_data_direction dir)
590{
591 struct srpt_ioctx *ioctx;
592
593 ioctx = kmalloc(ioctx_size, GFP_KERNEL);
594 if (!ioctx)
595 goto err;
596
597 ioctx->buf = kmalloc(dma_size, GFP_KERNEL);
598 if (!ioctx->buf)
599 goto err_free_ioctx;
600
601 ioctx->dma = ib_dma_map_single(sdev->device, ioctx->buf, dma_size, dir);
602 if (ib_dma_mapping_error(sdev->device, ioctx->dma))
603 goto err_free_buf;
604
605 return ioctx;
606
607err_free_buf:
608 kfree(ioctx->buf);
609err_free_ioctx:
610 kfree(ioctx);
611err:
612 return NULL;
613}
614
615/**
616 * srpt_free_ioctx() - Free an SRPT I/O context structure.
617 */
618static void srpt_free_ioctx(struct srpt_device *sdev, struct srpt_ioctx *ioctx,
619 int dma_size, enum dma_data_direction dir)
620{
621 if (!ioctx)
622 return;
623
624 ib_dma_unmap_single(sdev->device, ioctx->dma, dma_size, dir);
625 kfree(ioctx->buf);
626 kfree(ioctx);
627}
628
629/**
630 * srpt_alloc_ioctx_ring() - Allocate a ring of SRPT I/O context structures.
631 * @sdev: Device to allocate the I/O context ring for.
632 * @ring_size: Number of elements in the I/O context ring.
633 * @ioctx_size: I/O context size.
634 * @dma_size: DMA buffer size.
635 * @dir: DMA data direction.
636 */
637static struct srpt_ioctx **srpt_alloc_ioctx_ring(struct srpt_device *sdev,
638 int ring_size, int ioctx_size,
639 int dma_size, enum dma_data_direction dir)
640{
641 struct srpt_ioctx **ring;
642 int i;
643
644 WARN_ON(ioctx_size != sizeof(struct srpt_recv_ioctx)
645 && ioctx_size != sizeof(struct srpt_send_ioctx));
646
647 ring = kmalloc(ring_size * sizeof(ring[0]), GFP_KERNEL);
648 if (!ring)
649 goto out;
650 for (i = 0; i < ring_size; ++i) {
651 ring[i] = srpt_alloc_ioctx(sdev, ioctx_size, dma_size, dir);
652 if (!ring[i])
653 goto err;
654 ring[i]->index = i;
655 }
656 goto out;
657
658err:
659 while (--i >= 0)
660 srpt_free_ioctx(sdev, ring[i], dma_size, dir);
661 kfree(ring);
Jesper Juhl715252d2012-02-04 23:49:40 +0100662 ring = NULL;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000663out:
664 return ring;
665}
666
667/**
668 * srpt_free_ioctx_ring() - Free the ring of SRPT I/O context structures.
669 */
670static void srpt_free_ioctx_ring(struct srpt_ioctx **ioctx_ring,
671 struct srpt_device *sdev, int ring_size,
672 int dma_size, enum dma_data_direction dir)
673{
674 int i;
675
676 for (i = 0; i < ring_size; ++i)
677 srpt_free_ioctx(sdev, ioctx_ring[i], dma_size, dir);
678 kfree(ioctx_ring);
679}
680
681/**
682 * srpt_get_cmd_state() - Get the state of a SCSI command.
683 */
684static enum srpt_command_state srpt_get_cmd_state(struct srpt_send_ioctx *ioctx)
685{
686 enum srpt_command_state state;
687 unsigned long flags;
688
689 BUG_ON(!ioctx);
690
691 spin_lock_irqsave(&ioctx->spinlock, flags);
692 state = ioctx->state;
693 spin_unlock_irqrestore(&ioctx->spinlock, flags);
694 return state;
695}
696
697/**
698 * srpt_set_cmd_state() - Set the state of a SCSI command.
699 *
700 * Does not modify the state of aborted commands. Returns the previous command
701 * state.
702 */
703static enum srpt_command_state srpt_set_cmd_state(struct srpt_send_ioctx *ioctx,
704 enum srpt_command_state new)
705{
706 enum srpt_command_state previous;
707 unsigned long flags;
708
709 BUG_ON(!ioctx);
710
711 spin_lock_irqsave(&ioctx->spinlock, flags);
712 previous = ioctx->state;
713 if (previous != SRPT_STATE_DONE)
714 ioctx->state = new;
715 spin_unlock_irqrestore(&ioctx->spinlock, flags);
716
717 return previous;
718}
719
720/**
721 * srpt_test_and_set_cmd_state() - Test and set the state of a command.
722 *
723 * Returns true if and only if the previous command state was equal to 'old'.
724 */
725static bool srpt_test_and_set_cmd_state(struct srpt_send_ioctx *ioctx,
726 enum srpt_command_state old,
727 enum srpt_command_state new)
728{
729 enum srpt_command_state previous;
730 unsigned long flags;
731
732 WARN_ON(!ioctx);
733 WARN_ON(old == SRPT_STATE_DONE);
734 WARN_ON(new == SRPT_STATE_NEW);
735
736 spin_lock_irqsave(&ioctx->spinlock, flags);
737 previous = ioctx->state;
738 if (previous == old)
739 ioctx->state = new;
740 spin_unlock_irqrestore(&ioctx->spinlock, flags);
741 return previous == old;
742}
743
744/**
745 * srpt_post_recv() - Post an IB receive request.
746 */
747static int srpt_post_recv(struct srpt_device *sdev,
748 struct srpt_recv_ioctx *ioctx)
749{
750 struct ib_sge list;
751 struct ib_recv_wr wr, *bad_wr;
752
753 BUG_ON(!sdev);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000754 list.addr = ioctx->ioctx.dma;
755 list.length = srp_max_req_size;
Jason Gunthorpe5a783952015-07-30 17:22:24 -0600756 list.lkey = sdev->pd->local_dma_lkey;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000757
Christoph Hellwig59fae4d2015-09-29 13:00:44 +0200758 ioctx->ioctx.cqe.done = srpt_recv_done;
759 wr.wr_cqe = &ioctx->ioctx.cqe;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000760 wr.next = NULL;
761 wr.sg_list = &list;
762 wr.num_sge = 1;
763
764 return ib_post_srq_recv(sdev->srq, &wr, &bad_wr);
765}
766
767/**
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -0800768 * srpt_zerolength_write() - Perform a zero-length RDMA write.
769 *
770 * A quote from the InfiniBand specification: C9-88: For an HCA responder
771 * using Reliable Connection service, for each zero-length RDMA READ or WRITE
772 * request, the R_Key shall not be validated, even if the request includes
773 * Immediate data.
774 */
775static int srpt_zerolength_write(struct srpt_rdma_ch *ch)
776{
777 struct ib_send_wr wr, *bad_wr;
778
779 memset(&wr, 0, sizeof(wr));
780 wr.opcode = IB_WR_RDMA_WRITE;
781 wr.wr_cqe = &ch->zw_cqe;
782 wr.send_flags = IB_SEND_SIGNALED;
783 return ib_post_send(ch->qp, &wr, &bad_wr);
784}
785
786static void srpt_zerolength_write_done(struct ib_cq *cq, struct ib_wc *wc)
787{
788 struct srpt_rdma_ch *ch = cq->cq_context;
789
Bart Van Assche387add42016-02-11 11:10:09 -0800790 if (wc->status == IB_WC_SUCCESS) {
791 srpt_process_wait_list(ch);
792 } else {
793 if (srpt_set_ch_state(ch, CH_DISCONNECTED))
794 schedule_work(&ch->release_work);
795 else
Dan Carpenter56586002016-03-18 08:41:59 +0300796 WARN_ONCE(1, "%s-%d\n", ch->sess_name, ch->qp->qp_num);
Bart Van Assche387add42016-02-11 11:10:09 -0800797 }
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -0800798}
799
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200800static int srpt_alloc_rw_ctxs(struct srpt_send_ioctx *ioctx,
801 struct srp_direct_buf *db, int nbufs, struct scatterlist **sg,
802 unsigned *sg_cnt)
803{
804 enum dma_data_direction dir = target_reverse_dma_direction(&ioctx->cmd);
805 struct srpt_rdma_ch *ch = ioctx->ch;
806 struct scatterlist *prev = NULL;
807 unsigned prev_nents;
808 int ret, i;
809
810 if (nbufs == 1) {
811 ioctx->rw_ctxs = &ioctx->s_rw_ctx;
812 } else {
813 ioctx->rw_ctxs = kmalloc_array(nbufs, sizeof(*ioctx->rw_ctxs),
814 GFP_KERNEL);
815 if (!ioctx->rw_ctxs)
816 return -ENOMEM;
817 }
818
819 for (i = ioctx->n_rw_ctx; i < nbufs; i++, db++) {
820 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
821 u64 remote_addr = be64_to_cpu(db->va);
822 u32 size = be32_to_cpu(db->len);
823 u32 rkey = be32_to_cpu(db->key);
824
825 ret = target_alloc_sgl(&ctx->sg, &ctx->nents, size, false,
826 i < nbufs - 1);
827 if (ret)
828 goto unwind;
829
830 ret = rdma_rw_ctx_init(&ctx->rw, ch->qp, ch->sport->port,
831 ctx->sg, ctx->nents, 0, remote_addr, rkey, dir);
832 if (ret < 0) {
833 target_free_sgl(ctx->sg, ctx->nents);
834 goto unwind;
835 }
836
837 ioctx->n_rdma += ret;
838 ioctx->n_rw_ctx++;
839
840 if (prev) {
841 sg_unmark_end(&prev[prev_nents - 1]);
842 sg_chain(prev, prev_nents + 1, ctx->sg);
843 } else {
844 *sg = ctx->sg;
845 }
846
847 prev = ctx->sg;
848 prev_nents = ctx->nents;
849
850 *sg_cnt += ctx->nents;
851 }
852
853 return 0;
854
855unwind:
856 while (--i >= 0) {
857 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
858
859 rdma_rw_ctx_destroy(&ctx->rw, ch->qp, ch->sport->port,
860 ctx->sg, ctx->nents, dir);
861 target_free_sgl(ctx->sg, ctx->nents);
862 }
863 if (ioctx->rw_ctxs != &ioctx->s_rw_ctx)
864 kfree(ioctx->rw_ctxs);
865 return ret;
866}
867
868static void srpt_free_rw_ctxs(struct srpt_rdma_ch *ch,
869 struct srpt_send_ioctx *ioctx)
870{
871 enum dma_data_direction dir = target_reverse_dma_direction(&ioctx->cmd);
872 int i;
873
874 for (i = 0; i < ioctx->n_rw_ctx; i++) {
875 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
876
877 rdma_rw_ctx_destroy(&ctx->rw, ch->qp, ch->sport->port,
878 ctx->sg, ctx->nents, dir);
879 target_free_sgl(ctx->sg, ctx->nents);
880 }
881
882 if (ioctx->rw_ctxs != &ioctx->s_rw_ctx)
883 kfree(ioctx->rw_ctxs);
884}
885
886static inline void *srpt_get_desc_buf(struct srp_cmd *srp_cmd)
887{
888 /*
889 * The pointer computations below will only be compiled correctly
890 * if srp_cmd::add_data is declared as s8*, u8*, s8[] or u8[], so check
891 * whether srp_cmd::add_data has been declared as a byte pointer.
892 */
893 BUILD_BUG_ON(!__same_type(srp_cmd->add_data[0], (s8)0) &&
894 !__same_type(srp_cmd->add_data[0], (u8)0));
895
896 /*
897 * According to the SRP spec, the lower two bits of the 'ADDITIONAL
898 * CDB LENGTH' field are reserved and the size in bytes of this field
899 * is four times the value specified in bits 3..7. Hence the "& ~3".
900 */
901 return srp_cmd->add_data + (srp_cmd->add_cdb_len & ~3);
902}
903
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -0800904/**
Bart Van Asschea42d9852011-10-14 01:30:46 +0000905 * srpt_get_desc_tbl() - Parse the data descriptors of an SRP_CMD request.
906 * @ioctx: Pointer to the I/O context associated with the request.
907 * @srp_cmd: Pointer to the SRP_CMD request data.
908 * @dir: Pointer to the variable to which the transfer direction will be
909 * written.
910 * @data_len: Pointer to the variable to which the total data length of all
911 * descriptors in the SRP_CMD request will be written.
912 *
913 * This function initializes ioctx->nrbuf and ioctx->r_bufs.
914 *
915 * Returns -EINVAL when the SRP_CMD request contains inconsistent descriptors;
916 * -ENOMEM when memory allocation fails and zero upon success.
917 */
918static int srpt_get_desc_tbl(struct srpt_send_ioctx *ioctx,
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200919 struct srp_cmd *srp_cmd, enum dma_data_direction *dir,
920 struct scatterlist **sg, unsigned *sg_cnt, u64 *data_len)
Bart Van Asschea42d9852011-10-14 01:30:46 +0000921{
Bart Van Asschea42d9852011-10-14 01:30:46 +0000922 BUG_ON(!dir);
923 BUG_ON(!data_len);
924
Bart Van Asschea42d9852011-10-14 01:30:46 +0000925 /*
926 * The lower four bits of the buffer format field contain the DATA-IN
927 * buffer descriptor format, and the highest four bits contain the
928 * DATA-OUT buffer descriptor format.
929 */
Bart Van Asschea42d9852011-10-14 01:30:46 +0000930 if (srp_cmd->buf_fmt & 0xf)
931 /* DATA-IN: transfer data from target to initiator (read). */
932 *dir = DMA_FROM_DEVICE;
933 else if (srp_cmd->buf_fmt >> 4)
934 /* DATA-OUT: transfer data from initiator to target (write). */
935 *dir = DMA_TO_DEVICE;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200936 else
937 *dir = DMA_NONE;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000938
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200939 /* initialize data_direction early as srpt_alloc_rw_ctxs needs it */
940 ioctx->cmd.data_direction = *dir;
941
Bart Van Asschea42d9852011-10-14 01:30:46 +0000942 if (((srp_cmd->buf_fmt & 0xf) == SRP_DATA_DESC_DIRECT) ||
943 ((srp_cmd->buf_fmt >> 4) == SRP_DATA_DESC_DIRECT)) {
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200944 struct srp_direct_buf *db = srpt_get_desc_buf(srp_cmd);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000945
Bart Van Asschea42d9852011-10-14 01:30:46 +0000946 *data_len = be32_to_cpu(db->len);
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200947 return srpt_alloc_rw_ctxs(ioctx, db, 1, sg, sg_cnt);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000948 } else if (((srp_cmd->buf_fmt & 0xf) == SRP_DATA_DESC_INDIRECT) ||
949 ((srp_cmd->buf_fmt >> 4) == SRP_DATA_DESC_INDIRECT)) {
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200950 struct srp_indirect_buf *idb = srpt_get_desc_buf(srp_cmd);
951 int nbufs = be32_to_cpu(idb->table_desc.len) /
952 sizeof(struct srp_direct_buf);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000953
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200954 if (nbufs >
Bart Van Asschea42d9852011-10-14 01:30:46 +0000955 (srp_cmd->data_out_desc_cnt + srp_cmd->data_in_desc_cnt)) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -0400956 pr_err("received unsupported SRP_CMD request"
Bart Van Asschea42d9852011-10-14 01:30:46 +0000957 " type (%u out + %u in != %u / %zu)\n",
958 srp_cmd->data_out_desc_cnt,
959 srp_cmd->data_in_desc_cnt,
960 be32_to_cpu(idb->table_desc.len),
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200961 sizeof(struct srp_direct_buf));
962 return -EINVAL;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000963 }
964
Bart Van Asschea42d9852011-10-14 01:30:46 +0000965 *data_len = be32_to_cpu(idb->len);
Christoph Hellwigb99f8e42016-05-03 18:01:11 +0200966 return srpt_alloc_rw_ctxs(ioctx, idb->desc_list, nbufs,
967 sg, sg_cnt);
968 } else {
969 *data_len = 0;
970 return 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +0000971 }
Bart Van Asschea42d9852011-10-14 01:30:46 +0000972}
973
974/**
975 * srpt_init_ch_qp() - Initialize queue pair attributes.
976 *
977 * Initialized the attributes of queue pair 'qp' by allowing local write,
978 * remote read and remote write. Also transitions 'qp' to state IB_QPS_INIT.
979 */
980static int srpt_init_ch_qp(struct srpt_rdma_ch *ch, struct ib_qp *qp)
981{
982 struct ib_qp_attr *attr;
983 int ret;
984
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -0800985 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +0000986 if (!attr)
987 return -ENOMEM;
988
989 attr->qp_state = IB_QPS_INIT;
990 attr->qp_access_flags = IB_ACCESS_LOCAL_WRITE | IB_ACCESS_REMOTE_READ |
991 IB_ACCESS_REMOTE_WRITE;
992 attr->port_num = ch->sport->port;
993 attr->pkey_index = 0;
994
995 ret = ib_modify_qp(qp, attr,
996 IB_QP_STATE | IB_QP_ACCESS_FLAGS | IB_QP_PORT |
997 IB_QP_PKEY_INDEX);
998
999 kfree(attr);
1000 return ret;
1001}
1002
1003/**
1004 * srpt_ch_qp_rtr() - Change the state of a channel to 'ready to receive' (RTR).
1005 * @ch: channel of the queue pair.
1006 * @qp: queue pair to change the state of.
1007 *
1008 * Returns zero upon success and a negative value upon failure.
1009 *
1010 * Note: currently a struct ib_qp_attr takes 136 bytes on a 64-bit system.
1011 * If this structure ever becomes larger, it might be necessary to allocate
1012 * it dynamically instead of on the stack.
1013 */
1014static int srpt_ch_qp_rtr(struct srpt_rdma_ch *ch, struct ib_qp *qp)
1015{
1016 struct ib_qp_attr qp_attr;
1017 int attr_mask;
1018 int ret;
1019
1020 qp_attr.qp_state = IB_QPS_RTR;
1021 ret = ib_cm_init_qp_attr(ch->cm_id, &qp_attr, &attr_mask);
1022 if (ret)
1023 goto out;
1024
1025 qp_attr.max_dest_rd_atomic = 4;
1026
1027 ret = ib_modify_qp(qp, &qp_attr, attr_mask);
1028
1029out:
1030 return ret;
1031}
1032
1033/**
1034 * srpt_ch_qp_rts() - Change the state of a channel to 'ready to send' (RTS).
1035 * @ch: channel of the queue pair.
1036 * @qp: queue pair to change the state of.
1037 *
1038 * Returns zero upon success and a negative value upon failure.
1039 *
1040 * Note: currently a struct ib_qp_attr takes 136 bytes on a 64-bit system.
1041 * If this structure ever becomes larger, it might be necessary to allocate
1042 * it dynamically instead of on the stack.
1043 */
1044static int srpt_ch_qp_rts(struct srpt_rdma_ch *ch, struct ib_qp *qp)
1045{
1046 struct ib_qp_attr qp_attr;
1047 int attr_mask;
1048 int ret;
1049
1050 qp_attr.qp_state = IB_QPS_RTS;
1051 ret = ib_cm_init_qp_attr(ch->cm_id, &qp_attr, &attr_mask);
1052 if (ret)
1053 goto out;
1054
1055 qp_attr.max_rd_atomic = 4;
1056
1057 ret = ib_modify_qp(qp, &qp_attr, attr_mask);
1058
1059out:
1060 return ret;
1061}
1062
1063/**
1064 * srpt_ch_qp_err() - Set the channel queue pair state to 'error'.
1065 */
1066static int srpt_ch_qp_err(struct srpt_rdma_ch *ch)
1067{
1068 struct ib_qp_attr qp_attr;
1069
1070 qp_attr.qp_state = IB_QPS_ERR;
1071 return ib_modify_qp(ch->qp, &qp_attr, IB_QP_STATE);
1072}
1073
1074/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00001075 * srpt_get_send_ioctx() - Obtain an I/O context for sending to the initiator.
1076 */
1077static struct srpt_send_ioctx *srpt_get_send_ioctx(struct srpt_rdma_ch *ch)
1078{
1079 struct srpt_send_ioctx *ioctx;
Bart Van Assche3c968882016-04-07 15:55:04 -07001080 unsigned long flags;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001081
1082 BUG_ON(!ch);
1083
Bart Van Assche3c968882016-04-07 15:55:04 -07001084 ioctx = NULL;
1085 spin_lock_irqsave(&ch->spinlock, flags);
1086 if (!list_empty(&ch->free_list)) {
1087 ioctx = list_first_entry(&ch->free_list,
1088 struct srpt_send_ioctx, free_list);
1089 list_del(&ioctx->free_list);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001090 }
Bart Van Assche3c968882016-04-07 15:55:04 -07001091 spin_unlock_irqrestore(&ch->spinlock, flags);
1092
1093 if (!ioctx)
1094 return ioctx;
1095
1096 BUG_ON(ioctx->ch != ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001097 spin_lock_init(&ioctx->spinlock);
1098 ioctx->state = SRPT_STATE_NEW;
Bart Van Assche3c968882016-04-07 15:55:04 -07001099 ioctx->n_rdma = 0;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001100 ioctx->n_rw_ctx = 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001101 init_completion(&ioctx->tx_done);
Bart Van Assche3c968882016-04-07 15:55:04 -07001102 ioctx->queue_status_only = false;
1103 /*
1104 * transport_init_se_cmd() does not initialize all fields, so do it
1105 * here.
1106 */
1107 memset(&ioctx->cmd, 0, sizeof(ioctx->cmd));
1108 memset(&ioctx->sense_data, 0, sizeof(ioctx->sense_data));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001109
1110 return ioctx;
1111}
1112
1113/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00001114 * srpt_abort_cmd() - Abort a SCSI command.
1115 * @ioctx: I/O context associated with the SCSI command.
1116 * @context: Preferred execution context.
1117 */
1118static int srpt_abort_cmd(struct srpt_send_ioctx *ioctx)
1119{
1120 enum srpt_command_state state;
1121 unsigned long flags;
1122
1123 BUG_ON(!ioctx);
1124
1125 /*
1126 * If the command is in a state where the target core is waiting for
Bart Van Assche49f40162016-02-11 11:07:11 -08001127 * the ib_srpt driver, change the state to the next state.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001128 */
1129
1130 spin_lock_irqsave(&ioctx->spinlock, flags);
1131 state = ioctx->state;
1132 switch (state) {
1133 case SRPT_STATE_NEED_DATA:
1134 ioctx->state = SRPT_STATE_DATA_IN;
1135 break;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001136 case SRPT_STATE_CMD_RSP_SENT:
1137 case SRPT_STATE_MGMT_RSP_SENT:
1138 ioctx->state = SRPT_STATE_DONE;
1139 break;
1140 default:
Bart Van Assche49f40162016-02-11 11:07:11 -08001141 WARN_ONCE(true, "%s: unexpected I/O context state %d\n",
1142 __func__, state);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001143 break;
1144 }
1145 spin_unlock_irqrestore(&ioctx->spinlock, flags);
1146
Bart Van Asschea42d9852011-10-14 01:30:46 +00001147 pr_debug("Aborting cmd with state %d and tag %lld\n", state,
Bart Van Assche649ee052015-04-14 13:26:44 +02001148 ioctx->cmd.tag);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001149
1150 switch (state) {
1151 case SRPT_STATE_NEW:
1152 case SRPT_STATE_DATA_IN:
1153 case SRPT_STATE_MGMT:
Bart Van Assche49f40162016-02-11 11:07:11 -08001154 case SRPT_STATE_DONE:
Bart Van Asschea42d9852011-10-14 01:30:46 +00001155 /*
1156 * Do nothing - defer abort processing until
1157 * srpt_queue_response() is invoked.
1158 */
Bart Van Asschea42d9852011-10-14 01:30:46 +00001159 break;
1160 case SRPT_STATE_NEED_DATA:
Bart Van Assche49f40162016-02-11 11:07:11 -08001161 pr_debug("tag %#llx: RDMA read error\n", ioctx->cmd.tag);
1162 transport_generic_request_failure(&ioctx->cmd,
1163 TCM_CHECK_CONDITION_ABORT_CMD);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001164 break;
1165 case SRPT_STATE_CMD_RSP_SENT:
1166 /*
1167 * SRP_RSP sending failed or the SRP_RSP send completion has
1168 * not been received in time.
1169 */
Bart Van Assche49f40162016-02-11 11:07:11 -08001170 transport_generic_free_cmd(&ioctx->cmd, 0);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001171 break;
1172 case SRPT_STATE_MGMT_RSP_SENT:
Bart Van Assche49f40162016-02-11 11:07:11 -08001173 transport_generic_free_cmd(&ioctx->cmd, 0);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001174 break;
1175 default:
Grant Grundler532ec6f2013-03-26 21:48:28 +00001176 WARN(1, "Unexpected command state (%d)", state);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001177 break;
1178 }
1179
Bart Van Asschea42d9852011-10-14 01:30:46 +00001180 return state;
1181}
1182
1183/**
Christoph Hellwige672a472012-07-08 15:58:43 -04001184 * XXX: what is now target_execute_cmd used to be asynchronous, and unmapping
1185 * the data that has been transferred via IB RDMA had to be postponed until the
Masanari Iida142ad5d2012-08-10 00:07:58 +00001186 * check_stop_free() callback. None of this is necessary anymore and needs to
Christoph Hellwige672a472012-07-08 15:58:43 -04001187 * be cleaned up.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001188 */
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001189static void srpt_rdma_read_done(struct ib_cq *cq, struct ib_wc *wc)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001190{
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001191 struct srpt_rdma_ch *ch = cq->cq_context;
1192 struct srpt_send_ioctx *ioctx =
Bart Van Assche19f57292015-12-31 09:56:43 +01001193 container_of(wc->wr_cqe, struct srpt_send_ioctx, rdma_cqe);
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001194
Bart Van Asschea42d9852011-10-14 01:30:46 +00001195 WARN_ON(ioctx->n_rdma <= 0);
1196 atomic_add(ioctx->n_rdma, &ch->sq_wr_avail);
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001197 ioctx->n_rdma = 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001198
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001199 if (unlikely(wc->status != IB_WC_SUCCESS)) {
1200 pr_info("RDMA_READ for ioctx 0x%p failed with status %d\n",
1201 ioctx, wc->status);
1202 srpt_abort_cmd(ioctx);
1203 return;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001204 }
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001205
1206 if (srpt_test_and_set_cmd_state(ioctx, SRPT_STATE_NEED_DATA,
1207 SRPT_STATE_DATA_IN))
1208 target_execute_cmd(&ioctx->cmd);
1209 else
1210 pr_err("%s[%d]: wrong state = %d\n", __func__,
1211 __LINE__, srpt_get_cmd_state(ioctx));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001212}
1213
Bart Van Asschea42d9852011-10-14 01:30:46 +00001214/**
1215 * srpt_build_cmd_rsp() - Build an SRP_RSP response.
1216 * @ch: RDMA channel through which the request has been received.
1217 * @ioctx: I/O context associated with the SRP_CMD request. The response will
1218 * be built in the buffer ioctx->buf points at and hence this function will
1219 * overwrite the request data.
1220 * @tag: tag of the request for which this response is being generated.
1221 * @status: value for the STATUS field of the SRP_RSP information unit.
1222 *
1223 * Returns the size in bytes of the SRP_RSP response.
1224 *
1225 * An SRP_RSP response contains a SCSI status or service response. See also
1226 * section 6.9 in the SRP r16a document for the format of an SRP_RSP
1227 * response. See also SPC-2 for more information about sense data.
1228 */
1229static int srpt_build_cmd_rsp(struct srpt_rdma_ch *ch,
1230 struct srpt_send_ioctx *ioctx, u64 tag,
1231 int status)
1232{
1233 struct srp_rsp *srp_rsp;
1234 const u8 *sense_data;
1235 int sense_data_len, max_sense_len;
1236
1237 /*
1238 * The lowest bit of all SAM-3 status codes is zero (see also
1239 * paragraph 5.3 in SAM-3).
1240 */
1241 WARN_ON(status & 1);
1242
1243 srp_rsp = ioctx->ioctx.buf;
1244 BUG_ON(!srp_rsp);
1245
1246 sense_data = ioctx->sense_data;
1247 sense_data_len = ioctx->cmd.scsi_sense_length;
1248 WARN_ON(sense_data_len > sizeof(ioctx->sense_data));
1249
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08001250 memset(srp_rsp, 0, sizeof(*srp_rsp));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001251 srp_rsp->opcode = SRP_RSP;
1252 srp_rsp->req_lim_delta =
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301253 cpu_to_be32(1 + atomic_xchg(&ch->req_lim_delta, 0));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001254 srp_rsp->tag = tag;
1255 srp_rsp->status = status;
1256
1257 if (sense_data_len) {
1258 BUILD_BUG_ON(MIN_MAX_RSP_SIZE <= sizeof(*srp_rsp));
1259 max_sense_len = ch->max_ti_iu_len - sizeof(*srp_rsp);
1260 if (sense_data_len > max_sense_len) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001261 pr_warn("truncated sense data from %d to %d"
1262 " bytes\n", sense_data_len, max_sense_len);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001263 sense_data_len = max_sense_len;
1264 }
1265
1266 srp_rsp->flags |= SRP_RSP_FLAG_SNSVALID;
1267 srp_rsp->sense_data_len = cpu_to_be32(sense_data_len);
1268 memcpy(srp_rsp + 1, sense_data, sense_data_len);
1269 }
1270
1271 return sizeof(*srp_rsp) + sense_data_len;
1272}
1273
1274/**
1275 * srpt_build_tskmgmt_rsp() - Build a task management response.
1276 * @ch: RDMA channel through which the request has been received.
1277 * @ioctx: I/O context in which the SRP_RSP response will be built.
1278 * @rsp_code: RSP_CODE that will be stored in the response.
1279 * @tag: Tag of the request for which this response is being generated.
1280 *
1281 * Returns the size in bytes of the SRP_RSP response.
1282 *
1283 * An SRP_RSP response contains a SCSI status or service response. See also
1284 * section 6.9 in the SRP r16a document for the format of an SRP_RSP
1285 * response.
1286 */
1287static int srpt_build_tskmgmt_rsp(struct srpt_rdma_ch *ch,
1288 struct srpt_send_ioctx *ioctx,
1289 u8 rsp_code, u64 tag)
1290{
1291 struct srp_rsp *srp_rsp;
1292 int resp_data_len;
1293 int resp_len;
1294
Jack Wangc807f642013-09-30 10:09:05 +02001295 resp_data_len = 4;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001296 resp_len = sizeof(*srp_rsp) + resp_data_len;
1297
1298 srp_rsp = ioctx->ioctx.buf;
1299 BUG_ON(!srp_rsp);
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08001300 memset(srp_rsp, 0, sizeof(*srp_rsp));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001301
1302 srp_rsp->opcode = SRP_RSP;
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301303 srp_rsp->req_lim_delta =
1304 cpu_to_be32(1 + atomic_xchg(&ch->req_lim_delta, 0));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001305 srp_rsp->tag = tag;
1306
Jack Wangc807f642013-09-30 10:09:05 +02001307 srp_rsp->flags |= SRP_RSP_FLAG_RSPVALID;
1308 srp_rsp->resp_data_len = cpu_to_be32(resp_data_len);
1309 srp_rsp->data[3] = rsp_code;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001310
1311 return resp_len;
1312}
1313
Bart Van Asschea42d9852011-10-14 01:30:46 +00001314static int srpt_check_stop_free(struct se_cmd *cmd)
1315{
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001316 struct srpt_send_ioctx *ioctx = container_of(cmd,
1317 struct srpt_send_ioctx, cmd);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001318
Bart Van Asscheafc16602015-04-27 13:52:36 +02001319 return target_put_sess_cmd(&ioctx->cmd);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001320}
1321
1322/**
1323 * srpt_handle_cmd() - Process SRP_CMD.
1324 */
Bart Van Assche2c7f37f2016-02-11 11:06:55 -08001325static void srpt_handle_cmd(struct srpt_rdma_ch *ch,
1326 struct srpt_recv_ioctx *recv_ioctx,
1327 struct srpt_send_ioctx *send_ioctx)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001328{
1329 struct se_cmd *cmd;
1330 struct srp_cmd *srp_cmd;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001331 struct scatterlist *sg = NULL;
1332 unsigned sg_cnt = 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001333 u64 data_len;
1334 enum dma_data_direction dir;
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001335 int rc;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001336
1337 BUG_ON(!send_ioctx);
1338
1339 srp_cmd = recv_ioctx->ioctx.buf;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001340 cmd = &send_ioctx->cmd;
Bart Van Assche649ee052015-04-14 13:26:44 +02001341 cmd->tag = srp_cmd->tag;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001342
1343 switch (srp_cmd->task_attr) {
1344 case SRP_CMD_SIMPLE_Q:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001345 cmd->sam_task_attr = TCM_SIMPLE_TAG;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001346 break;
1347 case SRP_CMD_ORDERED_Q:
1348 default:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001349 cmd->sam_task_attr = TCM_ORDERED_TAG;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001350 break;
1351 case SRP_CMD_HEAD_OF_Q:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001352 cmd->sam_task_attr = TCM_HEAD_TAG;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001353 break;
1354 case SRP_CMD_ACA:
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001355 cmd->sam_task_attr = TCM_ACA_TAG;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001356 break;
1357 }
1358
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001359 rc = srpt_get_desc_tbl(send_ioctx, srp_cmd, &dir, &sg, &sg_cnt,
1360 &data_len);
1361 if (rc) {
1362 if (rc != -EAGAIN) {
1363 pr_err("0x%llx: parsing SRP descriptor table failed.\n",
1364 srp_cmd->tag);
1365 }
Bart Van Assche2c7f37f2016-02-11 11:06:55 -08001366 goto release_ioctx;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001367 }
1368
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001369 rc = target_submit_cmd_map_sgls(cmd, ch->sess, srp_cmd->cdb,
Bart Van Asschee1dd4132016-02-11 11:05:19 -08001370 &send_ioctx->sense_data[0],
1371 scsilun_to_int(&srp_cmd->lun), data_len,
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001372 TCM_SIMPLE_TAG, dir, TARGET_SCF_ACK_KREF,
1373 sg, sg_cnt, NULL, 0, NULL, 0);
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001374 if (rc != 0) {
Bart Van Assche2c7f37f2016-02-11 11:06:55 -08001375 pr_debug("target_submit_cmd() returned %d for tag %#llx\n", rc,
1376 srp_cmd->tag);
1377 goto release_ioctx;
Nicholas Bellinger187e70a2012-03-17 20:12:36 -07001378 }
Bart Van Assche2c7f37f2016-02-11 11:06:55 -08001379 return;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001380
Bart Van Assche2c7f37f2016-02-11 11:06:55 -08001381release_ioctx:
1382 send_ioctx->state = SRPT_STATE_DONE;
1383 srpt_release_cmd(cmd);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001384}
1385
Bart Van Asschea42d9852011-10-14 01:30:46 +00001386static int srp_tmr_to_tcm(int fn)
1387{
1388 switch (fn) {
1389 case SRP_TSK_ABORT_TASK:
1390 return TMR_ABORT_TASK;
1391 case SRP_TSK_ABORT_TASK_SET:
1392 return TMR_ABORT_TASK_SET;
1393 case SRP_TSK_CLEAR_TASK_SET:
1394 return TMR_CLEAR_TASK_SET;
1395 case SRP_TSK_LUN_RESET:
1396 return TMR_LUN_RESET;
1397 case SRP_TSK_CLEAR_ACA:
1398 return TMR_CLEAR_ACA;
1399 default:
1400 return -1;
1401 }
1402}
1403
1404/**
1405 * srpt_handle_tsk_mgmt() - Process an SRP_TSK_MGMT information unit.
1406 *
1407 * Returns 0 if and only if the request will be processed by the target core.
1408 *
1409 * For more information about SRP_TSK_MGMT information units, see also section
1410 * 6.7 in the SRP r16a document.
1411 */
1412static void srpt_handle_tsk_mgmt(struct srpt_rdma_ch *ch,
1413 struct srpt_recv_ioctx *recv_ioctx,
1414 struct srpt_send_ioctx *send_ioctx)
1415{
1416 struct srp_tsk_mgmt *srp_tsk;
1417 struct se_cmd *cmd;
Nicholas Bellinger3e4f5742012-11-28 01:38:04 -08001418 struct se_session *sess = ch->sess;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001419 int tcm_tmr;
Nicholas Bellinger3e4f5742012-11-28 01:38:04 -08001420 int rc;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001421
1422 BUG_ON(!send_ioctx);
1423
1424 srp_tsk = recv_ioctx->ioctx.buf;
1425 cmd = &send_ioctx->cmd;
1426
1427 pr_debug("recv tsk_mgmt fn %d for task_tag %lld and cmd tag %lld"
1428 " cm_id %p sess %p\n", srp_tsk->tsk_mgmt_func,
1429 srp_tsk->task_tag, srp_tsk->tag, ch->cm_id, ch->sess);
1430
1431 srpt_set_cmd_state(send_ioctx, SRPT_STATE_MGMT);
Bart Van Assche649ee052015-04-14 13:26:44 +02001432 send_ioctx->cmd.tag = srp_tsk->tag;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001433 tcm_tmr = srp_tmr_to_tcm(srp_tsk->tsk_mgmt_func);
Bart Van Asschee1dd4132016-02-11 11:05:19 -08001434 rc = target_submit_tmr(&send_ioctx->cmd, sess, NULL,
1435 scsilun_to_int(&srp_tsk->lun), srp_tsk, tcm_tmr,
1436 GFP_KERNEL, srp_tsk->task_tag,
1437 TARGET_SCF_ACK_KREF);
Nicholas Bellinger3e4f5742012-11-28 01:38:04 -08001438 if (rc != 0) {
Bart Van Asschea42d9852011-10-14 01:30:46 +00001439 send_ioctx->cmd.se_tmr_req->response = TMR_FUNCTION_REJECTED;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001440 goto fail;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001441 }
Christoph Hellwigde103c92012-11-06 12:24:09 -08001442 return;
1443fail:
Christoph Hellwigde103c92012-11-06 12:24:09 -08001444 transport_send_check_condition_and_sense(cmd, 0, 0); // XXX:
Bart Van Asschea42d9852011-10-14 01:30:46 +00001445}
1446
1447/**
1448 * srpt_handle_new_iu() - Process a newly received information unit.
1449 * @ch: RDMA channel through which the information unit has been received.
1450 * @ioctx: SRPT I/O context associated with the information unit.
1451 */
1452static void srpt_handle_new_iu(struct srpt_rdma_ch *ch,
1453 struct srpt_recv_ioctx *recv_ioctx,
1454 struct srpt_send_ioctx *send_ioctx)
1455{
1456 struct srp_cmd *srp_cmd;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001457
1458 BUG_ON(!ch);
1459 BUG_ON(!recv_ioctx);
1460
1461 ib_dma_sync_single_for_cpu(ch->sport->sdev->device,
1462 recv_ioctx->ioctx.dma, srp_max_req_size,
1463 DMA_FROM_DEVICE);
1464
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001465 if (unlikely(ch->state == CH_CONNECTING))
1466 goto out_wait;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001467
Bart Van Assche33912d72016-02-11 11:04:43 -08001468 if (unlikely(ch->state != CH_LIVE))
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001469 return;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001470
1471 srp_cmd = recv_ioctx->ioctx.buf;
1472 if (srp_cmd->opcode == SRP_CMD || srp_cmd->opcode == SRP_TSK_MGMT) {
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001473 if (!send_ioctx) {
1474 if (!list_empty(&ch->cmd_wait_list))
1475 goto out_wait;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001476 send_ioctx = srpt_get_send_ioctx(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001477 }
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001478 if (unlikely(!send_ioctx))
1479 goto out_wait;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001480 }
1481
Bart Van Asschea42d9852011-10-14 01:30:46 +00001482 switch (srp_cmd->opcode) {
1483 case SRP_CMD:
1484 srpt_handle_cmd(ch, recv_ioctx, send_ioctx);
1485 break;
1486 case SRP_TSK_MGMT:
1487 srpt_handle_tsk_mgmt(ch, recv_ioctx, send_ioctx);
1488 break;
1489 case SRP_I_LOGOUT:
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001490 pr_err("Not yet implemented: SRP_I_LOGOUT\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00001491 break;
1492 case SRP_CRED_RSP:
1493 pr_debug("received SRP_CRED_RSP\n");
1494 break;
1495 case SRP_AER_RSP:
1496 pr_debug("received SRP_AER_RSP\n");
1497 break;
1498 case SRP_RSP:
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001499 pr_err("Received SRP_RSP\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00001500 break;
1501 default:
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001502 pr_err("received IU with unknown opcode 0x%x\n",
Bart Van Asschea42d9852011-10-14 01:30:46 +00001503 srp_cmd->opcode);
1504 break;
1505 }
1506
1507 srpt_post_recv(ch->sport->sdev, recv_ioctx);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001508 return;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001509
1510out_wait:
1511 list_add_tail(&recv_ioctx->wait_list, &ch->cmd_wait_list);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001512}
1513
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001514static void srpt_recv_done(struct ib_cq *cq, struct ib_wc *wc)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001515{
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001516 struct srpt_rdma_ch *ch = cq->cq_context;
1517 struct srpt_recv_ioctx *ioctx =
1518 container_of(wc->wr_cqe, struct srpt_recv_ioctx, ioctx.cqe);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001519
Bart Van Asschea42d9852011-10-14 01:30:46 +00001520 if (wc->status == IB_WC_SUCCESS) {
1521 int req_lim;
1522
1523 req_lim = atomic_dec_return(&ch->req_lim);
1524 if (unlikely(req_lim < 0))
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001525 pr_err("req_lim = %d < 0\n", req_lim);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001526 srpt_handle_new_iu(ch, ioctx, NULL);
1527 } else {
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001528 pr_info("receiving failed for ioctx %p with status %d\n",
1529 ioctx, wc->status);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001530 }
1531}
1532
Bart Van Assche539b3242016-02-11 11:09:50 -08001533/*
1534 * This function must be called from the context in which RDMA completions are
1535 * processed because it accesses the wait list without protection against
1536 * access from other threads.
1537 */
1538static void srpt_process_wait_list(struct srpt_rdma_ch *ch)
1539{
1540 struct srpt_send_ioctx *ioctx;
1541
1542 while (!list_empty(&ch->cmd_wait_list) &&
1543 ch->state >= CH_LIVE &&
1544 (ioctx = srpt_get_send_ioctx(ch)) != NULL) {
1545 struct srpt_recv_ioctx *recv_ioctx;
1546
1547 recv_ioctx = list_first_entry(&ch->cmd_wait_list,
1548 struct srpt_recv_ioctx,
1549 wait_list);
1550 list_del(&recv_ioctx->wait_list);
1551 srpt_handle_new_iu(ch, recv_ioctx, ioctx);
1552 }
1553}
1554
Bart Van Asschea42d9852011-10-14 01:30:46 +00001555/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00001556 * Note: Although this has not yet been observed during tests, at least in
1557 * theory it is possible that the srpt_get_send_ioctx() call invoked by
1558 * srpt_handle_new_iu() fails. This is possible because the req_lim_delta
1559 * value in each response is set to one, and it is possible that this response
1560 * makes the initiator send a new request before the send completion for that
1561 * response has been processed. This could e.g. happen if the call to
1562 * srpt_put_send_iotcx() is delayed because of a higher priority interrupt or
1563 * if IB retransmission causes generation of the send completion to be
1564 * delayed. Incoming information units for which srpt_get_send_ioctx() fails
1565 * are queued on cmd_wait_list. The code below processes these delayed
1566 * requests one at a time.
1567 */
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001568static void srpt_send_done(struct ib_cq *cq, struct ib_wc *wc)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001569{
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001570 struct srpt_rdma_ch *ch = cq->cq_context;
1571 struct srpt_send_ioctx *ioctx =
1572 container_of(wc->wr_cqe, struct srpt_send_ioctx, ioctx.cqe);
1573 enum srpt_command_state state;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001574
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001575 state = srpt_set_cmd_state(ioctx, SRPT_STATE_DONE);
1576
1577 WARN_ON(state != SRPT_STATE_CMD_RSP_SENT &&
1578 state != SRPT_STATE_MGMT_RSP_SENT);
1579
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001580 atomic_add(1 + ioctx->n_rdma, &ch->sq_wr_avail);
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001581
Bart Van Assche49f40162016-02-11 11:07:11 -08001582 if (wc->status != IB_WC_SUCCESS)
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001583 pr_info("sending response for ioctx 0x%p failed"
1584 " with status %d\n", ioctx, wc->status);
1585
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001586 if (state != SRPT_STATE_DONE) {
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001587 transport_generic_free_cmd(&ioctx->cmd, 0);
1588 } else {
1589 pr_err("IB completion has been received too late for"
1590 " wr_id = %u.\n", ioctx->ioctx.index);
1591 }
1592
Bart Van Assche539b3242016-02-11 11:09:50 -08001593 srpt_process_wait_list(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001594}
1595
Bart Van Asschea42d9852011-10-14 01:30:46 +00001596/**
1597 * srpt_create_ch_ib() - Create receive and send completion queues.
1598 */
1599static int srpt_create_ch_ib(struct srpt_rdma_ch *ch)
1600{
1601 struct ib_qp_init_attr *qp_init;
1602 struct srpt_port *sport = ch->sport;
1603 struct srpt_device *sdev = sport->sdev;
1604 u32 srp_sq_size = sport->port_attrib.srp_sq_size;
1605 int ret;
1606
1607 WARN_ON(ch->rq_size < 1);
1608
1609 ret = -ENOMEM;
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08001610 qp_init = kzalloc(sizeof(*qp_init), GFP_KERNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001611 if (!qp_init)
1612 goto out;
1613
Bart Van Asscheab477c12014-10-19 18:05:33 +03001614retry:
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001615 ch->cq = ib_alloc_cq(sdev->device, ch, ch->rq_size + srp_sq_size,
1616 0 /* XXX: spread CQs */, IB_POLL_WORKQUEUE);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001617 if (IS_ERR(ch->cq)) {
1618 ret = PTR_ERR(ch->cq);
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001619 pr_err("failed to create CQ cqe= %d ret= %d\n",
Bart Van Asschea42d9852011-10-14 01:30:46 +00001620 ch->rq_size + srp_sq_size, ret);
1621 goto out;
1622 }
1623
1624 qp_init->qp_context = (void *)ch;
1625 qp_init->event_handler
1626 = (void(*)(struct ib_event *, void*))srpt_qp_event;
1627 qp_init->send_cq = ch->cq;
1628 qp_init->recv_cq = ch->cq;
1629 qp_init->srq = sdev->srq;
1630 qp_init->sq_sig_type = IB_SIGNAL_REQ_WR;
1631 qp_init->qp_type = IB_QPT_RC;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001632 /*
1633 * We divide up our send queue size into half SEND WRs to send the
1634 * completions, and half R/W contexts to actually do the RDMA
1635 * READ/WRITE transfers. Note that we need to allocate CQ slots for
1636 * both both, as RDMA contexts will also post completions for the
1637 * RDMA READ case.
1638 */
1639 qp_init->cap.max_send_wr = srp_sq_size / 2;
1640 qp_init->cap.max_rdma_ctxs = srp_sq_size / 2;
Bart Van Asschec0cf4512016-06-23 09:35:48 +02001641 qp_init->cap.max_send_sge = SRPT_DEF_SG_PER_WQE;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02001642 qp_init->port_num = ch->sport->port;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001643
1644 ch->qp = ib_create_qp(sdev->pd, qp_init);
1645 if (IS_ERR(ch->qp)) {
1646 ret = PTR_ERR(ch->qp);
Bart Van Asscheab477c12014-10-19 18:05:33 +03001647 if (ret == -ENOMEM) {
1648 srp_sq_size /= 2;
1649 if (srp_sq_size >= MIN_SRPT_SQ_SIZE) {
1650 ib_destroy_cq(ch->cq);
1651 goto retry;
1652 }
1653 }
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001654 pr_err("failed to create_qp ret= %d\n", ret);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001655 goto err_destroy_cq;
1656 }
1657
1658 atomic_set(&ch->sq_wr_avail, qp_init->cap.max_send_wr);
1659
1660 pr_debug("%s: max_cqe= %d max_sge= %d sq_size = %d cm_id= %p\n",
1661 __func__, ch->cq->cqe, qp_init->cap.max_send_sge,
1662 qp_init->cap.max_send_wr, ch->cm_id);
1663
1664 ret = srpt_init_ch_qp(ch, ch->qp);
1665 if (ret)
1666 goto err_destroy_qp;
1667
Bart Van Asschea42d9852011-10-14 01:30:46 +00001668out:
1669 kfree(qp_init);
1670 return ret;
1671
1672err_destroy_qp:
1673 ib_destroy_qp(ch->qp);
1674err_destroy_cq:
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001675 ib_free_cq(ch->cq);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001676 goto out;
1677}
1678
1679static void srpt_destroy_ch_ib(struct srpt_rdma_ch *ch)
1680{
Bart Van Asschea42d9852011-10-14 01:30:46 +00001681 ib_destroy_qp(ch->qp);
Christoph Hellwig59fae4d2015-09-29 13:00:44 +02001682 ib_free_cq(ch->cq);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001683}
1684
1685/**
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001686 * srpt_close_ch() - Close an RDMA channel.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001687 *
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001688 * Make sure all resources associated with the channel will be deallocated at
1689 * an appropriate time.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001690 *
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001691 * Returns true if and only if the channel state has been modified into
1692 * CH_DRAINING.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001693 */
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001694static bool srpt_close_ch(struct srpt_rdma_ch *ch)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001695{
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001696 int ret;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001697
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001698 if (!srpt_set_ch_state(ch, CH_DRAINING)) {
1699 pr_debug("%s-%d: already closed\n", ch->sess_name,
1700 ch->qp->qp_num);
1701 return false;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001702 }
Bart Van Asschea42d9852011-10-14 01:30:46 +00001703
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001704 kref_get(&ch->kref);
1705
1706 ret = srpt_ch_qp_err(ch);
1707 if (ret < 0)
1708 pr_err("%s-%d: changing queue pair into error state failed: %d\n",
1709 ch->sess_name, ch->qp->qp_num, ret);
1710
1711 pr_debug("%s-%d: queued zerolength write\n", ch->sess_name,
1712 ch->qp->qp_num);
1713 ret = srpt_zerolength_write(ch);
1714 if (ret < 0) {
1715 pr_err("%s-%d: queuing zero-length write failed: %d\n",
1716 ch->sess_name, ch->qp->qp_num, ret);
1717 if (srpt_set_ch_state(ch, CH_DISCONNECTED))
1718 schedule_work(&ch->release_work);
1719 else
1720 WARN_ON_ONCE(true);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001721 }
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001722
1723 kref_put(&ch->kref, srpt_free_ch);
1724
1725 return true;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001726}
1727
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001728/*
1729 * Change the channel state into CH_DISCONNECTING. If a channel has not yet
1730 * reached the connected state, close it. If a channel is in the connected
1731 * state, send a DREQ. If a DREQ has been received, send a DREP. Note: it is
1732 * the responsibility of the caller to ensure that this function is not
1733 * invoked concurrently with the code that accepts a connection. This means
1734 * that this function must either be invoked from inside a CM callback
1735 * function or that it must be invoked with the srpt_port.mutex held.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001736 */
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001737static int srpt_disconnect_ch(struct srpt_rdma_ch *ch)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001738{
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001739 int ret;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001740
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001741 if (!srpt_set_ch_state(ch, CH_DISCONNECTING))
1742 return -ENOTCONN;
1743
1744 ret = ib_send_cm_dreq(ch->cm_id, NULL, 0);
1745 if (ret < 0)
1746 ret = ib_send_cm_drep(ch->cm_id, NULL, 0);
1747
1748 if (ret < 0 && srpt_close_ch(ch))
1749 ret = 0;
1750
1751 return ret;
1752}
1753
1754static void __srpt_close_all_ch(struct srpt_device *sdev)
1755{
1756 struct srpt_rdma_ch *ch;
1757
1758 lockdep_assert_held(&sdev->mutex);
1759
1760 list_for_each_entry(ch, &sdev->rch_list, list) {
1761 if (srpt_disconnect_ch(ch) >= 0)
1762 pr_info("Closing channel %s-%d because target %s has been disabled\n",
1763 ch->sess_name, ch->qp->qp_num,
1764 sdev->device->name);
1765 srpt_close_ch(ch);
1766 }
Bart Van Asschea42d9852011-10-14 01:30:46 +00001767}
1768
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001769static void srpt_free_ch(struct kref *kref)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001770{
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001771 struct srpt_rdma_ch *ch = container_of(kref, struct srpt_rdma_ch, kref);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001772
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001773 kfree(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001774}
1775
1776static void srpt_release_channel_work(struct work_struct *w)
1777{
1778 struct srpt_rdma_ch *ch;
1779 struct srpt_device *sdev;
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001780 struct se_session *se_sess;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001781
1782 ch = container_of(w, struct srpt_rdma_ch, release_work);
Bart Van Asschef108f0f2016-02-11 11:06:14 -08001783 pr_debug("%s: %s-%d; release_done = %p\n", __func__, ch->sess_name,
1784 ch->qp->qp_num, ch->release_done);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001785
1786 sdev = ch->sport->sdev;
1787 BUG_ON(!sdev);
1788
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001789 se_sess = ch->sess;
1790 BUG_ON(!se_sess);
1791
Bart Van Assche88936252016-02-11 11:05:58 -08001792 target_sess_cmd_list_set_waiting(se_sess);
Joern Engelbe646c2d2013-05-15 00:44:07 -07001793 target_wait_for_sess_cmds(se_sess);
Nicholas Bellinger9474b042012-11-27 23:55:57 -08001794
1795 transport_deregister_session_configfs(se_sess);
1796 transport_deregister_session(se_sess);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001797 ch->sess = NULL;
1798
Nicholas Bellinger0b41d6c2013-09-18 12:48:27 -07001799 ib_destroy_cm_id(ch->cm_id);
1800
Bart Van Asschea42d9852011-10-14 01:30:46 +00001801 srpt_destroy_ch_ib(ch);
1802
1803 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_ring,
1804 ch->sport->sdev, ch->rq_size,
1805 ch->rsp_size, DMA_TO_DEVICE);
1806
Bart Van Assche86289912016-02-11 11:08:34 -08001807 mutex_lock(&sdev->mutex);
Bart Van Asschef108f0f2016-02-11 11:06:14 -08001808 list_del_init(&ch->list);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001809 if (ch->release_done)
1810 complete(ch->release_done);
Bart Van Assche86289912016-02-11 11:08:34 -08001811 mutex_unlock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001812
1813 wake_up(&sdev->ch_releaseQ);
1814
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001815 kref_put(&ch->kref, srpt_free_ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001816}
1817
Bart Van Asschea42d9852011-10-14 01:30:46 +00001818/**
1819 * srpt_cm_req_recv() - Process the event IB_CM_REQ_RECEIVED.
1820 *
1821 * Ownership of the cm_id is transferred to the target session if this
1822 * functions returns zero. Otherwise the caller remains the owner of cm_id.
1823 */
1824static int srpt_cm_req_recv(struct ib_cm_id *cm_id,
1825 struct ib_cm_req_event_param *param,
1826 void *private_data)
1827{
1828 struct srpt_device *sdev = cm_id->context;
1829 struct srpt_port *sport = &sdev->port[param->port - 1];
1830 struct srp_login_req *req;
1831 struct srp_login_rsp *rsp;
1832 struct srp_login_rej *rej;
1833 struct ib_cm_rep_param *rep_param;
1834 struct srpt_rdma_ch *ch, *tmp_ch;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001835 u32 it_iu_len;
Bart Van Assche3c968882016-04-07 15:55:04 -07001836 int i, ret = 0;
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001837 unsigned char *p;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001838
1839 WARN_ON_ONCE(irqs_disabled());
1840
1841 if (WARN_ON(!sdev || !private_data))
1842 return -EINVAL;
1843
1844 req = (struct srp_login_req *)private_data;
1845
1846 it_iu_len = be32_to_cpu(req->req_it_iu_len);
1847
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001848 pr_info("Received SRP_LOGIN_REQ with i_port_id 0x%llx:0x%llx,"
1849 " t_port_id 0x%llx:0x%llx and it_iu_len %d on port %d"
1850 " (guid=0x%llx:0x%llx)\n",
1851 be64_to_cpu(*(__be64 *)&req->initiator_port_id[0]),
1852 be64_to_cpu(*(__be64 *)&req->initiator_port_id[8]),
1853 be64_to_cpu(*(__be64 *)&req->target_port_id[0]),
1854 be64_to_cpu(*(__be64 *)&req->target_port_id[8]),
1855 it_iu_len,
1856 param->port,
1857 be64_to_cpu(*(__be64 *)&sdev->port[param->port - 1].gid.raw[0]),
1858 be64_to_cpu(*(__be64 *)&sdev->port[param->port - 1].gid.raw[8]));
Bart Van Asschea42d9852011-10-14 01:30:46 +00001859
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08001860 rsp = kzalloc(sizeof(*rsp), GFP_KERNEL);
1861 rej = kzalloc(sizeof(*rej), GFP_KERNEL);
1862 rep_param = kzalloc(sizeof(*rep_param), GFP_KERNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001863
1864 if (!rsp || !rej || !rep_param) {
1865 ret = -ENOMEM;
1866 goto out;
1867 }
1868
1869 if (it_iu_len > srp_max_req_size || it_iu_len < 64) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301870 rej->reason = cpu_to_be32(
1871 SRP_LOGIN_REJ_REQ_IT_IU_LENGTH_TOO_LARGE);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001872 ret = -EINVAL;
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001873 pr_err("rejected SRP_LOGIN_REQ because its"
Bart Van Asschea42d9852011-10-14 01:30:46 +00001874 " length (%d bytes) is out of range (%d .. %d)\n",
1875 it_iu_len, 64, srp_max_req_size);
1876 goto reject;
1877 }
1878
1879 if (!sport->enabled) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301880 rej->reason = cpu_to_be32(
1881 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001882 ret = -EINVAL;
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001883 pr_err("rejected SRP_LOGIN_REQ because the target port"
Bart Van Asschea42d9852011-10-14 01:30:46 +00001884 " has not yet been enabled\n");
1885 goto reject;
1886 }
1887
1888 if ((req->req_flags & SRP_MTCH_ACTION) == SRP_MULTICHAN_SINGLE) {
1889 rsp->rsp_flags = SRP_LOGIN_RSP_MULTICHAN_NO_CHAN;
1890
Bart Van Assche86289912016-02-11 11:08:34 -08001891 mutex_lock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001892
1893 list_for_each_entry_safe(ch, tmp_ch, &sdev->rch_list, list) {
1894 if (!memcmp(ch->i_port_id, req->initiator_port_id, 16)
1895 && !memcmp(ch->t_port_id, req->target_port_id, 16)
1896 && param->port == ch->sport->port
1897 && param->listen_id == ch->sport->sdev->cm_id
1898 && ch->cm_id) {
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001899 if (srpt_disconnect_ch(ch) < 0)
Bart Van Asschea42d9852011-10-14 01:30:46 +00001900 continue;
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001901 pr_info("Relogin - closed existing channel %s\n",
1902 ch->sess_name);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001903 rsp->rsp_flags =
1904 SRP_LOGIN_RSP_MULTICHAN_TERMINATED;
1905 }
1906 }
1907
Bart Van Assche86289912016-02-11 11:08:34 -08001908 mutex_unlock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001909
1910 } else
1911 rsp->rsp_flags = SRP_LOGIN_RSP_MULTICHAN_MAINTAINED;
1912
1913 if (*(__be64 *)req->target_port_id != cpu_to_be64(srpt_service_guid)
1914 || *(__be64 *)(req->target_port_id + 8) !=
1915 cpu_to_be64(srpt_service_guid)) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301916 rej->reason = cpu_to_be32(
1917 SRP_LOGIN_REJ_UNABLE_ASSOCIATE_CHANNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001918 ret = -ENOMEM;
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001919 pr_err("rejected SRP_LOGIN_REQ because it"
Bart Van Asschea42d9852011-10-14 01:30:46 +00001920 " has an invalid target port identifier.\n");
1921 goto reject;
1922 }
1923
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08001924 ch = kzalloc(sizeof(*ch), GFP_KERNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +00001925 if (!ch) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301926 rej->reason = cpu_to_be32(
1927 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001928 pr_err("rejected SRP_LOGIN_REQ because no memory.\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00001929 ret = -ENOMEM;
1930 goto reject;
1931 }
1932
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08001933 kref_init(&ch->kref);
1934 ch->zw_cqe.done = srpt_zerolength_write_done;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001935 INIT_WORK(&ch->release_work, srpt_release_channel_work);
1936 memcpy(ch->i_port_id, req->initiator_port_id, 16);
1937 memcpy(ch->t_port_id, req->target_port_id, 16);
1938 ch->sport = &sdev->port[param->port - 1];
1939 ch->cm_id = cm_id;
Bart Van Assche2739b592016-02-11 11:07:49 -08001940 cm_id->context = ch;
Bart Van Asschea42d9852011-10-14 01:30:46 +00001941 /*
1942 * Avoid QUEUE_FULL conditions by limiting the number of buffers used
1943 * for the SRP protocol to the command queue size.
1944 */
1945 ch->rq_size = SRPT_RQ_SIZE;
1946 spin_lock_init(&ch->spinlock);
1947 ch->state = CH_CONNECTING;
1948 INIT_LIST_HEAD(&ch->cmd_wait_list);
1949 ch->rsp_size = ch->sport->port_attrib.srp_max_rsp_size;
1950
1951 ch->ioctx_ring = (struct srpt_send_ioctx **)
1952 srpt_alloc_ioctx_ring(ch->sport->sdev, ch->rq_size,
1953 sizeof(*ch->ioctx_ring[0]),
1954 ch->rsp_size, DMA_TO_DEVICE);
1955 if (!ch->ioctx_ring)
1956 goto free_ch;
1957
Bart Van Assche3c968882016-04-07 15:55:04 -07001958 INIT_LIST_HEAD(&ch->free_list);
1959 for (i = 0; i < ch->rq_size; i++) {
1960 ch->ioctx_ring[i]->ch = ch;
1961 list_add_tail(&ch->ioctx_ring[i]->free_list, &ch->free_list);
1962 }
1963
Bart Van Asschea42d9852011-10-14 01:30:46 +00001964 ret = srpt_create_ch_ib(ch);
1965 if (ret) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301966 rej->reason = cpu_to_be32(
1967 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001968 pr_err("rejected SRP_LOGIN_REQ because creating"
Bart Van Asschea42d9852011-10-14 01:30:46 +00001969 " a new RDMA channel failed.\n");
1970 goto free_ring;
1971 }
1972
1973 ret = srpt_ch_qp_rtr(ch, ch->qp);
1974 if (ret) {
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05301975 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
Doug Ledford9f5d32a2014-10-20 18:25:15 -04001976 pr_err("rejected SRP_LOGIN_REQ because enabling"
Bart Van Asschea42d9852011-10-14 01:30:46 +00001977 " RTR failed (error code = %d)\n", ret);
1978 goto destroy_ib;
1979 }
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001980
Bart Van Asschea42d9852011-10-14 01:30:46 +00001981 /*
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001982 * Use the initator port identifier as the session name, when
1983 * checking against se_node_acl->initiatorname[] this can be
1984 * with or without preceeding '0x'.
Bart Van Asschea42d9852011-10-14 01:30:46 +00001985 */
1986 snprintf(ch->sess_name, sizeof(ch->sess_name), "0x%016llx%016llx",
1987 be64_to_cpu(*(__be64 *)ch->i_port_id),
1988 be64_to_cpu(*(__be64 *)(ch->i_port_id + 8)));
1989
1990 pr_debug("registering session %s\n", ch->sess_name);
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001991 p = &ch->sess_name[0];
Bart Van Asschea42d9852011-10-14 01:30:46 +00001992
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001993try_again:
Bart Van Assche3c968882016-04-07 15:55:04 -07001994 ch->sess = target_alloc_session(&sport->port_tpg_1, 0, 0,
Nicholas Bellingerb42057a2016-01-09 20:42:43 -08001995 TARGET_PROT_NORMAL, p, ch, NULL);
1996 if (IS_ERR(ch->sess)) {
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001997 pr_info("Rejected login because no ACL has been"
Nicholas Bellingerb42057a2016-01-09 20:42:43 -08001998 " configured yet for initiator %s.\n", p);
Nicholas Bellingerf246c942016-01-07 22:19:21 -08001999 /*
2000 * XXX: Hack to retry of ch->i_port_id without leading '0x'
2001 */
2002 if (p == &ch->sess_name[0]) {
2003 p += 2;
2004 goto try_again;
2005 }
Nicholas Bellingerb42057a2016-01-09 20:42:43 -08002006 rej->reason = cpu_to_be32((PTR_ERR(ch->sess) == -ENOMEM) ?
2007 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES :
Nicholas Bellingerf246c942016-01-07 22:19:21 -08002008 SRP_LOGIN_REJ_CHANNEL_LIMIT_REACHED);
Nicholas Bellingerf246c942016-01-07 22:19:21 -08002009 goto destroy_ib;
2010 }
Bart Van Asschea42d9852011-10-14 01:30:46 +00002011
2012 pr_debug("Establish connection sess=%p name=%s cm_id=%p\n", ch->sess,
2013 ch->sess_name, ch->cm_id);
2014
2015 /* create srp_login_response */
2016 rsp->opcode = SRP_LOGIN_RSP;
2017 rsp->tag = req->tag;
2018 rsp->max_it_iu_len = req->req_it_iu_len;
2019 rsp->max_ti_iu_len = req->req_it_iu_len;
2020 ch->max_ti_iu_len = it_iu_len;
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05302021 rsp->buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT
2022 | SRP_BUF_FORMAT_INDIRECT);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002023 rsp->req_lim_delta = cpu_to_be32(ch->rq_size);
2024 atomic_set(&ch->req_lim, ch->rq_size);
2025 atomic_set(&ch->req_lim_delta, 0);
2026
2027 /* create cm reply */
2028 rep_param->qp_num = ch->qp->qp_num;
2029 rep_param->private_data = (void *)rsp;
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08002030 rep_param->private_data_len = sizeof(*rsp);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002031 rep_param->rnr_retry_count = 7;
2032 rep_param->flow_control = 1;
2033 rep_param->failover_accepted = 0;
2034 rep_param->srq = 1;
2035 rep_param->responder_resources = 4;
2036 rep_param->initiator_depth = 4;
2037
2038 ret = ib_send_cm_rep(cm_id, rep_param);
2039 if (ret) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002040 pr_err("sending SRP_LOGIN_REQ response failed"
Bart Van Asschea42d9852011-10-14 01:30:46 +00002041 " (error code = %d)\n", ret);
2042 goto release_channel;
2043 }
2044
Bart Van Assche86289912016-02-11 11:08:34 -08002045 mutex_lock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002046 list_add_tail(&ch->list, &sdev->rch_list);
Bart Van Assche86289912016-02-11 11:08:34 -08002047 mutex_unlock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002048
2049 goto out;
2050
2051release_channel:
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002052 srpt_disconnect_ch(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002053 transport_deregister_session_configfs(ch->sess);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002054 transport_deregister_session(ch->sess);
2055 ch->sess = NULL;
2056
2057destroy_ib:
2058 srpt_destroy_ch_ib(ch);
2059
2060free_ring:
2061 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_ring,
2062 ch->sport->sdev, ch->rq_size,
2063 ch->rsp_size, DMA_TO_DEVICE);
2064free_ch:
2065 kfree(ch);
2066
2067reject:
2068 rej->opcode = SRP_LOGIN_REJ;
2069 rej->tag = req->tag;
Vaishali Thakkarb356c1c2015-06-24 10:12:13 +05302070 rej->buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT
2071 | SRP_BUF_FORMAT_INDIRECT);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002072
2073 ib_send_cm_rej(cm_id, IB_CM_REJ_CONSUMER_DEFINED, NULL, 0,
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08002074 (void *)rej, sizeof(*rej));
Bart Van Asschea42d9852011-10-14 01:30:46 +00002075
2076out:
2077 kfree(rep_param);
2078 kfree(rsp);
2079 kfree(rej);
2080
2081 return ret;
2082}
2083
Bart Van Assche2739b592016-02-11 11:07:49 -08002084static void srpt_cm_rej_recv(struct srpt_rdma_ch *ch,
2085 enum ib_cm_rej_reason reason,
2086 const u8 *private_data,
2087 u8 private_data_len)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002088{
Bart Van Asschec13c90e2016-02-11 11:08:12 -08002089 char *priv = NULL;
2090 int i;
2091
2092 if (private_data_len && (priv = kmalloc(private_data_len * 3 + 1,
2093 GFP_KERNEL))) {
2094 for (i = 0; i < private_data_len; i++)
2095 sprintf(priv + 3 * i, " %02x", private_data[i]);
2096 }
2097 pr_info("Received CM REJ for ch %s-%d; reason %d%s%s.\n",
2098 ch->sess_name, ch->qp->qp_num, reason, private_data_len ?
2099 "; private data" : "", priv ? priv : " (?)");
2100 kfree(priv);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002101}
2102
2103/**
2104 * srpt_cm_rtu_recv() - Process an IB_CM_RTU_RECEIVED or USER_ESTABLISHED event.
2105 *
2106 * An IB_CM_RTU_RECEIVED message indicates that the connection is established
2107 * and that the recipient may begin transmitting (RTU = ready to use).
2108 */
Bart Van Assche2739b592016-02-11 11:07:49 -08002109static void srpt_cm_rtu_recv(struct srpt_rdma_ch *ch)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002110{
Bart Van Asschea42d9852011-10-14 01:30:46 +00002111 int ret;
2112
Bart Van Asschef130c222016-02-11 11:05:38 -08002113 if (srpt_set_ch_state(ch, CH_LIVE)) {
Bart Van Asschea42d9852011-10-14 01:30:46 +00002114 ret = srpt_ch_qp_rts(ch, ch->qp);
2115
Bart Van Assche387add42016-02-11 11:10:09 -08002116 if (ret == 0) {
2117 /* Trigger wait list processing. */
2118 ret = srpt_zerolength_write(ch);
2119 WARN_ONCE(ret < 0, "%d\n", ret);
2120 } else {
Bart Van Asschea42d9852011-10-14 01:30:46 +00002121 srpt_close_ch(ch);
Bart Van Assche387add42016-02-11 11:10:09 -08002122 }
Bart Van Asschea42d9852011-10-14 01:30:46 +00002123 }
2124}
2125
Bart Van Asschea42d9852011-10-14 01:30:46 +00002126/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00002127 * srpt_cm_handler() - IB connection manager callback function.
2128 *
2129 * A non-zero return value will cause the caller destroy the CM ID.
2130 *
2131 * Note: srpt_cm_handler() must only return a non-zero value when transferring
2132 * ownership of the cm_id to a channel by srpt_cm_req_recv() failed. Returning
2133 * a non-zero value in any other case will trigger a race with the
2134 * ib_destroy_cm_id() call in srpt_release_channel().
2135 */
2136static int srpt_cm_handler(struct ib_cm_id *cm_id, struct ib_cm_event *event)
2137{
Bart Van Assche2739b592016-02-11 11:07:49 -08002138 struct srpt_rdma_ch *ch = cm_id->context;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002139 int ret;
2140
2141 ret = 0;
2142 switch (event->event) {
2143 case IB_CM_REQ_RECEIVED:
2144 ret = srpt_cm_req_recv(cm_id, &event->param.req_rcvd,
2145 event->private_data);
2146 break;
2147 case IB_CM_REJ_RECEIVED:
Bart Van Assche2739b592016-02-11 11:07:49 -08002148 srpt_cm_rej_recv(ch, event->param.rej_rcvd.reason,
2149 event->private_data,
2150 IB_CM_REJ_PRIVATE_DATA_SIZE);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002151 break;
2152 case IB_CM_RTU_RECEIVED:
2153 case IB_CM_USER_ESTABLISHED:
Bart Van Assche2739b592016-02-11 11:07:49 -08002154 srpt_cm_rtu_recv(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002155 break;
2156 case IB_CM_DREQ_RECEIVED:
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002157 srpt_disconnect_ch(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002158 break;
2159 case IB_CM_DREP_RECEIVED:
Bart Van Assche2739b592016-02-11 11:07:49 -08002160 pr_info("Received CM DREP message for ch %s-%d.\n",
2161 ch->sess_name, ch->qp->qp_num);
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002162 srpt_close_ch(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002163 break;
2164 case IB_CM_TIMEWAIT_EXIT:
Bart Van Assche2739b592016-02-11 11:07:49 -08002165 pr_info("Received CM TimeWait exit for ch %s-%d.\n",
2166 ch->sess_name, ch->qp->qp_num);
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002167 srpt_close_ch(ch);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002168 break;
2169 case IB_CM_REP_ERROR:
Bart Van Assche2739b592016-02-11 11:07:49 -08002170 pr_info("Received CM REP error for ch %s-%d.\n", ch->sess_name,
2171 ch->qp->qp_num);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002172 break;
2173 case IB_CM_DREQ_ERROR:
Bart Van Assche1e20a2a2016-02-11 11:07:29 -08002174 pr_info("Received CM DREQ ERROR event.\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00002175 break;
2176 case IB_CM_MRA_RECEIVED:
Bart Van Assche1e20a2a2016-02-11 11:07:29 -08002177 pr_info("Received CM MRA event\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00002178 break;
2179 default:
Bart Van Assche1e20a2a2016-02-11 11:07:29 -08002180 pr_err("received unrecognized CM event %d\n", event->event);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002181 break;
2182 }
2183
2184 return ret;
2185}
2186
Bart Van Asschea42d9852011-10-14 01:30:46 +00002187static int srpt_write_pending_status(struct se_cmd *se_cmd)
2188{
2189 struct srpt_send_ioctx *ioctx;
2190
2191 ioctx = container_of(se_cmd, struct srpt_send_ioctx, cmd);
2192 return srpt_get_cmd_state(ioctx) == SRPT_STATE_NEED_DATA;
2193}
2194
2195/*
2196 * srpt_write_pending() - Start data transfer from initiator to target (write).
2197 */
2198static int srpt_write_pending(struct se_cmd *se_cmd)
2199{
Bart Van Asschefc3af582016-02-11 11:09:10 -08002200 struct srpt_send_ioctx *ioctx =
2201 container_of(se_cmd, struct srpt_send_ioctx, cmd);
2202 struct srpt_rdma_ch *ch = ioctx->ch;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002203 struct ib_send_wr *first_wr = NULL, *bad_wr;
2204 struct ib_cqe *cqe = &ioctx->rdma_cqe;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002205 enum srpt_command_state new_state;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002206 int ret, i;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002207
2208 new_state = srpt_set_cmd_state(ioctx, SRPT_STATE_NEED_DATA);
2209 WARN_ON(new_state == SRPT_STATE_DONE);
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002210
2211 if (atomic_sub_return(ioctx->n_rdma, &ch->sq_wr_avail) < 0) {
2212 pr_warn("%s: IB send queue full (needed %d)\n",
2213 __func__, ioctx->n_rdma);
2214 ret = -ENOMEM;
2215 goto out_undo;
2216 }
2217
2218 cqe->done = srpt_rdma_read_done;
2219 for (i = ioctx->n_rw_ctx - 1; i >= 0; i--) {
2220 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
2221
2222 first_wr = rdma_rw_ctx_wrs(&ctx->rw, ch->qp, ch->sport->port,
2223 cqe, first_wr);
2224 cqe = NULL;
2225 }
2226
2227 ret = ib_post_send(ch->qp, first_wr, &bad_wr);
2228 if (ret) {
2229 pr_err("%s: ib_post_send() returned %d for %d (avail: %d)\n",
2230 __func__, ret, ioctx->n_rdma,
2231 atomic_read(&ch->sq_wr_avail));
2232 goto out_undo;
2233 }
2234
2235 return 0;
2236out_undo:
2237 atomic_add(ioctx->n_rdma, &ch->sq_wr_avail);
2238 return ret;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002239}
2240
2241static u8 tcm_to_srp_tsk_mgmt_status(const int tcm_mgmt_status)
2242{
2243 switch (tcm_mgmt_status) {
2244 case TMR_FUNCTION_COMPLETE:
2245 return SRP_TSK_MGMT_SUCCESS;
2246 case TMR_FUNCTION_REJECTED:
2247 return SRP_TSK_MGMT_FUNC_NOT_SUPP;
2248 }
2249 return SRP_TSK_MGMT_FAILED;
2250}
2251
2252/**
2253 * srpt_queue_response() - Transmits the response to a SCSI command.
2254 *
2255 * Callback function called by the TCM core. Must not block since it can be
2256 * invoked on the context of the IB completion handler.
2257 */
Joern Engelb79fafa2013-07-03 11:22:17 -04002258static void srpt_queue_response(struct se_cmd *cmd)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002259{
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002260 struct srpt_send_ioctx *ioctx =
2261 container_of(cmd, struct srpt_send_ioctx, cmd);
2262 struct srpt_rdma_ch *ch = ioctx->ch;
2263 struct srpt_device *sdev = ch->sport->sdev;
2264 struct ib_send_wr send_wr, *first_wr = NULL, *bad_wr;
2265 struct ib_sge sge;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002266 enum srpt_command_state state;
2267 unsigned long flags;
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002268 int resp_len, ret, i;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002269 u8 srp_tm_status;
2270
Bart Van Asschea42d9852011-10-14 01:30:46 +00002271 BUG_ON(!ch);
2272
2273 spin_lock_irqsave(&ioctx->spinlock, flags);
2274 state = ioctx->state;
2275 switch (state) {
2276 case SRPT_STATE_NEW:
2277 case SRPT_STATE_DATA_IN:
2278 ioctx->state = SRPT_STATE_CMD_RSP_SENT;
2279 break;
2280 case SRPT_STATE_MGMT:
2281 ioctx->state = SRPT_STATE_MGMT_RSP_SENT;
2282 break;
2283 default:
2284 WARN(true, "ch %p; cmd %d: unexpected command state %d\n",
2285 ch, ioctx->ioctx.index, ioctx->state);
2286 break;
2287 }
2288 spin_unlock_irqrestore(&ioctx->spinlock, flags);
2289
2290 if (unlikely(transport_check_aborted_status(&ioctx->cmd, false)
2291 || WARN_ON_ONCE(state == SRPT_STATE_CMD_RSP_SENT))) {
2292 atomic_inc(&ch->req_lim_delta);
2293 srpt_abort_cmd(ioctx);
Joern Engelb79fafa2013-07-03 11:22:17 -04002294 return;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002295 }
2296
Bart Van Asschea42d9852011-10-14 01:30:46 +00002297 /* For read commands, transfer the data to the initiator. */
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002298 if (ioctx->cmd.data_direction == DMA_FROM_DEVICE &&
2299 ioctx->cmd.data_length &&
Bart Van Asschea42d9852011-10-14 01:30:46 +00002300 !ioctx->queue_status_only) {
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002301 for (i = ioctx->n_rw_ctx - 1; i >= 0; i--) {
2302 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
2303
2304 first_wr = rdma_rw_ctx_wrs(&ctx->rw, ch->qp,
2305 ch->sport->port, NULL,
2306 first_wr ? first_wr : &send_wr);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002307 }
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002308 } else {
2309 first_wr = &send_wr;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002310 }
2311
2312 if (state != SRPT_STATE_MGMT)
Bart Van Assche649ee052015-04-14 13:26:44 +02002313 resp_len = srpt_build_cmd_rsp(ch, ioctx, ioctx->cmd.tag,
Bart Van Asschea42d9852011-10-14 01:30:46 +00002314 cmd->scsi_status);
2315 else {
2316 srp_tm_status
2317 = tcm_to_srp_tsk_mgmt_status(cmd->se_tmr_req->response);
2318 resp_len = srpt_build_tskmgmt_rsp(ch, ioctx, srp_tm_status,
Bart Van Assche649ee052015-04-14 13:26:44 +02002319 ioctx->cmd.tag);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002320 }
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002321
2322 atomic_inc(&ch->req_lim);
2323
2324 if (unlikely(atomic_sub_return(1 + ioctx->n_rdma,
2325 &ch->sq_wr_avail) < 0)) {
2326 pr_warn("%s: IB send queue full (needed %d)\n",
2327 __func__, ioctx->n_rdma);
2328 ret = -ENOMEM;
2329 goto out;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002330 }
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002331
2332 ib_dma_sync_single_for_device(sdev->device, ioctx->ioctx.dma, resp_len,
2333 DMA_TO_DEVICE);
2334
2335 sge.addr = ioctx->ioctx.dma;
2336 sge.length = resp_len;
2337 sge.lkey = sdev->pd->local_dma_lkey;
2338
2339 ioctx->ioctx.cqe.done = srpt_send_done;
2340 send_wr.next = NULL;
2341 send_wr.wr_cqe = &ioctx->ioctx.cqe;
2342 send_wr.sg_list = &sge;
2343 send_wr.num_sge = 1;
2344 send_wr.opcode = IB_WR_SEND;
2345 send_wr.send_flags = IB_SEND_SIGNALED;
2346
2347 ret = ib_post_send(ch->qp, first_wr, &bad_wr);
2348 if (ret < 0) {
2349 pr_err("%s: sending cmd response failed for tag %llu (%d)\n",
2350 __func__, ioctx->cmd.tag, ret);
2351 goto out;
2352 }
2353
2354 return;
2355
2356out:
2357 atomic_add(1 + ioctx->n_rdma, &ch->sq_wr_avail);
2358 atomic_dec(&ch->req_lim);
2359 srpt_set_cmd_state(ioctx, SRPT_STATE_DONE);
2360 target_put_sess_cmd(&ioctx->cmd);
Joern Engelb79fafa2013-07-03 11:22:17 -04002361}
Bart Van Asschea42d9852011-10-14 01:30:46 +00002362
Joern Engelb79fafa2013-07-03 11:22:17 -04002363static int srpt_queue_data_in(struct se_cmd *cmd)
2364{
2365 srpt_queue_response(cmd);
2366 return 0;
2367}
2368
2369static void srpt_queue_tm_rsp(struct se_cmd *cmd)
2370{
2371 srpt_queue_response(cmd);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002372}
2373
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07002374static void srpt_aborted_task(struct se_cmd *cmd)
2375{
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07002376}
2377
Bart Van Asschea42d9852011-10-14 01:30:46 +00002378static int srpt_queue_status(struct se_cmd *cmd)
2379{
2380 struct srpt_send_ioctx *ioctx;
2381
2382 ioctx = container_of(cmd, struct srpt_send_ioctx, cmd);
2383 BUG_ON(ioctx->sense_data != cmd->sense_buffer);
2384 if (cmd->se_cmd_flags &
2385 (SCF_TRANSPORT_TASK_SENSE | SCF_EMULATED_TASK_SENSE))
2386 WARN_ON(cmd->scsi_status != SAM_STAT_CHECK_CONDITION);
2387 ioctx->queue_status_only = true;
Joern Engelb79fafa2013-07-03 11:22:17 -04002388 srpt_queue_response(cmd);
2389 return 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002390}
2391
2392static void srpt_refresh_port_work(struct work_struct *work)
2393{
2394 struct srpt_port *sport = container_of(work, struct srpt_port, work);
2395
2396 srpt_refresh_port(sport);
2397}
2398
Bart Van Asschea42d9852011-10-14 01:30:46 +00002399/**
2400 * srpt_release_sdev() - Free the channel resources associated with a target.
2401 */
2402static int srpt_release_sdev(struct srpt_device *sdev)
2403{
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002404 int i, res;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002405
2406 WARN_ON_ONCE(irqs_disabled());
2407
2408 BUG_ON(!sdev);
2409
Bart Van Assche86289912016-02-11 11:08:34 -08002410 mutex_lock(&sdev->mutex);
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002411 for (i = 0; i < ARRAY_SIZE(sdev->port); i++)
2412 sdev->port[i].enabled = false;
2413 __srpt_close_all_ch(sdev);
Bart Van Assche86289912016-02-11 11:08:34 -08002414 mutex_unlock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002415
2416 res = wait_event_interruptible(sdev->ch_releaseQ,
Bart Van Assche86289912016-02-11 11:08:34 -08002417 list_empty_careful(&sdev->rch_list));
Bart Van Asschea42d9852011-10-14 01:30:46 +00002418 if (res)
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002419 pr_err("%s: interrupted.\n", __func__);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002420
2421 return 0;
2422}
2423
2424static struct srpt_port *__srpt_lookup_port(const char *name)
2425{
2426 struct ib_device *dev;
2427 struct srpt_device *sdev;
2428 struct srpt_port *sport;
2429 int i;
2430
2431 list_for_each_entry(sdev, &srpt_dev_list, list) {
2432 dev = sdev->device;
2433 if (!dev)
2434 continue;
2435
2436 for (i = 0; i < dev->phys_port_cnt; i++) {
2437 sport = &sdev->port[i];
2438
2439 if (!strcmp(sport->port_guid, name))
2440 return sport;
2441 }
2442 }
2443
2444 return NULL;
2445}
2446
2447static struct srpt_port *srpt_lookup_port(const char *name)
2448{
2449 struct srpt_port *sport;
2450
2451 spin_lock(&srpt_dev_lock);
2452 sport = __srpt_lookup_port(name);
2453 spin_unlock(&srpt_dev_lock);
2454
2455 return sport;
2456}
2457
2458/**
2459 * srpt_add_one() - Infiniband device addition callback function.
2460 */
2461static void srpt_add_one(struct ib_device *device)
2462{
2463 struct srpt_device *sdev;
2464 struct srpt_port *sport;
2465 struct ib_srq_init_attr srq_attr;
2466 int i;
2467
2468 pr_debug("device = %p, device->dma_ops = %p\n", device,
2469 device->dma_ops);
2470
Bart Van Assche9d2aa2b2016-02-11 11:03:31 -08002471 sdev = kzalloc(sizeof(*sdev), GFP_KERNEL);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002472 if (!sdev)
2473 goto err;
2474
2475 sdev->device = device;
2476 INIT_LIST_HEAD(&sdev->rch_list);
2477 init_waitqueue_head(&sdev->ch_releaseQ);
Bart Van Assche86289912016-02-11 11:08:34 -08002478 mutex_init(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002479
Bart Van Asschea42d9852011-10-14 01:30:46 +00002480 sdev->pd = ib_alloc_pd(device);
2481 if (IS_ERR(sdev->pd))
2482 goto free_dev;
2483
Or Gerlitz4a061b22015-12-18 10:59:46 +02002484 sdev->srq_size = min(srpt_srq_size, sdev->device->attrs.max_srq_wr);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002485
2486 srq_attr.event_handler = srpt_srq_event;
2487 srq_attr.srq_context = (void *)sdev;
2488 srq_attr.attr.max_wr = sdev->srq_size;
2489 srq_attr.attr.max_sge = 1;
2490 srq_attr.attr.srq_limit = 0;
Roland Dreier6f360332012-04-12 07:51:08 -07002491 srq_attr.srq_type = IB_SRQT_BASIC;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002492
2493 sdev->srq = ib_create_srq(sdev->pd, &srq_attr);
2494 if (IS_ERR(sdev->srq))
Jason Gunthorpe5a783952015-07-30 17:22:24 -06002495 goto err_pd;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002496
2497 pr_debug("%s: create SRQ #wr= %d max_allow=%d dev= %s\n",
Or Gerlitz4a061b22015-12-18 10:59:46 +02002498 __func__, sdev->srq_size, sdev->device->attrs.max_srq_wr,
Bart Van Asschea42d9852011-10-14 01:30:46 +00002499 device->name);
2500
2501 if (!srpt_service_guid)
2502 srpt_service_guid = be64_to_cpu(device->node_guid);
2503
2504 sdev->cm_id = ib_create_cm_id(device, srpt_cm_handler, sdev);
2505 if (IS_ERR(sdev->cm_id))
2506 goto err_srq;
2507
2508 /* print out target login information */
2509 pr_debug("Target login info: id_ext=%016llx,ioc_guid=%016llx,"
2510 "pkey=ffff,service_id=%016llx\n", srpt_service_guid,
2511 srpt_service_guid, srpt_service_guid);
2512
2513 /*
2514 * We do not have a consistent service_id (ie. also id_ext of target_id)
2515 * to identify this target. We currently use the guid of the first HCA
2516 * in the system as service_id; therefore, the target_id will change
2517 * if this HCA is gone bad and replaced by different HCA
2518 */
Haggai Eran73fec7f2015-07-30 17:50:26 +03002519 if (ib_cm_listen(sdev->cm_id, cpu_to_be64(srpt_service_guid), 0))
Bart Van Asschea42d9852011-10-14 01:30:46 +00002520 goto err_cm;
2521
2522 INIT_IB_EVENT_HANDLER(&sdev->event_handler, sdev->device,
2523 srpt_event_handler);
2524 if (ib_register_event_handler(&sdev->event_handler))
2525 goto err_cm;
2526
2527 sdev->ioctx_ring = (struct srpt_recv_ioctx **)
2528 srpt_alloc_ioctx_ring(sdev, sdev->srq_size,
2529 sizeof(*sdev->ioctx_ring[0]),
2530 srp_max_req_size, DMA_FROM_DEVICE);
2531 if (!sdev->ioctx_ring)
2532 goto err_event;
2533
2534 for (i = 0; i < sdev->srq_size; ++i)
2535 srpt_post_recv(sdev, sdev->ioctx_ring[i]);
2536
Roland Dreierf2250662012-02-02 12:55:58 -08002537 WARN_ON(sdev->device->phys_port_cnt > ARRAY_SIZE(sdev->port));
Bart Van Asschea42d9852011-10-14 01:30:46 +00002538
2539 for (i = 1; i <= sdev->device->phys_port_cnt; i++) {
2540 sport = &sdev->port[i - 1];
2541 sport->sdev = sdev;
2542 sport->port = i;
2543 sport->port_attrib.srp_max_rdma_size = DEFAULT_MAX_RDMA_SIZE;
2544 sport->port_attrib.srp_max_rsp_size = DEFAULT_MAX_RSP_SIZE;
2545 sport->port_attrib.srp_sq_size = DEF_SRPT_SQ_SIZE;
2546 INIT_WORK(&sport->work, srpt_refresh_port_work);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002547
2548 if (srpt_refresh_port(sport)) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002549 pr_err("MAD registration failed for %s-%d.\n",
Bart Van Asschef68cba4e92016-02-11 11:04:20 -08002550 sdev->device->name, i);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002551 goto err_ring;
2552 }
2553 snprintf(sport->port_guid, sizeof(sport->port_guid),
2554 "0x%016llx%016llx",
2555 be64_to_cpu(sport->gid.global.subnet_prefix),
2556 be64_to_cpu(sport->gid.global.interface_id));
2557 }
2558
2559 spin_lock(&srpt_dev_lock);
2560 list_add_tail(&sdev->list, &srpt_dev_list);
2561 spin_unlock(&srpt_dev_lock);
2562
2563out:
2564 ib_set_client_data(device, &srpt_client, sdev);
2565 pr_debug("added %s.\n", device->name);
2566 return;
2567
2568err_ring:
2569 srpt_free_ioctx_ring((struct srpt_ioctx **)sdev->ioctx_ring, sdev,
2570 sdev->srq_size, srp_max_req_size,
2571 DMA_FROM_DEVICE);
2572err_event:
2573 ib_unregister_event_handler(&sdev->event_handler);
2574err_cm:
2575 ib_destroy_cm_id(sdev->cm_id);
2576err_srq:
2577 ib_destroy_srq(sdev->srq);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002578err_pd:
2579 ib_dealloc_pd(sdev->pd);
2580free_dev:
2581 kfree(sdev);
2582err:
2583 sdev = NULL;
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002584 pr_info("%s(%s) failed.\n", __func__, device->name);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002585 goto out;
2586}
2587
2588/**
2589 * srpt_remove_one() - InfiniBand device removal callback function.
2590 */
Haggai Eran7c1eb452015-07-30 17:50:14 +03002591static void srpt_remove_one(struct ib_device *device, void *client_data)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002592{
Haggai Eran7c1eb452015-07-30 17:50:14 +03002593 struct srpt_device *sdev = client_data;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002594 int i;
2595
Bart Van Asschea42d9852011-10-14 01:30:46 +00002596 if (!sdev) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002597 pr_info("%s(%s): nothing to do.\n", __func__, device->name);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002598 return;
2599 }
2600
2601 srpt_unregister_mad_agent(sdev);
2602
2603 ib_unregister_event_handler(&sdev->event_handler);
2604
2605 /* Cancel any work queued by the just unregistered IB event handler. */
2606 for (i = 0; i < sdev->device->phys_port_cnt; i++)
2607 cancel_work_sync(&sdev->port[i].work);
2608
2609 ib_destroy_cm_id(sdev->cm_id);
2610
2611 /*
2612 * Unregistering a target must happen after destroying sdev->cm_id
2613 * such that no new SRP_LOGIN_REQ information units can arrive while
2614 * destroying the target.
2615 */
2616 spin_lock(&srpt_dev_lock);
2617 list_del(&sdev->list);
2618 spin_unlock(&srpt_dev_lock);
2619 srpt_release_sdev(sdev);
2620
2621 ib_destroy_srq(sdev->srq);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002622 ib_dealloc_pd(sdev->pd);
2623
2624 srpt_free_ioctx_ring((struct srpt_ioctx **)sdev->ioctx_ring, sdev,
2625 sdev->srq_size, srp_max_req_size, DMA_FROM_DEVICE);
2626 sdev->ioctx_ring = NULL;
2627 kfree(sdev);
2628}
2629
2630static struct ib_client srpt_client = {
2631 .name = DRV_NAME,
2632 .add = srpt_add_one,
2633 .remove = srpt_remove_one
2634};
2635
2636static int srpt_check_true(struct se_portal_group *se_tpg)
2637{
2638 return 1;
2639}
2640
2641static int srpt_check_false(struct se_portal_group *se_tpg)
2642{
2643 return 0;
2644}
2645
2646static char *srpt_get_fabric_name(void)
2647{
2648 return "srpt";
2649}
2650
Bart Van Asschea42d9852011-10-14 01:30:46 +00002651static char *srpt_get_fabric_wwn(struct se_portal_group *tpg)
2652{
2653 struct srpt_port *sport = container_of(tpg, struct srpt_port, port_tpg_1);
2654
2655 return sport->port_guid;
2656}
2657
2658static u16 srpt_get_tag(struct se_portal_group *tpg)
2659{
2660 return 1;
2661}
2662
Bart Van Asschea42d9852011-10-14 01:30:46 +00002663static u32 srpt_tpg_get_inst_index(struct se_portal_group *se_tpg)
2664{
2665 return 1;
2666}
2667
2668static void srpt_release_cmd(struct se_cmd *se_cmd)
2669{
Nicholas Bellinger9474b042012-11-27 23:55:57 -08002670 struct srpt_send_ioctx *ioctx = container_of(se_cmd,
2671 struct srpt_send_ioctx, cmd);
2672 struct srpt_rdma_ch *ch = ioctx->ch;
Bart Van Assche3c968882016-04-07 15:55:04 -07002673 unsigned long flags;
Nicholas Bellinger9474b042012-11-27 23:55:57 -08002674
2675 WARN_ON(ioctx->state != SRPT_STATE_DONE);
Nicholas Bellinger9474b042012-11-27 23:55:57 -08002676
Christoph Hellwigb99f8e42016-05-03 18:01:11 +02002677 if (ioctx->n_rw_ctx) {
2678 srpt_free_rw_ctxs(ch, ioctx);
2679 ioctx->n_rw_ctx = 0;
Nicholas Bellinger9474b042012-11-27 23:55:57 -08002680 }
2681
Bart Van Assche3c968882016-04-07 15:55:04 -07002682 spin_lock_irqsave(&ch->spinlock, flags);
2683 list_add(&ioctx->free_list, &ch->free_list);
2684 spin_unlock_irqrestore(&ch->spinlock, flags);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002685}
2686
2687/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00002688 * srpt_close_session() - Forcibly close a session.
2689 *
2690 * Callback function invoked by the TCM core to clean up sessions associated
2691 * with a node ACL when the user invokes
2692 * rmdir /sys/kernel/config/target/$driver/$port/$tpg/acls/$i_port_id
2693 */
2694static void srpt_close_session(struct se_session *se_sess)
2695{
2696 DECLARE_COMPLETION_ONSTACK(release_done);
Bart Van Asschef108f0f2016-02-11 11:06:14 -08002697 struct srpt_rdma_ch *ch = se_sess->fabric_sess_ptr;
2698 struct srpt_device *sdev = ch->sport->sdev;
2699 bool wait;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002700
Bart Van Asschef108f0f2016-02-11 11:06:14 -08002701 pr_debug("ch %s-%d state %d\n", ch->sess_name, ch->qp->qp_num,
2702 ch->state);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002703
Bart Van Assche86289912016-02-11 11:08:34 -08002704 mutex_lock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002705 BUG_ON(ch->release_done);
2706 ch->release_done = &release_done;
Bart Van Asschef108f0f2016-02-11 11:06:14 -08002707 wait = !list_empty(&ch->list);
Bart Van Asscheaaf45bd2016-02-11 11:08:53 -08002708 srpt_disconnect_ch(ch);
Bart Van Assche86289912016-02-11 11:08:34 -08002709 mutex_unlock(&sdev->mutex);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002710
Bart Van Asschef108f0f2016-02-11 11:06:14 -08002711 if (!wait)
2712 return;
2713
2714 while (wait_for_completion_timeout(&release_done, 180 * HZ) == 0)
2715 pr_info("%s(%s-%d state %d): still waiting ...\n", __func__,
2716 ch->sess_name, ch->qp->qp_num, ch->state);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002717}
2718
2719/**
Bart Van Asschea42d9852011-10-14 01:30:46 +00002720 * srpt_sess_get_index() - Return the value of scsiAttIntrPortIndex (SCSI-MIB).
2721 *
2722 * A quote from RFC 4455 (SCSI-MIB) about this MIB object:
2723 * This object represents an arbitrary integer used to uniquely identify a
2724 * particular attached remote initiator port to a particular SCSI target port
2725 * within a particular SCSI target device within a particular SCSI instance.
2726 */
2727static u32 srpt_sess_get_index(struct se_session *se_sess)
2728{
2729 return 0;
2730}
2731
2732static void srpt_set_default_node_attrs(struct se_node_acl *nacl)
2733{
2734}
2735
Bart Van Asschea42d9852011-10-14 01:30:46 +00002736/* Note: only used from inside debug printk's by the TCM core. */
2737static int srpt_get_tcm_cmd_state(struct se_cmd *se_cmd)
2738{
2739 struct srpt_send_ioctx *ioctx;
2740
2741 ioctx = container_of(se_cmd, struct srpt_send_ioctx, cmd);
2742 return srpt_get_cmd_state(ioctx);
2743}
2744
Bart Van Asschea42d9852011-10-14 01:30:46 +00002745/**
2746 * srpt_parse_i_port_id() - Parse an initiator port ID.
2747 * @name: ASCII representation of a 128-bit initiator port ID.
2748 * @i_port_id: Binary 128-bit port ID.
2749 */
2750static int srpt_parse_i_port_id(u8 i_port_id[16], const char *name)
2751{
2752 const char *p;
2753 unsigned len, count, leading_zero_bytes;
2754 int ret, rc;
2755
2756 p = name;
Rasmus Villemoesb60459f2014-10-13 15:54:46 -07002757 if (strncasecmp(p, "0x", 2) == 0)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002758 p += 2;
2759 ret = -EINVAL;
2760 len = strlen(p);
2761 if (len % 2)
2762 goto out;
2763 count = min(len / 2, 16U);
2764 leading_zero_bytes = 16 - count;
2765 memset(i_port_id, 0, leading_zero_bytes);
2766 rc = hex2bin(i_port_id + leading_zero_bytes, p, count);
2767 if (rc < 0)
2768 pr_debug("hex2bin failed for srpt_parse_i_port_id: %d\n", rc);
2769 ret = 0;
2770out:
2771 return ret;
2772}
2773
2774/*
2775 * configfs callback function invoked for
2776 * mkdir /sys/kernel/config/target/$driver/$port/$tpg/acls/$i_port_id
2777 */
Christoph Hellwigc7d6a802015-04-13 19:51:14 +02002778static int srpt_init_nodeacl(struct se_node_acl *se_nacl, const char *name)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002779{
Bart Van Asschea42d9852011-10-14 01:30:46 +00002780 u8 i_port_id[16];
2781
2782 if (srpt_parse_i_port_id(i_port_id, name) < 0) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002783 pr_err("invalid initiator port ID %s\n", name);
Christoph Hellwigc7d6a802015-04-13 19:51:14 +02002784 return -EINVAL;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002785 }
Christoph Hellwigc7d6a802015-04-13 19:51:14 +02002786 return 0;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002787}
2788
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002789static ssize_t srpt_tpg_attrib_srp_max_rdma_size_show(struct config_item *item,
2790 char *page)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002791{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002792 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002793 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2794
2795 return sprintf(page, "%u\n", sport->port_attrib.srp_max_rdma_size);
2796}
2797
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002798static ssize_t srpt_tpg_attrib_srp_max_rdma_size_store(struct config_item *item,
2799 const char *page, size_t count)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002800{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002801 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002802 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2803 unsigned long val;
2804 int ret;
2805
Jingoo Han9d8abf42014-02-05 11:22:05 +09002806 ret = kstrtoul(page, 0, &val);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002807 if (ret < 0) {
Jingoo Han9d8abf42014-02-05 11:22:05 +09002808 pr_err("kstrtoul() failed with ret: %d\n", ret);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002809 return -EINVAL;
2810 }
2811 if (val > MAX_SRPT_RDMA_SIZE) {
2812 pr_err("val: %lu exceeds MAX_SRPT_RDMA_SIZE: %d\n", val,
2813 MAX_SRPT_RDMA_SIZE);
2814 return -EINVAL;
2815 }
2816 if (val < DEFAULT_MAX_RDMA_SIZE) {
2817 pr_err("val: %lu smaller than DEFAULT_MAX_RDMA_SIZE: %d\n",
2818 val, DEFAULT_MAX_RDMA_SIZE);
2819 return -EINVAL;
2820 }
2821 sport->port_attrib.srp_max_rdma_size = val;
2822
2823 return count;
2824}
2825
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002826static ssize_t srpt_tpg_attrib_srp_max_rsp_size_show(struct config_item *item,
2827 char *page)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002828{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002829 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002830 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2831
2832 return sprintf(page, "%u\n", sport->port_attrib.srp_max_rsp_size);
2833}
2834
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002835static ssize_t srpt_tpg_attrib_srp_max_rsp_size_store(struct config_item *item,
2836 const char *page, size_t count)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002837{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002838 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002839 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2840 unsigned long val;
2841 int ret;
2842
Jingoo Han9d8abf42014-02-05 11:22:05 +09002843 ret = kstrtoul(page, 0, &val);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002844 if (ret < 0) {
Jingoo Han9d8abf42014-02-05 11:22:05 +09002845 pr_err("kstrtoul() failed with ret: %d\n", ret);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002846 return -EINVAL;
2847 }
2848 if (val > MAX_SRPT_RSP_SIZE) {
2849 pr_err("val: %lu exceeds MAX_SRPT_RSP_SIZE: %d\n", val,
2850 MAX_SRPT_RSP_SIZE);
2851 return -EINVAL;
2852 }
2853 if (val < MIN_MAX_RSP_SIZE) {
2854 pr_err("val: %lu smaller than MIN_MAX_RSP_SIZE: %d\n", val,
2855 MIN_MAX_RSP_SIZE);
2856 return -EINVAL;
2857 }
2858 sport->port_attrib.srp_max_rsp_size = val;
2859
2860 return count;
2861}
2862
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002863static ssize_t srpt_tpg_attrib_srp_sq_size_show(struct config_item *item,
2864 char *page)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002865{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002866 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002867 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2868
2869 return sprintf(page, "%u\n", sport->port_attrib.srp_sq_size);
2870}
2871
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002872static ssize_t srpt_tpg_attrib_srp_sq_size_store(struct config_item *item,
2873 const char *page, size_t count)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002874{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002875 struct se_portal_group *se_tpg = attrib_to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002876 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2877 unsigned long val;
2878 int ret;
2879
Jingoo Han9d8abf42014-02-05 11:22:05 +09002880 ret = kstrtoul(page, 0, &val);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002881 if (ret < 0) {
Jingoo Han9d8abf42014-02-05 11:22:05 +09002882 pr_err("kstrtoul() failed with ret: %d\n", ret);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002883 return -EINVAL;
2884 }
2885 if (val > MAX_SRPT_SRQ_SIZE) {
2886 pr_err("val: %lu exceeds MAX_SRPT_SRQ_SIZE: %d\n", val,
2887 MAX_SRPT_SRQ_SIZE);
2888 return -EINVAL;
2889 }
2890 if (val < MIN_SRPT_SRQ_SIZE) {
2891 pr_err("val: %lu smaller than MIN_SRPT_SRQ_SIZE: %d\n", val,
2892 MIN_SRPT_SRQ_SIZE);
2893 return -EINVAL;
2894 }
2895 sport->port_attrib.srp_sq_size = val;
2896
2897 return count;
2898}
2899
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002900CONFIGFS_ATTR(srpt_tpg_attrib_, srp_max_rdma_size);
2901CONFIGFS_ATTR(srpt_tpg_attrib_, srp_max_rsp_size);
2902CONFIGFS_ATTR(srpt_tpg_attrib_, srp_sq_size);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002903
2904static struct configfs_attribute *srpt_tpg_attrib_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002905 &srpt_tpg_attrib_attr_srp_max_rdma_size,
2906 &srpt_tpg_attrib_attr_srp_max_rsp_size,
2907 &srpt_tpg_attrib_attr_srp_sq_size,
Bart Van Asschea42d9852011-10-14 01:30:46 +00002908 NULL,
2909};
2910
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002911static ssize_t srpt_tpg_enable_show(struct config_item *item, char *page)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002912{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002913 struct se_portal_group *se_tpg = to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002914 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
2915
2916 return snprintf(page, PAGE_SIZE, "%d\n", (sport->enabled) ? 1: 0);
2917}
2918
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002919static ssize_t srpt_tpg_enable_store(struct config_item *item,
2920 const char *page, size_t count)
Bart Van Asschea42d9852011-10-14 01:30:46 +00002921{
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002922 struct se_portal_group *se_tpg = to_tpg(item);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002923 struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1);
Bart Van Assche043a6802016-02-11 11:09:28 -08002924 struct srpt_device *sdev = sport->sdev;
2925 struct srpt_rdma_ch *ch;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002926 unsigned long tmp;
2927 int ret;
2928
Jingoo Han9d8abf42014-02-05 11:22:05 +09002929 ret = kstrtoul(page, 0, &tmp);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002930 if (ret < 0) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002931 pr_err("Unable to extract srpt_tpg_store_enable\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00002932 return -EINVAL;
2933 }
2934
2935 if ((tmp != 0) && (tmp != 1)) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04002936 pr_err("Illegal value for srpt_tpg_store_enable: %lu\n", tmp);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002937 return -EINVAL;
2938 }
Bart Van Assche043a6802016-02-11 11:09:28 -08002939 if (sport->enabled == tmp)
2940 goto out;
2941 sport->enabled = tmp;
2942 if (sport->enabled)
2943 goto out;
Bart Van Asschea42d9852011-10-14 01:30:46 +00002944
Bart Van Assche043a6802016-02-11 11:09:28 -08002945 mutex_lock(&sdev->mutex);
2946 list_for_each_entry(ch, &sdev->rch_list, list) {
2947 if (ch->sport == sport) {
2948 pr_debug("%s: ch %p %s-%d\n", __func__, ch,
2949 ch->sess_name, ch->qp->qp_num);
2950 srpt_disconnect_ch(ch);
2951 srpt_close_ch(ch);
2952 }
2953 }
2954 mutex_unlock(&sdev->mutex);
2955
2956out:
Bart Van Asschea42d9852011-10-14 01:30:46 +00002957 return count;
2958}
2959
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002960CONFIGFS_ATTR(srpt_tpg_, enable);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002961
2962static struct configfs_attribute *srpt_tpg_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02002963 &srpt_tpg_attr_enable,
Bart Van Asschea42d9852011-10-14 01:30:46 +00002964 NULL,
2965};
2966
2967/**
2968 * configfs callback invoked for
2969 * mkdir /sys/kernel/config/target/$driver/$port/$tpg
2970 */
2971static struct se_portal_group *srpt_make_tpg(struct se_wwn *wwn,
2972 struct config_group *group,
2973 const char *name)
2974{
2975 struct srpt_port *sport = container_of(wwn, struct srpt_port, port_wwn);
2976 int res;
2977
2978 /* Initialize sport->port_wwn and sport->port_tpg_1 */
Nicholas Bellingerbc0c94b2015-05-20 21:48:03 -07002979 res = core_tpg_register(&sport->port_wwn, &sport->port_tpg_1, SCSI_PROTOCOL_SRP);
Bart Van Asschea42d9852011-10-14 01:30:46 +00002980 if (res)
2981 return ERR_PTR(res);
2982
2983 return &sport->port_tpg_1;
2984}
2985
2986/**
2987 * configfs callback invoked for
2988 * rmdir /sys/kernel/config/target/$driver/$port/$tpg
2989 */
2990static void srpt_drop_tpg(struct se_portal_group *tpg)
2991{
2992 struct srpt_port *sport = container_of(tpg,
2993 struct srpt_port, port_tpg_1);
2994
2995 sport->enabled = false;
2996 core_tpg_deregister(&sport->port_tpg_1);
2997}
2998
2999/**
3000 * configfs callback invoked for
3001 * mkdir /sys/kernel/config/target/$driver/$port
3002 */
3003static struct se_wwn *srpt_make_tport(struct target_fabric_configfs *tf,
3004 struct config_group *group,
3005 const char *name)
3006{
3007 struct srpt_port *sport;
3008 int ret;
3009
3010 sport = srpt_lookup_port(name);
3011 pr_debug("make_tport(%s)\n", name);
3012 ret = -EINVAL;
3013 if (!sport)
3014 goto err;
3015
3016 return &sport->port_wwn;
3017
3018err:
3019 return ERR_PTR(ret);
3020}
3021
3022/**
3023 * configfs callback invoked for
3024 * rmdir /sys/kernel/config/target/$driver/$port
3025 */
3026static void srpt_drop_tport(struct se_wwn *wwn)
3027{
3028 struct srpt_port *sport = container_of(wwn, struct srpt_port, port_wwn);
3029
3030 pr_debug("drop_tport(%s\n", config_item_name(&sport->port_wwn.wwn_group.cg_item));
3031}
3032
Christoph Hellwig2eafd722015-10-03 15:32:55 +02003033static ssize_t srpt_wwn_version_show(struct config_item *item, char *buf)
Bart Van Asschea42d9852011-10-14 01:30:46 +00003034{
3035 return scnprintf(buf, PAGE_SIZE, "%s\n", DRV_VERSION);
3036}
3037
Christoph Hellwig2eafd722015-10-03 15:32:55 +02003038CONFIGFS_ATTR_RO(srpt_wwn_, version);
Bart Van Asschea42d9852011-10-14 01:30:46 +00003039
3040static struct configfs_attribute *srpt_wwn_attrs[] = {
Christoph Hellwig2eafd722015-10-03 15:32:55 +02003041 &srpt_wwn_attr_version,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003042 NULL,
3043};
3044
Christoph Hellwig9ac89282015-04-08 20:01:35 +02003045static const struct target_core_fabric_ops srpt_template = {
3046 .module = THIS_MODULE,
3047 .name = "srpt",
Bart Van Asschea42d9852011-10-14 01:30:46 +00003048 .get_fabric_name = srpt_get_fabric_name,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003049 .tpg_get_wwn = srpt_get_fabric_wwn,
3050 .tpg_get_tag = srpt_get_tag,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003051 .tpg_check_demo_mode = srpt_check_false,
3052 .tpg_check_demo_mode_cache = srpt_check_true,
3053 .tpg_check_demo_mode_write_protect = srpt_check_true,
3054 .tpg_check_prod_mode_write_protect = srpt_check_false,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003055 .tpg_get_inst_index = srpt_tpg_get_inst_index,
3056 .release_cmd = srpt_release_cmd,
3057 .check_stop_free = srpt_check_stop_free,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003058 .close_session = srpt_close_session,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003059 .sess_get_index = srpt_sess_get_index,
3060 .sess_get_initiator_sid = NULL,
3061 .write_pending = srpt_write_pending,
3062 .write_pending_status = srpt_write_pending_status,
3063 .set_default_node_attributes = srpt_set_default_node_attrs,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003064 .get_cmd_state = srpt_get_tcm_cmd_state,
Joern Engelb79fafa2013-07-03 11:22:17 -04003065 .queue_data_in = srpt_queue_data_in,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003066 .queue_status = srpt_queue_status,
Joern Engelb79fafa2013-07-03 11:22:17 -04003067 .queue_tm_rsp = srpt_queue_tm_rsp,
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07003068 .aborted_task = srpt_aborted_task,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003069 /*
3070 * Setup function pointers for generic logic in
3071 * target_core_fabric_configfs.c
3072 */
3073 .fabric_make_wwn = srpt_make_tport,
3074 .fabric_drop_wwn = srpt_drop_tport,
3075 .fabric_make_tpg = srpt_make_tpg,
3076 .fabric_drop_tpg = srpt_drop_tpg,
Christoph Hellwigc7d6a802015-04-13 19:51:14 +02003077 .fabric_init_nodeacl = srpt_init_nodeacl,
Christoph Hellwig9ac89282015-04-08 20:01:35 +02003078
3079 .tfc_wwn_attrs = srpt_wwn_attrs,
3080 .tfc_tpg_base_attrs = srpt_tpg_attrs,
3081 .tfc_tpg_attrib_attrs = srpt_tpg_attrib_attrs,
Bart Van Asschea42d9852011-10-14 01:30:46 +00003082};
3083
3084/**
3085 * srpt_init_module() - Kernel module initialization.
3086 *
3087 * Note: Since ib_register_client() registers callback functions, and since at
3088 * least one of these callback functions (srpt_add_one()) calls target core
3089 * functions, this driver must be registered with the target core before
3090 * ib_register_client() is called.
3091 */
3092static int __init srpt_init_module(void)
3093{
3094 int ret;
3095
3096 ret = -EINVAL;
3097 if (srp_max_req_size < MIN_MAX_REQ_SIZE) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04003098 pr_err("invalid value %d for kernel module parameter"
Bart Van Asschea42d9852011-10-14 01:30:46 +00003099 " srp_max_req_size -- must be at least %d.\n",
3100 srp_max_req_size, MIN_MAX_REQ_SIZE);
3101 goto out;
3102 }
3103
3104 if (srpt_srq_size < MIN_SRPT_SRQ_SIZE
3105 || srpt_srq_size > MAX_SRPT_SRQ_SIZE) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04003106 pr_err("invalid value %d for kernel module parameter"
Bart Van Asschea42d9852011-10-14 01:30:46 +00003107 " srpt_srq_size -- must be in the range [%d..%d].\n",
3108 srpt_srq_size, MIN_SRPT_SRQ_SIZE, MAX_SRPT_SRQ_SIZE);
3109 goto out;
3110 }
3111
Christoph Hellwig9ac89282015-04-08 20:01:35 +02003112 ret = target_register_template(&srpt_template);
3113 if (ret)
Bart Van Asschea42d9852011-10-14 01:30:46 +00003114 goto out;
Bart Van Asschea42d9852011-10-14 01:30:46 +00003115
3116 ret = ib_register_client(&srpt_client);
3117 if (ret) {
Doug Ledford9f5d32a2014-10-20 18:25:15 -04003118 pr_err("couldn't register IB client\n");
Bart Van Asschea42d9852011-10-14 01:30:46 +00003119 goto out_unregister_target;
3120 }
3121
3122 return 0;
3123
3124out_unregister_target:
Christoph Hellwig9ac89282015-04-08 20:01:35 +02003125 target_unregister_template(&srpt_template);
Bart Van Asschea42d9852011-10-14 01:30:46 +00003126out:
3127 return ret;
3128}
3129
3130static void __exit srpt_cleanup_module(void)
3131{
3132 ib_unregister_client(&srpt_client);
Christoph Hellwig9ac89282015-04-08 20:01:35 +02003133 target_unregister_template(&srpt_template);
Bart Van Asschea42d9852011-10-14 01:30:46 +00003134}
3135
3136module_init(srpt_init_module);
3137module_exit(srpt_cleanup_module);