Merge branch 'modsplit-Oct31_2011' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / device_handler / scsi_dh.c
blob23149b9e297c29ae82dff0330498f09423a0e557
1 /*
2 * SCSI device handler infrastruture.
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.
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.
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.
18 * Copyright IBM Corporation, 2007
19 * Authors:
20 * Chandra Seetharaman <sekharan@us.ibm.com>
21 * Mike Anderson <andmike@linux.vnet.ibm.com>
24 #include <linux/slab.h>
25 #include <linux/module.h>
26 #include <scsi/scsi_dh.h>
27 #include "../scsi_priv.h"
29 static DEFINE_SPINLOCK(list_lock);
30 static LIST_HEAD(scsi_dh_list);
31 static int scsi_dh_list_idx = 1;
33 static struct scsi_device_handler *get_device_handler(const char *name)
35 struct scsi_device_handler *tmp, *found = NULL;
37 spin_lock(&list_lock);
38 list_for_each_entry(tmp, &scsi_dh_list, list) {
39 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
40 found = tmp;
41 break;
44 spin_unlock(&list_lock);
45 return found;
48 static struct scsi_device_handler *get_device_handler_by_idx(int idx)
50 struct scsi_device_handler *tmp, *found = NULL;
52 spin_lock(&list_lock);
53 list_for_each_entry(tmp, &scsi_dh_list, list) {
54 if (tmp->idx == idx) {
55 found = tmp;
56 break;
59 spin_unlock(&list_lock);
60 return found;
64 * device_handler_match_function - Match a device handler to a device
65 * @sdev - SCSI device to be tested
67 * Tests @sdev against the match function of all registered device_handler.
68 * Returns the found device handler or NULL if not found.
70 static struct scsi_device_handler *
71 device_handler_match_function(struct scsi_device *sdev)
73 struct scsi_device_handler *tmp_dh, *found_dh = NULL;
75 spin_lock(&list_lock);
76 list_for_each_entry(tmp_dh, &scsi_dh_list, list) {
77 if (tmp_dh->match && tmp_dh->match(sdev)) {
78 found_dh = tmp_dh;
79 break;
82 spin_unlock(&list_lock);
83 return found_dh;
87 * device_handler_match_devlist - Match a device handler to a device
88 * @sdev - SCSI device to be tested
90 * Tests @sdev against all device_handler registered in the devlist.
91 * Returns the found device handler or NULL if not found.
93 static struct scsi_device_handler *
94 device_handler_match_devlist(struct scsi_device *sdev)
96 int idx;
98 idx = scsi_get_device_flags_keyed(sdev, sdev->vendor, sdev->model,
99 SCSI_DEVINFO_DH);
100 return get_device_handler_by_idx(idx);
104 * device_handler_match - Attach a device handler to a device
105 * @scsi_dh - The device handler to match against or NULL
106 * @sdev - SCSI device to be tested against @scsi_dh
108 * Tests @sdev against the device handler @scsi_dh or against
109 * all registered device_handler if @scsi_dh == NULL.
110 * Returns the found device handler or NULL if not found.
112 static struct scsi_device_handler *
113 device_handler_match(struct scsi_device_handler *scsi_dh,
114 struct scsi_device *sdev)
116 struct scsi_device_handler *found_dh;
118 found_dh = device_handler_match_function(sdev);
119 if (!found_dh)
120 found_dh = device_handler_match_devlist(sdev);
122 if (scsi_dh && found_dh != scsi_dh)
123 found_dh = NULL;
125 return found_dh;
129 * scsi_dh_handler_attach - Attach a device handler to a device
130 * @sdev - SCSI device the device handler should attach to
131 * @scsi_dh - The device handler to attach
133 static int scsi_dh_handler_attach(struct scsi_device *sdev,
134 struct scsi_device_handler *scsi_dh)
136 int err = 0;
138 if (sdev->scsi_dh_data) {
139 if (sdev->scsi_dh_data->scsi_dh != scsi_dh)
140 err = -EBUSY;
141 else
142 kref_get(&sdev->scsi_dh_data->kref);
143 } else if (scsi_dh->attach) {
144 err = scsi_dh->attach(sdev);
145 if (!err) {
146 kref_init(&sdev->scsi_dh_data->kref);
147 sdev->scsi_dh_data->sdev = sdev;
150 return err;
153 static void __detach_handler (struct kref *kref)
155 struct scsi_dh_data *scsi_dh_data = container_of(kref, struct scsi_dh_data, kref);
156 scsi_dh_data->scsi_dh->detach(scsi_dh_data->sdev);
160 * scsi_dh_handler_detach - Detach a device handler from a device
161 * @sdev - SCSI device the device handler should be detached from
162 * @scsi_dh - Device handler to be detached
164 * Detach from a device handler. If a device handler is specified,
165 * only detach if the currently attached handler matches @scsi_dh.
167 static void scsi_dh_handler_detach(struct scsi_device *sdev,
168 struct scsi_device_handler *scsi_dh)
170 if (!sdev->scsi_dh_data)
171 return;
173 if (scsi_dh && scsi_dh != sdev->scsi_dh_data->scsi_dh)
174 return;
176 if (!scsi_dh)
177 scsi_dh = sdev->scsi_dh_data->scsi_dh;
179 if (scsi_dh && scsi_dh->detach)
180 kref_put(&sdev->scsi_dh_data->kref, __detach_handler);
184 * Functions for sysfs attribute 'dh_state'
186 static ssize_t
187 store_dh_state(struct device *dev, struct device_attribute *attr,
188 const char *buf, size_t count)
190 struct scsi_device *sdev = to_scsi_device(dev);
191 struct scsi_device_handler *scsi_dh;
192 int err = -EINVAL;
194 if (sdev->sdev_state == SDEV_CANCEL ||
195 sdev->sdev_state == SDEV_DEL)
196 return -ENODEV;
198 if (!sdev->scsi_dh_data) {
200 * Attach to a device handler
202 if (!(scsi_dh = get_device_handler(buf)))
203 return err;
204 err = scsi_dh_handler_attach(sdev, scsi_dh);
205 } else {
206 scsi_dh = sdev->scsi_dh_data->scsi_dh;
207 if (!strncmp(buf, "detach", 6)) {
209 * Detach from a device handler
211 scsi_dh_handler_detach(sdev, scsi_dh);
212 err = 0;
213 } else if (!strncmp(buf, "activate", 8)) {
215 * Activate a device handler
217 if (scsi_dh->activate)
218 err = scsi_dh->activate(sdev, NULL, NULL);
219 else
220 err = 0;
224 return err<0?err:count;
227 static ssize_t
228 show_dh_state(struct device *dev, struct device_attribute *attr, char *buf)
230 struct scsi_device *sdev = to_scsi_device(dev);
232 if (!sdev->scsi_dh_data)
233 return snprintf(buf, 20, "detached\n");
235 return snprintf(buf, 20, "%s\n", sdev->scsi_dh_data->scsi_dh->name);
238 static struct device_attribute scsi_dh_state_attr =
239 __ATTR(dh_state, S_IRUGO | S_IWUSR, show_dh_state,
240 store_dh_state);
243 * scsi_dh_sysfs_attr_add - Callback for scsi_init_dh
245 static int scsi_dh_sysfs_attr_add(struct device *dev, void *data)
247 struct scsi_device *sdev;
248 int err;
250 if (!scsi_is_sdev_device(dev))
251 return 0;
253 sdev = to_scsi_device(dev);
255 err = device_create_file(&sdev->sdev_gendev,
256 &scsi_dh_state_attr);
258 return 0;
262 * scsi_dh_sysfs_attr_remove - Callback for scsi_exit_dh
264 static int scsi_dh_sysfs_attr_remove(struct device *dev, void *data)
266 struct scsi_device *sdev;
268 if (!scsi_is_sdev_device(dev))
269 return 0;
271 sdev = to_scsi_device(dev);
273 device_remove_file(&sdev->sdev_gendev,
274 &scsi_dh_state_attr);
276 return 0;
280 * scsi_dh_notifier - notifier chain callback
282 static int scsi_dh_notifier(struct notifier_block *nb,
283 unsigned long action, void *data)
285 struct device *dev = data;
286 struct scsi_device *sdev;
287 int err = 0;
288 struct scsi_device_handler *devinfo = NULL;
290 if (!scsi_is_sdev_device(dev))
291 return 0;
293 sdev = to_scsi_device(dev);
295 if (action == BUS_NOTIFY_ADD_DEVICE) {
296 err = device_create_file(dev, &scsi_dh_state_attr);
297 /* don't care about err */
298 devinfo = device_handler_match(NULL, sdev);
299 if (devinfo)
300 err = scsi_dh_handler_attach(sdev, devinfo);
301 } else if (action == BUS_NOTIFY_DEL_DEVICE) {
302 device_remove_file(dev, &scsi_dh_state_attr);
303 scsi_dh_handler_detach(sdev, NULL);
305 return err;
309 * scsi_dh_notifier_add - Callback for scsi_register_device_handler
311 static int scsi_dh_notifier_add(struct device *dev, void *data)
313 struct scsi_device_handler *scsi_dh = data;
314 struct scsi_device *sdev;
316 if (!scsi_is_sdev_device(dev))
317 return 0;
319 if (!get_device(dev))
320 return 0;
322 sdev = to_scsi_device(dev);
324 if (device_handler_match(scsi_dh, sdev))
325 scsi_dh_handler_attach(sdev, scsi_dh);
327 put_device(dev);
329 return 0;
333 * scsi_dh_notifier_remove - Callback for scsi_unregister_device_handler
335 static int scsi_dh_notifier_remove(struct device *dev, void *data)
337 struct scsi_device_handler *scsi_dh = data;
338 struct scsi_device *sdev;
340 if (!scsi_is_sdev_device(dev))
341 return 0;
343 if (!get_device(dev))
344 return 0;
346 sdev = to_scsi_device(dev);
348 scsi_dh_handler_detach(sdev, scsi_dh);
350 put_device(dev);
352 return 0;
356 * scsi_register_device_handler - register a device handler personality
357 * module.
358 * @scsi_dh - device handler to be registered.
360 * Returns 0 on success, -EBUSY if handler already registered.
362 int scsi_register_device_handler(struct scsi_device_handler *scsi_dh)
364 int i;
366 if (get_device_handler(scsi_dh->name))
367 return -EBUSY;
369 spin_lock(&list_lock);
370 scsi_dh->idx = scsi_dh_list_idx++;
371 list_add(&scsi_dh->list, &scsi_dh_list);
372 spin_unlock(&list_lock);
374 for (i = 0; scsi_dh->devlist && scsi_dh->devlist[i].vendor; i++) {
375 scsi_dev_info_list_add_keyed(0,
376 scsi_dh->devlist[i].vendor,
377 scsi_dh->devlist[i].model,
378 NULL,
379 scsi_dh->idx,
380 SCSI_DEVINFO_DH);
383 bus_for_each_dev(&scsi_bus_type, NULL, scsi_dh, scsi_dh_notifier_add);
384 printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name);
386 return SCSI_DH_OK;
388 EXPORT_SYMBOL_GPL(scsi_register_device_handler);
391 * scsi_unregister_device_handler - register a device handler personality
392 * module.
393 * @scsi_dh - device handler to be unregistered.
395 * Returns 0 on success, -ENODEV if handler not registered.
397 int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh)
399 int i;
401 if (!get_device_handler(scsi_dh->name))
402 return -ENODEV;
404 bus_for_each_dev(&scsi_bus_type, NULL, scsi_dh,
405 scsi_dh_notifier_remove);
407 for (i = 0; scsi_dh->devlist && scsi_dh->devlist[i].vendor; i++) {
408 scsi_dev_info_list_del_keyed(scsi_dh->devlist[i].vendor,
409 scsi_dh->devlist[i].model,
410 SCSI_DEVINFO_DH);
413 spin_lock(&list_lock);
414 list_del(&scsi_dh->list);
415 spin_unlock(&list_lock);
416 printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name);
418 return SCSI_DH_OK;
420 EXPORT_SYMBOL_GPL(scsi_unregister_device_handler);
423 * scsi_dh_activate - activate the path associated with the scsi_device
424 * corresponding to the given request queue.
425 * Returns immediately without waiting for activation to be completed.
426 * @q - Request queue that is associated with the scsi_device to be
427 * activated.
428 * @fn - Function to be called upon completion of the activation.
429 * Function fn is called with data (below) and the error code.
430 * Function fn may be called from the same calling context. So,
431 * do not hold the lock in the caller which may be needed in fn.
432 * @data - data passed to the function fn upon completion.
435 int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data)
437 int err = 0;
438 unsigned long flags;
439 struct scsi_device *sdev;
440 struct scsi_device_handler *scsi_dh = NULL;
441 struct device *dev = NULL;
443 spin_lock_irqsave(q->queue_lock, flags);
444 sdev = q->queuedata;
445 if (!sdev) {
446 spin_unlock_irqrestore(q->queue_lock, flags);
447 err = SCSI_DH_NOSYS;
448 if (fn)
449 fn(data, err);
450 return err;
453 if (sdev->scsi_dh_data)
454 scsi_dh = sdev->scsi_dh_data->scsi_dh;
455 dev = get_device(&sdev->sdev_gendev);
456 if (!scsi_dh || !dev ||
457 sdev->sdev_state == SDEV_CANCEL ||
458 sdev->sdev_state == SDEV_DEL)
459 err = SCSI_DH_NOSYS;
460 if (sdev->sdev_state == SDEV_OFFLINE)
461 err = SCSI_DH_DEV_OFFLINED;
462 spin_unlock_irqrestore(q->queue_lock, flags);
464 if (err) {
465 if (fn)
466 fn(data, err);
467 goto out;
470 if (scsi_dh->activate)
471 err = scsi_dh->activate(sdev, fn, data);
472 out:
473 put_device(dev);
474 return err;
476 EXPORT_SYMBOL_GPL(scsi_dh_activate);
479 * scsi_dh_set_params - set the parameters for the device as per the
480 * string specified in params.
481 * @q - Request queue that is associated with the scsi_device for
482 * which the parameters to be set.
483 * @params - parameters in the following format
484 * "no_of_params\0param1\0param2\0param3\0...\0"
485 * for example, string for 2 parameters with value 10 and 21
486 * is specified as "2\010\021\0".
488 int scsi_dh_set_params(struct request_queue *q, const char *params)
490 int err = -SCSI_DH_NOSYS;
491 unsigned long flags;
492 struct scsi_device *sdev;
493 struct scsi_device_handler *scsi_dh = NULL;
495 spin_lock_irqsave(q->queue_lock, flags);
496 sdev = q->queuedata;
497 if (sdev && sdev->scsi_dh_data)
498 scsi_dh = sdev->scsi_dh_data->scsi_dh;
499 if (scsi_dh && scsi_dh->set_params && get_device(&sdev->sdev_gendev))
500 err = 0;
501 spin_unlock_irqrestore(q->queue_lock, flags);
503 if (err)
504 return err;
505 err = scsi_dh->set_params(sdev, params);
506 put_device(&sdev->sdev_gendev);
507 return err;
509 EXPORT_SYMBOL_GPL(scsi_dh_set_params);
512 * scsi_dh_handler_exist - Return TRUE(1) if a device handler exists for
513 * the given name. FALSE(0) otherwise.
514 * @name - name of the device handler.
516 int scsi_dh_handler_exist(const char *name)
518 return (get_device_handler(name) != NULL);
520 EXPORT_SYMBOL_GPL(scsi_dh_handler_exist);
523 * scsi_dh_attach - Attach device handler
524 * @sdev - sdev the handler should be attached to
525 * @name - name of the handler to attach
527 int scsi_dh_attach(struct request_queue *q, const char *name)
529 unsigned long flags;
530 struct scsi_device *sdev;
531 struct scsi_device_handler *scsi_dh;
532 int err = 0;
534 scsi_dh = get_device_handler(name);
535 if (!scsi_dh)
536 return -EINVAL;
538 spin_lock_irqsave(q->queue_lock, flags);
539 sdev = q->queuedata;
540 if (!sdev || !get_device(&sdev->sdev_gendev))
541 err = -ENODEV;
542 spin_unlock_irqrestore(q->queue_lock, flags);
544 if (!err) {
545 err = scsi_dh_handler_attach(sdev, scsi_dh);
546 put_device(&sdev->sdev_gendev);
548 return err;
550 EXPORT_SYMBOL_GPL(scsi_dh_attach);
553 * scsi_dh_detach - Detach device handler
554 * @sdev - sdev the handler should be detached from
556 * This function will detach the device handler only
557 * if the sdev is not part of the internal list, ie
558 * if it has been attached manually.
560 void scsi_dh_detach(struct request_queue *q)
562 unsigned long flags;
563 struct scsi_device *sdev;
564 struct scsi_device_handler *scsi_dh = NULL;
566 spin_lock_irqsave(q->queue_lock, flags);
567 sdev = q->queuedata;
568 if (!sdev || !get_device(&sdev->sdev_gendev))
569 sdev = NULL;
570 spin_unlock_irqrestore(q->queue_lock, flags);
572 if (!sdev)
573 return;
575 if (sdev->scsi_dh_data) {
576 scsi_dh = sdev->scsi_dh_data->scsi_dh;
577 scsi_dh_handler_detach(sdev, scsi_dh);
579 put_device(&sdev->sdev_gendev);
581 EXPORT_SYMBOL_GPL(scsi_dh_detach);
583 static struct notifier_block scsi_dh_nb = {
584 .notifier_call = scsi_dh_notifier
587 static int __init scsi_dh_init(void)
589 int r;
591 r = scsi_dev_info_add_list(SCSI_DEVINFO_DH, "SCSI Device Handler");
592 if (r)
593 return r;
595 r = bus_register_notifier(&scsi_bus_type, &scsi_dh_nb);
597 if (!r)
598 bus_for_each_dev(&scsi_bus_type, NULL, NULL,
599 scsi_dh_sysfs_attr_add);
601 return r;
604 static void __exit scsi_dh_exit(void)
606 bus_for_each_dev(&scsi_bus_type, NULL, NULL,
607 scsi_dh_sysfs_attr_remove);
608 bus_unregister_notifier(&scsi_bus_type, &scsi_dh_nb);
609 scsi_dev_info_remove_list(SCSI_DEVINFO_DH);
612 module_init(scsi_dh_init);
613 module_exit(scsi_dh_exit);
615 MODULE_DESCRIPTION("SCSI device handler");
616 MODULE_AUTHOR("Chandra Seetharaman <sekharan@us.ibm.com>");
617 MODULE_LICENSE("GPL");