Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 2 | /* |
Bhaskar Chowdhury | ae98ddf0 | 2021-03-22 12:17:24 +0530 | [diff] [blame] | 3 | * SCSI device handler infrastructure. |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 4 | * |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 5 | * Copyright IBM Corporation, 2007 |
| 6 | * Authors: |
| 7 | * Chandra Seetharaman <sekharan@us.ibm.com> |
| 8 | * Mike Anderson <andmike@linux.vnet.ibm.com> |
| 9 | */ |
| 10 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Paul Gortmaker | acf3368f | 2011-05-27 09:47:43 -0400 | [diff] [blame] | 12 | #include <linux/module.h> |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 13 | #include <scsi/scsi_dh.h> |
Christoph Hellwig | daaa858 | 2015-08-27 14:16:56 +0200 | [diff] [blame] | 14 | #include "scsi_priv.h" |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 15 | |
| 16 | static DEFINE_SPINLOCK(list_lock); |
| 17 | static LIST_HEAD(scsi_dh_list); |
| 18 | |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 19 | struct scsi_dh_blist { |
| 20 | const char *vendor; |
| 21 | const char *model; |
| 22 | const char *driver; |
| 23 | }; |
| 24 | |
| 25 | static const struct scsi_dh_blist scsi_dh_blist[] = { |
Xose Vazquez Perez | 0ba43a8 | 2016-10-07 18:19:57 +0200 | [diff] [blame] | 26 | {"DGC", "RAID", "emc" }, |
| 27 | {"DGC", "DISK", "emc" }, |
| 28 | {"DGC", "VRAID", "emc" }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 29 | |
| 30 | {"COMPAQ", "MSA1000 VOLUME", "hp_sw" }, |
| 31 | {"COMPAQ", "HSV110", "hp_sw" }, |
| 32 | {"HP", "HSV100", "hp_sw"}, |
| 33 | {"DEC", "HSG80", "hp_sw"}, |
| 34 | |
| 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", }, |
Xose Vazquez Perez | 4b3aec2 | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 46 | {"IBM", "3542", "rdac", }, |
| 47 | {"IBM", "3552", "rdac", }, |
Xose Vazquez Perez | 37b37d2 | 2018-04-07 00:47:23 +0200 | [diff] [blame] | 48 | {"SGI", "TP9300", "rdac", }, |
| 49 | {"SGI", "TP9400", "rdac", }, |
| 50 | {"SGI", "TP9500", "rdac", }, |
| 51 | {"SGI", "TP9700", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 52 | {"SGI", "IS", "rdac", }, |
Xose Vazquez Perez | 4b3aec2 | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 53 | {"STK", "OPENstorage", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 54 | {"STK", "FLEXLINE 380", "rdac", }, |
Xose Vazquez Perez | 4b3aec2 | 2017-11-17 22:05:13 +0100 | [diff] [blame] | 55 | {"STK", "BladeCtlr", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 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", }, |
Xose Vazquez Perez | 1cb1d2c | 2019-03-30 15:43:31 +0100 | [diff] [blame] | 65 | {"LENOVO", "DE_Series", "rdac", }, |
Steve Schremmer | e094fd3 | 2020-07-07 17:07:22 +0000 | [diff] [blame] | 66 | {"FUJITSU", "ETERNUS_AHB", "rdac", }, |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 67 | {NULL, NULL, NULL }, |
| 68 | }; |
| 69 | |
| 70 | static const char * |
| 71 | scsi_dh_find_driver(struct scsi_device *sdev) |
| 72 | { |
| 73 | const struct scsi_dh_blist *b; |
| 74 | |
| 75 | if (scsi_device_tpgs(sdev)) |
| 76 | return "alua"; |
| 77 | |
| 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))) { |
| 81 | return b->driver; |
| 82 | } |
| 83 | } |
| 84 | return NULL; |
| 85 | } |
| 86 | |
| 87 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 88 | static struct scsi_device_handler *__scsi_dh_lookup(const char *name) |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 89 | { |
| 90 | struct scsi_device_handler *tmp, *found = NULL; |
| 91 | |
| 92 | spin_lock(&list_lock); |
| 93 | list_for_each_entry(tmp, &scsi_dh_list, list) { |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 94 | if (!strncmp(tmp->name, name, strlen(tmp->name))) { |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 95 | found = tmp; |
| 96 | break; |
| 97 | } |
| 98 | } |
| 99 | spin_unlock(&list_lock); |
| 100 | return found; |
| 101 | } |
| 102 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 103 | static struct scsi_device_handler *scsi_dh_lookup(const char *name) |
| 104 | { |
| 105 | struct scsi_device_handler *dh; |
| 106 | |
Johannes Thumshirn | 2ee5671 | 2018-03-23 14:37:05 +0100 | [diff] [blame] | 107 | if (!name || strlen(name) == 0) |
| 108 | return NULL; |
| 109 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 110 | dh = __scsi_dh_lookup(name); |
| 111 | if (!dh) { |
Paul Mackerras | 1378889 | 2015-09-26 10:19:15 +1000 | [diff] [blame] | 112 | request_module("scsi_dh_%s", name); |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 113 | dh = __scsi_dh_lookup(name); |
| 114 | } |
| 115 | |
| 116 | return dh; |
| 117 | } |
| 118 | |
Hannes Reinecke | 6c3633d | 2011-08-24 10:51:15 +0200 | [diff] [blame] | 119 | /* |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 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 |
| 123 | */ |
| 124 | static int scsi_dh_handler_attach(struct scsi_device *sdev, |
| 125 | struct scsi_device_handler *scsi_dh) |
| 126 | { |
Hannes Reinecke | 2a8f7a0 | 2017-09-20 09:18:51 +0200 | [diff] [blame] | 127 | int error, ret = 0; |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 128 | |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 129 | if (!try_module_get(scsi_dh->module)) |
| 130 | return -EINVAL; |
Christoph Hellwig | 27c888f | 2014-09-13 19:41:16 -0700 | [diff] [blame] | 131 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 132 | error = scsi_dh->attach(sdev); |
Hannes Reinecke | 2a8f7a0 | 2017-09-20 09:18:51 +0200 | [diff] [blame] | 133 | if (error != SCSI_DH_OK) { |
| 134 | switch (error) { |
| 135 | case SCSI_DH_NOMEM: |
| 136 | ret = -ENOMEM; |
| 137 | break; |
| 138 | case SCSI_DH_RES_TEMP_UNAVAIL: |
| 139 | ret = -EAGAIN; |
| 140 | break; |
Hannes Reinecke | 2930f81 | 2017-09-20 09:18:52 +0200 | [diff] [blame] | 141 | case SCSI_DH_DEV_UNSUPP: |
| 142 | case SCSI_DH_NOSYS: |
| 143 | ret = -ENODEV; |
| 144 | break; |
Hannes Reinecke | 2a8f7a0 | 2017-09-20 09:18:51 +0200 | [diff] [blame] | 145 | default: |
| 146 | ret = -EINVAL; |
| 147 | break; |
| 148 | } |
Hannes Reinecke | 2930f81 | 2017-09-20 09:18:52 +0200 | [diff] [blame] | 149 | if (ret != -ENODEV) |
| 150 | sdev_printk(KERN_ERR, sdev, "%s: Attach failed (%d)\n", |
| 151 | scsi_dh->name, error); |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 152 | module_put(scsi_dh->module); |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 153 | } else |
| 154 | sdev->handler = scsi_dh; |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 155 | |
Hannes Reinecke | 2a8f7a0 | 2017-09-20 09:18:51 +0200 | [diff] [blame] | 156 | return ret; |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 157 | } |
| 158 | |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 159 | /* |
| 160 | * scsi_dh_handler_detach - Detach a device handler from a device |
| 161 | * @sdev - SCSI device the device handler should be detached from |
| 162 | */ |
| 163 | static void scsi_dh_handler_detach(struct scsi_device *sdev) |
Chandra Seetharaman | 6c10db7 | 2009-06-26 19:30:06 -0700 | [diff] [blame] | 164 | { |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 165 | sdev->handler->detach(sdev); |
| 166 | sdev_printk(KERN_NOTICE, sdev, "%s: Detached\n", sdev->handler->name); |
| 167 | module_put(sdev->handler->module); |
Chandra Seetharaman | 6c10db7 | 2009-06-26 19:30:06 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Hannes Reinecke | 2930f81 | 2017-09-20 09:18:52 +0200 | [diff] [blame] | 170 | void scsi_dh_add_device(struct scsi_device *sdev) |
Hannes Reinecke | 4c05ae5 | 2008-07-17 16:52:57 -0700 | [diff] [blame] | 171 | { |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 172 | struct scsi_device_handler *devinfo = NULL; |
| 173 | const char *drv; |
Hannes Reinecke | 4c05ae5 | 2008-07-17 16:52:57 -0700 | [diff] [blame] | 174 | |
Christoph Hellwig | d95dbff | 2015-08-27 14:16:58 +0200 | [diff] [blame] | 175 | drv = scsi_dh_find_driver(sdev); |
| 176 | if (drv) |
Christoph Hellwig | d6a32b9 | 2015-10-08 09:25:32 +0100 | [diff] [blame] | 177 | devinfo = __scsi_dh_lookup(drv); |
Hannes Reinecke | 2930f81 | 2017-09-20 09:18:52 +0200 | [diff] [blame] | 178 | /* |
| 179 | * device_handler is optional, so ignore errors |
| 180 | * from scsi_dh_handler_attach() |
| 181 | */ |
Christoph Hellwig | 086b91d | 2015-08-27 14:16:57 +0200 | [diff] [blame] | 182 | if (devinfo) |
Hannes Reinecke | 2930f81 | 2017-09-20 09:18:52 +0200 | [diff] [blame] | 183 | (void)scsi_dh_handler_attach(sdev, devinfo); |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 184 | } |
| 185 | |
Junichi Nomura | 23695e4 | 2015-10-06 04:32:57 +0000 | [diff] [blame] | 186 | void scsi_dh_release_device(struct scsi_device *sdev) |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 187 | { |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 188 | if (sdev->handler) |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 189 | scsi_dh_handler_detach(sdev); |
Junichi Nomura | 23695e4 | 2015-10-06 04:32:57 +0000 | [diff] [blame] | 190 | } |
| 191 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 192 | /* |
| 193 | * scsi_register_device_handler - register a device handler personality |
| 194 | * module. |
| 195 | * @scsi_dh - device handler to be registered. |
| 196 | * |
| 197 | * Returns 0 on success, -EBUSY if handler already registered. |
| 198 | */ |
| 199 | int scsi_register_device_handler(struct scsi_device_handler *scsi_dh) |
| 200 | { |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 201 | if (__scsi_dh_lookup(scsi_dh->name)) |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 202 | return -EBUSY; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 203 | |
Christoph Hellwig | 1f12ffa | 2014-09-13 20:08:44 -0700 | [diff] [blame] | 204 | if (!scsi_dh->attach || !scsi_dh->detach) |
| 205 | return -EINVAL; |
| 206 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 207 | spin_lock(&list_lock); |
| 208 | list_add(&scsi_dh->list, &scsi_dh_list); |
| 209 | spin_unlock(&list_lock); |
Peter Jones | 940d7fa | 2011-01-06 15:38:24 -0500 | [diff] [blame] | 210 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 211 | printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 212 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 213 | return SCSI_DH_OK; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 214 | } |
| 215 | EXPORT_SYMBOL_GPL(scsi_register_device_handler); |
| 216 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 217 | /* |
| 218 | * scsi_unregister_device_handler - register a device handler personality |
| 219 | * module. |
| 220 | * @scsi_dh - device handler to be unregistered. |
| 221 | * |
| 222 | * Returns 0 on success, -ENODEV if handler not registered. |
| 223 | */ |
| 224 | int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh) |
| 225 | { |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 226 | if (!__scsi_dh_lookup(scsi_dh->name)) |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 227 | return -ENODEV; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 228 | |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 229 | spin_lock(&list_lock); |
| 230 | list_del(&scsi_dh->list); |
| 231 | spin_unlock(&list_lock); |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 232 | printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 233 | |
Hannes Reinecke | 765cbc6 | 2008-07-17 16:52:51 -0700 | [diff] [blame] | 234 | return SCSI_DH_OK; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 235 | } |
| 236 | EXPORT_SYMBOL_GPL(scsi_unregister_device_handler); |
| 237 | |
| 238 | /* |
| 239 | * scsi_dh_activate - activate the path associated with the scsi_device |
| 240 | * corresponding to the given request queue. |
Chandra Seetharaman | 3ae31f6 | 2009-10-21 09:22:46 -0700 | [diff] [blame] | 241 | * Returns immediately without waiting for activation to be completed. |
| 242 | * @q - Request queue that is associated with the scsi_device to be |
| 243 | * activated. |
| 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. |
| 249 | * |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 250 | */ |
Chandra Seetharaman | 3ae31f6 | 2009-10-21 09:22:46 -0700 | [diff] [blame] | 251 | 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] | 252 | { |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 253 | struct scsi_device *sdev; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 254 | int err = SCSI_DH_NOSYS; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 255 | |
Hannes Reinecke | 857de6e | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 256 | sdev = scsi_device_from_queue(q); |
Moger, Babu | a18a920 | 2011-10-26 14:29:38 -0400 | [diff] [blame] | 257 | if (!sdev) { |
Moger, Babu | a18a920 | 2011-10-26 14:29:38 -0400 | [diff] [blame] | 258 | if (fn) |
| 259 | fn(data, err); |
| 260 | return err; |
| 261 | } |
| 262 | |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 263 | if (!sdev->handler) |
| 264 | goto out_fn; |
Hannes Reinecke | 710105f | 2015-08-27 14:17:02 +0200 | [diff] [blame] | 265 | err = SCSI_DH_NOTCONN; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 266 | if (sdev->sdev_state == SDEV_CANCEL || |
Menny Hamburger | db42231 | 2010-12-16 14:57:07 -0500 | [diff] [blame] | 267 | sdev->sdev_state == SDEV_DEL) |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 268 | goto out_fn; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 269 | |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 270 | err = SCSI_DH_DEV_OFFLINED; |
| 271 | if (sdev->sdev_state == SDEV_OFFLINE) |
| 272 | goto out_fn; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 273 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 274 | if (sdev->handler->activate) |
| 275 | err = sdev->handler->activate(sdev, fn, data); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 276 | |
| 277 | out_put_device: |
| 278 | put_device(&sdev->sdev_gendev); |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 279 | return err; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 280 | |
| 281 | out_fn: |
| 282 | if (fn) |
| 283 | fn(data, err); |
| 284 | goto out_put_device; |
Chandra Seetharaman | a6a8d9f | 2008-05-01 14:49:46 -0700 | [diff] [blame] | 285 | } |
| 286 | EXPORT_SYMBOL_GPL(scsi_dh_activate); |
| 287 | |
| 288 | /* |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 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". |
| 297 | */ |
| 298 | int scsi_dh_set_params(struct request_queue *q, const char *params) |
| 299 | { |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 300 | struct scsi_device *sdev; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 301 | int err = -SCSI_DH_NOSYS; |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 302 | |
Hannes Reinecke | 857de6e | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 303 | sdev = scsi_device_from_queue(q); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 304 | if (!sdev) |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 305 | return err; |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 306 | |
| 307 | if (sdev->handler && sdev->handler->set_params) |
| 308 | err = sdev->handler->set_params(sdev, params); |
Chandra Seetharaman | 18ee70c | 2009-08-03 12:42:33 -0700 | [diff] [blame] | 309 | put_device(&sdev->sdev_gendev); |
| 310 | return err; |
| 311 | } |
| 312 | EXPORT_SYMBOL_GPL(scsi_dh_set_params); |
| 313 | |
| 314 | /* |
Hannes Reinecke | 2a9ab40 | 2011-08-24 10:51:14 +0200 | [diff] [blame] | 315 | * scsi_dh_attach - Attach device handler |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 316 | * @q - Request queue that is associated with the scsi_device |
| 317 | * the handler should be attached to |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 318 | * @name - name of the handler to attach |
| 319 | */ |
| 320 | int scsi_dh_attach(struct request_queue *q, const char *name) |
| 321 | { |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 322 | struct scsi_device *sdev; |
| 323 | struct scsi_device_handler *scsi_dh; |
| 324 | int err = 0; |
| 325 | |
Hannes Reinecke | 857de6e | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 326 | sdev = scsi_device_from_queue(q); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 327 | if (!sdev) |
| 328 | return -ENODEV; |
| 329 | |
Christoph Hellwig | 566079c | 2015-08-27 14:16:55 +0200 | [diff] [blame] | 330 | scsi_dh = scsi_dh_lookup(name); |
Christoph Hellwig | e959ed9 | 2015-08-27 14:17:00 +0200 | [diff] [blame] | 331 | if (!scsi_dh) { |
| 332 | err = -EINVAL; |
| 333 | goto out_put_device; |
| 334 | } |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 335 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 336 | if (sdev->handler) { |
| 337 | if (sdev->handler != scsi_dh) |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 338 | err = -EBUSY; |
| 339 | goto out_put_device; |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 340 | } |
Christoph Hellwig | 1bab0de | 2015-08-27 14:16:54 +0200 | [diff] [blame] | 341 | |
| 342 | err = scsi_dh_handler_attach(sdev, scsi_dh); |
| 343 | |
| 344 | out_put_device: |
| 345 | put_device(&sdev->sdev_gendev); |
Hannes Reinecke | ae11b1b | 2008-07-17 17:49:02 -0700 | [diff] [blame] | 346 | return err; |
| 347 | } |
| 348 | EXPORT_SYMBOL_GPL(scsi_dh_attach); |
| 349 | |
| 350 | /* |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 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 |
| 355 | * |
| 356 | * Returns name of attached handler, NULL if no handler is attached. |
| 357 | * Caller must take care to free the returned string. |
| 358 | */ |
| 359 | const char *scsi_dh_attached_handler_name(struct request_queue *q, gfp_t gfp) |
| 360 | { |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 361 | struct scsi_device *sdev; |
| 362 | const char *handler_name = NULL; |
| 363 | |
Hannes Reinecke | 857de6e | 2017-02-17 09:02:45 +0100 | [diff] [blame] | 364 | sdev = scsi_device_from_queue(q); |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 365 | if (!sdev) |
| 366 | return NULL; |
| 367 | |
Christoph Hellwig | ee14c67 | 2015-08-27 14:16:59 +0200 | [diff] [blame] | 368 | if (sdev->handler) |
| 369 | handler_name = kstrdup(sdev->handler->name, gfp); |
Mike Snitzer | 7e8a74b | 2012-06-26 14:32:03 -0400 | [diff] [blame] | 370 | put_device(&sdev->sdev_gendev); |
| 371 | return handler_name; |
| 372 | } |
| 373 | EXPORT_SYMBOL_GPL(scsi_dh_attached_handler_name); |