blob: 4d2ba5682493221bf32f0c4000021da54dc57044 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Swen Schillig41fa2ada2007-09-07 09:15:31 +02002/*
Christof Schmitt553448f2008-06-10 18:20:58 +02003 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Christof Schmitt553448f2008-06-10 18:20:58 +02005 * Interface to Linux SCSI midlayer.
Swen Schillig41fa2ada2007-09-07 09:15:31 +02006 *
Steffen Maier9fe5d2b2017-07-28 12:30:54 +02007 * Copyright IBM Corp. 2002, 2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Christof Schmittecf39d42008-12-25 13:39:53 +010010#define KMSG_COMPONENT "zfcp"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Heiko Carstens3a4c5d52011-07-30 09:25:15 +020013#include <linux/module.h>
Christof Schmitt4318e082009-11-24 16:54:08 +010014#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Christof Schmitt4318e082009-11-24 16:54:08 +010016#include <scsi/fc/fc_fcp.h>
Felix Beckef3eb712010-07-16 15:37:42 +020017#include <scsi/scsi_eh.h>
Arun Sharma600634972011-07-26 16:09:06 -070018#include <linux/atomic.h>
Christof Schmittdcd20e22009-08-18 15:43:08 +020019#include "zfcp_ext.h"
20#include "zfcp_dbf.h"
Christof Schmitt7c7dc192009-11-24 16:54:13 +010021#include "zfcp_fc.h"
Christof Schmittb6bd2fb2010-02-17 11:18:50 +010022#include "zfcp_reqlist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Christof Schmitta40a1ba2009-05-15 13:18:16 +020024static unsigned int default_depth = 32;
25module_param_named(queue_depth, default_depth, uint, 0600);
26MODULE_PARM_DESC(queue_depth, "Default queue depth for new SCSI devices");
27
Felix Beckef3eb712010-07-16 15:37:42 +020028static bool enable_dif;
Steffen Maiercc405ac2011-08-15 14:40:30 +020029module_param_named(dif, enable_dif, bool, 0400);
Felix Beckef3eb712010-07-16 15:37:42 +020030MODULE_PARM_DESC(dif, "Enable DIF/DIX data integrity support");
Felix Beckef3eb712010-07-16 15:37:42 +020031
Benjamin Block51569342017-07-28 12:30:50 +020032static bool allow_lun_scan = true;
Christof Schmitt0d81b4e2010-12-08 17:30:46 +010033module_param(allow_lun_scan, bool, 0600);
34MODULE_PARM_DESC(allow_lun_scan, "For NPIV, scan and attach all storage LUNs");
35
Christof Schmittb62a8d92010-09-08 14:39:55 +020036static void zfcp_scsi_slave_destroy(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Christof Schmittb62a8d92010-09-08 14:39:55 +020038 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
39
Steffen Maier44f747f2011-11-18 20:00:40 +010040 /* if previous slave_alloc returned early, there is nothing to do */
41 if (!zfcp_sdev->port)
42 return;
43
Christof Schmittb62a8d92010-09-08 14:39:55 +020044 zfcp_erp_lun_shutdown_wait(sdev, "scssd_1");
45 put_device(&zfcp_sdev->port->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
47
Martin Petermannf76af7d72008-07-02 10:56:36 +020048static int zfcp_scsi_slave_configure(struct scsi_device *sdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 if (sdp->tagged_supported)
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +010051 scsi_change_queue_depth(sdp, default_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return 0;
53}
54
Martin Petermannf76af7d72008-07-02 10:56:36 +020055static void zfcp_scsi_command_fail(struct scsi_cmnd *scpnt, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Martin Petermannfeac6a02008-07-02 10:56:35 +020057 set_host_byte(scpnt, result);
Swen Schillig250a1352010-12-02 15:16:15 +010058 zfcp_dbf_scsi_fail_send(scpnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 scpnt->scsi_done(scpnt);
60}
61
Christof Schmitte55f8752010-11-18 14:53:18 +010062static
63int zfcp_scsi_queuecommand(struct Scsi_Host *shost, struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Christof Schmittb62a8d92010-09-08 14:39:55 +020065 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010066 struct fc_rport *rport = starget_to_rport(scsi_target(scpnt->device));
Christof Schmittb62a8d92010-09-08 14:39:55 +020067 int status, scsi_result, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69 /* reset the status for this request */
70 scpnt->result = 0;
71 scpnt->host_scribble = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010073 scsi_result = fc_remote_port_chkready(rport);
74 if (unlikely(scsi_result)) {
75 scpnt->result = scsi_result;
Swen Schillig250a1352010-12-02 15:16:15 +010076 zfcp_dbf_scsi_fail_send(scpnt);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +010077 scpnt->scsi_done(scpnt);
78 return 0;
79 }
80
Christof Schmittb62a8d92010-09-08 14:39:55 +020081 status = atomic_read(&zfcp_sdev->status);
Christof Schmitt88302712009-11-24 16:54:07 +010082 if (unlikely(status & ZFCP_STATUS_COMMON_ERP_FAILED) &&
Christof Schmittb62a8d92010-09-08 14:39:55 +020083 !(atomic_read(&zfcp_sdev->port->status) &
Christof Schmitt88302712009-11-24 16:54:07 +010084 ZFCP_STATUS_COMMON_ERP_FAILED)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +020085 /* only LUN access denied, but port is good
Christof Schmitt88302712009-11-24 16:54:07 +010086 * not covered by FC transport, have to fail here */
Martin Petermannf76af7d72008-07-02 10:56:36 +020087 zfcp_scsi_command_fail(scpnt, DID_ERROR);
Joe Perchesa419aef2009-08-18 11:18:35 -070088 return 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +020089 }
90
Christof Schmitt88302712009-11-24 16:54:07 +010091 if (unlikely(!(status & ZFCP_STATUS_COMMON_UNBLOCKED))) {
Steffen Maier6f2ce1c2016-12-09 17:16:33 +010092 /* This could be
Christof Schmitt88302712009-11-24 16:54:07 +010093 * call to rport_delete pending: mimic retry from
94 * fc_remote_port_chkready until rport is BLOCKED
95 */
96 zfcp_scsi_command_fail(scpnt, DID_IMM_RETRY);
97 return 0;
98 }
99
Christof Schmittb62a8d92010-09-08 14:39:55 +0200100 ret = zfcp_fsf_fcp_cmnd(scpnt);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200101 if (unlikely(ret == -EBUSY))
Swen Schilligf7a65e92008-11-27 11:44:07 +0100102 return SCSI_MLQUEUE_DEVICE_BUSY;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200103 else if (unlikely(ret < 0))
104 return SCSI_MLQUEUE_HOST_BUSY;
105
106 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Christof Schmittb62a8d92010-09-08 14:39:55 +0200109static int zfcp_scsi_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200111 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
112 struct zfcp_adapter *adapter =
113 (struct zfcp_adapter *) sdev->host->hostdata[0];
114 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 struct zfcp_port *port;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200116 struct zfcp_unit *unit;
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100117 int npiv = adapter->connection_features & FSF_FEATURE_NPIV_MODE;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200118
Steffen Maierab31fd02017-10-13 15:40:07 +0200119 zfcp_sdev->erp_action.adapter = adapter;
120 zfcp_sdev->erp_action.sdev = sdev;
121
Christof Schmittb62a8d92010-09-08 14:39:55 +0200122 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
123 if (!port)
124 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200125
Steffen Maierab31fd02017-10-13 15:40:07 +0200126 zfcp_sdev->erp_action.port = port;
127
Christof Schmittb62a8d92010-09-08 14:39:55 +0200128 unit = zfcp_unit_find(port, zfcp_scsi_dev_lun(sdev));
129 if (unit)
130 put_device(&unit->dev);
Christof Schmittf8210e32010-09-08 14:39:56 +0200131
Christof Schmitt0d81b4e2010-12-08 17:30:46 +0100132 if (!unit && !(allow_lun_scan && npiv)) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200133 put_device(&port->dev);
134 return -ENXIO;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200135 }
Christof Schmittb62a8d92010-09-08 14:39:55 +0200136
137 zfcp_sdev->port = port;
138 zfcp_sdev->latencies.write.channel.min = 0xFFFFFFFF;
139 zfcp_sdev->latencies.write.fabric.min = 0xFFFFFFFF;
140 zfcp_sdev->latencies.read.channel.min = 0xFFFFFFFF;
141 zfcp_sdev->latencies.read.fabric.min = 0xFFFFFFFF;
142 zfcp_sdev->latencies.cmd.channel.min = 0xFFFFFFFF;
143 zfcp_sdev->latencies.cmd.fabric.min = 0xFFFFFFFF;
144 spin_lock_init(&zfcp_sdev->latencies.lock);
145
Swen Schilligedaed852010-09-08 14:40:01 +0200146 zfcp_erp_set_lun_status(sdev, ZFCP_STATUS_COMMON_RUNNING);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100147 zfcp_erp_lun_reopen(sdev, 0, "scsla_1");
Christof Schmittb62a8d92010-09-08 14:39:55 +0200148 zfcp_erp_wait(port->adapter);
149
150 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100153static int zfcp_scsi_eh_abort_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Christof Schmitt63caf362009-03-02 13:09:00 +0100155 struct Scsi_Host *scsi_host = scpnt->device->host;
156 struct zfcp_adapter *adapter =
157 (struct zfcp_adapter *) scsi_host->hostdata[0];
Christof Schmitt63caf362009-03-02 13:09:00 +0100158 struct zfcp_fsf_req *old_req, *abrt_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 unsigned long flags;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200160 unsigned long old_reqid = (unsigned long) scpnt->host_scribble;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100161 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100162 int retry = 3;
Christof Schmitta11a52b2009-07-13 15:06:14 +0200163 char *dbf_tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200165 /* avoid race condition between late normal completion and abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 write_lock_irqsave(&adapter->abort_lock, flags);
167
Christof Schmittb6bd2fb2010-02-17 11:18:50 +0100168 old_req = zfcp_reqlist_find(adapter->req_list, old_reqid);
Christof Schmitt63caf362009-03-02 13:09:00 +0100169 if (!old_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 write_unlock_irqrestore(&adapter->abort_lock, flags);
Swen Schillig250a1352010-12-02 15:16:15 +0100171 zfcp_dbf_scsi_abort("abrt_or", scpnt, NULL);
Christof Schmittc6936e72009-04-17 15:08:11 +0200172 return FAILED; /* completion could be in progress */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100174 old_req->data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200176 /* don't access old fsf_req after releasing the abort_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 write_unlock_irqrestore(&adapter->abort_lock, flags);
Andreas Herrmann4eff4a32006-09-18 22:29:20 +0200178
Christof Schmitt63caf362009-03-02 13:09:00 +0100179 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200180 abrt_req = zfcp_fsf_abort_fcp_cmnd(scpnt);
Christof Schmitt63caf362009-03-02 13:09:00 +0100181 if (abrt_req)
182 break;
183
184 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100185 ret = fc_block_scsi_eh(scpnt);
Swen Schillig250a1352010-12-02 15:16:15 +0100186 if (ret) {
187 zfcp_dbf_scsi_abort("abrt_bl", scpnt, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100188 return ret;
Swen Schillig250a1352010-12-02 15:16:15 +0100189 }
Christof Schmitt63caf362009-03-02 13:09:00 +0100190 if (!(atomic_read(&adapter->status) &
191 ZFCP_STATUS_COMMON_RUNNING)) {
Swen Schillig250a1352010-12-02 15:16:15 +0100192 zfcp_dbf_scsi_abort("abrt_ru", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100193 return SUCCESS;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Swen Schillig250a1352010-12-02 15:16:15 +0100196 if (!abrt_req) {
197 zfcp_dbf_scsi_abort("abrt_ar", scpnt, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100198 return FAILED;
Swen Schillig250a1352010-12-02 15:16:15 +0100199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Swen Schillig058b8642009-08-18 15:43:14 +0200201 wait_for_completion(&abrt_req->completion);
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200202
Christof Schmitt63caf362009-03-02 13:09:00 +0100203 if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100204 dbf_tag = "abrt_ok";
Christof Schmitt63caf362009-03-02 13:09:00 +0100205 else if (abrt_req->status & ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED)
Swen Schillig250a1352010-12-02 15:16:15 +0100206 dbf_tag = "abrt_nn";
Christof Schmitt63caf362009-03-02 13:09:00 +0100207 else {
Swen Schillig250a1352010-12-02 15:16:15 +0100208 dbf_tag = "abrt_fa";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 retval = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
Swen Schillig250a1352010-12-02 15:16:15 +0100211 zfcp_dbf_scsi_abort(dbf_tag, scpnt, abrt_req);
Christof Schmitt63caf362009-03-02 13:09:00 +0100212 zfcp_fsf_req_free(abrt_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return retval;
214}
215
Benjamin Blockdac37e12016-12-09 17:16:31 +0100216struct zfcp_scsi_req_filter {
217 u8 tmf_scope;
218 u32 lun_handle;
219 u32 port_handle;
220};
221
222static void zfcp_scsi_forget_cmnd(struct zfcp_fsf_req *old_req, void *data)
223{
224 struct zfcp_scsi_req_filter *filter =
225 (struct zfcp_scsi_req_filter *)data;
226
227 /* already aborted - prevent side-effects - or not a SCSI command */
228 if (old_req->data == NULL || old_req->fsf_command != FSF_QTCB_FCP_CMND)
229 return;
230
231 /* (tmf_scope == FCP_TMF_TGT_RESET || tmf_scope == FCP_TMF_LUN_RESET) */
232 if (old_req->qtcb->header.port_handle != filter->port_handle)
233 return;
234
235 if (filter->tmf_scope == FCP_TMF_LUN_RESET &&
236 old_req->qtcb->header.lun_handle != filter->lun_handle)
237 return;
238
239 zfcp_dbf_scsi_nullcmnd((struct scsi_cmnd *)old_req->data, old_req);
240 old_req->data = NULL;
241}
242
243static void zfcp_scsi_forget_cmnds(struct zfcp_scsi_dev *zsdev, u8 tm_flags)
244{
245 struct zfcp_adapter *adapter = zsdev->port->adapter;
246 struct zfcp_scsi_req_filter filter = {
247 .tmf_scope = FCP_TMF_TGT_RESET,
248 .port_handle = zsdev->port->handle,
249 };
250 unsigned long flags;
251
252 if (tm_flags == FCP_TMF_LUN_RESET) {
253 filter.tmf_scope = FCP_TMF_LUN_RESET;
254 filter.lun_handle = zsdev->lun_handle;
255 }
256
257 /*
258 * abort_lock secures against other processings - in the abort-function
259 * and normal cmnd-handler - of (struct zfcp_fsf_req *)->data
260 */
261 write_lock_irqsave(&adapter->abort_lock, flags);
262 zfcp_reqlist_apply_for_all(adapter->req_list, zfcp_scsi_forget_cmnd,
263 &filter);
264 write_unlock_irqrestore(&adapter->abort_lock, flags);
265}
266
Christof Schmitt63caf362009-03-02 13:09:00 +0100267static int zfcp_task_mgmt_function(struct scsi_cmnd *scpnt, u8 tm_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200269 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
270 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Swen Schillig564e1c82009-08-18 15:43:19 +0200271 struct zfcp_fsf_req *fsf_req = NULL;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100272 int retval = SUCCESS, ret;
Christof Schmitt63caf362009-03-02 13:09:00 +0100273 int retry = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Christof Schmitt63caf362009-03-02 13:09:00 +0100275 while (retry--) {
Christof Schmittb62a8d92010-09-08 14:39:55 +0200276 fsf_req = zfcp_fsf_fcp_task_mgmt(scpnt, tm_flags);
Christof Schmitt63caf362009-03-02 13:09:00 +0100277 if (fsf_req)
278 break;
279
280 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100281 ret = fc_block_scsi_eh(scpnt);
Steffen Maier1a5d9992017-07-28 12:30:55 +0200282 if (ret) {
283 zfcp_dbf_scsi_devreset("fiof", scpnt, tm_flags, NULL);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100284 return ret;
Steffen Maier1a5d9992017-07-28 12:30:55 +0200285 }
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100286
Christof Schmitt63caf362009-03-02 13:09:00 +0100287 if (!(atomic_read(&adapter->status) &
288 ZFCP_STATUS_COMMON_RUNNING)) {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200289 zfcp_dbf_scsi_devreset("nres", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100290 return SUCCESS;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Steffen Maier1a5d9992017-07-28 12:30:55 +0200293 if (!fsf_req) {
294 zfcp_dbf_scsi_devreset("reqf", scpnt, tm_flags, NULL);
Christof Schmitt63caf362009-03-02 13:09:00 +0100295 return FAILED;
Steffen Maier1a5d9992017-07-28 12:30:55 +0200296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Swen Schillig058b8642009-08-18 15:43:14 +0200298 wait_for_completion(&fsf_req->completion);
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200299
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200300 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TMFUNCFAILED) {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200301 zfcp_dbf_scsi_devreset("fail", scpnt, tm_flags, fsf_req);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200302 retval = FAILED;
Benjamin Blockdac37e12016-12-09 17:16:31 +0100303 } else {
Steffen Maier9fe5d2b2017-07-28 12:30:54 +0200304 zfcp_dbf_scsi_devreset("okay", scpnt, tm_flags, fsf_req);
Benjamin Blockdac37e12016-12-09 17:16:31 +0100305 zfcp_scsi_forget_cmnds(zfcp_sdev, tm_flags);
306 }
Andreas Herrmann77eb1692005-09-13 21:48:33 +0200307
308 zfcp_fsf_req_free(fsf_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return retval;
310}
311
Martin Petermannf76af7d72008-07-02 10:56:36 +0200312static int zfcp_scsi_eh_device_reset_handler(struct scsi_cmnd *scpnt)
313{
Christof Schmitt4318e082009-11-24 16:54:08 +0100314 return zfcp_task_mgmt_function(scpnt, FCP_TMF_LUN_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200315}
316
317static int zfcp_scsi_eh_target_reset_handler(struct scsi_cmnd *scpnt)
318{
Christof Schmitt4318e082009-11-24 16:54:08 +0100319 return zfcp_task_mgmt_function(scpnt, FCP_TMF_TGT_RESET);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200320}
321
Heiko Carstens2b67fc42007-02-05 21:16:47 +0100322static int zfcp_scsi_eh_host_reset_handler(struct scsi_cmnd *scpnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200324 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(scpnt->device);
325 struct zfcp_adapter *adapter = zfcp_sdev->port->adapter;
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100326 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Swen Schilligea4a3a62010-12-02 15:16:16 +0100328 zfcp_erp_adapter_reopen(adapter, 0, "schrh_1");
Andreas Herrmann81654282006-09-18 22:30:36 +0200329 zfcp_erp_wait(adapter);
Christof Schmitta1dbfdd2010-03-24 16:50:31 +0100330 ret = fc_block_scsi_eh(scpnt);
331 if (ret)
332 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Andreas Herrmann810f1e3e2005-09-13 21:49:52 +0200334 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Christof Schmitt1947c722011-02-22 19:54:46 +0100337struct scsi_transport_template *zfcp_scsi_transport_template;
338
339static struct scsi_host_template zfcp_scsi_host_template = {
340 .module = THIS_MODULE,
341 .name = "zfcp",
342 .queuecommand = zfcp_scsi_queuecommand,
Christoph Hellwigb6a05c82017-01-30 13:18:58 +0100343 .eh_timed_out = fc_eh_timed_out,
Christof Schmitt1947c722011-02-22 19:54:46 +0100344 .eh_abort_handler = zfcp_scsi_eh_abort_handler,
345 .eh_device_reset_handler = zfcp_scsi_eh_device_reset_handler,
346 .eh_target_reset_handler = zfcp_scsi_eh_target_reset_handler,
347 .eh_host_reset_handler = zfcp_scsi_eh_host_reset_handler,
348 .slave_alloc = zfcp_scsi_slave_alloc,
349 .slave_configure = zfcp_scsi_slave_configure,
350 .slave_destroy = zfcp_scsi_slave_destroy,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100351 .change_queue_depth = scsi_change_queue_depth,
Christof Schmitt1947c722011-02-22 19:54:46 +0100352 .proc_name = "zfcp",
353 .can_queue = 4096,
354 .this_id = -1,
Steffen Maier5fea4292013-04-26 17:33:45 +0200355 .sg_tablesize = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
356 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2),
357 /* GCD, adjusted later */
358 .max_sectors = (((QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
359 * ZFCP_QDIO_MAX_SBALS_PER_REQ) - 2) * 8,
360 /* GCD, adjusted later */
Christof Schmitt1947c722011-02-22 19:54:46 +0100361 .dma_boundary = ZFCP_QDIO_SBALE_LEN - 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100362 .use_clustering = 1,
363 .shost_attrs = zfcp_sysfs_shost_attrs,
364 .sdev_attrs = zfcp_sysfs_sdev_attrs,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100365 .track_queue_depth = 1,
Christof Schmitt1947c722011-02-22 19:54:46 +0100366};
367
368/**
369 * zfcp_scsi_adapter_register - Register SCSI and FC host with SCSI midlayer
370 * @adapter: The zfcp adapter to register with the SCSI midlayer
371 */
372int zfcp_scsi_adapter_register(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200374 struct ccw_dev_id dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Michael Loehr9f287452007-05-09 11:01:24 +0200376 if (adapter->scsi_host)
Martin Petermannf76af7d72008-07-02 10:56:36 +0200377 return 0;
Michael Loehr9f287452007-05-09 11:01:24 +0200378
Martin Petermannf76af7d72008-07-02 10:56:36 +0200379 ccw_device_get_id(adapter->ccw_device, &dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* register adapter as SCSI host with mid layer of SCSI stack */
Christof Schmitt1947c722011-02-22 19:54:46 +0100381 adapter->scsi_host = scsi_host_alloc(&zfcp_scsi_host_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 sizeof (struct zfcp_adapter *));
383 if (!adapter->scsi_host) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200384 dev_err(&adapter->ccw_device->dev,
Christof Schmittff3b24f2008-10-01 12:42:15 +0200385 "Registering the FCP device with the "
386 "SCSI stack failed\n");
Martin Petermannf76af7d72008-07-02 10:56:36 +0200387 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* tell the SCSI stack some characteristics of this adapter */
Christof Schmittf8210e32010-09-08 14:39:56 +0200391 adapter->scsi_host->max_id = 511;
392 adapter->scsi_host->max_lun = 0xFFFFFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 adapter->scsi_host->max_channel = 0;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200394 adapter->scsi_host->unique_id = dev_id.devno;
Christof Schmitt4318e082009-11-24 16:54:08 +0100395 adapter->scsi_host->max_cmd_len = 16; /* in struct fcp_cmnd */
Christof Schmitt1947c722011-02-22 19:54:46 +0100396 adapter->scsi_host->transportt = zfcp_scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 adapter->scsi_host->hostdata[0] = (unsigned long) adapter;
399
400 if (scsi_add_host(adapter->scsi_host, &adapter->ccw_device->dev)) {
401 scsi_host_put(adapter->scsi_host);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200402 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Martin Petermannf76af7d72008-07-02 10:56:36 +0200404
405 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Christof Schmitt1947c722011-02-22 19:54:46 +0100408/**
409 * zfcp_scsi_adapter_unregister - Unregister SCSI and FC host from SCSI midlayer
410 * @adapter: The zfcp adapter to unregister.
411 */
412void zfcp_scsi_adapter_unregister(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct Scsi_Host *shost;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200415 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 shost = adapter->scsi_host;
418 if (!shost)
419 return;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200420
Swen Schilligecf0c772009-11-24 16:53:58 +0100421 read_lock_irq(&adapter->port_list_lock);
422 list_for_each_entry(port, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100423 port->rport = NULL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100424 read_unlock_irq(&adapter->port_list_lock);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200425
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700426 fc_remove_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 scsi_remove_host(shost);
428 scsi_host_put(shost);
429 adapter->scsi_host = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100432static struct fc_host_statistics*
433zfcp_init_fc_host_stats(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100435 struct fc_host_statistics *fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100437 if (!adapter->fc_stats) {
438 fc_stats = kmalloc(sizeof(*fc_stats), GFP_KERNEL);
439 if (!fc_stats)
440 return NULL;
Swen Schilligf3450c72009-11-24 16:53:59 +0100441 adapter->fc_stats = fc_stats; /* freed in adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100442 }
443 memset(adapter->fc_stats, 0, sizeof(*adapter->fc_stats));
444 return adapter->fc_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Martin Petermannf76af7d72008-07-02 10:56:36 +0200447static void zfcp_adjust_fc_host_stats(struct fc_host_statistics *fc_stats,
448 struct fsf_qtcb_bottom_port *data,
449 struct fsf_qtcb_bottom_port *old)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Martin Petermannf76af7d72008-07-02 10:56:36 +0200451 fc_stats->seconds_since_last_reset =
452 data->seconds_since_last_reset - old->seconds_since_last_reset;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100453 fc_stats->tx_frames = data->tx_frames - old->tx_frames;
454 fc_stats->tx_words = data->tx_words - old->tx_words;
455 fc_stats->rx_frames = data->rx_frames - old->rx_frames;
456 fc_stats->rx_words = data->rx_words - old->rx_words;
457 fc_stats->lip_count = data->lip - old->lip;
458 fc_stats->nos_count = data->nos - old->nos;
459 fc_stats->error_frames = data->error_frames - old->error_frames;
460 fc_stats->dumped_frames = data->dumped_frames - old->dumped_frames;
461 fc_stats->link_failure_count = data->link_failure - old->link_failure;
462 fc_stats->loss_of_sync_count = data->loss_of_sync - old->loss_of_sync;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200463 fc_stats->loss_of_signal_count =
464 data->loss_of_signal - old->loss_of_signal;
465 fc_stats->prim_seq_protocol_err_count =
466 data->psp_error_counts - old->psp_error_counts;
467 fc_stats->invalid_tx_word_count =
468 data->invalid_tx_words - old->invalid_tx_words;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100469 fc_stats->invalid_crc_count = data->invalid_crcs - old->invalid_crcs;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200470 fc_stats->fcp_input_requests =
471 data->input_requests - old->input_requests;
472 fc_stats->fcp_output_requests =
473 data->output_requests - old->output_requests;
474 fc_stats->fcp_control_requests =
475 data->control_requests - old->control_requests;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100476 fc_stats->fcp_input_megabytes = data->input_mb - old->input_mb;
477 fc_stats->fcp_output_megabytes = data->output_mb - old->output_mb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Martin Petermannf76af7d72008-07-02 10:56:36 +0200480static void zfcp_set_fc_host_stats(struct fc_host_statistics *fc_stats,
481 struct fsf_qtcb_bottom_port *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100483 fc_stats->seconds_since_last_reset = data->seconds_since_last_reset;
484 fc_stats->tx_frames = data->tx_frames;
485 fc_stats->tx_words = data->tx_words;
486 fc_stats->rx_frames = data->rx_frames;
487 fc_stats->rx_words = data->rx_words;
488 fc_stats->lip_count = data->lip;
489 fc_stats->nos_count = data->nos;
490 fc_stats->error_frames = data->error_frames;
491 fc_stats->dumped_frames = data->dumped_frames;
492 fc_stats->link_failure_count = data->link_failure;
493 fc_stats->loss_of_sync_count = data->loss_of_sync;
494 fc_stats->loss_of_signal_count = data->loss_of_signal;
495 fc_stats->prim_seq_protocol_err_count = data->psp_error_counts;
496 fc_stats->invalid_tx_word_count = data->invalid_tx_words;
497 fc_stats->invalid_crc_count = data->invalid_crcs;
498 fc_stats->fcp_input_requests = data->input_requests;
499 fc_stats->fcp_output_requests = data->output_requests;
500 fc_stats->fcp_control_requests = data->control_requests;
501 fc_stats->fcp_input_megabytes = data->input_mb;
502 fc_stats->fcp_output_megabytes = data->output_mb;
503}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Martin Petermannf76af7d72008-07-02 10:56:36 +0200505static struct fc_host_statistics *zfcp_get_fc_host_stats(struct Scsi_Host *host)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100506{
507 struct zfcp_adapter *adapter;
508 struct fc_host_statistics *fc_stats;
509 struct fsf_qtcb_bottom_port *data;
510 int ret;
511
Martin Petermannf76af7d72008-07-02 10:56:36 +0200512 adapter = (struct zfcp_adapter *)host->hostdata[0];
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100513 fc_stats = zfcp_init_fc_host_stats(adapter);
514 if (!fc_stats)
515 return NULL;
516
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200517 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100518 if (!data)
519 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100520
Swen Schillig564e1c82009-08-18 15:43:19 +0200521 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100522 if (ret) {
523 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200524 return NULL;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100525 }
526
527 if (adapter->stats_reset &&
528 ((jiffies/HZ - adapter->stats_reset) <
Martin Petermannf76af7d72008-07-02 10:56:36 +0200529 data->seconds_since_last_reset))
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100530 zfcp_adjust_fc_host_stats(fc_stats, data,
531 adapter->stats_reset_data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200532 else
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100533 zfcp_set_fc_host_stats(fc_stats, data);
534
535 kfree(data);
536 return fc_stats;
537}
538
Martin Petermannf76af7d72008-07-02 10:56:36 +0200539static void zfcp_reset_fc_host_stats(struct Scsi_Host *shost)
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100540{
541 struct zfcp_adapter *adapter;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200542 struct fsf_qtcb_bottom_port *data;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100543 int ret;
544
545 adapter = (struct zfcp_adapter *)shost->hostdata[0];
Andreas Herrmannec4081c2006-05-22 18:17:30 +0200546 data = kzalloc(sizeof(*data), GFP_KERNEL);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100547 if (!data)
548 return;
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100549
Swen Schillig564e1c82009-08-18 15:43:19 +0200550 ret = zfcp_fsf_exchange_port_data_sync(adapter->qdio, data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200551 if (ret)
Heiko Carstens83f6d6d2007-08-08 10:47:02 +0200552 kfree(data);
Martin Petermannf76af7d72008-07-02 10:56:36 +0200553 else {
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100554 adapter->stats_reset = jiffies/HZ;
Martin Petermannf76af7d72008-07-02 10:56:36 +0200555 kfree(adapter->stats_reset_data);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100556 adapter->stats_reset_data = data; /* finally freed in
Swen Schilligf3450c72009-11-24 16:53:59 +0100557 adapter_release */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Sven Schuetz85a82392008-06-10 18:20:59 +0200561static void zfcp_get_host_port_state(struct Scsi_Host *shost)
562{
563 struct zfcp_adapter *adapter =
564 (struct zfcp_adapter *)shost->hostdata[0];
565 int status = atomic_read(&adapter->status);
566
567 if ((status & ZFCP_STATUS_COMMON_RUNNING) &&
568 !(status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED))
569 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
570 else if (status & ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED)
571 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
572 else if (status & ZFCP_STATUS_COMMON_ERP_FAILED)
573 fc_host_port_state(shost) = FC_PORTSTATE_ERROR;
574 else
575 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
576}
577
Andreas Herrmann338151e2006-05-22 18:25:56 +0200578static void zfcp_set_rport_dev_loss_tmo(struct fc_rport *rport, u32 timeout)
579{
580 rport->dev_loss_tmo = timeout;
581}
582
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100583/**
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100584 * zfcp_scsi_terminate_rport_io - Terminate all I/O on a rport
585 * @rport: The FC rport where to teminate I/O
586 *
587 * Abort all pending SCSI commands for a port by closing the
Christof Schmitt835dc292010-07-08 09:53:08 +0200588 * port. Using a reopen avoids a conflict with a shutdown
589 * overwriting a reopen. The "forced" ensures that a disappeared port
590 * is not opened again as valid due to the cached plogi data in
591 * non-NPIV mode.
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100592 */
593static void zfcp_scsi_terminate_rport_io(struct fc_rport *rport)
594{
Christof Schmitt70932932009-04-17 15:08:15 +0200595 struct zfcp_port *port;
Swen Schilligea945ff2009-08-18 15:43:24 +0200596 struct Scsi_Host *shost = rport_to_shost(rport);
597 struct zfcp_adapter *adapter =
598 (struct zfcp_adapter *)shost->hostdata[0];
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100599
Swen Schilligea945ff2009-08-18 15:43:24 +0200600 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt70932932009-04-17 15:08:15 +0200601
602 if (port) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100603 zfcp_erp_port_forced_reopen(port, 0, "sctrpi1");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100604 put_device(&port->dev);
Christof Schmitt70932932009-04-17 15:08:15 +0200605 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100606}
607
608static void zfcp_scsi_rport_register(struct zfcp_port *port)
609{
610 struct fc_rport_identifiers ids;
611 struct fc_rport *rport;
612
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200613 if (port->rport)
614 return;
615
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100616 ids.node_name = port->wwnn;
617 ids.port_name = port->wwpn;
618 ids.port_id = port->d_id;
619 ids.roles = FC_RPORT_ROLE_FCP_TARGET;
620
Steffen Maier4eeaa4f2016-08-10 18:30:46 +0200621 zfcp_dbf_rec_trig("scpaddy", port->adapter, port, NULL,
622 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD,
623 ZFCP_PSEUDO_ERP_ACTION_RPORT_ADD);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100624 rport = fc_remote_port_add(port->adapter->scsi_host, 0, &ids);
625 if (!rport) {
626 dev_err(&port->adapter->ccw_device->dev,
627 "Registering port 0x%016Lx failed\n",
628 (unsigned long long)port->wwpn);
629 return;
630 }
631
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100632 rport->maxframe_size = port->maxframe_size;
633 rport->supported_classes = port->supported_classes;
634 port->rport = rport;
Christof Schmitt1bf3ff02010-07-16 15:37:35 +0200635 port->starget_id = rport->scsi_target_id;
Christof Schmitt5a7de552010-07-08 09:53:07 +0200636
Christof Schmitt1daa4eb2010-09-08 14:39:52 +0200637 zfcp_unit_queue_scsi_scan(port);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100638}
639
640static void zfcp_scsi_rport_block(struct zfcp_port *port)
641{
Christof Schmitt70932932009-04-17 15:08:15 +0200642 struct fc_rport *rport = port->rport;
643
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200644 if (rport) {
Steffen Maier4eeaa4f2016-08-10 18:30:46 +0200645 zfcp_dbf_rec_trig("scpdely", port->adapter, port, NULL,
646 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL,
647 ZFCP_PSEUDO_ERP_ACTION_RPORT_DEL);
Christof Schmitt70932932009-04-17 15:08:15 +0200648 fc_remote_port_delete(rport);
Christof Schmitt379d6bf2009-07-13 15:06:11 +0200649 port->rport = NULL;
650 }
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100651}
652
653void zfcp_scsi_schedule_rport_register(struct zfcp_port *port)
654{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100655 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100656 port->rport_task = RPORT_ADD;
657
Swen Schillig45446832009-08-18 15:43:17 +0200658 if (!queue_work(port->adapter->work_queue, &port->rport_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100659 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100660}
661
662void zfcp_scsi_schedule_rport_block(struct zfcp_port *port)
663{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100664 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100665 port->rport_task = RPORT_DEL;
666
Swen Schillig45446832009-08-18 15:43:17 +0200667 if (port->rport && queue_work(port->adapter->work_queue,
668 &port->rport_work))
Swen Schilliga67417a2009-08-18 15:43:06 +0200669 return;
670
Christof Schmitt615f59e2010-02-17 11:18:56 +0100671 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100672}
673
674void zfcp_scsi_schedule_rports_block(struct zfcp_adapter *adapter)
675{
Swen Schilligecf0c772009-11-24 16:53:58 +0100676 unsigned long flags;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100677 struct zfcp_port *port;
678
Swen Schilligecf0c772009-11-24 16:53:58 +0100679 read_lock_irqsave(&adapter->port_list_lock, flags);
680 list_for_each_entry(port, &adapter->port_list, list)
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100681 zfcp_scsi_schedule_rport_block(port);
Swen Schilligecf0c772009-11-24 16:53:58 +0100682 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100683}
684
685void zfcp_scsi_rport_work(struct work_struct *work)
686{
687 struct zfcp_port *port = container_of(work, struct zfcp_port,
688 rport_work);
689
690 while (port->rport_task) {
691 if (port->rport_task == RPORT_ADD) {
692 port->rport_task = RPORT_NONE;
693 zfcp_scsi_rport_register(port);
694 } else {
695 port->rport_task = RPORT_NONE;
696 zfcp_scsi_rport_block(port);
697 }
698 }
699
Christof Schmitt615f59e2010-02-17 11:18:56 +0100700 put_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100701}
702
Christof Schmitt5a7de552010-07-08 09:53:07 +0200703/**
Felix Beckef3eb712010-07-16 15:37:42 +0200704 * zfcp_scsi_set_prot - Configure DIF/DIX support in scsi_host
705 * @adapter: The adapter where to configure DIF/DIX for the SCSI host
706 */
707void zfcp_scsi_set_prot(struct zfcp_adapter *adapter)
708{
709 unsigned int mask = 0;
710 unsigned int data_div;
711 struct Scsi_Host *shost = adapter->scsi_host;
712
713 data_div = atomic_read(&adapter->status) &
714 ZFCP_STATUS_ADAPTER_DATA_DIV_ENABLED;
715
716 if (enable_dif &&
717 adapter->adapter_features & FSF_FEATURE_DIF_PROT_TYPE1)
718 mask |= SHOST_DIF_TYPE1_PROTECTION;
719
720 if (enable_dif && data_div &&
721 adapter->adapter_features & FSF_FEATURE_DIX_PROT_TCPIP) {
722 mask |= SHOST_DIX_TYPE1_PROTECTION;
723 scsi_host_set_guard(shost, SHOST_DIX_GUARD_IP);
Swen Schillig86a96682011-08-15 14:40:32 +0200724 shost->sg_prot_tablesize = adapter->qdio->max_sbale_per_req / 2;
725 shost->sg_tablesize = adapter->qdio->max_sbale_per_req / 2;
726 shost->max_sectors = shost->sg_tablesize * 8;
Felix Beckef3eb712010-07-16 15:37:42 +0200727 }
728
729 scsi_host_set_prot(shost, mask);
730}
731
732/**
733 * zfcp_scsi_dif_sense_error - Report DIF/DIX error as driver sense error
734 * @scmd: The SCSI command to report the error for
735 * @ascq: The ASCQ to put in the sense buffer
736 *
737 * See the error handling in sd_done for the sense codes used here.
738 * Set DID_SOFT_ERROR to retry the request, if possible.
739 */
740void zfcp_scsi_dif_sense_error(struct scsi_cmnd *scmd, int ascq)
741{
742 scsi_build_sense_buffer(1, scmd->sense_buffer,
743 ILLEGAL_REQUEST, 0x10, ascq);
744 set_driver_byte(scmd, DRIVER_SENSE);
745 scmd->result |= SAM_STAT_CHECK_CONDITION;
746 set_host_byte(scmd, DID_SOFT_ERROR);
747}
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749struct fc_function_template zfcp_transport_functions = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 .show_starget_port_id = 1,
751 .show_starget_port_name = 1,
752 .show_starget_node_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700753 .show_rport_supported_classes = 1,
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200754 .show_rport_maxframe_size = 1,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200755 .show_rport_dev_loss_tmo = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700756 .show_host_node_name = 1,
757 .show_host_port_name = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100758 .show_host_permanent_port_name = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700759 .show_host_supported_classes = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100760 .show_host_supported_fc4s = 1,
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100761 .show_host_supported_speeds = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200762 .show_host_maxframe_size = 1,
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700763 .show_host_serial_number = 1,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100764 .get_fc_host_stats = zfcp_get_fc_host_stats,
765 .reset_fc_host_stats = zfcp_reset_fc_host_stats,
Andreas Herrmann338151e2006-05-22 18:25:56 +0200766 .set_rport_dev_loss_tmo = zfcp_set_rport_dev_loss_tmo,
Sven Schuetz85a82392008-06-10 18:20:59 +0200767 .get_host_port_state = zfcp_get_host_port_state,
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100768 .terminate_rport_io = zfcp_scsi_terminate_rport_io,
Sven Schuetz85a82392008-06-10 18:20:59 +0200769 .show_host_port_state = 1,
Christof Schmitt0fdd2132009-11-24 16:54:17 +0100770 .show_host_active_fc4s = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100771 .bsg_request = zfcp_fc_exec_bsg_job,
Swen Schillig491ca442010-01-14 17:19:01 +0100772 .bsg_timeout = zfcp_fc_timeout_bsg_job,
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100773 /* no functions registered for following dynamic attributes but
774 directly set by LLDD */
Andreas Herrmannad757cd2006-01-13 02:26:11 +0100775 .show_host_port_type = 1,
Christof Schmitt038d9442011-02-22 19:54:48 +0100776 .show_host_symbolic_name = 1,
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200777 .show_host_speed = 1,
778 .show_host_port_id = 1,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100779 .dd_bsg_size = sizeof(struct zfcp_fsf_ct_els),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780};