blob: ff598cd68b2d0bde11c99c412ca0ea70a90d6ece [file] [log] [blame]
Christof Schmitt24073b42008-06-10 18:20:54 +02001/*
2 * zfcp device driver
3 *
4 * Fibre Channel related functions for the zfcp device driver.
5 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02006 * Copyright IBM Corp. 2008, 2010
Christof Schmitt24073b42008-06-10 18:20:54 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Christof Schmitt9d05ce22009-11-24 16:54:09 +010012#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt038d9442011-02-22 19:54:48 +010014#include <linux/utsname.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010015#include <scsi/fc/fc_els.h>
16#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020017#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010018#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020019
Christof Schmitt087897e2011-02-22 19:54:41 +010020struct kmem_cache *zfcp_fc_req_cache;
21
Christof Schmitt9d05ce22009-11-24 16:54:09 +010022static u32 zfcp_fc_rscn_range_mask[] = {
23 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
24 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
25 [ELS_ADDR_FMT_DOM] = 0xFF0000,
26 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010027};
28
Steffen Maier43f60cb2012-09-04 15:23:35 +020029static bool no_auto_port_rescan;
30module_param_named(no_auto_port_rescan, no_auto_port_rescan, bool, 0600);
31MODULE_PARM_DESC(no_auto_port_rescan,
32 "no automatic port_rescan (default off)");
33
34void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter)
35{
36 if (no_auto_port_rescan)
37 return;
38
39 queue_work(adapter->work_queue, &adapter->scan_work);
40}
41
42void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter)
43{
44 if (!no_auto_port_rescan)
45 return;
46
47 queue_work(adapter->work_queue, &adapter->scan_work);
48}
49
Sven Schuetz2d1e5472010-07-16 15:37:39 +020050/**
51 * zfcp_fc_post_event - post event to userspace via fc_transport
52 * @work: work struct with enqueued events
53 */
54void zfcp_fc_post_event(struct work_struct *work)
55{
56 struct zfcp_fc_event *event = NULL, *tmp = NULL;
57 LIST_HEAD(tmp_lh);
58 struct zfcp_fc_events *events = container_of(work,
59 struct zfcp_fc_events, work);
60 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
61 events);
62
63 spin_lock_bh(&events->list_lock);
64 list_splice_init(&events->list, &tmp_lh);
65 spin_unlock_bh(&events->list_lock);
66
67 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
68 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
69 event->code, event->data);
70 list_del(&event->list);
71 kfree(event);
72 }
73
74}
75
76/**
77 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
78 * @adapter: The adapter where to enqueue the event
79 * @event_code: The event code (as defined in fc_host_event_code in
80 * scsi_transport_fc.h)
81 * @event_data: The event data (e.g. n_port page in case of els)
82 */
83void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
84 enum fc_host_event_code event_code, u32 event_data)
85{
86 struct zfcp_fc_event *event;
87
88 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
89 if (!event)
90 return;
91
92 event->code = event_code;
93 event->data = event_data;
94
95 spin_lock(&adapter->events.list_lock);
96 list_add_tail(&event->list, &adapter->events.list);
97 spin_unlock(&adapter->events.list_lock);
98
99 queue_work(adapter->work_queue, &adapter->events.work);
100}
101
Christof Schmittbd0072e2009-11-24 16:54:11 +0100102static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200103{
104 if (mutex_lock_interruptible(&wka_port->mutex))
105 return -ERESTARTSYS;
106
Christof Schmittbd0072e2009-11-24 16:54:11 +0100107 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
108 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
109 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200110 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +0100111 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200112 }
113
114 mutex_unlock(&wka_port->mutex);
115
Swen Schillig27f492c2009-07-13 15:06:13 +0200116 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +0100117 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
118 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200119
Christof Schmittbd0072e2009-11-24 16:54:11 +0100120 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200121 atomic_inc(&wka_port->refcount);
122 return 0;
123 }
124 return -EIO;
125}
126
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200127static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200128{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700129 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100130 struct zfcp_fc_wka_port *wka_port =
131 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200132
Swen Schillig5ab944f2008-10-01 12:42:17 +0200133 mutex_lock(&wka_port->mutex);
134 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100135 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200136 goto out;
137
Christof Schmittbd0072e2009-11-24 16:54:11 +0100138 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200139 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100140 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200141 wake_up(&wka_port->completion_wq);
142 }
143out:
144 mutex_unlock(&wka_port->mutex);
145}
146
Christof Schmittbd0072e2009-11-24 16:54:11 +0100147static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200148{
149 if (atomic_dec_return(&wka_port->refcount) != 0)
150 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200151 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200152 schedule_delayed_work(&wka_port->work, HZ / 100);
153}
154
Christof Schmittbd0072e2009-11-24 16:54:11 +0100155static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200156 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200157{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200158 init_waitqueue_head(&wka_port->completion_wq);
159
160 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200161 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200162
Christof Schmittbd0072e2009-11-24 16:54:11 +0100163 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200164 atomic_set(&wka_port->refcount, 0);
165 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200166 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200167}
168
Christof Schmittbd0072e2009-11-24 16:54:11 +0100169static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200170{
171 cancel_delayed_work_sync(&wka->work);
172 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100173 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200174 mutex_unlock(&wka->mutex);
175}
176
Christof Schmittbd0072e2009-11-24 16:54:11 +0100177void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200178{
Swen Schilligf3450c72009-11-24 16:53:59 +0100179 if (!gs)
180 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200181 zfcp_fc_wka_port_force_offline(&gs->ms);
182 zfcp_fc_wka_port_force_offline(&gs->ts);
183 zfcp_fc_wka_port_force_offline(&gs->ds);
184 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200185}
186
Christof Schmitt24073b42008-06-10 18:20:54 +0200187static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100188 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200189{
190 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100191 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200192 struct zfcp_port *port;
193
Swen Schilligecf0c772009-11-24 16:53:58 +0100194 read_lock_irqsave(&adapter->port_list_lock, flags);
195 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100196 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200197 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200198 if (!port->d_id)
199 zfcp_erp_port_reopen(port,
200 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100201 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200202 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100203 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200204}
205
206static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
207{
208 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100209 struct fc_els_rscn *head;
210 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200211 u16 i;
212 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100213 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200214
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100215 head = (struct fc_els_rscn *) status_buffer->payload.data;
216 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200217
218 /* see FC-FS */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100219 no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200220
221 for (i = 1; i < no_entries; i++) {
222 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100223 page++;
224 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
225 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
226 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200227 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
228 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200229 }
Steffen Maier43f60cb2012-09-04 15:23:35 +0200230 zfcp_fc_conditional_port_scan(fsf_req->adapter);
Christof Schmitt24073b42008-06-10 18:20:54 +0200231}
232
Swen Schillig7ba58c92008-10-01 12:42:18 +0200233static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200234{
Swen Schilligecf0c772009-11-24 16:53:58 +0100235 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200236 struct zfcp_adapter *adapter = req->adapter;
237 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200238
Swen Schilligecf0c772009-11-24 16:53:58 +0100239 read_lock_irqsave(&adapter->port_list_lock, flags);
240 list_for_each_entry(port, &adapter->port_list, list)
241 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100242 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200243 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100244 }
245 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200246}
247
248static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
249{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100250 struct fsf_status_read_buffer *status_buffer;
251 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200252
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100253 status_buffer = (struct fsf_status_read_buffer *) req->data;
254 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
255 zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200256}
257
258static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
259{
260 struct fsf_status_read_buffer *status_buffer =
261 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100262 struct fc_els_logo *logo =
263 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200264
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100265 zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200266}
267
268/**
269 * zfcp_fc_incoming_els - handle incoming ELS
270 * @fsf_req - request which contains incoming ELS
271 */
272void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
273{
274 struct fsf_status_read_buffer *status_buffer =
275 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200276 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200277
Swen Schillig2c55b752010-12-02 15:16:13 +0100278 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100279 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200280 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100281 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200282 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100283 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200284 zfcp_fc_incoming_rscn(fsf_req);
285}
286
Christof Schmittfcf7e612011-02-22 19:54:42 +0100287static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200288{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100289 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
290 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200291
Christof Schmittfcf7e612011-02-22 19:54:42 +0100292 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200293 return;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100294 if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200295 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100296
Christof Schmitt24073b42008-06-10 18:20:54 +0200297 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100298 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200299}
300
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100301static void zfcp_fc_complete(void *data)
302{
303 complete(data);
304}
305
Christof Schmittfcf7e612011-02-22 19:54:42 +0100306static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
307{
308 ct_hdr->ct_rev = FC_CT_REV;
309 ct_hdr->ct_fs_type = FC_FST_DIR;
310 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
311 ct_hdr->ct_cmd = cmd;
312 ct_hdr->ct_mr_size = mr_size / 4;
313}
314
Christof Schmitt799b76d2009-08-18 15:43:20 +0200315static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100316 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200317{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200318 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100319 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100320 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
321 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200322 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200323
324 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100325 fc_req->ct_els.port = port;
326 fc_req->ct_els.handler = zfcp_fc_complete;
327 fc_req->ct_els.handler_data = &completion;
328 fc_req->ct_els.req = &fc_req->sg_req;
329 fc_req->ct_els.resp = &fc_req->sg_rsp;
330 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
331 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200332
Christof Schmittfcf7e612011-02-22 19:54:42 +0100333 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
334 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
335 gid_pn_req->gid_pn.fn_wwpn = port->wwpn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200336
Christof Schmittfcf7e612011-02-22 19:54:42 +0100337 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100338 adapter->pool.gid_pn_req,
339 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100340 if (!ret) {
341 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100342 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100343 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200344 return ret;
345}
346
347/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100348 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200349 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200350 * return: -ENOMEM on error, 0 otherwise
351 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200352static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200353{
354 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100355 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200356 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200357
Christof Schmittfcf7e612011-02-22 19:54:42 +0100358 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
359 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200360 return -ENOMEM;
361
Christof Schmittfcf7e612011-02-22 19:54:42 +0100362 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200363
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200364 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200365 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200366 goto out;
367
Christof Schmittfcf7e612011-02-22 19:54:42 +0100368 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200369
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200370 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200371out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100372 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200373 return ret;
374}
375
Christof Schmitt799b76d2009-08-18 15:43:20 +0200376void zfcp_fc_port_did_lookup(struct work_struct *work)
377{
378 int ret;
379 struct zfcp_port *port = container_of(work, struct zfcp_port,
380 gid_pn_work);
381
382 ret = zfcp_fc_ns_gid_pn(port);
383 if (ret) {
384 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100385 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200386 goto out;
387 }
388
389 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200390 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200391 goto out;
392 }
393
Swen Schilligea4a3a62010-12-02 15:16:16 +0100394 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200395out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100396 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200397}
398
Christof Schmitt24073b42008-06-10 18:20:54 +0200399/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200400 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
401 * @port: The zfcp_port to lookup the d_id for.
402 */
403void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
404{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100405 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200406 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100407 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200408}
409
410/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200411 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
412 * @port: zfcp_port structure
413 * @plogi: plogi payload
414 *
415 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
416 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100417void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200418{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100419 if (plogi->fl_wwpn != port->wwpn) {
420 port->d_id = 0;
421 dev_warn(&port->adapter->ccw_device->dev,
422 "A port opened with WWPN 0x%016Lx returned data that "
423 "identifies it as WWPN 0x%016Lx\n",
424 (unsigned long long) port->wwpn,
425 (unsigned long long) plogi->fl_wwpn);
426 return;
427 }
428
429 port->wwnn = plogi->fl_wwnn;
430 port->maxframe_size = plogi->fl_csp.sp_bb_data;
431
432 if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200433 port->supported_classes |= FC_COS_CLASS1;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100434 if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200435 port->supported_classes |= FC_COS_CLASS2;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100436 if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200437 port->supported_classes |= FC_COS_CLASS3;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100438 if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200439 port->supported_classes |= FC_COS_CLASS4;
440}
441
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100442static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200443{
Christof Schmitt087897e2011-02-22 19:54:41 +0100444 struct zfcp_fc_req *fc_req = data;
445 struct zfcp_port *port = fc_req->ct_els.port;
446 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200447
Christof Schmitt087897e2011-02-22 19:54:41 +0100448 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200449 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200450 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100451 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200452 goto out;
453 }
454
455 if (!port->wwnn)
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100456 port->wwnn = adisc_resp->adisc_wwnn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200457
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100458 if ((port->wwpn != adisc_resp->adisc_wwpn) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100459 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100460 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100461 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100462 goto out;
463 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200464
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100465 /* port is good, unblock rport without going through erp */
466 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200467 out:
Christof Schmitt14e242e2009-08-18 15:43:11 +0200468 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100469 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100470 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200471}
472
473static int zfcp_fc_adisc(struct zfcp_port *port)
474{
Christof Schmitt087897e2011-02-22 19:54:41 +0100475 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200476 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100477 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100478 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200479
Christof Schmitt087897e2011-02-22 19:54:41 +0100480 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
481 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200482 return -ENOMEM;
483
Christof Schmitt087897e2011-02-22 19:54:41 +0100484 fc_req->ct_els.port = port;
485 fc_req->ct_els.req = &fc_req->sg_req;
486 fc_req->ct_els.resp = &fc_req->sg_rsp;
487 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100488 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100489 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100490 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200491
Christof Schmitt087897e2011-02-22 19:54:41 +0100492 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
493 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200494
495 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
496 without FC-AL-2 capability, so we don't set it */
Christof Schmitt087897e2011-02-22 19:54:41 +0100497 fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost);
498 fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost);
499 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
500 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200501
Christof Schmitt087897e2011-02-22 19:54:41 +0100502 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100503 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100504 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100505 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100506
507 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200508}
509
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100510void zfcp_fc_link_test_work(struct work_struct *work)
511{
512 struct zfcp_port *port =
513 container_of(work, struct zfcp_port, test_link_work);
514 int retval;
515
Christof Schmitt615f59e2010-02-17 11:18:56 +0100516 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100517 port->rport_task = RPORT_DEL;
518 zfcp_scsi_rport_work(&port->rport_work);
519
Christof Schmitt14e242e2009-08-18 15:43:11 +0200520 /* only issue one test command at one time per port */
521 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
522 goto out;
523
524 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
525
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100526 retval = zfcp_fc_adisc(port);
527 if (retval == 0)
528 return;
529
530 /* send of ADISC was not possible */
Christof Schmitt14e242e2009-08-18 15:43:11 +0200531 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100532 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100533
Christof Schmitt14e242e2009-08-18 15:43:11 +0200534out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100535 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100536}
537
Christof Schmitt24073b42008-06-10 18:20:54 +0200538/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200539 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200540 * @port: port to be tested
541 *
542 * Test status of a link to a remote port using the ELS command ADISC.
543 * If there is a problem with the remote port, error recovery steps
544 * will be triggered.
545 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200546void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200547{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100548 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200549 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100550 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200551}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200552
Christof Schmittf9773222011-02-22 19:54:43 +0100553static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200554{
Christof Schmittf9773222011-02-22 19:54:43 +0100555 struct zfcp_fc_req *fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200556
Christof Schmittf9773222011-02-22 19:54:43 +0100557 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
558 if (!fc_req)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200559 return NULL;
560
Christof Schmittf9773222011-02-22 19:54:43 +0100561 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
562 kmem_cache_free(zfcp_fc_req_cache, fc_req);
563 return NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200564 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200565
Christof Schmittf9773222011-02-22 19:54:43 +0100566 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
567 sizeof(struct zfcp_fc_gpn_ft_req));
568
569 return fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200570}
571
Christof Schmittf9773222011-02-22 19:54:43 +0100572static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200573 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200574{
Christof Schmittf9773222011-02-22 19:54:43 +0100575 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
576 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100577 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200578 int ret;
579
Christof Schmittf9773222011-02-22 19:54:43 +0100580 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100581 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200582
Christof Schmittf9773222011-02-22 19:54:43 +0100583 ct_els->handler = zfcp_fc_complete;
584 ct_els->handler_data = &completion;
585 ct_els->req = &fc_req->sg_req;
586 ct_els->resp = &fc_req->sg_rsp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200587
Christof Schmittf9773222011-02-22 19:54:43 +0100588 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
Swen Schillig51375ee2010-01-14 17:19:02 +0100589 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200590 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100591 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200592 return ret;
593}
594
Swen Schilligf3450c72009-11-24 16:53:59 +0100595static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200596{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200597 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
598 return;
599
Swen Schilligcc8c2822008-06-10 18:21:00 +0200600 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
601
Christof Schmitt04062892008-10-01 12:42:20 +0200602 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100603 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200604 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100605
Swen Schilligf3450c72009-11-24 16:53:59 +0100606 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200607}
608
Christof Schmittf9773222011-02-22 19:54:43 +0100609static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100610 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200611{
Christof Schmittf9773222011-02-22 19:54:43 +0100612 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
613 struct scatterlist *sg = &fc_req->sg_rsp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100614 struct fc_ct_hdr *hdr = sg_virt(sg);
615 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200616 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100617 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100618 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200619 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200620 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200621
Christof Schmittf9773222011-02-22 19:54:43 +0100622 if (ct_els->status)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200623 return -EIO;
624
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100625 if (hdr->ct_cmd != FC_FS_ACC) {
626 if (hdr->ct_reason == FC_BA_RJT_UNABLE)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200627 return -EAGAIN; /* might be a temporary condition */
628 return -EIO;
629 }
630
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100631 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100632 dev_warn(&adapter->ccw_device->dev,
633 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100634 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200635 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100636 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200637
Swen Schilligcc8c2822008-06-10 18:21:00 +0200638 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100639 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100640 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200641 acc++;
642 else
643 acc = sg_virt(++sg);
644
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100645 last = acc->fp_flags & FC_NS_FID_LAST;
646 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200647
Swen Schillig5ab944f2008-10-01 12:42:17 +0200648 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100649 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200650 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200651 /* skip the adapter's port and known remote ports */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100652 if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200653 continue;
654
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100655 port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200656 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100657 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100658 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100659 else if (PTR_ERR(port) != -EEXIST)
660 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200661 }
662
663 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100664 write_lock_irqsave(&adapter->port_list_lock, flags);
665 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100666 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100667 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100668
669 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100670 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100671 zfcp_device_unregister(&port->dev, &zfcp_sysfs_port_attrs);
Swen Schilligf3450c72009-11-24 16:53:59 +0100672 }
673
Swen Schilligcc8c2822008-06-10 18:21:00 +0200674 return ret;
675}
676
677/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200678 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100679 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200680 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100681void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200682{
Swen Schillig9eae07e2009-11-24 16:54:06 +0100683 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
684 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200685 int ret, i;
Christof Schmittf9773222011-02-22 19:54:43 +0100686 struct zfcp_fc_req *fc_req;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100687 int chain, max_entries, buf_num, max_bytes;
688
689 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100690 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
691 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
692 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200693
Swen Schillig306b6ed2009-04-17 15:08:02 +0200694 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
695 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100696 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200697
Swen Schillig9eae07e2009-11-24 16:54:06 +0100698 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
699 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200700
Christof Schmittf9773222011-02-22 19:54:43 +0100701 fc_req = zfcp_alloc_sg_env(buf_num);
702 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200703 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200704
705 for (i = 0; i < 3; i++) {
Christof Schmittf9773222011-02-22 19:54:43 +0100706 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200707 if (!ret) {
Christof Schmittf9773222011-02-22 19:54:43 +0100708 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200709 if (ret == -EAGAIN)
710 ssleep(1);
711 else
712 break;
713 }
714 }
Christof Schmittf9773222011-02-22 19:54:43 +0100715 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
716 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200717out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200718 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200719}
720
Christof Schmitt038d9442011-02-22 19:54:48 +0100721static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
722 struct zfcp_fc_req *fc_req)
723{
724 DECLARE_COMPLETION_ONSTACK(completion);
725 char devno[] = "DEVNO:";
726 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
727 struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req;
728 struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp;
729 int ret;
730
731 zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID,
732 FC_SYMBOLIC_NAME_SIZE);
733 hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host));
734
735 sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req));
736 sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp));
737
738 ct_els->handler = zfcp_fc_complete;
739 ct_els->handler_data = &completion;
740 ct_els->req = &fc_req->sg_req;
741 ct_els->resp = &fc_req->sg_rsp;
742
743 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
744 ZFCP_FC_CTELS_TMO);
745 if (ret)
746 return ret;
747
748 wait_for_completion(&completion);
749 if (ct_els->status)
750 return ct_els->status;
751
752 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV &&
753 !(strstr(gspn_rsp->gspn.fp_name, devno)))
754 snprintf(fc_host_symbolic_name(adapter->scsi_host),
755 FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s",
756 gspn_rsp->gspn.fp_name, devno,
757 dev_name(&adapter->ccw_device->dev),
758 init_utsname()->nodename);
759 else
760 strlcpy(fc_host_symbolic_name(adapter->scsi_host),
761 gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
762
763 return 0;
764}
765
766static void zfcp_fc_rspn(struct zfcp_adapter *adapter,
767 struct zfcp_fc_req *fc_req)
768{
769 DECLARE_COMPLETION_ONSTACK(completion);
770 struct Scsi_Host *shost = adapter->scsi_host;
771 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
772 struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req;
773 struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp;
774 int ret, len;
775
776 zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID,
777 FC_SYMBOLIC_NAME_SIZE);
778 hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost));
779 len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost),
780 FC_SYMBOLIC_NAME_SIZE);
781 rspn_req->rspn.fr_name_len = len;
782
783 sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req));
784 sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp));
785
786 ct_els->handler = zfcp_fc_complete;
787 ct_els->handler_data = &completion;
788 ct_els->req = &fc_req->sg_req;
789 ct_els->resp = &fc_req->sg_rsp;
790
791 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
792 ZFCP_FC_CTELS_TMO);
793 if (!ret)
794 wait_for_completion(&completion);
795}
796
797/**
798 * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name
799 * @work: ns_up_work of the adapter where to update the symbolic port name
800 *
801 * Retrieve the current symbolic port name that may have been set by
802 * the hardware using the GSPN request and update the fc_host
803 * symbolic_name sysfs attribute. When running in NPIV mode (and hence
804 * the port name is unique for this system), update the symbolic port
805 * name to add Linux specific information and update the FC nameserver
806 * using the RSPN request.
807 */
808void zfcp_fc_sym_name_update(struct work_struct *work)
809{
810 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
811 ns_up_work);
812 int ret;
813 struct zfcp_fc_req *fc_req;
814
815 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
816 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
817 return;
818
819 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
820 if (!fc_req)
821 return;
822
823 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
824 if (ret)
825 goto out_free;
826
827 ret = zfcp_fc_gspn(adapter, fc_req);
828 if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
829 goto out_ds_put;
830
831 memset(fc_req, 0, sizeof(*fc_req));
832 zfcp_fc_rspn(adapter, fc_req);
833
834out_ds_put:
835 zfcp_fc_wka_port_put(&adapter->gs->ds);
836out_free:
837 kmem_cache_free(zfcp_fc_req_cache, fc_req);
838}
839
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100840static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200841{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100842 struct fc_bsg_job *job = data;
843 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100844 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200845
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100846 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
847 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
848 jr->result = zfcp_ct_els->status ? -EIO : 0;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200849 job->job_done(job);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200850}
851
Christof Schmittf09d5452010-01-13 17:52:36 +0100852static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job)
853{
854 u32 preamble_word1;
855 u8 gs_type;
856 struct zfcp_adapter *adapter;
857
858 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
859 gs_type = (preamble_word1 & 0xff000000) >> 24;
860
861 adapter = (struct zfcp_adapter *) job->shost->hostdata[0];
862
863 switch (gs_type) {
864 case FC_FST_ALIAS:
865 return &adapter->gs->as;
866 case FC_FST_MGMT:
867 return &adapter->gs->ms;
868 case FC_FST_TIME:
869 return &adapter->gs->ts;
870 break;
871 case FC_FST_DIR:
872 return &adapter->gs->ds;
873 break;
874 default:
875 return NULL;
876 }
877}
878
879static void zfcp_fc_ct_job_handler(void *data)
880{
881 struct fc_bsg_job *job = data;
882 struct zfcp_fc_wka_port *wka_port;
883
884 wka_port = zfcp_fc_job_wka_port(job);
885 zfcp_fc_wka_port_put(wka_port);
886
887 zfcp_fc_ct_els_job_handler(data);
888}
889
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100890static int zfcp_fc_exec_els_job(struct fc_bsg_job *job,
891 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200892{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100893 struct zfcp_fsf_ct_els *els = job->dd_data;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200894 struct fc_rport *rport = job->rport;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200895 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100896 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200897
Sven Schuetz9d544f22009-04-06 18:31:47 +0200898 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200899 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100900 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200901 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100902
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100903 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100904 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100905 } else
906 d_id = ntoh24(job->request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200907
Christof Schmittf09d5452010-01-13 17:52:36 +0100908 els->handler = zfcp_fc_ct_els_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100909 return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200910}
911
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100912static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job,
913 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200914{
915 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100916 struct zfcp_fsf_ct_els *ct = job->dd_data;
917 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200918
Christof Schmittf09d5452010-01-13 17:52:36 +0100919 wka_port = zfcp_fc_job_wka_port(job);
920 if (!wka_port)
921 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200922
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100923 ret = zfcp_fc_wka_port_get(wka_port);
924 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200925 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200926
Christof Schmittf09d5452010-01-13 17:52:36 +0100927 ct->handler = zfcp_fc_ct_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100928 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100929 if (ret)
930 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200931
Sven Schuetz9d544f22009-04-06 18:31:47 +0200932 return ret;
933}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200934
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100935int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job)
936{
937 struct Scsi_Host *shost;
938 struct zfcp_adapter *adapter;
939 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
940
941 shost = job->rport ? rport_to_shost(job->rport) : job->shost;
942 adapter = (struct zfcp_adapter *)shost->hostdata[0];
943
944 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
945 return -EINVAL;
946
947 ct_els->req = job->request_payload.sg_list;
948 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100949 ct_els->handler_data = job;
950
951 switch (job->request->msgcode) {
952 case FC_BSG_RPT_ELS:
953 case FC_BSG_HST_ELS_NOLOGIN:
954 return zfcp_fc_exec_els_job(job, adapter);
955 case FC_BSG_RPT_CT:
956 case FC_BSG_HST_CT:
957 return zfcp_fc_exec_ct_job(job, adapter);
958 default:
959 return -EINVAL;
960 }
961}
962
Swen Schillig491ca442010-01-14 17:19:01 +0100963int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job)
964{
965 /* hardware tracks timeout, reset bsg timeout to not interfere */
966 return -EAGAIN;
967}
968
Swen Schilligd5a282a2009-08-18 15:43:22 +0200969int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
970{
Christof Schmittbd0072e2009-11-24 16:54:11 +0100971 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +0200972
Christof Schmittbd0072e2009-11-24 16:54:11 +0100973 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200974 if (!wka_ports)
975 return -ENOMEM;
976
977 adapter->gs = wka_ports;
978 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
979 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
980 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
981 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200982
983 return 0;
984}
985
986void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
987{
988 kfree(adapter->gs);
989 adapter->gs = NULL;
990}
991