target_core_hba.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*******************************************************************************
  2. * Filename: target_core_hba.c
  3. *
  4. * This file contains the TCM HBA Transport related functions.
  5. *
  6. * Copyright (c) 2003, 2004, 2005 PyX Technologies, Inc.
  7. * Copyright (c) 2005, 2006, 2007 SBE, Inc.
  8. * Copyright (c) 2007-2010 Rising Tide Systems
  9. * Copyright (c) 2008-2010 Linux-iSCSI.org
  10. *
  11. * Nicholas A. Bellinger <nab@kernel.org>
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  26. *
  27. ******************************************************************************/
  28. #include <linux/net.h>
  29. #include <linux/string.h>
  30. #include <linux/timer.h>
  31. #include <linux/slab.h>
  32. #include <linux/spinlock.h>
  33. #include <linux/in.h>
  34. #include <linux/module.h>
  35. #include <net/sock.h>
  36. #include <net/tcp.h>
  37. #include <target/target_core_base.h>
  38. #include <target/target_core_device.h>
  39. #include <target/target_core_tpg.h>
  40. #include <target/target_core_transport.h>
  41. #include "target_core_hba.h"
  42. static LIST_HEAD(subsystem_list);
  43. static DEFINE_MUTEX(subsystem_mutex);
  44. static u32 hba_id_counter;
  45. static DEFINE_SPINLOCK(hba_lock);
  46. static LIST_HEAD(hba_list);
  47. int transport_subsystem_register(struct se_subsystem_api *sub_api)
  48. {
  49. struct se_subsystem_api *s;
  50. INIT_LIST_HEAD(&sub_api->sub_api_list);
  51. mutex_lock(&subsystem_mutex);
  52. list_for_each_entry(s, &subsystem_list, sub_api_list) {
  53. if (!strcmp(s->name, sub_api->name)) {
  54. pr_err("%p is already registered with"
  55. " duplicate name %s, unable to process"
  56. " request\n", s, s->name);
  57. mutex_unlock(&subsystem_mutex);
  58. return -EEXIST;
  59. }
  60. }
  61. list_add_tail(&sub_api->sub_api_list, &subsystem_list);
  62. mutex_unlock(&subsystem_mutex);
  63. pr_debug("TCM: Registered subsystem plugin: %s struct module:"
  64. " %p\n", sub_api->name, sub_api->owner);
  65. return 0;
  66. }
  67. EXPORT_SYMBOL(transport_subsystem_register);
  68. void transport_subsystem_release(struct se_subsystem_api *sub_api)
  69. {
  70. mutex_lock(&subsystem_mutex);
  71. list_del(&sub_api->sub_api_list);
  72. mutex_unlock(&subsystem_mutex);
  73. }
  74. EXPORT_SYMBOL(transport_subsystem_release);
  75. static struct se_subsystem_api *core_get_backend(const char *sub_name)
  76. {
  77. struct se_subsystem_api *s;
  78. mutex_lock(&subsystem_mutex);
  79. list_for_each_entry(s, &subsystem_list, sub_api_list) {
  80. if (!strcmp(s->name, sub_name))
  81. goto found;
  82. }
  83. mutex_unlock(&subsystem_mutex);
  84. return NULL;
  85. found:
  86. if (s->owner && !try_module_get(s->owner))
  87. s = NULL;
  88. mutex_unlock(&subsystem_mutex);
  89. return s;
  90. }
  91. struct se_hba *
  92. core_alloc_hba(const char *plugin_name, u32 plugin_dep_id, u32 hba_flags)
  93. {
  94. struct se_hba *hba;
  95. int ret = 0;
  96. hba = kzalloc(sizeof(*hba), GFP_KERNEL);
  97. if (!hba) {
  98. pr_err("Unable to allocate struct se_hba\n");
  99. return ERR_PTR(-ENOMEM);
  100. }
  101. INIT_LIST_HEAD(&hba->hba_dev_list);
  102. spin_lock_init(&hba->device_lock);
  103. mutex_init(&hba->hba_access_mutex);
  104. hba->hba_index = scsi_get_new_index(SCSI_INST_INDEX);
  105. hba->hba_flags |= hba_flags;
  106. hba->transport = core_get_backend(plugin_name);
  107. if (!hba->transport) {
  108. ret = -EINVAL;
  109. goto out_free_hba;
  110. }
  111. ret = hba->transport->attach_hba(hba, plugin_dep_id);
  112. if (ret < 0)
  113. goto out_module_put;
  114. spin_lock(&hba_lock);
  115. hba->hba_id = hba_id_counter++;
  116. list_add_tail(&hba->hba_node, &hba_list);
  117. spin_unlock(&hba_lock);
  118. pr_debug("CORE_HBA[%d] - Attached HBA to Generic Target"
  119. " Core\n", hba->hba_id);
  120. return hba;
  121. out_module_put:
  122. if (hba->transport->owner)
  123. module_put(hba->transport->owner);
  124. hba->transport = NULL;
  125. out_free_hba:
  126. kfree(hba);
  127. return ERR_PTR(ret);
  128. }
  129. int
  130. core_delete_hba(struct se_hba *hba)
  131. {
  132. if (!list_empty(&hba->hba_dev_list))
  133. dump_stack();
  134. hba->transport->detach_hba(hba);
  135. spin_lock(&hba_lock);
  136. list_del(&hba->hba_node);
  137. spin_unlock(&hba_lock);
  138. pr_debug("CORE_HBA[%d] - Detached HBA from Generic Target"
  139. " Core\n", hba->hba_id);
  140. if (hba->transport->owner)
  141. module_put(hba->transport->owner);
  142. hba->transport = NULL;
  143. kfree(hba);
  144. return 0;
  145. }