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>
38 #include <target/target_core_base.h>
39 #include <target/target_core_device.h>
40 #include <target/target_core_tpg.h>
41 #include <target/target_core_transport.h>
43 #include "target_core_hba.h"
45 static LIST_HEAD(subsystem_list
);
46 static DEFINE_MUTEX(subsystem_mutex
);
48 int transport_subsystem_register(struct se_subsystem_api
*sub_api
)
50 struct se_subsystem_api
*s
;
52 INIT_LIST_HEAD(&sub_api
->sub_api_list
);
54 mutex_lock(&subsystem_mutex
);
55 list_for_each_entry(s
, &subsystem_list
, sub_api_list
) {
56 if (!(strcmp(s
->name
, sub_api
->name
))) {
57 printk(KERN_ERR
"%p is already registered with"
58 " duplicate name %s, unable to process"
59 " request\n", s
, s
->name
);
60 mutex_unlock(&subsystem_mutex
);
64 list_add_tail(&sub_api
->sub_api_list
, &subsystem_list
);
65 mutex_unlock(&subsystem_mutex
);
67 printk(KERN_INFO
"TCM: Registered subsystem plugin: %s struct module:"
68 " %p\n", sub_api
->name
, sub_api
->owner
);
71 EXPORT_SYMBOL(transport_subsystem_register
);
73 void transport_subsystem_release(struct se_subsystem_api
*sub_api
)
75 mutex_lock(&subsystem_mutex
);
76 list_del(&sub_api
->sub_api_list
);
77 mutex_unlock(&subsystem_mutex
);
79 EXPORT_SYMBOL(transport_subsystem_release
);
81 static struct se_subsystem_api
*core_get_backend(const char *sub_name
)
83 struct se_subsystem_api
*s
;
85 mutex_lock(&subsystem_mutex
);
86 list_for_each_entry(s
, &subsystem_list
, sub_api_list
) {
87 if (!strcmp(s
->name
, sub_name
))
90 mutex_unlock(&subsystem_mutex
);
93 if (s
->owner
&& !try_module_get(s
->owner
))
95 mutex_unlock(&subsystem_mutex
);
100 core_alloc_hba(const char *plugin_name
, u32 plugin_dep_id
, u32 hba_flags
)
105 hba
= kzalloc(sizeof(*hba
), GFP_KERNEL
);
107 printk(KERN_ERR
"Unable to allocate struct se_hba\n");
108 return ERR_PTR(-ENOMEM
);
111 INIT_LIST_HEAD(&hba
->hba_dev_list
);
112 spin_lock_init(&hba
->device_lock
);
113 spin_lock_init(&hba
->hba_queue_lock
);
114 mutex_init(&hba
->hba_access_mutex
);
116 hba
->hba_index
= scsi_get_new_index(SCSI_INST_INDEX
);
117 hba
->hba_flags
|= hba_flags
;
119 atomic_set(&hba
->max_queue_depth
, 0);
120 atomic_set(&hba
->left_queue_depth
, 0);
122 hba
->transport
= core_get_backend(plugin_name
);
123 if (!hba
->transport
) {
128 ret
= hba
->transport
->attach_hba(hba
, plugin_dep_id
);
132 spin_lock(&se_global
->hba_lock
);
133 hba
->hba_id
= se_global
->g_hba_id_counter
++;
134 list_add_tail(&hba
->hba_list
, &se_global
->g_hba_list
);
135 spin_unlock(&se_global
->hba_lock
);
137 printk(KERN_INFO
"CORE_HBA[%d] - Attached HBA to Generic Target"
138 " Core\n", hba
->hba_id
);
143 if (hba
->transport
->owner
)
144 module_put(hba
->transport
->owner
);
145 hba
->transport
= NULL
;
152 core_delete_hba(struct se_hba
*hba
)
154 if (!list_empty(&hba
->hba_dev_list
))
157 hba
->transport
->detach_hba(hba
);
159 spin_lock(&se_global
->hba_lock
);
160 list_del(&hba
->hba_list
);
161 spin_unlock(&se_global
->hba_lock
);
163 printk(KERN_INFO
"CORE_HBA[%d] - Detached HBA from Generic Target"
164 " Core\n", hba
->hba_id
);
166 if (hba
->transport
->owner
)
167 module_put(hba
->transport
->owner
);
169 hba
->transport
= NULL
;