blob: 265c467854da7eccc62c7d5c09ec1495c2c65065 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 SUSE LINUX Products GmbH. All rights reserved.
3 * Copyright (C) 2004 Red Hat, Inc. All rights reserved.
4 *
5 * This file is released under the GPL.
6 *
7 * Multipath support for EMC CLARiiON AX/CX-series hardware.
8 */
9
10#include "dm.h"
11#include "dm-hw-handler.h"
12#include <scsi/scsi.h>
13#include <scsi/scsi_cmnd.h>
14
Alasdair G Kergon72d94862006-06-26 00:27:35 -070015#define DM_MSG_PREFIX "multipath emc"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017struct emc_handler {
18 spinlock_t lock;
19
20 /* Whether we should send the short trespass command (FC-series)
21 * or the long version (default for AX/CX CLARiiON arrays). */
22 unsigned short_trespass;
23 /* Whether or not to honor SCSI reservations when initiating a
24 * switch-over. Default: Don't. */
25 unsigned hr;
26
27 unsigned char sense[SCSI_SENSE_BUFFERSIZE];
28};
29
30#define TRESPASS_PAGE 0x22
31#define EMC_FAILOVER_TIMEOUT (60 * HZ)
32
33/* Code borrowed from dm-lsi-rdac by Mike Christie */
34
35static inline void free_bio(struct bio *bio)
36{
37 __free_page(bio->bi_io_vec[0].bv_page);
38 bio_put(bio);
39}
40
41static int emc_endio(struct bio *bio, unsigned int bytes_done, int error)
42{
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080043 struct dm_path *path = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if (bio->bi_size)
46 return 1;
47
48 /* We also need to look at the sense keys here whether or not to
49 * switch to the next PG etc.
50 *
51 * For now simple logic: either it works or it doesn't.
52 */
53 if (error)
54 dm_pg_init_complete(path, MP_FAIL_PATH);
55 else
56 dm_pg_init_complete(path, 0);
57
58 /* request is freed in block layer */
59 free_bio(bio);
60
61 return 0;
62}
63
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080064static struct bio *get_failover_bio(struct dm_path *path, unsigned data_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct bio *bio;
67 struct page *page;
68
69 bio = bio_alloc(GFP_ATOMIC, 1);
70 if (!bio) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -070071 DMERR("get_failover_bio: bio_alloc() failed.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return NULL;
73 }
74
75 bio->bi_rw |= (1 << BIO_RW);
76 bio->bi_bdev = path->dev->bdev;
77 bio->bi_sector = 0;
78 bio->bi_private = path;
79 bio->bi_end_io = emc_endio;
80
81 page = alloc_page(GFP_ATOMIC);
82 if (!page) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -070083 DMERR("get_failover_bio: alloc_page() failed.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 bio_put(bio);
85 return NULL;
86 }
87
88 if (bio_add_page(bio, page, data_size, 0) != data_size) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -070089 DMERR("get_failover_bio: alloc_page() failed.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 __free_page(page);
91 bio_put(bio);
92 return NULL;
93 }
94
95 return bio;
96}
97
98static struct request *get_failover_req(struct emc_handler *h,
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -080099 struct bio *bio, struct dm_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct request *rq;
102 struct block_device *bdev = bio->bi_bdev;
103 struct request_queue *q = bdev_get_queue(bdev);
104
105 /* FIXME: Figure out why it fails with GFP_ATOMIC. */
106 rq = blk_get_request(q, WRITE, __GFP_WAIT);
107 if (!rq) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700108 DMERR("get_failover_req: blk_get_request failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return NULL;
110 }
111
112 rq->bio = rq->biotail = bio;
113 blk_rq_bio_prep(q, rq, bio);
114
115 rq->rq_disk = bdev->bd_contains->bd_disk;
116
117 /* bio backed don't set data */
118 rq->buffer = rq->data = NULL;
119 /* rq data_len used for pc cmd's request_bufflen */
120 rq->data_len = bio->bi_size;
121
122 rq->sense = h->sense;
123 memset(rq->sense, 0, SCSI_SENSE_BUFFERSIZE);
124 rq->sense_len = 0;
125
126 memset(&rq->cmd, 0, BLK_MAX_CDB);
127
128 rq->timeout = EMC_FAILOVER_TIMEOUT;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200129 rq->cmd_type = REQ_TYPE_BLOCK_PC;
130 rq->cmd_flags |= REQ_FAILFAST | REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 return rq;
133}
134
135static struct request *emc_trespass_get(struct emc_handler *h,
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800136 struct dm_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct bio *bio;
139 struct request *rq;
140 unsigned char *page22;
141 unsigned char long_trespass_pg[] = {
142 0, 0, 0, 0,
143 TRESPASS_PAGE, /* Page code */
144 0x09, /* Page length - 2 */
145 h->hr ? 0x01 : 0x81, /* Trespass code + Honor reservation bit */
146 0xff, 0xff, /* Trespass target */
147 0, 0, 0, 0, 0, 0 /* Reserved bytes / unknown */
148 };
149 unsigned char short_trespass_pg[] = {
150 0, 0, 0, 0,
151 TRESPASS_PAGE, /* Page code */
152 0x02, /* Page length - 2 */
153 h->hr ? 0x01 : 0x81, /* Trespass code + Honor reservation bit */
154 0xff, /* Trespass target */
155 };
156 unsigned data_size = h->short_trespass ? sizeof(short_trespass_pg) :
157 sizeof(long_trespass_pg);
158
159 /* get bio backing */
160 if (data_size > PAGE_SIZE)
161 /* this should never happen */
162 return NULL;
163
164 bio = get_failover_bio(path, data_size);
165 if (!bio) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700166 DMERR("emc_trespass_get: no bio");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return NULL;
168 }
169
170 page22 = (unsigned char *)bio_data(bio);
171 memset(page22, 0, data_size);
172
173 memcpy(page22, h->short_trespass ?
174 short_trespass_pg : long_trespass_pg, data_size);
175
176 /* get request for block layer packet command */
177 rq = get_failover_req(h, bio, path);
178 if (!rq) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700179 DMERR("emc_trespass_get: no rq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 free_bio(bio);
181 return NULL;
182 }
183
184 /* Prepare the command. */
185 rq->cmd[0] = MODE_SELECT;
186 rq->cmd[1] = 0x10;
187 rq->cmd[4] = data_size;
188 rq->cmd_len = COMMAND_SIZE(rq->cmd[0]);
189
190 return rq;
191}
192
193static void emc_pg_init(struct hw_handler *hwh, unsigned bypassed,
Josef "Jeff" Sipekc922d5f2006-12-08 02:36:33 -0800194 struct dm_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
196 struct request *rq;
197 struct request_queue *q = bdev_get_queue(path->dev->bdev);
198
199 /*
200 * We can either blindly init the pg (then look at the sense),
201 * or we can send some commands to get the state here (then
202 * possibly send the fo cmnd), or we can also have the
203 * initial state passed into us and then get an update here.
204 */
205 if (!q) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700206 DMINFO("emc_pg_init: no queue");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 goto fail_path;
208 }
209
210 /* FIXME: The request should be pre-allocated. */
211 rq = emc_trespass_get(hwh->context, path);
212 if (!rq) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700213 DMERR("emc_pg_init: no rq");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto fail_path;
215 }
216
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700217 DMINFO("emc_pg_init: sending switch-over command");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 elv_add_request(q, rq, ELEVATOR_INSERT_FRONT, 1);
219 return;
220
221fail_path:
222 dm_pg_init_complete(path, MP_FAIL_PATH);
223}
224
225static struct emc_handler *alloc_emc_handler(void)
226{
227 struct emc_handler *h = kmalloc(sizeof(*h), GFP_KERNEL);
228
Alasdair G Kergonf1daa402005-05-05 16:16:08 -0700229 if (h) {
230 memset(h, 0, sizeof(*h));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 spin_lock_init(&h->lock);
Alasdair G Kergonf1daa402005-05-05 16:16:08 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 return h;
235}
236
237static int emc_create(struct hw_handler *hwh, unsigned argc, char **argv)
238{
239 struct emc_handler *h;
240 unsigned hr, short_trespass;
241
242 if (argc == 0) {
243 /* No arguments: use defaults */
244 hr = 0;
245 short_trespass = 0;
246 } else if (argc != 2) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700247 DMWARN("incorrect number of arguments");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return -EINVAL;
249 } else {
250 if ((sscanf(argv[0], "%u", &short_trespass) != 1)
251 || (short_trespass > 1)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700252 DMWARN("invalid trespass mode selected");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return -EINVAL;
254 }
255
256 if ((sscanf(argv[1], "%u", &hr) != 1)
257 || (hr > 1)) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700258 DMWARN("invalid honor reservation flag selected");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -EINVAL;
260 }
261 }
262
263 h = alloc_emc_handler();
264 if (!h)
265 return -ENOMEM;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 hwh->context = h;
268
269 if ((h->short_trespass = short_trespass))
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700270 DMWARN("short trespass command will be send");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 else
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700272 DMWARN("long trespass command will be send");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 if ((h->hr = hr))
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700275 DMWARN("honor reservation bit will be set");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 else
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700277 DMWARN("honor reservation bit will not be set (default)");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 return 0;
280}
281
282static void emc_destroy(struct hw_handler *hwh)
283{
284 struct emc_handler *h = (struct emc_handler *) hwh->context;
285
286 kfree(h);
287 hwh->context = NULL;
288}
289
290static unsigned emc_error(struct hw_handler *hwh, struct bio *bio)
291{
292 /* FIXME: Patch from axboe still missing */
293#if 0
294 int sense;
295
296 if (bio->bi_error & BIO_SENSE) {
297 sense = bio->bi_error & 0xffffff; /* sense key / asc / ascq */
298
299 if (sense == 0x020403) {
300 /* LUN Not Ready - Manual Intervention Required
301 * indicates this is a passive path.
302 *
303 * FIXME: However, if this is seen and EVPD C0
304 * indicates that this is due to a NDU in
305 * progress, we should set FAIL_PATH too.
306 * This indicates we might have to do a SCSI
307 * inquiry in the end_io path. Ugh. */
308 return MP_BYPASS_PG | MP_RETRY_IO;
309 } else if (sense == 0x052501) {
310 /* An array based copy is in progress. Do not
311 * fail the path, do not bypass to another PG,
312 * do not retry. Fail the IO immediately.
313 * (Actually this is the same conclusion as in
314 * the default handler, but lets make sure.) */
315 return 0;
316 } else if (sense == 0x062900) {
317 /* Unit Attention Code. This is the first IO
318 * to the new path, so just retry. */
319 return MP_RETRY_IO;
320 }
321 }
322#endif
323
324 /* Try default handler */
325 return dm_scsi_err_handler(hwh, bio);
326}
327
328static struct hw_handler_type emc_hwh = {
329 .name = "emc",
330 .module = THIS_MODULE,
331 .create = emc_create,
332 .destroy = emc_destroy,
333 .pg_init = emc_pg_init,
334 .error = emc_error,
335};
336
337static int __init dm_emc_init(void)
338{
339 int r = dm_register_hw_handler(&emc_hwh);
340
341 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700342 DMERR("register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700344 DMINFO("version 0.0.3 loaded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 return r;
347}
348
349static void __exit dm_emc_exit(void)
350{
351 int r = dm_unregister_hw_handler(&emc_hwh);
352
353 if (r < 0)
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700354 DMERR("unregister failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357module_init(dm_emc_init);
358module_exit(dm_emc_exit);
359
360MODULE_DESCRIPTION(DM_NAME " EMC CX/AX/FC-family multipath");
361MODULE_AUTHOR("Lars Marowsky-Bree <lmb@suse.de>");
362MODULE_LICENSE("GPL");