blob: 0f435ed9d1a0091432c2e30e4fdab5e110730216 [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 *
6 * Copyright IBM Corporation 2008
7 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Christof Schmitt24073b42008-06-10 18:20:54 +020012#include "zfcp_ext.h"
13
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010014enum rscn_address_format {
15 RSCN_PORT_ADDRESS = 0x0,
16 RSCN_AREA_ADDRESS = 0x1,
17 RSCN_DOMAIN_ADDRESS = 0x2,
18 RSCN_FABRIC_ADDRESS = 0x3,
19};
20
21static u32 rscn_range_mask[] = {
22 [RSCN_PORT_ADDRESS] = 0xFFFFFF,
23 [RSCN_AREA_ADDRESS] = 0xFFFF00,
24 [RSCN_DOMAIN_ADDRESS] = 0xFF0000,
25 [RSCN_FABRIC_ADDRESS] = 0x000000,
26};
27
Swen Schilligcc8c2822008-06-10 18:21:00 +020028struct ct_iu_gpn_ft_req {
29 struct ct_hdr header;
30 u8 flags;
31 u8 domain_id_scope;
32 u8 area_id_scope;
33 u8 fc4_type;
34} __attribute__ ((packed));
35
36struct gpn_ft_resp_acc {
37 u8 control;
38 u8 port_id[3];
39 u8 reserved[4];
40 u64 wwpn;
41} __attribute__ ((packed));
42
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +010043#define ZFCP_CT_SIZE_ONE_PAGE (PAGE_SIZE - sizeof(struct ct_hdr))
44#define ZFCP_GPN_FT_ENTRIES (ZFCP_CT_SIZE_ONE_PAGE \
45 / sizeof(struct gpn_ft_resp_acc))
Swen Schilligcc8c2822008-06-10 18:21:00 +020046#define ZFCP_GPN_FT_BUFFERS 4
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +010047#define ZFCP_GPN_FT_MAX_SIZE (ZFCP_GPN_FT_BUFFERS * PAGE_SIZE \
48 - sizeof(struct ct_hdr))
Swen Schilligcc8c2822008-06-10 18:21:00 +020049#define ZFCP_GPN_FT_MAX_ENTRIES ZFCP_GPN_FT_BUFFERS * (ZFCP_GPN_FT_ENTRIES + 1)
50
51struct ct_iu_gpn_ft_resp {
52 struct ct_hdr header;
53 struct gpn_ft_resp_acc accept[ZFCP_GPN_FT_ENTRIES];
54} __attribute__ ((packed));
55
56struct zfcp_gpn_ft {
57 struct zfcp_send_ct ct;
58 struct scatterlist sg_req;
59 struct scatterlist sg_resp[ZFCP_GPN_FT_BUFFERS];
60};
61
Swen Schillig5ab944f2008-10-01 12:42:17 +020062struct zfcp_fc_ns_handler_data {
63 struct completion done;
64 void (*handler)(unsigned long);
65 unsigned long handler_data;
66};
67
68static int zfcp_wka_port_get(struct zfcp_wka_port *wka_port)
69{
70 if (mutex_lock_interruptible(&wka_port->mutex))
71 return -ERESTARTSYS;
72
Christof Schmitt1c1cba12008-11-26 18:07:36 +010073 if (wka_port->status == ZFCP_WKA_PORT_OFFLINE ||
74 wka_port->status == ZFCP_WKA_PORT_CLOSING) {
Swen Schillig5ab944f2008-10-01 12:42:17 +020075 wka_port->status = ZFCP_WKA_PORT_OPENING;
76 if (zfcp_fsf_open_wka_port(wka_port))
77 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
78 }
79
80 mutex_unlock(&wka_port->mutex);
81
82 wait_event_timeout(
83 wka_port->completion_wq,
84 wka_port->status == ZFCP_WKA_PORT_ONLINE ||
85 wka_port->status == ZFCP_WKA_PORT_OFFLINE,
86 HZ >> 1);
87
88 if (wka_port->status == ZFCP_WKA_PORT_ONLINE) {
89 atomic_inc(&wka_port->refcount);
90 return 0;
91 }
92 return -EIO;
93}
94
95static void zfcp_wka_port_offline(struct work_struct *work)
96{
97 struct delayed_work *dw = container_of(work, struct delayed_work, work);
98 struct zfcp_wka_port *wka_port =
99 container_of(dw, struct zfcp_wka_port, work);
100
101 wait_event(wka_port->completion_wq,
102 atomic_read(&wka_port->refcount) == 0);
103
104 mutex_lock(&wka_port->mutex);
105 if ((atomic_read(&wka_port->refcount) != 0) ||
106 (wka_port->status != ZFCP_WKA_PORT_ONLINE))
107 goto out;
108
109 wka_port->status = ZFCP_WKA_PORT_CLOSING;
110 if (zfcp_fsf_close_wka_port(wka_port)) {
111 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
112 wake_up(&wka_port->completion_wq);
113 }
114out:
115 mutex_unlock(&wka_port->mutex);
116}
117
118static void zfcp_wka_port_put(struct zfcp_wka_port *wka_port)
119{
120 if (atomic_dec_return(&wka_port->refcount) != 0)
121 return;
122 /* wait 10 miliseconds, other reqs might pop in */
123 schedule_delayed_work(&wka_port->work, HZ / 100);
124}
125
126void zfcp_fc_nameserver_init(struct zfcp_adapter *adapter)
127{
128 struct zfcp_wka_port *wka_port = &adapter->nsp;
129
130 init_waitqueue_head(&wka_port->completion_wq);
131
132 wka_port->adapter = adapter;
133 wka_port->d_id = ZFCP_DID_DIRECTORY_SERVICE;
134
135 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
136 atomic_set(&wka_port->refcount, 0);
137 mutex_init(&wka_port->mutex);
138 INIT_DELAYED_WORK(&wka_port->work, zfcp_wka_port_offline);
139}
140
Christof Schmitt24073b42008-06-10 18:20:54 +0200141static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
142 struct fcp_rscn_element *elem)
143{
144 unsigned long flags;
145 struct zfcp_port *port;
146
147 read_lock_irqsave(&zfcp_data.config_lock, flags);
148 list_for_each_entry(port, &fsf_req->adapter->port_list_head, list) {
Martin Petermannbce02612008-11-26 18:07:35 +0100149 if (!(atomic_read(&port->status) & ZFCP_STATUS_PORT_PHYS_OPEN))
Christof Schmitt24073b42008-06-10 18:20:54 +0200150 /* Try to connect to unused ports anyway. */
151 zfcp_erp_port_reopen(port,
152 ZFCP_STATUS_COMMON_ERP_FAILED,
153 82, fsf_req);
154 else if ((port->d_id & range) == (elem->nport_did & range))
155 /* Check connection status for connected ports */
156 zfcp_test_link(port);
157 }
158 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
159}
160
161static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
162{
163 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
164 struct fcp_rscn_head *fcp_rscn_head;
165 struct fcp_rscn_element *fcp_rscn_element;
166 u16 i;
167 u16 no_entries;
168 u32 range_mask;
169
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200170 fcp_rscn_head = (struct fcp_rscn_head *) status_buffer->payload.data;
171 fcp_rscn_element = (struct fcp_rscn_element *) fcp_rscn_head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200172
173 /* see FC-FS */
174 no_entries = fcp_rscn_head->payload_len /
175 sizeof(struct fcp_rscn_element);
176
177 for (i = 1; i < no_entries; i++) {
178 /* skip head and start with 1st element */
179 fcp_rscn_element++;
Christof Schmitte0d7fcb2008-12-19 16:56:58 +0100180 range_mask = rscn_range_mask[fcp_rscn_element->addr_format];
Christof Schmitt24073b42008-06-10 18:20:54 +0200181 _zfcp_fc_incoming_rscn(fsf_req, range_mask, fcp_rscn_element);
182 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200183 schedule_work(&fsf_req->adapter->scan_work);
Christof Schmitt24073b42008-06-10 18:20:54 +0200184}
185
Swen Schillig7ba58c92008-10-01 12:42:18 +0200186static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200187{
188 struct zfcp_adapter *adapter = req->adapter;
189 struct zfcp_port *port;
190 unsigned long flags;
191
192 read_lock_irqsave(&zfcp_data.config_lock, flags);
193 list_for_each_entry(port, &adapter->port_list_head, list)
194 if (port->wwpn == wwpn)
195 break;
196 read_unlock_irqrestore(&zfcp_data.config_lock, flags);
197
198 if (port && (port->wwpn == wwpn))
199 zfcp_erp_port_forced_reopen(port, 0, 83, req);
200}
201
202static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
203{
204 struct fsf_status_read_buffer *status_buffer =
205 (struct fsf_status_read_buffer *)req->data;
206 struct fsf_plogi *els_plogi =
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200207 (struct fsf_plogi *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200208
209 zfcp_fc_incoming_wwpn(req, els_plogi->serv_param.wwpn);
210}
211
212static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
213{
214 struct fsf_status_read_buffer *status_buffer =
215 (struct fsf_status_read_buffer *)req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200216 struct fcp_logo *els_logo =
217 (struct fcp_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200218
219 zfcp_fc_incoming_wwpn(req, els_logo->nport_wwpn);
220}
221
222/**
223 * zfcp_fc_incoming_els - handle incoming ELS
224 * @fsf_req - request which contains incoming ELS
225 */
226void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
227{
228 struct fsf_status_read_buffer *status_buffer =
229 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200230 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200231
232 zfcp_san_dbf_event_incoming_els(fsf_req);
233 if (els_type == LS_PLOGI)
234 zfcp_fc_incoming_plogi(fsf_req);
235 else if (els_type == LS_LOGO)
236 zfcp_fc_incoming_logo(fsf_req);
237 else if (els_type == LS_RSCN)
238 zfcp_fc_incoming_rscn(fsf_req);
239}
240
Swen Schillig5ab944f2008-10-01 12:42:17 +0200241static void zfcp_fc_ns_handler(unsigned long data)
242{
243 struct zfcp_fc_ns_handler_data *compl_rec =
244 (struct zfcp_fc_ns_handler_data *) data;
245
246 if (compl_rec->handler)
247 compl_rec->handler(compl_rec->handler_data);
248
249 complete(&compl_rec->done);
250}
251
252static void zfcp_fc_ns_gid_pn_eval(unsigned long data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200253{
254 struct zfcp_gid_pn_data *gid_pn = (struct zfcp_gid_pn_data *) data;
255 struct zfcp_send_ct *ct = &gid_pn->ct;
256 struct ct_iu_gid_pn_req *ct_iu_req = sg_virt(ct->req);
257 struct ct_iu_gid_pn_resp *ct_iu_resp = sg_virt(ct->resp);
258 struct zfcp_port *port = gid_pn->port;
259
260 if (ct->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200261 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100262 if (ct_iu_resp->header.cmd_rsp_code != ZFCP_CT_ACCEPT)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200263 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100264
Christof Schmitt24073b42008-06-10 18:20:54 +0200265 /* paranoia */
266 if (ct_iu_req->wwpn != port->wwpn)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200267 return;
Christof Schmitt24073b42008-06-10 18:20:54 +0200268 /* looks like a valid d_id */
269 port->d_id = ct_iu_resp->d_id & ZFCP_DID_MASK;
Christof Schmitt24073b42008-06-10 18:20:54 +0200270}
271
Swen Schillig5ab944f2008-10-01 12:42:17 +0200272int static zfcp_fc_ns_gid_pn_request(struct zfcp_erp_action *erp_action,
273 struct zfcp_gid_pn_data *gid_pn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200274{
Christof Schmitt24073b42008-06-10 18:20:54 +0200275 struct zfcp_adapter *adapter = erp_action->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200276 struct zfcp_fc_ns_handler_data compl_rec;
277 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200278
279 /* setup parameters for send generic command */
280 gid_pn->port = erp_action->port;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200281 gid_pn->ct.wka_port = &adapter->nsp;
282 gid_pn->ct.handler = zfcp_fc_ns_handler;
283 gid_pn->ct.handler_data = (unsigned long) &compl_rec;
Christof Schmitt24073b42008-06-10 18:20:54 +0200284 gid_pn->ct.timeout = ZFCP_NS_GID_PN_TIMEOUT;
285 gid_pn->ct.req = &gid_pn->req;
286 gid_pn->ct.resp = &gid_pn->resp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200287 sg_init_one(&gid_pn->req, &gid_pn->ct_iu_req,
288 sizeof(struct ct_iu_gid_pn_req));
289 sg_init_one(&gid_pn->resp, &gid_pn->ct_iu_resp,
290 sizeof(struct ct_iu_gid_pn_resp));
291
292 /* setup nameserver request */
293 gid_pn->ct_iu_req.header.revision = ZFCP_CT_REVISION;
294 gid_pn->ct_iu_req.header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
295 gid_pn->ct_iu_req.header.gs_subtype = ZFCP_CT_NAME_SERVER;
296 gid_pn->ct_iu_req.header.options = ZFCP_CT_SYNCHRONOUS;
297 gid_pn->ct_iu_req.header.cmd_rsp_code = ZFCP_CT_GID_PN;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100298 gid_pn->ct_iu_req.header.max_res_size = ZFCP_CT_SIZE_ONE_PAGE / 4;
Christof Schmitt24073b42008-06-10 18:20:54 +0200299 gid_pn->ct_iu_req.wwpn = erp_action->port->wwpn;
300
Swen Schillig5ab944f2008-10-01 12:42:17 +0200301 init_completion(&compl_rec.done);
302 compl_rec.handler = zfcp_fc_ns_gid_pn_eval;
303 compl_rec.handler_data = (unsigned long) gid_pn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200304 ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.fsf_req_erp,
305 erp_action);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200306 if (!ret)
307 wait_for_completion(&compl_rec.done);
308 return ret;
309}
310
311/**
312 * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request
313 * @erp_action: pointer to zfcp_erp_action where GID_PN request is needed
314 * return: -ENOMEM on error, 0 otherwise
315 */
316int zfcp_fc_ns_gid_pn(struct zfcp_erp_action *erp_action)
317{
318 int ret;
319 struct zfcp_gid_pn_data *gid_pn;
320 struct zfcp_adapter *adapter = erp_action->adapter;
321
322 gid_pn = mempool_alloc(adapter->pool.data_gid_pn, GFP_ATOMIC);
323 if (!gid_pn)
324 return -ENOMEM;
325
326 memset(gid_pn, 0, sizeof(*gid_pn));
327
328 ret = zfcp_wka_port_get(&adapter->nsp);
Christof Schmitt24073b42008-06-10 18:20:54 +0200329 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200330 goto out;
331
332 ret = zfcp_fc_ns_gid_pn_request(erp_action, gid_pn);
333
334 zfcp_wka_port_put(&adapter->nsp);
335out:
336 mempool_free(gid_pn, adapter->pool.data_gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200337 return ret;
338}
339
340/**
341 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
342 * @port: zfcp_port structure
343 * @plogi: plogi payload
344 *
345 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
346 */
347void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fsf_plogi *plogi)
348{
349 port->maxframe_size = plogi->serv_param.common_serv_param[7] |
350 ((plogi->serv_param.common_serv_param[6] & 0x0F) << 8);
351 if (plogi->serv_param.class1_serv_param[0] & 0x80)
352 port->supported_classes |= FC_COS_CLASS1;
353 if (plogi->serv_param.class2_serv_param[0] & 0x80)
354 port->supported_classes |= FC_COS_CLASS2;
355 if (plogi->serv_param.class3_serv_param[0] & 0x80)
356 port->supported_classes |= FC_COS_CLASS3;
357 if (plogi->serv_param.class4_serv_param[0] & 0x80)
358 port->supported_classes |= FC_COS_CLASS4;
359}
360
361struct zfcp_els_adisc {
362 struct zfcp_send_els els;
363 struct scatterlist req;
364 struct scatterlist resp;
365 struct zfcp_ls_adisc ls_adisc;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200366 struct zfcp_ls_adisc ls_adisc_acc;
Christof Schmitt24073b42008-06-10 18:20:54 +0200367};
368
369static void zfcp_fc_adisc_handler(unsigned long data)
370{
371 struct zfcp_els_adisc *adisc = (struct zfcp_els_adisc *) data;
372 struct zfcp_port *port = adisc->els.port;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200373 struct zfcp_ls_adisc *ls_adisc = &adisc->ls_adisc_acc;
Christof Schmitt24073b42008-06-10 18:20:54 +0200374
Christof Schmitt3968ce82008-07-02 10:56:32 +0200375 if (adisc->els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200376 /* request rejected or timed out */
377 zfcp_erp_port_forced_reopen(port, 0, 63, NULL);
378 goto out;
379 }
380
381 if (!port->wwnn)
382 port->wwnn = ls_adisc->wwnn;
383
384 if (port->wwpn != ls_adisc->wwpn)
385 zfcp_erp_port_reopen(port, 0, 64, NULL);
386
387 out:
388 zfcp_port_put(port);
389 kfree(adisc);
390}
391
392static int zfcp_fc_adisc(struct zfcp_port *port)
393{
394 struct zfcp_els_adisc *adisc;
395 struct zfcp_adapter *adapter = port->adapter;
396
397 adisc = kzalloc(sizeof(struct zfcp_els_adisc), GFP_ATOMIC);
398 if (!adisc)
399 return -ENOMEM;
400
401 adisc->els.req = &adisc->req;
402 adisc->els.resp = &adisc->resp;
403 sg_init_one(adisc->els.req, &adisc->ls_adisc,
404 sizeof(struct zfcp_ls_adisc));
405 sg_init_one(adisc->els.resp, &adisc->ls_adisc_acc,
Swen Schillig44cc76f2008-10-01 12:42:16 +0200406 sizeof(struct zfcp_ls_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200407
Christof Schmitt24073b42008-06-10 18:20:54 +0200408 adisc->els.adapter = adapter;
409 adisc->els.port = port;
410 adisc->els.d_id = port->d_id;
411 adisc->els.handler = zfcp_fc_adisc_handler;
412 adisc->els.handler_data = (unsigned long) adisc;
413 adisc->els.ls_code = adisc->ls_adisc.code = ZFCP_LS_ADISC;
414
415 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
416 without FC-AL-2 capability, so we don't set it */
417 adisc->ls_adisc.wwpn = fc_host_port_name(adapter->scsi_host);
418 adisc->ls_adisc.wwnn = fc_host_node_name(adapter->scsi_host);
419 adisc->ls_adisc.nport_id = fc_host_port_id(adapter->scsi_host);
420
421 return zfcp_fsf_send_els(&adisc->els);
422}
423
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100424void zfcp_fc_link_test_work(struct work_struct *work)
425{
426 struct zfcp_port *port =
427 container_of(work, struct zfcp_port, test_link_work);
428 int retval;
429
430 retval = zfcp_fc_adisc(port);
431 if (retval == 0)
432 return;
433
434 /* send of ADISC was not possible */
435 zfcp_port_put(port);
436 if (retval != -EBUSY)
437 zfcp_erp_port_forced_reopen(port, 0, 65, NULL);
438}
439
Christof Schmitt24073b42008-06-10 18:20:54 +0200440/**
441 * zfcp_test_link - lightweight link test procedure
442 * @port: port to be tested
443 *
444 * Test status of a link to a remote port using the ELS command ADISC.
445 * If there is a problem with the remote port, error recovery steps
446 * will be triggered.
447 */
448void zfcp_test_link(struct zfcp_port *port)
449{
Christof Schmitt24073b42008-06-10 18:20:54 +0200450 zfcp_port_get(port);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100451 if (!queue_work(zfcp_data.work_queue, &port->test_link_work))
452 zfcp_port_put(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200453}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200454
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100455static void zfcp_free_sg_env(struct zfcp_gpn_ft *gpn_ft, int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200456{
457 struct scatterlist *sg = &gpn_ft->sg_req;
458
459 kfree(sg_virt(sg)); /* free request buffer */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100460 zfcp_sg_free_table(gpn_ft->sg_resp, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200461
462 kfree(gpn_ft);
463}
464
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100465static struct zfcp_gpn_ft *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200466{
467 struct zfcp_gpn_ft *gpn_ft;
468 struct ct_iu_gpn_ft_req *req;
469
470 gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL);
471 if (!gpn_ft)
472 return NULL;
473
474 req = kzalloc(sizeof(struct ct_iu_gpn_ft_req), GFP_KERNEL);
475 if (!req) {
476 kfree(gpn_ft);
477 gpn_ft = NULL;
478 goto out;
479 }
480 sg_init_one(&gpn_ft->sg_req, req, sizeof(*req));
481
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100482 if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) {
483 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200484 gpn_ft = NULL;
485 }
486out:
487 return gpn_ft;
488}
489
490
491static int zfcp_scan_issue_gpn_ft(struct zfcp_gpn_ft *gpn_ft,
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100492 struct zfcp_adapter *adapter,
493 int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200494{
495 struct zfcp_send_ct *ct = &gpn_ft->ct;
496 struct ct_iu_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200497 struct zfcp_fc_ns_handler_data compl_rec;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200498 int ret;
499
500 /* prepare CT IU for GPN_FT */
501 req->header.revision = ZFCP_CT_REVISION;
502 req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
503 req->header.gs_subtype = ZFCP_CT_NAME_SERVER;
504 req->header.options = ZFCP_CT_SYNCHRONOUS;
505 req->header.cmd_rsp_code = ZFCP_CT_GPN_FT;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100506 req->header.max_res_size = max_bytes / 4;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200507 req->flags = 0;
508 req->domain_id_scope = 0;
509 req->area_id_scope = 0;
510 req->fc4_type = ZFCP_CT_SCSI_FCP;
511
512 /* prepare zfcp_send_ct */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200513 ct->wka_port = &adapter->nsp;
514 ct->handler = zfcp_fc_ns_handler;
515 ct->handler_data = (unsigned long)&compl_rec;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200516 ct->timeout = 10;
517 ct->req = &gpn_ft->sg_req;
518 ct->resp = gpn_ft->sg_resp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200519
Swen Schillig5ab944f2008-10-01 12:42:17 +0200520 init_completion(&compl_rec.done);
521 compl_rec.handler = NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200522 ret = zfcp_fsf_send_ct(ct, NULL, NULL);
523 if (!ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200524 wait_for_completion(&compl_rec.done);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200525 return ret;
526}
527
528static void zfcp_validate_port(struct zfcp_port *port)
529{
530 struct zfcp_adapter *adapter = port->adapter;
531
532 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
533
Christof Schmitt04062892008-10-01 12:42:20 +0200534 if ((port->supported_classes != 0) ||
535 !list_empty(&port->unit_list_head)) {
Swen Schilligcc8c2822008-06-10 18:21:00 +0200536 zfcp_port_put(port);
537 return;
538 }
539 zfcp_erp_port_shutdown(port, 0, 151, NULL);
540 zfcp_erp_wait(adapter);
541 zfcp_port_put(port);
542 zfcp_port_dequeue(port);
543}
544
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100545static int zfcp_scan_eval_gpn_ft(struct zfcp_gpn_ft *gpn_ft, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200546{
547 struct zfcp_send_ct *ct = &gpn_ft->ct;
548 struct scatterlist *sg = gpn_ft->sg_resp;
549 struct ct_hdr *hdr = sg_virt(sg);
550 struct gpn_ft_resp_acc *acc = sg_virt(sg);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200551 struct zfcp_adapter *adapter = ct->wka_port->adapter;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200552 struct zfcp_port *port, *tmp;
553 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200554 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200555
556 if (ct->status)
557 return -EIO;
558
559 if (hdr->cmd_rsp_code != ZFCP_CT_ACCEPT) {
560 if (hdr->reason_code == ZFCP_CT_UNABLE_TO_PERFORM_CMD)
561 return -EAGAIN; /* might be a temporary condition */
562 return -EIO;
563 }
564
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100565 if (hdr->max_res_size) {
566 dev_warn(&adapter->ccw_device->dev,
567 "The name server reported %d words residual data\n",
568 hdr->max_res_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200569 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100570 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200571
572 down(&zfcp_data.config_sema);
573
574 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100575 for (x = 1; x < max_entries && !last; x++) {
Swen Schilligcc8c2822008-06-10 18:21:00 +0200576 if (x % (ZFCP_GPN_FT_ENTRIES + 1))
577 acc++;
578 else
579 acc = sg_virt(++sg);
580
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200581 last = acc->control & 0x80;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200582 d_id = acc->port_id[0] << 16 | acc->port_id[1] << 8 |
583 acc->port_id[2];
584
Swen Schillig5ab944f2008-10-01 12:42:17 +0200585 /* don't attach ports with a well known address */
586 if ((d_id & ZFCP_DID_WKA) == ZFCP_DID_WKA)
587 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200588 /* skip the adapter's port and known remote ports */
Swen Schillig95285392008-08-21 13:43:35 +0200589 if (acc->wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200590 continue;
Swen Schillig95285392008-08-21 13:43:35 +0200591 port = zfcp_get_port_by_wwpn(adapter, acc->wwpn);
592 if (port) {
593 zfcp_port_get(port);
594 continue;
595 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200596
597 port = zfcp_port_enqueue(adapter, acc->wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200598 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schillig317e6b62008-07-02 10:56:37 +0200599 if (IS_ERR(port))
600 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200601 else
Swen Schillig317e6b62008-07-02 10:56:37 +0200602 zfcp_erp_port_reopen(port, 0, 149, NULL);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200603 }
604
605 zfcp_erp_wait(adapter);
606 list_for_each_entry_safe(port, tmp, &adapter->port_list_head, list)
607 zfcp_validate_port(port);
608 up(&zfcp_data.config_sema);
609 return ret;
610}
611
612/**
613 * zfcp_scan_ports - scan remote ports and attach new ports
614 * @adapter: pointer to struct zfcp_adapter
615 */
616int zfcp_scan_ports(struct zfcp_adapter *adapter)
617{
618 int ret, i;
619 struct zfcp_gpn_ft *gpn_ft;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100620 int chain, max_entries, buf_num, max_bytes;
621
622 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
623 buf_num = chain ? ZFCP_GPN_FT_BUFFERS : 1;
624 max_entries = chain ? ZFCP_GPN_FT_MAX_ENTRIES : ZFCP_GPN_FT_ENTRIES;
625 max_bytes = chain ? ZFCP_GPN_FT_MAX_SIZE : ZFCP_CT_SIZE_ONE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200626
627 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT)
628 return 0;
629
Swen Schillig5ab944f2008-10-01 12:42:17 +0200630 ret = zfcp_wka_port_get(&adapter->nsp);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200631 if (ret)
632 return ret;
633
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100634 gpn_ft = zfcp_alloc_sg_env(buf_num);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200635 if (!gpn_ft) {
636 ret = -ENOMEM;
637 goto out;
638 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200639
640 for (i = 0; i < 3; i++) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100641 ret = zfcp_scan_issue_gpn_ft(gpn_ft, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200642 if (!ret) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100643 ret = zfcp_scan_eval_gpn_ft(gpn_ft, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200644 if (ret == -EAGAIN)
645 ssleep(1);
646 else
647 break;
648 }
649 }
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100650 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200651out:
652 zfcp_wka_port_put(&adapter->nsp);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200653 return ret;
654}
655
656
657void _zfcp_scan_ports_later(struct work_struct *work)
658{
659 zfcp_scan_ports(container_of(work, struct zfcp_adapter, scan_work));
660}