IB/iser: Use different CQ for send completions
[linux-2.6-block.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.
8 * maintained by openib-general@openib.org
9 *
10 * This software is available to you under a choice of one of two
11 * licenses. You may choose to be licensed under the terms of the GNU
12 * General Public License (GPL) Version 2, available from the file
13 * COPYING in the main directory of this source tree, or the
14 * OpenIB.org BSD license below:
15 *
16 * Redistribution and use in source and binary forms, with or
17 * without modification, are permitted provided that the following
18 * conditions are met:
19 *
20 * - Redistributions of source code must retain the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer.
23 *
24 * - Redistributions in binary form must reproduce the above
25 * copyright notice, this list of conditions and the following
26 * disclaimer in the documentation and/or other materials
27 * provided with the distribution.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
33 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
34 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 * SOFTWARE.
37 *
38 * Credits:
39 * Christoph Hellwig
40 * FUJITA Tomonori
41 * Arne Redlich
42 * Zhenyu Wang
43 * Modified by:
44 * Erez Zilber
65e7ae7b
OG
45 */
46
47#include <linux/types.h>
48#include <linux/list.h>
49#include <linux/hardirq.h>
50#include <linux/kfifo.h>
51#include <linux/blkdev.h>
52#include <linux/init.h>
53#include <linux/ioctl.h>
65e7ae7b
OG
54#include <linux/cdev.h>
55#include <linux/in.h>
56#include <linux/net.h>
57#include <linux/scatterlist.h>
58#include <linux/delay.h>
59
60#include <net/sock.h>
61
62#include <asm/uaccess.h>
63
64#include <scsi/scsi_cmnd.h>
65#include <scsi/scsi_device.h>
66#include <scsi/scsi_eh.h>
67#include <scsi/scsi_tcq.h>
68#include <scsi/scsi_host.h>
69#include <scsi/scsi.h>
70#include <scsi/scsi_transport_iscsi.h>
71
72#include "iscsi_iser.h"
73
75613521
MC
74static struct scsi_host_template iscsi_iser_sht;
75static struct iscsi_transport iscsi_iser_transport;
76static struct scsi_transport_template *iscsi_iser_scsi_transport;
77
65e7ae7b
OG
78static unsigned int iscsi_max_lun = 512;
79module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
80
81int iser_debug_level = 0;
82
83MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover "
84 "v" DRV_VER " (" DRV_DATE ")");
85MODULE_LICENSE("Dual BSD/GPL");
86MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
87
88module_param_named(debug_level, iser_debug_level, int, 0644);
89MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
90
91struct iser_global ig;
92
93void
94iscsi_iser_recv(struct iscsi_conn *conn,
95 struct iscsi_hdr *hdr, char *rx_data, int rx_data_len)
96{
97 int rc = 0;
65e7ae7b
OG
98 int datalen;
99 int ahslen;
100
101 /* verify PDU length */
102 datalen = ntoh24(hdr->dlength);
103 if (datalen != rx_data_len) {
104 printk(KERN_ERR "iscsi_iser: datalen %d (hdr) != %d (IB) \n",
105 datalen, rx_data_len);
106 rc = ISCSI_ERR_DATALEN;
107 goto error;
108 }
109
110 /* read AHS */
111 ahslen = hdr->hlength * 4;
112
0af967f5 113 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
65e7ae7b
OG
114 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
115 goto error;
116
117 return;
118error:
119 iscsi_conn_failure(conn, rc);
120}
121
2ff79d52 122static int iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
0f9c7449
MC
123{
124 struct iscsi_iser_task *iser_task = task->dd_data;
125
126 task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header;
127 task->hdr_max = sizeof(iser_task->desc.iscsi_header);
128 return 0;
129}
65e7ae7b
OG
130
131/**
2261ec3d
MC
132 * iscsi_iser_task_init - Initialize task
133 * @task: iscsi task
65e7ae7b 134 *
2261ec3d 135 * Initialize the task for the scsi command or mgmt command.
2747fdb2 136 */
a8ac6311 137static int
2261ec3d 138iscsi_iser_task_init(struct iscsi_task *task)
65e7ae7b 139{
2261ec3d
MC
140 struct iscsi_iser_conn *iser_conn = task->conn->dd_data;
141 struct iscsi_iser_task *iser_task = task->dd_data;
65e7ae7b 142
2261ec3d
MC
143 /* mgmt task */
144 if (!task->sc) {
145 iser_task->desc.data = task->data;
2747fdb2
MC
146 return 0;
147 }
65e7ae7b 148
2261ec3d
MC
149 iser_task->command_sent = 0;
150 iser_task->iser_conn = iser_conn;
151 iser_task_rdma_init(iser_task);
a8ac6311 152 return 0;
65e7ae7b
OG
153}
154
155/**
2261ec3d 156 * iscsi_iser_mtask_xmit - xmit management(immediate) task
65e7ae7b 157 * @conn: iscsi connection
2261ec3d 158 * @task: task management task
65e7ae7b
OG
159 *
160 * Notes:
161 * The function can return -EAGAIN in which case caller must
162 * call it again later, or recover. '0' return code means successful
163 * xmit.
164 *
165 **/
166static int
2261ec3d 167iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task)
65e7ae7b
OG
168{
169 int error = 0;
170
48a237a2 171 iser_dbg("task deq [cid %d itt 0x%x]\n", conn->id, task->itt);
65e7ae7b 172
2261ec3d 173 error = iser_send_control(conn, task);
65e7ae7b 174
2261ec3d 175 /* since iser xmits control with zero copy, tasks can not be recycled
65e7ae7b
OG
176 * right after sending them.
177 * The recycling scheme is based on whether a response is expected
2261ec3d
MC
178 * - if yes, the task is recycled at iscsi_complete_pdu
179 * - if no, the task is recycled at iser_snd_completion
65e7ae7b 180 */
f0938401 181 if (error && error != -ENOBUFS)
65e7ae7b
OG
182 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
183
184 return error;
185}
186
187static int
2747fdb2 188iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
2261ec3d 189 struct iscsi_task *task)
65e7ae7b 190{
0f9c7449
MC
191 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
192 struct iscsi_data hdr;
65e7ae7b 193 int error = 0;
65e7ae7b
OG
194
195 /* Send data-out PDUs while there's still unsolicited data to send */
0f9c7449
MC
196 while (iscsi_task_has_unsol_data(task)) {
197 iscsi_prep_data_out_pdu(task, r2t, &hdr);
48a237a2 198 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
0f9c7449 199 hdr.itt, r2t->data_count);
65e7ae7b
OG
200
201 /* the buffer description has been passed with the command */
202 /* Send the command */
2261ec3d 203 error = iser_send_data_out(conn, task, &hdr);
65e7ae7b 204 if (error) {
0f9c7449 205 r2t->datasn--;
2747fdb2 206 goto iscsi_iser_task_xmit_unsol_data_exit;
65e7ae7b 207 }
0f9c7449 208 r2t->sent += r2t->data_count;
48a237a2 209 iser_dbg("Need to send %d more as data-out PDUs\n",
0f9c7449 210 r2t->data_length - r2t->sent);
65e7ae7b
OG
211 }
212
2747fdb2 213iscsi_iser_task_xmit_unsol_data_exit:
65e7ae7b
OG
214 return error;
215}
216
217static int
2261ec3d 218iscsi_iser_task_xmit(struct iscsi_task *task)
65e7ae7b 219{
2261ec3d
MC
220 struct iscsi_conn *conn = task->conn;
221 struct iscsi_iser_task *iser_task = task->dd_data;
65e7ae7b
OG
222 int error = 0;
223
2261ec3d
MC
224 if (!task->sc)
225 return iscsi_iser_mtask_xmit(conn, task);
2747fdb2 226
2261ec3d
MC
227 if (task->sc->sc_data_direction == DMA_TO_DEVICE) {
228 BUG_ON(scsi_bufflen(task->sc) == 0);
77a23c21 229
48a237a2 230 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
2261ec3d 231 task->itt, scsi_bufflen(task->sc),
0f9c7449 232 task->imm_count, task->unsol_r2t.data_length);
77a23c21
MC
233 }
234
48a237a2 235 iser_dbg("task deq [cid %d itt 0x%x]\n",
2261ec3d 236 conn->id, task->itt);
65e7ae7b 237
65e7ae7b 238 /* Send the cmd PDU */
2261ec3d
MC
239 if (!iser_task->command_sent) {
240 error = iser_send_command(conn, task);
65e7ae7b 241 if (error)
2747fdb2 242 goto iscsi_iser_task_xmit_exit;
2261ec3d 243 iser_task->command_sent = 1;
65e7ae7b
OG
244 }
245
246 /* Send unsolicited data-out PDU(s) if necessary */
0f9c7449 247 if (iscsi_task_has_unsol_data(task))
2261ec3d 248 error = iscsi_iser_task_xmit_unsol_data(conn, task);
65e7ae7b 249
2747fdb2 250 iscsi_iser_task_xmit_exit:
f0938401 251 if (error && error != -ENOBUFS)
65e7ae7b
OG
252 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
253 return error;
254}
255
0f9c7449 256static void iscsi_iser_cleanup_task(struct iscsi_task *task)
65e7ae7b 257{
2261ec3d 258 struct iscsi_iser_task *iser_task = task->dd_data;
65e7ae7b 259
b3cd5050
MC
260 /* mgmt tasks do not need special cleanup */
261 if (!task->sc)
2747fdb2 262 return;
65e7ae7b 263
2261ec3d
MC
264 if (iser_task->status == ISER_TASK_STATUS_STARTED) {
265 iser_task->status = ISER_TASK_STATUS_COMPLETED;
266 iser_task_rdma_finalize(iser_task);
65e7ae7b 267 }
65e7ae7b
OG
268}
269
270static struct iscsi_cls_conn *
271iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
272{
273 struct iscsi_conn *conn;
274 struct iscsi_cls_conn *cls_conn;
275 struct iscsi_iser_conn *iser_conn;
276
5d91e209 277 cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx);
65e7ae7b
OG
278 if (!cls_conn)
279 return NULL;
280 conn = cls_conn->dd_data;
281
282 /*
283 * due to issues with the login code re iser sematics
284 * this not set in iscsi_conn_setup - FIXME
285 */
bcc60c38 286 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN;
65e7ae7b 287
5d91e209 288 iser_conn = conn->dd_data;
65e7ae7b
OG
289 conn->dd_data = iser_conn;
290 iser_conn->iscsi_conn = conn;
291
292 return cls_conn;
65e7ae7b
OG
293}
294
295static void
296iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
297{
298 struct iscsi_conn *conn = cls_conn->dd_data;
299 struct iscsi_iser_conn *iser_conn = conn->dd_data;
b40977d9 300 struct iser_conn *ib_conn = iser_conn->ib_conn;
65e7ae7b
OG
301
302 iscsi_conn_teardown(cls_conn);
b40977d9
MC
303 /*
304 * Userspace will normally call the stop callback and
305 * already have freed the ib_conn, but if it goofed up then
306 * we free it here.
307 */
308 if (ib_conn) {
309 ib_conn->iser_conn = NULL;
310 iser_conn_put(ib_conn);
311 }
65e7ae7b
OG
312}
313
314static int
315iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
316 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
317 int is_leading)
318{
319 struct iscsi_conn *conn = cls_conn->dd_data;
320 struct iscsi_iser_conn *iser_conn;
321 struct iser_conn *ib_conn;
412eeafa 322 struct iscsi_endpoint *ep;
65e7ae7b
OG
323 int error;
324
325 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
326 if (error)
327 return error;
328
329 /* the transport ep handle comes from user space so it must be
330 * verified against the global ib connections list */
412eeafa
MC
331 ep = iscsi_lookup_endpoint(transport_eph);
332 if (!ep) {
65e7ae7b
OG
333 iser_err("can't bind eph %llx\n",
334 (unsigned long long)transport_eph);
335 return -EINVAL;
336 }
412eeafa
MC
337 ib_conn = ep->dd_data;
338
65e7ae7b
OG
339 /* binds the iSER connection retrieved from the previously
340 * connected ep_handle to the iSCSI layer connection. exchanges
341 * connection pointers */
342 iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn);
343 iser_conn = conn->dd_data;
344 ib_conn->iser_conn = iser_conn;
345 iser_conn->ib_conn = ib_conn;
b40977d9 346 iser_conn_get(ib_conn);
65e7ae7b
OG
347 return 0;
348}
65e7ae7b 349
b40977d9
MC
350static void
351iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
352{
353 struct iscsi_conn *conn = cls_conn->dd_data;
354 struct iscsi_iser_conn *iser_conn = conn->dd_data;
355 struct iser_conn *ib_conn = iser_conn->ib_conn;
65e7ae7b 356
b40977d9 357 /*
913e5bf4
MC
358 * Userspace may have goofed up and not bound the connection or
359 * might have only partially setup the connection.
b40977d9 360 */
913e5bf4
MC
361 if (ib_conn) {
362 iscsi_conn_stop(cls_conn, flag);
363 /*
364 * There is no unbind event so the stop callback
365 * must release the ref from the bind.
366 */
367 iser_conn_put(ib_conn);
368 }
b40977d9 369 iser_conn->ib_conn = NULL;
65e7ae7b
OG
370}
371
372static int
373iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
374{
375 struct iscsi_conn *conn = cls_conn->dd_data;
376 int err;
377
2e7a7426 378 err = iser_conn_set_full_featured_mode(conn);
65e7ae7b
OG
379 if (err)
380 return err;
381
2e7a7426 382 return iscsi_conn_start(cls_conn);
65e7ae7b
OG
383}
384
75613521
MC
385static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
386{
387 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
388
e5bd7b54 389 iscsi_session_teardown(cls_session);
a4804cd6
MC
390 iscsi_host_remove(shost);
391 iscsi_host_free(shost);
75613521 392}
65e7ae7b
OG
393
394static struct iscsi_cls_session *
412eeafa 395iscsi_iser_session_create(struct iscsi_endpoint *ep,
75613521 396 uint16_t cmds_max, uint16_t qdepth,
5e7facb7 397 uint32_t initial_cmdsn)
65e7ae7b
OG
398{
399 struct iscsi_cls_session *cls_session;
400 struct iscsi_session *session;
412eeafa 401 struct Scsi_Host *shost;
412eeafa 402 struct iser_conn *ib_conn;
75613521 403
4d108350 404 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 1);
75613521
MC
405 if (!shost)
406 return NULL;
407 shost->transportt = iscsi_iser_scsi_transport;
408 shost->max_lun = iscsi_max_lun;
409 shost->max_id = 0;
410 shost->max_channel = 0;
411 shost->max_cmd_len = 16;
412
412eeafa
MC
413 /*
414 * older userspace tools (before 2.0-870) did not pass us
415 * the leading conn's ep so this will be NULL;
416 */
417 if (ep)
418 ib_conn = ep->dd_data;
419
420 if (iscsi_host_add(shost,
421 ep ? ib_conn->device->ib_device->dma_device : NULL))
75613521 422 goto free_host;
65e7ae7b 423
1548271e
MC
424 /*
425 * we do not support setting can_queue cmd_per_lun from userspace yet
426 * because we preallocate so many resources
427 */
75613521 428 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
b8b9e1b8 429 ISCSI_DEF_XMIT_CMDS_MAX, 0,
2261ec3d 430 sizeof(struct iscsi_iser_task),
7970634b 431 initial_cmdsn, 0);
65e7ae7b 432 if (!cls_session)
75613521
MC
433 goto remove_host;
434 session = cls_session->dd_data;
65e7ae7b 435
2747fdb2 436 shost->can_queue = session->scsi_cmds_max;
65e7ae7b 437 return cls_session;
75613521
MC
438
439remove_host:
a4804cd6 440 iscsi_host_remove(shost);
75613521 441free_host:
a4804cd6 442 iscsi_host_free(shost);
75613521 443 return NULL;
65e7ae7b
OG
444}
445
446static int
358ff019
MC
447iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
448 enum iscsi_param param, char *buf, int buflen)
65e7ae7b 449{
358ff019 450 int value;
65e7ae7b
OG
451
452 switch (param) {
453 case ISCSI_PARAM_MAX_RECV_DLENGTH:
454 /* TBD */
455 break;
65e7ae7b 456 case ISCSI_PARAM_HDRDGST_EN:
358ff019 457 sscanf(buf, "%d", &value);
65e7ae7b
OG
458 if (value) {
459 printk(KERN_ERR "DataDigest wasn't negotiated to None");
460 return -EPROTO;
461 }
462 break;
463 case ISCSI_PARAM_DATADGST_EN:
358ff019 464 sscanf(buf, "%d", &value);
65e7ae7b
OG
465 if (value) {
466 printk(KERN_ERR "DataDigest wasn't negotiated to None");
467 return -EPROTO;
468 }
469 break;
65e7ae7b 470 case ISCSI_PARAM_IFMARKER_EN:
358ff019 471 sscanf(buf, "%d", &value);
65e7ae7b
OG
472 if (value) {
473 printk(KERN_ERR "IFMarker wasn't negotiated to No");
474 return -EPROTO;
475 }
476 break;
477 case ISCSI_PARAM_OFMARKER_EN:
358ff019 478 sscanf(buf, "%d", &value);
65e7ae7b
OG
479 if (value) {
480 printk(KERN_ERR "OFMarker wasn't negotiated to No");
481 return -EPROTO;
482 }
483 break;
484 default:
358ff019 485 return iscsi_set_param(cls_conn, param, buf, buflen);
65e7ae7b
OG
486 }
487
488 return 0;
489}
490
65e7ae7b
OG
491static void
492iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
493{
494 struct iscsi_conn *conn = cls_conn->dd_data;
495
496 stats->txdata_octets = conn->txdata_octets;
497 stats->rxdata_octets = conn->rxdata_octets;
498 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
499 stats->dataout_pdus = conn->dataout_pdus_cnt;
500 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
501 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
502 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
503 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
504 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
87528227 505 stats->custom_length = 4;
65e7ae7b
OG
506 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
507 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
508 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
509 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
510 strcpy(stats->custom[2].desc, "eh_abort_cnt");
511 stats->custom[2].value = conn->eh_abort_cnt;
87528227
ED
512 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
513 stats->custom[3].value = conn->fmr_unalign_cnt;
65e7ae7b
OG
514}
515
412eeafa 516static struct iscsi_endpoint *
10eb0f01
MC
517iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
518 int non_blocking)
65e7ae7b
OG
519{
520 int err;
521 struct iser_conn *ib_conn;
412eeafa 522 struct iscsi_endpoint *ep;
65e7ae7b 523
412eeafa
MC
524 ep = iscsi_create_endpoint(sizeof(*ib_conn));
525 if (!ep)
526 return ERR_PTR(-ENOMEM);
65e7ae7b 527
412eeafa
MC
528 ib_conn = ep->dd_data;
529 ib_conn->ep = ep;
530 iser_conn_init(ib_conn);
65e7ae7b 531
412eeafa
MC
532 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr,
533 non_blocking);
534 if (err) {
535 iscsi_destroy_endpoint(ep);
536 return ERR_PTR(err);
537 }
538 return ep;
65e7ae7b
OG
539}
540
541static int
412eeafa 542iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
65e7ae7b 543{
412eeafa 544 struct iser_conn *ib_conn;
65e7ae7b
OG
545 int rc;
546
412eeafa 547 ib_conn = ep->dd_data;
65e7ae7b
OG
548 rc = wait_event_interruptible_timeout(ib_conn->wait,
549 ib_conn->state == ISER_CONN_UP,
550 msecs_to_jiffies(timeout_ms));
551
552 /* if conn establishment failed, return error code to iscsi */
553 if (!rc &&
554 (ib_conn->state == ISER_CONN_TERMINATING ||
555 ib_conn->state == ISER_CONN_DOWN))
556 rc = -1;
557
558 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
559
560 if (rc > 0)
561 return 1; /* success, this is the equivalent of POLLOUT */
562 else if (!rc)
563 return 0; /* timeout */
564 else
565 return rc; /* signal */
566}
567
568static void
412eeafa 569iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
65e7ae7b 570{
1c83469d 571 struct iser_conn *ib_conn;
65e7ae7b 572
412eeafa 573 ib_conn = ep->dd_data;
b40977d9
MC
574 if (ib_conn->iser_conn)
575 /*
576 * Must suspend xmit path if the ep is bound to the
577 * iscsi_conn, so we know we are not accessing the ib_conn
578 * when we free it.
579 *
580 * This may not be bound if the ep poll failed.
581 */
582 iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn);
583
65e7ae7b
OG
584
585 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
65e7ae7b
OG
586 iser_conn_terminate(ib_conn);
587}
588
589static struct scsi_host_template iscsi_iser_sht = {
7974392c 590 .module = THIS_MODULE,
65e7ae7b
OG
591 .name = "iSCSI Initiator over iSER, v." DRV_VER,
592 .queuecommand = iscsi_queuecommand,
6410627e 593 .change_queue_depth = iscsi_change_queue_depth,
65e7ae7b 594 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
8072ec2f 595 .max_sectors = 1024,
e28f3d5b 596 .cmd_per_lun = ISER_DEF_CMD_PER_LUN,
65e7ae7b 597 .eh_abort_handler = iscsi_eh_abort,
90c18f3c 598 .eh_device_reset_handler= iscsi_eh_device_reset,
8e124525 599 .eh_target_reset_handler= iscsi_eh_target_reset,
6b5d6c44 600 .target_alloc = iscsi_target_alloc,
65e7ae7b
OG
601 .use_clustering = DISABLE_CLUSTERING,
602 .proc_name = "iscsi_iser",
603 .this_id = -1,
604};
605
606static struct iscsi_transport iscsi_iser_transport = {
607 .owner = THIS_MODULE,
608 .name = "iser",
609 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
610 .param_mask = ISCSI_MAX_RECV_DLENGTH |
611 ISCSI_MAX_XMIT_DLENGTH |
612 ISCSI_HDRDGST_EN |
613 ISCSI_DATADGST_EN |
614 ISCSI_INITIAL_R2T_EN |
615 ISCSI_MAX_R2T |
616 ISCSI_IMM_DATA_EN |
617 ISCSI_FIRST_BURST |
618 ISCSI_MAX_BURST |
619 ISCSI_PDU_INORDER_EN |
358ff019
MC
620 ISCSI_DATASEQ_INORDER_EN |
621 ISCSI_EXP_STATSN |
622 ISCSI_PERSISTENT_PORT |
623 ISCSI_PERSISTENT_ADDRESS |
b2c64167
MC
624 ISCSI_TARGET_NAME | ISCSI_TPGT |
625 ISCSI_USERNAME | ISCSI_PASSWORD |
f6d5180c
MC
626 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
627 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
b20d038d 628 ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO |
88dfd340
MC
629 ISCSI_PING_TMO | ISCSI_RECV_TMO |
630 ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME,
8ad5781a 631 .host_param_mask = ISCSI_HOST_HWADDRESS |
d8196ed2 632 ISCSI_HOST_NETDEV_NAME |
8ad5781a 633 ISCSI_HOST_INITIATOR_NAME,
65e7ae7b
OG
634 /* session management */
635 .create_session = iscsi_iser_session_create,
75613521 636 .destroy_session = iscsi_iser_session_destroy,
65e7ae7b
OG
637 /* connection management */
638 .create_conn = iscsi_iser_conn_create,
639 .bind_conn = iscsi_iser_conn_bind,
640 .destroy_conn = iscsi_iser_conn_destroy,
358ff019
MC
641 .set_param = iscsi_iser_set_param,
642 .get_conn_param = iscsi_conn_get_param,
643 .get_session_param = iscsi_session_get_param,
65e7ae7b 644 .start_conn = iscsi_iser_conn_start,
b40977d9 645 .stop_conn = iscsi_iser_conn_stop,
0801c242
MC
646 /* iscsi host params */
647 .get_host_param = iscsi_host_get_param,
648 .set_host_param = iscsi_host_set_param,
65e7ae7b
OG
649 /* IO */
650 .send_pdu = iscsi_conn_send_pdu,
651 .get_stats = iscsi_iser_conn_get_stats,
2747fdb2
MC
652 .init_task = iscsi_iser_task_init,
653 .xmit_task = iscsi_iser_task_xmit,
654 .cleanup_task = iscsi_iser_cleanup_task,
0f9c7449 655 .alloc_pdu = iscsi_iser_pdu_alloc,
65e7ae7b
OG
656 /* recovery */
657 .session_recovery_timedout = iscsi_session_recovery_timedout,
658
659 .ep_connect = iscsi_iser_ep_connect,
660 .ep_poll = iscsi_iser_ep_poll,
661 .ep_disconnect = iscsi_iser_ep_disconnect
662};
663
664static int __init iser_init(void)
665{
666 int err;
667
668 iser_dbg("Starting iSER datamover...\n");
669
670 if (iscsi_max_lun < 1) {
671 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
672 return -EINVAL;
673 }
674
65e7ae7b
OG
675 memset(&ig, 0, sizeof(struct iser_global));
676
677 ig.desc_cache = kmem_cache_create("iser_descriptors",
678 sizeof (struct iser_desc),
679 0, SLAB_HWCACHE_ALIGN,
20c2df83 680 NULL);
65e7ae7b
OG
681 if (ig.desc_cache == NULL)
682 return -ENOMEM;
683
684 /* device init is called only after the first addr resolution */
685 mutex_init(&ig.device_list_mutex);
686 INIT_LIST_HEAD(&ig.device_list);
687 mutex_init(&ig.connlist_mutex);
688 INIT_LIST_HEAD(&ig.connlist);
689
75613521
MC
690 iscsi_iser_scsi_transport = iscsi_register_transport(
691 &iscsi_iser_transport);
692 if (!iscsi_iser_scsi_transport) {
65e7ae7b
OG
693 iser_err("iscsi_register_transport failed\n");
694 err = -EINVAL;
695 goto register_transport_failure;
696 }
697
698 return 0;
699
700register_transport_failure:
701 kmem_cache_destroy(ig.desc_cache);
702
703 return err;
704}
705
706static void __exit iser_exit(void)
707{
708 iser_dbg("Removing iSER datamover...\n");
709 iscsi_unregister_transport(&iscsi_iser_transport);
710 kmem_cache_destroy(ig.desc_cache);
711}
712
713module_init(iser_init);
714module_exit(iser_exit);