Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 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 |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 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> |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 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 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 74 | static struct scsi_host_template iscsi_iser_sht; |
| 75 | static struct iscsi_transport iscsi_iser_transport; |
| 76 | static struct scsi_transport_template *iscsi_iser_scsi_transport; |
| 77 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 78 | static unsigned int iscsi_max_lun = 512; |
| 79 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); |
| 80 | |
| 81 | int iser_debug_level = 0; |
| 82 | |
| 83 | MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover " |
| 84 | "v" DRV_VER " (" DRV_DATE ")"); |
| 85 | MODULE_LICENSE("Dual BSD/GPL"); |
| 86 | MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz"); |
| 87 | |
| 88 | module_param_named(debug_level, iser_debug_level, int, 0644); |
| 89 | MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)"); |
| 90 | |
| 91 | struct iser_global ig; |
| 92 | |
| 93 | void |
| 94 | iscsi_iser_recv(struct iscsi_conn *conn, |
| 95 | struct iscsi_hdr *hdr, char *rx_data, int rx_data_len) |
| 96 | { |
| 97 | int rc = 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 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 | |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 113 | rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 114 | if (rc && rc != ISCSI_ERR_NO_SCSI_CMD) |
| 115 | goto error; |
| 116 | |
| 117 | return; |
| 118 | error: |
| 119 | iscsi_conn_failure(conn, rc); |
| 120 | } |
| 121 | |
Mike Christie | 2ff79d5 | 2008-12-02 00:32:14 -0600 | [diff] [blame] | 122 | static int iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode) |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 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 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 130 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 131 | int 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 Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 153 | /** |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 154 | * iscsi_iser_task_init - Initialize task |
| 155 | * @task: iscsi task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 156 | * |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 157 | * Initialize the task for the scsi command or mgmt command. |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 158 | */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 159 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 160 | iscsi_iser_task_init(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 161 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 162 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 163 | |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 164 | if (!iser_task->headers_initialized) |
| 165 | if (iser_initialize_task_headers(task, &iser_task->desc)) |
| 166 | return -ENOMEM; |
| 167 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 168 | /* mgmt task */ |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 169 | if (!task->sc) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 170 | return 0; |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 171 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 172 | iser_task->command_sent = 0; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 173 | iser_task_rdma_init(iser_task); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 174 | return 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /** |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 178 | * iscsi_iser_mtask_xmit - xmit management(immediate) task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 179 | * @conn: iscsi connection |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 180 | * @task: task management task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 181 | * |
| 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 | **/ |
| 188 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 189 | iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 190 | { |
| 191 | int error = 0; |
| 192 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame^] | 193 | iser_dbg("mtask xmit [cid %d itt 0x%x]\n", conn->id, task->itt); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 194 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 195 | error = iser_send_control(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 196 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 197 | /* since iser xmits control with zero copy, tasks can not be recycled |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 198 | * right after sending them. |
| 199 | * The recycling scheme is based on whether a response is expected |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 200 | * - if yes, the task is recycled at iscsi_complete_pdu |
| 201 | * - if no, the task is recycled at iser_snd_completion |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 202 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 203 | return error; |
| 204 | } |
| 205 | |
| 206 | static int |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 207 | iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 208 | struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 209 | { |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 210 | struct iscsi_r2t_info *r2t = &task->unsol_r2t; |
| 211 | struct iscsi_data hdr; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 212 | int error = 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 213 | |
| 214 | /* Send data-out PDUs while there's still unsolicited data to send */ |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 215 | while (iscsi_task_has_unsol_data(task)) { |
| 216 | iscsi_prep_data_out_pdu(task, r2t, &hdr); |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 217 | iser_dbg("Sending data-out: itt 0x%x, data count %d\n", |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 218 | hdr.itt, r2t->data_count); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 219 | |
| 220 | /* the buffer description has been passed with the command */ |
| 221 | /* Send the command */ |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 222 | error = iser_send_data_out(conn, task, &hdr); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 223 | if (error) { |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 224 | r2t->datasn--; |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 225 | goto iscsi_iser_task_xmit_unsol_data_exit; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 226 | } |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 227 | r2t->sent += r2t->data_count; |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 228 | iser_dbg("Need to send %d more as data-out PDUs\n", |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 229 | r2t->data_length - r2t->sent); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 230 | } |
| 231 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 232 | iscsi_iser_task_xmit_unsol_data_exit: |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 233 | return error; |
| 234 | } |
| 235 | |
| 236 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 237 | iscsi_iser_task_xmit(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 238 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 239 | struct iscsi_conn *conn = task->conn; |
| 240 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 241 | int error = 0; |
| 242 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 243 | if (!task->sc) |
| 244 | return iscsi_iser_mtask_xmit(conn, task); |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 245 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 246 | if (task->sc->sc_data_direction == DMA_TO_DEVICE) { |
| 247 | BUG_ON(scsi_bufflen(task->sc) == 0); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 248 | |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 249 | iser_dbg("cmd [itt %x total %d imm %d unsol_data %d\n", |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 250 | task->itt, scsi_bufflen(task->sc), |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 251 | task->imm_count, task->unsol_r2t.data_length); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 252 | } |
| 253 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame^] | 254 | iser_dbg("ctask xmit [cid %d itt 0x%x]\n", |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 255 | conn->id, task->itt); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 256 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 257 | /* Send the cmd PDU */ |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 258 | if (!iser_task->command_sent) { |
| 259 | error = iser_send_command(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 260 | if (error) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 261 | goto iscsi_iser_task_xmit_exit; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 262 | iser_task->command_sent = 1; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /* Send unsolicited data-out PDU(s) if necessary */ |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 266 | if (iscsi_task_has_unsol_data(task)) |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 267 | error = iscsi_iser_task_xmit_unsol_data(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 268 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 269 | iscsi_iser_task_xmit_exit: |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 270 | return error; |
| 271 | } |
| 272 | |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 273 | static void iscsi_iser_cleanup_task(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 274 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 275 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 276 | |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 277 | /* mgmt tasks do not need special cleanup */ |
| 278 | if (!task->sc) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 279 | return; |
| 280 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 281 | if (iser_task->status == ISER_TASK_STATUS_STARTED) { |
| 282 | iser_task->status = ISER_TASK_STATUS_COMPLETED; |
| 283 | iser_task_rdma_finalize(iser_task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 284 | } |
| 285 | } |
| 286 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 287 | static struct iscsi_cls_conn * |
| 288 | iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, uint32_t conn_idx) |
| 289 | { |
| 290 | struct iscsi_conn *conn; |
| 291 | struct iscsi_cls_conn *cls_conn; |
| 292 | struct iscsi_iser_conn *iser_conn; |
| 293 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 294 | cls_conn = iscsi_conn_setup(cls_session, sizeof(*iser_conn), conn_idx); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 295 | if (!cls_conn) |
| 296 | return NULL; |
| 297 | conn = cls_conn->dd_data; |
| 298 | |
| 299 | /* |
| 300 | * due to issues with the login code re iser sematics |
| 301 | * this not set in iscsi_conn_setup - FIXME |
| 302 | */ |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 303 | conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 304 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 305 | iser_conn = conn->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 306 | conn->dd_data = iser_conn; |
| 307 | iser_conn->iscsi_conn = conn; |
| 308 | |
| 309 | return cls_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | static void |
| 313 | iscsi_iser_conn_destroy(struct iscsi_cls_conn *cls_conn) |
| 314 | { |
| 315 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 316 | struct iscsi_iser_conn *iser_conn = conn->dd_data; |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 317 | struct iser_conn *ib_conn = iser_conn->ib_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 318 | |
| 319 | iscsi_conn_teardown(cls_conn); |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 320 | /* |
| 321 | * Userspace will normally call the stop callback and |
| 322 | * already have freed the ib_conn, but if it goofed up then |
| 323 | * we free it here. |
| 324 | */ |
| 325 | if (ib_conn) { |
| 326 | ib_conn->iser_conn = NULL; |
| 327 | iser_conn_put(ib_conn); |
| 328 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | static int |
| 332 | iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session, |
| 333 | struct iscsi_cls_conn *cls_conn, uint64_t transport_eph, |
| 334 | int is_leading) |
| 335 | { |
| 336 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 337 | struct iscsi_iser_conn *iser_conn; |
| 338 | struct iser_conn *ib_conn; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 339 | struct iscsi_endpoint *ep; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 340 | int error; |
| 341 | |
| 342 | error = iscsi_conn_bind(cls_session, cls_conn, is_leading); |
| 343 | if (error) |
| 344 | return error; |
| 345 | |
| 346 | /* the transport ep handle comes from user space so it must be |
| 347 | * verified against the global ib connections list */ |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 348 | ep = iscsi_lookup_endpoint(transport_eph); |
| 349 | if (!ep) { |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 350 | iser_err("can't bind eph %llx\n", |
| 351 | (unsigned long long)transport_eph); |
| 352 | return -EINVAL; |
| 353 | } |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 354 | ib_conn = ep->dd_data; |
| 355 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 356 | /* binds the iSER connection retrieved from the previously |
| 357 | * connected ep_handle to the iSCSI layer connection. exchanges |
| 358 | * connection pointers */ |
| 359 | iser_err("binding iscsi conn %p to iser_conn %p\n",conn,ib_conn); |
| 360 | iser_conn = conn->dd_data; |
| 361 | ib_conn->iser_conn = iser_conn; |
| 362 | iser_conn->ib_conn = ib_conn; |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 363 | iser_conn_get(ib_conn); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 364 | return 0; |
| 365 | } |
| 366 | |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 367 | static void |
| 368 | iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
| 369 | { |
| 370 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 371 | struct iscsi_iser_conn *iser_conn = conn->dd_data; |
| 372 | struct iser_conn *ib_conn = iser_conn->ib_conn; |
| 373 | |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 374 | /* |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 375 | * Userspace may have goofed up and not bound the connection or |
| 376 | * might have only partially setup the connection. |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 377 | */ |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 378 | if (ib_conn) { |
| 379 | iscsi_conn_stop(cls_conn, flag); |
| 380 | /* |
| 381 | * There is no unbind event so the stop callback |
| 382 | * must release the ref from the bind. |
| 383 | */ |
| 384 | iser_conn_put(ib_conn); |
| 385 | } |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 386 | iser_conn->ib_conn = NULL; |
| 387 | } |
| 388 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 389 | static int |
| 390 | iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn) |
| 391 | { |
| 392 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 393 | int err; |
| 394 | |
Erez Zilber | 2e7a742 | 2006-10-22 10:28:38 +0200 | [diff] [blame] | 395 | err = iser_conn_set_full_featured_mode(conn); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 396 | if (err) |
| 397 | return err; |
| 398 | |
Erez Zilber | 2e7a742 | 2006-10-22 10:28:38 +0200 | [diff] [blame] | 399 | return iscsi_conn_start(cls_conn); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 400 | } |
| 401 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 402 | static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session) |
| 403 | { |
| 404 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
| 405 | |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 406 | iscsi_session_teardown(cls_session); |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 407 | iscsi_host_remove(shost); |
| 408 | iscsi_host_free(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 409 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 410 | |
| 411 | static struct iscsi_cls_session * |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 412 | iscsi_iser_session_create(struct iscsi_endpoint *ep, |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 413 | uint16_t cmds_max, uint16_t qdepth, |
Mike Christie | 5e7facb | 2009-03-05 14:46:06 -0600 | [diff] [blame] | 414 | uint32_t initial_cmdsn) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 415 | { |
| 416 | struct iscsi_cls_session *cls_session; |
| 417 | struct iscsi_session *session; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 418 | struct Scsi_Host *shost; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 419 | struct iser_conn *ib_conn; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 420 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame^] | 421 | shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 422 | if (!shost) |
| 423 | return NULL; |
| 424 | shost->transportt = iscsi_iser_scsi_transport; |
| 425 | shost->max_lun = iscsi_max_lun; |
| 426 | shost->max_id = 0; |
| 427 | shost->max_channel = 0; |
| 428 | shost->max_cmd_len = 16; |
| 429 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 430 | /* |
| 431 | * older userspace tools (before 2.0-870) did not pass us |
| 432 | * the leading conn's ep so this will be NULL; |
| 433 | */ |
| 434 | if (ep) |
| 435 | ib_conn = ep->dd_data; |
| 436 | |
| 437 | if (iscsi_host_add(shost, |
| 438 | ep ? ib_conn->device->ib_device->dma_device : NULL)) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 439 | goto free_host; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 440 | |
Mike Christie | 1548271 | 2007-05-30 12:57:19 -0500 | [diff] [blame] | 441 | /* |
| 442 | * we do not support setting can_queue cmd_per_lun from userspace yet |
| 443 | * because we preallocate so many resources |
| 444 | */ |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 445 | cls_session = iscsi_session_setup(&iscsi_iser_transport, shost, |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 446 | ISCSI_DEF_XMIT_CMDS_MAX, 0, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 447 | sizeof(struct iscsi_iser_task), |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 448 | initial_cmdsn, 0); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 449 | if (!cls_session) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 450 | goto remove_host; |
| 451 | session = cls_session->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 452 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 453 | shost->can_queue = session->scsi_cmds_max; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 454 | return cls_session; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 455 | |
| 456 | remove_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 457 | iscsi_host_remove(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 458 | free_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 459 | iscsi_host_free(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 460 | return NULL; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | static int |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 464 | iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn, |
| 465 | enum iscsi_param param, char *buf, int buflen) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 466 | { |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 467 | int value; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 468 | |
| 469 | switch (param) { |
| 470 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 471 | /* TBD */ |
| 472 | break; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 473 | case ISCSI_PARAM_HDRDGST_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 474 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 475 | if (value) { |
| 476 | printk(KERN_ERR "DataDigest wasn't negotiated to None"); |
| 477 | return -EPROTO; |
| 478 | } |
| 479 | break; |
| 480 | case ISCSI_PARAM_DATADGST_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 481 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 482 | if (value) { |
| 483 | printk(KERN_ERR "DataDigest wasn't negotiated to None"); |
| 484 | return -EPROTO; |
| 485 | } |
| 486 | break; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 487 | case ISCSI_PARAM_IFMARKER_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 488 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 489 | if (value) { |
| 490 | printk(KERN_ERR "IFMarker wasn't negotiated to No"); |
| 491 | return -EPROTO; |
| 492 | } |
| 493 | break; |
| 494 | case ISCSI_PARAM_OFMARKER_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 495 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 496 | if (value) { |
| 497 | printk(KERN_ERR "OFMarker wasn't negotiated to No"); |
| 498 | return -EPROTO; |
| 499 | } |
| 500 | break; |
| 501 | default: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 502 | return iscsi_set_param(cls_conn, param, buf, buflen); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | return 0; |
| 506 | } |
| 507 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 508 | static void |
| 509 | iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats) |
| 510 | { |
| 511 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 512 | |
| 513 | stats->txdata_octets = conn->txdata_octets; |
| 514 | stats->rxdata_octets = conn->rxdata_octets; |
| 515 | stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; |
| 516 | stats->dataout_pdus = conn->dataout_pdus_cnt; |
| 517 | stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; |
| 518 | stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */ |
| 519 | stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */ |
| 520 | stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; |
| 521 | stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; |
Eli Dorfman | 8752822 | 2008-04-29 13:46:52 -0700 | [diff] [blame] | 522 | stats->custom_length = 4; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 523 | strcpy(stats->custom[0].desc, "qp_tx_queue_full"); |
| 524 | stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */ |
| 525 | strcpy(stats->custom[1].desc, "fmr_map_not_avail"); |
| 526 | stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */; |
| 527 | strcpy(stats->custom[2].desc, "eh_abort_cnt"); |
| 528 | stats->custom[2].value = conn->eh_abort_cnt; |
Eli Dorfman | 8752822 | 2008-04-29 13:46:52 -0700 | [diff] [blame] | 529 | strcpy(stats->custom[3].desc, "fmr_unalign_cnt"); |
| 530 | stats->custom[3].value = conn->fmr_unalign_cnt; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 531 | } |
| 532 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 533 | static struct iscsi_endpoint * |
Mike Christie | 10eb0f0 | 2009-05-13 17:57:38 -0500 | [diff] [blame] | 534 | iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, |
| 535 | int non_blocking) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 536 | { |
| 537 | int err; |
| 538 | struct iser_conn *ib_conn; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 539 | struct iscsi_endpoint *ep; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 540 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 541 | ep = iscsi_create_endpoint(sizeof(*ib_conn)); |
| 542 | if (!ep) |
| 543 | return ERR_PTR(-ENOMEM); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 544 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 545 | ib_conn = ep->dd_data; |
| 546 | ib_conn->ep = ep; |
| 547 | iser_conn_init(ib_conn); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 548 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 549 | err = iser_connect(ib_conn, NULL, (struct sockaddr_in *)dst_addr, |
| 550 | non_blocking); |
| 551 | if (err) { |
| 552 | iscsi_destroy_endpoint(ep); |
| 553 | return ERR_PTR(err); |
| 554 | } |
| 555 | return ep; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 556 | } |
| 557 | |
| 558 | static int |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 559 | iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 560 | { |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 561 | struct iser_conn *ib_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 562 | int rc; |
| 563 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 564 | ib_conn = ep->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 565 | rc = wait_event_interruptible_timeout(ib_conn->wait, |
| 566 | ib_conn->state == ISER_CONN_UP, |
| 567 | msecs_to_jiffies(timeout_ms)); |
| 568 | |
| 569 | /* if conn establishment failed, return error code to iscsi */ |
| 570 | if (!rc && |
| 571 | (ib_conn->state == ISER_CONN_TERMINATING || |
| 572 | ib_conn->state == ISER_CONN_DOWN)) |
| 573 | rc = -1; |
| 574 | |
| 575 | iser_err("ib conn %p rc = %d\n", ib_conn, rc); |
| 576 | |
| 577 | if (rc > 0) |
| 578 | return 1; /* success, this is the equivalent of POLLOUT */ |
| 579 | else if (!rc) |
| 580 | return 0; /* timeout */ |
| 581 | else |
| 582 | return rc; /* signal */ |
| 583 | } |
| 584 | |
| 585 | static void |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 586 | iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 587 | { |
Mike Christie | 1c83469 | 2006-07-24 15:47:26 -0500 | [diff] [blame] | 588 | struct iser_conn *ib_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 589 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 590 | ib_conn = ep->dd_data; |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 591 | if (ib_conn->iser_conn) |
| 592 | /* |
| 593 | * Must suspend xmit path if the ep is bound to the |
| 594 | * iscsi_conn, so we know we are not accessing the ib_conn |
| 595 | * when we free it. |
| 596 | * |
| 597 | * This may not be bound if the ep poll failed. |
| 598 | */ |
| 599 | iscsi_suspend_tx(ib_conn->iser_conn->iscsi_conn); |
| 600 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 601 | |
| 602 | iser_err("ib conn %p state %d\n",ib_conn, ib_conn->state); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 603 | iser_conn_terminate(ib_conn); |
| 604 | } |
| 605 | |
| 606 | static struct scsi_host_template iscsi_iser_sht = { |
Mike Christie | 7974392 | 2007-07-26 12:46:46 -0500 | [diff] [blame] | 607 | .module = THIS_MODULE, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 608 | .name = "iSCSI Initiator over iSER, v." DRV_VER, |
| 609 | .queuecommand = iscsi_queuecommand, |
Erez Zilber | 6410627 | 2008-01-17 11:53:17 +0200 | [diff] [blame] | 610 | .change_queue_depth = iscsi_change_queue_depth, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 611 | .sg_tablesize = ISCSI_ISER_SG_TABLESIZE, |
Erez Zilber | 8072ec2 | 2006-09-11 12:20:54 +0300 | [diff] [blame] | 612 | .max_sectors = 1024, |
Mike Christie | e28f3d5 | 2009-03-05 14:46:01 -0600 | [diff] [blame] | 613 | .cmd_per_lun = ISER_DEF_CMD_PER_LUN, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 614 | .eh_abort_handler = iscsi_eh_abort, |
Erez Zilber | 90c18f3 | 2008-01-22 12:06:25 +0200 | [diff] [blame] | 615 | .eh_device_reset_handler= iscsi_eh_device_reset, |
Mike Christie | 8e12452 | 2008-09-24 11:46:12 -0500 | [diff] [blame] | 616 | .eh_target_reset_handler= iscsi_eh_target_reset, |
Mike Christie | 6b5d6c4 | 2009-04-21 15:32:32 -0500 | [diff] [blame] | 617 | .target_alloc = iscsi_target_alloc, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 618 | .use_clustering = DISABLE_CLUSTERING, |
| 619 | .proc_name = "iscsi_iser", |
| 620 | .this_id = -1, |
| 621 | }; |
| 622 | |
| 623 | static struct iscsi_transport iscsi_iser_transport = { |
| 624 | .owner = THIS_MODULE, |
| 625 | .name = "iser", |
| 626 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T, |
| 627 | .param_mask = ISCSI_MAX_RECV_DLENGTH | |
| 628 | ISCSI_MAX_XMIT_DLENGTH | |
| 629 | ISCSI_HDRDGST_EN | |
| 630 | ISCSI_DATADGST_EN | |
| 631 | ISCSI_INITIAL_R2T_EN | |
| 632 | ISCSI_MAX_R2T | |
| 633 | ISCSI_IMM_DATA_EN | |
| 634 | ISCSI_FIRST_BURST | |
| 635 | ISCSI_MAX_BURST | |
| 636 | ISCSI_PDU_INORDER_EN | |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 637 | ISCSI_DATASEQ_INORDER_EN | |
| 638 | ISCSI_EXP_STATSN | |
| 639 | ISCSI_PERSISTENT_PORT | |
| 640 | ISCSI_PERSISTENT_ADDRESS | |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 641 | ISCSI_TARGET_NAME | ISCSI_TPGT | |
| 642 | ISCSI_USERNAME | ISCSI_PASSWORD | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 643 | ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN | |
| 644 | ISCSI_FAST_ABORT | ISCSI_ABORT_TMO | |
Mike Christie | b20d038 | 2009-11-11 16:34:35 -0600 | [diff] [blame] | 645 | ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO | |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 646 | ISCSI_PING_TMO | ISCSI_RECV_TMO | |
| 647 | ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME, |
Mike Christie | 8ad5781 | 2007-05-30 12:57:13 -0500 | [diff] [blame] | 648 | .host_param_mask = ISCSI_HOST_HWADDRESS | |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 649 | ISCSI_HOST_NETDEV_NAME | |
Mike Christie | 8ad5781 | 2007-05-30 12:57:13 -0500 | [diff] [blame] | 650 | ISCSI_HOST_INITIATOR_NAME, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 651 | /* session management */ |
| 652 | .create_session = iscsi_iser_session_create, |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 653 | .destroy_session = iscsi_iser_session_destroy, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 654 | /* connection management */ |
| 655 | .create_conn = iscsi_iser_conn_create, |
| 656 | .bind_conn = iscsi_iser_conn_bind, |
| 657 | .destroy_conn = iscsi_iser_conn_destroy, |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 658 | .set_param = iscsi_iser_set_param, |
| 659 | .get_conn_param = iscsi_conn_get_param, |
| 660 | .get_session_param = iscsi_session_get_param, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 661 | .start_conn = iscsi_iser_conn_start, |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 662 | .stop_conn = iscsi_iser_conn_stop, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 663 | /* iscsi host params */ |
| 664 | .get_host_param = iscsi_host_get_param, |
| 665 | .set_host_param = iscsi_host_set_param, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 666 | /* IO */ |
| 667 | .send_pdu = iscsi_conn_send_pdu, |
| 668 | .get_stats = iscsi_iser_conn_get_stats, |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 669 | .init_task = iscsi_iser_task_init, |
| 670 | .xmit_task = iscsi_iser_task_xmit, |
| 671 | .cleanup_task = iscsi_iser_cleanup_task, |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 672 | .alloc_pdu = iscsi_iser_pdu_alloc, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 673 | /* recovery */ |
| 674 | .session_recovery_timedout = iscsi_session_recovery_timedout, |
| 675 | |
| 676 | .ep_connect = iscsi_iser_ep_connect, |
| 677 | .ep_poll = iscsi_iser_ep_poll, |
| 678 | .ep_disconnect = iscsi_iser_ep_disconnect |
| 679 | }; |
| 680 | |
| 681 | static int __init iser_init(void) |
| 682 | { |
| 683 | int err; |
| 684 | |
| 685 | iser_dbg("Starting iSER datamover...\n"); |
| 686 | |
| 687 | if (iscsi_max_lun < 1) { |
| 688 | printk(KERN_ERR "Invalid max_lun value of %u\n", iscsi_max_lun); |
| 689 | return -EINVAL; |
| 690 | } |
| 691 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 692 | memset(&ig, 0, sizeof(struct iser_global)); |
| 693 | |
| 694 | ig.desc_cache = kmem_cache_create("iser_descriptors", |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 695 | sizeof(struct iser_tx_desc), |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 696 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 697 | NULL); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 698 | if (ig.desc_cache == NULL) |
| 699 | return -ENOMEM; |
| 700 | |
| 701 | /* device init is called only after the first addr resolution */ |
| 702 | mutex_init(&ig.device_list_mutex); |
| 703 | INIT_LIST_HEAD(&ig.device_list); |
| 704 | mutex_init(&ig.connlist_mutex); |
| 705 | INIT_LIST_HEAD(&ig.connlist); |
| 706 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 707 | iscsi_iser_scsi_transport = iscsi_register_transport( |
| 708 | &iscsi_iser_transport); |
| 709 | if (!iscsi_iser_scsi_transport) { |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 710 | iser_err("iscsi_register_transport failed\n"); |
| 711 | err = -EINVAL; |
| 712 | goto register_transport_failure; |
| 713 | } |
| 714 | |
| 715 | return 0; |
| 716 | |
| 717 | register_transport_failure: |
| 718 | kmem_cache_destroy(ig.desc_cache); |
| 719 | |
| 720 | return err; |
| 721 | } |
| 722 | |
| 723 | static void __exit iser_exit(void) |
| 724 | { |
| 725 | iser_dbg("Removing iSER datamover...\n"); |
| 726 | iscsi_unregister_transport(&iscsi_iser_transport); |
| 727 | kmem_cache_destroy(ig.desc_cache); |
| 728 | } |
| 729 | |
| 730 | module_init(iser_init); |
| 731 | module_exit(iser_exit); |