1 /*******************************************************************************
2 * Filename: target_core_hba.c
4 * This file contains the TCM HBA Transport related functions.
6 * (c) Copyright 2003-2013 Datera, Inc.
8 * Nicholas A. Bellinger <nab@kernel.org>
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.
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.
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.
24 ******************************************************************************/
26 #include <linux/net.h>
27 #include <linux/string.h>
28 #include <linux/timer.h>
29 #include <linux/slab.h>
30 #include <linux/spinlock.h>
32 #include <linux/module.h>
36 #include <target/target_core_base.h>
37 #include <target/target_core_backend.h>
38 #include <target/target_core_fabric.h>
40 #include "target_core_internal.h"
42 static LIST_HEAD(backend_list
);
43 static DEFINE_MUTEX(backend_mutex
);
45 static u32 hba_id_counter
;
47 static DEFINE_SPINLOCK(hba_lock
);
48 static LIST_HEAD(hba_list
);
51 int transport_backend_register(const struct target_backend_ops
*ops
)
53 struct target_backend
*tb
, *old
;
55 tb
= kzalloc(sizeof(*tb
), GFP_KERNEL
);
60 mutex_lock(&backend_mutex
);
61 list_for_each_entry(old
, &backend_list
, list
) {
62 if (!strcmp(old
->ops
->name
, ops
->name
)) {
63 pr_err("backend %s already registered.\n", ops
->name
);
64 mutex_unlock(&backend_mutex
);
69 target_setup_backend_cits(tb
);
70 list_add_tail(&tb
->list
, &backend_list
);
71 mutex_unlock(&backend_mutex
);
73 pr_debug("TCM: Registered subsystem plugin: %s struct module: %p\n",
74 ops
->name
, ops
->owner
);
77 EXPORT_SYMBOL(transport_backend_register
);
79 void target_backend_unregister(const struct target_backend_ops
*ops
)
81 struct target_backend
*tb
;
83 mutex_lock(&backend_mutex
);
84 list_for_each_entry(tb
, &backend_list
, list
) {
87 mutex_unlock(&backend_mutex
);
89 * Wait for any outstanding backend driver ->rcu_head
90 * callbacks to complete post TBO->free_device() ->
91 * call_rcu(), before allowing backend driver module
92 * unload of target_backend_ops->owner to proceed.
99 mutex_unlock(&backend_mutex
);
101 EXPORT_SYMBOL(target_backend_unregister
);
103 static struct target_backend
*core_get_backend(const char *name
)
105 struct target_backend
*tb
;
107 mutex_lock(&backend_mutex
);
108 list_for_each_entry(tb
, &backend_list
, list
) {
109 if (!strcmp(tb
->ops
->name
, name
))
112 mutex_unlock(&backend_mutex
);
115 if (tb
->ops
->owner
&& !try_module_get(tb
->ops
->owner
))
117 mutex_unlock(&backend_mutex
);
122 core_alloc_hba(const char *plugin_name
, u32 plugin_dep_id
, u32 hba_flags
)
127 hba
= kzalloc(sizeof(*hba
), GFP_KERNEL
);
129 pr_err("Unable to allocate struct se_hba\n");
130 return ERR_PTR(-ENOMEM
);
133 spin_lock_init(&hba
->device_lock
);
134 mutex_init(&hba
->hba_access_mutex
);
136 hba
->hba_index
= scsi_get_new_index(SCSI_INST_INDEX
);
137 hba
->hba_flags
|= hba_flags
;
139 hba
->backend
= core_get_backend(plugin_name
);
145 ret
= hba
->backend
->ops
->attach_hba(hba
, plugin_dep_id
);
149 spin_lock(&hba_lock
);
150 hba
->hba_id
= hba_id_counter
++;
151 list_add_tail(&hba
->hba_node
, &hba_list
);
152 spin_unlock(&hba_lock
);
154 pr_debug("CORE_HBA[%d] - Attached HBA to Generic Target"
155 " Core\n", hba
->hba_id
);
160 module_put(hba
->backend
->ops
->owner
);
168 core_delete_hba(struct se_hba
*hba
)
170 WARN_ON(hba
->dev_count
);
172 hba
->backend
->ops
->detach_hba(hba
);
174 spin_lock(&hba_lock
);
175 list_del(&hba
->hba_node
);
176 spin_unlock(&hba_lock
);
178 pr_debug("CORE_HBA[%d] - Detached HBA from Generic Target"
179 " Core\n", hba
->hba_id
);
181 module_put(hba
->backend
->ops
->owner
);
188 bool target_sense_desc_format(struct se_device
*dev
)
190 return (dev
) ? dev
->transport
->get_blocks(dev
) > U32_MAX
: false;