]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/scsi/device_handler/scsi_dh_alua.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc
[mirror_ubuntu-eoan-kernel.git] / drivers / scsi / device_handler / scsi_dh_alua.c
CommitLineData
057ea7c9
HR
1/*
2 * Generic SCSI-3 ALUA SCSI Device Handler
3 *
69723d17 4 * Copyright (C) 2007-2010 Hannes Reinecke, SUSE Linux Products GmbH.
057ea7c9
HR
5 * 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 */
5a0e3ad6 22#include <linux/slab.h>
69723d17 23#include <linux/delay.h>
acf3368f 24#include <linux/module.h>
a7089770 25#include <asm/unaligned.h>
057ea7c9 26#include <scsi/scsi.h>
cb0a168c 27#include <scsi/scsi_proto.h>
80bd68d6 28#include <scsi/scsi_dbg.h>
057ea7c9
HR
29#include <scsi/scsi_eh.h>
30#include <scsi/scsi_dh.h>
31
32#define ALUA_DH_NAME "alua"
e79c82cc 33#define ALUA_DH_VER "2.0"
057ea7c9 34
057ea7c9
HR
35#define TPGS_SUPPORT_NONE 0x00
36#define TPGS_SUPPORT_OPTIMIZED 0x01
37#define TPGS_SUPPORT_NONOPTIMIZED 0x02
38#define TPGS_SUPPORT_STANDBY 0x04
39#define TPGS_SUPPORT_UNAVAILABLE 0x08
69723d17 40#define TPGS_SUPPORT_LBA_DEPENDENT 0x10
057ea7c9
HR
41#define TPGS_SUPPORT_OFFLINE 0x40
42#define TPGS_SUPPORT_TRANSITION 0x80
43
3588c5a2
RE
44#define RTPG_FMT_MASK 0x70
45#define RTPG_FMT_EXT_HDR 0x10
46
057ea7c9
HR
47#define TPGS_MODE_UNINITIALIZED -1
48#define TPGS_MODE_NONE 0x0
49#define TPGS_MODE_IMPLICIT 0x1
50#define TPGS_MODE_EXPLICIT 0x2
51
c49c8345 52#define ALUA_RTPG_SIZE 128
3588c5a2 53#define ALUA_FAILOVER_TIMEOUT 60
057ea7c9 54#define ALUA_FAILOVER_RETRIES 5
03197b61 55#define ALUA_RTPG_DELAY_MSECS 5
057ea7c9 56
6c4fc044 57/* device handler flags */
03197b61
HR
58#define ALUA_OPTIMIZE_STPG 0x01
59#define ALUA_RTPG_EXT_HDR_UNSUPP 0x02
00642a1b 60#define ALUA_SYNC_STPG 0x04
03197b61
HR
61/* State machine flags */
62#define ALUA_PG_RUN_RTPG 0x10
63#define ALUA_PG_RUN_STPG 0x20
64#define ALUA_PG_RUNNING 0x40
4335d092 65
aa90f490
HR
66static uint optimize_stpg;
67module_param(optimize_stpg, uint, S_IRUGO|S_IWUSR);
68MODULE_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.");
69
43394c67
HR
70static LIST_HEAD(port_group_list);
71static DEFINE_SPINLOCK(port_group_lock);
03197b61 72static struct workqueue_struct *kaluad_wq;
00642a1b 73static struct workqueue_struct *kaluad_sync_wq;
43394c67
HR
74
75struct alua_port_group {
76 struct kref kref;
03197b61 77 struct rcu_head rcu;
43394c67 78 struct list_head node;
cb0a168c 79 struct list_head dh_list;
0047220c
HR
80 unsigned char device_id_str[256];
81 int device_id_len;
057ea7c9 82 int group_id;
057ea7c9
HR
83 int tpgs;
84 int state;
dcd3a754 85 int pref;
4335d092 86 unsigned flags; /* used for optimizing STPG */
3588c5a2 87 unsigned char transition_tmo;
03197b61
HR
88 unsigned long expiry;
89 unsigned long interval;
90 struct delayed_work rtpg_work;
91 spinlock_t lock;
92 struct list_head rtpg_list;
93 struct scsi_device *rtpg_sdev;
43394c67
HR
94};
95
96struct alua_dh_data {
cb0a168c 97 struct list_head node;
d29425b0 98 struct alua_port_group __rcu *pg;
43394c67 99 int group_id;
03197b61 100 spinlock_t pg_lock;
96e65865 101 struct scsi_device *sdev;
03197b61
HR
102 int init_error;
103 struct mutex init_mutex;
104};
105
106struct alua_queue_data {
107 struct list_head entry;
96e65865
CS
108 activate_complete callback_fn;
109 void *callback_data;
057ea7c9
HR
110};
111
112#define ALUA_POLICY_SWITCH_CURRENT 0
113#define ALUA_POLICY_SWITCH_ALL 1
114
03197b61 115static void alua_rtpg_work(struct work_struct *work);
7cb689fe 116static bool alua_rtpg_queue(struct alua_port_group *pg,
03197b61 117 struct scsi_device *sdev,
2b35865e
HR
118 struct alua_queue_data *qdata, bool force);
119static void alua_check(struct scsi_device *sdev, bool force);
96e65865 120
43394c67
HR
121static void release_port_group(struct kref *kref)
122{
123 struct alua_port_group *pg;
124
125 pg = container_of(kref, struct alua_port_group, kref);
03197b61
HR
126 if (pg->rtpg_sdev)
127 flush_delayed_work(&pg->rtpg_work);
43394c67
HR
128 spin_lock(&port_group_lock);
129 list_del(&pg->node);
130 spin_unlock(&port_group_lock);
03197b61 131 kfree_rcu(pg, rcu);
43394c67
HR
132}
133
057ea7c9
HR
134/*
135 * submit_rtpg - Issue a REPORT TARGET GROUP STATES command
136 * @sdev: sdev the command should be sent to
137 */
40bb61a7
HR
138static int submit_rtpg(struct scsi_device *sdev, unsigned char *buff,
139 int bufflen, struct scsi_sense_hdr *sshdr, int flags)
057ea7c9 140{
40bb61a7
HR
141 u8 cdb[COMMAND_SIZE(MAINTENANCE_IN)];
142 int req_flags = REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
143 REQ_FAILFAST_DRIVER;
057ea7c9
HR
144
145 /* Prepare the command. */
40bb61a7
HR
146 memset(cdb, 0x0, COMMAND_SIZE(MAINTENANCE_IN));
147 cdb[0] = MAINTENANCE_IN;
d42ae5f3 148 if (!(flags & ALUA_RTPG_EXT_HDR_UNSUPP))
40bb61a7 149 cdb[1] = MI_REPORT_TARGET_PGS | MI_EXT_HDR_PARAM_FMT;
8e67ce60 150 else
40bb61a7
HR
151 cdb[1] = MI_REPORT_TARGET_PGS;
152 put_unaligned_be32(bufflen, &cdb[6]);
153
fcbfffe2
CH
154 return scsi_execute(sdev, cdb, DMA_FROM_DEVICE, buff, bufflen, NULL,
155 sshdr, ALUA_FAILOVER_TIMEOUT * HZ,
156 ALUA_FAILOVER_RETRIES, req_flags, 0, NULL);
057ea7c9
HR
157}
158
96e65865 159/*
b2460756 160 * submit_stpg - Issue a SET TARGET PORT GROUP command
057ea7c9
HR
161 *
162 * Currently we're only setting the current target port group state
163 * to 'active/optimized' and let the array firmware figure out
164 * the states of the remaining groups.
165 */
40bb61a7
HR
166static int submit_stpg(struct scsi_device *sdev, int group_id,
167 struct scsi_sense_hdr *sshdr)
057ea7c9 168{
40bb61a7 169 u8 cdb[COMMAND_SIZE(MAINTENANCE_OUT)];
b2460756 170 unsigned char stpg_data[8];
057ea7c9 171 int stpg_len = 8;
40bb61a7
HR
172 int req_flags = REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT |
173 REQ_FAILFAST_DRIVER;
057ea7c9
HR
174
175 /* Prepare the data buffer */
b2460756 176 memset(stpg_data, 0, stpg_len);
5115fc7e 177 stpg_data[4] = SCSI_ACCESS_STATE_OPTIMAL;
b2460756 178 put_unaligned_be16(group_id, &stpg_data[6]);
057ea7c9 179
057ea7c9 180 /* Prepare the command. */
40bb61a7
HR
181 memset(cdb, 0x0, COMMAND_SIZE(MAINTENANCE_OUT));
182 cdb[0] = MAINTENANCE_OUT;
183 cdb[1] = MO_SET_TARGET_PGS;
184 put_unaligned_be32(stpg_len, &cdb[6]);
185
fcbfffe2
CH
186 return scsi_execute(sdev, cdb, DMA_TO_DEVICE, stpg_data, stpg_len, NULL,
187 sshdr, ALUA_FAILOVER_TIMEOUT * HZ,
188 ALUA_FAILOVER_RETRIES, req_flags, 0, NULL);
057ea7c9
HR
189}
190
1f275f97
BVA
191static struct alua_port_group *alua_find_get_pg(char *id_str, size_t id_size,
192 int group_id)
0047220c
HR
193{
194 struct alua_port_group *pg;
195
fe8b9534
HR
196 if (!id_str || !id_size || !strlen(id_str))
197 return NULL;
198
0047220c
HR
199 list_for_each_entry(pg, &port_group_list, node) {
200 if (pg->group_id != group_id)
201 continue;
fe8b9534 202 if (!pg->device_id_len || pg->device_id_len != id_size)
0047220c
HR
203 continue;
204 if (strncmp(pg->device_id_str, id_str, id_size))
205 continue;
206 if (!kref_get_unless_zero(&pg->kref))
207 continue;
208 return pg;
209 }
210
211 return NULL;
212}
213
43394c67
HR
214/*
215 * alua_alloc_pg - Allocate a new port_group structure
216 * @sdev: scsi device
217 * @h: alua device_handler data
218 * @group_id: port group id
219 *
220 * Allocate a new port_group structure for a given
221 * device.
222 */
1f275f97
BVA
223static struct alua_port_group *alua_alloc_pg(struct scsi_device *sdev,
224 int group_id, int tpgs)
43394c67 225{
0047220c 226 struct alua_port_group *pg, *tmp_pg;
43394c67
HR
227
228 pg = kzalloc(sizeof(struct alua_port_group), GFP_KERNEL);
229 if (!pg)
0047220c 230 return ERR_PTR(-ENOMEM);
43394c67 231
0047220c
HR
232 pg->device_id_len = scsi_vpd_lun_id(sdev, pg->device_id_str,
233 sizeof(pg->device_id_str));
234 if (pg->device_id_len <= 0) {
235 /*
fe8b9534
HR
236 * TPGS supported but no device identification found.
237 * Generate private device identification.
0047220c 238 */
0047220c
HR
239 sdev_printk(KERN_INFO, sdev,
240 "%s: No device descriptors found\n",
241 ALUA_DH_NAME);
fe8b9534
HR
242 pg->device_id_str[0] = '\0';
243 pg->device_id_len = 0;
0047220c 244 }
43394c67
HR
245 pg->group_id = group_id;
246 pg->tpgs = tpgs;
5115fc7e 247 pg->state = SCSI_ACCESS_STATE_OPTIMAL;
aa90f490
HR
248 if (optimize_stpg)
249 pg->flags |= ALUA_OPTIMIZE_STPG;
43394c67 250 kref_init(&pg->kref);
03197b61
HR
251 INIT_DELAYED_WORK(&pg->rtpg_work, alua_rtpg_work);
252 INIT_LIST_HEAD(&pg->rtpg_list);
253 INIT_LIST_HEAD(&pg->node);
cb0a168c 254 INIT_LIST_HEAD(&pg->dh_list);
03197b61 255 spin_lock_init(&pg->lock);
0047220c 256
43394c67 257 spin_lock(&port_group_lock);
0047220c
HR
258 tmp_pg = alua_find_get_pg(pg->device_id_str, pg->device_id_len,
259 group_id);
260 if (tmp_pg) {
261 spin_unlock(&port_group_lock);
262 kfree(pg);
263 return tmp_pg;
264 }
265
43394c67
HR
266 list_add(&pg->node, &port_group_list);
267 spin_unlock(&port_group_lock);
268
269 return pg;
270}
271
057ea7c9 272/*
d7c48feb 273 * alua_check_tpgs - Evaluate TPGS setting
057ea7c9
HR
274 * @sdev: device to be checked
275 *
d7c48feb 276 * Examine the TPGS setting of the sdev to find out if ALUA
057ea7c9
HR
277 * is supported.
278 */
ad0ea64c 279static int alua_check_tpgs(struct scsi_device *sdev)
057ea7c9 280{
ad0ea64c 281 int tpgs = TPGS_MODE_NONE;
057ea7c9 282
db5a6a60
HR
283 /*
284 * ALUA support for non-disk devices is fraught with
285 * difficulties, so disable it for now.
286 */
287 if (sdev->type != TYPE_DISK) {
db5a6a60
HR
288 sdev_printk(KERN_INFO, sdev,
289 "%s: disable for non-disk devices\n",
290 ALUA_DH_NAME);
ad0ea64c 291 return tpgs;
db5a6a60
HR
292 }
293
ad0ea64c
HR
294 tpgs = scsi_device_tpgs(sdev);
295 switch (tpgs) {
057ea7c9
HR
296 case TPGS_MODE_EXPLICIT|TPGS_MODE_IMPLICIT:
297 sdev_printk(KERN_INFO, sdev,
298 "%s: supports implicit and explicit TPGS\n",
299 ALUA_DH_NAME);
300 break;
301 case TPGS_MODE_EXPLICIT:
302 sdev_printk(KERN_INFO, sdev, "%s: supports explicit TPGS\n",
303 ALUA_DH_NAME);
304 break;
305 case TPGS_MODE_IMPLICIT:
306 sdev_printk(KERN_INFO, sdev, "%s: supports implicit TPGS\n",
307 ALUA_DH_NAME);
308 break;
6cc05d45 309 case TPGS_MODE_NONE:
057ea7c9
HR
310 sdev_printk(KERN_INFO, sdev, "%s: not supported\n",
311 ALUA_DH_NAME);
057ea7c9 312 break;
6cc05d45
HR
313 default:
314 sdev_printk(KERN_INFO, sdev,
315 "%s: unsupported TPGS setting %d\n",
ad0ea64c
HR
316 ALUA_DH_NAME, tpgs);
317 tpgs = TPGS_MODE_NONE;
6cc05d45 318 break;
057ea7c9
HR
319 }
320
ad0ea64c 321 return tpgs;
057ea7c9
HR
322}
323
324/*
9b80dcec 325 * alua_check_vpd - Evaluate INQUIRY vpd page 0x83
057ea7c9
HR
326 * @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 */
a4253fde
HR
331static int alua_check_vpd(struct scsi_device *sdev, struct alua_dh_data *h,
332 int tpgs)
057ea7c9 333{
83ea0e5e 334 int rel_port = -1, group_id;
03197b61 335 struct alua_port_group *pg, *old_pg = NULL;
100bcb85 336 bool pg_updated = false;
cb0a168c 337 unsigned long flags;
057ea7c9 338
83ea0e5e
HR
339 group_id = scsi_vpd_tpg_id(sdev, &rel_port);
340 if (group_id < 0) {
057ea7c9
HR
341 /*
342 * Internal error; TPGS supported but required
343 * VPD identification descriptors not present.
344 * Disable ALUA support
345 */
346 sdev_printk(KERN_INFO, sdev,
347 "%s: No target port descriptors found\n",
348 ALUA_DH_NAME);
9b80dcec 349 return SCSI_DH_DEV_UNSUPP;
057ea7c9 350 }
a4253fde 351
03197b61
HR
352 pg = alua_alloc_pg(sdev, group_id, tpgs);
353 if (IS_ERR(pg)) {
354 if (PTR_ERR(pg) == -ENOMEM)
a4253fde
HR
355 return SCSI_DH_NOMEM;
356 return SCSI_DH_DEV_UNSUPP;
357 }
fe8b9534
HR
358 if (pg->device_id_len)
359 sdev_printk(KERN_INFO, sdev,
360 "%s: device %s port group %x rel port %x\n",
361 ALUA_DH_NAME, pg->device_id_str,
362 group_id, rel_port);
363 else
364 sdev_printk(KERN_INFO, sdev,
365 "%s: port group %x rel port %x\n",
366 ALUA_DH_NAME, group_id, rel_port);
03197b61
HR
367
368 /* Check for existing port group references */
369 spin_lock(&h->pg_lock);
d29425b0 370 old_pg = rcu_dereference_protected(h->pg, lockdep_is_held(&h->pg_lock));
03197b61
HR
371 if (old_pg != pg) {
372 /* port group has changed. Update to new port group */
cb0a168c
HR
373 if (h->pg) {
374 spin_lock_irqsave(&old_pg->lock, flags);
375 list_del_rcu(&h->node);
376 spin_unlock_irqrestore(&old_pg->lock, flags);
377 }
03197b61 378 rcu_assign_pointer(h->pg, pg);
cb0a168c 379 pg_updated = true;
03197b61 380 }
cb0a168c
HR
381
382 spin_lock_irqsave(&pg->lock, flags);
851cde99
HR
383 if (sdev->synchronous_alua)
384 pg->flags |= ALUA_SYNC_STPG;
cb0a168c
HR
385 if (pg_updated)
386 list_add_rcu(&h->node, &pg->dh_list);
387 spin_unlock_irqrestore(&pg->lock, flags);
388
d29425b0
BVA
389 alua_rtpg_queue(rcu_dereference_protected(h->pg,
390 lockdep_is_held(&h->pg_lock)),
391 sdev, NULL, true);
03197b61
HR
392 spin_unlock(&h->pg_lock);
393
394 if (old_pg)
395 kref_put(&old_pg->kref, release_port_group);
057ea7c9 396
03197b61 397 return SCSI_DH_OK;
057ea7c9
HR
398}
399
5115fc7e 400static char print_alua_state(unsigned char state)
057ea7c9
HR
401{
402 switch (state) {
5115fc7e 403 case SCSI_ACCESS_STATE_OPTIMAL:
057ea7c9 404 return 'A';
5115fc7e 405 case SCSI_ACCESS_STATE_ACTIVE:
057ea7c9 406 return 'N';
5115fc7e 407 case SCSI_ACCESS_STATE_STANDBY:
057ea7c9 408 return 'S';
5115fc7e 409 case SCSI_ACCESS_STATE_UNAVAILABLE:
057ea7c9 410 return 'U';
5115fc7e 411 case SCSI_ACCESS_STATE_LBA:
69723d17 412 return 'L';
5115fc7e 413 case SCSI_ACCESS_STATE_OFFLINE:
057ea7c9 414 return 'O';
5115fc7e 415 case SCSI_ACCESS_STATE_TRANSITIONING:
057ea7c9
HR
416 return 'T';
417 default:
418 return 'X';
419 }
420}
421
422static int alua_check_sense(struct scsi_device *sdev,
423 struct scsi_sense_hdr *sense_hdr)
424{
425 switch (sense_hdr->sense_key) {
426 case NOT_READY:
2b35865e 427 if (sense_hdr->asc == 0x04 && sense_hdr->ascq == 0x0a) {
057ea7c9
HR
428 /*
429 * LUN Not Accessible - ALUA state transition
430 */
2b35865e
HR
431 alua_check(sdev, false);
432 return NEEDS_RETRY;
433 }
057ea7c9
HR
434 break;
435 case UNIT_ATTENTION:
2b35865e 436 if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x00) {
057ea7c9 437 /*
2b35865e
HR
438 * Power On, Reset, or Bus Device Reset.
439 * Might have obscured a state transition,
440 * so schedule a recheck.
057ea7c9 441 */
2b35865e 442 alua_check(sdev, true);
c7dbb627 443 return ADD_TO_MLQUEUE;
2b35865e 444 }
c20ee7b5
SS
445 if (sense_hdr->asc == 0x29 && sense_hdr->ascq == 0x04)
446 /*
447 * Device internal reset
448 */
449 return ADD_TO_MLQUEUE;
410f02d8
MB
450 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x01)
451 /*
452 * Mode Parameters Changed
453 */
454 return ADD_TO_MLQUEUE;
2b35865e 455 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x06) {
057ea7c9
HR
456 /*
457 * ALUA state changed
458 */
2b35865e 459 alua_check(sdev, true);
c7dbb627 460 return ADD_TO_MLQUEUE;
2b35865e
HR
461 }
462 if (sense_hdr->asc == 0x2a && sense_hdr->ascq == 0x07) {
057ea7c9
HR
463 /*
464 * Implicit ALUA state transition failed
465 */
2b35865e 466 alua_check(sdev, true);
c7dbb627 467 return ADD_TO_MLQUEUE;
2b35865e 468 }
bf81973a
MB
469 if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x03)
470 /*
471 * Inquiry data has changed
472 */
473 return ADD_TO_MLQUEUE;
474 if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x0e)
4d086f6b
IH
475 /*
476 * REPORTED_LUNS_DATA_HAS_CHANGED is reported
477 * when switching controllers on targets like
478 * Intel Multi-Flex. We can just retry.
479 */
480 return ADD_TO_MLQUEUE;
057ea7c9
HR
481 break;
482 }
483
484 return SCSI_RETURN_NOT_HANDLED;
485}
486
9d2c3039
HR
487/*
488 * alua_tur - Send a TEST UNIT READY
489 * @sdev: device to which the TEST UNIT READY command should be send
490 *
491 * Send a TEST UNIT READY to @sdev to figure out the device state
492 * Returns SCSI_DH_RETRY if the sense code is NOT READY/ALUA TRANSITIONING,
493 * SCSI_DH_OK if no error occurred, and SCSI_DH_IO otherwise.
494 */
495static int alua_tur(struct scsi_device *sdev)
496{
497 struct scsi_sense_hdr sense_hdr;
498 int retval;
499
500 retval = scsi_test_unit_ready(sdev, ALUA_FAILOVER_TIMEOUT * HZ,
501 ALUA_FAILOVER_RETRIES, &sense_hdr);
502 if (sense_hdr.sense_key == NOT_READY &&
503 sense_hdr.asc == 0x04 && sense_hdr.ascq == 0x0a)
504 return SCSI_DH_RETRY;
505 else if (retval)
506 return SCSI_DH_IO;
507 else
508 return SCSI_DH_OK;
509}
510
057ea7c9
HR
511/*
512 * alua_rtpg - Evaluate REPORT TARGET GROUP STATES
513 * @sdev: the device to be evaluated.
514 *
515 * Evaluate the Target Port Group State.
516 * Returns SCSI_DH_DEV_OFFLINED if the path is
25985edc 517 * found to be unusable.
057ea7c9 518 */
28261402 519static int alua_rtpg(struct scsi_device *sdev, struct alua_port_group *pg)
057ea7c9
HR
520{
521 struct scsi_sense_hdr sense_hdr;
c57168a1 522 struct alua_port_group *tmp_pg;
c49c8345 523 int len, k, off, valid_states = 0, bufflen = ALUA_RTPG_SIZE;
c57168a1 524 unsigned char *desc, *buff;
5597cafc 525 unsigned err, retval;
3588c5a2
RE
526 unsigned int tpg_desc_tbl_off;
527 unsigned char orig_transition_tmo;
c57168a1 528 unsigned long flags;
3588c5a2 529
03197b61
HR
530 if (!pg->expiry) {
531 unsigned long transition_tmo = ALUA_FAILOVER_TIMEOUT * HZ;
532
533 if (pg->transition_tmo)
534 transition_tmo = pg->transition_tmo * HZ;
535
536 pg->expiry = round_jiffies_up(jiffies + transition_tmo);
537 }
057ea7c9 538
c49c8345
HR
539 buff = kzalloc(bufflen, GFP_KERNEL);
540 if (!buff)
541 return SCSI_DH_DEV_TEMP_BUSY;
542
057ea7c9 543 retry:
a4bd8520 544 err = 0;
43394c67 545 retval = submit_rtpg(sdev, buff, bufflen, &sense_hdr, pg->flags);
40bb61a7 546
5597cafc 547 if (retval) {
40bb61a7 548 if (!scsi_sense_valid(&sense_hdr)) {
5597cafc
HR
549 sdev_printk(KERN_INFO, sdev,
550 "%s: rtpg failed, result %d\n",
551 ALUA_DH_NAME, retval);
c49c8345 552 kfree(buff);
40bb61a7 553 if (driver_byte(retval) == DRIVER_ERROR)
5597cafc 554 return SCSI_DH_DEV_TEMP_BUSY;
057ea7c9 555 return SCSI_DH_IO;
5597cafc 556 }
057ea7c9 557
8e67ce60
RE
558 /*
559 * submit_rtpg() has failed on existing arrays
560 * when requesting extended header info, and
561 * the array doesn't support extended headers,
562 * even though it shouldn't according to T10.
563 * The retry without rtpg_ext_hdr_req set
564 * handles this.
565 */
43394c67 566 if (!(pg->flags & ALUA_RTPG_EXT_HDR_UNSUPP) &&
8e67ce60
RE
567 sense_hdr.sense_key == ILLEGAL_REQUEST &&
568 sense_hdr.asc == 0x24 && sense_hdr.ascq == 0) {
43394c67 569 pg->flags |= ALUA_RTPG_EXT_HDR_UNSUPP;
8e67ce60
RE
570 goto retry;
571 }
e2d817db
HR
572 /*
573 * Retry on ALUA state transition or if any
574 * UNIT ATTENTION occurred.
575 */
576 if (sense_hdr.sense_key == NOT_READY &&
577 sense_hdr.asc == 0x04 && sense_hdr.ascq == 0x0a)
578 err = SCSI_DH_RETRY;
579 else if (sense_hdr.sense_key == UNIT_ATTENTION)
580 err = SCSI_DH_RETRY;
03197b61
HR
581 if (err == SCSI_DH_RETRY &&
582 pg->expiry != 0 && time_before(jiffies, pg->expiry)) {
80bd68d6
HR
583 sdev_printk(KERN_ERR, sdev, "%s: rtpg retry\n",
584 ALUA_DH_NAME);
585 scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
086acff2 586 kfree(buff);
03197b61 587 return err;
80bd68d6
HR
588 }
589 sdev_printk(KERN_ERR, sdev, "%s: rtpg failed\n",
590 ALUA_DH_NAME);
591 scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
c49c8345 592 kfree(buff);
03197b61 593 pg->expiry = 0;
80bd68d6 594 return SCSI_DH_IO;
057ea7c9 595 }
057ea7c9 596
c49c8345 597 len = get_unaligned_be32(&buff[0]) + 4;
057ea7c9 598
c49c8345 599 if (len > bufflen) {
057ea7c9 600 /* Resubmit with the correct length */
c49c8345
HR
601 kfree(buff);
602 bufflen = len;
603 buff = kmalloc(bufflen, GFP_KERNEL);
604 if (!buff) {
057ea7c9 605 sdev_printk(KERN_WARNING, sdev,
cadbd4a5 606 "%s: kmalloc buffer failed\n",__func__);
057ea7c9 607 /* Temporary failure, bypass */
03197b61 608 pg->expiry = 0;
057ea7c9
HR
609 return SCSI_DH_DEV_TEMP_BUSY;
610 }
611 goto retry;
612 }
613
43394c67 614 orig_transition_tmo = pg->transition_tmo;
c49c8345 615 if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR && buff[5] != 0)
43394c67 616 pg->transition_tmo = buff[5];
3588c5a2 617 else
43394c67 618 pg->transition_tmo = ALUA_FAILOVER_TIMEOUT;
3588c5a2 619
28261402 620 if (orig_transition_tmo != pg->transition_tmo) {
3588c5a2
RE
621 sdev_printk(KERN_INFO, sdev,
622 "%s: transition timeout set to %d seconds\n",
43394c67 623 ALUA_DH_NAME, pg->transition_tmo);
03197b61 624 pg->expiry = jiffies + pg->transition_tmo * HZ;
3588c5a2
RE
625 }
626
c49c8345 627 if ((buff[4] & RTPG_FMT_MASK) == RTPG_FMT_EXT_HDR)
3588c5a2
RE
628 tpg_desc_tbl_off = 8;
629 else
630 tpg_desc_tbl_off = 4;
631
c57168a1 632 for (k = tpg_desc_tbl_off, desc = buff + tpg_desc_tbl_off;
3588c5a2 633 k < len;
c57168a1
HR
634 k += off, desc += off) {
635 u16 group_id = get_unaligned_be16(&desc[2]);
636
637 spin_lock_irqsave(&port_group_lock, flags);
638 tmp_pg = alua_find_get_pg(pg->device_id_str, pg->device_id_len,
639 group_id);
640 spin_unlock_irqrestore(&port_group_lock, flags);
641 if (tmp_pg) {
642 if (spin_trylock_irqsave(&tmp_pg->lock, flags)) {
643 if ((tmp_pg == pg) ||
644 !(tmp_pg->flags & ALUA_PG_RUNNING)) {
cb0a168c
HR
645 struct alua_dh_data *h;
646
c57168a1
HR
647 tmp_pg->state = desc[0] & 0x0f;
648 tmp_pg->pref = desc[0] >> 7;
cb0a168c
HR
649 rcu_read_lock();
650 list_for_each_entry_rcu(h,
651 &tmp_pg->dh_list, node) {
652 /* h->sdev should always be valid */
653 BUG_ON(!h->sdev);
654 h->sdev->access_state = desc[0];
655 }
656 rcu_read_unlock();
c57168a1
HR
657 }
658 if (tmp_pg == pg)
659 valid_states = desc[1];
660 spin_unlock_irqrestore(&tmp_pg->lock, flags);
661 }
662 kref_put(&tmp_pg->kref, release_port_group);
057ea7c9 663 }
c57168a1 664 off = 8 + (desc[7] * 4);
057ea7c9
HR
665 }
666
c57168a1 667 spin_lock_irqsave(&pg->lock, flags);
057ea7c9 668 sdev_printk(KERN_INFO, sdev,
dcd3a754 669 "%s: port group %02x state %c %s supports %c%c%c%c%c%c%c\n",
43394c67
HR
670 ALUA_DH_NAME, pg->group_id, print_alua_state(pg->state),
671 pg->pref ? "preferred" : "non-preferred",
057ea7c9
HR
672 valid_states&TPGS_SUPPORT_TRANSITION?'T':'t',
673 valid_states&TPGS_SUPPORT_OFFLINE?'O':'o',
69723d17 674 valid_states&TPGS_SUPPORT_LBA_DEPENDENT?'L':'l',
057ea7c9
HR
675 valid_states&TPGS_SUPPORT_UNAVAILABLE?'U':'u',
676 valid_states&TPGS_SUPPORT_STANDBY?'S':'s',
677 valid_states&TPGS_SUPPORT_NONOPTIMIZED?'N':'n',
678 valid_states&TPGS_SUPPORT_OPTIMIZED?'A':'a');
679
43394c67 680 switch (pg->state) {
5115fc7e 681 case SCSI_ACCESS_STATE_TRANSITIONING:
03197b61 682 if (time_before(jiffies, pg->expiry)) {
28261402 683 /* State transition, retry */
03197b61
HR
684 pg->interval = 2;
685 err = SCSI_DH_RETRY;
686 } else {
cb0a168c
HR
687 struct alua_dh_data *h;
688
03197b61
HR
689 /* Transitioning time exceeded, set port to standby */
690 err = SCSI_DH_IO;
5115fc7e 691 pg->state = SCSI_ACCESS_STATE_STANDBY;
03197b61 692 pg->expiry = 0;
cb0a168c
HR
693 rcu_read_lock();
694 list_for_each_entry_rcu(h, &pg->dh_list, node) {
695 BUG_ON(!h->sdev);
696 h->sdev->access_state =
697 (pg->state & SCSI_ACCESS_STATE_MASK);
698 if (pg->pref)
699 h->sdev->access_state |=
700 SCSI_ACCESS_STATE_PREFERRED;
701 }
702 rcu_read_unlock();
057ea7c9 703 }
69723d17 704 break;
5115fc7e 705 case SCSI_ACCESS_STATE_OFFLINE:
e47f8976 706 /* Path unusable */
69723d17 707 err = SCSI_DH_DEV_OFFLINED;
03197b61 708 pg->expiry = 0;
69723d17
HR
709 break;
710 default:
711 /* Useable path if active */
712 err = SCSI_DH_OK;
03197b61 713 pg->expiry = 0;
69723d17 714 break;
057ea7c9 715 }
c57168a1 716 spin_unlock_irqrestore(&pg->lock, flags);
c49c8345 717 kfree(buff);
057ea7c9
HR
718 return err;
719}
720
f2ecf13a
HR
721/*
722 * alua_stpg - Issue a SET TARGET PORT GROUP command
723 *
724 * Issue a SET TARGET PORT GROUP command and evaluate the
b2460756
HR
725 * response. Returns SCSI_DH_RETRY per default to trigger
726 * a re-evaluation of the target group state or SCSI_DH_OK
727 * if no further action needs to be taken.
f2ecf13a 728 */
43394c67 729static unsigned alua_stpg(struct scsi_device *sdev, struct alua_port_group *pg)
f2ecf13a 730{
b2460756
HR
731 int retval;
732 struct scsi_sense_hdr sense_hdr;
f2ecf13a 733
43394c67 734 if (!(pg->tpgs & TPGS_MODE_EXPLICIT)) {
b2460756
HR
735 /* Only implicit ALUA supported, retry */
736 return SCSI_DH_RETRY;
737 }
43394c67 738 switch (pg->state) {
5115fc7e 739 case SCSI_ACCESS_STATE_OPTIMAL:
b2460756 740 return SCSI_DH_OK;
5115fc7e 741 case SCSI_ACCESS_STATE_ACTIVE:
43394c67
HR
742 if ((pg->flags & ALUA_OPTIMIZE_STPG) &&
743 !pg->pref &&
744 (pg->tpgs & TPGS_MODE_IMPLICIT))
b2460756 745 return SCSI_DH_OK;
f2ecf13a 746 break;
5115fc7e
HR
747 case SCSI_ACCESS_STATE_STANDBY:
748 case SCSI_ACCESS_STATE_UNAVAILABLE:
f2ecf13a 749 break;
5115fc7e 750 case SCSI_ACCESS_STATE_OFFLINE:
b2460756 751 return SCSI_DH_IO;
5115fc7e 752 case SCSI_ACCESS_STATE_TRANSITIONING:
f2ecf13a
HR
753 break;
754 default:
b2460756
HR
755 sdev_printk(KERN_INFO, sdev,
756 "%s: stpg failed, unhandled TPGS state %d",
43394c67 757 ALUA_DH_NAME, pg->state);
b2460756 758 return SCSI_DH_NOSYS;
f2ecf13a 759 }
43394c67 760 retval = submit_stpg(sdev, pg->group_id, &sense_hdr);
f2ecf13a 761
b2460756 762 if (retval) {
40bb61a7 763 if (!scsi_sense_valid(&sense_hdr)) {
b2460756
HR
764 sdev_printk(KERN_INFO, sdev,
765 "%s: stpg failed, result %d",
766 ALUA_DH_NAME, retval);
40bb61a7 767 if (driver_byte(retval) == DRIVER_ERROR)
b2460756
HR
768 return SCSI_DH_DEV_TEMP_BUSY;
769 } else {
43394c67 770 sdev_printk(KERN_INFO, sdev, "%s: stpg failed\n",
b2460756
HR
771 ALUA_DH_NAME);
772 scsi_print_sense_hdr(sdev, ALUA_DH_NAME, &sense_hdr);
773 }
f2ecf13a 774 }
b2460756
HR
775 /* Retry RTPG */
776 return SCSI_DH_RETRY;
f2ecf13a
HR
777}
778
03197b61
HR
779static void alua_rtpg_work(struct work_struct *work)
780{
781 struct alua_port_group *pg =
782 container_of(work, struct alua_port_group, rtpg_work.work);
783 struct scsi_device *sdev;
784 LIST_HEAD(qdata_list);
785 int err = SCSI_DH_OK;
786 struct alua_queue_data *qdata, *tmp;
787 unsigned long flags;
00642a1b 788 struct workqueue_struct *alua_wq = kaluad_wq;
03197b61
HR
789
790 spin_lock_irqsave(&pg->lock, flags);
791 sdev = pg->rtpg_sdev;
792 if (!sdev) {
793 WARN_ON(pg->flags & ALUA_PG_RUN_RTPG);
794 WARN_ON(pg->flags & ALUA_PG_RUN_STPG);
795 spin_unlock_irqrestore(&pg->lock, flags);
1fdd1427 796 kref_put(&pg->kref, release_port_group);
03197b61
HR
797 return;
798 }
00642a1b
HR
799 if (pg->flags & ALUA_SYNC_STPG)
800 alua_wq = kaluad_sync_wq;
03197b61
HR
801 pg->flags |= ALUA_PG_RUNNING;
802 if (pg->flags & ALUA_PG_RUN_RTPG) {
9d2c3039
HR
803 int state = pg->state;
804
03197b61
HR
805 pg->flags &= ~ALUA_PG_RUN_RTPG;
806 spin_unlock_irqrestore(&pg->lock, flags);
5115fc7e 807 if (state == SCSI_ACCESS_STATE_TRANSITIONING) {
9d2c3039
HR
808 if (alua_tur(sdev) == SCSI_DH_RETRY) {
809 spin_lock_irqsave(&pg->lock, flags);
810 pg->flags &= ~ALUA_PG_RUNNING;
811 pg->flags |= ALUA_PG_RUN_RTPG;
812 spin_unlock_irqrestore(&pg->lock, flags);
813 queue_delayed_work(alua_wq, &pg->rtpg_work,
814 pg->interval * HZ);
815 return;
816 }
817 /* Send RTPG on failure or if TUR indicates SUCCESS */
818 }
03197b61
HR
819 err = alua_rtpg(sdev, pg);
820 spin_lock_irqsave(&pg->lock, flags);
2b35865e 821 if (err == SCSI_DH_RETRY || pg->flags & ALUA_PG_RUN_RTPG) {
03197b61
HR
822 pg->flags &= ~ALUA_PG_RUNNING;
823 pg->flags |= ALUA_PG_RUN_RTPG;
824 spin_unlock_irqrestore(&pg->lock, flags);
00642a1b 825 queue_delayed_work(alua_wq, &pg->rtpg_work,
03197b61
HR
826 pg->interval * HZ);
827 return;
828 }
829 if (err != SCSI_DH_OK)
830 pg->flags &= ~ALUA_PG_RUN_STPG;
831 }
832 if (pg->flags & ALUA_PG_RUN_STPG) {
833 pg->flags &= ~ALUA_PG_RUN_STPG;
834 spin_unlock_irqrestore(&pg->lock, flags);
835 err = alua_stpg(sdev, pg);
836 spin_lock_irqsave(&pg->lock, flags);
2b35865e 837 if (err == SCSI_DH_RETRY || pg->flags & ALUA_PG_RUN_RTPG) {
03197b61
HR
838 pg->flags |= ALUA_PG_RUN_RTPG;
839 pg->interval = 0;
840 pg->flags &= ~ALUA_PG_RUNNING;
841 spin_unlock_irqrestore(&pg->lock, flags);
00642a1b 842 queue_delayed_work(alua_wq, &pg->rtpg_work,
03197b61
HR
843 pg->interval * HZ);
844 return;
845 }
846 }
847
848 list_splice_init(&pg->rtpg_list, &qdata_list);
849 pg->rtpg_sdev = NULL;
850 spin_unlock_irqrestore(&pg->lock, flags);
851
852 list_for_each_entry_safe(qdata, tmp, &qdata_list, entry) {
853 list_del(&qdata->entry);
854 if (qdata->callback_fn)
855 qdata->callback_fn(qdata->callback_data, err);
856 kfree(qdata);
857 }
858 spin_lock_irqsave(&pg->lock, flags);
859 pg->flags &= ~ALUA_PG_RUNNING;
860 spin_unlock_irqrestore(&pg->lock, flags);
861 scsi_device_put(sdev);
862 kref_put(&pg->kref, release_port_group);
863}
864
7cb689fe
BVA
865/**
866 * alua_rtpg_queue() - cause RTPG to be submitted asynchronously
867 *
868 * Returns true if and only if alua_rtpg_work() will be called asynchronously.
869 * That function is responsible for calling @qdata->fn().
870 */
871static bool alua_rtpg_queue(struct alua_port_group *pg,
03197b61 872 struct scsi_device *sdev,
2b35865e 873 struct alua_queue_data *qdata, bool force)
03197b61
HR
874{
875 int start_queue = 0;
876 unsigned long flags;
00642a1b 877 struct workqueue_struct *alua_wq = kaluad_wq;
03197b61 878
0aeccdfe 879 if (WARN_ON_ONCE(!pg) || scsi_device_get(sdev))
7cb689fe 880 return false;
03197b61
HR
881
882 spin_lock_irqsave(&pg->lock, flags);
883 if (qdata) {
884 list_add_tail(&qdata->entry, &pg->rtpg_list);
885 pg->flags |= ALUA_PG_RUN_STPG;
2b35865e 886 force = true;
03197b61
HR
887 }
888 if (pg->rtpg_sdev == NULL) {
889 pg->interval = 0;
890 pg->flags |= ALUA_PG_RUN_RTPG;
891 kref_get(&pg->kref);
892 pg->rtpg_sdev = sdev;
03197b61 893 start_queue = 1;
2b35865e
HR
894 } else if (!(pg->flags & ALUA_PG_RUN_RTPG) && force) {
895 pg->flags |= ALUA_PG_RUN_RTPG;
896 /* Do not queue if the worker is already running */
897 if (!(pg->flags & ALUA_PG_RUNNING)) {
898 kref_get(&pg->kref);
899 start_queue = 1;
900 }
03197b61 901 }
2b35865e 902
00642a1b
HR
903 if (pg->flags & ALUA_SYNC_STPG)
904 alua_wq = kaluad_sync_wq;
03197b61
HR
905 spin_unlock_irqrestore(&pg->lock, flags);
906
625fe857
BVA
907 if (start_queue) {
908 if (queue_delayed_work(alua_wq, &pg->rtpg_work,
909 msecs_to_jiffies(ALUA_RTPG_DELAY_MSECS)))
910 sdev = NULL;
911 else
912 kref_put(&pg->kref, release_port_group);
03197b61 913 }
625fe857
BVA
914 if (sdev)
915 scsi_device_put(sdev);
7cb689fe
BVA
916
917 return true;
03197b61
HR
918}
919
057ea7c9
HR
920/*
921 * alua_initialize - Initialize ALUA state
922 * @sdev: the device to be initialized
923 *
924 * For the prep_fn to work correctly we have
925 * to initialize the ALUA state for the device.
926 */
927static int alua_initialize(struct scsi_device *sdev, struct alua_dh_data *h)
928{
43394c67 929 int err = SCSI_DH_DEV_UNSUPP, tpgs;
057ea7c9 930
03197b61 931 mutex_lock(&h->init_mutex);
43394c67 932 tpgs = alua_check_tpgs(sdev);
a4253fde
HR
933 if (tpgs != TPGS_MODE_NONE)
934 err = alua_check_vpd(sdev, h, tpgs);
03197b61
HR
935 h->init_error = err;
936 mutex_unlock(&h->init_mutex);
057ea7c9
HR
937 return err;
938}
4335d092
MB
939/*
940 * alua_set_params - set/unset the optimize flag
941 * @sdev: device on the path to be activated
942 * params - parameters in the following format
943 * "no_of_params\0param1\0param2\0param3\0...\0"
944 * For example, to set the flag pass the following parameters
945 * from multipath.conf
946 * hardware_handler "2 alua 1"
947 */
948static int alua_set_params(struct scsi_device *sdev, const char *params)
949{
ee14c674 950 struct alua_dh_data *h = sdev->handler_data;
d29425b0 951 struct alua_port_group *pg = NULL;
4335d092
MB
952 unsigned int optimize = 0, argc;
953 const char *p = params;
954 int result = SCSI_DH_OK;
03197b61 955 unsigned long flags;
4335d092
MB
956
957 if ((sscanf(params, "%u", &argc) != 1) || (argc != 1))
958 return -EINVAL;
959
960 while (*p++)
961 ;
962 if ((sscanf(p, "%u", &optimize) != 1) || (optimize > 1))
963 return -EINVAL;
964
03197b61
HR
965 rcu_read_lock();
966 pg = rcu_dereference(h->pg);
967 if (!pg) {
968 rcu_read_unlock();
43394c67 969 return -ENXIO;
03197b61
HR
970 }
971 spin_lock_irqsave(&pg->lock, flags);
4335d092 972 if (optimize)
43394c67 973 pg->flags |= ALUA_OPTIMIZE_STPG;
4335d092 974 else
43394c67 975 pg->flags &= ~ALUA_OPTIMIZE_STPG;
03197b61
HR
976 spin_unlock_irqrestore(&pg->lock, flags);
977 rcu_read_unlock();
4335d092
MB
978
979 return result;
980}
057ea7c9
HR
981
982/*
983 * alua_activate - activate a path
984 * @sdev: device on the path to be activated
985 *
986 * We're currently switching the port group to be activated only and
987 * let the array figure out the rest.
988 * There may be other arrays which require us to switch all port groups
989 * based on a certain policy. But until we actually encounter them it
990 * should be okay.
991 */
3ae31f6a
CS
992static int alua_activate(struct scsi_device *sdev,
993 activate_complete fn, void *data)
057ea7c9 994{
ee14c674 995 struct alua_dh_data *h = sdev->handler_data;
057ea7c9 996 int err = SCSI_DH_OK;
03197b61 997 struct alua_queue_data *qdata;
d29425b0 998 struct alua_port_group *pg;
057ea7c9 999
03197b61
HR
1000 qdata = kzalloc(sizeof(*qdata), GFP_KERNEL);
1001 if (!qdata) {
1002 err = SCSI_DH_RES_TEMP_UNAVAIL;
46ccf6b5 1003 goto out;
03197b61
HR
1004 }
1005 qdata->callback_fn = fn;
1006 qdata->callback_data = data;
1007
1008 mutex_lock(&h->init_mutex);
1009 rcu_read_lock();
1010 pg = rcu_dereference(h->pg);
1011 if (!pg || !kref_get_unless_zero(&pg->kref)) {
1012 rcu_read_unlock();
1013 kfree(qdata);
1014 err = h->init_error;
1015 mutex_unlock(&h->init_mutex);
43394c67
HR
1016 goto out;
1017 }
03197b61
HR
1018 rcu_read_unlock();
1019 mutex_unlock(&h->init_mutex);
1020
7cb689fe
BVA
1021 if (alua_rtpg_queue(pg, sdev, qdata, true))
1022 fn = NULL;
1023 else
1024 err = SCSI_DH_DEV_OFFLINED;
03197b61 1025 kref_put(&pg->kref, release_port_group);
057ea7c9 1026out:
b2460756 1027 if (fn)
3ae31f6a
CS
1028 fn(data, err);
1029 return 0;
057ea7c9
HR
1030}
1031
2b35865e
HR
1032/*
1033 * alua_check - check path status
1034 * @sdev: device on the path to be checked
1035 *
1036 * Check the device status
1037 */
1038static void alua_check(struct scsi_device *sdev, bool force)
1039{
1040 struct alua_dh_data *h = sdev->handler_data;
1041 struct alua_port_group *pg;
1042
1043 rcu_read_lock();
1044 pg = rcu_dereference(h->pg);
1045 if (!pg || !kref_get_unless_zero(&pg->kref)) {
1046 rcu_read_unlock();
1047 return;
1048 }
1049 rcu_read_unlock();
1050
1051 alua_rtpg_queue(pg, sdev, NULL, force);
1052 kref_put(&pg->kref, release_port_group);
1053}
1054
057ea7c9
HR
1055/*
1056 * alua_prep_fn - request callback
1057 *
1058 * Fail I/O to all paths not in state
1059 * active/optimized or active/non-optimized.
1060 */
1061static int alua_prep_fn(struct scsi_device *sdev, struct request *req)
1062{
ee14c674 1063 struct alua_dh_data *h = sdev->handler_data;
d29425b0 1064 struct alua_port_group *pg;
5115fc7e 1065 unsigned char state = SCSI_ACCESS_STATE_OPTIMAL;
057ea7c9
HR
1066 int ret = BLKPREP_OK;
1067
03197b61
HR
1068 rcu_read_lock();
1069 pg = rcu_dereference(h->pg);
1070 if (pg)
1071 state = pg->state;
1072 rcu_read_unlock();
5115fc7e 1073 if (state == SCSI_ACCESS_STATE_TRANSITIONING)
69723d17 1074 ret = BLKPREP_DEFER;
5115fc7e
HR
1075 else if (state != SCSI_ACCESS_STATE_OPTIMAL &&
1076 state != SCSI_ACCESS_STATE_ACTIVE &&
1077 state != SCSI_ACCESS_STATE_LBA) {
057ea7c9 1078 ret = BLKPREP_KILL;
e8064021 1079 req->rq_flags |= RQF_QUIET;
057ea7c9
HR
1080 }
1081 return ret;
1082
1083}
1084
d3d32891
HR
1085static void alua_rescan(struct scsi_device *sdev)
1086{
1087 struct alua_dh_data *h = sdev->handler_data;
1088
1089 alua_initialize(sdev, h);
1090}
1091
057ea7c9
HR
1092/*
1093 * alua_bus_attach - Attach device handler
1094 * @sdev: device to be attached to
1095 */
ee14c674 1096static int alua_bus_attach(struct scsi_device *sdev)
057ea7c9 1097{
057ea7c9 1098 struct alua_dh_data *h;
43394c67 1099 int err, ret = -EINVAL;
057ea7c9 1100
cd37743f 1101 h = kzalloc(sizeof(*h) , GFP_KERNEL);
1d520328 1102 if (!h)
ee14c674 1103 return -ENOMEM;
03197b61
HR
1104 spin_lock_init(&h->pg_lock);
1105 rcu_assign_pointer(h->pg, NULL);
1106 h->init_error = SCSI_DH_OK;
96e65865 1107 h->sdev = sdev;
cb0a168c 1108 INIT_LIST_HEAD(&h->node);
057ea7c9 1109
03197b61 1110 mutex_init(&h->init_mutex);
057ea7c9 1111 err = alua_initialize(sdev, h);
43394c67
HR
1112 if (err == SCSI_DH_NOMEM)
1113 ret = -ENOMEM;
1d520328 1114 if (err != SCSI_DH_OK && err != SCSI_DH_DEV_OFFLINED)
057ea7c9
HR
1115 goto failed;
1116
ee14c674
CH
1117 sdev->handler_data = h;
1118 return 0;
057ea7c9 1119failed:
cd37743f 1120 kfree(h);
43394c67 1121 return ret;
057ea7c9
HR
1122}
1123
1124/*
1125 * alua_bus_detach - Detach device handler
1126 * @sdev: device to be detached from
1127 */
1128static void alua_bus_detach(struct scsi_device *sdev)
1129{
ee14c674 1130 struct alua_dh_data *h = sdev->handler_data;
03197b61
HR
1131 struct alua_port_group *pg;
1132
1133 spin_lock(&h->pg_lock);
d29425b0 1134 pg = rcu_dereference_protected(h->pg, lockdep_is_held(&h->pg_lock));
03197b61
HR
1135 rcu_assign_pointer(h->pg, NULL);
1136 h->sdev = NULL;
1137 spin_unlock(&h->pg_lock);
cb0a168c 1138 if (pg) {
38c31599 1139 spin_lock_irq(&pg->lock);
cb0a168c 1140 list_del_rcu(&h->node);
38c31599 1141 spin_unlock_irq(&pg->lock);
03197b61 1142 kref_put(&pg->kref, release_port_group);
cb0a168c 1143 }
ee14c674 1144 sdev->handler_data = NULL;
cd37743f 1145 kfree(h);
057ea7c9
HR
1146}
1147
1d520328
CH
1148static struct scsi_device_handler alua_dh = {
1149 .name = ALUA_DH_NAME,
1150 .module = THIS_MODULE,
1151 .attach = alua_bus_attach,
1152 .detach = alua_bus_detach,
1153 .prep_fn = alua_prep_fn,
1154 .check_sense = alua_check_sense,
1155 .activate = alua_activate,
d3d32891 1156 .rescan = alua_rescan,
1d520328 1157 .set_params = alua_set_params,
1d520328
CH
1158};
1159
057ea7c9
HR
1160static int __init alua_init(void)
1161{
1162 int r;
1163
03197b61
HR
1164 kaluad_wq = alloc_workqueue("kaluad", WQ_MEM_RECLAIM, 0);
1165 if (!kaluad_wq) {
1166 /* Temporary failure, bypass */
1167 return SCSI_DH_DEV_TEMP_BUSY;
1168 }
00642a1b
HR
1169 kaluad_sync_wq = create_workqueue("kaluad_sync");
1170 if (!kaluad_sync_wq) {
1171 destroy_workqueue(kaluad_wq);
1172 return SCSI_DH_DEV_TEMP_BUSY;
1173 }
057ea7c9 1174 r = scsi_register_device_handler(&alua_dh);
03197b61 1175 if (r != 0) {
057ea7c9
HR
1176 printk(KERN_ERR "%s: Failed to register scsi device handler",
1177 ALUA_DH_NAME);
00642a1b 1178 destroy_workqueue(kaluad_sync_wq);
03197b61
HR
1179 destroy_workqueue(kaluad_wq);
1180 }
057ea7c9
HR
1181 return r;
1182}
1183
1184static void __exit alua_exit(void)
1185{
1186 scsi_unregister_device_handler(&alua_dh);
00642a1b 1187 destroy_workqueue(kaluad_sync_wq);
03197b61 1188 destroy_workqueue(kaluad_wq);
057ea7c9
HR
1189}
1190
1191module_init(alua_init);
1192module_exit(alua_exit);
1193
1194MODULE_DESCRIPTION("DM Multipath ALUA support");
1195MODULE_AUTHOR("Hannes Reinecke <hare@suse.de>");
1196MODULE_LICENSE("GPL");
1197MODULE_VERSION(ALUA_DH_VER);