blob: 297e6b71ce9cf64bb4982159bc00452911dec2fa [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 Schmitt615f59e2010-02-17 11:18:56 +01006 * Copyright IBM Corporation 2008, 2010
Christof Schmitt24073b42008-06-10 18:20:54 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Christof Schmitt9d05ce22009-11-24 16:54:09 +010012#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Christof Schmitt038d9442011-02-22 19:54:48 +010014#include <linux/utsname.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010015#include <scsi/fc/fc_els.h>
16#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020017#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010018#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020019
Christof Schmitt087897e2011-02-22 19:54:41 +010020struct kmem_cache *zfcp_fc_req_cache;
21
Christof Schmitt9d05ce22009-11-24 16:54:09 +010022static u32 zfcp_fc_rscn_range_mask[] = {
23 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
24 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
25 [ELS_ADDR_FMT_DOM] = 0xFF0000,
26 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010027};
28
Sven Schuetz2d1e5472010-07-16 15:37:39 +020029/**
30 * zfcp_fc_post_event - post event to userspace via fc_transport
31 * @work: work struct with enqueued events
32 */
33void zfcp_fc_post_event(struct work_struct *work)
34{
35 struct zfcp_fc_event *event = NULL, *tmp = NULL;
36 LIST_HEAD(tmp_lh);
37 struct zfcp_fc_events *events = container_of(work,
38 struct zfcp_fc_events, work);
39 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
40 events);
41
42 spin_lock_bh(&events->list_lock);
43 list_splice_init(&events->list, &tmp_lh);
44 spin_unlock_bh(&events->list_lock);
45
46 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
47 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
48 event->code, event->data);
49 list_del(&event->list);
50 kfree(event);
51 }
52
53}
54
55/**
56 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
57 * @adapter: The adapter where to enqueue the event
58 * @event_code: The event code (as defined in fc_host_event_code in
59 * scsi_transport_fc.h)
60 * @event_data: The event data (e.g. n_port page in case of els)
61 */
62void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
63 enum fc_host_event_code event_code, u32 event_data)
64{
65 struct zfcp_fc_event *event;
66
67 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
68 if (!event)
69 return;
70
71 event->code = event_code;
72 event->data = event_data;
73
74 spin_lock(&adapter->events.list_lock);
75 list_add_tail(&event->list, &adapter->events.list);
76 spin_unlock(&adapter->events.list_lock);
77
78 queue_work(adapter->work_queue, &adapter->events.work);
79}
80
Christof Schmittbd0072e2009-11-24 16:54:11 +010081static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +020082{
83 if (mutex_lock_interruptible(&wka_port->mutex))
84 return -ERESTARTSYS;
85
Christof Schmittbd0072e2009-11-24 16:54:11 +010086 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
87 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
88 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +020089 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +010090 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +020091 }
92
93 mutex_unlock(&wka_port->mutex);
94
Swen Schillig27f492c2009-07-13 15:06:13 +020095 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +010096 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
97 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +020098
Christof Schmittbd0072e2009-11-24 16:54:11 +010099 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200100 atomic_inc(&wka_port->refcount);
101 return 0;
102 }
103 return -EIO;
104}
105
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200106static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200107{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700108 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100109 struct zfcp_fc_wka_port *wka_port =
110 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200111
Swen Schillig5ab944f2008-10-01 12:42:17 +0200112 mutex_lock(&wka_port->mutex);
113 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100114 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200115 goto out;
116
Christof Schmittbd0072e2009-11-24 16:54:11 +0100117 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200118 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100119 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200120 wake_up(&wka_port->completion_wq);
121 }
122out:
123 mutex_unlock(&wka_port->mutex);
124}
125
Christof Schmittbd0072e2009-11-24 16:54:11 +0100126static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200127{
128 if (atomic_dec_return(&wka_port->refcount) != 0)
129 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200130 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200131 schedule_delayed_work(&wka_port->work, HZ / 100);
132}
133
Christof Schmittbd0072e2009-11-24 16:54:11 +0100134static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200135 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200136{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200137 init_waitqueue_head(&wka_port->completion_wq);
138
139 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200140 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200141
Christof Schmittbd0072e2009-11-24 16:54:11 +0100142 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200143 atomic_set(&wka_port->refcount, 0);
144 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200145 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200146}
147
Christof Schmittbd0072e2009-11-24 16:54:11 +0100148static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200149{
150 cancel_delayed_work_sync(&wka->work);
151 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100152 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200153 mutex_unlock(&wka->mutex);
154}
155
Christof Schmittbd0072e2009-11-24 16:54:11 +0100156void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200157{
Swen Schilligf3450c72009-11-24 16:53:59 +0100158 if (!gs)
159 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200160 zfcp_fc_wka_port_force_offline(&gs->ms);
161 zfcp_fc_wka_port_force_offline(&gs->ts);
162 zfcp_fc_wka_port_force_offline(&gs->ds);
163 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200164}
165
Christof Schmitt24073b42008-06-10 18:20:54 +0200166static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100167 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200168{
169 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100170 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200171 struct zfcp_port *port;
172
Swen Schilligecf0c772009-11-24 16:53:58 +0100173 read_lock_irqsave(&adapter->port_list_lock, flags);
174 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100175 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200176 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200177 if (!port->d_id)
178 zfcp_erp_port_reopen(port,
179 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100180 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200181 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100182 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200183}
184
185static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
186{
187 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100188 struct fc_els_rscn *head;
189 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200190 u16 i;
191 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100192 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200193
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100194 head = (struct fc_els_rscn *) status_buffer->payload.data;
195 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200196
197 /* see FC-FS */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100198 no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200199
200 for (i = 1; i < no_entries; i++) {
201 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100202 page++;
203 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
204 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
205 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200206 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
207 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200208 }
Swen Schillig9eae07e2009-11-24 16:54:06 +0100209 queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
Christof Schmitt24073b42008-06-10 18:20:54 +0200210}
211
Swen Schillig7ba58c92008-10-01 12:42:18 +0200212static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200213{
Swen Schilligecf0c772009-11-24 16:53:58 +0100214 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200215 struct zfcp_adapter *adapter = req->adapter;
216 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200217
Swen Schilligecf0c772009-11-24 16:53:58 +0100218 read_lock_irqsave(&adapter->port_list_lock, flags);
219 list_for_each_entry(port, &adapter->port_list, list)
220 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100221 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200222 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100223 }
224 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200225}
226
227static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
228{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100229 struct fsf_status_read_buffer *status_buffer;
230 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200231
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100232 status_buffer = (struct fsf_status_read_buffer *) req->data;
233 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
234 zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200235}
236
237static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
238{
239 struct fsf_status_read_buffer *status_buffer =
240 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100241 struct fc_els_logo *logo =
242 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200243
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100244 zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200245}
246
247/**
248 * zfcp_fc_incoming_els - handle incoming ELS
249 * @fsf_req - request which contains incoming ELS
250 */
251void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
252{
253 struct fsf_status_read_buffer *status_buffer =
254 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200255 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200256
Swen Schillig2c55b752010-12-02 15:16:13 +0100257 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100258 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200259 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100260 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200261 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100262 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200263 zfcp_fc_incoming_rscn(fsf_req);
264}
265
Christof Schmittfcf7e612011-02-22 19:54:42 +0100266static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200267{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100268 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
269 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200270
Christof Schmittfcf7e612011-02-22 19:54:42 +0100271 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200272 return;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100273 if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200274 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100275
Christof Schmitt24073b42008-06-10 18:20:54 +0200276 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100277 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200278}
279
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100280static void zfcp_fc_complete(void *data)
281{
282 complete(data);
283}
284
Christof Schmittfcf7e612011-02-22 19:54:42 +0100285static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
286{
287 ct_hdr->ct_rev = FC_CT_REV;
288 ct_hdr->ct_fs_type = FC_FST_DIR;
289 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
290 ct_hdr->ct_cmd = cmd;
291 ct_hdr->ct_mr_size = mr_size / 4;
292}
293
Christof Schmitt799b76d2009-08-18 15:43:20 +0200294static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100295 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200296{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200297 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100298 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100299 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
300 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200301 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200302
303 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100304 fc_req->ct_els.port = port;
305 fc_req->ct_els.handler = zfcp_fc_complete;
306 fc_req->ct_els.handler_data = &completion;
307 fc_req->ct_els.req = &fc_req->sg_req;
308 fc_req->ct_els.resp = &fc_req->sg_rsp;
309 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
310 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200311
Christof Schmittfcf7e612011-02-22 19:54:42 +0100312 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
313 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
314 gid_pn_req->gid_pn.fn_wwpn = port->wwpn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200315
Christof Schmittfcf7e612011-02-22 19:54:42 +0100316 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100317 adapter->pool.gid_pn_req,
318 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100319 if (!ret) {
320 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100321 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100322 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200323 return ret;
324}
325
326/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100327 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200328 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200329 * return: -ENOMEM on error, 0 otherwise
330 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200331static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200332{
333 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100334 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200335 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200336
Christof Schmittfcf7e612011-02-22 19:54:42 +0100337 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
338 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200339 return -ENOMEM;
340
Christof Schmittfcf7e612011-02-22 19:54:42 +0100341 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200342
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200343 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200344 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200345 goto out;
346
Christof Schmittfcf7e612011-02-22 19:54:42 +0100347 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200348
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200349 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200350out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100351 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200352 return ret;
353}
354
Christof Schmitt799b76d2009-08-18 15:43:20 +0200355void zfcp_fc_port_did_lookup(struct work_struct *work)
356{
357 int ret;
358 struct zfcp_port *port = container_of(work, struct zfcp_port,
359 gid_pn_work);
360
361 ret = zfcp_fc_ns_gid_pn(port);
362 if (ret) {
363 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100364 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200365 goto out;
366 }
367
368 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200369 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200370 goto out;
371 }
372
Swen Schilligea4a3a62010-12-02 15:16:16 +0100373 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200374out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100375 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200376}
377
Christof Schmitt24073b42008-06-10 18:20:54 +0200378/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200379 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
380 * @port: The zfcp_port to lookup the d_id for.
381 */
382void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
383{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100384 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200385 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100386 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200387}
388
389/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200390 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
391 * @port: zfcp_port structure
392 * @plogi: plogi payload
393 *
394 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
395 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100396void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200397{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100398 if (plogi->fl_wwpn != port->wwpn) {
399 port->d_id = 0;
400 dev_warn(&port->adapter->ccw_device->dev,
401 "A port opened with WWPN 0x%016Lx returned data that "
402 "identifies it as WWPN 0x%016Lx\n",
403 (unsigned long long) port->wwpn,
404 (unsigned long long) plogi->fl_wwpn);
405 return;
406 }
407
408 port->wwnn = plogi->fl_wwnn;
409 port->maxframe_size = plogi->fl_csp.sp_bb_data;
410
411 if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200412 port->supported_classes |= FC_COS_CLASS1;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100413 if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200414 port->supported_classes |= FC_COS_CLASS2;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100415 if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200416 port->supported_classes |= FC_COS_CLASS3;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100417 if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200418 port->supported_classes |= FC_COS_CLASS4;
419}
420
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100421static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200422{
Christof Schmitt087897e2011-02-22 19:54:41 +0100423 struct zfcp_fc_req *fc_req = data;
424 struct zfcp_port *port = fc_req->ct_els.port;
425 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200426
Christof Schmitt087897e2011-02-22 19:54:41 +0100427 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200428 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200429 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100430 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200431 goto out;
432 }
433
434 if (!port->wwnn)
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100435 port->wwnn = adisc_resp->adisc_wwnn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200436
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100437 if ((port->wwpn != adisc_resp->adisc_wwpn) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100438 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100439 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100440 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100441 goto out;
442 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200443
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100444 /* port is good, unblock rport without going through erp */
445 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200446 out:
Christof Schmitt14e242e2009-08-18 15:43:11 +0200447 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100448 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100449 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200450}
451
452static int zfcp_fc_adisc(struct zfcp_port *port)
453{
Christof Schmitt087897e2011-02-22 19:54:41 +0100454 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200455 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100456 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100457 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200458
Christof Schmitt087897e2011-02-22 19:54:41 +0100459 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
460 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200461 return -ENOMEM;
462
Christof Schmitt087897e2011-02-22 19:54:41 +0100463 fc_req->ct_els.port = port;
464 fc_req->ct_els.req = &fc_req->sg_req;
465 fc_req->ct_els.resp = &fc_req->sg_rsp;
466 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100467 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100468 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100469 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200470
Christof Schmitt087897e2011-02-22 19:54:41 +0100471 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
472 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200473
474 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
475 without FC-AL-2 capability, so we don't set it */
Christof Schmitt087897e2011-02-22 19:54:41 +0100476 fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost);
477 fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost);
478 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
479 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200480
Christof Schmitt087897e2011-02-22 19:54:41 +0100481 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100482 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100483 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100484 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100485
486 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200487}
488
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100489void zfcp_fc_link_test_work(struct work_struct *work)
490{
491 struct zfcp_port *port =
492 container_of(work, struct zfcp_port, test_link_work);
493 int retval;
494
Christof Schmitt615f59e2010-02-17 11:18:56 +0100495 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100496 port->rport_task = RPORT_DEL;
497 zfcp_scsi_rport_work(&port->rport_work);
498
Christof Schmitt14e242e2009-08-18 15:43:11 +0200499 /* only issue one test command at one time per port */
500 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
501 goto out;
502
503 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
504
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100505 retval = zfcp_fc_adisc(port);
506 if (retval == 0)
507 return;
508
509 /* send of ADISC was not possible */
Christof Schmitt14e242e2009-08-18 15:43:11 +0200510 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100511 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100512
Christof Schmitt14e242e2009-08-18 15:43:11 +0200513out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100514 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100515}
516
Christof Schmitt24073b42008-06-10 18:20:54 +0200517/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200518 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200519 * @port: port to be tested
520 *
521 * Test status of a link to a remote port using the ELS command ADISC.
522 * If there is a problem with the remote port, error recovery steps
523 * will be triggered.
524 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200525void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200526{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100527 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200528 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100529 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200530}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200531
Christof Schmittf9773222011-02-22 19:54:43 +0100532static struct zfcp_fc_req *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200533{
Christof Schmittf9773222011-02-22 19:54:43 +0100534 struct zfcp_fc_req *fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200535
Christof Schmittf9773222011-02-22 19:54:43 +0100536 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
537 if (!fc_req)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200538 return NULL;
539
Christof Schmittf9773222011-02-22 19:54:43 +0100540 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
541 kmem_cache_free(zfcp_fc_req_cache, fc_req);
542 return NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200543 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200544
Christof Schmittf9773222011-02-22 19:54:43 +0100545 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
546 sizeof(struct zfcp_fc_gpn_ft_req));
547
548 return fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200549}
550
Christof Schmittf9773222011-02-22 19:54:43 +0100551static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200552 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200553{
Christof Schmittf9773222011-02-22 19:54:43 +0100554 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
555 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100556 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200557 int ret;
558
Christof Schmittf9773222011-02-22 19:54:43 +0100559 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100560 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200561
Christof Schmittf9773222011-02-22 19:54:43 +0100562 ct_els->handler = zfcp_fc_complete;
563 ct_els->handler_data = &completion;
564 ct_els->req = &fc_req->sg_req;
565 ct_els->resp = &fc_req->sg_rsp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200566
Christof Schmittf9773222011-02-22 19:54:43 +0100567 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
Swen Schillig51375ee2010-01-14 17:19:02 +0100568 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200569 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100570 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200571 return ret;
572}
573
Swen Schilligf3450c72009-11-24 16:53:59 +0100574static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200575{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200576 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
577 return;
578
Swen Schilligcc8c2822008-06-10 18:21:00 +0200579 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
580
Christof Schmitt04062892008-10-01 12:42:20 +0200581 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100582 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200583 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100584
Swen Schilligf3450c72009-11-24 16:53:59 +0100585 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200586}
587
Christof Schmittf9773222011-02-22 19:54:43 +0100588static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100589 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200590{
Christof Schmittf9773222011-02-22 19:54:43 +0100591 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
592 struct scatterlist *sg = &fc_req->sg_rsp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100593 struct fc_ct_hdr *hdr = sg_virt(sg);
594 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200595 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100596 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100597 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200598 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200599 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200600
Christof Schmittf9773222011-02-22 19:54:43 +0100601 if (ct_els->status)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200602 return -EIO;
603
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100604 if (hdr->ct_cmd != FC_FS_ACC) {
605 if (hdr->ct_reason == FC_BA_RJT_UNABLE)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200606 return -EAGAIN; /* might be a temporary condition */
607 return -EIO;
608 }
609
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100610 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100611 dev_warn(&adapter->ccw_device->dev,
612 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100613 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200614 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100615 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200616
Swen Schilligcc8c2822008-06-10 18:21:00 +0200617 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100618 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100619 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200620 acc++;
621 else
622 acc = sg_virt(++sg);
623
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100624 last = acc->fp_flags & FC_NS_FID_LAST;
625 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200626
Swen Schillig5ab944f2008-10-01 12:42:17 +0200627 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100628 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200629 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200630 /* skip the adapter's port and known remote ports */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100631 if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200632 continue;
633
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100634 port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200635 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100636 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100637 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100638 else if (PTR_ERR(port) != -EEXIST)
639 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200640 }
641
642 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100643 write_lock_irqsave(&adapter->port_list_lock, flags);
644 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100645 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100646 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100647
648 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100649 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100650 zfcp_device_unregister(&port->dev, &zfcp_sysfs_port_attrs);
Swen Schilligf3450c72009-11-24 16:53:59 +0100651 }
652
Swen Schilligcc8c2822008-06-10 18:21:00 +0200653 return ret;
654}
655
656/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200657 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100658 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200659 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100660void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200661{
Swen Schillig9eae07e2009-11-24 16:54:06 +0100662 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
663 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200664 int ret, i;
Christof Schmittf9773222011-02-22 19:54:43 +0100665 struct zfcp_fc_req *fc_req;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100666 int chain, max_entries, buf_num, max_bytes;
667
668 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100669 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
670 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
671 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200672
Swen Schillig306b6ed2009-04-17 15:08:02 +0200673 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
674 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100675 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200676
Swen Schillig9eae07e2009-11-24 16:54:06 +0100677 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
678 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200679
Christof Schmittf9773222011-02-22 19:54:43 +0100680 fc_req = zfcp_alloc_sg_env(buf_num);
681 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200682 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200683
684 for (i = 0; i < 3; i++) {
Christof Schmittf9773222011-02-22 19:54:43 +0100685 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200686 if (!ret) {
Christof Schmittf9773222011-02-22 19:54:43 +0100687 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200688 if (ret == -EAGAIN)
689 ssleep(1);
690 else
691 break;
692 }
693 }
Christof Schmittf9773222011-02-22 19:54:43 +0100694 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
695 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200696out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200697 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200698}
699
Christof Schmitt038d9442011-02-22 19:54:48 +0100700static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
701 struct zfcp_fc_req *fc_req)
702{
703 DECLARE_COMPLETION_ONSTACK(completion);
704 char devno[] = "DEVNO:";
705 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
706 struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req;
707 struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp;
708 int ret;
709
710 zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID,
711 FC_SYMBOLIC_NAME_SIZE);
712 hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host));
713
714 sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req));
715 sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp));
716
717 ct_els->handler = zfcp_fc_complete;
718 ct_els->handler_data = &completion;
719 ct_els->req = &fc_req->sg_req;
720 ct_els->resp = &fc_req->sg_rsp;
721
722 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
723 ZFCP_FC_CTELS_TMO);
724 if (ret)
725 return ret;
726
727 wait_for_completion(&completion);
728 if (ct_els->status)
729 return ct_els->status;
730
731 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV &&
732 !(strstr(gspn_rsp->gspn.fp_name, devno)))
733 snprintf(fc_host_symbolic_name(adapter->scsi_host),
734 FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s",
735 gspn_rsp->gspn.fp_name, devno,
736 dev_name(&adapter->ccw_device->dev),
737 init_utsname()->nodename);
738 else
739 strlcpy(fc_host_symbolic_name(adapter->scsi_host),
740 gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
741
742 return 0;
743}
744
745static void zfcp_fc_rspn(struct zfcp_adapter *adapter,
746 struct zfcp_fc_req *fc_req)
747{
748 DECLARE_COMPLETION_ONSTACK(completion);
749 struct Scsi_Host *shost = adapter->scsi_host;
750 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
751 struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req;
752 struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp;
753 int ret, len;
754
755 zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID,
756 FC_SYMBOLIC_NAME_SIZE);
757 hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost));
758 len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost),
759 FC_SYMBOLIC_NAME_SIZE);
760 rspn_req->rspn.fr_name_len = len;
761
762 sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req));
763 sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp));
764
765 ct_els->handler = zfcp_fc_complete;
766 ct_els->handler_data = &completion;
767 ct_els->req = &fc_req->sg_req;
768 ct_els->resp = &fc_req->sg_rsp;
769
770 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
771 ZFCP_FC_CTELS_TMO);
772 if (!ret)
773 wait_for_completion(&completion);
774}
775
776/**
777 * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name
778 * @work: ns_up_work of the adapter where to update the symbolic port name
779 *
780 * Retrieve the current symbolic port name that may have been set by
781 * the hardware using the GSPN request and update the fc_host
782 * symbolic_name sysfs attribute. When running in NPIV mode (and hence
783 * the port name is unique for this system), update the symbolic port
784 * name to add Linux specific information and update the FC nameserver
785 * using the RSPN request.
786 */
787void zfcp_fc_sym_name_update(struct work_struct *work)
788{
789 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
790 ns_up_work);
791 int ret;
792 struct zfcp_fc_req *fc_req;
793
794 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
795 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
796 return;
797
798 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
799 if (!fc_req)
800 return;
801
802 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
803 if (ret)
804 goto out_free;
805
806 ret = zfcp_fc_gspn(adapter, fc_req);
807 if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
808 goto out_ds_put;
809
810 memset(fc_req, 0, sizeof(*fc_req));
811 zfcp_fc_rspn(adapter, fc_req);
812
813out_ds_put:
814 zfcp_fc_wka_port_put(&adapter->gs->ds);
815out_free:
816 kmem_cache_free(zfcp_fc_req_cache, fc_req);
817}
818
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100819static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200820{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100821 struct fc_bsg_job *job = data;
822 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100823 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200824
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100825 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
826 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
827 jr->result = zfcp_ct_els->status ? -EIO : 0;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200828 job->job_done(job);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200829}
830
Christof Schmittf09d5452010-01-13 17:52:36 +0100831static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job)
832{
833 u32 preamble_word1;
834 u8 gs_type;
835 struct zfcp_adapter *adapter;
836
837 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
838 gs_type = (preamble_word1 & 0xff000000) >> 24;
839
840 adapter = (struct zfcp_adapter *) job->shost->hostdata[0];
841
842 switch (gs_type) {
843 case FC_FST_ALIAS:
844 return &adapter->gs->as;
845 case FC_FST_MGMT:
846 return &adapter->gs->ms;
847 case FC_FST_TIME:
848 return &adapter->gs->ts;
849 break;
850 case FC_FST_DIR:
851 return &adapter->gs->ds;
852 break;
853 default:
854 return NULL;
855 }
856}
857
858static void zfcp_fc_ct_job_handler(void *data)
859{
860 struct fc_bsg_job *job = data;
861 struct zfcp_fc_wka_port *wka_port;
862
863 wka_port = zfcp_fc_job_wka_port(job);
864 zfcp_fc_wka_port_put(wka_port);
865
866 zfcp_fc_ct_els_job_handler(data);
867}
868
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100869static int zfcp_fc_exec_els_job(struct fc_bsg_job *job,
870 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200871{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100872 struct zfcp_fsf_ct_els *els = job->dd_data;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200873 struct fc_rport *rport = job->rport;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200874 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100875 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200876
Sven Schuetz9d544f22009-04-06 18:31:47 +0200877 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200878 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100879 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200880 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100881
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100882 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100883 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100884 } else
885 d_id = ntoh24(job->request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200886
Christof Schmittf09d5452010-01-13 17:52:36 +0100887 els->handler = zfcp_fc_ct_els_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100888 return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200889}
890
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100891static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job,
892 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200893{
894 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100895 struct zfcp_fsf_ct_els *ct = job->dd_data;
896 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200897
Christof Schmittf09d5452010-01-13 17:52:36 +0100898 wka_port = zfcp_fc_job_wka_port(job);
899 if (!wka_port)
900 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200901
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100902 ret = zfcp_fc_wka_port_get(wka_port);
903 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200904 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200905
Christof Schmittf09d5452010-01-13 17:52:36 +0100906 ct->handler = zfcp_fc_ct_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100907 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100908 if (ret)
909 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200910
Sven Schuetz9d544f22009-04-06 18:31:47 +0200911 return ret;
912}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200913
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100914int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job)
915{
916 struct Scsi_Host *shost;
917 struct zfcp_adapter *adapter;
918 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
919
920 shost = job->rport ? rport_to_shost(job->rport) : job->shost;
921 adapter = (struct zfcp_adapter *)shost->hostdata[0];
922
923 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
924 return -EINVAL;
925
926 ct_els->req = job->request_payload.sg_list;
927 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100928 ct_els->handler_data = job;
929
930 switch (job->request->msgcode) {
931 case FC_BSG_RPT_ELS:
932 case FC_BSG_HST_ELS_NOLOGIN:
933 return zfcp_fc_exec_els_job(job, adapter);
934 case FC_BSG_RPT_CT:
935 case FC_BSG_HST_CT:
936 return zfcp_fc_exec_ct_job(job, adapter);
937 default:
938 return -EINVAL;
939 }
940}
941
Swen Schillig491ca442010-01-14 17:19:01 +0100942int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job)
943{
944 /* hardware tracks timeout, reset bsg timeout to not interfere */
945 return -EAGAIN;
946}
947
Swen Schilligd5a282a2009-08-18 15:43:22 +0200948int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
949{
Christof Schmittbd0072e2009-11-24 16:54:11 +0100950 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +0200951
Christof Schmittbd0072e2009-11-24 16:54:11 +0100952 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200953 if (!wka_ports)
954 return -ENOMEM;
955
956 adapter->gs = wka_ports;
957 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
958 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
959 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
960 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200961
962 return 0;
963}
964
965void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
966{
967 kfree(adapter->gs);
968 adapter->gs = NULL;
969}
970