blob: 331147b71a916a8b6c3b532032f68bee0135bdff [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
Or Gerlitz65e7ae72006-05-11 10:00:44 +030045 */
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>
Or Gerlitz65e7ae72006-05-11 10:00:44 +030054#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
Mike Christie75613522008-05-21 15:53:59 -050074static struct scsi_host_template iscsi_iser_sht;
75static struct iscsi_transport iscsi_iser_transport;
76static struct scsi_transport_template *iscsi_iser_scsi_transport;
77
Or Gerlitz65e7ae72006-05-11 10:00:44 +030078static 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;
Or Gerlitz65e7ae72006-05-11 10:00:44 +030098 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
Mike Christie0af967f2008-05-21 15:54:04 -0500113 rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300114 if (rc && rc != ISCSI_ERR_NO_SCSI_CMD)
115 goto error;
116
117 return;
118error:
119 iscsi_conn_failure(conn, rc);
120}
121
Mike Christie2ff79d52008-12-02 00:32:14 -0600122static int iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
Mike Christie0f9c7442008-12-02 00:32:06 -0600123{
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}
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300130
Or Gerlitzf19624a2010-02-08 13:19:56 +0000131int iser_initialize_task_headers(struct iscsi_task *task,
132 struct iser_tx_desc *tx_desc)
133{
134 struct iscsi_iser_conn *iser_conn = task->conn->dd_data;
135 struct iser_device *device = iser_conn->ib_conn->device;
136 struct iscsi_iser_task *iser_task = task->dd_data;
137 u64 dma_addr;
138
139 dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc,
140 ISER_HEADERS_LEN, DMA_TO_DEVICE);
141 if (ib_dma_mapping_error(device->ib_device, dma_addr))
142 return -ENOMEM;
143
144 tx_desc->dma_addr = dma_addr;
145 tx_desc->tx_sg[0].addr = tx_desc->dma_addr;
146 tx_desc->tx_sg[0].length = ISER_HEADERS_LEN;
147 tx_desc->tx_sg[0].lkey = device->mr->lkey;
148
149 iser_task->headers_initialized = 1;
150 iser_task->iser_conn = iser_conn;
151 return 0;
152}
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300153/**
Mike Christie2261ec32008-05-21 15:54:11 -0500154 * iscsi_iser_task_init - Initialize task
155 * @task: iscsi task
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300156 *
Mike Christie2261ec32008-05-21 15:54:11 -0500157 * Initialize the task for the scsi command or mgmt command.
Mike Christie2747fdb2008-05-21 15:54:08 -0500158 */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600159static int
Mike Christie2261ec32008-05-21 15:54:11 -0500160iscsi_iser_task_init(struct iscsi_task *task)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300161{
Mike Christie2261ec32008-05-21 15:54:11 -0500162 struct iscsi_iser_task *iser_task = task->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300163
Or Gerlitzf19624a2010-02-08 13:19:56 +0000164 if (!iser_task->headers_initialized)
165 if (iser_initialize_task_headers(task, &iser_task->desc))
166 return -ENOMEM;
167
Mike Christie2261ec32008-05-21 15:54:11 -0500168 /* mgmt task */
Or Gerlitzf19624a2010-02-08 13:19:56 +0000169 if (!task->sc)
Mike Christie2747fdb2008-05-21 15:54:08 -0500170 return 0;
Mike Christie2747fdb2008-05-21 15:54:08 -0500171
Mike Christie2261ec32008-05-21 15:54:11 -0500172 iser_task->command_sent = 0;
Mike Christie2261ec32008-05-21 15:54:11 -0500173 iser_task_rdma_init(iser_task);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600174 return 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300175}
176
177/**
Mike Christie2261ec32008-05-21 15:54:11 -0500178 * iscsi_iser_mtask_xmit - xmit management(immediate) task
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300179 * @conn: iscsi connection
Mike Christie2261ec32008-05-21 15:54:11 -0500180 * @task: task management task
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300181 *
182 * Notes:
183 * The function can return -EAGAIN in which case caller must
184 * call it again later, or recover. '0' return code means successful
185 * xmit.
186 *
187 **/
188static int
Mike Christie2261ec32008-05-21 15:54:11 -0500189iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300190{
191 int error = 0;
192
Mike Christie48a237a2009-03-05 14:45:57 -0600193 iser_dbg("task deq [cid %d itt 0x%x]\n", conn->id, task->itt);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300194
Mike Christie2261ec32008-05-21 15:54:11 -0500195 error = iser_send_control(conn, task);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300196
Mike Christie2261ec32008-05-21 15:54:11 -0500197 /* since iser xmits control with zero copy, tasks can not be recycled
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300198 * right after sending them.
199 * The recycling scheme is based on whether a response is expected
Mike Christie2261ec32008-05-21 15:54:11 -0500200 * - if yes, the task is recycled at iscsi_complete_pdu
201 * - if no, the task is recycled at iser_snd_completion
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300202 */
Erez Zilberf0938402007-01-07 12:28:02 +0200203 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300204 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
205
206 return error;
207}
208
209static int
Mike Christie2747fdb2008-05-21 15:54:08 -0500210iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn,
Mike Christie2261ec32008-05-21 15:54:11 -0500211 struct iscsi_task *task)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300212{
Mike Christie0f9c7442008-12-02 00:32:06 -0600213 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
214 struct iscsi_data hdr;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300215 int error = 0;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300216
217 /* Send data-out PDUs while there's still unsolicited data to send */
Mike Christie0f9c7442008-12-02 00:32:06 -0600218 while (iscsi_task_has_unsol_data(task)) {
219 iscsi_prep_data_out_pdu(task, r2t, &hdr);
Mike Christie48a237a2009-03-05 14:45:57 -0600220 iser_dbg("Sending data-out: itt 0x%x, data count %d\n",
Mike Christie0f9c7442008-12-02 00:32:06 -0600221 hdr.itt, r2t->data_count);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300222
223 /* the buffer description has been passed with the command */
224 /* Send the command */
Mike Christie2261ec32008-05-21 15:54:11 -0500225 error = iser_send_data_out(conn, task, &hdr);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300226 if (error) {
Mike Christie0f9c7442008-12-02 00:32:06 -0600227 r2t->datasn--;
Mike Christie2747fdb2008-05-21 15:54:08 -0500228 goto iscsi_iser_task_xmit_unsol_data_exit;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300229 }
Mike Christie0f9c7442008-12-02 00:32:06 -0600230 r2t->sent += r2t->data_count;
Mike Christie48a237a2009-03-05 14:45:57 -0600231 iser_dbg("Need to send %d more as data-out PDUs\n",
Mike Christie0f9c7442008-12-02 00:32:06 -0600232 r2t->data_length - r2t->sent);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300233 }
234
Mike Christie2747fdb2008-05-21 15:54:08 -0500235iscsi_iser_task_xmit_unsol_data_exit:
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300236 return error;
237}
238
239static int
Mike Christie2261ec32008-05-21 15:54:11 -0500240iscsi_iser_task_xmit(struct iscsi_task *task)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300241{
Mike Christie2261ec32008-05-21 15:54:11 -0500242 struct iscsi_conn *conn = task->conn;
243 struct iscsi_iser_task *iser_task = task->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300244 int error = 0;
245
Mike Christie2261ec32008-05-21 15:54:11 -0500246 if (!task->sc)
247 return iscsi_iser_mtask_xmit(conn, task);
Mike Christie2747fdb2008-05-21 15:54:08 -0500248
Mike Christie2261ec32008-05-21 15:54:11 -0500249 if (task->sc->sc_data_direction == DMA_TO_DEVICE) {
250 BUG_ON(scsi_bufflen(task->sc) == 0);
Mike Christie77a23c22007-05-30 12:57:18 -0500251
Mike Christie48a237a2009-03-05 14:45:57 -0600252 iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n",
Mike Christie2261ec32008-05-21 15:54:11 -0500253 task->itt, scsi_bufflen(task->sc),
Mike Christie0f9c7442008-12-02 00:32:06 -0600254 task->imm_count, task->unsol_r2t.data_length);
Mike Christie77a23c22007-05-30 12:57:18 -0500255 }
256
Mike Christie48a237a2009-03-05 14:45:57 -0600257 iser_dbg("task deq [cid %d itt 0x%x]\n",
Mike Christie2261ec32008-05-21 15:54:11 -0500258 conn->id, task->itt);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300259
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300260 /* Send the cmd PDU */
Mike Christie2261ec32008-05-21 15:54:11 -0500261 if (!iser_task->command_sent) {
262 error = iser_send_command(conn, task);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300263 if (error)
Mike Christie2747fdb2008-05-21 15:54:08 -0500264 goto iscsi_iser_task_xmit_exit;
Mike Christie2261ec32008-05-21 15:54:11 -0500265 iser_task->command_sent = 1;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300266 }
267
268 /* Send unsolicited data-out PDU(s) if necessary */
Mike Christie0f9c7442008-12-02 00:32:06 -0600269 if (iscsi_task_has_unsol_data(task))
Mike Christie2261ec32008-05-21 15:54:11 -0500270 error = iscsi_iser_task_xmit_unsol_data(conn, task);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300271
Mike Christie2747fdb2008-05-21 15:54:08 -0500272 iscsi_iser_task_xmit_exit:
Erez Zilberf0938402007-01-07 12:28:02 +0200273 if (error && error != -ENOBUFS)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300274 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
275 return error;
276}
277
Mike Christie0f9c7442008-12-02 00:32:06 -0600278static void iscsi_iser_cleanup_task(struct iscsi_task *task)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300279{
Mike Christie2261ec32008-05-21 15:54:11 -0500280 struct iscsi_iser_task *iser_task = task->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300281
Mike Christieb3cd5052009-05-13 17:57:49 -0500282 /* mgmt tasks do not need special cleanup */
283 if (!task->sc)
Mike Christie2747fdb2008-05-21 15:54:08 -0500284 return;
285
Mike Christie2261ec32008-05-21 15:54:11 -0500286 if (iser_task->status == ISER_TASK_STATUS_STARTED) {
287 iser_task->status = ISER_TASK_STATUS_COMPLETED;
288 iser_task_rdma_finalize(iser_task);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300289 }
290}
291
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300292static struct iscsi_cls_conn *
293iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx)
294{
295 struct iscsi_conn *conn;
296 struct iscsi_cls_conn *cls_conn;
297 struct iscsi_iser_conn *iser_conn;
298
Mike Christie5d91e202008-05-21 15:54:01 -0500299 cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300300 if (!cls_conn)
301 return NULL;
302 conn = cls_conn->dd_data;
303
304 /*
305 * due to issues with the login code re iser sematics
306 * this not set in iscsi_conn_setup - FIXME
307 */
Or Gerlitzbcc60c32010-02-08 13:17:42 +0000308 conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300309
Mike Christie5d91e202008-05-21 15:54:01 -0500310 iser_conn = conn->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300311 conn->dd_data = iser_conn;
312 iser_conn->iscsi_conn = conn;
313
314 return cls_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300315}
316
317static void
318iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn)
319{
320 struct iscsi_conn *conn = cls_conn->dd_data;
321 struct iscsi_iser_conn *iser_conn = conn->dd_data;
Mike Christieb40977d2008-05-21 15:54:03 -0500322 struct iser_conn *ib_conn = iser_conn->ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300323
324 iscsi_conn_teardown(cls_conn);
Mike Christieb40977d2008-05-21 15:54:03 -0500325 /*
326 * Userspace will normally call the stop callback and
327 * already have freed the ib_conn, but if it goofed up then
328 * we free it here.
329 */
330 if (ib_conn) {
331 ib_conn->iser_conn = NULL;
332 iser_conn_put(ib_conn);
333 }
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300334}
335
336static int
337iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session,
338 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
339 int is_leading)
340{
341 struct iscsi_conn *conn = cls_conn->dd_data;
342 struct iscsi_iser_conn *iser_conn;
343 struct iser_conn *ib_conn;
Mike Christie412eeaf2008-05-21 15:54:14 -0500344 struct iscsi_endpoint *ep;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300345 int error;
346
347 error = iscsi_conn_bind(cls_session, cls_conn, is_leading);
348 if (error)
349 return error;
350
351 /* the transport ep handle comes from user space so it must be
352 * verified against the global ib connections list */
Mike Christie412eeaf2008-05-21 15:54:14 -0500353 ep = iscsi_lookup_endpoint(transport_eph);
354 if (!ep) {
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300355 iser_err("can't bind eph %llx\n",
356 (unsigned long long)transport_eph);
357 return -EINVAL;
358 }
Mike Christie412eeaf2008-05-21 15:54:14 -0500359 ib_conn = ep->dd_data;
360
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300361 /* binds the iSER connection retrieved from the previously
362 * connected ep_handle to the iSCSI layer connection. exchanges
363 * connection pointers */
364 iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn);
365 iser_conn = conn->dd_data;
366 ib_conn->iser_conn = iser_conn;
367 iser_conn->ib_conn = ib_conn;
Mike Christieb40977d2008-05-21 15:54:03 -0500368 iser_conn_get(ib_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300369 return 0;
370}
371
Mike Christieb40977d2008-05-21 15:54:03 -0500372static void
373iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
374{
375 struct iscsi_conn *conn = cls_conn->dd_data;
376 struct iscsi_iser_conn *iser_conn = conn->dd_data;
377 struct iser_conn *ib_conn = iser_conn->ib_conn;
378
Mike Christieb40977d2008-05-21 15:54:03 -0500379 /*
Mike Christie913e5bf2008-05-21 15:54:18 -0500380 * Userspace may have goofed up and not bound the connection or
381 * might have only partially setup the connection.
Mike Christieb40977d2008-05-21 15:54:03 -0500382 */
Mike Christie913e5bf2008-05-21 15:54:18 -0500383 if (ib_conn) {
384 iscsi_conn_stop(cls_conn, flag);
385 /*
386 * There is no unbind event so the stop callback
387 * must release the ref from the bind.
388 */
389 iser_conn_put(ib_conn);
390 }
Mike Christieb40977d2008-05-21 15:54:03 -0500391 iser_conn->ib_conn = NULL;
392}
393
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300394static int
395iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn)
396{
397 struct iscsi_conn *conn = cls_conn->dd_data;
398 int err;
399
Erez Zilber2e7a7422006-10-22 10:28:38 +0200400 err = iser_conn_set_full_featured_mode(conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300401 if (err)
402 return err;
403
Erez Zilber2e7a7422006-10-22 10:28:38 +0200404 return iscsi_conn_start(cls_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300405}
406
Mike Christie75613522008-05-21 15:53:59 -0500407static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session)
408{
409 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
410
Mike Christiee5bd7b52008-09-24 11:46:10 -0500411 iscsi_session_teardown(cls_session);
Mike Christiea4804cd2008-05-21 15:54:00 -0500412 iscsi_host_remove(shost);
413 iscsi_host_free(shost);
Mike Christie75613522008-05-21 15:53:59 -0500414}
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300415
416static struct iscsi_cls_session *
Mike Christie412eeaf2008-05-21 15:54:14 -0500417iscsi_iser_session_create(struct iscsi_endpoint *ep,
Mike Christie75613522008-05-21 15:53:59 -0500418 uint16_t cmds_max, uint16_t qdepth,
Mike Christie5e7facb2009-03-05 14:46:06 -0600419 uint32_t initial_cmdsn)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300420{
421 struct iscsi_cls_session *cls_session;
422 struct iscsi_session *session;
Mike Christie412eeaf2008-05-21 15:54:14 -0500423 struct Scsi_Host *shost;
Mike Christie412eeaf2008-05-21 15:54:14 -0500424 struct iser_conn *ib_conn;
Mike Christie75613522008-05-21 15:53:59 -0500425
Mike Christie4d108352009-03-05 14:46:04 -0600426 shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 1);
Mike Christie75613522008-05-21 15:53:59 -0500427 if (!shost)
428 return NULL;
429 shost->transportt = iscsi_iser_scsi_transport;
430 shost->max_lun = iscsi_max_lun;
431 shost->max_id = 0;
432 shost->max_channel = 0;
433 shost->max_cmd_len = 16;
434
Mike Christie412eeaf2008-05-21 15:54:14 -0500435 /*
436 * older userspace tools (before 2.0-870) did not pass us
437 * the leading conn's ep so this will be NULL;
438 */
439 if (ep)
440 ib_conn = ep->dd_data;
441
442 if (iscsi_host_add(shost,
443 ep ? ib_conn->device->ib_device->dma_device : NULL))
Mike Christie75613522008-05-21 15:53:59 -0500444 goto free_host;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300445
Mike Christie15482712007-05-30 12:57:19 -0500446 /*
447 * we do not support setting can_queue cmd_per_lun from userspace yet
448 * because we preallocate so many resources
449 */
Mike Christie75613522008-05-21 15:53:59 -0500450 cls_session = iscsi_session_setup(&iscsi_iser_transport, shost,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +0530451 ISCSI_DEF_XMIT_CMDS_MAX, 0,
Mike Christie2261ec32008-05-21 15:54:11 -0500452 sizeof(struct iscsi_iser_task),
Mike Christie79706342008-05-21 15:54:12 -0500453 initial_cmdsn, 0);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300454 if (!cls_session)
Mike Christie75613522008-05-21 15:53:59 -0500455 goto remove_host;
456 session = cls_session->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300457
Mike Christie2747fdb2008-05-21 15:54:08 -0500458 shost->can_queue = session->scsi_cmds_max;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300459 return cls_session;
Mike Christie75613522008-05-21 15:53:59 -0500460
461remove_host:
Mike Christiea4804cd2008-05-21 15:54:00 -0500462 iscsi_host_remove(shost);
Mike Christie75613522008-05-21 15:53:59 -0500463free_host:
Mike Christiea4804cd2008-05-21 15:54:00 -0500464 iscsi_host_free(shost);
Mike Christie75613522008-05-21 15:53:59 -0500465 return NULL;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300466}
467
468static int
Mike Christie358ff012006-06-28 12:00:25 -0500469iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn,
470 enum iscsi_param param, char *buf, int buflen)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300471{
Mike Christie358ff012006-06-28 12:00:25 -0500472 int value;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300473
474 switch (param) {
475 case ISCSI_PARAM_MAX_RECV_DLENGTH:
476 /* TBD */
477 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300478 case ISCSI_PARAM_HDRDGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500479 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300480 if (value) {
481 printk(KERN_ERR "DataDigest wasn't negotiated to None");
482 return -EPROTO;
483 }
484 break;
485 case ISCSI_PARAM_DATADGST_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500486 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300487 if (value) {
488 printk(KERN_ERR "DataDigest wasn't negotiated to None");
489 return -EPROTO;
490 }
491 break;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300492 case ISCSI_PARAM_IFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500493 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300494 if (value) {
495 printk(KERN_ERR "IFMarker wasn't negotiated to No");
496 return -EPROTO;
497 }
498 break;
499 case ISCSI_PARAM_OFMARKER_EN:
Mike Christie358ff012006-06-28 12:00:25 -0500500 sscanf(buf, "%d", &value);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300501 if (value) {
502 printk(KERN_ERR "OFMarker wasn't negotiated to No");
503 return -EPROTO;
504 }
505 break;
506 default:
Mike Christie358ff012006-06-28 12:00:25 -0500507 return iscsi_set_param(cls_conn, param, buf, buflen);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300508 }
509
510 return 0;
511}
512
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300513static void
514iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats)
515{
516 struct iscsi_conn *conn = cls_conn->dd_data;
517
518 stats->txdata_octets = conn->txdata_octets;
519 stats->rxdata_octets = conn->rxdata_octets;
520 stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
521 stats->dataout_pdus = conn->dataout_pdus_cnt;
522 stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
523 stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */
524 stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */
525 stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
526 stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700527 stats->custom_length = 4;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300528 strcpy(stats->custom[0].desc, "qp_tx_queue_full");
529 stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */
530 strcpy(stats->custom[1].desc, "fmr_map_not_avail");
531 stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */;
532 strcpy(stats->custom[2].desc, "eh_abort_cnt");
533 stats->custom[2].value = conn->eh_abort_cnt;
Eli Dorfman87528222008-04-29 13:46:52 -0700534 strcpy(stats->custom[3].desc, "fmr_unalign_cnt");
535 stats->custom[3].value = conn->fmr_unalign_cnt;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300536}
537
Mike Christie412eeaf2008-05-21 15:54:14 -0500538static struct iscsi_endpoint *
Mike Christie10eb0f02009-05-13 17:57:38 -0500539iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
540 int non_blocking)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300541{
542 int err;
543 struct iser_conn *ib_conn;
Mike Christie412eeaf2008-05-21 15:54:14 -0500544 struct iscsi_endpoint *ep;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300545
Mike Christie412eeaf2008-05-21 15:54:14 -0500546 ep = iscsi_create_endpoint(sizeof(*ib_conn));
547 if (!ep)
548 return ERR_PTR(-ENOMEM);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300549
Mike Christie412eeaf2008-05-21 15:54:14 -0500550 ib_conn = ep->dd_data;
551 ib_conn->ep = ep;
552 iser_conn_init(ib_conn);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300553
Mike Christie412eeaf2008-05-21 15:54:14 -0500554 err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr,
555 non_blocking);
556 if (err) {
557 iscsi_destroy_endpoint(ep);
558 return ERR_PTR(err);
559 }
560 return ep;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300561}
562
563static int
Mike Christie412eeaf2008-05-21 15:54:14 -0500564iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300565{
Mike Christie412eeaf2008-05-21 15:54:14 -0500566 struct iser_conn *ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300567 int rc;
568
Mike Christie412eeaf2008-05-21 15:54:14 -0500569 ib_conn = ep->dd_data;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300570 rc = wait_event_interruptible_timeout(ib_conn->wait,
571 ib_conn->state == ISER_CONN_UP,
572 msecs_to_jiffies(timeout_ms));
573
574 /* if conn establishment failed, return error code to iscsi */
575 if (!rc &&
576 (ib_conn->state == ISER_CONN_TERMINATING ||
577 ib_conn->state == ISER_CONN_DOWN))
578 rc = -1;
579
580 iser_err("ib conn %p rc = %d\n", ib_conn, rc);
581
582 if (rc > 0)
583 return 1; /* success, this is the equivalent of POLLOUT */
584 else if (!rc)
585 return 0; /* timeout */
586 else
587 return rc; /* signal */
588}
589
590static void
Mike Christie412eeaf2008-05-21 15:54:14 -0500591iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep)
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300592{
Mike Christie1c834692006-07-24 15:47:26 -0500593 struct iser_conn *ib_conn;
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300594
Mike Christie412eeaf2008-05-21 15:54:14 -0500595 ib_conn = ep->dd_data;
Mike Christieb40977d2008-05-21 15:54:03 -0500596 if (ib_conn->iser_conn)
597 /*
598 * Must suspend xmit path if the ep is bound to the
599 * iscsi_conn, so we know we are not accessing the ib_conn
600 * when we free it.
601 *
602 * This may not be bound if the ep poll failed.
603 */
604 iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn);
605
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300606
607 iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300608 iser_conn_terminate(ib_conn);
609}
610
611static struct scsi_host_template iscsi_iser_sht = {
Mike Christie79743922007-07-26 12:46:46 -0500612 .module = THIS_MODULE,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300613 .name = "iSCSI Initiator over iSER, v." DRV_VER,
614 .queuecommand = iscsi_queuecommand,
Erez Zilber64106272008-01-17 11:53:17 +0200615 .change_queue_depth = iscsi_change_queue_depth,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300616 .sg_tablesize = ISCSI_ISER_SG_TABLESIZE,
Erez Zilber8072ec22006-09-11 12:20:54 +0300617 .max_sectors = 1024,
Mike Christiee28f3d52009-03-05 14:46:01 -0600618 .cmd_per_lun = ISER_DEF_CMD_PER_LUN,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300619 .eh_abort_handler = iscsi_eh_abort,
Erez Zilber90c18f32008-01-22 12:06:25 +0200620 .eh_device_reset_handler= iscsi_eh_device_reset,
Mike Christie8e124522008-09-24 11:46:12 -0500621 .eh_target_reset_handler= iscsi_eh_target_reset,
Mike Christie6b5d6c42009-04-21 15:32:32 -0500622 .target_alloc = iscsi_target_alloc,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300623 .use_clustering = DISABLE_CLUSTERING,
624 .proc_name = "iscsi_iser",
625 .this_id = -1,
626};
627
628static struct iscsi_transport iscsi_iser_transport = {
629 .owner = THIS_MODULE,
630 .name = "iser",
631 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T,
632 .param_mask = ISCSI_MAX_RECV_DLENGTH |
633 ISCSI_MAX_XMIT_DLENGTH |
634 ISCSI_HDRDGST_EN |
635 ISCSI_DATADGST_EN |
636 ISCSI_INITIAL_R2T_EN |
637 ISCSI_MAX_R2T |
638 ISCSI_IMM_DATA_EN |
639 ISCSI_FIRST_BURST |
640 ISCSI_MAX_BURST |
641 ISCSI_PDU_INORDER_EN |
Mike Christie358ff012006-06-28 12:00:25 -0500642 ISCSI_DATASEQ_INORDER_EN |
643 ISCSI_EXP_STATSN |
644 ISCSI_PERSISTENT_PORT |
645 ISCSI_PERSISTENT_ADDRESS |
Mike Christieb2c64162007-05-30 12:57:16 -0500646 ISCSI_TARGET_NAME | ISCSI_TPGT |
647 ISCSI_USERNAME | ISCSI_PASSWORD |
Mike Christief6d51802007-12-13 12:43:30 -0600648 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
649 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
Mike Christieb20d0382009-11-11 16:34:35 -0600650 ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO |
Mike Christie88dfd342008-05-21 15:54:16 -0500651 ISCSI_PING_TMO | ISCSI_RECV_TMO |
652 ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME,
Mike Christie8ad57812007-05-30 12:57:13 -0500653 .host_param_mask = ISCSI_HOST_HWADDRESS |
Mike Christied8196ed2007-05-30 12:57:25 -0500654 ISCSI_HOST_NETDEV_NAME |
Mike Christie8ad57812007-05-30 12:57:13 -0500655 ISCSI_HOST_INITIATOR_NAME,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300656 /* session management */
657 .create_session = iscsi_iser_session_create,
Mike Christie75613522008-05-21 15:53:59 -0500658 .destroy_session = iscsi_iser_session_destroy,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300659 /* connection management */
660 .create_conn = iscsi_iser_conn_create,
661 .bind_conn = iscsi_iser_conn_bind,
662 .destroy_conn = iscsi_iser_conn_destroy,
Mike Christie358ff012006-06-28 12:00:25 -0500663 .set_param = iscsi_iser_set_param,
664 .get_conn_param = iscsi_conn_get_param,
665 .get_session_param = iscsi_session_get_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300666 .start_conn = iscsi_iser_conn_start,
Mike Christieb40977d2008-05-21 15:54:03 -0500667 .stop_conn = iscsi_iser_conn_stop,
Mike Christie0801c242007-05-30 12:57:12 -0500668 /* iscsi host params */
669 .get_host_param = iscsi_host_get_param,
670 .set_host_param = iscsi_host_set_param,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300671 /* IO */
672 .send_pdu = iscsi_conn_send_pdu,
673 .get_stats = iscsi_iser_conn_get_stats,
Mike Christie2747fdb2008-05-21 15:54:08 -0500674 .init_task = iscsi_iser_task_init,
675 .xmit_task = iscsi_iser_task_xmit,
676 .cleanup_task = iscsi_iser_cleanup_task,
Mike Christie0f9c7442008-12-02 00:32:06 -0600677 .alloc_pdu = iscsi_iser_pdu_alloc,
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300678 /* recovery */
679 .session_recovery_timedout = iscsi_session_recovery_timedout,
680
681 .ep_connect = iscsi_iser_ep_connect,
682 .ep_poll = iscsi_iser_ep_poll,
683 .ep_disconnect = iscsi_iser_ep_disconnect
684};
685
686static int __init iser_init(void)
687{
688 int err;
689
690 iser_dbg("Starting iSER datamover...\n");
691
692 if (iscsi_max_lun < 1) {
693 printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun);
694 return -EINVAL;
695 }
696
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300697 memset(&ig, 0, sizeof(struct iser_global));
698
699 ig.desc_cache = kmem_cache_create("iser_descriptors",
Or Gerlitzf19624a2010-02-08 13:19:56 +0000700 sizeof(struct iser_tx_desc),
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300701 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900702 NULL);
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300703 if (ig.desc_cache == NULL)
704 return -ENOMEM;
705
706 /* device init is called only after the first addr resolution */
707 mutex_init(&ig.device_list_mutex);
708 INIT_LIST_HEAD(&ig.device_list);
709 mutex_init(&ig.connlist_mutex);
710 INIT_LIST_HEAD(&ig.connlist);
711
Mike Christie75613522008-05-21 15:53:59 -0500712 iscsi_iser_scsi_transport = iscsi_register_transport(
713 &iscsi_iser_transport);
714 if (!iscsi_iser_scsi_transport) {
Or Gerlitz65e7ae72006-05-11 10:00:44 +0300715 iser_err("iscsi_register_transport failed\n");
716 err = -EINVAL;
717 goto register_transport_failure;
718 }
719
720 return 0;
721
722register_transport_failure:
723 kmem_cache_destroy(ig.desc_cache);
724
725 return err;
726}
727
728static void __exit iser_exit(void)
729{
730 iser_dbg("Removing iSER datamover...\n");
731 iscsi_unregister_transport(&iscsi_iser_transport);
732 kmem_cache_destroy(ig.desc_cache);
733}
734
735module_init(iser_init);
736module_exit(iser_exit);