Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 2 | * This file is part of the zfcp device driver for |
| 3 | * FCP adapters for IBM System z9 and zSeries. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 5 | * (C) Copyright IBM Corp. 2002, 2006 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2, or (at your option) |
| 10 | * any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
| 21 | |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 22 | /* |
| 23 | * Driver authors: |
| 24 | * Martin Peschke (originator of the driver) |
| 25 | * Raimund Schroeder |
| 26 | * Aron Zeh |
| 27 | * Wolfgang Taphorn |
| 28 | * Stefan Bader |
| 29 | * Heiko Carstens (kernel 2.6 port of the driver) |
| 30 | * Andreas Herrmann |
| 31 | * Maxim Shchetynin |
| 32 | * Volker Sameske |
| 33 | * Ralph Wuerthner |
| 34 | */ |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include "zfcp_ext.h" |
| 37 | |
| 38 | /* accumulated log level (module parameter) */ |
| 39 | static u32 loglevel = ZFCP_LOG_LEVEL_DEFAULTS; |
| 40 | static char *device; |
| 41 | /*********************** FUNCTION PROTOTYPES *********************************/ |
| 42 | |
| 43 | /* written against the module interface */ |
| 44 | static int __init zfcp_module_init(void); |
| 45 | |
| 46 | /* FCP related */ |
| 47 | static void zfcp_ns_gid_pn_handler(unsigned long); |
| 48 | |
| 49 | /* miscellaneous */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 50 | static int zfcp_sg_list_alloc(struct zfcp_sg_list *, size_t); |
| 51 | static void zfcp_sg_list_free(struct zfcp_sg_list *); |
| 52 | static int zfcp_sg_list_copy_from_user(struct zfcp_sg_list *, |
| 53 | void __user *, size_t); |
| 54 | static int zfcp_sg_list_copy_to_user(void __user *, |
| 55 | struct zfcp_sg_list *, size_t); |
Andreas Herrmann | bd6ae2f | 2005-04-21 16:14:31 -0400 | [diff] [blame] | 56 | static long zfcp_cfdc_dev_ioctl(struct file *, unsigned int, unsigned long); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | #define ZFCP_CFDC_IOC_MAGIC 0xDD |
| 59 | #define ZFCP_CFDC_IOC \ |
| 60 | _IOWR(ZFCP_CFDC_IOC_MAGIC, 0, struct zfcp_cfdc_sense_data) |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Arjan van de Ven | d54b1fd | 2007-02-12 00:55:34 -0800 | [diff] [blame] | 63 | static const struct file_operations zfcp_cfdc_fops = { |
| e183b06 | 2005-04-02 13:57:17 -0600 | [diff] [blame] | 64 | .unlocked_ioctl = zfcp_cfdc_dev_ioctl, |
| 65 | #ifdef CONFIG_COMPAT |
| 66 | .compat_ioctl = zfcp_cfdc_dev_ioctl |
| 67 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | static struct miscdevice zfcp_cfdc_misc = { |
| 71 | .minor = ZFCP_CFDC_DEV_MINOR, |
| 72 | .name = ZFCP_CFDC_DEV_NAME, |
| 73 | .fops = &zfcp_cfdc_fops |
| 74 | }; |
| 75 | |
| 76 | /*********************** KERNEL/MODULE PARAMETERS ***************************/ |
| 77 | |
| 78 | /* declare driver module init/cleanup functions */ |
| 79 | module_init(zfcp_module_init); |
| 80 | |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 81 | MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | MODULE_DESCRIPTION |
Andreas Herrmann | 4a9d2d8 | 2006-05-22 18:14:08 +0200 | [diff] [blame] | 83 | ("FCP (SCSI over Fibre Channel) HBA driver for IBM System z9 and zSeries"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | MODULE_LICENSE("GPL"); |
| 85 | |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 86 | module_param(device, charp, 0400); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | MODULE_PARM_DESC(device, "specify initial device"); |
| 88 | |
| 6f71d9b | 2005-04-10 23:04:28 -0500 | [diff] [blame] | 89 | module_param(loglevel, uint, 0400); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | MODULE_PARM_DESC(loglevel, |
| 91 | "log levels, 8 nibbles: " |
| 92 | "FC ERP QDIO CIO Config FSF SCSI Other, " |
| 93 | "levels: 0=none 1=normal 2=devel 3=trace"); |
| 94 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | /****************************************************************/ |
| 96 | /************** Functions without logging ***********************/ |
| 97 | /****************************************************************/ |
| 98 | |
| 99 | void |
| 100 | _zfcp_hex_dump(char *addr, int count) |
| 101 | { |
| 102 | int i; |
| 103 | for (i = 0; i < count; i++) { |
| 104 | printk("%02x", addr[i]); |
| 105 | if ((i % 4) == 3) |
| 106 | printk(" "); |
| 107 | if ((i % 32) == 31) |
| 108 | printk("\n"); |
| 109 | } |
| 110 | if (((i-1) % 32) != 31) |
| 111 | printk("\n"); |
| 112 | } |
| 113 | |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 114 | |
| 115 | /****************************************************************/ |
| 116 | /****** Functions to handle the request ID hash table ********/ |
| 117 | /****************************************************************/ |
| 118 | |
| 119 | #define ZFCP_LOG_AREA ZFCP_LOG_AREA_FSF |
| 120 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 121 | static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 122 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 123 | int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 124 | |
| 125 | adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head), |
| 126 | GFP_KERNEL); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 127 | if (!adapter->req_list) |
| 128 | return -ENOMEM; |
| 129 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 130 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 131 | INIT_LIST_HEAD(&adapter->req_list[idx]); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | static void zfcp_reqlist_free(struct zfcp_adapter *adapter) |
| 136 | { |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 137 | kfree(adapter->req_list); |
| 138 | } |
| 139 | |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 140 | int zfcp_reqlist_isempty(struct zfcp_adapter *adapter) |
| 141 | { |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 142 | unsigned int idx; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 143 | |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 144 | for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) |
| 145 | if (!list_empty(&adapter->req_list[idx])) |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 146 | return 0; |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 147 | return 1; |
| 148 | } |
| 149 | |
| 150 | #undef ZFCP_LOG_AREA |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /****************************************************************/ |
| 153 | /************** Uncategorised Functions *************************/ |
| 154 | /****************************************************************/ |
| 155 | |
| 156 | #define ZFCP_LOG_AREA ZFCP_LOG_AREA_OTHER |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | /** |
| 159 | * zfcp_device_setup - setup function |
| 160 | * @str: pointer to parameter string |
| 161 | * |
| 162 | * Parse "device=..." parameter string. |
| 163 | */ |
| 164 | static int __init |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 165 | zfcp_device_setup(char *devstr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | { |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 167 | char *tmp, *str; |
| 168 | size_t len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 170 | if (!devstr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return 0; |
| 172 | |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 173 | len = strlen(devstr) + 1; |
Robert P. J. Day | 5cbded5 | 2006-12-13 00:35:56 -0800 | [diff] [blame] | 174 | str = kmalloc(len, GFP_KERNEL); |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 175 | if (!str) |
| 176 | goto err_out; |
| 177 | memcpy(str, devstr, len); |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | tmp = strchr(str, ','); |
| 180 | if (!tmp) |
| 181 | goto err_out; |
| 182 | *tmp++ = '\0'; |
| 183 | strncpy(zfcp_data.init_busid, str, BUS_ID_SIZE); |
| 184 | zfcp_data.init_busid[BUS_ID_SIZE-1] = '\0'; |
| 185 | |
| 186 | zfcp_data.init_wwpn = simple_strtoull(tmp, &tmp, 0); |
| 187 | if (*tmp++ != ',') |
| 188 | goto err_out; |
| 189 | if (*tmp == '\0') |
| 190 | goto err_out; |
| 191 | |
| 192 | zfcp_data.init_fcp_lun = simple_strtoull(tmp, &tmp, 0); |
| 193 | if (*tmp != '\0') |
| 194 | goto err_out; |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 195 | kfree(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | return 1; |
| 197 | |
| 198 | err_out: |
| 199 | ZFCP_LOG_NORMAL("Parse error for device parameter string %s\n", str); |
Andreas Herrmann | cd8a383 | 2005-06-13 13:22:25 +0200 | [diff] [blame] | 200 | kfree(str); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | static void __init |
| 205 | zfcp_init_device_configure(void) |
| 206 | { |
| 207 | struct zfcp_adapter *adapter; |
| 208 | struct zfcp_port *port; |
| 209 | struct zfcp_unit *unit; |
| 210 | |
| 211 | down(&zfcp_data.config_sema); |
| 212 | read_lock_irq(&zfcp_data.config_lock); |
| 213 | adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid); |
| 214 | if (adapter) |
| 215 | zfcp_adapter_get(adapter); |
| 216 | read_unlock_irq(&zfcp_data.config_lock); |
| 217 | |
| 218 | if (adapter == NULL) |
| 219 | goto out_adapter; |
| 220 | port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0); |
| 221 | if (!port) |
| 222 | goto out_port; |
| 223 | unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun); |
| 224 | if (!unit) |
| 225 | goto out_unit; |
| 226 | up(&zfcp_data.config_sema); |
| 227 | ccw_device_set_online(adapter->ccw_device); |
| 228 | zfcp_erp_wait(adapter); |
| 229 | down(&zfcp_data.config_sema); |
| 230 | zfcp_unit_put(unit); |
| 231 | out_unit: |
| 232 | zfcp_port_put(port); |
| 233 | out_port: |
| 234 | zfcp_adapter_put(adapter); |
| 235 | out_adapter: |
| 236 | up(&zfcp_data.config_sema); |
| 237 | return; |
| 238 | } |
| 239 | |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 240 | static int calc_alignment(int size) |
| 241 | { |
| 242 | int align = 1; |
| 243 | |
| 244 | if (!size) |
| 245 | return 0; |
| 246 | |
| 247 | while ((size - align) > 0) |
| 248 | align <<= 1; |
| 249 | |
| 250 | return align; |
| 251 | } |
| 252 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | static int __init |
| 254 | zfcp_module_init(void) |
| 255 | { |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 256 | int retval = -ENOMEM; |
| 257 | int size, align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 259 | size = sizeof(struct zfcp_fsf_req_qtcb); |
| 260 | align = calc_alignment(size); |
| 261 | zfcp_data.fsf_req_qtcb_cache = |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 262 | kmem_cache_create("zfcp_fsf", size, align, 0, NULL); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 263 | if (!zfcp_data.fsf_req_qtcb_cache) |
| 264 | goto out; |
| 265 | |
| 266 | size = sizeof(struct fsf_status_read_buffer); |
| 267 | align = calc_alignment(size); |
| 268 | zfcp_data.sr_buffer_cache = |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 269 | kmem_cache_create("zfcp_sr", size, align, 0, NULL); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 270 | if (!zfcp_data.sr_buffer_cache) |
| 271 | goto out_sr_cache; |
| 272 | |
| 273 | size = sizeof(struct zfcp_gid_pn_data); |
| 274 | align = calc_alignment(size); |
| 275 | zfcp_data.gid_pn_cache = |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 276 | kmem_cache_create("zfcp_gid", size, align, 0, NULL); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 277 | if (!zfcp_data.gid_pn_cache) |
| 278 | goto out_gid_cache; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
| 280 | atomic_set(&zfcp_data.loglevel, loglevel); |
| 281 | |
| 282 | /* initialize adapter list */ |
| 283 | INIT_LIST_HEAD(&zfcp_data.adapter_list_head); |
| 284 | |
| 285 | /* initialize adapters to be removed list head */ |
| 286 | INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh); |
| 287 | |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 288 | zfcp_data.scsi_transport_template = |
| 289 | fc_attach_transport(&zfcp_transport_functions); |
| 290 | if (!zfcp_data.scsi_transport_template) |
| 291 | goto out_transport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | retval = misc_register(&zfcp_cfdc_misc); |
| 294 | if (retval != 0) { |
| 295 | ZFCP_LOG_INFO("registration of misc device " |
| 296 | "zfcp_cfdc failed\n"); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 297 | goto out_misc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
| 299 | |
| e183b06 | 2005-04-02 13:57:17 -0600 | [diff] [blame] | 300 | ZFCP_LOG_TRACE("major/minor for zfcp_cfdc: %d/%d\n", |
| 301 | ZFCP_CFDC_DEV_MAJOR, zfcp_cfdc_misc.minor); |
| 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | /* Initialise proc semaphores */ |
| 304 | sema_init(&zfcp_data.config_sema, 1); |
| 305 | |
| 306 | /* initialise configuration rw lock */ |
| 307 | rwlock_init(&zfcp_data.config_lock); |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* setup dynamic I/O */ |
| 310 | retval = zfcp_ccw_register(); |
| 311 | if (retval) { |
| 312 | ZFCP_LOG_NORMAL("registration with common I/O layer failed\n"); |
| 313 | goto out_ccw_register; |
| 314 | } |
| 315 | |
| 316 | if (zfcp_device_setup(device)) |
| 317 | zfcp_init_device_configure(); |
| 318 | |
| 319 | goto out; |
| 320 | |
| 321 | out_ccw_register: |
| 322 | misc_deregister(&zfcp_cfdc_misc); |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 323 | out_misc: |
| 324 | fc_release_transport(zfcp_data.scsi_transport_template); |
| 325 | out_transport: |
| 326 | kmem_cache_destroy(zfcp_data.gid_pn_cache); |
| 327 | out_gid_cache: |
| 328 | kmem_cache_destroy(zfcp_data.sr_buffer_cache); |
| 329 | out_sr_cache: |
| 330 | kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | out: |
| 332 | return retval; |
| 333 | } |
| 334 | |
| 335 | /* |
| 336 | * function: zfcp_cfdc_dev_ioctl |
| 337 | * |
| 338 | * purpose: Handle control file upload/download transaction via IOCTL |
| 339 | * interface |
| 340 | * |
| 341 | * returns: 0 - Operation completed successfuly |
| 342 | * -ENOTTY - Unknown IOCTL command |
| 343 | * -EINVAL - Invalid sense data record |
| 344 | * -ENXIO - The FCP adapter is not available |
| 345 | * -EOPNOTSUPP - The FCP adapter does not have CFDC support |
| 346 | * -ENOMEM - Insufficient memory |
| 347 | * -EFAULT - User space memory I/O operation fault |
| 348 | * -EPERM - Cannot create or queue FSF request or create SBALs |
| 349 | * -ERESTARTSYS- Received signal (is mapped to EAGAIN by VFS) |
| 350 | */ |
| e183b06 | 2005-04-02 13:57:17 -0600 | [diff] [blame] | 351 | static long |
| 352 | zfcp_cfdc_dev_ioctl(struct file *file, unsigned int command, |
| 353 | unsigned long buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | { |
| 355 | struct zfcp_cfdc_sense_data *sense_data, __user *sense_data_user; |
| 356 | struct zfcp_adapter *adapter = NULL; |
| 357 | struct zfcp_fsf_req *fsf_req = NULL; |
| 358 | struct zfcp_sg_list *sg_list = NULL; |
| 359 | u32 fsf_command, option; |
| 360 | char *bus_id = NULL; |
| 361 | int retval = 0; |
| 362 | |
| 363 | sense_data = kmalloc(sizeof(struct zfcp_cfdc_sense_data), GFP_KERNEL); |
| 364 | if (sense_data == NULL) { |
| 365 | retval = -ENOMEM; |
| 366 | goto out; |
| 367 | } |
| 368 | |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 369 | sg_list = kzalloc(sizeof(struct zfcp_sg_list), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | if (sg_list == NULL) { |
| 371 | retval = -ENOMEM; |
| 372 | goto out; |
| 373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | if (command != ZFCP_CFDC_IOC) { |
| 376 | ZFCP_LOG_INFO("IOC request code 0x%x invalid\n", command); |
| 377 | retval = -ENOTTY; |
| 378 | goto out; |
| 379 | } |
| 380 | |
| 381 | if ((sense_data_user = (void __user *) buffer) == NULL) { |
| 382 | ZFCP_LOG_INFO("sense data record is required\n"); |
| 383 | retval = -EINVAL; |
| 384 | goto out; |
| 385 | } |
| 386 | |
| 387 | retval = copy_from_user(sense_data, sense_data_user, |
| 388 | sizeof(struct zfcp_cfdc_sense_data)); |
| 389 | if (retval) { |
| 390 | retval = -EFAULT; |
| 391 | goto out; |
| 392 | } |
| 393 | |
| 394 | if (sense_data->signature != ZFCP_CFDC_SIGNATURE) { |
| 395 | ZFCP_LOG_INFO("invalid sense data request signature 0x%08x\n", |
| 396 | ZFCP_CFDC_SIGNATURE); |
| 397 | retval = -EINVAL; |
| 398 | goto out; |
| 399 | } |
| 400 | |
| 401 | switch (sense_data->command) { |
| 402 | |
| 403 | case ZFCP_CFDC_CMND_DOWNLOAD_NORMAL: |
| 404 | fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE; |
| 405 | option = FSF_CFDC_OPTION_NORMAL_MODE; |
| 406 | break; |
| 407 | |
| 408 | case ZFCP_CFDC_CMND_DOWNLOAD_FORCE: |
| 409 | fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE; |
| 410 | option = FSF_CFDC_OPTION_FORCE; |
| 411 | break; |
| 412 | |
| 413 | case ZFCP_CFDC_CMND_FULL_ACCESS: |
| 414 | fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE; |
| 415 | option = FSF_CFDC_OPTION_FULL_ACCESS; |
| 416 | break; |
| 417 | |
| 418 | case ZFCP_CFDC_CMND_RESTRICTED_ACCESS: |
| 419 | fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE; |
| 420 | option = FSF_CFDC_OPTION_RESTRICTED_ACCESS; |
| 421 | break; |
| 422 | |
| 423 | case ZFCP_CFDC_CMND_UPLOAD: |
| 424 | fsf_command = FSF_QTCB_UPLOAD_CONTROL_FILE; |
| 425 | option = 0; |
| 426 | break; |
| 427 | |
| 428 | default: |
| 429 | ZFCP_LOG_INFO("invalid command code 0x%08x\n", |
| 430 | sense_data->command); |
| 431 | retval = -EINVAL; |
| 432 | goto out; |
| 433 | } |
| 434 | |
| 435 | bus_id = kmalloc(BUS_ID_SIZE, GFP_KERNEL); |
| 436 | if (bus_id == NULL) { |
| 437 | retval = -ENOMEM; |
| 438 | goto out; |
| 439 | } |
| 440 | snprintf(bus_id, BUS_ID_SIZE, "%d.%d.%04x", |
| 441 | (sense_data->devno >> 24), |
| 442 | (sense_data->devno >> 16) & 0xFF, |
| 443 | (sense_data->devno & 0xFFFF)); |
| 444 | |
| 445 | read_lock_irq(&zfcp_data.config_lock); |
| 446 | adapter = zfcp_get_adapter_by_busid(bus_id); |
| 447 | if (adapter) |
| 448 | zfcp_adapter_get(adapter); |
| 449 | read_unlock_irq(&zfcp_data.config_lock); |
| 450 | |
| 451 | kfree(bus_id); |
| 452 | |
| 453 | if (adapter == NULL) { |
| 454 | ZFCP_LOG_INFO("invalid adapter\n"); |
| 455 | retval = -ENXIO; |
| 456 | goto out; |
| 457 | } |
| 458 | |
| 459 | if (sense_data->command & ZFCP_CFDC_WITH_CONTROL_FILE) { |
| 460 | retval = zfcp_sg_list_alloc(sg_list, |
| 461 | ZFCP_CFDC_MAX_CONTROL_FILE_SIZE); |
| 462 | if (retval) { |
| 463 | retval = -ENOMEM; |
| 464 | goto out; |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | if ((sense_data->command & ZFCP_CFDC_DOWNLOAD) && |
| 469 | (sense_data->command & ZFCP_CFDC_WITH_CONTROL_FILE)) { |
| 470 | retval = zfcp_sg_list_copy_from_user( |
| 471 | sg_list, &sense_data_user->control_file, |
| 472 | ZFCP_CFDC_MAX_CONTROL_FILE_SIZE); |
| 473 | if (retval) { |
| 474 | retval = -EFAULT; |
| 475 | goto out; |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | retval = zfcp_fsf_control_file(adapter, &fsf_req, fsf_command, |
| 480 | option, sg_list); |
| 481 | if (retval) |
| 482 | goto out; |
| 483 | |
| 484 | if ((fsf_req->qtcb->prefix.prot_status != FSF_PROT_GOOD) && |
| 485 | (fsf_req->qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) { |
| 486 | retval = -ENXIO; |
| 487 | goto out; |
| 488 | } |
| 489 | |
| 490 | sense_data->fsf_status = fsf_req->qtcb->header.fsf_status; |
| 491 | memcpy(&sense_data->fsf_status_qual, |
| 492 | &fsf_req->qtcb->header.fsf_status_qual, |
| 493 | sizeof(union fsf_status_qual)); |
| 494 | memcpy(&sense_data->payloads, &fsf_req->qtcb->bottom.support.els, 256); |
| 495 | |
| 496 | retval = copy_to_user(sense_data_user, sense_data, |
| 497 | sizeof(struct zfcp_cfdc_sense_data)); |
| 498 | if (retval) { |
| 499 | retval = -EFAULT; |
| 500 | goto out; |
| 501 | } |
| 502 | |
| 503 | if (sense_data->command & ZFCP_CFDC_UPLOAD) { |
| 504 | retval = zfcp_sg_list_copy_to_user( |
| 505 | &sense_data_user->control_file, sg_list, |
| 506 | ZFCP_CFDC_MAX_CONTROL_FILE_SIZE); |
| 507 | if (retval) { |
| 508 | retval = -EFAULT; |
| 509 | goto out; |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | out: |
| 514 | if (fsf_req != NULL) |
Andreas Herrmann | 1db2c9c | 2005-06-13 13:20:35 +0200 | [diff] [blame] | 515 | zfcp_fsf_req_free(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
| 517 | if ((adapter != NULL) && (retval != -ENXIO)) |
| 518 | zfcp_adapter_put(adapter); |
| 519 | |
| 520 | if (sg_list != NULL) { |
| 521 | zfcp_sg_list_free(sg_list); |
| 522 | kfree(sg_list); |
| 523 | } |
| 524 | |
Jesper Juhl | 17fd682 | 2005-11-07 01:01:30 -0800 | [diff] [blame] | 525 | kfree(sense_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | return retval; |
| 528 | } |
| 529 | |
| 530 | |
| 531 | /** |
| 532 | * zfcp_sg_list_alloc - create a scatter-gather list of the specified size |
| 533 | * @sg_list: structure describing a scatter gather list |
| 534 | * @size: size of scatter-gather list |
| 535 | * Return: 0 on success, else -ENOMEM |
| 536 | * |
| 537 | * In sg_list->sg a pointer to the created scatter-gather list is returned, |
| 538 | * or NULL if we run out of memory. sg_list->count specifies the number of |
| 539 | * elements of the scatter-gather list. The maximum size of a single element |
| 540 | * in the scatter-gather list is PAGE_SIZE. |
| 541 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 542 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | zfcp_sg_list_alloc(struct zfcp_sg_list *sg_list, size_t size) |
| 544 | { |
| 545 | struct scatterlist *sg; |
| 546 | unsigned int i; |
| 547 | int retval = 0; |
| 548 | void *address; |
| 549 | |
| 550 | BUG_ON(sg_list == NULL); |
| 551 | |
| 552 | sg_list->count = size >> PAGE_SHIFT; |
| 553 | if (size & ~PAGE_MASK) |
| 554 | sg_list->count++; |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 555 | sg_list->sg = kcalloc(sg_list->count, sizeof(struct scatterlist), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | GFP_KERNEL); |
| 557 | if (sg_list->sg == NULL) { |
| 558 | sg_list->count = 0; |
| 559 | retval = -ENOMEM; |
| 560 | goto out; |
| 561 | } |
Jens Axboe | 73fc4f0 | 2007-10-23 09:17:53 +0200 | [diff] [blame] | 562 | sg_init_table(sg_list->sg, sg_list->count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | |
| 564 | for (i = 0, sg = sg_list->sg; i < sg_list->count; i++, sg++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | address = (void *) get_zeroed_page(GFP_KERNEL); |
| 566 | if (address == NULL) { |
| 567 | sg_list->count = i; |
| 568 | zfcp_sg_list_free(sg_list); |
| 569 | retval = -ENOMEM; |
| 570 | goto out; |
| 571 | } |
Jens Axboe | 642f14903 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 572 | zfcp_address_to_sg(address, sg, min(size, PAGE_SIZE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | size -= sg->length; |
| 574 | } |
| 575 | |
| 576 | out: |
| 577 | return retval; |
| 578 | } |
| 579 | |
| 580 | |
| 581 | /** |
| 582 | * zfcp_sg_list_free - free memory of a scatter-gather list |
| 583 | * @sg_list: structure describing a scatter-gather list |
| 584 | * |
| 585 | * Memory for each element in the scatter-gather list is freed. |
| 586 | * Finally sg_list->sg is freed itself and sg_list->count is reset. |
| 587 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 588 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | zfcp_sg_list_free(struct zfcp_sg_list *sg_list) |
| 590 | { |
| 591 | struct scatterlist *sg; |
| 592 | unsigned int i; |
| 593 | |
| 594 | BUG_ON(sg_list == NULL); |
| 595 | |
| 596 | for (i = 0, sg = sg_list->sg; i < sg_list->count; i++, sg++) |
| 597 | free_page((unsigned long) zfcp_sg_to_address(sg)); |
| 598 | |
| 599 | sg_list->count = 0; |
| 600 | kfree(sg_list->sg); |
| 601 | } |
| 602 | |
| 603 | /** |
| 604 | * zfcp_sg_size - determine size of a scatter-gather list |
| 605 | * @sg: array of (struct scatterlist) |
| 606 | * @sg_count: elements in array |
| 607 | * Return: size of entire scatter-gather list |
| 608 | */ |
Heiko Carstens | 763968e | 2007-05-10 15:45:46 +0200 | [diff] [blame] | 609 | static size_t zfcp_sg_size(struct scatterlist *sg, unsigned int sg_count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | { |
| 611 | unsigned int i; |
| 612 | struct scatterlist *p; |
| 613 | size_t size; |
| 614 | |
| 615 | size = 0; |
| 616 | for (i = 0, p = sg; i < sg_count; i++, p++) { |
| 617 | BUG_ON(p == NULL); |
| 618 | size += p->length; |
| 619 | } |
| 620 | |
| 621 | return size; |
| 622 | } |
| 623 | |
| 624 | |
| 625 | /** |
| 626 | * zfcp_sg_list_copy_from_user -copy data from user space to scatter-gather list |
| 627 | * @sg_list: structure describing a scatter-gather list |
| 628 | * @user_buffer: pointer to buffer in user space |
| 629 | * @size: number of bytes to be copied |
| 630 | * Return: 0 on success, -EFAULT if copy_from_user fails. |
| 631 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 632 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | zfcp_sg_list_copy_from_user(struct zfcp_sg_list *sg_list, |
| 634 | void __user *user_buffer, |
| 635 | size_t size) |
| 636 | { |
| 637 | struct scatterlist *sg; |
| 638 | unsigned int length; |
| 639 | void *zfcp_buffer; |
| 640 | int retval = 0; |
| 641 | |
| 642 | BUG_ON(sg_list == NULL); |
| 643 | |
| 644 | if (zfcp_sg_size(sg_list->sg, sg_list->count) < size) |
| 645 | return -EFAULT; |
| 646 | |
| 647 | for (sg = sg_list->sg; size > 0; sg++) { |
| 648 | length = min((unsigned int)size, sg->length); |
| 649 | zfcp_buffer = zfcp_sg_to_address(sg); |
| 650 | if (copy_from_user(zfcp_buffer, user_buffer, length)) { |
| 651 | retval = -EFAULT; |
| 652 | goto out; |
| 653 | } |
| 654 | user_buffer += length; |
| 655 | size -= length; |
| 656 | } |
| 657 | |
| 658 | out: |
| 659 | return retval; |
| 660 | } |
| 661 | |
| 662 | |
| 663 | /** |
| 664 | * zfcp_sg_list_copy_to_user - copy data from scatter-gather list to user space |
| 665 | * @user_buffer: pointer to buffer in user space |
| 666 | * @sg_list: structure describing a scatter-gather list |
| 667 | * @size: number of bytes to be copied |
| 668 | * Return: 0 on success, -EFAULT if copy_to_user fails |
| 669 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 670 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | zfcp_sg_list_copy_to_user(void __user *user_buffer, |
| 672 | struct zfcp_sg_list *sg_list, |
| 673 | size_t size) |
| 674 | { |
| 675 | struct scatterlist *sg; |
| 676 | unsigned int length; |
| 677 | void *zfcp_buffer; |
| 678 | int retval = 0; |
| 679 | |
| 680 | BUG_ON(sg_list == NULL); |
| 681 | |
| 682 | if (zfcp_sg_size(sg_list->sg, sg_list->count) < size) |
| 683 | return -EFAULT; |
| 684 | |
| 685 | for (sg = sg_list->sg; size > 0; sg++) { |
| 686 | length = min((unsigned int) size, sg->length); |
| 687 | zfcp_buffer = zfcp_sg_to_address(sg); |
| 688 | if (copy_to_user(user_buffer, zfcp_buffer, length)) { |
| 689 | retval = -EFAULT; |
| 690 | goto out; |
| 691 | } |
| 692 | user_buffer += length; |
| 693 | size -= length; |
| 694 | } |
| 695 | |
| 696 | out: |
| 697 | return retval; |
| 698 | } |
| 699 | |
| 700 | |
| 701 | #undef ZFCP_LOG_AREA |
| 702 | |
| 703 | /****************************************************************/ |
| 704 | /****** Functions for configuration/set-up of structures ********/ |
| 705 | /****************************************************************/ |
| 706 | |
| 707 | #define ZFCP_LOG_AREA ZFCP_LOG_AREA_CONFIG |
| 708 | |
| 709 | /** |
| 710 | * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN |
| 711 | * @port: pointer to port to search for unit |
| 712 | * @fcp_lun: FCP LUN to search for |
| 713 | * Traverse list of all units of a port and return pointer to a unit |
| 714 | * with the given FCP LUN. |
| 715 | */ |
| 716 | struct zfcp_unit * |
| 717 | zfcp_get_unit_by_lun(struct zfcp_port *port, fcp_lun_t fcp_lun) |
| 718 | { |
| 719 | struct zfcp_unit *unit; |
| 720 | int found = 0; |
| 721 | |
| 722 | list_for_each_entry(unit, &port->unit_list_head, list) { |
| 723 | if ((unit->fcp_lun == fcp_lun) && |
| 724 | !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status)) |
| 725 | { |
| 726 | found = 1; |
| 727 | break; |
| 728 | } |
| 729 | } |
| 730 | return found ? unit : NULL; |
| 731 | } |
| 732 | |
| 733 | /** |
| 734 | * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn |
| 735 | * @adapter: pointer to adapter to search for port |
| 736 | * @wwpn: wwpn to search for |
| 737 | * Traverse list of all ports of an adapter and return pointer to a port |
| 738 | * with the given wwpn. |
| 739 | */ |
| 740 | struct zfcp_port * |
| 741 | zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter, wwn_t wwpn) |
| 742 | { |
| 743 | struct zfcp_port *port; |
| 744 | int found = 0; |
| 745 | |
| 746 | list_for_each_entry(port, &adapter->port_list_head, list) { |
| 747 | if ((port->wwpn == wwpn) && |
| 748 | !(atomic_read(&port->status) & |
| 749 | (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE))) { |
| 750 | found = 1; |
| 751 | break; |
| 752 | } |
| 753 | } |
| 754 | return found ? port : NULL; |
| 755 | } |
| 756 | |
| 757 | /** |
| 758 | * zfcp_get_port_by_did - find port in port list of adapter by d_id |
| 759 | * @adapter: pointer to adapter to search for port |
| 760 | * @d_id: d_id to search for |
| 761 | * Traverse list of all ports of an adapter and return pointer to a port |
| 762 | * with the given d_id. |
| 763 | */ |
| 764 | struct zfcp_port * |
| 765 | zfcp_get_port_by_did(struct zfcp_adapter *adapter, u32 d_id) |
| 766 | { |
| 767 | struct zfcp_port *port; |
| 768 | int found = 0; |
| 769 | |
| 770 | list_for_each_entry(port, &adapter->port_list_head, list) { |
| 771 | if ((port->d_id == d_id) && |
| 772 | !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status)) |
| 773 | { |
| 774 | found = 1; |
| 775 | break; |
| 776 | } |
| 777 | } |
| 778 | return found ? port : NULL; |
| 779 | } |
| 780 | |
| 781 | /** |
| 782 | * zfcp_get_adapter_by_busid - find adpater in adapter list by bus_id |
| 783 | * @bus_id: bus_id to search for |
| 784 | * Traverse list of all adapters and return pointer to an adapter |
| 785 | * with the given bus_id. |
| 786 | */ |
| 787 | struct zfcp_adapter * |
| 788 | zfcp_get_adapter_by_busid(char *bus_id) |
| 789 | { |
| 790 | struct zfcp_adapter *adapter; |
| 791 | int found = 0; |
| 792 | |
| 793 | list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list) { |
| 794 | if ((strncmp(bus_id, zfcp_get_busid_by_adapter(adapter), |
| 795 | BUS_ID_SIZE) == 0) && |
| 796 | !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, |
| 797 | &adapter->status)){ |
| 798 | found = 1; |
| 799 | break; |
| 800 | } |
| 801 | } |
| 802 | return found ? adapter : NULL; |
| 803 | } |
| 804 | |
| 805 | /** |
| 806 | * zfcp_unit_enqueue - enqueue unit to unit list of a port. |
| 807 | * @port: pointer to port where unit is added |
| 808 | * @fcp_lun: FCP LUN of unit to be enqueued |
| 809 | * Return: pointer to enqueued unit on success, NULL on error |
| 810 | * Locks: config_sema must be held to serialize changes to the unit list |
| 811 | * |
| 812 | * Sets up some unit internal structures and creates sysfs entry. |
| 813 | */ |
| 814 | struct zfcp_unit * |
| 815 | zfcp_unit_enqueue(struct zfcp_port *port, fcp_lun_t fcp_lun) |
| 816 | { |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 817 | struct zfcp_unit *unit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
| 819 | /* |
| 820 | * check that there is no unit with this FCP_LUN already in list |
| 821 | * and enqueue it. |
| 822 | * Note: Unlike for the adapter and the port, this is an error |
| 823 | */ |
| 824 | read_lock_irq(&zfcp_data.config_lock); |
| 825 | unit = zfcp_get_unit_by_lun(port, fcp_lun); |
| 826 | read_unlock_irq(&zfcp_data.config_lock); |
| 827 | if (unit) |
| 828 | return NULL; |
| 829 | |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 830 | unit = kzalloc(sizeof (struct zfcp_unit), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | if (!unit) |
| 832 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
| 834 | /* initialise reference count stuff */ |
| 835 | atomic_set(&unit->refcount, 0); |
| 836 | init_waitqueue_head(&unit->remove_wq); |
| 837 | |
| 838 | unit->port = port; |
| 839 | unit->fcp_lun = fcp_lun; |
| 840 | |
| 841 | /* setup for sysfs registration */ |
| 842 | snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", fcp_lun); |
| 843 | unit->sysfs_device.parent = &port->sysfs_device; |
| 844 | unit->sysfs_device.release = zfcp_sysfs_unit_release; |
| 845 | dev_set_drvdata(&unit->sysfs_device, unit); |
| 846 | |
| 847 | /* mark unit unusable as long as sysfs registration is not complete */ |
| 848 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status); |
| 849 | |
Christof Schmitt | c961585 | 2008-05-06 11:00:05 +0200 | [diff] [blame^] | 850 | spin_lock_init(&unit->latencies.lock); |
| 851 | unit->latencies.write.channel.min = 0xFFFFFFFF; |
| 852 | unit->latencies.write.fabric.min = 0xFFFFFFFF; |
| 853 | unit->latencies.read.channel.min = 0xFFFFFFFF; |
| 854 | unit->latencies.read.fabric.min = 0xFFFFFFFF; |
| 855 | unit->latencies.cmd.channel.min = 0xFFFFFFFF; |
| 856 | unit->latencies.cmd.fabric.min = 0xFFFFFFFF; |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | if (device_register(&unit->sysfs_device)) { |
| 859 | kfree(unit); |
| 860 | return NULL; |
| 861 | } |
| 862 | |
| 863 | if (zfcp_sysfs_unit_create_files(&unit->sysfs_device)) { |
| 864 | device_unregister(&unit->sysfs_device); |
| 865 | return NULL; |
| 866 | } |
| 867 | |
| 868 | zfcp_unit_get(unit); |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 869 | unit->scsi_lun = scsilun_to_int((struct scsi_lun *)&unit->fcp_lun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | write_lock_irq(&zfcp_data.config_lock); |
Christof Schmitt | 462b785 | 2007-06-19 10:25:30 +0200 | [diff] [blame] | 872 | list_add_tail(&unit->list, &port->unit_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status); |
| 874 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status); |
| 875 | write_unlock_irq(&zfcp_data.config_lock); |
| 876 | |
| 877 | port->units++; |
| 878 | zfcp_port_get(port); |
| 879 | |
| 880 | return unit; |
| 881 | } |
| 882 | |
| 883 | void |
| 884 | zfcp_unit_dequeue(struct zfcp_unit *unit) |
| 885 | { |
| 886 | zfcp_unit_wait(unit); |
| 887 | write_lock_irq(&zfcp_data.config_lock); |
| 888 | list_del(&unit->list); |
| 889 | write_unlock_irq(&zfcp_data.config_lock); |
| 890 | unit->port->units--; |
| 891 | zfcp_port_put(unit->port); |
| 892 | zfcp_sysfs_unit_remove_files(&unit->sysfs_device); |
| 893 | device_unregister(&unit->sysfs_device); |
| 894 | } |
| 895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | /* |
| 897 | * Allocates a combined QTCB/fsf_req buffer for erp actions and fcp/SCSI |
| 898 | * commands. |
Swen Schillig | 41fa2ada | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 899 | * It also genrates fcp-nameserver request/response buffer and unsolicited |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | * status read fsf_req buffers. |
| 901 | * |
| 902 | * locks: must only be called with zfcp_data.config_sema taken |
| 903 | */ |
| 904 | static int |
| 905 | zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter) |
| 906 | { |
| 907 | adapter->pool.fsf_req_erp = |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 908 | mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_ERP_NR, |
| 909 | zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 910 | if (!adapter->pool.fsf_req_erp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | return -ENOMEM; |
| 912 | |
| 913 | adapter->pool.fsf_req_scsi = |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 914 | mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_SCSI_NR, |
| 915 | zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 916 | if (!adapter->pool.fsf_req_scsi) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | return -ENOMEM; |
| 918 | |
| 919 | adapter->pool.fsf_req_abort = |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 920 | mempool_create_slab_pool(ZFCP_POOL_FSF_REQ_ABORT_NR, |
| 921 | zfcp_data.fsf_req_qtcb_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 922 | if (!adapter->pool.fsf_req_abort) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | return -ENOMEM; |
| 924 | |
| 925 | adapter->pool.fsf_req_status_read = |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 926 | mempool_create_kmalloc_pool(ZFCP_POOL_STATUS_READ_NR, |
| 927 | sizeof(struct zfcp_fsf_req)); |
| 928 | if (!adapter->pool.fsf_req_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return -ENOMEM; |
| 930 | |
| 931 | adapter->pool.data_status_read = |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 932 | mempool_create_slab_pool(ZFCP_POOL_STATUS_READ_NR, |
| 933 | zfcp_data.sr_buffer_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 934 | if (!adapter->pool.data_status_read) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | return -ENOMEM; |
| 936 | |
| 937 | adapter->pool.data_gid_pn = |
Heiko Carstens | dd52e0e | 2006-09-18 22:28:49 +0200 | [diff] [blame] | 938 | mempool_create_slab_pool(ZFCP_POOL_DATA_GID_PN_NR, |
| 939 | zfcp_data.gid_pn_cache); |
Matthew Dobson | 0eaae62a | 2006-03-26 01:37:47 -0800 | [diff] [blame] | 940 | if (!adapter->pool.data_gid_pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | return -ENOMEM; |
| 942 | |
| 943 | return 0; |
| 944 | } |
| 945 | |
| 946 | /** |
| 947 | * zfcp_free_low_mem_buffers - free memory pools of an adapter |
| 948 | * @adapter: pointer to zfcp_adapter for which memory pools should be freed |
| 949 | * locking: zfcp_data.config_sema must be held |
| 950 | */ |
| 951 | static void |
| 952 | zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter) |
| 953 | { |
| 954 | if (adapter->pool.fsf_req_erp) |
| 955 | mempool_destroy(adapter->pool.fsf_req_erp); |
| 956 | if (adapter->pool.fsf_req_scsi) |
| 957 | mempool_destroy(adapter->pool.fsf_req_scsi); |
| 958 | if (adapter->pool.fsf_req_abort) |
| 959 | mempool_destroy(adapter->pool.fsf_req_abort); |
| 960 | if (adapter->pool.fsf_req_status_read) |
| 961 | mempool_destroy(adapter->pool.fsf_req_status_read); |
| 962 | if (adapter->pool.data_status_read) |
| 963 | mempool_destroy(adapter->pool.data_status_read); |
| 964 | if (adapter->pool.data_gid_pn) |
| 965 | mempool_destroy(adapter->pool.data_gid_pn); |
| 966 | } |
| 967 | |
Heiko Carstens | 763968e | 2007-05-10 15:45:46 +0200 | [diff] [blame] | 968 | static void zfcp_dummy_release(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | { |
| 970 | return; |
| 971 | } |
| 972 | |
| 973 | /* |
| 974 | * Enqueues an adapter at the end of the adapter list in the driver data. |
| 975 | * All adapter internal structures are set up. |
| 976 | * Proc-fs entries are also created. |
| 977 | * |
| 978 | * returns: 0 if a new adapter was successfully enqueued |
| 979 | * ZFCP_KNOWN if an adapter with this devno was already present |
| 980 | * -ENOMEM if alloc failed |
| 981 | * locks: config_sema must be held to serialise changes to the adapter list |
| 982 | */ |
| 983 | struct zfcp_adapter * |
| 984 | zfcp_adapter_enqueue(struct ccw_device *ccw_device) |
| 985 | { |
| 986 | int retval = 0; |
| 987 | struct zfcp_adapter *adapter; |
| 988 | |
| 989 | /* |
Swen Schillig | 41fa2ada | 2007-09-07 09:15:31 +0200 | [diff] [blame] | 990 | * Note: It is safe to release the list_lock, as any list changes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | * are protected by the config_sema, which must be held to get here |
| 992 | */ |
| 993 | |
| 994 | /* try to allocate new adapter data structure (zeroed) */ |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 995 | adapter = kzalloc(sizeof (struct zfcp_adapter), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | if (!adapter) { |
| 997 | ZFCP_LOG_INFO("error: allocation of base adapter " |
| 998 | "structure failed\n"); |
| 999 | goto out; |
| 1000 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | |
| 1002 | ccw_device->handler = NULL; |
| 1003 | |
| 1004 | /* save ccw_device pointer */ |
| 1005 | adapter->ccw_device = ccw_device; |
| 1006 | |
| 1007 | retval = zfcp_qdio_allocate_queues(adapter); |
| 1008 | if (retval) |
| 1009 | goto queues_alloc_failed; |
| 1010 | |
| 1011 | retval = zfcp_qdio_allocate(adapter); |
| 1012 | if (retval) |
| 1013 | goto qdio_allocate_failed; |
| 1014 | |
| 1015 | retval = zfcp_allocate_low_mem_buffers(adapter); |
| 1016 | if (retval) { |
| 1017 | ZFCP_LOG_INFO("error: pool allocation failed\n"); |
| 1018 | goto failed_low_mem_buffers; |
| 1019 | } |
| 1020 | |
| 1021 | /* initialise reference count stuff */ |
| 1022 | atomic_set(&adapter->refcount, 0); |
| 1023 | init_waitqueue_head(&adapter->remove_wq); |
| 1024 | |
| 1025 | /* initialise list of ports */ |
| 1026 | INIT_LIST_HEAD(&adapter->port_list_head); |
| 1027 | |
| 1028 | /* initialise list of ports to be removed */ |
| 1029 | INIT_LIST_HEAD(&adapter->port_remove_lh); |
| 1030 | |
| 1031 | /* initialize list of fsf requests */ |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 1032 | spin_lock_init(&adapter->req_list_lock); |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 1033 | retval = zfcp_reqlist_alloc(adapter); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 1034 | if (retval) { |
| 1035 | ZFCP_LOG_INFO("request list initialization failed\n"); |
| 1036 | goto failed_low_mem_buffers; |
| 1037 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 1039 | /* initialize debug locks */ |
| 1040 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 1041 | spin_lock_init(&adapter->hba_dbf_lock); |
| 1042 | spin_lock_init(&adapter->san_dbf_lock); |
| 1043 | spin_lock_init(&adapter->scsi_dbf_lock); |
Martin Peschke | d79a83d | 2008-03-27 14:22:00 +0100 | [diff] [blame] | 1044 | spin_lock_init(&adapter->rec_dbf_lock); |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 1045 | |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 1046 | retval = zfcp_adapter_debug_register(adapter); |
| 1047 | if (retval) |
| 1048 | goto debug_register_failed; |
| 1049 | |
Heiko Carstens | c48a29d | 2005-12-01 02:46:32 +0100 | [diff] [blame] | 1050 | /* initialize error recovery stuff */ |
| 1051 | |
| 1052 | rwlock_init(&adapter->erp_lock); |
| 1053 | sema_init(&adapter->erp_ready_sem, 0); |
| 1054 | INIT_LIST_HEAD(&adapter->erp_ready_head); |
| 1055 | INIT_LIST_HEAD(&adapter->erp_running_head); |
| 1056 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | /* initialize abort lock */ |
| 1058 | rwlock_init(&adapter->abort_lock); |
| 1059 | |
| 1060 | /* initialise some erp stuff */ |
| 1061 | init_waitqueue_head(&adapter->erp_thread_wqh); |
| 1062 | init_waitqueue_head(&adapter->erp_done_wqh); |
| 1063 | |
| 1064 | /* initialize lock of associated request queue */ |
| 1065 | rwlock_init(&adapter->request_queue.queue_lock); |
| 1066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | /* mark adapter unusable as long as sysfs registration is not complete */ |
| 1068 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
| 1069 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | dev_set_drvdata(&ccw_device->dev, adapter); |
| 1071 | |
| 1072 | if (zfcp_sysfs_adapter_create_files(&ccw_device->dev)) |
| 1073 | goto sysfs_failed; |
| 1074 | |
| 1075 | adapter->generic_services.parent = &adapter->ccw_device->dev; |
| 1076 | adapter->generic_services.release = zfcp_dummy_release; |
| 1077 | snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE, |
| 1078 | "generic_services"); |
| 1079 | |
| 1080 | if (device_register(&adapter->generic_services)) |
| 1081 | goto generic_services_failed; |
| 1082 | |
| 1083 | /* put allocated adapter at list tail */ |
| 1084 | write_lock_irq(&zfcp_data.config_lock); |
| 1085 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status); |
| 1086 | list_add_tail(&adapter->list, &zfcp_data.adapter_list_head); |
| 1087 | write_unlock_irq(&zfcp_data.config_lock); |
| 1088 | |
| 1089 | zfcp_data.adapters++; |
| 1090 | |
| 1091 | goto out; |
| 1092 | |
| 1093 | generic_services_failed: |
| 1094 | zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev); |
| 1095 | sysfs_failed: |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 1096 | zfcp_adapter_debug_unregister(adapter); |
| 1097 | debug_register_failed: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | dev_set_drvdata(&ccw_device->dev, NULL); |
Heiko Carstens | ca2d02c | 2007-05-08 11:17:54 +0200 | [diff] [blame] | 1099 | zfcp_reqlist_free(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | failed_low_mem_buffers: |
| 1101 | zfcp_free_low_mem_buffers(adapter); |
| 1102 | if (qdio_free(ccw_device) != 0) |
| 1103 | ZFCP_LOG_NORMAL("bug: qdio_free for adapter %s failed\n", |
| 1104 | zfcp_get_busid_by_adapter(adapter)); |
| 1105 | qdio_allocate_failed: |
| 1106 | zfcp_qdio_free_queues(adapter); |
| 1107 | queues_alloc_failed: |
| 1108 | kfree(adapter); |
| 1109 | adapter = NULL; |
| 1110 | out: |
| 1111 | return adapter; |
| 1112 | } |
| 1113 | |
| 1114 | /* |
| 1115 | * returns: 0 - struct zfcp_adapter data structure successfully removed |
| 1116 | * !0 - struct zfcp_adapter data structure could not be removed |
| 1117 | * (e.g. still used) |
| 1118 | * locks: adapter list write lock is assumed to be held by caller |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | */ |
| 1120 | void |
| 1121 | zfcp_adapter_dequeue(struct zfcp_adapter *adapter) |
| 1122 | { |
| 1123 | int retval = 0; |
| 1124 | unsigned long flags; |
| 1125 | |
Michael Loehr | 9f28745 | 2007-05-09 11:01:24 +0200 | [diff] [blame] | 1126 | zfcp_adapter_scsi_unregister(adapter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | device_unregister(&adapter->generic_services); |
| 1128 | zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev); |
| 1129 | dev_set_drvdata(&adapter->ccw_device->dev, NULL); |
| 1130 | /* sanity check: no pending FSF requests */ |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 1131 | spin_lock_irqsave(&adapter->req_list_lock, flags); |
| 1132 | retval = zfcp_reqlist_isempty(adapter); |
| 1133 | spin_unlock_irqrestore(&adapter->req_list_lock, flags); |
| 1134 | if (!retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | ZFCP_LOG_NORMAL("bug: adapter %s (%p) still in use, " |
| 1136 | "%i requests outstanding\n", |
| 1137 | zfcp_get_busid_by_adapter(adapter), adapter, |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 1138 | atomic_read(&adapter->reqs_active)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | retval = -EBUSY; |
| 1140 | goto out; |
| 1141 | } |
| 1142 | |
Christof Schmitt | ff17a29 | 2007-08-28 09:31:41 +0200 | [diff] [blame] | 1143 | zfcp_adapter_debug_unregister(adapter); |
| 1144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | /* remove specified adapter data structure from list */ |
| 1146 | write_lock_irq(&zfcp_data.config_lock); |
| 1147 | list_del(&adapter->list); |
| 1148 | write_unlock_irq(&zfcp_data.config_lock); |
| 1149 | |
| 1150 | /* decrease number of adapters in list */ |
| 1151 | zfcp_data.adapters--; |
| 1152 | |
| 1153 | ZFCP_LOG_TRACE("adapter %s (%p) removed from list, " |
| 1154 | "%i adapters still in list\n", |
| 1155 | zfcp_get_busid_by_adapter(adapter), |
| 1156 | adapter, zfcp_data.adapters); |
| 1157 | |
| 1158 | retval = qdio_free(adapter->ccw_device); |
| 1159 | if (retval) |
| 1160 | ZFCP_LOG_NORMAL("bug: qdio_free for adapter %s failed\n", |
| 1161 | zfcp_get_busid_by_adapter(adapter)); |
| 1162 | |
| 1163 | zfcp_free_low_mem_buffers(adapter); |
| 1164 | /* free memory of adapter data structure and queues */ |
| 1165 | zfcp_qdio_free_queues(adapter); |
Volker Sameske | fea9d6c | 2006-08-02 11:05:16 +0200 | [diff] [blame] | 1166 | zfcp_reqlist_free(adapter); |
Andreas Herrmann | f6cd94b | 2006-01-05 09:59:34 +0100 | [diff] [blame] | 1167 | kfree(adapter->fc_stats); |
| 1168 | kfree(adapter->stats_reset_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | ZFCP_LOG_TRACE("freeing adapter structure\n"); |
| 1170 | kfree(adapter); |
| 1171 | out: |
| 1172 | return; |
| 1173 | } |
| 1174 | |
| 1175 | /** |
| 1176 | * zfcp_port_enqueue - enqueue port to port list of adapter |
| 1177 | * @adapter: adapter where remote port is added |
| 1178 | * @wwpn: WWPN of the remote port to be enqueued |
| 1179 | * @status: initial status for the port |
| 1180 | * @d_id: destination id of the remote port to be enqueued |
| 1181 | * Return: pointer to enqueued port on success, NULL on error |
| 1182 | * Locks: config_sema must be held to serialize changes to the port list |
| 1183 | * |
| 1184 | * All port internal structures are set up and the sysfs entry is generated. |
| 1185 | * d_id is used to enqueue ports with a well known address like the Directory |
| 1186 | * Service for nameserver lookup. |
| 1187 | */ |
| 1188 | struct zfcp_port * |
| 1189 | zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn, u32 status, |
| 1190 | u32 d_id) |
| 1191 | { |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 1192 | struct zfcp_port *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | int check_wwpn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | |
| 1195 | check_wwpn = !(status & ZFCP_STATUS_PORT_NO_WWPN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | /* |
| 1197 | * check that there is no port with this WWPN already in list |
| 1198 | */ |
| 1199 | if (check_wwpn) { |
| 1200 | read_lock_irq(&zfcp_data.config_lock); |
| 1201 | port = zfcp_get_port_by_wwpn(adapter, wwpn); |
| 1202 | read_unlock_irq(&zfcp_data.config_lock); |
| 1203 | if (port) |
| 1204 | return NULL; |
| 1205 | } |
| 1206 | |
Andreas Herrmann | ec4081c | 2006-05-22 18:17:30 +0200 | [diff] [blame] | 1207 | port = kzalloc(sizeof (struct zfcp_port), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | if (!port) |
| 1209 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | |
| 1211 | /* initialise reference count stuff */ |
| 1212 | atomic_set(&port->refcount, 0); |
| 1213 | init_waitqueue_head(&port->remove_wq); |
| 1214 | |
| 1215 | INIT_LIST_HEAD(&port->unit_list_head); |
| 1216 | INIT_LIST_HEAD(&port->unit_remove_lh); |
| 1217 | |
| 1218 | port->adapter = adapter; |
| 1219 | |
| 1220 | if (check_wwpn) |
| 1221 | port->wwpn = wwpn; |
| 1222 | |
| 1223 | atomic_set_mask(status, &port->status); |
| 1224 | |
| 1225 | /* setup for sysfs registration */ |
| 1226 | if (status & ZFCP_STATUS_PORT_WKA) { |
| 1227 | switch (d_id) { |
| 1228 | case ZFCP_DID_DIRECTORY_SERVICE: |
| 1229 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, |
| 1230 | "directory"); |
| 1231 | break; |
| 1232 | case ZFCP_DID_MANAGEMENT_SERVICE: |
| 1233 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, |
| 1234 | "management"); |
| 1235 | break; |
| 1236 | case ZFCP_DID_KEY_DISTRIBUTION_SERVICE: |
| 1237 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, |
| 1238 | "key_distribution"); |
| 1239 | break; |
| 1240 | case ZFCP_DID_ALIAS_SERVICE: |
| 1241 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, |
| 1242 | "alias"); |
| 1243 | break; |
| 1244 | case ZFCP_DID_TIME_SERVICE: |
| 1245 | snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, |
| 1246 | "time"); |
| 1247 | break; |
| 1248 | default: |
| 1249 | kfree(port); |
| 1250 | return NULL; |
| 1251 | } |
| 1252 | port->d_id = d_id; |
| 1253 | port->sysfs_device.parent = &adapter->generic_services; |
| 1254 | } else { |
| 1255 | snprintf(port->sysfs_device.bus_id, |
| 1256 | BUS_ID_SIZE, "0x%016llx", wwpn); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 1257 | port->sysfs_device.parent = &adapter->ccw_device->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1258 | } |
| 1259 | port->sysfs_device.release = zfcp_sysfs_port_release; |
| 1260 | dev_set_drvdata(&port->sysfs_device, port); |
| 1261 | |
| 1262 | /* mark port unusable as long as sysfs registration is not complete */ |
| 1263 | atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 1264 | |
| 1265 | if (device_register(&port->sysfs_device)) { |
| 1266 | kfree(port); |
| 1267 | return NULL; |
| 1268 | } |
| 1269 | |
| 1270 | if (zfcp_sysfs_port_create_files(&port->sysfs_device, status)) { |
| 1271 | device_unregister(&port->sysfs_device); |
| 1272 | return NULL; |
| 1273 | } |
| 1274 | |
| 1275 | zfcp_port_get(port); |
| 1276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | write_lock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 1278 | list_add_tail(&port->list, &adapter->port_list_head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status); |
| 1280 | atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status); |
| 1281 | if (d_id == ZFCP_DID_DIRECTORY_SERVICE) |
| 1282 | if (!adapter->nameserver_port) |
| 1283 | adapter->nameserver_port = port; |
| 1284 | adapter->ports++; |
| 1285 | write_unlock_irq(&zfcp_data.config_lock); |
| 1286 | |
| 1287 | zfcp_adapter_get(adapter); |
| 1288 | |
| 1289 | return port; |
| 1290 | } |
| 1291 | |
| 1292 | void |
| 1293 | zfcp_port_dequeue(struct zfcp_port *port) |
| 1294 | { |
| 1295 | zfcp_port_wait(port); |
| 1296 | write_lock_irq(&zfcp_data.config_lock); |
| 1297 | list_del(&port->list); |
| 1298 | port->adapter->ports--; |
| 1299 | write_unlock_irq(&zfcp_data.config_lock); |
Andreas Herrmann | 3859f6a | 2005-08-27 11:07:54 -0700 | [diff] [blame] | 1300 | if (port->rport) |
Heiko Carstens | 20b1730 | 2005-08-28 13:22:37 -0700 | [diff] [blame] | 1301 | fc_remote_port_delete(port->rport); |
| 1302 | port->rport = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | zfcp_adapter_put(port->adapter); |
| 1304 | zfcp_sysfs_port_remove_files(&port->sysfs_device, |
| 1305 | atomic_read(&port->status)); |
| 1306 | device_unregister(&port->sysfs_device); |
| 1307 | } |
| 1308 | |
| 1309 | /* Enqueues a nameserver port */ |
| 1310 | int |
| 1311 | zfcp_nameserver_enqueue(struct zfcp_adapter *adapter) |
| 1312 | { |
| 1313 | struct zfcp_port *port; |
| 1314 | |
| 1315 | port = zfcp_port_enqueue(adapter, 0, ZFCP_STATUS_PORT_WKA, |
| 1316 | ZFCP_DID_DIRECTORY_SERVICE); |
| 1317 | if (!port) { |
| 1318 | ZFCP_LOG_INFO("error: enqueue of nameserver port for " |
| 1319 | "adapter %s failed\n", |
| 1320 | zfcp_get_busid_by_adapter(adapter)); |
| 1321 | return -ENXIO; |
| 1322 | } |
| 1323 | zfcp_port_put(port); |
| 1324 | |
| 1325 | return 0; |
| 1326 | } |
| 1327 | |
| 1328 | #undef ZFCP_LOG_AREA |
| 1329 | |
| 1330 | /****************************************************************/ |
| 1331 | /******* Fibre Channel Standard related Functions **************/ |
| 1332 | /****************************************************************/ |
| 1333 | |
| 1334 | #define ZFCP_LOG_AREA ZFCP_LOG_AREA_FC |
| 1335 | |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1336 | static void zfcp_fsf_incoming_els_rscn(struct zfcp_fsf_req *fsf_req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | { |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1338 | struct fsf_status_read_buffer *status_buffer = (void*)fsf_req->data; |
| 1339 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1340 | struct fcp_rscn_head *fcp_rscn_head; |
| 1341 | struct fcp_rscn_element *fcp_rscn_element; |
| 1342 | struct zfcp_port *port; |
| 1343 | u16 i; |
| 1344 | u16 no_entries; |
| 1345 | u32 range_mask; |
| 1346 | unsigned long flags; |
| 1347 | |
| 1348 | fcp_rscn_head = (struct fcp_rscn_head *) status_buffer->payload; |
| 1349 | fcp_rscn_element = (struct fcp_rscn_element *) status_buffer->payload; |
| 1350 | |
| 1351 | /* see FC-FS */ |
| 1352 | no_entries = (fcp_rscn_head->payload_len / 4); |
| 1353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1354 | for (i = 1; i < no_entries; i++) { |
| 1355 | /* skip head and start with 1st element */ |
| 1356 | fcp_rscn_element++; |
| 1357 | switch (fcp_rscn_element->addr_format) { |
| 1358 | case ZFCP_PORT_ADDRESS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | range_mask = ZFCP_PORTS_RANGE_PORT; |
| 1360 | break; |
| 1361 | case ZFCP_AREA_ADDRESS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1362 | range_mask = ZFCP_PORTS_RANGE_AREA; |
| 1363 | break; |
| 1364 | case ZFCP_DOMAIN_ADDRESS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1365 | range_mask = ZFCP_PORTS_RANGE_DOMAIN; |
| 1366 | break; |
| 1367 | case ZFCP_FABRIC_ADDRESS: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1368 | range_mask = ZFCP_PORTS_RANGE_FABRIC; |
| 1369 | break; |
| 1370 | default: |
| 1371 | ZFCP_LOG_INFO("incoming RSCN with unknown " |
| 1372 | "address format\n"); |
| 1373 | continue; |
| 1374 | } |
| 1375 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 1376 | list_for_each_entry(port, &adapter->port_list_head, list) { |
| 1377 | if (atomic_test_mask |
| 1378 | (ZFCP_STATUS_PORT_WKA, &port->status)) |
| 1379 | continue; |
| 1380 | /* Do we know this port? If not skip it. */ |
| 1381 | if (!atomic_test_mask |
| 1382 | (ZFCP_STATUS_PORT_DID_DID, &port->status)) { |
| 1383 | ZFCP_LOG_INFO("incoming RSCN, trying to open " |
| 1384 | "port 0x%016Lx\n", port->wwpn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | zfcp_erp_port_reopen(port, |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1386 | ZFCP_STATUS_COMMON_ERP_FAILED, |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 1387 | 82, fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | continue; |
| 1389 | } |
| 1390 | |
| 1391 | /* |
| 1392 | * FIXME: race: d_id might being invalidated |
| 1393 | * (...DID_DID reset) |
| 1394 | */ |
| 1395 | if ((port->d_id & range_mask) |
| 1396 | == (fcp_rscn_element->nport_did & range_mask)) { |
| 1397 | ZFCP_LOG_TRACE("reopen did 0x%08x\n", |
| 1398 | fcp_rscn_element->nport_did); |
| 1399 | /* |
| 1400 | * Unfortunately, an RSCN does not specify the |
| 1401 | * type of change a target underwent. We assume |
| 1402 | * that it makes sense to reopen the link. |
| 1403 | * FIXME: Shall we try to find out more about |
| 1404 | * the target and link state before closing it? |
| 1405 | * How to accomplish this? (nameserver?) |
| 1406 | * Where would such code be put in? |
| 1407 | * (inside or outside erp) |
| 1408 | */ |
| 1409 | ZFCP_LOG_INFO("incoming RSCN, trying to open " |
| 1410 | "port 0x%016Lx\n", port->wwpn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | zfcp_test_link(port); |
| 1412 | } |
| 1413 | } |
| 1414 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 1415 | } |
| 1416 | } |
| 1417 | |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1418 | static void zfcp_fsf_incoming_els_plogi(struct zfcp_fsf_req *fsf_req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | { |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1420 | struct fsf_status_read_buffer *status_buffer = (void*)fsf_req->data; |
| 1421 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Andreas Herrmann | 06506d0 | 2006-05-22 18:18:19 +0200 | [diff] [blame] | 1422 | struct fsf_plogi *els_plogi; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | struct zfcp_port *port; |
| 1424 | unsigned long flags; |
| 1425 | |
Andreas Herrmann | 06506d0 | 2006-05-22 18:18:19 +0200 | [diff] [blame] | 1426 | els_plogi = (struct fsf_plogi *) status_buffer->payload; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 1428 | list_for_each_entry(port, &adapter->port_list_head, list) { |
Andreas Herrmann | 06506d0 | 2006-05-22 18:18:19 +0200 | [diff] [blame] | 1429 | if (port->wwpn == (*(wwn_t *) &els_plogi->serv_param.wwpn)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | break; |
| 1431 | } |
| 1432 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 1433 | |
Andreas Herrmann | 06506d0 | 2006-05-22 18:18:19 +0200 | [diff] [blame] | 1434 | if (!port || (port->wwpn != (*(wwn_t *) &els_plogi->serv_param.wwpn))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | ZFCP_LOG_DEBUG("ignored incoming PLOGI for nonexisting port " |
Christof Schmitt | 1d589ed | 2007-05-08 11:14:41 +0200 | [diff] [blame] | 1436 | "with d_id 0x%06x on adapter %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | status_buffer->d_id, |
| 1438 | zfcp_get_busid_by_adapter(adapter)); |
| 1439 | } else { |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 1440 | zfcp_erp_port_forced_reopen(port, 0, 83, fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | } |
| 1442 | } |
| 1443 | |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1444 | static void zfcp_fsf_incoming_els_logo(struct zfcp_fsf_req *fsf_req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | { |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1446 | struct fsf_status_read_buffer *status_buffer = (void*)fsf_req->data; |
| 1447 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1448 | struct fcp_logo *els_logo = (struct fcp_logo *) status_buffer->payload; |
| 1449 | struct zfcp_port *port; |
| 1450 | unsigned long flags; |
| 1451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 1453 | list_for_each_entry(port, &adapter->port_list_head, list) { |
| 1454 | if (port->wwpn == els_logo->nport_wwpn) |
| 1455 | break; |
| 1456 | } |
| 1457 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 1458 | |
| 1459 | if (!port || (port->wwpn != els_logo->nport_wwpn)) { |
| 1460 | ZFCP_LOG_DEBUG("ignored incoming LOGO for nonexisting port " |
Christof Schmitt | 1d589ed | 2007-05-08 11:14:41 +0200 | [diff] [blame] | 1461 | "with d_id 0x%06x on adapter %s\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | status_buffer->d_id, |
| 1463 | zfcp_get_busid_by_adapter(adapter)); |
| 1464 | } else { |
Martin Peschke | 1f6f712 | 2008-04-18 12:51:55 +0200 | [diff] [blame] | 1465 | zfcp_erp_port_forced_reopen(port, 0, 84, fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | } |
| 1467 | } |
| 1468 | |
| 1469 | static void |
| 1470 | zfcp_fsf_incoming_els_unknown(struct zfcp_adapter *adapter, |
| 1471 | struct fsf_status_read_buffer *status_buffer) |
| 1472 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | ZFCP_LOG_NORMAL("warning: unknown incoming ELS 0x%08x " |
| 1474 | "for adapter %s\n", *(u32 *) (status_buffer->payload), |
| 1475 | zfcp_get_busid_by_adapter(adapter)); |
| 1476 | |
| 1477 | } |
| 1478 | |
| 1479 | void |
| 1480 | zfcp_fsf_incoming_els(struct zfcp_fsf_req *fsf_req) |
| 1481 | { |
| 1482 | struct fsf_status_read_buffer *status_buffer; |
| 1483 | u32 els_type; |
| 1484 | struct zfcp_adapter *adapter; |
| 1485 | |
Andreas Herrmann | 059c97d | 2005-09-13 21:47:52 +0200 | [diff] [blame] | 1486 | status_buffer = (struct fsf_status_read_buffer *) fsf_req->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | els_type = *(u32 *) (status_buffer->payload); |
| 1488 | adapter = fsf_req->adapter; |
| 1489 | |
Maxim Shchetynin | 8a36e45 | 2005-09-13 21:50:38 +0200 | [diff] [blame] | 1490 | zfcp_san_dbf_event_incoming_els(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | if (els_type == LS_PLOGI) |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1492 | zfcp_fsf_incoming_els_plogi(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | else if (els_type == LS_LOGO) |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1494 | zfcp_fsf_incoming_els_logo(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1495 | else if ((els_type & 0xffff0000) == LS_RSCN) |
| 1496 | /* we are only concerned with the command, not the length */ |
Martin Peschke | 9467a9b | 2008-03-27 14:22:03 +0100 | [diff] [blame] | 1497 | zfcp_fsf_incoming_els_rscn(fsf_req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | else |
| 1499 | zfcp_fsf_incoming_els_unknown(adapter, status_buffer); |
| 1500 | } |
| 1501 | |
| 1502 | |
| 1503 | /** |
| 1504 | * zfcp_gid_pn_buffers_alloc - allocate buffers for GID_PN nameserver request |
| 1505 | * @gid_pn: pointer to return pointer to struct zfcp_gid_pn_data |
| 1506 | * @pool: pointer to mempool_t if non-null memory pool is used for allocation |
| 1507 | */ |
| 1508 | static int |
| 1509 | zfcp_gid_pn_buffers_alloc(struct zfcp_gid_pn_data **gid_pn, mempool_t *pool) |
| 1510 | { |
| 1511 | struct zfcp_gid_pn_data *data; |
| 1512 | |
| 1513 | if (pool != NULL) { |
| 1514 | data = mempool_alloc(pool, GFP_ATOMIC); |
| 1515 | if (likely(data != NULL)) { |
| 1516 | data->ct.pool = pool; |
| 1517 | } |
| 1518 | } else { |
Heiko Carstens | 47b87b7 | 2007-08-08 10:47:10 +0200 | [diff] [blame] | 1519 | data = kmem_cache_alloc(zfcp_data.gid_pn_cache, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | } |
| 1521 | |
| 1522 | if (NULL == data) |
| 1523 | return -ENOMEM; |
| 1524 | |
| 1525 | memset(data, 0, sizeof(*data)); |
Heiko Carstens | de58d94 | 2007-10-24 08:45:35 +0200 | [diff] [blame] | 1526 | sg_init_table(&data->req , 1); |
| 1527 | sg_init_table(&data->resp , 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | data->ct.req = &data->req; |
| 1529 | data->ct.resp = &data->resp; |
| 1530 | data->ct.req_count = data->ct.resp_count = 1; |
Jens Axboe | 642f14903 | 2007-10-24 11:20:47 +0200 | [diff] [blame] | 1531 | zfcp_address_to_sg(&data->ct_iu_req, &data->req, sizeof(struct ct_iu_gid_pn_req)); |
| 1532 | zfcp_address_to_sg(&data->ct_iu_resp, &data->resp, sizeof(struct ct_iu_gid_pn_resp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | |
| 1534 | *gid_pn = data; |
| 1535 | return 0; |
| 1536 | } |
| 1537 | |
| 1538 | /** |
| 1539 | * zfcp_gid_pn_buffers_free - free buffers for GID_PN nameserver request |
| 1540 | * @gid_pn: pointer to struct zfcp_gid_pn_data which has to be freed |
| 1541 | */ |
Heiko Carstens | aa551da | 2007-07-18 10:55:10 +0200 | [diff] [blame] | 1542 | static void zfcp_gid_pn_buffers_free(struct zfcp_gid_pn_data *gid_pn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { |
Heiko Carstens | aa551da | 2007-07-18 10:55:10 +0200 | [diff] [blame] | 1544 | if (gid_pn->ct.pool) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | mempool_free(gid_pn, gid_pn->ct.pool); |
| 1546 | else |
Heiko Carstens | 47b87b7 | 2007-08-08 10:47:10 +0200 | [diff] [blame] | 1547 | kmem_cache_free(zfcp_data.gid_pn_cache, gid_pn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1548 | } |
| 1549 | |
| 1550 | /** |
| 1551 | * zfcp_ns_gid_pn_request - initiate GID_PN nameserver request |
| 1552 | * @erp_action: pointer to zfcp_erp_action where GID_PN request is needed |
| 1553 | */ |
| 1554 | int |
| 1555 | zfcp_ns_gid_pn_request(struct zfcp_erp_action *erp_action) |
| 1556 | { |
| 1557 | int ret; |
| 1558 | struct ct_iu_gid_pn_req *ct_iu_req; |
| 1559 | struct zfcp_gid_pn_data *gid_pn; |
| 1560 | struct zfcp_adapter *adapter = erp_action->adapter; |
| 1561 | |
| 1562 | ret = zfcp_gid_pn_buffers_alloc(&gid_pn, adapter->pool.data_gid_pn); |
| 1563 | if (ret < 0) { |
| 1564 | ZFCP_LOG_INFO("error: buffer allocation for gid_pn nameserver " |
| 1565 | "request failed for adapter %s\n", |
| 1566 | zfcp_get_busid_by_adapter(adapter)); |
| 1567 | goto out; |
| 1568 | } |
| 1569 | |
| 1570 | /* setup nameserver request */ |
| 1571 | ct_iu_req = zfcp_sg_to_address(gid_pn->ct.req); |
| 1572 | ct_iu_req->header.revision = ZFCP_CT_REVISION; |
| 1573 | ct_iu_req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE; |
| 1574 | ct_iu_req->header.gs_subtype = ZFCP_CT_NAME_SERVER; |
| 1575 | ct_iu_req->header.options = ZFCP_CT_SYNCHRONOUS; |
| 1576 | ct_iu_req->header.cmd_rsp_code = ZFCP_CT_GID_PN; |
| 1577 | ct_iu_req->header.max_res_size = ZFCP_CT_MAX_SIZE; |
| 1578 | ct_iu_req->wwpn = erp_action->port->wwpn; |
| 1579 | |
| 1580 | /* setup parameters for send generic command */ |
| 1581 | gid_pn->ct.port = adapter->nameserver_port; |
| 1582 | gid_pn->ct.handler = zfcp_ns_gid_pn_handler; |
| 1583 | gid_pn->ct.handler_data = (unsigned long) gid_pn; |
| 1584 | gid_pn->ct.timeout = ZFCP_NS_GID_PN_TIMEOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1585 | gid_pn->port = erp_action->port; |
| 1586 | |
| 1587 | ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.fsf_req_erp, |
| 1588 | erp_action); |
| 1589 | if (ret) { |
| 1590 | ZFCP_LOG_INFO("error: initiation of gid_pn nameserver request " |
| 1591 | "failed for adapter %s\n", |
| 1592 | zfcp_get_busid_by_adapter(adapter)); |
| 1593 | |
| 1594 | zfcp_gid_pn_buffers_free(gid_pn); |
| 1595 | } |
| 1596 | |
| 1597 | out: |
| 1598 | return ret; |
| 1599 | } |
| 1600 | |
| 1601 | /** |
| 1602 | * zfcp_ns_gid_pn_handler - handler for GID_PN nameserver request |
| 1603 | * @data: unsigned long, contains pointer to struct zfcp_gid_pn_data |
| 1604 | */ |
| 1605 | static void zfcp_ns_gid_pn_handler(unsigned long data) |
| 1606 | { |
| 1607 | struct zfcp_port *port; |
| 1608 | struct zfcp_send_ct *ct; |
| 1609 | struct ct_iu_gid_pn_req *ct_iu_req; |
| 1610 | struct ct_iu_gid_pn_resp *ct_iu_resp; |
| 1611 | struct zfcp_gid_pn_data *gid_pn; |
| 1612 | |
| 1613 | |
| 1614 | gid_pn = (struct zfcp_gid_pn_data *) data; |
| 1615 | port = gid_pn->port; |
| 1616 | ct = &gid_pn->ct; |
| 1617 | ct_iu_req = zfcp_sg_to_address(ct->req); |
| 1618 | ct_iu_resp = zfcp_sg_to_address(ct->resp); |
| 1619 | |
Andreas Herrmann | 66c8684 | 2005-06-13 13:13:45 +0200 | [diff] [blame] | 1620 | if (ct->status != 0) |
| 1621 | goto failed; |
| 1622 | |
| 1623 | if (zfcp_check_ct_response(&ct_iu_resp->header)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | /* FIXME: do we need some specific erp entry points */ |
| 1625 | atomic_set_mask(ZFCP_STATUS_PORT_INVALID_WWPN, &port->status); |
| 1626 | goto failed; |
| 1627 | } |
| 1628 | /* paranoia */ |
| 1629 | if (ct_iu_req->wwpn != port->wwpn) { |
| 1630 | ZFCP_LOG_NORMAL("bug: wwpn 0x%016Lx returned by nameserver " |
| 1631 | "lookup does not match expected wwpn 0x%016Lx " |
| 1632 | "for adapter %s\n", ct_iu_req->wwpn, port->wwpn, |
| 1633 | zfcp_get_busid_by_port(port)); |
| 1634 | goto mismatch; |
| 1635 | } |
| 1636 | |
| 1637 | /* looks like a valid d_id */ |
| 1638 | port->d_id = ct_iu_resp->d_id & ZFCP_DID_MASK; |
| 1639 | atomic_set_mask(ZFCP_STATUS_PORT_DID_DID, &port->status); |
Christof Schmitt | 1d589ed | 2007-05-08 11:14:41 +0200 | [diff] [blame] | 1640 | ZFCP_LOG_DEBUG("adapter %s: wwpn=0x%016Lx ---> d_id=0x%06x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | zfcp_get_busid_by_port(port), port->wwpn, port->d_id); |
| 1642 | goto out; |
| 1643 | |
| 1644 | mismatch: |
| 1645 | ZFCP_LOG_DEBUG("CT IUs do not match:\n"); |
| 1646 | ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG, (char *) ct_iu_req, |
| 1647 | sizeof(struct ct_iu_gid_pn_req)); |
| 1648 | ZFCP_HEX_DUMP(ZFCP_LOG_LEVEL_DEBUG, (char *) ct_iu_resp, |
| 1649 | sizeof(struct ct_iu_gid_pn_resp)); |
| 1650 | |
| 1651 | failed: |
| 1652 | ZFCP_LOG_NORMAL("warning: failed gid_pn nameserver request for wwpn " |
| 1653 | "0x%016Lx for adapter %s\n", |
| 1654 | port->wwpn, zfcp_get_busid_by_port(port)); |
| 1655 | out: |
| 1656 | zfcp_gid_pn_buffers_free(gid_pn); |
| 1657 | return; |
| 1658 | } |
| 1659 | |
| 1660 | /* reject CT_IU reason codes acc. to FC-GS-4 */ |
| 1661 | static const struct zfcp_rc_entry zfcp_ct_rc[] = { |
| 1662 | {0x01, "invalid command code"}, |
| 1663 | {0x02, "invalid version level"}, |
| 1664 | {0x03, "logical error"}, |
| 1665 | {0x04, "invalid CT_IU size"}, |
| 1666 | {0x05, "logical busy"}, |
| 1667 | {0x07, "protocol error"}, |
| 1668 | {0x09, "unable to perform command request"}, |
| 1669 | {0x0b, "command not supported"}, |
| 1670 | {0x0d, "server not available"}, |
| 1671 | {0x0e, "session could not be established"}, |
| 1672 | {0xff, "vendor specific error"}, |
| 1673 | {0, NULL}, |
| 1674 | }; |
| 1675 | |
| 1676 | /* LS_RJT reason codes acc. to FC-FS */ |
| 1677 | static const struct zfcp_rc_entry zfcp_ls_rjt_rc[] = { |
| 1678 | {0x01, "invalid LS_Command code"}, |
| 1679 | {0x03, "logical error"}, |
| 1680 | {0x05, "logical busy"}, |
| 1681 | {0x07, "protocol error"}, |
| 1682 | {0x09, "unable to perform command request"}, |
| 1683 | {0x0b, "command not supported"}, |
| 1684 | {0x0e, "command already in progress"}, |
| 1685 | {0xff, "vendor specific error"}, |
| 1686 | {0, NULL}, |
| 1687 | }; |
| 1688 | |
| 1689 | /* reject reason codes according to FC-PH/FC-FS */ |
| 1690 | static const struct zfcp_rc_entry zfcp_p_rjt_rc[] = { |
| 1691 | {0x01, "invalid D_ID"}, |
| 1692 | {0x02, "invalid S_ID"}, |
| 1693 | {0x03, "Nx_Port not available, temporary"}, |
| 1694 | {0x04, "Nx_Port not available, permament"}, |
| 1695 | {0x05, "class not supported"}, |
| 1696 | {0x06, "delimiter usage error"}, |
| 1697 | {0x07, "TYPE not supported"}, |
| 1698 | {0x08, "invalid Link_Control"}, |
| 1699 | {0x09, "invalid R_CTL field"}, |
| 1700 | {0x0a, "invalid F_CTL field"}, |
| 1701 | {0x0b, "invalid OX_ID"}, |
| 1702 | {0x0c, "invalid RX_ID"}, |
| 1703 | {0x0d, "invalid SEQ_ID"}, |
| 1704 | {0x0e, "invalid DF_CTL"}, |
| 1705 | {0x0f, "invalid SEQ_CNT"}, |
| 1706 | {0x10, "invalid parameter field"}, |
| 1707 | {0x11, "exchange error"}, |
| 1708 | {0x12, "protocol error"}, |
| 1709 | {0x13, "incorrect length"}, |
| 1710 | {0x14, "unsupported ACK"}, |
| 1711 | {0x15, "class of service not supported by entity at FFFFFE"}, |
| 1712 | {0x16, "login required"}, |
| 1713 | {0x17, "excessive sequences attempted"}, |
| 1714 | {0x18, "unable to establish exchange"}, |
| 1715 | {0x1a, "fabric path not available"}, |
| 1716 | {0x1b, "invalid VC_ID (class 4)"}, |
| 1717 | {0x1c, "invalid CS_CTL field"}, |
| 1718 | {0x1d, "insufficient resources for VC (class 4)"}, |
| 1719 | {0x1f, "invalid class of service"}, |
| 1720 | {0x20, "preemption request rejected"}, |
| 1721 | {0x21, "preemption not enabled"}, |
| 1722 | {0x22, "multicast error"}, |
| 1723 | {0x23, "multicast error terminate"}, |
| 1724 | {0x24, "process login required"}, |
| 1725 | {0xff, "vendor specific reject"}, |
| 1726 | {0, NULL}, |
| 1727 | }; |
| 1728 | |
| 1729 | /** |
| 1730 | * zfcp_rc_description - return description for given reaon code |
| 1731 | * @code: reason code |
| 1732 | * @rc_table: table of reason codes and descriptions |
| 1733 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 1734 | static const char * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | zfcp_rc_description(u8 code, const struct zfcp_rc_entry *rc_table) |
| 1736 | { |
| 1737 | const char *descr = "unknown reason code"; |
| 1738 | |
| 1739 | do { |
| 1740 | if (code == rc_table->code) { |
| 1741 | descr = rc_table->description; |
| 1742 | break; |
| 1743 | } |
| 1744 | rc_table++; |
| 1745 | } while (rc_table->code && rc_table->description); |
| 1746 | |
| 1747 | return descr; |
| 1748 | } |
| 1749 | |
| 1750 | /** |
| 1751 | * zfcp_check_ct_response - evaluate reason code for CT_IU |
| 1752 | * @rjt: response payload to an CT_IU request |
| 1753 | * Return: 0 for accept CT_IU, 1 for reject CT_IU or invlid response code |
| 1754 | */ |
| 1755 | int |
| 1756 | zfcp_check_ct_response(struct ct_hdr *rjt) |
| 1757 | { |
| 1758 | if (rjt->cmd_rsp_code == ZFCP_CT_ACCEPT) |
| 1759 | return 0; |
| 1760 | |
| 1761 | if (rjt->cmd_rsp_code != ZFCP_CT_REJECT) { |
| 1762 | ZFCP_LOG_NORMAL("error: invalid Generic Service command/" |
| 1763 | "response code (0x%04hx)\n", |
| 1764 | rjt->cmd_rsp_code); |
| 1765 | return 1; |
| 1766 | } |
| 1767 | |
| 1768 | ZFCP_LOG_INFO("Generic Service command rejected\n"); |
| 1769 | ZFCP_LOG_INFO("%s (0x%02x, 0x%02x, 0x%02x)\n", |
| 1770 | zfcp_rc_description(rjt->reason_code, zfcp_ct_rc), |
| 1771 | (u32) rjt->reason_code, (u32) rjt->reason_code_expl, |
| 1772 | (u32) rjt->vendor_unique); |
| 1773 | |
| 1774 | return 1; |
| 1775 | } |
| 1776 | |
| 1777 | /** |
| 1778 | * zfcp_print_els_rjt - print reject parameter and description for ELS reject |
| 1779 | * @rjt_par: reject parameter acc. to FC-PH/FC-FS |
| 1780 | * @rc_table: table of reason codes and descriptions |
| 1781 | */ |
Heiko Carstens | 4d284ca | 2007-02-05 21:18:53 +0100 | [diff] [blame] | 1782 | static void |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | zfcp_print_els_rjt(struct zfcp_ls_rjt_par *rjt_par, |
| 1784 | const struct zfcp_rc_entry *rc_table) |
| 1785 | { |
| 1786 | ZFCP_LOG_INFO("%s (%02x %02x %02x %02x)\n", |
| 1787 | zfcp_rc_description(rjt_par->reason_code, rc_table), |
| 1788 | (u32) rjt_par->action, (u32) rjt_par->reason_code, |
| 1789 | (u32) rjt_par->reason_expl, (u32) rjt_par->vendor_unique); |
| 1790 | } |
| 1791 | |
| 1792 | /** |
| 1793 | * zfcp_fsf_handle_els_rjt - evaluate status qualifier/reason code on ELS reject |
| 1794 | * @sq: status qualifier word |
| 1795 | * @rjt_par: reject parameter as described in FC-PH and FC-FS |
| 1796 | * Return: -EROMTEIO for LS_RJT, -EREMCHG for invalid D_ID, -EIO else |
| 1797 | */ |
| 1798 | int |
| 1799 | zfcp_handle_els_rjt(u32 sq, struct zfcp_ls_rjt_par *rjt_par) |
| 1800 | { |
| 1801 | int ret = -EIO; |
| 1802 | |
| 1803 | if (sq == FSF_IOSTAT_NPORT_RJT) { |
| 1804 | ZFCP_LOG_INFO("ELS rejected (P_RJT)\n"); |
| 1805 | zfcp_print_els_rjt(rjt_par, zfcp_p_rjt_rc); |
| 1806 | /* invalid d_id */ |
| 1807 | if (rjt_par->reason_code == 0x01) |
| 1808 | ret = -EREMCHG; |
| 1809 | } else if (sq == FSF_IOSTAT_FABRIC_RJT) { |
| 1810 | ZFCP_LOG_INFO("ELS rejected (F_RJT)\n"); |
| 1811 | zfcp_print_els_rjt(rjt_par, zfcp_p_rjt_rc); |
| 1812 | /* invalid d_id */ |
| 1813 | if (rjt_par->reason_code == 0x01) |
| 1814 | ret = -EREMCHG; |
| 1815 | } else if (sq == FSF_IOSTAT_LS_RJT) { |
| 1816 | ZFCP_LOG_INFO("ELS rejected (LS_RJT)\n"); |
| 1817 | zfcp_print_els_rjt(rjt_par, zfcp_ls_rjt_rc); |
| 1818 | ret = -EREMOTEIO; |
| 1819 | } else |
| 1820 | ZFCP_LOG_INFO("unexpected SQ: 0x%02x\n", sq); |
| 1821 | |
| 1822 | return ret; |
| 1823 | } |
| 1824 | |
Ralph Wuerthner | 75bfc28 | 2006-05-22 18:24:33 +0200 | [diff] [blame] | 1825 | /** |
| 1826 | * zfcp_plogi_evaluate - evaluate PLOGI playload and copy important fields |
| 1827 | * into zfcp_port structure |
| 1828 | * @port: zfcp_port structure |
| 1829 | * @plogi: plogi payload |
| 1830 | */ |
| 1831 | void |
| 1832 | zfcp_plogi_evaluate(struct zfcp_port *port, struct fsf_plogi *plogi) |
| 1833 | { |
| 1834 | port->maxframe_size = plogi->serv_param.common_serv_param[7] | |
| 1835 | ((plogi->serv_param.common_serv_param[6] & 0x0F) << 8); |
| 1836 | if (plogi->serv_param.class1_serv_param[0] & 0x80) |
| 1837 | port->supported_classes |= FC_COS_CLASS1; |
| 1838 | if (plogi->serv_param.class2_serv_param[0] & 0x80) |
| 1839 | port->supported_classes |= FC_COS_CLASS2; |
| 1840 | if (plogi->serv_param.class3_serv_param[0] & 0x80) |
| 1841 | port->supported_classes |= FC_COS_CLASS3; |
| 1842 | if (plogi->serv_param.class4_serv_param[0] & 0x80) |
| 1843 | port->supported_classes |= FC_COS_CLASS4; |
| 1844 | } |
| 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | #undef ZFCP_LOG_AREA |