target_core_hba.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. /*******************************************************************************
  2. * Filename: target_core_hba.c
  3. *
  4. * This file copntains the iSCSI 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/smp_lock.h>
  34. #include <linux/in.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_device.h>
  40. #include <target/target_core_tpg.h>
  41. #include <target/target_core_transport.h>
  42. #include "target_core_hba.h"
  43. static LIST_HEAD(subsystem_list);
  44. static DEFINE_MUTEX(subsystem_mutex);
  45. int transport_subsystem_register(struct se_subsystem_api *sub_api)
  46. {
  47. struct se_subsystem_api *s;
  48. INIT_LIST_HEAD(&sub_api->sub_api_list);
  49. mutex_lock(&subsystem_mutex);
  50. list_for_each_entry(s, &subsystem_list, sub_api_list) {
  51. if (!(strcmp(s->name, sub_api->name))) {
  52. printk(KERN_ERR "%p is already registered with"
  53. " duplicate name %s, unable to process"
  54. " request\n", s, s->name);
  55. mutex_unlock(&subsystem_mutex);
  56. return -EEXIST;
  57. }
  58. }
  59. list_add_tail(&sub_api->sub_api_list, &subsystem_list);
  60. mutex_unlock(&subsystem_mutex);
  61. printk(KERN_INFO "TCM: Registered subsystem plugin: %s struct module:"
  62. " %p\n", sub_api->name, sub_api->owner);
  63. return 0;
  64. }
  65. EXPORT_SYMBOL(transport_subsystem_register);
  66. void transport_subsystem_release(struct se_subsystem_api *sub_api)
  67. {
  68. mutex_lock(&subsystem_mutex);
  69. list_del(&sub_api->sub_api_list);
  70. mutex_unlock(&subsystem_mutex);
  71. }
  72. EXPORT_SYMBOL(transport_subsystem_release);
  73. static struct se_subsystem_api *core_get_backend(const char *sub_name)
  74. {
  75. struct se_subsystem_api *s;
  76. mutex_lock(&subsystem_mutex);
  77. list_for_each_entry(s, &subsystem_list, sub_api_list) {
  78. if (!strcmp(s->name, sub_name))
  79. goto found;
  80. }
  81. mutex_unlock(&subsystem_mutex);
  82. return NULL;
  83. found:
  84. if (s->owner && !try_module_get(s->owner))
  85. s = NULL;
  86. mutex_unlock(&subsystem_mutex);
  87. return s;
  88. }
  89. struct se_hba *
  90. core_alloc_hba(const char *plugin_name, u32 plugin_dep_id, u32 hba_flags)
  91. {
  92. struct se_hba *hba;
  93. int ret = 0;
  94. hba = kzalloc(sizeof(*hba), GFP_KERNEL);
  95. if (!hba) {
  96. printk(KERN_ERR "Unable to allocate struct se_hba\n");
  97. return ERR_PTR(-ENOMEM);
  98. }
  99. INIT_LIST_HEAD(&hba->hba_dev_list);
  100. spin_lock_init(&hba->device_lock);
  101. spin_lock_init(&hba->hba_queue_lock);
  102. mutex_init(&hba->hba_access_mutex);
  103. hba->hba_index = scsi_get_new_index(SCSI_INST_INDEX);
  104. hba->hba_flags |= hba_flags;
  105. atomic_set(&hba->max_queue_depth, 0);
  106. atomic_set(&hba->left_queue_depth, 0);
  107. hba->transport = core_get_backend(plugin_name);
  108. if (!hba->transport) {
  109. ret = -EINVAL;
  110. goto out_free_hba;
  111. }
  112. ret = hba->transport->attach_hba(hba, plugin_dep_id);
  113. if (ret < 0)
  114. goto out_module_put;
  115. spin_lock(&se_global->hba_lock);
  116. hba->hba_id = se_global->g_hba_id_counter++;
  117. list_add_tail(&hba->hba_list, &se_global->g_hba_list);
  118. spin_unlock(&se_global->hba_lock);
  119. printk(KERN_INFO "CORE_HBA[%d] - Attached HBA to Generic Target"
  120. " Core\n", hba->hba_id);
  121. return hba;
  122. out_module_put:
  123. if (hba->transport->owner)
  124. module_put(hba->transport->owner);
  125. hba->transport = NULL;
  126. out_free_hba:
  127. kfree(hba);
  128. return ERR_PTR(ret);
  129. }
  130. int
  131. core_delete_hba(struct se_hba *hba)
  132. {
  133. struct se_device *dev, *dev_tmp;
  134. spin_lock(&hba->device_lock);
  135. list_for_each_entry_safe(dev, dev_tmp, &hba->hba_dev_list, dev_list) {
  136. se_clear_dev_ports(dev);
  137. spin_unlock(&hba->device_lock);
  138. se_release_device_for_hba(dev);
  139. spin_lock(&hba->device_lock);
  140. }
  141. spin_unlock(&hba->device_lock);
  142. hba->transport->detach_hba(hba);
  143. spin_lock(&se_global->hba_lock);
  144. list_del(&hba->hba_list);
  145. spin_unlock(&se_global->hba_lock);
  146. printk(KERN_INFO "CORE_HBA[%d] - Detached HBA from Generic Target"
  147. " Core\n", hba->hba_id);
  148. if (hba->transport->owner)
  149. module_put(hba->transport->owner);
  150. hba->transport = NULL;
  151. kfree(hba);
  152. return 0;
  153. }