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. |
Or Gerlitz | 3ee07d2 | 2014-04-01 16:28:41 +0300 | [diff] [blame] | 8 | * Copyright (c) 2013-2014 Mellanox Technologies. All rights reserved. |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 9 | * maintained by openib-general@openib.org |
| 10 | * |
| 11 | * This software is available to you under a choice of one of two |
| 12 | * licenses. You may choose to be licensed under the terms of the GNU |
| 13 | * General Public License (GPL) Version 2, available from the file |
| 14 | * COPYING in the main directory of this source tree, or the |
| 15 | * OpenIB.org BSD license below: |
| 16 | * |
| 17 | * Redistribution and use in source and binary forms, with or |
| 18 | * without modification, are permitted provided that the following |
| 19 | * conditions are met: |
| 20 | * |
| 21 | * - Redistributions of source code must retain the above |
| 22 | * copyright notice, this list of conditions and the following |
| 23 | * disclaimer. |
| 24 | * |
| 25 | * - Redistributions in binary form must reproduce the above |
| 26 | * copyright notice, this list of conditions and the following |
| 27 | * disclaimer in the documentation and/or other materials |
| 28 | * provided with the distribution. |
| 29 | * |
| 30 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 31 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 32 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 33 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 34 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 35 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 36 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 37 | * SOFTWARE. |
| 38 | * |
| 39 | * Credits: |
| 40 | * Christoph Hellwig |
| 41 | * FUJITA Tomonori |
| 42 | * Arne Redlich |
| 43 | * Zhenyu Wang |
| 44 | * Modified by: |
| 45 | * Erez Zilber |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 46 | */ |
| 47 | |
| 48 | #include <linux/types.h> |
| 49 | #include <linux/list.h> |
| 50 | #include <linux/hardirq.h> |
| 51 | #include <linux/kfifo.h> |
| 52 | #include <linux/blkdev.h> |
| 53 | #include <linux/init.h> |
| 54 | #include <linux/ioctl.h> |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 55 | #include <linux/cdev.h> |
| 56 | #include <linux/in.h> |
| 57 | #include <linux/net.h> |
| 58 | #include <linux/scatterlist.h> |
| 59 | #include <linux/delay.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 60 | #include <linux/slab.h> |
Paul Gortmaker | e4dd23d | 2011-05-27 15:35:46 -0400 | [diff] [blame] | 61 | #include <linux/module.h> |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 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 Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 77 | static struct scsi_host_template iscsi_iser_sht; |
| 78 | static struct iscsi_transport iscsi_iser_transport; |
| 79 | static struct scsi_transport_template *iscsi_iser_scsi_transport; |
| 80 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 81 | static unsigned int iscsi_max_lun = 512; |
| 82 | module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO); |
| 83 | |
| 84 | int iser_debug_level = 0; |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 85 | bool iser_pi_enable = false; |
Sagi Grimberg | f043032 | 2014-08-13 19:54:31 +0300 | [diff] [blame] | 86 | int iser_pi_guard = 1; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 87 | |
Roi Dayan | c1d786e | 2013-05-01 13:25:24 +0000 | [diff] [blame] | 88 | MODULE_DESCRIPTION("iSER (iSCSI Extensions for RDMA) Datamover"); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 89 | MODULE_LICENSE("Dual BSD/GPL"); |
| 90 | MODULE_AUTHOR("Alex Nezhinsky, Dan Bar Dov, Or Gerlitz"); |
Roi Dayan | c1d786e | 2013-05-01 13:25:24 +0000 | [diff] [blame] | 91 | MODULE_VERSION(DRV_VER); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 92 | |
| 93 | module_param_named(debug_level, iser_debug_level, int, 0644); |
| 94 | MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0 (default:disabled)"); |
| 95 | |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 96 | module_param_named(pi_enable, iser_pi_enable, bool, 0644); |
| 97 | MODULE_PARM_DESC(pi_enable, "Enable T10-PI offload support (default:disabled)"); |
| 98 | |
| 99 | module_param_named(pi_guard, iser_pi_guard, int, 0644); |
Sagi Grimberg | f043032 | 2014-08-13 19:54:31 +0300 | [diff] [blame] | 100 | MODULE_PARM_DESC(pi_guard, "T10-PI guard_type, 0:CRC|1:IP_CSUM (default:IP_CSUM)"); |
Alex Tabachnik | 7f73384 | 2014-03-05 19:43:46 +0200 | [diff] [blame] | 101 | |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 102 | static struct workqueue_struct *release_wq; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 103 | struct iser_global ig; |
| 104 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 105 | /* |
| 106 | * iscsi_iser_recv() - Process a successfull recv completion |
| 107 | * @conn: iscsi connection |
| 108 | * @hdr: iscsi header |
| 109 | * @rx_data: buffer containing receive data payload |
| 110 | * @rx_data_len: length of rx_data |
| 111 | * |
| 112 | * Notes: In case of data length errors or iscsi PDU completion failures |
| 113 | * this routine will signal iscsi layer of connection failure. |
| 114 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 115 | void |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 116 | iscsi_iser_recv(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 117 | char *rx_data, int rx_data_len) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 118 | { |
| 119 | int rc = 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 120 | int datalen; |
| 121 | int ahslen; |
| 122 | |
| 123 | /* verify PDU length */ |
| 124 | datalen = ntoh24(hdr->dlength); |
Or Gerlitz | 200ae1a | 2011-08-01 21:14:09 +0000 | [diff] [blame] | 125 | if (datalen > rx_data_len || (datalen + 4) < rx_data_len) { |
| 126 | iser_err("wrong datalen %d (hdr), %d (IB)\n", |
| 127 | datalen, rx_data_len); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 128 | rc = ISCSI_ERR_DATALEN; |
| 129 | goto error; |
| 130 | } |
| 131 | |
Or Gerlitz | 200ae1a | 2011-08-01 21:14:09 +0000 | [diff] [blame] | 132 | if (datalen != rx_data_len) |
| 133 | iser_dbg("aligned datalen (%d) hdr, %d (IB)\n", |
| 134 | datalen, rx_data_len); |
| 135 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 136 | /* read AHS */ |
| 137 | ahslen = hdr->hlength * 4; |
| 138 | |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 139 | rc = iscsi_complete_pdu(conn, hdr, rx_data, rx_data_len); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 140 | if (rc && rc != ISCSI_ERR_NO_SCSI_CMD) |
| 141 | goto error; |
| 142 | |
| 143 | return; |
| 144 | error: |
| 145 | iscsi_conn_failure(conn, rc); |
| 146 | } |
| 147 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 148 | /** |
| 149 | * iscsi_iser_pdu_alloc() - allocate an iscsi-iser PDU |
| 150 | * @task: iscsi task |
| 151 | * @opcode: iscsi command opcode |
| 152 | * |
| 153 | * Netes: This routine can't fail, just assign iscsi task |
| 154 | * hdr and max hdr size. |
| 155 | */ |
| 156 | static int |
| 157 | iscsi_iser_pdu_alloc(struct iscsi_task *task, uint8_t opcode) |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 158 | { |
| 159 | struct iscsi_iser_task *iser_task = task->dd_data; |
| 160 | |
| 161 | task->hdr = (struct iscsi_hdr *)&iser_task->desc.iscsi_header; |
| 162 | task->hdr_max = sizeof(iser_task->desc.iscsi_header); |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 163 | |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 164 | return 0; |
| 165 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 166 | |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 167 | /** |
| 168 | * iser_initialize_task_headers() - Initialize task headers |
| 169 | * @task: iscsi task |
| 170 | * @tx_desc: iser tx descriptor |
| 171 | * |
| 172 | * Notes: |
| 173 | * This routine may race with iser teardown flow for scsi |
| 174 | * error handling TMFs. So for TMF we should acquire the |
| 175 | * state mutex to avoid dereferencing the IB device which |
| 176 | * may have already been terminated. |
| 177 | */ |
| 178 | int |
| 179 | iser_initialize_task_headers(struct iscsi_task *task, |
| 180 | struct iser_tx_desc *tx_desc) |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 181 | { |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 182 | struct iser_conn *iser_conn = task->conn->dd_data; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 183 | struct iser_device *device = iser_conn->ib_conn.device; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 184 | struct iscsi_iser_task *iser_task = task->dd_data; |
| 185 | u64 dma_addr; |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 186 | const bool mgmt_task = !task->sc && !in_interrupt(); |
| 187 | int ret = 0; |
| 188 | |
| 189 | if (unlikely(mgmt_task)) |
| 190 | mutex_lock(&iser_conn->state_mutex); |
| 191 | |
| 192 | if (unlikely(iser_conn->state != ISER_CONN_UP)) { |
| 193 | ret = -ENODEV; |
| 194 | goto out; |
| 195 | } |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 196 | |
| 197 | dma_addr = ib_dma_map_single(device->ib_device, (void *)tx_desc, |
| 198 | ISER_HEADERS_LEN, DMA_TO_DEVICE); |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 199 | if (ib_dma_mapping_error(device->ib_device, dma_addr)) { |
| 200 | ret = -ENOMEM; |
| 201 | goto out; |
| 202 | } |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 203 | |
| 204 | tx_desc->dma_addr = dma_addr; |
| 205 | tx_desc->tx_sg[0].addr = tx_desc->dma_addr; |
| 206 | tx_desc->tx_sg[0].length = ISER_HEADERS_LEN; |
| 207 | tx_desc->tx_sg[0].lkey = device->mr->lkey; |
| 208 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 209 | iser_task->iser_conn = iser_conn; |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 210 | out: |
| 211 | if (unlikely(mgmt_task)) |
| 212 | mutex_unlock(&iser_conn->state_mutex); |
| 213 | |
| 214 | return ret; |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 215 | } |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 216 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 217 | /** |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 218 | * iscsi_iser_task_init() - Initialize iscsi-iser task |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 219 | * @task: iscsi task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 220 | * |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 221 | * Initialize the task for the scsi command or mgmt command. |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 222 | * |
| 223 | * Return: Returns zero on success or -ENOMEM when failing |
| 224 | * to init task headers (dma mapping error). |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 225 | */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 226 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 227 | iscsi_iser_task_init(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 228 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 229 | struct iscsi_iser_task *iser_task = task->dd_data; |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 230 | int ret; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 231 | |
Sagi Grimberg | 7414dde | 2014-12-07 16:09:59 +0200 | [diff] [blame] | 232 | ret = iser_initialize_task_headers(task, &iser_task->desc); |
| 233 | if (ret) { |
| 234 | iser_err("Failed to init task %p, err = %d\n", |
| 235 | iser_task, ret); |
| 236 | return ret; |
| 237 | } |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 238 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 239 | /* mgmt task */ |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 240 | if (!task->sc) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 241 | return 0; |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 242 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 243 | iser_task->command_sent = 0; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 244 | iser_task_rdma_init(iser_task); |
Sagi Grimberg | 177e31bd | 2014-03-05 19:43:48 +0200 | [diff] [blame] | 245 | iser_task->sc = task->sc; |
| 246 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 247 | return 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 248 | } |
| 249 | |
| 250 | /** |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 251 | * iscsi_iser_mtask_xmit() - xmit management (immediate) task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 252 | * @conn: iscsi connection |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 253 | * @task: task management task |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 254 | * |
| 255 | * Notes: |
| 256 | * The function can return -EAGAIN in which case caller must |
| 257 | * call it again later, or recover. '0' return code means successful |
| 258 | * xmit. |
| 259 | * |
| 260 | **/ |
| 261 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 262 | iscsi_iser_mtask_xmit(struct iscsi_conn *conn, struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 263 | { |
| 264 | int error = 0; |
| 265 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame] | 266 | 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] | 267 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 268 | error = iser_send_control(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 269 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 270 | /* since iser xmits control with zero copy, tasks can not be recycled |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 271 | * right after sending them. |
| 272 | * The recycling scheme is based on whether a response is expected |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 273 | * - if yes, the task is recycled at iscsi_complete_pdu |
| 274 | * - if no, the task is recycled at iser_snd_completion |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 275 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 276 | return error; |
| 277 | } |
| 278 | |
| 279 | static int |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 280 | iscsi_iser_task_xmit_unsol_data(struct iscsi_conn *conn, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 281 | struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 282 | { |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 283 | struct iscsi_r2t_info *r2t = &task->unsol_r2t; |
| 284 | struct iscsi_data hdr; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 285 | int error = 0; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 286 | |
| 287 | /* Send data-out PDUs while there's still unsolicited data to send */ |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 288 | while (iscsi_task_has_unsol_data(task)) { |
| 289 | iscsi_prep_data_out_pdu(task, r2t, &hdr); |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 290 | iser_dbg("Sending data-out: itt 0x%x, data count %d\n", |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 291 | hdr.itt, r2t->data_count); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 292 | |
| 293 | /* the buffer description has been passed with the command */ |
| 294 | /* Send the command */ |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 295 | error = iser_send_data_out(conn, task, &hdr); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 296 | if (error) { |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 297 | r2t->datasn--; |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 298 | goto iscsi_iser_task_xmit_unsol_data_exit; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 299 | } |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 300 | r2t->sent += r2t->data_count; |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 301 | iser_dbg("Need to send %d more as data-out PDUs\n", |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 302 | r2t->data_length - r2t->sent); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 303 | } |
| 304 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 305 | iscsi_iser_task_xmit_unsol_data_exit: |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 306 | return error; |
| 307 | } |
| 308 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 309 | /** |
| 310 | * iscsi_iser_task_xmit() - xmit iscsi-iser task |
| 311 | * @task: iscsi task |
| 312 | * |
| 313 | * Return: zero on success or escalates $error on failure. |
| 314 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 315 | static int |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 316 | iscsi_iser_task_xmit(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 317 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 318 | struct iscsi_conn *conn = task->conn; |
| 319 | struct iscsi_iser_task *iser_task = task->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 320 | int error = 0; |
| 321 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 322 | if (!task->sc) |
| 323 | return iscsi_iser_mtask_xmit(conn, task); |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 324 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 325 | if (task->sc->sc_data_direction == DMA_TO_DEVICE) { |
| 326 | BUG_ON(scsi_bufflen(task->sc) == 0); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 327 | |
Mike Christie | 48a237a | 2009-03-05 14:45:57 -0600 | [diff] [blame] | 328 | 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] | 329 | task->itt, scsi_bufflen(task->sc), |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 330 | task->imm_count, task->unsol_r2t.data_length); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 331 | } |
| 332 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame] | 333 | iser_dbg("ctask xmit [cid %d itt 0x%x]\n", |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 334 | conn->id, task->itt); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 335 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 336 | /* Send the cmd PDU */ |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 337 | if (!iser_task->command_sent) { |
| 338 | error = iser_send_command(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 339 | if (error) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 340 | goto iscsi_iser_task_xmit_exit; |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 341 | iser_task->command_sent = 1; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | /* Send unsolicited data-out PDU(s) if necessary */ |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 345 | if (iscsi_task_has_unsol_data(task)) |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 346 | error = iscsi_iser_task_xmit_unsol_data(conn, task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 347 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 348 | iscsi_iser_task_xmit_exit: |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 349 | return error; |
| 350 | } |
| 351 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 352 | /** |
| 353 | * iscsi_iser_cleanup_task() - cleanup an iscsi-iser task |
| 354 | * @task: iscsi task |
| 355 | * |
| 356 | * Notes: In case the RDMA device is already NULL (might have |
| 357 | * been removed in DEVICE_REMOVAL CM event it will bail-out |
| 358 | * without doing dma unmapping. |
| 359 | */ |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 360 | static void iscsi_iser_cleanup_task(struct iscsi_task *task) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 361 | { |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 362 | struct iscsi_iser_task *iser_task = task->dd_data; |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 363 | struct iser_tx_desc *tx_desc = &iser_task->desc; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 364 | struct iser_conn *iser_conn = task->conn->dd_data; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 365 | struct iser_device *device = iser_conn->ib_conn.device; |
Or Gerlitz | 5243954 | 2011-11-04 00:21:27 +0200 | [diff] [blame] | 366 | |
Sagi Grimberg | 3a940da | 2014-10-01 14:02:04 +0300 | [diff] [blame] | 367 | /* DEVICE_REMOVAL event might have already released the device */ |
| 368 | if (!device) |
| 369 | return; |
| 370 | |
Or Gerlitz | 5243954 | 2011-11-04 00:21:27 +0200 | [diff] [blame] | 371 | ib_dma_unmap_single(device->ib_device, |
| 372 | tx_desc->dma_addr, ISER_HEADERS_LEN, DMA_TO_DEVICE); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 373 | |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 374 | /* mgmt tasks do not need special cleanup */ |
| 375 | if (!task->sc) |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 376 | return; |
| 377 | |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 378 | if (iser_task->status == ISER_TASK_STATUS_STARTED) { |
| 379 | iser_task->status = ISER_TASK_STATUS_COMPLETED; |
| 380 | iser_task_rdma_finalize(iser_task); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 381 | } |
| 382 | } |
| 383 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 384 | /** |
| 385 | * iscsi_iser_check_protection() - check protection information status of task. |
| 386 | * @task: iscsi task |
| 387 | * @sector: error sector if exsists (output) |
| 388 | * |
| 389 | * Return: zero if no data-integrity errors have occured |
| 390 | * 0x1: data-integrity error occured in the guard-block |
| 391 | * 0x2: data-integrity error occured in the reference tag |
| 392 | * 0x3: data-integrity error occured in the application tag |
| 393 | * |
| 394 | * In addition the error sector is marked. |
| 395 | */ |
| 396 | static u8 |
| 397 | iscsi_iser_check_protection(struct iscsi_task *task, sector_t *sector) |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 398 | { |
| 399 | struct iscsi_iser_task *iser_task = task->dd_data; |
| 400 | |
| 401 | if (iser_task->dir[ISER_DIR_IN]) |
| 402 | return iser_check_task_pi_status(iser_task, ISER_DIR_IN, |
| 403 | sector); |
| 404 | else |
| 405 | return iser_check_task_pi_status(iser_task, ISER_DIR_OUT, |
| 406 | sector); |
| 407 | } |
| 408 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 409 | /** |
| 410 | * iscsi_iser_conn_create() - create a new iscsi-iser connection |
| 411 | * @cls_session: iscsi class connection |
| 412 | * @conn_idx: connection index within the session (for MCS) |
| 413 | * |
| 414 | * Return: iscsi_cls_conn when iscsi_conn_setup succeeds or NULL |
| 415 | * otherwise. |
| 416 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 417 | static struct iscsi_cls_conn * |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 418 | iscsi_iser_conn_create(struct iscsi_cls_session *cls_session, |
| 419 | uint32_t conn_idx) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 420 | { |
| 421 | struct iscsi_conn *conn; |
| 422 | struct iscsi_cls_conn *cls_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 423 | |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 424 | cls_conn = iscsi_conn_setup(cls_session, 0, conn_idx); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 425 | if (!cls_conn) |
| 426 | return NULL; |
| 427 | conn = cls_conn->dd_data; |
| 428 | |
| 429 | /* |
| 430 | * due to issues with the login code re iser sematics |
| 431 | * this not set in iscsi_conn_setup - FIXME |
| 432 | */ |
Or Gerlitz | bcc60c3 | 2010-02-08 13:17:42 +0000 | [diff] [blame] | 433 | conn->max_recv_dlength = ISER_RECV_DATA_SEG_LEN; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 434 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 435 | return cls_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 436 | } |
| 437 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 438 | /** |
| 439 | * iscsi_iser_conn_bind() - bind iscsi and iser connection structures |
| 440 | * @cls_session: iscsi class session |
| 441 | * @cls_conn: iscsi class connection |
| 442 | * @transport_eph: transport end-point handle |
| 443 | * @is_leading: indicate if this is the session leading connection (MCS) |
| 444 | * |
| 445 | * Return: zero on success, $error if iscsi_conn_bind fails and |
| 446 | * -EINVAL in case end-point doesn't exsits anymore or iser connection |
| 447 | * state is not UP (teardown already started). |
| 448 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 449 | static int |
| 450 | iscsi_iser_conn_bind(struct iscsi_cls_session *cls_session, |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 451 | struct iscsi_cls_conn *cls_conn, |
| 452 | uint64_t transport_eph, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 453 | int is_leading) |
| 454 | { |
| 455 | struct iscsi_conn *conn = cls_conn->dd_data; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 456 | struct iser_conn *iser_conn; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 457 | struct iscsi_endpoint *ep; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 458 | int error; |
| 459 | |
| 460 | error = iscsi_conn_bind(cls_session, cls_conn, is_leading); |
| 461 | if (error) |
| 462 | return error; |
| 463 | |
| 464 | /* the transport ep handle comes from user space so it must be |
| 465 | * verified against the global ib connections list */ |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 466 | ep = iscsi_lookup_endpoint(transport_eph); |
| 467 | if (!ep) { |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 468 | iser_err("can't bind eph %llx\n", |
| 469 | (unsigned long long)transport_eph); |
| 470 | return -EINVAL; |
| 471 | } |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 472 | iser_conn = ep->dd_data; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 473 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 474 | mutex_lock(&iser_conn->state_mutex); |
| 475 | if (iser_conn->state != ISER_CONN_UP) { |
Sagi Grimberg | 91eb1df | 2014-09-02 17:08:42 +0300 | [diff] [blame] | 476 | error = -EINVAL; |
| 477 | iser_err("iser_conn %p state is %d, teardown started\n", |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 478 | iser_conn, iser_conn->state); |
Sagi Grimberg | 91eb1df | 2014-09-02 17:08:42 +0300 | [diff] [blame] | 479 | goto out; |
| 480 | } |
| 481 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 482 | error = iser_alloc_rx_descriptors(iser_conn, conn->session); |
Sagi Grimberg | 91eb1df | 2014-09-02 17:08:42 +0300 | [diff] [blame] | 483 | if (error) |
| 484 | goto out; |
Or Gerlitz | 89e984e2 | 2012-03-05 18:21:44 +0200 | [diff] [blame] | 485 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 486 | /* binds the iSER connection retrieved from the previously |
| 487 | * connected ep_handle to the iSCSI layer connection. exchanges |
| 488 | * connection pointers */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 489 | iser_info("binding iscsi conn %p to iser_conn %p\n", conn, iser_conn); |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 490 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 491 | conn->dd_data = iser_conn; |
| 492 | iser_conn->iscsi_conn = conn; |
Ariel Nahum | 4667f5d | 2014-04-01 16:28:39 +0300 | [diff] [blame] | 493 | |
Sagi Grimberg | 91eb1df | 2014-09-02 17:08:42 +0300 | [diff] [blame] | 494 | out: |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 495 | mutex_unlock(&iser_conn->state_mutex); |
Sagi Grimberg | 91eb1df | 2014-09-02 17:08:42 +0300 | [diff] [blame] | 496 | return error; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 497 | } |
| 498 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 499 | /** |
| 500 | * iscsi_iser_conn_start() - start iscsi-iser connection |
| 501 | * @cls_conn: iscsi class connection |
| 502 | * |
| 503 | * Notes: Here iser intialize (or re-initialize) stop_completion as |
| 504 | * from this point iscsi must call conn_stop in session/connection |
| 505 | * teardown so iser transport must wait for it. |
| 506 | */ |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 507 | static int |
| 508 | iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn) |
| 509 | { |
| 510 | struct iscsi_conn *iscsi_conn; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 511 | struct iser_conn *iser_conn; |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 512 | |
| 513 | iscsi_conn = cls_conn->dd_data; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 514 | iser_conn = iscsi_conn->dd_data; |
| 515 | reinit_completion(&iser_conn->stop_completion); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 516 | |
| 517 | return iscsi_conn_start(cls_conn); |
| 518 | } |
| 519 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 520 | /** |
| 521 | * iscsi_iser_conn_stop() - stop iscsi-iser connection |
| 522 | * @cls_conn: iscsi class connection |
| 523 | * @flag: indicate if recover or terminate (passed as is) |
| 524 | * |
| 525 | * Notes: Calling iscsi_conn_stop might theoretically race with |
| 526 | * DEVICE_REMOVAL event and dereference a previously freed RDMA device |
| 527 | * handle, so we call it under iser the state lock to protect against |
| 528 | * this kind of race. |
| 529 | */ |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 530 | static void |
| 531 | iscsi_iser_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
| 532 | { |
| 533 | struct iscsi_conn *conn = cls_conn->dd_data; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 534 | struct iser_conn *iser_conn = conn->dd_data; |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 535 | |
Ariel Nahum | bba0a3c | 2014-10-01 14:02:13 +0300 | [diff] [blame] | 536 | iser_info("stopping iscsi_conn: %p, iser_conn: %p\n", conn, iser_conn); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 537 | |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 538 | /* |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 539 | * Userspace may have goofed up and not bound the connection or |
| 540 | * might have only partially setup the connection. |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 541 | */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 542 | if (iser_conn) { |
Ariel Nahum | ec370e2 | 2014-10-01 14:02:03 +0300 | [diff] [blame] | 543 | mutex_lock(&iser_conn->state_mutex); |
| 544 | iser_conn_terminate(iser_conn); |
Sagi Grimberg | f0caef6 | 2014-12-07 16:10:00 +0200 | [diff] [blame^] | 545 | iscsi_conn_stop(cls_conn, flag); |
Ariel Nahum | ec370e2 | 2014-10-01 14:02:03 +0300 | [diff] [blame] | 546 | |
| 547 | /* unbind */ |
| 548 | iser_conn->iscsi_conn = NULL; |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 549 | conn->dd_data = NULL; |
Ariel Nahum | ec370e2 | 2014-10-01 14:02:03 +0300 | [diff] [blame] | 550 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 551 | complete(&iser_conn->stop_completion); |
Ariel Nahum | ec370e2 | 2014-10-01 14:02:03 +0300 | [diff] [blame] | 552 | mutex_unlock(&iser_conn->state_mutex); |
Sagi Grimberg | 3a940da | 2014-10-01 14:02:04 +0300 | [diff] [blame] | 553 | } else { |
| 554 | iscsi_conn_stop(cls_conn, flag); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 555 | } |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 556 | } |
| 557 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 558 | /** |
| 559 | * iscsi_iser_session_destroy() - destroy iscsi-iser session |
| 560 | * @cls_session: iscsi class session |
| 561 | * |
| 562 | * Removes and free iscsi host. |
| 563 | */ |
| 564 | static void |
| 565 | iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 566 | { |
| 567 | struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); |
| 568 | |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 569 | iscsi_session_teardown(cls_session); |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 570 | iscsi_host_remove(shost); |
| 571 | iscsi_host_free(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 572 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 573 | |
Sagi Grimberg | 6192d4e | 2014-03-05 19:43:51 +0200 | [diff] [blame] | 574 | static inline unsigned int |
| 575 | iser_dif_prot_caps(int prot_caps) |
| 576 | { |
| 577 | return ((prot_caps & IB_PROT_T10DIF_TYPE_1) ? SHOST_DIF_TYPE1_PROTECTION | |
| 578 | SHOST_DIX_TYPE1_PROTECTION : 0) | |
| 579 | ((prot_caps & IB_PROT_T10DIF_TYPE_2) ? SHOST_DIF_TYPE2_PROTECTION | |
| 580 | SHOST_DIX_TYPE2_PROTECTION : 0) | |
| 581 | ((prot_caps & IB_PROT_T10DIF_TYPE_3) ? SHOST_DIF_TYPE3_PROTECTION | |
| 582 | SHOST_DIX_TYPE3_PROTECTION : 0); |
| 583 | } |
| 584 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 585 | /** |
| 586 | * iscsi_iser_session_create() - create an iscsi-iser session |
| 587 | * @ep: iscsi end-point handle |
| 588 | * @cmds_max: maximum commands in this session |
| 589 | * @qdepth: session command queue depth |
| 590 | * @initial_cmdsn: initiator command sequnce number |
| 591 | * |
| 592 | * Allocates and adds a scsi host, expose DIF supprot if |
| 593 | * exists, and sets up an iscsi session. |
| 594 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 595 | static struct iscsi_cls_session * |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 596 | iscsi_iser_session_create(struct iscsi_endpoint *ep, |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 597 | uint16_t cmds_max, uint16_t qdepth, |
Mike Christie | 5e7facb | 2009-03-05 14:46:06 -0600 | [diff] [blame] | 598 | uint32_t initial_cmdsn) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 599 | { |
| 600 | struct iscsi_cls_session *cls_session; |
| 601 | struct iscsi_session *session; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 602 | struct Scsi_Host *shost; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 603 | struct iser_conn *iser_conn = NULL; |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 604 | struct ib_conn *ib_conn; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 605 | u16 max_cmds; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 606 | |
Or Gerlitz | 962b4b5 | 2010-02-08 13:22:34 +0000 | [diff] [blame] | 607 | shost = iscsi_host_alloc(&iscsi_iser_sht, 0, 0); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 608 | if (!shost) |
| 609 | return NULL; |
| 610 | shost->transportt = iscsi_iser_scsi_transport; |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 611 | shost->cmd_per_lun = qdepth; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 612 | shost->max_lun = iscsi_max_lun; |
| 613 | shost->max_id = 0; |
| 614 | shost->max_channel = 0; |
| 615 | shost->max_cmd_len = 16; |
| 616 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 617 | /* |
| 618 | * older userspace tools (before 2.0-870) did not pass us |
| 619 | * the leading conn's ep so this will be NULL; |
| 620 | */ |
Sagi Grimberg | 6192d4e | 2014-03-05 19:43:51 +0200 | [diff] [blame] | 621 | if (ep) { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 622 | iser_conn = ep->dd_data; |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 623 | max_cmds = iser_conn->max_cmds; |
Ariel Nahum | 3f562a0 | 2014-12-07 16:09:58 +0200 | [diff] [blame] | 624 | |
| 625 | mutex_lock(&iser_conn->state_mutex); |
| 626 | if (iser_conn->state != ISER_CONN_UP) { |
| 627 | iser_err("iser conn %p already started teardown\n", |
| 628 | iser_conn); |
| 629 | mutex_unlock(&iser_conn->state_mutex); |
| 630 | goto free_host; |
| 631 | } |
| 632 | |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 633 | ib_conn = &iser_conn->ib_conn; |
| 634 | if (ib_conn->pi_support) { |
| 635 | u32 sig_caps = ib_conn->device->dev_attr.sig_prot_cap; |
Sagi Grimberg | 6192d4e | 2014-03-05 19:43:51 +0200 | [diff] [blame] | 636 | |
| 637 | scsi_host_set_prot(shost, iser_dif_prot_caps(sig_caps)); |
| 638 | if (iser_pi_guard) |
| 639 | scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP); |
| 640 | else |
| 641 | scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC); |
| 642 | } |
Ariel Nahum | 3f562a0 | 2014-12-07 16:09:58 +0200 | [diff] [blame] | 643 | |
| 644 | if (iscsi_host_add(shost, |
| 645 | ib_conn->device->ib_device->dma_device)) { |
| 646 | mutex_unlock(&iser_conn->state_mutex); |
| 647 | goto free_host; |
| 648 | } |
| 649 | mutex_unlock(&iser_conn->state_mutex); |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 650 | } else { |
| 651 | max_cmds = ISER_DEF_XMIT_CMDS_MAX; |
Ariel Nahum | 3f562a0 | 2014-12-07 16:09:58 +0200 | [diff] [blame] | 652 | if (iscsi_host_add(shost, NULL)) |
| 653 | goto free_host; |
Sagi Grimberg | 6192d4e | 2014-03-05 19:43:51 +0200 | [diff] [blame] | 654 | } |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 655 | |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 656 | if (cmds_max > max_cmds) { |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 657 | iser_info("cmds_max changed from %u to %u\n", |
Minh Tran | f4641ef | 2014-12-07 16:09:52 +0200 | [diff] [blame] | 658 | cmds_max, max_cmds); |
| 659 | cmds_max = max_cmds; |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 660 | } |
| 661 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 662 | cls_session = iscsi_session_setup(&iscsi_iser_transport, shost, |
Shlomo Pongratz | b7f0451 | 2013-07-28 12:35:38 +0300 | [diff] [blame] | 663 | cmds_max, 0, |
Mike Christie | 2261ec3 | 2008-05-21 15:54:11 -0500 | [diff] [blame] | 664 | sizeof(struct iscsi_iser_task), |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 665 | initial_cmdsn, 0); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 666 | if (!cls_session) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 667 | goto remove_host; |
| 668 | session = cls_session->dd_data; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 669 | |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 670 | shost->can_queue = session->scsi_cmds_max; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 671 | return cls_session; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 672 | |
| 673 | remove_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 674 | iscsi_host_remove(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 675 | free_host: |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 676 | iscsi_host_free(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 677 | return NULL; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | static int |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 681 | iscsi_iser_set_param(struct iscsi_cls_conn *cls_conn, |
| 682 | enum iscsi_param param, char *buf, int buflen) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 683 | { |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 684 | int value; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 685 | |
| 686 | switch (param) { |
| 687 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 688 | /* TBD */ |
| 689 | break; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 690 | case ISCSI_PARAM_HDRDGST_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 691 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 692 | if (value) { |
Roi Dayan | e7eeffa | 2014-05-22 11:00:20 +0300 | [diff] [blame] | 693 | iser_err("DataDigest wasn't negotiated to None\n"); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 694 | return -EPROTO; |
| 695 | } |
| 696 | break; |
| 697 | case ISCSI_PARAM_DATADGST_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 698 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 699 | if (value) { |
Roi Dayan | e7eeffa | 2014-05-22 11:00:20 +0300 | [diff] [blame] | 700 | iser_err("DataDigest wasn't negotiated to None\n"); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 701 | return -EPROTO; |
| 702 | } |
| 703 | break; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 704 | case ISCSI_PARAM_IFMARKER_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 705 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 706 | if (value) { |
Roi Dayan | e7eeffa | 2014-05-22 11:00:20 +0300 | [diff] [blame] | 707 | iser_err("IFMarker wasn't negotiated to No\n"); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 708 | return -EPROTO; |
| 709 | } |
| 710 | break; |
| 711 | case ISCSI_PARAM_OFMARKER_EN: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 712 | sscanf(buf, "%d", &value); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 713 | if (value) { |
Roi Dayan | e7eeffa | 2014-05-22 11:00:20 +0300 | [diff] [blame] | 714 | iser_err("OFMarker wasn't negotiated to No\n"); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 715 | return -EPROTO; |
| 716 | } |
| 717 | break; |
| 718 | default: |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 719 | return iscsi_set_param(cls_conn, param, buf, buflen); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | return 0; |
| 723 | } |
| 724 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 725 | /** |
| 726 | * iscsi_iser_set_param() - set class connection parameter |
| 727 | * @cls_conn: iscsi class connection |
| 728 | * @stats: iscsi stats to output |
| 729 | * |
| 730 | * Output connection statistics. |
| 731 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 732 | static void |
| 733 | iscsi_iser_conn_get_stats(struct iscsi_cls_conn *cls_conn, struct iscsi_stats *stats) |
| 734 | { |
| 735 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 736 | |
| 737 | stats->txdata_octets = conn->txdata_octets; |
| 738 | stats->rxdata_octets = conn->rxdata_octets; |
| 739 | stats->scsicmd_pdus = conn->scsicmd_pdus_cnt; |
| 740 | stats->dataout_pdus = conn->dataout_pdus_cnt; |
| 741 | stats->scsirsp_pdus = conn->scsirsp_pdus_cnt; |
| 742 | stats->datain_pdus = conn->datain_pdus_cnt; /* always 0 */ |
| 743 | stats->r2t_pdus = conn->r2t_pdus_cnt; /* always 0 */ |
| 744 | stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt; |
| 745 | stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt; |
Eli Dorfman | 8752822 | 2008-04-29 13:46:52 -0700 | [diff] [blame] | 746 | stats->custom_length = 4; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 747 | strcpy(stats->custom[0].desc, "qp_tx_queue_full"); |
| 748 | stats->custom[0].value = 0; /* TB iser_conn->qp_tx_queue_full; */ |
| 749 | strcpy(stats->custom[1].desc, "fmr_map_not_avail"); |
| 750 | stats->custom[1].value = 0; /* TB iser_conn->fmr_map_not_avail */; |
| 751 | strcpy(stats->custom[2].desc, "eh_abort_cnt"); |
| 752 | stats->custom[2].value = conn->eh_abort_cnt; |
Eli Dorfman | 8752822 | 2008-04-29 13:46:52 -0700 | [diff] [blame] | 753 | strcpy(stats->custom[3].desc, "fmr_unalign_cnt"); |
| 754 | stats->custom[3].value = conn->fmr_unalign_cnt; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 755 | } |
| 756 | |
Mike Christie | 7c53c6f | 2011-02-16 15:04:40 -0600 | [diff] [blame] | 757 | static int iscsi_iser_get_ep_param(struct iscsi_endpoint *ep, |
| 758 | enum iscsi_param param, char *buf) |
| 759 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 760 | struct iser_conn *iser_conn = ep->dd_data; |
Mike Christie | 7c53c6f | 2011-02-16 15:04:40 -0600 | [diff] [blame] | 761 | int len; |
| 762 | |
| 763 | switch (param) { |
| 764 | case ISCSI_PARAM_CONN_PORT: |
| 765 | case ISCSI_PARAM_CONN_ADDRESS: |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 766 | if (!iser_conn || !iser_conn->ib_conn.cma_id) |
Mike Christie | 7c53c6f | 2011-02-16 15:04:40 -0600 | [diff] [blame] | 767 | return -ENOTCONN; |
| 768 | |
| 769 | return iscsi_conn_get_addr_param((struct sockaddr_storage *) |
Sagi Grimberg | a4ee353 | 2014-10-01 14:01:58 +0300 | [diff] [blame] | 770 | &iser_conn->ib_conn.cma_id->route.addr.dst_addr, |
| 771 | param, buf); |
Mike Christie | 7c53c6f | 2011-02-16 15:04:40 -0600 | [diff] [blame] | 772 | break; |
| 773 | default: |
| 774 | return -ENOSYS; |
| 775 | } |
| 776 | |
| 777 | return len; |
| 778 | } |
| 779 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 780 | /** |
| 781 | * iscsi_iser_ep_connect() - Initiate iSER connection establishment |
| 782 | * @shost: scsi_host |
| 783 | * @dst_addr: destination address |
| 784 | * @non-blocking: indicate if routine can block |
| 785 | * |
| 786 | * Allocate an iscsi endpoint, an iser_conn structure and bind them. |
| 787 | * After that start RDMA connection establishment via rdma_cm. We |
| 788 | * don't allocate iser_conn embedded in iscsi_endpoint since in teardown |
| 789 | * the endpoint will be destroyed at ep_disconnect while iser_conn will |
| 790 | * cleanup its resources asynchronuously. |
| 791 | * |
| 792 | * Return: iscsi_endpoint created by iscsi layer or ERR_PTR(error) |
| 793 | * if fails. |
| 794 | */ |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 795 | static struct iscsi_endpoint * |
Mike Christie | 10eb0f0 | 2009-05-13 17:57:38 -0500 | [diff] [blame] | 796 | iscsi_iser_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr, |
| 797 | int non_blocking) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 798 | { |
| 799 | int err; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 800 | struct iser_conn *iser_conn; |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 801 | struct iscsi_endpoint *ep; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 802 | |
Ariel Nahum | 0a69075 | 2014-07-31 13:27:47 +0300 | [diff] [blame] | 803 | ep = iscsi_create_endpoint(0); |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 804 | if (!ep) |
| 805 | return ERR_PTR(-ENOMEM); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 806 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 807 | iser_conn = kzalloc(sizeof(*iser_conn), GFP_KERNEL); |
| 808 | if (!iser_conn) { |
Ariel Nahum | 0a69075 | 2014-07-31 13:27:47 +0300 | [diff] [blame] | 809 | err = -ENOMEM; |
| 810 | goto failure; |
| 811 | } |
| 812 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 813 | ep->dd_data = iser_conn; |
| 814 | iser_conn->ep = ep; |
| 815 | iser_conn_init(iser_conn); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 816 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 817 | err = iser_connect(iser_conn, NULL, dst_addr, non_blocking); |
Or Gerlitz | 7d9c0de | 2012-04-29 17:04:21 +0300 | [diff] [blame] | 818 | if (err) |
Ariel Nahum | 0a69075 | 2014-07-31 13:27:47 +0300 | [diff] [blame] | 819 | goto failure; |
Or Gerlitz | 7d9c0de | 2012-04-29 17:04:21 +0300 | [diff] [blame] | 820 | |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 821 | return ep; |
Ariel Nahum | 0a69075 | 2014-07-31 13:27:47 +0300 | [diff] [blame] | 822 | failure: |
| 823 | iscsi_destroy_endpoint(ep); |
| 824 | return ERR_PTR(err); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 825 | } |
| 826 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 827 | /** |
| 828 | * iscsi_iser_ep_poll() - poll for iser connection establishment to complete |
| 829 | * @ep: iscsi endpoint (created at ep_connect) |
| 830 | * @timeout_ms: polling timeout allowed in ms. |
| 831 | * |
| 832 | * This routine boils down to waiting for up_completion signaling |
| 833 | * that cma_id got CONNECTED event. |
| 834 | * |
| 835 | * Return: 1 if succeeded in connection establishment, 0 if timeout expired |
| 836 | * (libiscsi will retry will kick in) or -1 if interrupted by signal |
| 837 | * or more likely iser connection state transitioned to TEMINATING or |
| 838 | * DOWN during the wait period. |
| 839 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 840 | static int |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 841 | iscsi_iser_ep_poll(struct iscsi_endpoint *ep, int timeout_ms) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 842 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 843 | struct iser_conn *iser_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 844 | int rc; |
| 845 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 846 | iser_conn = ep->dd_data; |
| 847 | rc = wait_for_completion_interruptible_timeout(&iser_conn->up_completion, |
Ariel Nahum | 9a6d323 | 2014-07-31 13:27:50 +0300 | [diff] [blame] | 848 | msecs_to_jiffies(timeout_ms)); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 849 | /* if conn establishment failed, return error code to iscsi */ |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 850 | if (rc == 0) { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 851 | mutex_lock(&iser_conn->state_mutex); |
| 852 | if (iser_conn->state == ISER_CONN_TERMINATING || |
| 853 | iser_conn->state == ISER_CONN_DOWN) |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 854 | rc = -1; |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 855 | mutex_unlock(&iser_conn->state_mutex); |
Ariel Nahum | 504130c | 2014-07-31 13:27:49 +0300 | [diff] [blame] | 856 | } |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 857 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 858 | iser_info("ib conn %p rc = %d\n", iser_conn, rc); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 859 | |
| 860 | if (rc > 0) |
| 861 | return 1; /* success, this is the equivalent of POLLOUT */ |
| 862 | else if (!rc) |
| 863 | return 0; /* timeout */ |
| 864 | else |
| 865 | return rc; /* signal */ |
| 866 | } |
| 867 | |
Sagi Grimberg | dc05ac3 | 2014-10-01 14:02:16 +0300 | [diff] [blame] | 868 | /** |
| 869 | * iscsi_iser_ep_disconnect() - Initiate connection teardown process |
| 870 | * @ep: iscsi endpoint handle |
| 871 | * |
| 872 | * This routine is not blocked by iser and RDMA termination process |
| 873 | * completion as we queue a deffered work for iser/RDMA destruction |
| 874 | * and cleanup or actually call it immediately in case we didn't pass |
| 875 | * iscsi conn bind/start stage, thus it is safe. |
| 876 | */ |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 877 | static void |
Mike Christie | 412eeaf | 2008-05-21 15:54:14 -0500 | [diff] [blame] | 878 | iscsi_iser_ep_disconnect(struct iscsi_endpoint *ep) |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 879 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 880 | struct iser_conn *iser_conn; |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 881 | |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 882 | iser_conn = ep->dd_data; |
| 883 | iser_info("ep %p iser conn %p state %d\n", |
| 884 | ep, iser_conn, iser_conn->state); |
| 885 | |
| 886 | mutex_lock(&iser_conn->state_mutex); |
| 887 | iser_conn_terminate(iser_conn); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 888 | |
| 889 | /* |
Ariel Nahum | 9a6d323 | 2014-07-31 13:27:50 +0300 | [diff] [blame] | 890 | * if iser_conn and iscsi_conn are bound, we must wait for |
| 891 | * iscsi_conn_stop and flush errors completion before freeing |
| 892 | * the iser resources. Otherwise we are safe to free resources |
| 893 | * immediately. |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 894 | */ |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 895 | if (iser_conn->iscsi_conn) { |
| 896 | INIT_WORK(&iser_conn->release_work, iser_release_work); |
| 897 | queue_work(release_wq, &iser_conn->release_work); |
| 898 | mutex_unlock(&iser_conn->state_mutex); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 899 | } else { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 900 | iser_conn->state = ISER_CONN_DOWN; |
| 901 | mutex_unlock(&iser_conn->state_mutex); |
| 902 | iser_conn_release(iser_conn); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 903 | } |
Ariel Nahum | 0a69075 | 2014-07-31 13:27:47 +0300 | [diff] [blame] | 904 | iscsi_destroy_endpoint(ep); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 905 | } |
| 906 | |
Al Viro | 587a1f1 | 2011-07-23 23:11:19 -0400 | [diff] [blame] | 907 | static umode_t iser_attr_is_visible(int param_type, int param) |
Mike Christie | 3128c6c | 2011-07-25 13:48:42 -0500 | [diff] [blame] | 908 | { |
| 909 | switch (param_type) { |
Mike Christie | f27fb2e | 2011-07-25 13:48:45 -0500 | [diff] [blame] | 910 | case ISCSI_HOST_PARAM: |
| 911 | switch (param) { |
| 912 | case ISCSI_HOST_PARAM_NETDEV_NAME: |
| 913 | case ISCSI_HOST_PARAM_HWADDRESS: |
| 914 | case ISCSI_HOST_PARAM_INITIATOR_NAME: |
| 915 | return S_IRUGO; |
| 916 | default: |
| 917 | return 0; |
| 918 | } |
Mike Christie | 3128c6c | 2011-07-25 13:48:42 -0500 | [diff] [blame] | 919 | case ISCSI_PARAM: |
| 920 | switch (param) { |
| 921 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 922 | case ISCSI_PARAM_MAX_XMIT_DLENGTH: |
| 923 | case ISCSI_PARAM_HDRDGST_EN: |
| 924 | case ISCSI_PARAM_DATADGST_EN: |
| 925 | case ISCSI_PARAM_CONN_ADDRESS: |
| 926 | case ISCSI_PARAM_CONN_PORT: |
| 927 | case ISCSI_PARAM_EXP_STATSN: |
| 928 | case ISCSI_PARAM_PERSISTENT_ADDRESS: |
| 929 | case ISCSI_PARAM_PERSISTENT_PORT: |
| 930 | case ISCSI_PARAM_PING_TMO: |
| 931 | case ISCSI_PARAM_RECV_TMO: |
Mike Christie | 1d063c1 | 2011-07-25 13:48:43 -0500 | [diff] [blame] | 932 | case ISCSI_PARAM_INITIAL_R2T_EN: |
| 933 | case ISCSI_PARAM_MAX_R2T: |
| 934 | case ISCSI_PARAM_IMM_DATA_EN: |
| 935 | case ISCSI_PARAM_FIRST_BURST: |
| 936 | case ISCSI_PARAM_MAX_BURST: |
| 937 | case ISCSI_PARAM_PDU_INORDER_EN: |
| 938 | case ISCSI_PARAM_DATASEQ_INORDER_EN: |
| 939 | case ISCSI_PARAM_TARGET_NAME: |
| 940 | case ISCSI_PARAM_TPGT: |
| 941 | case ISCSI_PARAM_USERNAME: |
| 942 | case ISCSI_PARAM_PASSWORD: |
| 943 | case ISCSI_PARAM_USERNAME_IN: |
| 944 | case ISCSI_PARAM_PASSWORD_IN: |
| 945 | case ISCSI_PARAM_FAST_ABORT: |
| 946 | case ISCSI_PARAM_ABORT_TMO: |
| 947 | case ISCSI_PARAM_LU_RESET_TMO: |
| 948 | case ISCSI_PARAM_TGT_RESET_TMO: |
| 949 | case ISCSI_PARAM_IFACE_NAME: |
| 950 | case ISCSI_PARAM_INITIATOR_NAME: |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 951 | case ISCSI_PARAM_DISCOVERY_SESS: |
Mike Christie | 3128c6c | 2011-07-25 13:48:42 -0500 | [diff] [blame] | 952 | return S_IRUGO; |
| 953 | default: |
| 954 | return 0; |
| 955 | } |
| 956 | } |
| 957 | |
| 958 | return 0; |
| 959 | } |
| 960 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 961 | static struct scsi_host_template iscsi_iser_sht = { |
Mike Christie | 7974392 | 2007-07-26 12:46:46 -0500 | [diff] [blame] | 962 | .module = THIS_MODULE, |
Roi Dayan | c1d786e | 2013-05-01 13:25:24 +0000 | [diff] [blame] | 963 | .name = "iSCSI Initiator over iSER", |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 964 | .queuecommand = iscsi_queuecommand, |
Christoph Hellwig | db5ed4d | 2014-11-13 15:08:42 +0100 | [diff] [blame] | 965 | .change_queue_depth = scsi_change_queue_depth, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 966 | .sg_tablesize = ISCSI_ISER_SG_TABLESIZE, |
Erez Zilber | 8072ec2 | 2006-09-11 12:20:54 +0300 | [diff] [blame] | 967 | .max_sectors = 1024, |
Mike Christie | e28f3d5 | 2009-03-05 14:46:01 -0600 | [diff] [blame] | 968 | .cmd_per_lun = ISER_DEF_CMD_PER_LUN, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 969 | .eh_abort_handler = iscsi_eh_abort, |
Erez Zilber | 90c18f3 | 2008-01-22 12:06:25 +0200 | [diff] [blame] | 970 | .eh_device_reset_handler= iscsi_eh_device_reset, |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 971 | .eh_target_reset_handler = iscsi_eh_recover_target, |
Mike Christie | 6b5d6c4 | 2009-04-21 15:32:32 -0500 | [diff] [blame] | 972 | .target_alloc = iscsi_target_alloc, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 973 | .use_clustering = DISABLE_CLUSTERING, |
| 974 | .proc_name = "iscsi_iser", |
| 975 | .this_id = -1, |
Christoph Hellwig | c40ecc1 | 2014-11-13 14:25:11 +0100 | [diff] [blame] | 976 | .track_queue_depth = 1, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 977 | }; |
| 978 | |
| 979 | static struct iscsi_transport iscsi_iser_transport = { |
| 980 | .owner = THIS_MODULE, |
| 981 | .name = "iser", |
Or Gerlitz | 6a06a4b | 2013-08-08 13:44:29 +0300 | [diff] [blame] | 982 | .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_TEXT_NEGO, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 983 | /* session management */ |
| 984 | .create_session = iscsi_iser_session_create, |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 985 | .destroy_session = iscsi_iser_session_destroy, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 986 | /* connection management */ |
| 987 | .create_conn = iscsi_iser_conn_create, |
| 988 | .bind_conn = iscsi_iser_conn_bind, |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 989 | .destroy_conn = iscsi_conn_teardown, |
Mike Christie | 3128c6c | 2011-07-25 13:48:42 -0500 | [diff] [blame] | 990 | .attr_is_visible = iser_attr_is_visible, |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 991 | .set_param = iscsi_iser_set_param, |
| 992 | .get_conn_param = iscsi_conn_get_param, |
Mike Christie | 7c53c6f | 2011-02-16 15:04:40 -0600 | [diff] [blame] | 993 | .get_ep_param = iscsi_iser_get_ep_param, |
Mike Christie | 358ff01 | 2006-06-28 12:00:25 -0500 | [diff] [blame] | 994 | .get_session_param = iscsi_session_get_param, |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 995 | .start_conn = iscsi_iser_conn_start, |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 996 | .stop_conn = iscsi_iser_conn_stop, |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 997 | /* iscsi host params */ |
| 998 | .get_host_param = iscsi_host_get_param, |
| 999 | .set_host_param = iscsi_host_set_param, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1000 | /* IO */ |
| 1001 | .send_pdu = iscsi_conn_send_pdu, |
| 1002 | .get_stats = iscsi_iser_conn_get_stats, |
Mike Christie | 2747fdb | 2008-05-21 15:54:08 -0500 | [diff] [blame] | 1003 | .init_task = iscsi_iser_task_init, |
| 1004 | .xmit_task = iscsi_iser_task_xmit, |
| 1005 | .cleanup_task = iscsi_iser_cleanup_task, |
Mike Christie | 0f9c744 | 2008-12-02 00:32:06 -0600 | [diff] [blame] | 1006 | .alloc_pdu = iscsi_iser_pdu_alloc, |
Sagi Grimberg | 0a7a08a | 2014-03-05 19:43:50 +0200 | [diff] [blame] | 1007 | .check_protection = iscsi_iser_check_protection, |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1008 | /* recovery */ |
| 1009 | .session_recovery_timedout = iscsi_session_recovery_timedout, |
| 1010 | |
| 1011 | .ep_connect = iscsi_iser_ep_connect, |
| 1012 | .ep_poll = iscsi_iser_ep_poll, |
| 1013 | .ep_disconnect = iscsi_iser_ep_disconnect |
| 1014 | }; |
| 1015 | |
| 1016 | static int __init iser_init(void) |
| 1017 | { |
| 1018 | int err; |
| 1019 | |
| 1020 | iser_dbg("Starting iSER datamover...\n"); |
| 1021 | |
| 1022 | if (iscsi_max_lun < 1) { |
Roi Dayan | 4f36388 | 2013-05-01 13:25:25 +0000 | [diff] [blame] | 1023 | iser_err("Invalid max_lun value of %u\n", iscsi_max_lun); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1024 | return -EINVAL; |
| 1025 | } |
| 1026 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1027 | memset(&ig, 0, sizeof(struct iser_global)); |
| 1028 | |
| 1029 | ig.desc_cache = kmem_cache_create("iser_descriptors", |
Or Gerlitz | f19624a | 2010-02-08 13:19:56 +0000 | [diff] [blame] | 1030 | sizeof(struct iser_tx_desc), |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1031 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1032 | NULL); |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1033 | if (ig.desc_cache == NULL) |
| 1034 | return -ENOMEM; |
| 1035 | |
| 1036 | /* device init is called only after the first addr resolution */ |
| 1037 | mutex_init(&ig.device_list_mutex); |
| 1038 | INIT_LIST_HEAD(&ig.device_list); |
| 1039 | mutex_init(&ig.connlist_mutex); |
| 1040 | INIT_LIST_HEAD(&ig.connlist); |
| 1041 | |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 1042 | release_wq = alloc_workqueue("release workqueue", 0, 0); |
| 1043 | if (!release_wq) { |
| 1044 | iser_err("failed to allocate release workqueue\n"); |
| 1045 | return -ENOMEM; |
| 1046 | } |
| 1047 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1048 | iscsi_iser_scsi_transport = iscsi_register_transport( |
| 1049 | &iscsi_iser_transport); |
| 1050 | if (!iscsi_iser_scsi_transport) { |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1051 | iser_err("iscsi_register_transport failed\n"); |
| 1052 | err = -EINVAL; |
| 1053 | goto register_transport_failure; |
| 1054 | } |
| 1055 | |
| 1056 | return 0; |
| 1057 | |
| 1058 | register_transport_failure: |
| 1059 | kmem_cache_destroy(ig.desc_cache); |
| 1060 | |
| 1061 | return err; |
| 1062 | } |
| 1063 | |
| 1064 | static void __exit iser_exit(void) |
| 1065 | { |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1066 | struct iser_conn *iser_conn, *n; |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 1067 | int connlist_empty; |
| 1068 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1069 | iser_dbg("Removing iSER datamover...\n"); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 1070 | destroy_workqueue(release_wq); |
| 1071 | |
| 1072 | mutex_lock(&ig.connlist_mutex); |
| 1073 | connlist_empty = list_empty(&ig.connlist); |
| 1074 | mutex_unlock(&ig.connlist_mutex); |
| 1075 | |
| 1076 | if (!connlist_empty) { |
| 1077 | iser_err("Error cleanup stage completed but we still have iser " |
| 1078 | "connections, destroying them anyway.\n"); |
Sagi Grimberg | 5716af6 | 2014-10-01 14:01:57 +0300 | [diff] [blame] | 1079 | list_for_each_entry_safe(iser_conn, n, &ig.connlist, |
| 1080 | conn_list) { |
| 1081 | iser_conn_release(iser_conn); |
Ariel Nahum | b73c3ad | 2014-05-22 11:00:18 +0300 | [diff] [blame] | 1082 | } |
| 1083 | } |
| 1084 | |
Or Gerlitz | 65e7ae7 | 2006-05-11 10:00:44 +0300 | [diff] [blame] | 1085 | iscsi_unregister_transport(&iscsi_iser_transport); |
| 1086 | kmem_cache_destroy(ig.desc_cache); |
| 1087 | } |
| 1088 | |
| 1089 | module_init(iser_init); |
| 1090 | module_exit(iser_exit); |