blob: f7ba94aa52cbf1fad0454b11c98e2d545d42f50b [file] [log] [blame]
FUJITA Tomonori09345f62007-06-27 16:32:39 +09001/*
2 * SCSI RDMA (SRP) transport class
3 *
4 * Copyright (C) 2007 FUJITA Tomonori <tomof@acm.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
9 * License.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
19 * 02110-1301 USA
20 */
21#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/jiffies.h>
24#include <linux/err.h>
25#include <linux/slab.h>
26#include <linux/string.h>
27
28#include <scsi/scsi.h>
29#include <scsi/scsi_device.h>
30#include <scsi/scsi_host.h>
31#include <scsi/scsi_transport.h>
32#include <scsi/scsi_transport_srp.h>
FUJITA Tomonori0012fdf2007-08-02 00:20:34 +090033#include "scsi_transport_srp_internal.h"
FUJITA Tomonori09345f62007-06-27 16:32:39 +090034
35struct srp_host_attrs {
36 atomic_t next_port_id;
37};
38#define to_srp_host_attrs(host) ((struct srp_host_attrs *)(host)->shost_data)
39
40#define SRP_HOST_ATTRS 0
Bart Van Asschedc1bdbd2011-09-16 20:41:13 +020041#define SRP_RPORT_ATTRS 3
FUJITA Tomonori09345f62007-06-27 16:32:39 +090042
43struct srp_internal {
44 struct scsi_transport_template t;
45 struct srp_function_template *f;
46
Tony Jonesee959b02008-02-22 00:13:36 +010047 struct device_attribute *host_attrs[SRP_HOST_ATTRS + 1];
FUJITA Tomonori09345f62007-06-27 16:32:39 +090048
Tony Jonesee959b02008-02-22 00:13:36 +010049 struct device_attribute *rport_attrs[SRP_RPORT_ATTRS + 1];
FUJITA Tomonori09345f62007-06-27 16:32:39 +090050 struct transport_container rport_attr_cont;
51};
52
53#define to_srp_internal(tmpl) container_of(tmpl, struct srp_internal, t)
54
55#define dev_to_rport(d) container_of(d, struct srp_rport, dev)
Tony Jonesee959b02008-02-22 00:13:36 +010056#define transport_class_to_srp_rport(dev) dev_to_rport((dev)->parent)
FUJITA Tomonori09345f62007-06-27 16:32:39 +090057
58static int srp_host_setup(struct transport_container *tc, struct device *dev,
Tony Jonesee959b02008-02-22 00:13:36 +010059 struct device *cdev)
FUJITA Tomonori09345f62007-06-27 16:32:39 +090060{
61 struct Scsi_Host *shost = dev_to_shost(dev);
62 struct srp_host_attrs *srp_host = to_srp_host_attrs(shost);
63
64 atomic_set(&srp_host->next_port_id, 0);
65 return 0;
66}
67
68static DECLARE_TRANSPORT_CLASS(srp_host_class, "srp_host", srp_host_setup,
69 NULL, NULL);
70
71static DECLARE_TRANSPORT_CLASS(srp_rport_class, "srp_remote_ports",
72 NULL, NULL, NULL);
73
FUJITA Tomonori09345f62007-06-27 16:32:39 +090074#define SRP_PID(p) \
75 (p)->port_id[0], (p)->port_id[1], (p)->port_id[2], (p)->port_id[3], \
76 (p)->port_id[4], (p)->port_id[5], (p)->port_id[6], (p)->port_id[7], \
77 (p)->port_id[8], (p)->port_id[9], (p)->port_id[10], (p)->port_id[11], \
78 (p)->port_id[12], (p)->port_id[13], (p)->port_id[14], (p)->port_id[15]
79
80#define SRP_PID_FMT "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x:" \
81 "%02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x"
82
83static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +010084show_srp_rport_id(struct device *dev, struct device_attribute *attr,
85 char *buf)
FUJITA Tomonori09345f62007-06-27 16:32:39 +090086{
Tony Jonesee959b02008-02-22 00:13:36 +010087 struct srp_rport *rport = transport_class_to_srp_rport(dev);
FUJITA Tomonori09345f62007-06-27 16:32:39 +090088 return sprintf(buf, SRP_PID_FMT "\n", SRP_PID(rport));
89}
90
Tony Jonesee959b02008-02-22 00:13:36 +010091static DEVICE_ATTR(port_id, S_IRUGO, show_srp_rport_id, NULL);
FUJITA Tomonori09345f62007-06-27 16:32:39 +090092
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +090093static const struct {
94 u32 value;
95 char *name;
96} srp_rport_role_names[] = {
97 {SRP_RPORT_ROLE_INITIATOR, "SRP Initiator"},
98 {SRP_RPORT_ROLE_TARGET, "SRP Target"},
99};
100
101static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100102show_srp_rport_roles(struct device *dev, struct device_attribute *attr,
103 char *buf)
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +0900104{
Tony Jonesee959b02008-02-22 00:13:36 +0100105 struct srp_rport *rport = transport_class_to_srp_rport(dev);
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +0900106 int i;
107 char *name = NULL;
108
109 for (i = 0; i < ARRAY_SIZE(srp_rport_role_names); i++)
110 if (srp_rport_role_names[i].value == rport->roles) {
111 name = srp_rport_role_names[i].name;
112 break;
113 }
114 return sprintf(buf, "%s\n", name ? : "unknown");
115}
116
Tony Jonesee959b02008-02-22 00:13:36 +0100117static DEVICE_ATTR(roles, S_IRUGO, show_srp_rport_roles, NULL);
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +0900118
Bart Van Asschedc1bdbd2011-09-16 20:41:13 +0200119static ssize_t store_srp_rport_delete(struct device *dev,
120 struct device_attribute *attr,
121 const char *buf, size_t count)
122{
123 struct srp_rport *rport = transport_class_to_srp_rport(dev);
124 struct Scsi_Host *shost = dev_to_shost(dev);
125 struct srp_internal *i = to_srp_internal(shost->transportt);
126
127 if (i->f->rport_delete) {
128 i->f->rport_delete(rport);
129 return count;
130 } else {
131 return -ENOSYS;
132 }
133}
134
135static DEVICE_ATTR(delete, S_IWUSR, NULL, store_srp_rport_delete);
136
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900137static void srp_rport_release(struct device *dev)
138{
139 struct srp_rport *rport = dev_to_rport(dev);
140
141 put_device(dev->parent);
142 kfree(rport);
143}
144
145static int scsi_is_srp_rport(const struct device *dev)
146{
147 return dev->release == srp_rport_release;
148}
149
150static int srp_rport_match(struct attribute_container *cont,
151 struct device *dev)
152{
153 struct Scsi_Host *shost;
154 struct srp_internal *i;
155
156 if (!scsi_is_srp_rport(dev))
157 return 0;
158
159 shost = dev_to_shost(dev->parent);
160 if (!shost->transportt)
161 return 0;
162 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class)
163 return 0;
164
165 i = to_srp_internal(shost->transportt);
166 return &i->rport_attr_cont.ac == cont;
167}
168
169static int srp_host_match(struct attribute_container *cont, struct device *dev)
170{
171 struct Scsi_Host *shost;
172 struct srp_internal *i;
173
174 if (!scsi_is_host_device(dev))
175 return 0;
176
177 shost = dev_to_shost(dev);
178 if (!shost->transportt)
179 return 0;
180 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class)
181 return 0;
182
183 i = to_srp_internal(shost->transportt);
184 return &i->t.host_attrs.ac == cont;
185}
186
187/**
Bart Van Assche9dd69a62013-10-26 14:32:30 +0200188 * srp_rport_get() - increment rport reference count
189 */
190void srp_rport_get(struct srp_rport *rport)
191{
192 get_device(&rport->dev);
193}
194EXPORT_SYMBOL(srp_rport_get);
195
196/**
197 * srp_rport_put() - decrement rport reference count
198 */
199void srp_rport_put(struct srp_rport *rport)
200{
201 put_device(&rport->dev);
202}
203EXPORT_SYMBOL(srp_rport_put);
204
205/**
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900206 * srp_rport_add - add a SRP remote port to the device hierarchy
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900207 * @shost: scsi host the remote port is connected to.
208 * @ids: The port id for the remote port.
209 *
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800210 * Publishes a port to the rest of the system.
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900211 */
212struct srp_rport *srp_rport_add(struct Scsi_Host *shost,
213 struct srp_rport_identifiers *ids)
214{
215 struct srp_rport *rport;
216 struct device *parent = &shost->shost_gendev;
217 int id, ret;
218
219 rport = kzalloc(sizeof(*rport), GFP_KERNEL);
220 if (!rport)
221 return ERR_PTR(-ENOMEM);
222
223 device_initialize(&rport->dev);
224
225 rport->dev.parent = get_device(parent);
226 rport->dev.release = srp_rport_release;
227
228 memcpy(rport->port_id, ids->port_id, sizeof(rport->port_id));
FUJITA Tomonoriaebd5e42007-07-11 15:08:15 +0900229 rport->roles = ids->roles;
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900230
231 id = atomic_inc_return(&to_srp_host_attrs(shost)->next_port_id);
Kay Sievers71610f52008-12-03 22:41:36 +0100232 dev_set_name(&rport->dev, "port-%d:%d", shost->host_no, id);
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900233
234 transport_setup_device(&rport->dev);
235
236 ret = device_add(&rport->dev);
237 if (ret) {
238 transport_destroy_device(&rport->dev);
239 put_device(&rport->dev);
240 return ERR_PTR(ret);
241 }
242
FUJITA Tomonori72e39ea2007-09-01 02:03:39 +0900243 if (shost->active_mode & MODE_TARGET &&
244 ids->roles == SRP_RPORT_ROLE_INITIATOR) {
FUJITA Tomonori0012fdf2007-08-02 00:20:34 +0900245 ret = srp_tgt_it_nexus_create(shost, (unsigned long)rport,
246 rport->port_id);
FUJITA Tomonori62fe8822007-07-11 15:08:19 +0900247 if (ret) {
248 device_del(&rport->dev);
249 transport_destroy_device(&rport->dev);
250 put_device(&rport->dev);
251 return ERR_PTR(ret);
252 }
253 }
254
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900255 transport_add_device(&rport->dev);
256 transport_configure_device(&rport->dev);
257
258 return rport;
259}
260EXPORT_SYMBOL_GPL(srp_rport_add);
261
262/**
Rob Landleyeb448202007-11-03 13:30:39 -0500263 * srp_rport_del - remove a SRP remote port
264 * @rport: SRP remote port to remove
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900265 *
266 * Removes the specified SRP remote port.
267 */
268void srp_rport_del(struct srp_rport *rport)
269{
270 struct device *dev = &rport->dev;
FUJITA Tomonori72e39ea2007-09-01 02:03:39 +0900271 struct Scsi_Host *shost = dev_to_shost(dev->parent);
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900272
FUJITA Tomonori72e39ea2007-09-01 02:03:39 +0900273 if (shost->active_mode & MODE_TARGET &&
274 rport->roles == SRP_RPORT_ROLE_INITIATOR)
275 srp_tgt_it_nexus_destroy(shost, (unsigned long)rport);
FUJITA Tomonori62fe8822007-07-11 15:08:19 +0900276
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900277 transport_remove_device(dev);
278 device_del(dev);
279 transport_destroy_device(dev);
280 put_device(dev);
281}
282EXPORT_SYMBOL_GPL(srp_rport_del);
283
284static int do_srp_rport_del(struct device *dev, void *data)
285{
Dave Dillow91183342008-01-03 21:34:49 -0500286 if (scsi_is_srp_rport(dev))
287 srp_rport_del(dev_to_rport(dev));
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900288 return 0;
289}
290
291/**
Rob Landleyeb448202007-11-03 13:30:39 -0500292 * srp_remove_host - tear down a Scsi_Host's SRP data structures
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900293 * @shost: Scsi Host that is torn down
294 *
295 * Removes all SRP remote ports for a given Scsi_Host.
296 * Must be called just before scsi_remove_host for SRP HBAs.
297 */
298void srp_remove_host(struct Scsi_Host *shost)
299{
300 device_for_each_child(&shost->shost_gendev, NULL, do_srp_rport_del);
301}
302EXPORT_SYMBOL_GPL(srp_remove_host);
303
FUJITA Tomonoribfb74372007-07-11 15:08:22 +0900304static int srp_tsk_mgmt_response(struct Scsi_Host *shost, u64 nexus, u64 tm_id,
305 int result)
FUJITA Tomonori62fe8822007-07-11 15:08:19 +0900306{
307 struct srp_internal *i = to_srp_internal(shost->transportt);
FUJITA Tomonoribfb74372007-07-11 15:08:22 +0900308 return i->f->tsk_mgmt_response(shost, nexus, tm_id, result);
309}
310
311static int srp_it_nexus_response(struct Scsi_Host *shost, u64 nexus, int result)
312{
313 struct srp_internal *i = to_srp_internal(shost->transportt);
314 return i->f->it_nexus_response(shost, nexus, result);
FUJITA Tomonori62fe8822007-07-11 15:08:19 +0900315}
316
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900317/**
Rob Landleyeb448202007-11-03 13:30:39 -0500318 * srp_attach_transport - instantiate SRP transport template
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900319 * @ft: SRP transport class function template
320 */
321struct scsi_transport_template *
322srp_attach_transport(struct srp_function_template *ft)
323{
324 int count;
325 struct srp_internal *i;
326
327 i = kzalloc(sizeof(*i), GFP_KERNEL);
328 if (!i)
329 return NULL;
330
FUJITA Tomonoribfb74372007-07-11 15:08:22 +0900331 i->t.tsk_mgmt_response = srp_tsk_mgmt_response;
FUJITA Tomonori62fe8822007-07-11 15:08:19 +0900332 i->t.it_nexus_response = srp_it_nexus_response;
333
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900334 i->t.host_size = sizeof(struct srp_host_attrs);
335 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
336 i->t.host_attrs.ac.class = &srp_host_class.class;
337 i->t.host_attrs.ac.match = srp_host_match;
338 i->host_attrs[0] = NULL;
339 transport_container_register(&i->t.host_attrs);
340
341 i->rport_attr_cont.ac.attrs = &i->rport_attrs[0];
342 i->rport_attr_cont.ac.class = &srp_rport_class.class;
343 i->rport_attr_cont.ac.match = srp_rport_match;
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900344
345 count = 0;
Bart Van Assche9134a852011-09-10 16:31:57 +0200346 i->rport_attrs[count++] = &dev_attr_port_id;
347 i->rport_attrs[count++] = &dev_attr_roles;
Bart Van Asschedc1bdbd2011-09-16 20:41:13 +0200348 if (ft->rport_delete)
349 i->rport_attrs[count++] = &dev_attr_delete;
Bart Van Assche9134a852011-09-10 16:31:57 +0200350 i->rport_attrs[count++] = NULL;
351 BUG_ON(count > ARRAY_SIZE(i->rport_attrs));
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900352
Bart Van Asscheac9be302011-10-21 19:31:07 +0200353 transport_container_register(&i->rport_attr_cont);
354
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900355 i->f = ft;
356
357 return &i->t;
358}
359EXPORT_SYMBOL_GPL(srp_attach_transport);
360
361/**
Rob Landleyeb448202007-11-03 13:30:39 -0500362 * srp_release_transport - release SRP transport template instance
FUJITA Tomonori09345f62007-06-27 16:32:39 +0900363 * @t: transport template instance
364 */
365void srp_release_transport(struct scsi_transport_template *t)
366{
367 struct srp_internal *i = to_srp_internal(t);
368
369 transport_container_unregister(&i->t.host_attrs);
370 transport_container_unregister(&i->rport_attr_cont);
371
372 kfree(i);
373}
374EXPORT_SYMBOL_GPL(srp_release_transport);
375
376static __init int srp_transport_init(void)
377{
378 int ret;
379
380 ret = transport_class_register(&srp_host_class);
381 if (ret)
382 return ret;
383 ret = transport_class_register(&srp_rport_class);
384 if (ret)
385 goto unregister_host_class;
386
387 return 0;
388unregister_host_class:
389 transport_class_unregister(&srp_host_class);
390 return ret;
391}
392
393static void __exit srp_transport_exit(void)
394{
395 transport_class_unregister(&srp_host_class);
396 transport_class_unregister(&srp_rport_class);
397}
398
399MODULE_AUTHOR("FUJITA Tomonori");
400MODULE_DESCRIPTION("SRP Transport Attributes");
401MODULE_LICENSE("GPL");
402
403module_init(srp_transport_init);
404module_exit(srp_transport_exit);