Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 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 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 24 | #include <linux/slab.h> |
Paul Gortmaker | acf3368f | 2011-05-27 09:47:43 -0400 | [diff] [blame] | 25 | #include <linux/module.h> |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 26 | #include <scsi/scsi_dh.h> |
Christoph Hellwig | daaa858 | 2015-08-27 14:16:56 +0200 | [diff] [blame] | 27 | #include "scsi_priv.h" |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 28 | |
| 29 | static DEFINE_SPINLOCK(list_lock); |
| 30 | static LIST_HEAD(scsi_dh_list); |
| 31 | |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 32 | struct scsi_dh_blist { |
| 33 | const char *vendor; |
| 34 | const char *model; |
| 35 | const char *driver; |
| 36 | }; |
| 37 | |
| 38 | static const struct scsi_dh_blist scsi_dh_blist[] = { |
Xose Vazquez Perez | 0ba43a8 | 2016-10-07 18:19:57 +0200 | [diff] [blame] | 39 | {"DGC", "RAID", "emc" }, |
| 40 | {"DGC", "DISK", "emc" }, |
| 41 | {"DGC", "VRAID", "emc" }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 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", }, |
Xose Vazquez Perez | 1b2981c | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 59 | {"IBM", "3542", "rdac", }, |
| 60 | {"IBM", "3552", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 61 | {"SGI", "TP9", "rdac", }, |
| 62 | {"SGI", "IS", "rdac", }, |
Xose Vazquez Perez | 1b2981c | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 63 | {"STK", "OPENstorage", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 64 | {"STK", "FLEXLINE 380", "rdac", }, |
Xose Vazquez Perez | 1b2981c | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 65 | {"STK", "BladeCtlr", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 66 | {"SUN", "CSM", "rdac", }, |
| 67 | {"SUN", "LCSM100", "rdac", }, |
| 68 | {"SUN", "STK6580_6780", "rdac", }, |
| 69 | {"SUN", "SUN_6180", "rdac", }, |
| 70 | {"SUN", "ArrayStorage", "rdac", }, |
| 71 | {"DELL", "MD3", "rdac", }, |
| 72 | {"NETAPP", "INF-01-00", "rdac", }, |
| 73 | {"LSI", "INF-01-00", "rdac", }, |
| 74 | {"ENGENIO", "INF-01-00", "rdac", }, |
| 75 | {NULL, NULL, NULL }, |
| 76 | }; |
| 77 | |
| 78 | static const char * |
| 79 | scsi_dh_find_driver(struct scsi_device *sdev) |
| 80 | { |
| 81 | const struct scsi_dh_blist *b; |
| 82 | |
| 83 | if (scsi_device_tpgs(sdev)) |
| 84 | return "alua"; |
| 85 | |
| 86 | for (b = scsi_dh_blist; b->vendor; b++) { |
| 87 | if (!strncmp(sdev->vendor, b->vendor, strlen(b->vendor)) && |
| 88 | !strncmp(sdev->model, b->model, strlen(b->model))) { |
| 89 | return b->driver; |
| 90 | } |
| 91 | } |
| 92 | return NULL; |
| 93 | } |
| 94 | |
| 95 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 96 | static struct scsi_device_handler *__scsi_dh_lookup(const char *name) |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 97 | { |
| 98 | struct scsi_device_handler *tmp, *found = NULL; |
| 99 | |
| 100 | spin_lock(&list_lock); |
| 101 | list_for_each_entry(tmp, &scsi_dh_list, list) { |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 102 | if (!strncmp(tmp->name, name, strlen(tmp->name))) { |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 103 | found = tmp; |
| 104 | break; |
| 105 | } |
| 106 | } |
| 107 | spin_unlock(&list_lock); |
| 108 | return found; |
| 109 | } |
| 110 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 111 | static struct scsi_device_handler *scsi_dh_lookup(const char *name) |
| 112 | { |
| 113 | struct scsi_device_handler *dh; |
| 114 | |
| 115 | dh = __scsi_dh_lookup(name); |
| 116 | if (!dh) { |
Paul Mackerras | 1378889 | 2015-09-26 10:19:15 +1000 | [diff] [blame] | 117 | request_module("scsi_dh_%s", name); |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 118 | dh = __scsi_dh_lookup(name); |
| 119 | } |
| 120 | |
| 121 | return dh; |
| 122 | } |
| 123 | |
Hannes Reinecke | 6c3633d | 2011-08-24 10:51:15 +0200 | [diff] [blame] | 124 | /* |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 125 | * scsi_dh_handler_attach - Attach a device handler to a device |
| 126 | * @sdev - SCSI device the device handler should attach to |
| 127 | * @scsi_dh - The device handler to attach |
| 128 | */ |
| 129 | static int scsi_dh_handler_attach(struct scsi_device *sdev, |
| 130 | struct scsi_device_handler *scsi_dh) |
| 131 | { |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 132 | int error; |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 133 | |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 134 | if (!try_module_get(scsi_dh->module)) |
| 135 | return -EINVAL; |
Christoph Hellwig | 27c888f | 2014-09-13 19:41:16 -0700 | [diff] [blame] | 136 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 137 | error = scsi_dh->attach(sdev); |
| 138 | if (error) { |
| 139 | sdev_printk(KERN_ERR, sdev, "%s: Attach failed (%d)\n", |
| 140 | scsi_dh->name, error); |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 141 | module_put(scsi_dh->module); |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 142 | } else |
| 143 | sdev->handler = scsi_dh; |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 144 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 145 | return error; |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 148 | /* |
| 149 | * scsi_dh_handler_detach - Detach a device handler from a device |
| 150 | * @sdev - SCSI device the device handler should be detached from |
| 151 | */ |
| 152 | static void scsi_dh_handler_detach(struct scsi_device *sdev) |
Chandra Seetharaman | 6c10db7 | 2009-06-26 19:30:06 -0700 | [diff] [blame] | 153 | { |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 154 | sdev->handler->detach(sdev); |
| 155 | sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name); |
| 156 | module_put(sdev->handler->module); |
Chandra Seetharaman | 6c10db7 | 2009-06-26 19:30:06 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Christoph Hellwig | 086b91d | 2015-08-27 14:16:57 +0200 | [diff] [blame] | 159 | int scsi_dh_add_device(struct scsi_device *sdev) |
Hannes Reinecke | 4c05ae5 | 2008-07-17 16:52:57 -0700 | [diff] [blame] | 160 | { |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 161 | struct scsi_device_handler *devinfo = NULL; |
| 162 | const char *drv; |
Hannes Reinecke | 41f95dd | 2015-12-01 10:16:41 +0100 | [diff] [blame] | 163 | int err = 0; |
Hannes Reinecke | 4c05ae5 | 2008-07-17 16:52:57 -0700 | [diff] [blame] | 164 | |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 165 | drv = scsi_dh_find_driver(sdev); |
| 166 | if (drv) |
Christoph Hellwig | d6a32b9 | 2015-10-08 09:25:32 +0100 | [diff] [blame] | 167 | devinfo = __scsi_dh_lookup(drv); |
Christoph Hellwig | 086b91d | 2015-08-27 14:16:57 +0200 | [diff] [blame] | 168 | if (devinfo) |
| 169 | err = scsi_dh_handler_attach(sdev, devinfo); |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 170 | return err; |
| 171 | } |
| 172 | |
Junichi Nomura | 23695e4 | 2015-10-06 04:32:57 +0000 | [diff] [blame] | 173 | void scsi_dh_release_device(struct scsi_device *sdev) |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 174 | { |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 175 | if (sdev->handler) |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 176 | scsi_dh_handler_detach(sdev); |
Junichi Nomura | 23695e4 | 2015-10-06 04:32:57 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 179 | /* |
| 180 | * scsi_register_device_handler - register a device handler personality |
| 181 | * module. |
| 182 | * @scsi_dh - device handler to be registered. |
| 183 | * |
| 184 | * Returns 0 on success, -EBUSY if handler already registered. |
| 185 | */ |
| 186 | int scsi_register_device_handler(struct scsi_device_handler *scsi_dh) |
| 187 | { |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 188 | if (__scsi_dh_lookup(scsi_dh->name)) |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 189 | return -EBUSY; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 190 | |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 191 | if (!scsi_dh->attach || !scsi_dh->detach) |
| 192 | return -EINVAL; |
| 193 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 194 | spin_lock(&list_lock); |
| 195 | list_add(&scsi_dh->list, &scsi_dh_list); |
| 196 | spin_unlock(&list_lock); |
Peter Jones | 940d7fa | 2011-01-06 15:38:24 -0500 | [diff] [blame] | 197 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 198 | printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 199 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 200 | return SCSI_DH_OK; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 201 | } |
| 202 | EXPORT_SYMBOL_GPL(scsi_register_device_handler); |
| 203 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 204 | /* |
| 205 | * scsi_unregister_device_handler - register a device handler personality |
| 206 | * module. |
| 207 | * @scsi_dh - device handler to be unregistered. |
| 208 | * |
| 209 | * Returns 0 on success, -ENODEV if handler not registered. |
| 210 | */ |
| 211 | int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh) |
| 212 | { |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 213 | if (!__scsi_dh_lookup(scsi_dh->name)) |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 214 | return -ENODEV; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 215 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 216 | spin_lock(&list_lock); |
| 217 | list_del(&scsi_dh->list); |
| 218 | spin_unlock(&list_lock); |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 219 | printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 220 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 221 | return SCSI_DH_OK; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 222 | } |
| 223 | EXPORT_SYMBOL_GPL(scsi_unregister_device_handler); |
| 224 | |
| 225 | /* |
| 226 | * scsi_dh_activate - activate the path associated with the scsi_device |
| 227 | * corresponding to the given request queue. |
Chandra Seetharaman | 3ae31f6 | 2009-10-21 09:22:46 -0700 | [diff] [blame] | 228 | * Returns immediately without waiting for activation to be completed. |
| 229 | * @q - Request queue that is associated with the scsi_device to be |
| 230 | * activated. |
| 231 | * @fn - Function to be called upon completion of the activation. |
| 232 | * Function fn is called with data (below) and the error code. |
| 233 | * Function fn may be called from the same calling context. So, |
| 234 | * do not hold the lock in the caller which may be needed in fn. |
| 235 | * @data - data passed to the function fn upon completion. |
| 236 | * |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 237 | */ |
Chandra Seetharaman | 3ae31f6 | 2009-10-21 09:22:46 -0700 | [diff] [blame] | 238 | int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data) |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 239 | { |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 240 | struct scsi_device *sdev; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 241 | int err = SCSI_DH_NOSYS; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 242 | |
Hannes Reinecke | e9dc833 | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 243 | sdev = scsi_device_from_queue(q); |
Moger, Babu | a18a920 | 2011-10-26 14:29:38 -0400 | [diff] [blame] | 244 | if (!sdev) { |
Moger, Babu | a18a920 | 2011-10-26 14:29:38 -0400 | [diff] [blame] | 245 | if (fn) |
| 246 | fn(data, err); |
| 247 | return err; |
| 248 | } |
| 249 | |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 250 | if (!sdev->handler) |
| 251 | goto out_fn; |
Hannes Reinecke | 710105f | 2015-08-27 14:17:02 +0200 | [diff] [blame] | 252 | err = SCSI_DH_NOTCONN; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 253 | if (sdev->sdev_state == SDEV_CANCEL || |
Menny Hamburger | db42231 | 2010-12-16 14:57:07 -0500 | [diff] [blame] | 254 | sdev->sdev_state == SDEV_DEL) |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 255 | goto out_fn; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 256 | |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 257 | err = SCSI_DH_DEV_OFFLINED; |
| 258 | if (sdev->sdev_state == SDEV_OFFLINE) |
| 259 | goto out_fn; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 260 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 261 | if (sdev->handler->activate) |
| 262 | err = sdev->handler->activate(sdev, fn, data); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 263 | |
| 264 | out_put_device: |
| 265 | put_device(&sdev->sdev_gendev); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 266 | return err; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 267 | |
| 268 | out_fn: |
| 269 | if (fn) |
| 270 | fn(data, err); |
| 271 | goto out_put_device; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 272 | } |
| 273 | EXPORT_SYMBOL_GPL(scsi_dh_activate); |
| 274 | |
| 275 | /* |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 276 | * scsi_dh_set_params - set the parameters for the device as per the |
| 277 | * string specified in params. |
| 278 | * @q - Request queue that is associated with the scsi_device for |
| 279 | * which the parameters to be set. |
| 280 | * @params - parameters in the following format |
| 281 | * "no_of_params\0param1\0param2\0param3\0...\0" |
| 282 | * for example, string for 2 parameters with value 10 and 21 |
| 283 | * is specified as "2\010\021\0". |
| 284 | */ |
| 285 | int scsi_dh_set_params(struct request_queue *q, const char *params) |
| 286 | { |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 287 | struct scsi_device *sdev; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 288 | int err = -SCSI_DH_NOSYS; |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 289 | |
Hannes Reinecke | e9dc833 | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 290 | sdev = scsi_device_from_queue(q); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 291 | if (!sdev) |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 292 | return err; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 293 | |
| 294 | if (sdev->handler && sdev->handler->set_params) |
| 295 | err = sdev->handler->set_params(sdev, params); |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 296 | put_device(&sdev->sdev_gendev); |
| 297 | return err; |
| 298 | } |
| 299 | EXPORT_SYMBOL_GPL(scsi_dh_set_params); |
| 300 | |
| 301 | /* |
Hannes Reinecke | 2a9ab40 | 2011-08-24 10:51:14 +0200 | [diff] [blame] | 302 | * scsi_dh_attach - Attach device handler |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 303 | * @q - Request queue that is associated with the scsi_device |
| 304 | * the handler should be attached to |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 305 | * @name - name of the handler to attach |
| 306 | */ |
| 307 | int scsi_dh_attach(struct request_queue *q, const char *name) |
| 308 | { |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 309 | struct scsi_device *sdev; |
| 310 | struct scsi_device_handler *scsi_dh; |
| 311 | int err = 0; |
| 312 | |
Hannes Reinecke | e9dc833 | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 313 | sdev = scsi_device_from_queue(q); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 314 | if (!sdev) |
| 315 | return -ENODEV; |
| 316 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 317 | scsi_dh = scsi_dh_lookup(name); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 318 | if (!scsi_dh) { |
| 319 | err = -EINVAL; |
| 320 | goto out_put_device; |
| 321 | } |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 322 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 323 | if (sdev->handler) { |
| 324 | if (sdev->handler != scsi_dh) |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 325 | err = -EBUSY; |
| 326 | goto out_put_device; |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 327 | } |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 328 | |
| 329 | err = scsi_dh_handler_attach(sdev, scsi_dh); |
| 330 | |
| 331 | out_put_device: |
| 332 | put_device(&sdev->sdev_gendev); |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 333 | return err; |
| 334 | } |
| 335 | EXPORT_SYMBOL_GPL(scsi_dh_attach); |
| 336 | |
| 337 | /* |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 338 | * scsi_dh_attached_handler_name - Get attached device handler's name |
| 339 | * @q - Request queue that is associated with the scsi_device |
| 340 | * that may have a device handler attached |
| 341 | * @gfp - the GFP mask used in the kmalloc() call when allocating memory |
| 342 | * |
| 343 | * Returns name of attached handler, NULL if no handler is attached. |
| 344 | * Caller must take care to free the returned string. |
| 345 | */ |
| 346 | const char *scsi_dh_attached_handler_name(struct request_queue *q, gfp_t gfp) |
| 347 | { |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 348 | struct scsi_device *sdev; |
| 349 | const char *handler_name = NULL; |
| 350 | |
Hannes Reinecke | e9dc833 | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 351 | sdev = scsi_device_from_queue(q); |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 352 | if (!sdev) |
| 353 | return NULL; |
| 354 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 355 | if (sdev->handler) |
| 356 | handler_name = kstrdup(sdev->handler->name, gfp); |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 357 | put_device(&sdev->sdev_gendev); |
| 358 | return handler_name; |
| 359 | } |
| 360 | EXPORT_SYMBOL_GPL(scsi_dh_attached_handler_name); |