blob: 2e1db5738ae1a6da8532ddbf80e033fa6b8001fd [file] [log] [blame]
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -07001/*
2 * SCSI device handler infrastruture.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright IBM Corporation, 2007
19 * Authors:
20 * Chandra Seetharaman <sekharan@us.ibm.com>
21 * Mike Anderson <andmike@linux.vnet.ibm.com>
22 */
23
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040025#include <linux/module.h>
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070026#include <scsi/scsi_dh.h>
Christoph Hellwigdaaa8582015-08-27 14:16:56 +020027#include "scsi_priv.h"
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070028
29static DEFINE_SPINLOCK(list_lock);
30static LIST_HEAD(scsi_dh_list);
31
Christoph Hellwigd95dbff2015-08-27 14:16:58 +020032struct scsi_dh_blist {
33 const char *vendor;
34 const char *model;
35 const char *driver;
36};
37
38static const struct scsi_dh_blist scsi_dh_blist[] = {
39 {"DGC", "RAID", "clariion" },
40 {"DGC", "DISK", "clariion" },
41 {"DGC", "VRAID", "clariion" },
42
43 {"COMPAQ", "MSA1000 VOLUME", "hp_sw" },
44 {"COMPAQ", "HSV110", "hp_sw" },
45 {"HP", "HSV100", "hp_sw"},
46 {"DEC", "HSG80", "hp_sw"},
47
48 {"IBM", "1722", "rdac", },
49 {"IBM", "1724", "rdac", },
50 {"IBM", "1726", "rdac", },
51 {"IBM", "1742", "rdac", },
52 {"IBM", "1745", "rdac", },
53 {"IBM", "1746", "rdac", },
54 {"IBM", "1813", "rdac", },
55 {"IBM", "1814", "rdac", },
56 {"IBM", "1815", "rdac", },
57 {"IBM", "1818", "rdac", },
58 {"IBM", "3526", "rdac", },
59 {"SGI", "TP9", "rdac", },
60 {"SGI", "IS", "rdac", },
61 {"STK", "OPENstorage D280", "rdac", },
62 {"STK", "FLEXLINE 380", "rdac", },
63 {"SUN", "CSM", "rdac", },
64 {"SUN", "LCSM100", "rdac", },
65 {"SUN", "STK6580_6780", "rdac", },
66 {"SUN", "SUN_6180", "rdac", },
67 {"SUN", "ArrayStorage", "rdac", },
68 {"DELL", "MD3", "rdac", },
69 {"NETAPP", "INF-01-00", "rdac", },
70 {"LSI", "INF-01-00", "rdac", },
71 {"ENGENIO", "INF-01-00", "rdac", },
72 {NULL, NULL, NULL },
73};
74
75static const char *
76scsi_dh_find_driver(struct scsi_device *sdev)
77{
78 const struct scsi_dh_blist *b;
79
80 if (scsi_device_tpgs(sdev))
81 return "alua";
82
83 for (b = scsi_dh_blist; b->vendor; b++) {
84 if (!strncmp(sdev->vendor, b->vendor, strlen(b->vendor)) &&
85 !strncmp(sdev->model, b->model, strlen(b->model))) {
86 return b->driver;
87 }
88 }
89 return NULL;
90}
91
92
Christoph Hellwig566079c2015-08-27 14:16:55 +020093static struct scsi_device_handler *__scsi_dh_lookup(const char *name)
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070094{
95 struct scsi_device_handler *tmp, *found = NULL;
96
97 spin_lock(&list_lock);
98 list_for_each_entry(tmp, &scsi_dh_list, list) {
Hannes Reinecke765cbc62008-07-17 16:52:51 -070099 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700100 found = tmp;
101 break;
102 }
103 }
104 spin_unlock(&list_lock);
105 return found;
106}
107
Christoph Hellwig566079c2015-08-27 14:16:55 +0200108static struct scsi_device_handler *scsi_dh_lookup(const char *name)
109{
110 struct scsi_device_handler *dh;
111
112 dh = __scsi_dh_lookup(name);
113 if (!dh) {
114 request_module(name);
115 dh = __scsi_dh_lookup(name);
116 }
117
118 return dh;
119}
120
Hannes Reinecke6c3633d2011-08-24 10:51:15 +0200121/*
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700122 * scsi_dh_handler_attach - Attach a device handler to a device
123 * @sdev - SCSI device the device handler should attach to
124 * @scsi_dh - The device handler to attach
125 */
126static int scsi_dh_handler_attach(struct scsi_device *sdev,
127 struct scsi_device_handler *scsi_dh)
128{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200129 int error;
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700130
Christoph Hellwig1f12ffa2014-09-13 20:08:44 -0700131 if (!try_module_get(scsi_dh->module))
132 return -EINVAL;
Christoph Hellwig27c888f2014-09-13 19:41:16 -0700133
Christoph Hellwigee14c672015-08-27 14:16:59 +0200134 error = scsi_dh->attach(sdev);
135 if (error) {
136 sdev_printk(KERN_ERR, sdev, "%s: Attach failed (%d)\n",
137 scsi_dh->name, error);
Christoph Hellwig1f12ffa2014-09-13 20:08:44 -0700138 module_put(scsi_dh->module);
Christoph Hellwigee14c672015-08-27 14:16:59 +0200139 } else
140 sdev->handler = scsi_dh;
Christoph Hellwig1f12ffa2014-09-13 20:08:44 -0700141
Christoph Hellwigee14c672015-08-27 14:16:59 +0200142 return error;
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700143}
144
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200145/*
146 * scsi_dh_handler_detach - Detach a device handler from a device
147 * @sdev - SCSI device the device handler should be detached from
148 */
149static void scsi_dh_handler_detach(struct scsi_device *sdev)
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700150{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200151 sdev->handler->detach(sdev);
152 sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name);
153 module_put(sdev->handler->module);
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700154}
155
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700156/*
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700157 * Functions for sysfs attribute 'dh_state'
158 */
159static ssize_t
160store_dh_state(struct device *dev, struct device_attribute *attr,
161 const char *buf, size_t count)
162{
163 struct scsi_device *sdev = to_scsi_device(dev);
164 struct scsi_device_handler *scsi_dh;
165 int err = -EINVAL;
166
Hannes Reinecke6bc8d2a2011-08-24 10:51:17 +0200167 if (sdev->sdev_state == SDEV_CANCEL ||
168 sdev->sdev_state == SDEV_DEL)
169 return -ENODEV;
170
Christoph Hellwigee14c672015-08-27 14:16:59 +0200171 if (!sdev->handler) {
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700172 /*
173 * Attach to a device handler
174 */
Christoph Hellwig566079c2015-08-27 14:16:55 +0200175 scsi_dh = scsi_dh_lookup(buf);
176 if (!scsi_dh)
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700177 return err;
178 err = scsi_dh_handler_attach(sdev, scsi_dh);
179 } else {
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700180 if (!strncmp(buf, "detach", 6)) {
181 /*
182 * Detach from a device handler
183 */
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200184 scsi_dh_handler_detach(sdev);
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700185 err = 0;
186 } else if (!strncmp(buf, "activate", 8)) {
187 /*
188 * Activate a device handler
189 */
Christoph Hellwigee14c672015-08-27 14:16:59 +0200190 if (sdev->handler->activate)
191 err = sdev->handler->activate(sdev, NULL, NULL);
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700192 else
193 err = 0;
194 }
195 }
196
197 return err<0?err:count;
198}
199
200static ssize_t
201show_dh_state(struct device *dev, struct device_attribute *attr, char *buf)
202{
203 struct scsi_device *sdev = to_scsi_device(dev);
204
Christoph Hellwigee14c672015-08-27 14:16:59 +0200205 if (!sdev->handler)
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700206 return snprintf(buf, 20, "detached\n");
207
Christoph Hellwigee14c672015-08-27 14:16:59 +0200208 return snprintf(buf, 20, "%s\n", sdev->handler->name);
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700209}
210
211static struct device_attribute scsi_dh_state_attr =
212 __ATTR(dh_state, S_IRUGO | S_IWUSR, show_dh_state,
213 store_dh_state);
214
Christoph Hellwig086b91d2015-08-27 14:16:57 +0200215int scsi_dh_add_device(struct scsi_device *sdev)
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700216{
Christoph Hellwigd95dbff2015-08-27 14:16:58 +0200217 struct scsi_device_handler *devinfo = NULL;
218 const char *drv;
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700219 int err;
220
Christoph Hellwig086b91d2015-08-27 14:16:57 +0200221 err = device_create_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
222 if (err)
223 return err;
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700224
Christoph Hellwigd95dbff2015-08-27 14:16:58 +0200225 drv = scsi_dh_find_driver(sdev);
226 if (drv)
227 devinfo = scsi_dh_lookup(drv);
Christoph Hellwig086b91d2015-08-27 14:16:57 +0200228 if (devinfo)
229 err = scsi_dh_handler_attach(sdev, devinfo);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700230 return err;
231}
232
Christoph Hellwig086b91d2015-08-27 14:16:57 +0200233void scsi_dh_remove_device(struct scsi_device *sdev)
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700234{
Christoph Hellwigee14c672015-08-27 14:16:59 +0200235 if (sdev->handler)
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200236 scsi_dh_handler_detach(sdev);
Christoph Hellwig086b91d2015-08-27 14:16:57 +0200237 device_remove_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700238}
239
240/*
241 * scsi_register_device_handler - register a device handler personality
242 * module.
243 * @scsi_dh - device handler to be registered.
244 *
245 * Returns 0 on success, -EBUSY if handler already registered.
246 */
247int scsi_register_device_handler(struct scsi_device_handler *scsi_dh)
248{
Christoph Hellwig566079c2015-08-27 14:16:55 +0200249 if (__scsi_dh_lookup(scsi_dh->name))
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700250 return -EBUSY;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700251
Christoph Hellwig1f12ffa2014-09-13 20:08:44 -0700252 if (!scsi_dh->attach || !scsi_dh->detach)
253 return -EINVAL;
254
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700255 spin_lock(&list_lock);
256 list_add(&scsi_dh->list, &scsi_dh_list);
257 spin_unlock(&list_lock);
Peter Jones940d7fa2011-01-06 15:38:24 -0500258
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700259 printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700260
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700261 return SCSI_DH_OK;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700262}
263EXPORT_SYMBOL_GPL(scsi_register_device_handler);
264
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700265/*
266 * scsi_unregister_device_handler - register a device handler personality
267 * module.
268 * @scsi_dh - device handler to be unregistered.
269 *
270 * Returns 0 on success, -ENODEV if handler not registered.
271 */
272int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh)
273{
Christoph Hellwig566079c2015-08-27 14:16:55 +0200274 if (!__scsi_dh_lookup(scsi_dh->name))
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700275 return -ENODEV;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700276
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700277 spin_lock(&list_lock);
278 list_del(&scsi_dh->list);
279 spin_unlock(&list_lock);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700280 printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700281
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700282 return SCSI_DH_OK;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700283}
284EXPORT_SYMBOL_GPL(scsi_unregister_device_handler);
285
Christoph Hellwige959ed92015-08-27 14:17:00 +0200286static struct scsi_device *get_sdev_from_queue(struct request_queue *q)
287{
288 struct scsi_device *sdev;
289 unsigned long flags;
290
291 spin_lock_irqsave(q->queue_lock, flags);
292 sdev = q->queuedata;
293 if (!sdev || !get_device(&sdev->sdev_gendev))
294 sdev = NULL;
295 spin_unlock_irqrestore(q->queue_lock, flags);
296
297 return sdev;
298}
299
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700300/*
301 * scsi_dh_activate - activate the path associated with the scsi_device
302 * corresponding to the given request queue.
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700303 * Returns immediately without waiting for activation to be completed.
304 * @q - Request queue that is associated with the scsi_device to be
305 * activated.
306 * @fn - Function to be called upon completion of the activation.
307 * Function fn is called with data (below) and the error code.
308 * Function fn may be called from the same calling context. So,
309 * do not hold the lock in the caller which may be needed in fn.
310 * @data - data passed to the function fn upon completion.
311 *
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700312 */
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700313int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data)
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700314{
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700315 struct scsi_device *sdev;
Christoph Hellwige959ed92015-08-27 14:17:00 +0200316 int err = SCSI_DH_NOSYS;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700317
Christoph Hellwige959ed92015-08-27 14:17:00 +0200318 sdev = get_sdev_from_queue(q);
Moger, Babua18a9202011-10-26 14:29:38 -0400319 if (!sdev) {
Moger, Babua18a9202011-10-26 14:29:38 -0400320 if (fn)
321 fn(data, err);
322 return err;
323 }
324
Christoph Hellwige959ed92015-08-27 14:17:00 +0200325 if (!sdev->handler)
326 goto out_fn;
327 if (sdev->sdev_state == SDEV_CANCEL ||
Menny Hamburgerdb422312010-12-16 14:57:07 -0500328 sdev->sdev_state == SDEV_DEL)
Christoph Hellwige959ed92015-08-27 14:17:00 +0200329 goto out_fn;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700330
Christoph Hellwige959ed92015-08-27 14:17:00 +0200331 err = SCSI_DH_DEV_OFFLINED;
332 if (sdev->sdev_state == SDEV_OFFLINE)
333 goto out_fn;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700334
Christoph Hellwigee14c672015-08-27 14:16:59 +0200335 if (sdev->handler->activate)
336 err = sdev->handler->activate(sdev, fn, data);
Christoph Hellwige959ed92015-08-27 14:17:00 +0200337
338out_put_device:
339 put_device(&sdev->sdev_gendev);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700340 return err;
Christoph Hellwige959ed92015-08-27 14:17:00 +0200341
342out_fn:
343 if (fn)
344 fn(data, err);
345 goto out_put_device;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700346}
347EXPORT_SYMBOL_GPL(scsi_dh_activate);
348
349/*
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700350 * scsi_dh_set_params - set the parameters for the device as per the
351 * string specified in params.
352 * @q - Request queue that is associated with the scsi_device for
353 * which the parameters to be set.
354 * @params - parameters in the following format
355 * "no_of_params\0param1\0param2\0param3\0...\0"
356 * for example, string for 2 parameters with value 10 and 21
357 * is specified as "2\010\021\0".
358 */
359int scsi_dh_set_params(struct request_queue *q, const char *params)
360{
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700361 struct scsi_device *sdev;
Christoph Hellwige959ed92015-08-27 14:17:00 +0200362 int err = -SCSI_DH_NOSYS;
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700363
Christoph Hellwige959ed92015-08-27 14:17:00 +0200364 sdev = get_sdev_from_queue(q);
365 if (!sdev)
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700366 return err;
Christoph Hellwige959ed92015-08-27 14:17:00 +0200367
368 if (sdev->handler && sdev->handler->set_params)
369 err = sdev->handler->set_params(sdev, params);
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700370 put_device(&sdev->sdev_gendev);
371 return err;
372}
373EXPORT_SYMBOL_GPL(scsi_dh_set_params);
374
375/*
Hannes Reinecke2a9ab402011-08-24 10:51:14 +0200376 * scsi_dh_attach - Attach device handler
Mike Snitzer7e8a74b2012-06-26 14:32:03 -0400377 * @q - Request queue that is associated with the scsi_device
378 * the handler should be attached to
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700379 * @name - name of the handler to attach
380 */
381int scsi_dh_attach(struct request_queue *q, const char *name)
382{
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700383 struct scsi_device *sdev;
384 struct scsi_device_handler *scsi_dh;
385 int err = 0;
386
Christoph Hellwige959ed92015-08-27 14:17:00 +0200387 sdev = get_sdev_from_queue(q);
388 if (!sdev)
389 return -ENODEV;
390
Christoph Hellwig566079c2015-08-27 14:16:55 +0200391 scsi_dh = scsi_dh_lookup(name);
Christoph Hellwige959ed92015-08-27 14:17:00 +0200392 if (!scsi_dh) {
393 err = -EINVAL;
394 goto out_put_device;
395 }
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200396
Christoph Hellwigee14c672015-08-27 14:16:59 +0200397 if (sdev->handler) {
398 if (sdev->handler != scsi_dh)
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200399 err = -EBUSY;
400 goto out_put_device;
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700401 }
Christoph Hellwig1bab0de2015-08-27 14:16:54 +0200402
403 err = scsi_dh_handler_attach(sdev, scsi_dh);
404
405out_put_device:
406 put_device(&sdev->sdev_gendev);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700407 return err;
408}
409EXPORT_SYMBOL_GPL(scsi_dh_attach);
410
411/*
Mike Snitzer7e8a74b2012-06-26 14:32:03 -0400412 * scsi_dh_attached_handler_name - Get attached device handler's name
413 * @q - Request queue that is associated with the scsi_device
414 * that may have a device handler attached
415 * @gfp - the GFP mask used in the kmalloc() call when allocating memory
416 *
417 * Returns name of attached handler, NULL if no handler is attached.
418 * Caller must take care to free the returned string.
419 */
420const char *scsi_dh_attached_handler_name(struct request_queue *q, gfp_t gfp)
421{
Mike Snitzer7e8a74b2012-06-26 14:32:03 -0400422 struct scsi_device *sdev;
423 const char *handler_name = NULL;
424
Christoph Hellwige959ed92015-08-27 14:17:00 +0200425 sdev = get_sdev_from_queue(q);
Mike Snitzer7e8a74b2012-06-26 14:32:03 -0400426 if (!sdev)
427 return NULL;
428
Christoph Hellwigee14c672015-08-27 14:16:59 +0200429 if (sdev->handler)
430 handler_name = kstrdup(sdev->handler->name, gfp);
Mike Snitzer7e8a74b2012-06-26 14:32:03 -0400431 put_device(&sdev->sdev_gendev);
432 return handler_name;
433}
434EXPORT_SYMBOL_GPL(scsi_dh_attached_handler_name);