[SCSI] zfcp: Use common FC kmem_cache for GPN_FT request
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / s390 / scsi / zfcp_fc.c
CommitLineData
24073b47
CS
1/*
2 * zfcp device driver
3 *
4 * Fibre Channel related functions for the zfcp device driver.
5 *
615f59e0 6 * Copyright IBM Corporation 2008, 2010
24073b47
CS
7 */
8
ecf39d42
CS
9#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
9d05ce2c 12#include <linux/types.h>
5a0e3ad6 13#include <linux/slab.h>
9d05ce2c
CS
14#include <scsi/fc/fc_els.h>
15#include <scsi/libfc.h>
24073b47 16#include "zfcp_ext.h"
9d05ce2c 17#include "zfcp_fc.h"
24073b47 18
087897e3
CS
19struct kmem_cache *zfcp_fc_req_cache;
20
9d05ce2c
CS
21static u32 zfcp_fc_rscn_range_mask[] = {
22 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
23 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
24 [ELS_ADDR_FMT_DOM] = 0xFF0000,
25 [ELS_ADDR_FMT_FAB] = 0x000000,
e0d7fcb5
CS
26};
27
2d1e547f
SS
28/**
29 * zfcp_fc_post_event - post event to userspace via fc_transport
30 * @work: work struct with enqueued events
31 */
32void zfcp_fc_post_event(struct work_struct *work)
33{
34 struct zfcp_fc_event *event = NULL, *tmp = NULL;
35 LIST_HEAD(tmp_lh);
36 struct zfcp_fc_events *events = container_of(work,
37 struct zfcp_fc_events, work);
38 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
39 events);
40
41 spin_lock_bh(&events->list_lock);
42 list_splice_init(&events->list, &tmp_lh);
43 spin_unlock_bh(&events->list_lock);
44
45 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
46 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
47 event->code, event->data);
48 list_del(&event->list);
49 kfree(event);
50 }
51
52}
53
54/**
55 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
56 * @adapter: The adapter where to enqueue the event
57 * @event_code: The event code (as defined in fc_host_event_code in
58 * scsi_transport_fc.h)
59 * @event_data: The event data (e.g. n_port page in case of els)
60 */
61void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
62 enum fc_host_event_code event_code, u32 event_data)
63{
64 struct zfcp_fc_event *event;
65
66 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
67 if (!event)
68 return;
69
70 event->code = event_code;
71 event->data = event_data;
72
73 spin_lock(&adapter->events.list_lock);
74 list_add_tail(&event->list, &adapter->events.list);
75 spin_unlock(&adapter->events.list_lock);
76
77 queue_work(adapter->work_queue, &adapter->events.work);
78}
79
bd0072ec 80static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
5ab944f9
SS
81{
82 if (mutex_lock_interruptible(&wka_port->mutex))
83 return -ERESTARTSYS;
84
bd0072ec
CS
85 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
86 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
87 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
5ab944f9 88 if (zfcp_fsf_open_wka_port(wka_port))
bd0072ec 89 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
5ab944f9
SS
90 }
91
92 mutex_unlock(&wka_port->mutex);
93
27f492cc 94 wait_event(wka_port->completion_wq,
bd0072ec
CS
95 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
96 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
5ab944f9 97
bd0072ec 98 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
5ab944f9
SS
99 atomic_inc(&wka_port->refcount);
100 return 0;
101 }
102 return -EIO;
103}
104
6f53a2d2 105static void zfcp_fc_wka_port_offline(struct work_struct *work)
5ab944f9 106{
bf6aede7 107 struct delayed_work *dw = to_delayed_work(work);
bd0072ec
CS
108 struct zfcp_fc_wka_port *wka_port =
109 container_of(dw, struct zfcp_fc_wka_port, work);
5ab944f9 110
5ab944f9
SS
111 mutex_lock(&wka_port->mutex);
112 if ((atomic_read(&wka_port->refcount) != 0) ||
bd0072ec 113 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
5ab944f9
SS
114 goto out;
115
bd0072ec 116 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
5ab944f9 117 if (zfcp_fsf_close_wka_port(wka_port)) {
bd0072ec 118 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
5ab944f9
SS
119 wake_up(&wka_port->completion_wq);
120 }
121out:
122 mutex_unlock(&wka_port->mutex);
123}
124
bd0072ec 125static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
5ab944f9
SS
126{
127 if (atomic_dec_return(&wka_port->refcount) != 0)
128 return;
19af5cdb 129 /* wait 10 milliseconds, other reqs might pop in */
5ab944f9
SS
130 schedule_delayed_work(&wka_port->work, HZ / 100);
131}
132
bd0072ec 133static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
9d544f2b 134 struct zfcp_adapter *adapter)
5ab944f9 135{
5ab944f9
SS
136 init_waitqueue_head(&wka_port->completion_wq);
137
138 wka_port->adapter = adapter;
9d544f2b 139 wka_port->d_id = d_id;
5ab944f9 140
bd0072ec 141 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
5ab944f9
SS
142 atomic_set(&wka_port->refcount, 0);
143 mutex_init(&wka_port->mutex);
6f53a2d2 144 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
5ab944f9
SS
145}
146
bd0072ec 147static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
828bc121
SS
148{
149 cancel_delayed_work_sync(&wka->work);
150 mutex_lock(&wka->mutex);
bd0072ec 151 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
828bc121
SS
152 mutex_unlock(&wka->mutex);
153}
154
bd0072ec 155void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
55c770fa 156{
f3450c7b
SS
157 if (!gs)
158 return;
55c770fa
CS
159 zfcp_fc_wka_port_force_offline(&gs->ms);
160 zfcp_fc_wka_port_force_offline(&gs->ts);
161 zfcp_fc_wka_port_force_offline(&gs->ds);
162 zfcp_fc_wka_port_force_offline(&gs->as);
55c770fa
CS
163}
164
24073b47 165static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
9d05ce2c 166 struct fc_els_rscn_page *page)
24073b47
CS
167{
168 unsigned long flags;
ecf0c772 169 struct zfcp_adapter *adapter = fsf_req->adapter;
24073b47
CS
170 struct zfcp_port *port;
171
ecf0c772
SS
172 read_lock_irqsave(&adapter->port_list_lock, flags);
173 list_for_each_entry(port, &adapter->port_list, list) {
9d05ce2c 174 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
6f53a2d2 175 zfcp_fc_test_link(port);
ea460a81
SS
176 if (!port->d_id)
177 zfcp_erp_port_reopen(port,
178 ZFCP_STATUS_COMMON_ERP_FAILED,
ea4a3a6a 179 "fcrscn1");
ea460a81 180 }
ecf0c772 181 read_unlock_irqrestore(&adapter->port_list_lock, flags);
24073b47
CS
182}
183
184static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
185{
186 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
9d05ce2c
CS
187 struct fc_els_rscn *head;
188 struct fc_els_rscn_page *page;
24073b47
CS
189 u16 i;
190 u16 no_entries;
9d05ce2c 191 unsigned int afmt;
24073b47 192
9d05ce2c
CS
193 head = (struct fc_els_rscn *) status_buffer->payload.data;
194 page = (struct fc_els_rscn_page *) head;
24073b47
CS
195
196 /* see FC-FS */
9d05ce2c 197 no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
24073b47
CS
198
199 for (i = 1; i < no_entries; i++) {
200 /* skip head and start with 1st element */
9d05ce2c
CS
201 page++;
202 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
203 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
204 page);
2d1e547f
SS
205 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
206 *(u32 *)page);
24073b47 207 }
9eae07ef 208 queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
24073b47
CS
209}
210
7ba58c9c 211static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
24073b47 212{
ecf0c772 213 unsigned long flags;
24073b47
CS
214 struct zfcp_adapter *adapter = req->adapter;
215 struct zfcp_port *port;
24073b47 216
ecf0c772
SS
217 read_lock_irqsave(&adapter->port_list_lock, flags);
218 list_for_each_entry(port, &adapter->port_list, list)
219 if (port->wwpn == wwpn) {
ea4a3a6a 220 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
24073b47 221 break;
ecf0c772
SS
222 }
223 read_unlock_irqrestore(&adapter->port_list_lock, flags);
24073b47
CS
224}
225
226static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
227{
9d05ce2c
CS
228 struct fsf_status_read_buffer *status_buffer;
229 struct fc_els_flogi *plogi;
24073b47 230
9d05ce2c
CS
231 status_buffer = (struct fsf_status_read_buffer *) req->data;
232 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
233 zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
24073b47
CS
234}
235
236static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
237{
238 struct fsf_status_read_buffer *status_buffer =
239 (struct fsf_status_read_buffer *)req->data;
9d05ce2c
CS
240 struct fc_els_logo *logo =
241 (struct fc_els_logo *) status_buffer->payload.data;
24073b47 242
9d05ce2c 243 zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
24073b47
CS
244}
245
246/**
247 * zfcp_fc_incoming_els - handle incoming ELS
248 * @fsf_req - request which contains incoming ELS
249 */
250void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
251{
252 struct fsf_status_read_buffer *status_buffer =
253 (struct fsf_status_read_buffer *) fsf_req->data;
c41f8cbd 254 unsigned int els_type = status_buffer->payload.data[0];
24073b47 255
2c55b750 256 zfcp_dbf_san_in_els("fciels1", fsf_req);
9d05ce2c 257 if (els_type == ELS_PLOGI)
24073b47 258 zfcp_fc_incoming_plogi(fsf_req);
9d05ce2c 259 else if (els_type == ELS_LOGO)
24073b47 260 zfcp_fc_incoming_logo(fsf_req);
9d05ce2c 261 else if (els_type == ELS_RSCN)
24073b47
CS
262 zfcp_fc_incoming_rscn(fsf_req);
263}
264
fcf7e614 265static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
24073b47 266{
fcf7e614
CS
267 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
268 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
24073b47 269
fcf7e614 270 if (ct_els->status)
5ab944f9 271 return;
fcf7e614 272 if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC)
5ab944f9 273 return;
a5b11dda 274
24073b47 275 /* looks like a valid d_id */
fcf7e614 276 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
24073b47
CS
277}
278
7c7dc196
CS
279static void zfcp_fc_complete(void *data)
280{
281 complete(data);
282}
283
fcf7e614
CS
284static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
285{
286 ct_hdr->ct_rev = FC_CT_REV;
287 ct_hdr->ct_fs_type = FC_FST_DIR;
288 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
289 ct_hdr->ct_cmd = cmd;
290 ct_hdr->ct_mr_size = mr_size / 4;
291}
292
799b76d0 293static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
fcf7e614 294 struct zfcp_fc_req *fc_req)
24073b47 295{
799b76d0 296 struct zfcp_adapter *adapter = port->adapter;
7c7dc196 297 DECLARE_COMPLETION_ONSTACK(completion);
fcf7e614
CS
298 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
299 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
5ab944f9 300 int ret;
24073b47
CS
301
302 /* setup parameters for send generic command */
fcf7e614
CS
303 fc_req->ct_els.port = port;
304 fc_req->ct_els.handler = zfcp_fc_complete;
305 fc_req->ct_els.handler_data = &completion;
306 fc_req->ct_els.req = &fc_req->sg_req;
307 fc_req->ct_els.resp = &fc_req->sg_rsp;
308 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
309 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
310
311 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
312 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
313 gid_pn_req->gid_pn.fn_wwpn = port->wwpn;
314
315 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
51375ee8
SS
316 adapter->pool.gid_pn_req,
317 ZFCP_FC_CTELS_TMO);
7c7dc196
CS
318 if (!ret) {
319 wait_for_completion(&completion);
fcf7e614 320 zfcp_fc_ns_gid_pn_eval(fc_req);
7c7dc196 321 }
5ab944f9
SS
322 return ret;
323}
324
325/**
fcf7e614 326 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
799b76d0 327 * @port: port where GID_PN request is needed
5ab944f9
SS
328 * return: -ENOMEM on error, 0 otherwise
329 */
799b76d0 330static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
5ab944f9
SS
331{
332 int ret;
fcf7e614 333 struct zfcp_fc_req *fc_req;
799b76d0 334 struct zfcp_adapter *adapter = port->adapter;
5ab944f9 335
fcf7e614
CS
336 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
337 if (!fc_req)
5ab944f9
SS
338 return -ENOMEM;
339
fcf7e614 340 memset(fc_req, 0, sizeof(*fc_req));
5ab944f9 341
6f53a2d2 342 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
24073b47 343 if (ret)
5ab944f9
SS
344 goto out;
345
fcf7e614 346 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
5ab944f9 347
6f53a2d2 348 zfcp_fc_wka_port_put(&adapter->gs->ds);
5ab944f9 349out:
fcf7e614 350 mempool_free(fc_req, adapter->pool.gid_pn);
24073b47
CS
351 return ret;
352}
353
799b76d0
CS
354void zfcp_fc_port_did_lookup(struct work_struct *work)
355{
356 int ret;
357 struct zfcp_port *port = container_of(work, struct zfcp_port,
358 gid_pn_work);
359
360 ret = zfcp_fc_ns_gid_pn(port);
361 if (ret) {
362 /* could not issue gid_pn for some reason */
ea4a3a6a 363 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
799b76d0
CS
364 goto out;
365 }
366
367 if (!port->d_id) {
edaed859 368 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
799b76d0
CS
369 goto out;
370 }
371
ea4a3a6a 372 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
799b76d0 373out:
615f59e0 374 put_device(&port->dev);
799b76d0
CS
375}
376
934aeb58
CS
377/**
378 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
379 * @port: The zfcp_port to lookup the d_id for.
380 */
381void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
382{
615f59e0 383 get_device(&port->dev);
934aeb58 384 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
615f59e0 385 put_device(&port->dev);
934aeb58
CS
386}
387
24073b47
CS
388/**
389 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
390 * @port: zfcp_port structure
391 * @plogi: plogi payload
392 *
393 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
394 */
9d05ce2c 395void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
24073b47 396{
9d05ce2c
CS
397 if (plogi->fl_wwpn != port->wwpn) {
398 port->d_id = 0;
399 dev_warn(&port->adapter->ccw_device->dev,
400 "A port opened with WWPN 0x%016Lx returned data that "
401 "identifies it as WWPN 0x%016Lx\n",
402 (unsigned long long) port->wwpn,
403 (unsigned long long) plogi->fl_wwpn);
404 return;
405 }
406
407 port->wwnn = plogi->fl_wwnn;
408 port->maxframe_size = plogi->fl_csp.sp_bb_data;
409
410 if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
24073b47 411 port->supported_classes |= FC_COS_CLASS1;
9d05ce2c 412 if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
24073b47 413 port->supported_classes |= FC_COS_CLASS2;
9d05ce2c 414 if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
24073b47 415 port->supported_classes |= FC_COS_CLASS3;
9d05ce2c 416 if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
24073b47
CS
417 port->supported_classes |= FC_COS_CLASS4;
418}
419
7c7dc196 420static void zfcp_fc_adisc_handler(void *data)
24073b47 421{
087897e3
CS
422 struct zfcp_fc_req *fc_req = data;
423 struct zfcp_port *port = fc_req->ct_els.port;
424 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
24073b47 425
087897e3 426 if (fc_req->ct_els.status) {
24073b47 427 /* request rejected or timed out */
5b43e719 428 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
ea4a3a6a 429 "fcadh_1");
24073b47
CS
430 goto out;
431 }
432
433 if (!port->wwnn)
9d05ce2c 434 port->wwnn = adisc_resp->adisc_wwnn;
24073b47 435
9d05ce2c 436 if ((port->wwpn != adisc_resp->adisc_wwpn) ||
a2fa0aed 437 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
24095490 438 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
ea4a3a6a 439 "fcadh_2");
a2fa0aed
CS
440 goto out;
441 }
24073b47 442
a2fa0aed
CS
443 /* port is good, unblock rport without going through erp */
444 zfcp_scsi_schedule_rport_register(port);
24073b47 445 out:
14e242ea 446 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
615f59e0 447 put_device(&port->dev);
087897e3 448 kmem_cache_free(zfcp_fc_req_cache, fc_req);
24073b47
CS
449}
450
451static int zfcp_fc_adisc(struct zfcp_port *port)
452{
087897e3 453 struct zfcp_fc_req *fc_req;
24073b47 454 struct zfcp_adapter *adapter = port->adapter;
087897e3 455 struct Scsi_Host *shost = adapter->scsi_host;
ee744622 456 int ret;
24073b47 457
087897e3
CS
458 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
459 if (!fc_req)
24073b47
CS
460 return -ENOMEM;
461
087897e3
CS
462 fc_req->ct_els.port = port;
463 fc_req->ct_els.req = &fc_req->sg_req;
464 fc_req->ct_els.resp = &fc_req->sg_rsp;
465 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
9d05ce2c 466 sizeof(struct fc_els_adisc));
087897e3 467 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
9d05ce2c 468 sizeof(struct fc_els_adisc));
24073b47 469
087897e3
CS
470 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
471 fc_req->ct_els.handler_data = fc_req;
24073b47
CS
472
473 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
474 without FC-AL-2 capability, so we don't set it */
087897e3
CS
475 fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost);
476 fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost);
477 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
478 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
24073b47 479
087897e3 480 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
51375ee8 481 ZFCP_FC_CTELS_TMO);
ee744622 482 if (ret)
087897e3 483 kmem_cache_free(zfcp_fc_req_cache, fc_req);
ee744622
CS
484
485 return ret;
24073b47
CS
486}
487
8fdf30d5 488void zfcp_fc_link_test_work(struct work_struct *work)
24073b47 489{
8fdf30d5
CS
490 struct zfcp_port *port =
491 container_of(work, struct zfcp_port, test_link_work);
24073b47
CS
492 int retval;
493
615f59e0 494 get_device(&port->dev);
a2fa0aed
CS
495 port->rport_task = RPORT_DEL;
496 zfcp_scsi_rport_work(&port->rport_work);
497
14e242ea
CS
498 /* only issue one test command at one time per port */
499 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
500 goto out;
501
502 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
503
24073b47 504 retval = zfcp_fc_adisc(port);
9528539c 505 if (retval == 0)
24073b47
CS
506 return;
507
508 /* send of ADISC was not possible */
14e242ea 509 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
ea4a3a6a 510 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
a2fa0aed 511
14e242ea 512out:
615f59e0 513 put_device(&port->dev);
24073b47 514}
cc8c2829 515
8fdf30d5 516/**
6f53a2d2 517 * zfcp_fc_test_link - lightweight link test procedure
8fdf30d5
CS
518 * @port: port to be tested
519 *
520 * Test status of a link to a remote port using the ELS command ADISC.
521 * If there is a problem with the remote port, error recovery steps
522 * will be triggered.
523 */
6f53a2d2 524void zfcp_fc_test_link(struct zfcp_port *port)
8fdf30d5 525{
615f59e0 526 get_device(&port->dev);
4544683a 527 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
615f59e0 528 put_device(&port->dev);
8fdf30d5
CS
529}
530
f9773229 531static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num)
cc8c2829 532{
f9773229 533 struct zfcp_fc_req *fc_req;
cc8c2829 534
f9773229
CS
535 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
536 if (!fc_req)
cc8c2829
SS
537 return NULL;
538
f9773229
CS
539 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
540 kmem_cache_free(zfcp_fc_req_cache, fc_req);
541 return NULL;
cc8c2829 542 }
cc8c2829 543
f9773229
CS
544 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
545 sizeof(struct zfcp_fc_gpn_ft_req));
cc8c2829 546
f9773229
CS
547 return fc_req;
548}
cc8c2829 549
f9773229 550static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
6f53a2d2 551 struct zfcp_adapter *adapter, int max_bytes)
cc8c2829 552{
f9773229
CS
553 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
554 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
7c7dc196 555 DECLARE_COMPLETION_ONSTACK(completion);
cc8c2829
SS
556 int ret;
557
f9773229 558 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
dbf5dfe9 559 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
cc8c2829 560
f9773229
CS
561 ct_els->handler = zfcp_fc_complete;
562 ct_els->handler_data = &completion;
563 ct_els->req = &fc_req->sg_req;
564 ct_els->resp = &fc_req->sg_rsp;
cc8c2829 565
f9773229 566 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
51375ee8 567 ZFCP_FC_CTELS_TMO);
cc8c2829 568 if (!ret)
7c7dc196 569 wait_for_completion(&completion);
cc8c2829
SS
570 return ret;
571}
572
f3450c7b 573static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
cc8c2829 574{
6ab35c07
MP
575 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
576 return;
577
cc8c2829
SS
578 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
579
0406289e 580 if ((port->supported_classes != 0) ||
f3450c7b 581 !list_empty(&port->unit_list))
cc8c2829 582 return;
f3450c7b 583
f3450c7b 584 list_move_tail(&port->list, lh);
cc8c2829
SS
585}
586
f9773229 587static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
7c7dc196 588 struct zfcp_adapter *adapter, int max_entries)
cc8c2829 589{
f9773229
CS
590 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
591 struct scatterlist *sg = &fc_req->sg_rsp;
dbf5dfe9
CS
592 struct fc_ct_hdr *hdr = sg_virt(sg);
593 struct fc_gpn_ft_resp *acc = sg_virt(sg);
cc8c2829 594 struct zfcp_port *port, *tmp;
ecf0c772 595 unsigned long flags;
f3450c7b 596 LIST_HEAD(remove_lh);
cc8c2829 597 u32 d_id;
47f7bba5 598 int ret = 0, x, last = 0;
cc8c2829 599
f9773229 600 if (ct_els->status)
cc8c2829
SS
601 return -EIO;
602
dbf5dfe9
CS
603 if (hdr->ct_cmd != FC_FS_ACC) {
604 if (hdr->ct_reason == FC_BA_RJT_UNABLE)
cc8c2829
SS
605 return -EAGAIN; /* might be a temporary condition */
606 return -EIO;
607 }
608
dbf5dfe9 609 if (hdr->ct_mr_size) {
39eb7e9a
CS
610 dev_warn(&adapter->ccw_device->dev,
611 "The name server reported %d words residual data\n",
dbf5dfe9 612 hdr->ct_mr_size);
cc8c2829 613 return -E2BIG;
39eb7e9a 614 }
cc8c2829 615
cc8c2829 616 /* first entry is the header */
39eb7e9a 617 for (x = 1; x < max_entries && !last; x++) {
dbf5dfe9 618 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
cc8c2829
SS
619 acc++;
620 else
621 acc = sg_virt(++sg);
622
dbf5dfe9
CS
623 last = acc->fp_flags & FC_NS_FID_LAST;
624 d_id = ntoh24(acc->fp_fid);
cc8c2829 625
5ab944f9 626 /* don't attach ports with a well known address */
dbf5dfe9 627 if (d_id >= FC_FID_WELL_KNOWN_BASE)
5ab944f9 628 continue;
cc8c2829 629 /* skip the adapter's port and known remote ports */
dbf5dfe9 630 if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
cc8c2829
SS
631 continue;
632
dbf5dfe9 633 port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
cc8c2829 634 ZFCP_STATUS_COMMON_NOESC, d_id);
ecf0c772 635 if (!IS_ERR(port))
ea4a3a6a 636 zfcp_erp_port_reopen(port, 0, "fcegpf1");
ecf0c772
SS
637 else if (PTR_ERR(port) != -EEXIST)
638 ret = PTR_ERR(port);
cc8c2829
SS
639 }
640
641 zfcp_erp_wait(adapter);
ecf0c772
SS
642 write_lock_irqsave(&adapter->port_list_lock, flags);
643 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
f3450c7b 644 zfcp_fc_validate_port(port, &remove_lh);
ecf0c772 645 write_unlock_irqrestore(&adapter->port_list_lock, flags);
f3450c7b
SS
646
647 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
ea4a3a6a 648 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
615f59e0 649 zfcp_device_unregister(&port->dev, &zfcp_sysfs_port_attrs);
f3450c7b
SS
650 }
651
cc8c2829
SS
652 return ret;
653}
654
655/**
6f53a2d2 656 * zfcp_fc_scan_ports - scan remote ports and attach new ports
9eae07ef 657 * @work: reference to scheduled work
cc8c2829 658 */
9eae07ef 659void zfcp_fc_scan_ports(struct work_struct *work)
cc8c2829 660{
9eae07ef
SS
661 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
662 scan_work);
cc8c2829 663 int ret, i;
f9773229 664 struct zfcp_fc_req *fc_req;
39eb7e9a
CS
665 int chain, max_entries, buf_num, max_bytes;
666
667 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
dbf5dfe9
CS
668 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
669 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
670 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
cc8c2829 671
306b6edc
SS
672 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
673 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
9eae07ef 674 return;
cc8c2829 675
9eae07ef
SS
676 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
677 return;
cc8c2829 678
f9773229
CS
679 fc_req = zfcp_alloc_sg_env(buf_num);
680 if (!fc_req)
5ab944f9 681 goto out;
cc8c2829
SS
682
683 for (i = 0; i < 3; i++) {
f9773229 684 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
cc8c2829 685 if (!ret) {
f9773229 686 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
cc8c2829
SS
687 if (ret == -EAGAIN)
688 ssleep(1);
689 else
690 break;
691 }
692 }
f9773229
CS
693 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
694 kmem_cache_free(zfcp_fc_req_cache, fc_req);
5ab944f9 695out:
6f53a2d2 696 zfcp_fc_wka_port_put(&adapter->gs->ds);
cc8c2829
SS
697}
698
7c7dc196 699static void zfcp_fc_ct_els_job_handler(void *data)
9d544f2b 700{
7c7dc196
CS
701 struct fc_bsg_job *job = data;
702 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
7dec9cf1 703 struct fc_bsg_reply *jr = job->reply;
9d544f2b 704
7dec9cf1
SS
705 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
706 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
707 jr->result = zfcp_ct_els->status ? -EIO : 0;
9d544f2b 708 job->job_done(job);
9d544f2b
SS
709}
710
f09d5454
CS
711static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job)
712{
713 u32 preamble_word1;
714 u8 gs_type;
715 struct zfcp_adapter *adapter;
716
717 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
718 gs_type = (preamble_word1 & 0xff000000) >> 24;
719
720 adapter = (struct zfcp_adapter *) job->shost->hostdata[0];
721
722 switch (gs_type) {
723 case FC_FST_ALIAS:
724 return &adapter->gs->as;
725 case FC_FST_MGMT:
726 return &adapter->gs->ms;
727 case FC_FST_TIME:
728 return &adapter->gs->ts;
729 break;
730 case FC_FST_DIR:
731 return &adapter->gs->ds;
732 break;
733 default:
734 return NULL;
735 }
736}
737
738static void zfcp_fc_ct_job_handler(void *data)
739{
740 struct fc_bsg_job *job = data;
741 struct zfcp_fc_wka_port *wka_port;
742
743 wka_port = zfcp_fc_job_wka_port(job);
744 zfcp_fc_wka_port_put(wka_port);
745
746 zfcp_fc_ct_els_job_handler(data);
747}
748
7c7dc196
CS
749static int zfcp_fc_exec_els_job(struct fc_bsg_job *job,
750 struct zfcp_adapter *adapter)
9d544f2b 751{
7c7dc196 752 struct zfcp_fsf_ct_els *els = job->dd_data;
9d544f2b 753 struct fc_rport *rport = job->rport;
9d544f2b 754 struct zfcp_port *port;
7c7dc196 755 u32 d_id;
9d544f2b 756
9d544f2b 757 if (rport) {
ea945ff8 758 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
7c7dc196 759 if (!port)
9d544f2b 760 return -EINVAL;
ecf0c772 761
7c7dc196 762 d_id = port->d_id;
615f59e0 763 put_device(&port->dev);
7c7dc196
CS
764 } else
765 d_id = ntoh24(job->request->rqst_data.h_els.port_id);
9d544f2b 766
f09d5454 767 els->handler = zfcp_fc_ct_els_job_handler;
51375ee8 768 return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ);
9d544f2b
SS
769}
770
7c7dc196
CS
771static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job,
772 struct zfcp_adapter *adapter)
9d544f2b
SS
773{
774 int ret;
7c7dc196
CS
775 struct zfcp_fsf_ct_els *ct = job->dd_data;
776 struct zfcp_fc_wka_port *wka_port;
9d544f2b 777
f09d5454
CS
778 wka_port = zfcp_fc_job_wka_port(job);
779 if (!wka_port)
780 return -EINVAL;
9d544f2b 781
7c7dc196
CS
782 ret = zfcp_fc_wka_port_get(wka_port);
783 if (ret)
9d544f2b 784 return ret;
9d544f2b 785
f09d5454 786 ct->handler = zfcp_fc_ct_job_handler;
51375ee8 787 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ);
7c7dc196
CS
788 if (ret)
789 zfcp_fc_wka_port_put(wka_port);
9d544f2b 790
9d544f2b
SS
791 return ret;
792}
d5a282a1 793
7c7dc196
CS
794int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job)
795{
796 struct Scsi_Host *shost;
797 struct zfcp_adapter *adapter;
798 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
799
800 shost = job->rport ? rport_to_shost(job->rport) : job->shost;
801 adapter = (struct zfcp_adapter *)shost->hostdata[0];
802
803 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
804 return -EINVAL;
805
806 ct_els->req = job->request_payload.sg_list;
807 ct_els->resp = job->reply_payload.sg_list;
7c7dc196
CS
808 ct_els->handler_data = job;
809
810 switch (job->request->msgcode) {
811 case FC_BSG_RPT_ELS:
812 case FC_BSG_HST_ELS_NOLOGIN:
813 return zfcp_fc_exec_els_job(job, adapter);
814 case FC_BSG_RPT_CT:
815 case FC_BSG_HST_CT:
816 return zfcp_fc_exec_ct_job(job, adapter);
817 default:
818 return -EINVAL;
819 }
820}
821
491ca442
SS
822int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job)
823{
824 /* hardware tracks timeout, reset bsg timeout to not interfere */
825 return -EAGAIN;
826}
827
d5a282a1
SS
828int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
829{
bd0072ec 830 struct zfcp_fc_wka_ports *wka_ports;
d5a282a1 831
bd0072ec 832 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
d5a282a1
SS
833 if (!wka_ports)
834 return -ENOMEM;
835
836 adapter->gs = wka_ports;
837 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
838 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
839 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
840 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
d5a282a1
SS
841
842 return 0;
843}
844
845void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
846{
847 kfree(adapter->gs);
848 adapter->gs = NULL;
849}
850