1 /*******************************************************************************
2 * Filename: target_core_hba.c
4 * This file copntains the iSCSI HBA Transport related functions.
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
11 * Nicholas A. Bellinger <nab@kernel.org>
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.
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.
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.
27 ******************************************************************************/
29 #include <linux/net.h>
30 #include <linux/string.h>
31 #include <linux/timer.h>
32 #include <linux/slab.h>
33 #include <linux/spinlock.h>
34 #include <linux/smp_lock.h>
39 #include <target/target_core_base.h>
40 #include <target/target_core_device.h>
41 #include <target/target_core_device.h>
42 #include <target/target_core_tpg.h>
43 #include <target/target_core_transport.h>
45 #include "target_core_hba.h"
47 static LIST_HEAD(subsystem_list
);
48 static DEFINE_MUTEX(subsystem_mutex
);
50 int transport_subsystem_register(struct se_subsystem_api
*sub_api
)
52 struct se_subsystem_api
*s
;
54 INIT_LIST_HEAD(&sub_api
->sub_api_list
);
56 mutex_lock(&subsystem_mutex
);
57 list_for_each_entry(s
, &subsystem_list
, sub_api_list
) {
58 if (!(strcmp(s
->name
, sub_api
->name
))) {
59 printk(KERN_ERR
"%p is already registered with"
60 " duplicate name %s, unable to process"
61 " request\n", s
, s
->name
);
62 mutex_unlock(&subsystem_mutex
);
66 list_add_tail(&sub_api
->sub_api_list
, &subsystem_list
);
67 mutex_unlock(&subsystem_mutex
);
69 printk(KERN_INFO
"TCM: Registered subsystem plugin: %s struct module:"
70 " %p\n", sub_api
->name
, sub_api
->owner
);
73 EXPORT_SYMBOL(transport_subsystem_register
);
75 void transport_subsystem_release(struct se_subsystem_api
*sub_api
)
77 mutex_lock(&subsystem_mutex
);
78 list_del(&sub_api
->sub_api_list
);
79 mutex_unlock(&subsystem_mutex
);
81 EXPORT_SYMBOL(transport_subsystem_release
);
83 static struct se_subsystem_api
*core_get_backend(const char *sub_name
)
85 struct se_subsystem_api
*s
;
87 mutex_lock(&subsystem_mutex
);
88 list_for_each_entry(s
, &subsystem_list
, sub_api_list
) {
89 if (!strcmp(s
->name
, sub_name
))
92 mutex_unlock(&subsystem_mutex
);
95 if (s
->owner
&& !try_module_get(s
->owner
))
97 mutex_unlock(&subsystem_mutex
);
102 core_alloc_hba(const char *plugin_name
, u32 plugin_dep_id
, u32 hba_flags
)
107 hba
= kzalloc(sizeof(*hba
), GFP_KERNEL
);
109 printk(KERN_ERR
"Unable to allocate struct se_hba\n");
110 return ERR_PTR(-ENOMEM
);
113 INIT_LIST_HEAD(&hba
->hba_dev_list
);
114 spin_lock_init(&hba
->device_lock
);
115 spin_lock_init(&hba
->hba_queue_lock
);
116 mutex_init(&hba
->hba_access_mutex
);
118 hba
->hba_index
= scsi_get_new_index(SCSI_INST_INDEX
);
119 hba
->hba_flags
|= hba_flags
;
121 atomic_set(&hba
->max_queue_depth
, 0);
122 atomic_set(&hba
->left_queue_depth
, 0);
124 hba
->transport
= core_get_backend(plugin_name
);
125 if (!hba
->transport
) {
130 ret
= hba
->transport
->attach_hba(hba
, plugin_dep_id
);
134 spin_lock(&se_global
->hba_lock
);
135 hba
->hba_id
= se_global
->g_hba_id_counter
++;
136 list_add_tail(&hba
->hba_list
, &se_global
->g_hba_list
);
137 spin_unlock(&se_global
->hba_lock
);
139 printk(KERN_INFO
"CORE_HBA[%d] - Attached HBA to Generic Target"
140 " Core\n", hba
->hba_id
);
145 if (hba
->transport
->owner
)
146 module_put(hba
->transport
->owner
);
147 hba
->transport
= NULL
;
154 core_delete_hba(struct se_hba
*hba
)
156 struct se_device
*dev
, *dev_tmp
;
158 spin_lock(&hba
->device_lock
);
159 list_for_each_entry_safe(dev
, dev_tmp
, &hba
->hba_dev_list
, dev_list
) {
161 se_clear_dev_ports(dev
);
162 spin_unlock(&hba
->device_lock
);
164 se_release_device_for_hba(dev
);
166 spin_lock(&hba
->device_lock
);
168 spin_unlock(&hba
->device_lock
);
170 hba
->transport
->detach_hba(hba
);
172 spin_lock(&se_global
->hba_lock
);
173 list_del(&hba
->hba_list
);
174 spin_unlock(&se_global
->hba_lock
);
176 printk(KERN_INFO
"CORE_HBA[%d] - Detached HBA from Generic Target"
177 " Core\n", hba
->hba_id
);
179 if (hba
->transport
->owner
)
180 module_put(hba
->transport
->owner
);
182 hba
->transport
= NULL
;