]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/scsi/scsi_dh.c
mvsas: Fix NULL pointer dereference in mvs_slot_task_free
[mirror_ubuntu-bionic-kernel.git] / drivers / scsi / scsi_dh.c
CommitLineData
a6a8d9f8
CS
1/*
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
5a0e3ad6 24#include <linux/slab.h>
acf3368f 25#include <linux/module.h>
a6a8d9f8 26#include <scsi/scsi_dh.h>
daaa858b 27#include "scsi_priv.h"
a6a8d9f8
CS
28
29static DEFINE_SPINLOCK(list_lock);
30static LIST_HEAD(scsi_dh_list);
31
d95dbff2
CH
32struct 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
566079c8 93static struct scsi_device_handler *__scsi_dh_lookup(const char *name)
a6a8d9f8
CS
94{
95 struct scsi_device_handler *tmp, *found = NULL;
96
97 spin_lock(&list_lock);
98 list_for_each_entry(tmp, &scsi_dh_list, list) {
765cbc6d 99 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
a6a8d9f8
CS
100 found = tmp;
101 break;
102 }
103 }
104 spin_unlock(&list_lock);
105 return found;
106}
107
566079c8
CH
108static 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) {
1378889c 114 request_module("scsi_dh_%s", name);
566079c8
CH
115 dh = __scsi_dh_lookup(name);
116 }
117
118 return dh;
119}
120
a6a8d9f8 121/*
765cbc6d
HR
122 * 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{
ee14c674 129 int error;
765cbc6d 130
1f12ffa5
CH
131 if (!try_module_get(scsi_dh->module))
132 return -EINVAL;
27c888f0 133
ee14c674
CH
134 error = scsi_dh->attach(sdev);
135 if (error) {
136 sdev_printk(KERN_ERR, sdev, "%s: Attach failed (%d)\n",
137 scsi_dh->name, error);
1f12ffa5 138 module_put(scsi_dh->module);
ee14c674
CH
139 } else
140 sdev->handler = scsi_dh;
1d520328 141
ee14c674 142 return error;
765cbc6d
HR
143}
144
1bab0de0
CH
145/*
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)
6c10db72 150{
ee14c674
CH
151 sdev->handler->detach(sdev);
152 sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name);
153 module_put(sdev->handler->module);
6c10db72
CS
154}
155
4c05ae52
HR
156/*
157 * 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
6bc8d2a0
HR
167 if (sdev->sdev_state == SDEV_CANCEL ||
168 sdev->sdev_state == SDEV_DEL)
169 return -ENODEV;
170
ee14c674 171 if (!sdev->handler) {
4c05ae52
HR
172 /*
173 * Attach to a device handler
174 */
566079c8
CH
175 scsi_dh = scsi_dh_lookup(buf);
176 if (!scsi_dh)
4c05ae52
HR
177 return err;
178 err = scsi_dh_handler_attach(sdev, scsi_dh);
179 } else {
4c05ae52
HR
180 if (!strncmp(buf, "detach", 6)) {
181 /*
182 * Detach from a device handler
183 */
d4422774
CH
184 sdev_printk(KERN_WARNING, sdev,
185 "can't detach handler %s.\n",
186 sdev->handler->name);
187 err = -EINVAL;
4c05ae52
HR
188 } else if (!strncmp(buf, "activate", 8)) {
189 /*
190 * Activate a device handler
191 */
ee14c674
CH
192 if (sdev->handler->activate)
193 err = sdev->handler->activate(sdev, NULL, NULL);
4c05ae52
HR
194 else
195 err = 0;
196 }
197 }
198
199 return err<0?err:count;
200}
201
202static ssize_t
203show_dh_state(struct device *dev, struct device_attribute *attr, char *buf)
204{
205 struct scsi_device *sdev = to_scsi_device(dev);
206
ee14c674 207 if (!sdev->handler)
4c05ae52
HR
208 return snprintf(buf, 20, "detached\n");
209
ee14c674 210 return snprintf(buf, 20, "%s\n", sdev->handler->name);
4c05ae52
HR
211}
212
213static struct device_attribute scsi_dh_state_attr =
214 __ATTR(dh_state, S_IRUGO | S_IWUSR, show_dh_state,
215 store_dh_state);
216
086b91d0 217int scsi_dh_add_device(struct scsi_device *sdev)
4c05ae52 218{
d95dbff2
CH
219 struct scsi_device_handler *devinfo = NULL;
220 const char *drv;
4c05ae52
HR
221 int err;
222
086b91d0
CH
223 err = device_create_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
224 if (err)
225 return err;
4c05ae52 226
d95dbff2
CH
227 drv = scsi_dh_find_driver(sdev);
228 if (drv)
229 devinfo = scsi_dh_lookup(drv);
086b91d0
CH
230 if (devinfo)
231 err = scsi_dh_handler_attach(sdev, devinfo);
765cbc6d 232 return err;
a6a8d9f8 233}
a6a8d9f8 234
086b91d0 235void scsi_dh_remove_device(struct scsi_device *sdev)
765cbc6d 236{
ee14c674 237 if (sdev->handler)
1bab0de0 238 scsi_dh_handler_detach(sdev);
086b91d0 239 device_remove_file(&sdev->sdev_gendev, &scsi_dh_state_attr);
a6a8d9f8
CS
240}
241
765cbc6d
HR
242/*
243 * scsi_register_device_handler - register a device handler personality
244 * module.
245 * @scsi_dh - device handler to be registered.
246 *
247 * Returns 0 on success, -EBUSY if handler already registered.
248 */
249int scsi_register_device_handler(struct scsi_device_handler *scsi_dh)
250{
566079c8 251 if (__scsi_dh_lookup(scsi_dh->name))
765cbc6d
HR
252 return -EBUSY;
253
1f12ffa5
CH
254 if (!scsi_dh->attach || !scsi_dh->detach)
255 return -EINVAL;
256
765cbc6d
HR
257 spin_lock(&list_lock);
258 list_add(&scsi_dh->list, &scsi_dh_list);
259 spin_unlock(&list_lock);
940d7faa 260
765cbc6d
HR
261 printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name);
262
263 return SCSI_DH_OK;
264}
265EXPORT_SYMBOL_GPL(scsi_register_device_handler);
266
a6a8d9f8
CS
267/*
268 * scsi_unregister_device_handler - register a device handler personality
269 * module.
270 * @scsi_dh - device handler to be unregistered.
271 *
272 * Returns 0 on success, -ENODEV if handler not registered.
273 */
274int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh)
275{
566079c8 276 if (!__scsi_dh_lookup(scsi_dh->name))
765cbc6d 277 return -ENODEV;
a6a8d9f8 278
a6a8d9f8
CS
279 spin_lock(&list_lock);
280 list_del(&scsi_dh->list);
281 spin_unlock(&list_lock);
765cbc6d 282 printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name);
a6a8d9f8 283
765cbc6d 284 return SCSI_DH_OK;
a6a8d9f8
CS
285}
286EXPORT_SYMBOL_GPL(scsi_unregister_device_handler);
287
e959ed9a
CH
288static struct scsi_device *get_sdev_from_queue(struct request_queue *q)
289{
290 struct scsi_device *sdev;
291 unsigned long flags;
292
293 spin_lock_irqsave(q->queue_lock, flags);
294 sdev = q->queuedata;
295 if (!sdev || !get_device(&sdev->sdev_gendev))
296 sdev = NULL;
297 spin_unlock_irqrestore(q->queue_lock, flags);
298
299 return sdev;
300}
301
a6a8d9f8
CS
302/*
303 * scsi_dh_activate - activate the path associated with the scsi_device
304 * corresponding to the given request queue.
3ae31f6a
CS
305 * Returns immediately without waiting for activation to be completed.
306 * @q - Request queue that is associated with the scsi_device to be
307 * activated.
308 * @fn - Function to be called upon completion of the activation.
309 * Function fn is called with data (below) and the error code.
310 * Function fn may be called from the same calling context. So,
311 * do not hold the lock in the caller which may be needed in fn.
312 * @data - data passed to the function fn upon completion.
313 *
a6a8d9f8 314 */
3ae31f6a 315int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data)
a6a8d9f8 316{
a6a8d9f8 317 struct scsi_device *sdev;
e959ed9a 318 int err = SCSI_DH_NOSYS;
a6a8d9f8 319
e959ed9a 320 sdev = get_sdev_from_queue(q);
a18a920c 321 if (!sdev) {
a18a920c
MB
322 if (fn)
323 fn(data, err);
324 return err;
325 }
326
e959ed9a
CH
327 if (!sdev->handler)
328 goto out_fn;
710105fd 329 err = SCSI_DH_NOTCONN;
e959ed9a 330 if (sdev->sdev_state == SDEV_CANCEL ||
db422318 331 sdev->sdev_state == SDEV_DEL)
e959ed9a 332 goto out_fn;
a6a8d9f8 333
e959ed9a
CH
334 err = SCSI_DH_DEV_OFFLINED;
335 if (sdev->sdev_state == SDEV_OFFLINE)
336 goto out_fn;
a6a8d9f8 337
ee14c674
CH
338 if (sdev->handler->activate)
339 err = sdev->handler->activate(sdev, fn, data);
e959ed9a
CH
340
341out_put_device:
342 put_device(&sdev->sdev_gendev);
a6a8d9f8 343 return err;
e959ed9a
CH
344
345out_fn:
346 if (fn)
347 fn(data, err);
348 goto out_put_device;
a6a8d9f8
CS
349}
350EXPORT_SYMBOL_GPL(scsi_dh_activate);
351
18ee70c9
CS
352/*
353 * scsi_dh_set_params - set the parameters for the device as per the
354 * string specified in params.
355 * @q - Request queue that is associated with the scsi_device for
356 * which the parameters to be set.
357 * @params - parameters in the following format
358 * "no_of_params\0param1\0param2\0param3\0...\0"
359 * for example, string for 2 parameters with value 10 and 21
360 * is specified as "2\010\021\0".
361 */
362int scsi_dh_set_params(struct request_queue *q, const char *params)
363{
18ee70c9 364 struct scsi_device *sdev;
e959ed9a 365 int err = -SCSI_DH_NOSYS;
18ee70c9 366
e959ed9a
CH
367 sdev = get_sdev_from_queue(q);
368 if (!sdev)
18ee70c9 369 return err;
e959ed9a
CH
370
371 if (sdev->handler && sdev->handler->set_params)
372 err = sdev->handler->set_params(sdev, params);
18ee70c9
CS
373 put_device(&sdev->sdev_gendev);
374 return err;
375}
376EXPORT_SYMBOL_GPL(scsi_dh_set_params);
377
ae11b1b3 378/*
2a9ab40f 379 * scsi_dh_attach - Attach device handler
7e8a74b1
MS
380 * @q - Request queue that is associated with the scsi_device
381 * the handler should be attached to
ae11b1b3
HR
382 * @name - name of the handler to attach
383 */
384int scsi_dh_attach(struct request_queue *q, const char *name)
385{
ae11b1b3
HR
386 struct scsi_device *sdev;
387 struct scsi_device_handler *scsi_dh;
388 int err = 0;
389
e959ed9a
CH
390 sdev = get_sdev_from_queue(q);
391 if (!sdev)
392 return -ENODEV;
ae11b1b3 393
e959ed9a
CH
394 scsi_dh = scsi_dh_lookup(name);
395 if (!scsi_dh) {
396 err = -EINVAL;
397 goto out_put_device;
398 }
ae11b1b3 399
ee14c674
CH
400 if (sdev->handler) {
401 if (sdev->handler != scsi_dh)
1bab0de0
CH
402 err = -EBUSY;
403 goto out_put_device;
ae11b1b3 404 }
1bab0de0
CH
405
406 err = scsi_dh_handler_attach(sdev, scsi_dh);
407
408out_put_device:
ae11b1b3 409 put_device(&sdev->sdev_gendev);
1bab0de0 410 return err;
ae11b1b3 411}
1bab0de0 412EXPORT_SYMBOL_GPL(scsi_dh_attach);
ae11b1b3 413
7e8a74b1
MS
414/*
415 * scsi_dh_attached_handler_name - Get attached device handler's name
416 * @q - Request queue that is associated with the scsi_device
417 * that may have a device handler attached
418 * @gfp - the GFP mask used in the kmalloc() call when allocating memory
419 *
420 * Returns name of attached handler, NULL if no handler is attached.
421 * Caller must take care to free the returned string.
422 */
423const char *scsi_dh_attached_handler_name(struct request_queue *q, gfp_t gfp)
424{
7e8a74b1
MS
425 struct scsi_device *sdev;
426 const char *handler_name = NULL;
427
e959ed9a 428 sdev = get_sdev_from_queue(q);
7e8a74b1
MS
429 if (!sdev)
430 return NULL;
431
ee14c674
CH
432 if (sdev->handler)
433 handler_name = kstrdup(sdev->handler->name, gfp);
7e8a74b1
MS
434 put_device(&sdev->sdev_gendev);
435 return handler_name;
436}
437EXPORT_SYMBOL_GPL(scsi_dh_attached_handler_name);