blob: 5a750042e2b24cb5c09d625a5c4426c551af515c [file] [log] [blame]
Or Gerlitz65e7ae72006-05-11 10:00:44 +03001/*
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
45 *
46 *
47 * $Id: iscsi_iser.c 6965 2006-05-07 11:36:20Z ogerlitz $
48 */
49
50#include <linux/types.h>
51#include <linux/list.h>
52#include <linux/hardirq.h>
53#include <linux/kfifo.h>
54#include <linux/blkdev.h>
55#include <linux/init.h>
56#include <linux/ioctl.h>
Or Gerlitz65e7ae72006-05-11 10:00:44 +030057#include <linux/cdev.h>
58#include <linux/in.h>
59#include <linux/net.h>
60#include <linux/scatterlist.h>
61#include <linux/delay.h>
62
63#include <net/sock.h>
64
65#include <asm/uaccess.h>
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
Mike Christie75613522008-05-21 15:53:59 -050077static struct scsi_host_template iscsi_iser_sht;
78static struct iscsi_transport iscsi_iser_transport;
79static struct scsi_transport_template *iscsi_iser_scsi_transport;
80
Or Gerlitz65e7ae72006-05-11 10:00:44 +030081static unsigned int iscsi_max_lun = 512;
82module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
83
84int iser_debug_level = 0;
85
86MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover "
87 "v" DRV_VER " (" DRV_DATE ")");
88MODULE_LICENSE("Dual BSD/GPL");
89MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz");
90
91module_param_named(debug_level, iser_debug_level, int, 0644);
92MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)");
93
94struct iser_global ig;
95
96void
97iscsi_iser_recv(struct iscsi_conn *conn,
98 struct iscsi_hdr *hdr, char *rx_data, int rx_data_len)
99{
100 int rc = 0;
101 uint32_t ret_itt;
102 int datalen;
103 int ahslen;
104
105 /* verify PDU length */
106 datalen = ntoh24(hdr->dlength);
107 if (datalen != rx_data_len) {
108 printk(KERN_ERR "iscsi_iser: datalen %d (hdr) != %d (IB) \n",
109 datalen, rx_data_len);
110 rc = ISCSI_ERR_DATALEN;
111 goto error;
112 }
113
114 /* read AHS */
115 ahslen = hdr->hlength * 4;
116
117 /* verify itt (itt encoding: age+cid+itt) */
118 rc = iscsi_verify_itt(conn, hdr, &ret_itt);
119
120 if (!rc)
121 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
122
123 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
124 goto error;
125
126 return;
127error:
128 iscsi_conn_failure(conn, rc);
129}
130
131
132/**
133 * iscsi_iser_cmd_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
134 *
135 **/
Olaf Kircha8ac6312007-12-13 12:43:35 -0600136static int
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300137iscsi_iser_cmd_init(struct iscsi_cmd_task *ctask)
138{
139 struct iscsi_iser_conn *iser_conn = ctask->conn->dd_data;
140 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300141
142 iser_ctask->command_sent = 0;
143 iser_ctask->iser_conn = iser_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300144 iser_ctask_rdma_init(iser_ctask);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600145 return 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300146}
147
148/**
149 * iscsi_mtask_xmit - xmit management(immediate) task
150 * @conn: iscsi connection
151 * @mtask: task management task
152 *
153 * Notes:
154 * The function can return -EAGAIN in which case caller must
155 * call it again later, or recover. '0' return code means successful
156 * xmit.
157 *
158 **/
159static int
160iscsi_iser_mtask_xmit(struct iscsi_conn *conn,
161 struct iscsi_mgmt_task *mtask)
162{
163 int error = 0;
164
165 debug_scsi("mtask deq [cid %d itt 0x%x]\n", conn->id, mtask->itt);
166
167 error = iser_send_control(conn, mtask);
168
169 /* since iser xmits control with zero copy, mtasks can not be recycled
170 * right after sending them.
171 * The recycling scheme is based on whether a response is expected
172 * - if yes, the mtask is recycled at iscsi_complete_pdu
173 * - if no, the mtask is recycled at iser_snd_completion
174 */
Erez Zilberf0938402007-01-07 12:28:02 +0200175 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300176 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
177
178 return error;
179}
180
181static int
182iscsi_iser_ctask_xmit_unsol_data(struct iscsi_conn *conn,
183 struct iscsi_cmd_task *ctask)
184{
185 struct iscsi_data hdr;
186 int error = 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300187
188 /* Send data-out PDUs while there's still unsolicited data to send */
189 while (ctask->unsol_count > 0) {
Mike Christieffd04362006-08-31 18:09:24 -0400190 iscsi_prep_unsolicit_data_pdu(ctask, &hdr);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300191 debug_scsi("Sending data-out: itt 0x%x, data count %d\n",
192 hdr.itt, ctask->data_count);
193
194 /* the buffer description has been passed with the command */
195 /* Send the command */
196 error = iser_send_data_out(conn, ctask, &hdr);
197 if (error) {
198 ctask->unsol_datasn--;
199 goto iscsi_iser_ctask_xmit_unsol_data_exit;
200 }
201 ctask->unsol_count -= ctask->data_count;
202 debug_scsi("Need to send %d more as data-out PDUs\n",
203 ctask->unsol_count);
204 }
205
206iscsi_iser_ctask_xmit_unsol_data_exit:
207 return error;
208}
209
210static int
211iscsi_iser_ctask_xmit(struct iscsi_conn *conn,
212 struct iscsi_cmd_task *ctask)
213{
214 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
215 int error = 0;
216
Mike Christie77a23c22007-05-30 12:57:18 -0500217 if (ctask->sc->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonorida9c0c72007-06-01 18:56:21 +0900218 BUG_ON(scsi_bufflen(ctask->sc) == 0);
Mike Christie77a23c22007-05-30 12:57:18 -0500219
220 debug_scsi("cmd [itt %x total %d imm %d unsol_data %d\n",
FUJITA Tomonorida9c0c72007-06-01 18:56:21 +0900221 ctask->itt, scsi_bufflen(ctask->sc),
Mike Christie77a23c22007-05-30 12:57:18 -0500222 ctask->imm_count, ctask->unsol_count);
223 }
224
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300225 debug_scsi("ctask deq [cid %d itt 0x%x]\n",
226 conn->id, ctask->itt);
227
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300228 /* Send the cmd PDU */
229 if (!iser_ctask->command_sent) {
230 error = iser_send_command(conn, ctask);
231 if (error)
232 goto iscsi_iser_ctask_xmit_exit;
233 iser_ctask->command_sent = 1;
234 }
235
236 /* Send unsolicited data-out PDU(s) if necessary */
237 if (ctask->unsol_count)
238 error = iscsi_iser_ctask_xmit_unsol_data(conn, ctask);
239
240 iscsi_iser_ctask_xmit_exit:
Erez Zilberf0938402007-01-07 12:28:02 +0200241 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300242 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
243 return error;
244}
245
246static void
247iscsi_iser_cleanup_ctask(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
248{
249 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
250
251 if (iser_ctask->status == ISER_TASK_STATUS_STARTED) {
252 iser_ctask->status = ISER_TASK_STATUS_COMPLETED;
253 iser_ctask_rdma_finalize(iser_ctask);
254 }
255}
256
257static struct iser_conn *
258iscsi_iser_ib_conn_lookup(__u64 ep_handle)
259{
260 struct iser_conn *ib_conn;
261 struct iser_conn *uib_conn = (struct iser_conn *)(unsigned long)ep_handle;
262
263 mutex_lock(&ig.connlist_mutex);
264 list_for_each_entry(ib_conn, &ig.connlist, conn_list) {
265 if (ib_conn == uib_conn) {
266 mutex_unlock(&ig.connlist_mutex);
267 return ib_conn;
268 }
269 }
270 mutex_unlock(&ig.connlist_mutex);
271 iser_err("no conn exists for eph %llx\n",(unsigned long long)ep_handle);
272 return NULL;
273}
274
275static struct iscsi_cls_conn *
276iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
277{
278 struct iscsi_conn *conn;
279 struct iscsi_cls_conn *cls_conn;
280 struct iscsi_iser_conn *iser_conn;
281
282 cls_conn = iscsi_conn_setup(cls_session, conn_idx);
283 if (!cls_conn)
284 return NULL;
285 conn = cls_conn->dd_data;
286
287 /*
288 * due to issues with the login code re iser sematics
289 * this not set in iscsi_conn_setup - FIXME
290 */
291 conn->max_recv_dlength = 128;
292
293 iser_conn = kzalloc(sizeof(*iser_conn), GFP_KERNEL);
294 if (!iser_conn)
295 goto conn_alloc_fail;
296
297 /* currently this is the only field which need to be initiated */
298 rwlock_init(&iser_conn->lock);
299
300 conn->dd_data = iser_conn;
301 iser_conn->iscsi_conn = conn;
302
303 return cls_conn;
304
305conn_alloc_fail:
306 iscsi_conn_teardown(cls_conn);
307 return NULL;
308}
309
310static void
311iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
312{
313 struct iscsi_conn *conn = cls_conn->dd_data;
314 struct iscsi_iser_conn *iser_conn = conn->dd_data;
315
316 iscsi_conn_teardown(cls_conn);
Erez Zilber87e8df72006-09-27 15:27:10 +0300317 if (iser_conn->ib_conn)
318 iser_conn->ib_conn->iser_conn = NULL;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300319 kfree(iser_conn);
320}
321
322static int
323iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
324 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
325 int is_leading)
326{
327 struct iscsi_conn *conn = cls_conn->dd_data;
328 struct iscsi_iser_conn *iser_conn;
329 struct iser_conn *ib_conn;
330 int error;
331
332 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
333 if (error)
334 return error;
335
336 /* the transport ep handle comes from user space so it must be
337 * verified against the global ib connections list */
338 ib_conn = iscsi_iser_ib_conn_lookup(transport_eph);
339 if (!ib_conn) {
340 iser_err("can't bind eph %llx\n",
341 (unsigned long long)transport_eph);
342 return -EINVAL;
343 }
344 /* binds the iSER connection retrieved from the previously
345 * connected ep_handle to the iSCSI layer connection. exchanges
346 * connection pointers */
347 iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn);
348 iser_conn = conn->dd_data;
349 ib_conn->iser_conn = iser_conn;
350 iser_conn->ib_conn = ib_conn;
351
352 conn->recv_lock = &iser_conn->lock;
353
354 return 0;
355}
356
357static int
358iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
359{
360 struct iscsi_conn *conn = cls_conn->dd_data;
361 int err;
362
Erez Zilber2e7a7422006-10-22 10:28:38 +0200363 err = iser_conn_set_full_featured_mode(conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300364 if (err)
365 return err;
366
Erez Zilber2e7a7422006-10-22 10:28:38 +0200367 return iscsi_conn_start(cls_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300368}
369
Mike Christie75613522008-05-21 15:53:59 -0500370static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
371{
372 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
373
374 iscsi_session_teardown(cls_session);
375 scsi_remove_host(shost);
376 iscsi_host_teardown(shost);
377 scsi_host_put(shost);
378}
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300379
380static struct iscsi_cls_session *
Mike Christie75613522008-05-21 15:53:59 -0500381iscsi_iser_session_create(struct Scsi_Host *shost,
382 uint16_t cmds_max, uint16_t qdepth,
383 uint32_t initial_cmdsn, uint32_t *hostno)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300384{
385 struct iscsi_cls_session *cls_session;
386 struct iscsi_session *session;
387 int i;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300388 struct iscsi_cmd_task *ctask;
389 struct iscsi_mgmt_task *mtask;
390 struct iscsi_iser_cmd_task *iser_ctask;
391 struct iser_desc *desc;
392
Mike Christie75613522008-05-21 15:53:59 -0500393 if (shost) {
394 printk(KERN_ERR "iscsi_tcp: invalid shost %d.\n",
395 shost->host_no);
396 return NULL;
397 }
398
399 shost = scsi_host_alloc(&iscsi_iser_sht, 0);
400 if (!shost)
401 return NULL;
402 shost->transportt = iscsi_iser_scsi_transport;
403 shost->max_lun = iscsi_max_lun;
404 shost->max_id = 0;
405 shost->max_channel = 0;
406 shost->max_cmd_len = 16;
407
408 iscsi_host_setup(shost, qdepth);
409
410 if (scsi_add_host(shost, NULL))
411 goto free_host;
412 *hostno = shost->host_no;
413
Mike Christie15482712007-05-30 12:57:19 -0500414 /*
415 * we do not support setting can_queue cmd_per_lun from userspace yet
416 * because we preallocate so many resources
417 */
Mike Christie75613522008-05-21 15:53:59 -0500418 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
Mike Christie15482712007-05-30 12:57:19 -0500419 ISCSI_DEF_XMIT_CMDS_MAX,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300420 sizeof(struct iscsi_iser_cmd_task),
421 sizeof(struct iser_desc),
Mike Christie75613522008-05-21 15:53:59 -0500422 initial_cmdsn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300423 if (!cls_session)
Mike Christie75613522008-05-21 15:53:59 -0500424 goto remove_host;
425 session = cls_session->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300426
Mike Christie75613522008-05-21 15:53:59 -0500427 shost->can_queue = session->cmds_max;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300428 /* libiscsi setup itts, data and pool so just set desc fields */
429 for (i = 0; i < session->cmds_max; i++) {
430 ctask = session->cmds[i];
431 iser_ctask = ctask->dd_data;
432 ctask->hdr = (struct iscsi_cmd *)&iser_ctask->desc.iscsi_header;
Boaz Harrosh38ad03d2007-12-13 12:43:24 -0600433 ctask->hdr_max = sizeof(iser_ctask->desc.iscsi_header);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300434 }
435
436 for (i = 0; i < session->mgmtpool_max; i++) {
437 mtask = session->mgmt_cmds[i];
438 desc = mtask->dd_data;
439 mtask->hdr = &desc->iscsi_header;
440 desc->data = mtask->data;
441 }
442
443 return cls_session;
Mike Christie75613522008-05-21 15:53:59 -0500444
445remove_host:
446 scsi_remove_host(shost);
447free_host:
448 iscsi_host_teardown(shost);
449 scsi_host_put(shost);
450 return NULL;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300451}
452
453static int
Mike Christie358ff012006-06-28 12:00:25 -0500454iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
455 enum iscsi_param param, char *buf, int buflen)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300456{
Mike Christie358ff012006-06-28 12:00:25 -0500457 int value;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300458
459 switch (param) {
460 case ISCSI_PARAM_MAX_RECV_DLENGTH:
461 /* TBD */
462 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300463 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500464 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300465 if (value) {
466 printk(KERN_ERR "DataDigest wasn't negotiated to None");
467 return -EPROTO;
468 }
469 break;
470 case ISCSI_PARAM_DATADGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500471 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300472 if (value) {
473 printk(KERN_ERR "DataDigest wasn't negotiated to None");
474 return -EPROTO;
475 }
476 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300477 case ISCSI_PARAM_IFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500478 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300479 if (value) {
480 printk(KERN_ERR "IFMarker wasn't negotiated to No");
481 return -EPROTO;
482 }
483 break;
484 case ISCSI_PARAM_OFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500485 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300486 if (value) {
487 printk(KERN_ERR "OFMarker wasn't negotiated to No");
488 return -EPROTO;
489 }
490 break;
491 default:
Mike Christie358ff012006-06-28 12:00:25 -0500492 return iscsi_set_param(cls_conn, param, buf, buflen);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300493 }
494
495 return 0;
496}
497
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300498static void
499iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
500{
501 struct iscsi_conn *conn = cls_conn->dd_data;
502
503 stats->txdata_octets = conn->txdata_octets;
504 stats->rxdata_octets = conn->rxdata_octets;
505 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
506 stats->dataout_pdus = conn->dataout_pdus_cnt;
507 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
508 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
509 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
510 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
511 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700512 stats->custom_length = 4;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300513 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
514 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
515 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
516 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
517 strcpy(stats->custom[2].desc, "eh_abort_cnt");
518 stats->custom[2].value = conn->eh_abort_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700519 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
520 stats->custom[3].value = conn->fmr_unalign_cnt;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300521}
522
523static int
524iscsi_iser_ep_connect(struct sockaddr *dst_addr, int non_blocking,
525 __u64 *ep_handle)
526{
527 int err;
528 struct iser_conn *ib_conn;
529
530 err = iser_conn_init(&ib_conn);
531 if (err)
532 goto out;
533
534 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr, non_blocking);
535 if (!err)
536 *ep_handle = (__u64)(unsigned long)ib_conn;
537
538out:
539 return err;
540}
541
542static int
543iscsi_iser_ep_poll(__u64 ep_handle, int timeout_ms)
544{
545 struct iser_conn *ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
546 int rc;
547
548 if (!ib_conn)
549 return -EINVAL;
550
551 rc = wait_event_interruptible_timeout(ib_conn->wait,
552 ib_conn->state == ISER_CONN_UP,
553 msecs_to_jiffies(timeout_ms));
554
555 /* if conn establishment failed, return error code to iscsi */
556 if (!rc &&
557 (ib_conn->state == ISER_CONN_TERMINATING ||
558 ib_conn->state == ISER_CONN_DOWN))
559 rc = -1;
560
561 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
562
563 if (rc > 0)
564 return 1; /* success, this is the equivalent of POLLOUT */
565 else if (!rc)
566 return 0; /* timeout */
567 else
568 return rc; /* signal */
569}
570
571static void
572iscsi_iser_ep_disconnect(__u64 ep_handle)
573{
Mike Christie1c834692006-07-24 15:47:26 -0500574 struct iser_conn *ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300575
Mike Christie1c834692006-07-24 15:47:26 -0500576 ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300577 if (!ib_conn)
578 return;
579
580 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300581 iser_conn_terminate(ib_conn);
582}
583
584static struct scsi_host_template iscsi_iser_sht = {
Mike Christie79743922007-07-26 12:46:46 -0500585 .module = THIS_MODULE,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300586 .name = "iSCSI Initiator over iSER, v." DRV_VER,
587 .queuecommand = iscsi_queuecommand,
Erez Zilber64106272008-01-17 11:53:17 +0200588 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -0500589 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300590 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
Erez Zilber8072ec22006-09-11 12:20:54 +0300591 .max_sectors = 1024,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300592 .cmd_per_lun = ISCSI_MAX_CMD_PER_LUN,
593 .eh_abort_handler = iscsi_eh_abort,
Erez Zilber90c18f32008-01-22 12:06:25 +0200594 .eh_device_reset_handler= iscsi_eh_device_reset,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300595 .eh_host_reset_handler = iscsi_eh_host_reset,
596 .use_clustering = DISABLE_CLUSTERING,
597 .proc_name = "iscsi_iser",
598 .this_id = -1,
599};
600
601static struct iscsi_transport iscsi_iser_transport = {
602 .owner = THIS_MODULE,
603 .name = "iser",
604 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
605 .param_mask = ISCSI_MAX_RECV_DLENGTH |
606 ISCSI_MAX_XMIT_DLENGTH |
607 ISCSI_HDRDGST_EN |
608 ISCSI_DATADGST_EN |
609 ISCSI_INITIAL_R2T_EN |
610 ISCSI_MAX_R2T |
611 ISCSI_IMM_DATA_EN |
612 ISCSI_FIRST_BURST |
613 ISCSI_MAX_BURST |
614 ISCSI_PDU_INORDER_EN |
Mike Christie358ff012006-06-28 12:00:25 -0500615 ISCSI_DATASEQ_INORDER_EN |
616 ISCSI_EXP_STATSN |
617 ISCSI_PERSISTENT_PORT |
618 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -0500619 ISCSI_TARGET_NAME | ISCSI_TPGT |
620 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christief6d51802007-12-13 12:43:30 -0600621 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
622 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
623 ISCSI_PING_TMO | ISCSI_RECV_TMO,
Mike Christie8ad57812007-05-30 12:57:13 -0500624 .host_param_mask = ISCSI_HOST_HWADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -0500625 ISCSI_HOST_NETDEV_NAME |
Mike Christie8ad57812007-05-30 12:57:13 -0500626 ISCSI_HOST_INITIATOR_NAME,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300627 .conndata_size = sizeof(struct iscsi_conn),
Mike Christie75613522008-05-21 15:53:59 -0500628 .sessiondata_size = sizeof(struct iscsi_session),
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300629 /* session management */
630 .create_session = iscsi_iser_session_create,
Mike Christie75613522008-05-21 15:53:59 -0500631 .destroy_session = iscsi_iser_session_destroy,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300632 /* connection management */
633 .create_conn = iscsi_iser_conn_create,
634 .bind_conn = iscsi_iser_conn_bind,
635 .destroy_conn = iscsi_iser_conn_destroy,
Mike Christie358ff012006-06-28 12:00:25 -0500636 .set_param = iscsi_iser_set_param,
637 .get_conn_param = iscsi_conn_get_param,
638 .get_session_param = iscsi_session_get_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300639 .start_conn = iscsi_iser_conn_start,
640 .stop_conn = iscsi_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -0500641 /* iscsi host params */
642 .get_host_param = iscsi_host_get_param,
643 .set_host_param = iscsi_host_set_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300644 /* IO */
645 .send_pdu = iscsi_conn_send_pdu,
646 .get_stats = iscsi_iser_conn_get_stats,
647 .init_cmd_task = iscsi_iser_cmd_init,
648 .xmit_cmd_task = iscsi_iser_ctask_xmit,
649 .xmit_mgmt_task = iscsi_iser_mtask_xmit,
650 .cleanup_cmd_task = iscsi_iser_cleanup_ctask,
651 /* recovery */
652 .session_recovery_timedout = iscsi_session_recovery_timedout,
653
654 .ep_connect = iscsi_iser_ep_connect,
655 .ep_poll = iscsi_iser_ep_poll,
656 .ep_disconnect = iscsi_iser_ep_disconnect
657};
658
659static int __init iser_init(void)
660{
661 int err;
662
663 iser_dbg("Starting iSER datamover...\n");
664
665 if (iscsi_max_lun < 1) {
666 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
667 return -EINVAL;
668 }
669
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300670 memset(&ig, 0, sizeof(struct iser_global));
671
672 ig.desc_cache = kmem_cache_create("iser_descriptors",
673 sizeof (struct iser_desc),
674 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900675 NULL);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300676 if (ig.desc_cache == NULL)
677 return -ENOMEM;
678
679 /* device init is called only after the first addr resolution */
680 mutex_init(&ig.device_list_mutex);
681 INIT_LIST_HEAD(&ig.device_list);
682 mutex_init(&ig.connlist_mutex);
683 INIT_LIST_HEAD(&ig.connlist);
684
Mike Christie75613522008-05-21 15:53:59 -0500685 iscsi_iser_scsi_transport = iscsi_register_transport(
686 &iscsi_iser_transport);
687 if (!iscsi_iser_scsi_transport) {
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300688 iser_err("iscsi_register_transport failed\n");
689 err = -EINVAL;
690 goto register_transport_failure;
691 }
692
693 return 0;
694
695register_transport_failure:
696 kmem_cache_destroy(ig.desc_cache);
697
698 return err;
699}
700
701static void __exit iser_exit(void)
702{
703 iser_dbg("Removing iSER datamover...\n");
704 iscsi_unregister_transport(&iscsi_iser_transport);
705 kmem_cache_destroy(ig.desc_cache);
706}
707
708module_init(iser_init);
709module_exit(iser_exit);