1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * SCSI device handler infrastructure.
5 * Copyright IBM Corporation, 2007
7 * Chandra Seetharaman <sekharan@us.ibm.com>
8 * Mike Anderson <andmike@linux.vnet.ibm.com>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <scsi/scsi_dh.h>
14 #include "scsi_priv.h"
16 static DEFINE_SPINLOCK(list_lock);
17 static LIST_HEAD(scsi_dh_list);
19 struct scsi_dh_blist {
25 static const struct scsi_dh_blist scsi_dh_blist[] = {
26 {"DGC", "RAID", "emc" },
27 {"DGC", "DISK", "emc" },
28 {"DGC", "VRAID", "emc" },
30 {"COMPAQ", "MSA1000 VOLUME", "hp_sw" },
31 {"COMPAQ", "HSV110", "hp_sw" },
32 {"HP", "HSV100", "hp_sw"},
33 {"DEC", "HSG80", "hp_sw"},
35 {"IBM", "1722", "rdac", },
36 {"IBM", "1724", "rdac", },
37 {"IBM", "1726", "rdac", },
38 {"IBM", "1742", "rdac", },
39 {"IBM", "1745", "rdac", },
40 {"IBM", "1746", "rdac", },
41 {"IBM", "1813", "rdac", },
42 {"IBM", "1814", "rdac", },
43 {"IBM", "1815", "rdac", },
44 {"IBM", "1818", "rdac", },
45 {"IBM", "3526", "rdac", },
46 {"IBM", "3542", "rdac", },
47 {"IBM", "3552", "rdac", },
48 {"SGI", "TP9300", "rdac", },
49 {"SGI", "TP9400", "rdac", },
50 {"SGI", "TP9500", "rdac", },
51 {"SGI", "TP9700", "rdac", },
52 {"SGI", "IS", "rdac", },
53 {"STK", "OPENstorage", "rdac", },
54 {"STK", "FLEXLINE 380", "rdac", },
55 {"STK", "BladeCtlr", "rdac", },
56 {"SUN", "CSM", "rdac", },
57 {"SUN", "LCSM100", "rdac", },
58 {"SUN", "STK6580_6780", "rdac", },
59 {"SUN", "SUN_6180", "rdac", },
60 {"SUN", "ArrayStorage", "rdac", },
61 {"DELL", "MD3", "rdac", },
62 {"NETAPP", "INF-01-00", "rdac", },
63 {"LSI", "INF-01-00", "rdac", },
64 {"ENGENIO", "INF-01-00", "rdac", },
65 {"LENOVO", "DE_Series", "rdac", },
66 {"FUJITSU", "ETERNUS_AHB", "rdac", },
71 scsi_dh_find_driver(struct scsi_device *sdev)
73 const struct scsi_dh_blist *b;
75 if (scsi_device_tpgs(sdev))
78 for (b = scsi_dh_blist; b->vendor; b++) {
79 if (!strncmp(sdev->vendor, b->vendor, strlen(b->vendor)) &&
80 !strncmp(sdev->model, b->model, strlen(b->model))) {
88 static struct scsi_device_handler *__scsi_dh_lookup(const char *name)
90 struct scsi_device_handler *tmp, *found = NULL;
92 spin_lock(&list_lock);
93 list_for_each_entry(tmp, &scsi_dh_list, list) {
94 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
99 spin_unlock(&list_lock);
103 static struct scsi_device_handler *scsi_dh_lookup(const char *name)
105 struct scsi_device_handler *dh;
107 if (!name || strlen(name) == 0)
110 dh = __scsi_dh_lookup(name);
112 request_module("scsi_dh_%s", name);
113 dh = __scsi_dh_lookup(name);
120 * scsi_dh_handler_attach - Attach a device handler to a device
121 * @sdev - SCSI device the device handler should attach to
122 * @scsi_dh - The device handler to attach
124 static int scsi_dh_handler_attach(struct scsi_device *sdev,
125 struct scsi_device_handler *scsi_dh)
129 if (!try_module_get(scsi_dh->module))
132 error = scsi_dh->attach(sdev);
133 if (error != SCSI_DH_OK) {
138 case SCSI_DH_RES_TEMP_UNAVAIL:
141 case SCSI_DH_DEV_UNSUPP:
150 sdev_printk(KERN_ERR, sdev, "%s: Attach failed (%d)\n",
151 scsi_dh->name, error);
152 module_put(scsi_dh->module);
154 sdev->handler = scsi_dh;
160 * scsi_dh_handler_detach - Detach a device handler from a device
161 * @sdev - SCSI device the device handler should be detached from
163 static void scsi_dh_handler_detach(struct scsi_device *sdev)
165 sdev->handler->detach(sdev);
166 sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name);
167 module_put(sdev->handler->module);
170 void scsi_dh_add_device(struct scsi_device *sdev)
172 struct scsi_device_handler *devinfo = NULL;
175 drv = scsi_dh_find_driver(sdev);
177 devinfo = __scsi_dh_lookup(drv);
179 * device_handler is optional, so ignore errors
180 * from scsi_dh_handler_attach()
183 (void)scsi_dh_handler_attach(sdev, devinfo);
186 void scsi_dh_release_device(struct scsi_device *sdev)
189 scsi_dh_handler_detach(sdev);
193 * scsi_register_device_handler - register a device handler personality
195 * @scsi_dh - device handler to be registered.
197 * Returns 0 on success, -EBUSY if handler already registered.
199 int scsi_register_device_handler(struct scsi_device_handler *scsi_dh)
201 if (__scsi_dh_lookup(scsi_dh->name))
204 if (!scsi_dh->attach || !scsi_dh->detach)
207 spin_lock(&list_lock);
208 list_add(&scsi_dh->list, &scsi_dh_list);
209 spin_unlock(&list_lock);
211 printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name);
215 EXPORT_SYMBOL_GPL(scsi_register_device_handler);
218 * scsi_unregister_device_handler - register a device handler personality
220 * @scsi_dh - device handler to be unregistered.
222 * Returns 0 on success, -ENODEV if handler not registered.
224 int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh)
226 if (!__scsi_dh_lookup(scsi_dh->name))
229 spin_lock(&list_lock);
230 list_del(&scsi_dh->list);
231 spin_unlock(&list_lock);
232 printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name);
236 EXPORT_SYMBOL_GPL(scsi_unregister_device_handler);
239 * scsi_dh_activate - activate the path associated with the scsi_device
240 * corresponding to the given request queue.
241 * Returns immediately without waiting for activation to be completed.
242 * @q - Request queue that is associated with the scsi_device to be
244 * @fn - Function to be called upon completion of the activation.
245 * Function fn is called with data (below) and the error code.
246 * Function fn may be called from the same calling context. So,
247 * do not hold the lock in the caller which may be needed in fn.
248 * @data - data passed to the function fn upon completion.
251 int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data)
253 struct scsi_device *sdev;
254 int err = SCSI_DH_NOSYS;
256 sdev = scsi_device_from_queue(q);
265 err = SCSI_DH_NOTCONN;
266 if (sdev->sdev_state == SDEV_CANCEL ||
267 sdev->sdev_state == SDEV_DEL)
270 err = SCSI_DH_DEV_OFFLINED;
271 if (sdev->sdev_state == SDEV_OFFLINE)
274 if (sdev->handler->activate)
275 err = sdev->handler->activate(sdev, fn, data);
278 put_device(&sdev->sdev_gendev);
286 EXPORT_SYMBOL_GPL(scsi_dh_activate);
289 * scsi_dh_set_params - set the parameters for the device as per the
290 * string specified in params.
291 * @q - Request queue that is associated with the scsi_device for
292 * which the parameters to be set.
293 * @params - parameters in the following format
294 * "no_of_params\0param1\0param2\0param3\0...\0"
295 * for example, string for 2 parameters with value 10 and 21
296 * is specified as "2\010\021\0".
298 int scsi_dh_set_params(struct request_queue *q, const char *params)
300 struct scsi_device *sdev;
301 int err = -SCSI_DH_NOSYS;
303 sdev = scsi_device_from_queue(q);
307 if (sdev->handler && sdev->handler->set_params)
308 err = sdev->handler->set_params(sdev, params);
309 put_device(&sdev->sdev_gendev);
312 EXPORT_SYMBOL_GPL(scsi_dh_set_params);
315 * scsi_dh_attach - Attach device handler
316 * @q - Request queue that is associated with the scsi_device
317 * the handler should be attached to
318 * @name - name of the handler to attach
320 int scsi_dh_attach(struct request_queue *q, const char *name)
322 struct scsi_device *sdev;
323 struct scsi_device_handler *scsi_dh;
326 sdev = scsi_device_from_queue(q);
330 scsi_dh = scsi_dh_lookup(name);
337 if (sdev->handler != scsi_dh)
342 err = scsi_dh_handler_attach(sdev, scsi_dh);
345 put_device(&sdev->sdev_gendev);
348 EXPORT_SYMBOL_GPL(scsi_dh_attach);
351 * scsi_dh_attached_handler_name - Get attached device handler's name
352 * @q - Request queue that is associated with the scsi_device
353 * that may have a device handler attached
354 * @gfp - the GFP mask used in the kmalloc() call when allocating memory
356 * Returns name of attached handler, NULL if no handler is attached.
357 * Caller must take care to free the returned string.
359 const char *scsi_dh_attached_handler_name(struct request_queue *q, gfp_t gfp)
361 struct scsi_device *sdev;
362 const char *handler_name = NULL;
364 sdev = scsi_device_from_queue(q);
369 handler_name = kstrdup(sdev->handler->name, gfp);
370 put_device(&sdev->sdev_gendev);
373 EXPORT_SYMBOL_GPL(scsi_dh_attached_handler_name);