]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/infiniband/ulp/iser/iscsi_iser.c
Merge tag 'for-linus-20170825' of git://git.infradead.org/linux-mtd
[mirror_ubuntu-artful-kernel.git] / drivers / infiniband / ulp / iser / iscsi_iser.c
CommitLineData
65e7ae7b
OG
1/*
2 * iSCSI Initiator over iSER Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
6 * Copyright (C) 2005 Mike Christie
7 * Copyright (c) 2005, 2006 Voltaire, Inc. All rights reserved.
3ee07d27 8 * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved.
65e7ae7b
OG
9 * maintained by openib-general@openib.org
10 *
11 * This software is available to you under a choice of one of two
12 * licenses. You may choose to be licensed under the terms of the GNU
13 * General Public License (GPL) Version 2, available from the file
14 * COPYING in the main directory of this source tree, or the
15 * OpenIB.org BSD license below:
16 *
17 * Redistribution and use in source and binary forms, with or
18 * without modification, are permitted provided that the following
19 * conditions are met:
20 *
21 * - Redistributions of source code must retain the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer.
24 *
25 * - Redistributions in binary form must reproduce the above
26 * copyright notice, this list of conditions and the following
27 * disclaimer in the documentation and/or other materials
28 * provided with the distribution.
29 *
30 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
31 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
32 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
33 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
34 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
35 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
36 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 * SOFTWARE.
38 *
39 * Credits:
40 * Christoph Hellwig
41 * FUJITA Tomonori
42 * Arne Redlich
43 * Zhenyu Wang
44 * Modified by:
45 * Erez Zilber
65e7ae7b
OG
46 */
47
48#include <linux/types.h>
49#include <linux/list.h>
50#include <linux/hardirq.h>
51#include <linux/kfifo.h>
52#include <linux/blkdev.h>
53#include <linux/init.h>
54#include <linux/ioctl.h>
65e7ae7b
OG
55#include <linux/cdev.h>
56#include <linux/in.h>
57#include <linux/net.h>
58#include <linux/scatterlist.h>
59#include <linux/delay.h>
5a0e3ad6 60#include <linux/slab.h>
e4dd23d7 61#include <linux/module.h>
65e7ae7b
OG
62
63#include <net/sock.h>
64
7c0f6ba6 65#include <linux/uaccess.h>
65e7ae7b
OG
66
67#include <scsi/scsi_cmnd.h>
68#include <scsi/scsi_device.h>
69#include <scsi/scsi_eh.h>
70#include <scsi/scsi_tcq.h>
71#include <scsi/scsi_host.h>
72#include <scsi/scsi.h>
73#include <scsi/scsi_transport_iscsi.h>
74
75#include "iscsi_iser.h"
76
db0a6cbd
JF
77MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover");
78MODULE_LICENSE("Dual BSD/GPL");
79MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
80MODULE_VERSION(DRV_VER);
81
75613521
MC
82static struct scsi_host_template iscsi_iser_sht;
83static struct iscsi_transport iscsi_iser_transport;
84static struct scsi_transport_template *iscsi_iser_scsi_transport;
db0a6cbd 85static struct workqueue_struct *release_wq;
c8c16d3b 86static DEFINE_MUTEX(unbind_iser_conn_mutex);
db0a6cbd
JF
87struct iser_global ig;
88
89int iser_debug_level = 0;
90module_param_named(debug_level, iser_debug_level, int, S_IRUGO | S_IWUSR);
91MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
75613521 92
65e7ae7b
OG
93static unsigned int iscsi_max_lun = 512;
94module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
db0a6cbd 95MODULE_PARM_DESC(max_lun, "Max LUNs to allow per session (default:512");
65e7ae7b 96
df749cdc
SG
97unsigned int iser_max_sectors = ISER_DEF_MAX_SECTORS;
98module_param_named(max_sectors, iser_max_sectors, uint, S_IRUGO | S_IWUSR);
99MODULE_PARM_DESC(max_sectors, "Max number of sectors in a single scsi command (default:1024");
100
3cffd930
SG
101bool iser_always_reg = true;
102module_param_named(always_register, iser_always_reg, bool, S_IRUGO);
103MODULE_PARM_DESC(always_register,
104 "Always register memory, even for continuous memory regions (default:true)");
105
7f733847 106bool iser_pi_enable = false;
db0a6cbd 107module_param_named(pi_enable, iser_pi_enable, bool, S_IRUGO);
7f733847
AT
108MODULE_PARM_DESC(pi_enable, "Enable T10-PI offload support (default:disabled)");
109
db0a6cbd
JF
110int iser_pi_guard;
111module_param_named(pi_guard, iser_pi_guard, int, S_IRUGO);
5bb6e543 112MODULE_PARM_DESC(pi_guard, "T10-PI guard_type [deprecated]");
7f733847 113
dc05ac36 114/*
68a5e604 115 * iscsi_iser_recv() - Process a successful recv completion
dc05ac36
SG
116 * @conn: iscsi connection
117 * @hdr: iscsi header
118 * @rx_data: buffer containing receive data payload
119 * @rx_data_len: length of rx_data
120 *
121 * Notes: In case of data length errors or iscsi PDU completion failures
122 * this routine will signal iscsi layer of connection failure.
123 */
65e7ae7b 124void
dc05ac36
SG
125iscsi_iser_recv(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
126 char *rx_data, int rx_data_len)
65e7ae7b
OG
127{
128 int rc = 0;
65e7ae7b 129 int datalen;
65e7ae7b
OG
130
131 /* verify PDU length */
132 datalen = ntoh24(hdr->dlength);
200ae1a0
OG
133 if (datalen > rx_data_len || (datalen + 4) < rx_data_len) {
134 iser_err("wrong datalen %d (hdr), %d (IB)\n",
135 datalen, rx_data_len);
65e7ae7b
OG
136 rc = ISCSI_ERR_DATALEN;
137 goto error;
138 }
139
200ae1a0
OG
140 if (datalen != rx_data_len)
141 iser_dbg("aligned datalen (%d) hdr, %d (IB)\n",
142 datalen, rx_data_len);
143
0af967f5 144 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
65e7ae7b
OG
145 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
146 goto error;
147
148 return;
149error:
150 iscsi_conn_failure(conn, rc);
151}
152
dc05ac36
SG
153/**
154 * iscsi_iser_pdu_alloc() - allocate an iscsi-iser PDU
155 * @task: iscsi task
156 * @opcode: iscsi command opcode
157 *
158 * Netes: This routine can't fail, just assign iscsi task
159 * hdr and max hdr size.
160 */
161static int
162iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
0f9c7449
MC
163{
164 struct iscsi_iser_task *iser_task = task->dd_data;
165
166 task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header;
167 task->hdr_max = sizeof(iser_task->desc.iscsi_header);
dc05ac36 168
0f9c7449
MC
169 return 0;
170}
65e7ae7b 171
7414dde0
SG
172/**
173 * iser_initialize_task_headers() - Initialize task headers
174 * @task: iscsi task
175 * @tx_desc: iser tx descriptor
176 *
177 * Notes:
178 * This routine may race with iser teardown flow for scsi
179 * error handling TMFs. So for TMF we should acquire the
180 * state mutex to avoid dereferencing the IB device which
181 * may have already been terminated.
182 */
183int
184iser_initialize_task_headers(struct iscsi_task *task,
185 struct iser_tx_desc *tx_desc)
f19624aa 186{
7414dde0 187 struct iser_conn *iser_conn = task->conn->dd_data;
a4ee3539 188 struct iser_device *device = iser_conn->ib_conn.device;
f19624aa
OG
189 struct iscsi_iser_task *iser_task = task->dd_data;
190 u64 dma_addr;
7414dde0
SG
191 const bool mgmt_task = !task->sc && !in_interrupt();
192 int ret = 0;
193
194 if (unlikely(mgmt_task))
195 mutex_lock(&iser_conn->state_mutex);
196
197 if (unlikely(iser_conn->state != ISER_CONN_UP)) {
198 ret = -ENODEV;
199 goto out;
200 }
f19624aa
OG
201
202 dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc,
203 ISER_HEADERS_LEN, DMA_TO_DEVICE);
7414dde0
SG
204 if (ib_dma_mapping_error(device->ib_device, dma_addr)) {
205 ret = -ENOMEM;
206 goto out;
207 }
f19624aa 208
7332bed0 209 tx_desc->wr_idx = 0;
8d5944d8 210 tx_desc->mapped = true;
f19624aa
OG
211 tx_desc->dma_addr = dma_addr;
212 tx_desc->tx_sg[0].addr = tx_desc->dma_addr;
213 tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
256b7ad2 214 tx_desc->tx_sg[0].lkey = device->pd->local_dma_lkey;
f19624aa 215
5716af6e 216 iser_task->iser_conn = iser_conn;
7414dde0
SG
217out:
218 if (unlikely(mgmt_task))
219 mutex_unlock(&iser_conn->state_mutex);
220
221 return ret;
f19624aa 222}
dc05ac36 223
65e7ae7b 224/**
dc05ac36 225 * iscsi_iser_task_init() - Initialize iscsi-iser task
2261ec3d 226 * @task: iscsi task
65e7ae7b 227 *
2261ec3d 228 * Initialize the task for the scsi command or mgmt command.
dc05ac36
SG
229 *
230 * Return: Returns zero on success or -ENOMEM when failing
231 * to init task headers (dma mapping error).
2747fdb2 232 */
a8ac6311 233static int
2261ec3d 234iscsi_iser_task_init(struct iscsi_task *task)
65e7ae7b 235{
2261ec3d 236 struct iscsi_iser_task *iser_task = task->dd_data;
7414dde0 237 int ret;
65e7ae7b 238
7414dde0
SG
239 ret = iser_initialize_task_headers(task, &iser_task->desc);
240 if (ret) {
241 iser_err("Failed to init task %p, err = %d\n",
242 iser_task, ret);
243 return ret;
244 }
f19624aa 245
2261ec3d 246 /* mgmt task */
f19624aa 247 if (!task->sc)
2747fdb2 248 return 0;
65e7ae7b 249
2261ec3d 250 iser_task->command_sent = 0;
2261ec3d 251 iser_task_rdma_init(iser_task);
177e31bd
SG
252 iser_task->sc = task->sc;
253
a8ac6311 254 return 0;
65e7ae7b
OG
255}
256
257/**
dc05ac36 258 * iscsi_iser_mtask_xmit() - xmit management (immediate) task
65e7ae7b 259 * @conn: iscsi connection
2261ec3d 260 * @task: task management task
65e7ae7b
OG
261 *
262 * Notes:
263 * The function can return -EAGAIN in which case caller must
264 * call it again later, or recover. '0' return code means successful
265 * xmit.
266 *
267 **/
268static int
2261ec3d 269iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task)
65e7ae7b
OG
270{
271 int error = 0;
272
962b4b52 273 iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn->id, task->itt);
65e7ae7b 274
2261ec3d 275 error = iser_send_control(conn, task);
65e7ae7b 276
2261ec3d 277 /* since iser xmits control with zero copy, tasks can not be recycled
65e7ae7b
OG
278 * right after sending them.
279 * The recycling scheme is based on whether a response is expected
2261ec3d
MC
280 * - if yes, the task is recycled at iscsi_complete_pdu
281 * - if no, the task is recycled at iser_snd_completion
65e7ae7b 282 */
65e7ae7b
OG
283 return error;
284}
285
286static int
2747fdb2 287iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
2261ec3d 288 struct iscsi_task *task)
65e7ae7b 289{
0f9c7449
MC
290 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
291 struct iscsi_data hdr;
65e7ae7b 292 int error = 0;
65e7ae7b
OG
293
294 /* Send data-out PDUs while there's still unsolicited data to send */
0f9c7449
MC
295 while (iscsi_task_has_unsol_data(task)) {
296 iscsi_prep_data_out_pdu(task, r2t, &hdr);
48a237a2 297 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
0f9c7449 298 hdr.itt, r2t->data_count);
65e7ae7b
OG
299
300 /* the buffer description has been passed with the command */
301 /* Send the command */
2261ec3d 302 error = iser_send_data_out(conn, task, &hdr);
65e7ae7b 303 if (error) {
0f9c7449 304 r2t->datasn--;
2747fdb2 305 goto iscsi_iser_task_xmit_unsol_data_exit;
65e7ae7b 306 }
0f9c7449 307 r2t->sent += r2t->data_count;
48a237a2 308 iser_dbg("Need to send %d more as data-out PDUs\n",
0f9c7449 309 r2t->data_length - r2t->sent);
65e7ae7b
OG
310 }
311
2747fdb2 312iscsi_iser_task_xmit_unsol_data_exit:
65e7ae7b
OG
313 return error;
314}
315
dc05ac36
SG
316/**
317 * iscsi_iser_task_xmit() - xmit iscsi-iser task
318 * @task: iscsi task
319 *
320 * Return: zero on success or escalates $error on failure.
321 */
65e7ae7b 322static int
2261ec3d 323iscsi_iser_task_xmit(struct iscsi_task *task)
65e7ae7b 324{
2261ec3d
MC
325 struct iscsi_conn *conn = task->conn;
326 struct iscsi_iser_task *iser_task = task->dd_data;
65e7ae7b
OG
327 int error = 0;
328
2261ec3d
MC
329 if (!task->sc)
330 return iscsi_iser_mtask_xmit(conn, task);
2747fdb2 331
2261ec3d
MC
332 if (task->sc->sc_data_direction == DMA_TO_DEVICE) {
333 BUG_ON(scsi_bufflen(task->sc) == 0);
77a23c21 334
48a237a2 335 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
2261ec3d 336 task->itt, scsi_bufflen(task->sc),
0f9c7449 337 task->imm_count, task->unsol_r2t.data_length);
77a23c21
MC
338 }
339
962b4b52 340 iser_dbg("ctask xmit [cid %d itt 0x%x]\n",
2261ec3d 341 conn->id, task->itt);
65e7ae7b 342
65e7ae7b 343 /* Send the cmd PDU */
2261ec3d
MC
344 if (!iser_task->command_sent) {
345 error = iser_send_command(conn, task);
65e7ae7b 346 if (error)
2747fdb2 347 goto iscsi_iser_task_xmit_exit;
2261ec3d 348 iser_task->command_sent = 1;
65e7ae7b
OG
349 }
350
351 /* Send unsolicited data-out PDU(s) if necessary */
0f9c7449 352 if (iscsi_task_has_unsol_data(task))
2261ec3d 353 error = iscsi_iser_task_xmit_unsol_data(conn, task);
65e7ae7b 354
2747fdb2 355 iscsi_iser_task_xmit_exit:
65e7ae7b
OG
356 return error;
357}
358
dc05ac36
SG
359/**
360 * iscsi_iser_cleanup_task() - cleanup an iscsi-iser task
361 * @task: iscsi task
362 *
363 * Notes: In case the RDMA device is already NULL (might have
364 * been removed in DEVICE_REMOVAL CM event it will bail-out
365 * without doing dma unmapping.
366 */
0f9c7449 367static void iscsi_iser_cleanup_task(struct iscsi_task *task)
65e7ae7b 368{
2261ec3d 369 struct iscsi_iser_task *iser_task = task->dd_data;
8d5944d8
SG
370 struct iser_tx_desc *tx_desc = &iser_task->desc;
371 struct iser_conn *iser_conn = task->conn->dd_data;
a4ee3539 372 struct iser_device *device = iser_conn->ib_conn.device;
52439540 373
3a940daf
SG
374 /* DEVICE_REMOVAL event might have already released the device */
375 if (!device)
376 return;
377
8d5944d8
SG
378 if (likely(tx_desc->mapped)) {
379 ib_dma_unmap_single(device->ib_device, tx_desc->dma_addr,
380 ISER_HEADERS_LEN, DMA_TO_DEVICE);
381 tx_desc->mapped = false;
382 }
65e7ae7b 383
b3cd5050
MC
384 /* mgmt tasks do not need special cleanup */
385 if (!task->sc)
2747fdb2 386 return;
65e7ae7b 387
2261ec3d
MC
388 if (iser_task->status == ISER_TASK_STATUS_STARTED) {
389 iser_task->status = ISER_TASK_STATUS_COMPLETED;
390 iser_task_rdma_finalize(iser_task);
65e7ae7b 391 }
65e7ae7b
OG
392}
393
dc05ac36
SG
394/**
395 * iscsi_iser_check_protection() - check protection information status of task.
396 * @task: iscsi task
397 * @sector: error sector if exsists (output)
398 *
399 * Return: zero if no data-integrity errors have occured
400 * 0x1: data-integrity error occured in the guard-block
401 * 0x2: data-integrity error occured in the reference tag
402 * 0x3: data-integrity error occured in the application tag
403 *
404 * In addition the error sector is marked.
405 */
406static u8
407iscsi_iser_check_protection(struct iscsi_task *task, sector_t *sector)
0a7a08ad
SG
408{
409 struct iscsi_iser_task *iser_task = task->dd_data;
410
411 if (iser_task->dir[ISER_DIR_IN])
412 return iser_check_task_pi_status(iser_task, ISER_DIR_IN,
413 sector);
414 else
415 return iser_check_task_pi_status(iser_task, ISER_DIR_OUT,
416 sector);
417}
418
dc05ac36
SG
419/**
420 * iscsi_iser_conn_create() - create a new iscsi-iser connection
421 * @cls_session: iscsi class connection
422 * @conn_idx: connection index within the session (for MCS)
423 *
424 * Return: iscsi_cls_conn when iscsi_conn_setup succeeds or NULL
425 * otherwise.
426 */
65e7ae7b 427static struct iscsi_cls_conn *
dc05ac36
SG
428iscsi_iser_conn_create(struct iscsi_cls_session *cls_session,
429 uint32_t conn_idx)
65e7ae7b
OG
430{
431 struct iscsi_conn *conn;
432 struct iscsi_cls_conn *cls_conn;
65e7ae7b 433
4667f5df 434 cls_conn = iscsi_conn_setup(cls_session, 0, conn_idx);
65e7ae7b
OG
435 if (!cls_conn)
436 return NULL;
437 conn = cls_conn->dd_data;
438
439 /*
440 * due to issues with the login code re iser sematics
441 * this not set in iscsi_conn_setup - FIXME
442 */
bcc60c38 443 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN;
65e7ae7b 444
65e7ae7b 445 return cls_conn;
65e7ae7b
OG
446}
447
dc05ac36
SG
448/**
449 * iscsi_iser_conn_bind() - bind iscsi and iser connection structures
450 * @cls_session: iscsi class session
451 * @cls_conn: iscsi class connection
452 * @transport_eph: transport end-point handle
453 * @is_leading: indicate if this is the session leading connection (MCS)
454 *
455 * Return: zero on success, $error if iscsi_conn_bind fails and
456 * -EINVAL in case end-point doesn't exsits anymore or iser connection
457 * state is not UP (teardown already started).
458 */
65e7ae7b
OG
459static int
460iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
dc05ac36
SG
461 struct iscsi_cls_conn *cls_conn,
462 uint64_t transport_eph,
65e7ae7b
OG
463 int is_leading)
464{
465 struct iscsi_conn *conn = cls_conn->dd_data;
5716af6e 466 struct iser_conn *iser_conn;
412eeafa 467 struct iscsi_endpoint *ep;
65e7ae7b
OG
468 int error;
469
470 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
471 if (error)
472 return error;
473
474 /* the transport ep handle comes from user space so it must be
475 * verified against the global ib connections list */
412eeafa
MC
476 ep = iscsi_lookup_endpoint(transport_eph);
477 if (!ep) {
65e7ae7b
OG
478 iser_err("can't bind eph %llx\n",
479 (unsigned long long)transport_eph);
480 return -EINVAL;
481 }
5716af6e 482 iser_conn = ep->dd_data;
412eeafa 483
5716af6e
SG
484 mutex_lock(&iser_conn->state_mutex);
485 if (iser_conn->state != ISER_CONN_UP) {
91eb1df3
SG
486 error = -EINVAL;
487 iser_err("iser_conn %p state is %d, teardown started\n",
5716af6e 488 iser_conn, iser_conn->state);
91eb1df3
SG
489 goto out;
490 }
491
5716af6e 492 error = iser_alloc_rx_descriptors(iser_conn, conn->session);
91eb1df3
SG
493 if (error)
494 goto out;
89e984e2 495
65e7ae7b
OG
496 /* binds the iSER connection retrieved from the previously
497 * connected ep_handle to the iSCSI layer connection. exchanges
498 * connection pointers */
5716af6e 499 iser_info("binding iscsi conn %p to iser_conn %p\n", conn, iser_conn);
4667f5df 500
5716af6e
SG
501 conn->dd_data = iser_conn;
502 iser_conn->iscsi_conn = conn;
4667f5df 503
91eb1df3 504out:
5716af6e 505 mutex_unlock(&iser_conn->state_mutex);
91eb1df3 506 return error;
65e7ae7b 507}
65e7ae7b 508
dc05ac36
SG
509/**
510 * iscsi_iser_conn_start() - start iscsi-iser connection
511 * @cls_conn: iscsi class connection
512 *
513 * Notes: Here iser intialize (or re-initialize) stop_completion as
514 * from this point iscsi must call conn_stop in session/connection
515 * teardown so iser transport must wait for it.
516 */
b73c3ada
AN
517static int
518iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
519{
520 struct iscsi_conn *iscsi_conn;
5716af6e 521 struct iser_conn *iser_conn;
b73c3ada
AN
522
523 iscsi_conn = cls_conn->dd_data;
5716af6e
SG
524 iser_conn = iscsi_conn->dd_data;
525 reinit_completion(&iser_conn->stop_completion);
b73c3ada
AN
526
527 return iscsi_conn_start(cls_conn);
528}
529
dc05ac36
SG
530/**
531 * iscsi_iser_conn_stop() - stop iscsi-iser connection
532 * @cls_conn: iscsi class connection
533 * @flag: indicate if recover or terminate (passed as is)
534 *
535 * Notes: Calling iscsi_conn_stop might theoretically race with
536 * DEVICE_REMOVAL event and dereference a previously freed RDMA device
537 * handle, so we call it under iser the state lock to protect against
538 * this kind of race.
539 */
b40977d9
MC
540static void
541iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
542{
543 struct iscsi_conn *conn = cls_conn->dd_data;
5716af6e 544 struct iser_conn *iser_conn = conn->dd_data;
65e7ae7b 545
bba0a3c9 546 iser_info("stopping iscsi_conn: %p, iser_conn: %p\n", conn, iser_conn);
b73c3ada 547
b40977d9 548 /*
913e5bf4
MC
549 * Userspace may have goofed up and not bound the connection or
550 * might have only partially setup the connection.
b40977d9 551 */
5716af6e 552 if (iser_conn) {
ec370e2b 553 mutex_lock(&iser_conn->state_mutex);
c8c16d3b 554 mutex_lock(&unbind_iser_conn_mutex);
ec370e2b 555 iser_conn_terminate(iser_conn);
f0caef6d 556 iscsi_conn_stop(cls_conn, flag);
ec370e2b
AN
557
558 /* unbind */
559 iser_conn->iscsi_conn = NULL;
b73c3ada 560 conn->dd_data = NULL;
c8c16d3b 561 mutex_unlock(&unbind_iser_conn_mutex);
ec370e2b 562
5716af6e 563 complete(&iser_conn->stop_completion);
ec370e2b 564 mutex_unlock(&iser_conn->state_mutex);
3a940daf
SG
565 } else {
566 iscsi_conn_stop(cls_conn, flag);
913e5bf4 567 }
65e7ae7b
OG
568}
569
dc05ac36
SG
570/**
571 * iscsi_iser_session_destroy() - destroy iscsi-iser session
572 * @cls_session: iscsi class session
573 *
574 * Removes and free iscsi host.
575 */
576static void
577iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
75613521
MC
578{
579 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
580
e5bd7b54 581 iscsi_session_teardown(cls_session);
a4804cd6
MC
582 iscsi_host_remove(shost);
583 iscsi_host_free(shost);
75613521 584}
65e7ae7b 585
6192d4e6
SG
586static inline unsigned int
587iser_dif_prot_caps(int prot_caps)
588{
5bb6e543
SG
589 return ((prot_caps & IB_PROT_T10DIF_TYPE_1) ?
590 SHOST_DIF_TYPE1_PROTECTION | SHOST_DIX_TYPE0_PROTECTION |
591 SHOST_DIX_TYPE1_PROTECTION : 0) |
592 ((prot_caps & IB_PROT_T10DIF_TYPE_2) ?
593 SHOST_DIF_TYPE2_PROTECTION | SHOST_DIX_TYPE2_PROTECTION : 0) |
594 ((prot_caps & IB_PROT_T10DIF_TYPE_3) ?
595 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE3_PROTECTION : 0);
6192d4e6
SG
596}
597
dc05ac36
SG
598/**
599 * iscsi_iser_session_create() - create an iscsi-iser session
600 * @ep: iscsi end-point handle
601 * @cmds_max: maximum commands in this session
602 * @qdepth: session command queue depth
603 * @initial_cmdsn: initiator command sequnce number
604 *
605 * Allocates and adds a scsi host, expose DIF supprot if
606 * exists, and sets up an iscsi session.
607 */
65e7ae7b 608static struct iscsi_cls_session *
412eeafa 609iscsi_iser_session_create(struct iscsi_endpoint *ep,
75613521 610 uint16_t cmds_max, uint16_t qdepth,
5e7facb7 611 uint32_t initial_cmdsn)
65e7ae7b
OG
612{
613 struct iscsi_cls_session *cls_session;
614 struct iscsi_session *session;
412eeafa 615 struct Scsi_Host *shost;
5716af6e 616 struct iser_conn *iser_conn = NULL;
a4ee3539 617 struct ib_conn *ib_conn;
9c674815 618 u32 max_fr_sectors;
f4641ef7 619 u16 max_cmds;
75613521 620
962b4b52 621 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0);
75613521
MC
622 if (!shost)
623 return NULL;
624 shost->transportt = iscsi_iser_scsi_transport;
b7f04513 625 shost->cmd_per_lun = qdepth;
75613521
MC
626 shost->max_lun = iscsi_max_lun;
627 shost->max_id = 0;
628 shost->max_channel = 0;
629 shost->max_cmd_len = 16;
630
412eeafa
MC
631 /*
632 * older userspace tools (before 2.0-870) did not pass us
633 * the leading conn's ep so this will be NULL;
634 */
6192d4e6 635 if (ep) {
5716af6e 636 iser_conn = ep->dd_data;
f4641ef7 637 max_cmds = iser_conn->max_cmds;
df749cdc 638 shost->sg_tablesize = iser_conn->scsi_sg_tablesize;
3f562a0b
AN
639
640 mutex_lock(&iser_conn->state_mutex);
641 if (iser_conn->state != ISER_CONN_UP) {
642 iser_err("iser conn %p already started teardown\n",
643 iser_conn);
644 mutex_unlock(&iser_conn->state_mutex);
645 goto free_host;
646 }
647
a4ee3539
SG
648 ib_conn = &iser_conn->ib_conn;
649 if (ib_conn->pi_support) {
4a061b28 650 u32 sig_caps = ib_conn->device->ib_device->attrs.sig_prot_cap;
6192d4e6
SG
651
652 scsi_host_set_prot(shost, iser_dif_prot_caps(sig_caps));
5bb6e543
SG
653 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP |
654 SHOST_DIX_GUARD_CRC);
6192d4e6 655 }
3f562a0b
AN
656
657 if (iscsi_host_add(shost,
61118cec 658 ib_conn->device->ib_device->dev.parent)) {
3f562a0b
AN
659 mutex_unlock(&iser_conn->state_mutex);
660 goto free_host;
661 }
662 mutex_unlock(&iser_conn->state_mutex);
f4641ef7
MT
663 } else {
664 max_cmds = ISER_DEF_XMIT_CMDS_MAX;
3f562a0b
AN
665 if (iscsi_host_add(shost, NULL))
666 goto free_host;
6192d4e6 667 }
412eeafa 668
9c674815
CH
669 /*
670 * FRs or FMRs can only map up to a (device) page per entry, but if the
671 * first entry is misaligned we'll end up using using two entries
672 * (head and tail) for a single page worth data, so we have to drop
673 * one segment from the calculation.
674 */
675 max_fr_sectors = ((shost->sg_tablesize - 1) * PAGE_SIZE) >> 9;
676 shost->max_sectors = min(iser_max_sectors, max_fr_sectors);
677
83236f01
MG
678 iser_dbg("iser_conn %p, sg_tablesize %u, max_sectors %u\n",
679 iser_conn, shost->sg_tablesize,
680 shost->max_sectors);
681
f4641ef7 682 if (cmds_max > max_cmds) {
b7f04513 683 iser_info("cmds_max changed from %u to %u\n",
f4641ef7
MT
684 cmds_max, max_cmds);
685 cmds_max = max_cmds;
b7f04513
SP
686 }
687
75613521 688 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
b7f04513 689 cmds_max, 0,
2261ec3d 690 sizeof(struct iscsi_iser_task),
7970634b 691 initial_cmdsn, 0);
65e7ae7b 692 if (!cls_session)
75613521
MC
693 goto remove_host;
694 session = cls_session->dd_data;
65e7ae7b 695
2747fdb2 696 shost->can_queue = session->scsi_cmds_max;
65e7ae7b 697 return cls_session;
75613521
MC
698
699remove_host:
a4804cd6 700 iscsi_host_remove(shost);
75613521 701free_host:
a4804cd6 702 iscsi_host_free(shost);
75613521 703 return NULL;
65e7ae7b
OG
704}
705
706static int
358ff019
MC
707iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
708 enum iscsi_param param, char *buf, int buflen)
65e7ae7b 709{
358ff019 710 int value;
65e7ae7b
OG
711
712 switch (param) {
713 case ISCSI_PARAM_MAX_RECV_DLENGTH:
714 /* TBD */
715 break;
65e7ae7b 716 case ISCSI_PARAM_HDRDGST_EN:
358ff019 717 sscanf(buf, "%d", &value);
65e7ae7b 718 if (value) {
e7eeffa4 719 iser_err("DataDigest wasn't negotiated to None\n");
65e7ae7b
OG
720 return -EPROTO;
721 }
722 break;
723 case ISCSI_PARAM_DATADGST_EN:
358ff019 724 sscanf(buf, "%d", &value);
65e7ae7b 725 if (value) {
e7eeffa4 726 iser_err("DataDigest wasn't negotiated to None\n");
65e7ae7b
OG
727 return -EPROTO;
728 }
729 break;
65e7ae7b 730 case ISCSI_PARAM_IFMARKER_EN:
358ff019 731 sscanf(buf, "%d", &value);
65e7ae7b 732 if (value) {
e7eeffa4 733 iser_err("IFMarker wasn't negotiated to No\n");
65e7ae7b
OG
734 return -EPROTO;
735 }
736 break;
737 case ISCSI_PARAM_OFMARKER_EN:
358ff019 738 sscanf(buf, "%d", &value);
65e7ae7b 739 if (value) {
e7eeffa4 740 iser_err("OFMarker wasn't negotiated to No\n");
65e7ae7b
OG
741 return -EPROTO;
742 }
743 break;
744 default:
358ff019 745 return iscsi_set_param(cls_conn, param, buf, buflen);
65e7ae7b
OG
746 }
747
748 return 0;
749}
750
dc05ac36
SG
751/**
752 * iscsi_iser_set_param() - set class connection parameter
753 * @cls_conn: iscsi class connection
754 * @stats: iscsi stats to output
755 *
756 * Output connection statistics.
757 */
65e7ae7b
OG
758static void
759iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
760{
761 struct iscsi_conn *conn = cls_conn->dd_data;
762
763 stats->txdata_octets = conn->txdata_octets;
764 stats->rxdata_octets = conn->rxdata_octets;
765 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
766 stats->dataout_pdus = conn->dataout_pdus_cnt;
767 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
768 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
769 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
770 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
771 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
dd0107a0 772 stats->custom_length = 0;
65e7ae7b
OG
773}
774
7c53c6f8
MC
775static int iscsi_iser_get_ep_param(struct iscsi_endpoint *ep,
776 enum iscsi_param param, char *buf)
777{
5716af6e 778 struct iser_conn *iser_conn = ep->dd_data;
7c53c6f8
MC
779 int len;
780
781 switch (param) {
782 case ISCSI_PARAM_CONN_PORT:
783 case ISCSI_PARAM_CONN_ADDRESS:
a4ee3539 784 if (!iser_conn || !iser_conn->ib_conn.cma_id)
7c53c6f8
MC
785 return -ENOTCONN;
786
787 return iscsi_conn_get_addr_param((struct sockaddr_storage *)
a4ee3539
SG
788 &iser_conn->ib_conn.cma_id->route.addr.dst_addr,
789 param, buf);
7c53c6f8
MC
790 break;
791 default:
792 return -ENOSYS;
793 }
794
795 return len;
796}
797
dc05ac36
SG
798/**
799 * iscsi_iser_ep_connect() - Initiate iSER connection establishment
800 * @shost: scsi_host
801 * @dst_addr: destination address
802 * @non-blocking: indicate if routine can block
803 *
804 * Allocate an iscsi endpoint, an iser_conn structure and bind them.
805 * After that start RDMA connection establishment via rdma_cm. We
806 * don't allocate iser_conn embedded in iscsi_endpoint since in teardown
807 * the endpoint will be destroyed at ep_disconnect while iser_conn will
808 * cleanup its resources asynchronuously.
809 *
810 * Return: iscsi_endpoint created by iscsi layer or ERR_PTR(error)
811 * if fails.
812 */
412eeafa 813static struct iscsi_endpoint *
10eb0f01
MC
814iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
815 int non_blocking)
65e7ae7b
OG
816{
817 int err;
5716af6e 818 struct iser_conn *iser_conn;
412eeafa 819 struct iscsi_endpoint *ep;
65e7ae7b 820
0a690758 821 ep = iscsi_create_endpoint(0);
412eeafa
MC
822 if (!ep)
823 return ERR_PTR(-ENOMEM);
65e7ae7b 824
5716af6e
SG
825 iser_conn = kzalloc(sizeof(*iser_conn), GFP_KERNEL);
826 if (!iser_conn) {
0a690758
AN
827 err = -ENOMEM;
828 goto failure;
829 }
830
5716af6e
SG
831 ep->dd_data = iser_conn;
832 iser_conn->ep = ep;
833 iser_conn_init(iser_conn);
65e7ae7b 834
5716af6e 835 err = iser_connect(iser_conn, NULL, dst_addr, non_blocking);
7d9c0de4 836 if (err)
0a690758 837 goto failure;
7d9c0de4 838
412eeafa 839 return ep;
0a690758
AN
840failure:
841 iscsi_destroy_endpoint(ep);
842 return ERR_PTR(err);
65e7ae7b
OG
843}
844
dc05ac36
SG
845/**
846 * iscsi_iser_ep_poll() - poll for iser connection establishment to complete
847 * @ep: iscsi endpoint (created at ep_connect)
848 * @timeout_ms: polling timeout allowed in ms.
849 *
850 * This routine boils down to waiting for up_completion signaling
851 * that cma_id got CONNECTED event.
852 *
853 * Return: 1 if succeeded in connection establishment, 0 if timeout expired
854 * (libiscsi will retry will kick in) or -1 if interrupted by signal
855 * or more likely iser connection state transitioned to TEMINATING or
856 * DOWN during the wait period.
857 */
65e7ae7b 858static int
412eeafa 859iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
65e7ae7b 860{
74ce897b 861 struct iser_conn *iser_conn = ep->dd_data;
65e7ae7b
OG
862 int rc;
863
5716af6e 864 rc = wait_for_completion_interruptible_timeout(&iser_conn->up_completion,
9a6d3234 865 msecs_to_jiffies(timeout_ms));
65e7ae7b 866 /* if conn establishment failed, return error code to iscsi */
504130c0 867 if (rc == 0) {
5716af6e
SG
868 mutex_lock(&iser_conn->state_mutex);
869 if (iser_conn->state == ISER_CONN_TERMINATING ||
870 iser_conn->state == ISER_CONN_DOWN)
504130c0 871 rc = -1;
5716af6e 872 mutex_unlock(&iser_conn->state_mutex);
504130c0 873 }
65e7ae7b 874
74ce897b 875 iser_info("iser conn %p rc = %d\n", iser_conn, rc);
65e7ae7b
OG
876
877 if (rc > 0)
878 return 1; /* success, this is the equivalent of POLLOUT */
879 else if (!rc)
880 return 0; /* timeout */
881 else
882 return rc; /* signal */
883}
884
dc05ac36
SG
885/**
886 * iscsi_iser_ep_disconnect() - Initiate connection teardown process
887 * @ep: iscsi endpoint handle
888 *
889 * This routine is not blocked by iser and RDMA termination process
890 * completion as we queue a deffered work for iser/RDMA destruction
891 * and cleanup or actually call it immediately in case we didn't pass
892 * iscsi conn bind/start stage, thus it is safe.
893 */
65e7ae7b 894static void
412eeafa 895iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
65e7ae7b 896{
74ce897b 897 struct iser_conn *iser_conn = ep->dd_data;
65e7ae7b 898
74ce897b 899 iser_info("ep %p iser conn %p\n", ep, iser_conn);
5716af6e
SG
900
901 mutex_lock(&iser_conn->state_mutex);
902 iser_conn_terminate(iser_conn);
b73c3ada
AN
903
904 /*
9a6d3234
AN
905 * if iser_conn and iscsi_conn are bound, we must wait for
906 * iscsi_conn_stop and flush errors completion before freeing
907 * the iser resources. Otherwise we are safe to free resources
908 * immediately.
b73c3ada 909 */
5716af6e
SG
910 if (iser_conn->iscsi_conn) {
911 INIT_WORK(&iser_conn->release_work, iser_release_work);
912 queue_work(release_wq, &iser_conn->release_work);
913 mutex_unlock(&iser_conn->state_mutex);
b73c3ada 914 } else {
5716af6e
SG
915 iser_conn->state = ISER_CONN_DOWN;
916 mutex_unlock(&iser_conn->state_mutex);
917 iser_conn_release(iser_conn);
b73c3ada 918 }
1156cc80 919
0a690758 920 iscsi_destroy_endpoint(ep);
65e7ae7b
OG
921}
922
587a1f16 923static umode_t iser_attr_is_visible(int param_type, int param)
3128c6c7
MC
924{
925 switch (param_type) {
f27fb2ef
MC
926 case ISCSI_HOST_PARAM:
927 switch (param) {
928 case ISCSI_HOST_PARAM_NETDEV_NAME:
929 case ISCSI_HOST_PARAM_HWADDRESS:
930 case ISCSI_HOST_PARAM_INITIATOR_NAME:
931 return S_IRUGO;
932 default:
933 return 0;
934 }
3128c6c7
MC
935 case ISCSI_PARAM:
936 switch (param) {
937 case ISCSI_PARAM_MAX_RECV_DLENGTH:
938 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
939 case ISCSI_PARAM_HDRDGST_EN:
940 case ISCSI_PARAM_DATADGST_EN:
941 case ISCSI_PARAM_CONN_ADDRESS:
942 case ISCSI_PARAM_CONN_PORT:
943 case ISCSI_PARAM_EXP_STATSN:
944 case ISCSI_PARAM_PERSISTENT_ADDRESS:
945 case ISCSI_PARAM_PERSISTENT_PORT:
946 case ISCSI_PARAM_PING_TMO:
947 case ISCSI_PARAM_RECV_TMO:
1d063c17
MC
948 case ISCSI_PARAM_INITIAL_R2T_EN:
949 case ISCSI_PARAM_MAX_R2T:
950 case ISCSI_PARAM_IMM_DATA_EN:
951 case ISCSI_PARAM_FIRST_BURST:
952 case ISCSI_PARAM_MAX_BURST:
953 case ISCSI_PARAM_PDU_INORDER_EN:
954 case ISCSI_PARAM_DATASEQ_INORDER_EN:
955 case ISCSI_PARAM_TARGET_NAME:
956 case ISCSI_PARAM_TPGT:
957 case ISCSI_PARAM_USERNAME:
958 case ISCSI_PARAM_PASSWORD:
959 case ISCSI_PARAM_USERNAME_IN:
960 case ISCSI_PARAM_PASSWORD_IN:
961 case ISCSI_PARAM_FAST_ABORT:
962 case ISCSI_PARAM_ABORT_TMO:
963 case ISCSI_PARAM_LU_RESET_TMO:
964 case ISCSI_PARAM_TGT_RESET_TMO:
965 case ISCSI_PARAM_IFACE_NAME:
966 case ISCSI_PARAM_INITIATOR_NAME:
6a06a4b8 967 case ISCSI_PARAM_DISCOVERY_SESS:
3128c6c7
MC
968 return S_IRUGO;
969 default:
970 return 0;
971 }
972 }
973
974 return 0;
975}
976
dd0107a0
SG
977static int iscsi_iser_slave_alloc(struct scsi_device *sdev)
978{
318d311e
SG
979 struct iscsi_session *session;
980 struct iser_conn *iser_conn;
981 struct ib_device *ib_dev;
982
c8c16d3b
VN
983 mutex_lock(&unbind_iser_conn_mutex);
984
318d311e
SG
985 session = starget_to_session(scsi_target(sdev))->dd_data;
986 iser_conn = session->leadconn->dd_data;
c8c16d3b
VN
987 if (!iser_conn) {
988 mutex_unlock(&unbind_iser_conn_mutex);
989 return -ENOTCONN;
990 }
318d311e
SG
991 ib_dev = iser_conn->ib_conn.device->ib_device;
992
993 if (!(ib_dev->attrs.device_cap_flags & IB_DEVICE_SG_GAPS_REG))
994 blk_queue_virt_boundary(sdev->request_queue, ~MASK_4K);
dd0107a0 995
c8c16d3b
VN
996 mutex_unlock(&unbind_iser_conn_mutex);
997
dd0107a0
SG
998 return 0;
999}
1000
65e7ae7b 1001static struct scsi_host_template iscsi_iser_sht = {
7974392c 1002 .module = THIS_MODULE,
c1d786e6 1003 .name = "iSCSI Initiator over iSER",
65e7ae7b 1004 .queuecommand = iscsi_queuecommand,
db5ed4df 1005 .change_queue_depth = scsi_change_queue_depth,
df749cdc 1006 .sg_tablesize = ISCSI_ISER_DEF_SG_TABLESIZE,
e28f3d5b 1007 .cmd_per_lun = ISER_DEF_CMD_PER_LUN,
b6a05c82 1008 .eh_timed_out = iscsi_eh_cmd_timed_out,
65e7ae7b 1009 .eh_abort_handler = iscsi_eh_abort,
90c18f3c 1010 .eh_device_reset_handler= iscsi_eh_device_reset,
309ce156 1011 .eh_target_reset_handler = iscsi_eh_recover_target,
6b5d6c44 1012 .target_alloc = iscsi_target_alloc,
630c3183 1013 .use_clustering = ENABLE_CLUSTERING,
dd0107a0 1014 .slave_alloc = iscsi_iser_slave_alloc,
65e7ae7b
OG
1015 .proc_name = "iscsi_iser",
1016 .this_id = -1,
c40ecc12 1017 .track_queue_depth = 1,
65e7ae7b
OG
1018};
1019
1020static struct iscsi_transport iscsi_iser_transport = {
1021 .owner = THIS_MODULE,
1022 .name = "iser",
6a06a4b8 1023 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_TEXT_NEGO,
65e7ae7b
OG
1024 /* session management */
1025 .create_session = iscsi_iser_session_create,
75613521 1026 .destroy_session = iscsi_iser_session_destroy,
65e7ae7b
OG
1027 /* connection management */
1028 .create_conn = iscsi_iser_conn_create,
1029 .bind_conn = iscsi_iser_conn_bind,
b73c3ada 1030 .destroy_conn = iscsi_conn_teardown,
3128c6c7 1031 .attr_is_visible = iser_attr_is_visible,
358ff019
MC
1032 .set_param = iscsi_iser_set_param,
1033 .get_conn_param = iscsi_conn_get_param,
7c53c6f8 1034 .get_ep_param = iscsi_iser_get_ep_param,
358ff019 1035 .get_session_param = iscsi_session_get_param,
b73c3ada 1036 .start_conn = iscsi_iser_conn_start,
b40977d9 1037 .stop_conn = iscsi_iser_conn_stop,
0801c242
MC
1038 /* iscsi host params */
1039 .get_host_param = iscsi_host_get_param,
1040 .set_host_param = iscsi_host_set_param,
65e7ae7b
OG
1041 /* IO */
1042 .send_pdu = iscsi_conn_send_pdu,
1043 .get_stats = iscsi_iser_conn_get_stats,
2747fdb2
MC
1044 .init_task = iscsi_iser_task_init,
1045 .xmit_task = iscsi_iser_task_xmit,
1046 .cleanup_task = iscsi_iser_cleanup_task,
0f9c7449 1047 .alloc_pdu = iscsi_iser_pdu_alloc,
0a7a08ad 1048 .check_protection = iscsi_iser_check_protection,
65e7ae7b
OG
1049 /* recovery */
1050 .session_recovery_timedout = iscsi_session_recovery_timedout,
1051
1052 .ep_connect = iscsi_iser_ep_connect,
1053 .ep_poll = iscsi_iser_ep_poll,
1054 .ep_disconnect = iscsi_iser_ep_disconnect
1055};
1056
1057static int __init iser_init(void)
1058{
1059 int err;
1060
1061 iser_dbg("Starting iSER datamover...\n");
1062
1063 if (iscsi_max_lun < 1) {
4f363882 1064 iser_err("Invalid max_lun value of %u\n", iscsi_max_lun);
65e7ae7b
OG
1065 return -EINVAL;
1066 }
1067
65e7ae7b
OG
1068 memset(&ig, 0, sizeof(struct iser_global));
1069
1070 ig.desc_cache = kmem_cache_create("iser_descriptors",
f19624aa 1071 sizeof(struct iser_tx_desc),
65e7ae7b 1072 0, SLAB_HWCACHE_ALIGN,
20c2df83 1073 NULL);
65e7ae7b
OG
1074 if (ig.desc_cache == NULL)
1075 return -ENOMEM;
1076
1077 /* device init is called only after the first addr resolution */
1078 mutex_init(&ig.device_list_mutex);
1079 INIT_LIST_HEAD(&ig.device_list);
1080 mutex_init(&ig.connlist_mutex);
1081 INIT_LIST_HEAD(&ig.connlist);
1082
b73c3ada
AN
1083 release_wq = alloc_workqueue("release workqueue", 0, 0);
1084 if (!release_wq) {
1085 iser_err("failed to allocate release workqueue\n");
08ff089b
RD
1086 err = -ENOMEM;
1087 goto err_alloc_wq;
b73c3ada
AN
1088 }
1089
75613521
MC
1090 iscsi_iser_scsi_transport = iscsi_register_transport(
1091 &iscsi_iser_transport);
1092 if (!iscsi_iser_scsi_transport) {
65e7ae7b
OG
1093 iser_err("iscsi_register_transport failed\n");
1094 err = -EINVAL;
08ff089b 1095 goto err_reg;
65e7ae7b
OG
1096 }
1097
1098 return 0;
1099
08ff089b
RD
1100err_reg:
1101 destroy_workqueue(release_wq);
1102err_alloc_wq:
65e7ae7b
OG
1103 kmem_cache_destroy(ig.desc_cache);
1104
1105 return err;
1106}
1107
1108static void __exit iser_exit(void)
1109{
5716af6e 1110 struct iser_conn *iser_conn, *n;
b73c3ada
AN
1111 int connlist_empty;
1112
65e7ae7b 1113 iser_dbg("Removing iSER datamover...\n");
b73c3ada
AN
1114 destroy_workqueue(release_wq);
1115
1116 mutex_lock(&ig.connlist_mutex);
1117 connlist_empty = list_empty(&ig.connlist);
1118 mutex_unlock(&ig.connlist_mutex);
1119
1120 if (!connlist_empty) {
1121 iser_err("Error cleanup stage completed but we still have iser "
1156cc80 1122 "connections, destroying them anyway\n");
5716af6e
SG
1123 list_for_each_entry_safe(iser_conn, n, &ig.connlist,
1124 conn_list) {
1125 iser_conn_release(iser_conn);
b73c3ada
AN
1126 }
1127 }
1128
65e7ae7b
OG
1129 iscsi_unregister_transport(&iscsi_iser_transport);
1130 kmem_cache_destroy(ig.desc_cache);
1131}
1132
1133module_init(iser_init);
1134module_exit(iser_exit);