2 * FiberChannel transport specific attributes exported to sysfs.
4 * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * Copyright (C) 2004-2005 James Smart, Emulex Corporation
23 * Rewrite for host, target, device, and remote port attributes,
24 * statistics, and service functions...
27 #include <linux/module.h>
28 #include <linux/init.h>
29 #include <linux/sched.h> /* workqueue stuff, HZ */
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_host.h>
32 #include <scsi/scsi_transport.h>
33 #include <scsi/scsi_transport_fc.h>
34 #include "scsi_priv.h"
37 * Redefine so that we can have same named attributes in the
38 * sdev/starget/host objects.
40 #define FC_CLASS_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \
41 struct class_device_attribute class_device_attr_##_prefix##_##_name = \
42 __ATTR(_name,_mode,_show,_store)
44 #define fc_enum_name_search(title, table_type, table) \
45 static const char *get_fc_##title##_name(enum table_type table_key) \
50 for (i = 0; i < sizeof(table)/sizeof(table[0]); i++) { \
51 if (table[i].value == table_key) { \
52 name = table[i].name; \
59 #define fc_enum_name_match(title, table_type, table) \
60 static int get_fc_##title##_match(const char *table_key, \
61 enum table_type *value) \
65 for (i = 0; i < sizeof(table)/sizeof(table[0]); i++) { \
66 if (strncmp(table_key, table[i].name, \
67 table[i].matchlen) == 0) { \
68 *value = table[i].value; \
69 return 0; /* success */ \
72 return 1; /* failure */ \
76 /* Convert fc_port_type values to ascii string name */
78 enum fc_port_type value
;
80 } fc_port_type_names
[] = {
81 { FC_PORTTYPE_UNKNOWN
, "Unknown" },
82 { FC_PORTTYPE_OTHER
, "Other" },
83 { FC_PORTTYPE_NOTPRESENT
, "Not Present" },
84 { FC_PORTTYPE_NPORT
, "NPort (fabric via point-to-point)" },
85 { FC_PORTTYPE_NLPORT
, "NLPort (fabric via loop)" },
86 { FC_PORTTYPE_LPORT
, "LPort (private loop)" },
87 { FC_PORTTYPE_PTP
, "Point-To-Point (direct nport connection" },
89 fc_enum_name_search(port_type
, fc_port_type
, fc_port_type_names
)
90 #define FC_PORTTYPE_MAX_NAMELEN 50
93 /* Convert fc_port_state values to ascii string name */
95 enum fc_port_state value
;
97 } fc_port_state_names
[] = {
98 { FC_PORTSTATE_UNKNOWN
, "Unknown" },
99 { FC_PORTSTATE_NOTPRESENT
, "Not Present" },
100 { FC_PORTSTATE_ONLINE
, "Online" },
101 { FC_PORTSTATE_OFFLINE
, "Offline" },
102 { FC_PORTSTATE_BLOCKED
, "Blocked" },
103 { FC_PORTSTATE_BYPASSED
, "Bypassed" },
104 { FC_PORTSTATE_DIAGNOSTICS
, "Diagnostics" },
105 { FC_PORTSTATE_LINKDOWN
, "Linkdown" },
106 { FC_PORTSTATE_ERROR
, "Error" },
107 { FC_PORTSTATE_LOOPBACK
, "Loopback" },
109 fc_enum_name_search(port_state
, fc_port_state
, fc_port_state_names
)
110 #define FC_PORTSTATE_MAX_NAMELEN 20
113 /* Convert fc_tgtid_binding_type values to ascii string name */
115 enum fc_tgtid_binding_type value
;
118 } fc_tgtid_binding_type_names
[] = {
119 { FC_TGTID_BIND_NONE
, "none", 4 },
120 { FC_TGTID_BIND_BY_WWPN
, "wwpn (World Wide Port Name)", 4 },
121 { FC_TGTID_BIND_BY_WWNN
, "wwnn (World Wide Node Name)", 4 },
122 { FC_TGTID_BIND_BY_ID
, "port_id (FC Address)", 7 },
124 fc_enum_name_search(tgtid_bind_type
, fc_tgtid_binding_type
,
125 fc_tgtid_binding_type_names
)
126 fc_enum_name_match(tgtid_bind_type
, fc_tgtid_binding_type
,
127 fc_tgtid_binding_type_names
)
128 #define FC_BINDTYPE_MAX_NAMELEN 30
131 #define fc_bitfield_name_search(title, table) \
133 get_fc_##title##_names(u32 table_key, char *buf) \
139 for (i = 0; i < sizeof(table)/sizeof(table[0]); i++) { \
140 if (table[i].value & table_key) { \
141 len += sprintf(buf + len, "%s%s", \
142 prefix, table[i].name); \
146 len += sprintf(buf + len, "\n"); \
151 /* Convert FC_COS bit values to ascii string name */
156 { FC_COS_CLASS1
, "Class 1" },
157 { FC_COS_CLASS2
, "Class 2" },
158 { FC_COS_CLASS3
, "Class 3" },
159 { FC_COS_CLASS4
, "Class 4" },
160 { FC_COS_CLASS6
, "Class 6" },
162 fc_bitfield_name_search(cos
, fc_cos_names
)
165 /* Convert FC_PORTSPEED bit values to ascii string name */
169 } fc_port_speed_names
[] = {
170 { FC_PORTSPEED_1GBIT
, "1 Gbit" },
171 { FC_PORTSPEED_2GBIT
, "2 Gbit" },
172 { FC_PORTSPEED_4GBIT
, "4 Gbit" },
173 { FC_PORTSPEED_10GBIT
, "10 Gbit" },
174 { FC_PORTSPEED_NOT_NEGOTIATED
, "Not Negotiated" },
176 fc_bitfield_name_search(port_speed
, fc_port_speed_names
)
180 show_fc_fc4s (char *buf
, u8
*fc4_list
)
184 for (i
= 0; i
< FC_FC4_LIST_SIZE
; i
++, fc4_list
++)
185 len
+= sprintf(buf
+ len
, "0x%02x ", *fc4_list
);
186 len
+= sprintf(buf
+ len
, "\n");
191 /* Convert FC_RPORT_ROLE bit values to ascii string name */
195 } fc_remote_port_role_names
[] = {
196 { FC_RPORT_ROLE_FCP_TARGET
, "FCP Target" },
197 { FC_RPORT_ROLE_FCP_INITIATOR
, "FCP Initiator" },
198 { FC_RPORT_ROLE_IP_PORT
, "IP Port" },
200 fc_bitfield_name_search(remote_port_roles
, fc_remote_port_role_names
)
203 * Define roles that are specific to port_id. Values are relative to ROLE_MASK.
205 #define FC_WELLKNOWN_PORTID_MASK 0xfffff0
206 #define FC_WELLKNOWN_ROLE_MASK 0x00000f
207 #define FC_FPORT_PORTID 0x00000e
208 #define FC_FABCTLR_PORTID 0x00000d
209 #define FC_DIRSRVR_PORTID 0x00000c
210 #define FC_TIMESRVR_PORTID 0x00000b
211 #define FC_MGMTSRVR_PORTID 0x00000a
214 static void fc_timeout_deleted_rport(void *data
);
215 static void fc_scsi_scan_rport(void *data
);
216 static void fc_rport_terminate(struct fc_rport
*rport
);
219 * Attribute counts pre object type...
220 * Increase these values if you add attributes
222 #define FC_STARGET_NUM_ATTRS 3
223 #define FC_RPORT_NUM_ATTRS 9
224 #define FC_HOST_NUM_ATTRS 16
227 struct scsi_transport_template t
;
228 struct fc_function_template
*f
;
231 * For attributes : each object has :
232 * An array of the actual attributes structures
233 * An array of null-terminated pointers to the attribute
234 * structures - used for mid-layer interaction.
236 * The attribute containers for the starget and host are are
237 * part of the midlayer. As the remote port is specific to the
238 * fc transport, we must provide the attribute container.
240 struct class_device_attribute private_starget_attrs
[
241 FC_STARGET_NUM_ATTRS
];
242 struct class_device_attribute
*starget_attrs
[FC_STARGET_NUM_ATTRS
+ 1];
244 struct class_device_attribute private_host_attrs
[FC_HOST_NUM_ATTRS
];
245 struct class_device_attribute
*host_attrs
[FC_HOST_NUM_ATTRS
+ 1];
247 struct transport_container rport_attr_cont
;
248 struct class_device_attribute private_rport_attrs
[FC_RPORT_NUM_ATTRS
];
249 struct class_device_attribute
*rport_attrs
[FC_RPORT_NUM_ATTRS
+ 1];
252 #define to_fc_internal(tmpl) container_of(tmpl, struct fc_internal, t)
254 static int fc_target_setup(struct transport_container
*tc
, struct device
*dev
,
255 struct class_device
*cdev
)
257 struct scsi_target
*starget
= to_scsi_target(dev
);
258 struct fc_rport
*rport
= starget_to_rport(starget
);
261 * if parent is remote port, use values from remote port.
262 * Otherwise, this host uses the fc_transport, but not the
263 * remote port interface. As such, initialize to known non-values.
266 fc_starget_node_name(starget
) = rport
->node_name
;
267 fc_starget_port_name(starget
) = rport
->port_name
;
268 fc_starget_port_id(starget
) = rport
->port_id
;
270 fc_starget_node_name(starget
) = -1;
271 fc_starget_port_name(starget
) = -1;
272 fc_starget_port_id(starget
) = -1;
278 static DECLARE_TRANSPORT_CLASS(fc_transport_class
,
284 static int fc_host_setup(struct transport_container
*tc
, struct device
*dev
,
285 struct class_device
*cdev
)
287 struct Scsi_Host
*shost
= dev_to_shost(dev
);
290 * Set default values easily detected by the midlayer as
291 * failure cases. The scsi lldd is responsible for initializing
292 * all transport attributes to valid values per host.
294 fc_host_node_name(shost
) = -1;
295 fc_host_port_name(shost
) = -1;
296 fc_host_supported_classes(shost
) = FC_COS_UNSPECIFIED
;
297 memset(fc_host_supported_fc4s(shost
), 0,
298 sizeof(fc_host_supported_fc4s(shost
)));
299 memset(fc_host_symbolic_name(shost
), 0,
300 sizeof(fc_host_symbolic_name(shost
)));
301 fc_host_supported_speeds(shost
) = FC_PORTSPEED_UNKNOWN
;
302 fc_host_maxframe_size(shost
) = -1;
303 memset(fc_host_serial_number(shost
), 0,
304 sizeof(fc_host_serial_number(shost
)));
306 fc_host_port_id(shost
) = -1;
307 fc_host_port_type(shost
) = FC_PORTTYPE_UNKNOWN
;
308 fc_host_port_state(shost
) = FC_PORTSTATE_UNKNOWN
;
309 memset(fc_host_active_fc4s(shost
), 0,
310 sizeof(fc_host_active_fc4s(shost
)));
311 fc_host_speed(shost
) = FC_PORTSPEED_UNKNOWN
;
312 fc_host_fabric_name(shost
) = -1;
314 fc_host_tgtid_bind_type(shost
) = FC_TGTID_BIND_BY_WWPN
;
316 INIT_LIST_HEAD(&fc_host_rports(shost
));
317 INIT_LIST_HEAD(&fc_host_rport_bindings(shost
));
318 fc_host_next_rport_number(shost
) = 0;
319 fc_host_next_target_id(shost
) = 0;
324 static DECLARE_TRANSPORT_CLASS(fc_host_class
,
331 * Setup and Remove actions for remote ports are handled
332 * in the service functions below.
334 static DECLARE_TRANSPORT_CLASS(fc_rport_class
,
345 * dev_loss_tmo: the default number of seconds that the FC transport
346 * should insulate the loss of a remote port.
347 * The maximum will be capped by the value of SCSI_DEVICE_BLOCK_MAX_TIMEOUT.
349 static unsigned int fc_dev_loss_tmo
= SCSI_DEVICE_BLOCK_MAX_TIMEOUT
;
351 module_param_named(dev_loss_tmo
, fc_dev_loss_tmo
, int, S_IRUGO
|S_IWUSR
);
352 MODULE_PARM_DESC(dev_loss_tmo
,
353 "Maximum number of seconds that the FC transport should"
354 " insulate the loss of a remote port. Once this value is"
355 " exceeded, the scsi target is removed. Value should be"
356 " between 1 and SCSI_DEVICE_BLOCK_MAX_TIMEOUT.");
359 static __init
int fc_transport_init(void)
361 int error
= transport_class_register(&fc_host_class
);
364 error
= transport_class_register(&fc_rport_class
);
367 return transport_class_register(&fc_transport_class
);
370 static void __exit
fc_transport_exit(void)
372 transport_class_unregister(&fc_transport_class
);
373 transport_class_unregister(&fc_rport_class
);
374 transport_class_unregister(&fc_host_class
);
378 * FC Remote Port Attribute Management
381 #define fc_rport_show_function(field, format_string, sz, cast) \
383 show_fc_rport_##field (struct class_device *cdev, char *buf) \
385 struct fc_rport *rport = transport_class_to_rport(cdev); \
386 struct Scsi_Host *shost = rport_to_shost(rport); \
387 struct fc_internal *i = to_fc_internal(shost->transportt); \
388 if ((i->f->get_rport_##field) && \
389 !((rport->port_state == FC_PORTSTATE_BLOCKED) || \
390 (rport->port_state == FC_PORTSTATE_NOTPRESENT))) \
391 i->f->get_rport_##field(rport); \
392 return snprintf(buf, sz, format_string, cast rport->field); \
395 #define fc_rport_store_function(field) \
397 store_fc_rport_##field(struct class_device *cdev, const char *buf, \
401 struct fc_rport *rport = transport_class_to_rport(cdev); \
402 struct Scsi_Host *shost = rport_to_shost(rport); \
403 struct fc_internal *i = to_fc_internal(shost->transportt); \
404 if ((rport->port_state == FC_PORTSTATE_BLOCKED) || \
405 (rport->port_state == FC_PORTSTATE_NOTPRESENT)) \
407 val = simple_strtoul(buf, NULL, 0); \
408 i->f->set_rport_##field(rport, val); \
412 #define fc_rport_rd_attr(field, format_string, sz) \
413 fc_rport_show_function(field, format_string, sz, ) \
414 static FC_CLASS_DEVICE_ATTR(rport, field, S_IRUGO, \
415 show_fc_rport_##field, NULL)
417 #define fc_rport_rd_attr_cast(field, format_string, sz, cast) \
418 fc_rport_show_function(field, format_string, sz, (cast)) \
419 static FC_CLASS_DEVICE_ATTR(rport, field, S_IRUGO, \
420 show_fc_rport_##field, NULL)
422 #define fc_rport_rw_attr(field, format_string, sz) \
423 fc_rport_show_function(field, format_string, sz, ) \
424 fc_rport_store_function(field) \
425 static FC_CLASS_DEVICE_ATTR(rport, field, S_IRUGO | S_IWUSR, \
426 show_fc_rport_##field, \
427 store_fc_rport_##field)
430 #define fc_private_rport_show_function(field, format_string, sz, cast) \
432 show_fc_rport_##field (struct class_device *cdev, char *buf) \
434 struct fc_rport *rport = transport_class_to_rport(cdev); \
435 return snprintf(buf, sz, format_string, cast rport->field); \
438 #define fc_private_rport_rd_attr(field, format_string, sz) \
439 fc_private_rport_show_function(field, format_string, sz, ) \
440 static FC_CLASS_DEVICE_ATTR(rport, field, S_IRUGO, \
441 show_fc_rport_##field, NULL)
443 #define fc_private_rport_rd_attr_cast(field, format_string, sz, cast) \
444 fc_private_rport_show_function(field, format_string, sz, (cast)) \
445 static FC_CLASS_DEVICE_ATTR(rport, field, S_IRUGO, \
446 show_fc_rport_##field, NULL)
449 #define fc_private_rport_rd_enum_attr(title, maxlen) \
451 show_fc_rport_##title (struct class_device *cdev, char *buf) \
453 struct fc_rport *rport = transport_class_to_rport(cdev); \
455 name = get_fc_##title##_name(rport->title); \
458 return snprintf(buf, maxlen, "%s\n", name); \
460 static FC_CLASS_DEVICE_ATTR(rport, title, S_IRUGO, \
461 show_fc_rport_##title, NULL)
464 #define SETUP_RPORT_ATTRIBUTE_RD(field) \
465 i->private_rport_attrs[count] = class_device_attr_rport_##field; \
466 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
467 i->private_rport_attrs[count].store = NULL; \
468 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
469 if (i->f->show_rport_##field) \
472 #define SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(field) \
473 i->private_rport_attrs[count] = class_device_attr_rport_##field; \
474 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
475 i->private_rport_attrs[count].store = NULL; \
476 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
479 #define SETUP_RPORT_ATTRIBUTE_RW(field) \
480 i->private_rport_attrs[count] = class_device_attr_rport_##field; \
481 if (!i->f->set_rport_##field) { \
482 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
483 i->private_rport_attrs[count].store = NULL; \
485 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
486 if (i->f->show_rport_##field) \
490 /* The FC Transport Remote Port Attributes: */
492 /* Fixed Remote Port Attributes */
494 fc_private_rport_rd_attr(maxframe_size
, "%u bytes\n", 20);
497 show_fc_rport_supported_classes (struct class_device
*cdev
, char *buf
)
499 struct fc_rport
*rport
= transport_class_to_rport(cdev
);
500 if (rport
->supported_classes
== FC_COS_UNSPECIFIED
)
501 return snprintf(buf
, 20, "unspecified\n");
502 return get_fc_cos_names(rport
->supported_classes
, buf
);
504 static FC_CLASS_DEVICE_ATTR(rport
, supported_classes
, S_IRUGO
,
505 show_fc_rport_supported_classes
, NULL
);
507 /* Dynamic Remote Port Attributes */
510 * dev_loss_tmo attribute
512 fc_rport_show_function(dev_loss_tmo
, "%d\n", 20, )
514 store_fc_rport_dev_loss_tmo(struct class_device
*cdev
, const char *buf
,
518 struct fc_rport
*rport
= transport_class_to_rport(cdev
);
519 struct Scsi_Host
*shost
= rport_to_shost(rport
);
520 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
521 if ((rport
->port_state
== FC_PORTSTATE_BLOCKED
) ||
522 (rport
->port_state
== FC_PORTSTATE_NOTPRESENT
))
524 val
= simple_strtoul(buf
, NULL
, 0);
525 if ((val
< 0) || (val
> SCSI_DEVICE_BLOCK_MAX_TIMEOUT
))
527 i
->f
->set_rport_dev_loss_tmo(rport
, val
);
530 static FC_CLASS_DEVICE_ATTR(rport
, dev_loss_tmo
, S_IRUGO
| S_IWUSR
,
531 show_fc_rport_dev_loss_tmo
, store_fc_rport_dev_loss_tmo
);
534 /* Private Remote Port Attributes */
536 fc_private_rport_rd_attr_cast(node_name
, "0x%llx\n", 20, unsigned long long);
537 fc_private_rport_rd_attr_cast(port_name
, "0x%llx\n", 20, unsigned long long);
538 fc_private_rport_rd_attr(port_id
, "0x%06x\n", 20);
541 show_fc_rport_roles (struct class_device
*cdev
, char *buf
)
543 struct fc_rport
*rport
= transport_class_to_rport(cdev
);
545 /* identify any roles that are port_id specific */
546 if ((rport
->port_id
!= -1) &&
547 (rport
->port_id
& FC_WELLKNOWN_PORTID_MASK
) ==
548 FC_WELLKNOWN_PORTID_MASK
) {
549 switch (rport
->port_id
& FC_WELLKNOWN_ROLE_MASK
) {
550 case FC_FPORT_PORTID
:
551 return snprintf(buf
, 30, "Fabric Port\n");
552 case FC_FABCTLR_PORTID
:
553 return snprintf(buf
, 30, "Fabric Controller\n");
554 case FC_DIRSRVR_PORTID
:
555 return snprintf(buf
, 30, "Directory Server\n");
556 case FC_TIMESRVR_PORTID
:
557 return snprintf(buf
, 30, "Time Server\n");
558 case FC_MGMTSRVR_PORTID
:
559 return snprintf(buf
, 30, "Management Server\n");
561 return snprintf(buf
, 30, "Unknown Fabric Entity\n");
564 if (rport
->roles
== FC_RPORT_ROLE_UNKNOWN
)
565 return snprintf(buf
, 20, "unknown\n");
566 return get_fc_remote_port_roles_names(rport
->roles
, buf
);
569 static FC_CLASS_DEVICE_ATTR(rport
, roles
, S_IRUGO
,
570 show_fc_rport_roles
, NULL
);
572 fc_private_rport_rd_enum_attr(port_state
, FC_PORTSTATE_MAX_NAMELEN
);
573 fc_private_rport_rd_attr(scsi_target_id
, "%d\n", 20);
578 * FC SCSI Target Attribute Management
582 * Note: in the target show function we recognize when the remote
583 * port is in the heirarchy and do not allow the driver to get
584 * involved in sysfs functions. The driver only gets involved if
585 * it's the "old" style that doesn't use rports.
587 #define fc_starget_show_function(field, format_string, sz, cast) \
589 show_fc_starget_##field (struct class_device *cdev, char *buf) \
591 struct scsi_target *starget = transport_class_to_starget(cdev); \
592 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
593 struct fc_internal *i = to_fc_internal(shost->transportt); \
594 struct fc_rport *rport = starget_to_rport(starget); \
596 fc_starget_##field(starget) = rport->field; \
597 else if (i->f->get_starget_##field) \
598 i->f->get_starget_##field(starget); \
599 return snprintf(buf, sz, format_string, \
600 cast fc_starget_##field(starget)); \
603 #define fc_starget_rd_attr(field, format_string, sz) \
604 fc_starget_show_function(field, format_string, sz, ) \
605 static FC_CLASS_DEVICE_ATTR(starget, field, S_IRUGO, \
606 show_fc_starget_##field, NULL)
608 #define fc_starget_rd_attr_cast(field, format_string, sz, cast) \
609 fc_starget_show_function(field, format_string, sz, (cast)) \
610 static FC_CLASS_DEVICE_ATTR(starget, field, S_IRUGO, \
611 show_fc_starget_##field, NULL)
613 #define SETUP_STARGET_ATTRIBUTE_RD(field) \
614 i->private_starget_attrs[count] = class_device_attr_starget_##field; \
615 i->private_starget_attrs[count].attr.mode = S_IRUGO; \
616 i->private_starget_attrs[count].store = NULL; \
617 i->starget_attrs[count] = &i->private_starget_attrs[count]; \
618 if (i->f->show_starget_##field) \
621 #define SETUP_STARGET_ATTRIBUTE_RW(field) \
622 i->private_starget_attrs[count] = class_device_attr_starget_##field; \
623 if (!i->f->set_starget_##field) { \
624 i->private_starget_attrs[count].attr.mode = S_IRUGO; \
625 i->private_starget_attrs[count].store = NULL; \
627 i->starget_attrs[count] = &i->private_starget_attrs[count]; \
628 if (i->f->show_starget_##field) \
631 /* The FC Transport SCSI Target Attributes: */
632 fc_starget_rd_attr_cast(node_name
, "0x%llx\n", 20, unsigned long long);
633 fc_starget_rd_attr_cast(port_name
, "0x%llx\n", 20, unsigned long long);
634 fc_starget_rd_attr(port_id
, "0x%06x\n", 20);
638 * Host Attribute Management
641 #define fc_host_show_function(field, format_string, sz, cast) \
643 show_fc_host_##field (struct class_device *cdev, char *buf) \
645 struct Scsi_Host *shost = transport_class_to_shost(cdev); \
646 struct fc_internal *i = to_fc_internal(shost->transportt); \
647 if (i->f->get_host_##field) \
648 i->f->get_host_##field(shost); \
649 return snprintf(buf, sz, format_string, cast fc_host_##field(shost)); \
652 #define fc_host_store_function(field) \
654 store_fc_host_##field(struct class_device *cdev, const char *buf, \
658 struct Scsi_Host *shost = transport_class_to_shost(cdev); \
659 struct fc_internal *i = to_fc_internal(shost->transportt); \
661 val = simple_strtoul(buf, NULL, 0); \
662 i->f->set_host_##field(shost, val); \
666 #define fc_host_rd_attr(field, format_string, sz) \
667 fc_host_show_function(field, format_string, sz, ) \
668 static FC_CLASS_DEVICE_ATTR(host, field, S_IRUGO, \
669 show_fc_host_##field, NULL)
671 #define fc_host_rd_attr_cast(field, format_string, sz, cast) \
672 fc_host_show_function(field, format_string, sz, (cast)) \
673 static FC_CLASS_DEVICE_ATTR(host, field, S_IRUGO, \
674 show_fc_host_##field, NULL)
676 #define fc_host_rw_attr(field, format_string, sz) \
677 fc_host_show_function(field, format_string, sz, ) \
678 fc_host_store_function(field) \
679 static FC_CLASS_DEVICE_ATTR(host, field, S_IRUGO | S_IWUSR, \
680 show_fc_host_##field, \
681 store_fc_host_##field)
683 #define fc_host_rd_enum_attr(title, maxlen) \
685 show_fc_host_##title (struct class_device *cdev, char *buf) \
687 struct Scsi_Host *shost = transport_class_to_shost(cdev); \
688 struct fc_internal *i = to_fc_internal(shost->transportt); \
690 if (i->f->get_host_##title) \
691 i->f->get_host_##title(shost); \
692 name = get_fc_##title##_name(fc_host_##title(shost)); \
695 return snprintf(buf, maxlen, "%s\n", name); \
697 static FC_CLASS_DEVICE_ATTR(host, title, S_IRUGO, show_fc_host_##title, NULL)
699 #define SETUP_HOST_ATTRIBUTE_RD(field) \
700 i->private_host_attrs[count] = class_device_attr_host_##field; \
701 i->private_host_attrs[count].attr.mode = S_IRUGO; \
702 i->private_host_attrs[count].store = NULL; \
703 i->host_attrs[count] = &i->private_host_attrs[count]; \
704 if (i->f->show_host_##field) \
707 #define SETUP_HOST_ATTRIBUTE_RW(field) \
708 i->private_host_attrs[count] = class_device_attr_host_##field; \
709 if (!i->f->set_host_##field) { \
710 i->private_host_attrs[count].attr.mode = S_IRUGO; \
711 i->private_host_attrs[count].store = NULL; \
713 i->host_attrs[count] = &i->private_host_attrs[count]; \
714 if (i->f->show_host_##field) \
718 #define fc_private_host_show_function(field, format_string, sz, cast) \
720 show_fc_host_##field (struct class_device *cdev, char *buf) \
722 struct Scsi_Host *shost = transport_class_to_shost(cdev); \
723 return snprintf(buf, sz, format_string, cast fc_host_##field(shost)); \
726 #define fc_private_host_rd_attr(field, format_string, sz) \
727 fc_private_host_show_function(field, format_string, sz, ) \
728 static FC_CLASS_DEVICE_ATTR(host, field, S_IRUGO, \
729 show_fc_host_##field, NULL)
731 #define fc_private_host_rd_attr_cast(field, format_string, sz, cast) \
732 fc_private_host_show_function(field, format_string, sz, (cast)) \
733 static FC_CLASS_DEVICE_ATTR(host, field, S_IRUGO, \
734 show_fc_host_##field, NULL)
736 #define SETUP_PRIVATE_HOST_ATTRIBUTE_RD(field) \
737 i->private_host_attrs[count] = class_device_attr_host_##field; \
738 i->private_host_attrs[count].attr.mode = S_IRUGO; \
739 i->private_host_attrs[count].store = NULL; \
740 i->host_attrs[count] = &i->private_host_attrs[count]; \
743 #define SETUP_PRIVATE_HOST_ATTRIBUTE_RW(field) \
745 i->private_host_attrs[count] = class_device_attr_host_##field; \
746 i->host_attrs[count] = &i->private_host_attrs[count]; \
751 /* Fixed Host Attributes */
754 show_fc_host_supported_classes (struct class_device
*cdev
, char *buf
)
756 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
758 if (fc_host_supported_classes(shost
) == FC_COS_UNSPECIFIED
)
759 return snprintf(buf
, 20, "unspecified\n");
761 return get_fc_cos_names(fc_host_supported_classes(shost
), buf
);
763 static FC_CLASS_DEVICE_ATTR(host
, supported_classes
, S_IRUGO
,
764 show_fc_host_supported_classes
, NULL
);
767 show_fc_host_supported_fc4s (struct class_device
*cdev
, char *buf
)
769 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
770 return (ssize_t
)show_fc_fc4s(buf
, fc_host_supported_fc4s(shost
));
772 static FC_CLASS_DEVICE_ATTR(host
, supported_fc4s
, S_IRUGO
,
773 show_fc_host_supported_fc4s
, NULL
);
776 show_fc_host_supported_speeds (struct class_device
*cdev
, char *buf
)
778 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
780 if (fc_host_supported_speeds(shost
) == FC_PORTSPEED_UNKNOWN
)
781 return snprintf(buf
, 20, "unknown\n");
783 return get_fc_port_speed_names(fc_host_supported_speeds(shost
), buf
);
785 static FC_CLASS_DEVICE_ATTR(host
, supported_speeds
, S_IRUGO
,
786 show_fc_host_supported_speeds
, NULL
);
789 fc_private_host_rd_attr_cast(node_name
, "0x%llx\n", 20, unsigned long long);
790 fc_private_host_rd_attr_cast(port_name
, "0x%llx\n", 20, unsigned long long);
791 fc_private_host_rd_attr(symbolic_name
, "%s\n", (FC_SYMBOLIC_NAME_SIZE
+1));
792 fc_private_host_rd_attr(maxframe_size
, "%u bytes\n", 20);
793 fc_private_host_rd_attr(serial_number
, "%s\n", (FC_SERIAL_NUMBER_SIZE
+1));
796 /* Dynamic Host Attributes */
799 show_fc_host_active_fc4s (struct class_device
*cdev
, char *buf
)
801 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
802 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
804 if (i
->f
->get_host_active_fc4s
)
805 i
->f
->get_host_active_fc4s(shost
);
807 return (ssize_t
)show_fc_fc4s(buf
, fc_host_active_fc4s(shost
));
809 static FC_CLASS_DEVICE_ATTR(host
, active_fc4s
, S_IRUGO
,
810 show_fc_host_active_fc4s
, NULL
);
813 show_fc_host_speed (struct class_device
*cdev
, char *buf
)
815 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
816 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
818 if (i
->f
->get_host_speed
)
819 i
->f
->get_host_speed(shost
);
821 if (fc_host_speed(shost
) == FC_PORTSPEED_UNKNOWN
)
822 return snprintf(buf
, 20, "unknown\n");
824 return get_fc_port_speed_names(fc_host_speed(shost
), buf
);
826 static FC_CLASS_DEVICE_ATTR(host
, speed
, S_IRUGO
,
827 show_fc_host_speed
, NULL
);
830 fc_host_rd_attr(port_id
, "0x%06x\n", 20);
831 fc_host_rd_enum_attr(port_type
, FC_PORTTYPE_MAX_NAMELEN
);
832 fc_host_rd_enum_attr(port_state
, FC_PORTSTATE_MAX_NAMELEN
);
833 fc_host_rd_attr_cast(fabric_name
, "0x%llx\n", 20, unsigned long long);
836 /* Private Host Attributes */
839 show_fc_private_host_tgtid_bind_type(struct class_device
*cdev
, char *buf
)
841 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
844 name
= get_fc_tgtid_bind_type_name(fc_host_tgtid_bind_type(shost
));
847 return snprintf(buf
, FC_BINDTYPE_MAX_NAMELEN
, "%s\n", name
);
850 #define get_list_head_entry(pos, head, member) \
851 pos = list_entry((head)->next, typeof(*pos), member)
854 store_fc_private_host_tgtid_bind_type(struct class_device
*cdev
,
855 const char *buf
, size_t count
)
857 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
858 struct fc_rport
*rport
;
859 enum fc_tgtid_binding_type val
;
862 if (get_fc_tgtid_bind_type_match(buf
, &val
))
865 /* if changing bind type, purge all unused consistent bindings */
866 if (val
!= fc_host_tgtid_bind_type(shost
)) {
867 spin_lock_irqsave(shost
->host_lock
, flags
);
868 while (!list_empty(&fc_host_rport_bindings(shost
))) {
869 get_list_head_entry(rport
,
870 &fc_host_rport_bindings(shost
), peers
);
871 spin_unlock_irqrestore(shost
->host_lock
, flags
);
872 fc_rport_terminate(rport
);
873 spin_lock_irqsave(shost
->host_lock
, flags
);
875 spin_unlock_irqrestore(shost
->host_lock
, flags
);
878 fc_host_tgtid_bind_type(shost
) = val
;
882 static FC_CLASS_DEVICE_ATTR(host
, tgtid_bind_type
, S_IRUGO
| S_IWUSR
,
883 show_fc_private_host_tgtid_bind_type
,
884 store_fc_private_host_tgtid_bind_type
);
887 store_fc_private_host_issue_lip(struct class_device
*cdev
,
888 const char *buf
, size_t count
)
890 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
891 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
894 /* ignore any data value written to the attribute */
895 if (i
->f
->issue_fc_host_lip
) {
896 ret
= i
->f
->issue_fc_host_lip(shost
);
897 return ret
? ret
: count
;
903 static FC_CLASS_DEVICE_ATTR(host
, issue_lip
, S_IWUSR
, NULL
,
904 store_fc_private_host_issue_lip
);
907 * Host Statistics Management
910 /* Show a given an attribute in the statistics group */
912 fc_stat_show(const struct class_device
*cdev
, char *buf
, unsigned long offset
)
914 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
915 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
916 struct fc_host_statistics
*stats
;
917 ssize_t ret
= -ENOENT
;
919 if (offset
> sizeof(struct fc_host_statistics
) ||
920 offset
% sizeof(u64
) != 0)
923 if (i
->f
->get_fc_host_stats
) {
924 stats
= (i
->f
->get_fc_host_stats
)(shost
);
926 ret
= snprintf(buf
, 20, "0x%llx\n",
927 (unsigned long long)*(u64
*)(((u8
*) stats
) + offset
));
933 /* generate a read-only statistics attribute */
934 #define fc_host_statistic(name) \
935 static ssize_t show_fcstat_##name(struct class_device *cd, char *buf) \
937 return fc_stat_show(cd, buf, \
938 offsetof(struct fc_host_statistics, name)); \
940 static FC_CLASS_DEVICE_ATTR(host, name, S_IRUGO, show_fcstat_##name, NULL)
942 fc_host_statistic(seconds_since_last_reset
);
943 fc_host_statistic(tx_frames
);
944 fc_host_statistic(tx_words
);
945 fc_host_statistic(rx_frames
);
946 fc_host_statistic(rx_words
);
947 fc_host_statistic(lip_count
);
948 fc_host_statistic(nos_count
);
949 fc_host_statistic(error_frames
);
950 fc_host_statistic(dumped_frames
);
951 fc_host_statistic(link_failure_count
);
952 fc_host_statistic(loss_of_sync_count
);
953 fc_host_statistic(loss_of_signal_count
);
954 fc_host_statistic(prim_seq_protocol_err_count
);
955 fc_host_statistic(invalid_tx_word_count
);
956 fc_host_statistic(invalid_crc_count
);
957 fc_host_statistic(fcp_input_requests
);
958 fc_host_statistic(fcp_output_requests
);
959 fc_host_statistic(fcp_control_requests
);
960 fc_host_statistic(fcp_input_megabytes
);
961 fc_host_statistic(fcp_output_megabytes
);
964 fc_reset_statistics(struct class_device
*cdev
, const char *buf
,
967 struct Scsi_Host
*shost
= transport_class_to_shost(cdev
);
968 struct fc_internal
*i
= to_fc_internal(shost
->transportt
);
970 /* ignore any data value written to the attribute */
971 if (i
->f
->reset_fc_host_stats
) {
972 i
->f
->reset_fc_host_stats(shost
);
978 static FC_CLASS_DEVICE_ATTR(host
, reset_statistics
, S_IWUSR
, NULL
,
979 fc_reset_statistics
);
982 static struct attribute
*fc_statistics_attrs
[] = {
983 &class_device_attr_host_seconds_since_last_reset
.attr
,
984 &class_device_attr_host_tx_frames
.attr
,
985 &class_device_attr_host_tx_words
.attr
,
986 &class_device_attr_host_rx_frames
.attr
,
987 &class_device_attr_host_rx_words
.attr
,
988 &class_device_attr_host_lip_count
.attr
,
989 &class_device_attr_host_nos_count
.attr
,
990 &class_device_attr_host_error_frames
.attr
,
991 &class_device_attr_host_dumped_frames
.attr
,
992 &class_device_attr_host_link_failure_count
.attr
,
993 &class_device_attr_host_loss_of_sync_count
.attr
,
994 &class_device_attr_host_loss_of_signal_count
.attr
,
995 &class_device_attr_host_prim_seq_protocol_err_count
.attr
,
996 &class_device_attr_host_invalid_tx_word_count
.attr
,
997 &class_device_attr_host_invalid_crc_count
.attr
,
998 &class_device_attr_host_fcp_input_requests
.attr
,
999 &class_device_attr_host_fcp_output_requests
.attr
,
1000 &class_device_attr_host_fcp_control_requests
.attr
,
1001 &class_device_attr_host_fcp_input_megabytes
.attr
,
1002 &class_device_attr_host_fcp_output_megabytes
.attr
,
1003 &class_device_attr_host_reset_statistics
.attr
,
1007 static struct attribute_group fc_statistics_group
= {
1008 .name
= "statistics",
1009 .attrs
= fc_statistics_attrs
,
1012 static int fc_host_match(struct attribute_container
*cont
,
1015 struct Scsi_Host
*shost
;
1016 struct fc_internal
*i
;
1018 if (!scsi_is_host_device(dev
))
1021 shost
= dev_to_shost(dev
);
1022 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
1023 != &fc_host_class
.class)
1026 i
= to_fc_internal(shost
->transportt
);
1028 return &i
->t
.host_attrs
.ac
== cont
;
1031 static int fc_target_match(struct attribute_container
*cont
,
1034 struct Scsi_Host
*shost
;
1035 struct fc_internal
*i
;
1037 if (!scsi_is_target_device(dev
))
1040 shost
= dev_to_shost(dev
->parent
);
1041 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
1042 != &fc_host_class
.class)
1045 i
= to_fc_internal(shost
->transportt
);
1047 return &i
->t
.target_attrs
.ac
== cont
;
1050 static void fc_rport_dev_release(struct device
*dev
)
1052 struct fc_rport
*rport
= dev_to_rport(dev
);
1053 put_device(dev
->parent
);
1057 int scsi_is_fc_rport(const struct device
*dev
)
1059 return dev
->release
== fc_rport_dev_release
;
1061 EXPORT_SYMBOL(scsi_is_fc_rport
);
1063 static int fc_rport_match(struct attribute_container
*cont
,
1066 struct Scsi_Host
*shost
;
1067 struct fc_internal
*i
;
1069 if (!scsi_is_fc_rport(dev
))
1072 shost
= dev_to_shost(dev
->parent
);
1073 if (!shost
->transportt
|| shost
->transportt
->host_attrs
.ac
.class
1074 != &fc_host_class
.class)
1077 i
= to_fc_internal(shost
->transportt
);
1079 return &i
->rport_attr_cont
.ac
== cont
;
1084 * Must be called with shost->host_lock held
1086 static struct device
*fc_target_parent(struct Scsi_Host
*shost
,
1087 int channel
, uint id
)
1089 struct fc_rport
*rport
;
1091 list_for_each_entry(rport
, &fc_host_rports(shost
), peers
)
1092 if ((rport
->channel
== channel
) &&
1093 (rport
->scsi_target_id
== id
))
1099 struct scsi_transport_template
*
1100 fc_attach_transport(struct fc_function_template
*ft
)
1102 struct fc_internal
*i
= kmalloc(sizeof(struct fc_internal
),
1109 memset(i
, 0, sizeof(struct fc_internal
));
1111 i
->t
.target_attrs
.ac
.attrs
= &i
->starget_attrs
[0];
1112 i
->t
.target_attrs
.ac
.class = &fc_transport_class
.class;
1113 i
->t
.target_attrs
.ac
.match
= fc_target_match
;
1114 i
->t
.target_size
= sizeof(struct fc_starget_attrs
);
1115 transport_container_register(&i
->t
.target_attrs
);
1117 i
->t
.host_attrs
.ac
.attrs
= &i
->host_attrs
[0];
1118 i
->t
.host_attrs
.ac
.class = &fc_host_class
.class;
1119 i
->t
.host_attrs
.ac
.match
= fc_host_match
;
1120 i
->t
.host_size
= sizeof(struct fc_host_attrs
);
1121 if (ft
->get_fc_host_stats
)
1122 i
->t
.host_attrs
.statistics
= &fc_statistics_group
;
1123 transport_container_register(&i
->t
.host_attrs
);
1125 i
->rport_attr_cont
.ac
.attrs
= &i
->rport_attrs
[0];
1126 i
->rport_attr_cont
.ac
.class = &fc_rport_class
.class;
1127 i
->rport_attr_cont
.ac
.match
= fc_rport_match
;
1128 transport_container_register(&i
->rport_attr_cont
);
1132 /* Transport uses the shost workq for scsi scanning */
1133 i
->t
.create_work_queue
= 1;
1135 i
->t
.target_parent
= fc_target_parent
;
1138 * Setup SCSI Target Attributes.
1141 SETUP_STARGET_ATTRIBUTE_RD(node_name
);
1142 SETUP_STARGET_ATTRIBUTE_RD(port_name
);
1143 SETUP_STARGET_ATTRIBUTE_RD(port_id
);
1145 BUG_ON(count
> FC_STARGET_NUM_ATTRS
);
1147 i
->starget_attrs
[count
] = NULL
;
1151 * Setup SCSI Host Attributes.
1154 SETUP_HOST_ATTRIBUTE_RD(node_name
);
1155 SETUP_HOST_ATTRIBUTE_RD(port_name
);
1156 SETUP_HOST_ATTRIBUTE_RD(supported_classes
);
1157 SETUP_HOST_ATTRIBUTE_RD(supported_fc4s
);
1158 SETUP_HOST_ATTRIBUTE_RD(symbolic_name
);
1159 SETUP_HOST_ATTRIBUTE_RD(supported_speeds
);
1160 SETUP_HOST_ATTRIBUTE_RD(maxframe_size
);
1161 SETUP_HOST_ATTRIBUTE_RD(serial_number
);
1163 SETUP_HOST_ATTRIBUTE_RD(port_id
);
1164 SETUP_HOST_ATTRIBUTE_RD(port_type
);
1165 SETUP_HOST_ATTRIBUTE_RD(port_state
);
1166 SETUP_HOST_ATTRIBUTE_RD(active_fc4s
);
1167 SETUP_HOST_ATTRIBUTE_RD(speed
);
1168 SETUP_HOST_ATTRIBUTE_RD(fabric_name
);
1170 /* Transport-managed attributes */
1171 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(tgtid_bind_type
);
1172 if (ft
->issue_fc_host_lip
)
1173 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(issue_lip
);
1175 BUG_ON(count
> FC_HOST_NUM_ATTRS
);
1177 i
->host_attrs
[count
] = NULL
;
1180 * Setup Remote Port Attributes.
1183 SETUP_RPORT_ATTRIBUTE_RD(maxframe_size
);
1184 SETUP_RPORT_ATTRIBUTE_RD(supported_classes
);
1185 SETUP_RPORT_ATTRIBUTE_RW(dev_loss_tmo
);
1186 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(node_name
);
1187 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_name
);
1188 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_id
);
1189 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(roles
);
1190 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_state
);
1191 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(scsi_target_id
);
1193 BUG_ON(count
> FC_RPORT_NUM_ATTRS
);
1195 i
->rport_attrs
[count
] = NULL
;
1199 EXPORT_SYMBOL(fc_attach_transport
);
1201 void fc_release_transport(struct scsi_transport_template
*t
)
1203 struct fc_internal
*i
= to_fc_internal(t
);
1205 transport_container_unregister(&i
->t
.target_attrs
);
1206 transport_container_unregister(&i
->t
.host_attrs
);
1207 transport_container_unregister(&i
->rport_attr_cont
);
1211 EXPORT_SYMBOL(fc_release_transport
);
1215 * fc_remove_host - called to terminate any fc_transport-related elements
1217 * @rport: remote port to be unblocked.
1219 * This routine is expected to be called immediately preceeding the
1220 * a driver's call to scsi_remove_host().
1222 * WARNING: A driver utilizing the fc_transport, which fails to call
1223 * this routine prior to scsi_remote_host(), will leave dangling
1224 * objects in /sys/class/fc_remote_ports. Access to any of these
1225 * objects can result in a system crash !!!
1228 * This routine assumes no locks are held on entry.
1231 fc_remove_host(struct Scsi_Host
*shost
)
1233 struct fc_rport
*rport
, *next_rport
;
1235 /* Remove any remote ports */
1236 list_for_each_entry_safe(rport
, next_rport
,
1237 &fc_host_rports(shost
), peers
)
1238 fc_rport_terminate(rport
);
1239 list_for_each_entry_safe(rport
, next_rport
,
1240 &fc_host_rport_bindings(shost
), peers
)
1241 fc_rport_terminate(rport
);
1243 EXPORT_SYMBOL(fc_remove_host
);
1246 * fc_rport_tgt_remove - Removes the scsi target on the remote port
1247 * @rport: The remote port to be operated on
1250 fc_rport_tgt_remove(struct fc_rport
*rport
)
1252 struct Scsi_Host
*shost
= rport_to_shost(rport
);
1254 scsi_target_unblock(&rport
->dev
);
1256 /* Stop anything on the workq */
1257 if (!cancel_delayed_work(&rport
->dev_loss_work
))
1258 flush_scheduled_work();
1259 scsi_flush_work(shost
);
1261 scsi_remove_target(&rport
->dev
);
1265 * fc_rport_create - allocates and creates a remote FC port.
1266 * @shost: scsi host the remote port is connected to.
1267 * @channel: Channel on shost port connected to.
1268 * @ids: The world wide names, fc address, and FC4 port
1269 * roles for the remote port.
1271 * Allocates and creates the remoter port structure, including the
1272 * class and sysfs creation.
1275 * This routine assumes no locks are held on entry.
1278 fc_rport_create(struct Scsi_Host
*shost
, int channel
,
1279 struct fc_rport_identifiers
*ids
)
1281 struct fc_host_attrs
*fc_host
=
1282 (struct fc_host_attrs
*)shost
->shost_data
;
1283 struct fc_internal
*fci
= to_fc_internal(shost
->transportt
);
1284 struct fc_rport
*rport
;
1286 unsigned long flags
;
1290 size
= (sizeof(struct fc_rport
) + fci
->f
->dd_fcrport_size
);
1291 rport
= kmalloc(size
, GFP_KERNEL
);
1292 if (unlikely(!rport
)) {
1293 printk(KERN_ERR
"%s: allocation failure\n", __FUNCTION__
);
1296 memset(rport
, 0, size
);
1298 rport
->maxframe_size
= -1;
1299 rport
->supported_classes
= FC_COS_UNSPECIFIED
;
1300 rport
->dev_loss_tmo
= fc_dev_loss_tmo
;
1301 memcpy(&rport
->node_name
, &ids
->node_name
, sizeof(rport
->node_name
));
1302 memcpy(&rport
->port_name
, &ids
->port_name
, sizeof(rport
->port_name
));
1303 rport
->port_id
= ids
->port_id
;
1304 rport
->roles
= ids
->roles
;
1305 rport
->port_state
= FC_PORTSTATE_ONLINE
;
1306 if (fci
->f
->dd_fcrport_size
)
1307 rport
->dd_data
= &rport
[1];
1308 rport
->channel
= channel
;
1310 INIT_WORK(&rport
->dev_loss_work
, fc_timeout_deleted_rport
, rport
);
1311 INIT_WORK(&rport
->scan_work
, fc_scsi_scan_rport
, rport
);
1313 spin_lock_irqsave(shost
->host_lock
, flags
);
1315 rport
->number
= fc_host
->next_rport_number
++;
1316 if (rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)
1317 rport
->scsi_target_id
= fc_host
->next_target_id
++;
1319 rport
->scsi_target_id
= -1;
1320 list_add_tail(&rport
->peers
, &fc_host_rports(shost
));
1321 get_device(&shost
->shost_gendev
);
1323 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1326 device_initialize(dev
);
1327 dev
->parent
= get_device(&shost
->shost_gendev
);
1328 dev
->release
= fc_rport_dev_release
;
1329 sprintf(dev
->bus_id
, "rport-%d:%d-%d",
1330 shost
->host_no
, channel
, rport
->number
);
1331 transport_setup_device(dev
);
1333 error
= device_add(dev
);
1335 printk(KERN_ERR
"FC Remote Port device_add failed\n");
1338 transport_add_device(dev
);
1339 transport_configure_device(dev
);
1341 if (rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)
1342 /* initiate a scan of the target */
1343 scsi_queue_work(shost
, &rport
->scan_work
);
1348 transport_destroy_device(dev
);
1349 put_device(dev
->parent
);
1350 spin_lock_irqsave(shost
->host_lock
, flags
);
1351 list_del(&rport
->peers
);
1352 put_device(&shost
->shost_gendev
);
1353 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1354 put_device(dev
->parent
);
1360 * fc_remote_port_add - notifies the fc transport of the existence
1361 * of a remote FC port.
1362 * @shost: scsi host the remote port is connected to.
1363 * @channel: Channel on shost port connected to.
1364 * @ids: The world wide names, fc address, and FC4 port
1365 * roles for the remote port.
1367 * The LLDD calls this routine to notify the transport of the existence
1368 * of a remote port. The LLDD provides the unique identifiers (wwpn,wwn)
1369 * of the port, it's FC address (port_id), and the FC4 roles that are
1370 * active for the port.
1372 * For ports that are FCP targets (aka scsi targets), the FC transport
1373 * maintains consistent target id bindings on behalf of the LLDD.
1374 * A consistent target id binding is an assignment of a target id to
1375 * a remote port identifier, which persists while the scsi host is
1376 * attached. The remote port can disappear, then later reappear, and
1377 * it's target id assignment remains the same. This allows for shifts
1378 * in FC addressing (if binding by wwpn or wwnn) with no apparent
1379 * changes to the scsi subsystem which is based on scsi host number and
1380 * target id values. Bindings are only valid during the attachment of
1381 * the scsi host. If the host detaches, then later re-attaches, target
1382 * id bindings may change.
1384 * This routine is responsible for returning a remote port structure.
1385 * The routine will search the list of remote ports it maintains
1386 * internally on behalf of consistent target id mappings. If found, the
1387 * remote port structure will be reused. Otherwise, a new remote port
1388 * structure will be allocated.
1390 * Whenever a remote port is allocated, a new fc_remote_port class
1391 * device is created.
1393 * Should not be called from interrupt context.
1396 * This routine assumes no locks are held on entry.
1399 fc_remote_port_add(struct Scsi_Host
*shost
, int channel
,
1400 struct fc_rport_identifiers
*ids
)
1402 struct fc_internal
*fci
= to_fc_internal(shost
->transportt
);
1403 struct fc_rport
*rport
;
1404 unsigned long flags
;
1408 * Search the list of "active" rports, for an rport that has been
1409 * deleted, but we've held off the real delete while the target
1410 * is in a "blocked" state.
1412 spin_lock_irqsave(shost
->host_lock
, flags
);
1414 list_for_each_entry(rport
, &fc_host_rports(shost
), peers
) {
1416 if ((rport
->port_state
== FC_PORTSTATE_BLOCKED
) &&
1417 (rport
->channel
== channel
)) {
1419 switch (fc_host_tgtid_bind_type(shost
)) {
1420 case FC_TGTID_BIND_BY_WWPN
:
1421 case FC_TGTID_BIND_NONE
:
1422 if (rport
->port_name
== ids
->port_name
)
1425 case FC_TGTID_BIND_BY_WWNN
:
1426 if (rport
->node_name
== ids
->node_name
)
1429 case FC_TGTID_BIND_BY_ID
:
1430 if (rport
->port_id
== ids
->port_id
)
1436 struct work_struct
*work
=
1437 &rport
->dev_loss_work
;
1439 memcpy(&rport
->node_name
, &ids
->node_name
,
1440 sizeof(rport
->node_name
));
1441 memcpy(&rport
->port_name
, &ids
->port_name
,
1442 sizeof(rport
->port_name
));
1443 rport
->port_id
= ids
->port_id
;
1445 rport
->port_state
= FC_PORTSTATE_ONLINE
;
1446 rport
->roles
= ids
->roles
;
1448 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1450 if (fci
->f
->dd_fcrport_size
)
1451 memset(rport
->dd_data
, 0,
1452 fci
->f
->dd_fcrport_size
);
1455 * If we were blocked, we were a target.
1456 * If no longer a target, we leave the timer
1457 * running in case the port changes roles
1458 * prior to the timer expiring. If the timer
1459 * fires, the target will be torn down.
1461 if (!(ids
->roles
& FC_RPORT_ROLE_FCP_TARGET
))
1464 /* restart the target */
1467 * Stop the target timer first. Take no action
1468 * on the del_timer failure as the state
1469 * machine state change will validate the
1472 if (!cancel_delayed_work(work
))
1473 flush_scheduled_work();
1475 /* initiate a scan of the target */
1476 scsi_queue_work(shost
, &rport
->scan_work
);
1483 /* Search the bindings array */
1484 if (likely((ids
->roles
& FC_RPORT_ROLE_FCP_TARGET
) &&
1485 (fc_host_tgtid_bind_type(shost
) != FC_TGTID_BIND_NONE
))) {
1487 /* search for a matching consistent binding */
1489 list_for_each_entry(rport
, &fc_host_rport_bindings(shost
),
1491 if (rport
->channel
!= channel
)
1494 switch (fc_host_tgtid_bind_type(shost
)) {
1495 case FC_TGTID_BIND_BY_WWPN
:
1496 if (rport
->port_name
== ids
->port_name
)
1499 case FC_TGTID_BIND_BY_WWNN
:
1500 if (rport
->node_name
== ids
->node_name
)
1503 case FC_TGTID_BIND_BY_ID
:
1504 if (rport
->port_id
== ids
->port_id
)
1507 case FC_TGTID_BIND_NONE
: /* to keep compiler happy */
1512 list_move_tail(&rport
->peers
,
1513 &fc_host_rports(shost
));
1519 memcpy(&rport
->node_name
, &ids
->node_name
,
1520 sizeof(rport
->node_name
));
1521 memcpy(&rport
->port_name
, &ids
->port_name
,
1522 sizeof(rport
->port_name
));
1523 rport
->port_id
= ids
->port_id
;
1524 rport
->roles
= ids
->roles
;
1525 rport
->port_state
= FC_PORTSTATE_ONLINE
;
1527 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1529 if (fci
->f
->dd_fcrport_size
)
1530 memset(rport
->dd_data
, 0,
1531 fci
->f
->dd_fcrport_size
);
1533 if (rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
)
1534 /* initiate a scan of the target */
1535 scsi_queue_work(shost
, &rport
->scan_work
);
1541 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1543 /* No consistent binding found - create new remote port entry */
1544 rport
= fc_rport_create(shost
, channel
, ids
);
1548 EXPORT_SYMBOL(fc_remote_port_add
);
1551 * fc_rport_terminate - this routine tears down and deallocates a remote port.
1552 * @rport: The remote port to be terminated
1555 * This routine assumes no locks are held on entry.
1558 fc_rport_terminate(struct fc_rport
*rport
)
1560 struct Scsi_Host
*shost
= rport_to_shost(rport
);
1561 struct device
*dev
= &rport
->dev
;
1562 unsigned long flags
;
1564 fc_rport_tgt_remove(rport
);
1566 transport_remove_device(dev
);
1568 transport_destroy_device(dev
);
1569 spin_lock_irqsave(shost
->host_lock
, flags
);
1570 list_del(&rport
->peers
);
1571 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1572 put_device(&shost
->shost_gendev
);
1576 * fc_remote_port_delete - notifies the fc transport that a remote
1577 * port is no longer in existence.
1578 * @rport: The remote port that no longer exists
1580 * The LLDD calls this routine to notify the transport that a remote
1581 * port is no longer part of the topology. Note: Although a port
1582 * may no longer be part of the topology, it may persist in the remote
1583 * ports displayed by the fc_host. We do this under 2 conditions:
1584 * - If the port was a scsi target, we delay its deletion by "blocking" it.
1585 * This allows the port to temporarily disappear, then reappear without
1586 * disrupting the SCSI device tree attached to it. During the "blocked"
1587 * period the port will still exist.
1588 * - If the port was a scsi target and disappears for longer than we
1589 * expect, we'll delete the port and the tear down the SCSI device tree
1590 * attached to it. However, we want to semi-persist the target id assigned
1591 * to that port if it eventually does exist. The port structure will
1592 * remain (although with minimal information) so that the target id
1595 * If the remote port is not an FCP Target, it will be fully torn down
1596 * and deallocated, including the fc_remote_port class device.
1598 * If the remote port is an FCP Target, the port will be placed in a
1599 * temporary blocked state. From the LLDD's perspective, the rport no
1600 * longer exists. From the SCSI midlayer's perspective, the SCSI target
1601 * exists, but all sdevs on it are blocked from further I/O. The following
1603 * If the remote port does not return (signaled by a LLDD call to
1604 * fc_remote_port_add()) within the dev_loss_tmo timeout, then the
1605 * scsi target is removed - killing all outstanding i/o and removing the
1606 * scsi devices attached ot it. The port structure will be marked Not
1607 * Present and be partially cleared, leaving only enough information to
1608 * recognize the remote port relative to the scsi target id binding if
1609 * it later appears. The port will remain as long as there is a valid
1610 * binding (e.g. until the user changes the binding type or unloads the
1611 * scsi host with the binding).
1613 * If the remote port returns within the dev_loss_tmo value (and matches
1614 * according to the target id binding type), the port structure will be
1615 * reused. If it is no longer a SCSI target, the target will be torn
1616 * down. If it continues to be a SCSI target, then the target will be
1617 * unblocked (allowing i/o to be resumed), and a scan will be activated
1618 * to ensure that all luns are detected.
1620 * Called from normal process context only - cannot be called from interrupt.
1623 * This routine assumes no locks are held on entry.
1626 fc_remote_port_delete(struct fc_rport
*rport
)
1628 int timeout
= rport
->dev_loss_tmo
;
1630 /* If no scsi target id mapping, delete it */
1631 if (rport
->scsi_target_id
== -1) {
1632 fc_rport_terminate(rport
);
1636 scsi_target_block(&rport
->dev
);
1638 /* cap the length the devices can be blocked until they are deleted */
1639 schedule_delayed_work(&rport
->dev_loss_work
, timeout
* HZ
);
1641 rport
->port_state
= FC_PORTSTATE_BLOCKED
;
1643 EXPORT_SYMBOL(fc_remote_port_delete
);
1646 * fc_remote_port_rolechg - notifies the fc transport that the roles
1647 * on a remote may have changed.
1648 * @rport: The remote port that changed.
1650 * The LLDD calls this routine to notify the transport that the roles
1651 * on a remote port may have changed. The largest effect of this is
1652 * if a port now becomes a FCP Target, it must be allocated a
1653 * scsi target id. If the port is no longer a FCP target, any
1654 * scsi target id value assigned to it will persist in case the
1655 * role changes back to include FCP Target. No changes in the scsi
1656 * midlayer will be invoked if the role changes (in the expectation
1657 * that the role will be resumed. If it doesn't normal error processing
1660 * Should not be called from interrupt context.
1663 * This routine assumes no locks are held on entry.
1666 fc_remote_port_rolechg(struct fc_rport
*rport
, u32 roles
)
1668 struct Scsi_Host
*shost
= rport_to_shost(rport
);
1669 struct fc_host_attrs
*fc_host
=
1670 (struct fc_host_attrs
*)shost
->shost_data
;
1671 unsigned long flags
;
1674 spin_lock_irqsave(shost
->host_lock
, flags
);
1675 if (roles
& FC_RPORT_ROLE_FCP_TARGET
) {
1676 if (rport
->scsi_target_id
== -1) {
1677 rport
->scsi_target_id
= fc_host
->next_target_id
++;
1679 } else if (!(rport
->roles
& FC_RPORT_ROLE_FCP_TARGET
))
1682 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1684 rport
->roles
= roles
;
1688 * There may have been a delete timer running on the
1689 * port. Ensure that it is cancelled as we now know
1690 * the port is an FCP Target.
1691 * Note: we know the rport is exists and in an online
1692 * state as the LLDD would not have had an rport
1693 * reference to pass us.
1695 * Take no action on the del_timer failure as the state
1696 * machine state change will validate the
1699 if (!cancel_delayed_work(&rport
->dev_loss_work
))
1700 flush_scheduled_work();
1702 /* initiate a scan of the target */
1703 scsi_queue_work(shost
, &rport
->scan_work
);
1706 EXPORT_SYMBOL(fc_remote_port_rolechg
);
1709 * fc_timeout_deleted_rport - Timeout handler for a deleted remote port that
1710 * was a SCSI target (thus was blocked), and failed
1711 * to return in the alloted time.
1713 * @data: rport target that failed to reappear in the alloted time.
1716 fc_timeout_deleted_rport(void *data
)
1718 struct fc_rport
*rport
= (struct fc_rport
*)data
;
1719 struct Scsi_Host
*shost
= rport_to_shost(rport
);
1720 unsigned long flags
;
1722 spin_lock_irqsave(shost
->host_lock
, flags
);
1725 * If the port is ONLINE, then it came back, but was no longer an
1726 * FCP target. Thus we need to tear down the scsi_target on it.
1728 if (rport
->port_state
== FC_PORTSTATE_ONLINE
) {
1729 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1731 dev_printk(KERN_ERR
, &rport
->dev
,
1732 "blocked FC remote port time out: removing target\n");
1734 fc_rport_tgt_remove(rport
);
1739 if (rport
->port_state
!= FC_PORTSTATE_BLOCKED
) {
1740 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1741 dev_printk(KERN_ERR
, &rport
->dev
,
1742 "blocked FC remote port time out: leaving target alone\n");
1746 if (fc_host_tgtid_bind_type(shost
) == FC_TGTID_BIND_NONE
) {
1747 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1748 dev_printk(KERN_ERR
, &rport
->dev
,
1749 "blocked FC remote port time out: removing target\n");
1750 fc_rport_terminate(rport
);
1754 dev_printk(KERN_ERR
, &rport
->dev
,
1755 "blocked FC remote port time out: removing target and "
1756 "saving binding\n");
1758 list_move_tail(&rport
->peers
, &fc_host_rport_bindings(shost
));
1761 * Note: We do not remove or clear the hostdata area. This allows
1762 * host-specific target data to persist along with the
1763 * scsi_target_id. It's up to the host to manage it's hostdata area.
1767 * Reinitialize port attributes that may change if the port comes back.
1769 rport
->maxframe_size
= -1;
1770 rport
->supported_classes
= FC_COS_UNSPECIFIED
;
1771 rport
->roles
= FC_RPORT_ROLE_UNKNOWN
;
1772 rport
->port_state
= FC_PORTSTATE_NOTPRESENT
;
1774 /* remove the identifiers that aren't used in the consisting binding */
1775 switch (fc_host_tgtid_bind_type(shost
)) {
1776 case FC_TGTID_BIND_BY_WWPN
:
1777 rport
->node_name
= -1;
1778 rport
->port_id
= -1;
1780 case FC_TGTID_BIND_BY_WWNN
:
1781 rport
->port_name
= -1;
1782 rport
->port_id
= -1;
1784 case FC_TGTID_BIND_BY_ID
:
1785 rport
->node_name
= -1;
1786 rport
->port_name
= -1;
1788 case FC_TGTID_BIND_NONE
: /* to keep compiler happy */
1792 spin_unlock_irqrestore(shost
->host_lock
, flags
);
1795 * As this only occurs if the remote port (scsi target)
1796 * went away and didn't come back - we'll remove
1797 * all attached scsi devices.
1799 fc_rport_tgt_remove(rport
);
1803 * fc_scsi_scan_rport - called to perform a scsi scan on a remote port.
1805 * Will unblock the target (in case it went away and has now come back),
1806 * then invoke a scan.
1808 * @data: remote port to be scanned.
1811 fc_scsi_scan_rport(void *data
)
1813 struct fc_rport
*rport
= (struct fc_rport
*)data
;
1815 scsi_target_unblock(&rport
->dev
);
1816 scsi_scan_target(&rport
->dev
, rport
->channel
, rport
->scsi_target_id
,
1821 MODULE_AUTHOR("Martin Hicks");
1822 MODULE_DESCRIPTION("FC Transport Attributes");
1823 MODULE_LICENSE("GPL");
1825 module_init(fc_transport_init
);
1826 module_exit(fc_transport_exit
);