blob: baecca1ed42a23352b6df52ce95b1f134054424e [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;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300101 int datalen;
102 int ahslen;
103
104 /* verify PDU length */
105 datalen = ntoh24(hdr->dlength);
106 if (datalen != rx_data_len) {
107 printk(KERN_ERR "iscsi_iser: datalen %d (hdr) != %d (IB) \n",
108 datalen, rx_data_len);
109 rc = ISCSI_ERR_DATALEN;
110 goto error;
111 }
112
113 /* read AHS */
114 ahslen = hdr->hlength * 4;
115
Mike Christie0af967f2008-05-21 15:54:04 -0500116 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300117 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
118 goto error;
119
120 return;
121error:
122 iscsi_conn_failure(conn, rc);
123}
124
125
126/**
Mike Christie2747fdb2008-05-21 15:54:08 -0500127 * iscsi_iser_task_init - Initialize ctask
128 * @ctask: iscsi ctask
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300129 *
Mike Christie2747fdb2008-05-21 15:54:08 -0500130 * Initialize the ctask for the scsi command or mgmt command.
131 */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600132static int
Mike Christie2747fdb2008-05-21 15:54:08 -0500133iscsi_iser_task_init(struct iscsi_cmd_task *ctask)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300134{
Mike Christie2747fdb2008-05-21 15:54:08 -0500135 struct iscsi_iser_conn *iser_conn = ctask->conn->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300136 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300137
Mike Christie2747fdb2008-05-21 15:54:08 -0500138 /* mgmt ctask */
139 if (!ctask->sc) {
140 iser_ctask->desc.data = ctask->data;
141 return 0;
142 }
143
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300144 iser_ctask->command_sent = 0;
145 iser_ctask->iser_conn = iser_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300146 iser_ctask_rdma_init(iser_ctask);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600147 return 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300148}
149
150/**
Mike Christie2747fdb2008-05-21 15:54:08 -0500151 * iscsi_iser_mtask_xmit - xmit management(immediate) ctask
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300152 * @conn: iscsi connection
Mike Christie2747fdb2008-05-21 15:54:08 -0500153 * @ctask: ctask management ctask
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300154 *
155 * Notes:
156 * The function can return -EAGAIN in which case caller must
157 * call it again later, or recover. '0' return code means successful
158 * xmit.
159 *
160 **/
161static int
Mike Christie2747fdb2008-05-21 15:54:08 -0500162iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300163{
164 int error = 0;
165
Mike Christie2747fdb2008-05-21 15:54:08 -0500166 debug_scsi("ctask deq [cid %d itt 0x%x]\n", conn->id, ctask->itt);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300167
Mike Christie2747fdb2008-05-21 15:54:08 -0500168 error = iser_send_control(conn, ctask);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300169
Mike Christie2747fdb2008-05-21 15:54:08 -0500170 /* since iser xmits control with zero copy, ctasks can not be recycled
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300171 * right after sending them.
172 * The recycling scheme is based on whether a response is expected
Mike Christie2747fdb2008-05-21 15:54:08 -0500173 * - if yes, the ctask is recycled at iscsi_complete_pdu
174 * - if no, the ctask is recycled at iser_snd_completion
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300175 */
Erez Zilberf0938402007-01-07 12:28:02 +0200176 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300177 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
178
179 return error;
180}
181
182static int
Mike Christie2747fdb2008-05-21 15:54:08 -0500183iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300184 struct iscsi_cmd_task *ctask)
185{
186 struct iscsi_data hdr;
187 int error = 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300188
189 /* Send data-out PDUs while there's still unsolicited data to send */
190 while (ctask->unsol_count > 0) {
Mike Christieffd04362006-08-31 18:09:24 -0400191 iscsi_prep_unsolicit_data_pdu(ctask, &hdr);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300192 debug_scsi("Sending data-out: itt 0x%x, data count %d\n",
193 hdr.itt, ctask->data_count);
194
195 /* the buffer description has been passed with the command */
196 /* Send the command */
197 error = iser_send_data_out(conn, ctask, &hdr);
198 if (error) {
199 ctask->unsol_datasn--;
Mike Christie2747fdb2008-05-21 15:54:08 -0500200 goto iscsi_iser_task_xmit_unsol_data_exit;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300201 }
202 ctask->unsol_count -= ctask->data_count;
203 debug_scsi("Need to send %d more as data-out PDUs\n",
204 ctask->unsol_count);
205 }
206
Mike Christie2747fdb2008-05-21 15:54:08 -0500207iscsi_iser_task_xmit_unsol_data_exit:
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300208 return error;
209}
210
211static int
Mike Christie2747fdb2008-05-21 15:54:08 -0500212iscsi_iser_task_xmit(struct iscsi_cmd_task *ctask)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300213{
Mike Christie2747fdb2008-05-21 15:54:08 -0500214 struct iscsi_conn *conn = ctask->conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300215 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
216 int error = 0;
217
Mike Christie2747fdb2008-05-21 15:54:08 -0500218 if (!ctask->sc)
219 return iscsi_iser_mtask_xmit(conn, ctask);
220
Mike Christie77a23c22007-05-30 12:57:18 -0500221 if (ctask->sc->sc_data_direction == DMA_TO_DEVICE) {
FUJITA Tomonorida9c0c72007-06-01 18:56:21 +0900222 BUG_ON(scsi_bufflen(ctask->sc) == 0);
Mike Christie77a23c22007-05-30 12:57:18 -0500223
224 debug_scsi("cmd [itt %x total %d imm %d unsol_data %d\n",
FUJITA Tomonorida9c0c72007-06-01 18:56:21 +0900225 ctask->itt, scsi_bufflen(ctask->sc),
Mike Christie77a23c22007-05-30 12:57:18 -0500226 ctask->imm_count, ctask->unsol_count);
227 }
228
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300229 debug_scsi("ctask deq [cid %d itt 0x%x]\n",
230 conn->id, ctask->itt);
231
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300232 /* Send the cmd PDU */
233 if (!iser_ctask->command_sent) {
234 error = iser_send_command(conn, ctask);
235 if (error)
Mike Christie2747fdb2008-05-21 15:54:08 -0500236 goto iscsi_iser_task_xmit_exit;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300237 iser_ctask->command_sent = 1;
238 }
239
240 /* Send unsolicited data-out PDU(s) if necessary */
241 if (ctask->unsol_count)
Mike Christie2747fdb2008-05-21 15:54:08 -0500242 error = iscsi_iser_task_xmit_unsol_data(conn, ctask);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300243
Mike Christie2747fdb2008-05-21 15:54:08 -0500244 iscsi_iser_task_xmit_exit:
Erez Zilberf0938402007-01-07 12:28:02 +0200245 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300246 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
247 return error;
248}
249
250static void
Mike Christie2747fdb2008-05-21 15:54:08 -0500251iscsi_iser_cleanup_task(struct iscsi_conn *conn, struct iscsi_cmd_task *ctask)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300252{
253 struct iscsi_iser_cmd_task *iser_ctask = ctask->dd_data;
254
Mike Christie2747fdb2008-05-21 15:54:08 -0500255 /* mgmt tasks do not need special cleanup */
256 if (!ctask->sc)
257 return;
258
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300259 if (iser_ctask->status == ISER_TASK_STATUS_STARTED) {
260 iser_ctask->status = ISER_TASK_STATUS_COMPLETED;
261 iser_ctask_rdma_finalize(iser_ctask);
262 }
263}
264
265static struct iser_conn *
266iscsi_iser_ib_conn_lookup(__u64 ep_handle)
267{
268 struct iser_conn *ib_conn;
269 struct iser_conn *uib_conn = (struct iser_conn *)(unsigned long)ep_handle;
270
271 mutex_lock(&ig.connlist_mutex);
272 list_for_each_entry(ib_conn, &ig.connlist, conn_list) {
273 if (ib_conn == uib_conn) {
274 mutex_unlock(&ig.connlist_mutex);
275 return ib_conn;
276 }
277 }
278 mutex_unlock(&ig.connlist_mutex);
279 iser_err("no conn exists for eph %llx\n",(unsigned long long)ep_handle);
280 return NULL;
281}
282
283static struct iscsi_cls_conn *
284iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
285{
286 struct iscsi_conn *conn;
287 struct iscsi_cls_conn *cls_conn;
288 struct iscsi_iser_conn *iser_conn;
289
Mike Christie5d91e202008-05-21 15:54:01 -0500290 cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300291 if (!cls_conn)
292 return NULL;
293 conn = cls_conn->dd_data;
294
295 /*
296 * due to issues with the login code re iser sematics
297 * this not set in iscsi_conn_setup - FIXME
298 */
299 conn->max_recv_dlength = 128;
300
Mike Christie5d91e202008-05-21 15:54:01 -0500301 iser_conn = conn->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300302 /* currently this is the only field which need to be initiated */
303 rwlock_init(&iser_conn->lock);
304
305 conn->dd_data = iser_conn;
306 iser_conn->iscsi_conn = conn;
307
308 return cls_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300309}
310
311static void
312iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
313{
314 struct iscsi_conn *conn = cls_conn->dd_data;
315 struct iscsi_iser_conn *iser_conn = conn->dd_data;
Mike Christieb40977d2008-05-21 15:54:03 -0500316 struct iser_conn *ib_conn = iser_conn->ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300317
Mike Christie5d91e202008-05-21 15:54:01 -0500318 iscsi_conn_teardown(cls_conn);
Mike Christieb40977d2008-05-21 15:54:03 -0500319 /*
320 * Userspace will normally call the stop callback and
321 * already have freed the ib_conn, but if it goofed up then
322 * we free it here.
323 */
324 if (ib_conn) {
325 ib_conn->iser_conn = NULL;
326 iser_conn_put(ib_conn);
327 }
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300328}
329
330static int
331iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
332 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
333 int is_leading)
334{
335 struct iscsi_conn *conn = cls_conn->dd_data;
336 struct iscsi_iser_conn *iser_conn;
337 struct iser_conn *ib_conn;
338 int error;
339
340 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
341 if (error)
342 return error;
343
344 /* the transport ep handle comes from user space so it must be
345 * verified against the global ib connections list */
346 ib_conn = iscsi_iser_ib_conn_lookup(transport_eph);
347 if (!ib_conn) {
348 iser_err("can't bind eph %llx\n",
349 (unsigned long long)transport_eph);
350 return -EINVAL;
351 }
352 /* binds the iSER connection retrieved from the previously
353 * connected ep_handle to the iSCSI layer connection. exchanges
354 * connection pointers */
355 iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn);
356 iser_conn = conn->dd_data;
357 ib_conn->iser_conn = iser_conn;
358 iser_conn->ib_conn = ib_conn;
Mike Christieb40977d2008-05-21 15:54:03 -0500359 iser_conn_get(ib_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300360
361 conn->recv_lock = &iser_conn->lock;
362
363 return 0;
364}
365
Mike Christieb40977d2008-05-21 15:54:03 -0500366static void
367iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
368{
369 struct iscsi_conn *conn = cls_conn->dd_data;
370 struct iscsi_iser_conn *iser_conn = conn->dd_data;
371 struct iser_conn *ib_conn = iser_conn->ib_conn;
372
373 iscsi_conn_stop(cls_conn, flag);
374 /*
375 * There is no unbind event so the stop callback
376 * must release the ref from the bind.
377 */
378 iser_conn_put(ib_conn);
379 iser_conn->ib_conn = NULL;
380}
381
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300382static int
383iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
384{
385 struct iscsi_conn *conn = cls_conn->dd_data;
386 int err;
387
Erez Zilber2e7a7422006-10-22 10:28:38 +0200388 err = iser_conn_set_full_featured_mode(conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300389 if (err)
390 return err;
391
Erez Zilber2e7a7422006-10-22 10:28:38 +0200392 return iscsi_conn_start(cls_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300393}
394
Mike Christie75613522008-05-21 15:53:59 -0500395static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
396{
397 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
398
Mike Christiea4804cd2008-05-21 15:54:00 -0500399 iscsi_host_remove(shost);
400 iscsi_host_free(shost);
Mike Christie75613522008-05-21 15:53:59 -0500401}
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300402
403static struct iscsi_cls_session *
Mike Christie75613522008-05-21 15:53:59 -0500404iscsi_iser_session_create(struct Scsi_Host *shost,
405 uint16_t cmds_max, uint16_t qdepth,
406 uint32_t initial_cmdsn, uint32_t *hostno)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300407{
408 struct iscsi_cls_session *cls_session;
409 struct iscsi_session *session;
410 int i;
Mike Christie2747fdb2008-05-21 15:54:08 -0500411 struct iscsi_cmd_task *ctask;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300412 struct iscsi_iser_cmd_task *iser_ctask;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300413
Mike Christie75613522008-05-21 15:53:59 -0500414 if (shost) {
415 printk(KERN_ERR "iscsi_tcp: invalid shost %d.\n",
416 shost->host_no);
417 return NULL;
418 }
419
Mike Christiea4804cd2008-05-21 15:54:00 -0500420 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, ISCSI_MAX_CMD_PER_LUN);
Mike Christie75613522008-05-21 15:53:59 -0500421 if (!shost)
422 return NULL;
423 shost->transportt = iscsi_iser_scsi_transport;
424 shost->max_lun = iscsi_max_lun;
425 shost->max_id = 0;
426 shost->max_channel = 0;
427 shost->max_cmd_len = 16;
428
Mike Christiea4804cd2008-05-21 15:54:00 -0500429 if (iscsi_host_add(shost, NULL))
Mike Christie75613522008-05-21 15:53:59 -0500430 goto free_host;
431 *hostno = shost->host_no;
432
Mike Christie15482712007-05-30 12:57:19 -0500433 /*
434 * we do not support setting can_queue cmd_per_lun from userspace yet
435 * because we preallocate so many resources
436 */
Mike Christie75613522008-05-21 15:53:59 -0500437 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
Mike Christie15482712007-05-30 12:57:19 -0500438 ISCSI_DEF_XMIT_CMDS_MAX,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300439 sizeof(struct iscsi_iser_cmd_task),
Mike Christie75613522008-05-21 15:53:59 -0500440 initial_cmdsn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300441 if (!cls_session)
Mike Christie75613522008-05-21 15:53:59 -0500442 goto remove_host;
443 session = cls_session->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300444
Mike Christie2747fdb2008-05-21 15:54:08 -0500445 shost->can_queue = session->scsi_cmds_max;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300446 /* libiscsi setup itts, data and pool so just set desc fields */
447 for (i = 0; i < session->cmds_max; i++) {
Mike Christie2747fdb2008-05-21 15:54:08 -0500448 ctask = session->cmds[i];
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300449 iser_ctask = ctask->dd_data;
450 ctask->hdr = (struct iscsi_cmd *)&iser_ctask->desc.iscsi_header;
Boaz Harrosh38ad03d2007-12-13 12:43:24 -0600451 ctask->hdr_max = sizeof(iser_ctask->desc.iscsi_header);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300452 }
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300453 return cls_session;
Mike Christie75613522008-05-21 15:53:59 -0500454
455remove_host:
Mike Christiea4804cd2008-05-21 15:54:00 -0500456 iscsi_host_remove(shost);
Mike Christie75613522008-05-21 15:53:59 -0500457free_host:
Mike Christiea4804cd2008-05-21 15:54:00 -0500458 iscsi_host_free(shost);
Mike Christie75613522008-05-21 15:53:59 -0500459 return NULL;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300460}
461
462static int
Mike Christie358ff012006-06-28 12:00:25 -0500463iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
464 enum iscsi_param param, char *buf, int buflen)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300465{
Mike Christie358ff012006-06-28 12:00:25 -0500466 int value;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300467
468 switch (param) {
469 case ISCSI_PARAM_MAX_RECV_DLENGTH:
470 /* TBD */
471 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300472 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500473 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300474 if (value) {
475 printk(KERN_ERR "DataDigest wasn't negotiated to None");
476 return -EPROTO;
477 }
478 break;
479 case ISCSI_PARAM_DATADGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500480 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300481 if (value) {
482 printk(KERN_ERR "DataDigest wasn't negotiated to None");
483 return -EPROTO;
484 }
485 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300486 case ISCSI_PARAM_IFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500487 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300488 if (value) {
489 printk(KERN_ERR "IFMarker wasn't negotiated to No");
490 return -EPROTO;
491 }
492 break;
493 case ISCSI_PARAM_OFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500494 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300495 if (value) {
496 printk(KERN_ERR "OFMarker wasn't negotiated to No");
497 return -EPROTO;
498 }
499 break;
500 default:
Mike Christie358ff012006-06-28 12:00:25 -0500501 return iscsi_set_param(cls_conn, param, buf, buflen);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300502 }
503
504 return 0;
505}
506
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300507static void
508iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
509{
510 struct iscsi_conn *conn = cls_conn->dd_data;
511
512 stats->txdata_octets = conn->txdata_octets;
513 stats->rxdata_octets = conn->rxdata_octets;
514 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
515 stats->dataout_pdus = conn->dataout_pdus_cnt;
516 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
517 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
518 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
519 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
520 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700521 stats->custom_length = 4;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300522 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
523 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
524 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
525 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
526 strcpy(stats->custom[2].desc, "eh_abort_cnt");
527 stats->custom[2].value = conn->eh_abort_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700528 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
529 stats->custom[3].value = conn->fmr_unalign_cnt;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300530}
531
532static int
533iscsi_iser_ep_connect(struct sockaddr *dst_addr, int non_blocking,
534 __u64 *ep_handle)
535{
536 int err;
537 struct iser_conn *ib_conn;
538
539 err = iser_conn_init(&ib_conn);
540 if (err)
541 goto out;
542
543 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr, non_blocking);
544 if (!err)
545 *ep_handle = (__u64)(unsigned long)ib_conn;
546
547out:
548 return err;
549}
550
551static int
552iscsi_iser_ep_poll(__u64 ep_handle, int timeout_ms)
553{
554 struct iser_conn *ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
555 int rc;
556
557 if (!ib_conn)
558 return -EINVAL;
559
560 rc = wait_event_interruptible_timeout(ib_conn->wait,
561 ib_conn->state == ISER_CONN_UP,
562 msecs_to_jiffies(timeout_ms));
563
564 /* if conn establishment failed, return error code to iscsi */
565 if (!rc &&
566 (ib_conn->state == ISER_CONN_TERMINATING ||
567 ib_conn->state == ISER_CONN_DOWN))
568 rc = -1;
569
570 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
571
572 if (rc > 0)
573 return 1; /* success, this is the equivalent of POLLOUT */
574 else if (!rc)
575 return 0; /* timeout */
576 else
577 return rc; /* signal */
578}
579
580static void
581iscsi_iser_ep_disconnect(__u64 ep_handle)
582{
Mike Christie1c834692006-07-24 15:47:26 -0500583 struct iser_conn *ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300584
Mike Christie1c834692006-07-24 15:47:26 -0500585 ib_conn = iscsi_iser_ib_conn_lookup(ep_handle);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300586 if (!ib_conn)
587 return;
588
Mike Christieb40977d2008-05-21 15:54:03 -0500589 if (ib_conn->iser_conn)
590 /*
591 * Must suspend xmit path if the ep is bound to the
592 * iscsi_conn, so we know we are not accessing the ib_conn
593 * when we free it.
594 *
595 * This may not be bound if the ep poll failed.
596 */
597 iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn);
598
599
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300600 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300601 iser_conn_terminate(ib_conn);
602}
603
604static struct scsi_host_template iscsi_iser_sht = {
Mike Christie79743922007-07-26 12:46:46 -0500605 .module = THIS_MODULE,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300606 .name = "iSCSI Initiator over iSER, v." DRV_VER,
607 .queuecommand = iscsi_queuecommand,
Erez Zilber64106272008-01-17 11:53:17 +0200608 .change_queue_depth = iscsi_change_queue_depth,
Mike Christie15482712007-05-30 12:57:19 -0500609 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300610 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
Erez Zilber8072ec22006-09-11 12:20:54 +0300611 .max_sectors = 1024,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300612 .cmd_per_lun = ISCSI_MAX_CMD_PER_LUN,
613 .eh_abort_handler = iscsi_eh_abort,
Erez Zilber90c18f32008-01-22 12:06:25 +0200614 .eh_device_reset_handler= iscsi_eh_device_reset,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300615 .eh_host_reset_handler = iscsi_eh_host_reset,
616 .use_clustering = DISABLE_CLUSTERING,
617 .proc_name = "iscsi_iser",
618 .this_id = -1,
619};
620
621static struct iscsi_transport iscsi_iser_transport = {
622 .owner = THIS_MODULE,
623 .name = "iser",
624 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
625 .param_mask = ISCSI_MAX_RECV_DLENGTH |
626 ISCSI_MAX_XMIT_DLENGTH |
627 ISCSI_HDRDGST_EN |
628 ISCSI_DATADGST_EN |
629 ISCSI_INITIAL_R2T_EN |
630 ISCSI_MAX_R2T |
631 ISCSI_IMM_DATA_EN |
632 ISCSI_FIRST_BURST |
633 ISCSI_MAX_BURST |
634 ISCSI_PDU_INORDER_EN |
Mike Christie358ff012006-06-28 12:00:25 -0500635 ISCSI_DATASEQ_INORDER_EN |
636 ISCSI_EXP_STATSN |
637 ISCSI_PERSISTENT_PORT |
638 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -0500639 ISCSI_TARGET_NAME | ISCSI_TPGT |
640 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christief6d51802007-12-13 12:43:30 -0600641 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
642 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
643 ISCSI_PING_TMO | ISCSI_RECV_TMO,
Mike Christie8ad57812007-05-30 12:57:13 -0500644 .host_param_mask = ISCSI_HOST_HWADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -0500645 ISCSI_HOST_NETDEV_NAME |
Mike Christie8ad57812007-05-30 12:57:13 -0500646 ISCSI_HOST_INITIATOR_NAME,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300647 /* session management */
648 .create_session = iscsi_iser_session_create,
Mike Christie75613522008-05-21 15:53:59 -0500649 .destroy_session = iscsi_iser_session_destroy,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300650 /* connection management */
651 .create_conn = iscsi_iser_conn_create,
652 .bind_conn = iscsi_iser_conn_bind,
653 .destroy_conn = iscsi_iser_conn_destroy,
Mike Christie358ff012006-06-28 12:00:25 -0500654 .set_param = iscsi_iser_set_param,
655 .get_conn_param = iscsi_conn_get_param,
656 .get_session_param = iscsi_session_get_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300657 .start_conn = iscsi_iser_conn_start,
Mike Christieb40977d2008-05-21 15:54:03 -0500658 .stop_conn = iscsi_iser_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -0500659 /* iscsi host params */
660 .get_host_param = iscsi_host_get_param,
661 .set_host_param = iscsi_host_set_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300662 /* IO */
663 .send_pdu = iscsi_conn_send_pdu,
664 .get_stats = iscsi_iser_conn_get_stats,
Mike Christie2747fdb2008-05-21 15:54:08 -0500665 .init_task = iscsi_iser_task_init,
666 .xmit_task = iscsi_iser_task_xmit,
667 .cleanup_task = iscsi_iser_cleanup_task,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300668 /* recovery */
669 .session_recovery_timedout = iscsi_session_recovery_timedout,
670
671 .ep_connect = iscsi_iser_ep_connect,
672 .ep_poll = iscsi_iser_ep_poll,
673 .ep_disconnect = iscsi_iser_ep_disconnect
674};
675
676static int __init iser_init(void)
677{
678 int err;
679
680 iser_dbg("Starting iSER datamover...\n");
681
682 if (iscsi_max_lun < 1) {
683 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
684 return -EINVAL;
685 }
686
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300687 memset(&ig, 0, sizeof(struct iser_global));
688
689 ig.desc_cache = kmem_cache_create("iser_descriptors",
690 sizeof (struct iser_desc),
691 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900692 NULL);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300693 if (ig.desc_cache == NULL)
694 return -ENOMEM;
695
696 /* device init is called only after the first addr resolution */
697 mutex_init(&ig.device_list_mutex);
698 INIT_LIST_HEAD(&ig.device_list);
699 mutex_init(&ig.connlist_mutex);
700 INIT_LIST_HEAD(&ig.connlist);
701
Mike Christie75613522008-05-21 15:53:59 -0500702 iscsi_iser_scsi_transport = iscsi_register_transport(
703 &iscsi_iser_transport);
704 if (!iscsi_iser_scsi_transport) {
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300705 iser_err("iscsi_register_transport failed\n");
706 err = -EINVAL;
707 goto register_transport_failure;
708 }
709
710 return 0;
711
712register_transport_failure:
713 kmem_cache_destroy(ig.desc_cache);
714
715 return err;
716}
717
718static void __exit iser_exit(void)
719{
720 iser_dbg("Removing iSER datamover...\n");
721 iscsi_unregister_transport(&iscsi_iser_transport);
722 kmem_cache_destroy(ig.desc_cache);
723}
724
725module_init(iser_init);
726module_exit(iser_exit);