zfcp_aux.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. /*
  2. * zfcp device driver
  3. *
  4. * Module interface and handling of zfcp data structures.
  5. *
  6. * Copyright IBM Corp. 2002, 2013
  7. */
  8. /*
  9. * Driver authors:
  10. * Martin Peschke (originator of the driver)
  11. * Raimund Schroeder
  12. * Aron Zeh
  13. * Wolfgang Taphorn
  14. * Stefan Bader
  15. * Heiko Carstens (kernel 2.6 port of the driver)
  16. * Andreas Herrmann
  17. * Maxim Shchetynin
  18. * Volker Sameske
  19. * Ralph Wuerthner
  20. * Michael Loehr
  21. * Swen Schillig
  22. * Christof Schmitt
  23. * Martin Petermann
  24. * Sven Schuetz
  25. * Steffen Maier
  26. */
  27. #define KMSG_COMPONENT "zfcp"
  28. #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
  29. #include <linux/miscdevice.h>
  30. #include <linux/seq_file.h>
  31. #include <linux/slab.h>
  32. #include <linux/module.h>
  33. #include "zfcp_ext.h"
  34. #include "zfcp_fc.h"
  35. #include "zfcp_reqlist.h"
  36. #define ZFCP_BUS_ID_SIZE 20
  37. MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
  38. MODULE_DESCRIPTION("FCP HBA driver");
  39. MODULE_LICENSE("GPL");
  40. static char *init_device;
  41. module_param_named(device, init_device, charp, 0400);
  42. MODULE_PARM_DESC(device, "specify initial device");
  43. static struct kmem_cache * __init zfcp_cache_hw_align(const char *name,
  44. unsigned long size)
  45. {
  46. return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);
  47. }
  48. static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
  49. {
  50. struct ccw_device *cdev;
  51. struct zfcp_adapter *adapter;
  52. struct zfcp_port *port;
  53. cdev = get_ccwdev_by_busid(&zfcp_ccw_driver, busid);
  54. if (!cdev)
  55. return;
  56. if (ccw_device_set_online(cdev))
  57. goto out_ccw_device;
  58. adapter = zfcp_ccw_adapter_by_cdev(cdev);
  59. if (!adapter)
  60. goto out_ccw_device;
  61. port = zfcp_get_port_by_wwpn(adapter, wwpn);
  62. if (!port)
  63. goto out_port;
  64. flush_work(&port->rport_work);
  65. zfcp_unit_add(port, lun);
  66. put_device(&port->dev);
  67. out_port:
  68. zfcp_ccw_adapter_put(adapter);
  69. out_ccw_device:
  70. put_device(&cdev->dev);
  71. return;
  72. }
  73. static void __init zfcp_init_device_setup(char *devstr)
  74. {
  75. char *token;
  76. char *str, *str_saved;
  77. char busid[ZFCP_BUS_ID_SIZE];
  78. u64 wwpn, lun;
  79. /* duplicate devstr and keep the original for sysfs presentation*/
  80. str_saved = kstrdup(devstr, GFP_KERNEL);
  81. str = str_saved;
  82. if (!str)
  83. return;
  84. token = strsep(&str, ",");
  85. if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
  86. goto err_out;
  87. strncpy(busid, token, ZFCP_BUS_ID_SIZE);
  88. token = strsep(&str, ",");
  89. if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn))
  90. goto err_out;
  91. token = strsep(&str, ",");
  92. if (!token || kstrtoull(token, 0, (unsigned long long *) &lun))
  93. goto err_out;
  94. kfree(str_saved);
  95. zfcp_init_device_configure(busid, wwpn, lun);
  96. return;
  97. err_out:
  98. kfree(str_saved);
  99. pr_err("%s is not a valid SCSI device\n", devstr);
  100. }
  101. static int __init zfcp_module_init(void)
  102. {
  103. int retval = -ENOMEM;
  104. zfcp_fsf_qtcb_cache = zfcp_cache_hw_align("zfcp_fsf_qtcb",
  105. sizeof(struct fsf_qtcb));
  106. if (!zfcp_fsf_qtcb_cache)
  107. goto out_qtcb_cache;
  108. zfcp_fc_req_cache = zfcp_cache_hw_align("zfcp_fc_req",
  109. sizeof(struct zfcp_fc_req));
  110. if (!zfcp_fc_req_cache)
  111. goto out_fc_cache;
  112. zfcp_scsi_transport_template =
  113. fc_attach_transport(&zfcp_transport_functions);
  114. if (!zfcp_scsi_transport_template)
  115. goto out_transport;
  116. scsi_transport_reserve_device(zfcp_scsi_transport_template,
  117. sizeof(struct zfcp_scsi_dev));
  118. retval = ccw_driver_register(&zfcp_ccw_driver);
  119. if (retval) {
  120. pr_err("The zfcp device driver could not register with "
  121. "the common I/O layer\n");
  122. goto out_ccw_register;
  123. }
  124. if (init_device)
  125. zfcp_init_device_setup(init_device);
  126. return 0;
  127. out_ccw_register:
  128. fc_release_transport(zfcp_scsi_transport_template);
  129. out_transport:
  130. kmem_cache_destroy(zfcp_fc_req_cache);
  131. out_fc_cache:
  132. kmem_cache_destroy(zfcp_fsf_qtcb_cache);
  133. out_qtcb_cache:
  134. return retval;
  135. }
  136. module_init(zfcp_module_init);
  137. static void __exit zfcp_module_exit(void)
  138. {
  139. ccw_driver_unregister(&zfcp_ccw_driver);
  140. fc_release_transport(zfcp_scsi_transport_template);
  141. kmem_cache_destroy(zfcp_fc_req_cache);
  142. kmem_cache_destroy(zfcp_fsf_qtcb_cache);
  143. }
  144. module_exit(zfcp_module_exit);
  145. /**
  146. * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
  147. * @adapter: pointer to adapter to search for port
  148. * @wwpn: wwpn to search for
  149. *
  150. * Returns: pointer to zfcp_port or NULL
  151. */
  152. struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
  153. u64 wwpn)
  154. {
  155. unsigned long flags;
  156. struct zfcp_port *port;
  157. read_lock_irqsave(&adapter->port_list_lock, flags);
  158. list_for_each_entry(port, &adapter->port_list, list)
  159. if (port->wwpn == wwpn) {
  160. if (!get_device(&port->dev))
  161. port = NULL;
  162. read_unlock_irqrestore(&adapter->port_list_lock, flags);
  163. return port;
  164. }
  165. read_unlock_irqrestore(&adapter->port_list_lock, flags);
  166. return NULL;
  167. }
  168. static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
  169. {
  170. adapter->pool.erp_req =
  171. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  172. if (!adapter->pool.erp_req)
  173. return -ENOMEM;
  174. adapter->pool.gid_pn_req =
  175. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  176. if (!adapter->pool.gid_pn_req)
  177. return -ENOMEM;
  178. adapter->pool.scsi_req =
  179. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  180. if (!adapter->pool.scsi_req)
  181. return -ENOMEM;
  182. adapter->pool.scsi_abort =
  183. mempool_create_kmalloc_pool(1, sizeof(struct zfcp_fsf_req));
  184. if (!adapter->pool.scsi_abort)
  185. return -ENOMEM;
  186. adapter->pool.status_read_req =
  187. mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
  188. sizeof(struct zfcp_fsf_req));
  189. if (!adapter->pool.status_read_req)
  190. return -ENOMEM;
  191. adapter->pool.qtcb_pool =
  192. mempool_create_slab_pool(4, zfcp_fsf_qtcb_cache);
  193. if (!adapter->pool.qtcb_pool)
  194. return -ENOMEM;
  195. BUILD_BUG_ON(sizeof(struct fsf_status_read_buffer) > PAGE_SIZE);
  196. adapter->pool.sr_data =
  197. mempool_create_page_pool(FSF_STATUS_READS_RECOM, 0);
  198. if (!adapter->pool.sr_data)
  199. return -ENOMEM;
  200. adapter->pool.gid_pn =
  201. mempool_create_slab_pool(1, zfcp_fc_req_cache);
  202. if (!adapter->pool.gid_pn)
  203. return -ENOMEM;
  204. return 0;
  205. }
  206. static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
  207. {
  208. if (adapter->pool.erp_req)
  209. mempool_destroy(adapter->pool.erp_req);
  210. if (adapter->pool.scsi_req)
  211. mempool_destroy(adapter->pool.scsi_req);
  212. if (adapter->pool.scsi_abort)
  213. mempool_destroy(adapter->pool.scsi_abort);
  214. if (adapter->pool.qtcb_pool)
  215. mempool_destroy(adapter->pool.qtcb_pool);
  216. if (adapter->pool.status_read_req)
  217. mempool_destroy(adapter->pool.status_read_req);
  218. if (adapter->pool.sr_data)
  219. mempool_destroy(adapter->pool.sr_data);
  220. if (adapter->pool.gid_pn)
  221. mempool_destroy(adapter->pool.gid_pn);
  222. }
  223. /**
  224. * zfcp_status_read_refill - refill the long running status_read_requests
  225. * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
  226. *
  227. * Returns: 0 on success, 1 otherwise
  228. *
  229. * if there are 16 or more status_read requests missing an adapter_reopen
  230. * is triggered
  231. */
  232. int zfcp_status_read_refill(struct zfcp_adapter *adapter)
  233. {
  234. while (atomic_add_unless(&adapter->stat_miss, -1, 0))
  235. if (zfcp_fsf_status_read(adapter->qdio)) {
  236. atomic_inc(&adapter->stat_miss); /* undo add -1 */
  237. if (atomic_read(&adapter->stat_miss) >=
  238. adapter->stat_read_buf_num) {
  239. zfcp_erp_adapter_reopen(adapter, 0, "axsref1");
  240. return 1;
  241. }
  242. break;
  243. }
  244. return 0;
  245. }
  246. static void _zfcp_status_read_scheduler(struct work_struct *work)
  247. {
  248. zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
  249. stat_work));
  250. }
  251. static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
  252. {
  253. struct zfcp_adapter *adapter =
  254. container_of(sl, struct zfcp_adapter, service_level);
  255. seq_printf(m, "zfcp: %s microcode level %x\n",
  256. dev_name(&adapter->ccw_device->dev),
  257. adapter->fsf_lic_version);
  258. }
  259. static int zfcp_setup_adapter_work_queue(struct zfcp_adapter *adapter)
  260. {
  261. char name[TASK_COMM_LEN];
  262. snprintf(name, sizeof(name), "zfcp_q_%s",
  263. dev_name(&adapter->ccw_device->dev));
  264. adapter->work_queue = create_singlethread_workqueue(name);
  265. if (adapter->work_queue)
  266. return 0;
  267. return -ENOMEM;
  268. }
  269. static void zfcp_destroy_adapter_work_queue(struct zfcp_adapter *adapter)
  270. {
  271. if (adapter->work_queue)
  272. destroy_workqueue(adapter->work_queue);
  273. adapter->work_queue = NULL;
  274. }
  275. /**
  276. * zfcp_adapter_enqueue - enqueue a new adapter to the list
  277. * @ccw_device: pointer to the struct cc_device
  278. *
  279. * Returns: struct zfcp_adapter*
  280. * Enqueues an adapter at the end of the adapter list in the driver data.
  281. * All adapter internal structures are set up.
  282. * Proc-fs entries are also created.
  283. */
  284. struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)
  285. {
  286. struct zfcp_adapter *adapter;
  287. if (!get_device(&ccw_device->dev))
  288. return ERR_PTR(-ENODEV);
  289. adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
  290. if (!adapter) {
  291. put_device(&ccw_device->dev);
  292. return ERR_PTR(-ENOMEM);
  293. }
  294. kref_init(&adapter->ref);
  295. ccw_device->handler = NULL;
  296. adapter->ccw_device = ccw_device;
  297. INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
  298. INIT_DELAYED_WORK(&adapter->scan_work, zfcp_fc_scan_ports);
  299. INIT_WORK(&adapter->ns_up_work, zfcp_fc_sym_name_update);
  300. adapter->next_port_scan = jiffies;
  301. adapter->erp_action.adapter = adapter;
  302. if (zfcp_qdio_setup(adapter))
  303. goto failed;
  304. if (zfcp_allocate_low_mem_buffers(adapter))
  305. goto failed;
  306. adapter->req_list = zfcp_reqlist_alloc();
  307. if (!adapter->req_list)
  308. goto failed;
  309. if (zfcp_dbf_adapter_register(adapter))
  310. goto failed;
  311. if (zfcp_setup_adapter_work_queue(adapter))
  312. goto failed;
  313. if (zfcp_fc_gs_setup(adapter))
  314. goto failed;
  315. rwlock_init(&adapter->port_list_lock);
  316. INIT_LIST_HEAD(&adapter->port_list);
  317. INIT_LIST_HEAD(&adapter->events.list);
  318. INIT_WORK(&adapter->events.work, zfcp_fc_post_event);
  319. spin_lock_init(&adapter->events.list_lock);
  320. init_waitqueue_head(&adapter->erp_ready_wq);
  321. init_waitqueue_head(&adapter->erp_done_wqh);
  322. INIT_LIST_HEAD(&adapter->erp_ready_head);
  323. INIT_LIST_HEAD(&adapter->erp_running_head);
  324. rwlock_init(&adapter->erp_lock);
  325. rwlock_init(&adapter->abort_lock);
  326. if (zfcp_erp_thread_setup(adapter))
  327. goto failed;
  328. adapter->service_level.seq_print = zfcp_print_sl;
  329. dev_set_drvdata(&ccw_device->dev, adapter);
  330. if (sysfs_create_group(&ccw_device->dev.kobj,
  331. &zfcp_sysfs_adapter_attrs))
  332. goto failed;
  333. /* report size limit per scatter-gather segment */
  334. adapter->dma_parms.max_segment_size = ZFCP_QDIO_SBALE_LEN;
  335. adapter->ccw_device->dev.dma_parms = &adapter->dma_parms;
  336. adapter->stat_read_buf_num = FSF_STATUS_READS_RECOM;
  337. if (!zfcp_scsi_adapter_register(adapter))
  338. return adapter;
  339. failed:
  340. zfcp_adapter_unregister(adapter);
  341. return ERR_PTR(-ENOMEM);
  342. }
  343. void zfcp_adapter_unregister(struct zfcp_adapter *adapter)
  344. {
  345. struct ccw_device *cdev = adapter->ccw_device;
  346. cancel_delayed_work_sync(&adapter->scan_work);
  347. cancel_work_sync(&adapter->stat_work);
  348. cancel_work_sync(&adapter->ns_up_work);
  349. zfcp_destroy_adapter_work_queue(adapter);
  350. zfcp_fc_wka_ports_force_offline(adapter->gs);
  351. zfcp_scsi_adapter_unregister(adapter);
  352. sysfs_remove_group(&cdev->dev.kobj, &zfcp_sysfs_adapter_attrs);
  353. zfcp_erp_thread_kill(adapter);
  354. zfcp_dbf_adapter_unregister(adapter);
  355. zfcp_qdio_destroy(adapter->qdio);
  356. zfcp_ccw_adapter_put(adapter); /* final put to release */
  357. }
  358. /**
  359. * zfcp_adapter_release - remove the adapter from the resource list
  360. * @ref: pointer to struct kref
  361. * locks: adapter list write lock is assumed to be held by caller
  362. */
  363. void zfcp_adapter_release(struct kref *ref)
  364. {
  365. struct zfcp_adapter *adapter = container_of(ref, struct zfcp_adapter,
  366. ref);
  367. struct ccw_device *cdev = adapter->ccw_device;
  368. dev_set_drvdata(&adapter->ccw_device->dev, NULL);
  369. zfcp_fc_gs_destroy(adapter);
  370. zfcp_free_low_mem_buffers(adapter);
  371. kfree(adapter->req_list);
  372. kfree(adapter->fc_stats);
  373. kfree(adapter->stats_reset_data);
  374. kfree(adapter);
  375. put_device(&cdev->dev);
  376. }
  377. static void zfcp_port_release(struct device *dev)
  378. {
  379. struct zfcp_port *port = container_of(dev, struct zfcp_port, dev);
  380. zfcp_ccw_adapter_put(port->adapter);
  381. kfree(port);
  382. }
  383. /**
  384. * zfcp_port_enqueue - enqueue port to port list of adapter
  385. * @adapter: adapter where remote port is added
  386. * @wwpn: WWPN of the remote port to be enqueued
  387. * @status: initial status for the port
  388. * @d_id: destination id of the remote port to be enqueued
  389. * Returns: pointer to enqueued port on success, ERR_PTR on error
  390. *
  391. * All port internal structures are set up and the sysfs entry is generated.
  392. * d_id is used to enqueue ports with a well known address like the Directory
  393. * Service for nameserver lookup.
  394. */
  395. struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
  396. u32 status, u32 d_id)
  397. {
  398. struct zfcp_port *port;
  399. int retval = -ENOMEM;
  400. kref_get(&adapter->ref);
  401. port = zfcp_get_port_by_wwpn(adapter, wwpn);
  402. if (port) {
  403. put_device(&port->dev);
  404. retval = -EEXIST;
  405. goto err_out;
  406. }
  407. port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
  408. if (!port)
  409. goto err_out;
  410. rwlock_init(&port->unit_list_lock);
  411. INIT_LIST_HEAD(&port->unit_list);
  412. atomic_set(&port->units, 0);
  413. INIT_WORK(&port->gid_pn_work, zfcp_fc_port_did_lookup);
  414. INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
  415. INIT_WORK(&port->rport_work, zfcp_scsi_rport_work);
  416. port->adapter = adapter;
  417. port->d_id = d_id;
  418. port->wwpn = wwpn;
  419. port->rport_task = RPORT_NONE;
  420. port->dev.parent = &adapter->ccw_device->dev;
  421. port->dev.groups = zfcp_port_attr_groups;
  422. port->dev.release = zfcp_port_release;
  423. port->erp_action.adapter = adapter;
  424. port->erp_action.port = port;
  425. if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) {
  426. kfree(port);
  427. goto err_out;
  428. }
  429. retval = -EINVAL;
  430. if (device_register(&port->dev)) {
  431. put_device(&port->dev);
  432. goto err_out;
  433. }
  434. write_lock_irq(&adapter->port_list_lock);
  435. list_add_tail(&port->list, &adapter->port_list);
  436. write_unlock_irq(&adapter->port_list_lock);
  437. atomic_or(status | ZFCP_STATUS_COMMON_RUNNING, &port->status);
  438. return port;
  439. err_out:
  440. zfcp_ccw_adapter_put(adapter);
  441. return ERR_PTR(retval);
  442. }
  443. /**
  444. * zfcp_sg_free_table - free memory used by scatterlists
  445. * @sg: pointer to scatterlist
  446. * @count: number of scatterlist which are to be free'ed
  447. * the scatterlist are expected to reference pages always
  448. */
  449. void zfcp_sg_free_table(struct scatterlist *sg, int count)
  450. {
  451. int i;
  452. for (i = 0; i < count; i++, sg++)
  453. if (sg)
  454. free_page((unsigned long) sg_virt(sg));
  455. else
  456. break;
  457. }
  458. /**
  459. * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
  460. * @sg: pointer to struct scatterlist
  461. * @count: number of scatterlists which should be assigned with buffers
  462. * of size page
  463. *
  464. * Returns: 0 on success, -ENOMEM otherwise
  465. */
  466. int zfcp_sg_setup_table(struct scatterlist *sg, int count)
  467. {
  468. void *addr;
  469. int i;
  470. sg_init_table(sg, count);
  471. for (i = 0; i < count; i++, sg++) {
  472. addr = (void *) get_zeroed_page(GFP_KERNEL);
  473. if (!addr) {
  474. zfcp_sg_free_table(sg, i);
  475. return -ENOMEM;
  476. }
  477. sg_set_buf(sg, addr, PAGE_SIZE);
  478. }
  479. return 0;
  480. }