target_core_hba.c 4.2 KB

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