[SCSI] fc class: add fc host default default dev loss setting
[deliverable/linux.git] / drivers / scsi / scsi_transport_fc.c
CommitLineData
9ef3e4a4 1/*
1da177e4
LT
2 * FiberChannel transport specific attributes exported to sysfs.
3 *
4 * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
5 *
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.
10 *
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 * ========
21 *
a53eb5e0 22 * Copyright (C) 2004-2007 James Smart, Emulex Corporation
1da177e4
LT
23 * Rewrite for host, target, device, and remote port attributes,
24 * statistics, and service functions...
9ef3e4a4 25 * Add vports, etc
1da177e4
LT
26 *
27 */
28#include <linux/module.h>
29#include <linux/init.h>
5a0e3ad6 30#include <linux/slab.h>
65d430fa 31#include <linux/delay.h>
ecc30990 32#include <linux/kernel.h>
1da177e4
LT
33#include <scsi/scsi_device.h>
34#include <scsi/scsi_host.h>
35#include <scsi/scsi_transport.h>
36#include <scsi/scsi_transport_fc.h>
c829c394 37#include <scsi/scsi_cmnd.h>
84314fd4
JS
38#include <linux/netlink.h>
39#include <net/netlink.h>
40#include <scsi/scsi_netlink_fc.h>
9e4f5e29 41#include <scsi/scsi_bsg_fc.h>
1da177e4 42#include "scsi_priv.h"
7525236d 43#include "scsi_transport_fc_internal.h"
1da177e4 44
aedf3497 45static int fc_queue_work(struct Scsi_Host *, struct work_struct *);
9ef3e4a4 46static void fc_vport_sched_delete(struct work_struct *work);
a30c3f69 47static int fc_vport_setup(struct Scsi_Host *shost, int channel,
a53eb5e0
JS
48 struct device *pdev, struct fc_vport_identifiers *ids,
49 struct fc_vport **vport);
9e4f5e29
JS
50static int fc_bsg_hostadd(struct Scsi_Host *, struct fc_host_attrs *);
51static int fc_bsg_rportadd(struct Scsi_Host *, struct fc_rport *);
52static void fc_bsg_remove(struct request_queue *);
53static void fc_bsg_goose_queue(struct fc_rport *);
a53eb5e0 54
1da177e4
LT
55/*
56 * Redefine so that we can have same named attributes in the
57 * sdev/starget/host objects.
58 */
ee959b00
TJ
59#define FC_DEVICE_ATTR(_prefix,_name,_mode,_show,_store) \
60struct device_attribute device_attr_##_prefix##_##_name = \
1da177e4
LT
61 __ATTR(_name,_mode,_show,_store)
62
63#define fc_enum_name_search(title, table_type, table) \
64static const char *get_fc_##title##_name(enum table_type table_key) \
65{ \
66 int i; \
67 char *name = NULL; \
68 \
6391a113 69 for (i = 0; i < ARRAY_SIZE(table); i++) { \
1da177e4
LT
70 if (table[i].value == table_key) { \
71 name = table[i].name; \
72 break; \
73 } \
74 } \
75 return name; \
76}
77
78#define fc_enum_name_match(title, table_type, table) \
79static int get_fc_##title##_match(const char *table_key, \
80 enum table_type *value) \
81{ \
82 int i; \
83 \
6391a113 84 for (i = 0; i < ARRAY_SIZE(table); i++) { \
1da177e4
LT
85 if (strncmp(table_key, table[i].name, \
86 table[i].matchlen) == 0) { \
87 *value = table[i].value; \
88 return 0; /* success */ \
89 } \
90 } \
91 return 1; /* failure */ \
92}
93
94
95/* Convert fc_port_type values to ascii string name */
96static struct {
97 enum fc_port_type value;
98 char *name;
99} fc_port_type_names[] = {
100 { FC_PORTTYPE_UNKNOWN, "Unknown" },
101 { FC_PORTTYPE_OTHER, "Other" },
102 { FC_PORTTYPE_NOTPRESENT, "Not Present" },
103 { FC_PORTTYPE_NPORT, "NPort (fabric via point-to-point)" },
104 { FC_PORTTYPE_NLPORT, "NLPort (fabric via loop)" },
105 { FC_PORTTYPE_LPORT, "LPort (private loop)" },
951948a3 106 { FC_PORTTYPE_PTP, "Point-To-Point (direct nport connection)" },
a53eb5e0 107 { FC_PORTTYPE_NPIV, "NPIV VPORT" },
1da177e4
LT
108};
109fc_enum_name_search(port_type, fc_port_type, fc_port_type_names)
110#define FC_PORTTYPE_MAX_NAMELEN 50
111
a53eb5e0
JS
112/* Reuse fc_port_type enum function for vport_type */
113#define get_fc_vport_type_name get_fc_port_type_name
114
1da177e4 115
84314fd4
JS
116/* Convert fc_host_event_code values to ascii string name */
117static const struct {
118 enum fc_host_event_code value;
119 char *name;
120} fc_host_event_code_names[] = {
121 { FCH_EVT_LIP, "lip" },
122 { FCH_EVT_LINKUP, "link_up" },
123 { FCH_EVT_LINKDOWN, "link_down" },
124 { FCH_EVT_LIPRESET, "lip_reset" },
125 { FCH_EVT_RSCN, "rscn" },
126 { FCH_EVT_ADAPTER_CHANGE, "adapter_chg" },
127 { FCH_EVT_PORT_UNKNOWN, "port_unknown" },
128 { FCH_EVT_PORT_ONLINE, "port_online" },
129 { FCH_EVT_PORT_OFFLINE, "port_offline" },
130 { FCH_EVT_PORT_FABRIC, "port_fabric" },
131 { FCH_EVT_LINK_UNKNOWN, "link_unknown" },
132 { FCH_EVT_VENDOR_UNIQUE, "vendor_unique" },
133};
134fc_enum_name_search(host_event_code, fc_host_event_code,
135 fc_host_event_code_names)
136#define FC_HOST_EVENT_CODE_MAX_NAMELEN 30
137
138
1da177e4
LT
139/* Convert fc_port_state values to ascii string name */
140static struct {
141 enum fc_port_state value;
142 char *name;
143} fc_port_state_names[] = {
144 { FC_PORTSTATE_UNKNOWN, "Unknown" },
145 { FC_PORTSTATE_NOTPRESENT, "Not Present" },
146 { FC_PORTSTATE_ONLINE, "Online" },
147 { FC_PORTSTATE_OFFLINE, "Offline" },
148 { FC_PORTSTATE_BLOCKED, "Blocked" },
149 { FC_PORTSTATE_BYPASSED, "Bypassed" },
150 { FC_PORTSTATE_DIAGNOSTICS, "Diagnostics" },
151 { FC_PORTSTATE_LINKDOWN, "Linkdown" },
152 { FC_PORTSTATE_ERROR, "Error" },
153 { FC_PORTSTATE_LOOPBACK, "Loopback" },
42e33148 154 { FC_PORTSTATE_DELETED, "Deleted" },
1da177e4
LT
155};
156fc_enum_name_search(port_state, fc_port_state, fc_port_state_names)
157#define FC_PORTSTATE_MAX_NAMELEN 20
158
159
a53eb5e0
JS
160/* Convert fc_vport_state values to ascii string name */
161static struct {
162 enum fc_vport_state value;
163 char *name;
164} fc_vport_state_names[] = {
165 { FC_VPORT_UNKNOWN, "Unknown" },
166 { FC_VPORT_ACTIVE, "Active" },
167 { FC_VPORT_DISABLED, "Disabled" },
168 { FC_VPORT_LINKDOWN, "Linkdown" },
169 { FC_VPORT_INITIALIZING, "Initializing" },
170 { FC_VPORT_NO_FABRIC_SUPP, "No Fabric Support" },
171 { FC_VPORT_NO_FABRIC_RSCS, "No Fabric Resources" },
172 { FC_VPORT_FABRIC_LOGOUT, "Fabric Logout" },
173 { FC_VPORT_FABRIC_REJ_WWN, "Fabric Rejected WWN" },
174 { FC_VPORT_FAILED, "VPort Failed" },
175};
176fc_enum_name_search(vport_state, fc_vport_state, fc_vport_state_names)
177#define FC_VPORTSTATE_MAX_NAMELEN 24
178
179/* Reuse fc_vport_state enum function for vport_last_state */
180#define get_fc_vport_last_state_name get_fc_vport_state_name
181
182
1da177e4 183/* Convert fc_tgtid_binding_type values to ascii string name */
0ad78200 184static const struct {
1da177e4
LT
185 enum fc_tgtid_binding_type value;
186 char *name;
187 int matchlen;
188} fc_tgtid_binding_type_names[] = {
189 { FC_TGTID_BIND_NONE, "none", 4 },
190 { FC_TGTID_BIND_BY_WWPN, "wwpn (World Wide Port Name)", 4 },
191 { FC_TGTID_BIND_BY_WWNN, "wwnn (World Wide Node Name)", 4 },
192 { FC_TGTID_BIND_BY_ID, "port_id (FC Address)", 7 },
193};
194fc_enum_name_search(tgtid_bind_type, fc_tgtid_binding_type,
195 fc_tgtid_binding_type_names)
196fc_enum_name_match(tgtid_bind_type, fc_tgtid_binding_type,
197 fc_tgtid_binding_type_names)
198#define FC_BINDTYPE_MAX_NAMELEN 30
199
200
201#define fc_bitfield_name_search(title, table) \
202static ssize_t \
203get_fc_##title##_names(u32 table_key, char *buf) \
204{ \
205 char *prefix = ""; \
206 ssize_t len = 0; \
207 int i; \
208 \
6391a113 209 for (i = 0; i < ARRAY_SIZE(table); i++) { \
1da177e4
LT
210 if (table[i].value & table_key) { \
211 len += sprintf(buf + len, "%s%s", \
212 prefix, table[i].name); \
213 prefix = ", "; \
214 } \
215 } \
216 len += sprintf(buf + len, "\n"); \
217 return len; \
218}
219
220
221/* Convert FC_COS bit values to ascii string name */
0ad78200 222static const struct {
1da177e4
LT
223 u32 value;
224 char *name;
225} fc_cos_names[] = {
226 { FC_COS_CLASS1, "Class 1" },
227 { FC_COS_CLASS2, "Class 2" },
228 { FC_COS_CLASS3, "Class 3" },
229 { FC_COS_CLASS4, "Class 4" },
230 { FC_COS_CLASS6, "Class 6" },
231};
232fc_bitfield_name_search(cos, fc_cos_names)
233
234
235/* Convert FC_PORTSPEED bit values to ascii string name */
0ad78200 236static const struct {
1da177e4
LT
237 u32 value;
238 char *name;
239} fc_port_speed_names[] = {
240 { FC_PORTSPEED_1GBIT, "1 Gbit" },
241 { FC_PORTSPEED_2GBIT, "2 Gbit" },
242 { FC_PORTSPEED_4GBIT, "4 Gbit" },
243 { FC_PORTSPEED_10GBIT, "10 Gbit" },
c3d2350a
JS
244 { FC_PORTSPEED_8GBIT, "8 Gbit" },
245 { FC_PORTSPEED_16GBIT, "16 Gbit" },
1da177e4
LT
246 { FC_PORTSPEED_NOT_NEGOTIATED, "Not Negotiated" },
247};
248fc_bitfield_name_search(port_speed, fc_port_speed_names)
249
250
251static int
252show_fc_fc4s (char *buf, u8 *fc4_list)
253{
254 int i, len=0;
255
256 for (i = 0; i < FC_FC4_LIST_SIZE; i++, fc4_list++)
257 len += sprintf(buf + len , "0x%02x ", *fc4_list);
258 len += sprintf(buf + len, "\n");
259 return len;
260}
261
262
a53eb5e0 263/* Convert FC_PORT_ROLE bit values to ascii string name */
0ad78200 264static const struct {
1da177e4
LT
265 u32 value;
266 char *name;
a53eb5e0
JS
267} fc_port_role_names[] = {
268 { FC_PORT_ROLE_FCP_TARGET, "FCP Target" },
269 { FC_PORT_ROLE_FCP_INITIATOR, "FCP Initiator" },
270 { FC_PORT_ROLE_IP_PORT, "IP Port" },
1da177e4 271};
a53eb5e0 272fc_bitfield_name_search(port_roles, fc_port_role_names)
1da177e4
LT
273
274/*
275 * Define roles that are specific to port_id. Values are relative to ROLE_MASK.
276 */
277#define FC_WELLKNOWN_PORTID_MASK 0xfffff0
278#define FC_WELLKNOWN_ROLE_MASK 0x00000f
279#define FC_FPORT_PORTID 0x00000e
280#define FC_FABCTLR_PORTID 0x00000d
281#define FC_DIRSRVR_PORTID 0x00000c
282#define FC_TIMESRVR_PORTID 0x00000b
283#define FC_MGMTSRVR_PORTID 0x00000a
284
285
c4028958
DH
286static void fc_timeout_deleted_rport(struct work_struct *work);
287static void fc_timeout_fail_rport_io(struct work_struct *work);
288static void fc_scsi_scan_rport(struct work_struct *work);
1da177e4
LT
289
290/*
291 * Attribute counts pre object type...
292 * Increase these values if you add attributes
293 */
294#define FC_STARGET_NUM_ATTRS 3
0f29b966 295#define FC_RPORT_NUM_ATTRS 10
a53eb5e0 296#define FC_VPORT_NUM_ATTRS 9
4643682b 297#define FC_HOST_NUM_ATTRS 22
1da177e4
LT
298
299struct fc_internal {
300 struct scsi_transport_template t;
301 struct fc_function_template *f;
302
303 /*
304 * For attributes : each object has :
305 * An array of the actual attributes structures
306 * An array of null-terminated pointers to the attribute
307 * structures - used for mid-layer interaction.
308 *
309 * The attribute containers for the starget and host are are
310 * part of the midlayer. As the remote port is specific to the
311 * fc transport, we must provide the attribute container.
312 */
ee959b00 313 struct device_attribute private_starget_attrs[
1da177e4 314 FC_STARGET_NUM_ATTRS];
ee959b00 315 struct device_attribute *starget_attrs[FC_STARGET_NUM_ATTRS + 1];
1da177e4 316
ee959b00
TJ
317 struct device_attribute private_host_attrs[FC_HOST_NUM_ATTRS];
318 struct device_attribute *host_attrs[FC_HOST_NUM_ATTRS + 1];
1da177e4
LT
319
320 struct transport_container rport_attr_cont;
ee959b00
TJ
321 struct device_attribute private_rport_attrs[FC_RPORT_NUM_ATTRS];
322 struct device_attribute *rport_attrs[FC_RPORT_NUM_ATTRS + 1];
a53eb5e0
JS
323
324 struct transport_container vport_attr_cont;
ee959b00
TJ
325 struct device_attribute private_vport_attrs[FC_VPORT_NUM_ATTRS];
326 struct device_attribute *vport_attrs[FC_VPORT_NUM_ATTRS + 1];
1da177e4
LT
327};
328
329#define to_fc_internal(tmpl) container_of(tmpl, struct fc_internal, t)
330
d0a7e574 331static int fc_target_setup(struct transport_container *tc, struct device *dev,
ee959b00 332 struct device *cdev)
1da177e4
LT
333{
334 struct scsi_target *starget = to_scsi_target(dev);
335 struct fc_rport *rport = starget_to_rport(starget);
336
337 /*
338 * if parent is remote port, use values from remote port.
339 * Otherwise, this host uses the fc_transport, but not the
340 * remote port interface. As such, initialize to known non-values.
341 */
342 if (rport) {
343 fc_starget_node_name(starget) = rport->node_name;
344 fc_starget_port_name(starget) = rport->port_name;
345 fc_starget_port_id(starget) = rport->port_id;
346 } else {
347 fc_starget_node_name(starget) = -1;
348 fc_starget_port_name(starget) = -1;
349 fc_starget_port_id(starget) = -1;
350 }
351
352 return 0;
353}
354
355static DECLARE_TRANSPORT_CLASS(fc_transport_class,
356 "fc_transport",
357 fc_target_setup,
358 NULL,
359 NULL);
360
d0a7e574 361static int fc_host_setup(struct transport_container *tc, struct device *dev,
ee959b00 362 struct device *cdev)
1da177e4
LT
363{
364 struct Scsi_Host *shost = dev_to_shost(dev);
aedf3497 365 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
1da177e4 366
9ef3e4a4 367 /*
1da177e4
LT
368 * Set default values easily detected by the midlayer as
369 * failure cases. The scsi lldd is responsible for initializing
370 * all transport attributes to valid values per host.
371 */
aedf3497
JS
372 fc_host->node_name = -1;
373 fc_host->port_name = -1;
374 fc_host->permanent_port_name = -1;
375 fc_host->supported_classes = FC_COS_UNSPECIFIED;
376 memset(fc_host->supported_fc4s, 0,
377 sizeof(fc_host->supported_fc4s));
aedf3497
JS
378 fc_host->supported_speeds = FC_PORTSPEED_UNKNOWN;
379 fc_host->maxframe_size = -1;
a53eb5e0 380 fc_host->max_npiv_vports = 0;
aedf3497
JS
381 memset(fc_host->serial_number, 0,
382 sizeof(fc_host->serial_number));
383
384 fc_host->port_id = -1;
385 fc_host->port_type = FC_PORTTYPE_UNKNOWN;
386 fc_host->port_state = FC_PORTSTATE_UNKNOWN;
387 memset(fc_host->active_fc4s, 0,
388 sizeof(fc_host->active_fc4s));
389 fc_host->speed = FC_PORTSPEED_UNKNOWN;
390 fc_host->fabric_name = -1;
b8d08210
JS
391 memset(fc_host->symbolic_name, 0, sizeof(fc_host->symbolic_name));
392 memset(fc_host->system_hostname, 0, sizeof(fc_host->system_hostname));
aedf3497
JS
393
394 fc_host->tgtid_bind_type = FC_TGTID_BIND_BY_WWPN;
395
396 INIT_LIST_HEAD(&fc_host->rports);
397 INIT_LIST_HEAD(&fc_host->rport_bindings);
a53eb5e0 398 INIT_LIST_HEAD(&fc_host->vports);
aedf3497
JS
399 fc_host->next_rport_number = 0;
400 fc_host->next_target_id = 0;
a53eb5e0
JS
401 fc_host->next_vport_number = 0;
402 fc_host->npiv_vports_inuse = 0;
aedf3497 403
aab0de24
KS
404 snprintf(fc_host->work_q_name, sizeof(fc_host->work_q_name),
405 "fc_wq_%d", shost->host_no);
aedf3497
JS
406 fc_host->work_q = create_singlethread_workqueue(
407 fc_host->work_q_name);
408 if (!fc_host->work_q)
409 return -ENOMEM;
410
aab0de24
KS
411 snprintf(fc_host->devloss_work_q_name,
412 sizeof(fc_host->devloss_work_q_name),
413 "fc_dl_%d", shost->host_no);
aedf3497
JS
414 fc_host->devloss_work_q = create_singlethread_workqueue(
415 fc_host->devloss_work_q_name);
416 if (!fc_host->devloss_work_q) {
417 destroy_workqueue(fc_host->work_q);
418 fc_host->work_q = NULL;
419 return -ENOMEM;
420 }
421
9e4f5e29
JS
422 fc_bsg_hostadd(shost, fc_host);
423 /* ignore any bsg add error - we just can't do sgio */
424
425 return 0;
426}
427
428static int fc_host_remove(struct transport_container *tc, struct device *dev,
429 struct device *cdev)
430{
431 struct Scsi_Host *shost = dev_to_shost(dev);
432 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
433
434 fc_bsg_remove(fc_host->rqst_q);
1da177e4
LT
435 return 0;
436}
437
438static DECLARE_TRANSPORT_CLASS(fc_host_class,
439 "fc_host",
440 fc_host_setup,
9e4f5e29 441 fc_host_remove,
1da177e4
LT
442 NULL);
443
444/*
445 * Setup and Remove actions for remote ports are handled
446 * in the service functions below.
447 */
448static DECLARE_TRANSPORT_CLASS(fc_rport_class,
449 "fc_remote_ports",
450 NULL,
451 NULL,
452 NULL);
453
a53eb5e0
JS
454/*
455 * Setup and Remove actions for virtual ports are handled
456 * in the service functions below.
457 */
458static DECLARE_TRANSPORT_CLASS(fc_vport_class,
459 "fc_vports",
460 NULL,
461 NULL,
462 NULL);
463
1da177e4
LT
464/*
465 * Module Parameters
466 */
467
468/*
469 * dev_loss_tmo: the default number of seconds that the FC transport
470 * should insulate the loss of a remote port.
471 * The maximum will be capped by the value of SCSI_DEVICE_BLOCK_MAX_TIMEOUT.
472 */
1c9e16e4 473static unsigned int fc_dev_loss_tmo = 60; /* seconds */
1da177e4 474
10f4b89a 475module_param_named(dev_loss_tmo, fc_dev_loss_tmo, uint, S_IRUGO|S_IWUSR);
1da177e4
LT
476MODULE_PARM_DESC(dev_loss_tmo,
477 "Maximum number of seconds that the FC transport should"
478 " insulate the loss of a remote port. Once this value is"
479 " exceeded, the scsi target is removed. Value should be"
f2818663
HR
480 " between 1 and SCSI_DEVICE_BLOCK_MAX_TIMEOUT if"
481 " fast_io_fail_tmo is not set.");
1da177e4 482
eb44820c 483/*
84314fd4 484 * Netlink Infrastructure
eb44820c 485 */
84314fd4
JS
486
487static atomic_t fc_event_seq;
488
489/**
490 * fc_get_event_number - Obtain the next sequential FC event number
491 *
492 * Notes:
eb44820c 493 * We could have inlined this, but it would have required fc_event_seq to
84314fd4
JS
494 * be exposed. For now, live with the subroutine call.
495 * Atomic used to avoid lock/unlock...
eb44820c 496 */
84314fd4
JS
497u32
498fc_get_event_number(void)
499{
500 return atomic_add_return(1, &fc_event_seq);
501}
502EXPORT_SYMBOL(fc_get_event_number);
503
504
505/**
506 * fc_host_post_event - called to post an even on an fc_host.
84314fd4
JS
507 * @shost: host the event occurred on
508 * @event_number: fc event number obtained from get_fc_event_number()
509 * @event_code: fc_host event being posted
510 * @event_data: 32bits of data for the event being posted
511 *
512 * Notes:
513 * This routine assumes no locks are held on entry.
eb44820c 514 */
84314fd4
JS
515void
516fc_host_post_event(struct Scsi_Host *shost, u32 event_number,
517 enum fc_host_event_code event_code, u32 event_data)
518{
519 struct sk_buff *skb;
520 struct nlmsghdr *nlh;
521 struct fc_nl_event *event;
522 const char *name;
523 u32 len, skblen;
524 int err;
525
526 if (!scsi_nl_sock) {
527 err = -ENOENT;
528 goto send_fail;
529 }
530
531 len = FC_NL_MSGALIGN(sizeof(*event));
532 skblen = NLMSG_SPACE(len);
533
534 skb = alloc_skb(skblen, GFP_KERNEL);
535 if (!skb) {
536 err = -ENOBUFS;
537 goto send_fail;
538 }
539
540 nlh = nlmsg_put(skb, 0, 0, SCSI_TRANSPORT_MSG,
541 skblen - sizeof(*nlh), 0);
542 if (!nlh) {
543 err = -ENOBUFS;
544 goto send_fail_skb;
545 }
546 event = NLMSG_DATA(nlh);
547
548 INIT_SCSI_NL_HDR(&event->snlh, SCSI_NL_TRANSPORT_FC,
549 FC_NL_ASYNC_EVENT, len);
550 event->seconds = get_seconds();
551 event->vendor_id = 0;
552 event->host_no = shost->host_no;
553 event->event_datalen = sizeof(u32); /* bytes */
554 event->event_num = event_number;
555 event->event_code = event_code;
556 event->event_data = event_data;
557
ff491a73
PNA
558 nlmsg_multicast(scsi_nl_sock, skb, 0, SCSI_NL_GRP_FC_EVENTS,
559 GFP_KERNEL);
84314fd4
JS
560 return;
561
562send_fail_skb:
563 kfree_skb(skb);
564send_fail:
565 name = get_fc_host_event_code_name(event_code);
566 printk(KERN_WARNING
567 "%s: Dropped Event : host %d %s data 0x%08x - err %d\n",
cadbd4a5 568 __func__, shost->host_no,
84314fd4
JS
569 (name) ? name : "<unknown>", event_data, err);
570 return;
571}
572EXPORT_SYMBOL(fc_host_post_event);
573
574
575/**
eb44820c 576 * fc_host_post_vendor_event - called to post a vendor unique event on an fc_host
84314fd4
JS
577 * @shost: host the event occurred on
578 * @event_number: fc event number obtained from get_fc_event_number()
579 * @data_len: amount, in bytes, of vendor unique data
580 * @data_buf: pointer to vendor unique data
eb44820c 581 * @vendor_id: Vendor id
84314fd4
JS
582 *
583 * Notes:
584 * This routine assumes no locks are held on entry.
eb44820c 585 */
84314fd4
JS
586void
587fc_host_post_vendor_event(struct Scsi_Host *shost, u32 event_number,
f14e2e29 588 u32 data_len, char * data_buf, u64 vendor_id)
84314fd4
JS
589{
590 struct sk_buff *skb;
591 struct nlmsghdr *nlh;
592 struct fc_nl_event *event;
593 u32 len, skblen;
594 int err;
595
596 if (!scsi_nl_sock) {
597 err = -ENOENT;
598 goto send_vendor_fail;
599 }
600
601 len = FC_NL_MSGALIGN(sizeof(*event) + data_len);
602 skblen = NLMSG_SPACE(len);
603
604 skb = alloc_skb(skblen, GFP_KERNEL);
605 if (!skb) {
606 err = -ENOBUFS;
607 goto send_vendor_fail;
608 }
609
610 nlh = nlmsg_put(skb, 0, 0, SCSI_TRANSPORT_MSG,
611 skblen - sizeof(*nlh), 0);
612 if (!nlh) {
613 err = -ENOBUFS;
614 goto send_vendor_fail_skb;
615 }
616 event = NLMSG_DATA(nlh);
617
618 INIT_SCSI_NL_HDR(&event->snlh, SCSI_NL_TRANSPORT_FC,
619 FC_NL_ASYNC_EVENT, len);
620 event->seconds = get_seconds();
621 event->vendor_id = vendor_id;
622 event->host_no = shost->host_no;
623 event->event_datalen = data_len; /* bytes */
624 event->event_num = event_number;
625 event->event_code = FCH_EVT_VENDOR_UNIQUE;
626 memcpy(&event->event_data, data_buf, data_len);
627
ff491a73
PNA
628 nlmsg_multicast(scsi_nl_sock, skb, 0, SCSI_NL_GRP_FC_EVENTS,
629 GFP_KERNEL);
84314fd4
JS
630 return;
631
632send_vendor_fail_skb:
633 kfree_skb(skb);
634send_vendor_fail:
635 printk(KERN_WARNING
636 "%s: Dropped Event : host %d vendor_unique - err %d\n",
cadbd4a5 637 __func__, shost->host_no, err);
84314fd4
JS
638 return;
639}
640EXPORT_SYMBOL(fc_host_post_vendor_event);
641
642
1da177e4
LT
643
644static __init int fc_transport_init(void)
645{
84314fd4
JS
646 int error;
647
648 atomic_set(&fc_event_seq, 0);
649
650 error = transport_class_register(&fc_host_class);
a53eb5e0
JS
651 if (error)
652 return error;
653 error = transport_class_register(&fc_vport_class);
1da177e4 654 if (error)
48de68a4 655 goto unreg_host_class;
1da177e4
LT
656 error = transport_class_register(&fc_rport_class);
657 if (error)
48de68a4
MC
658 goto unreg_vport_class;
659 error = transport_class_register(&fc_transport_class);
660 if (error)
661 goto unreg_rport_class;
662 return 0;
663
664unreg_rport_class:
665 transport_class_unregister(&fc_rport_class);
666unreg_vport_class:
667 transport_class_unregister(&fc_vport_class);
668unreg_host_class:
669 transport_class_unregister(&fc_host_class);
670 return error;
1da177e4
LT
671}
672
673static void __exit fc_transport_exit(void)
674{
675 transport_class_unregister(&fc_transport_class);
676 transport_class_unregister(&fc_rport_class);
677 transport_class_unregister(&fc_host_class);
a53eb5e0 678 transport_class_unregister(&fc_vport_class);
1da177e4
LT
679}
680
681/*
682 * FC Remote Port Attribute Management
683 */
684
685#define fc_rport_show_function(field, format_string, sz, cast) \
686static ssize_t \
ee959b00
TJ
687show_fc_rport_##field (struct device *dev, \
688 struct device_attribute *attr, char *buf) \
1da177e4 689{ \
ee959b00 690 struct fc_rport *rport = transport_class_to_rport(dev); \
1da177e4
LT
691 struct Scsi_Host *shost = rport_to_shost(rport); \
692 struct fc_internal *i = to_fc_internal(shost->transportt); \
19a7b4ae
JSEC
693 if ((i->f->get_rport_##field) && \
694 !((rport->port_state == FC_PORTSTATE_BLOCKED) || \
42e33148 695 (rport->port_state == FC_PORTSTATE_DELETED) || \
19a7b4ae 696 (rport->port_state == FC_PORTSTATE_NOTPRESENT))) \
1da177e4
LT
697 i->f->get_rport_##field(rport); \
698 return snprintf(buf, sz, format_string, cast rport->field); \
699}
700
701#define fc_rport_store_function(field) \
702static ssize_t \
ee959b00
TJ
703store_fc_rport_##field(struct device *dev, \
704 struct device_attribute *attr, \
705 const char *buf, size_t count) \
1da177e4
LT
706{ \
707 int val; \
ee959b00 708 struct fc_rport *rport = transport_class_to_rport(dev); \
1da177e4
LT
709 struct Scsi_Host *shost = rport_to_shost(rport); \
710 struct fc_internal *i = to_fc_internal(shost->transportt); \
0f29b966 711 char *cp; \
19a7b4ae 712 if ((rport->port_state == FC_PORTSTATE_BLOCKED) || \
42e33148 713 (rport->port_state == FC_PORTSTATE_DELETED) || \
19a7b4ae
JSEC
714 (rport->port_state == FC_PORTSTATE_NOTPRESENT)) \
715 return -EBUSY; \
0f29b966
JS
716 val = simple_strtoul(buf, &cp, 0); \
717 if (*cp && (*cp != '\n')) \
718 return -EINVAL; \
1da177e4
LT
719 i->f->set_rport_##field(rport, val); \
720 return count; \
721}
722
723#define fc_rport_rd_attr(field, format_string, sz) \
724 fc_rport_show_function(field, format_string, sz, ) \
ee959b00 725static FC_DEVICE_ATTR(rport, field, S_IRUGO, \
1da177e4
LT
726 show_fc_rport_##field, NULL)
727
728#define fc_rport_rd_attr_cast(field, format_string, sz, cast) \
729 fc_rport_show_function(field, format_string, sz, (cast)) \
ee959b00 730static FC_DEVICE_ATTR(rport, field, S_IRUGO, \
1da177e4
LT
731 show_fc_rport_##field, NULL)
732
733#define fc_rport_rw_attr(field, format_string, sz) \
734 fc_rport_show_function(field, format_string, sz, ) \
735 fc_rport_store_function(field) \
ee959b00 736static FC_DEVICE_ATTR(rport, field, S_IRUGO | S_IWUSR, \
1da177e4
LT
737 show_fc_rport_##field, \
738 store_fc_rport_##field)
739
740
741#define fc_private_rport_show_function(field, format_string, sz, cast) \
742static ssize_t \
ee959b00
TJ
743show_fc_rport_##field (struct device *dev, \
744 struct device_attribute *attr, char *buf) \
1da177e4 745{ \
ee959b00 746 struct fc_rport *rport = transport_class_to_rport(dev); \
1da177e4
LT
747 return snprintf(buf, sz, format_string, cast rport->field); \
748}
749
750#define fc_private_rport_rd_attr(field, format_string, sz) \
751 fc_private_rport_show_function(field, format_string, sz, ) \
ee959b00 752static FC_DEVICE_ATTR(rport, field, S_IRUGO, \
1da177e4
LT
753 show_fc_rport_##field, NULL)
754
755#define fc_private_rport_rd_attr_cast(field, format_string, sz, cast) \
756 fc_private_rport_show_function(field, format_string, sz, (cast)) \
ee959b00 757static FC_DEVICE_ATTR(rport, field, S_IRUGO, \
1da177e4
LT
758 show_fc_rport_##field, NULL)
759
760
761#define fc_private_rport_rd_enum_attr(title, maxlen) \
762static ssize_t \
ee959b00
TJ
763show_fc_rport_##title (struct device *dev, \
764 struct device_attribute *attr, char *buf) \
1da177e4 765{ \
ee959b00 766 struct fc_rport *rport = transport_class_to_rport(dev); \
1da177e4
LT
767 const char *name; \
768 name = get_fc_##title##_name(rport->title); \
769 if (!name) \
770 return -EINVAL; \
771 return snprintf(buf, maxlen, "%s\n", name); \
772} \
ee959b00 773static FC_DEVICE_ATTR(rport, title, S_IRUGO, \
1da177e4
LT
774 show_fc_rport_##title, NULL)
775
776
777#define SETUP_RPORT_ATTRIBUTE_RD(field) \
ee959b00 778 i->private_rport_attrs[count] = device_attr_rport_##field; \
1da177e4
LT
779 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
780 i->private_rport_attrs[count].store = NULL; \
781 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
782 if (i->f->show_rport_##field) \
783 count++
784
785#define SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(field) \
ee959b00 786 i->private_rport_attrs[count] = device_attr_rport_##field; \
1da177e4
LT
787 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
788 i->private_rport_attrs[count].store = NULL; \
789 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
790 count++
791
792#define SETUP_RPORT_ATTRIBUTE_RW(field) \
ee959b00 793 i->private_rport_attrs[count] = device_attr_rport_##field; \
1da177e4
LT
794 if (!i->f->set_rport_##field) { \
795 i->private_rport_attrs[count].attr.mode = S_IRUGO; \
796 i->private_rport_attrs[count].store = NULL; \
797 } \
798 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
799 if (i->f->show_rport_##field) \
800 count++
801
0f29b966
JS
802#define SETUP_PRIVATE_RPORT_ATTRIBUTE_RW(field) \
803{ \
ee959b00 804 i->private_rport_attrs[count] = device_attr_rport_##field; \
0f29b966
JS
805 i->rport_attrs[count] = &i->private_rport_attrs[count]; \
806 count++; \
807}
808
1da177e4
LT
809
810/* The FC Transport Remote Port Attributes: */
811
812/* Fixed Remote Port Attributes */
813
814fc_private_rport_rd_attr(maxframe_size, "%u bytes\n", 20);
815
816static ssize_t
ee959b00
TJ
817show_fc_rport_supported_classes (struct device *dev,
818 struct device_attribute *attr, char *buf)
1da177e4 819{
ee959b00 820 struct fc_rport *rport = transport_class_to_rport(dev);
1da177e4
LT
821 if (rport->supported_classes == FC_COS_UNSPECIFIED)
822 return snprintf(buf, 20, "unspecified\n");
823 return get_fc_cos_names(rport->supported_classes, buf);
824}
ee959b00 825static FC_DEVICE_ATTR(rport, supported_classes, S_IRUGO,
1da177e4
LT
826 show_fc_rport_supported_classes, NULL);
827
828/* Dynamic Remote Port Attributes */
829
19a7b4ae
JSEC
830/*
831 * dev_loss_tmo attribute
832 */
833fc_rport_show_function(dev_loss_tmo, "%d\n", 20, )
834static ssize_t
ee959b00
TJ
835store_fc_rport_dev_loss_tmo(struct device *dev, struct device_attribute *attr,
836 const char *buf, size_t count)
19a7b4ae 837{
36dd288f 838 unsigned long val;
ee959b00 839 struct fc_rport *rport = transport_class_to_rport(dev);
19a7b4ae
JSEC
840 struct Scsi_Host *shost = rport_to_shost(rport);
841 struct fc_internal *i = to_fc_internal(shost->transportt);
0f29b966 842 char *cp;
19a7b4ae 843 if ((rport->port_state == FC_PORTSTATE_BLOCKED) ||
42e33148 844 (rport->port_state == FC_PORTSTATE_DELETED) ||
19a7b4ae
JSEC
845 (rport->port_state == FC_PORTSTATE_NOTPRESENT))
846 return -EBUSY;
0f29b966 847 val = simple_strtoul(buf, &cp, 0);
f2818663 848 if ((*cp && (*cp != '\n')) || (val < 0))
19a7b4ae 849 return -EINVAL;
f2818663 850
36dd288f
HR
851 /*
852 * Check for overflow; dev_loss_tmo is u32
853 */
854 if (val > UINT_MAX)
855 return -EINVAL;
856
f2818663
HR
857 /*
858 * If fast_io_fail is off we have to cap
859 * dev_loss_tmo at SCSI_DEVICE_BLOCK_MAX_TIMEOUT
860 */
861 if (rport->fast_io_fail_tmo == -1 &&
862 val > SCSI_DEVICE_BLOCK_MAX_TIMEOUT)
863 return -EINVAL;
864
19a7b4ae
JSEC
865 i->f->set_rport_dev_loss_tmo(rport, val);
866 return count;
867}
ee959b00 868static FC_DEVICE_ATTR(rport, dev_loss_tmo, S_IRUGO | S_IWUSR,
19a7b4ae 869 show_fc_rport_dev_loss_tmo, store_fc_rport_dev_loss_tmo);
1da177e4
LT
870
871
872/* Private Remote Port Attributes */
873
874fc_private_rport_rd_attr_cast(node_name, "0x%llx\n", 20, unsigned long long);
875fc_private_rport_rd_attr_cast(port_name, "0x%llx\n", 20, unsigned long long);
876fc_private_rport_rd_attr(port_id, "0x%06x\n", 20);
877
878static ssize_t
ee959b00
TJ
879show_fc_rport_roles (struct device *dev, struct device_attribute *attr,
880 char *buf)
1da177e4 881{
ee959b00 882 struct fc_rport *rport = transport_class_to_rport(dev);
1da177e4
LT
883
884 /* identify any roles that are port_id specific */
885 if ((rport->port_id != -1) &&
886 (rport->port_id & FC_WELLKNOWN_PORTID_MASK) ==
887 FC_WELLKNOWN_PORTID_MASK) {
888 switch (rport->port_id & FC_WELLKNOWN_ROLE_MASK) {
889 case FC_FPORT_PORTID:
890 return snprintf(buf, 30, "Fabric Port\n");
891 case FC_FABCTLR_PORTID:
892 return snprintf(buf, 30, "Fabric Controller\n");
893 case FC_DIRSRVR_PORTID:
894 return snprintf(buf, 30, "Directory Server\n");
895 case FC_TIMESRVR_PORTID:
896 return snprintf(buf, 30, "Time Server\n");
897 case FC_MGMTSRVR_PORTID:
898 return snprintf(buf, 30, "Management Server\n");
899 default:
900 return snprintf(buf, 30, "Unknown Fabric Entity\n");
901 }
902 } else {
a53eb5e0 903 if (rport->roles == FC_PORT_ROLE_UNKNOWN)
1da177e4 904 return snprintf(buf, 20, "unknown\n");
a53eb5e0 905 return get_fc_port_roles_names(rport->roles, buf);
1da177e4
LT
906 }
907}
ee959b00 908static FC_DEVICE_ATTR(rport, roles, S_IRUGO,
1da177e4
LT
909 show_fc_rport_roles, NULL);
910
911fc_private_rport_rd_enum_attr(port_state, FC_PORTSTATE_MAX_NAMELEN);
912fc_private_rport_rd_attr(scsi_target_id, "%d\n", 20);
913
0f29b966
JS
914/*
915 * fast_io_fail_tmo attribute
916 */
917static ssize_t
ee959b00
TJ
918show_fc_rport_fast_io_fail_tmo (struct device *dev,
919 struct device_attribute *attr, char *buf)
0f29b966 920{
ee959b00 921 struct fc_rport *rport = transport_class_to_rport(dev);
0f29b966
JS
922
923 if (rport->fast_io_fail_tmo == -1)
924 return snprintf(buf, 5, "off\n");
925 return snprintf(buf, 20, "%d\n", rport->fast_io_fail_tmo);
926}
927
928static ssize_t
ee959b00
TJ
929store_fc_rport_fast_io_fail_tmo(struct device *dev,
930 struct device_attribute *attr, const char *buf,
931 size_t count)
0f29b966
JS
932{
933 int val;
934 char *cp;
ee959b00 935 struct fc_rport *rport = transport_class_to_rport(dev);
0f29b966
JS
936
937 if ((rport->port_state == FC_PORTSTATE_BLOCKED) ||
938 (rport->port_state == FC_PORTSTATE_DELETED) ||
939 (rport->port_state == FC_PORTSTATE_NOTPRESENT))
940 return -EBUSY;
941 if (strncmp(buf, "off", 3) == 0)
942 rport->fast_io_fail_tmo = -1;
943 else {
944 val = simple_strtoul(buf, &cp, 0);
f2818663
HR
945 if ((*cp && (*cp != '\n')) || (val < 0))
946 return -EINVAL;
947 /*
948 * Cap fast_io_fail by dev_loss_tmo or
949 * SCSI_DEVICE_BLOCK_MAX_TIMEOUT.
950 */
951 if ((val >= rport->dev_loss_tmo) ||
952 (val > SCSI_DEVICE_BLOCK_MAX_TIMEOUT))
0f29b966 953 return -EINVAL;
f2818663 954
0f29b966
JS
955 rport->fast_io_fail_tmo = val;
956 }
957 return count;
958}
ee959b00 959static FC_DEVICE_ATTR(rport, fast_io_fail_tmo, S_IRUGO | S_IWUSR,
0f29b966 960 show_fc_rport_fast_io_fail_tmo, store_fc_rport_fast_io_fail_tmo);
1da177e4
LT
961
962
963/*
964 * FC SCSI Target Attribute Management
965 */
966
967/*
968 * Note: in the target show function we recognize when the remote
732bee7a 969 * port is in the hierarchy and do not allow the driver to get
1da177e4
LT
970 * involved in sysfs functions. The driver only gets involved if
971 * it's the "old" style that doesn't use rports.
972 */
973#define fc_starget_show_function(field, format_string, sz, cast) \
974static ssize_t \
ee959b00
TJ
975show_fc_starget_##field (struct device *dev, \
976 struct device_attribute *attr, char *buf) \
1da177e4 977{ \
ee959b00 978 struct scsi_target *starget = transport_class_to_starget(dev); \
1da177e4
LT
979 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent); \
980 struct fc_internal *i = to_fc_internal(shost->transportt); \
981 struct fc_rport *rport = starget_to_rport(starget); \
982 if (rport) \
983 fc_starget_##field(starget) = rport->field; \
984 else if (i->f->get_starget_##field) \
985 i->f->get_starget_##field(starget); \
986 return snprintf(buf, sz, format_string, \
987 cast fc_starget_##field(starget)); \
988}
989
990#define fc_starget_rd_attr(field, format_string, sz) \
991 fc_starget_show_function(field, format_string, sz, ) \
ee959b00 992static FC_DEVICE_ATTR(starget, field, S_IRUGO, \
1da177e4
LT
993 show_fc_starget_##field, NULL)
994
995#define fc_starget_rd_attr_cast(field, format_string, sz, cast) \
996 fc_starget_show_function(field, format_string, sz, (cast)) \
ee959b00 997static FC_DEVICE_ATTR(starget, field, S_IRUGO, \
1da177e4
LT
998 show_fc_starget_##field, NULL)
999
1000#define SETUP_STARGET_ATTRIBUTE_RD(field) \
ee959b00 1001 i->private_starget_attrs[count] = device_attr_starget_##field; \
1da177e4
LT
1002 i->private_starget_attrs[count].attr.mode = S_IRUGO; \
1003 i->private_starget_attrs[count].store = NULL; \
1004 i->starget_attrs[count] = &i->private_starget_attrs[count]; \
1005 if (i->f->show_starget_##field) \
1006 count++
1007
1008#define SETUP_STARGET_ATTRIBUTE_RW(field) \
ee959b00 1009 i->private_starget_attrs[count] = device_attr_starget_##field; \
1da177e4
LT
1010 if (!i->f->set_starget_##field) { \
1011 i->private_starget_attrs[count].attr.mode = S_IRUGO; \
1012 i->private_starget_attrs[count].store = NULL; \
1013 } \
1014 i->starget_attrs[count] = &i->private_starget_attrs[count]; \
1015 if (i->f->show_starget_##field) \
1016 count++
1017
1018/* The FC Transport SCSI Target Attributes: */
1019fc_starget_rd_attr_cast(node_name, "0x%llx\n", 20, unsigned long long);
1020fc_starget_rd_attr_cast(port_name, "0x%llx\n", 20, unsigned long long);
1021fc_starget_rd_attr(port_id, "0x%06x\n", 20);
1022
1023
a53eb5e0
JS
1024/*
1025 * FC Virtual Port Attribute Management
1026 */
1027
1028#define fc_vport_show_function(field, format_string, sz, cast) \
1029static ssize_t \
ee959b00
TJ
1030show_fc_vport_##field (struct device *dev, \
1031 struct device_attribute *attr, char *buf) \
a53eb5e0 1032{ \
ee959b00 1033 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1034 struct Scsi_Host *shost = vport_to_shost(vport); \
1035 struct fc_internal *i = to_fc_internal(shost->transportt); \
1036 if ((i->f->get_vport_##field) && \
1037 !(vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING))) \
1038 i->f->get_vport_##field(vport); \
1039 return snprintf(buf, sz, format_string, cast vport->field); \
1040}
1041
1042#define fc_vport_store_function(field) \
1043static ssize_t \
ee959b00
TJ
1044store_fc_vport_##field(struct device *dev, \
1045 struct device_attribute *attr, \
1046 const char *buf, size_t count) \
a53eb5e0
JS
1047{ \
1048 int val; \
ee959b00 1049 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1050 struct Scsi_Host *shost = vport_to_shost(vport); \
1051 struct fc_internal *i = to_fc_internal(shost->transportt); \
1052 char *cp; \
1053 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING)) \
1054 return -EBUSY; \
1055 val = simple_strtoul(buf, &cp, 0); \
1056 if (*cp && (*cp != '\n')) \
1057 return -EINVAL; \
1058 i->f->set_vport_##field(vport, val); \
1059 return count; \
1060}
1061
1062#define fc_vport_store_str_function(field, slen) \
1063static ssize_t \
ee959b00
TJ
1064store_fc_vport_##field(struct device *dev, \
1065 struct device_attribute *attr, \
1066 const char *buf, size_t count) \
a53eb5e0 1067{ \
ee959b00 1068 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1069 struct Scsi_Host *shost = vport_to_shost(vport); \
1070 struct fc_internal *i = to_fc_internal(shost->transportt); \
1071 unsigned int cnt=count; \
1072 \
1073 /* count may include a LF at end of string */ \
1074 if (buf[cnt-1] == '\n') \
1075 cnt--; \
1076 if (cnt > ((slen) - 1)) \
1077 return -EINVAL; \
1078 memcpy(vport->field, buf, cnt); \
1079 i->f->set_vport_##field(vport); \
1080 return count; \
1081}
1082
1083#define fc_vport_rd_attr(field, format_string, sz) \
1084 fc_vport_show_function(field, format_string, sz, ) \
ee959b00 1085static FC_DEVICE_ATTR(vport, field, S_IRUGO, \
a53eb5e0
JS
1086 show_fc_vport_##field, NULL)
1087
1088#define fc_vport_rd_attr_cast(field, format_string, sz, cast) \
1089 fc_vport_show_function(field, format_string, sz, (cast)) \
ee959b00 1090static FC_DEVICE_ATTR(vport, field, S_IRUGO, \
a53eb5e0
JS
1091 show_fc_vport_##field, NULL)
1092
1093#define fc_vport_rw_attr(field, format_string, sz) \
1094 fc_vport_show_function(field, format_string, sz, ) \
1095 fc_vport_store_function(field) \
ee959b00 1096static FC_DEVICE_ATTR(vport, field, S_IRUGO | S_IWUSR, \
a53eb5e0
JS
1097 show_fc_vport_##field, \
1098 store_fc_vport_##field)
1099
1100#define fc_private_vport_show_function(field, format_string, sz, cast) \
1101static ssize_t \
ee959b00
TJ
1102show_fc_vport_##field (struct device *dev, \
1103 struct device_attribute *attr, char *buf) \
a53eb5e0 1104{ \
ee959b00 1105 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1106 return snprintf(buf, sz, format_string, cast vport->field); \
1107}
1108
1109#define fc_private_vport_store_u32_function(field) \
1110static ssize_t \
ee959b00
TJ
1111store_fc_vport_##field(struct device *dev, \
1112 struct device_attribute *attr, \
1113 const char *buf, size_t count) \
a53eb5e0
JS
1114{ \
1115 u32 val; \
ee959b00 1116 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1117 char *cp; \
1118 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING)) \
1119 return -EBUSY; \
1120 val = simple_strtoul(buf, &cp, 0); \
1121 if (*cp && (*cp != '\n')) \
1122 return -EINVAL; \
1123 vport->field = val; \
1124 return count; \
1125}
1126
1127
1128#define fc_private_vport_rd_attr(field, format_string, sz) \
1129 fc_private_vport_show_function(field, format_string, sz, ) \
ee959b00 1130static FC_DEVICE_ATTR(vport, field, S_IRUGO, \
a53eb5e0
JS
1131 show_fc_vport_##field, NULL)
1132
1133#define fc_private_vport_rd_attr_cast(field, format_string, sz, cast) \
1134 fc_private_vport_show_function(field, format_string, sz, (cast)) \
ee959b00 1135static FC_DEVICE_ATTR(vport, field, S_IRUGO, \
a53eb5e0
JS
1136 show_fc_vport_##field, NULL)
1137
1138#define fc_private_vport_rw_u32_attr(field, format_string, sz) \
1139 fc_private_vport_show_function(field, format_string, sz, ) \
1140 fc_private_vport_store_u32_function(field) \
ee959b00 1141static FC_DEVICE_ATTR(vport, field, S_IRUGO | S_IWUSR, \
a53eb5e0
JS
1142 show_fc_vport_##field, \
1143 store_fc_vport_##field)
1144
1145
1146#define fc_private_vport_rd_enum_attr(title, maxlen) \
1147static ssize_t \
ee959b00
TJ
1148show_fc_vport_##title (struct device *dev, \
1149 struct device_attribute *attr, \
1150 char *buf) \
a53eb5e0 1151{ \
ee959b00 1152 struct fc_vport *vport = transport_class_to_vport(dev); \
a53eb5e0
JS
1153 const char *name; \
1154 name = get_fc_##title##_name(vport->title); \
1155 if (!name) \
1156 return -EINVAL; \
1157 return snprintf(buf, maxlen, "%s\n", name); \
1158} \
ee959b00 1159static FC_DEVICE_ATTR(vport, title, S_IRUGO, \
a53eb5e0
JS
1160 show_fc_vport_##title, NULL)
1161
1162
1163#define SETUP_VPORT_ATTRIBUTE_RD(field) \
ee959b00 1164 i->private_vport_attrs[count] = device_attr_vport_##field; \
a53eb5e0
JS
1165 i->private_vport_attrs[count].attr.mode = S_IRUGO; \
1166 i->private_vport_attrs[count].store = NULL; \
1167 i->vport_attrs[count] = &i->private_vport_attrs[count]; \
1168 if (i->f->get_##field) \
1169 count++
1170 /* NOTE: Above MACRO differs: checks function not show bit */
1171
1172#define SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(field) \
ee959b00 1173 i->private_vport_attrs[count] = device_attr_vport_##field; \
a53eb5e0
JS
1174 i->private_vport_attrs[count].attr.mode = S_IRUGO; \
1175 i->private_vport_attrs[count].store = NULL; \
1176 i->vport_attrs[count] = &i->private_vport_attrs[count]; \
1177 count++
1178
1179#define SETUP_VPORT_ATTRIBUTE_WR(field) \
ee959b00 1180 i->private_vport_attrs[count] = device_attr_vport_##field; \
a53eb5e0
JS
1181 i->vport_attrs[count] = &i->private_vport_attrs[count]; \
1182 if (i->f->field) \
1183 count++
1184 /* NOTE: Above MACRO differs: checks function */
1185
1186#define SETUP_VPORT_ATTRIBUTE_RW(field) \
ee959b00 1187 i->private_vport_attrs[count] = device_attr_vport_##field; \
a53eb5e0
JS
1188 if (!i->f->set_vport_##field) { \
1189 i->private_vport_attrs[count].attr.mode = S_IRUGO; \
1190 i->private_vport_attrs[count].store = NULL; \
1191 } \
1192 i->vport_attrs[count] = &i->private_vport_attrs[count]; \
1193 count++
1194 /* NOTE: Above MACRO differs: does not check show bit */
1195
1196#define SETUP_PRIVATE_VPORT_ATTRIBUTE_RW(field) \
1197{ \
ee959b00 1198 i->private_vport_attrs[count] = device_attr_vport_##field; \
a53eb5e0
JS
1199 i->vport_attrs[count] = &i->private_vport_attrs[count]; \
1200 count++; \
1201}
1202
1203
1204/* The FC Transport Virtual Port Attributes: */
1205
1206/* Fixed Virtual Port Attributes */
1207
1208/* Dynamic Virtual Port Attributes */
1209
1210/* Private Virtual Port Attributes */
1211
1212fc_private_vport_rd_enum_attr(vport_state, FC_VPORTSTATE_MAX_NAMELEN);
1213fc_private_vport_rd_enum_attr(vport_last_state, FC_VPORTSTATE_MAX_NAMELEN);
1214fc_private_vport_rd_attr_cast(node_name, "0x%llx\n", 20, unsigned long long);
1215fc_private_vport_rd_attr_cast(port_name, "0x%llx\n", 20, unsigned long long);
1216
1217static ssize_t
ee959b00
TJ
1218show_fc_vport_roles (struct device *dev, struct device_attribute *attr,
1219 char *buf)
a53eb5e0 1220{
ee959b00 1221 struct fc_vport *vport = transport_class_to_vport(dev);
a53eb5e0
JS
1222
1223 if (vport->roles == FC_PORT_ROLE_UNKNOWN)
1224 return snprintf(buf, 20, "unknown\n");
1225 return get_fc_port_roles_names(vport->roles, buf);
1226}
ee959b00 1227static FC_DEVICE_ATTR(vport, roles, S_IRUGO, show_fc_vport_roles, NULL);
a53eb5e0
JS
1228
1229fc_private_vport_rd_enum_attr(vport_type, FC_PORTTYPE_MAX_NAMELEN);
1230
1231fc_private_vport_show_function(symbolic_name, "%s\n",
1232 FC_VPORT_SYMBOLIC_NAMELEN + 1, )
1233fc_vport_store_str_function(symbolic_name, FC_VPORT_SYMBOLIC_NAMELEN)
ee959b00 1234static FC_DEVICE_ATTR(vport, symbolic_name, S_IRUGO | S_IWUSR,
a53eb5e0
JS
1235 show_fc_vport_symbolic_name, store_fc_vport_symbolic_name);
1236
1237static ssize_t
ee959b00
TJ
1238store_fc_vport_delete(struct device *dev, struct device_attribute *attr,
1239 const char *buf, size_t count)
a53eb5e0 1240{
ee959b00 1241 struct fc_vport *vport = transport_class_to_vport(dev);
9ef3e4a4 1242 struct Scsi_Host *shost = vport_to_shost(vport);
0d9dc7c8
GR
1243 unsigned long flags;
1244
1245 spin_lock_irqsave(shost->host_lock, flags);
1246 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING)) {
1247 spin_unlock_irqrestore(shost->host_lock, flags);
1248 return -EBUSY;
1249 }
1250 vport->flags |= FC_VPORT_DELETING;
1251 spin_unlock_irqrestore(shost->host_lock, flags);
a53eb5e0 1252
9ef3e4a4 1253 fc_queue_work(shost, &vport->vport_delete_work);
a53eb5e0
JS
1254 return count;
1255}
ee959b00 1256static FC_DEVICE_ATTR(vport, vport_delete, S_IWUSR,
a53eb5e0
JS
1257 NULL, store_fc_vport_delete);
1258
1259
1260/*
1261 * Enable/Disable vport
1262 * Write "1" to disable, write "0" to enable
1263 */
1264static ssize_t
ee959b00
TJ
1265store_fc_vport_disable(struct device *dev, struct device_attribute *attr,
1266 const char *buf,
a53eb5e0
JS
1267 size_t count)
1268{
ee959b00 1269 struct fc_vport *vport = transport_class_to_vport(dev);
a53eb5e0
JS
1270 struct Scsi_Host *shost = vport_to_shost(vport);
1271 struct fc_internal *i = to_fc_internal(shost->transportt);
1272 int stat;
1273
1274 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING))
1275 return -EBUSY;
1276
1277 if (*buf == '0') {
1278 if (vport->vport_state != FC_VPORT_DISABLED)
1279 return -EALREADY;
1280 } else if (*buf == '1') {
1281 if (vport->vport_state == FC_VPORT_DISABLED)
1282 return -EALREADY;
1283 } else
1284 return -EINVAL;
1285
1286 stat = i->f->vport_disable(vport, ((*buf == '0') ? false : true));
1287 return stat ? stat : count;
1288}
ee959b00 1289static FC_DEVICE_ATTR(vport, vport_disable, S_IWUSR,
a53eb5e0
JS
1290 NULL, store_fc_vport_disable);
1291
1292
1da177e4
LT
1293/*
1294 * Host Attribute Management
1295 */
1296
1297#define fc_host_show_function(field, format_string, sz, cast) \
1298static ssize_t \
ee959b00
TJ
1299show_fc_host_##field (struct device *dev, \
1300 struct device_attribute *attr, char *buf) \
1da177e4 1301{ \
ee959b00 1302 struct Scsi_Host *shost = transport_class_to_shost(dev); \
1da177e4
LT
1303 struct fc_internal *i = to_fc_internal(shost->transportt); \
1304 if (i->f->get_host_##field) \
1305 i->f->get_host_##field(shost); \
1306 return snprintf(buf, sz, format_string, cast fc_host_##field(shost)); \
1307}
1308
1309#define fc_host_store_function(field) \
1310static ssize_t \
ee959b00
TJ
1311store_fc_host_##field(struct device *dev, \
1312 struct device_attribute *attr, \
1313 const char *buf, size_t count) \
1da177e4
LT
1314{ \
1315 int val; \
ee959b00 1316 struct Scsi_Host *shost = transport_class_to_shost(dev); \
1da177e4 1317 struct fc_internal *i = to_fc_internal(shost->transportt); \
0f29b966 1318 char *cp; \
1da177e4 1319 \
0f29b966
JS
1320 val = simple_strtoul(buf, &cp, 0); \
1321 if (*cp && (*cp != '\n')) \
1322 return -EINVAL; \
1da177e4
LT
1323 i->f->set_host_##field(shost, val); \
1324 return count; \
1325}
1326
b8d08210
JS
1327#define fc_host_store_str_function(field, slen) \
1328static ssize_t \
ee959b00
TJ
1329store_fc_host_##field(struct device *dev, \
1330 struct device_attribute *attr, \
1331 const char *buf, size_t count) \
b8d08210 1332{ \
ee959b00 1333 struct Scsi_Host *shost = transport_class_to_shost(dev); \
b8d08210
JS
1334 struct fc_internal *i = to_fc_internal(shost->transportt); \
1335 unsigned int cnt=count; \
1336 \
1337 /* count may include a LF at end of string */ \
1338 if (buf[cnt-1] == '\n') \
1339 cnt--; \
1340 if (cnt > ((slen) - 1)) \
1341 return -EINVAL; \
1342 memcpy(fc_host_##field(shost), buf, cnt); \
1343 i->f->set_host_##field(shost); \
1344 return count; \
1345}
1346
1da177e4
LT
1347#define fc_host_rd_attr(field, format_string, sz) \
1348 fc_host_show_function(field, format_string, sz, ) \
ee959b00 1349static FC_DEVICE_ATTR(host, field, S_IRUGO, \
1da177e4
LT
1350 show_fc_host_##field, NULL)
1351
1352#define fc_host_rd_attr_cast(field, format_string, sz, cast) \
1353 fc_host_show_function(field, format_string, sz, (cast)) \
ee959b00 1354static FC_DEVICE_ATTR(host, field, S_IRUGO, \
1da177e4
LT
1355 show_fc_host_##field, NULL)
1356
1357#define fc_host_rw_attr(field, format_string, sz) \
1358 fc_host_show_function(field, format_string, sz, ) \
1359 fc_host_store_function(field) \
ee959b00 1360static FC_DEVICE_ATTR(host, field, S_IRUGO | S_IWUSR, \
1da177e4
LT
1361 show_fc_host_##field, \
1362 store_fc_host_##field)
1363
1364#define fc_host_rd_enum_attr(title, maxlen) \
1365static ssize_t \
ee959b00
TJ
1366show_fc_host_##title (struct device *dev, \
1367 struct device_attribute *attr, char *buf) \
1da177e4 1368{ \
ee959b00 1369 struct Scsi_Host *shost = transport_class_to_shost(dev); \
1da177e4
LT
1370 struct fc_internal *i = to_fc_internal(shost->transportt); \
1371 const char *name; \
1372 if (i->f->get_host_##title) \
1373 i->f->get_host_##title(shost); \
1374 name = get_fc_##title##_name(fc_host_##title(shost)); \
1375 if (!name) \
1376 return -EINVAL; \
1377 return snprintf(buf, maxlen, "%s\n", name); \
1378} \
ee959b00 1379static FC_DEVICE_ATTR(host, title, S_IRUGO, show_fc_host_##title, NULL)
1da177e4
LT
1380
1381#define SETUP_HOST_ATTRIBUTE_RD(field) \
ee959b00 1382 i->private_host_attrs[count] = device_attr_host_##field; \
1da177e4
LT
1383 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1384 i->private_host_attrs[count].store = NULL; \
1385 i->host_attrs[count] = &i->private_host_attrs[count]; \
1386 if (i->f->show_host_##field) \
1387 count++
1388
a53eb5e0 1389#define SETUP_HOST_ATTRIBUTE_RD_NS(field) \
ee959b00 1390 i->private_host_attrs[count] = device_attr_host_##field; \
a53eb5e0
JS
1391 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1392 i->private_host_attrs[count].store = NULL; \
1393 i->host_attrs[count] = &i->private_host_attrs[count]; \
1394 count++
1395
1da177e4 1396#define SETUP_HOST_ATTRIBUTE_RW(field) \
ee959b00 1397 i->private_host_attrs[count] = device_attr_host_##field; \
1da177e4
LT
1398 if (!i->f->set_host_##field) { \
1399 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1400 i->private_host_attrs[count].store = NULL; \
1401 } \
1402 i->host_attrs[count] = &i->private_host_attrs[count]; \
1403 if (i->f->show_host_##field) \
1404 count++
1405
1406
1407#define fc_private_host_show_function(field, format_string, sz, cast) \
1408static ssize_t \
ee959b00
TJ
1409show_fc_host_##field (struct device *dev, \
1410 struct device_attribute *attr, char *buf) \
1da177e4 1411{ \
ee959b00 1412 struct Scsi_Host *shost = transport_class_to_shost(dev); \
1da177e4
LT
1413 return snprintf(buf, sz, format_string, cast fc_host_##field(shost)); \
1414}
1415
1416#define fc_private_host_rd_attr(field, format_string, sz) \
1417 fc_private_host_show_function(field, format_string, sz, ) \
ee959b00 1418static FC_DEVICE_ATTR(host, field, S_IRUGO, \
1da177e4
LT
1419 show_fc_host_##field, NULL)
1420
1421#define fc_private_host_rd_attr_cast(field, format_string, sz, cast) \
1422 fc_private_host_show_function(field, format_string, sz, (cast)) \
ee959b00 1423static FC_DEVICE_ATTR(host, field, S_IRUGO, \
1da177e4
LT
1424 show_fc_host_##field, NULL)
1425
1426#define SETUP_PRIVATE_HOST_ATTRIBUTE_RD(field) \
ee959b00 1427 i->private_host_attrs[count] = device_attr_host_##field; \
1da177e4
LT
1428 i->private_host_attrs[count].attr.mode = S_IRUGO; \
1429 i->private_host_attrs[count].store = NULL; \
1430 i->host_attrs[count] = &i->private_host_attrs[count]; \
1431 count++
1432
1433#define SETUP_PRIVATE_HOST_ATTRIBUTE_RW(field) \
91ca7b01 1434{ \
ee959b00 1435 i->private_host_attrs[count] = device_attr_host_##field; \
1da177e4 1436 i->host_attrs[count] = &i->private_host_attrs[count]; \
91ca7b01
AV
1437 count++; \
1438}
1da177e4
LT
1439
1440
1441/* Fixed Host Attributes */
1442
1443static ssize_t
ee959b00
TJ
1444show_fc_host_supported_classes (struct device *dev,
1445 struct device_attribute *attr, char *buf)
1da177e4 1446{
ee959b00 1447 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1448
1449 if (fc_host_supported_classes(shost) == FC_COS_UNSPECIFIED)
1450 return snprintf(buf, 20, "unspecified\n");
1451
1452 return get_fc_cos_names(fc_host_supported_classes(shost), buf);
1453}
ee959b00 1454static FC_DEVICE_ATTR(host, supported_classes, S_IRUGO,
1da177e4
LT
1455 show_fc_host_supported_classes, NULL);
1456
1457static ssize_t
ee959b00
TJ
1458show_fc_host_supported_fc4s (struct device *dev,
1459 struct device_attribute *attr, char *buf)
1da177e4 1460{
ee959b00 1461 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1462 return (ssize_t)show_fc_fc4s(buf, fc_host_supported_fc4s(shost));
1463}
ee959b00 1464static FC_DEVICE_ATTR(host, supported_fc4s, S_IRUGO,
1da177e4
LT
1465 show_fc_host_supported_fc4s, NULL);
1466
1467static ssize_t
ee959b00
TJ
1468show_fc_host_supported_speeds (struct device *dev,
1469 struct device_attribute *attr, char *buf)
1da177e4 1470{
ee959b00 1471 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1472
1473 if (fc_host_supported_speeds(shost) == FC_PORTSPEED_UNKNOWN)
1474 return snprintf(buf, 20, "unknown\n");
1475
1476 return get_fc_port_speed_names(fc_host_supported_speeds(shost), buf);
1477}
ee959b00 1478static FC_DEVICE_ATTR(host, supported_speeds, S_IRUGO,
1da177e4
LT
1479 show_fc_host_supported_speeds, NULL);
1480
1481
1482fc_private_host_rd_attr_cast(node_name, "0x%llx\n", 20, unsigned long long);
1483fc_private_host_rd_attr_cast(port_name, "0x%llx\n", 20, unsigned long long);
6b7281d0
AH
1484fc_private_host_rd_attr_cast(permanent_port_name, "0x%llx\n", 20,
1485 unsigned long long);
1da177e4 1486fc_private_host_rd_attr(maxframe_size, "%u bytes\n", 20);
a53eb5e0 1487fc_private_host_rd_attr(max_npiv_vports, "%u\n", 20);
1da177e4
LT
1488fc_private_host_rd_attr(serial_number, "%s\n", (FC_SERIAL_NUMBER_SIZE +1));
1489
1490
1491/* Dynamic Host Attributes */
1492
1493static ssize_t
ee959b00
TJ
1494show_fc_host_active_fc4s (struct device *dev,
1495 struct device_attribute *attr, char *buf)
1da177e4 1496{
ee959b00 1497 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1498 struct fc_internal *i = to_fc_internal(shost->transportt);
1499
1500 if (i->f->get_host_active_fc4s)
1501 i->f->get_host_active_fc4s(shost);
1502
1503 return (ssize_t)show_fc_fc4s(buf, fc_host_active_fc4s(shost));
1504}
ee959b00 1505static FC_DEVICE_ATTR(host, active_fc4s, S_IRUGO,
1da177e4
LT
1506 show_fc_host_active_fc4s, NULL);
1507
1508static ssize_t
ee959b00
TJ
1509show_fc_host_speed (struct device *dev,
1510 struct device_attribute *attr, char *buf)
1da177e4 1511{
ee959b00 1512 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1513 struct fc_internal *i = to_fc_internal(shost->transportt);
1514
1515 if (i->f->get_host_speed)
1516 i->f->get_host_speed(shost);
1517
1518 if (fc_host_speed(shost) == FC_PORTSPEED_UNKNOWN)
1519 return snprintf(buf, 20, "unknown\n");
1520
1521 return get_fc_port_speed_names(fc_host_speed(shost), buf);
1522}
ee959b00 1523static FC_DEVICE_ATTR(host, speed, S_IRUGO,
1da177e4
LT
1524 show_fc_host_speed, NULL);
1525
1526
1527fc_host_rd_attr(port_id, "0x%06x\n", 20);
1528fc_host_rd_enum_attr(port_type, FC_PORTTYPE_MAX_NAMELEN);
1529fc_host_rd_enum_attr(port_state, FC_PORTSTATE_MAX_NAMELEN);
1530fc_host_rd_attr_cast(fabric_name, "0x%llx\n", 20, unsigned long long);
016131b8 1531fc_host_rd_attr(symbolic_name, "%s\n", FC_SYMBOLIC_NAME_SIZE + 1);
1da177e4 1532
b8d08210
JS
1533fc_private_host_show_function(system_hostname, "%s\n",
1534 FC_SYMBOLIC_NAME_SIZE + 1, )
1535fc_host_store_str_function(system_hostname, FC_SYMBOLIC_NAME_SIZE)
ee959b00 1536static FC_DEVICE_ATTR(host, system_hostname, S_IRUGO | S_IWUSR,
b8d08210
JS
1537 show_fc_host_system_hostname, store_fc_host_system_hostname);
1538
1da177e4
LT
1539
1540/* Private Host Attributes */
1541
1542static ssize_t
ee959b00
TJ
1543show_fc_private_host_tgtid_bind_type(struct device *dev,
1544 struct device_attribute *attr, char *buf)
1da177e4 1545{
ee959b00 1546 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1547 const char *name;
1548
1549 name = get_fc_tgtid_bind_type_name(fc_host_tgtid_bind_type(shost));
1550 if (!name)
1551 return -EINVAL;
1552 return snprintf(buf, FC_BINDTYPE_MAX_NAMELEN, "%s\n", name);
1553}
1554
d16794f6
JSEC
1555#define get_list_head_entry(pos, head, member) \
1556 pos = list_entry((head)->next, typeof(*pos), member)
1557
1da177e4 1558static ssize_t
ee959b00
TJ
1559store_fc_private_host_tgtid_bind_type(struct device *dev,
1560 struct device_attribute *attr, const char *buf, size_t count)
1da177e4 1561{
ee959b00 1562 struct Scsi_Host *shost = transport_class_to_shost(dev);
d16794f6 1563 struct fc_rport *rport;
1da177e4
LT
1564 enum fc_tgtid_binding_type val;
1565 unsigned long flags;
1566
1567 if (get_fc_tgtid_bind_type_match(buf, &val))
1568 return -EINVAL;
1569
1570 /* if changing bind type, purge all unused consistent bindings */
1571 if (val != fc_host_tgtid_bind_type(shost)) {
1572 spin_lock_irqsave(shost->host_lock, flags);
d16794f6
JSEC
1573 while (!list_empty(&fc_host_rport_bindings(shost))) {
1574 get_list_head_entry(rport,
1575 &fc_host_rport_bindings(shost), peers);
aedf3497
JS
1576 list_del(&rport->peers);
1577 rport->port_state = FC_PORTSTATE_DELETED;
1578 fc_queue_work(shost, &rport->rport_delete_work);
d16794f6 1579 }
1da177e4
LT
1580 spin_unlock_irqrestore(shost->host_lock, flags);
1581 }
1582
1583 fc_host_tgtid_bind_type(shost) = val;
1584 return count;
1585}
1586
ee959b00 1587static FC_DEVICE_ATTR(host, tgtid_bind_type, S_IRUGO | S_IWUSR,
1da177e4
LT
1588 show_fc_private_host_tgtid_bind_type,
1589 store_fc_private_host_tgtid_bind_type);
1590
91ca7b01 1591static ssize_t
ee959b00
TJ
1592store_fc_private_host_issue_lip(struct device *dev,
1593 struct device_attribute *attr, const char *buf, size_t count)
91ca7b01 1594{
ee959b00 1595 struct Scsi_Host *shost = transport_class_to_shost(dev);
91ca7b01
AV
1596 struct fc_internal *i = to_fc_internal(shost->transportt);
1597 int ret;
1598
1599 /* ignore any data value written to the attribute */
1600 if (i->f->issue_fc_host_lip) {
1601 ret = i->f->issue_fc_host_lip(shost);
1602 return ret ? ret: count;
1603 }
1604
1605 return -ENOENT;
1606}
1607
ee959b00 1608static FC_DEVICE_ATTR(host, issue_lip, S_IWUSR, NULL,
91ca7b01
AV
1609 store_fc_private_host_issue_lip);
1610
a53eb5e0
JS
1611fc_private_host_rd_attr(npiv_vports_inuse, "%u\n", 20);
1612
1613
1da177e4
LT
1614/*
1615 * Host Statistics Management
1616 */
1617
1618/* Show a given an attribute in the statistics group */
1619static ssize_t
ee959b00 1620fc_stat_show(const struct device *dev, char *buf, unsigned long offset)
1da177e4 1621{
ee959b00 1622 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1623 struct fc_internal *i = to_fc_internal(shost->transportt);
1624 struct fc_host_statistics *stats;
1625 ssize_t ret = -ENOENT;
1626
1627 if (offset > sizeof(struct fc_host_statistics) ||
1628 offset % sizeof(u64) != 0)
1629 WARN_ON(1);
1630
1631 if (i->f->get_fc_host_stats) {
1632 stats = (i->f->get_fc_host_stats)(shost);
1633 if (stats)
1634 ret = snprintf(buf, 20, "0x%llx\n",
1635 (unsigned long long)*(u64 *)(((u8 *) stats) + offset));
1636 }
1637 return ret;
1638}
1639
1640
1641/* generate a read-only statistics attribute */
1642#define fc_host_statistic(name) \
ee959b00
TJ
1643static ssize_t show_fcstat_##name(struct device *cd, \
1644 struct device_attribute *attr, \
1645 char *buf) \
1da177e4
LT
1646{ \
1647 return fc_stat_show(cd, buf, \
1648 offsetof(struct fc_host_statistics, name)); \
1649} \
ee959b00 1650static FC_DEVICE_ATTR(host, name, S_IRUGO, show_fcstat_##name, NULL)
1da177e4
LT
1651
1652fc_host_statistic(seconds_since_last_reset);
1653fc_host_statistic(tx_frames);
1654fc_host_statistic(tx_words);
1655fc_host_statistic(rx_frames);
1656fc_host_statistic(rx_words);
1657fc_host_statistic(lip_count);
1658fc_host_statistic(nos_count);
1659fc_host_statistic(error_frames);
1660fc_host_statistic(dumped_frames);
1661fc_host_statistic(link_failure_count);
1662fc_host_statistic(loss_of_sync_count);
1663fc_host_statistic(loss_of_signal_count);
1664fc_host_statistic(prim_seq_protocol_err_count);
1665fc_host_statistic(invalid_tx_word_count);
1666fc_host_statistic(invalid_crc_count);
1667fc_host_statistic(fcp_input_requests);
1668fc_host_statistic(fcp_output_requests);
1669fc_host_statistic(fcp_control_requests);
1670fc_host_statistic(fcp_input_megabytes);
1671fc_host_statistic(fcp_output_megabytes);
1672
1673static ssize_t
ee959b00
TJ
1674fc_reset_statistics(struct device *dev, struct device_attribute *attr,
1675 const char *buf, size_t count)
1da177e4 1676{
ee959b00 1677 struct Scsi_Host *shost = transport_class_to_shost(dev);
1da177e4
LT
1678 struct fc_internal *i = to_fc_internal(shost->transportt);
1679
1680 /* ignore any data value written to the attribute */
1681 if (i->f->reset_fc_host_stats) {
1682 i->f->reset_fc_host_stats(shost);
1683 return count;
1684 }
1685
1686 return -ENOENT;
1687}
ee959b00 1688static FC_DEVICE_ATTR(host, reset_statistics, S_IWUSR, NULL,
1da177e4
LT
1689 fc_reset_statistics);
1690
1da177e4 1691static struct attribute *fc_statistics_attrs[] = {
ee959b00
TJ
1692 &device_attr_host_seconds_since_last_reset.attr,
1693 &device_attr_host_tx_frames.attr,
1694 &device_attr_host_tx_words.attr,
1695 &device_attr_host_rx_frames.attr,
1696 &device_attr_host_rx_words.attr,
1697 &device_attr_host_lip_count.attr,
1698 &device_attr_host_nos_count.attr,
1699 &device_attr_host_error_frames.attr,
1700 &device_attr_host_dumped_frames.attr,
1701 &device_attr_host_link_failure_count.attr,
1702 &device_attr_host_loss_of_sync_count.attr,
1703 &device_attr_host_loss_of_signal_count.attr,
1704 &device_attr_host_prim_seq_protocol_err_count.attr,
1705 &device_attr_host_invalid_tx_word_count.attr,
1706 &device_attr_host_invalid_crc_count.attr,
1707 &device_attr_host_fcp_input_requests.attr,
1708 &device_attr_host_fcp_output_requests.attr,
1709 &device_attr_host_fcp_control_requests.attr,
1710 &device_attr_host_fcp_input_megabytes.attr,
1711 &device_attr_host_fcp_output_megabytes.attr,
1712 &device_attr_host_reset_statistics.attr,
1da177e4
LT
1713 NULL
1714};
1715
1716static struct attribute_group fc_statistics_group = {
1717 .name = "statistics",
1718 .attrs = fc_statistics_attrs,
1719};
1720
a53eb5e0
JS
1721
1722/* Host Vport Attributes */
1723
1724static int
1725fc_parse_wwn(const char *ns, u64 *nm)
1726{
1727 unsigned int i, j;
1728 u8 wwn[8];
1729
1730 memset(wwn, 0, sizeof(wwn));
1731
1732 /* Validate and store the new name */
1733 for (i=0, j=0; i < 16; i++) {
ecc30990
AS
1734 int value;
1735
1736 value = hex_to_bin(*ns++);
1737 if (value >= 0)
1738 j = (j << 4) | value;
a53eb5e0
JS
1739 else
1740 return -EINVAL;
1741 if (i % 2) {
1742 wwn[i/2] = j & 0xff;
1743 j = 0;
1744 }
1745 }
1746
1747 *nm = wwn_to_u64(wwn);
1748
1749 return 0;
1750}
1751
1752
1753/*
1754 * "Short-cut" sysfs variable to create a new vport on a FC Host.
1755 * Input is a string of the form "<WWPN>:<WWNN>". Other attributes
1756 * will default to a NPIV-based FCP_Initiator; The WWNs are specified
1757 * as hex characters, and may *not* contain any prefixes (e.g. 0x, x, etc)
1758 */
1759static ssize_t
ee959b00
TJ
1760store_fc_host_vport_create(struct device *dev, struct device_attribute *attr,
1761 const char *buf, size_t count)
a53eb5e0 1762{
ee959b00 1763 struct Scsi_Host *shost = transport_class_to_shost(dev);
a53eb5e0
JS
1764 struct fc_vport_identifiers vid;
1765 struct fc_vport *vport;
1766 unsigned int cnt=count;
1767 int stat;
1768
1769 memset(&vid, 0, sizeof(vid));
1770
1771 /* count may include a LF at end of string */
1772 if (buf[cnt-1] == '\n')
1773 cnt--;
1774
1775 /* validate we have enough characters for WWPN */
1776 if ((cnt != (16+1+16)) || (buf[16] != ':'))
1777 return -EINVAL;
1778
1779 stat = fc_parse_wwn(&buf[0], &vid.port_name);
1780 if (stat)
1781 return stat;
1782
1783 stat = fc_parse_wwn(&buf[17], &vid.node_name);
1784 if (stat)
1785 return stat;
1786
1787 vid.roles = FC_PORT_ROLE_FCP_INITIATOR;
1788 vid.vport_type = FC_PORTTYPE_NPIV;
1789 /* vid.symbolic_name is already zero/NULL's */
1790 vid.disable = false; /* always enabled */
1791
1792 /* we only allow support on Channel 0 !!! */
a30c3f69 1793 stat = fc_vport_setup(shost, 0, &shost->shost_gendev, &vid, &vport);
a53eb5e0
JS
1794 return stat ? stat : count;
1795}
ee959b00 1796static FC_DEVICE_ATTR(host, vport_create, S_IWUSR, NULL,
a53eb5e0
JS
1797 store_fc_host_vport_create);
1798
1799
1800/*
1801 * "Short-cut" sysfs variable to delete a vport on a FC Host.
1802 * Vport is identified by a string containing "<WWPN>:<WWNN>".
1803 * The WWNs are specified as hex characters, and may *not* contain
1804 * any prefixes (e.g. 0x, x, etc)
1805 */
1806static ssize_t
ee959b00
TJ
1807store_fc_host_vport_delete(struct device *dev, struct device_attribute *attr,
1808 const char *buf, size_t count)
a53eb5e0 1809{
ee959b00 1810 struct Scsi_Host *shost = transport_class_to_shost(dev);
a53eb5e0
JS
1811 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
1812 struct fc_vport *vport;
1813 u64 wwpn, wwnn;
1814 unsigned long flags;
1815 unsigned int cnt=count;
1816 int stat, match;
1817
1818 /* count may include a LF at end of string */
1819 if (buf[cnt-1] == '\n')
1820 cnt--;
1821
1822 /* validate we have enough characters for WWPN */
1823 if ((cnt != (16+1+16)) || (buf[16] != ':'))
1824 return -EINVAL;
1825
1826 stat = fc_parse_wwn(&buf[0], &wwpn);
1827 if (stat)
1828 return stat;
1829
1830 stat = fc_parse_wwn(&buf[17], &wwnn);
1831 if (stat)
1832 return stat;
1833
1834 spin_lock_irqsave(shost->host_lock, flags);
1835 match = 0;
1836 /* we only allow support on Channel 0 !!! */
1837 list_for_each_entry(vport, &fc_host->vports, peers) {
1838 if ((vport->channel == 0) &&
1839 (vport->port_name == wwpn) && (vport->node_name == wwnn)) {
0d9dc7c8
GR
1840 if (vport->flags & (FC_VPORT_DEL | FC_VPORT_CREATING))
1841 break;
1842 vport->flags |= FC_VPORT_DELETING;
a53eb5e0
JS
1843 match = 1;
1844 break;
1845 }
1846 }
1847 spin_unlock_irqrestore(shost->host_lock, flags);
1848
1849 if (!match)
1850 return -ENODEV;
1851
1852 stat = fc_vport_terminate(vport);
1853 return stat ? stat : count;
1854}
ee959b00 1855static FC_DEVICE_ATTR(host, vport_delete, S_IWUSR, NULL,
a53eb5e0
JS
1856 store_fc_host_vport_delete);
1857
1858
1da177e4
LT
1859static int fc_host_match(struct attribute_container *cont,
1860 struct device *dev)
1861{
1862 struct Scsi_Host *shost;
1863 struct fc_internal *i;
1864
1865 if (!scsi_is_host_device(dev))
1866 return 0;
1867
1868 shost = dev_to_shost(dev);
1869 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1870 != &fc_host_class.class)
1871 return 0;
1872
1873 i = to_fc_internal(shost->transportt);
1874
1875 return &i->t.host_attrs.ac == cont;
1876}
1877
1878static int fc_target_match(struct attribute_container *cont,
1879 struct device *dev)
1880{
1881 struct Scsi_Host *shost;
1882 struct fc_internal *i;
1883
1884 if (!scsi_is_target_device(dev))
1885 return 0;
1886
1887 shost = dev_to_shost(dev->parent);
1888 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1889 != &fc_host_class.class)
1890 return 0;
1891
1892 i = to_fc_internal(shost->transportt);
1893
1894 return &i->t.target_attrs.ac == cont;
1895}
1896
1897static void fc_rport_dev_release(struct device *dev)
1898{
1899 struct fc_rport *rport = dev_to_rport(dev);
1900 put_device(dev->parent);
1901 kfree(rport);
1902}
1903
1904int scsi_is_fc_rport(const struct device *dev)
1905{
1906 return dev->release == fc_rport_dev_release;
1907}
1908EXPORT_SYMBOL(scsi_is_fc_rport);
1909
1910static int fc_rport_match(struct attribute_container *cont,
1911 struct device *dev)
1912{
1913 struct Scsi_Host *shost;
1914 struct fc_internal *i;
1915
1916 if (!scsi_is_fc_rport(dev))
1917 return 0;
1918
1919 shost = dev_to_shost(dev->parent);
1920 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1921 != &fc_host_class.class)
1922 return 0;
1923
1924 i = to_fc_internal(shost->transportt);
1925
1926 return &i->rport_attr_cont.ac == cont;
1927}
1928
5c44cd2a 1929
a53eb5e0
JS
1930static void fc_vport_dev_release(struct device *dev)
1931{
1932 struct fc_vport *vport = dev_to_vport(dev);
1933 put_device(dev->parent); /* release kobj parent */
1934 kfree(vport);
1935}
1936
1937int scsi_is_fc_vport(const struct device *dev)
1938{
1939 return dev->release == fc_vport_dev_release;
1940}
1941EXPORT_SYMBOL(scsi_is_fc_vport);
1942
1943static int fc_vport_match(struct attribute_container *cont,
1944 struct device *dev)
1945{
1946 struct fc_vport *vport;
1947 struct Scsi_Host *shost;
1948 struct fc_internal *i;
1949
1950 if (!scsi_is_fc_vport(dev))
1951 return 0;
1952 vport = dev_to_vport(dev);
1953
1954 shost = vport_to_shost(vport);
1955 if (!shost->transportt || shost->transportt->host_attrs.ac.class
1956 != &fc_host_class.class)
1957 return 0;
1958
1959 i = to_fc_internal(shost->transportt);
1960 return &i->vport_attr_cont.ac == cont;
1961}
1962
1963
c829c394
JS
1964/**
1965 * fc_timed_out - FC Transport I/O timeout intercept handler
c829c394
JS
1966 * @scmd: The SCSI command which timed out
1967 *
1968 * This routine protects against error handlers getting invoked while a
1969 * rport is in a blocked state, typically due to a temporarily loss of
1970 * connectivity. If the error handlers are allowed to proceed, requests
1971 * to abort i/o, reset the target, etc will likely fail as there is no way
1972 * to communicate with the device to perform the requested function. These
1973 * failures may result in the midlayer taking the device offline, requiring
1974 * manual intervention to restore operation.
1975 *
1976 * This routine, called whenever an i/o times out, validates the state of
1977 * the underlying rport. If the rport is blocked, it returns
1978 * EH_RESET_TIMER, which will continue to reschedule the timeout.
1979 * Eventually, either the device will return, or devloss_tmo will fire,
1980 * and when the timeout then fires, it will be handled normally.
1981 * If the rport is not blocked, normal error handling continues.
1982 *
1983 * Notes:
1984 * This routine assumes no locks are held on entry.
eb44820c 1985 */
242f9dcb 1986static enum blk_eh_timer_return
c829c394
JS
1987fc_timed_out(struct scsi_cmnd *scmd)
1988{
1989 struct fc_rport *rport = starget_to_rport(scsi_target(scmd->device));
1990
1991 if (rport->port_state == FC_PORTSTATE_BLOCKED)
242f9dcb 1992 return BLK_EH_RESET_TIMER;
c829c394 1993
242f9dcb 1994 return BLK_EH_NOT_HANDLED;
c829c394
JS
1995}
1996
5c44cd2a 1997/*
bda23253
JS
1998 * Called by fc_user_scan to locate an rport on the shost that
1999 * matches the channel and target id, and invoke scsi_scan_target()
2000 * on the rport.
5c44cd2a 2001 */
bda23253
JS
2002static void
2003fc_user_scan_tgt(struct Scsi_Host *shost, uint channel, uint id, uint lun)
5c44cd2a
JSEC
2004{
2005 struct fc_rport *rport;
bda23253
JS
2006 unsigned long flags;
2007
2008 spin_lock_irqsave(shost->host_lock, flags);
5c44cd2a 2009
e02f3f59
CH
2010 list_for_each_entry(rport, &fc_host_rports(shost), peers) {
2011 if (rport->scsi_target_id == -1)
2012 continue;
5c44cd2a 2013
0d2fcd9f
HR
2014 if (rport->port_state != FC_PORTSTATE_ONLINE)
2015 continue;
2016
bda23253
JS
2017 if ((channel == rport->channel) &&
2018 (id == rport->scsi_target_id)) {
2019 spin_unlock_irqrestore(shost->host_lock, flags);
2020 scsi_scan_target(&rport->dev, channel, id, lun, 1);
2021 return;
e02f3f59
CH
2022 }
2023 }
2024
bda23253
JS
2025 spin_unlock_irqrestore(shost->host_lock, flags);
2026}
2027
2028/*
2029 * Called via sysfs scan routines. Necessary, as the FC transport
2030 * wants to place all target objects below the rport object. So this
2031 * routine must invoke the scsi_scan_target() routine with the rport
2032 * object as the parent.
2033 */
2034static int
2035fc_user_scan(struct Scsi_Host *shost, uint channel, uint id, uint lun)
2036{
2037 uint chlo, chhi;
2038 uint tgtlo, tgthi;
2039
2040 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
2041 ((id != SCAN_WILD_CARD) && (id >= shost->max_id)) ||
2042 ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
2043 return -EINVAL;
2044
2045 if (channel == SCAN_WILD_CARD) {
2046 chlo = 0;
2047 chhi = shost->max_channel + 1;
2048 } else {
2049 chlo = channel;
2050 chhi = channel + 1;
2051 }
2052
2053 if (id == SCAN_WILD_CARD) {
2054 tgtlo = 0;
2055 tgthi = shost->max_id;
2056 } else {
2057 tgtlo = id;
2058 tgthi = id + 1;
2059 }
2060
2061 for ( ; chlo < chhi; chlo++)
2062 for ( ; tgtlo < tgthi; tgtlo++)
2063 fc_user_scan_tgt(shost, chlo, tgtlo, lun);
2064
e02f3f59 2065 return 0;
5c44cd2a
JSEC
2066}
2067
7525236d
FT
2068static int fc_tsk_mgmt_response(struct Scsi_Host *shost, u64 nexus, u64 tm_id,
2069 int result)
2070{
2071 struct fc_internal *i = to_fc_internal(shost->transportt);
2072 return i->f->tsk_mgmt_response(shost, nexus, tm_id, result);
2073}
2074
2075static int fc_it_nexus_response(struct Scsi_Host *shost, u64 nexus, int result)
2076{
2077 struct fc_internal *i = to_fc_internal(shost->transportt);
2078 return i->f->it_nexus_response(shost, nexus, result);
2079}
2080
1da177e4
LT
2081struct scsi_transport_template *
2082fc_attach_transport(struct fc_function_template *ft)
2083{
1da177e4 2084 int count;
24669f75
JS
2085 struct fc_internal *i = kzalloc(sizeof(struct fc_internal),
2086 GFP_KERNEL);
1da177e4
LT
2087
2088 if (unlikely(!i))
2089 return NULL;
2090
1da177e4
LT
2091 i->t.target_attrs.ac.attrs = &i->starget_attrs[0];
2092 i->t.target_attrs.ac.class = &fc_transport_class.class;
2093 i->t.target_attrs.ac.match = fc_target_match;
2094 i->t.target_size = sizeof(struct fc_starget_attrs);
2095 transport_container_register(&i->t.target_attrs);
2096
2097 i->t.host_attrs.ac.attrs = &i->host_attrs[0];
2098 i->t.host_attrs.ac.class = &fc_host_class.class;
2099 i->t.host_attrs.ac.match = fc_host_match;
2100 i->t.host_size = sizeof(struct fc_host_attrs);
2101 if (ft->get_fc_host_stats)
2102 i->t.host_attrs.statistics = &fc_statistics_group;
2103 transport_container_register(&i->t.host_attrs);
2104
2105 i->rport_attr_cont.ac.attrs = &i->rport_attrs[0];
2106 i->rport_attr_cont.ac.class = &fc_rport_class.class;
2107 i->rport_attr_cont.ac.match = fc_rport_match;
2108 transport_container_register(&i->rport_attr_cont);
2109
a53eb5e0
JS
2110 i->vport_attr_cont.ac.attrs = &i->vport_attrs[0];
2111 i->vport_attr_cont.ac.class = &fc_vport_class.class;
2112 i->vport_attr_cont.ac.match = fc_vport_match;
2113 transport_container_register(&i->vport_attr_cont);
2114
1da177e4
LT
2115 i->f = ft;
2116
2117 /* Transport uses the shost workq for scsi scanning */
2118 i->t.create_work_queue = 1;
5c44cd2a 2119
c829c394
JS
2120 i->t.eh_timed_out = fc_timed_out;
2121
e02f3f59 2122 i->t.user_scan = fc_user_scan;
9ef3e4a4 2123
7525236d
FT
2124 /* target-mode drivers' functions */
2125 i->t.tsk_mgmt_response = fc_tsk_mgmt_response;
2126 i->t.it_nexus_response = fc_it_nexus_response;
2127
1da177e4
LT
2128 /*
2129 * Setup SCSI Target Attributes.
2130 */
2131 count = 0;
2132 SETUP_STARGET_ATTRIBUTE_RD(node_name);
2133 SETUP_STARGET_ATTRIBUTE_RD(port_name);
2134 SETUP_STARGET_ATTRIBUTE_RD(port_id);
2135
2136 BUG_ON(count > FC_STARGET_NUM_ATTRS);
2137
2138 i->starget_attrs[count] = NULL;
2139
2140
2141 /*
2142 * Setup SCSI Host Attributes.
2143 */
2144 count=0;
2145 SETUP_HOST_ATTRIBUTE_RD(node_name);
2146 SETUP_HOST_ATTRIBUTE_RD(port_name);
6b7281d0 2147 SETUP_HOST_ATTRIBUTE_RD(permanent_port_name);
1da177e4
LT
2148 SETUP_HOST_ATTRIBUTE_RD(supported_classes);
2149 SETUP_HOST_ATTRIBUTE_RD(supported_fc4s);
1da177e4
LT
2150 SETUP_HOST_ATTRIBUTE_RD(supported_speeds);
2151 SETUP_HOST_ATTRIBUTE_RD(maxframe_size);
a53eb5e0
JS
2152 if (ft->vport_create) {
2153 SETUP_HOST_ATTRIBUTE_RD_NS(max_npiv_vports);
2154 SETUP_HOST_ATTRIBUTE_RD_NS(npiv_vports_inuse);
2155 }
1da177e4
LT
2156 SETUP_HOST_ATTRIBUTE_RD(serial_number);
2157
2158 SETUP_HOST_ATTRIBUTE_RD(port_id);
2159 SETUP_HOST_ATTRIBUTE_RD(port_type);
2160 SETUP_HOST_ATTRIBUTE_RD(port_state);
2161 SETUP_HOST_ATTRIBUTE_RD(active_fc4s);
2162 SETUP_HOST_ATTRIBUTE_RD(speed);
2163 SETUP_HOST_ATTRIBUTE_RD(fabric_name);
016131b8 2164 SETUP_HOST_ATTRIBUTE_RD(symbolic_name);
b8d08210 2165 SETUP_HOST_ATTRIBUTE_RW(system_hostname);
1da177e4
LT
2166
2167 /* Transport-managed attributes */
2168 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(tgtid_bind_type);
91ca7b01
AV
2169 if (ft->issue_fc_host_lip)
2170 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(issue_lip);
a53eb5e0
JS
2171 if (ft->vport_create)
2172 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(vport_create);
2173 if (ft->vport_delete)
2174 SETUP_PRIVATE_HOST_ATTRIBUTE_RW(vport_delete);
1da177e4
LT
2175
2176 BUG_ON(count > FC_HOST_NUM_ATTRS);
2177
2178 i->host_attrs[count] = NULL;
2179
2180 /*
2181 * Setup Remote Port Attributes.
2182 */
2183 count=0;
2184 SETUP_RPORT_ATTRIBUTE_RD(maxframe_size);
2185 SETUP_RPORT_ATTRIBUTE_RD(supported_classes);
2186 SETUP_RPORT_ATTRIBUTE_RW(dev_loss_tmo);
2187 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(node_name);
2188 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_name);
2189 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_id);
2190 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(roles);
2191 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(port_state);
2192 SETUP_PRIVATE_RPORT_ATTRIBUTE_RD(scsi_target_id);
fff9d40c 2193 SETUP_PRIVATE_RPORT_ATTRIBUTE_RW(fast_io_fail_tmo);
1da177e4
LT
2194
2195 BUG_ON(count > FC_RPORT_NUM_ATTRS);
2196
2197 i->rport_attrs[count] = NULL;
2198
a53eb5e0
JS
2199 /*
2200 * Setup Virtual Port Attributes.
2201 */
2202 count=0;
2203 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(vport_state);
2204 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(vport_last_state);
2205 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(node_name);
2206 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(port_name);
2207 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(roles);
2208 SETUP_PRIVATE_VPORT_ATTRIBUTE_RD(vport_type);
2209 SETUP_VPORT_ATTRIBUTE_RW(symbolic_name);
2210 SETUP_VPORT_ATTRIBUTE_WR(vport_delete);
2211 SETUP_VPORT_ATTRIBUTE_WR(vport_disable);
2212
2213 BUG_ON(count > FC_VPORT_NUM_ATTRS);
2214
2215 i->vport_attrs[count] = NULL;
2216
1da177e4
LT
2217 return &i->t;
2218}
2219EXPORT_SYMBOL(fc_attach_transport);
2220
2221void fc_release_transport(struct scsi_transport_template *t)
2222{
2223 struct fc_internal *i = to_fc_internal(t);
2224
2225 transport_container_unregister(&i->t.target_attrs);
2226 transport_container_unregister(&i->t.host_attrs);
2227 transport_container_unregister(&i->rport_attr_cont);
a53eb5e0 2228 transport_container_unregister(&i->vport_attr_cont);
1da177e4
LT
2229
2230 kfree(i);
2231}
2232EXPORT_SYMBOL(fc_release_transport);
2233
aedf3497
JS
2234/**
2235 * fc_queue_work - Queue work to the fc_host workqueue.
2236 * @shost: Pointer to Scsi_Host bound to fc_host.
2237 * @work: Work to queue for execution.
2238 *
2239 * Return value:
a0785edf
JS
2240 * 1 - work queued for execution
2241 * 0 - work is already queued
2242 * -EINVAL - work queue doesn't exist
eb44820c 2243 */
aedf3497
JS
2244static int
2245fc_queue_work(struct Scsi_Host *shost, struct work_struct *work)
2246{
2247 if (unlikely(!fc_host_work_q(shost))) {
2248 printk(KERN_ERR
2249 "ERROR: FC host '%s' attempted to queue work, "
2250 "when no workqueue created.\n", shost->hostt->name);
2251 dump_stack();
2252
2253 return -EINVAL;
2254 }
2255
2256 return queue_work(fc_host_work_q(shost), work);
2257}
2258
2259/**
2260 * fc_flush_work - Flush a fc_host's workqueue.
2261 * @shost: Pointer to Scsi_Host bound to fc_host.
eb44820c 2262 */
aedf3497
JS
2263static void
2264fc_flush_work(struct Scsi_Host *shost)
2265{
2266 if (!fc_host_work_q(shost)) {
2267 printk(KERN_ERR
2268 "ERROR: FC host '%s' attempted to flush work, "
2269 "when no workqueue created.\n", shost->hostt->name);
2270 dump_stack();
2271 return;
2272 }
2273
2274 flush_workqueue(fc_host_work_q(shost));
2275}
2276
2277/**
2278 * fc_queue_devloss_work - Schedule work for the fc_host devloss workqueue.
2279 * @shost: Pointer to Scsi_Host bound to fc_host.
2280 * @work: Work to queue for execution.
2281 * @delay: jiffies to delay the work queuing
2282 *
2283 * Return value:
0f29b966 2284 * 1 on success / 0 already queued / < 0 for error
eb44820c 2285 */
aedf3497 2286static int
c4028958 2287fc_queue_devloss_work(struct Scsi_Host *shost, struct delayed_work *work,
aedf3497
JS
2288 unsigned long delay)
2289{
2290 if (unlikely(!fc_host_devloss_work_q(shost))) {
2291 printk(KERN_ERR
2292 "ERROR: FC host '%s' attempted to queue work, "
2293 "when no workqueue created.\n", shost->hostt->name);
2294 dump_stack();
2295
2296 return -EINVAL;
2297 }
2298
2299 return queue_delayed_work(fc_host_devloss_work_q(shost), work, delay);
2300}
2301
2302/**
2303 * fc_flush_devloss - Flush a fc_host's devloss workqueue.
2304 * @shost: Pointer to Scsi_Host bound to fc_host.
eb44820c 2305 */
aedf3497
JS
2306static void
2307fc_flush_devloss(struct Scsi_Host *shost)
2308{
2309 if (!fc_host_devloss_work_q(shost)) {
2310 printk(KERN_ERR
2311 "ERROR: FC host '%s' attempted to flush work, "
2312 "when no workqueue created.\n", shost->hostt->name);
2313 dump_stack();
2314 return;
2315 }
2316
2317 flush_workqueue(fc_host_devloss_work_q(shost));
2318}
2319
1da177e4
LT
2320
2321/**
eb44820c
RL
2322 * fc_remove_host - called to terminate any fc_transport-related elements for a scsi host.
2323 * @shost: Which &Scsi_Host
1da177e4
LT
2324 *
2325 * This routine is expected to be called immediately preceeding the
2326 * a driver's call to scsi_remove_host().
2327 *
2328 * WARNING: A driver utilizing the fc_transport, which fails to call
eb44820c 2329 * this routine prior to scsi_remove_host(), will leave dangling
1da177e4
LT
2330 * objects in /sys/class/fc_remote_ports. Access to any of these
2331 * objects can result in a system crash !!!
2332 *
2333 * Notes:
2334 * This routine assumes no locks are held on entry.
eb44820c 2335 */
1da177e4
LT
2336void
2337fc_remove_host(struct Scsi_Host *shost)
2338{
a53eb5e0
JS
2339 struct fc_vport *vport = NULL, *next_vport = NULL;
2340 struct fc_rport *rport = NULL, *next_rport = NULL;
aedf3497
JS
2341 struct workqueue_struct *work_q;
2342 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
a53eb5e0 2343 unsigned long flags;
a53eb5e0
JS
2344
2345 spin_lock_irqsave(shost->host_lock, flags);
2346
2347 /* Remove any vports */
9ef3e4a4
JS
2348 list_for_each_entry_safe(vport, next_vport, &fc_host->vports, peers)
2349 fc_queue_work(shost, &vport->vport_delete_work);
1da177e4
LT
2350
2351 /* Remove any remote ports */
2352 list_for_each_entry_safe(rport, next_rport,
aedf3497
JS
2353 &fc_host->rports, peers) {
2354 list_del(&rport->peers);
2355 rport->port_state = FC_PORTSTATE_DELETED;
2356 fc_queue_work(shost, &rport->rport_delete_work);
2357 }
2358
1da177e4 2359 list_for_each_entry_safe(rport, next_rport,
aedf3497
JS
2360 &fc_host->rport_bindings, peers) {
2361 list_del(&rport->peers);
2362 rport->port_state = FC_PORTSTATE_DELETED;
2363 fc_queue_work(shost, &rport->rport_delete_work);
2364 }
2365
a53eb5e0
JS
2366 spin_unlock_irqrestore(shost->host_lock, flags);
2367
aedf3497
JS
2368 /* flush all scan work items */
2369 scsi_flush_work(shost);
2370
2371 /* flush all stgt delete, and rport delete work items, then kill it */
2372 if (fc_host->work_q) {
2373 work_q = fc_host->work_q;
2374 fc_host->work_q = NULL;
2375 destroy_workqueue(work_q);
2376 }
2377
2378 /* flush all devloss work items, then kill it */
2379 if (fc_host->devloss_work_q) {
2380 work_q = fc_host->devloss_work_q;
2381 fc_host->devloss_work_q = NULL;
2382 destroy_workqueue(work_q);
2383 }
1da177e4
LT
2384}
2385EXPORT_SYMBOL(fc_remove_host);
2386
fff9d40c
MC
2387static void fc_terminate_rport_io(struct fc_rport *rport)
2388{
2389 struct Scsi_Host *shost = rport_to_shost(rport);
2390 struct fc_internal *i = to_fc_internal(shost->transportt);
2391
2392 /* Involve the LLDD if possible to terminate all io on the rport. */
2393 if (i->f->terminate_rport_io)
2394 i->f->terminate_rport_io(rport);
2395
2396 /*
2397 * must unblock to flush queued IO. The caller will have set
2398 * the port_state or flags, so that fc_remote_port_chkready will
2399 * fail IO.
2400 */
2401 scsi_target_unblock(&rport->dev);
2402}
aedf3497
JS
2403
2404/**
2405 * fc_starget_delete - called to delete the scsi decendents of an rport
c4028958 2406 * @work: remote port to be operated on.
eb44820c
RL
2407 *
2408 * Deletes target and all sdevs.
2409 */
19a7b4ae 2410static void
c4028958 2411fc_starget_delete(struct work_struct *work)
19a7b4ae 2412{
c4028958
DH
2413 struct fc_rport *rport =
2414 container_of(work, struct fc_rport, stgt_delete_work);
19a7b4ae 2415
fff9d40c 2416 fc_terminate_rport_io(rport);
19a7b4ae
JSEC
2417 scsi_remove_target(&rport->dev);
2418}
2419
aedf3497
JS
2420
2421/**
2422 * fc_rport_final_delete - finish rport termination and delete it.
c4028958 2423 * @work: remote port to be deleted.
eb44820c 2424 */
aedf3497 2425static void
c4028958 2426fc_rport_final_delete(struct work_struct *work)
aedf3497 2427{
c4028958
DH
2428 struct fc_rport *rport =
2429 container_of(work, struct fc_rport, rport_delete_work);
aedf3497
JS
2430 struct device *dev = &rport->dev;
2431 struct Scsi_Host *shost = rport_to_shost(rport);
0f29b966 2432 struct fc_internal *i = to_fc_internal(shost->transportt);
92740b24 2433 unsigned long flags;
8798a694 2434 int do_callback = 0;
aedf3497
JS
2435
2436 /*
9ef3e4a4 2437 * if a scan is pending, flush the SCSI Host work_q so that
aedf3497
JS
2438 * that we can reclaim the rport scan work element.
2439 */
2440 if (rport->flags & FC_RPORT_SCAN_PENDING)
2441 scsi_flush_work(shost);
2442
fff9d40c 2443 fc_terminate_rport_io(rport);
9e4f5e29 2444
92740b24
JS
2445 /*
2446 * Cancel any outstanding timers. These should really exist
2447 * only when rmmod'ing the LLDD and we're asking for
2448 * immediate termination of the rports
2449 */
2450 spin_lock_irqsave(shost->host_lock, flags);
2451 if (rport->flags & FC_RPORT_DEVLOSS_PENDING) {
2452 spin_unlock_irqrestore(shost->host_lock, flags);
2453 if (!cancel_delayed_work(&rport->fail_io_work))
2454 fc_flush_devloss(shost);
2455 if (!cancel_delayed_work(&rport->dev_loss_work))
2456 fc_flush_devloss(shost);
2457 spin_lock_irqsave(shost->host_lock, flags);
2458 rport->flags &= ~FC_RPORT_DEVLOSS_PENDING;
2459 }
2460 spin_unlock_irqrestore(shost->host_lock, flags);
2461
0f29b966
JS
2462 /* Delete SCSI target and sdevs */
2463 if (rport->scsi_target_id != -1)
c4028958 2464 fc_starget_delete(&rport->stgt_delete_work);
92740b24
JS
2465
2466 /*
2467 * Notify the driver that the rport is now dead. The LLDD will
2468 * also guarantee that any communication to the rport is terminated
4be98c0c
JS
2469 *
2470 * Avoid this call if we already called it when we preserved the
2471 * rport for the binding.
92740b24 2472 */
8798a694 2473 spin_lock_irqsave(shost->host_lock, flags);
4be98c0c 2474 if (!(rport->flags & FC_RPORT_DEVLOSS_CALLBK_DONE) &&
8798a694
MR
2475 (i->f->dev_loss_tmo_callbk)) {
2476 rport->flags |= FC_RPORT_DEVLOSS_CALLBK_DONE;
2477 do_callback = 1;
2478 }
2479 spin_unlock_irqrestore(shost->host_lock, flags);
2480
2481 if (do_callback)
0f29b966 2482 i->f->dev_loss_tmo_callbk(rport);
0f29b966 2483
9e4f5e29
JS
2484 fc_bsg_remove(rport->rqst_q);
2485
aedf3497
JS
2486 transport_remove_device(dev);
2487 device_del(dev);
2488 transport_destroy_device(dev);
3bdad7bd
JS
2489 put_device(&shost->shost_gendev); /* for fc_host->rport list */
2490 put_device(dev); /* for self-reference */
aedf3497
JS
2491}
2492
2493
1da177e4
LT
2494/**
2495 * fc_rport_create - allocates and creates a remote FC port.
2496 * @shost: scsi host the remote port is connected to.
2497 * @channel: Channel on shost port connected to.
2498 * @ids: The world wide names, fc address, and FC4 port
2499 * roles for the remote port.
2500 *
2501 * Allocates and creates the remoter port structure, including the
2502 * class and sysfs creation.
2503 *
2504 * Notes:
2505 * This routine assumes no locks are held on entry.
eb44820c 2506 */
44818efb 2507static struct fc_rport *
1da177e4
LT
2508fc_rport_create(struct Scsi_Host *shost, int channel,
2509 struct fc_rport_identifiers *ids)
2510{
aedf3497 2511 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
1da177e4
LT
2512 struct fc_internal *fci = to_fc_internal(shost->transportt);
2513 struct fc_rport *rport;
2514 struct device *dev;
2515 unsigned long flags;
2516 int error;
2517 size_t size;
2518
2519 size = (sizeof(struct fc_rport) + fci->f->dd_fcrport_size);
24669f75 2520 rport = kzalloc(size, GFP_KERNEL);
1da177e4 2521 if (unlikely(!rport)) {
cadbd4a5 2522 printk(KERN_ERR "%s: allocation failure\n", __func__);
1da177e4
LT
2523 return NULL;
2524 }
1da177e4
LT
2525
2526 rport->maxframe_size = -1;
2527 rport->supported_classes = FC_COS_UNSPECIFIED;
b8ef3204
MC
2528 if (fci->f->get_host_def_dev_loss_tmo) {
2529 fci->f->get_host_def_dev_loss_tmo(shost);
2530 rport->dev_loss_tmo = fc_host_def_dev_loss_tmo(shost);
2531 } else
2532 rport->dev_loss_tmo = fc_dev_loss_tmo;
1da177e4
LT
2533 memcpy(&rport->node_name, &ids->node_name, sizeof(rport->node_name));
2534 memcpy(&rport->port_name, &ids->port_name, sizeof(rport->port_name));
2535 rport->port_id = ids->port_id;
2536 rport->roles = ids->roles;
2537 rport->port_state = FC_PORTSTATE_ONLINE;
2538 if (fci->f->dd_fcrport_size)
2539 rport->dd_data = &rport[1];
2540 rport->channel = channel;
0f29b966 2541 rport->fast_io_fail_tmo = -1;
1da177e4 2542
c4028958
DH
2543 INIT_DELAYED_WORK(&rport->dev_loss_work, fc_timeout_deleted_rport);
2544 INIT_DELAYED_WORK(&rport->fail_io_work, fc_timeout_fail_rport_io);
2545 INIT_WORK(&rport->scan_work, fc_scsi_scan_rport);
2546 INIT_WORK(&rport->stgt_delete_work, fc_starget_delete);
2547 INIT_WORK(&rport->rport_delete_work, fc_rport_final_delete);
1da177e4
LT
2548
2549 spin_lock_irqsave(shost->host_lock, flags);
2550
2551 rport->number = fc_host->next_rport_number++;
a53eb5e0 2552 if (rport->roles & FC_PORT_ROLE_FCP_TARGET)
1da177e4
LT
2553 rport->scsi_target_id = fc_host->next_target_id++;
2554 else
2555 rport->scsi_target_id = -1;
aedf3497 2556 list_add_tail(&rport->peers, &fc_host->rports);
3bdad7bd 2557 get_device(&shost->shost_gendev); /* for fc_host->rport list */
1da177e4
LT
2558
2559 spin_unlock_irqrestore(shost->host_lock, flags);
2560
2561 dev = &rport->dev;
3bdad7bd
JS
2562 device_initialize(dev); /* takes self reference */
2563 dev->parent = get_device(&shost->shost_gendev); /* parent reference */
1da177e4 2564 dev->release = fc_rport_dev_release;
71610f55
KS
2565 dev_set_name(dev, "rport-%d:%d-%d",
2566 shost->host_no, channel, rport->number);
1da177e4
LT
2567 transport_setup_device(dev);
2568
2569 error = device_add(dev);
2570 if (error) {
2571 printk(KERN_ERR "FC Remote Port device_add failed\n");
2572 goto delete_rport;
2573 }
2574 transport_add_device(dev);
2575 transport_configure_device(dev);
2576
9e4f5e29
JS
2577 fc_bsg_rportadd(shost, rport);
2578 /* ignore any bsg add error - we just can't do sgio */
2579
a53eb5e0 2580 if (rport->roles & FC_PORT_ROLE_FCP_TARGET) {
1da177e4 2581 /* initiate a scan of the target */
aedf3497 2582 rport->flags |= FC_RPORT_SCAN_PENDING;
1da177e4 2583 scsi_queue_work(shost, &rport->scan_work);
aedf3497 2584 }
1da177e4
LT
2585
2586 return rport;
2587
2588delete_rport:
2589 transport_destroy_device(dev);
1da177e4
LT
2590 spin_lock_irqsave(shost->host_lock, flags);
2591 list_del(&rport->peers);
3bdad7bd 2592 put_device(&shost->shost_gendev); /* for fc_host->rport list */
1da177e4
LT
2593 spin_unlock_irqrestore(shost->host_lock, flags);
2594 put_device(dev->parent);
2595 kfree(rport);
2596 return NULL;
2597}
2598
2599/**
eb44820c 2600 * fc_remote_port_add - notify fc transport of the existence of a remote FC port.
1da177e4
LT
2601 * @shost: scsi host the remote port is connected to.
2602 * @channel: Channel on shost port connected to.
2603 * @ids: The world wide names, fc address, and FC4 port
2604 * roles for the remote port.
2605 *
2606 * The LLDD calls this routine to notify the transport of the existence
2607 * of a remote port. The LLDD provides the unique identifiers (wwpn,wwn)
2608 * of the port, it's FC address (port_id), and the FC4 roles that are
2609 * active for the port.
2610 *
2611 * For ports that are FCP targets (aka scsi targets), the FC transport
2612 * maintains consistent target id bindings on behalf of the LLDD.
2613 * A consistent target id binding is an assignment of a target id to
2614 * a remote port identifier, which persists while the scsi host is
2615 * attached. The remote port can disappear, then later reappear, and
2616 * it's target id assignment remains the same. This allows for shifts
2617 * in FC addressing (if binding by wwpn or wwnn) with no apparent
2618 * changes to the scsi subsystem which is based on scsi host number and
2619 * target id values. Bindings are only valid during the attachment of
2620 * the scsi host. If the host detaches, then later re-attaches, target
2621 * id bindings may change.
2622 *
2623 * This routine is responsible for returning a remote port structure.
2624 * The routine will search the list of remote ports it maintains
2625 * internally on behalf of consistent target id mappings. If found, the
2626 * remote port structure will be reused. Otherwise, a new remote port
2627 * structure will be allocated.
2628 *
2629 * Whenever a remote port is allocated, a new fc_remote_port class
2630 * device is created.
2631 *
2632 * Should not be called from interrupt context.
2633 *
2634 * Notes:
2635 * This routine assumes no locks are held on entry.
eb44820c 2636 */
1da177e4
LT
2637struct fc_rport *
2638fc_remote_port_add(struct Scsi_Host *shost, int channel,
2639 struct fc_rport_identifiers *ids)
2640{
19a7b4ae 2641 struct fc_internal *fci = to_fc_internal(shost->transportt);
aedf3497 2642 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
1da177e4
LT
2643 struct fc_rport *rport;
2644 unsigned long flags;
2645 int match = 0;
2646
aedf3497
JS
2647 /* ensure any stgt delete functions are done */
2648 fc_flush_work(shost);
2649
19a7b4ae
JSEC
2650 /*
2651 * Search the list of "active" rports, for an rport that has been
2652 * deleted, but we've held off the real delete while the target
2653 * is in a "blocked" state.
2654 */
2655 spin_lock_irqsave(shost->host_lock, flags);
2656
aedf3497 2657 list_for_each_entry(rport, &fc_host->rports, peers) {
19a7b4ae
JSEC
2658
2659 if ((rport->port_state == FC_PORTSTATE_BLOCKED) &&
2660 (rport->channel == channel)) {
2661
aedf3497 2662 switch (fc_host->tgtid_bind_type) {
19a7b4ae
JSEC
2663 case FC_TGTID_BIND_BY_WWPN:
2664 case FC_TGTID_BIND_NONE:
2665 if (rport->port_name == ids->port_name)
2666 match = 1;
2667 break;
2668 case FC_TGTID_BIND_BY_WWNN:
2669 if (rport->node_name == ids->node_name)
2670 match = 1;
2671 break;
2672 case FC_TGTID_BIND_BY_ID:
2673 if (rport->port_id == ids->port_id)
2674 match = 1;
2675 break;
2676 }
2677
2678 if (match) {
19a7b4ae
JSEC
2679
2680 memcpy(&rport->node_name, &ids->node_name,
2681 sizeof(rport->node_name));
2682 memcpy(&rport->port_name, &ids->port_name,
2683 sizeof(rport->port_name));
2684 rport->port_id = ids->port_id;
2685
2686 rport->port_state = FC_PORTSTATE_ONLINE;
2687 rport->roles = ids->roles;
2688
2689 spin_unlock_irqrestore(shost->host_lock, flags);
2690
2691 if (fci->f->dd_fcrport_size)
2692 memset(rport->dd_data, 0,
2693 fci->f->dd_fcrport_size);
2694
2695 /*
92740b24
JS
2696 * If we were not a target, cancel the
2697 * io terminate and rport timers, and
2698 * we're done.
2699 *
2700 * If we were a target, but our new role
2701 * doesn't indicate a target, leave the
2702 * timers running expecting the role to
2703 * change as the target fully logs in. If
2704 * it doesn't, the target will be torn down.
2705 *
2706 * If we were a target, and our role shows
2707 * we're still a target, cancel the timers
2708 * and kick off a scan.
19a7b4ae 2709 */
19a7b4ae 2710
92740b24
JS
2711 /* was a target, not in roles */
2712 if ((rport->scsi_target_id != -1) &&
a53eb5e0 2713 (!(ids->roles & FC_PORT_ROLE_FCP_TARGET)))
92740b24 2714 return rport;
19a7b4ae
JSEC
2715
2716 /*
92740b24
JS
2717 * Stop the fail io and dev_loss timers.
2718 * If they flush, the port_state will
2719 * be checked and will NOOP the function.
19a7b4ae 2720 */
0f29b966
JS
2721 if (!cancel_delayed_work(&rport->fail_io_work))
2722 fc_flush_devloss(shost);
92740b24 2723 if (!cancel_delayed_work(&rport->dev_loss_work))
aedf3497
JS
2724 fc_flush_devloss(shost);
2725
2726 spin_lock_irqsave(shost->host_lock, flags);
2727
fff9d40c 2728 rport->flags &= ~(FC_RPORT_FAST_FAIL_TIMEDOUT |
4be98c0c
JS
2729 FC_RPORT_DEVLOSS_PENDING |
2730 FC_RPORT_DEVLOSS_CALLBK_DONE);
19a7b4ae 2731
92740b24
JS
2732 /* if target, initiate a scan */
2733 if (rport->scsi_target_id != -1) {
2734 rport->flags |= FC_RPORT_SCAN_PENDING;
2735 scsi_queue_work(shost,
2736 &rport->scan_work);
2737 spin_unlock_irqrestore(shost->host_lock,
2738 flags);
2739 scsi_target_unblock(&rport->dev);
2740 } else
2741 spin_unlock_irqrestore(shost->host_lock,
2742 flags);
a0785edf 2743
9e4f5e29
JS
2744 fc_bsg_goose_queue(rport);
2745
19a7b4ae
JSEC
2746 return rport;
2747 }
2748 }
2749 }
2750
92740b24
JS
2751 /*
2752 * Search the bindings array
2753 * Note: if never a FCP target, you won't be on this list
2754 */
aedf3497 2755 if (fc_host->tgtid_bind_type != FC_TGTID_BIND_NONE) {
1da177e4
LT
2756
2757 /* search for a matching consistent binding */
2758
aedf3497 2759 list_for_each_entry(rport, &fc_host->rport_bindings,
1da177e4
LT
2760 peers) {
2761 if (rport->channel != channel)
2762 continue;
2763
aedf3497 2764 switch (fc_host->tgtid_bind_type) {
1da177e4
LT
2765 case FC_TGTID_BIND_BY_WWPN:
2766 if (rport->port_name == ids->port_name)
2767 match = 1;
2768 break;
2769 case FC_TGTID_BIND_BY_WWNN:
2770 if (rport->node_name == ids->node_name)
2771 match = 1;
2772 break;
2773 case FC_TGTID_BIND_BY_ID:
2774 if (rport->port_id == ids->port_id)
2775 match = 1;
2776 break;
2777 case FC_TGTID_BIND_NONE: /* to keep compiler happy */
2778 break;
2779 }
2780
2781 if (match) {
aedf3497 2782 list_move_tail(&rport->peers, &fc_host->rports);
1da177e4
LT
2783 break;
2784 }
2785 }
2786
1da177e4
LT
2787 if (match) {
2788 memcpy(&rport->node_name, &ids->node_name,
2789 sizeof(rport->node_name));
2790 memcpy(&rport->port_name, &ids->port_name,
2791 sizeof(rport->port_name));
2792 rport->port_id = ids->port_id;
2793 rport->roles = ids->roles;
2794 rport->port_state = FC_PORTSTATE_ONLINE;
fff9d40c 2795 rport->flags &= ~FC_RPORT_FAST_FAIL_TIMEDOUT;
1da177e4 2796
19a7b4ae
JSEC
2797 if (fci->f->dd_fcrport_size)
2798 memset(rport->dd_data, 0,
2799 fci->f->dd_fcrport_size);
2800
a53eb5e0 2801 if (rport->roles & FC_PORT_ROLE_FCP_TARGET) {
1da177e4 2802 /* initiate a scan of the target */
aedf3497 2803 rport->flags |= FC_RPORT_SCAN_PENDING;
1da177e4 2804 scsi_queue_work(shost, &rport->scan_work);
a0785edf
JS
2805 spin_unlock_irqrestore(shost->host_lock, flags);
2806 scsi_target_unblock(&rport->dev);
2807 } else
2808 spin_unlock_irqrestore(shost->host_lock, flags);
1da177e4
LT
2809
2810 return rport;
2811 }
2812 }
2813
19a7b4ae
JSEC
2814 spin_unlock_irqrestore(shost->host_lock, flags);
2815
1da177e4
LT
2816 /* No consistent binding found - create new remote port entry */
2817 rport = fc_rport_create(shost, channel, ids);
2818
2819 return rport;
2820}
2821EXPORT_SYMBOL(fc_remote_port_add);
2822
1da177e4
LT
2823
2824/**
eb44820c 2825 * fc_remote_port_delete - notifies the fc transport that a remote port is no longer in existence.
1da177e4
LT
2826 * @rport: The remote port that no longer exists
2827 *
2828 * The LLDD calls this routine to notify the transport that a remote
2829 * port is no longer part of the topology. Note: Although a port
2830 * may no longer be part of the topology, it may persist in the remote
19a7b4ae 2831 * ports displayed by the fc_host. We do this under 2 conditions:
eb44820c 2832 * 1) If the port was a scsi target, we delay its deletion by "blocking" it.
19a7b4ae
JSEC
2833 * This allows the port to temporarily disappear, then reappear without
2834 * disrupting the SCSI device tree attached to it. During the "blocked"
2835 * period the port will still exist.
eb44820c 2836 * 2) If the port was a scsi target and disappears for longer than we
19a7b4ae
JSEC
2837 * expect, we'll delete the port and the tear down the SCSI device tree
2838 * attached to it. However, we want to semi-persist the target id assigned
2839 * to that port if it eventually does exist. The port structure will
2840 * remain (although with minimal information) so that the target id
2841 * bindings remails.
1da177e4
LT
2842 *
2843 * If the remote port is not an FCP Target, it will be fully torn down
2844 * and deallocated, including the fc_remote_port class device.
2845 *
19a7b4ae
JSEC
2846 * If the remote port is an FCP Target, the port will be placed in a
2847 * temporary blocked state. From the LLDD's perspective, the rport no
2848 * longer exists. From the SCSI midlayer's perspective, the SCSI target
2849 * exists, but all sdevs on it are blocked from further I/O. The following
eb44820c
RL
2850 * is then expected.
2851 *
19a7b4ae
JSEC
2852 * If the remote port does not return (signaled by a LLDD call to
2853 * fc_remote_port_add()) within the dev_loss_tmo timeout, then the
2854 * scsi target is removed - killing all outstanding i/o and removing the
2855 * scsi devices attached ot it. The port structure will be marked Not
2856 * Present and be partially cleared, leaving only enough information to
2857 * recognize the remote port relative to the scsi target id binding if
2858 * it later appears. The port will remain as long as there is a valid
2859 * binding (e.g. until the user changes the binding type or unloads the
2860 * scsi host with the binding).
1da177e4 2861 *
19a7b4ae
JSEC
2862 * If the remote port returns within the dev_loss_tmo value (and matches
2863 * according to the target id binding type), the port structure will be
2864 * reused. If it is no longer a SCSI target, the target will be torn
2865 * down. If it continues to be a SCSI target, then the target will be
2866 * unblocked (allowing i/o to be resumed), and a scan will be activated
2867 * to ensure that all luns are detected.
2868 *
2869 * Called from normal process context only - cannot be called from interrupt.
1da177e4
LT
2870 *
2871 * Notes:
2872 * This routine assumes no locks are held on entry.
eb44820c 2873 */
1da177e4
LT
2874void
2875fc_remote_port_delete(struct fc_rport *rport)
2876{
aedf3497 2877 struct Scsi_Host *shost = rport_to_shost(rport);
36dd288f 2878 unsigned long timeout = rport->dev_loss_tmo;
aedf3497
JS
2879 unsigned long flags;
2880
2881 /*
2882 * No need to flush the fc_host work_q's, as all adds are synchronous.
2883 *
2884 * We do need to reclaim the rport scan work element, so eventually
2885 * (in fc_rport_final_delete()) we'll flush the scsi host work_q if
2886 * there's still a scan pending.
2887 */
2888
2889 spin_lock_irqsave(shost->host_lock, flags);
1da177e4 2890
92740b24 2891 if (rport->port_state != FC_PORTSTATE_ONLINE) {
aedf3497 2892 spin_unlock_irqrestore(shost->host_lock, flags);
1da177e4
LT
2893 return;
2894 }
2895
92740b24
JS
2896 /*
2897 * In the past, we if this was not an FCP-Target, we would
2898 * unconditionally just jump to deleting the rport.
2899 * However, rports can be used as node containers by the LLDD,
2900 * and its not appropriate to just terminate the rport at the
2901 * first sign of a loss in connectivity. The LLDD may want to
2902 * send ELS traffic to re-validate the login. If the rport is
2903 * immediately deleted, it makes it inappropriate for a node
2904 * container.
2905 * So... we now unconditionally wait dev_loss_tmo before
2906 * destroying an rport.
2907 */
2908
aedf3497
JS
2909 rport->port_state = FC_PORTSTATE_BLOCKED;
2910
2911 rport->flags |= FC_RPORT_DEVLOSS_PENDING;
2912
2913 spin_unlock_irqrestore(shost->host_lock, flags);
2914
7525236d
FT
2915 if (rport->roles & FC_PORT_ROLE_FCP_INITIATOR &&
2916 shost->active_mode & MODE_TARGET)
2917 fc_tgt_it_nexus_destroy(shost, (unsigned long)rport);
2918
19a7b4ae 2919 scsi_target_block(&rport->dev);
1da177e4 2920
0f29b966
JS
2921 /* see if we need to kill io faster than waiting for device loss */
2922 if ((rport->fast_io_fail_tmo != -1) &&
fff9d40c 2923 (rport->fast_io_fail_tmo < timeout))
0f29b966
JS
2924 fc_queue_devloss_work(shost, &rport->fail_io_work,
2925 rport->fast_io_fail_tmo * HZ);
2926
19a7b4ae 2927 /* cap the length the devices can be blocked until they are deleted */
aedf3497 2928 fc_queue_devloss_work(shost, &rport->dev_loss_work, timeout * HZ);
1da177e4
LT
2929}
2930EXPORT_SYMBOL(fc_remote_port_delete);
2931
2932/**
eb44820c 2933 * fc_remote_port_rolechg - notifies the fc transport that the roles on a remote may have changed.
1da177e4 2934 * @rport: The remote port that changed.
eb44820c 2935 * @roles: New roles for this port.
1da177e4 2936 *
eb44820c
RL
2937 * Description: The LLDD calls this routine to notify the transport that the
2938 * roles on a remote port may have changed. The largest effect of this is
1da177e4
LT
2939 * if a port now becomes a FCP Target, it must be allocated a
2940 * scsi target id. If the port is no longer a FCP target, any
2941 * scsi target id value assigned to it will persist in case the
2942 * role changes back to include FCP Target. No changes in the scsi
2943 * midlayer will be invoked if the role changes (in the expectation
2944 * that the role will be resumed. If it doesn't normal error processing
2945 * will take place).
2946 *
2947 * Should not be called from interrupt context.
2948 *
2949 * Notes:
2950 * This routine assumes no locks are held on entry.
eb44820c 2951 */
1da177e4
LT
2952void
2953fc_remote_port_rolechg(struct fc_rport *rport, u32 roles)
2954{
2955 struct Scsi_Host *shost = rport_to_shost(rport);
aedf3497 2956 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
1da177e4
LT
2957 unsigned long flags;
2958 int create = 0;
7525236d 2959 int ret;
1da177e4 2960
1da177e4 2961 spin_lock_irqsave(shost->host_lock, flags);
a53eb5e0 2962 if (roles & FC_PORT_ROLE_FCP_TARGET) {
19a7b4ae
JSEC
2963 if (rport->scsi_target_id == -1) {
2964 rport->scsi_target_id = fc_host->next_target_id++;
2965 create = 1;
a53eb5e0 2966 } else if (!(rport->roles & FC_PORT_ROLE_FCP_TARGET))
19a7b4ae 2967 create = 1;
7525236d
FT
2968 } else if (shost->active_mode & MODE_TARGET) {
2969 ret = fc_tgt_it_nexus_create(shost, (unsigned long)rport,
2970 (char *)&rport->node_name);
2971 if (ret)
2972 printk(KERN_ERR "FC Remore Port tgt nexus failed %d\n",
2973 ret);
1da177e4 2974 }
1da177e4 2975
19a7b4ae
JSEC
2976 rport->roles = roles;
2977
aedf3497
JS
2978 spin_unlock_irqrestore(shost->host_lock, flags);
2979
19a7b4ae
JSEC
2980 if (create) {
2981 /*
2982 * There may have been a delete timer running on the
2983 * port. Ensure that it is cancelled as we now know
2984 * the port is an FCP Target.
2985 * Note: we know the rport is exists and in an online
2986 * state as the LLDD would not have had an rport
2987 * reference to pass us.
2988 *
2989 * Take no action on the del_timer failure as the state
2990 * machine state change will validate the
2991 * transaction.
2992 */
0f29b966
JS
2993 if (!cancel_delayed_work(&rport->fail_io_work))
2994 fc_flush_devloss(shost);
19a7b4ae 2995 if (!cancel_delayed_work(&rport->dev_loss_work))
aedf3497
JS
2996 fc_flush_devloss(shost);
2997
2998 spin_lock_irqsave(shost->host_lock, flags);
fff9d40c
MC
2999 rport->flags &= ~(FC_RPORT_FAST_FAIL_TIMEDOUT |
3000 FC_RPORT_DEVLOSS_PENDING);
aedf3497
JS
3001 spin_unlock_irqrestore(shost->host_lock, flags);
3002
3003 /* ensure any stgt delete functions are done */
3004 fc_flush_work(shost);
19a7b4ae 3005
1da177e4 3006 /* initiate a scan of the target */
aedf3497
JS
3007 spin_lock_irqsave(shost->host_lock, flags);
3008 rport->flags |= FC_RPORT_SCAN_PENDING;
1da177e4 3009 scsi_queue_work(shost, &rport->scan_work);
aedf3497 3010 spin_unlock_irqrestore(shost->host_lock, flags);
a0785edf 3011 scsi_target_unblock(&rport->dev);
19a7b4ae 3012 }
1da177e4
LT
3013}
3014EXPORT_SYMBOL(fc_remote_port_rolechg);
3015
3016/**
eb44820c 3017 * fc_timeout_deleted_rport - Timeout handler for a deleted remote port.
92740b24 3018 * @work: rport target that failed to reappear in the allotted time.
eb44820c
RL
3019 *
3020 * Description: An attempt to delete a remote port blocks, and if it fails
3021 * to return in the allotted time this gets called.
3022 */
1da177e4 3023static void
c4028958 3024fc_timeout_deleted_rport(struct work_struct *work)
1da177e4 3025{
c4028958
DH
3026 struct fc_rport *rport =
3027 container_of(work, struct fc_rport, dev_loss_work.work);
19a7b4ae 3028 struct Scsi_Host *shost = rport_to_shost(rport);
4be98c0c 3029 struct fc_internal *i = to_fc_internal(shost->transportt);
aedf3497 3030 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
19a7b4ae 3031 unsigned long flags;
8798a694 3032 int do_callback = 0;
1da177e4 3033
19a7b4ae 3034 spin_lock_irqsave(shost->host_lock, flags);
1da177e4 3035
aedf3497
JS
3036 rport->flags &= ~FC_RPORT_DEVLOSS_PENDING;
3037
1da177e4 3038 /*
92740b24
JS
3039 * If the port is ONLINE, then it came back. If it was a SCSI
3040 * target, validate it still is. If not, tear down the
3041 * scsi_target on it.
1da177e4 3042 */
aedf3497 3043 if ((rport->port_state == FC_PORTSTATE_ONLINE) &&
92740b24 3044 (rport->scsi_target_id != -1) &&
a53eb5e0 3045 !(rport->roles & FC_PORT_ROLE_FCP_TARGET)) {
19a7b4ae 3046 dev_printk(KERN_ERR, &rport->dev,
aedf3497
JS
3047 "blocked FC remote port time out: no longer"
3048 " a FCP target, removing starget\n");
aedf3497 3049 spin_unlock_irqrestore(shost->host_lock, flags);
a0785edf
JS
3050 scsi_target_unblock(&rport->dev);
3051 fc_queue_work(shost, &rport->stgt_delete_work);
19a7b4ae
JSEC
3052 return;
3053 }
1da177e4 3054
92740b24 3055 /* NOOP state - we're flushing workq's */
19a7b4ae
JSEC
3056 if (rport->port_state != FC_PORTSTATE_BLOCKED) {
3057 spin_unlock_irqrestore(shost->host_lock, flags);
3058 dev_printk(KERN_ERR, &rport->dev,
92740b24
JS
3059 "blocked FC remote port time out: leaving"
3060 " rport%s alone\n",
3061 (rport->scsi_target_id != -1) ? " and starget" : "");
19a7b4ae
JSEC
3062 return;
3063 }
1da177e4 3064
92740b24
JS
3065 if ((fc_host->tgtid_bind_type == FC_TGTID_BIND_NONE) ||
3066 (rport->scsi_target_id == -1)) {
aedf3497
JS
3067 list_del(&rport->peers);
3068 rport->port_state = FC_PORTSTATE_DELETED;
19a7b4ae 3069 dev_printk(KERN_ERR, &rport->dev,
92740b24
JS
3070 "blocked FC remote port time out: removing"
3071 " rport%s\n",
3072 (rport->scsi_target_id != -1) ? " and starget" : "");
aedf3497
JS
3073 fc_queue_work(shost, &rport->rport_delete_work);
3074 spin_unlock_irqrestore(shost->host_lock, flags);
19a7b4ae
JSEC
3075 return;
3076 }
1da177e4 3077
19a7b4ae
JSEC
3078 dev_printk(KERN_ERR, &rport->dev,
3079 "blocked FC remote port time out: removing target and "
3080 "saving binding\n");
3081
aedf3497 3082 list_move_tail(&rport->peers, &fc_host->rport_bindings);
1da177e4
LT
3083
3084 /*
19a7b4ae
JSEC
3085 * Note: We do not remove or clear the hostdata area. This allows
3086 * host-specific target data to persist along with the
3087 * scsi_target_id. It's up to the host to manage it's hostdata area.
1da177e4 3088 */
1da177e4 3089
19a7b4ae
JSEC
3090 /*
3091 * Reinitialize port attributes that may change if the port comes back.
3092 */
3093 rport->maxframe_size = -1;
3094 rport->supported_classes = FC_COS_UNSPECIFIED;
a53eb5e0 3095 rport->roles = FC_PORT_ROLE_UNKNOWN;
aedf3497 3096 rport->port_state = FC_PORTSTATE_NOTPRESENT;
fff9d40c 3097 rport->flags &= ~FC_RPORT_FAST_FAIL_TIMEDOUT;
1da177e4 3098
f78badb1
JS
3099 /*
3100 * Pre-emptively kill I/O rather than waiting for the work queue
3101 * item to teardown the starget. (FCOE libFC folks prefer this
3102 * and to have the rport_port_id still set when it's done).
3103 */
3104 spin_unlock_irqrestore(shost->host_lock, flags);
3105 fc_terminate_rport_io(rport);
3106
8798a694
MR
3107 spin_lock_irqsave(shost->host_lock, flags);
3108
3109 if (rport->port_state == FC_PORTSTATE_NOTPRESENT) { /* still missing */
f78badb1 3110
8798a694
MR
3111 /* remove the identifiers that aren't used in the consisting binding */
3112 switch (fc_host->tgtid_bind_type) {
3113 case FC_TGTID_BIND_BY_WWPN:
3114 rport->node_name = -1;
3115 rport->port_id = -1;
3116 break;
3117 case FC_TGTID_BIND_BY_WWNN:
3118 rport->port_name = -1;
3119 rport->port_id = -1;
3120 break;
3121 case FC_TGTID_BIND_BY_ID:
3122 rport->node_name = -1;
3123 rport->port_name = -1;
3124 break;
3125 case FC_TGTID_BIND_NONE: /* to keep compiler happy */
3126 break;
3127 }
3128
3129 /*
3130 * As this only occurs if the remote port (scsi target)
3131 * went away and didn't come back - we'll remove
3132 * all attached scsi devices.
3133 */
3134 rport->flags |= FC_RPORT_DEVLOSS_CALLBK_DONE;
3135 fc_queue_work(shost, &rport->stgt_delete_work);
3136
3137 do_callback = 1;
19a7b4ae
JSEC
3138 }
3139
8798a694 3140 spin_unlock_irqrestore(shost->host_lock, flags);
4be98c0c
JS
3141
3142 /*
3143 * Notify the driver that the rport is now dead. The LLDD will
3144 * also guarantee that any communication to the rport is terminated
3145 *
3146 * Note: we set the CALLBK_DONE flag above to correspond
3147 */
8798a694 3148 if (do_callback && i->f->dev_loss_tmo_callbk)
4be98c0c 3149 i->f->dev_loss_tmo_callbk(rport);
1da177e4 3150}
1da177e4 3151
4be98c0c 3152
0f29b966 3153/**
eb44820c 3154 * fc_timeout_fail_rport_io - Timeout handler for a fast io failing on a disconnected SCSI target.
c4028958 3155 * @work: rport to terminate io on.
0f29b966
JS
3156 *
3157 * Notes: Only requests the failure of the io, not that all are flushed
3158 * prior to returning.
eb44820c 3159 */
0f29b966 3160static void
c4028958 3161fc_timeout_fail_rport_io(struct work_struct *work)
0f29b966 3162{
c4028958
DH
3163 struct fc_rport *rport =
3164 container_of(work, struct fc_rport, fail_io_work.work);
0f29b966
JS
3165
3166 if (rport->port_state != FC_PORTSTATE_BLOCKED)
3167 return;
3168
fff9d40c
MC
3169 rport->flags |= FC_RPORT_FAST_FAIL_TIMEDOUT;
3170 fc_terminate_rport_io(rport);
0f29b966
JS
3171}
3172
1da177e4
LT
3173/**
3174 * fc_scsi_scan_rport - called to perform a scsi scan on a remote port.
c4028958 3175 * @work: remote port to be scanned.
eb44820c 3176 */
1da177e4 3177static void
c4028958 3178fc_scsi_scan_rport(struct work_struct *work)
1da177e4 3179{
c4028958
DH
3180 struct fc_rport *rport =
3181 container_of(work, struct fc_rport, scan_work);
aedf3497 3182 struct Scsi_Host *shost = rport_to_shost(rport);
03f002f7 3183 struct fc_internal *i = to_fc_internal(shost->transportt);
42e33148
JSEC
3184 unsigned long flags;
3185
aedf3497 3186 if ((rport->port_state == FC_PORTSTATE_ONLINE) &&
03f002f7
CS
3187 (rport->roles & FC_PORT_ROLE_FCP_TARGET) &&
3188 !(i->f->disable_target_scan)) {
aedf3497
JS
3189 scsi_scan_target(&rport->dev, rport->channel,
3190 rport->scsi_target_id, SCAN_WILD_CARD, 1);
42e33148 3191 }
aedf3497
JS
3192
3193 spin_lock_irqsave(shost->host_lock, flags);
3194 rport->flags &= ~FC_RPORT_SCAN_PENDING;
42e33148
JSEC
3195 spin_unlock_irqrestore(shost->host_lock, flags);
3196}
3197
65d430fa
CS
3198/**
3199 * fc_block_scsi_eh - Block SCSI eh thread for blocked fc_rport
3200 * @cmnd: SCSI command that scsi_eh is trying to recover
3201 *
3202 * This routine can be called from a FC LLD scsi_eh callback. It
3203 * blocks the scsi_eh thread until the fc_rport leaves the
2f2eb587
CS
3204 * FC_PORTSTATE_BLOCKED, or the fast_io_fail_tmo fires. This is
3205 * necessary to avoid the scsi_eh failing recovery actions for blocked
3206 * rports which would lead to offlined SCSI devices.
3207 *
3208 * Returns: 0 if the fc_rport left the state FC_PORTSTATE_BLOCKED.
3209 * FAST_IO_FAIL if the fast_io_fail_tmo fired, this should be
3210 * passed back to scsi_eh.
65d430fa 3211 */
2f2eb587 3212int fc_block_scsi_eh(struct scsi_cmnd *cmnd)
65d430fa
CS
3213{
3214 struct Scsi_Host *shost = cmnd->device->host;
3215 struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
3216 unsigned long flags;
3217
3218 spin_lock_irqsave(shost->host_lock, flags);
2f2eb587
CS
3219 while (rport->port_state == FC_PORTSTATE_BLOCKED &&
3220 !(rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT)) {
65d430fa
CS
3221 spin_unlock_irqrestore(shost->host_lock, flags);
3222 msleep(1000);
3223 spin_lock_irqsave(shost->host_lock, flags);
3224 }
3225 spin_unlock_irqrestore(shost->host_lock, flags);
2f2eb587
CS
3226
3227 if (rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT)
3228 return FAST_IO_FAIL;
3229
3230 return 0;
65d430fa
CS
3231}
3232EXPORT_SYMBOL(fc_block_scsi_eh);
42e33148 3233
a53eb5e0 3234/**
a30c3f69 3235 * fc_vport_setup - allocates and creates a FC virtual port.
a53eb5e0
JS
3236 * @shost: scsi host the virtual port is connected to.
3237 * @channel: Channel on shost port connected to.
3238 * @pdev: parent device for vport
3239 * @ids: The world wide names, FC4 port roles, etc for
3240 * the virtual port.
3241 * @ret_vport: The pointer to the created vport.
3242 *
3243 * Allocates and creates the vport structure, calls the parent host
3244 * to instantiate the vport, the completes w/ class and sysfs creation.
3245 *
3246 * Notes:
3247 * This routine assumes no locks are held on entry.
eb44820c 3248 */
a53eb5e0 3249static int
a30c3f69 3250fc_vport_setup(struct Scsi_Host *shost, int channel, struct device *pdev,
a53eb5e0
JS
3251 struct fc_vport_identifiers *ids, struct fc_vport **ret_vport)
3252{
3253 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
3254 struct fc_internal *fci = to_fc_internal(shost->transportt);
3255 struct fc_vport *vport;
3256 struct device *dev;
3257 unsigned long flags;
3258 size_t size;
3259 int error;
3260
3261 *ret_vport = NULL;
3262
3263 if ( ! fci->f->vport_create)
3264 return -ENOENT;
3265
3266 size = (sizeof(struct fc_vport) + fci->f->dd_fcvport_size);
3267 vport = kzalloc(size, GFP_KERNEL);
3268 if (unlikely(!vport)) {
cadbd4a5 3269 printk(KERN_ERR "%s: allocation failure\n", __func__);
a53eb5e0
JS
3270 return -ENOMEM;
3271 }
3272
3273 vport->vport_state = FC_VPORT_UNKNOWN;
3274 vport->vport_last_state = FC_VPORT_UNKNOWN;
3275 vport->node_name = ids->node_name;
3276 vport->port_name = ids->port_name;
3277 vport->roles = ids->roles;
3278 vport->vport_type = ids->vport_type;
3279 if (fci->f->dd_fcvport_size)
3280 vport->dd_data = &vport[1];
3281 vport->shost = shost;
3282 vport->channel = channel;
3283 vport->flags = FC_VPORT_CREATING;
9ef3e4a4 3284 INIT_WORK(&vport->vport_delete_work, fc_vport_sched_delete);
a53eb5e0
JS
3285
3286 spin_lock_irqsave(shost->host_lock, flags);
3287
3288 if (fc_host->npiv_vports_inuse >= fc_host->max_npiv_vports) {
3289 spin_unlock_irqrestore(shost->host_lock, flags);
3290 kfree(vport);
3291 return -ENOSPC;
3292 }
3293 fc_host->npiv_vports_inuse++;
3294 vport->number = fc_host->next_vport_number++;
3295 list_add_tail(&vport->peers, &fc_host->vports);
3296 get_device(&shost->shost_gendev); /* for fc_host->vport list */
3297
3298 spin_unlock_irqrestore(shost->host_lock, flags);
3299
3300 dev = &vport->dev;
3301 device_initialize(dev); /* takes self reference */
3302 dev->parent = get_device(pdev); /* takes parent reference */
3303 dev->release = fc_vport_dev_release;
71610f55
KS
3304 dev_set_name(dev, "vport-%d:%d-%d",
3305 shost->host_no, channel, vport->number);
a53eb5e0
JS
3306 transport_setup_device(dev);
3307
3308 error = device_add(dev);
3309 if (error) {
3310 printk(KERN_ERR "FC Virtual Port device_add failed\n");
3311 goto delete_vport;
3312 }
3313 transport_add_device(dev);
3314 transport_configure_device(dev);
3315
3316 error = fci->f->vport_create(vport, ids->disable);
3317 if (error) {
3318 printk(KERN_ERR "FC Virtual Port LLDD Create failed\n");
3319 goto delete_vport_all;
3320 }
3321
3322 /*
3323 * if the parent isn't the physical adapter's Scsi_Host, ensure
3324 * the Scsi_Host at least contains ia symlink to the vport.
3325 */
3326 if (pdev != &shost->shost_gendev) {
3327 error = sysfs_create_link(&shost->shost_gendev.kobj,
71610f55 3328 &dev->kobj, dev_name(dev));
a53eb5e0
JS
3329 if (error)
3330 printk(KERN_ERR
3331 "%s: Cannot create vport symlinks for "
3332 "%s, err=%d\n",
71610f55 3333 __func__, dev_name(dev), error);
a53eb5e0
JS
3334 }
3335 spin_lock_irqsave(shost->host_lock, flags);
3336 vport->flags &= ~FC_VPORT_CREATING;
3337 spin_unlock_irqrestore(shost->host_lock, flags);
3338
3339 dev_printk(KERN_NOTICE, pdev,
71610f55 3340 "%s created via shost%d channel %d\n", dev_name(dev),
a53eb5e0
JS
3341 shost->host_no, channel);
3342
3343 *ret_vport = vport;
3344
3345 return 0;
3346
3347delete_vport_all:
3348 transport_remove_device(dev);
3349 device_del(dev);
3350delete_vport:
3351 transport_destroy_device(dev);
3352 spin_lock_irqsave(shost->host_lock, flags);
3353 list_del(&vport->peers);
3354 put_device(&shost->shost_gendev); /* for fc_host->vport list */
3355 fc_host->npiv_vports_inuse--;
3356 spin_unlock_irqrestore(shost->host_lock, flags);
3357 put_device(dev->parent);
3358 kfree(vport);
3359
3360 return error;
3361}
3362
a30c3f69
AV
3363/**
3364 * fc_vport_create - Admin App or LLDD requests creation of a vport
3365 * @shost: scsi host the virtual port is connected to.
3366 * @channel: channel on shost port connected to.
3367 * @ids: The world wide names, FC4 port roles, etc for
3368 * the virtual port.
3369 *
3370 * Notes:
3371 * This routine assumes no locks are held on entry.
3372 */
3373struct fc_vport *
3374fc_vport_create(struct Scsi_Host *shost, int channel,
3375 struct fc_vport_identifiers *ids)
3376{
3377 int stat;
3378 struct fc_vport *vport;
3379
3380 stat = fc_vport_setup(shost, channel, &shost->shost_gendev,
3381 ids, &vport);
3382 return stat ? NULL : vport;
3383}
3384EXPORT_SYMBOL(fc_vport_create);
a53eb5e0
JS
3385
3386/**
3387 * fc_vport_terminate - Admin App or LLDD requests termination of a vport
3388 * @vport: fc_vport to be terminated
3389 *
3390 * Calls the LLDD vport_delete() function, then deallocates and removes
3391 * the vport from the shost and object tree.
3392 *
3393 * Notes:
3394 * This routine assumes no locks are held on entry.
eb44820c 3395 */
a53eb5e0
JS
3396int
3397fc_vport_terminate(struct fc_vport *vport)
3398{
3399 struct Scsi_Host *shost = vport_to_shost(vport);
3400 struct fc_host_attrs *fc_host = shost_to_fc_host(shost);
3401 struct fc_internal *i = to_fc_internal(shost->transportt);
3402 struct device *dev = &vport->dev;
3403 unsigned long flags;
3404 int stat;
3405
a53eb5e0
JS
3406 if (i->f->vport_delete)
3407 stat = i->f->vport_delete(vport);
3408 else
3409 stat = -ENOENT;
3410
3411 spin_lock_irqsave(shost->host_lock, flags);
3412 vport->flags &= ~FC_VPORT_DELETING;
3413 if (!stat) {
3414 vport->flags |= FC_VPORT_DELETED;
3415 list_del(&vport->peers);
3416 fc_host->npiv_vports_inuse--;
3417 put_device(&shost->shost_gendev); /* for fc_host->vport list */
3418 }
3419 spin_unlock_irqrestore(shost->host_lock, flags);
3420
3421 if (stat)
3422 return stat;
3423
3424 if (dev->parent != &shost->shost_gendev)
71610f55 3425 sysfs_remove_link(&shost->shost_gendev.kobj, dev_name(dev));
a53eb5e0
JS
3426 transport_remove_device(dev);
3427 device_del(dev);
3428 transport_destroy_device(dev);
3429
3430 /*
3431 * Removing our self-reference should mean our
3432 * release function gets called, which will drop the remaining
3433 * parent reference and free the data structure.
3434 */
3435 put_device(dev); /* for self-reference */
3436
3437 return 0; /* SUCCESS */
3438}
3439EXPORT_SYMBOL(fc_vport_terminate);
3440
9ef3e4a4
JS
3441/**
3442 * fc_vport_sched_delete - workq-based delete request for a vport
9ef3e4a4 3443 * @work: vport to be deleted.
eb44820c 3444 */
9ef3e4a4
JS
3445static void
3446fc_vport_sched_delete(struct work_struct *work)
3447{
3448 struct fc_vport *vport =
3449 container_of(work, struct fc_vport, vport_delete_work);
3450 int stat;
3451
3452 stat = fc_vport_terminate(vport);
3453 if (stat)
3454 dev_printk(KERN_ERR, vport->dev.parent,
3455 "%s: %s could not be deleted created via "
cadbd4a5 3456 "shost%d channel %d - error %d\n", __func__,
71610f55 3457 dev_name(&vport->dev), vport->shost->host_no,
9ef3e4a4
JS
3458 vport->channel, stat);
3459}
3460
a53eb5e0 3461
9e4f5e29
JS
3462/*
3463 * BSG support
3464 */
3465
3466
3467/**
3468 * fc_destroy_bsgjob - routine to teardown/delete a fc bsg job
3469 * @job: fc_bsg_job that is to be torn down
3470 */
3471static void
3472fc_destroy_bsgjob(struct fc_bsg_job *job)
3473{
3474 unsigned long flags;
3475
3476 spin_lock_irqsave(&job->job_lock, flags);
3477 if (job->ref_cnt) {
3478 spin_unlock_irqrestore(&job->job_lock, flags);
3479 return;
3480 }
3481 spin_unlock_irqrestore(&job->job_lock, flags);
3482
3483 put_device(job->dev); /* release reference for the request */
3484
3485 kfree(job->request_payload.sg_list);
3486 kfree(job->reply_payload.sg_list);
3487 kfree(job);
3488}
3489
9e4f5e29
JS
3490/**
3491 * fc_bsg_jobdone - completion routine for bsg requests that the LLD has
3492 * completed
3493 * @job: fc_bsg_job that is complete
3494 */
3495static void
3496fc_bsg_jobdone(struct fc_bsg_job *job)
3497{
3498 struct request *req = job->req;
3499 struct request *rsp = req->next_rq;
9e4f5e29
JS
3500 int err;
3501
9e4f5e29 3502 err = job->req->errors = job->reply->result;
b5c6f776 3503
9e4f5e29
JS
3504 if (err < 0)
3505 /* we're only returning the result field in the reply */
3506 job->req->sense_len = sizeof(uint32_t);
3507 else
3508 job->req->sense_len = job->reply_len;
3509
3510 /* we assume all request payload was transferred, residual == 0 */
3511 req->resid_len = 0;
3512
3513 if (rsp) {
3514 WARN_ON(job->reply->reply_payload_rcv_len > rsp->resid_len);
3515
3516 /* set reply (bidi) residual */
3517 rsp->resid_len -= min(job->reply->reply_payload_rcv_len,
3518 rsp->resid_len);
3519 }
b5c6f776
GM
3520 blk_complete_request(req);
3521}
3522
3523/**
3524 * fc_bsg_softirq_done - softirq done routine for destroying the bsg requests
fe5d20c8 3525 * @rq: BSG request that holds the job to be destroyed
b5c6f776
GM
3526 */
3527static void fc_bsg_softirq_done(struct request *rq)
3528{
3529 struct fc_bsg_job *job = rq->special;
3530 unsigned long flags;
9e4f5e29 3531
b5c6f776
GM
3532 spin_lock_irqsave(&job->job_lock, flags);
3533 job->state_flags |= FC_RQST_STATE_DONE;
3534 job->ref_cnt--;
3535 spin_unlock_irqrestore(&job->job_lock, flags);
9e4f5e29 3536
b5c6f776 3537 blk_end_request_all(rq, rq->errors);
9e4f5e29
JS
3538 fc_destroy_bsgjob(job);
3539}
3540
9e4f5e29
JS
3541/**
3542 * fc_bsg_job_timeout - handler for when a bsg request timesout
3543 * @req: request that timed out
3544 */
3545static enum blk_eh_timer_return
3546fc_bsg_job_timeout(struct request *req)
3547{
3548 struct fc_bsg_job *job = (void *) req->special;
3549 struct Scsi_Host *shost = job->shost;
3550 struct fc_internal *i = to_fc_internal(shost->transportt);
3551 unsigned long flags;
3552 int err = 0, done = 0;
3553
3554 if (job->rport && job->rport->port_state == FC_PORTSTATE_BLOCKED)
3555 return BLK_EH_RESET_TIMER;
3556
3557 spin_lock_irqsave(&job->job_lock, flags);
3558 if (job->state_flags & FC_RQST_STATE_DONE)
3559 done = 1;
3560 else
3561 job->ref_cnt++;
3562 spin_unlock_irqrestore(&job->job_lock, flags);
3563
3564 if (!done && i->f->bsg_timeout) {
3565 /* call LLDD to abort the i/o as it has timed out */
3566 err = i->f->bsg_timeout(job);
b8f08645
SS
3567 if (err == -EAGAIN) {
3568 job->ref_cnt--;
3569 return BLK_EH_RESET_TIMER;
3570 } else if (err)
9e4f5e29
JS
3571 printk(KERN_ERR "ERROR: FC BSG request timeout - LLD "
3572 "abort failed with status %d\n", err);
3573 }
3574
9e4f5e29 3575 /* the blk_end_sync_io() doesn't check the error */
47e7e89e
GM
3576 if (done)
3577 return BLK_EH_NOT_HANDLED;
3578 else
3579 return BLK_EH_HANDLED;
9e4f5e29
JS
3580}
3581
9e4f5e29
JS
3582static int
3583fc_bsg_map_buffer(struct fc_bsg_buffer *buf, struct request *req)
3584{
3585 size_t sz = (sizeof(struct scatterlist) * req->nr_phys_segments);
3586
3587 BUG_ON(!req->nr_phys_segments);
3588
3589 buf->sg_list = kzalloc(sz, GFP_KERNEL);
3590 if (!buf->sg_list)
3591 return -ENOMEM;
3592 sg_init_table(buf->sg_list, req->nr_phys_segments);
3593 buf->sg_cnt = blk_rq_map_sg(req->q, req, buf->sg_list);
3594 buf->payload_len = blk_rq_bytes(req);
3595 return 0;
3596}
3597
3598
3599/**
3600 * fc_req_to_bsgjob - Allocate/create the fc_bsg_job structure for the
3601 * bsg request
3602 * @shost: SCSI Host corresponding to the bsg object
3603 * @rport: (optional) FC Remote Port corresponding to the bsg object
3604 * @req: BSG request that needs a job structure
3605 */
3606static int
3607fc_req_to_bsgjob(struct Scsi_Host *shost, struct fc_rport *rport,
3608 struct request *req)
3609{
3610 struct fc_internal *i = to_fc_internal(shost->transportt);
3611 struct request *rsp = req->next_rq;
3612 struct fc_bsg_job *job;
3613 int ret;
3614
3615 BUG_ON(req->special);
3616
3617 job = kzalloc(sizeof(struct fc_bsg_job) + i->f->dd_bsg_size,
3618 GFP_KERNEL);
3619 if (!job)
3620 return -ENOMEM;
3621
3622 /*
3623 * Note: this is a bit silly.
3624 * The request gets formatted as a SGIO v4 ioctl request, which
3625 * then gets reformatted as a blk request, which then gets
3626 * reformatted as a fc bsg request. And on completion, we have
3627 * to wrap return results such that SGIO v4 thinks it was a scsi
3628 * status. I hope this was all worth it.
3629 */
3630
3631 req->special = job;
3632 job->shost = shost;
3633 job->rport = rport;
3634 job->req = req;
3635 if (i->f->dd_bsg_size)
3636 job->dd_data = (void *)&job[1];
3637 spin_lock_init(&job->job_lock);
3638 job->request = (struct fc_bsg_request *)req->cmd;
3639 job->request_len = req->cmd_len;
3640 job->reply = req->sense;
3641 job->reply_len = SCSI_SENSE_BUFFERSIZE; /* Size of sense buffer
3642 * allocated */
3643 if (req->bio) {
3644 ret = fc_bsg_map_buffer(&job->request_payload, req);
3645 if (ret)
3646 goto failjob_rls_job;
3647 }
3648 if (rsp && rsp->bio) {
3649 ret = fc_bsg_map_buffer(&job->reply_payload, rsp);
3650 if (ret)
3651 goto failjob_rls_rqst_payload;
3652 }
3653 job->job_done = fc_bsg_jobdone;
3654 if (rport)
3655 job->dev = &rport->dev;
3656 else
3657 job->dev = &shost->shost_gendev;
3658 get_device(job->dev); /* take a reference for the request */
3659
3660 job->ref_cnt = 1;
3661
3662 return 0;
3663
3664
3665failjob_rls_rqst_payload:
3666 kfree(job->request_payload.sg_list);
3667failjob_rls_job:
3668 kfree(job);
3669 return -ENOMEM;
3670}
3671
3672
3673enum fc_dispatch_result {
3674 FC_DISPATCH_BREAK, /* on return, q is locked, break from q loop */
3675 FC_DISPATCH_LOCKED, /* on return, q is locked, continue on */
3676 FC_DISPATCH_UNLOCKED, /* on return, q is unlocked, continue on */
3677};
3678
3679
3680/**
3681 * fc_bsg_host_dispatch - process fc host bsg requests and dispatch to LLDD
5415907a 3682 * @q: fc host request queue
9e4f5e29
JS
3683 * @shost: scsi host rport attached to
3684 * @job: bsg job to be processed
3685 */
3686static enum fc_dispatch_result
3687fc_bsg_host_dispatch(struct request_queue *q, struct Scsi_Host *shost,
3688 struct fc_bsg_job *job)
3689{
3690 struct fc_internal *i = to_fc_internal(shost->transportt);
3691 int cmdlen = sizeof(uint32_t); /* start with length of msgcode */
3692 int ret;
3693
3694 /* Validate the host command */
3695 switch (job->request->msgcode) {
3696 case FC_BSG_HST_ADD_RPORT:
3697 cmdlen += sizeof(struct fc_bsg_host_add_rport);
3698 break;
3699
3700 case FC_BSG_HST_DEL_RPORT:
3701 cmdlen += sizeof(struct fc_bsg_host_del_rport);
3702 break;
3703
3704 case FC_BSG_HST_ELS_NOLOGIN:
3705 cmdlen += sizeof(struct fc_bsg_host_els);
3706 /* there better be a xmt and rcv payloads */
3707 if ((!job->request_payload.payload_len) ||
3708 (!job->reply_payload.payload_len)) {
3709 ret = -EINVAL;
3710 goto fail_host_msg;
3711 }
3712 break;
3713
3714 case FC_BSG_HST_CT:
3715 cmdlen += sizeof(struct fc_bsg_host_ct);
3716 /* there better be xmt and rcv payloads */
3717 if ((!job->request_payload.payload_len) ||
3718 (!job->reply_payload.payload_len)) {
3719 ret = -EINVAL;
3720 goto fail_host_msg;
3721 }
3722 break;
3723
3724 case FC_BSG_HST_VENDOR:
3725 cmdlen += sizeof(struct fc_bsg_host_vendor);
3726 if ((shost->hostt->vendor_id == 0L) ||
3727 (job->request->rqst_data.h_vendor.vendor_id !=
3728 shost->hostt->vendor_id)) {
3729 ret = -ESRCH;
3730 goto fail_host_msg;
3731 }
3732 break;
3733
3734 default:
3735 ret = -EBADR;
3736 goto fail_host_msg;
3737 }
3738
3739 /* check if we really have all the request data needed */
3740 if (job->request_len < cmdlen) {
3741 ret = -ENOMSG;
3742 goto fail_host_msg;
3743 }
3744
3745 ret = i->f->bsg_request(job);
3746 if (!ret)
3747 return FC_DISPATCH_UNLOCKED;
3748
3749fail_host_msg:
3750 /* return the errno failure code as the only status */
3751 BUG_ON(job->reply_len < sizeof(uint32_t));
61ec33eb 3752 job->reply->reply_payload_rcv_len = 0;
9e4f5e29
JS
3753 job->reply->result = ret;
3754 job->reply_len = sizeof(uint32_t);
3755 fc_bsg_jobdone(job);
3756 return FC_DISPATCH_UNLOCKED;
3757}
3758
3759
3760/*
3761 * fc_bsg_goose_queue - restart rport queue in case it was stopped
3762 * @rport: rport to be restarted
3763 */
3764static void
3765fc_bsg_goose_queue(struct fc_rport *rport)
3766{
3767 int flagset;
39562e78 3768 unsigned long flags;
9e4f5e29
JS
3769
3770 if (!rport->rqst_q)
3771 return;
3772
3773 get_device(&rport->dev);
3774
39562e78 3775 spin_lock_irqsave(rport->rqst_q->queue_lock, flags);
9e4f5e29
JS
3776 flagset = test_bit(QUEUE_FLAG_REENTER, &rport->rqst_q->queue_flags) &&
3777 !test_bit(QUEUE_FLAG_REENTER, &rport->rqst_q->queue_flags);
3778 if (flagset)
3779 queue_flag_set(QUEUE_FLAG_REENTER, rport->rqst_q);
3780 __blk_run_queue(rport->rqst_q);
3781 if (flagset)
3782 queue_flag_clear(QUEUE_FLAG_REENTER, rport->rqst_q);
39562e78 3783 spin_unlock_irqrestore(rport->rqst_q->queue_lock, flags);
9e4f5e29
JS
3784
3785 put_device(&rport->dev);
3786}
3787
3788
3789/**
3790 * fc_bsg_rport_dispatch - process rport bsg requests and dispatch to LLDD
5415907a 3791 * @q: rport request queue
9e4f5e29
JS
3792 * @shost: scsi host rport attached to
3793 * @rport: rport request destined to
3794 * @job: bsg job to be processed
3795 */
3796static enum fc_dispatch_result
3797fc_bsg_rport_dispatch(struct request_queue *q, struct Scsi_Host *shost,
3798 struct fc_rport *rport, struct fc_bsg_job *job)
3799{
3800 struct fc_internal *i = to_fc_internal(shost->transportt);
3801 int cmdlen = sizeof(uint32_t); /* start with length of msgcode */
3802 int ret;
3803
3804 /* Validate the rport command */
3805 switch (job->request->msgcode) {
3806 case FC_BSG_RPT_ELS:
3807 cmdlen += sizeof(struct fc_bsg_rport_els);
3808 goto check_bidi;
3809
3810 case FC_BSG_RPT_CT:
3811 cmdlen += sizeof(struct fc_bsg_rport_ct);
3812check_bidi:
3813 /* there better be xmt and rcv payloads */
3814 if ((!job->request_payload.payload_len) ||
3815 (!job->reply_payload.payload_len)) {
3816 ret = -EINVAL;
3817 goto fail_rport_msg;
3818 }
3819 break;
3820 default:
3821 ret = -EBADR;
3822 goto fail_rport_msg;
3823 }
3824
3825 /* check if we really have all the request data needed */
3826 if (job->request_len < cmdlen) {
3827 ret = -ENOMSG;
3828 goto fail_rport_msg;
3829 }
3830
3831 ret = i->f->bsg_request(job);
3832 if (!ret)
3833 return FC_DISPATCH_UNLOCKED;
3834
3835fail_rport_msg:
3836 /* return the errno failure code as the only status */
3837 BUG_ON(job->reply_len < sizeof(uint32_t));
61ec33eb 3838 job->reply->reply_payload_rcv_len = 0;
9e4f5e29
JS
3839 job->reply->result = ret;
3840 job->reply_len = sizeof(uint32_t);
3841 fc_bsg_jobdone(job);
3842 return FC_DISPATCH_UNLOCKED;
3843}
3844
3845
3846/**
3847 * fc_bsg_request_handler - generic handler for bsg requests
3848 * @q: request queue to manage
3849 * @shost: Scsi_Host related to the bsg object
3850 * @rport: FC remote port related to the bsg object (optional)
3851 * @dev: device structure for bsg object
3852 */
3853static void
3854fc_bsg_request_handler(struct request_queue *q, struct Scsi_Host *shost,
3855 struct fc_rport *rport, struct device *dev)
3856{
3857 struct request *req;
3858 struct fc_bsg_job *job;
3859 enum fc_dispatch_result ret;
3860
3861 if (!get_device(dev))
3862 return;
3863
3864 while (!blk_queue_plugged(q)) {
2bc1c59d
MC
3865 if (rport && (rport->port_state == FC_PORTSTATE_BLOCKED) &&
3866 !(rport->flags & FC_RPORT_FAST_FAIL_TIMEDOUT))
3867 break;
9e4f5e29
JS
3868
3869 req = blk_fetch_request(q);
3870 if (!req)
3871 break;
3872
3873 if (rport && (rport->port_state != FC_PORTSTATE_ONLINE)) {
3874 req->errors = -ENXIO;
3875 spin_unlock_irq(q->queue_lock);
d88a714b 3876 blk_end_request_all(req, -ENXIO);
9e4f5e29
JS
3877 spin_lock_irq(q->queue_lock);
3878 continue;
3879 }
3880
3881 spin_unlock_irq(q->queue_lock);
3882
3883 ret = fc_req_to_bsgjob(shost, rport, req);
3884 if (ret) {
3885 req->errors = ret;
d88a714b 3886 blk_end_request_all(req, ret);
9e4f5e29
JS
3887 spin_lock_irq(q->queue_lock);
3888 continue;
3889 }
3890
3891 job = req->special;
3892
3893 /* check if we have the msgcode value at least */
3894 if (job->request_len < sizeof(uint32_t)) {
3895 BUG_ON(job->reply_len < sizeof(uint32_t));
61ec33eb 3896 job->reply->reply_payload_rcv_len = 0;
9e4f5e29
JS
3897 job->reply->result = -ENOMSG;
3898 job->reply_len = sizeof(uint32_t);
3899 fc_bsg_jobdone(job);
3900 spin_lock_irq(q->queue_lock);
3901 continue;
3902 }
3903
3904 /* the dispatch routines will unlock the queue_lock */
3905 if (rport)
3906 ret = fc_bsg_rport_dispatch(q, shost, rport, job);
3907 else
3908 ret = fc_bsg_host_dispatch(q, shost, job);
3909
3910 /* did dispatcher hit state that can't process any more */
3911 if (ret == FC_DISPATCH_BREAK)
3912 break;
3913
3914 /* did dispatcher had released the lock */
3915 if (ret == FC_DISPATCH_UNLOCKED)
3916 spin_lock_irq(q->queue_lock);
3917 }
3918
3919 spin_unlock_irq(q->queue_lock);
3920 put_device(dev);
3921 spin_lock_irq(q->queue_lock);
3922}
3923
3924
3925/**
3926 * fc_bsg_host_handler - handler for bsg requests for a fc host
3927 * @q: fc host request queue
3928 */
3929static void
3930fc_bsg_host_handler(struct request_queue *q)
3931{
3932 struct Scsi_Host *shost = q->queuedata;
3933
3934 fc_bsg_request_handler(q, shost, NULL, &shost->shost_gendev);
3935}
3936
3937
3938/**
3939 * fc_bsg_rport_handler - handler for bsg requests for a fc rport
3940 * @q: rport request queue
3941 */
3942static void
3943fc_bsg_rport_handler(struct request_queue *q)
3944{
3945 struct fc_rport *rport = q->queuedata;
3946 struct Scsi_Host *shost = rport_to_shost(rport);
3947
3948 fc_bsg_request_handler(q, shost, rport, &rport->dev);
3949}
3950
3951
3952/**
3953 * fc_bsg_hostadd - Create and add the bsg hooks so we can receive requests
3954 * @shost: shost for fc_host
3955 * @fc_host: fc_host adding the structures to
3956 */
3957static int
3958fc_bsg_hostadd(struct Scsi_Host *shost, struct fc_host_attrs *fc_host)
3959{
3960 struct device *dev = &shost->shost_gendev;
3961 struct fc_internal *i = to_fc_internal(shost->transportt);
3962 struct request_queue *q;
3963 int err;
3c559ea8 3964 char bsg_name[20];
9e4f5e29
JS
3965
3966 fc_host->rqst_q = NULL;
3967
3968 if (!i->f->bsg_request)
3969 return -ENOTSUPP;
3970
3971 snprintf(bsg_name, sizeof(bsg_name),
3972 "fc_host%d", shost->host_no);
3973
3974 q = __scsi_alloc_queue(shost, fc_bsg_host_handler);
3975 if (!q) {
3976 printk(KERN_ERR "fc_host%d: bsg interface failed to "
3977 "initialize - no request queue\n",
3978 shost->host_no);
3979 return -ENOMEM;
3980 }
3981
3982 q->queuedata = shost;
3983 queue_flag_set_unlocked(QUEUE_FLAG_BIDI, q);
b5c6f776 3984 blk_queue_softirq_done(q, fc_bsg_softirq_done);
9e4f5e29
JS
3985 blk_queue_rq_timed_out(q, fc_bsg_job_timeout);
3986 blk_queue_rq_timeout(q, FC_DEFAULT_BSG_TIMEOUT);
3987
3988 err = bsg_register_queue(q, dev, bsg_name, NULL);
3989 if (err) {
3990 printk(KERN_ERR "fc_host%d: bsg interface failed to "
3991 "initialize - register queue\n",
3992 shost->host_no);
3993 blk_cleanup_queue(q);
3994 return err;
3995 }
3996
3997 fc_host->rqst_q = q;
3998 return 0;
3999}
4000
4001
4002/**
4003 * fc_bsg_rportadd - Create and add the bsg hooks so we can receive requests
4004 * @shost: shost that rport is attached to
4005 * @rport: rport that the bsg hooks are being attached to
4006 */
4007static int
4008fc_bsg_rportadd(struct Scsi_Host *shost, struct fc_rport *rport)
4009{
4010 struct device *dev = &rport->dev;
4011 struct fc_internal *i = to_fc_internal(shost->transportt);
4012 struct request_queue *q;
4013 int err;
4014
4015 rport->rqst_q = NULL;
4016
4017 if (!i->f->bsg_request)
4018 return -ENOTSUPP;
4019
4020 q = __scsi_alloc_queue(shost, fc_bsg_rport_handler);
4021 if (!q) {
4022 printk(KERN_ERR "%s: bsg interface failed to "
4023 "initialize - no request queue\n",
4024 dev->kobj.name);
4025 return -ENOMEM;
4026 }
4027
4028 q->queuedata = rport;
4029 queue_flag_set_unlocked(QUEUE_FLAG_BIDI, q);
b5c6f776 4030 blk_queue_softirq_done(q, fc_bsg_softirq_done);
9e4f5e29
JS
4031 blk_queue_rq_timed_out(q, fc_bsg_job_timeout);
4032 blk_queue_rq_timeout(q, BLK_DEFAULT_SG_TIMEOUT);
4033
4034 err = bsg_register_queue(q, dev, NULL, NULL);
4035 if (err) {
4036 printk(KERN_ERR "%s: bsg interface failed to "
4037 "initialize - register queue\n",
4038 dev->kobj.name);
4039 blk_cleanup_queue(q);
4040 return err;
4041 }
4042
4043 rport->rqst_q = q;
4044 return 0;
4045}
4046
4047
4048/**
4049 * fc_bsg_remove - Deletes the bsg hooks on fchosts/rports
4050 * @q: the request_queue that is to be torn down.
4051 */
4052static void
4053fc_bsg_remove(struct request_queue *q)
4054{
4055 if (q) {
4056 bsg_unregister_queue(q);
4057 blk_cleanup_queue(q);
4058 }
4059}
4060
4061
9ef3e4a4
JS
4062/* Original Author: Martin Hicks */
4063MODULE_AUTHOR("James Smart");
1da177e4
LT
4064MODULE_DESCRIPTION("FC Transport Attributes");
4065MODULE_LICENSE("GPL");
4066
4067module_init(fc_transport_init);
4068module_exit(fc_transport_exit);
This page took 0.88277 seconds and 5 git commands to generate.