Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 15 | #define DM_MSG_PREFIX "multipath emc" |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | struct 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 | |
| 35 | static inline void free_bio(struct bio *bio) |
| 36 | { |
| 37 | __free_page(bio->bi_io_vec[0].bv_page); |
| 38 | bio_put(bio); |
| 39 | } |
| 40 | |
| 41 | static int emc_endio(struct bio *bio, unsigned int bytes_done, int error) |
| 42 | { |
| 43 | struct path *path = bio->bi_private; |
| 44 | |
| 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 | |
| 64 | static struct bio *get_failover_bio(struct path *path, unsigned data_size) |
| 65 | { |
| 66 | struct bio *bio; |
| 67 | struct page *page; |
| 68 | |
| 69 | bio = bio_alloc(GFP_ATOMIC, 1); |
| 70 | if (!bio) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 71 | DMERR("get_failover_bio: bio_alloc() failed."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | 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 Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 83 | DMERR("get_failover_bio: alloc_page() failed."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | bio_put(bio); |
| 85 | return NULL; |
| 86 | } |
| 87 | |
| 88 | if (bio_add_page(bio, page, data_size, 0) != data_size) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 89 | DMERR("get_failover_bio: alloc_page() failed."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | __free_page(page); |
| 91 | bio_put(bio); |
| 92 | return NULL; |
| 93 | } |
| 94 | |
| 95 | return bio; |
| 96 | } |
| 97 | |
| 98 | static struct request *get_failover_req(struct emc_handler *h, |
| 99 | struct bio *bio, struct path *path) |
| 100 | { |
| 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 Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 108 | DMERR("get_failover_req: blk_get_request failed"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | 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; |
| 129 | rq->flags |= (REQ_BLOCK_PC | REQ_FAILFAST | REQ_NOMERGE); |
| 130 | |
| 131 | return rq; |
| 132 | } |
| 133 | |
| 134 | static struct request *emc_trespass_get(struct emc_handler *h, |
| 135 | struct path *path) |
| 136 | { |
| 137 | struct bio *bio; |
| 138 | struct request *rq; |
| 139 | unsigned char *page22; |
| 140 | unsigned char long_trespass_pg[] = { |
| 141 | 0, 0, 0, 0, |
| 142 | TRESPASS_PAGE, /* Page code */ |
| 143 | 0x09, /* Page length - 2 */ |
| 144 | h->hr ? 0x01 : 0x81, /* Trespass code + Honor reservation bit */ |
| 145 | 0xff, 0xff, /* Trespass target */ |
| 146 | 0, 0, 0, 0, 0, 0 /* Reserved bytes / unknown */ |
| 147 | }; |
| 148 | unsigned char short_trespass_pg[] = { |
| 149 | 0, 0, 0, 0, |
| 150 | TRESPASS_PAGE, /* Page code */ |
| 151 | 0x02, /* Page length - 2 */ |
| 152 | h->hr ? 0x01 : 0x81, /* Trespass code + Honor reservation bit */ |
| 153 | 0xff, /* Trespass target */ |
| 154 | }; |
| 155 | unsigned data_size = h->short_trespass ? sizeof(short_trespass_pg) : |
| 156 | sizeof(long_trespass_pg); |
| 157 | |
| 158 | /* get bio backing */ |
| 159 | if (data_size > PAGE_SIZE) |
| 160 | /* this should never happen */ |
| 161 | return NULL; |
| 162 | |
| 163 | bio = get_failover_bio(path, data_size); |
| 164 | if (!bio) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 165 | DMERR("emc_trespass_get: no bio"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | return NULL; |
| 167 | } |
| 168 | |
| 169 | page22 = (unsigned char *)bio_data(bio); |
| 170 | memset(page22, 0, data_size); |
| 171 | |
| 172 | memcpy(page22, h->short_trespass ? |
| 173 | short_trespass_pg : long_trespass_pg, data_size); |
| 174 | |
| 175 | /* get request for block layer packet command */ |
| 176 | rq = get_failover_req(h, bio, path); |
| 177 | if (!rq) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 178 | DMERR("emc_trespass_get: no rq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | free_bio(bio); |
| 180 | return NULL; |
| 181 | } |
| 182 | |
| 183 | /* Prepare the command. */ |
| 184 | rq->cmd[0] = MODE_SELECT; |
| 185 | rq->cmd[1] = 0x10; |
| 186 | rq->cmd[4] = data_size; |
| 187 | rq->cmd_len = COMMAND_SIZE(rq->cmd[0]); |
| 188 | |
| 189 | return rq; |
| 190 | } |
| 191 | |
| 192 | static void emc_pg_init(struct hw_handler *hwh, unsigned bypassed, |
| 193 | struct path *path) |
| 194 | { |
| 195 | struct request *rq; |
| 196 | struct request_queue *q = bdev_get_queue(path->dev->bdev); |
| 197 | |
| 198 | /* |
| 199 | * We can either blindly init the pg (then look at the sense), |
| 200 | * or we can send some commands to get the state here (then |
| 201 | * possibly send the fo cmnd), or we can also have the |
| 202 | * initial state passed into us and then get an update here. |
| 203 | */ |
| 204 | if (!q) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 205 | DMINFO("emc_pg_init: no queue"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | goto fail_path; |
| 207 | } |
| 208 | |
| 209 | /* FIXME: The request should be pre-allocated. */ |
| 210 | rq = emc_trespass_get(hwh->context, path); |
| 211 | if (!rq) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 212 | DMERR("emc_pg_init: no rq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | goto fail_path; |
| 214 | } |
| 215 | |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 216 | DMINFO("emc_pg_init: sending switch-over command"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | elv_add_request(q, rq, ELEVATOR_INSERT_FRONT, 1); |
| 218 | return; |
| 219 | |
| 220 | fail_path: |
| 221 | dm_pg_init_complete(path, MP_FAIL_PATH); |
| 222 | } |
| 223 | |
| 224 | static struct emc_handler *alloc_emc_handler(void) |
| 225 | { |
| 226 | struct emc_handler *h = kmalloc(sizeof(*h), GFP_KERNEL); |
| 227 | |
Alasdair G Kergon | f1daa40 | 2005-05-05 16:16:08 -0700 | [diff] [blame] | 228 | if (h) { |
| 229 | memset(h, 0, sizeof(*h)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | spin_lock_init(&h->lock); |
Alasdair G Kergon | f1daa40 | 2005-05-05 16:16:08 -0700 | [diff] [blame] | 231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
| 233 | return h; |
| 234 | } |
| 235 | |
| 236 | static int emc_create(struct hw_handler *hwh, unsigned argc, char **argv) |
| 237 | { |
| 238 | struct emc_handler *h; |
| 239 | unsigned hr, short_trespass; |
| 240 | |
| 241 | if (argc == 0) { |
| 242 | /* No arguments: use defaults */ |
| 243 | hr = 0; |
| 244 | short_trespass = 0; |
| 245 | } else if (argc != 2) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 246 | DMWARN("incorrect number of arguments"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return -EINVAL; |
| 248 | } else { |
| 249 | if ((sscanf(argv[0], "%u", &short_trespass) != 1) |
| 250 | || (short_trespass > 1)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 251 | DMWARN("invalid trespass mode selected"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | return -EINVAL; |
| 253 | } |
| 254 | |
| 255 | if ((sscanf(argv[1], "%u", &hr) != 1) |
| 256 | || (hr > 1)) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 257 | DMWARN("invalid honor reservation flag selected"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | return -EINVAL; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | h = alloc_emc_handler(); |
| 263 | if (!h) |
| 264 | return -ENOMEM; |
| 265 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | hwh->context = h; |
| 267 | |
| 268 | if ((h->short_trespass = short_trespass)) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 269 | DMWARN("short trespass command will be send"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | else |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 271 | DMWARN("long trespass command will be send"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | if ((h->hr = hr)) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 274 | DMWARN("honor reservation bit will be set"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | else |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 276 | DMWARN("honor reservation bit will not be set (default)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | return 0; |
| 279 | } |
| 280 | |
| 281 | static void emc_destroy(struct hw_handler *hwh) |
| 282 | { |
| 283 | struct emc_handler *h = (struct emc_handler *) hwh->context; |
| 284 | |
| 285 | kfree(h); |
| 286 | hwh->context = NULL; |
| 287 | } |
| 288 | |
| 289 | static unsigned emc_error(struct hw_handler *hwh, struct bio *bio) |
| 290 | { |
| 291 | /* FIXME: Patch from axboe still missing */ |
| 292 | #if 0 |
| 293 | int sense; |
| 294 | |
| 295 | if (bio->bi_error & BIO_SENSE) { |
| 296 | sense = bio->bi_error & 0xffffff; /* sense key / asc / ascq */ |
| 297 | |
| 298 | if (sense == 0x020403) { |
| 299 | /* LUN Not Ready - Manual Intervention Required |
| 300 | * indicates this is a passive path. |
| 301 | * |
| 302 | * FIXME: However, if this is seen and EVPD C0 |
| 303 | * indicates that this is due to a NDU in |
| 304 | * progress, we should set FAIL_PATH too. |
| 305 | * This indicates we might have to do a SCSI |
| 306 | * inquiry in the end_io path. Ugh. */ |
| 307 | return MP_BYPASS_PG | MP_RETRY_IO; |
| 308 | } else if (sense == 0x052501) { |
| 309 | /* An array based copy is in progress. Do not |
| 310 | * fail the path, do not bypass to another PG, |
| 311 | * do not retry. Fail the IO immediately. |
| 312 | * (Actually this is the same conclusion as in |
| 313 | * the default handler, but lets make sure.) */ |
| 314 | return 0; |
| 315 | } else if (sense == 0x062900) { |
| 316 | /* Unit Attention Code. This is the first IO |
| 317 | * to the new path, so just retry. */ |
| 318 | return MP_RETRY_IO; |
| 319 | } |
| 320 | } |
| 321 | #endif |
| 322 | |
| 323 | /* Try default handler */ |
| 324 | return dm_scsi_err_handler(hwh, bio); |
| 325 | } |
| 326 | |
| 327 | static struct hw_handler_type emc_hwh = { |
| 328 | .name = "emc", |
| 329 | .module = THIS_MODULE, |
| 330 | .create = emc_create, |
| 331 | .destroy = emc_destroy, |
| 332 | .pg_init = emc_pg_init, |
| 333 | .error = emc_error, |
| 334 | }; |
| 335 | |
| 336 | static int __init dm_emc_init(void) |
| 337 | { |
| 338 | int r = dm_register_hw_handler(&emc_hwh); |
| 339 | |
| 340 | if (r < 0) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 341 | DMERR("register failed %d", r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 343 | DMINFO("version 0.0.3 loaded"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | return r; |
| 346 | } |
| 347 | |
| 348 | static void __exit dm_emc_exit(void) |
| 349 | { |
| 350 | int r = dm_unregister_hw_handler(&emc_hwh); |
| 351 | |
| 352 | if (r < 0) |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 353 | DMERR("unregister failed %d", r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | module_init(dm_emc_init); |
| 357 | module_exit(dm_emc_exit); |
| 358 | |
| 359 | MODULE_DESCRIPTION(DM_NAME " EMC CX/AX/FC-family multipath"); |
| 360 | MODULE_AUTHOR("Lars Marowsky-Bree <lmb@suse.de>"); |
| 361 | MODULE_LICENSE("GPL"); |