scsi_dh_alua.c 26.1 KB
Newer Older
1 2 3
/*
 * Generic SCSI-3 ALUA SCSI Device Handler
 *
4
 * Copyright (C) 2007-2010 Hannes Reinecke, SUSE Linux Products GmbH.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 */
22
#include <linux/slab.h>
23
#include <linux/delay.h>
24
#include <linux/module.h>
25
#include <asm/unaligned.h>
26
#include <scsi/scsi.h>
27
#include <scsi/scsi_dbg.h>
28 29 30 31
#include <scsi/scsi_eh.h>
#include <scsi/scsi_dh.h>

#define ALUA_DH_NAME "alua"
32
#define ALUA_DH_VER "1.3"
33 34 35 36 37

#define TPGS_STATE_OPTIMIZED		0x0
#define TPGS_STATE_NONOPTIMIZED		0x1
#define TPGS_STATE_STANDBY		0x2
#define TPGS_STATE_UNAVAILABLE		0x3
38
#define TPGS_STATE_LBA_DEPENDENT	0x4
39 40 41 42 43 44 45 46
#define TPGS_STATE_OFFLINE		0xe
#define TPGS_STATE_TRANSITIONING	0xf

#define TPGS_SUPPORT_NONE		0x00
#define TPGS_SUPPORT_OPTIMIZED		0x01
#define TPGS_SUPPORT_NONOPTIMIZED	0x02
#define TPGS_SUPPORT_STANDBY		0x04
#define TPGS_SUPPORT_UNAVAILABLE	0x08
47
#define TPGS_SUPPORT_LBA_DEPENDENT	0x10
48 49 50
#define TPGS_SUPPORT_OFFLINE		0x40
#define TPGS_SUPPORT_TRANSITION		0x80

51 52 53
#define RTPG_FMT_MASK			0x70
#define RTPG_FMT_EXT_HDR		0x10

54 55 56 57 58
#define TPGS_MODE_UNINITIALIZED		 -1
#define TPGS_MODE_NONE			0x0
#define TPGS_MODE_IMPLICIT		0x1
#define TPGS_MODE_EXPLICIT		0x2

59
#define ALUA_RTPG_SIZE			128
60
#define ALUA_FAILOVER_TIMEOUT		60
61
#define ALUA_FAILOVER_RETRIES		5
62
#define ALUA_RTPG_DELAY_MSECS		5
63

64
/* device handler flags */
65 66
#define ALUA_OPTIMIZE_STPG		0x01
#define ALUA_RTPG_EXT_HDR_UNSUPP	0x02
67
#define ALUA_SYNC_STPG			0x04
68 69 70 71
/* State machine flags */
#define ALUA_PG_RUN_RTPG		0x10
#define ALUA_PG_RUN_STPG		0x20
#define ALUA_PG_RUNNING			0x40
72

73 74 75 76
static uint optimize_stpg;
module_param(optimize_stpg, uint, S_IRUGO|S_IWUSR);
MODULE_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.");

77 78
static LIST_HEAD(port_group_list);
static DEFINE_SPINLOCK(port_group_lock);
79
static struct workqueue_struct *kaluad_wq;
80
static struct workqueue_struct *kaluad_sync_wq;
81 82 83

struct alua_port_group {
	struct kref		kref;
84
	struct rcu_head		rcu;
85
	struct list_head	node;
86 87
	unsigned char		device_id_str[256];
	int			device_id_len;
88 89 90
	int			group_id;
	int			tpgs;
	int			state;
91
	int			pref;
92
	unsigned		flags; /* used for optimizing STPG */
93
	unsigned char		transition_tmo;
94 95 96 97 98 99
	unsigned long		expiry;
	unsigned long		interval;
	struct delayed_work	rtpg_work;
	spinlock_t		lock;
	struct list_head	rtpg_list;
	struct scsi_device	*rtpg_sdev;
100 101 102 103 104
};

struct alua_dh_data {
	struct alua_port_group	*pg;
	int			group_id;
105
	spinlock_t		pg_lock;
106
	struct scsi_device	*sdev;
107 108 109 110 111 112
	int			init_error;
	struct mutex		init_mutex;
};

struct alua_queue_data {
	struct list_head	entry;
113 114
	activate_complete	callback_fn;
	void			*callback_data;
115 116 117 118 119
};

#define ALUA_POLICY_SWITCH_CURRENT	0
#define ALUA_POLICY_SWITCH_ALL		1

120 121 122 123
static void alua_rtpg_work(struct work_struct *work);
static void alua_rtpg_queue(struct alua_port_group *pg,
			    struct scsi_device *sdev,
			    struct alua_queue_data *qdata);
124

125 126 127 128 129
static void release_port_group(struct kref *kref)
{
	struct alua_port_group *pg;

	pg = container_of(kref, struct alua_port_group, kref);
130 131
	if (pg->rtpg_sdev)
		flush_delayed_work(&pg->rtpg_work);
132 133 134
	spin_lock(&port_group_lock);
	list_del(&pg->node);
	spin_unlock(&port_group_lock);
135
	kfree_rcu(pg, rcu);
136 137
}

138 139 140 141
/*
 * submit_rtpg - Issue a REPORT TARGET GROUP STATES command
 * @sdev: sdev the command should be sent to
 */
142 143
static int submit_rtpg(struct scsi_device *sdev, unsigned char *buff,
		       int bufflen, struct scsi_sense_hdr *sshdr, int flags)
144
{
145 146 147
	u8 cdb[COMMAND_SIZE(MAINTENANCE_IN)];
	int req_flags = REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
		REQ_FAILFAST_DRIVER;
148 149

	/* Prepare the command. */
150 151
	memset(cdb, 0x0, COMMAND_SIZE(MAINTENANCE_IN));
	cdb[0] = MAINTENANCE_IN;
152
	if (!(flags & ALUA_RTPG_EXT_HDR_UNSUPP))
153
		cdb[1] = MI_REPORT_TARGET_PGS | MI_EXT_HDR_PARAM_FMT;
154
	else
155 156 157 158 159 160 161
		cdb[1] = MI_REPORT_TARGET_PGS;
	put_unaligned_be32(bufflen, &cdb[6]);

	return scsi_execute_req_flags(sdev, cdb, DMA_FROM_DEVICE,
				      buff, bufflen, sshdr,
				      ALUA_FAILOVER_TIMEOUT * HZ,
				      ALUA_FAILOVER_RETRIES, NULL, req_flags);
162 163
}

164
/*
165
 * submit_stpg - Issue a SET TARGET PORT GROUP command
166 167 168 169 170
 *
 * Currently we're only setting the current target port group state
 * to 'active/optimized' and let the array firmware figure out
 * the states of the remaining groups.
 */
171 172
static int submit_stpg(struct scsi_device *sdev, int group_id,
		       struct scsi_sense_hdr *sshdr)
173
{
174
	u8 cdb[COMMAND_SIZE(MAINTENANCE_OUT)];
175
	unsigned char stpg_data[8];
176
	int stpg_len = 8;
177 178
	int req_flags = REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
		REQ_FAILFAST_DRIVER;
179 180

	/* Prepare the data buffer */
181 182 183
	memset(stpg_data, 0, stpg_len);
	stpg_data[4] = TPGS_STATE_OPTIMIZED & 0x0f;
	put_unaligned_be16(group_id, &stpg_data[6]);
184 185

	/* Prepare the command. */
186 187 188 189 190 191 192 193 194
	memset(cdb, 0x0, COMMAND_SIZE(MAINTENANCE_OUT));
	cdb[0] = MAINTENANCE_OUT;
	cdb[1] = MO_SET_TARGET_PGS;
	put_unaligned_be32(stpg_len, &cdb[6]);

	return scsi_execute_req_flags(sdev, cdb, DMA_TO_DEVICE,
				      stpg_data, stpg_len,
				      sshdr, ALUA_FAILOVER_TIMEOUT * HZ,
				      ALUA_FAILOVER_RETRIES, NULL, req_flags);
195 196
}

197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
struct alua_port_group *alua_find_get_pg(char *id_str, size_t id_size,
					 int group_id)
{
	struct alua_port_group *pg;

	list_for_each_entry(pg, &port_group_list, node) {
		if (pg->group_id != group_id)
			continue;
		if (pg->device_id_len != id_size)
			continue;
		if (strncmp(pg->device_id_str, id_str, id_size))
			continue;
		if (!kref_get_unless_zero(&pg->kref))
			continue;
		return pg;
	}

	return NULL;
}

217 218 219 220 221 222 223 224 225 226 227 228
/*
 * alua_alloc_pg - Allocate a new port_group structure
 * @sdev: scsi device
 * @h: alua device_handler data
 * @group_id: port group id
 *
 * Allocate a new port_group structure for a given
 * device.
 */
struct alua_port_group *alua_alloc_pg(struct scsi_device *sdev,
				      int group_id, int tpgs)
{
229
	struct alua_port_group *pg, *tmp_pg;
230 231 232

	pg = kzalloc(sizeof(struct alua_port_group), GFP_KERNEL);
	if (!pg)
233
		return ERR_PTR(-ENOMEM);
234

235 236 237 238 239 240 241 242 243 244 245 246 247
	pg->device_id_len = scsi_vpd_lun_id(sdev, pg->device_id_str,
					    sizeof(pg->device_id_str));
	if (pg->device_id_len <= 0) {
		/*
		 * Internal error: TPGS supported but no device
		 * identifcation found. Disable ALUA support.
		 */
		kfree(pg);
		sdev_printk(KERN_INFO, sdev,
			    "%s: No device descriptors found\n",
			    ALUA_DH_NAME);
		return ERR_PTR(-ENXIO);
	}
248 249 250
	pg->group_id = group_id;
	pg->tpgs = tpgs;
	pg->state = TPGS_STATE_OPTIMIZED;
251 252
	if (optimize_stpg)
		pg->flags |= ALUA_OPTIMIZE_STPG;
253
	kref_init(&pg->kref);
254 255 256 257
	INIT_DELAYED_WORK(&pg->rtpg_work, alua_rtpg_work);
	INIT_LIST_HEAD(&pg->rtpg_list);
	INIT_LIST_HEAD(&pg->node);
	spin_lock_init(&pg->lock);
258

259
	spin_lock(&port_group_lock);
260 261 262 263 264 265 266 267
	tmp_pg = alua_find_get_pg(pg->device_id_str, pg->device_id_len,
				  group_id);
	if (tmp_pg) {
		spin_unlock(&port_group_lock);
		kfree(pg);
		return tmp_pg;
	}

268 269 270 271 272 273
	list_add(&pg->node, &port_group_list);
	spin_unlock(&port_group_lock);

	return pg;
}

274
/*
275
 * alua_check_tpgs - Evaluate TPGS setting
276 277
 * @sdev: device to be checked
 *
278
 * Examine the TPGS setting of the sdev to find out if ALUA
279 280
 * is supported.
 */
281
static int alua_check_tpgs(struct scsi_device *sdev)
282
{
283
	int tpgs = TPGS_MODE_NONE;
284

285 286 287 288 289 290 291 292
	/*
	 * ALUA support for non-disk devices is fraught with
	 * difficulties, so disable it for now.
	 */
	if (sdev->type != TYPE_DISK) {
		sdev_printk(KERN_INFO, sdev,
			    "%s: disable for non-disk devices\n",
			    ALUA_DH_NAME);
293
		return tpgs;
294 295
	}

296 297
	tpgs = scsi_device_tpgs(sdev);
	switch (tpgs) {
298 299 300 301 302 303 304 305 306 307 308 309 310
	case TPGS_MODE_EXPLICIT|TPGS_MODE_IMPLICIT:
		sdev_printk(KERN_INFO, sdev,
			    "%s: supports implicit and explicit TPGS\n",
			    ALUA_DH_NAME);
		break;
	case TPGS_MODE_EXPLICIT:
		sdev_printk(KERN_INFO, sdev, "%s: supports explicit TPGS\n",
			    ALUA_DH_NAME);
		break;
	case TPGS_MODE_IMPLICIT:
		sdev_printk(KERN_INFO, sdev, "%s: supports implicit TPGS\n",
			    ALUA_DH_NAME);
		break;
H
Hannes Reinecke 已提交
311
	case TPGS_MODE_NONE:
312 313 314
		sdev_printk(KERN_INFO, sdev, "%s: not supported\n",
			    ALUA_DH_NAME);
		break;
H
Hannes Reinecke 已提交
315 316 317
	default:
		sdev_printk(KERN_INFO, sdev,
			    "%s: unsupported TPGS setting %d\n",
318 319
			    ALUA_DH_NAME, tpgs);
		tpgs = TPGS_MODE_NONE;
H
Hannes Reinecke 已提交
320
		break;
321 322
	}

323
	return tpgs;
324 325 326
}

/*
327
 * alua_check_vpd - Evaluate INQUIRY vpd page 0x83
328 329 330 331 332
 * @sdev: device to be checked
 *
 * Extract the relative target port and the target port group
 * descriptor from the list of identificators.
 */
333 334
static int alua_check_vpd(struct scsi_device *sdev, struct alua_dh_data *h,
			  int tpgs)
335
{
336
	int rel_port = -1, group_id;
337
	struct alua_port_group *pg, *old_pg = NULL;
338

339 340
	group_id = scsi_vpd_tpg_id(sdev, &rel_port);
	if (group_id < 0) {
341 342 343 344 345 346 347 348
		/*
		 * Internal error; TPGS supported but required
		 * VPD identification descriptors not present.
		 * Disable ALUA support
		 */
		sdev_printk(KERN_INFO, sdev,
			    "%s: No target port descriptors found\n",
			    ALUA_DH_NAME);
349
		return SCSI_DH_DEV_UNSUPP;
350
	}
351

352 353 354
	pg = alua_alloc_pg(sdev, group_id, tpgs);
	if (IS_ERR(pg)) {
		if (PTR_ERR(pg) == -ENOMEM)
355 356 357
			return SCSI_DH_NOMEM;
		return SCSI_DH_DEV_UNSUPP;
	}
358
	sdev_printk(KERN_INFO, sdev,
359
		    "%s: device %s port group %x rel port %x\n",
360 361 362 363 364 365 366 367 368 369 370 371 372 373
		    ALUA_DH_NAME, pg->device_id_str, group_id, rel_port);

	/* Check for existing port group references */
	spin_lock(&h->pg_lock);
	old_pg = h->pg;
	if (old_pg != pg) {
		/* port group has changed. Update to new port group */
		rcu_assign_pointer(h->pg, pg);
	}
	alua_rtpg_queue(h->pg, sdev, NULL);
	spin_unlock(&h->pg_lock);

	if (old_pg)
		kref_put(&old_pg->kref, release_port_group);
374

375
	return SCSI_DH_OK;
376 377 378 379 380 381 382 383 384 385 386 387 388
}

static char print_alua_state(int state)
{
	switch (state) {
	case TPGS_STATE_OPTIMIZED:
		return 'A';
	case TPGS_STATE_NONOPTIMIZED:
		return 'N';
	case TPGS_STATE_STANDBY:
		return 'S';
	case TPGS_STATE_UNAVAILABLE:
		return 'U';
389 390
	case TPGS_STATE_LBA_DEPENDENT:
		return 'L';
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
	case TPGS_STATE_OFFLINE:
		return 'O';
	case TPGS_STATE_TRANSITIONING:
		return 'T';
	default:
		return 'X';
	}
}

static int alua_check_sense(struct scsi_device *sdev,
			    struct scsi_sense_hdr *sense_hdr)
{
	switch (sense_hdr->sense_key) {
	case NOT_READY:
		if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x0a)
			/*
			 * LUN Not Accessible - ALUA state transition
			 */
409
			return ADD_TO_MLQUEUE;
410 411 412 413 414 415
		break;
	case UNIT_ATTENTION:
		if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x00)
			/*
			 * Power On, Reset, or Bus Device Reset, just retry.
			 */
416
			return ADD_TO_MLQUEUE;
417 418 419 420 421
		if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x04)
			/*
			 * Device internal reset
			 */
			return ADD_TO_MLQUEUE;
422 423 424 425 426
		if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x01)
			/*
			 * Mode Parameters Changed
			 */
			return ADD_TO_MLQUEUE;
427
		if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x06)
428 429 430
			/*
			 * ALUA state changed
			 */
431
			return ADD_TO_MLQUEUE;
432
		if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x07)
433 434 435
			/*
			 * Implicit ALUA state transition failed
			 */
436
			return ADD_TO_MLQUEUE;
437 438 439 440 441 442
		if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x03)
			/*
			 * Inquiry data has changed
			 */
			return ADD_TO_MLQUEUE;
		if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x0e)
443 444 445 446 447 448
			/*
			 * REPORTED_LUNS_DATA_HAS_CHANGED is reported
			 * when switching controllers on targets like
			 * Intel Multi-Flex. We can just retry.
			 */
			return ADD_TO_MLQUEUE;
449 450 451 452 453 454 455 456 457 458 459 460
		break;
	}

	return SCSI_RETURN_NOT_HANDLED;
}

/*
 * alua_rtpg - Evaluate REPORT TARGET GROUP STATES
 * @sdev: the device to be evaluated.
 *
 * Evaluate the Target Port Group State.
 * Returns SCSI_DH_DEV_OFFLINED if the path is
L
Lucas De Marchi 已提交
461
 * found to be unusable.
462
 */
463
static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg)
464 465
{
	struct scsi_sense_hdr sense_hdr;
466 467
	int len, k, off, valid_states = 0, bufflen = ALUA_RTPG_SIZE;
	unsigned char *ucp, *buff;
468
	unsigned err, retval;
469 470 471
	unsigned int tpg_desc_tbl_off;
	unsigned char orig_transition_tmo;

472 473 474 475 476 477 478 479
	if (!pg->expiry) {
		unsigned long transition_tmo = ALUA_FAILOVER_TIMEOUT * HZ;

		if (pg->transition_tmo)
			transition_tmo = pg->transition_tmo * HZ;

		pg->expiry = round_jiffies_up(jiffies + transition_tmo);
	}
480

481 482 483 484
	buff = kzalloc(bufflen, GFP_KERNEL);
	if (!buff)
		return SCSI_DH_DEV_TEMP_BUSY;

485
 retry:
486
	retval = submit_rtpg(sdev, buff, bufflen, &sense_hdr, pg->flags);
487

488
	if (retval) {
489
		if (!scsi_sense_valid(&sense_hdr)) {
490 491 492
			sdev_printk(KERN_INFO, sdev,
				    "%s: rtpg failed, result %d\n",
				    ALUA_DH_NAME, retval);
493
			kfree(buff);
494
			if (driver_byte(retval) == DRIVER_ERROR)
495
				return SCSI_DH_DEV_TEMP_BUSY;
496
			return SCSI_DH_IO;
497
		}
498

499 500 501 502 503 504 505 506
		/*
		 * submit_rtpg() has failed on existing arrays
		 * when requesting extended header info, and
		 * the array doesn't support extended headers,
		 * even though it shouldn't according to T10.
		 * The retry without rtpg_ext_hdr_req set
		 * handles this.
		 */
507
		if (!(pg->flags & ALUA_RTPG_EXT_HDR_UNSUPP) &&
508 509
		    sense_hdr.sense_key == ILLEGAL_REQUEST &&
		    sense_hdr.asc == 0x24 && sense_hdr.ascq == 0) {
510
			pg->flags |= ALUA_RTPG_EXT_HDR_UNSUPP;
511 512
			goto retry;
		}
513 514 515 516 517 518 519 520 521
		/*
		 * Retry on ALUA state transition or if any
		 * UNIT ATTENTION occurred.
		 */
		if (sense_hdr.sense_key == NOT_READY &&
		    sense_hdr.asc == 0x04 && sense_hdr.ascq == 0x0a)
			err = SCSI_DH_RETRY;
		else if (sense_hdr.sense_key == UNIT_ATTENTION)
			err = SCSI_DH_RETRY;
522 523
		if (err == SCSI_DH_RETRY &&
		    pg->expiry != 0 && time_before(jiffies, pg->expiry)) {
524 525 526
			sdev_printk(KERN_ERR, sdev, "%s: rtpg retry\n",
				    ALUA_DH_NAME);
			scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
527
			return err;
528 529 530 531
		}
		sdev_printk(KERN_ERR, sdev, "%s: rtpg failed\n",
			    ALUA_DH_NAME);
		scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
532
		kfree(buff);
533
		pg->expiry = 0;
534
		return SCSI_DH_IO;
535 536
	}

537
	len = get_unaligned_be32(&buff[0]) + 4;
538

539
	if (len > bufflen) {
540
		/* Resubmit with the correct length */
541 542 543 544
		kfree(buff);
		bufflen = len;
		buff = kmalloc(bufflen, GFP_KERNEL);
		if (!buff) {
545
			sdev_printk(KERN_WARNING, sdev,
546
				    "%s: kmalloc buffer failed\n",__func__);
547
			/* Temporary failure, bypass */
548
			pg->expiry = 0;
549 550 551 552 553
			return SCSI_DH_DEV_TEMP_BUSY;
		}
		goto retry;
	}

554
	orig_transition_tmo = pg->transition_tmo;
555
	if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR && buff[5] != 0)
556
		pg->transition_tmo = buff[5];
557
	else
558
		pg->transition_tmo = ALUA_FAILOVER_TIMEOUT;
559

560
	if (orig_transition_tmo != pg->transition_tmo) {
561 562
		sdev_printk(KERN_INFO, sdev,
			    "%s: transition timeout set to %d seconds\n",
563
			    ALUA_DH_NAME, pg->transition_tmo);
564
		pg->expiry = jiffies + pg->transition_tmo * HZ;
565 566
	}

567
	if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR)
568 569 570 571
		tpg_desc_tbl_off = 8;
	else
		tpg_desc_tbl_off = 4;

572
	for (k = tpg_desc_tbl_off, ucp = buff + tpg_desc_tbl_off;
573 574 575
	     k < len;
	     k += off, ucp += off) {

576 577 578
		if (pg->group_id == get_unaligned_be16(&ucp[2])) {
			pg->state = ucp[0] & 0x0f;
			pg->pref = ucp[0] >> 7;
579 580 581 582 583 584
			valid_states = ucp[1];
		}
		off = 8 + (ucp[7] * 4);
	}

	sdev_printk(KERN_INFO, sdev,
585
		    "%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
586 587
		    ALUA_DH_NAME, pg->group_id, print_alua_state(pg->state),
		    pg->pref ? "preferred" : "non-preferred",
588 589
		    valid_states&TPGS_SUPPORT_TRANSITION?'T':'t',
		    valid_states&TPGS_SUPPORT_OFFLINE?'O':'o',
590
		    valid_states&TPGS_SUPPORT_LBA_DEPENDENT?'L':'l',
591 592 593 594 595
		    valid_states&TPGS_SUPPORT_UNAVAILABLE?'U':'u',
		    valid_states&TPGS_SUPPORT_STANDBY?'S':'s',
		    valid_states&TPGS_SUPPORT_NONOPTIMIZED?'N':'n',
		    valid_states&TPGS_SUPPORT_OPTIMIZED?'A':'a');

596
	switch (pg->state) {
597
	case TPGS_STATE_TRANSITIONING:
598
		if (time_before(jiffies, pg->expiry)) {
599
			/* State transition, retry */
600 601 602 603 604 605 606
			pg->interval = 2;
			err = SCSI_DH_RETRY;
		} else {
			/* Transitioning time exceeded, set port to standby */
			err = SCSI_DH_IO;
			pg->state = TPGS_STATE_STANDBY;
			pg->expiry = 0;
607
		}
608 609
		break;
	case TPGS_STATE_OFFLINE:
610
		/* Path unusable */
611
		err = SCSI_DH_DEV_OFFLINED;
612
		pg->expiry = 0;
613 614 615 616
		break;
	default:
		/* Useable path if active */
		err = SCSI_DH_OK;
617
		pg->expiry = 0;
618
		break;
619
	}
620
	kfree(buff);
621 622 623
	return err;
}

624 625 626 627
/*
 * alua_stpg - Issue a SET TARGET PORT GROUP command
 *
 * Issue a SET TARGET PORT GROUP command and evaluate the
628 629 630
 * response. Returns SCSI_DH_RETRY per default to trigger
 * a re-evaluation of the target group state or SCSI_DH_OK
 * if no further action needs to be taken.
631
 */
632
static unsigned alua_stpg(struct scsi_device *sdev, struct alua_port_group *pg)
633
{
634 635
	int retval;
	struct scsi_sense_hdr sense_hdr;
636

637
	if (!(pg->tpgs & TPGS_MODE_EXPLICIT)) {
638 639 640
		/* Only implicit ALUA supported, retry */
		return SCSI_DH_RETRY;
	}
641
	switch (pg->state) {
642 643
	case TPGS_STATE_OPTIMIZED:
		return SCSI_DH_OK;
644
	case TPGS_STATE_NONOPTIMIZED:
645 646 647
		if ((pg->flags & ALUA_OPTIMIZE_STPG) &&
		    !pg->pref &&
		    (pg->tpgs & TPGS_MODE_IMPLICIT))
648
			return SCSI_DH_OK;
649 650 651 652 653
		break;
	case TPGS_STATE_STANDBY:
	case TPGS_STATE_UNAVAILABLE:
		break;
	case TPGS_STATE_OFFLINE:
654
		return SCSI_DH_IO;
655 656 657
	case TPGS_STATE_TRANSITIONING:
		break;
	default:
658 659
		sdev_printk(KERN_INFO, sdev,
			    "%s: stpg failed, unhandled TPGS state %d",
660
			    ALUA_DH_NAME, pg->state);
661
		return SCSI_DH_NOSYS;
662
	}
663
	retval = submit_stpg(sdev, pg->group_id, &sense_hdr);
664

665
	if (retval) {
666
		if (!scsi_sense_valid(&sense_hdr)) {
667 668 669
			sdev_printk(KERN_INFO, sdev,
				    "%s: stpg failed, result %d",
				    ALUA_DH_NAME, retval);
670
			if (driver_byte(retval) == DRIVER_ERROR)
671 672
				return SCSI_DH_DEV_TEMP_BUSY;
		} else {
673
			sdev_printk(KERN_INFO, sdev, "%s: stpg failed\n",
674 675 676
				    ALUA_DH_NAME);
			scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
		}
677
	}
678 679
	/* Retry RTPG */
	return SCSI_DH_RETRY;
680 681
}

682 683 684 685 686 687 688 689 690
static void alua_rtpg_work(struct work_struct *work)
{
	struct alua_port_group *pg =
		container_of(work, struct alua_port_group, rtpg_work.work);
	struct scsi_device *sdev;
	LIST_HEAD(qdata_list);
	int err = SCSI_DH_OK;
	struct alua_queue_data *qdata, *tmp;
	unsigned long flags;
691
	struct workqueue_struct *alua_wq = kaluad_wq;
692 693 694 695 696 697 698 699 700

	spin_lock_irqsave(&pg->lock, flags);
	sdev = pg->rtpg_sdev;
	if (!sdev) {
		WARN_ON(pg->flags & ALUA_PG_RUN_RTPG);
		WARN_ON(pg->flags & ALUA_PG_RUN_STPG);
		spin_unlock_irqrestore(&pg->lock, flags);
		return;
	}
701 702
	if (pg->flags & ALUA_SYNC_STPG)
		alua_wq = kaluad_sync_wq;
703 704 705 706 707 708 709 710 711 712
	pg->flags |= ALUA_PG_RUNNING;
	if (pg->flags & ALUA_PG_RUN_RTPG) {
		pg->flags &= ~ALUA_PG_RUN_RTPG;
		spin_unlock_irqrestore(&pg->lock, flags);
		err = alua_rtpg(sdev, pg);
		spin_lock_irqsave(&pg->lock, flags);
		if (err == SCSI_DH_RETRY) {
			pg->flags &= ~ALUA_PG_RUNNING;
			pg->flags |= ALUA_PG_RUN_RTPG;
			spin_unlock_irqrestore(&pg->lock, flags);
713
			queue_delayed_work(alua_wq, &pg->rtpg_work,
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729
					   pg->interval * HZ);
			return;
		}
		if (err != SCSI_DH_OK)
			pg->flags &= ~ALUA_PG_RUN_STPG;
	}
	if (pg->flags & ALUA_PG_RUN_STPG) {
		pg->flags &= ~ALUA_PG_RUN_STPG;
		spin_unlock_irqrestore(&pg->lock, flags);
		err = alua_stpg(sdev, pg);
		spin_lock_irqsave(&pg->lock, flags);
		if (err == SCSI_DH_RETRY) {
			pg->flags |= ALUA_PG_RUN_RTPG;
			pg->interval = 0;
			pg->flags &= ~ALUA_PG_RUNNING;
			spin_unlock_irqrestore(&pg->lock, flags);
730
			queue_delayed_work(alua_wq, &pg->rtpg_work,
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
					   pg->interval * HZ);
			return;
		}
	}

	list_splice_init(&pg->rtpg_list, &qdata_list);
	pg->rtpg_sdev = NULL;
	spin_unlock_irqrestore(&pg->lock, flags);

	list_for_each_entry_safe(qdata, tmp, &qdata_list, entry) {
		list_del(&qdata->entry);
		if (qdata->callback_fn)
			qdata->callback_fn(qdata->callback_data, err);
		kfree(qdata);
	}
	spin_lock_irqsave(&pg->lock, flags);
	pg->flags &= ~ALUA_PG_RUNNING;
	spin_unlock_irqrestore(&pg->lock, flags);
	scsi_device_put(sdev);
	kref_put(&pg->kref, release_port_group);
}

static void alua_rtpg_queue(struct alua_port_group *pg,
			    struct scsi_device *sdev,
			    struct alua_queue_data *qdata)
{
	int start_queue = 0;
	unsigned long flags;
759
	struct workqueue_struct *alua_wq = kaluad_wq;
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776

	if (!pg)
		return;

	spin_lock_irqsave(&pg->lock, flags);
	if (qdata) {
		list_add_tail(&qdata->entry, &pg->rtpg_list);
		pg->flags |= ALUA_PG_RUN_STPG;
	}
	if (pg->rtpg_sdev == NULL) {
		pg->interval = 0;
		pg->flags |= ALUA_PG_RUN_RTPG;
		kref_get(&pg->kref);
		pg->rtpg_sdev = sdev;
		scsi_device_get(sdev);
		start_queue = 1;
	}
777 778
	if (pg->flags & ALUA_SYNC_STPG)
		alua_wq = kaluad_sync_wq;
779 780 781
	spin_unlock_irqrestore(&pg->lock, flags);

	if (start_queue &&
782
	    !queue_delayed_work(alua_wq, &pg->rtpg_work,
783 784 785 786 787 788
				msecs_to_jiffies(ALUA_RTPG_DELAY_MSECS))) {
		scsi_device_put(sdev);
		kref_put(&pg->kref, release_port_group);
	}
}

789 790 791 792 793 794 795 796 797
/*
 * alua_initialize - Initialize ALUA state
 * @sdev: the device to be initialized
 *
 * For the prep_fn to work correctly we have
 * to initialize the ALUA state for the device.
 */
static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h)
{
798
	int err = SCSI_DH_DEV_UNSUPP, tpgs;
799

800
	mutex_lock(&h->init_mutex);
801
	tpgs = alua_check_tpgs(sdev);
802 803
	if (tpgs != TPGS_MODE_NONE)
		err = alua_check_vpd(sdev, h, tpgs);
804 805
	h->init_error = err;
	mutex_unlock(&h->init_mutex);
806 807
	return err;
}
808 809 810 811 812 813 814 815 816 817 818
/*
 * alua_set_params - set/unset the optimize flag
 * @sdev: device on the path to be activated
 * params - parameters in the following format
 *      "no_of_params\0param1\0param2\0param3\0...\0"
 * For example, to set the flag pass the following parameters
 * from multipath.conf
 *     hardware_handler        "2 alua 1"
 */
static int alua_set_params(struct scsi_device *sdev, const char *params)
{
819
	struct alua_dh_data *h = sdev->handler_data;
820
	struct alua_port_group __rcu *pg = NULL;
821 822 823
	unsigned int optimize = 0, argc;
	const char *p = params;
	int result = SCSI_DH_OK;
824
	unsigned long flags;
825 826 827 828 829 830 831 832 833

	if ((sscanf(params, "%u", &argc) != 1) || (argc != 1))
		return -EINVAL;

	while (*p++)
		;
	if ((sscanf(p, "%u", &optimize) != 1) || (optimize > 1))
		return -EINVAL;

834 835 836 837
	rcu_read_lock();
	pg = rcu_dereference(h->pg);
	if (!pg) {
		rcu_read_unlock();
838
		return -ENXIO;
839 840
	}
	spin_lock_irqsave(&pg->lock, flags);
841
	if (optimize)
842
		pg->flags |= ALUA_OPTIMIZE_STPG;
843
	else
844
		pg->flags &= ~ALUA_OPTIMIZE_STPG;
845 846
	spin_unlock_irqrestore(&pg->lock, flags);
	rcu_read_unlock();
847 848 849

	return result;
}
850 851 852 853 854 855 856 857 858 859 860

/*
 * alua_activate - activate a path
 * @sdev: device on the path to be activated
 *
 * We're currently switching the port group to be activated only and
 * let the array figure out the rest.
 * There may be other arrays which require us to switch all port groups
 * based on a certain policy. But until we actually encounter them it
 * should be okay.
 */
861 862
static int alua_activate(struct scsi_device *sdev,
			activate_complete fn, void *data)
863
{
864
	struct alua_dh_data *h = sdev->handler_data;
865
	int err = SCSI_DH_OK;
866 867
	struct alua_queue_data *qdata;
	struct alua_port_group __rcu *pg;
868

869 870 871
	qdata = kzalloc(sizeof(*qdata), GFP_KERNEL);
	if (!qdata) {
		err = SCSI_DH_RES_TEMP_UNAVAIL;
872
		goto out;
873 874 875 876 877 878 879 880 881 882 883 884
	}
	qdata->callback_fn = fn;
	qdata->callback_data = data;

	mutex_lock(&h->init_mutex);
	rcu_read_lock();
	pg = rcu_dereference(h->pg);
	if (!pg || !kref_get_unless_zero(&pg->kref)) {
		rcu_read_unlock();
		kfree(qdata);
		err = h->init_error;
		mutex_unlock(&h->init_mutex);
885 886
		goto out;
	}
887 888 889 890 891 892
	fn = NULL;
	rcu_read_unlock();
	mutex_unlock(&h->init_mutex);

	alua_rtpg_queue(pg, sdev, qdata);
	kref_put(&pg->kref, release_port_group);
893
out:
894
	if (fn)
895 896
		fn(data, err);
	return 0;
897 898 899 900 901 902 903 904 905 906
}

/*
 * alua_prep_fn - request callback
 *
 * Fail I/O to all paths not in state
 * active/optimized or active/non-optimized.
 */
static int alua_prep_fn(struct scsi_device *sdev, struct request *req)
{
907
	struct alua_dh_data *h = sdev->handler_data;
908 909
	struct alua_port_group __rcu *pg;
	int state = TPGS_STATE_OPTIMIZED;
910 911
	int ret = BLKPREP_OK;

912 913 914 915 916
	rcu_read_lock();
	pg = rcu_dereference(h->pg);
	if (pg)
		state = pg->state;
	rcu_read_unlock();
917
	if (state == TPGS_STATE_TRANSITIONING)
918
		ret = BLKPREP_DEFER;
919 920 921
	else if (state != TPGS_STATE_OPTIMIZED &&
		 state != TPGS_STATE_NONOPTIMIZED &&
		 state != TPGS_STATE_LBA_DEPENDENT) {
922 923 924 925 926 927 928 929 930 931 932
		ret = BLKPREP_KILL;
		req->cmd_flags |= REQ_QUIET;
	}
	return ret;

}

/*
 * alua_bus_attach - Attach device handler
 * @sdev: device to be attached to
 */
933
static int alua_bus_attach(struct scsi_device *sdev)
934 935
{
	struct alua_dh_data *h;
936
	int err, ret = -EINVAL;
937

938
	h = kzalloc(sizeof(*h) , GFP_KERNEL);
939
	if (!h)
940
		return -ENOMEM;
941 942 943
	spin_lock_init(&h->pg_lock);
	rcu_assign_pointer(h->pg, NULL);
	h->init_error = SCSI_DH_OK;
944
	h->sdev = sdev;
945

946
	mutex_init(&h->init_mutex);
947
	err = alua_initialize(sdev, h);
948 949
	if (err == SCSI_DH_NOMEM)
		ret = -ENOMEM;
950
	if (err != SCSI_DH_OK && err != SCSI_DH_DEV_OFFLINED)
951 952
		goto failed;

953 954
	sdev->handler_data = h;
	return 0;
955
failed:
956
	kfree(h);
957
	return ret;
958 959 960 961 962 963 964 965
}

/*
 * alua_bus_detach - Detach device handler
 * @sdev: device to be detached from
 */
static void alua_bus_detach(struct scsi_device *sdev)
{
966
	struct alua_dh_data *h = sdev->handler_data;
967 968 969 970 971 972 973 974 975
	struct alua_port_group *pg;

	spin_lock(&h->pg_lock);
	pg = h->pg;
	rcu_assign_pointer(h->pg, NULL);
	h->sdev = NULL;
	spin_unlock(&h->pg_lock);
	if (pg)
		kref_put(&pg->kref, release_port_group);
976

977
	sdev->handler_data = NULL;
978
	kfree(h);
979 980
}

981 982 983 984 985 986 987 988 989 990 991
static struct scsi_device_handler alua_dh = {
	.name = ALUA_DH_NAME,
	.module = THIS_MODULE,
	.attach = alua_bus_attach,
	.detach = alua_bus_detach,
	.prep_fn = alua_prep_fn,
	.check_sense = alua_check_sense,
	.activate = alua_activate,
	.set_params = alua_set_params,
};

992 993 994 995
static int __init alua_init(void)
{
	int r;

996 997 998 999 1000
	kaluad_wq = alloc_workqueue("kaluad", WQ_MEM_RECLAIM, 0);
	if (!kaluad_wq) {
		/* Temporary failure, bypass */
		return SCSI_DH_DEV_TEMP_BUSY;
	}
1001 1002 1003 1004 1005
	kaluad_sync_wq = create_workqueue("kaluad_sync");
	if (!kaluad_sync_wq) {
		destroy_workqueue(kaluad_wq);
		return SCSI_DH_DEV_TEMP_BUSY;
	}
1006
	r = scsi_register_device_handler(&alua_dh);
1007
	if (r != 0) {
1008 1009
		printk(KERN_ERR "%s: Failed to register scsi device handler",
			ALUA_DH_NAME);
1010
		destroy_workqueue(kaluad_sync_wq);
1011 1012
		destroy_workqueue(kaluad_wq);
	}
1013 1014 1015 1016 1017 1018
	return r;
}

static void __exit alua_exit(void)
{
	scsi_unregister_device_handler(&alua_dh);
1019
	destroy_workqueue(kaluad_sync_wq);
1020
	destroy_workqueue(kaluad_wq);
1021 1022 1023 1024 1025 1026 1027 1028 1029
}

module_init(alua_init);
module_exit(alua_exit);

MODULE_DESCRIPTION("DM Multipath ALUA support");
MODULE_AUTHOR("Hannes Reinecke <hare@suse.de>");
MODULE_LICENSE("GPL");
MODULE_VERSION(ALUA_DH_VER);