scsi: RDMA/srpt: Rework I/O context allocation
[linux-2.6-block.git] / drivers / infiniband / ulp / srpt / ib_srpt.c
CommitLineData
a42d985b
BVA
1/*
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>
63cf1a90 44#include <linux/inet.h>
c5efb621 45#include <rdma/ib_cache.h>
ba929992 46#include <scsi/scsi_proto.h>
a42d985b 47#include <scsi/scsi_tcq.h>
a42d985b 48#include <target/target_core_base.h>
a42d985b 49#include <target/target_core_fabric.h>
a42d985b
BVA
50#include "ib_srpt.h"
51
52/* Name of this kernel module. */
53#define DRV_NAME "ib_srpt"
a42d985b
BVA
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");
6feb64ff 61MODULE_DESCRIPTION("SCSI RDMA Protocol target driver");
a42d985b
BVA
62MODULE_LICENSE("Dual BSD/GPL");
63
64/*
65 * Global Variables
66 */
67
68static u64 srpt_service_guid;
486d8b9f
RD
69static DEFINE_SPINLOCK(srpt_dev_lock); /* Protects srpt_dev_list. */
70static LIST_HEAD(srpt_dev_list); /* List of srpt_device structures. */
a42d985b
BVA
71
72static unsigned srp_max_req_size = DEFAULT_MAX_REQ_SIZE;
73module_param(srp_max_req_size, int, 0444);
74MODULE_PARM_DESC(srp_max_req_size,
75 "Maximum size of SRP request messages in bytes.");
76
77static int srpt_srq_size = DEFAULT_SRPT_SRQ_SIZE;
78module_param(srpt_srq_size, int, 0444);
79MODULE_PARM_DESC(srpt_srq_size,
80 "Shared receive queue (SRQ) size.");
81
e4dca7b7 82static int srpt_get_u64_x(char *buffer, const struct kernel_param *kp)
a42d985b
BVA
83{
84 return sprintf(buffer, "0x%016llx", *(u64 *)kp->arg);
85}
86module_param_call(srpt_service_guid, NULL, srpt_get_u64_x, &srpt_service_guid,
87 0444);
88MODULE_PARM_DESC(srpt_service_guid,
75d79b80 89 "Using this value for ioc_guid, id_ext, and cm_listen_id instead of using the node_guid of the first HCA.");
a42d985b
BVA
90
91static struct ib_client srpt_client;
63cf1a90
BVA
92/* Protects both rdma_cm_port and rdma_cm_id. */
93static DEFINE_MUTEX(rdma_cm_mutex);
94/* Port number RDMA/CM will bind to. */
95static u16 rdma_cm_port;
96static struct rdma_cm_id *rdma_cm_id;
2c7f37ff 97static void srpt_release_cmd(struct se_cmd *se_cmd);
aaf45bd8 98static void srpt_free_ch(struct kref *kref);
a42d985b 99static int srpt_queue_status(struct se_cmd *cmd);
59fae4de
CH
100static void srpt_recv_done(struct ib_cq *cq, struct ib_wc *wc);
101static void srpt_send_done(struct ib_cq *cq, struct ib_wc *wc);
387add46 102static void srpt_process_wait_list(struct srpt_rdma_ch *ch);
a42d985b 103
f130c220
BVA
104/*
105 * The only allowed channel state changes are those that change the channel
106 * state into a state with a higher numerical value. Hence the new > prev test.
a42d985b 107 */
f130c220 108static bool srpt_set_ch_state(struct srpt_rdma_ch *ch, enum rdma_ch_state new)
a42d985b
BVA
109{
110 unsigned long flags;
111 enum rdma_ch_state prev;
f130c220 112 bool changed = false;
a42d985b
BVA
113
114 spin_lock_irqsave(&ch->spinlock, flags);
115 prev = ch->state;
f130c220 116 if (new > prev) {
a42d985b 117 ch->state = new;
f130c220
BVA
118 changed = true;
119 }
a42d985b 120 spin_unlock_irqrestore(&ch->spinlock, flags);
f130c220
BVA
121
122 return changed;
a42d985b
BVA
123}
124
125/**
10eac19b
BVA
126 * srpt_event_handler - asynchronous IB event callback function
127 * @handler: IB event handler registered by ib_register_event_handler().
128 * @event: Description of the event that occurred.
a42d985b
BVA
129 *
130 * Callback function called by the InfiniBand core when an asynchronous IB
131 * event occurs. This callback may occur in interrupt context. See also
132 * section 11.5.2, Set Asynchronous Event Handler in the InfiniBand
133 * Architecture Specification.
134 */
135static void srpt_event_handler(struct ib_event_handler *handler,
136 struct ib_event *event)
137{
138 struct srpt_device *sdev;
139 struct srpt_port *sport;
5f1141b1 140 u8 port_num;
a42d985b
BVA
141
142 sdev = ib_get_client_data(event->device, &srpt_client);
143 if (!sdev || sdev->device != event->device)
144 return;
145
146 pr_debug("ASYNC event= %d on device= %s\n", event->event,
6c854111 147 dev_name(&sdev->device->dev));
a42d985b
BVA
148
149 switch (event->event) {
150 case IB_EVENT_PORT_ERR:
5f1141b1
BVA
151 port_num = event->element.port_num - 1;
152 if (port_num < sdev->device->phys_port_cnt) {
153 sport = &sdev->port[port_num];
a42d985b
BVA
154 sport->lid = 0;
155 sport->sm_lid = 0;
5f1141b1
BVA
156 } else {
157 WARN(true, "event %d: port_num %d out of range 1..%d\n",
158 event->event, port_num + 1,
159 sdev->device->phys_port_cnt);
a42d985b
BVA
160 }
161 break;
162 case IB_EVENT_PORT_ACTIVE:
163 case IB_EVENT_LID_CHANGE:
164 case IB_EVENT_PKEY_CHANGE:
165 case IB_EVENT_SM_CHANGE:
166 case IB_EVENT_CLIENT_REREGISTER:
2aa1cf64 167 case IB_EVENT_GID_CHANGE:
a42d985b 168 /* Refresh port data asynchronously. */
5f1141b1
BVA
169 port_num = event->element.port_num - 1;
170 if (port_num < sdev->device->phys_port_cnt) {
171 sport = &sdev->port[port_num];
a42d985b
BVA
172 if (!sport->lid && !sport->sm_lid)
173 schedule_work(&sport->work);
5f1141b1
BVA
174 } else {
175 WARN(true, "event %d: port_num %d out of range 1..%d\n",
176 event->event, port_num + 1,
177 sdev->device->phys_port_cnt);
a42d985b
BVA
178 }
179 break;
180 default:
5f1141b1 181 pr_err("received unrecognized IB event %d\n", event->event);
a42d985b
BVA
182 break;
183 }
184}
185
186/**
10eac19b
BVA
187 * srpt_srq_event - SRQ event callback function
188 * @event: Description of the event that occurred.
189 * @ctx: Context pointer specified at SRQ creation time.
a42d985b
BVA
190 */
191static void srpt_srq_event(struct ib_event *event, void *ctx)
192{
d9f45ae6 193 pr_debug("SRQ event %d\n", event->event);
a42d985b
BVA
194}
195
aaf45bd8
BVA
196static const char *get_ch_state_name(enum rdma_ch_state s)
197{
198 switch (s) {
199 case CH_CONNECTING:
200 return "connecting";
201 case CH_LIVE:
202 return "live";
203 case CH_DISCONNECTING:
204 return "disconnecting";
205 case CH_DRAINING:
206 return "draining";
207 case CH_DISCONNECTED:
208 return "disconnected";
209 }
210 return "???";
211}
212
a42d985b 213/**
10eac19b
BVA
214 * srpt_qp_event - QP event callback function
215 * @event: Description of the event that occurred.
216 * @ch: SRPT RDMA channel.
a42d985b
BVA
217 */
218static void srpt_qp_event(struct ib_event *event, struct srpt_rdma_ch *ch)
219{
090fa24b
BVA
220 pr_debug("QP event %d on ch=%p sess_name=%s state=%d\n",
221 event->event, ch, ch->sess_name, ch->state);
a42d985b
BVA
222
223 switch (event->event) {
224 case IB_EVENT_COMM_EST:
63cf1a90
BVA
225 if (ch->using_rdma_cm)
226 rdma_notify(ch->rdma_cm.cm_id, event->event);
227 else
228 ib_cm_notify(ch->ib_cm.cm_id, event->event);
a42d985b
BVA
229 break;
230 case IB_EVENT_QP_LAST_WQE_REACHED:
aaf45bd8
BVA
231 pr_debug("%s-%d, state %s: received Last WQE event.\n",
232 ch->sess_name, ch->qp->qp_num,
233 get_ch_state_name(ch->state));
a42d985b
BVA
234 break;
235 default:
9f5d32af 236 pr_err("received unrecognized IB QP event %d\n", event->event);
a42d985b
BVA
237 break;
238 }
239}
240
241/**
10eac19b
BVA
242 * srpt_set_ioc - initialize a IOUnitInfo structure
243 * @c_list: controller list.
a42d985b
BVA
244 * @slot: one-based slot number.
245 * @value: four-bit value.
246 *
247 * Copies the lowest four bits of value in element slot of the array of four
248 * bit elements called c_list (controller list). The index slot is one-based.
249 */
250static void srpt_set_ioc(u8 *c_list, u32 slot, u8 value)
251{
252 u16 id;
253 u8 tmp;
254
255 id = (slot - 1) / 2;
256 if (slot & 0x1) {
257 tmp = c_list[id] & 0xf;
258 c_list[id] = (value << 4) | tmp;
259 } else {
260 tmp = c_list[id] & 0xf0;
261 c_list[id] = (value & 0xf) | tmp;
262 }
263}
264
265/**
10eac19b
BVA
266 * srpt_get_class_port_info - copy ClassPortInfo to a management datagram
267 * @mad: Datagram that will be sent as response to DM_ATTR_CLASS_PORT_INFO.
a42d985b
BVA
268 *
269 * See also section 16.3.3.1 ClassPortInfo in the InfiniBand Architecture
270 * Specification.
271 */
272static void srpt_get_class_port_info(struct ib_dm_mad *mad)
273{
274 struct ib_class_port_info *cif;
275
276 cif = (struct ib_class_port_info *)mad->data;
9d2aa2b4 277 memset(cif, 0, sizeof(*cif));
a42d985b
BVA
278 cif->base_version = 1;
279 cif->class_version = 1;
a42d985b 280
507f6afa 281 ib_set_cpi_resp_time(cif, 20);
a42d985b
BVA
282 mad->mad_hdr.status = 0;
283}
284
285/**
10eac19b
BVA
286 * srpt_get_iou - write IOUnitInfo to a management datagram
287 * @mad: Datagram that will be sent as response to DM_ATTR_IOU_INFO.
a42d985b
BVA
288 *
289 * See also section 16.3.3.3 IOUnitInfo in the InfiniBand Architecture
290 * Specification. See also section B.7, table B.6 in the SRP r16a document.
291 */
292static void srpt_get_iou(struct ib_dm_mad *mad)
293{
294 struct ib_dm_iou_info *ioui;
295 u8 slot;
296 int i;
297
298 ioui = (struct ib_dm_iou_info *)mad->data;
b356c1c1 299 ioui->change_id = cpu_to_be16(1);
a42d985b
BVA
300 ioui->max_controllers = 16;
301
302 /* set present for slot 1 and empty for the rest */
303 srpt_set_ioc(ioui->controller_list, 1, 1);
304 for (i = 1, slot = 2; i < 16; i++, slot++)
305 srpt_set_ioc(ioui->controller_list, slot, 0);
306
307 mad->mad_hdr.status = 0;
308}
309
310/**
10eac19b
BVA
311 * srpt_get_ioc - write IOControllerprofile to a management datagram
312 * @sport: HCA port through which the MAD has been received.
313 * @slot: Slot number specified in DM_ATTR_IOC_PROFILE query.
314 * @mad: Datagram that will be sent as response to DM_ATTR_IOC_PROFILE.
a42d985b
BVA
315 *
316 * See also section 16.3.3.4 IOControllerProfile in the InfiniBand
317 * Architecture Specification. See also section B.7, table B.7 in the SRP
318 * r16a document.
319 */
320static void srpt_get_ioc(struct srpt_port *sport, u32 slot,
321 struct ib_dm_mad *mad)
322{
323 struct srpt_device *sdev = sport->sdev;
324 struct ib_dm_ioc_profile *iocp;
dea26209 325 int send_queue_depth;
a42d985b
BVA
326
327 iocp = (struct ib_dm_ioc_profile *)mad->data;
328
329 if (!slot || slot > 16) {
330 mad->mad_hdr.status
b356c1c1 331 = cpu_to_be16(DM_MAD_STATUS_INVALID_FIELD);
a42d985b
BVA
332 return;
333 }
334
335 if (slot > 2) {
336 mad->mad_hdr.status
b356c1c1 337 = cpu_to_be16(DM_MAD_STATUS_NO_IOC);
a42d985b
BVA
338 return;
339 }
340
dea26209
BVA
341 if (sdev->use_srq)
342 send_queue_depth = sdev->srq_size;
343 else
ed262287 344 send_queue_depth = min(MAX_SRPT_RQ_SIZE,
dea26209
BVA
345 sdev->device->attrs.max_qp_wr);
346
9d2aa2b4 347 memset(iocp, 0, sizeof(*iocp));
a42d985b
BVA
348 strcpy(iocp->id_string, SRPT_ID_STRING);
349 iocp->guid = cpu_to_be64(srpt_service_guid);
4a061b28
OG
350 iocp->vendor_id = cpu_to_be32(sdev->device->attrs.vendor_id);
351 iocp->device_id = cpu_to_be32(sdev->device->attrs.vendor_part_id);
352 iocp->device_version = cpu_to_be16(sdev->device->attrs.hw_ver);
353 iocp->subsys_vendor_id = cpu_to_be32(sdev->device->attrs.vendor_id);
a42d985b 354 iocp->subsys_device_id = 0x0;
b356c1c1
VT
355 iocp->io_class = cpu_to_be16(SRP_REV16A_IB_IO_CLASS);
356 iocp->io_subclass = cpu_to_be16(SRP_IO_SUBCLASS);
357 iocp->protocol = cpu_to_be16(SRP_PROTOCOL);
358 iocp->protocol_version = cpu_to_be16(SRP_PROTOCOL_VERSION);
dea26209 359 iocp->send_queue_depth = cpu_to_be16(send_queue_depth);
a42d985b
BVA
360 iocp->rdma_read_depth = 4;
361 iocp->send_size = cpu_to_be32(srp_max_req_size);
362 iocp->rdma_size = cpu_to_be32(min(sport->port_attrib.srp_max_rdma_size,
363 1U << 24));
364 iocp->num_svc_entries = 1;
365 iocp->op_cap_mask = SRP_SEND_TO_IOC | SRP_SEND_FROM_IOC |
366 SRP_RDMA_READ_FROM_IOC | SRP_RDMA_WRITE_FROM_IOC;
367
368 mad->mad_hdr.status = 0;
369}
370
371/**
10eac19b
BVA
372 * srpt_get_svc_entries - write ServiceEntries to a management datagram
373 * @ioc_guid: I/O controller GUID to use in reply.
374 * @slot: I/O controller number.
375 * @hi: End of the range of service entries to be specified in the reply.
376 * @lo: Start of the range of service entries to be specified in the reply..
377 * @mad: Datagram that will be sent as response to DM_ATTR_SVC_ENTRIES.
a42d985b
BVA
378 *
379 * See also section 16.3.3.5 ServiceEntries in the InfiniBand Architecture
380 * Specification. See also section B.7, table B.8 in the SRP r16a document.
381 */
382static void srpt_get_svc_entries(u64 ioc_guid,
383 u16 slot, u8 hi, u8 lo, struct ib_dm_mad *mad)
384{
385 struct ib_dm_svc_entries *svc_entries;
386
387 WARN_ON(!ioc_guid);
388
389 if (!slot || slot > 16) {
390 mad->mad_hdr.status
b356c1c1 391 = cpu_to_be16(DM_MAD_STATUS_INVALID_FIELD);
a42d985b
BVA
392 return;
393 }
394
395 if (slot > 2 || lo > hi || hi > 1) {
396 mad->mad_hdr.status
b356c1c1 397 = cpu_to_be16(DM_MAD_STATUS_NO_IOC);
a42d985b
BVA
398 return;
399 }
400
401 svc_entries = (struct ib_dm_svc_entries *)mad->data;
9d2aa2b4 402 memset(svc_entries, 0, sizeof(*svc_entries));
a42d985b
BVA
403 svc_entries->service_entries[0].id = cpu_to_be64(ioc_guid);
404 snprintf(svc_entries->service_entries[0].name,
405 sizeof(svc_entries->service_entries[0].name),
406 "%s%016llx",
407 SRP_SERVICE_NAME_PREFIX,
408 ioc_guid);
409
410 mad->mad_hdr.status = 0;
411}
412
413/**
10eac19b
BVA
414 * srpt_mgmt_method_get - process a received management datagram
415 * @sp: HCA port through which the MAD has been received.
a42d985b
BVA
416 * @rq_mad: received MAD.
417 * @rsp_mad: response MAD.
418 */
419static void srpt_mgmt_method_get(struct srpt_port *sp, struct ib_mad *rq_mad,
420 struct ib_dm_mad *rsp_mad)
421{
422 u16 attr_id;
423 u32 slot;
424 u8 hi, lo;
425
426 attr_id = be16_to_cpu(rq_mad->mad_hdr.attr_id);
427 switch (attr_id) {
428 case DM_ATTR_CLASS_PORT_INFO:
429 srpt_get_class_port_info(rsp_mad);
430 break;
431 case DM_ATTR_IOU_INFO:
432 srpt_get_iou(rsp_mad);
433 break;
434 case DM_ATTR_IOC_PROFILE:
435 slot = be32_to_cpu(rq_mad->mad_hdr.attr_mod);
436 srpt_get_ioc(sp, slot, rsp_mad);
437 break;
438 case DM_ATTR_SVC_ENTRIES:
439 slot = be32_to_cpu(rq_mad->mad_hdr.attr_mod);
440 hi = (u8) ((slot >> 8) & 0xff);
441 lo = (u8) (slot & 0xff);
442 slot = (u16) ((slot >> 16) & 0xffff);
443 srpt_get_svc_entries(srpt_service_guid,
444 slot, hi, lo, rsp_mad);
445 break;
446 default:
447 rsp_mad->mad_hdr.status =
b356c1c1 448 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD_ATTR);
a42d985b
BVA
449 break;
450 }
451}
452
453/**
10eac19b
BVA
454 * srpt_mad_send_handler - MAD send completion callback
455 * @mad_agent: Return value of ib_register_mad_agent().
456 * @mad_wc: Work completion reporting that the MAD has been sent.
a42d985b
BVA
457 */
458static void srpt_mad_send_handler(struct ib_mad_agent *mad_agent,
459 struct ib_mad_send_wc *mad_wc)
460{
2553ba21 461 rdma_destroy_ah(mad_wc->send_buf->ah, RDMA_DESTROY_AH_SLEEPABLE);
a42d985b
BVA
462 ib_free_send_mad(mad_wc->send_buf);
463}
464
465/**
10eac19b
BVA
466 * srpt_mad_recv_handler - MAD reception callback function
467 * @mad_agent: Return value of ib_register_mad_agent().
468 * @send_buf: Not used.
469 * @mad_wc: Work completion reporting that a MAD has been received.
a42d985b
BVA
470 */
471static void srpt_mad_recv_handler(struct ib_mad_agent *mad_agent,
ca281265 472 struct ib_mad_send_buf *send_buf,
a42d985b
BVA
473 struct ib_mad_recv_wc *mad_wc)
474{
475 struct srpt_port *sport = (struct srpt_port *)mad_agent->context;
476 struct ib_ah *ah;
477 struct ib_mad_send_buf *rsp;
478 struct ib_dm_mad *dm_mad;
479
480 if (!mad_wc || !mad_wc->recv_buf.mad)
481 return;
482
483 ah = ib_create_ah_from_wc(mad_agent->qp->pd, mad_wc->wc,
484 mad_wc->recv_buf.grh, mad_agent->port_num);
485 if (IS_ERR(ah))
486 goto err;
487
488 BUILD_BUG_ON(offsetof(struct ib_dm_mad, data) != IB_MGMT_DEVICE_HDR);
489
490 rsp = ib_create_send_mad(mad_agent, mad_wc->wc->src_qp,
491 mad_wc->wc->pkey_index, 0,
492 IB_MGMT_DEVICE_HDR, IB_MGMT_DEVICE_DATA,
da2dfaa3
IW
493 GFP_KERNEL,
494 IB_MGMT_BASE_VERSION);
a42d985b
BVA
495 if (IS_ERR(rsp))
496 goto err_rsp;
497
498 rsp->ah = ah;
499
500 dm_mad = rsp->mad;
9d2aa2b4 501 memcpy(dm_mad, mad_wc->recv_buf.mad, sizeof(*dm_mad));
a42d985b
BVA
502 dm_mad->mad_hdr.method = IB_MGMT_METHOD_GET_RESP;
503 dm_mad->mad_hdr.status = 0;
504
505 switch (mad_wc->recv_buf.mad->mad_hdr.method) {
506 case IB_MGMT_METHOD_GET:
507 srpt_mgmt_method_get(sport, mad_wc->recv_buf.mad, dm_mad);
508 break;
509 case IB_MGMT_METHOD_SET:
510 dm_mad->mad_hdr.status =
b356c1c1 511 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD_ATTR);
a42d985b
BVA
512 break;
513 default:
514 dm_mad->mad_hdr.status =
b356c1c1 515 cpu_to_be16(DM_MAD_STATUS_UNSUP_METHOD);
a42d985b
BVA
516 break;
517 }
518
519 if (!ib_post_send_mad(rsp, NULL)) {
520 ib_free_recv_mad(mad_wc);
521 /* will destroy_ah & free_send_mad in send completion */
522 return;
523 }
524
525 ib_free_send_mad(rsp);
526
527err_rsp:
2553ba21 528 rdma_destroy_ah(ah, RDMA_DESTROY_AH_SLEEPABLE);
a42d985b
BVA
529err:
530 ib_free_recv_mad(mad_wc);
531}
532
b14cb744
BVA
533static int srpt_format_guid(char *buf, unsigned int size, const __be64 *guid)
534{
535 const __be16 *g = (const __be16 *)guid;
536
537 return snprintf(buf, size, "%04x:%04x:%04x:%04x",
538 be16_to_cpu(g[0]), be16_to_cpu(g[1]),
539 be16_to_cpu(g[2]), be16_to_cpu(g[3]));
540}
541
a42d985b 542/**
10eac19b
BVA
543 * srpt_refresh_port - configure a HCA port
544 * @sport: SRPT HCA port.
a42d985b
BVA
545 *
546 * Enable InfiniBand management datagram processing, update the cached sm_lid,
547 * lid and gid values, and register a callback function for processing MADs
548 * on the specified port.
549 *
550 * Note: It is safe to call this function more than once for the same port.
551 */
552static int srpt_refresh_port(struct srpt_port *sport)
553{
554 struct ib_mad_reg_req reg_req;
555 struct ib_port_modify port_modify;
556 struct ib_port_attr port_attr;
557 int ret;
558
9d2aa2b4 559 memset(&port_modify, 0, sizeof(port_modify));
a42d985b
BVA
560 port_modify.set_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP;
561 port_modify.clr_port_cap_mask = 0;
562
563 ret = ib_modify_port(sport->sdev->device, sport->port, 0, &port_modify);
564 if (ret)
565 goto err_mod_port;
566
567 ret = ib_query_port(sport->sdev->device, sport->port, &port_attr);
568 if (ret)
569 goto err_query_port;
570
571 sport->sm_lid = port_attr.sm_lid;
572 sport->lid = port_attr.lid;
573
1dfce294 574 ret = rdma_query_gid(sport->sdev->device, sport->port, 0, &sport->gid);
a42d985b
BVA
575 if (ret)
576 goto err_query_port;
577
2bce1a6d 578 sport->port_guid_wwn.priv = sport;
b14cb744
BVA
579 srpt_format_guid(sport->port_guid, sizeof(sport->port_guid),
580 &sport->gid.global.interface_id);
2bce1a6d
BVA
581 sport->port_gid_wwn.priv = sport;
582 snprintf(sport->port_gid, sizeof(sport->port_gid),
583 "0x%016llx%016llx",
584 be64_to_cpu(sport->gid.global.subnet_prefix),
585 be64_to_cpu(sport->gid.global.interface_id));
716b076b 586
a42d985b 587 if (!sport->mad_agent) {
9d2aa2b4 588 memset(&reg_req, 0, sizeof(reg_req));
a42d985b
BVA
589 reg_req.mgmt_class = IB_MGMT_CLASS_DEVICE_MGMT;
590 reg_req.mgmt_class_version = IB_MGMT_BASE_VERSION;
591 set_bit(IB_MGMT_METHOD_GET, reg_req.method_mask);
592 set_bit(IB_MGMT_METHOD_SET, reg_req.method_mask);
593
594 sport->mad_agent = ib_register_mad_agent(sport->sdev->device,
595 sport->port,
596 IB_QPT_GSI,
597 &reg_req, 0,
598 srpt_mad_send_handler,
599 srpt_mad_recv_handler,
0f29b46d 600 sport, 0);
a42d985b
BVA
601 if (IS_ERR(sport->mad_agent)) {
602 ret = PTR_ERR(sport->mad_agent);
603 sport->mad_agent = NULL;
604 goto err_query_port;
605 }
606 }
607
608 return 0;
609
610err_query_port:
611
612 port_modify.set_port_cap_mask = 0;
613 port_modify.clr_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP;
614 ib_modify_port(sport->sdev->device, sport->port, 0, &port_modify);
615
616err_mod_port:
617
618 return ret;
619}
620
621/**
10eac19b
BVA
622 * srpt_unregister_mad_agent - unregister MAD callback functions
623 * @sdev: SRPT HCA pointer.
a42d985b
BVA
624 *
625 * Note: It is safe to call this function more than once for the same device.
626 */
627static void srpt_unregister_mad_agent(struct srpt_device *sdev)
628{
629 struct ib_port_modify port_modify = {
630 .clr_port_cap_mask = IB_PORT_DEVICE_MGMT_SUP,
631 };
632 struct srpt_port *sport;
633 int i;
634
635 for (i = 1; i <= sdev->device->phys_port_cnt; i++) {
636 sport = &sdev->port[i - 1];
637 WARN_ON(sport->port != i);
638 if (ib_modify_port(sdev->device, i, 0, &port_modify) < 0)
9f5d32af 639 pr_err("disabling MAD processing failed.\n");
a42d985b
BVA
640 if (sport->mad_agent) {
641 ib_unregister_mad_agent(sport->mad_agent);
642 sport->mad_agent = NULL;
643 }
644 }
645}
646
647/**
10eac19b
BVA
648 * srpt_alloc_ioctx - allocate a SRPT I/O context structure
649 * @sdev: SRPT HCA pointer.
650 * @ioctx_size: I/O context size.
5dabcd04 651 * @buf_cache: I/O buffer cache.
10eac19b 652 * @dir: DMA data direction.
a42d985b
BVA
653 */
654static struct srpt_ioctx *srpt_alloc_ioctx(struct srpt_device *sdev,
5dabcd04
BVA
655 int ioctx_size,
656 struct kmem_cache *buf_cache,
a42d985b
BVA
657 enum dma_data_direction dir)
658{
659 struct srpt_ioctx *ioctx;
660
5dabcd04 661 ioctx = kzalloc(ioctx_size, GFP_KERNEL);
a42d985b
BVA
662 if (!ioctx)
663 goto err;
664
5dabcd04 665 ioctx->buf = kmem_cache_alloc(buf_cache, GFP_KERNEL);
a42d985b
BVA
666 if (!ioctx->buf)
667 goto err_free_ioctx;
668
5dabcd04
BVA
669 ioctx->dma = ib_dma_map_single(sdev->device, ioctx->buf,
670 kmem_cache_size(buf_cache), dir);
a42d985b
BVA
671 if (ib_dma_mapping_error(sdev->device, ioctx->dma))
672 goto err_free_buf;
673
674 return ioctx;
675
676err_free_buf:
f617e5ff 677 kmem_cache_free(buf_cache, ioctx->buf);
a42d985b
BVA
678err_free_ioctx:
679 kfree(ioctx);
680err:
681 return NULL;
682}
683
684/**
10eac19b
BVA
685 * srpt_free_ioctx - free a SRPT I/O context structure
686 * @sdev: SRPT HCA pointer.
687 * @ioctx: I/O context pointer.
5dabcd04 688 * @buf_cache: I/O buffer cache.
10eac19b 689 * @dir: DMA data direction.
a42d985b
BVA
690 */
691static void srpt_free_ioctx(struct srpt_device *sdev, struct srpt_ioctx *ioctx,
5dabcd04
BVA
692 struct kmem_cache *buf_cache,
693 enum dma_data_direction dir)
a42d985b
BVA
694{
695 if (!ioctx)
696 return;
697
5dabcd04
BVA
698 ib_dma_unmap_single(sdev->device, ioctx->dma,
699 kmem_cache_size(buf_cache), dir);
700 kmem_cache_free(buf_cache, ioctx->buf);
a42d985b
BVA
701 kfree(ioctx);
702}
703
704/**
10eac19b 705 * srpt_alloc_ioctx_ring - allocate a ring of SRPT I/O context structures
a42d985b
BVA
706 * @sdev: Device to allocate the I/O context ring for.
707 * @ring_size: Number of elements in the I/O context ring.
708 * @ioctx_size: I/O context size.
5dabcd04
BVA
709 * @buf_cache: I/O buffer cache.
710 * @alignment_offset: Offset in each ring buffer at which the SRP information
711 * unit starts.
a42d985b
BVA
712 * @dir: DMA data direction.
713 */
714static struct srpt_ioctx **srpt_alloc_ioctx_ring(struct srpt_device *sdev,
715 int ring_size, int ioctx_size,
5dabcd04
BVA
716 struct kmem_cache *buf_cache,
717 int alignment_offset,
718 enum dma_data_direction dir)
a42d985b
BVA
719{
720 struct srpt_ioctx **ring;
721 int i;
722
ffd59806
BVA
723 WARN_ON(ioctx_size != sizeof(struct srpt_recv_ioctx) &&
724 ioctx_size != sizeof(struct srpt_send_ioctx));
a42d985b 725
781a4016 726 ring = kvmalloc_array(ring_size, sizeof(ring[0]), GFP_KERNEL);
a42d985b
BVA
727 if (!ring)
728 goto out;
729 for (i = 0; i < ring_size; ++i) {
5dabcd04 730 ring[i] = srpt_alloc_ioctx(sdev, ioctx_size, buf_cache, dir);
a42d985b
BVA
731 if (!ring[i])
732 goto err;
733 ring[i]->index = i;
5dabcd04 734 ring[i]->offset = alignment_offset;
a42d985b
BVA
735 }
736 goto out;
737
738err:
739 while (--i >= 0)
5dabcd04 740 srpt_free_ioctx(sdev, ring[i], buf_cache, dir);
781a4016 741 kvfree(ring);
715252d4 742 ring = NULL;
a42d985b
BVA
743out:
744 return ring;
745}
746
747/**
10eac19b
BVA
748 * srpt_free_ioctx_ring - free the ring of SRPT I/O context structures
749 * @ioctx_ring: I/O context ring to be freed.
750 * @sdev: SRPT HCA pointer.
751 * @ring_size: Number of ring elements.
5dabcd04 752 * @buf_cache: I/O buffer cache.
10eac19b 753 * @dir: DMA data direction.
a42d985b
BVA
754 */
755static void srpt_free_ioctx_ring(struct srpt_ioctx **ioctx_ring,
756 struct srpt_device *sdev, int ring_size,
5dabcd04
BVA
757 struct kmem_cache *buf_cache,
758 enum dma_data_direction dir)
a42d985b
BVA
759{
760 int i;
761
dea26209
BVA
762 if (!ioctx_ring)
763 return;
764
a42d985b 765 for (i = 0; i < ring_size; ++i)
5dabcd04 766 srpt_free_ioctx(sdev, ioctx_ring[i], buf_cache, dir);
781a4016 767 kvfree(ioctx_ring);
a42d985b
BVA
768}
769
a42d985b 770/**
10eac19b
BVA
771 * srpt_set_cmd_state - set the state of a SCSI command
772 * @ioctx: Send I/O context.
773 * @new: New I/O context state.
a42d985b
BVA
774 *
775 * Does not modify the state of aborted commands. Returns the previous command
776 * state.
777 */
778static enum srpt_command_state srpt_set_cmd_state(struct srpt_send_ioctx *ioctx,
779 enum srpt_command_state new)
780{
781 enum srpt_command_state previous;
a42d985b 782
a42d985b
BVA
783 previous = ioctx->state;
784 if (previous != SRPT_STATE_DONE)
785 ioctx->state = new;
a42d985b
BVA
786
787 return previous;
788}
789
790/**
10eac19b
BVA
791 * srpt_test_and_set_cmd_state - test and set the state of a command
792 * @ioctx: Send I/O context.
793 * @old: Current I/O context state.
794 * @new: New I/O context state.
a42d985b
BVA
795 *
796 * Returns true if and only if the previous command state was equal to 'old'.
797 */
798static bool srpt_test_and_set_cmd_state(struct srpt_send_ioctx *ioctx,
799 enum srpt_command_state old,
800 enum srpt_command_state new)
801{
802 enum srpt_command_state previous;
a42d985b
BVA
803
804 WARN_ON(!ioctx);
805 WARN_ON(old == SRPT_STATE_DONE);
806 WARN_ON(new == SRPT_STATE_NEW);
807
a42d985b
BVA
808 previous = ioctx->state;
809 if (previous == old)
810 ioctx->state = new;
2d67017c 811
a42d985b
BVA
812 return previous == old;
813}
814
815/**
10eac19b
BVA
816 * srpt_post_recv - post an IB receive request
817 * @sdev: SRPT HCA pointer.
818 * @ch: SRPT RDMA channel.
819 * @ioctx: Receive I/O context pointer.
a42d985b 820 */
dea26209 821static int srpt_post_recv(struct srpt_device *sdev, struct srpt_rdma_ch *ch,
a42d985b
BVA
822 struct srpt_recv_ioctx *ioctx)
823{
824 struct ib_sge list;
9b32a596 825 struct ib_recv_wr wr;
a42d985b
BVA
826
827 BUG_ON(!sdev);
5dabcd04 828 list.addr = ioctx->ioctx.dma + ioctx->ioctx.offset;
a42d985b 829 list.length = srp_max_req_size;
74333f12 830 list.lkey = sdev->lkey;
a42d985b 831
59fae4de
CH
832 ioctx->ioctx.cqe.done = srpt_recv_done;
833 wr.wr_cqe = &ioctx->ioctx.cqe;
a42d985b
BVA
834 wr.next = NULL;
835 wr.sg_list = &list;
836 wr.num_sge = 1;
837
dea26209 838 if (sdev->use_srq)
9b32a596 839 return ib_post_srq_recv(sdev->srq, &wr, NULL);
dea26209 840 else
9b32a596 841 return ib_post_recv(ch->qp, &wr, NULL);
a42d985b
BVA
842}
843
aaf45bd8 844/**
10eac19b
BVA
845 * srpt_zerolength_write - perform a zero-length RDMA write
846 * @ch: SRPT RDMA channel.
aaf45bd8
BVA
847 *
848 * A quote from the InfiniBand specification: C9-88: For an HCA responder
849 * using Reliable Connection service, for each zero-length RDMA READ or WRITE
850 * request, the R_Key shall not be validated, even if the request includes
851 * Immediate data.
852 */
853static int srpt_zerolength_write(struct srpt_rdma_ch *ch)
854{
2a78cb4d
BVA
855 struct ib_rdma_wr wr = {
856 .wr = {
06892cc1
AM
857 .next = NULL,
858 { .wr_cqe = &ch->zw_cqe, },
2a78cb4d 859 .opcode = IB_WR_RDMA_WRITE,
2a78cb4d
BVA
860 .send_flags = IB_SEND_SIGNALED,
861 }
862 };
aaf45bd8 863
63d370a6
BVA
864 pr_debug("%s-%d: queued zerolength write\n", ch->sess_name,
865 ch->qp->qp_num);
866
9b32a596 867 return ib_post_send(ch->qp, &wr.wr, NULL);
aaf45bd8
BVA
868}
869
870static void srpt_zerolength_write_done(struct ib_cq *cq, struct ib_wc *wc)
871{
872 struct srpt_rdma_ch *ch = cq->cq_context;
873
63d370a6
BVA
874 pr_debug("%s-%d wc->status %d\n", ch->sess_name, ch->qp->qp_num,
875 wc->status);
876
387add46
BVA
877 if (wc->status == IB_WC_SUCCESS) {
878 srpt_process_wait_list(ch);
879 } else {
880 if (srpt_set_ch_state(ch, CH_DISCONNECTED))
881 schedule_work(&ch->release_work);
882 else
ea51d2e1
BVA
883 pr_debug("%s-%d: already disconnected.\n",
884 ch->sess_name, ch->qp->qp_num);
387add46 885 }
aaf45bd8
BVA
886}
887
b99f8e4d
CH
888static int srpt_alloc_rw_ctxs(struct srpt_send_ioctx *ioctx,
889 struct srp_direct_buf *db, int nbufs, struct scatterlist **sg,
890 unsigned *sg_cnt)
891{
892 enum dma_data_direction dir = target_reverse_dma_direction(&ioctx->cmd);
893 struct srpt_rdma_ch *ch = ioctx->ch;
894 struct scatterlist *prev = NULL;
895 unsigned prev_nents;
896 int ret, i;
897
898 if (nbufs == 1) {
899 ioctx->rw_ctxs = &ioctx->s_rw_ctx;
900 } else {
901 ioctx->rw_ctxs = kmalloc_array(nbufs, sizeof(*ioctx->rw_ctxs),
902 GFP_KERNEL);
903 if (!ioctx->rw_ctxs)
904 return -ENOMEM;
905 }
906
907 for (i = ioctx->n_rw_ctx; i < nbufs; i++, db++) {
908 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
909 u64 remote_addr = be64_to_cpu(db->va);
910 u32 size = be32_to_cpu(db->len);
911 u32 rkey = be32_to_cpu(db->key);
912
913 ret = target_alloc_sgl(&ctx->sg, &ctx->nents, size, false,
914 i < nbufs - 1);
915 if (ret)
916 goto unwind;
917
918 ret = rdma_rw_ctx_init(&ctx->rw, ch->qp, ch->sport->port,
919 ctx->sg, ctx->nents, 0, remote_addr, rkey, dir);
920 if (ret < 0) {
921 target_free_sgl(ctx->sg, ctx->nents);
922 goto unwind;
923 }
924
925 ioctx->n_rdma += ret;
926 ioctx->n_rw_ctx++;
927
928 if (prev) {
929 sg_unmark_end(&prev[prev_nents - 1]);
930 sg_chain(prev, prev_nents + 1, ctx->sg);
931 } else {
932 *sg = ctx->sg;
933 }
934
935 prev = ctx->sg;
936 prev_nents = ctx->nents;
937
938 *sg_cnt += ctx->nents;
939 }
940
941 return 0;
942
943unwind:
944 while (--i >= 0) {
945 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
946
947 rdma_rw_ctx_destroy(&ctx->rw, ch->qp, ch->sport->port,
948 ctx->sg, ctx->nents, dir);
949 target_free_sgl(ctx->sg, ctx->nents);
950 }
951 if (ioctx->rw_ctxs != &ioctx->s_rw_ctx)
952 kfree(ioctx->rw_ctxs);
953 return ret;
954}
955
956static void srpt_free_rw_ctxs(struct srpt_rdma_ch *ch,
957 struct srpt_send_ioctx *ioctx)
958{
959 enum dma_data_direction dir = target_reverse_dma_direction(&ioctx->cmd);
960 int i;
961
962 for (i = 0; i < ioctx->n_rw_ctx; i++) {
963 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
964
965 rdma_rw_ctx_destroy(&ctx->rw, ch->qp, ch->sport->port,
966 ctx->sg, ctx->nents, dir);
967 target_free_sgl(ctx->sg, ctx->nents);
968 }
969
970 if (ioctx->rw_ctxs != &ioctx->s_rw_ctx)
971 kfree(ioctx->rw_ctxs);
972}
973
974static inline void *srpt_get_desc_buf(struct srp_cmd *srp_cmd)
975{
976 /*
977 * The pointer computations below will only be compiled correctly
978 * if srp_cmd::add_data is declared as s8*, u8*, s8[] or u8[], so check
979 * whether srp_cmd::add_data has been declared as a byte pointer.
980 */
981 BUILD_BUG_ON(!__same_type(srp_cmd->add_data[0], (s8)0) &&
982 !__same_type(srp_cmd->add_data[0], (u8)0));
983
984 /*
985 * According to the SRP spec, the lower two bits of the 'ADDITIONAL
986 * CDB LENGTH' field are reserved and the size in bytes of this field
987 * is four times the value specified in bits 3..7. Hence the "& ~3".
988 */
989 return srp_cmd->add_data + (srp_cmd->add_cdb_len & ~3);
990}
991
a42d985b 992/**
10eac19b 993 * srpt_get_desc_tbl - parse the data descriptors of a SRP_CMD request
5dabcd04
BVA
994 * @recv_ioctx: I/O context associated with the received command @srp_cmd.
995 * @ioctx: I/O context that will be used for responding to the initiator.
a42d985b
BVA
996 * @srp_cmd: Pointer to the SRP_CMD request data.
997 * @dir: Pointer to the variable to which the transfer direction will be
998 * written.
5dabcd04 999 * @sg: [out] scatterlist for the parsed SRP_CMD.
10eac19b 1000 * @sg_cnt: [out] length of @sg.
a42d985b
BVA
1001 * @data_len: Pointer to the variable to which the total data length of all
1002 * descriptors in the SRP_CMD request will be written.
5dabcd04
BVA
1003 * @imm_data_offset: [in] Offset in SRP_CMD requests at which immediate data
1004 * starts.
a42d985b
BVA
1005 *
1006 * This function initializes ioctx->nrbuf and ioctx->r_bufs.
1007 *
1008 * Returns -EINVAL when the SRP_CMD request contains inconsistent descriptors;
1009 * -ENOMEM when memory allocation fails and zero upon success.
1010 */
5dabcd04
BVA
1011static int srpt_get_desc_tbl(struct srpt_recv_ioctx *recv_ioctx,
1012 struct srpt_send_ioctx *ioctx,
b99f8e4d 1013 struct srp_cmd *srp_cmd, enum dma_data_direction *dir,
5dabcd04
BVA
1014 struct scatterlist **sg, unsigned int *sg_cnt, u64 *data_len,
1015 u16 imm_data_offset)
a42d985b 1016{
a42d985b
BVA
1017 BUG_ON(!dir);
1018 BUG_ON(!data_len);
1019
a42d985b
BVA
1020 /*
1021 * The lower four bits of the buffer format field contain the DATA-IN
1022 * buffer descriptor format, and the highest four bits contain the
1023 * DATA-OUT buffer descriptor format.
1024 */
a42d985b
BVA
1025 if (srp_cmd->buf_fmt & 0xf)
1026 /* DATA-IN: transfer data from target to initiator (read). */
1027 *dir = DMA_FROM_DEVICE;
1028 else if (srp_cmd->buf_fmt >> 4)
1029 /* DATA-OUT: transfer data from initiator to target (write). */
1030 *dir = DMA_TO_DEVICE;
b99f8e4d
CH
1031 else
1032 *dir = DMA_NONE;
1033
1034 /* initialize data_direction early as srpt_alloc_rw_ctxs needs it */
1035 ioctx->cmd.data_direction = *dir;
a42d985b 1036
a42d985b
BVA
1037 if (((srp_cmd->buf_fmt & 0xf) == SRP_DATA_DESC_DIRECT) ||
1038 ((srp_cmd->buf_fmt >> 4) == SRP_DATA_DESC_DIRECT)) {
ffd59806 1039 struct srp_direct_buf *db = srpt_get_desc_buf(srp_cmd);
a42d985b 1040
a42d985b 1041 *data_len = be32_to_cpu(db->len);
b99f8e4d 1042 return srpt_alloc_rw_ctxs(ioctx, db, 1, sg, sg_cnt);
a42d985b
BVA
1043 } else if (((srp_cmd->buf_fmt & 0xf) == SRP_DATA_DESC_INDIRECT) ||
1044 ((srp_cmd->buf_fmt >> 4) == SRP_DATA_DESC_INDIRECT)) {
b99f8e4d
CH
1045 struct srp_indirect_buf *idb = srpt_get_desc_buf(srp_cmd);
1046 int nbufs = be32_to_cpu(idb->table_desc.len) /
1047 sizeof(struct srp_direct_buf);
a42d985b 1048
b99f8e4d 1049 if (nbufs >
a42d985b 1050 (srp_cmd->data_out_desc_cnt + srp_cmd->data_in_desc_cnt)) {
75d79b80 1051 pr_err("received unsupported SRP_CMD request type (%u out + %u in != %u / %zu)\n",
a42d985b
BVA
1052 srp_cmd->data_out_desc_cnt,
1053 srp_cmd->data_in_desc_cnt,
1054 be32_to_cpu(idb->table_desc.len),
b99f8e4d
CH
1055 sizeof(struct srp_direct_buf));
1056 return -EINVAL;
a42d985b
BVA
1057 }
1058
a42d985b 1059 *data_len = be32_to_cpu(idb->len);
b99f8e4d
CH
1060 return srpt_alloc_rw_ctxs(ioctx, idb->desc_list, nbufs,
1061 sg, sg_cnt);
5dabcd04
BVA
1062 } else if ((srp_cmd->buf_fmt >> 4) == SRP_DATA_DESC_IMM) {
1063 struct srp_imm_buf *imm_buf = srpt_get_desc_buf(srp_cmd);
1064 void *data = (void *)srp_cmd + imm_data_offset;
1065 uint32_t len = be32_to_cpu(imm_buf->len);
1066 uint32_t req_size = imm_data_offset + len;
1067
1068 if (req_size > srp_max_req_size) {
1069 pr_err("Immediate data (length %d + %d) exceeds request size %d\n",
1070 imm_data_offset, len, srp_max_req_size);
1071 return -EINVAL;
1072 }
1073 if (recv_ioctx->byte_len < req_size) {
1074 pr_err("Received too few data - %d < %d\n",
1075 recv_ioctx->byte_len, req_size);
1076 return -EIO;
1077 }
1078 /*
1079 * The immediate data buffer descriptor must occur before the
1080 * immediate data itself.
1081 */
1082 if ((void *)(imm_buf + 1) > (void *)data) {
1083 pr_err("Received invalid write request\n");
1084 return -EINVAL;
1085 }
1086 *data_len = len;
1087 ioctx->recv_ioctx = recv_ioctx;
1088 if ((uintptr_t)data & 511) {
1089 pr_warn_once("Internal error - the receive buffers are not aligned properly.\n");
1090 return -EINVAL;
1091 }
1092 sg_init_one(&ioctx->imm_sg, data, len);
1093 *sg = &ioctx->imm_sg;
1094 *sg_cnt = 1;
1095 return 0;
b99f8e4d
CH
1096 } else {
1097 *data_len = 0;
1098 return 0;
a42d985b 1099 }
a42d985b
BVA
1100}
1101
1102/**
10eac19b
BVA
1103 * srpt_init_ch_qp - initialize queue pair attributes
1104 * @ch: SRPT RDMA channel.
1105 * @qp: Queue pair pointer.
a42d985b
BVA
1106 *
1107 * Initialized the attributes of queue pair 'qp' by allowing local write,
1108 * remote read and remote write. Also transitions 'qp' to state IB_QPS_INIT.
1109 */
1110static int srpt_init_ch_qp(struct srpt_rdma_ch *ch, struct ib_qp *qp)
1111{
1112 struct ib_qp_attr *attr;
1113 int ret;
1114
63cf1a90
BVA
1115 WARN_ON_ONCE(ch->using_rdma_cm);
1116
9d2aa2b4 1117 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
a42d985b
BVA
1118 if (!attr)
1119 return -ENOMEM;
1120
1121 attr->qp_state = IB_QPS_INIT;
bec40c26 1122 attr->qp_access_flags = IB_ACCESS_LOCAL_WRITE;
a42d985b 1123 attr->port_num = ch->sport->port;
c5efb621
BVA
1124
1125 ret = ib_find_cached_pkey(ch->sport->sdev->device, ch->sport->port,
1126 ch->pkey, &attr->pkey_index);
1127 if (ret < 0)
1128 pr_err("Translating pkey %#x failed (%d) - using index 0\n",
1129 ch->pkey, ret);
a42d985b
BVA
1130
1131 ret = ib_modify_qp(qp, attr,
1132 IB_QP_STATE | IB_QP_ACCESS_FLAGS | IB_QP_PORT |
1133 IB_QP_PKEY_INDEX);
1134
1135 kfree(attr);
1136 return ret;
1137}
1138
1139/**
10eac19b 1140 * srpt_ch_qp_rtr - change the state of a channel to 'ready to receive' (RTR)
a42d985b
BVA
1141 * @ch: channel of the queue pair.
1142 * @qp: queue pair to change the state of.
1143 *
1144 * Returns zero upon success and a negative value upon failure.
1145 *
1146 * Note: currently a struct ib_qp_attr takes 136 bytes on a 64-bit system.
1147 * If this structure ever becomes larger, it might be necessary to allocate
1148 * it dynamically instead of on the stack.
1149 */
1150static int srpt_ch_qp_rtr(struct srpt_rdma_ch *ch, struct ib_qp *qp)
1151{
1152 struct ib_qp_attr qp_attr;
1153 int attr_mask;
1154 int ret;
1155
63cf1a90
BVA
1156 WARN_ON_ONCE(ch->using_rdma_cm);
1157
a42d985b 1158 qp_attr.qp_state = IB_QPS_RTR;
090fa24b 1159 ret = ib_cm_init_qp_attr(ch->ib_cm.cm_id, &qp_attr, &attr_mask);
a42d985b
BVA
1160 if (ret)
1161 goto out;
1162
1163 qp_attr.max_dest_rd_atomic = 4;
1164
1165 ret = ib_modify_qp(qp, &qp_attr, attr_mask);
1166
1167out:
1168 return ret;
1169}
1170
1171/**
10eac19b 1172 * srpt_ch_qp_rts - change the state of a channel to 'ready to send' (RTS)
a42d985b
BVA
1173 * @ch: channel of the queue pair.
1174 * @qp: queue pair to change the state of.
1175 *
1176 * Returns zero upon success and a negative value upon failure.
1177 *
1178 * Note: currently a struct ib_qp_attr takes 136 bytes on a 64-bit system.
1179 * If this structure ever becomes larger, it might be necessary to allocate
1180 * it dynamically instead of on the stack.
1181 */
1182static int srpt_ch_qp_rts(struct srpt_rdma_ch *ch, struct ib_qp *qp)
1183{
1184 struct ib_qp_attr qp_attr;
1185 int attr_mask;
1186 int ret;
1187
1188 qp_attr.qp_state = IB_QPS_RTS;
090fa24b 1189 ret = ib_cm_init_qp_attr(ch->ib_cm.cm_id, &qp_attr, &attr_mask);
a42d985b
BVA
1190 if (ret)
1191 goto out;
1192
1193 qp_attr.max_rd_atomic = 4;
1194
1195 ret = ib_modify_qp(qp, &qp_attr, attr_mask);
1196
1197out:
1198 return ret;
1199}
1200
1201/**
10eac19b
BVA
1202 * srpt_ch_qp_err - set the channel queue pair state to 'error'
1203 * @ch: SRPT RDMA channel.
a42d985b
BVA
1204 */
1205static int srpt_ch_qp_err(struct srpt_rdma_ch *ch)
1206{
1207 struct ib_qp_attr qp_attr;
1208
1209 qp_attr.qp_state = IB_QPS_ERR;
1210 return ib_modify_qp(ch->qp, &qp_attr, IB_QP_STATE);
1211}
1212
a42d985b 1213/**
10eac19b
BVA
1214 * srpt_get_send_ioctx - obtain an I/O context for sending to the initiator
1215 * @ch: SRPT RDMA channel.
a42d985b
BVA
1216 */
1217static struct srpt_send_ioctx *srpt_get_send_ioctx(struct srpt_rdma_ch *ch)
1218{
1219 struct srpt_send_ioctx *ioctx;
fd1b6687 1220 int tag, cpu;
a42d985b
BVA
1221
1222 BUG_ON(!ch);
1223
fd1b6687
BVA
1224 tag = sbitmap_queue_get(&ch->sess->sess_tag_pool, &cpu);
1225 if (tag < 0)
1226 return NULL;
3c968887 1227
fd1b6687 1228 ioctx = ch->ioctx_ring[tag];
3c968887 1229 BUG_ON(ioctx->ch != ch);
a42d985b 1230 ioctx->state = SRPT_STATE_NEW;
5dabcd04 1231 WARN_ON_ONCE(ioctx->recv_ioctx);
3c968887 1232 ioctx->n_rdma = 0;
b99f8e4d 1233 ioctx->n_rw_ctx = 0;
3c968887
BVA
1234 ioctx->queue_status_only = false;
1235 /*
1236 * transport_init_se_cmd() does not initialize all fields, so do it
1237 * here.
1238 */
1239 memset(&ioctx->cmd, 0, sizeof(ioctx->cmd));
1240 memset(&ioctx->sense_data, 0, sizeof(ioctx->sense_data));
fd1b6687
BVA
1241 ioctx->cmd.map_tag = tag;
1242 ioctx->cmd.map_cpu = cpu;
a42d985b
BVA
1243
1244 return ioctx;
1245}
1246
a42d985b 1247/**
10eac19b 1248 * srpt_abort_cmd - abort a SCSI command
a42d985b 1249 * @ioctx: I/O context associated with the SCSI command.
a42d985b
BVA
1250 */
1251static int srpt_abort_cmd(struct srpt_send_ioctx *ioctx)
1252{
1253 enum srpt_command_state state;
a42d985b
BVA
1254
1255 BUG_ON(!ioctx);
1256
1257 /*
1258 * If the command is in a state where the target core is waiting for
49f40163 1259 * the ib_srpt driver, change the state to the next state.
a42d985b
BVA
1260 */
1261
a42d985b
BVA
1262 state = ioctx->state;
1263 switch (state) {
1264 case SRPT_STATE_NEED_DATA:
1265 ioctx->state = SRPT_STATE_DATA_IN;
1266 break;
a42d985b
BVA
1267 case SRPT_STATE_CMD_RSP_SENT:
1268 case SRPT_STATE_MGMT_RSP_SENT:
1269 ioctx->state = SRPT_STATE_DONE;
1270 break;
1271 default:
49f40163
BVA
1272 WARN_ONCE(true, "%s: unexpected I/O context state %d\n",
1273 __func__, state);
a42d985b
BVA
1274 break;
1275 }
a42d985b 1276
13fdd445
BVA
1277 pr_debug("Aborting cmd with state %d -> %d and tag %lld\n", state,
1278 ioctx->state, ioctx->cmd.tag);
a42d985b
BVA
1279
1280 switch (state) {
1281 case SRPT_STATE_NEW:
1282 case SRPT_STATE_DATA_IN:
1283 case SRPT_STATE_MGMT:
49f40163 1284 case SRPT_STATE_DONE:
a42d985b
BVA
1285 /*
1286 * Do nothing - defer abort processing until
1287 * srpt_queue_response() is invoked.
1288 */
a42d985b
BVA
1289 break;
1290 case SRPT_STATE_NEED_DATA:
49f40163
BVA
1291 pr_debug("tag %#llx: RDMA read error\n", ioctx->cmd.tag);
1292 transport_generic_request_failure(&ioctx->cmd,
1293 TCM_CHECK_CONDITION_ABORT_CMD);
a42d985b
BVA
1294 break;
1295 case SRPT_STATE_CMD_RSP_SENT:
1296 /*
1297 * SRP_RSP sending failed or the SRP_RSP send completion has
1298 * not been received in time.
1299 */
49f40163 1300 transport_generic_free_cmd(&ioctx->cmd, 0);
a42d985b
BVA
1301 break;
1302 case SRPT_STATE_MGMT_RSP_SENT:
49f40163 1303 transport_generic_free_cmd(&ioctx->cmd, 0);
a42d985b
BVA
1304 break;
1305 default:
532ec6f1 1306 WARN(1, "Unexpected command state (%d)", state);
a42d985b
BVA
1307 break;
1308 }
1309
a42d985b
BVA
1310 return state;
1311}
1312
1313/**
10eac19b
BVA
1314 * srpt_rdma_read_done - RDMA read completion callback
1315 * @cq: Completion queue.
1316 * @wc: Work completion.
1317 *
e672a47f
CH
1318 * XXX: what is now target_execute_cmd used to be asynchronous, and unmapping
1319 * the data that has been transferred via IB RDMA had to be postponed until the
142ad5db 1320 * check_stop_free() callback. None of this is necessary anymore and needs to
e672a47f 1321 * be cleaned up.
a42d985b 1322 */
59fae4de 1323static void srpt_rdma_read_done(struct ib_cq *cq, struct ib_wc *wc)
a42d985b 1324{
59fae4de
CH
1325 struct srpt_rdma_ch *ch = cq->cq_context;
1326 struct srpt_send_ioctx *ioctx =
19f57298 1327 container_of(wc->wr_cqe, struct srpt_send_ioctx, rdma_cqe);
59fae4de 1328
a42d985b
BVA
1329 WARN_ON(ioctx->n_rdma <= 0);
1330 atomic_add(ioctx->n_rdma, &ch->sq_wr_avail);
b99f8e4d 1331 ioctx->n_rdma = 0;
a42d985b 1332
59fae4de
CH
1333 if (unlikely(wc->status != IB_WC_SUCCESS)) {
1334 pr_info("RDMA_READ for ioctx 0x%p failed with status %d\n",
1335 ioctx, wc->status);
1336 srpt_abort_cmd(ioctx);
1337 return;
a42d985b 1338 }
59fae4de
CH
1339
1340 if (srpt_test_and_set_cmd_state(ioctx, SRPT_STATE_NEED_DATA,
1341 SRPT_STATE_DATA_IN))
1342 target_execute_cmd(&ioctx->cmd);
1343 else
1344 pr_err("%s[%d]: wrong state = %d\n", __func__,
dd3bec86 1345 __LINE__, ioctx->state);
a42d985b
BVA
1346}
1347
a42d985b 1348/**
10eac19b 1349 * srpt_build_cmd_rsp - build a SRP_RSP response
a42d985b
BVA
1350 * @ch: RDMA channel through which the request has been received.
1351 * @ioctx: I/O context associated with the SRP_CMD request. The response will
1352 * be built in the buffer ioctx->buf points at and hence this function will
1353 * overwrite the request data.
1354 * @tag: tag of the request for which this response is being generated.
1355 * @status: value for the STATUS field of the SRP_RSP information unit.
1356 *
1357 * Returns the size in bytes of the SRP_RSP response.
1358 *
1359 * An SRP_RSP response contains a SCSI status or service response. See also
1360 * section 6.9 in the SRP r16a document for the format of an SRP_RSP
1361 * response. See also SPC-2 for more information about sense data.
1362 */
1363static int srpt_build_cmd_rsp(struct srpt_rdma_ch *ch,
1364 struct srpt_send_ioctx *ioctx, u64 tag,
1365 int status)
1366{
1367 struct srp_rsp *srp_rsp;
1368 const u8 *sense_data;
1369 int sense_data_len, max_sense_len;
1370
1371 /*
1372 * The lowest bit of all SAM-3 status codes is zero (see also
1373 * paragraph 5.3 in SAM-3).
1374 */
1375 WARN_ON(status & 1);
1376
1377 srp_rsp = ioctx->ioctx.buf;
1378 BUG_ON(!srp_rsp);
1379
1380 sense_data = ioctx->sense_data;
1381 sense_data_len = ioctx->cmd.scsi_sense_length;
1382 WARN_ON(sense_data_len > sizeof(ioctx->sense_data));
1383
9d2aa2b4 1384 memset(srp_rsp, 0, sizeof(*srp_rsp));
a42d985b
BVA
1385 srp_rsp->opcode = SRP_RSP;
1386 srp_rsp->req_lim_delta =
b356c1c1 1387 cpu_to_be32(1 + atomic_xchg(&ch->req_lim_delta, 0));
a42d985b
BVA
1388 srp_rsp->tag = tag;
1389 srp_rsp->status = status;
1390
1391 if (sense_data_len) {
1392 BUILD_BUG_ON(MIN_MAX_RSP_SIZE <= sizeof(*srp_rsp));
1393 max_sense_len = ch->max_ti_iu_len - sizeof(*srp_rsp);
1394 if (sense_data_len > max_sense_len) {
75d79b80
BVA
1395 pr_warn("truncated sense data from %d to %d bytes\n",
1396 sense_data_len, max_sense_len);
a42d985b
BVA
1397 sense_data_len = max_sense_len;
1398 }
1399
1400 srp_rsp->flags |= SRP_RSP_FLAG_SNSVALID;
1401 srp_rsp->sense_data_len = cpu_to_be32(sense_data_len);
1402 memcpy(srp_rsp + 1, sense_data, sense_data_len);
1403 }
1404
1405 return sizeof(*srp_rsp) + sense_data_len;
1406}
1407
1408/**
10eac19b 1409 * srpt_build_tskmgmt_rsp - build a task management response
a42d985b
BVA
1410 * @ch: RDMA channel through which the request has been received.
1411 * @ioctx: I/O context in which the SRP_RSP response will be built.
1412 * @rsp_code: RSP_CODE that will be stored in the response.
1413 * @tag: Tag of the request for which this response is being generated.
1414 *
1415 * Returns the size in bytes of the SRP_RSP response.
1416 *
1417 * An SRP_RSP response contains a SCSI status or service response. See also
1418 * section 6.9 in the SRP r16a document for the format of an SRP_RSP
1419 * response.
1420 */
1421static int srpt_build_tskmgmt_rsp(struct srpt_rdma_ch *ch,
1422 struct srpt_send_ioctx *ioctx,
1423 u8 rsp_code, u64 tag)
1424{
1425 struct srp_rsp *srp_rsp;
1426 int resp_data_len;
1427 int resp_len;
1428
c807f643 1429 resp_data_len = 4;
a42d985b
BVA
1430 resp_len = sizeof(*srp_rsp) + resp_data_len;
1431
1432 srp_rsp = ioctx->ioctx.buf;
1433 BUG_ON(!srp_rsp);
9d2aa2b4 1434 memset(srp_rsp, 0, sizeof(*srp_rsp));
a42d985b
BVA
1435
1436 srp_rsp->opcode = SRP_RSP;
b356c1c1
VT
1437 srp_rsp->req_lim_delta =
1438 cpu_to_be32(1 + atomic_xchg(&ch->req_lim_delta, 0));
a42d985b
BVA
1439 srp_rsp->tag = tag;
1440
c807f643
JW
1441 srp_rsp->flags |= SRP_RSP_FLAG_RSPVALID;
1442 srp_rsp->resp_data_len = cpu_to_be32(resp_data_len);
1443 srp_rsp->data[3] = rsp_code;
a42d985b
BVA
1444
1445 return resp_len;
1446}
1447
a42d985b
BVA
1448static int srpt_check_stop_free(struct se_cmd *cmd)
1449{
9474b043
NB
1450 struct srpt_send_ioctx *ioctx = container_of(cmd,
1451 struct srpt_send_ioctx, cmd);
a42d985b 1452
afc16604 1453 return target_put_sess_cmd(&ioctx->cmd);
a42d985b
BVA
1454}
1455
1456/**
10eac19b
BVA
1457 * srpt_handle_cmd - process a SRP_CMD information unit
1458 * @ch: SRPT RDMA channel.
1459 * @recv_ioctx: Receive I/O context.
1460 * @send_ioctx: Send I/O context.
a42d985b 1461 */
2c7f37ff
BVA
1462static void srpt_handle_cmd(struct srpt_rdma_ch *ch,
1463 struct srpt_recv_ioctx *recv_ioctx,
1464 struct srpt_send_ioctx *send_ioctx)
a42d985b
BVA
1465{
1466 struct se_cmd *cmd;
1467 struct srp_cmd *srp_cmd;
b99f8e4d
CH
1468 struct scatterlist *sg = NULL;
1469 unsigned sg_cnt = 0;
a42d985b
BVA
1470 u64 data_len;
1471 enum dma_data_direction dir;
9474b043 1472 int rc;
a42d985b
BVA
1473
1474 BUG_ON(!send_ioctx);
1475
5dabcd04 1476 srp_cmd = recv_ioctx->ioctx.buf + recv_ioctx->ioctx.offset;
a42d985b 1477 cmd = &send_ioctx->cmd;
649ee054 1478 cmd->tag = srp_cmd->tag;
a42d985b
BVA
1479
1480 switch (srp_cmd->task_attr) {
1481 case SRP_CMD_SIMPLE_Q:
68d81f40 1482 cmd->sam_task_attr = TCM_SIMPLE_TAG;
a42d985b
BVA
1483 break;
1484 case SRP_CMD_ORDERED_Q:
1485 default:
68d81f40 1486 cmd->sam_task_attr = TCM_ORDERED_TAG;
a42d985b
BVA
1487 break;
1488 case SRP_CMD_HEAD_OF_Q:
68d81f40 1489 cmd->sam_task_attr = TCM_HEAD_TAG;
a42d985b
BVA
1490 break;
1491 case SRP_CMD_ACA:
68d81f40 1492 cmd->sam_task_attr = TCM_ACA_TAG;
a42d985b
BVA
1493 break;
1494 }
1495
5dabcd04
BVA
1496 rc = srpt_get_desc_tbl(recv_ioctx, send_ioctx, srp_cmd, &dir,
1497 &sg, &sg_cnt, &data_len, ch->imm_data_offset);
b99f8e4d
CH
1498 if (rc) {
1499 if (rc != -EAGAIN) {
1500 pr_err("0x%llx: parsing SRP descriptor table failed.\n",
1501 srp_cmd->tag);
1502 }
8b8807b9 1503 goto busy;
a42d985b
BVA
1504 }
1505
b99f8e4d 1506 rc = target_submit_cmd_map_sgls(cmd, ch->sess, srp_cmd->cdb,
e1dd413c
BVA
1507 &send_ioctx->sense_data[0],
1508 scsilun_to_int(&srp_cmd->lun), data_len,
b99f8e4d
CH
1509 TCM_SIMPLE_TAG, dir, TARGET_SCF_ACK_KREF,
1510 sg, sg_cnt, NULL, 0, NULL, 0);
9474b043 1511 if (rc != 0) {
2c7f37ff
BVA
1512 pr_debug("target_submit_cmd() returned %d for tag %#llx\n", rc,
1513 srp_cmd->tag);
8b8807b9 1514 goto busy;
187e70a5 1515 }
2c7f37ff 1516 return;
a42d985b 1517
8b8807b9
BVA
1518busy:
1519 target_send_busy(cmd);
a42d985b
BVA
1520}
1521
a42d985b
BVA
1522static int srp_tmr_to_tcm(int fn)
1523{
1524 switch (fn) {
1525 case SRP_TSK_ABORT_TASK:
1526 return TMR_ABORT_TASK;
1527 case SRP_TSK_ABORT_TASK_SET:
1528 return TMR_ABORT_TASK_SET;
1529 case SRP_TSK_CLEAR_TASK_SET:
1530 return TMR_CLEAR_TASK_SET;
1531 case SRP_TSK_LUN_RESET:
1532 return TMR_LUN_RESET;
1533 case SRP_TSK_CLEAR_ACA:
1534 return TMR_CLEAR_ACA;
1535 default:
1536 return -1;
1537 }
1538}
1539
1540/**
10eac19b
BVA
1541 * srpt_handle_tsk_mgmt - process a SRP_TSK_MGMT information unit
1542 * @ch: SRPT RDMA channel.
1543 * @recv_ioctx: Receive I/O context.
1544 * @send_ioctx: Send I/O context.
a42d985b
BVA
1545 *
1546 * Returns 0 if and only if the request will be processed by the target core.
1547 *
1548 * For more information about SRP_TSK_MGMT information units, see also section
1549 * 6.7 in the SRP r16a document.
1550 */
1551static void srpt_handle_tsk_mgmt(struct srpt_rdma_ch *ch,
1552 struct srpt_recv_ioctx *recv_ioctx,
1553 struct srpt_send_ioctx *send_ioctx)
1554{
1555 struct srp_tsk_mgmt *srp_tsk;
1556 struct se_cmd *cmd;
3e4f5748 1557 struct se_session *sess = ch->sess;
a42d985b 1558 int tcm_tmr;
3e4f5748 1559 int rc;
a42d985b
BVA
1560
1561 BUG_ON(!send_ioctx);
1562
5dabcd04 1563 srp_tsk = recv_ioctx->ioctx.buf + recv_ioctx->ioctx.offset;
a42d985b
BVA
1564 cmd = &send_ioctx->cmd;
1565
090fa24b
BVA
1566 pr_debug("recv tsk_mgmt fn %d for task_tag %lld and cmd tag %lld ch %p sess %p\n",
1567 srp_tsk->tsk_mgmt_func, srp_tsk->task_tag, srp_tsk->tag, ch,
1568 ch->sess);
a42d985b
BVA
1569
1570 srpt_set_cmd_state(send_ioctx, SRPT_STATE_MGMT);
649ee054 1571 send_ioctx->cmd.tag = srp_tsk->tag;
a42d985b 1572 tcm_tmr = srp_tmr_to_tcm(srp_tsk->tsk_mgmt_func);
e1dd413c
BVA
1573 rc = target_submit_tmr(&send_ioctx->cmd, sess, NULL,
1574 scsilun_to_int(&srp_tsk->lun), srp_tsk, tcm_tmr,
1575 GFP_KERNEL, srp_tsk->task_tag,
1576 TARGET_SCF_ACK_KREF);
3e4f5748
NB
1577 if (rc != 0) {
1578 send_ioctx->cmd.se_tmr_req->response = TMR_FUNCTION_REJECTED;
337ec69e 1579 cmd->se_tfo->queue_tm_rsp(cmd);
a42d985b 1580 }
de103c93 1581 return;
a42d985b
BVA
1582}
1583
1584/**
10eac19b 1585 * srpt_handle_new_iu - process a newly received information unit
a42d985b 1586 * @ch: RDMA channel through which the information unit has been received.
10eac19b 1587 * @recv_ioctx: Receive I/O context associated with the information unit.
a42d985b 1588 */
fcf58936
BVA
1589static bool
1590srpt_handle_new_iu(struct srpt_rdma_ch *ch, struct srpt_recv_ioctx *recv_ioctx)
a42d985b 1591{
fcf58936 1592 struct srpt_send_ioctx *send_ioctx = NULL;
a42d985b 1593 struct srp_cmd *srp_cmd;
fcf58936
BVA
1594 bool res = false;
1595 u8 opcode;
a42d985b
BVA
1596
1597 BUG_ON(!ch);
1598 BUG_ON(!recv_ioctx);
1599
fcf58936
BVA
1600 if (unlikely(ch->state == CH_CONNECTING))
1601 goto push;
1602
a42d985b 1603 ib_dma_sync_single_for_cpu(ch->sport->sdev->device,
5dabcd04
BVA
1604 recv_ioctx->ioctx.dma,
1605 recv_ioctx->ioctx.offset + srp_max_req_size,
a42d985b
BVA
1606 DMA_FROM_DEVICE);
1607
5dabcd04 1608 srp_cmd = recv_ioctx->ioctx.buf + recv_ioctx->ioctx.offset;
fcf58936
BVA
1609 opcode = srp_cmd->opcode;
1610 if (opcode == SRP_CMD || opcode == SRP_TSK_MGMT) {
1611 send_ioctx = srpt_get_send_ioctx(ch);
b99f8e4d 1612 if (unlikely(!send_ioctx))
fcf58936 1613 goto push;
a42d985b
BVA
1614 }
1615
fcf58936
BVA
1616 if (!list_empty(&recv_ioctx->wait_list)) {
1617 WARN_ON_ONCE(!ch->processing_wait_list);
1618 list_del_init(&recv_ioctx->wait_list);
1619 }
1620
1621 switch (opcode) {
a42d985b
BVA
1622 case SRP_CMD:
1623 srpt_handle_cmd(ch, recv_ioctx, send_ioctx);
1624 break;
1625 case SRP_TSK_MGMT:
1626 srpt_handle_tsk_mgmt(ch, recv_ioctx, send_ioctx);
1627 break;
1628 case SRP_I_LOGOUT:
9f5d32af 1629 pr_err("Not yet implemented: SRP_I_LOGOUT\n");
a42d985b
BVA
1630 break;
1631 case SRP_CRED_RSP:
1632 pr_debug("received SRP_CRED_RSP\n");
1633 break;
1634 case SRP_AER_RSP:
1635 pr_debug("received SRP_AER_RSP\n");
1636 break;
1637 case SRP_RSP:
9f5d32af 1638 pr_err("Received SRP_RSP\n");
a42d985b
BVA
1639 break;
1640 default:
fcf58936 1641 pr_err("received IU with unknown opcode 0x%x\n", opcode);
a42d985b
BVA
1642 break;
1643 }
1644
5dabcd04
BVA
1645 if (!send_ioctx || !send_ioctx->recv_ioctx)
1646 srpt_post_recv(ch->sport->sdev, ch, recv_ioctx);
fcf58936 1647 res = true;
b99f8e4d 1648
fcf58936
BVA
1649out:
1650 return res;
1651
1652push:
1653 if (list_empty(&recv_ioctx->wait_list)) {
1654 WARN_ON_ONCE(ch->processing_wait_list);
1655 list_add_tail(&recv_ioctx->wait_list, &ch->cmd_wait_list);
1656 }
1657 goto out;
a42d985b
BVA
1658}
1659
59fae4de 1660static void srpt_recv_done(struct ib_cq *cq, struct ib_wc *wc)
a42d985b 1661{
59fae4de
CH
1662 struct srpt_rdma_ch *ch = cq->cq_context;
1663 struct srpt_recv_ioctx *ioctx =
1664 container_of(wc->wr_cqe, struct srpt_recv_ioctx, ioctx.cqe);
a42d985b 1665
a42d985b
BVA
1666 if (wc->status == IB_WC_SUCCESS) {
1667 int req_lim;
1668
1669 req_lim = atomic_dec_return(&ch->req_lim);
1670 if (unlikely(req_lim < 0))
9f5d32af 1671 pr_err("req_lim = %d < 0\n", req_lim);
5dabcd04 1672 ioctx->byte_len = wc->byte_len;
fcf58936 1673 srpt_handle_new_iu(ch, ioctx);
a42d985b 1674 } else {
3fa7f0e9
BVA
1675 pr_info_ratelimited("receiving failed for ioctx %p with status %d\n",
1676 ioctx, wc->status);
a42d985b
BVA
1677 }
1678}
1679
539b3248
BVA
1680/*
1681 * This function must be called from the context in which RDMA completions are
1682 * processed because it accesses the wait list without protection against
1683 * access from other threads.
1684 */
1685static void srpt_process_wait_list(struct srpt_rdma_ch *ch)
1686{
fcf58936 1687 struct srpt_recv_ioctx *recv_ioctx, *tmp;
539b3248 1688
fcf58936 1689 WARN_ON_ONCE(ch->state == CH_CONNECTING);
539b3248 1690
fcf58936
BVA
1691 if (list_empty(&ch->cmd_wait_list))
1692 return;
1693
1694 WARN_ON_ONCE(ch->processing_wait_list);
1695 ch->processing_wait_list = true;
1696 list_for_each_entry_safe(recv_ioctx, tmp, &ch->cmd_wait_list,
1697 wait_list) {
1698 if (!srpt_handle_new_iu(ch, recv_ioctx))
1699 break;
539b3248 1700 }
fcf58936 1701 ch->processing_wait_list = false;
539b3248
BVA
1702}
1703
a42d985b 1704/**
10eac19b
BVA
1705 * srpt_send_done - send completion callback
1706 * @cq: Completion queue.
1707 * @wc: Work completion.
1708 *
a42d985b
BVA
1709 * Note: Although this has not yet been observed during tests, at least in
1710 * theory it is possible that the srpt_get_send_ioctx() call invoked by
1711 * srpt_handle_new_iu() fails. This is possible because the req_lim_delta
1712 * value in each response is set to one, and it is possible that this response
1713 * makes the initiator send a new request before the send completion for that
1714 * response has been processed. This could e.g. happen if the call to
1715 * srpt_put_send_iotcx() is delayed because of a higher priority interrupt or
1716 * if IB retransmission causes generation of the send completion to be
1717 * delayed. Incoming information units for which srpt_get_send_ioctx() fails
1718 * are queued on cmd_wait_list. The code below processes these delayed
1719 * requests one at a time.
1720 */
59fae4de 1721static void srpt_send_done(struct ib_cq *cq, struct ib_wc *wc)
a42d985b 1722{
59fae4de
CH
1723 struct srpt_rdma_ch *ch = cq->cq_context;
1724 struct srpt_send_ioctx *ioctx =
1725 container_of(wc->wr_cqe, struct srpt_send_ioctx, ioctx.cqe);
1726 enum srpt_command_state state;
a42d985b 1727
59fae4de
CH
1728 state = srpt_set_cmd_state(ioctx, SRPT_STATE_DONE);
1729
1730 WARN_ON(state != SRPT_STATE_CMD_RSP_SENT &&
1731 state != SRPT_STATE_MGMT_RSP_SENT);
1732
b99f8e4d 1733 atomic_add(1 + ioctx->n_rdma, &ch->sq_wr_avail);
59fae4de 1734
49f40163 1735 if (wc->status != IB_WC_SUCCESS)
75d79b80
BVA
1736 pr_info("sending response for ioctx 0x%p failed with status %d\n",
1737 ioctx, wc->status);
59fae4de 1738
59fae4de 1739 if (state != SRPT_STATE_DONE) {
59fae4de 1740 transport_generic_free_cmd(&ioctx->cmd, 0);
a42d985b 1741 } else {
75d79b80
BVA
1742 pr_err("IB completion has been received too late for wr_id = %u.\n",
1743 ioctx->ioctx.index);
a42d985b
BVA
1744 }
1745
539b3248 1746 srpt_process_wait_list(ch);
a42d985b
BVA
1747}
1748
a42d985b 1749/**
10eac19b
BVA
1750 * srpt_create_ch_ib - create receive and send completion queues
1751 * @ch: SRPT RDMA channel.
a42d985b
BVA
1752 */
1753static int srpt_create_ch_ib(struct srpt_rdma_ch *ch)
1754{
1755 struct ib_qp_init_attr *qp_init;
1756 struct srpt_port *sport = ch->sport;
1757 struct srpt_device *sdev = sport->sdev;
30c6d877 1758 const struct ib_device_attr *attrs = &sdev->device->attrs;
ed262287 1759 int sq_size = sport->port_attrib.srp_sq_size;
dea26209 1760 int i, ret;
a42d985b
BVA
1761
1762 WARN_ON(ch->rq_size < 1);
1763
1764 ret = -ENOMEM;
9d2aa2b4 1765 qp_init = kzalloc(sizeof(*qp_init), GFP_KERNEL);
a42d985b
BVA
1766 if (!qp_init)
1767 goto out;
1768
ab477c1f 1769retry:
ed262287 1770 ch->cq = ib_alloc_cq(sdev->device, ch, ch->rq_size + sq_size,
59fae4de 1771 0 /* XXX: spread CQs */, IB_POLL_WORKQUEUE);
a42d985b
BVA
1772 if (IS_ERR(ch->cq)) {
1773 ret = PTR_ERR(ch->cq);
9f5d32af 1774 pr_err("failed to create CQ cqe= %d ret= %d\n",
ed262287 1775 ch->rq_size + sq_size, ret);
a42d985b
BVA
1776 goto out;
1777 }
1778
1779 qp_init->qp_context = (void *)ch;
1780 qp_init->event_handler
1781 = (void(*)(struct ib_event *, void*))srpt_qp_event;
1782 qp_init->send_cq = ch->cq;
1783 qp_init->recv_cq = ch->cq;
a42d985b
BVA
1784 qp_init->sq_sig_type = IB_SIGNAL_REQ_WR;
1785 qp_init->qp_type = IB_QPT_RC;
b99f8e4d
CH
1786 /*
1787 * We divide up our send queue size into half SEND WRs to send the
1788 * completions, and half R/W contexts to actually do the RDMA
1789 * READ/WRITE transfers. Note that we need to allocate CQ slots for
1790 * both both, as RDMA contexts will also post completions for the
1791 * RDMA READ case.
1792 */
ed262287
BVA
1793 qp_init->cap.max_send_wr = min(sq_size / 2, attrs->max_qp_wr);
1794 qp_init->cap.max_rdma_ctxs = sq_size / 2;
33023fb8
SW
1795 qp_init->cap.max_send_sge = min(attrs->max_send_sge,
1796 SRPT_MAX_SG_PER_WQE);
5dabcd04
BVA
1797 qp_init->cap.max_recv_sge = min(attrs->max_recv_sge,
1798 SRPT_MAX_SG_PER_WQE);
b99f8e4d 1799 qp_init->port_num = ch->sport->port;
dea26209
BVA
1800 if (sdev->use_srq) {
1801 qp_init->srq = sdev->srq;
1802 } else {
1803 qp_init->cap.max_recv_wr = ch->rq_size;
33023fb8
SW
1804 qp_init->cap.max_recv_sge = min(attrs->max_recv_sge,
1805 SRPT_MAX_SG_PER_WQE);
dea26209 1806 }
a42d985b 1807
63cf1a90
BVA
1808 if (ch->using_rdma_cm) {
1809 ret = rdma_create_qp(ch->rdma_cm.cm_id, sdev->pd, qp_init);
1810 ch->qp = ch->rdma_cm.cm_id->qp;
1811 } else {
1812 ch->qp = ib_create_qp(sdev->pd, qp_init);
1813 if (!IS_ERR(ch->qp)) {
1814 ret = srpt_init_ch_qp(ch, ch->qp);
1815 if (ret)
1816 ib_destroy_qp(ch->qp);
1817 } else {
1818 ret = PTR_ERR(ch->qp);
1819 }
1820 }
1821 if (ret) {
1822 bool retry = sq_size > MIN_SRPT_SQ_SIZE;
1823
1824 if (retry) {
1825 pr_debug("failed to create queue pair with sq_size = %d (%d) - retrying\n",
1826 sq_size, ret);
1827 ib_free_cq(ch->cq);
1828 sq_size = max(sq_size / 2, MIN_SRPT_SQ_SIZE);
1829 goto retry;
1830 } else {
1831 pr_err("failed to create queue pair with sq_size = %d (%d)\n",
1832 sq_size, ret);
1833 goto err_destroy_cq;
ab477c1f 1834 }
a42d985b
BVA
1835 }
1836
1837 atomic_set(&ch->sq_wr_avail, qp_init->cap.max_send_wr);
1838
090fa24b 1839 pr_debug("%s: max_cqe= %d max_sge= %d sq_size = %d ch= %p\n",
a42d985b 1840 __func__, ch->cq->cqe, qp_init->cap.max_send_sge,
090fa24b 1841 qp_init->cap.max_send_wr, ch);
a42d985b 1842
321e329b
MM
1843 if (!sdev->use_srq)
1844 for (i = 0; i < ch->rq_size; i++)
1845 srpt_post_recv(sdev, ch, ch->ioctx_recv_ring[i]);
1846
a42d985b
BVA
1847out:
1848 kfree(qp_init);
1849 return ret;
1850
a42d985b 1851err_destroy_cq:
63cf1a90 1852 ch->qp = NULL;
59fae4de 1853 ib_free_cq(ch->cq);
a42d985b
BVA
1854 goto out;
1855}
1856
1857static void srpt_destroy_ch_ib(struct srpt_rdma_ch *ch)
1858{
a42d985b 1859 ib_destroy_qp(ch->qp);
59fae4de 1860 ib_free_cq(ch->cq);
a42d985b
BVA
1861}
1862
1863/**
10eac19b
BVA
1864 * srpt_close_ch - close a RDMA channel
1865 * @ch: SRPT RDMA channel.
a42d985b 1866 *
aaf45bd8
BVA
1867 * Make sure all resources associated with the channel will be deallocated at
1868 * an appropriate time.
a42d985b 1869 *
aaf45bd8
BVA
1870 * Returns true if and only if the channel state has been modified into
1871 * CH_DRAINING.
a42d985b 1872 */
aaf45bd8 1873static bool srpt_close_ch(struct srpt_rdma_ch *ch)
a42d985b 1874{
aaf45bd8 1875 int ret;
a42d985b 1876
aaf45bd8 1877 if (!srpt_set_ch_state(ch, CH_DRAINING)) {
99525095 1878 pr_debug("%s: already closed\n", ch->sess_name);
aaf45bd8 1879 return false;
a42d985b 1880 }
a42d985b 1881
aaf45bd8 1882 kref_get(&ch->kref);
a42d985b 1883
aaf45bd8
BVA
1884 ret = srpt_ch_qp_err(ch);
1885 if (ret < 0)
1886 pr_err("%s-%d: changing queue pair into error state failed: %d\n",
1887 ch->sess_name, ch->qp->qp_num, ret);
a42d985b 1888
aaf45bd8
BVA
1889 ret = srpt_zerolength_write(ch);
1890 if (ret < 0) {
1891 pr_err("%s-%d: queuing zero-length write failed: %d\n",
1892 ch->sess_name, ch->qp->qp_num, ret);
1893 if (srpt_set_ch_state(ch, CH_DISCONNECTED))
1894 schedule_work(&ch->release_work);
1895 else
1896 WARN_ON_ONCE(true);
1897 }
a42d985b 1898
aaf45bd8
BVA
1899 kref_put(&ch->kref, srpt_free_ch);
1900
1901 return true;
1d19f780
NB
1902}
1903
aaf45bd8
BVA
1904/*
1905 * Change the channel state into CH_DISCONNECTING. If a channel has not yet
1906 * reached the connected state, close it. If a channel is in the connected
1907 * state, send a DREQ. If a DREQ has been received, send a DREP. Note: it is
1908 * the responsibility of the caller to ensure that this function is not
1909 * invoked concurrently with the code that accepts a connection. This means
1910 * that this function must either be invoked from inside a CM callback
1911 * function or that it must be invoked with the srpt_port.mutex held.
a42d985b 1912 */
aaf45bd8 1913static int srpt_disconnect_ch(struct srpt_rdma_ch *ch)
a42d985b 1914{
a42d985b 1915 int ret;
a42d985b 1916
aaf45bd8
BVA
1917 if (!srpt_set_ch_state(ch, CH_DISCONNECTING))
1918 return -ENOTCONN;
a42d985b 1919
63cf1a90
BVA
1920 if (ch->using_rdma_cm) {
1921 ret = rdma_disconnect(ch->rdma_cm.cm_id);
1922 } else {
1923 ret = ib_send_cm_dreq(ch->ib_cm.cm_id, NULL, 0);
1924 if (ret < 0)
1925 ret = ib_send_cm_drep(ch->ib_cm.cm_id, NULL, 0);
1926 }
a42d985b 1927
aaf45bd8
BVA
1928 if (ret < 0 && srpt_close_ch(ch))
1929 ret = 0;
1d19f780 1930
aaf45bd8
BVA
1931 return ret;
1932}
1933
ba60c84f 1934static bool srpt_ch_closed(struct srpt_port *sport, struct srpt_rdma_ch *ch)
44138344 1935{
a1125314 1936 struct srpt_nexus *nexus;
44138344
BVA
1937 struct srpt_rdma_ch *ch2;
1938 bool res = true;
1939
1940 rcu_read_lock();
a1125314
BVA
1941 list_for_each_entry(nexus, &sport->nexus_list, entry) {
1942 list_for_each_entry(ch2, &nexus->ch_list, list) {
1943 if (ch2 == ch) {
1944 res = false;
1945 goto done;
1946 }
44138344
BVA
1947 }
1948 }
a1125314 1949done:
44138344
BVA
1950 rcu_read_unlock();
1951
1952 return res;
1953}
1954
940874f8
BVA
1955/* Send DREQ and wait for DREP. */
1956static void srpt_disconnect_ch_sync(struct srpt_rdma_ch *ch)
aaf45bd8 1957{
ba60c84f 1958 struct srpt_port *sport = ch->sport;
01b3ee13
BVA
1959
1960 pr_debug("ch %s-%d state %d\n", ch->sess_name, ch->qp->qp_num,
1961 ch->state);
1962
940874f8
BVA
1963 mutex_lock(&sport->mutex);
1964 srpt_disconnect_ch(ch);
ba60c84f 1965 mutex_unlock(&sport->mutex);
01b3ee13 1966
ba60c84f 1967 while (wait_event_timeout(sport->ch_releaseQ, srpt_ch_closed(sport, ch),
44138344 1968 5 * HZ) == 0)
01b3ee13
BVA
1969 pr_info("%s(%s-%d state %d): still waiting ...\n", __func__,
1970 ch->sess_name, ch->qp->qp_num, ch->state);
1971
01b3ee13
BVA
1972}
1973
a1125314 1974static void __srpt_close_all_ch(struct srpt_port *sport)
aaf45bd8 1975{
a1125314 1976 struct srpt_nexus *nexus;
aaf45bd8
BVA
1977 struct srpt_rdma_ch *ch;
1978
ba60c84f 1979 lockdep_assert_held(&sport->mutex);
aaf45bd8 1980
a1125314
BVA
1981 list_for_each_entry(nexus, &sport->nexus_list, entry) {
1982 list_for_each_entry(ch, &nexus->ch_list, list) {
1983 if (srpt_disconnect_ch(ch) >= 0)
14d15c2b
BVA
1984 pr_info("Closing channel %s because target %s_%d has been disabled\n",
1985 ch->sess_name,
6c854111
JG
1986 dev_name(&sport->sdev->device->dev),
1987 sport->port);
a1125314
BVA
1988 srpt_close_ch(ch);
1989 }
1990 }
1991}
1992
1993/*
1994 * Look up (i_port_id, t_port_id) in sport->nexus_list. Create an entry if
1995 * it does not yet exist.
1996 */
1997static struct srpt_nexus *srpt_get_nexus(struct srpt_port *sport,
1998 const u8 i_port_id[16],
1999 const u8 t_port_id[16])
2000{
2001 struct srpt_nexus *nexus = NULL, *tmp_nexus = NULL, *n;
8b6dc529 2002
a1125314
BVA
2003 for (;;) {
2004 mutex_lock(&sport->mutex);
2005 list_for_each_entry(n, &sport->nexus_list, entry) {
2006 if (memcmp(n->i_port_id, i_port_id, 16) == 0 &&
2007 memcmp(n->t_port_id, t_port_id, 16) == 0) {
2008 nexus = n;
2009 break;
2010 }
2011 }
2012 if (!nexus && tmp_nexus) {
2013 list_add_tail_rcu(&tmp_nexus->entry,
2014 &sport->nexus_list);
2015 swap(nexus, tmp_nexus);
2016 }
2017 mutex_unlock(&sport->mutex);
2018
2019 if (nexus)
2020 break;
2021 tmp_nexus = kzalloc(sizeof(*nexus), GFP_KERNEL);
2022 if (!tmp_nexus) {
2023 nexus = ERR_PTR(-ENOMEM);
2024 break;
8b6dc529 2025 }
a1125314
BVA
2026 INIT_LIST_HEAD(&tmp_nexus->ch_list);
2027 memcpy(tmp_nexus->i_port_id, i_port_id, 16);
2028 memcpy(tmp_nexus->t_port_id, t_port_id, 16);
a42d985b 2029 }
8b6dc529 2030
a1125314
BVA
2031 kfree(tmp_nexus);
2032
2033 return nexus;
2034}
2035
2036static void srpt_set_enabled(struct srpt_port *sport, bool enabled)
2037 __must_hold(&sport->mutex)
2038{
2039 lockdep_assert_held(&sport->mutex);
2040
2041 if (sport->enabled == enabled)
2042 return;
2043 sport->enabled = enabled;
2044 if (!enabled)
2045 __srpt_close_all_ch(sport);
a42d985b
BVA
2046}
2047
aaf45bd8
BVA
2048static void srpt_free_ch(struct kref *kref)
2049{
2050 struct srpt_rdma_ch *ch = container_of(kref, struct srpt_rdma_ch, kref);
2051
795bc112 2052 kfree_rcu(ch, rcu);
a42d985b
BVA
2053}
2054
ed041919
BVA
2055/*
2056 * Shut down the SCSI target session, tell the connection manager to
2057 * disconnect the associated RDMA channel, transition the QP to the error
2058 * state and remove the channel from the channel list. This function is
2059 * typically called from inside srpt_zerolength_write_done(). Concurrent
2060 * srpt_zerolength_write() calls from inside srpt_close_ch() are possible
2061 * as long as the channel is on sport->nexus_list.
2062 */
a42d985b
BVA
2063static void srpt_release_channel_work(struct work_struct *w)
2064{
2065 struct srpt_rdma_ch *ch;
2066 struct srpt_device *sdev;
ba60c84f 2067 struct srpt_port *sport;
9474b043 2068 struct se_session *se_sess;
a42d985b
BVA
2069
2070 ch = container_of(w, struct srpt_rdma_ch, release_work);
44138344 2071 pr_debug("%s-%d\n", ch->sess_name, ch->qp->qp_num);
a42d985b
BVA
2072
2073 sdev = ch->sport->sdev;
2074 BUG_ON(!sdev);
2075
9474b043
NB
2076 se_sess = ch->sess;
2077 BUG_ON(!se_sess);
2078
88936259 2079 target_sess_cmd_list_set_waiting(se_sess);
be646c2d 2080 target_wait_for_sess_cmds(se_sess);
9474b043 2081
b287e351 2082 target_remove_session(se_sess);
a42d985b
BVA
2083 ch->sess = NULL;
2084
63cf1a90
BVA
2085 if (ch->using_rdma_cm)
2086 rdma_destroy_id(ch->rdma_cm.cm_id);
2087 else
2088 ib_destroy_cm_id(ch->ib_cm.cm_id);
0b41d6ca 2089
ed041919
BVA
2090 sport = ch->sport;
2091 mutex_lock(&sport->mutex);
2092 list_del_rcu(&ch->list);
2093 mutex_unlock(&sport->mutex);
2094
a42d985b
BVA
2095 srpt_destroy_ch_ib(ch);
2096
2097 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_ring,
2098 ch->sport->sdev, ch->rq_size,
5dabcd04
BVA
2099 ch->rsp_buf_cache, DMA_TO_DEVICE);
2100
2101 kmem_cache_destroy(ch->rsp_buf_cache);
a42d985b 2102
dea26209
BVA
2103 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_recv_ring,
2104 sdev, ch->rq_size,
5dabcd04 2105 ch->req_buf_cache, DMA_FROM_DEVICE);
dea26209 2106
5dabcd04 2107 kmem_cache_destroy(ch->req_buf_cache);
795bc112 2108
ba60c84f 2109 wake_up(&sport->ch_releaseQ);
a42d985b 2110
aaf45bd8 2111 kref_put(&ch->kref, srpt_free_ch);
a42d985b
BVA
2112}
2113
a42d985b 2114/**
10eac19b 2115 * srpt_cm_req_recv - process the event IB_CM_REQ_RECEIVED
63cf1a90
BVA
2116 * @sdev: HCA through which the login request was received.
2117 * @ib_cm_id: IB/CM connection identifier in case of IB/CM.
2118 * @rdma_cm_id: RDMA/CM connection identifier in case of RDMA/CM.
2119 * @port_num: Port through which the REQ message was received.
2ffcf042
BVA
2120 * @pkey: P_Key of the incoming connection.
2121 * @req: SRP login request.
63cf1a90
BVA
2122 * @src_addr: GID (IB/CM) or IP address (RDMA/CM) of the port that submitted
2123 * the login request.
a42d985b
BVA
2124 *
2125 * Ownership of the cm_id is transferred to the target session if this
63cf1a90 2126 * function returns zero. Otherwise the caller remains the owner of cm_id.
a42d985b 2127 */
63cf1a90
BVA
2128static int srpt_cm_req_recv(struct srpt_device *const sdev,
2129 struct ib_cm_id *ib_cm_id,
2130 struct rdma_cm_id *rdma_cm_id,
2ffcf042
BVA
2131 u8 port_num, __be16 pkey,
2132 const struct srp_login_req *req,
2133 const char *src_addr)
a42d985b 2134{
2ffcf042 2135 struct srpt_port *sport = &sdev->port[port_num - 1];
a1125314 2136 struct srpt_nexus *nexus;
a1125314
BVA
2137 struct srp_login_rsp *rsp = NULL;
2138 struct srp_login_rej *rej = NULL;
63cf1a90
BVA
2139 union {
2140 struct rdma_conn_param rdma_cm;
2141 struct ib_cm_rep_param ib_cm;
2142 } *rep_param = NULL;
847462de 2143 struct srpt_rdma_ch *ch = NULL;
2dc98f09 2144 char i_port_id[36];
a42d985b 2145 u32 it_iu_len;
fd1b6687 2146 int i, tag_num, tag_size, ret;
a42d985b
BVA
2147
2148 WARN_ON_ONCE(irqs_disabled());
2149
2ffcf042 2150 if (WARN_ON(!sdev || !req))
a42d985b
BVA
2151 return -EINVAL;
2152
a42d985b
BVA
2153 it_iu_len = be32_to_cpu(req->req_it_iu_len);
2154
c5efb621 2155 pr_info("Received SRP_LOGIN_REQ with i_port_id %pI6, t_port_id %pI6 and it_iu_len %d on port %d (guid=%pI6); pkey %#04x\n",
b185d3f8 2156 req->initiator_port_id, req->target_port_id, it_iu_len,
2ffcf042 2157 port_num, &sport->gid, be16_to_cpu(pkey));
a42d985b 2158
a1125314
BVA
2159 nexus = srpt_get_nexus(sport, req->initiator_port_id,
2160 req->target_port_id);
2161 if (IS_ERR(nexus)) {
2162 ret = PTR_ERR(nexus);
2163 goto out;
2164 }
2165
db7683d7 2166 ret = -ENOMEM;
9d2aa2b4
BVA
2167 rsp = kzalloc(sizeof(*rsp), GFP_KERNEL);
2168 rej = kzalloc(sizeof(*rej), GFP_KERNEL);
2169 rep_param = kzalloc(sizeof(*rep_param), GFP_KERNEL);
db7683d7 2170 if (!rsp || !rej || !rep_param)
a42d985b 2171 goto out;
a42d985b 2172
db7683d7 2173 ret = -EINVAL;
a42d985b 2174 if (it_iu_len > srp_max_req_size || it_iu_len < 64) {
b356c1c1 2175 rej->reason = cpu_to_be32(
db7683d7
BVA
2176 SRP_LOGIN_REJ_REQ_IT_IU_LENGTH_TOO_LARGE);
2177 pr_err("rejected SRP_LOGIN_REQ because its length (%d bytes) is out of range (%d .. %d)\n",
a42d985b
BVA
2178 it_iu_len, 64, srp_max_req_size);
2179 goto reject;
2180 }
2181
2182 if (!sport->enabled) {
db7683d7
BVA
2183 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
2184 pr_info("rejected SRP_LOGIN_REQ because target port %s_%d has not yet been enabled\n",
6c854111 2185 dev_name(&sport->sdev->device->dev), port_num);
a42d985b
BVA
2186 goto reject;
2187 }
2188
a42d985b
BVA
2189 if (*(__be64 *)req->target_port_id != cpu_to_be64(srpt_service_guid)
2190 || *(__be64 *)(req->target_port_id + 8) !=
2191 cpu_to_be64(srpt_service_guid)) {
b356c1c1 2192 rej->reason = cpu_to_be32(
db7683d7
BVA
2193 SRP_LOGIN_REJ_UNABLE_ASSOCIATE_CHANNEL);
2194 pr_err("rejected SRP_LOGIN_REQ because it has an invalid target port identifier.\n");
a42d985b
BVA
2195 goto reject;
2196 }
2197
db7683d7 2198 ret = -ENOMEM;
9d2aa2b4 2199 ch = kzalloc(sizeof(*ch), GFP_KERNEL);
a42d985b 2200 if (!ch) {
db7683d7
BVA
2201 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
2202 pr_err("rejected SRP_LOGIN_REQ because out of memory.\n");
a42d985b
BVA
2203 goto reject;
2204 }
2205
aaf45bd8 2206 kref_init(&ch->kref);
2ffcf042 2207 ch->pkey = be16_to_cpu(pkey);
a1125314 2208 ch->nexus = nexus;
aaf45bd8 2209 ch->zw_cqe.done = srpt_zerolength_write_done;
a42d985b 2210 INIT_WORK(&ch->release_work, srpt_release_channel_work);
2ffcf042 2211 ch->sport = sport;
63cf1a90
BVA
2212 if (ib_cm_id) {
2213 ch->ib_cm.cm_id = ib_cm_id;
2214 ib_cm_id->context = ch;
2215 } else {
2216 ch->using_rdma_cm = true;
2217 ch->rdma_cm.cm_id = rdma_cm_id;
2218 rdma_cm_id->context = ch;
2219 }
a42d985b 2220 /*
7a01d05c
BVA
2221 * ch->rq_size should be at least as large as the initiator queue
2222 * depth to avoid that the initiator driver has to report QUEUE_FULL
2223 * to the SCSI mid-layer.
a42d985b 2224 */
ed262287 2225 ch->rq_size = min(MAX_SRPT_RQ_SIZE, sdev->device->attrs.max_qp_wr);
a42d985b
BVA
2226 spin_lock_init(&ch->spinlock);
2227 ch->state = CH_CONNECTING;
2228 INIT_LIST_HEAD(&ch->cmd_wait_list);
ed262287 2229 ch->max_rsp_size = ch->sport->port_attrib.srp_max_rsp_size;
a42d985b 2230
5dabcd04
BVA
2231 ch->rsp_buf_cache = kmem_cache_create("srpt-rsp-buf", ch->max_rsp_size,
2232 512, 0, NULL);
2233 if (!ch->rsp_buf_cache)
2234 goto free_ch;
2235
a42d985b
BVA
2236 ch->ioctx_ring = (struct srpt_send_ioctx **)
2237 srpt_alloc_ioctx_ring(ch->sport->sdev, ch->rq_size,
2238 sizeof(*ch->ioctx_ring[0]),
5dabcd04 2239 ch->rsp_buf_cache, 0, DMA_TO_DEVICE);
db7683d7
BVA
2240 if (!ch->ioctx_ring) {
2241 pr_err("rejected SRP_LOGIN_REQ because creating a new QP SQ ring failed.\n");
2242 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
5dabcd04 2243 goto free_rsp_cache;
db7683d7 2244 }
a42d985b 2245
fd1b6687 2246 for (i = 0; i < ch->rq_size; i++)
3c968887 2247 ch->ioctx_ring[i]->ch = ch;
dea26209 2248 if (!sdev->use_srq) {
5dabcd04
BVA
2249 u16 imm_data_offset = req->req_flags & SRP_IMMED_REQUESTED ?
2250 be16_to_cpu(req->imm_data_offset) : 0;
2251 u16 alignment_offset;
2252 u32 req_sz;
2253
2254 if (req->req_flags & SRP_IMMED_REQUESTED)
2255 pr_debug("imm_data_offset = %d\n",
2256 be16_to_cpu(req->imm_data_offset));
2257 if (imm_data_offset >= sizeof(struct srp_cmd)) {
2258 ch->imm_data_offset = imm_data_offset;
2259 rsp->rsp_flags |= SRP_LOGIN_RSP_IMMED_SUPP;
2260 } else {
2261 ch->imm_data_offset = 0;
2262 }
2263 alignment_offset = round_up(imm_data_offset, 512) -
2264 imm_data_offset;
2265 req_sz = alignment_offset + imm_data_offset + srp_max_req_size;
2266 ch->req_buf_cache = kmem_cache_create("srpt-req-buf", req_sz,
2267 512, 0, NULL);
2268 if (!ch->req_buf_cache)
2269 goto free_rsp_ring;
2270
dea26209
BVA
2271 ch->ioctx_recv_ring = (struct srpt_recv_ioctx **)
2272 srpt_alloc_ioctx_ring(ch->sport->sdev, ch->rq_size,
2273 sizeof(*ch->ioctx_recv_ring[0]),
5dabcd04
BVA
2274 ch->req_buf_cache,
2275 alignment_offset,
dea26209
BVA
2276 DMA_FROM_DEVICE);
2277 if (!ch->ioctx_recv_ring) {
2278 pr_err("rejected SRP_LOGIN_REQ because creating a new QP RQ ring failed.\n");
2279 rej->reason =
2280 cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
5dabcd04 2281 goto free_recv_cache;
dea26209 2282 }
fcf58936
BVA
2283 for (i = 0; i < ch->rq_size; i++)
2284 INIT_LIST_HEAD(&ch->ioctx_recv_ring[i]->wait_list);
dea26209 2285 }
3c968887 2286
a42d985b 2287 ret = srpt_create_ch_ib(ch);
a42d985b 2288 if (ret) {
b356c1c1 2289 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
db7683d7
BVA
2290 pr_err("rejected SRP_LOGIN_REQ because creating a new RDMA channel failed.\n");
2291 goto free_recv_ring;
a42d985b 2292 }
f246c941 2293
2ffcf042 2294 strlcpy(ch->sess_name, src_addr, sizeof(ch->sess_name));
2dc98f09 2295 snprintf(i_port_id, sizeof(i_port_id), "0x%016llx%016llx",
a1125314
BVA
2296 be64_to_cpu(*(__be64 *)nexus->i_port_id),
2297 be64_to_cpu(*(__be64 *)(nexus->i_port_id + 8)));
a42d985b
BVA
2298
2299 pr_debug("registering session %s\n", ch->sess_name);
2300
fd1b6687
BVA
2301 tag_num = ch->rq_size;
2302 tag_size = 1; /* ib_srpt does not use se_sess->sess_cmd_map */
2bce1a6d 2303 if (sport->port_guid_tpg.se_tpg_wwn)
fd1b6687
BVA
2304 ch->sess = target_setup_session(&sport->port_guid_tpg, tag_num,
2305 tag_size, TARGET_PROT_NORMAL,
2dc98f09 2306 ch->sess_name, ch, NULL);
2bce1a6d 2307 if (sport->port_gid_tpg.se_tpg_wwn && IS_ERR_OR_NULL(ch->sess))
fd1b6687
BVA
2308 ch->sess = target_setup_session(&sport->port_gid_tpg, tag_num,
2309 tag_size, TARGET_PROT_NORMAL, i_port_id,
2310 ch, NULL);
0d38c240 2311 /* Retry without leading "0x" */
2bce1a6d 2312 if (sport->port_gid_tpg.se_tpg_wwn && IS_ERR_OR_NULL(ch->sess))
fd1b6687
BVA
2313 ch->sess = target_setup_session(&sport->port_gid_tpg, tag_num,
2314 tag_size, TARGET_PROT_NORMAL,
2dc98f09 2315 i_port_id + 2, ch, NULL);
2bce1a6d 2316 if (IS_ERR_OR_NULL(ch->sess)) {
847462de 2317 WARN_ON_ONCE(ch->sess == NULL);
db7683d7 2318 ret = PTR_ERR(ch->sess);
847462de 2319 ch->sess = NULL;
db7683d7
BVA
2320 pr_info("Rejected login for initiator %s: ret = %d.\n",
2321 ch->sess_name, ret);
2322 rej->reason = cpu_to_be32(ret == -ENOMEM ?
b42057ab 2323 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES :
f246c941 2324 SRP_LOGIN_REJ_CHANNEL_LIMIT_REACHED);
847462de 2325 goto destroy_ib;
db7683d7
BVA
2326 }
2327
2328 mutex_lock(&sport->mutex);
2329
2330 if ((req->req_flags & SRP_MTCH_ACTION) == SRP_MULTICHAN_SINGLE) {
2331 struct srpt_rdma_ch *ch2;
2332
db7683d7
BVA
2333 list_for_each_entry(ch2, &nexus->ch_list, list) {
2334 if (srpt_disconnect_ch(ch2) < 0)
2335 continue;
2336 pr_info("Relogin - closed existing channel %s\n",
2337 ch2->sess_name);
5dabcd04 2338 rsp->rsp_flags |= SRP_LOGIN_RSP_MULTICHAN_TERMINATED;
db7683d7
BVA
2339 }
2340 } else {
5dabcd04 2341 rsp->rsp_flags |= SRP_LOGIN_RSP_MULTICHAN_MAINTAINED;
db7683d7
BVA
2342 }
2343
2344 list_add_tail_rcu(&ch->list, &nexus->ch_list);
2345
2346 if (!sport->enabled) {
2347 rej->reason = cpu_to_be32(
2348 SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
2349 pr_info("rejected SRP_LOGIN_REQ because target %s_%d is not enabled\n",
6c854111 2350 dev_name(&sdev->device->dev), port_num);
db7683d7
BVA
2351 mutex_unlock(&sport->mutex);
2352 goto reject;
2353 }
2354
2355 mutex_unlock(&sport->mutex);
2356
63cf1a90 2357 ret = ch->using_rdma_cm ? 0 : srpt_ch_qp_rtr(ch, ch->qp);
db7683d7
BVA
2358 if (ret) {
2359 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
2360 pr_err("rejected SRP_LOGIN_REQ because enabling RTR failed (error code = %d)\n",
2361 ret);
847462de 2362 goto reject;
a42d985b 2363 }
a42d985b 2364
090fa24b
BVA
2365 pr_debug("Establish connection sess=%p name=%s ch=%p\n", ch->sess,
2366 ch->sess_name, ch);
a42d985b
BVA
2367
2368 /* create srp_login_response */
2369 rsp->opcode = SRP_LOGIN_RSP;
2370 rsp->tag = req->tag;
5dabcd04 2371 rsp->max_it_iu_len = cpu_to_be32(srp_max_req_size);
a42d985b
BVA
2372 rsp->max_ti_iu_len = req->req_it_iu_len;
2373 ch->max_ti_iu_len = it_iu_len;
db7683d7
BVA
2374 rsp->buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT |
2375 SRP_BUF_FORMAT_INDIRECT);
a42d985b
BVA
2376 rsp->req_lim_delta = cpu_to_be32(ch->rq_size);
2377 atomic_set(&ch->req_lim, ch->rq_size);
2378 atomic_set(&ch->req_lim_delta, 0);
2379
2380 /* create cm reply */
63cf1a90
BVA
2381 if (ch->using_rdma_cm) {
2382 rep_param->rdma_cm.private_data = (void *)rsp;
2383 rep_param->rdma_cm.private_data_len = sizeof(*rsp);
2384 rep_param->rdma_cm.rnr_retry_count = 7;
2385 rep_param->rdma_cm.flow_control = 1;
2386 rep_param->rdma_cm.responder_resources = 4;
2387 rep_param->rdma_cm.initiator_depth = 4;
2388 } else {
2389 rep_param->ib_cm.qp_num = ch->qp->qp_num;
2390 rep_param->ib_cm.private_data = (void *)rsp;
2391 rep_param->ib_cm.private_data_len = sizeof(*rsp);
2392 rep_param->ib_cm.rnr_retry_count = 7;
2393 rep_param->ib_cm.flow_control = 1;
2394 rep_param->ib_cm.failover_accepted = 0;
2395 rep_param->ib_cm.srq = 1;
2396 rep_param->ib_cm.responder_resources = 4;
2397 rep_param->ib_cm.initiator_depth = 4;
2398 }
a42d985b 2399
db7683d7
BVA
2400 /*
2401 * Hold the sport mutex while accepting a connection to avoid that
2402 * srpt_disconnect_ch() is invoked concurrently with this code.
2403 */
ba60c84f 2404 mutex_lock(&sport->mutex);
63cf1a90
BVA
2405 if (sport->enabled && ch->state == CH_CONNECTING) {
2406 if (ch->using_rdma_cm)
2407 ret = rdma_accept(rdma_cm_id, &rep_param->rdma_cm);
2408 else
2409 ret = ib_send_cm_rep(ib_cm_id, &rep_param->ib_cm);
2410 } else {
db7683d7 2411 ret = -EINVAL;
63cf1a90 2412 }
ba60c84f 2413 mutex_unlock(&sport->mutex);
a42d985b 2414
db7683d7
BVA
2415 switch (ret) {
2416 case 0:
2417 break;
2418 case -EINVAL:
2419 goto reject;
2420 default:
2421 rej->reason = cpu_to_be32(SRP_LOGIN_REJ_INSUFFICIENT_RESOURCES);
2422 pr_err("sending SRP_LOGIN_REQ response failed (error code = %d)\n",
2423 ret);
2424 goto reject;
2425 }
a42d985b 2426
db7683d7 2427 goto out;
a42d985b
BVA
2428
2429destroy_ib:
2430 srpt_destroy_ch_ib(ch);
2431
dea26209
BVA
2432free_recv_ring:
2433 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_recv_ring,
2434 ch->sport->sdev, ch->rq_size,
5dabcd04 2435 ch->req_buf_cache, DMA_FROM_DEVICE);
dea26209 2436
5dabcd04
BVA
2437free_recv_cache:
2438 kmem_cache_destroy(ch->req_buf_cache);
dea26209 2439
5dabcd04 2440free_rsp_ring:
a42d985b
BVA
2441 srpt_free_ioctx_ring((struct srpt_ioctx **)ch->ioctx_ring,
2442 ch->sport->sdev, ch->rq_size,
5dabcd04
BVA
2443 ch->rsp_buf_cache, DMA_TO_DEVICE);
2444
2445free_rsp_cache:
2446 kmem_cache_destroy(ch->rsp_buf_cache);
6869e000 2447
a42d985b 2448free_ch:
6869e000
BVA
2449 if (rdma_cm_id)
2450 rdma_cm_id->context = NULL;
2451 else
63cf1a90 2452 ib_cm_id->context = NULL;
a42d985b 2453 kfree(ch);
db7683d7
BVA
2454 ch = NULL;
2455
2456 WARN_ON_ONCE(ret == 0);
a42d985b
BVA
2457
2458reject:
db7683d7 2459 pr_info("Rejecting login with reason %#x\n", be32_to_cpu(rej->reason));
a42d985b
BVA
2460 rej->opcode = SRP_LOGIN_REJ;
2461 rej->tag = req->tag;
db7683d7
BVA
2462 rej->buf_fmt = cpu_to_be16(SRP_BUF_FORMAT_DIRECT |
2463 SRP_BUF_FORMAT_INDIRECT);
a42d985b 2464
63cf1a90
BVA
2465 if (rdma_cm_id)
2466 rdma_reject(rdma_cm_id, rej, sizeof(*rej));
2467 else
2468 ib_send_cm_rej(ib_cm_id, IB_CM_REJ_CONSUMER_DEFINED, NULL, 0,
2469 rej, sizeof(*rej));
a42d985b 2470
847462de
BVA
2471 if (ch && ch->sess) {
2472 srpt_close_ch(ch);
2473 /*
2474 * Tell the caller not to free cm_id since
2475 * srpt_release_channel_work() will do that.
2476 */
2477 ret = 0;
2478 }
2479
a42d985b
BVA
2480out:
2481 kfree(rep_param);
2482 kfree(rsp);
2483 kfree(rej);
2484
2485 return ret;
2486}
2487
2ffcf042 2488static int srpt_ib_cm_req_recv(struct ib_cm_id *cm_id,
e7ff98ae 2489 const struct ib_cm_req_event_param *param,
2ffcf042
BVA
2490 void *private_data)
2491{
2492 char sguid[40];
2493
2494 srpt_format_guid(sguid, sizeof(sguid),
2495 &param->primary_path->dgid.global.interface_id);
2496
63cf1a90
BVA
2497 return srpt_cm_req_recv(cm_id->context, cm_id, NULL, param->port,
2498 param->primary_path->pkey,
2ffcf042
BVA
2499 private_data, sguid);
2500}
2501
63cf1a90
BVA
2502static int srpt_rdma_cm_req_recv(struct rdma_cm_id *cm_id,
2503 struct rdma_cm_event *event)
2504{
2505 struct srpt_device *sdev;
2506 struct srp_login_req req;
2507 const struct srp_login_req_rdma *req_rdma;
2508 char src_addr[40];
2509
2510 sdev = ib_get_client_data(cm_id->device, &srpt_client);
2511 if (!sdev)
2512 return -ECONNREFUSED;
2513
2514 if (event->param.conn.private_data_len < sizeof(*req_rdma))
2515 return -EINVAL;
2516
2517 /* Transform srp_login_req_rdma into srp_login_req. */
2518 req_rdma = event->param.conn.private_data;
2519 memset(&req, 0, sizeof(req));
2520 req.opcode = req_rdma->opcode;
2521 req.tag = req_rdma->tag;
2522 req.req_it_iu_len = req_rdma->req_it_iu_len;
2523 req.req_buf_fmt = req_rdma->req_buf_fmt;
2524 req.req_flags = req_rdma->req_flags;
2525 memcpy(req.initiator_port_id, req_rdma->initiator_port_id, 16);
2526 memcpy(req.target_port_id, req_rdma->target_port_id, 16);
5dabcd04 2527 req.imm_data_offset = req_rdma->imm_data_offset;
63cf1a90
BVA
2528
2529 snprintf(src_addr, sizeof(src_addr), "%pIS",
2530 &cm_id->route.addr.src_addr);
2531
2532 return srpt_cm_req_recv(sdev, NULL, cm_id, cm_id->port_num,
2533 cm_id->route.path_rec->pkey, &req, src_addr);
2534}
2535
2739b592
BVA
2536static void srpt_cm_rej_recv(struct srpt_rdma_ch *ch,
2537 enum ib_cm_rej_reason reason,
2538 const u8 *private_data,
2539 u8 private_data_len)
a42d985b 2540{
c13c90ea
BVA
2541 char *priv = NULL;
2542 int i;
2543
2544 if (private_data_len && (priv = kmalloc(private_data_len * 3 + 1,
2545 GFP_KERNEL))) {
2546 for (i = 0; i < private_data_len; i++)
2547 sprintf(priv + 3 * i, " %02x", private_data[i]);
2548 }
2549 pr_info("Received CM REJ for ch %s-%d; reason %d%s%s.\n",
2550 ch->sess_name, ch->qp->qp_num, reason, private_data_len ?
2551 "; private data" : "", priv ? priv : " (?)");
2552 kfree(priv);
a42d985b
BVA
2553}
2554
2555/**
10eac19b
BVA
2556 * srpt_cm_rtu_recv - process an IB_CM_RTU_RECEIVED or USER_ESTABLISHED event
2557 * @ch: SRPT RDMA channel.
a42d985b 2558 *
63cf1a90
BVA
2559 * An RTU (ready to use) message indicates that the connection has been
2560 * established and that the recipient may begin transmitting.
a42d985b 2561 */
2739b592 2562static void srpt_cm_rtu_recv(struct srpt_rdma_ch *ch)
a42d985b 2563{
a42d985b
BVA
2564 int ret;
2565
63cf1a90 2566 ret = ch->using_rdma_cm ? 0 : srpt_ch_qp_rts(ch, ch->qp);
db7683d7
BVA
2567 if (ret < 0) {
2568 pr_err("%s-%d: QP transition to RTS failed\n", ch->sess_name,
2569 ch->qp->qp_num);
2570 srpt_close_ch(ch);
2571 return;
a42d985b 2572 }
db7683d7 2573
db7683d7
BVA
2574 /*
2575 * Note: calling srpt_close_ch() if the transition to the LIVE state
2576 * fails is not necessary since that means that that function has
2577 * already been invoked from another thread.
2578 */
e28a547d 2579 if (!srpt_set_ch_state(ch, CH_LIVE)) {
db7683d7
BVA
2580 pr_err("%s-%d: channel transition to LIVE state failed\n",
2581 ch->sess_name, ch->qp->qp_num);
e28a547d
BVA
2582 return;
2583 }
2584
2585 /* Trigger wait list processing. */
2586 ret = srpt_zerolength_write(ch);
2587 WARN_ONCE(ret < 0, "%d\n", ret);
a42d985b
BVA
2588}
2589
a42d985b 2590/**
10eac19b
BVA
2591 * srpt_cm_handler - IB connection manager callback function
2592 * @cm_id: IB/CM connection identifier.
2593 * @event: IB/CM event.
a42d985b
BVA
2594 *
2595 * A non-zero return value will cause the caller destroy the CM ID.
2596 *
2597 * Note: srpt_cm_handler() must only return a non-zero value when transferring
2598 * ownership of the cm_id to a channel by srpt_cm_req_recv() failed. Returning
2599 * a non-zero value in any other case will trigger a race with the
2600 * ib_destroy_cm_id() call in srpt_release_channel().
2601 */
e7ff98ae
PP
2602static int srpt_cm_handler(struct ib_cm_id *cm_id,
2603 const struct ib_cm_event *event)
a42d985b 2604{
2739b592 2605 struct srpt_rdma_ch *ch = cm_id->context;
a42d985b
BVA
2606 int ret;
2607
2608 ret = 0;
2609 switch (event->event) {
2610 case IB_CM_REQ_RECEIVED:
2ffcf042
BVA
2611 ret = srpt_ib_cm_req_recv(cm_id, &event->param.req_rcvd,
2612 event->private_data);
a42d985b
BVA
2613 break;
2614 case IB_CM_REJ_RECEIVED:
2739b592
BVA
2615 srpt_cm_rej_recv(ch, event->param.rej_rcvd.reason,
2616 event->private_data,
2617 IB_CM_REJ_PRIVATE_DATA_SIZE);
a42d985b
BVA
2618 break;
2619 case IB_CM_RTU_RECEIVED:
2620 case IB_CM_USER_ESTABLISHED:
2739b592 2621 srpt_cm_rtu_recv(ch);
a42d985b
BVA
2622 break;
2623 case IB_CM_DREQ_RECEIVED:
aaf45bd8 2624 srpt_disconnect_ch(ch);
a42d985b
BVA
2625 break;
2626 case IB_CM_DREP_RECEIVED:
2739b592
BVA
2627 pr_info("Received CM DREP message for ch %s-%d.\n",
2628 ch->sess_name, ch->qp->qp_num);
aaf45bd8 2629 srpt_close_ch(ch);
a42d985b
BVA
2630 break;
2631 case IB_CM_TIMEWAIT_EXIT:
2739b592
BVA
2632 pr_info("Received CM TimeWait exit for ch %s-%d.\n",
2633 ch->sess_name, ch->qp->qp_num);
aaf45bd8 2634 srpt_close_ch(ch);
a42d985b
BVA
2635 break;
2636 case IB_CM_REP_ERROR:
2739b592
BVA
2637 pr_info("Received CM REP error for ch %s-%d.\n", ch->sess_name,
2638 ch->qp->qp_num);
a42d985b
BVA
2639 break;
2640 case IB_CM_DREQ_ERROR:
1e20a2a5 2641 pr_info("Received CM DREQ ERROR event.\n");
a42d985b
BVA
2642 break;
2643 case IB_CM_MRA_RECEIVED:
1e20a2a5 2644 pr_info("Received CM MRA event\n");
a42d985b
BVA
2645 break;
2646 default:
1e20a2a5 2647 pr_err("received unrecognized CM event %d\n", event->event);
a42d985b
BVA
2648 break;
2649 }
2650
2651 return ret;
2652}
2653
63cf1a90
BVA
2654static int srpt_rdma_cm_handler(struct rdma_cm_id *cm_id,
2655 struct rdma_cm_event *event)
2656{
2657 struct srpt_rdma_ch *ch = cm_id->context;
2658 int ret = 0;
2659
2660 switch (event->event) {
2661 case RDMA_CM_EVENT_CONNECT_REQUEST:
2662 ret = srpt_rdma_cm_req_recv(cm_id, event);
2663 break;
2664 case RDMA_CM_EVENT_REJECTED:
2665 srpt_cm_rej_recv(ch, event->status,
2666 event->param.conn.private_data,
2667 event->param.conn.private_data_len);
2668 break;
2669 case RDMA_CM_EVENT_ESTABLISHED:
2670 srpt_cm_rtu_recv(ch);
2671 break;
2672 case RDMA_CM_EVENT_DISCONNECTED:
2673 if (ch->state < CH_DISCONNECTING)
2674 srpt_disconnect_ch(ch);
2675 else
2676 srpt_close_ch(ch);
2677 break;
2678 case RDMA_CM_EVENT_TIMEWAIT_EXIT:
2679 srpt_close_ch(ch);
2680 break;
2681 case RDMA_CM_EVENT_UNREACHABLE:
2682 pr_info("Received CM REP error for ch %s-%d.\n", ch->sess_name,
2683 ch->qp->qp_num);
2684 break;
2685 case RDMA_CM_EVENT_DEVICE_REMOVAL:
2686 case RDMA_CM_EVENT_ADDR_CHANGE:
2687 break;
2688 default:
2689 pr_err("received unrecognized RDMA CM event %d\n",
2690 event->event);
2691 break;
2692 }
2693
2694 return ret;
2695}
2696
a42d985b 2697/*
10eac19b 2698 * srpt_write_pending - Start data transfer from initiator to target (write).
a42d985b
BVA
2699 */
2700static int srpt_write_pending(struct se_cmd *se_cmd)
2701{
fc3af58d
BVA
2702 struct srpt_send_ioctx *ioctx =
2703 container_of(se_cmd, struct srpt_send_ioctx, cmd);
2704 struct srpt_rdma_ch *ch = ioctx->ch;
9b32a596 2705 struct ib_send_wr *first_wr = NULL;
b99f8e4d 2706 struct ib_cqe *cqe = &ioctx->rdma_cqe;
a42d985b 2707 enum srpt_command_state new_state;
b99f8e4d 2708 int ret, i;
a42d985b 2709
5dabcd04
BVA
2710 if (ioctx->recv_ioctx) {
2711 srpt_set_cmd_state(ioctx, SRPT_STATE_DATA_IN);
2712 target_execute_cmd(&ioctx->cmd);
2713 return 0;
2714 }
2715
a42d985b
BVA
2716 new_state = srpt_set_cmd_state(ioctx, SRPT_STATE_NEED_DATA);
2717 WARN_ON(new_state == SRPT_STATE_DONE);
b99f8e4d
CH
2718
2719 if (atomic_sub_return(ioctx->n_rdma, &ch->sq_wr_avail) < 0) {
2720 pr_warn("%s: IB send queue full (needed %d)\n",
2721 __func__, ioctx->n_rdma);
2722 ret = -ENOMEM;
2723 goto out_undo;
2724 }
2725
2726 cqe->done = srpt_rdma_read_done;
2727 for (i = ioctx->n_rw_ctx - 1; i >= 0; i--) {
2728 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
2729
2730 first_wr = rdma_rw_ctx_wrs(&ctx->rw, ch->qp, ch->sport->port,
2731 cqe, first_wr);
2732 cqe = NULL;
2733 }
dcc9881e 2734
9b32a596 2735 ret = ib_post_send(ch->qp, first_wr, NULL);
b99f8e4d
CH
2736 if (ret) {
2737 pr_err("%s: ib_post_send() returned %d for %d (avail: %d)\n",
2738 __func__, ret, ioctx->n_rdma,
2739 atomic_read(&ch->sq_wr_avail));
2740 goto out_undo;
2741 }
2742
2743 return 0;
2744out_undo:
2745 atomic_add(ioctx->n_rdma, &ch->sq_wr_avail);
2746 return ret;
a42d985b
BVA
2747}
2748
2749static u8 tcm_to_srp_tsk_mgmt_status(const int tcm_mgmt_status)
2750{
2751 switch (tcm_mgmt_status) {
2752 case TMR_FUNCTION_COMPLETE:
2753 return SRP_TSK_MGMT_SUCCESS;
2754 case TMR_FUNCTION_REJECTED:
2755 return SRP_TSK_MGMT_FUNC_NOT_SUPP;
2756 }
2757 return SRP_TSK_MGMT_FAILED;
2758}
2759
2760/**
10eac19b
BVA
2761 * srpt_queue_response - transmit the response to a SCSI command
2762 * @cmd: SCSI target command.
a42d985b
BVA
2763 *
2764 * Callback function called by the TCM core. Must not block since it can be
2765 * invoked on the context of the IB completion handler.
2766 */
b79fafac 2767static void srpt_queue_response(struct se_cmd *cmd)
a42d985b 2768{
b99f8e4d
CH
2769 struct srpt_send_ioctx *ioctx =
2770 container_of(cmd, struct srpt_send_ioctx, cmd);
2771 struct srpt_rdma_ch *ch = ioctx->ch;
2772 struct srpt_device *sdev = ch->sport->sdev;
9b32a596 2773 struct ib_send_wr send_wr, *first_wr = &send_wr;
b99f8e4d 2774 struct ib_sge sge;
a42d985b 2775 enum srpt_command_state state;
b99f8e4d 2776 int resp_len, ret, i;
a42d985b
BVA
2777 u8 srp_tm_status;
2778
a42d985b
BVA
2779 BUG_ON(!ch);
2780
a42d985b
BVA
2781 state = ioctx->state;
2782 switch (state) {
2783 case SRPT_STATE_NEW:
2784 case SRPT_STATE_DATA_IN:
2785 ioctx->state = SRPT_STATE_CMD_RSP_SENT;
2786 break;
2787 case SRPT_STATE_MGMT:
2788 ioctx->state = SRPT_STATE_MGMT_RSP_SENT;
2789 break;
2790 default:
2791 WARN(true, "ch %p; cmd %d: unexpected command state %d\n",
2792 ch, ioctx->ioctx.index, ioctx->state);
2793 break;
2794 }
a42d985b 2795
882dff28 2796 if (WARN_ON_ONCE(state == SRPT_STATE_CMD_RSP_SENT))
b79fafac 2797 return;
a42d985b 2798
a42d985b 2799 /* For read commands, transfer the data to the initiator. */
b99f8e4d
CH
2800 if (ioctx->cmd.data_direction == DMA_FROM_DEVICE &&
2801 ioctx->cmd.data_length &&
a42d985b 2802 !ioctx->queue_status_only) {
b99f8e4d
CH
2803 for (i = ioctx->n_rw_ctx - 1; i >= 0; i--) {
2804 struct srpt_rw_ctx *ctx = &ioctx->rw_ctxs[i];
2805
2806 first_wr = rdma_rw_ctx_wrs(&ctx->rw, ch->qp,
10fce586 2807 ch->sport->port, NULL, first_wr);
a42d985b
BVA
2808 }
2809 }
2810
2811 if (state != SRPT_STATE_MGMT)
649ee054 2812 resp_len = srpt_build_cmd_rsp(ch, ioctx, ioctx->cmd.tag,
a42d985b
BVA
2813 cmd->scsi_status);
2814 else {
2815 srp_tm_status
2816 = tcm_to_srp_tsk_mgmt_status(cmd->se_tmr_req->response);
2817 resp_len = srpt_build_tskmgmt_rsp(ch, ioctx, srp_tm_status,
649ee054 2818 ioctx->cmd.tag);
a42d985b 2819 }
b99f8e4d
CH
2820
2821 atomic_inc(&ch->req_lim);
2822
2823 if (unlikely(atomic_sub_return(1 + ioctx->n_rdma,
2824 &ch->sq_wr_avail) < 0)) {
2825 pr_warn("%s: IB send queue full (needed %d)\n",
2826 __func__, ioctx->n_rdma);
2827 ret = -ENOMEM;
2828 goto out;
2829 }
2830
2831 ib_dma_sync_single_for_device(sdev->device, ioctx->ioctx.dma, resp_len,
2832 DMA_TO_DEVICE);
2833
2834 sge.addr = ioctx->ioctx.dma;
2835 sge.length = resp_len;
74333f12 2836 sge.lkey = sdev->lkey;
b99f8e4d
CH
2837
2838 ioctx->ioctx.cqe.done = srpt_send_done;
2839 send_wr.next = NULL;
2840 send_wr.wr_cqe = &ioctx->ioctx.cqe;
2841 send_wr.sg_list = &sge;
2842 send_wr.num_sge = 1;
2843 send_wr.opcode = IB_WR_SEND;
2844 send_wr.send_flags = IB_SEND_SIGNALED;
2845
9b32a596 2846 ret = ib_post_send(ch->qp, first_wr, NULL);
b99f8e4d
CH
2847 if (ret < 0) {
2848 pr_err("%s: sending cmd response failed for tag %llu (%d)\n",
2849 __func__, ioctx->cmd.tag, ret);
2850 goto out;
a42d985b 2851 }
b99f8e4d
CH
2852
2853 return;
2854
2855out:
2856 atomic_add(1 + ioctx->n_rdma, &ch->sq_wr_avail);
2857 atomic_dec(&ch->req_lim);
2858 srpt_set_cmd_state(ioctx, SRPT_STATE_DONE);
2859 target_put_sess_cmd(&ioctx->cmd);
b79fafac 2860}
a42d985b 2861
b79fafac
JE
2862static int srpt_queue_data_in(struct se_cmd *cmd)
2863{
2864 srpt_queue_response(cmd);
2865 return 0;
2866}
2867
2868static void srpt_queue_tm_rsp(struct se_cmd *cmd)
2869{
2870 srpt_queue_response(cmd);
a42d985b
BVA
2871}
2872
131e6abc
NB
2873static void srpt_aborted_task(struct se_cmd *cmd)
2874{
131e6abc
NB
2875}
2876
a42d985b
BVA
2877static int srpt_queue_status(struct se_cmd *cmd)
2878{
2879 struct srpt_send_ioctx *ioctx;
2880
2881 ioctx = container_of(cmd, struct srpt_send_ioctx, cmd);
2882 BUG_ON(ioctx->sense_data != cmd->sense_buffer);
2883 if (cmd->se_cmd_flags &
2884 (SCF_TRANSPORT_TASK_SENSE | SCF_EMULATED_TASK_SENSE))
2885 WARN_ON(cmd->scsi_status != SAM_STAT_CHECK_CONDITION);
2886 ioctx->queue_status_only = true;
b79fafac
JE
2887 srpt_queue_response(cmd);
2888 return 0;
a42d985b
BVA
2889}
2890
2891static void srpt_refresh_port_work(struct work_struct *work)
2892{
2893 struct srpt_port *sport = container_of(work, struct srpt_port, work);
2894
2895 srpt_refresh_port(sport);
2896}
2897
a1125314
BVA
2898static bool srpt_ch_list_empty(struct srpt_port *sport)
2899{
2900 struct srpt_nexus *nexus;
2901 bool res = true;
2902
2903 rcu_read_lock();
2904 list_for_each_entry(nexus, &sport->nexus_list, entry)
2905 if (!list_empty(&nexus->ch_list))
2906 res = false;
2907 rcu_read_unlock();
2908
2909 return res;
2910}
2911
a42d985b 2912/**
ba60c84f
BVA
2913 * srpt_release_sport - disable login and wait for associated channels
2914 * @sport: SRPT HCA port.
a42d985b 2915 */
ba60c84f 2916static int srpt_release_sport(struct srpt_port *sport)
a42d985b 2917{
a1125314
BVA
2918 struct srpt_nexus *nexus, *next_n;
2919 struct srpt_rdma_ch *ch;
a42d985b
BVA
2920
2921 WARN_ON_ONCE(irqs_disabled());
2922
ba60c84f
BVA
2923 mutex_lock(&sport->mutex);
2924 srpt_set_enabled(sport, false);
2925 mutex_unlock(&sport->mutex);
a42d985b 2926
a1125314
BVA
2927 while (wait_event_timeout(sport->ch_releaseQ,
2928 srpt_ch_list_empty(sport), 5 * HZ) <= 0) {
2929 pr_info("%s_%d: waiting for session unregistration ...\n",
6c854111 2930 dev_name(&sport->sdev->device->dev), sport->port);
a1125314
BVA
2931 rcu_read_lock();
2932 list_for_each_entry(nexus, &sport->nexus_list, entry) {
2933 list_for_each_entry(ch, &nexus->ch_list, list) {
2934 pr_info("%s-%d: state %s\n",
2935 ch->sess_name, ch->qp->qp_num,
2936 get_ch_state_name(ch->state));
2937 }
2938 }
2939 rcu_read_unlock();
2940 }
2941
2942 mutex_lock(&sport->mutex);
2943 list_for_each_entry_safe(nexus, next_n, &sport->nexus_list, entry) {
2944 list_del(&nexus->entry);
2945 kfree_rcu(nexus, rcu);
2946 }
2947 mutex_unlock(&sport->mutex);
a42d985b
BVA
2948
2949 return 0;
2950}
2951
2bce1a6d 2952static struct se_wwn *__srpt_lookup_wwn(const char *name)
a42d985b
BVA
2953{
2954 struct ib_device *dev;
2955 struct srpt_device *sdev;
2956 struct srpt_port *sport;
2957 int i;
2958
2959 list_for_each_entry(sdev, &srpt_dev_list, list) {
2960 dev = sdev->device;
2961 if (!dev)
2962 continue;
2963
2964 for (i = 0; i < dev->phys_port_cnt; i++) {
2965 sport = &sdev->port[i];
2966
2bce1a6d
BVA
2967 if (strcmp(sport->port_guid, name) == 0)
2968 return &sport->port_guid_wwn;
2969 if (strcmp(sport->port_gid, name) == 0)
2970 return &sport->port_gid_wwn;
a42d985b
BVA
2971 }
2972 }
2973
2974 return NULL;
2975}
2976
2bce1a6d 2977static struct se_wwn *srpt_lookup_wwn(const char *name)
a42d985b 2978{
2bce1a6d 2979 struct se_wwn *wwn;
a42d985b
BVA
2980
2981 spin_lock(&srpt_dev_lock);
2bce1a6d 2982 wwn = __srpt_lookup_wwn(name);
a42d985b
BVA
2983 spin_unlock(&srpt_dev_lock);
2984
2bce1a6d 2985 return wwn;
a42d985b
BVA
2986}
2987
c76d7d64
BVA
2988static void srpt_free_srq(struct srpt_device *sdev)
2989{
2990 if (!sdev->srq)
2991 return;
2992
2993 ib_destroy_srq(sdev->srq);
2994 srpt_free_ioctx_ring((struct srpt_ioctx **)sdev->ioctx_ring, sdev,
5dabcd04
BVA
2995 sdev->srq_size, sdev->req_buf_cache,
2996 DMA_FROM_DEVICE);
2997 kmem_cache_destroy(sdev->req_buf_cache);
c76d7d64
BVA
2998 sdev->srq = NULL;
2999}
3000
3001static int srpt_alloc_srq(struct srpt_device *sdev)
3002{
3003 struct ib_srq_init_attr srq_attr = {
3004 .event_handler = srpt_srq_event,
3005 .srq_context = (void *)sdev,
3006 .attr.max_wr = sdev->srq_size,
3007 .attr.max_sge = 1,
3008 .srq_type = IB_SRQT_BASIC,
3009 };
3010 struct ib_device *device = sdev->device;
3011 struct ib_srq *srq;
3012 int i;
3013
3014 WARN_ON_ONCE(sdev->srq);
3015 srq = ib_create_srq(sdev->pd, &srq_attr);
3016 if (IS_ERR(srq)) {
3017 pr_debug("ib_create_srq() failed: %ld\n", PTR_ERR(srq));
3018 return PTR_ERR(srq);
3019 }
3020
3021 pr_debug("create SRQ #wr= %d max_allow=%d dev= %s\n", sdev->srq_size,
6c854111 3022 sdev->device->attrs.max_srq_wr, dev_name(&device->dev));
c76d7d64 3023
5dabcd04
BVA
3024 sdev->req_buf_cache = kmem_cache_create("srpt-srq-req-buf",
3025 srp_max_req_size, 0, 0, NULL);
3026 if (!sdev->req_buf_cache)
3027 goto free_srq;
3028
c76d7d64
BVA
3029 sdev->ioctx_ring = (struct srpt_recv_ioctx **)
3030 srpt_alloc_ioctx_ring(sdev, sdev->srq_size,
3031 sizeof(*sdev->ioctx_ring[0]),
5dabcd04 3032 sdev->req_buf_cache, 0, DMA_FROM_DEVICE);
82305f82 3033 if (!sdev->ioctx_ring)
5dabcd04 3034 goto free_cache;
c76d7d64
BVA
3035
3036 sdev->use_srq = true;
3037 sdev->srq = srq;
3038
fcf58936
BVA
3039 for (i = 0; i < sdev->srq_size; ++i) {
3040 INIT_LIST_HEAD(&sdev->ioctx_ring[i]->wait_list);
c76d7d64 3041 srpt_post_recv(sdev, NULL, sdev->ioctx_ring[i]);
fcf58936 3042 }
c76d7d64
BVA
3043
3044 return 0;
82305f82 3045
5dabcd04
BVA
3046free_cache:
3047 kmem_cache_destroy(sdev->req_buf_cache);
3048
82305f82
BVA
3049free_srq:
3050 ib_destroy_srq(srq);
3051 return -ENOMEM;
c76d7d64
BVA
3052}
3053
3054static int srpt_use_srq(struct srpt_device *sdev, bool use_srq)
3055{
3056 struct ib_device *device = sdev->device;
3057 int ret = 0;
3058
3059 if (!use_srq) {
3060 srpt_free_srq(sdev);
3061 sdev->use_srq = false;
3062 } else if (use_srq && !sdev->srq) {
3063 ret = srpt_alloc_srq(sdev);
3064 }
6c854111
JG
3065 pr_debug("%s(%s): use_srq = %d; ret = %d\n", __func__,
3066 dev_name(&device->dev), sdev->use_srq, ret);
c76d7d64
BVA
3067 return ret;
3068}
3069
a42d985b 3070/**
10eac19b
BVA
3071 * srpt_add_one - InfiniBand device addition callback function
3072 * @device: Describes a HCA.
a42d985b
BVA
3073 */
3074static void srpt_add_one(struct ib_device *device)
3075{
3076 struct srpt_device *sdev;
3077 struct srpt_port *sport;
63cf1a90 3078 int i, ret;
a42d985b 3079
e3dfa60c 3080 pr_debug("device = %p\n", device);
a42d985b 3081
e620ebfc
BVA
3082 sdev = kzalloc(struct_size(sdev, port, device->phys_port_cnt),
3083 GFP_KERNEL);
a42d985b
BVA
3084 if (!sdev)
3085 goto err;
3086
3087 sdev->device = device;
ba60c84f 3088 mutex_init(&sdev->sdev_mutex);
a42d985b 3089
ed082d36 3090 sdev->pd = ib_alloc_pd(device, 0);
a42d985b
BVA
3091 if (IS_ERR(sdev->pd))
3092 goto free_dev;
3093
74333f12 3094 sdev->lkey = sdev->pd->local_dma_lkey;
a42d985b 3095
4a061b28 3096 sdev->srq_size = min(srpt_srq_size, sdev->device->attrs.max_srq_wr);
a42d985b 3097
c76d7d64 3098 srpt_use_srq(sdev, sdev->port[0].port_attrib.use_srq);
a42d985b
BVA
3099
3100 if (!srpt_service_guid)
3101 srpt_service_guid = be64_to_cpu(device->node_guid);
3102
63cf1a90
BVA
3103 if (rdma_port_get_link_layer(device, 1) == IB_LINK_LAYER_INFINIBAND)
3104 sdev->cm_id = ib_create_cm_id(device, srpt_cm_handler, sdev);
3105 if (IS_ERR(sdev->cm_id)) {
3106 pr_info("ib_create_cm_id() failed: %ld\n",
3107 PTR_ERR(sdev->cm_id));
3108 sdev->cm_id = NULL;
3109 if (!rdma_cm_id)
3110 goto err_ring;
3111 }
a42d985b
BVA
3112
3113 /* print out target login information */
75d79b80
BVA
3114 pr_debug("Target login info: id_ext=%016llx,ioc_guid=%016llx,pkey=ffff,service_id=%016llx\n",
3115 srpt_service_guid, srpt_service_guid, srpt_service_guid);
a42d985b
BVA
3116
3117 /*
3118 * We do not have a consistent service_id (ie. also id_ext of target_id)
3119 * to identify this target. We currently use the guid of the first HCA
3120 * in the system as service_id; therefore, the target_id will change
3121 * if this HCA is gone bad and replaced by different HCA
3122 */
63cf1a90
BVA
3123 ret = sdev->cm_id ?
3124 ib_cm_listen(sdev->cm_id, cpu_to_be64(srpt_service_guid), 0) :
3125 0;
3126 if (ret < 0) {
3127 pr_err("ib_cm_listen() failed: %d (cm_id state = %d)\n", ret,
3128 sdev->cm_id->state);
a42d985b 3129 goto err_cm;
63cf1a90 3130 }
a42d985b
BVA
3131
3132 INIT_IB_EVENT_HANDLER(&sdev->event_handler, sdev->device,
3133 srpt_event_handler);
dcc9881e 3134 ib_register_event_handler(&sdev->event_handler);
a42d985b 3135
a42d985b
BVA
3136 for (i = 1; i <= sdev->device->phys_port_cnt; i++) {
3137 sport = &sdev->port[i - 1];
a1125314 3138 INIT_LIST_HEAD(&sport->nexus_list);
ba60c84f
BVA
3139 init_waitqueue_head(&sport->ch_releaseQ);
3140 mutex_init(&sport->mutex);
a42d985b
BVA
3141 sport->sdev = sdev;
3142 sport->port = i;
3143 sport->port_attrib.srp_max_rdma_size = DEFAULT_MAX_RDMA_SIZE;
3144 sport->port_attrib.srp_max_rsp_size = DEFAULT_MAX_RSP_SIZE;
3145 sport->port_attrib.srp_sq_size = DEF_SRPT_SQ_SIZE;
dea26209 3146 sport->port_attrib.use_srq = false;
a42d985b 3147 INIT_WORK(&sport->work, srpt_refresh_port_work);
a42d985b
BVA
3148
3149 if (srpt_refresh_port(sport)) {
9f5d32af 3150 pr_err("MAD registration failed for %s-%d.\n",
6c854111 3151 dev_name(&sdev->device->dev), i);
dea26209 3152 goto err_event;
a42d985b 3153 }
a42d985b
BVA
3154 }
3155
3156 spin_lock(&srpt_dev_lock);
3157 list_add_tail(&sdev->list, &srpt_dev_list);
3158 spin_unlock(&srpt_dev_lock);
3159
3160out:
3161 ib_set_client_data(device, &srpt_client, sdev);
6c854111 3162 pr_debug("added %s.\n", dev_name(&device->dev));
a42d985b
BVA
3163 return;
3164
a42d985b
BVA
3165err_event:
3166 ib_unregister_event_handler(&sdev->event_handler);
3167err_cm:
63cf1a90
BVA
3168 if (sdev->cm_id)
3169 ib_destroy_cm_id(sdev->cm_id);
dea26209 3170err_ring:
c76d7d64 3171 srpt_free_srq(sdev);
a42d985b
BVA
3172 ib_dealloc_pd(sdev->pd);
3173free_dev:
3174 kfree(sdev);
3175err:
3176 sdev = NULL;
6c854111 3177 pr_info("%s(%s) failed.\n", __func__, dev_name(&device->dev));
a42d985b
BVA
3178 goto out;
3179}
3180
3181/**
10eac19b
BVA
3182 * srpt_remove_one - InfiniBand device removal callback function
3183 * @device: Describes a HCA.
3184 * @client_data: The value passed as the third argument to ib_set_client_data().
a42d985b 3185 */
7c1eb45a 3186static void srpt_remove_one(struct ib_device *device, void *client_data)
a42d985b 3187{
7c1eb45a 3188 struct srpt_device *sdev = client_data;
a42d985b
BVA
3189 int i;
3190
a42d985b 3191 if (!sdev) {
6c854111
JG
3192 pr_info("%s(%s): nothing to do.\n", __func__,
3193 dev_name(&device->dev));
a42d985b
BVA
3194 return;
3195 }
3196
3197 srpt_unregister_mad_agent(sdev);
3198
3199 ib_unregister_event_handler(&sdev->event_handler);
3200
3201 /* Cancel any work queued by the just unregistered IB event handler. */
3202 for (i = 0; i < sdev->device->phys_port_cnt; i++)
3203 cancel_work_sync(&sdev->port[i].work);
3204
63cf1a90
BVA
3205 if (sdev->cm_id)
3206 ib_destroy_cm_id(sdev->cm_id);
3207
3208 ib_set_client_data(device, &srpt_client, NULL);
a42d985b
BVA
3209
3210 /*
3211 * Unregistering a target must happen after destroying sdev->cm_id
3212 * such that no new SRP_LOGIN_REQ information units can arrive while
3213 * destroying the target.
3214 */
3215 spin_lock(&srpt_dev_lock);
3216 list_del(&sdev->list);
3217 spin_unlock(&srpt_dev_lock);
ba60c84f
BVA
3218
3219 for (i = 0; i < sdev->device->phys_port_cnt; i++)
3220 srpt_release_sport(&sdev->port[i]);
a42d985b 3221
c76d7d64
BVA
3222 srpt_free_srq(sdev);
3223
a42d985b
BVA
3224 ib_dealloc_pd(sdev->pd);
3225
a42d985b
BVA
3226 kfree(sdev);
3227}
3228
3229static struct ib_client srpt_client = {
3230 .name = DRV_NAME,
3231 .add = srpt_add_one,
3232 .remove = srpt_remove_one
3233};
3234
3235static int srpt_check_true(struct se_portal_group *se_tpg)
3236{
3237 return 1;
3238}
3239
3240static int srpt_check_false(struct se_portal_group *se_tpg)
3241{
3242 return 0;
3243}
3244
2bce1a6d
BVA
3245static struct srpt_port *srpt_tpg_to_sport(struct se_portal_group *tpg)
3246{
3247 return tpg->se_tpg_wwn->priv;
3248}
3249
a42d985b
BVA
3250static char *srpt_get_fabric_wwn(struct se_portal_group *tpg)
3251{
2bce1a6d 3252 struct srpt_port *sport = srpt_tpg_to_sport(tpg);
a42d985b 3253
2bce1a6d
BVA
3254 WARN_ON_ONCE(tpg != &sport->port_guid_tpg &&
3255 tpg != &sport->port_gid_tpg);
3256 return tpg == &sport->port_guid_tpg ? sport->port_guid :
3257 sport->port_gid;
a42d985b
BVA
3258}
3259
3260static u16 srpt_get_tag(struct se_portal_group *tpg)
3261{
3262 return 1;
3263}
3264
a42d985b
BVA
3265static u32 srpt_tpg_get_inst_index(struct se_portal_group *se_tpg)
3266{
3267 return 1;
3268}
3269
3270static void srpt_release_cmd(struct se_cmd *se_cmd)
3271{
9474b043
NB
3272 struct srpt_send_ioctx *ioctx = container_of(se_cmd,
3273 struct srpt_send_ioctx, cmd);
3274 struct srpt_rdma_ch *ch = ioctx->ch;
5dabcd04 3275 struct srpt_recv_ioctx *recv_ioctx = ioctx->recv_ioctx;
9474b043 3276
bd2c52d7
BVA
3277 WARN_ON_ONCE(ioctx->state != SRPT_STATE_DONE &&
3278 !(ioctx->cmd.transport_state & CMD_T_ABORTED));
9474b043 3279
5dabcd04
BVA
3280 if (recv_ioctx) {
3281 WARN_ON_ONCE(!list_empty(&recv_ioctx->wait_list));
3282 ioctx->recv_ioctx = NULL;
3283 srpt_post_recv(ch->sport->sdev, ch, recv_ioctx);
3284 }
3285
b99f8e4d
CH
3286 if (ioctx->n_rw_ctx) {
3287 srpt_free_rw_ctxs(ch, ioctx);
3288 ioctx->n_rw_ctx = 0;
9474b043
NB
3289 }
3290
fd1b6687 3291 target_free_tag(se_cmd->se_sess, se_cmd);
a42d985b
BVA
3292}
3293
a42d985b 3294/**
10eac19b
BVA
3295 * srpt_close_session - forcibly close a session
3296 * @se_sess: SCSI target session.
a42d985b
BVA
3297 *
3298 * Callback function invoked by the TCM core to clean up sessions associated
3299 * with a node ACL when the user invokes
3300 * rmdir /sys/kernel/config/target/$driver/$port/$tpg/acls/$i_port_id
3301 */
3302static void srpt_close_session(struct se_session *se_sess)
3303{
f108f0f6 3304 struct srpt_rdma_ch *ch = se_sess->fabric_sess_ptr;
a42d985b 3305
01b3ee13 3306 srpt_disconnect_ch_sync(ch);
a42d985b
BVA
3307}
3308
a42d985b 3309/**
10eac19b
BVA
3310 * srpt_sess_get_index - return the value of scsiAttIntrPortIndex (SCSI-MIB)
3311 * @se_sess: SCSI target session.
a42d985b
BVA
3312 *
3313 * A quote from RFC 4455 (SCSI-MIB) about this MIB object:
3314 * This object represents an arbitrary integer used to uniquely identify a
3315 * particular attached remote initiator port to a particular SCSI target port
3316 * within a particular SCSI target device within a particular SCSI instance.
3317 */
3318static u32 srpt_sess_get_index(struct se_session *se_sess)
3319{
3320 return 0;
3321}
3322
3323static void srpt_set_default_node_attrs(struct se_node_acl *nacl)
3324{
3325}
3326
a42d985b
BVA
3327/* Note: only used from inside debug printk's by the TCM core. */
3328static int srpt_get_tcm_cmd_state(struct se_cmd *se_cmd)
3329{
3330 struct srpt_send_ioctx *ioctx;
3331
3332 ioctx = container_of(se_cmd, struct srpt_send_ioctx, cmd);
dd3bec86 3333 return ioctx->state;
a42d985b
BVA
3334}
3335
2bce1a6d
BVA
3336static int srpt_parse_guid(u64 *guid, const char *name)
3337{
3338 u16 w[4];
3339 int ret = -EINVAL;
3340
3341 if (sscanf(name, "%hx:%hx:%hx:%hx", &w[0], &w[1], &w[2], &w[3]) != 4)
3342 goto out;
3343 *guid = get_unaligned_be64(w);
3344 ret = 0;
3345out:
3346 return ret;
3347}
3348
a42d985b 3349/**
10eac19b 3350 * srpt_parse_i_port_id - parse an initiator port ID
a42d985b
BVA
3351 * @name: ASCII representation of a 128-bit initiator port ID.
3352 * @i_port_id: Binary 128-bit port ID.
3353 */
3354static int srpt_parse_i_port_id(u8 i_port_id[16], const char *name)
3355{
3356 const char *p;
3357 unsigned len, count, leading_zero_bytes;
c70ca389 3358 int ret;
a42d985b
BVA
3359
3360 p = name;
b60459f0 3361 if (strncasecmp(p, "0x", 2) == 0)
a42d985b
BVA
3362 p += 2;
3363 ret = -EINVAL;
3364 len = strlen(p);
3365 if (len % 2)
3366 goto out;
3367 count = min(len / 2, 16U);
3368 leading_zero_bytes = 16 - count;
3369 memset(i_port_id, 0, leading_zero_bytes);
c70ca389 3370 ret = hex2bin(i_port_id + leading_zero_bytes, p, count);
63cf1a90 3371
a42d985b
BVA
3372out:
3373 return ret;
3374}
3375
3376/*
63cf1a90
BVA
3377 * configfs callback function invoked for mkdir
3378 * /sys/kernel/config/target/$driver/$port/$tpg/acls/$i_port_id
3379 *
3380 * i_port_id must be an initiator port GUID, GID or IP address. See also the
3381 * target_alloc_session() calls in this driver. Examples of valid initiator
3382 * port IDs:
3383 * 0x0000000000000000505400fffe4a0b7b
3384 * 0000000000000000505400fffe4a0b7b
3385 * 5054:00ff:fe4a:0b7b
3386 * 192.168.122.76
a42d985b 3387 */
c7d6a803 3388static int srpt_init_nodeacl(struct se_node_acl *se_nacl, const char *name)
a42d985b 3389{
63cf1a90 3390 struct sockaddr_storage sa;
2bce1a6d 3391 u64 guid;
a42d985b 3392 u8 i_port_id[16];
2bce1a6d 3393 int ret;
a42d985b 3394
2bce1a6d
BVA
3395 ret = srpt_parse_guid(&guid, name);
3396 if (ret < 0)
3397 ret = srpt_parse_i_port_id(i_port_id, name);
63cf1a90
BVA
3398 if (ret < 0)
3399 ret = inet_pton_with_scope(&init_net, AF_UNSPEC, name, NULL,
3400 &sa);
2bce1a6d 3401 if (ret < 0)
9f5d32af 3402 pr_err("invalid initiator port ID %s\n", name);
2bce1a6d 3403 return ret;
a42d985b
BVA
3404}
3405
2eafd729
CH
3406static ssize_t srpt_tpg_attrib_srp_max_rdma_size_show(struct config_item *item,
3407 char *page)
a42d985b 3408{
2eafd729 3409 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3410 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3411
3412 return sprintf(page, "%u\n", sport->port_attrib.srp_max_rdma_size);
3413}
3414
2eafd729
CH
3415static ssize_t srpt_tpg_attrib_srp_max_rdma_size_store(struct config_item *item,
3416 const char *page, size_t count)
a42d985b 3417{
2eafd729 3418 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3419 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3420 unsigned long val;
3421 int ret;
3422
9d8abf45 3423 ret = kstrtoul(page, 0, &val);
a42d985b 3424 if (ret < 0) {
9d8abf45 3425 pr_err("kstrtoul() failed with ret: %d\n", ret);
a42d985b
BVA
3426 return -EINVAL;
3427 }
3428 if (val > MAX_SRPT_RDMA_SIZE) {
3429 pr_err("val: %lu exceeds MAX_SRPT_RDMA_SIZE: %d\n", val,
3430 MAX_SRPT_RDMA_SIZE);
3431 return -EINVAL;
3432 }
3433 if (val < DEFAULT_MAX_RDMA_SIZE) {
3434 pr_err("val: %lu smaller than DEFAULT_MAX_RDMA_SIZE: %d\n",
3435 val, DEFAULT_MAX_RDMA_SIZE);
3436 return -EINVAL;
3437 }
3438 sport->port_attrib.srp_max_rdma_size = val;
3439
3440 return count;
3441}
3442
2eafd729
CH
3443static ssize_t srpt_tpg_attrib_srp_max_rsp_size_show(struct config_item *item,
3444 char *page)
a42d985b 3445{
2eafd729 3446 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3447 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3448
3449 return sprintf(page, "%u\n", sport->port_attrib.srp_max_rsp_size);
3450}
3451
2eafd729
CH
3452static ssize_t srpt_tpg_attrib_srp_max_rsp_size_store(struct config_item *item,
3453 const char *page, size_t count)
a42d985b 3454{
2eafd729 3455 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3456 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3457 unsigned long val;
3458 int ret;
3459
9d8abf45 3460 ret = kstrtoul(page, 0, &val);
a42d985b 3461 if (ret < 0) {
9d8abf45 3462 pr_err("kstrtoul() failed with ret: %d\n", ret);
a42d985b
BVA
3463 return -EINVAL;
3464 }
3465 if (val > MAX_SRPT_RSP_SIZE) {
3466 pr_err("val: %lu exceeds MAX_SRPT_RSP_SIZE: %d\n", val,
3467 MAX_SRPT_RSP_SIZE);
3468 return -EINVAL;
3469 }
3470 if (val < MIN_MAX_RSP_SIZE) {
3471 pr_err("val: %lu smaller than MIN_MAX_RSP_SIZE: %d\n", val,
3472 MIN_MAX_RSP_SIZE);
3473 return -EINVAL;
3474 }
3475 sport->port_attrib.srp_max_rsp_size = val;
3476
3477 return count;
3478}
3479
2eafd729
CH
3480static ssize_t srpt_tpg_attrib_srp_sq_size_show(struct config_item *item,
3481 char *page)
a42d985b 3482{
2eafd729 3483 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3484 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3485
3486 return sprintf(page, "%u\n", sport->port_attrib.srp_sq_size);
3487}
3488
2eafd729
CH
3489static ssize_t srpt_tpg_attrib_srp_sq_size_store(struct config_item *item,
3490 const char *page, size_t count)
a42d985b 3491{
2eafd729 3492 struct se_portal_group *se_tpg = attrib_to_tpg(item);
2bce1a6d 3493 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b
BVA
3494 unsigned long val;
3495 int ret;
3496
9d8abf45 3497 ret = kstrtoul(page, 0, &val);
a42d985b 3498 if (ret < 0) {
9d8abf45 3499 pr_err("kstrtoul() failed with ret: %d\n", ret);
a42d985b
BVA
3500 return -EINVAL;
3501 }
3502 if (val > MAX_SRPT_SRQ_SIZE) {
3503 pr_err("val: %lu exceeds MAX_SRPT_SRQ_SIZE: %d\n", val,
3504 MAX_SRPT_SRQ_SIZE);
3505 return -EINVAL;
3506 }
3507 if (val < MIN_SRPT_SRQ_SIZE) {
3508 pr_err("val: %lu smaller than MIN_SRPT_SRQ_SIZE: %d\n", val,
3509 MIN_SRPT_SRQ_SIZE);
3510 return -EINVAL;
3511 }
3512 sport->port_attrib.srp_sq_size = val;
3513
3514 return count;
3515}
3516
dea26209
BVA
3517static ssize_t srpt_tpg_attrib_use_srq_show(struct config_item *item,
3518 char *page)
3519{
3520 struct se_portal_group *se_tpg = attrib_to_tpg(item);
3521 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
3522
3523 return sprintf(page, "%d\n", sport->port_attrib.use_srq);
3524}
3525
3526static ssize_t srpt_tpg_attrib_use_srq_store(struct config_item *item,
3527 const char *page, size_t count)
3528{
3529 struct se_portal_group *se_tpg = attrib_to_tpg(item);
3530 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
57b0c460 3531 struct srpt_device *sdev = sport->sdev;
dea26209 3532 unsigned long val;
57b0c460 3533 bool enabled;
dea26209
BVA
3534 int ret;
3535
3536 ret = kstrtoul(page, 0, &val);
3537 if (ret < 0)
3538 return ret;
3539 if (val != !!val)
3540 return -EINVAL;
57b0c460 3541
ba60c84f 3542 ret = mutex_lock_interruptible(&sdev->sdev_mutex);
57b0c460
BVA
3543 if (ret < 0)
3544 return ret;
ba60c84f
BVA
3545 ret = mutex_lock_interruptible(&sport->mutex);
3546 if (ret < 0)
3547 goto unlock_sdev;
57b0c460
BVA
3548 enabled = sport->enabled;
3549 /* Log out all initiator systems before changing 'use_srq'. */
3550 srpt_set_enabled(sport, false);
dea26209 3551 sport->port_attrib.use_srq = val;
57b0c460
BVA
3552 srpt_use_srq(sdev, sport->port_attrib.use_srq);
3553 srpt_set_enabled(sport, enabled);
ba60c84f
BVA
3554 ret = count;
3555 mutex_unlock(&sport->mutex);
3556unlock_sdev:
3557 mutex_unlock(&sdev->sdev_mutex);
dea26209 3558
ba60c84f 3559 return ret;
dea26209
BVA
3560}
3561
2eafd729
CH
3562CONFIGFS_ATTR(srpt_tpg_attrib_, srp_max_rdma_size);
3563CONFIGFS_ATTR(srpt_tpg_attrib_, srp_max_rsp_size);
3564CONFIGFS_ATTR(srpt_tpg_attrib_, srp_sq_size);
dea26209 3565CONFIGFS_ATTR(srpt_tpg_attrib_, use_srq);
a42d985b
BVA
3566
3567static struct configfs_attribute *srpt_tpg_attrib_attrs[] = {
2eafd729
CH
3568 &srpt_tpg_attrib_attr_srp_max_rdma_size,
3569 &srpt_tpg_attrib_attr_srp_max_rsp_size,
3570 &srpt_tpg_attrib_attr_srp_sq_size,
dea26209 3571 &srpt_tpg_attrib_attr_use_srq,
a42d985b
BVA
3572 NULL,
3573};
3574
63cf1a90
BVA
3575static struct rdma_cm_id *srpt_create_rdma_id(struct sockaddr *listen_addr)
3576{
3577 struct rdma_cm_id *rdma_cm_id;
3578 int ret;
3579
3580 rdma_cm_id = rdma_create_id(&init_net, srpt_rdma_cm_handler,
3581 NULL, RDMA_PS_TCP, IB_QPT_RC);
3582 if (IS_ERR(rdma_cm_id)) {
3583 pr_err("RDMA/CM ID creation failed: %ld\n",
3584 PTR_ERR(rdma_cm_id));
3585 goto out;
3586 }
3587
3588 ret = rdma_bind_addr(rdma_cm_id, listen_addr);
3589 if (ret) {
3590 char addr_str[64];
3591
3592 snprintf(addr_str, sizeof(addr_str), "%pISp", listen_addr);
3593 pr_err("Binding RDMA/CM ID to address %s failed: %d\n",
3594 addr_str, ret);
3595 rdma_destroy_id(rdma_cm_id);
3596 rdma_cm_id = ERR_PTR(ret);
3597 goto out;
3598 }
3599
3600 ret = rdma_listen(rdma_cm_id, 128);
3601 if (ret) {
3602 pr_err("rdma_listen() failed: %d\n", ret);
3603 rdma_destroy_id(rdma_cm_id);
3604 rdma_cm_id = ERR_PTR(ret);
3605 }
3606
3607out:
3608 return rdma_cm_id;
3609}
3610
3611static ssize_t srpt_rdma_cm_port_show(struct config_item *item, char *page)
3612{
3613 return sprintf(page, "%d\n", rdma_cm_port);
3614}
3615
3616static ssize_t srpt_rdma_cm_port_store(struct config_item *item,
3617 const char *page, size_t count)
3618{
3619 struct sockaddr_in addr4 = { .sin_family = AF_INET };
3620 struct sockaddr_in6 addr6 = { .sin6_family = AF_INET6 };
3621 struct rdma_cm_id *new_id = NULL;
3622 u16 val;
3623 int ret;
3624
3625 ret = kstrtou16(page, 0, &val);
3626 if (ret < 0)
3627 return ret;
3628 ret = count;
3629 if (rdma_cm_port == val)
3630 goto out;
3631
3632 if (val) {
3633 addr6.sin6_port = cpu_to_be16(val);
3634 new_id = srpt_create_rdma_id((struct sockaddr *)&addr6);
3635 if (IS_ERR(new_id)) {
3636 addr4.sin_port = cpu_to_be16(val);
3637 new_id = srpt_create_rdma_id((struct sockaddr *)&addr4);
3638 if (IS_ERR(new_id)) {
3639 ret = PTR_ERR(new_id);
3640 goto out;
3641 }
3642 }
3643 }
3644
3645 mutex_lock(&rdma_cm_mutex);
3646 rdma_cm_port = val;
3647 swap(rdma_cm_id, new_id);
3648 mutex_unlock(&rdma_cm_mutex);
3649
3650 if (new_id)
3651 rdma_destroy_id(new_id);
3652 ret = count;
3653out:
3654 return ret;
3655}
3656
3657CONFIGFS_ATTR(srpt_, rdma_cm_port);
3658
3659static struct configfs_attribute *srpt_da_attrs[] = {
3660 &srpt_attr_rdma_cm_port,
3661 NULL,
3662};
3663
2eafd729 3664static ssize_t srpt_tpg_enable_show(struct config_item *item, char *page)
a42d985b 3665{
2eafd729 3666 struct se_portal_group *se_tpg = to_tpg(item);
2bce1a6d 3667 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b 3668
ffd59806 3669 return snprintf(page, PAGE_SIZE, "%d\n", sport->enabled);
a42d985b
BVA
3670}
3671
2eafd729
CH
3672static ssize_t srpt_tpg_enable_store(struct config_item *item,
3673 const char *page, size_t count)
a42d985b 3674{
2eafd729 3675 struct se_portal_group *se_tpg = to_tpg(item);
2bce1a6d 3676 struct srpt_port *sport = srpt_tpg_to_sport(se_tpg);
a42d985b 3677 unsigned long tmp;
ffd59806 3678 int ret;
a42d985b 3679
9d8abf45 3680 ret = kstrtoul(page, 0, &tmp);
a42d985b 3681 if (ret < 0) {
9f5d32af 3682 pr_err("Unable to extract srpt_tpg_store_enable\n");
a42d985b
BVA
3683 return -EINVAL;
3684 }
3685
3686 if ((tmp != 0) && (tmp != 1)) {
9f5d32af 3687 pr_err("Illegal value for srpt_tpg_store_enable: %lu\n", tmp);
a42d985b
BVA
3688 return -EINVAL;
3689 }
a42d985b 3690
ba60c84f 3691 mutex_lock(&sport->mutex);
8b6dc529 3692 srpt_set_enabled(sport, tmp);
ba60c84f 3693 mutex_unlock(&sport->mutex);
043a6806 3694
a42d985b
BVA
3695 return count;
3696}
3697
2eafd729 3698CONFIGFS_ATTR(srpt_tpg_, enable);
a42d985b
BVA
3699
3700static struct configfs_attribute *srpt_tpg_attrs[] = {
2eafd729 3701 &srpt_tpg_attr_enable,
a42d985b
BVA
3702 NULL,
3703};
3704
3705/**
10eac19b
BVA
3706 * srpt_make_tpg - configfs callback invoked for mkdir /sys/kernel/config/target/$driver/$port/$tpg
3707 * @wwn: Corresponds to $driver/$port.
10eac19b 3708 * @name: $tpg.
a42d985b
BVA
3709 */
3710static struct se_portal_group *srpt_make_tpg(struct se_wwn *wwn,
a42d985b
BVA
3711 const char *name)
3712{
2bce1a6d 3713 struct srpt_port *sport = wwn->priv;
89180e81 3714 struct se_portal_group *tpg;
a42d985b
BVA
3715 int res;
3716
2bce1a6d
BVA
3717 WARN_ON_ONCE(wwn != &sport->port_guid_wwn &&
3718 wwn != &sport->port_gid_wwn);
3719 tpg = wwn == &sport->port_guid_wwn ? &sport->port_guid_tpg :
3720 &sport->port_gid_tpg;
3721 res = core_tpg_register(wwn, tpg, SCSI_PROTOCOL_SRP);
a42d985b
BVA
3722 if (res)
3723 return ERR_PTR(res);
3724
2bce1a6d 3725 return tpg;
a42d985b
BVA
3726}
3727
3728/**
10eac19b
BVA
3729 * srpt_drop_tpg - configfs callback invoked for rmdir /sys/kernel/config/target/$driver/$port/$tpg
3730 * @tpg: Target portal group to deregister.
a42d985b
BVA
3731 */
3732static void srpt_drop_tpg(struct se_portal_group *tpg)
3733{
2bce1a6d 3734 struct srpt_port *sport = srpt_tpg_to_sport(tpg);
a42d985b
BVA
3735
3736 sport->enabled = false;
2bce1a6d 3737 core_tpg_deregister(tpg);
a42d985b
BVA
3738}
3739
3740/**
10eac19b
BVA
3741 * srpt_make_tport - configfs callback invoked for mkdir /sys/kernel/config/target/$driver/$port
3742 * @tf: Not used.
3743 * @group: Not used.
3744 * @name: $port.
a42d985b
BVA
3745 */
3746static struct se_wwn *srpt_make_tport(struct target_fabric_configfs *tf,
3747 struct config_group *group,
3748 const char *name)
3749{
2bce1a6d 3750 return srpt_lookup_wwn(name) ? : ERR_PTR(-EINVAL);
a42d985b
BVA
3751}
3752
3753/**
10eac19b
BVA
3754 * srpt_drop_tport - configfs callback invoked for rmdir /sys/kernel/config/target/$driver/$port
3755 * @wwn: $port.
a42d985b
BVA
3756 */
3757static void srpt_drop_tport(struct se_wwn *wwn)
3758{
a42d985b
BVA
3759}
3760
2eafd729 3761static ssize_t srpt_wwn_version_show(struct config_item *item, char *buf)
a42d985b 3762{
6feb64ff 3763 return scnprintf(buf, PAGE_SIZE, "\n");
a42d985b
BVA
3764}
3765
2eafd729 3766CONFIGFS_ATTR_RO(srpt_wwn_, version);
a42d985b
BVA
3767
3768static struct configfs_attribute *srpt_wwn_attrs[] = {
2eafd729 3769 &srpt_wwn_attr_version,
a42d985b
BVA
3770 NULL,
3771};
3772
9ac8928e
CH
3773static const struct target_core_fabric_ops srpt_template = {
3774 .module = THIS_MODULE,
30c7ca93 3775 .fabric_name = "srpt",
a42d985b
BVA
3776 .tpg_get_wwn = srpt_get_fabric_wwn,
3777 .tpg_get_tag = srpt_get_tag,
a42d985b
BVA
3778 .tpg_check_demo_mode = srpt_check_false,
3779 .tpg_check_demo_mode_cache = srpt_check_true,
3780 .tpg_check_demo_mode_write_protect = srpt_check_true,
3781 .tpg_check_prod_mode_write_protect = srpt_check_false,
a42d985b
BVA
3782 .tpg_get_inst_index = srpt_tpg_get_inst_index,
3783 .release_cmd = srpt_release_cmd,
3784 .check_stop_free = srpt_check_stop_free,
a42d985b 3785 .close_session = srpt_close_session,
a42d985b
BVA
3786 .sess_get_index = srpt_sess_get_index,
3787 .sess_get_initiator_sid = NULL,
3788 .write_pending = srpt_write_pending,
a42d985b 3789 .set_default_node_attributes = srpt_set_default_node_attrs,
a42d985b 3790 .get_cmd_state = srpt_get_tcm_cmd_state,
b79fafac 3791 .queue_data_in = srpt_queue_data_in,
a42d985b 3792 .queue_status = srpt_queue_status,
b79fafac 3793 .queue_tm_rsp = srpt_queue_tm_rsp,
131e6abc 3794 .aborted_task = srpt_aborted_task,
a42d985b
BVA
3795 /*
3796 * Setup function pointers for generic logic in
3797 * target_core_fabric_configfs.c
3798 */
3799 .fabric_make_wwn = srpt_make_tport,
3800 .fabric_drop_wwn = srpt_drop_tport,
3801 .fabric_make_tpg = srpt_make_tpg,
3802 .fabric_drop_tpg = srpt_drop_tpg,
c7d6a803 3803 .fabric_init_nodeacl = srpt_init_nodeacl,
9ac8928e 3804
63cf1a90 3805 .tfc_discovery_attrs = srpt_da_attrs,
9ac8928e
CH
3806 .tfc_wwn_attrs = srpt_wwn_attrs,
3807 .tfc_tpg_base_attrs = srpt_tpg_attrs,
3808 .tfc_tpg_attrib_attrs = srpt_tpg_attrib_attrs,
a42d985b
BVA
3809};
3810
3811/**
10eac19b 3812 * srpt_init_module - kernel module initialization
a42d985b
BVA
3813 *
3814 * Note: Since ib_register_client() registers callback functions, and since at
3815 * least one of these callback functions (srpt_add_one()) calls target core
3816 * functions, this driver must be registered with the target core before
3817 * ib_register_client() is called.
3818 */
3819static int __init srpt_init_module(void)
3820{
3821 int ret;
3822
3823 ret = -EINVAL;
3824 if (srp_max_req_size < MIN_MAX_REQ_SIZE) {
75d79b80 3825 pr_err("invalid value %d for kernel module parameter srp_max_req_size -- must be at least %d.\n",
a42d985b
BVA
3826 srp_max_req_size, MIN_MAX_REQ_SIZE);
3827 goto out;
3828 }
3829
3830 if (srpt_srq_size < MIN_SRPT_SRQ_SIZE
3831 || srpt_srq_size > MAX_SRPT_SRQ_SIZE) {
75d79b80 3832 pr_err("invalid value %d for kernel module parameter srpt_srq_size -- must be in the range [%d..%d].\n",
a42d985b
BVA
3833 srpt_srq_size, MIN_SRPT_SRQ_SIZE, MAX_SRPT_SRQ_SIZE);
3834 goto out;
3835 }
3836
9ac8928e
CH
3837 ret = target_register_template(&srpt_template);
3838 if (ret)
a42d985b 3839 goto out;
a42d985b
BVA
3840
3841 ret = ib_register_client(&srpt_client);
3842 if (ret) {
9f5d32af 3843 pr_err("couldn't register IB client\n");
a42d985b
BVA
3844 goto out_unregister_target;
3845 }
3846
3847 return 0;
3848
3849out_unregister_target:
9ac8928e 3850 target_unregister_template(&srpt_template);
a42d985b
BVA
3851out:
3852 return ret;
3853}
3854
3855static void __exit srpt_cleanup_module(void)
3856{
63cf1a90
BVA
3857 if (rdma_cm_id)
3858 rdma_destroy_id(rdma_cm_id);
a42d985b 3859 ib_unregister_client(&srpt_client);
9ac8928e 3860 target_unregister_template(&srpt_template);
a42d985b
BVA
3861}
3862
3863module_init(srpt_init_module);
3864module_exit(srpt_cleanup_module);