blob: 87c5ba86aff2a5813544577f104de80315ccd9ad [file] [log] [blame]
Hannes Reinecke057ea7c2008-07-17 16:53:21 -07001/*
2 * Generic SCSI-3 ALUA SCSI Device Handler
3 *
Hannes Reinecke69723d12010-09-24 15:57:04 +02004 * Copyright (C) 2007-2010 Hannes Reinecke, SUSE Linux Products GmbH.
Hannes Reinecke057ea7c2008-07-17 16:53:21 -07005 * All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 *
21 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Hannes Reinecke69723d12010-09-24 15:57:04 +020023#include <linux/delay.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040024#include <linux/module.h>
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070025#include <scsi/scsi.h>
26#include <scsi/scsi_eh.h>
27#include <scsi/scsi_dh.h>
28
29#define ALUA_DH_NAME "alua"
Hannes Reinecke69723d12010-09-24 15:57:04 +020030#define ALUA_DH_VER "1.3"
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070031
32#define TPGS_STATE_OPTIMIZED 0x0
33#define TPGS_STATE_NONOPTIMIZED 0x1
34#define TPGS_STATE_STANDBY 0x2
35#define TPGS_STATE_UNAVAILABLE 0x3
Hannes Reinecke69723d12010-09-24 15:57:04 +020036#define TPGS_STATE_LBA_DEPENDENT 0x4
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070037#define TPGS_STATE_OFFLINE 0xe
38#define TPGS_STATE_TRANSITIONING 0xf
39
40#define TPGS_SUPPORT_NONE 0x00
41#define TPGS_SUPPORT_OPTIMIZED 0x01
42#define TPGS_SUPPORT_NONOPTIMIZED 0x02
43#define TPGS_SUPPORT_STANDBY 0x04
44#define TPGS_SUPPORT_UNAVAILABLE 0x08
Hannes Reinecke69723d12010-09-24 15:57:04 +020045#define TPGS_SUPPORT_LBA_DEPENDENT 0x10
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070046#define TPGS_SUPPORT_OFFLINE 0x40
47#define TPGS_SUPPORT_TRANSITION 0x80
48
Rob Evers3588c5a2012-05-18 14:08:54 -040049#define RTPG_FMT_MASK 0x70
50#define RTPG_FMT_EXT_HDR 0x10
51
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070052#define TPGS_MODE_UNINITIALIZED -1
53#define TPGS_MODE_NONE 0x0
54#define TPGS_MODE_IMPLICIT 0x1
55#define TPGS_MODE_EXPLICIT 0x2
56
57#define ALUA_INQUIRY_SIZE 36
Rob Evers3588c5a2012-05-18 14:08:54 -040058#define ALUA_FAILOVER_TIMEOUT 60
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070059#define ALUA_FAILOVER_RETRIES 5
60
Moger, Babu4335d092012-03-27 20:55:49 +000061/* flags passed from user level */
62#define ALUA_OPTIMIZE_STPG 1
63
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070064struct alua_dh_data {
65 int group_id;
66 int rel_port;
67 int tpgs;
68 int state;
Moger, Babudcd3a752012-03-27 20:56:08 +000069 int pref;
Moger, Babu4335d092012-03-27 20:55:49 +000070 unsigned flags; /* used for optimizing STPG */
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070071 unsigned char inq[ALUA_INQUIRY_SIZE];
72 unsigned char *buff;
73 int bufflen;
Rob Evers3588c5a2012-05-18 14:08:54 -040074 unsigned char transition_tmo;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070075 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
76 int senselen;
Chandra Seetharaman96e65862009-10-21 09:23:04 -070077 struct scsi_device *sdev;
78 activate_complete callback_fn;
79 void *callback_data;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070080};
81
82#define ALUA_POLICY_SWITCH_CURRENT 0
83#define ALUA_POLICY_SWITCH_ALL 1
84
Chandra Seetharaman96e65862009-10-21 09:23:04 -070085static char print_alua_state(int);
86static int alua_check_sense(struct scsi_device *, struct scsi_sense_hdr *);
87
Hannes Reinecke057ea7c2008-07-17 16:53:21 -070088static int realloc_buffer(struct alua_dh_data *h, unsigned len)
89{
90 if (h->buff && h->buff != h->inq)
91 kfree(h->buff);
92
93 h->buff = kmalloc(len, GFP_NOIO);
94 if (!h->buff) {
95 h->buff = h->inq;
96 h->bufflen = ALUA_INQUIRY_SIZE;
97 return 1;
98 }
99 h->bufflen = len;
100 return 0;
101}
102
103static struct request *get_alua_req(struct scsi_device *sdev,
104 void *buffer, unsigned buflen, int rw)
105{
106 struct request *rq;
107 struct request_queue *q = sdev->request_queue;
108
109 rq = blk_get_request(q, rw, GFP_NOIO);
110
Joe Lawrencea492f072014-08-28 08:15:21 -0600111 if (IS_ERR(rq)) {
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700112 sdev_printk(KERN_INFO, sdev,
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700113 "%s: blk_get_request failed\n", __func__);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700114 return NULL;
115 }
Jens Axboef27b0872014-06-06 07:57:37 -0600116 blk_rq_set_block_pc(rq);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700117
118 if (buflen && blk_rq_map_kern(q, rq, buffer, buflen, GFP_NOIO)) {
119 blk_put_request(rq);
120 sdev_printk(KERN_INFO, sdev,
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700121 "%s: blk_rq_map_kern failed\n", __func__);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700122 return NULL;
123 }
124
Mike Christie6000a362008-08-19 18:45:30 -0500125 rq->cmd_flags |= REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
Mike Christie64f84bc2008-09-06 08:39:16 -0500126 REQ_FAILFAST_DRIVER;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700127 rq->retries = ALUA_FAILOVER_RETRIES;
Rob Evers3588c5a2012-05-18 14:08:54 -0400128 rq->timeout = ALUA_FAILOVER_TIMEOUT * HZ;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700129
130 return rq;
131}
132
133/*
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700134 * submit_rtpg - Issue a REPORT TARGET GROUP STATES command
135 * @sdev: sdev the command should be sent to
136 */
Rob Evers8e67ce62012-05-18 14:08:55 -0400137static unsigned submit_rtpg(struct scsi_device *sdev, struct alua_dh_data *h,
138 bool rtpg_ext_hdr_req)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700139{
140 struct request *rq;
141 int err = SCSI_DH_RES_TEMP_UNAVAIL;
142
143 rq = get_alua_req(sdev, h->buff, h->bufflen, READ);
144 if (!rq)
145 goto done;
146
147 /* Prepare the command. */
148 rq->cmd[0] = MAINTENANCE_IN;
Rob Evers8e67ce62012-05-18 14:08:55 -0400149 if (rtpg_ext_hdr_req)
150 rq->cmd[1] = MI_REPORT_TARGET_PGS | MI_EXT_HDR_PARAM_FMT;
151 else
152 rq->cmd[1] = MI_REPORT_TARGET_PGS;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700153 rq->cmd[6] = (h->bufflen >> 24) & 0xff;
154 rq->cmd[7] = (h->bufflen >> 16) & 0xff;
155 rq->cmd[8] = (h->bufflen >> 8) & 0xff;
156 rq->cmd[9] = h->bufflen & 0xff;
157 rq->cmd_len = COMMAND_SIZE(MAINTENANCE_IN);
158
159 rq->sense = h->sense;
160 memset(rq->sense, 0, SCSI_SENSE_BUFFERSIZE);
161 rq->sense_len = h->senselen = 0;
162
163 err = blk_execute_rq(rq->q, NULL, rq, 1);
164 if (err == -EIO) {
165 sdev_printk(KERN_INFO, sdev,
166 "%s: rtpg failed with %x\n",
167 ALUA_DH_NAME, rq->errors);
168 h->senselen = rq->sense_len;
169 err = SCSI_DH_IO;
170 }
171 blk_put_request(rq);
172done:
173 return err;
174}
175
176/*
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700177 * alua_stpg - Evaluate SET TARGET GROUP STATES
178 * @sdev: the device to be evaluated
179 * @state: the new target group state
180 *
181 * Send a SET TARGET GROUP STATES command to the device.
182 * We only have to test here if we should resubmit the command;
183 * any other error is assumed as a failure.
184 */
185static void stpg_endio(struct request *req, int error)
186{
187 struct alua_dh_data *h = req->end_io_data;
188 struct scsi_sense_hdr sense_hdr;
Joseph Gruher93499232011-01-05 16:00:22 -0500189 unsigned err = SCSI_DH_OK;
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700190
Mike Christie27db6822013-03-05 22:40:24 -0600191 if (host_byte(req->errors) != DID_OK ||
192 msg_byte(req->errors) != COMMAND_COMPLETE) {
Joseph Gruher93499232011-01-05 16:00:22 -0500193 err = SCSI_DH_IO;
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700194 goto done;
Joseph Gruher93499232011-01-05 16:00:22 -0500195 }
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700196
Mike Christie27db6822013-03-05 22:40:24 -0600197 if (req->sense_len > 0) {
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700198 err = scsi_normalize_sense(h->sense, SCSI_SENSE_BUFFERSIZE,
199 &sense_hdr);
200 if (!err) {
201 err = SCSI_DH_IO;
202 goto done;
203 }
204 err = alua_check_sense(h->sdev, &sense_hdr);
205 if (err == ADD_TO_MLQUEUE) {
206 err = SCSI_DH_RETRY;
207 goto done;
208 }
209 sdev_printk(KERN_INFO, h->sdev,
210 "%s: stpg sense code: %02x/%02x/%02x\n",
211 ALUA_DH_NAME, sense_hdr.sense_key,
212 sense_hdr.asc, sense_hdr.ascq);
213 err = SCSI_DH_IO;
Mike Christie27db6822013-03-05 22:40:24 -0600214 } else if (error)
215 err = SCSI_DH_IO;
216
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700217 if (err == SCSI_DH_OK) {
218 h->state = TPGS_STATE_OPTIMIZED;
219 sdev_printk(KERN_INFO, h->sdev,
220 "%s: port group %02x switched to state %c\n",
221 ALUA_DH_NAME, h->group_id,
222 print_alua_state(h->state));
223 }
224done:
Joseph Gruhered0f36b2011-01-05 16:00:21 -0500225 req->end_io_data = NULL;
226 __blk_put_request(req->q, req);
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700227 if (h->callback_fn) {
228 h->callback_fn(h->callback_data, err);
229 h->callback_fn = h->callback_data = NULL;
230 }
231 return;
232}
233
234/*
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700235 * submit_stpg - Issue a SET TARGET GROUP STATES command
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700236 *
237 * Currently we're only setting the current target port group state
238 * to 'active/optimized' and let the array firmware figure out
239 * the states of the remaining groups.
240 */
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700241static unsigned submit_stpg(struct alua_dh_data *h)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700242{
243 struct request *rq;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700244 int stpg_len = 8;
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700245 struct scsi_device *sdev = h->sdev;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700246
247 /* Prepare the data buffer */
248 memset(h->buff, 0, stpg_len);
249 h->buff[4] = TPGS_STATE_OPTIMIZED & 0x0f;
Ilgu Hongef3fa8c2009-01-30 17:00:09 -0600250 h->buff[6] = (h->group_id >> 8) & 0xff;
251 h->buff[7] = h->group_id & 0xff;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700252
253 rq = get_alua_req(sdev, h->buff, stpg_len, WRITE);
254 if (!rq)
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700255 return SCSI_DH_RES_TEMP_UNAVAIL;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700256
257 /* Prepare the command. */
258 rq->cmd[0] = MAINTENANCE_OUT;
259 rq->cmd[1] = MO_SET_TARGET_PGS;
260 rq->cmd[6] = (stpg_len >> 24) & 0xff;
261 rq->cmd[7] = (stpg_len >> 16) & 0xff;
262 rq->cmd[8] = (stpg_len >> 8) & 0xff;
263 rq->cmd[9] = stpg_len & 0xff;
264 rq->cmd_len = COMMAND_SIZE(MAINTENANCE_OUT);
265
266 rq->sense = h->sense;
267 memset(rq->sense, 0, SCSI_SENSE_BUFFERSIZE);
268 rq->sense_len = h->senselen = 0;
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700269 rq->end_io_data = h;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700270
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700271 blk_execute_rq_nowait(rq->q, NULL, rq, 1, stpg_endio);
Joseph Gruher7c66e9a2011-01-05 16:00:20 -0500272 return SCSI_DH_OK;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700273}
274
275/*
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200276 * alua_check_tpgs - Evaluate TPGS setting
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700277 * @sdev: device to be checked
278 *
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200279 * Examine the TPGS setting of the sdev to find out if ALUA
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700280 * is supported.
281 */
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200282static int alua_check_tpgs(struct scsi_device *sdev, struct alua_dh_data *h)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700283{
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200284 int err = SCSI_DH_OK;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700285
Hannes Reineckedb5a6a62015-12-01 10:16:43 +0100286 /*
287 * ALUA support for non-disk devices is fraught with
288 * difficulties, so disable it for now.
289 */
290 if (sdev->type != TYPE_DISK) {
291 h->tpgs = TPGS_MODE_NONE;
292 sdev_printk(KERN_INFO, sdev,
293 "%s: disable for non-disk devices\n",
294 ALUA_DH_NAME);
295 return SCSI_DH_DEV_UNSUPP;
296 }
297
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200298 h->tpgs = scsi_device_tpgs(sdev);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700299 switch (h->tpgs) {
300 case TPGS_MODE_EXPLICIT|TPGS_MODE_IMPLICIT:
301 sdev_printk(KERN_INFO, sdev,
302 "%s: supports implicit and explicit TPGS\n",
303 ALUA_DH_NAME);
304 break;
305 case TPGS_MODE_EXPLICIT:
306 sdev_printk(KERN_INFO, sdev, "%s: supports explicit TPGS\n",
307 ALUA_DH_NAME);
308 break;
309 case TPGS_MODE_IMPLICIT:
310 sdev_printk(KERN_INFO, sdev, "%s: supports implicit TPGS\n",
311 ALUA_DH_NAME);
312 break;
313 default:
314 h->tpgs = TPGS_MODE_NONE;
315 sdev_printk(KERN_INFO, sdev, "%s: not supported\n",
316 ALUA_DH_NAME);
317 err = SCSI_DH_DEV_UNSUPP;
318 break;
319 }
320
321 return err;
322}
323
324/*
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100325 * alua_check_vpd - Evaluate INQUIRY vpd page 0x83
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700326 * @sdev: device to be checked
327 *
328 * Extract the relative target port and the target port group
329 * descriptor from the list of identificators.
330 */
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100331static int alua_check_vpd(struct scsi_device *sdev, struct alua_dh_data *h)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700332{
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700333 unsigned char *d;
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100334 unsigned char __rcu *vpd_pg83;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700335
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100336 rcu_read_lock();
337 if (!rcu_dereference(sdev->vpd_pg83)) {
338 rcu_read_unlock();
339 return SCSI_DH_DEV_UNSUPP;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700340 }
341
342 /*
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100343 * Look for the correct descriptor.
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700344 */
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100345 vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
346 d = vpd_pg83 + 4;
347 while (d < vpd_pg83 + sdev->vpd_pg83_len) {
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700348 switch (d[1] & 0xf) {
349 case 0x4:
350 /* Relative target port */
351 h->rel_port = (d[6] << 8) + d[7];
352 break;
353 case 0x5:
354 /* Target port group */
355 h->group_id = (d[6] << 8) + d[7];
356 break;
357 default:
358 break;
359 }
360 d += d[3] + 4;
361 }
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100362 rcu_read_unlock();
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700363
364 if (h->group_id == -1) {
365 /*
366 * Internal error; TPGS supported but required
367 * VPD identification descriptors not present.
368 * Disable ALUA support
369 */
370 sdev_printk(KERN_INFO, sdev,
371 "%s: No target port descriptors found\n",
372 ALUA_DH_NAME);
373 h->state = TPGS_STATE_OPTIMIZED;
374 h->tpgs = TPGS_MODE_NONE;
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100375 return SCSI_DH_DEV_UNSUPP;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700376 }
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100377 sdev_printk(KERN_INFO, sdev,
378 "%s: port group %02x rel port %02x\n",
379 ALUA_DH_NAME, h->group_id, h->rel_port);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700380
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100381 return 0;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700382}
383
384static char print_alua_state(int state)
385{
386 switch (state) {
387 case TPGS_STATE_OPTIMIZED:
388 return 'A';
389 case TPGS_STATE_NONOPTIMIZED:
390 return 'N';
391 case TPGS_STATE_STANDBY:
392 return 'S';
393 case TPGS_STATE_UNAVAILABLE:
394 return 'U';
Hannes Reinecke69723d12010-09-24 15:57:04 +0200395 case TPGS_STATE_LBA_DEPENDENT:
396 return 'L';
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700397 case TPGS_STATE_OFFLINE:
398 return 'O';
399 case TPGS_STATE_TRANSITIONING:
400 return 'T';
401 default:
402 return 'X';
403 }
404}
405
406static int alua_check_sense(struct scsi_device *sdev,
407 struct scsi_sense_hdr *sense_hdr)
408{
409 switch (sense_hdr->sense_key) {
410 case NOT_READY:
411 if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x0a)
412 /*
413 * LUN Not Accessible - ALUA state transition
414 */
Mike Andersonc7dbb622008-08-12 12:11:57 -0700415 return ADD_TO_MLQUEUE;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700416 if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x0b)
417 /*
418 * LUN Not Accessible -- Target port in standby state
419 */
420 return SUCCESS;
421 if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x0c)
422 /*
423 * LUN Not Accessible -- Target port in unavailable state
424 */
425 return SUCCESS;
426 if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x12)
427 /*
428 * LUN Not Ready -- Offline
429 */
430 return SUCCESS;
wenxiong@linux.vnet.ibm.com333b2442014-11-06 15:11:23 -0600431 if (sdev->allow_restart &&
432 sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x02)
433 /*
434 * if the device is not started, we need to wake
435 * the error handler to start the motor
436 */
437 return FAILED;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700438 break;
439 case UNIT_ATTENTION:
440 if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x00)
441 /*
442 * Power On, Reset, or Bus Device Reset, just retry.
443 */
Mike Andersonc7dbb622008-08-12 12:11:57 -0700444 return ADD_TO_MLQUEUE;
Stewart, Seanc20ee7b2013-10-15 15:52:39 +0000445 if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x04)
446 /*
447 * Device internal reset
448 */
449 return ADD_TO_MLQUEUE;
Moger, Babu410f02d2011-12-21 18:01:37 -0500450 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x01)
451 /*
452 * Mode Parameters Changed
453 */
454 return ADD_TO_MLQUEUE;
Moger, Babubf819732011-10-06 13:22:07 -0400455 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x06)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700456 /*
457 * ALUA state changed
458 */
Mike Andersonc7dbb622008-08-12 12:11:57 -0700459 return ADD_TO_MLQUEUE;
Moger, Babubf819732011-10-06 13:22:07 -0400460 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x07)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700461 /*
462 * Implicit ALUA state transition failed
463 */
Mike Andersonc7dbb622008-08-12 12:11:57 -0700464 return ADD_TO_MLQUEUE;
Moger, Babubf819732011-10-06 13:22:07 -0400465 if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x03)
466 /*
467 * Inquiry data has changed
468 */
469 return ADD_TO_MLQUEUE;
470 if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x0e)
Ilgu Hong4d086f62009-01-30 17:00:11 -0600471 /*
472 * REPORTED_LUNS_DATA_HAS_CHANGED is reported
473 * when switching controllers on targets like
474 * Intel Multi-Flex. We can just retry.
475 */
476 return ADD_TO_MLQUEUE;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700477 break;
478 }
479
480 return SCSI_RETURN_NOT_HANDLED;
481}
482
483/*
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700484 * alua_rtpg - Evaluate REPORT TARGET GROUP STATES
485 * @sdev: the device to be evaluated.
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000486 * @wait_for_transition: if nonzero, wait ALUA_FAILOVER_TIMEOUT seconds for device to exit transitioning state
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700487 *
488 * Evaluate the Target Port Group State.
489 * Returns SCSI_DH_DEV_OFFLINED if the path is
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300490 * found to be unusable.
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700491 */
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000492static int alua_rtpg(struct scsi_device *sdev, struct alua_dh_data *h, int wait_for_transition)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700493{
494 struct scsi_sense_hdr sense_hdr;
495 int len, k, off, valid_states = 0;
Hannes Reineckecfde3fa2011-08-24 10:51:18 +0200496 unsigned char *ucp;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700497 unsigned err;
Rob Evers8e67ce62012-05-18 14:08:55 -0400498 bool rtpg_ext_hdr_req = 1;
Rob Eversbc97f4b2012-05-18 14:08:56 -0400499 unsigned long expiry, interval = 0;
Rob Evers3588c5a2012-05-18 14:08:54 -0400500 unsigned int tpg_desc_tbl_off;
501 unsigned char orig_transition_tmo;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700502
Rob Evers3588c5a2012-05-18 14:08:54 -0400503 if (!h->transition_tmo)
504 expiry = round_jiffies_up(jiffies + ALUA_FAILOVER_TIMEOUT * HZ);
505 else
506 expiry = round_jiffies_up(jiffies + h->transition_tmo * HZ);
507
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700508 retry:
Rob Evers8e67ce62012-05-18 14:08:55 -0400509 err = submit_rtpg(sdev, h, rtpg_ext_hdr_req);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700510
511 if (err == SCSI_DH_IO && h->senselen > 0) {
512 err = scsi_normalize_sense(h->sense, SCSI_SENSE_BUFFERSIZE,
513 &sense_hdr);
514 if (!err)
515 return SCSI_DH_IO;
516
Rob Evers8e67ce62012-05-18 14:08:55 -0400517 /*
518 * submit_rtpg() has failed on existing arrays
519 * when requesting extended header info, and
520 * the array doesn't support extended headers,
521 * even though it shouldn't according to T10.
522 * The retry without rtpg_ext_hdr_req set
523 * handles this.
524 */
525 if (rtpg_ext_hdr_req == 1 &&
526 sense_hdr.sense_key == ILLEGAL_REQUEST &&
527 sense_hdr.asc == 0x24 && sense_hdr.ascq == 0) {
528 rtpg_ext_hdr_req = 0;
529 goto retry;
530 }
531
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700532 err = alua_check_sense(sdev, &sense_hdr);
Hannes Reinecke69723d12010-09-24 15:57:04 +0200533 if (err == ADD_TO_MLQUEUE && time_before(jiffies, expiry))
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700534 goto retry;
535 sdev_printk(KERN_INFO, sdev,
536 "%s: rtpg sense code %02x/%02x/%02x\n",
537 ALUA_DH_NAME, sense_hdr.sense_key,
538 sense_hdr.asc, sense_hdr.ascq);
539 err = SCSI_DH_IO;
540 }
541 if (err != SCSI_DH_OK)
542 return err;
543
544 len = (h->buff[0] << 24) + (h->buff[1] << 16) +
545 (h->buff[2] << 8) + h->buff[3] + 4;
546
547 if (len > h->bufflen) {
548 /* Resubmit with the correct length */
549 if (realloc_buffer(h, len)) {
550 sdev_printk(KERN_WARNING, sdev,
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700551 "%s: kmalloc buffer failed\n",__func__);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700552 /* Temporary failure, bypass */
553 return SCSI_DH_DEV_TEMP_BUSY;
554 }
555 goto retry;
556 }
557
Rob Evers3588c5a2012-05-18 14:08:54 -0400558 orig_transition_tmo = h->transition_tmo;
559 if ((h->buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR && h->buff[5] != 0)
560 h->transition_tmo = h->buff[5];
561 else
562 h->transition_tmo = ALUA_FAILOVER_TIMEOUT;
563
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000564 if (wait_for_transition && (orig_transition_tmo != h->transition_tmo)) {
Rob Evers3588c5a2012-05-18 14:08:54 -0400565 sdev_printk(KERN_INFO, sdev,
566 "%s: transition timeout set to %d seconds\n",
567 ALUA_DH_NAME, h->transition_tmo);
568 expiry = jiffies + h->transition_tmo * HZ;
569 }
570
571 if ((h->buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR)
572 tpg_desc_tbl_off = 8;
573 else
574 tpg_desc_tbl_off = 4;
575
576 for (k = tpg_desc_tbl_off, ucp = h->buff + tpg_desc_tbl_off;
577 k < len;
578 k += off, ucp += off) {
579
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700580 if (h->group_id == (ucp[2] << 8) + ucp[3]) {
581 h->state = ucp[0] & 0x0f;
Moger, Babudcd3a752012-03-27 20:56:08 +0000582 h->pref = ucp[0] >> 7;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700583 valid_states = ucp[1];
584 }
585 off = 8 + (ucp[7] * 4);
586 }
587
588 sdev_printk(KERN_INFO, sdev,
Moger, Babudcd3a752012-03-27 20:56:08 +0000589 "%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700590 ALUA_DH_NAME, h->group_id, print_alua_state(h->state),
Moger, Babudcd3a752012-03-27 20:56:08 +0000591 h->pref ? "preferred" : "non-preferred",
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700592 valid_states&TPGS_SUPPORT_TRANSITION?'T':'t',
593 valid_states&TPGS_SUPPORT_OFFLINE?'O':'o',
Hannes Reinecke69723d12010-09-24 15:57:04 +0200594 valid_states&TPGS_SUPPORT_LBA_DEPENDENT?'L':'l',
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700595 valid_states&TPGS_SUPPORT_UNAVAILABLE?'U':'u',
596 valid_states&TPGS_SUPPORT_STANDBY?'S':'s',
597 valid_states&TPGS_SUPPORT_NONOPTIMIZED?'N':'n',
598 valid_states&TPGS_SUPPORT_OPTIMIZED?'A':'a');
599
Hannes Reinecke69723d12010-09-24 15:57:04 +0200600 switch (h->state) {
601 case TPGS_STATE_TRANSITIONING:
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000602 if (wait_for_transition) {
603 if (time_before(jiffies, expiry)) {
604 /* State transition, retry */
605 interval += 2000;
606 msleep(interval);
607 goto retry;
608 }
609 err = SCSI_DH_RETRY;
610 } else {
611 err = SCSI_DH_OK;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700612 }
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000613
Hannes Reinecke69723d12010-09-24 15:57:04 +0200614 /* Transitioning time exceeded, set port to standby */
Hannes Reinecke69723d12010-09-24 15:57:04 +0200615 h->state = TPGS_STATE_STANDBY;
616 break;
617 case TPGS_STATE_OFFLINE:
Bart Van Asschee47f8972012-08-24 09:08:41 +0000618 /* Path unusable */
Hannes Reinecke69723d12010-09-24 15:57:04 +0200619 err = SCSI_DH_DEV_OFFLINED;
620 break;
621 default:
622 /* Useable path if active */
623 err = SCSI_DH_OK;
624 break;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700625 }
626 return err;
627}
628
629/*
630 * alua_initialize - Initialize ALUA state
631 * @sdev: the device to be initialized
632 *
633 * For the prep_fn to work correctly we have
634 * to initialize the ALUA state for the device.
635 */
636static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h)
637{
638 int err;
639
Hannes Reinecked7c48fe2011-08-24 10:51:13 +0200640 err = alua_check_tpgs(sdev, h);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700641 if (err != SCSI_DH_OK)
642 goto out;
643
Hannes Reinecke9b80dce2015-12-01 10:16:44 +0100644 err = alua_check_vpd(sdev, h);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700645 if (err != SCSI_DH_OK)
646 goto out;
647
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000648 err = alua_rtpg(sdev, h, 0);
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700649 if (err != SCSI_DH_OK)
650 goto out;
651
652out:
653 return err;
654}
Moger, Babu4335d092012-03-27 20:55:49 +0000655/*
656 * alua_set_params - set/unset the optimize flag
657 * @sdev: device on the path to be activated
658 * params - parameters in the following format
659 * "no_of_params\0param1\0param2\0param3\0...\0"
660 * For example, to set the flag pass the following parameters
661 * from multipath.conf
662 * hardware_handler "2 alua 1"
663 */
664static int alua_set_params(struct scsi_device *sdev, const char *params)
665{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200666 struct alua_dh_data *h = sdev->handler_data;
Moger, Babu4335d092012-03-27 20:55:49 +0000667 unsigned int optimize = 0, argc;
668 const char *p = params;
669 int result = SCSI_DH_OK;
670
671 if ((sscanf(params, "%u", &argc) != 1) || (argc != 1))
672 return -EINVAL;
673
674 while (*p++)
675 ;
676 if ((sscanf(p, "%u", &optimize) != 1) || (optimize > 1))
677 return -EINVAL;
678
679 if (optimize)
680 h->flags |= ALUA_OPTIMIZE_STPG;
681 else
682 h->flags &= ~ALUA_OPTIMIZE_STPG;
683
684 return result;
685}
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700686
Stewart, Sean7a3ad392013-04-04 14:54:47 +0000687static uint optimize_stpg;
688module_param(optimize_stpg, uint, S_IRUGO|S_IWUSR);
689MODULE_PARM_DESC(optimize_stpg, "Allow use of a non-optimized path, rather than sending a STPG, when implicit TPGS is supported (0=No,1=Yes). Default is 0.");
690
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700691/*
692 * alua_activate - activate a path
693 * @sdev: device on the path to be activated
694 *
695 * We're currently switching the port group to be activated only and
696 * let the array figure out the rest.
697 * There may be other arrays which require us to switch all port groups
698 * based on a certain policy. But until we actually encounter them it
699 * should be okay.
700 */
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700701static int alua_activate(struct scsi_device *sdev,
702 activate_complete fn, void *data)
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700703{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200704 struct alua_dh_data *h = sdev->handler_data;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700705 int err = SCSI_DH_OK;
Moger, Babu72d9e0f2012-03-27 20:56:20 +0000706 int stpg = 0;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700707
Stewart, Seana8e5a2d2013-10-15 15:52:54 +0000708 err = alua_rtpg(sdev, h, 1);
Hannes Reinecke46ccf6b2011-08-24 10:51:16 +0200709 if (err != SCSI_DH_OK)
710 goto out;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700711
Stewart, Sean7a3ad392013-04-04 14:54:47 +0000712 if (optimize_stpg)
713 h->flags |= ALUA_OPTIMIZE_STPG;
714
Moger, Babu72d9e0f2012-03-27 20:56:20 +0000715 if (h->tpgs & TPGS_MODE_EXPLICIT) {
716 switch (h->state) {
717 case TPGS_STATE_NONOPTIMIZED:
718 stpg = 1;
719 if ((h->flags & ALUA_OPTIMIZE_STPG) &&
720 (!h->pref) &&
721 (h->tpgs & TPGS_MODE_IMPLICIT))
722 stpg = 0;
723 break;
724 case TPGS_STATE_STANDBY:
Bart Van Asschebb2c94a2012-06-22 08:49:38 +0000725 case TPGS_STATE_UNAVAILABLE:
Moger, Babu72d9e0f2012-03-27 20:56:20 +0000726 stpg = 1;
727 break;
Moger, Babu72d9e0f2012-03-27 20:56:20 +0000728 case TPGS_STATE_OFFLINE:
729 err = SCSI_DH_IO;
730 break;
731 case TPGS_STATE_TRANSITIONING:
732 err = SCSI_DH_RETRY;
733 break;
734 default:
735 break;
736 }
737 }
738
739 if (stpg) {
Chandra Seetharaman96e65862009-10-21 09:23:04 -0700740 h->callback_fn = fn;
741 h->callback_data = data;
742 err = submit_stpg(h);
743 if (err == SCSI_DH_OK)
744 return 0;
745 h->callback_fn = h->callback_data = NULL;
746 }
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700747
748out:
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700749 if (fn)
750 fn(data, err);
751 return 0;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700752}
753
754/*
755 * alua_prep_fn - request callback
756 *
757 * Fail I/O to all paths not in state
758 * active/optimized or active/non-optimized.
759 */
760static int alua_prep_fn(struct scsi_device *sdev, struct request *req)
761{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200762 struct alua_dh_data *h = sdev->handler_data;
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700763 int ret = BLKPREP_OK;
764
Hannes Reinecke69723d12010-09-24 15:57:04 +0200765 if (h->state == TPGS_STATE_TRANSITIONING)
766 ret = BLKPREP_DEFER;
767 else if (h->state != TPGS_STATE_OPTIMIZED &&
768 h->state != TPGS_STATE_NONOPTIMIZED &&
769 h->state != TPGS_STATE_LBA_DEPENDENT) {
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700770 ret = BLKPREP_KILL;
771 req->cmd_flags |= REQ_QUIET;
772 }
773 return ret;
774
775}
776
Christoph Hellwig1d520322014-09-14 11:08:21 -0700777/*
778 * alua_bus_attach - Attach device handler
779 * @sdev: device to be attached to
780 */
Christoph Hellwigee14c672015-08-27 14:16:59 +0200781static int alua_bus_attach(struct scsi_device *sdev)
Christoph Hellwig1d520322014-09-14 11:08:21 -0700782{
783 struct alua_dh_data *h;
784 int err;
785
786 h = kzalloc(sizeof(*h) , GFP_KERNEL);
787 if (!h)
Christoph Hellwigee14c672015-08-27 14:16:59 +0200788 return -ENOMEM;
Christoph Hellwig1d520322014-09-14 11:08:21 -0700789 h->tpgs = TPGS_MODE_UNINITIALIZED;
790 h->state = TPGS_STATE_OPTIMIZED;
791 h->group_id = -1;
792 h->rel_port = -1;
793 h->buff = h->inq;
794 h->bufflen = ALUA_INQUIRY_SIZE;
795 h->sdev = sdev;
796
797 err = alua_initialize(sdev, h);
798 if (err != SCSI_DH_OK && err != SCSI_DH_DEV_OFFLINED)
799 goto failed;
800
Christoph Hellwigee14c672015-08-27 14:16:59 +0200801 sdev->handler_data = h;
802 return 0;
Christoph Hellwig1d520322014-09-14 11:08:21 -0700803failed:
804 kfree(h);
Christoph Hellwigee14c672015-08-27 14:16:59 +0200805 return -EINVAL;
Christoph Hellwig1d520322014-09-14 11:08:21 -0700806}
807
808/*
809 * alua_bus_detach - Detach device handler
810 * @sdev: device to be detached from
811 */
812static void alua_bus_detach(struct scsi_device *sdev)
813{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200814 struct alua_dh_data *h = sdev->handler_data;
Christoph Hellwig1d520322014-09-14 11:08:21 -0700815
816 if (h->buff && h->inq != h->buff)
817 kfree(h->buff);
Christoph Hellwigee14c672015-08-27 14:16:59 +0200818 sdev->handler_data = NULL;
Christoph Hellwig1d520322014-09-14 11:08:21 -0700819 kfree(h);
820}
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700821
822static struct scsi_device_handler alua_dh = {
823 .name = ALUA_DH_NAME,
824 .module = THIS_MODULE,
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700825 .attach = alua_bus_attach,
826 .detach = alua_bus_detach,
827 .prep_fn = alua_prep_fn,
828 .check_sense = alua_check_sense,
829 .activate = alua_activate,
Moger, Babu4335d092012-03-27 20:55:49 +0000830 .set_params = alua_set_params,
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700831};
832
Hannes Reinecke057ea7c2008-07-17 16:53:21 -0700833static int __init alua_init(void)
834{
835 int r;
836
837 r = scsi_register_device_handler(&alua_dh);
838 if (r != 0)
839 printk(KERN_ERR "%s: Failed to register scsi device handler",
840 ALUA_DH_NAME);
841 return r;
842}
843
844static void __exit alua_exit(void)
845{
846 scsi_unregister_device_handler(&alua_dh);
847}
848
849module_init(alua_init);
850module_exit(alua_exit);
851
852MODULE_DESCRIPTION("DM Multipath ALUA support");
853MODULE_AUTHOR("Hannes Reinecke <hare@suse.de>");
854MODULE_LICENSE("GPL");
855MODULE_VERSION(ALUA_DH_VER);