blob: 7d6b3cadfb7345c4ded33236fecfeb6eb9f65f5c [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 *
Christof Schmitta2fa0ae2009-03-02 13:09:08 +01006 * Copyright IBM Corporation 2008, 2009
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 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 gpn_ft_resp_acc {
29 u8 control;
30 u8 port_id[3];
31 u8 reserved[4];
32 u64 wwpn;
33} __attribute__ ((packed));
34
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +010035#define ZFCP_CT_SIZE_ONE_PAGE (PAGE_SIZE - sizeof(struct ct_hdr))
36#define ZFCP_GPN_FT_ENTRIES (ZFCP_CT_SIZE_ONE_PAGE \
37 / sizeof(struct gpn_ft_resp_acc))
Swen Schilligcc8c2822008-06-10 18:21:00 +020038#define ZFCP_GPN_FT_BUFFERS 4
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +010039#define ZFCP_GPN_FT_MAX_SIZE (ZFCP_GPN_FT_BUFFERS * PAGE_SIZE \
40 - sizeof(struct ct_hdr))
Swen Schilligcc8c2822008-06-10 18:21:00 +020041#define ZFCP_GPN_FT_MAX_ENTRIES ZFCP_GPN_FT_BUFFERS * (ZFCP_GPN_FT_ENTRIES + 1)
42
43struct ct_iu_gpn_ft_resp {
44 struct ct_hdr header;
45 struct gpn_ft_resp_acc accept[ZFCP_GPN_FT_ENTRIES];
46} __attribute__ ((packed));
47
48struct zfcp_gpn_ft {
49 struct zfcp_send_ct ct;
50 struct scatterlist sg_req;
51 struct scatterlist sg_resp[ZFCP_GPN_FT_BUFFERS];
52};
53
Swen Schillig5ab944f2008-10-01 12:42:17 +020054struct zfcp_fc_ns_handler_data {
55 struct completion done;
56 void (*handler)(unsigned long);
57 unsigned long handler_data;
58};
59
Swen Schillig6f53a2d2009-08-18 15:43:23 +020060static int zfcp_fc_wka_port_get(struct zfcp_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +020061{
62 if (mutex_lock_interruptible(&wka_port->mutex))
63 return -ERESTARTSYS;
64
Christof Schmitt1c1cba12008-11-26 18:07:36 +010065 if (wka_port->status == ZFCP_WKA_PORT_OFFLINE ||
66 wka_port->status == ZFCP_WKA_PORT_CLOSING) {
Swen Schillig5ab944f2008-10-01 12:42:17 +020067 wka_port->status = ZFCP_WKA_PORT_OPENING;
68 if (zfcp_fsf_open_wka_port(wka_port))
69 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
70 }
71
72 mutex_unlock(&wka_port->mutex);
73
Swen Schillig27f492c2009-07-13 15:06:13 +020074 wait_event(wka_port->completion_wq,
75 wka_port->status == ZFCP_WKA_PORT_ONLINE ||
76 wka_port->status == ZFCP_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +020077
78 if (wka_port->status == ZFCP_WKA_PORT_ONLINE) {
79 atomic_inc(&wka_port->refcount);
80 return 0;
81 }
82 return -EIO;
83}
84
Swen Schillig6f53a2d2009-08-18 15:43:23 +020085static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +020086{
Jean Delvarebf6aede2009-04-02 16:56:54 -070087 struct delayed_work *dw = to_delayed_work(work);
Swen Schillig5ab944f2008-10-01 12:42:17 +020088 struct zfcp_wka_port *wka_port =
89 container_of(dw, struct zfcp_wka_port, work);
90
Swen Schillig5ab944f2008-10-01 12:42:17 +020091 mutex_lock(&wka_port->mutex);
92 if ((atomic_read(&wka_port->refcount) != 0) ||
93 (wka_port->status != ZFCP_WKA_PORT_ONLINE))
94 goto out;
95
96 wka_port->status = ZFCP_WKA_PORT_CLOSING;
97 if (zfcp_fsf_close_wka_port(wka_port)) {
98 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
99 wake_up(&wka_port->completion_wq);
100 }
101out:
102 mutex_unlock(&wka_port->mutex);
103}
104
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200105static void zfcp_fc_wka_port_put(struct zfcp_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200106{
107 if (atomic_dec_return(&wka_port->refcount) != 0)
108 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200109 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200110 schedule_delayed_work(&wka_port->work, HZ / 100);
111}
112
Sven Schuetz9d544f22009-04-06 18:31:47 +0200113static void zfcp_fc_wka_port_init(struct zfcp_wka_port *wka_port, u32 d_id,
114 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200115{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200116 init_waitqueue_head(&wka_port->completion_wq);
117
118 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200119 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200120
121 wka_port->status = ZFCP_WKA_PORT_OFFLINE;
122 atomic_set(&wka_port->refcount, 0);
123 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200124 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200125}
126
Christof Schmitt55c770f2009-08-18 15:43:12 +0200127static void zfcp_fc_wka_port_force_offline(struct zfcp_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200128{
129 cancel_delayed_work_sync(&wka->work);
130 mutex_lock(&wka->mutex);
131 wka->status = ZFCP_WKA_PORT_OFFLINE;
132 mutex_unlock(&wka->mutex);
133}
134
Christof Schmitt55c770f2009-08-18 15:43:12 +0200135void zfcp_fc_wka_ports_force_offline(struct zfcp_wka_ports *gs)
136{
Swen Schilligf3450c72009-11-24 16:53:59 +0100137 if (!gs)
138 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200139 zfcp_fc_wka_port_force_offline(&gs->ms);
140 zfcp_fc_wka_port_force_offline(&gs->ts);
141 zfcp_fc_wka_port_force_offline(&gs->ds);
142 zfcp_fc_wka_port_force_offline(&gs->as);
143 zfcp_fc_wka_port_force_offline(&gs->ks);
144}
145
Christof Schmitt24073b42008-06-10 18:20:54 +0200146static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
147 struct fcp_rscn_element *elem)
148{
149 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100150 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200151 struct zfcp_port *port;
152
Swen Schilligecf0c772009-11-24 16:53:58 +0100153 read_lock_irqsave(&adapter->port_list_lock, flags);
154 list_for_each_entry(port, &adapter->port_list, list) {
Swen Schillig24095492009-03-02 13:09:07 +0100155 if ((port->d_id & range) == (elem->nport_did & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200156 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200157 if (!port->d_id)
158 zfcp_erp_port_reopen(port,
159 ZFCP_STATUS_COMMON_ERP_FAILED,
160 "fcrscn1", NULL);
161 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100162 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200163}
164
165static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
166{
167 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
168 struct fcp_rscn_head *fcp_rscn_head;
169 struct fcp_rscn_element *fcp_rscn_element;
170 u16 i;
171 u16 no_entries;
172 u32 range_mask;
173
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200174 fcp_rscn_head = (struct fcp_rscn_head *) status_buffer->payload.data;
175 fcp_rscn_element = (struct fcp_rscn_element *) fcp_rscn_head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200176
177 /* see FC-FS */
178 no_entries = fcp_rscn_head->payload_len /
179 sizeof(struct fcp_rscn_element);
180
181 for (i = 1; i < no_entries; i++) {
182 /* skip head and start with 1st element */
183 fcp_rscn_element++;
Christof Schmitte0d7fcb2008-12-19 16:56:58 +0100184 range_mask = rscn_range_mask[fcp_rscn_element->addr_format];
Christof Schmitt24073b42008-06-10 18:20:54 +0200185 _zfcp_fc_incoming_rscn(fsf_req, range_mask, fcp_rscn_element);
186 }
Swen Schillig9eae07e2009-11-24 16:54:06 +0100187 queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
Christof Schmitt24073b42008-06-10 18:20:54 +0200188}
189
Swen Schillig7ba58c92008-10-01 12:42:18 +0200190static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200191{
Swen Schilligecf0c772009-11-24 16:53:58 +0100192 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200193 struct zfcp_adapter *adapter = req->adapter;
194 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200195
Swen Schilligecf0c772009-11-24 16:53:58 +0100196 read_lock_irqsave(&adapter->port_list_lock, flags);
197 list_for_each_entry(port, &adapter->port_list, list)
198 if (port->wwpn == wwpn) {
199 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1", req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200200 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100201 }
202 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200203}
204
205static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
206{
207 struct fsf_status_read_buffer *status_buffer =
208 (struct fsf_status_read_buffer *)req->data;
209 struct fsf_plogi *els_plogi =
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200210 (struct fsf_plogi *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200211
212 zfcp_fc_incoming_wwpn(req, els_plogi->serv_param.wwpn);
213}
214
215static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
216{
217 struct fsf_status_read_buffer *status_buffer =
218 (struct fsf_status_read_buffer *)req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200219 struct fcp_logo *els_logo =
220 (struct fcp_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200221
222 zfcp_fc_incoming_wwpn(req, els_logo->nport_wwpn);
223}
224
225/**
226 * zfcp_fc_incoming_els - handle incoming ELS
227 * @fsf_req - request which contains incoming ELS
228 */
229void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
230{
231 struct fsf_status_read_buffer *status_buffer =
232 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200233 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200234
Swen Schillig57717102009-08-18 15:43:21 +0200235 zfcp_dbf_san_incoming_els(fsf_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200236 if (els_type == LS_PLOGI)
237 zfcp_fc_incoming_plogi(fsf_req);
238 else if (els_type == LS_LOGO)
239 zfcp_fc_incoming_logo(fsf_req);
240 else if (els_type == LS_RSCN)
241 zfcp_fc_incoming_rscn(fsf_req);
242}
243
Swen Schillig5ab944f2008-10-01 12:42:17 +0200244static void zfcp_fc_ns_handler(unsigned long data)
245{
246 struct zfcp_fc_ns_handler_data *compl_rec =
247 (struct zfcp_fc_ns_handler_data *) data;
248
249 if (compl_rec->handler)
250 compl_rec->handler(compl_rec->handler_data);
251
252 complete(&compl_rec->done);
253}
254
255static void zfcp_fc_ns_gid_pn_eval(unsigned long data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200256{
257 struct zfcp_gid_pn_data *gid_pn = (struct zfcp_gid_pn_data *) data;
258 struct zfcp_send_ct *ct = &gid_pn->ct;
259 struct ct_iu_gid_pn_req *ct_iu_req = sg_virt(ct->req);
260 struct ct_iu_gid_pn_resp *ct_iu_resp = sg_virt(ct->resp);
261 struct zfcp_port *port = gid_pn->port;
262
263 if (ct->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200264 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100265 if (ct_iu_resp->header.cmd_rsp_code != ZFCP_CT_ACCEPT)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200266 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100267
Christof Schmitt24073b42008-06-10 18:20:54 +0200268 /* paranoia */
269 if (ct_iu_req->wwpn != port->wwpn)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200270 return;
Christof Schmitt24073b42008-06-10 18:20:54 +0200271 /* looks like a valid d_id */
272 port->d_id = ct_iu_resp->d_id & ZFCP_DID_MASK;
Christof Schmitt24073b42008-06-10 18:20:54 +0200273}
274
Christof Schmitt799b76d2009-08-18 15:43:20 +0200275static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Swen Schillig5ab944f2008-10-01 12:42:17 +0200276 struct zfcp_gid_pn_data *gid_pn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200277{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200278 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200279 struct zfcp_fc_ns_handler_data compl_rec;
280 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200281
282 /* setup parameters for send generic command */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200283 gid_pn->port = port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200284 gid_pn->ct.wka_port = &adapter->gs->ds;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200285 gid_pn->ct.handler = zfcp_fc_ns_handler;
286 gid_pn->ct.handler_data = (unsigned long) &compl_rec;
Christof Schmitt24073b42008-06-10 18:20:54 +0200287 gid_pn->ct.req = &gid_pn->req;
288 gid_pn->ct.resp = &gid_pn->resp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200289 sg_init_one(&gid_pn->req, &gid_pn->ct_iu_req,
290 sizeof(struct ct_iu_gid_pn_req));
291 sg_init_one(&gid_pn->resp, &gid_pn->ct_iu_resp,
292 sizeof(struct ct_iu_gid_pn_resp));
293
294 /* setup nameserver request */
295 gid_pn->ct_iu_req.header.revision = ZFCP_CT_REVISION;
296 gid_pn->ct_iu_req.header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
297 gid_pn->ct_iu_req.header.gs_subtype = ZFCP_CT_NAME_SERVER;
298 gid_pn->ct_iu_req.header.options = ZFCP_CT_SYNCHRONOUS;
299 gid_pn->ct_iu_req.header.cmd_rsp_code = ZFCP_CT_GID_PN;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100300 gid_pn->ct_iu_req.header.max_res_size = ZFCP_CT_SIZE_ONE_PAGE / 4;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200301 gid_pn->ct_iu_req.wwpn = port->wwpn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200302
Swen Schillig5ab944f2008-10-01 12:42:17 +0200303 init_completion(&compl_rec.done);
304 compl_rec.handler = zfcp_fc_ns_gid_pn_eval;
305 compl_rec.handler_data = (unsigned long) gid_pn;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200306 ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.gid_pn_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200307 if (!ret)
308 wait_for_completion(&compl_rec.done);
309 return ret;
310}
311
312/**
313 * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200314 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200315 * return: -ENOMEM on error, 0 otherwise
316 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200317static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200318{
319 int ret;
320 struct zfcp_gid_pn_data *gid_pn;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200321 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200322
Swen Schilliga4623c42009-08-18 15:43:15 +0200323 gid_pn = mempool_alloc(adapter->pool.gid_pn_data, GFP_ATOMIC);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200324 if (!gid_pn)
325 return -ENOMEM;
326
327 memset(gid_pn, 0, sizeof(*gid_pn));
328
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200329 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200330 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200331 goto out;
332
Christof Schmitt799b76d2009-08-18 15:43:20 +0200333 ret = zfcp_fc_ns_gid_pn_request(port, gid_pn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200334
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200335 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200336out:
Swen Schilliga4623c42009-08-18 15:43:15 +0200337 mempool_free(gid_pn, adapter->pool.gid_pn_data);
Christof Schmitt24073b42008-06-10 18:20:54 +0200338 return ret;
339}
340
Christof Schmitt799b76d2009-08-18 15:43:20 +0200341void zfcp_fc_port_did_lookup(struct work_struct *work)
342{
343 int ret;
344 struct zfcp_port *port = container_of(work, struct zfcp_port,
345 gid_pn_work);
346
347 ret = zfcp_fc_ns_gid_pn(port);
348 if (ret) {
349 /* could not issue gid_pn for some reason */
350 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1", NULL);
351 goto out;
352 }
353
354 if (!port->d_id) {
355 zfcp_erp_port_failed(port, "fcgpn_2", NULL);
356 goto out;
357 }
358
359 zfcp_erp_port_reopen(port, 0, "fcgpn_3", NULL);
360out:
Swen Schilligf3450c72009-11-24 16:53:59 +0100361 put_device(&port->sysfs_device);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200362}
363
Christof Schmitt24073b42008-06-10 18:20:54 +0200364/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200365 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
366 * @port: The zfcp_port to lookup the d_id for.
367 */
368void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
369{
Swen Schilligf3450c72009-11-24 16:53:59 +0100370 get_device(&port->sysfs_device);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200371 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Swen Schilligf3450c72009-11-24 16:53:59 +0100372 put_device(&port->sysfs_device);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200373}
374
375/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200376 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
377 * @port: zfcp_port structure
378 * @plogi: plogi payload
379 *
380 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
381 */
382void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fsf_plogi *plogi)
383{
384 port->maxframe_size = plogi->serv_param.common_serv_param[7] |
385 ((plogi->serv_param.common_serv_param[6] & 0x0F) << 8);
386 if (plogi->serv_param.class1_serv_param[0] & 0x80)
387 port->supported_classes |= FC_COS_CLASS1;
388 if (plogi->serv_param.class2_serv_param[0] & 0x80)
389 port->supported_classes |= FC_COS_CLASS2;
390 if (plogi->serv_param.class3_serv_param[0] & 0x80)
391 port->supported_classes |= FC_COS_CLASS3;
392 if (plogi->serv_param.class4_serv_param[0] & 0x80)
393 port->supported_classes |= FC_COS_CLASS4;
394}
395
396struct zfcp_els_adisc {
397 struct zfcp_send_els els;
398 struct scatterlist req;
399 struct scatterlist resp;
400 struct zfcp_ls_adisc ls_adisc;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200401 struct zfcp_ls_adisc ls_adisc_acc;
Christof Schmitt24073b42008-06-10 18:20:54 +0200402};
403
404static void zfcp_fc_adisc_handler(unsigned long data)
405{
406 struct zfcp_els_adisc *adisc = (struct zfcp_els_adisc *) data;
407 struct zfcp_port *port = adisc->els.port;
Swen Schillig44cc76f2008-10-01 12:42:16 +0200408 struct zfcp_ls_adisc *ls_adisc = &adisc->ls_adisc_acc;
Christof Schmitt24073b42008-06-10 18:20:54 +0200409
Christof Schmitt3968ce82008-07-02 10:56:32 +0200410 if (adisc->els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200411 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200412 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
413 "fcadh_1", NULL);
Christof Schmitt24073b42008-06-10 18:20:54 +0200414 goto out;
415 }
416
417 if (!port->wwnn)
418 port->wwnn = ls_adisc->wwnn;
419
Swen Schillig24095492009-03-02 13:09:07 +0100420 if ((port->wwpn != ls_adisc->wwpn) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100421 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100422 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
423 "fcadh_2", NULL);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100424 goto out;
425 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200426
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100427 /* port is good, unblock rport without going through erp */
428 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200429 out:
Christof Schmitt14e242e2009-08-18 15:43:11 +0200430 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligf3450c72009-11-24 16:53:59 +0100431 put_device(&port->sysfs_device);
Christof Schmitt24073b42008-06-10 18:20:54 +0200432 kfree(adisc);
433}
434
435static int zfcp_fc_adisc(struct zfcp_port *port)
436{
437 struct zfcp_els_adisc *adisc;
438 struct zfcp_adapter *adapter = port->adapter;
439
440 adisc = kzalloc(sizeof(struct zfcp_els_adisc), GFP_ATOMIC);
441 if (!adisc)
442 return -ENOMEM;
443
444 adisc->els.req = &adisc->req;
445 adisc->els.resp = &adisc->resp;
446 sg_init_one(adisc->els.req, &adisc->ls_adisc,
447 sizeof(struct zfcp_ls_adisc));
448 sg_init_one(adisc->els.resp, &adisc->ls_adisc_acc,
Swen Schillig44cc76f2008-10-01 12:42:16 +0200449 sizeof(struct zfcp_ls_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200450
Christof Schmitt24073b42008-06-10 18:20:54 +0200451 adisc->els.adapter = adapter;
452 adisc->els.port = port;
453 adisc->els.d_id = port->d_id;
454 adisc->els.handler = zfcp_fc_adisc_handler;
455 adisc->els.handler_data = (unsigned long) adisc;
456 adisc->els.ls_code = adisc->ls_adisc.code = ZFCP_LS_ADISC;
457
458 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
459 without FC-AL-2 capability, so we don't set it */
460 adisc->ls_adisc.wwpn = fc_host_port_name(adapter->scsi_host);
461 adisc->ls_adisc.wwnn = fc_host_node_name(adapter->scsi_host);
462 adisc->ls_adisc.nport_id = fc_host_port_id(adapter->scsi_host);
463
464 return zfcp_fsf_send_els(&adisc->els);
465}
466
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100467void zfcp_fc_link_test_work(struct work_struct *work)
468{
469 struct zfcp_port *port =
470 container_of(work, struct zfcp_port, test_link_work);
471 int retval;
472
Swen Schilligf3450c72009-11-24 16:53:59 +0100473 get_device(&port->sysfs_device);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100474 port->rport_task = RPORT_DEL;
475 zfcp_scsi_rport_work(&port->rport_work);
476
Christof Schmitt14e242e2009-08-18 15:43:11 +0200477 /* only issue one test command at one time per port */
478 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
479 goto out;
480
481 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
482
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100483 retval = zfcp_fc_adisc(port);
484 if (retval == 0)
485 return;
486
487 /* send of ADISC was not possible */
Christof Schmitt14e242e2009-08-18 15:43:11 +0200488 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100489 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1", NULL);
490
Christof Schmitt14e242e2009-08-18 15:43:11 +0200491out:
Swen Schilligf3450c72009-11-24 16:53:59 +0100492 put_device(&port->sysfs_device);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100493}
494
Christof Schmitt24073b42008-06-10 18:20:54 +0200495/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200496 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200497 * @port: port to be tested
498 *
499 * Test status of a link to a remote port using the ELS command ADISC.
500 * If there is a problem with the remote port, error recovery steps
501 * will be triggered.
502 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200503void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200504{
Swen Schilligf3450c72009-11-24 16:53:59 +0100505 get_device(&port->sysfs_device);
Swen Schillig45446832009-08-18 15:43:17 +0200506 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Swen Schilligf3450c72009-11-24 16:53:59 +0100507 put_device(&port->sysfs_device);
Christof Schmitt24073b42008-06-10 18:20:54 +0200508}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200509
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100510static void zfcp_free_sg_env(struct zfcp_gpn_ft *gpn_ft, int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200511{
512 struct scatterlist *sg = &gpn_ft->sg_req;
513
Swen Schilliga4623c42009-08-18 15:43:15 +0200514 kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg));
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100515 zfcp_sg_free_table(gpn_ft->sg_resp, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200516
517 kfree(gpn_ft);
518}
519
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100520static struct zfcp_gpn_ft *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200521{
522 struct zfcp_gpn_ft *gpn_ft;
523 struct ct_iu_gpn_ft_req *req;
524
525 gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL);
526 if (!gpn_ft)
527 return NULL;
528
Swen Schilliga4623c42009-08-18 15:43:15 +0200529 req = kmem_cache_alloc(zfcp_data.gpn_ft_cache, GFP_KERNEL);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200530 if (!req) {
531 kfree(gpn_ft);
532 gpn_ft = NULL;
533 goto out;
534 }
535 sg_init_one(&gpn_ft->sg_req, req, sizeof(*req));
536
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100537 if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) {
538 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200539 gpn_ft = NULL;
540 }
541out:
542 return gpn_ft;
543}
544
545
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200546static int zfcp_fc_send_gpn_ft(struct zfcp_gpn_ft *gpn_ft,
547 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200548{
549 struct zfcp_send_ct *ct = &gpn_ft->ct;
550 struct ct_iu_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200551 struct zfcp_fc_ns_handler_data compl_rec;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200552 int ret;
553
554 /* prepare CT IU for GPN_FT */
555 req->header.revision = ZFCP_CT_REVISION;
556 req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE;
557 req->header.gs_subtype = ZFCP_CT_NAME_SERVER;
558 req->header.options = ZFCP_CT_SYNCHRONOUS;
559 req->header.cmd_rsp_code = ZFCP_CT_GPN_FT;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100560 req->header.max_res_size = max_bytes / 4;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200561 req->flags = 0;
562 req->domain_id_scope = 0;
563 req->area_id_scope = 0;
564 req->fc4_type = ZFCP_CT_SCSI_FCP;
565
566 /* prepare zfcp_send_ct */
Sven Schuetz9d544f22009-04-06 18:31:47 +0200567 ct->wka_port = &adapter->gs->ds;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200568 ct->handler = zfcp_fc_ns_handler;
569 ct->handler_data = (unsigned long)&compl_rec;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200570 ct->req = &gpn_ft->sg_req;
571 ct->resp = gpn_ft->sg_resp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200572
Swen Schillig5ab944f2008-10-01 12:42:17 +0200573 init_completion(&compl_rec.done);
574 compl_rec.handler = NULL;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200575 ret = zfcp_fsf_send_ct(ct, NULL);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200576 if (!ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200577 wait_for_completion(&compl_rec.done);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200578 return ret;
579}
580
Swen Schilligf3450c72009-11-24 16:53:59 +0100581static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200582{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200583 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
584 return;
585
Swen Schilligcc8c2822008-06-10 18:21:00 +0200586 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
587
Christof Schmitt04062892008-10-01 12:42:20 +0200588 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100589 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200590 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100591
Swen Schilligf3450c72009-11-24 16:53:59 +0100592 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200593}
594
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200595static int zfcp_fc_eval_gpn_ft(struct zfcp_gpn_ft *gpn_ft, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200596{
597 struct zfcp_send_ct *ct = &gpn_ft->ct;
598 struct scatterlist *sg = gpn_ft->sg_resp;
599 struct ct_hdr *hdr = sg_virt(sg);
600 struct gpn_ft_resp_acc *acc = sg_virt(sg);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200601 struct zfcp_adapter *adapter = ct->wka_port->adapter;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200602 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100603 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100604 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200605 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200606 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200607
608 if (ct->status)
609 return -EIO;
610
611 if (hdr->cmd_rsp_code != ZFCP_CT_ACCEPT) {
612 if (hdr->reason_code == ZFCP_CT_UNABLE_TO_PERFORM_CMD)
613 return -EAGAIN; /* might be a temporary condition */
614 return -EIO;
615 }
616
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100617 if (hdr->max_res_size) {
618 dev_warn(&adapter->ccw_device->dev,
619 "The name server reported %d words residual data\n",
620 hdr->max_res_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200621 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100622 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200623
Swen Schilligcc8c2822008-06-10 18:21:00 +0200624 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100625 for (x = 1; x < max_entries && !last; x++) {
Swen Schilligcc8c2822008-06-10 18:21:00 +0200626 if (x % (ZFCP_GPN_FT_ENTRIES + 1))
627 acc++;
628 else
629 acc = sg_virt(++sg);
630
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200631 last = acc->control & 0x80;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200632 d_id = acc->port_id[0] << 16 | acc->port_id[1] << 8 |
633 acc->port_id[2];
634
Swen Schillig5ab944f2008-10-01 12:42:17 +0200635 /* don't attach ports with a well known address */
636 if ((d_id & ZFCP_DID_WKA) == ZFCP_DID_WKA)
637 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200638 /* skip the adapter's port and known remote ports */
Swen Schillig95285392008-08-21 13:43:35 +0200639 if (acc->wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200640 continue;
641
642 port = zfcp_port_enqueue(adapter, acc->wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200643 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100644 if (!IS_ERR(port))
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100645 zfcp_erp_port_reopen(port, 0, "fcegpf1", NULL);
Swen Schilligecf0c772009-11-24 16:53:58 +0100646 else if (PTR_ERR(port) != -EEXIST)
647 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200648 }
649
650 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100651 write_lock_irqsave(&adapter->port_list_lock, flags);
652 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100653 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100654 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100655
656 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
657 zfcp_erp_port_shutdown(port, 0, "fcegpf2", NULL);
658 zfcp_device_unregister(&port->sysfs_device,
659 &zfcp_sysfs_port_attrs);
660 }
661
Swen Schilligcc8c2822008-06-10 18:21:00 +0200662 return ret;
663}
664
665/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200666 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100667 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200668 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100669void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200670{
Swen Schillig9eae07e2009-11-24 16:54:06 +0100671 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
672 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200673 int ret, i;
674 struct zfcp_gpn_ft *gpn_ft;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100675 int chain, max_entries, buf_num, max_bytes;
676
677 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
678 buf_num = chain ? ZFCP_GPN_FT_BUFFERS : 1;
679 max_entries = chain ? ZFCP_GPN_FT_MAX_ENTRIES : ZFCP_GPN_FT_ENTRIES;
680 max_bytes = chain ? ZFCP_GPN_FT_MAX_SIZE : ZFCP_CT_SIZE_ONE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200681
Swen Schillig306b6ed2009-04-17 15:08:02 +0200682 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
683 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100684 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200685
Swen Schillig9eae07e2009-11-24 16:54:06 +0100686 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
687 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200688
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100689 gpn_ft = zfcp_alloc_sg_env(buf_num);
Swen Schillig9eae07e2009-11-24 16:54:06 +0100690 if (!gpn_ft)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200691 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200692
693 for (i = 0; i < 3; i++) {
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200694 ret = zfcp_fc_send_gpn_ft(gpn_ft, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200695 if (!ret) {
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200696 ret = zfcp_fc_eval_gpn_ft(gpn_ft, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200697 if (ret == -EAGAIN)
698 ssleep(1);
699 else
700 break;
701 }
702 }
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100703 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200704out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200705 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200706}
707
708
Sven Schuetz9d544f22009-04-06 18:31:47 +0200709struct zfcp_els_fc_job {
710 struct zfcp_send_els els;
711 struct fc_bsg_job *job;
712};
713
714static void zfcp_fc_generic_els_handler(unsigned long data)
715{
716 struct zfcp_els_fc_job *els_fc_job = (struct zfcp_els_fc_job *) data;
717 struct fc_bsg_job *job = els_fc_job->job;
718 struct fc_bsg_reply *reply = job->reply;
719
720 if (els_fc_job->els.status) {
721 /* request rejected or timed out */
722 reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_REJECT;
723 goto out;
724 }
725
726 reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
Christof Schmittdc577d52009-05-15 13:18:22 +0200727 reply->reply_payload_rcv_len = job->reply_payload.payload_len;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200728
729out:
730 job->state_flags = FC_RQST_STATE_DONE;
731 job->job_done(job);
732 kfree(els_fc_job);
733}
734
735int zfcp_fc_execute_els_fc_job(struct fc_bsg_job *job)
736{
737 struct zfcp_els_fc_job *els_fc_job;
738 struct fc_rport *rport = job->rport;
739 struct Scsi_Host *shost;
740 struct zfcp_adapter *adapter;
741 struct zfcp_port *port;
742 u8 *port_did;
743
744 shost = rport ? rport_to_shost(rport) : job->shost;
745 adapter = (struct zfcp_adapter *)shost->hostdata[0];
746
747 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
748 return -EINVAL;
749
750 els_fc_job = kzalloc(sizeof(struct zfcp_els_fc_job), GFP_KERNEL);
751 if (!els_fc_job)
752 return -ENOMEM;
753
754 els_fc_job->els.adapter = adapter;
755 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200756 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200757 if (!port) {
758 kfree(els_fc_job);
759 return -EINVAL;
760 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100761
762 els_fc_job->els.d_id = port->d_id;
Swen Schilligf3450c72009-11-24 16:53:59 +0100763 put_device(&port->sysfs_device);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200764 } else {
765 port_did = job->request->rqst_data.h_els.port_id;
766 els_fc_job->els.d_id = (port_did[0] << 16) +
767 (port_did[1] << 8) + port_did[2];
768 }
769
770 els_fc_job->els.req = job->request_payload.sg_list;
771 els_fc_job->els.resp = job->reply_payload.sg_list;
772 els_fc_job->els.handler = zfcp_fc_generic_els_handler;
773 els_fc_job->els.handler_data = (unsigned long) els_fc_job;
774 els_fc_job->job = job;
775
776 return zfcp_fsf_send_els(&els_fc_job->els);
777}
778
779struct zfcp_ct_fc_job {
780 struct zfcp_send_ct ct;
781 struct fc_bsg_job *job;
782};
783
784static void zfcp_fc_generic_ct_handler(unsigned long data)
785{
786 struct zfcp_ct_fc_job *ct_fc_job = (struct zfcp_ct_fc_job *) data;
787 struct fc_bsg_job *job = ct_fc_job->job;
788
789 job->reply->reply_data.ctels_reply.status = ct_fc_job->ct.status ?
790 FC_CTELS_STATUS_REJECT : FC_CTELS_STATUS_OK;
Christof Schmittdc577d52009-05-15 13:18:22 +0200791 job->reply->reply_payload_rcv_len = job->reply_payload.payload_len;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200792 job->state_flags = FC_RQST_STATE_DONE;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200793 job->job_done(job);
794
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200795 zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200796
797 kfree(ct_fc_job);
798}
799
800int zfcp_fc_execute_ct_fc_job(struct fc_bsg_job *job)
801{
802 int ret;
803 u8 gs_type;
804 struct fc_rport *rport = job->rport;
805 struct Scsi_Host *shost;
806 struct zfcp_adapter *adapter;
807 struct zfcp_ct_fc_job *ct_fc_job;
808 u32 preamble_word1;
809
810 shost = rport ? rport_to_shost(rport) : job->shost;
811
812 adapter = (struct zfcp_adapter *)shost->hostdata[0];
813 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
814 return -EINVAL;
815
816 ct_fc_job = kzalloc(sizeof(struct zfcp_ct_fc_job), GFP_KERNEL);
817 if (!ct_fc_job)
818 return -ENOMEM;
819
820 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
821 gs_type = (preamble_word1 & 0xff000000) >> 24;
822
823 switch (gs_type) {
824 case FC_FST_ALIAS:
825 ct_fc_job->ct.wka_port = &adapter->gs->as;
826 break;
827 case FC_FST_MGMT:
828 ct_fc_job->ct.wka_port = &adapter->gs->ms;
829 break;
830 case FC_FST_TIME:
831 ct_fc_job->ct.wka_port = &adapter->gs->ts;
832 break;
833 case FC_FST_DIR:
834 ct_fc_job->ct.wka_port = &adapter->gs->ds;
835 break;
836 default:
837 kfree(ct_fc_job);
838 return -EINVAL; /* no such service */
839 }
840
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200841 ret = zfcp_fc_wka_port_get(ct_fc_job->ct.wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200842 if (ret) {
843 kfree(ct_fc_job);
844 return ret;
845 }
846
847 ct_fc_job->ct.req = job->request_payload.sg_list;
848 ct_fc_job->ct.resp = job->reply_payload.sg_list;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200849 ct_fc_job->ct.handler = zfcp_fc_generic_ct_handler;
850 ct_fc_job->ct.handler_data = (unsigned long) ct_fc_job;
851 ct_fc_job->ct.completion = NULL;
852 ct_fc_job->job = job;
853
Christof Schmitt799b76d2009-08-18 15:43:20 +0200854 ret = zfcp_fsf_send_ct(&ct_fc_job->ct, NULL);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200855 if (ret) {
856 kfree(ct_fc_job);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200857 zfcp_fc_wka_port_put(ct_fc_job->ct.wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200858 }
859 return ret;
860}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200861
862int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
863{
864 struct zfcp_wka_ports *wka_ports;
865
866 wka_ports = kzalloc(sizeof(struct zfcp_wka_ports), GFP_KERNEL);
867 if (!wka_ports)
868 return -ENOMEM;
869
870 adapter->gs = wka_ports;
871 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
872 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
873 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
874 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
875 zfcp_fc_wka_port_init(&wka_ports->ks, FC_FID_SEC_KEY, adapter);
876
877 return 0;
878}
879
880void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
881{
882 kfree(adapter->gs);
883 adapter->gs = NULL;
884}
885