blob: 25d49f32ca6380f52e27ab7b5e91334648558b56 [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>
Martin Peschke18f87a62014-11-13 14:59:48 +010015#include <linux/random.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010016#include <scsi/fc/fc_els.h>
17#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020018#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010019#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020020
Christof Schmitt087897e2011-02-22 19:54:41 +010021struct kmem_cache *zfcp_fc_req_cache;
22
Christof Schmitt9d05ce22009-11-24 16:54:09 +010023static u32 zfcp_fc_rscn_range_mask[] = {
24 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
25 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
26 [ELS_ADDR_FMT_DOM] = 0xFF0000,
27 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010028};
29
Steffen Maier43f60cb2012-09-04 15:23:35 +020030static bool no_auto_port_rescan;
31module_param_named(no_auto_port_rescan, no_auto_port_rescan, bool, 0600);
32MODULE_PARM_DESC(no_auto_port_rescan,
33 "no automatic port_rescan (default off)");
34
Martin Peschke18f87a62014-11-13 14:59:48 +010035static unsigned int port_scan_backoff = 500;
36module_param(port_scan_backoff, uint, 0600);
37MODULE_PARM_DESC(port_scan_backoff,
38 "upper limit of port scan random backoff in msecs (default 500)");
39
40static unsigned int port_scan_ratelimit = 60000;
41module_param(port_scan_ratelimit, uint, 0600);
42MODULE_PARM_DESC(port_scan_ratelimit,
43 "minimum interval between port scans in msecs (default 60000)");
44
45unsigned int zfcp_fc_port_scan_backoff(void)
46{
47 if (!port_scan_backoff)
48 return 0;
49 return get_random_int() % port_scan_backoff;
50}
51
52static void zfcp_fc_port_scan_time(struct zfcp_adapter *adapter)
53{
54 unsigned long interval = msecs_to_jiffies(port_scan_ratelimit);
55 unsigned long backoff = msecs_to_jiffies(zfcp_fc_port_scan_backoff());
56
57 adapter->next_port_scan = jiffies + interval + backoff;
58}
59
60static void zfcp_fc_port_scan(struct zfcp_adapter *adapter)
61{
62 unsigned long now = jiffies;
63 unsigned long next = adapter->next_port_scan;
64 unsigned long delay = 0, max;
65
66 /* delay only needed within waiting period */
67 if (time_before(now, next)) {
68 delay = next - now;
69 /* paranoia: never ever delay scans longer than specified */
70 max = msecs_to_jiffies(port_scan_ratelimit + port_scan_backoff);
71 delay = min(delay, max);
72 }
73
74 queue_delayed_work(adapter->work_queue, &adapter->scan_work, delay);
75}
76
Steffen Maier43f60cb2012-09-04 15:23:35 +020077void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter)
78{
79 if (no_auto_port_rescan)
80 return;
81
Martin Peschke18f87a62014-11-13 14:59:48 +010082 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020083}
84
85void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter)
86{
87 if (!no_auto_port_rescan)
88 return;
89
Martin Peschke18f87a62014-11-13 14:59:48 +010090 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020091}
92
Sven Schuetz2d1e5472010-07-16 15:37:39 +020093/**
94 * zfcp_fc_post_event - post event to userspace via fc_transport
95 * @work: work struct with enqueued events
96 */
97void zfcp_fc_post_event(struct work_struct *work)
98{
99 struct zfcp_fc_event *event = NULL, *tmp = NULL;
100 LIST_HEAD(tmp_lh);
101 struct zfcp_fc_events *events = container_of(work,
102 struct zfcp_fc_events, work);
103 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
104 events);
105
106 spin_lock_bh(&events->list_lock);
107 list_splice_init(&events->list, &tmp_lh);
108 spin_unlock_bh(&events->list_lock);
109
110 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
111 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
112 event->code, event->data);
113 list_del(&event->list);
114 kfree(event);
115 }
116
117}
118
119/**
120 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
121 * @adapter: The adapter where to enqueue the event
122 * @event_code: The event code (as defined in fc_host_event_code in
123 * scsi_transport_fc.h)
124 * @event_data: The event data (e.g. n_port page in case of els)
125 */
126void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
127 enum fc_host_event_code event_code, u32 event_data)
128{
129 struct zfcp_fc_event *event;
130
131 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
132 if (!event)
133 return;
134
135 event->code = event_code;
136 event->data = event_data;
137
138 spin_lock(&adapter->events.list_lock);
139 list_add_tail(&event->list, &adapter->events.list);
140 spin_unlock(&adapter->events.list_lock);
141
142 queue_work(adapter->work_queue, &adapter->events.work);
143}
144
Christof Schmittbd0072e2009-11-24 16:54:11 +0100145static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200146{
147 if (mutex_lock_interruptible(&wka_port->mutex))
148 return -ERESTARTSYS;
149
Christof Schmittbd0072e2009-11-24 16:54:11 +0100150 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
151 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
152 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200153 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +0100154 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200155 }
156
157 mutex_unlock(&wka_port->mutex);
158
Swen Schillig27f492c2009-07-13 15:06:13 +0200159 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +0100160 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
161 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200162
Christof Schmittbd0072e2009-11-24 16:54:11 +0100163 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200164 atomic_inc(&wka_port->refcount);
165 return 0;
166 }
167 return -EIO;
168}
169
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200170static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200171{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700172 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100173 struct zfcp_fc_wka_port *wka_port =
174 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200175
Swen Schillig5ab944f2008-10-01 12:42:17 +0200176 mutex_lock(&wka_port->mutex);
177 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100178 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200179 goto out;
180
Christof Schmittbd0072e2009-11-24 16:54:11 +0100181 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200182 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100183 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200184 wake_up(&wka_port->completion_wq);
185 }
186out:
187 mutex_unlock(&wka_port->mutex);
188}
189
Christof Schmittbd0072e2009-11-24 16:54:11 +0100190static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200191{
192 if (atomic_dec_return(&wka_port->refcount) != 0)
193 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200194 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200195 schedule_delayed_work(&wka_port->work, HZ / 100);
196}
197
Christof Schmittbd0072e2009-11-24 16:54:11 +0100198static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200199 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200200{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200201 init_waitqueue_head(&wka_port->completion_wq);
202
203 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200204 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200205
Christof Schmittbd0072e2009-11-24 16:54:11 +0100206 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200207 atomic_set(&wka_port->refcount, 0);
208 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200209 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200210}
211
Christof Schmittbd0072e2009-11-24 16:54:11 +0100212static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200213{
214 cancel_delayed_work_sync(&wka->work);
215 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100216 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200217 mutex_unlock(&wka->mutex);
218}
219
Christof Schmittbd0072e2009-11-24 16:54:11 +0100220void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200221{
Swen Schilligf3450c72009-11-24 16:53:59 +0100222 if (!gs)
223 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200224 zfcp_fc_wka_port_force_offline(&gs->ms);
225 zfcp_fc_wka_port_force_offline(&gs->ts);
226 zfcp_fc_wka_port_force_offline(&gs->ds);
227 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200228}
229
Christof Schmitt24073b42008-06-10 18:20:54 +0200230static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100231 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200232{
233 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100234 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200235 struct zfcp_port *port;
236
Swen Schilligecf0c772009-11-24 16:53:58 +0100237 read_lock_irqsave(&adapter->port_list_lock, flags);
238 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100239 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200240 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200241 if (!port->d_id)
242 zfcp_erp_port_reopen(port,
243 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100244 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200245 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100246 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200247}
248
249static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
250{
251 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100252 struct fc_els_rscn *head;
253 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200254 u16 i;
255 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100256 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200257
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100258 head = (struct fc_els_rscn *) status_buffer->payload.data;
259 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200260
261 /* see FC-FS */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100262 no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200263
264 for (i = 1; i < no_entries; i++) {
265 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100266 page++;
267 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
268 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
269 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200270 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
271 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200272 }
Steffen Maier43f60cb2012-09-04 15:23:35 +0200273 zfcp_fc_conditional_port_scan(fsf_req->adapter);
Christof Schmitt24073b42008-06-10 18:20:54 +0200274}
275
Swen Schillig7ba58c92008-10-01 12:42:18 +0200276static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200277{
Swen Schilligecf0c772009-11-24 16:53:58 +0100278 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200279 struct zfcp_adapter *adapter = req->adapter;
280 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200281
Swen Schilligecf0c772009-11-24 16:53:58 +0100282 read_lock_irqsave(&adapter->port_list_lock, flags);
283 list_for_each_entry(port, &adapter->port_list, list)
284 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100285 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200286 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100287 }
288 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200289}
290
291static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
292{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100293 struct fsf_status_read_buffer *status_buffer;
294 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200295
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100296 status_buffer = (struct fsf_status_read_buffer *) req->data;
297 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
298 zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200299}
300
301static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
302{
303 struct fsf_status_read_buffer *status_buffer =
304 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100305 struct fc_els_logo *logo =
306 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200307
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100308 zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200309}
310
311/**
312 * zfcp_fc_incoming_els - handle incoming ELS
313 * @fsf_req - request which contains incoming ELS
314 */
315void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
316{
317 struct fsf_status_read_buffer *status_buffer =
318 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200319 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200320
Swen Schillig2c55b752010-12-02 15:16:13 +0100321 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100322 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200323 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100324 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200325 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100326 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200327 zfcp_fc_incoming_rscn(fsf_req);
328}
329
Christof Schmittfcf7e612011-02-22 19:54:42 +0100330static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200331{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100332 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
333 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200334
Christof Schmittfcf7e612011-02-22 19:54:42 +0100335 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200336 return;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100337 if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200338 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100339
Christof Schmitt24073b42008-06-10 18:20:54 +0200340 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100341 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200342}
343
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100344static void zfcp_fc_complete(void *data)
345{
346 complete(data);
347}
348
Christof Schmittfcf7e612011-02-22 19:54:42 +0100349static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
350{
351 ct_hdr->ct_rev = FC_CT_REV;
352 ct_hdr->ct_fs_type = FC_FST_DIR;
353 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
354 ct_hdr->ct_cmd = cmd;
355 ct_hdr->ct_mr_size = mr_size / 4;
356}
357
Christof Schmitt799b76d2009-08-18 15:43:20 +0200358static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100359 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200360{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200361 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100362 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100363 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
364 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200365 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200366
367 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100368 fc_req->ct_els.port = port;
369 fc_req->ct_els.handler = zfcp_fc_complete;
370 fc_req->ct_els.handler_data = &completion;
371 fc_req->ct_els.req = &fc_req->sg_req;
372 fc_req->ct_els.resp = &fc_req->sg_rsp;
373 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
374 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200375
Christof Schmittfcf7e612011-02-22 19:54:42 +0100376 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
377 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
378 gid_pn_req->gid_pn.fn_wwpn = port->wwpn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200379
Christof Schmittfcf7e612011-02-22 19:54:42 +0100380 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100381 adapter->pool.gid_pn_req,
382 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100383 if (!ret) {
384 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100385 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100386 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200387 return ret;
388}
389
390/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100391 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200392 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200393 * return: -ENOMEM on error, 0 otherwise
394 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200395static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200396{
397 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100398 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200399 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200400
Christof Schmittfcf7e612011-02-22 19:54:42 +0100401 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
402 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200403 return -ENOMEM;
404
Christof Schmittfcf7e612011-02-22 19:54:42 +0100405 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200406
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200407 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200408 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200409 goto out;
410
Christof Schmittfcf7e612011-02-22 19:54:42 +0100411 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200412
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200413 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200414out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100415 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200416 return ret;
417}
418
Christof Schmitt799b76d2009-08-18 15:43:20 +0200419void zfcp_fc_port_did_lookup(struct work_struct *work)
420{
421 int ret;
422 struct zfcp_port *port = container_of(work, struct zfcp_port,
423 gid_pn_work);
424
425 ret = zfcp_fc_ns_gid_pn(port);
426 if (ret) {
427 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100428 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200429 goto out;
430 }
431
432 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200433 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200434 goto out;
435 }
436
Swen Schilligea4a3a62010-12-02 15:16:16 +0100437 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200438out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100439 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200440}
441
Christof Schmitt24073b42008-06-10 18:20:54 +0200442/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200443 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
444 * @port: The zfcp_port to lookup the d_id for.
445 */
446void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
447{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100448 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200449 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100450 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200451}
452
453/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200454 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
455 * @port: zfcp_port structure
456 * @plogi: plogi payload
457 *
458 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
459 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100460void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200461{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100462 if (plogi->fl_wwpn != port->wwpn) {
463 port->d_id = 0;
464 dev_warn(&port->adapter->ccw_device->dev,
465 "A port opened with WWPN 0x%016Lx returned data that "
466 "identifies it as WWPN 0x%016Lx\n",
467 (unsigned long long) port->wwpn,
468 (unsigned long long) plogi->fl_wwpn);
469 return;
470 }
471
472 port->wwnn = plogi->fl_wwnn;
473 port->maxframe_size = plogi->fl_csp.sp_bb_data;
474
475 if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200476 port->supported_classes |= FC_COS_CLASS1;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100477 if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200478 port->supported_classes |= FC_COS_CLASS2;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100479 if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200480 port->supported_classes |= FC_COS_CLASS3;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100481 if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200482 port->supported_classes |= FC_COS_CLASS4;
483}
484
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100485static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200486{
Christof Schmitt087897e2011-02-22 19:54:41 +0100487 struct zfcp_fc_req *fc_req = data;
488 struct zfcp_port *port = fc_req->ct_els.port;
489 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200490
Christof Schmitt087897e2011-02-22 19:54:41 +0100491 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200492 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200493 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100494 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200495 goto out;
496 }
497
498 if (!port->wwnn)
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100499 port->wwnn = adisc_resp->adisc_wwnn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200500
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100501 if ((port->wwpn != adisc_resp->adisc_wwpn) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100502 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100503 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100504 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100505 goto out;
506 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200507
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100508 /* port is good, unblock rport without going through erp */
509 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200510 out:
Christof Schmitt14e242e2009-08-18 15:43:11 +0200511 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100512 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100513 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200514}
515
516static int zfcp_fc_adisc(struct zfcp_port *port)
517{
Christof Schmitt087897e2011-02-22 19:54:41 +0100518 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200519 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100520 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100521 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200522
Christof Schmitt087897e2011-02-22 19:54:41 +0100523 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
524 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200525 return -ENOMEM;
526
Christof Schmitt087897e2011-02-22 19:54:41 +0100527 fc_req->ct_els.port = port;
528 fc_req->ct_els.req = &fc_req->sg_req;
529 fc_req->ct_els.resp = &fc_req->sg_rsp;
530 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100531 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100532 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100533 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200534
Christof Schmitt087897e2011-02-22 19:54:41 +0100535 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
536 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200537
538 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
539 without FC-AL-2 capability, so we don't set it */
Christof Schmitt087897e2011-02-22 19:54:41 +0100540 fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost);
541 fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost);
542 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
543 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200544
Christof Schmitt087897e2011-02-22 19:54:41 +0100545 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100546 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100547 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100548 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100549
550 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200551}
552
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100553void zfcp_fc_link_test_work(struct work_struct *work)
554{
555 struct zfcp_port *port =
556 container_of(work, struct zfcp_port, test_link_work);
557 int retval;
558
Christof Schmitt615f59e2010-02-17 11:18:56 +0100559 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100560 port->rport_task = RPORT_DEL;
561 zfcp_scsi_rport_work(&port->rport_work);
562
Christof Schmitt14e242e2009-08-18 15:43:11 +0200563 /* only issue one test command at one time per port */
564 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
565 goto out;
566
567 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
568
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100569 retval = zfcp_fc_adisc(port);
570 if (retval == 0)
571 return;
572
573 /* send of ADISC was not possible */
Christof Schmitt14e242e2009-08-18 15:43:11 +0200574 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100575 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100576
Christof Schmitt14e242e2009-08-18 15:43:11 +0200577out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100578 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100579}
580
Christof Schmitt24073b42008-06-10 18:20:54 +0200581/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200582 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200583 * @port: port to be tested
584 *
585 * Test status of a link to a remote port using the ELS command ADISC.
586 * If there is a problem with the remote port, error recovery steps
587 * will be triggered.
588 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200589void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200590{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100591 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200592 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100593 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200594}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200595
Christof Schmittf9773222011-02-22 19:54:43 +0100596static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200597{
Christof Schmittf9773222011-02-22 19:54:43 +0100598 struct zfcp_fc_req *fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200599
Christof Schmittf9773222011-02-22 19:54:43 +0100600 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
601 if (!fc_req)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200602 return NULL;
603
Christof Schmittf9773222011-02-22 19:54:43 +0100604 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
605 kmem_cache_free(zfcp_fc_req_cache, fc_req);
606 return NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200607 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200608
Christof Schmittf9773222011-02-22 19:54:43 +0100609 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
610 sizeof(struct zfcp_fc_gpn_ft_req));
611
612 return fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200613}
614
Christof Schmittf9773222011-02-22 19:54:43 +0100615static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200616 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200617{
Christof Schmittf9773222011-02-22 19:54:43 +0100618 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
619 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100620 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200621 int ret;
622
Christof Schmittf9773222011-02-22 19:54:43 +0100623 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100624 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200625
Christof Schmittf9773222011-02-22 19:54:43 +0100626 ct_els->handler = zfcp_fc_complete;
627 ct_els->handler_data = &completion;
628 ct_els->req = &fc_req->sg_req;
629 ct_els->resp = &fc_req->sg_rsp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200630
Christof Schmittf9773222011-02-22 19:54:43 +0100631 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
Swen Schillig51375ee2010-01-14 17:19:02 +0100632 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200633 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100634 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200635 return ret;
636}
637
Swen Schilligf3450c72009-11-24 16:53:59 +0100638static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200639{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200640 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
641 return;
642
Swen Schilligcc8c2822008-06-10 18:21:00 +0200643 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
644
Christof Schmitt04062892008-10-01 12:42:20 +0200645 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100646 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200647 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100648
Swen Schilligf3450c72009-11-24 16:53:59 +0100649 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200650}
651
Christof Schmittf9773222011-02-22 19:54:43 +0100652static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100653 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200654{
Christof Schmittf9773222011-02-22 19:54:43 +0100655 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
656 struct scatterlist *sg = &fc_req->sg_rsp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100657 struct fc_ct_hdr *hdr = sg_virt(sg);
658 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200659 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100660 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100661 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200662 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200663 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200664
Christof Schmittf9773222011-02-22 19:54:43 +0100665 if (ct_els->status)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200666 return -EIO;
667
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100668 if (hdr->ct_cmd != FC_FS_ACC) {
669 if (hdr->ct_reason == FC_BA_RJT_UNABLE)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200670 return -EAGAIN; /* might be a temporary condition */
671 return -EIO;
672 }
673
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100674 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100675 dev_warn(&adapter->ccw_device->dev,
676 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100677 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200678 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100679 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200680
Swen Schilligcc8c2822008-06-10 18:21:00 +0200681 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100682 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100683 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200684 acc++;
685 else
686 acc = sg_virt(++sg);
687
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100688 last = acc->fp_flags & FC_NS_FID_LAST;
689 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200690
Swen Schillig5ab944f2008-10-01 12:42:17 +0200691 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100692 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200693 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200694 /* skip the adapter's port and known remote ports */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100695 if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200696 continue;
697
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100698 port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200699 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100700 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100701 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100702 else if (PTR_ERR(port) != -EEXIST)
703 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200704 }
705
706 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100707 write_lock_irqsave(&adapter->port_list_lock, flags);
708 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100709 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100710 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100711
712 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100713 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Sebastian Ott83d4e1c2013-04-26 16:13:48 +0200714 device_unregister(&port->dev);
Swen Schilligf3450c72009-11-24 16:53:59 +0100715 }
716
Swen Schilligcc8c2822008-06-10 18:21:00 +0200717 return ret;
718}
719
720/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200721 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100722 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200723 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100724void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200725{
Martin Peschke18f87a62014-11-13 14:59:48 +0100726 struct delayed_work *dw = to_delayed_work(work);
727 struct zfcp_adapter *adapter = container_of(dw, struct zfcp_adapter,
Swen Schillig9eae07e2009-11-24 16:54:06 +0100728 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200729 int ret, i;
Christof Schmittf9773222011-02-22 19:54:43 +0100730 struct zfcp_fc_req *fc_req;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100731 int chain, max_entries, buf_num, max_bytes;
732
Martin Peschke18f87a62014-11-13 14:59:48 +0100733 zfcp_fc_port_scan_time(adapter);
734
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100735 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100736 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
737 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
738 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200739
Swen Schillig306b6ed2009-04-17 15:08:02 +0200740 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
741 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100742 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200743
Swen Schillig9eae07e2009-11-24 16:54:06 +0100744 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
745 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200746
Christof Schmittf9773222011-02-22 19:54:43 +0100747 fc_req = zfcp_alloc_sg_env(buf_num);
748 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200749 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200750
751 for (i = 0; i < 3; i++) {
Christof Schmittf9773222011-02-22 19:54:43 +0100752 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200753 if (!ret) {
Christof Schmittf9773222011-02-22 19:54:43 +0100754 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200755 if (ret == -EAGAIN)
756 ssleep(1);
757 else
758 break;
759 }
760 }
Christof Schmittf9773222011-02-22 19:54:43 +0100761 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
762 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200763out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200764 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200765}
766
Christof Schmitt038d9442011-02-22 19:54:48 +0100767static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
768 struct zfcp_fc_req *fc_req)
769{
770 DECLARE_COMPLETION_ONSTACK(completion);
771 char devno[] = "DEVNO:";
772 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
773 struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req;
774 struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp;
775 int ret;
776
777 zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID,
778 FC_SYMBOLIC_NAME_SIZE);
779 hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host));
780
781 sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req));
782 sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp));
783
784 ct_els->handler = zfcp_fc_complete;
785 ct_els->handler_data = &completion;
786 ct_els->req = &fc_req->sg_req;
787 ct_els->resp = &fc_req->sg_rsp;
788
789 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
790 ZFCP_FC_CTELS_TMO);
791 if (ret)
792 return ret;
793
794 wait_for_completion(&completion);
795 if (ct_els->status)
796 return ct_els->status;
797
798 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV &&
799 !(strstr(gspn_rsp->gspn.fp_name, devno)))
800 snprintf(fc_host_symbolic_name(adapter->scsi_host),
801 FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s",
802 gspn_rsp->gspn.fp_name, devno,
803 dev_name(&adapter->ccw_device->dev),
804 init_utsname()->nodename);
805 else
806 strlcpy(fc_host_symbolic_name(adapter->scsi_host),
807 gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
808
809 return 0;
810}
811
812static void zfcp_fc_rspn(struct zfcp_adapter *adapter,
813 struct zfcp_fc_req *fc_req)
814{
815 DECLARE_COMPLETION_ONSTACK(completion);
816 struct Scsi_Host *shost = adapter->scsi_host;
817 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
818 struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req;
819 struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp;
820 int ret, len;
821
822 zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID,
823 FC_SYMBOLIC_NAME_SIZE);
824 hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost));
825 len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost),
826 FC_SYMBOLIC_NAME_SIZE);
827 rspn_req->rspn.fr_name_len = len;
828
829 sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req));
830 sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp));
831
832 ct_els->handler = zfcp_fc_complete;
833 ct_els->handler_data = &completion;
834 ct_els->req = &fc_req->sg_req;
835 ct_els->resp = &fc_req->sg_rsp;
836
837 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
838 ZFCP_FC_CTELS_TMO);
839 if (!ret)
840 wait_for_completion(&completion);
841}
842
843/**
844 * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name
845 * @work: ns_up_work of the adapter where to update the symbolic port name
846 *
847 * Retrieve the current symbolic port name that may have been set by
848 * the hardware using the GSPN request and update the fc_host
849 * symbolic_name sysfs attribute. When running in NPIV mode (and hence
850 * the port name is unique for this system), update the symbolic port
851 * name to add Linux specific information and update the FC nameserver
852 * using the RSPN request.
853 */
854void zfcp_fc_sym_name_update(struct work_struct *work)
855{
856 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
857 ns_up_work);
858 int ret;
859 struct zfcp_fc_req *fc_req;
860
861 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
862 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
863 return;
864
865 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
866 if (!fc_req)
867 return;
868
869 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
870 if (ret)
871 goto out_free;
872
873 ret = zfcp_fc_gspn(adapter, fc_req);
874 if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
875 goto out_ds_put;
876
877 memset(fc_req, 0, sizeof(*fc_req));
878 zfcp_fc_rspn(adapter, fc_req);
879
880out_ds_put:
881 zfcp_fc_wka_port_put(&adapter->gs->ds);
882out_free:
883 kmem_cache_free(zfcp_fc_req_cache, fc_req);
884}
885
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100886static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200887{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100888 struct fc_bsg_job *job = data;
889 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100890 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200891
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100892 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
893 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
894 jr->result = zfcp_ct_els->status ? -EIO : 0;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200895 job->job_done(job);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200896}
897
Christof Schmittf09d5452010-01-13 17:52:36 +0100898static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job)
899{
900 u32 preamble_word1;
901 u8 gs_type;
902 struct zfcp_adapter *adapter;
903
904 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
905 gs_type = (preamble_word1 & 0xff000000) >> 24;
906
907 adapter = (struct zfcp_adapter *) job->shost->hostdata[0];
908
909 switch (gs_type) {
910 case FC_FST_ALIAS:
911 return &adapter->gs->as;
912 case FC_FST_MGMT:
913 return &adapter->gs->ms;
914 case FC_FST_TIME:
915 return &adapter->gs->ts;
916 break;
917 case FC_FST_DIR:
918 return &adapter->gs->ds;
919 break;
920 default:
921 return NULL;
922 }
923}
924
925static void zfcp_fc_ct_job_handler(void *data)
926{
927 struct fc_bsg_job *job = data;
928 struct zfcp_fc_wka_port *wka_port;
929
930 wka_port = zfcp_fc_job_wka_port(job);
931 zfcp_fc_wka_port_put(wka_port);
932
933 zfcp_fc_ct_els_job_handler(data);
934}
935
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100936static int zfcp_fc_exec_els_job(struct fc_bsg_job *job,
937 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200938{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100939 struct zfcp_fsf_ct_els *els = job->dd_data;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200940 struct fc_rport *rport = job->rport;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200941 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100942 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200943
Sven Schuetz9d544f22009-04-06 18:31:47 +0200944 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200945 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100946 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200947 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100948
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100949 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100950 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100951 } else
952 d_id = ntoh24(job->request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200953
Christof Schmittf09d5452010-01-13 17:52:36 +0100954 els->handler = zfcp_fc_ct_els_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100955 return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200956}
957
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100958static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job,
959 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200960{
961 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100962 struct zfcp_fsf_ct_els *ct = job->dd_data;
963 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200964
Christof Schmittf09d5452010-01-13 17:52:36 +0100965 wka_port = zfcp_fc_job_wka_port(job);
966 if (!wka_port)
967 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200968
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100969 ret = zfcp_fc_wka_port_get(wka_port);
970 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200971 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200972
Christof Schmittf09d5452010-01-13 17:52:36 +0100973 ct->handler = zfcp_fc_ct_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100974 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100975 if (ret)
976 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200977
Sven Schuetz9d544f22009-04-06 18:31:47 +0200978 return ret;
979}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200980
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100981int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job)
982{
983 struct Scsi_Host *shost;
984 struct zfcp_adapter *adapter;
985 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
986
987 shost = job->rport ? rport_to_shost(job->rport) : job->shost;
988 adapter = (struct zfcp_adapter *)shost->hostdata[0];
989
990 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
991 return -EINVAL;
992
993 ct_els->req = job->request_payload.sg_list;
994 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100995 ct_els->handler_data = job;
996
997 switch (job->request->msgcode) {
998 case FC_BSG_RPT_ELS:
999 case FC_BSG_HST_ELS_NOLOGIN:
1000 return zfcp_fc_exec_els_job(job, adapter);
1001 case FC_BSG_RPT_CT:
1002 case FC_BSG_HST_CT:
1003 return zfcp_fc_exec_ct_job(job, adapter);
1004 default:
1005 return -EINVAL;
1006 }
1007}
1008
Swen Schillig491ca442010-01-14 17:19:01 +01001009int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job)
1010{
1011 /* hardware tracks timeout, reset bsg timeout to not interfere */
1012 return -EAGAIN;
1013}
1014
Swen Schilligd5a282a2009-08-18 15:43:22 +02001015int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
1016{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001017 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +02001018
Christof Schmittbd0072e2009-11-24 16:54:11 +01001019 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001020 if (!wka_ports)
1021 return -ENOMEM;
1022
1023 adapter->gs = wka_ports;
1024 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
1025 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
1026 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
1027 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001028
1029 return 0;
1030}
1031
1032void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
1033{
1034 kfree(adapter->gs);
1035 adapter->gs = NULL;
1036}
1037