/drivers/s390/scsi/zfcp_aux.c

https://bitbucket.org/evzijst/gittest · C · 1977 lines · 1390 code · 275 blank · 312 comment · 217 complexity · 047704748c2783cd0f66007e2cd4960a MD5 · raw file

Large files are truncated click here to view the full file

  1. /*
  2. *
  3. * linux/drivers/s390/scsi/zfcp_aux.c
  4. *
  5. * FCP adapter driver for IBM eServer zSeries
  6. *
  7. * (C) Copyright IBM Corp. 2002, 2004
  8. *
  9. * Author(s): Martin Peschke <mpeschke@de.ibm.com>
  10. * Raimund Schroeder <raimund.schroeder@de.ibm.com>
  11. * Aron Zeh
  12. * Wolfgang Taphorn
  13. * Stefan Bader <stefan.bader@de.ibm.com>
  14. * Heiko Carstens <heiko.carstens@de.ibm.com>
  15. * Andreas Herrmann <aherrman@de.ibm.com>
  16. *
  17. * This program is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License as published by
  19. * the Free Software Foundation; either version 2, or (at your option)
  20. * any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with this program; if not, write to the Free Software
  29. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  30. */
  31. #define ZFCP_AUX_REVISION "$Revision: 1.145 $"
  32. #include "zfcp_ext.h"
  33. /* accumulated log level (module parameter) */
  34. static u32 loglevel = ZFCP_LOG_LEVEL_DEFAULTS;
  35. static char *device;
  36. /*********************** FUNCTION PROTOTYPES *********************************/
  37. /* written against the module interface */
  38. static int __init zfcp_module_init(void);
  39. /* FCP related */
  40. static void zfcp_ns_gid_pn_handler(unsigned long);
  41. /* miscellaneous */
  42. static inline int zfcp_sg_list_alloc(struct zfcp_sg_list *, size_t);
  43. static inline void zfcp_sg_list_free(struct zfcp_sg_list *);
  44. static inline int zfcp_sg_list_copy_from_user(struct zfcp_sg_list *,
  45. void __user *, size_t);
  46. static inline int zfcp_sg_list_copy_to_user(void __user *,
  47. struct zfcp_sg_list *, size_t);
  48. static int zfcp_cfdc_dev_ioctl(struct inode *, struct file *,
  49. unsigned int, unsigned long);
  50. #define ZFCP_CFDC_IOC_MAGIC 0xDD
  51. #define ZFCP_CFDC_IOC \
  52. _IOWR(ZFCP_CFDC_IOC_MAGIC, 0, struct zfcp_cfdc_sense_data)
  53. #ifdef CONFIG_COMPAT
  54. static struct ioctl_trans zfcp_ioctl_trans = {ZFCP_CFDC_IOC, (void*) sys_ioctl};
  55. #endif
  56. static struct file_operations zfcp_cfdc_fops = {
  57. .ioctl = zfcp_cfdc_dev_ioctl
  58. };
  59. static struct miscdevice zfcp_cfdc_misc = {
  60. .minor = ZFCP_CFDC_DEV_MINOR,
  61. .name = ZFCP_CFDC_DEV_NAME,
  62. .fops = &zfcp_cfdc_fops
  63. };
  64. /*********************** KERNEL/MODULE PARAMETERS ***************************/
  65. /* declare driver module init/cleanup functions */
  66. module_init(zfcp_module_init);
  67. MODULE_AUTHOR("Heiko Carstens <heiko.carstens@de.ibm.com>, "
  68. "Andreas Herrman <aherrman@de.ibm.com>, "
  69. "Martin Peschke <mpeschke@de.ibm.com>, "
  70. "Raimund Schroeder <raimund.schroeder@de.ibm.com>, "
  71. "Wolfgang Taphorn <taphorn@de.ibm.com>, "
  72. "Aron Zeh <arzeh@de.ibm.com>, "
  73. "IBM Deutschland Entwicklung GmbH");
  74. MODULE_DESCRIPTION
  75. ("FCP (SCSI over Fibre Channel) HBA driver for IBM eServer zSeries");
  76. MODULE_LICENSE("GPL");
  77. module_param(device, charp, 0);
  78. MODULE_PARM_DESC(device, "specify initial device");
  79. module_param(loglevel, uint, 0);
  80. MODULE_PARM_DESC(loglevel,
  81. "log levels, 8 nibbles: "
  82. "FC ERP QDIO CIO Config FSF SCSI Other, "
  83. "levels: 0=none 1=normal 2=devel 3=trace");
  84. #ifdef ZFCP_PRINT_FLAGS
  85. u32 flags_dump = 0;
  86. module_param(flags_dump, uint, 0);
  87. #endif
  88. /****************************************************************/
  89. /************** Functions without logging ***********************/
  90. /****************************************************************/
  91. void
  92. _zfcp_hex_dump(char *addr, int count)
  93. {
  94. int i;
  95. for (i = 0; i < count; i++) {
  96. printk("%02x", addr[i]);
  97. if ((i % 4) == 3)
  98. printk(" ");
  99. if ((i % 32) == 31)
  100. printk("\n");
  101. }
  102. if (((i-1) % 32) != 31)
  103. printk("\n");
  104. }
  105. /****************************************************************/
  106. /************** Uncategorised Functions *************************/
  107. /****************************************************************/
  108. #define ZFCP_LOG_AREA ZFCP_LOG_AREA_OTHER
  109. static inline int
  110. zfcp_fsf_req_is_scsi_cmnd(struct zfcp_fsf_req *fsf_req)
  111. {
  112. return ((fsf_req->fsf_command == FSF_QTCB_FCP_CMND) &&
  113. !(fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT));
  114. }
  115. void
  116. zfcp_cmd_dbf_event_fsf(const char *text, struct zfcp_fsf_req *fsf_req,
  117. void *add_data, int add_length)
  118. {
  119. struct zfcp_adapter *adapter = fsf_req->adapter;
  120. struct scsi_cmnd *scsi_cmnd;
  121. int level = 3;
  122. int i;
  123. unsigned long flags;
  124. spin_lock_irqsave(&adapter->dbf_lock, flags);
  125. if (zfcp_fsf_req_is_scsi_cmnd(fsf_req)) {
  126. scsi_cmnd = fsf_req->data.send_fcp_command_task.scsi_cmnd;
  127. debug_text_event(adapter->cmd_dbf, level, "fsferror");
  128. debug_text_event(adapter->cmd_dbf, level, text);
  129. debug_event(adapter->cmd_dbf, level, &fsf_req,
  130. sizeof (unsigned long));
  131. debug_event(adapter->cmd_dbf, level, &fsf_req->seq_no,
  132. sizeof (u32));
  133. debug_event(adapter->cmd_dbf, level, &scsi_cmnd,
  134. sizeof (unsigned long));
  135. debug_event(adapter->cmd_dbf, level, &scsi_cmnd->cmnd,
  136. min(ZFCP_CMD_DBF_LENGTH, (int)scsi_cmnd->cmd_len));
  137. for (i = 0; i < add_length; i += ZFCP_CMD_DBF_LENGTH)
  138. debug_event(adapter->cmd_dbf,
  139. level,
  140. (char *) add_data + i,
  141. min(ZFCP_CMD_DBF_LENGTH, add_length - i));
  142. }
  143. spin_unlock_irqrestore(&adapter->dbf_lock, flags);
  144. }
  145. /* XXX additionally log unit if available */
  146. /* ---> introduce new parameter for unit, see 2.4 code */
  147. void
  148. zfcp_cmd_dbf_event_scsi(const char *text, struct scsi_cmnd *scsi_cmnd)
  149. {
  150. struct zfcp_adapter *adapter;
  151. union zfcp_req_data *req_data;
  152. struct zfcp_fsf_req *fsf_req;
  153. int level = ((host_byte(scsi_cmnd->result) != 0) ? 1 : 5);
  154. unsigned long flags;
  155. adapter = (struct zfcp_adapter *) scsi_cmnd->device->host->hostdata[0];
  156. req_data = (union zfcp_req_data *) scsi_cmnd->host_scribble;
  157. fsf_req = (req_data ? req_data->send_fcp_command_task.fsf_req : NULL);
  158. spin_lock_irqsave(&adapter->dbf_lock, flags);
  159. debug_text_event(adapter->cmd_dbf, level, "hostbyte");
  160. debug_text_event(adapter->cmd_dbf, level, text);
  161. debug_event(adapter->cmd_dbf, level, &scsi_cmnd->result, sizeof (u32));
  162. debug_event(adapter->cmd_dbf, level, &scsi_cmnd,
  163. sizeof (unsigned long));
  164. debug_event(adapter->cmd_dbf, level, &scsi_cmnd->cmnd,
  165. min(ZFCP_CMD_DBF_LENGTH, (int)scsi_cmnd->cmd_len));
  166. if (likely(fsf_req)) {
  167. debug_event(adapter->cmd_dbf, level, &fsf_req,
  168. sizeof (unsigned long));
  169. debug_event(adapter->cmd_dbf, level, &fsf_req->seq_no,
  170. sizeof (u32));
  171. } else {
  172. debug_text_event(adapter->cmd_dbf, level, "");
  173. debug_text_event(adapter->cmd_dbf, level, "");
  174. }
  175. spin_unlock_irqrestore(&adapter->dbf_lock, flags);
  176. }
  177. void
  178. zfcp_in_els_dbf_event(struct zfcp_adapter *adapter, const char *text,
  179. struct fsf_status_read_buffer *status_buffer, int length)
  180. {
  181. int level = 1;
  182. int i;
  183. debug_text_event(adapter->in_els_dbf, level, text);
  184. debug_event(adapter->in_els_dbf, level, &status_buffer->d_id, 8);
  185. for (i = 0; i < length; i += ZFCP_IN_ELS_DBF_LENGTH)
  186. debug_event(adapter->in_els_dbf,
  187. level,
  188. (char *) status_buffer->payload + i,
  189. min(ZFCP_IN_ELS_DBF_LENGTH, length - i));
  190. }
  191. /**
  192. * zfcp_device_setup - setup function
  193. * @str: pointer to parameter string
  194. *
  195. * Parse "device=..." parameter string.
  196. */
  197. static int __init
  198. zfcp_device_setup(char *str)
  199. {
  200. char *tmp;
  201. if (!str)
  202. return 0;
  203. tmp = strchr(str, ',');
  204. if (!tmp)
  205. goto err_out;
  206. *tmp++ = '\0';
  207. strncpy(zfcp_data.init_busid, str, BUS_ID_SIZE);
  208. zfcp_data.init_busid[BUS_ID_SIZE-1] = '\0';
  209. zfcp_data.init_wwpn = simple_strtoull(tmp, &tmp, 0);
  210. if (*tmp++ != ',')
  211. goto err_out;
  212. if (*tmp == '\0')
  213. goto err_out;
  214. zfcp_data.init_fcp_lun = simple_strtoull(tmp, &tmp, 0);
  215. if (*tmp != '\0')
  216. goto err_out;
  217. return 1;
  218. err_out:
  219. ZFCP_LOG_NORMAL("Parse error for device parameter string %s\n", str);
  220. return 0;
  221. }
  222. static void __init
  223. zfcp_init_device_configure(void)
  224. {
  225. struct zfcp_adapter *adapter;
  226. struct zfcp_port *port;
  227. struct zfcp_unit *unit;
  228. down(&zfcp_data.config_sema);
  229. read_lock_irq(&zfcp_data.config_lock);
  230. adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
  231. if (adapter)
  232. zfcp_adapter_get(adapter);
  233. read_unlock_irq(&zfcp_data.config_lock);
  234. if (adapter == NULL)
  235. goto out_adapter;
  236. port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
  237. if (!port)
  238. goto out_port;
  239. unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
  240. if (!unit)
  241. goto out_unit;
  242. up(&zfcp_data.config_sema);
  243. ccw_device_set_online(adapter->ccw_device);
  244. zfcp_erp_wait(adapter);
  245. down(&zfcp_data.config_sema);
  246. zfcp_unit_put(unit);
  247. out_unit:
  248. zfcp_port_put(port);
  249. out_port:
  250. zfcp_adapter_put(adapter);
  251. out_adapter:
  252. up(&zfcp_data.config_sema);
  253. return;
  254. }
  255. static int __init
  256. zfcp_module_init(void)
  257. {
  258. int retval = 0;
  259. atomic_set(&zfcp_data.loglevel, loglevel);
  260. /* initialize adapter list */
  261. INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
  262. /* initialize adapters to be removed list head */
  263. INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh);
  264. zfcp_transport_template = fc_attach_transport(&zfcp_transport_functions);
  265. if (!zfcp_transport_template)
  266. return -ENODEV;
  267. retval = register_ioctl32_conversion(zfcp_ioctl_trans.cmd,
  268. zfcp_ioctl_trans.handler);
  269. if (retval != 0) {
  270. ZFCP_LOG_INFO("registration of ioctl32 conversion failed\n");
  271. goto out;
  272. }
  273. retval = misc_register(&zfcp_cfdc_misc);
  274. if (retval != 0) {
  275. ZFCP_LOG_INFO("registration of misc device "
  276. "zfcp_cfdc failed\n");
  277. goto out_misc_register;
  278. } else {
  279. ZFCP_LOG_TRACE("major/minor for zfcp_cfdc: %d/%d\n",
  280. ZFCP_CFDC_DEV_MAJOR, zfcp_cfdc_misc.minor);
  281. }
  282. /* Initialise proc semaphores */
  283. sema_init(&zfcp_data.config_sema, 1);
  284. /* initialise configuration rw lock */
  285. rwlock_init(&zfcp_data.config_lock);
  286. /* save address of data structure managing the driver module */
  287. zfcp_data.scsi_host_template.module = THIS_MODULE;
  288. /* setup dynamic I/O */
  289. retval = zfcp_ccw_register();
  290. if (retval) {
  291. ZFCP_LOG_NORMAL("registration with common I/O layer failed\n");
  292. goto out_ccw_register;
  293. }
  294. if (zfcp_device_setup(device))
  295. zfcp_init_device_configure();
  296. goto out;
  297. out_ccw_register:
  298. misc_deregister(&zfcp_cfdc_misc);
  299. out_misc_register:
  300. unregister_ioctl32_conversion(zfcp_ioctl_trans.cmd);
  301. out:
  302. return retval;
  303. }
  304. /*
  305. * function: zfcp_cfdc_dev_ioctl
  306. *
  307. * purpose: Handle control file upload/download transaction via IOCTL
  308. * interface
  309. *
  310. * returns: 0 - Operation completed successfuly
  311. * -ENOTTY - Unknown IOCTL command
  312. * -EINVAL - Invalid sense data record
  313. * -ENXIO - The FCP adapter is not available
  314. * -EOPNOTSUPP - The FCP adapter does not have CFDC support
  315. * -ENOMEM - Insufficient memory
  316. * -EFAULT - User space memory I/O operation fault
  317. * -EPERM - Cannot create or queue FSF request or create SBALs
  318. * -ERESTARTSYS- Received signal (is mapped to EAGAIN by VFS)
  319. */
  320. static int
  321. zfcp_cfdc_dev_ioctl(struct inode *inode, struct file *file,
  322. unsigned int command, unsigned long buffer)
  323. {
  324. struct zfcp_cfdc_sense_data *sense_data, __user *sense_data_user;
  325. struct zfcp_adapter *adapter = NULL;
  326. struct zfcp_fsf_req *fsf_req = NULL;
  327. struct zfcp_sg_list *sg_list = NULL;
  328. u32 fsf_command, option;
  329. char *bus_id = NULL;
  330. int retval = 0;
  331. sense_data = kmalloc(sizeof(struct zfcp_cfdc_sense_data), GFP_KERNEL);
  332. if (sense_data == NULL) {
  333. retval = -ENOMEM;
  334. goto out;
  335. }
  336. sg_list = kmalloc(sizeof(struct zfcp_sg_list), GFP_KERNEL);
  337. if (sg_list == NULL) {
  338. retval = -ENOMEM;
  339. goto out;
  340. }
  341. memset(sg_list, 0, sizeof(*sg_list));
  342. if (command != ZFCP_CFDC_IOC) {
  343. ZFCP_LOG_INFO("IOC request code 0x%x invalid\n", command);
  344. retval = -ENOTTY;
  345. goto out;
  346. }
  347. if ((sense_data_user = (void __user *) buffer) == NULL) {
  348. ZFCP_LOG_INFO("sense data record is required\n");
  349. retval = -EINVAL;
  350. goto out;
  351. }
  352. retval = copy_from_user(sense_data, sense_data_user,
  353. sizeof(struct zfcp_cfdc_sense_data));
  354. if (retval) {
  355. retval = -EFAULT;
  356. goto out;
  357. }
  358. if (sense_data->signature != ZFCP_CFDC_SIGNATURE) {
  359. ZFCP_LOG_INFO("invalid sense data request signature 0x%08x\n",
  360. ZFCP_CFDC_SIGNATURE);
  361. retval = -EINVAL;
  362. goto out;
  363. }
  364. switch (sense_data->command) {
  365. case ZFCP_CFDC_CMND_DOWNLOAD_NORMAL:
  366. fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE;
  367. option = FSF_CFDC_OPTION_NORMAL_MODE;
  368. break;
  369. case ZFCP_CFDC_CMND_DOWNLOAD_FORCE:
  370. fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE;
  371. option = FSF_CFDC_OPTION_FORCE;
  372. break;
  373. case ZFCP_CFDC_CMND_FULL_ACCESS:
  374. fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE;
  375. option = FSF_CFDC_OPTION_FULL_ACCESS;
  376. break;
  377. case ZFCP_CFDC_CMND_RESTRICTED_ACCESS:
  378. fsf_command = FSF_QTCB_DOWNLOAD_CONTROL_FILE;
  379. option = FSF_CFDC_OPTION_RESTRICTED_ACCESS;
  380. break;
  381. case ZFCP_CFDC_CMND_UPLOAD:
  382. fsf_command = FSF_QTCB_UPLOAD_CONTROL_FILE;
  383. option = 0;
  384. break;
  385. default:
  386. ZFCP_LOG_INFO("invalid command code 0x%08x\n",
  387. sense_data->command);
  388. retval = -EINVAL;
  389. goto out;
  390. }
  391. bus_id = kmalloc(BUS_ID_SIZE, GFP_KERNEL);
  392. if (bus_id == NULL) {
  393. retval = -ENOMEM;
  394. goto out;
  395. }
  396. snprintf(bus_id, BUS_ID_SIZE, "%d.%d.%04x",
  397. (sense_data->devno >> 24),
  398. (sense_data->devno >> 16) & 0xFF,
  399. (sense_data->devno & 0xFFFF));
  400. read_lock_irq(&zfcp_data.config_lock);
  401. adapter = zfcp_get_adapter_by_busid(bus_id);
  402. if (adapter)
  403. zfcp_adapter_get(adapter);
  404. read_unlock_irq(&zfcp_data.config_lock);
  405. kfree(bus_id);
  406. if (adapter == NULL) {
  407. ZFCP_LOG_INFO("invalid adapter\n");
  408. retval = -ENXIO;
  409. goto out;
  410. }
  411. if (sense_data->command & ZFCP_CFDC_WITH_CONTROL_FILE) {
  412. retval = zfcp_sg_list_alloc(sg_list,
  413. ZFCP_CFDC_MAX_CONTROL_FILE_SIZE);
  414. if (retval) {
  415. retval = -ENOMEM;
  416. goto out;
  417. }
  418. }
  419. if ((sense_data->command & ZFCP_CFDC_DOWNLOAD) &&
  420. (sense_data->command & ZFCP_CFDC_WITH_CONTROL_FILE)) {
  421. retval = zfcp_sg_list_copy_from_user(
  422. sg_list, &sense_data_user->control_file,
  423. ZFCP_CFDC_MAX_CONTROL_FILE_SIZE);
  424. if (retval) {
  425. retval = -EFAULT;
  426. goto out;
  427. }
  428. }
  429. retval = zfcp_fsf_control_file(adapter, &fsf_req, fsf_command,
  430. option, sg_list);
  431. if (retval)
  432. goto out;
  433. if ((fsf_req->qtcb->prefix.prot_status != FSF_PROT_GOOD) &&
  434. (fsf_req->qtcb->prefix.prot_status != FSF_PROT_FSF_STATUS_PRESENTED)) {
  435. retval = -ENXIO;
  436. goto out;
  437. }
  438. sense_data->fsf_status = fsf_req->qtcb->header.fsf_status;
  439. memcpy(&sense_data->fsf_status_qual,
  440. &fsf_req->qtcb->header.fsf_status_qual,
  441. sizeof(union fsf_status_qual));
  442. memcpy(&sense_data->payloads, &fsf_req->qtcb->bottom.support.els, 256);
  443. retval = copy_to_user(sense_data_user, sense_data,
  444. sizeof(struct zfcp_cfdc_sense_data));
  445. if (retval) {
  446. retval = -EFAULT;
  447. goto out;
  448. }
  449. if (sense_data->command & ZFCP_CFDC_UPLOAD) {
  450. retval = zfcp_sg_list_copy_to_user(
  451. &sense_data_user->control_file, sg_list,
  452. ZFCP_CFDC_MAX_CONTROL_FILE_SIZE);
  453. if (retval) {
  454. retval = -EFAULT;
  455. goto out;
  456. }
  457. }
  458. out:
  459. if (fsf_req != NULL)
  460. zfcp_fsf_req_cleanup(fsf_req);
  461. if ((adapter != NULL) && (retval != -ENXIO))
  462. zfcp_adapter_put(adapter);
  463. if (sg_list != NULL) {
  464. zfcp_sg_list_free(sg_list);
  465. kfree(sg_list);
  466. }
  467. if (sense_data != NULL)
  468. kfree(sense_data);
  469. return retval;
  470. }
  471. /**
  472. * zfcp_sg_list_alloc - create a scatter-gather list of the specified size
  473. * @sg_list: structure describing a scatter gather list
  474. * @size: size of scatter-gather list
  475. * Return: 0 on success, else -ENOMEM
  476. *
  477. * In sg_list->sg a pointer to the created scatter-gather list is returned,
  478. * or NULL if we run out of memory. sg_list->count specifies the number of
  479. * elements of the scatter-gather list. The maximum size of a single element
  480. * in the scatter-gather list is PAGE_SIZE.
  481. */
  482. static inline int
  483. zfcp_sg_list_alloc(struct zfcp_sg_list *sg_list, size_t size)
  484. {
  485. struct scatterlist *sg;
  486. unsigned int i;
  487. int retval = 0;
  488. void *address;
  489. BUG_ON(sg_list == NULL);
  490. sg_list->count = size >> PAGE_SHIFT;
  491. if (size & ~PAGE_MASK)
  492. sg_list->count++;
  493. sg_list->sg = kmalloc(sg_list->count * sizeof(struct scatterlist),
  494. GFP_KERNEL);
  495. if (sg_list->sg == NULL) {
  496. sg_list->count = 0;
  497. retval = -ENOMEM;
  498. goto out;
  499. }
  500. memset(sg_list->sg, 0, sg_list->count * sizeof(struct scatterlist));
  501. for (i = 0, sg = sg_list->sg; i < sg_list->count; i++, sg++) {
  502. sg->length = min(size, PAGE_SIZE);
  503. sg->offset = 0;
  504. address = (void *) get_zeroed_page(GFP_KERNEL);
  505. if (address == NULL) {
  506. sg_list->count = i;
  507. zfcp_sg_list_free(sg_list);
  508. retval = -ENOMEM;
  509. goto out;
  510. }
  511. zfcp_address_to_sg(address, sg);
  512. size -= sg->length;
  513. }
  514. out:
  515. return retval;
  516. }
  517. /**
  518. * zfcp_sg_list_free - free memory of a scatter-gather list
  519. * @sg_list: structure describing a scatter-gather list
  520. *
  521. * Memory for each element in the scatter-gather list is freed.
  522. * Finally sg_list->sg is freed itself and sg_list->count is reset.
  523. */
  524. static inline void
  525. zfcp_sg_list_free(struct zfcp_sg_list *sg_list)
  526. {
  527. struct scatterlist *sg;
  528. unsigned int i;
  529. BUG_ON(sg_list == NULL);
  530. for (i = 0, sg = sg_list->sg; i < sg_list->count; i++, sg++)
  531. free_page((unsigned long) zfcp_sg_to_address(sg));
  532. sg_list->count = 0;
  533. kfree(sg_list->sg);
  534. }
  535. /**
  536. * zfcp_sg_size - determine size of a scatter-gather list
  537. * @sg: array of (struct scatterlist)
  538. * @sg_count: elements in array
  539. * Return: size of entire scatter-gather list
  540. */
  541. size_t
  542. zfcp_sg_size(struct scatterlist *sg, unsigned int sg_count)
  543. {
  544. unsigned int i;
  545. struct scatterlist *p;
  546. size_t size;
  547. size = 0;
  548. for (i = 0, p = sg; i < sg_count; i++, p++) {
  549. BUG_ON(p == NULL);
  550. size += p->length;
  551. }
  552. return size;
  553. }
  554. /**
  555. * zfcp_sg_list_copy_from_user -copy data from user space to scatter-gather list
  556. * @sg_list: structure describing a scatter-gather list
  557. * @user_buffer: pointer to buffer in user space
  558. * @size: number of bytes to be copied
  559. * Return: 0 on success, -EFAULT if copy_from_user fails.
  560. */
  561. static inline int
  562. zfcp_sg_list_copy_from_user(struct zfcp_sg_list *sg_list,
  563. void __user *user_buffer,
  564. size_t size)
  565. {
  566. struct scatterlist *sg;
  567. unsigned int length;
  568. void *zfcp_buffer;
  569. int retval = 0;
  570. BUG_ON(sg_list == NULL);
  571. if (zfcp_sg_size(sg_list->sg, sg_list->count) < size)
  572. return -EFAULT;
  573. for (sg = sg_list->sg; size > 0; sg++) {
  574. length = min((unsigned int)size, sg->length);
  575. zfcp_buffer = zfcp_sg_to_address(sg);
  576. if (copy_from_user(zfcp_buffer, user_buffer, length)) {
  577. retval = -EFAULT;
  578. goto out;
  579. }
  580. user_buffer += length;
  581. size -= length;
  582. }
  583. out:
  584. return retval;
  585. }
  586. /**
  587. * zfcp_sg_list_copy_to_user - copy data from scatter-gather list to user space
  588. * @user_buffer: pointer to buffer in user space
  589. * @sg_list: structure describing a scatter-gather list
  590. * @size: number of bytes to be copied
  591. * Return: 0 on success, -EFAULT if copy_to_user fails
  592. */
  593. static inline int
  594. zfcp_sg_list_copy_to_user(void __user *user_buffer,
  595. struct zfcp_sg_list *sg_list,
  596. size_t size)
  597. {
  598. struct scatterlist *sg;
  599. unsigned int length;
  600. void *zfcp_buffer;
  601. int retval = 0;
  602. BUG_ON(sg_list == NULL);
  603. if (zfcp_sg_size(sg_list->sg, sg_list->count) < size)
  604. return -EFAULT;
  605. for (sg = sg_list->sg; size > 0; sg++) {
  606. length = min((unsigned int) size, sg->length);
  607. zfcp_buffer = zfcp_sg_to_address(sg);
  608. if (copy_to_user(user_buffer, zfcp_buffer, length)) {
  609. retval = -EFAULT;
  610. goto out;
  611. }
  612. user_buffer += length;
  613. size -= length;
  614. }
  615. out:
  616. return retval;
  617. }
  618. #undef ZFCP_LOG_AREA
  619. /****************************************************************/
  620. /****** Functions for configuration/set-up of structures ********/
  621. /****************************************************************/
  622. #define ZFCP_LOG_AREA ZFCP_LOG_AREA_CONFIG
  623. /**
  624. * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
  625. * @port: pointer to port to search for unit
  626. * @fcp_lun: FCP LUN to search for
  627. * Traverse list of all units of a port and return pointer to a unit
  628. * with the given FCP LUN.
  629. */
  630. struct zfcp_unit *
  631. zfcp_get_unit_by_lun(struct zfcp_port *port, fcp_lun_t fcp_lun)
  632. {
  633. struct zfcp_unit *unit;
  634. int found = 0;
  635. list_for_each_entry(unit, &port->unit_list_head, list) {
  636. if ((unit->fcp_lun == fcp_lun) &&
  637. !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status))
  638. {
  639. found = 1;
  640. break;
  641. }
  642. }
  643. return found ? unit : NULL;
  644. }
  645. /**
  646. * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
  647. * @adapter: pointer to adapter to search for port
  648. * @wwpn: wwpn to search for
  649. * Traverse list of all ports of an adapter and return pointer to a port
  650. * with the given wwpn.
  651. */
  652. struct zfcp_port *
  653. zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter, wwn_t wwpn)
  654. {
  655. struct zfcp_port *port;
  656. int found = 0;
  657. list_for_each_entry(port, &adapter->port_list_head, list) {
  658. if ((port->wwpn == wwpn) &&
  659. !(atomic_read(&port->status) &
  660. (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE))) {
  661. found = 1;
  662. break;
  663. }
  664. }
  665. return found ? port : NULL;
  666. }
  667. /**
  668. * zfcp_get_port_by_did - find port in port list of adapter by d_id
  669. * @adapter: pointer to adapter to search for port
  670. * @d_id: d_id to search for
  671. * Traverse list of all ports of an adapter and return pointer to a port
  672. * with the given d_id.
  673. */
  674. struct zfcp_port *
  675. zfcp_get_port_by_did(struct zfcp_adapter *adapter, u32 d_id)
  676. {
  677. struct zfcp_port *port;
  678. int found = 0;
  679. list_for_each_entry(port, &adapter->port_list_head, list) {
  680. if ((port->d_id == d_id) &&
  681. !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status))
  682. {
  683. found = 1;
  684. break;
  685. }
  686. }
  687. return found ? port : NULL;
  688. }
  689. /**
  690. * zfcp_get_adapter_by_busid - find adpater in adapter list by bus_id
  691. * @bus_id: bus_id to search for
  692. * Traverse list of all adapters and return pointer to an adapter
  693. * with the given bus_id.
  694. */
  695. struct zfcp_adapter *
  696. zfcp_get_adapter_by_busid(char *bus_id)
  697. {
  698. struct zfcp_adapter *adapter;
  699. int found = 0;
  700. list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list) {
  701. if ((strncmp(bus_id, zfcp_get_busid_by_adapter(adapter),
  702. BUS_ID_SIZE) == 0) &&
  703. !atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE,
  704. &adapter->status)){
  705. found = 1;
  706. break;
  707. }
  708. }
  709. return found ? adapter : NULL;
  710. }
  711. /**
  712. * zfcp_unit_enqueue - enqueue unit to unit list of a port.
  713. * @port: pointer to port where unit is added
  714. * @fcp_lun: FCP LUN of unit to be enqueued
  715. * Return: pointer to enqueued unit on success, NULL on error
  716. * Locks: config_sema must be held to serialize changes to the unit list
  717. *
  718. * Sets up some unit internal structures and creates sysfs entry.
  719. */
  720. struct zfcp_unit *
  721. zfcp_unit_enqueue(struct zfcp_port *port, fcp_lun_t fcp_lun)
  722. {
  723. struct zfcp_unit *unit, *tmp_unit;
  724. scsi_lun_t scsi_lun;
  725. int found;
  726. /*
  727. * check that there is no unit with this FCP_LUN already in list
  728. * and enqueue it.
  729. * Note: Unlike for the adapter and the port, this is an error
  730. */
  731. read_lock_irq(&zfcp_data.config_lock);
  732. unit = zfcp_get_unit_by_lun(port, fcp_lun);
  733. read_unlock_irq(&zfcp_data.config_lock);
  734. if (unit)
  735. return NULL;
  736. unit = kmalloc(sizeof (struct zfcp_unit), GFP_KERNEL);
  737. if (!unit)
  738. return NULL;
  739. memset(unit, 0, sizeof (struct zfcp_unit));
  740. /* initialise reference count stuff */
  741. atomic_set(&unit->refcount, 0);
  742. init_waitqueue_head(&unit->remove_wq);
  743. unit->port = port;
  744. unit->fcp_lun = fcp_lun;
  745. /* setup for sysfs registration */
  746. snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", fcp_lun);
  747. unit->sysfs_device.parent = &port->sysfs_device;
  748. unit->sysfs_device.release = zfcp_sysfs_unit_release;
  749. dev_set_drvdata(&unit->sysfs_device, unit);
  750. /* mark unit unusable as long as sysfs registration is not complete */
  751. atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
  752. if (device_register(&unit->sysfs_device)) {
  753. kfree(unit);
  754. return NULL;
  755. }
  756. if (zfcp_sysfs_unit_create_files(&unit->sysfs_device)) {
  757. device_unregister(&unit->sysfs_device);
  758. return NULL;
  759. }
  760. zfcp_unit_get(unit);
  761. scsi_lun = 0;
  762. found = 0;
  763. write_lock_irq(&zfcp_data.config_lock);
  764. list_for_each_entry(tmp_unit, &port->unit_list_head, list) {
  765. if (tmp_unit->scsi_lun != scsi_lun) {
  766. found = 1;
  767. break;
  768. }
  769. scsi_lun++;
  770. }
  771. unit->scsi_lun = scsi_lun;
  772. if (found)
  773. list_add_tail(&unit->list, &tmp_unit->list);
  774. else
  775. list_add_tail(&unit->list, &port->unit_list_head);
  776. atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
  777. atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
  778. write_unlock_irq(&zfcp_data.config_lock);
  779. port->units++;
  780. zfcp_port_get(port);
  781. return unit;
  782. }
  783. void
  784. zfcp_unit_dequeue(struct zfcp_unit *unit)
  785. {
  786. zfcp_unit_wait(unit);
  787. write_lock_irq(&zfcp_data.config_lock);
  788. list_del(&unit->list);
  789. write_unlock_irq(&zfcp_data.config_lock);
  790. unit->port->units--;
  791. zfcp_port_put(unit->port);
  792. zfcp_sysfs_unit_remove_files(&unit->sysfs_device);
  793. device_unregister(&unit->sysfs_device);
  794. }
  795. static void *
  796. zfcp_mempool_alloc(unsigned int __nocast gfp_mask, void *size)
  797. {
  798. return kmalloc((size_t) size, gfp_mask);
  799. }
  800. static void
  801. zfcp_mempool_free(void *element, void *size)
  802. {
  803. kfree(element);
  804. }
  805. /*
  806. * Allocates a combined QTCB/fsf_req buffer for erp actions and fcp/SCSI
  807. * commands.
  808. * It also genrates fcp-nameserver request/response buffer and unsolicited
  809. * status read fsf_req buffers.
  810. *
  811. * locks: must only be called with zfcp_data.config_sema taken
  812. */
  813. static int
  814. zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
  815. {
  816. adapter->pool.fsf_req_erp =
  817. mempool_create(ZFCP_POOL_FSF_REQ_ERP_NR,
  818. zfcp_mempool_alloc, zfcp_mempool_free, (void *)
  819. sizeof(struct zfcp_fsf_req_pool_element));
  820. if (NULL == adapter->pool.fsf_req_erp)
  821. return -ENOMEM;
  822. adapter->pool.fsf_req_scsi =
  823. mempool_create(ZFCP_POOL_FSF_REQ_SCSI_NR,
  824. zfcp_mempool_alloc, zfcp_mempool_free, (void *)
  825. sizeof(struct zfcp_fsf_req_pool_element));
  826. if (NULL == adapter->pool.fsf_req_scsi)
  827. return -ENOMEM;
  828. adapter->pool.fsf_req_abort =
  829. mempool_create(ZFCP_POOL_FSF_REQ_ABORT_NR,
  830. zfcp_mempool_alloc, zfcp_mempool_free, (void *)
  831. sizeof(struct zfcp_fsf_req_pool_element));
  832. if (NULL == adapter->pool.fsf_req_abort)
  833. return -ENOMEM;
  834. adapter->pool.fsf_req_status_read =
  835. mempool_create(ZFCP_POOL_STATUS_READ_NR,
  836. zfcp_mempool_alloc, zfcp_mempool_free,
  837. (void *) sizeof(struct zfcp_fsf_req));
  838. if (NULL == adapter->pool.fsf_req_status_read)
  839. return -ENOMEM;
  840. adapter->pool.data_status_read =
  841. mempool_create(ZFCP_POOL_STATUS_READ_NR,
  842. zfcp_mempool_alloc, zfcp_mempool_free,
  843. (void *) sizeof(struct fsf_status_read_buffer));
  844. if (NULL == adapter->pool.data_status_read)
  845. return -ENOMEM;
  846. adapter->pool.data_gid_pn =
  847. mempool_create(ZFCP_POOL_DATA_GID_PN_NR,
  848. zfcp_mempool_alloc, zfcp_mempool_free, (void *)
  849. sizeof(struct zfcp_gid_pn_data));
  850. if (NULL == adapter->pool.data_gid_pn)
  851. return -ENOMEM;
  852. return 0;
  853. }
  854. /**
  855. * zfcp_free_low_mem_buffers - free memory pools of an adapter
  856. * @adapter: pointer to zfcp_adapter for which memory pools should be freed
  857. * locking: zfcp_data.config_sema must be held
  858. */
  859. static void
  860. zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
  861. {
  862. if (adapter->pool.fsf_req_erp)
  863. mempool_destroy(adapter->pool.fsf_req_erp);
  864. if (adapter->pool.fsf_req_scsi)
  865. mempool_destroy(adapter->pool.fsf_req_scsi);
  866. if (adapter->pool.fsf_req_abort)
  867. mempool_destroy(adapter->pool.fsf_req_abort);
  868. if (adapter->pool.fsf_req_status_read)
  869. mempool_destroy(adapter->pool.fsf_req_status_read);
  870. if (adapter->pool.data_status_read)
  871. mempool_destroy(adapter->pool.data_status_read);
  872. if (adapter->pool.data_gid_pn)
  873. mempool_destroy(adapter->pool.data_gid_pn);
  874. }
  875. /**
  876. * zfcp_adapter_debug_register - registers debug feature for an adapter
  877. * @adapter: pointer to adapter for which debug features should be registered
  878. * return: -ENOMEM on error, 0 otherwise
  879. */
  880. int
  881. zfcp_adapter_debug_register(struct zfcp_adapter *adapter)
  882. {
  883. char dbf_name[20];
  884. /* debug feature area which records SCSI command failures (hostbyte) */
  885. spin_lock_init(&adapter->dbf_lock);
  886. sprintf(dbf_name, ZFCP_CMD_DBF_NAME "%s",
  887. zfcp_get_busid_by_adapter(adapter));
  888. adapter->cmd_dbf = debug_register(dbf_name, ZFCP_CMD_DBF_INDEX,
  889. ZFCP_CMD_DBF_AREAS,
  890. ZFCP_CMD_DBF_LENGTH);
  891. debug_register_view(adapter->cmd_dbf, &debug_hex_ascii_view);
  892. debug_set_level(adapter->cmd_dbf, ZFCP_CMD_DBF_LEVEL);
  893. /* debug feature area which records SCSI command aborts */
  894. sprintf(dbf_name, ZFCP_ABORT_DBF_NAME "%s",
  895. zfcp_get_busid_by_adapter(adapter));
  896. adapter->abort_dbf = debug_register(dbf_name, ZFCP_ABORT_DBF_INDEX,
  897. ZFCP_ABORT_DBF_AREAS,
  898. ZFCP_ABORT_DBF_LENGTH);
  899. debug_register_view(adapter->abort_dbf, &debug_hex_ascii_view);
  900. debug_set_level(adapter->abort_dbf, ZFCP_ABORT_DBF_LEVEL);
  901. /* debug feature area which records incoming ELS commands */
  902. sprintf(dbf_name, ZFCP_IN_ELS_DBF_NAME "%s",
  903. zfcp_get_busid_by_adapter(adapter));
  904. adapter->in_els_dbf = debug_register(dbf_name, ZFCP_IN_ELS_DBF_INDEX,
  905. ZFCP_IN_ELS_DBF_AREAS,
  906. ZFCP_IN_ELS_DBF_LENGTH);
  907. debug_register_view(adapter->in_els_dbf, &debug_hex_ascii_view);
  908. debug_set_level(adapter->in_els_dbf, ZFCP_IN_ELS_DBF_LEVEL);
  909. /* debug feature area which records erp events */
  910. sprintf(dbf_name, ZFCP_ERP_DBF_NAME "%s",
  911. zfcp_get_busid_by_adapter(adapter));
  912. adapter->erp_dbf = debug_register(dbf_name, ZFCP_ERP_DBF_INDEX,
  913. ZFCP_ERP_DBF_AREAS,
  914. ZFCP_ERP_DBF_LENGTH);
  915. debug_register_view(adapter->erp_dbf, &debug_hex_ascii_view);
  916. debug_set_level(adapter->erp_dbf, ZFCP_ERP_DBF_LEVEL);
  917. if (!(adapter->cmd_dbf && adapter->abort_dbf &&
  918. adapter->in_els_dbf && adapter->erp_dbf)) {
  919. zfcp_adapter_debug_unregister(adapter);
  920. return -ENOMEM;
  921. }
  922. return 0;
  923. }
  924. /**
  925. * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
  926. * @adapter: pointer to adapter for which debug features should be unregistered
  927. */
  928. void
  929. zfcp_adapter_debug_unregister(struct zfcp_adapter *adapter)
  930. {
  931. debug_unregister(adapter->abort_dbf);
  932. debug_unregister(adapter->cmd_dbf);
  933. debug_unregister(adapter->erp_dbf);
  934. debug_unregister(adapter->in_els_dbf);
  935. adapter->abort_dbf = NULL;
  936. adapter->cmd_dbf = NULL;
  937. adapter->erp_dbf = NULL;
  938. adapter->in_els_dbf = NULL;
  939. }
  940. void
  941. zfcp_dummy_release(struct device *dev)
  942. {
  943. return;
  944. }
  945. /*
  946. * Enqueues an adapter at the end of the adapter list in the driver data.
  947. * All adapter internal structures are set up.
  948. * Proc-fs entries are also created.
  949. *
  950. * returns: 0 if a new adapter was successfully enqueued
  951. * ZFCP_KNOWN if an adapter with this devno was already present
  952. * -ENOMEM if alloc failed
  953. * locks: config_sema must be held to serialise changes to the adapter list
  954. */
  955. struct zfcp_adapter *
  956. zfcp_adapter_enqueue(struct ccw_device *ccw_device)
  957. {
  958. int retval = 0;
  959. struct zfcp_adapter *adapter;
  960. /*
  961. * Note: It is safe to release the list_lock, as any list changes
  962. * are protected by the config_sema, which must be held to get here
  963. */
  964. /* try to allocate new adapter data structure (zeroed) */
  965. adapter = kmalloc(sizeof (struct zfcp_adapter), GFP_KERNEL);
  966. if (!adapter) {
  967. ZFCP_LOG_INFO("error: allocation of base adapter "
  968. "structure failed\n");
  969. goto out;
  970. }
  971. memset(adapter, 0, sizeof (struct zfcp_adapter));
  972. ccw_device->handler = NULL;
  973. /* save ccw_device pointer */
  974. adapter->ccw_device = ccw_device;
  975. retval = zfcp_qdio_allocate_queues(adapter);
  976. if (retval)
  977. goto queues_alloc_failed;
  978. retval = zfcp_qdio_allocate(adapter);
  979. if (retval)
  980. goto qdio_allocate_failed;
  981. retval = zfcp_allocate_low_mem_buffers(adapter);
  982. if (retval) {
  983. ZFCP_LOG_INFO("error: pool allocation failed\n");
  984. goto failed_low_mem_buffers;
  985. }
  986. /* initialise reference count stuff */
  987. atomic_set(&adapter->refcount, 0);
  988. init_waitqueue_head(&adapter->remove_wq);
  989. /* initialise list of ports */
  990. INIT_LIST_HEAD(&adapter->port_list_head);
  991. /* initialise list of ports to be removed */
  992. INIT_LIST_HEAD(&adapter->port_remove_lh);
  993. /* initialize list of fsf requests */
  994. rwlock_init(&adapter->fsf_req_list_lock);
  995. INIT_LIST_HEAD(&adapter->fsf_req_list_head);
  996. /* initialize abort lock */
  997. rwlock_init(&adapter->abort_lock);
  998. /* initialise some erp stuff */
  999. init_waitqueue_head(&adapter->erp_thread_wqh);
  1000. init_waitqueue_head(&adapter->erp_done_wqh);
  1001. /* initialize lock of associated request queue */
  1002. rwlock_init(&adapter->request_queue.queue_lock);
  1003. /* intitialise SCSI ER timer */
  1004. init_timer(&adapter->scsi_er_timer);
  1005. /* set FC service class used per default */
  1006. adapter->fc_service_class = ZFCP_FC_SERVICE_CLASS_DEFAULT;
  1007. sprintf(adapter->name, "%s", zfcp_get_busid_by_adapter(adapter));
  1008. ASCEBC(adapter->name, strlen(adapter->name));
  1009. /* mark adapter unusable as long as sysfs registration is not complete */
  1010. atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
  1011. adapter->ccw_device = ccw_device;
  1012. dev_set_drvdata(&ccw_device->dev, adapter);
  1013. if (zfcp_sysfs_adapter_create_files(&ccw_device->dev))
  1014. goto sysfs_failed;
  1015. adapter->generic_services.parent = &adapter->ccw_device->dev;
  1016. adapter->generic_services.release = zfcp_dummy_release;
  1017. snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE,
  1018. "generic_services");
  1019. if (device_register(&adapter->generic_services))
  1020. goto generic_services_failed;
  1021. /* put allocated adapter at list tail */
  1022. write_lock_irq(&zfcp_data.config_lock);
  1023. atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
  1024. list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
  1025. write_unlock_irq(&zfcp_data.config_lock);
  1026. zfcp_data.adapters++;
  1027. goto out;
  1028. generic_services_failed:
  1029. zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
  1030. sysfs_failed:
  1031. dev_set_drvdata(&ccw_device->dev, NULL);
  1032. failed_low_mem_buffers:
  1033. zfcp_free_low_mem_buffers(adapter);
  1034. if (qdio_free(ccw_device) != 0)
  1035. ZFCP_LOG_NORMAL("bug: qdio_free for adapter %s failed\n",
  1036. zfcp_get_busid_by_adapter(adapter));
  1037. qdio_allocate_failed:
  1038. zfcp_qdio_free_queues(adapter);
  1039. queues_alloc_failed:
  1040. kfree(adapter);
  1041. adapter = NULL;
  1042. out:
  1043. return adapter;
  1044. }
  1045. /*
  1046. * returns: 0 - struct zfcp_adapter data structure successfully removed
  1047. * !0 - struct zfcp_adapter data structure could not be removed
  1048. * (e.g. still used)
  1049. * locks: adapter list write lock is assumed to be held by caller
  1050. * adapter->fsf_req_list_lock is taken and released within this
  1051. * function and must not be held on entry
  1052. */
  1053. void
  1054. zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
  1055. {
  1056. int retval = 0;
  1057. unsigned long flags;
  1058. device_unregister(&adapter->generic_services);
  1059. zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
  1060. dev_set_drvdata(&adapter->ccw_device->dev, NULL);
  1061. /* sanity check: no pending FSF requests */
  1062. read_lock_irqsave(&adapter->fsf_req_list_lock, flags);
  1063. retval = !list_empty(&adapter->fsf_req_list_head);
  1064. read_unlock_irqrestore(&adapter->fsf_req_list_lock, flags);
  1065. if (retval) {
  1066. ZFCP_LOG_NORMAL("bug: adapter %s (%p) still in use, "
  1067. "%i requests outstanding\n",
  1068. zfcp_get_busid_by_adapter(adapter), adapter,
  1069. atomic_read(&adapter->fsf_reqs_active));
  1070. retval = -EBUSY;
  1071. goto out;
  1072. }
  1073. /* remove specified adapter data structure from list */
  1074. write_lock_irq(&zfcp_data.config_lock);
  1075. list_del(&adapter->list);
  1076. write_unlock_irq(&zfcp_data.config_lock);
  1077. /* decrease number of adapters in list */
  1078. zfcp_data.adapters--;
  1079. ZFCP_LOG_TRACE("adapter %s (%p) removed from list, "
  1080. "%i adapters still in list\n",
  1081. zfcp_get_busid_by_adapter(adapter),
  1082. adapter, zfcp_data.adapters);
  1083. retval = qdio_free(adapter->ccw_device);
  1084. if (retval)
  1085. ZFCP_LOG_NORMAL("bug: qdio_free for adapter %s failed\n",
  1086. zfcp_get_busid_by_adapter(adapter));
  1087. zfcp_free_low_mem_buffers(adapter);
  1088. /* free memory of adapter data structure and queues */
  1089. zfcp_qdio_free_queues(adapter);
  1090. ZFCP_LOG_TRACE("freeing adapter structure\n");
  1091. kfree(adapter);
  1092. out:
  1093. return;
  1094. }
  1095. /**
  1096. * zfcp_port_enqueue - enqueue port to port list of adapter
  1097. * @adapter: adapter where remote port is added
  1098. * @wwpn: WWPN of the remote port to be enqueued
  1099. * @status: initial status for the port
  1100. * @d_id: destination id of the remote port to be enqueued
  1101. * Return: pointer to enqueued port on success, NULL on error
  1102. * Locks: config_sema must be held to serialize changes to the port list
  1103. *
  1104. * All port internal structures are set up and the sysfs entry is generated.
  1105. * d_id is used to enqueue ports with a well known address like the Directory
  1106. * Service for nameserver lookup.
  1107. */
  1108. struct zfcp_port *
  1109. zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn, u32 status,
  1110. u32 d_id)
  1111. {
  1112. struct zfcp_port *port, *tmp_port;
  1113. int check_wwpn;
  1114. scsi_id_t scsi_id;
  1115. int found;
  1116. check_wwpn = !(status & ZFCP_STATUS_PORT_NO_WWPN);
  1117. /*
  1118. * check that there is no port with this WWPN already in list
  1119. */
  1120. if (check_wwpn) {
  1121. read_lock_irq(&zfcp_data.config_lock);
  1122. port = zfcp_get_port_by_wwpn(adapter, wwpn);
  1123. read_unlock_irq(&zfcp_data.config_lock);
  1124. if (port)
  1125. return NULL;
  1126. }
  1127. port = kmalloc(sizeof (struct zfcp_port), GFP_KERNEL);
  1128. if (!port)
  1129. return NULL;
  1130. memset(port, 0, sizeof (struct zfcp_port));
  1131. /* initialise reference count stuff */
  1132. atomic_set(&port->refcount, 0);
  1133. init_waitqueue_head(&port->remove_wq);
  1134. INIT_LIST_HEAD(&port->unit_list_head);
  1135. INIT_LIST_HEAD(&port->unit_remove_lh);
  1136. port->adapter = adapter;
  1137. if (check_wwpn)
  1138. port->wwpn = wwpn;
  1139. atomic_set_mask(status, &port->status);
  1140. /* setup for sysfs registration */
  1141. if (status & ZFCP_STATUS_PORT_WKA) {
  1142. switch (d_id) {
  1143. case ZFCP_DID_DIRECTORY_SERVICE:
  1144. snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
  1145. "directory");
  1146. break;
  1147. case ZFCP_DID_MANAGEMENT_SERVICE:
  1148. snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
  1149. "management");
  1150. break;
  1151. case ZFCP_DID_KEY_DISTRIBUTION_SERVICE:
  1152. snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
  1153. "key_distribution");
  1154. break;
  1155. case ZFCP_DID_ALIAS_SERVICE:
  1156. snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
  1157. "alias");
  1158. break;
  1159. case ZFCP_DID_TIME_SERVICE:
  1160. snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE,
  1161. "time");
  1162. break;
  1163. default:
  1164. kfree(port);
  1165. return NULL;
  1166. }
  1167. port->d_id = d_id;
  1168. port->sysfs_device.parent = &adapter->generic_services;
  1169. } else {
  1170. snprintf(port->sysfs_device.bus_id,
  1171. BUS_ID_SIZE, "0x%016llx", wwpn);
  1172. port->sysfs_device.parent = &adapter->ccw_device->dev;
  1173. }
  1174. port->sysfs_device.release = zfcp_sysfs_port_release;
  1175. dev_set_drvdata(&port->sysfs_device, port);
  1176. /* mark port unusable as long as sysfs registration is not complete */
  1177. atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
  1178. if (device_register(&port->sysfs_device)) {
  1179. kfree(port);
  1180. return NULL;
  1181. }
  1182. if (zfcp_sysfs_port_create_files(&port->sysfs_device, status)) {
  1183. device_unregister(&port->sysfs_device);
  1184. return NULL;
  1185. }
  1186. zfcp_port_get(port);
  1187. scsi_id = 1;
  1188. found = 0;
  1189. write_lock_irq(&zfcp_data.config_lock);
  1190. list_for_each_entry(tmp_port, &adapter->port_list_head, list) {
  1191. if (atomic_test_mask(ZFCP_STATUS_PORT_NO_SCSI_ID,
  1192. &tmp_port->status))
  1193. continue;
  1194. if (tmp_port->scsi_id != scsi_id) {
  1195. found = 1;
  1196. break;
  1197. }
  1198. scsi_id++;
  1199. }
  1200. port->scsi_id = scsi_id;
  1201. if (found)
  1202. list_add_tail(&port->list, &tmp_port->list);
  1203. else
  1204. list_add_tail(&port->list, &adapter->port_list_head);
  1205. atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
  1206. atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
  1207. if (d_id == ZFCP_DID_DIRECTORY_SERVICE)
  1208. if (!adapter->nameserver_port)
  1209. adapter->nameserver_port = port;
  1210. adapter->ports++;
  1211. write_unlock_irq(&zfcp_data.config_lock);
  1212. zfcp_adapter_get(adapter);
  1213. return port;
  1214. }
  1215. void
  1216. zfcp_port_dequeue(struct zfcp_port *port)
  1217. {
  1218. zfcp_port_wait(port);
  1219. write_lock_irq(&zfcp_data.config_lock);
  1220. list_del(&port->list);
  1221. port->adapter->ports--;
  1222. write_unlock_irq(&zfcp_data.config_lock);
  1223. zfcp_adapter_put(port->adapter);
  1224. zfcp_sysfs_port_remove_files(&port->sysfs_device,
  1225. atomic_read(&port->status));
  1226. device_unregister(&port->sysfs_device);
  1227. }
  1228. /* Enqueues a nameserver port */
  1229. int
  1230. zfcp_nameserver_enqueue(struct zfcp_adapter *adapter)
  1231. {
  1232. struct zfcp_port *port;
  1233. port = zfcp_port_enqueue(adapter, 0, ZFCP_STATUS_PORT_WKA,
  1234. ZFCP_DID_DIRECTORY_SERVICE);
  1235. if (!port) {
  1236. ZFCP_LOG_INFO("error: enqueue of nameserver port for "
  1237. "adapter %s failed\n",
  1238. zfcp_get_busid_by_adapter(adapter));
  1239. return -ENXIO;
  1240. }
  1241. zfcp_port_put(port);
  1242. return 0;
  1243. }
  1244. #undef ZFCP_LOG_AREA
  1245. /****************************************************************/
  1246. /******* Fibre Channel Standard related Functions **************/
  1247. /****************************************************************/
  1248. #define ZFCP_LOG_AREA ZFCP_LOG_AREA_FC
  1249. void
  1250. zfcp_fsf_incoming_els_rscn(struct zfcp_adapter *adapter,
  1251. struct fsf_status_read_buffer *status_buffer)
  1252. {
  1253. struct fcp_rscn_head *fcp_rscn_head;
  1254. struct fcp_rscn_element *fcp_rscn_element;
  1255. struct zfcp_port *port;
  1256. u16 i;
  1257. u16 no_entries;
  1258. u32 range_mask;
  1259. unsigned long flags;
  1260. fcp_rscn_head = (struct fcp_rscn_head *) status_buffer->payload;
  1261. fcp_rscn_element = (struct fcp_rscn_element *) status_buffer->payload;
  1262. /* see FC-FS */
  1263. no_entries = (fcp_rscn_head->payload_len / 4);
  1264. zfcp_in_els_dbf_event(adapter, "##rscn", status_buffer,
  1265. fcp_rscn_head->payload_len);
  1266. debug_text_event(adapter->erp_dbf, 1, "unsol_els_rscn:");
  1267. for (i = 1; i < no_entries; i++) {
  1268. /* skip head and start with 1st element */
  1269. fcp_rscn_element++;
  1270. switch (fcp_rscn_element->addr_format) {
  1271. case ZFCP_PORT_ADDRESS:
  1272. ZFCP_LOG_FLAGS(1, "ZFCP_PORT_ADDRESS\n");
  1273. range_mask = ZFCP_PORTS_RANGE_PORT;
  1274. break;
  1275. case ZFCP_AREA_ADDRESS:
  1276. ZFCP_LOG_FLAGS(1, "ZFCP_AREA_ADDRESS\n");
  1277. range_mask = ZFCP_PORTS_RANGE_AREA;
  1278. break;
  1279. case ZFCP_DOMAIN_ADDRESS:
  1280. ZFCP_LOG_FLAGS(1, "ZFCP_DOMAIN_ADDRESS\n");
  1281. range_mask = ZFCP_PORTS_RANGE_DOMAIN;
  1282. break;
  1283. case ZFCP_FABRIC_ADDRESS:
  1284. ZFCP_LOG_FLAGS(1, "ZFCP_FABRIC_ADDRESS\n");
  1285. range_mask = ZFCP_PORTS_RANGE_FABRIC;
  1286. break;
  1287. default:
  1288. ZFCP_LOG_INFO("incoming RSCN with unknown "
  1289. "address format\n");
  1290. continue;
  1291. }
  1292. read_lock_irqsave(&zfcp_data.config_lock, flags);
  1293. list_for_each_entry(port, &adapter->port_list_head, list) {
  1294. if (atomic_test_mask
  1295. (ZFCP_STATUS_PORT_WKA, &port->status))
  1296. continue;
  1297. /* Do we know this port? If not skip it. */
  1298. if (!atomic_test_mask
  1299. (ZFCP_STATUS_PORT_DID_DID, &port->status)) {
  1300. ZFCP_LOG_INFO("incoming RSCN, trying to open "
  1301. "port 0x%016Lx\n", port->wwpn);
  1302. debug_text_event(adapter->erp_dbf, 1,
  1303. "unsol_els_rscnu:");
  1304. zfcp_erp_port_reopen(port,
  1305. ZFCP_STATUS_COMMON_ERP_FAILED);
  1306. continue;
  1307. }
  1308. /*
  1309. * FIXME: race: d_id might being invalidated
  1310. * (...DID_DID reset)
  1311. */
  1312. if ((port->d_id & range_mask)
  1313. == (fcp_rscn_element->nport_did & range_mask)) {
  1314. ZFCP_LOG_TRACE("reopen did 0x%08x\n",
  1315. fcp_rscn_element->nport_did);
  1316. /*
  1317. * Unfortunately, an RSCN does not specify the
  1318. * type of change a target underwent. We assume
  1319. * that it makes sense to reopen the link.
  1320. * FIXME: Shall we try to find out more about
  1321. * the target and link state before closing it?
  1322. * How to accomplish this? (nameserver?)
  1323. * Where would such code be put in?
  1324. * (inside or outside erp)
  1325. */
  1326. ZFCP_LOG_INFO("incoming RSCN, trying to open "
  1327. "port 0x%016Lx\n", port->wwpn);
  1328. debug_text_event(adapter->erp_dbf, 1,
  1329. "unsol_els_rscnk:");
  1330. zfcp_test_link(port);
  1331. }
  1332. }
  1333. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  1334. }
  1335. }
  1336. static void
  1337. zfcp_fsf_incoming_els_plogi(struct zfcp_adapter *adapter,
  1338. struct fsf_status_read_buffer *status_buffer)
  1339. {
  1340. logi *els_logi = (logi *) status_buffer->payload;
  1341. struct zfcp_port *port;
  1342. unsigned long flags;
  1343. zfcp_in_els_dbf_event(adapter, "##plogi", status_buffer, 28);
  1344. read_lock_irqsave(&zfcp_data.config_lock, flags);
  1345. list_for_each_entry(port, &adapter->port_list_head, list) {
  1346. if (port->wwpn == (*(wwn_t *) & els_logi->nport_wwn))
  1347. break;
  1348. }
  1349. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  1350. if (!port || (port->wwpn != (*(wwn_t *) & els_logi->nport_wwn))) {
  1351. ZFCP_LOG_DEBUG("ignored incoming PLOGI for nonexisting port "
  1352. "with d_id 0x%08x on adapter %s\n",
  1353. status_buffer->d_id,
  1354. zfcp_get_busid_by_adapter(adapter));
  1355. } else {
  1356. debug_text_event(adapter->erp_dbf, 1, "unsol_els_plogi:");
  1357. debug_event(adapter->erp_dbf, 1, &els_logi->nport_wwn, 8);
  1358. zfcp_erp_port_forced_reopen(port, 0);
  1359. }
  1360. }
  1361. static void
  1362. zfcp_fsf_incoming_els_logo(struct zfcp_adapter *adapter,
  1363. struct fsf_status_read_buffer *status_buffer)
  1364. {
  1365. struct fcp_logo *els_logo = (struct fcp_logo *) status_buffer->payload;
  1366. struct zfcp_port *port;
  1367. unsigned long flags;
  1368. zfcp_in_els_dbf_event(adapter, "##logo", status_buffer, 16);
  1369. read_lock_irqsave(&zfcp_data.config_lock, flags);
  1370. list_for_each_entry(port, &adapter->port_list_head, list) {
  1371. if (port->wwpn == els_logo->nport_wwpn)
  1372. break;
  1373. }
  1374. read_unlock_irqrestore(&zfcp_data.config_lock, flags);
  1375. if (!port || (port->wwpn != els_logo->nport_wwpn)) {
  1376. ZFCP_LOG_DEBUG("ignored incoming LOGO for nonexisting port "
  1377. "with d_id 0x%08x on adapter %s\n",
  1378. status_buffer->d_id,
  1379. zfcp_get_busid_by_adapter(adapter));
  1380. } else {
  1381. debug_text_event(adapter->erp_dbf, 1, "unsol_els_logo:");
  1382. debug_event(adapter->erp_dbf, 1, &els_logo->nport_wwpn, 8);
  1383. zfcp_erp_port_forced_reopen(port, 0);
  1384. }
  1385. }
  1386. static void
  1387. zfcp_fsf_incoming_els_unknown(struct zfcp_adapter *adapter,
  1388. struct fsf_status_read_buffer *status_buffer)
  1389. {
  1390. zfcp_in_els_dbf_event(adapter, "##undef", status_buffer, 24);
  1391. ZFCP_LOG_NORMAL("warning: unknown incoming ELS 0x%08x "
  1392. "for adapter %s\n", *(u32 *) (status_buffer->payload),
  1393. zfcp_get_busid_by_adapter(adapter));
  1394. }
  1395. void
  1396. zfcp_fsf_incoming_els(struct zfcp_fsf_req *fsf_req)
  1397. {
  1398. struct fsf_status_read_buffer *status_buffer;
  1399. u32 els_type;
  1400. struct zfcp_adapter *adapter;
  1401. status_buffer = fsf_req->data.status_read.buffer;
  1402. els_type = *(u32 *) (status_buffer->payload);
  1403. adapter = fsf_req->adapter;
  1404. if (els_type == LS_PLOGI)
  1405. zfcp_fsf_incoming_els_plogi(adapter, status_buffer);
  1406. else if (els_type == LS_LOGO)
  1407. zfcp_fsf_incoming_els_logo(adapter, status_buffer);
  1408. else if ((els_type & 0xffff0000) == LS_RSCN)
  1409. /* we are only concerned with the command, not the length */
  1410. zfcp_fsf_incoming_els_rscn(adapter, status_buffer);
  1411. else
  1412. zfcp_fsf_incoming_els_unknown(adapter, status_buffer);
  1413. }
  1414. /**
  1415. * zfcp_gid_pn_buffers_alloc - allocate buffers for GID_PN nameserver request
  1416. * @gid_pn: pointer to return pointer to struct zfcp_gid_pn_data
  1417. * @pool: pointer to mempool_t if non-null memory pool is used for allocation
  1418. */
  1419. static int
  1420. zfcp_gid_pn_buffers_alloc(struct zfcp_gid_pn_data **gid_pn, mempool_t *pool)
  1421. {
  1422. struct zfcp_gid_pn_data *data;
  1423. if (pool != NULL) {
  1424. data = mempool_alloc(pool, GFP_ATOMIC);
  1425. if (likely(data != NULL)) {
  1426. data->ct.pool = pool;
  1427. }
  1428. } else {
  1429. data = kmalloc(sizeof(struct zfcp_gid_pn_data), GFP_ATOMIC);
  1430. }
  1431. if (NULL == data)
  1432. return -ENOMEM;
  1433. memset(data, 0, sizeof(*data));
  1434. data->ct.req = &data->req;
  1435. data->ct.resp = &data->resp;
  1436. data->ct.req_count = data->ct.resp_count = 1;
  1437. zfcp_address_to_sg(&data->ct_iu_req, &data->req);
  1438. zfcp_address_to_sg(&data->ct_iu_resp, &data->resp);
  1439. data->req.length = sizeof(struct ct_iu_gid_pn_req);
  1440. data->resp.length = sizeof(struct ct_iu_gid_pn_resp);
  1441. *gid_pn = data;
  1442. return 0;
  1443. }
  1444. /**
  1445. * zfcp_gid_pn_buffers_free - free buffers for GID_PN nameserver request
  1446. * @gid_pn: pointer to struct zfcp_gid_pn_data which has to be freed
  1447. */
  1448. static void
  1449. zfcp_gid_pn_buffers_free(struct zfcp_gid_pn_data *gid_pn)
  1450. {
  1451. if ((gid_pn->ct.pool != 0))
  1452. mempool_free(gid_pn, gid_pn->ct.pool);
  1453. else
  1454. kfree(gid_pn);
  1455. return;
  1456. }
  1457. /**
  1458. * zfcp_ns_gid_pn_request - initiate GID_PN nameserver request
  1459. * @erp_action: pointer to zfcp_erp_action where GID_PN request is needed
  1460. */
  1461. int
  1462. zfcp_ns_gid_pn_request(struct zfcp_erp_action *erp_action)
  1463. {
  1464. int ret;
  1465. struct ct_iu_gid_pn_req *ct_iu_req;
  1466. struct zfcp_gid_pn_data *gid_pn;
  1467. struct zfcp_adapter *adapter = erp_action->adapter;
  1468. ret = zfcp_gid_pn_buffers_alloc(&gid_pn, adapter->pool.data_gid_pn);
  1469. if (ret < 0) {
  1470. ZFCP_LOG_INFO("error: buffer allocation for gid_pn nameserver "
  1471. "request failed for adapter %s\n",
  1472. zfcp_get_busid_by_adapter(adapter));
  1473. goto out;
  1474. }
  1475. /* setup nameserver request */
  1476. ct_iu_req = zfcp_sg_to_address(gid_pn->ct.req);
  1477. ct_iu_req->header.revision = ZFCP_CT_REVISION;
  1478. ct_iu_req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
  1479. ct_iu_req->header.gs_subtype = ZFCP_CT_NAME_SERVER;
  1480. ct_iu_req->header.options = ZFCP_CT_SYNCHRONOUS;
  1481. ct_iu_req->header.cmd_rsp_code = ZFCP_CT_GID_PN;
  1482. ct_iu_req->header.max_res_size = ZFCP_CT_MAX_SIZE;
  1483. ct_iu_req->wwpn = erp_action->port->wwpn;
  1484. /* setup parameters for send generic command */
  1485. gid_pn->ct.port = adapter->nameserver_port;
  1486. gid_pn->ct.handler = zfcp_ns_gid_pn_handler;
  1487. gid_pn->ct.handler_data = (unsigned long) gid_pn;
  1488. gid_pn->ct.timeout = ZFCP_NS_GID_PN_TIMEOUT;
  1489. gid_pn->ct.timer = &erp_action->timer;
  1490. gid_pn->port = erp_action->port;
  1491. ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.fsf_req_erp,
  1492. erp_action);
  1493. if (ret) {
  1494. ZFCP_LOG_INFO("error: initiation of gid_pn nameserver request "
  1495. "failed for adapter %s\n",
  1496. zfcp_get_busid_by_adapter(adapter));
  1497. zfcp_gid_pn_buffers_free(gid_pn);
  1498. }
  1499. out:
  1500. return ret;
  1501. }
  1502. /**
  1503. * zfcp_ns_gid_pn_handler - handler for GID_PN nameserver request
  1504. * @data: unsigned long, contains pointer to struct zfcp_gid_pn_data…