blob: 9824556033491493359ef5151557f47290732f5d [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 Schmitt9d05ce22009-11-24 16:54:09 +010014#include <scsi/fc/fc_els.h>
15#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020016#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010017#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020018
Christof Schmitt087897e2011-02-22 19:54:41 +010019struct kmem_cache *zfcp_fc_req_cache;
20
Christof Schmitt9d05ce22009-11-24 16:54:09 +010021static u32 zfcp_fc_rscn_range_mask[] = {
22 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
23 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
24 [ELS_ADDR_FMT_DOM] = 0xFF0000,
25 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010026};
27
Sven Schuetz2d1e5472010-07-16 15:37:39 +020028/**
29 * zfcp_fc_post_event - post event to userspace via fc_transport
30 * @work: work struct with enqueued events
31 */
32void zfcp_fc_post_event(struct work_struct *work)
33{
34 struct zfcp_fc_event *event = NULL, *tmp = NULL;
35 LIST_HEAD(tmp_lh);
36 struct zfcp_fc_events *events = container_of(work,
37 struct zfcp_fc_events, work);
38 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
39 events);
40
41 spin_lock_bh(&events->list_lock);
42 list_splice_init(&events->list, &tmp_lh);
43 spin_unlock_bh(&events->list_lock);
44
45 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
46 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
47 event->code, event->data);
48 list_del(&event->list);
49 kfree(event);
50 }
51
52}
53
54/**
55 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
56 * @adapter: The adapter where to enqueue the event
57 * @event_code: The event code (as defined in fc_host_event_code in
58 * scsi_transport_fc.h)
59 * @event_data: The event data (e.g. n_port page in case of els)
60 */
61void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
62 enum fc_host_event_code event_code, u32 event_data)
63{
64 struct zfcp_fc_event *event;
65
66 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
67 if (!event)
68 return;
69
70 event->code = event_code;
71 event->data = event_data;
72
73 spin_lock(&adapter->events.list_lock);
74 list_add_tail(&event->list, &adapter->events.list);
75 spin_unlock(&adapter->events.list_lock);
76
77 queue_work(adapter->work_queue, &adapter->events.work);
78}
79
Christof Schmittbd0072e2009-11-24 16:54:11 +010080static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +020081{
82 if (mutex_lock_interruptible(&wka_port->mutex))
83 return -ERESTARTSYS;
84
Christof Schmittbd0072e2009-11-24 16:54:11 +010085 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
86 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
87 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +020088 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +010089 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +020090 }
91
92 mutex_unlock(&wka_port->mutex);
93
Swen Schillig27f492c2009-07-13 15:06:13 +020094 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +010095 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
96 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +020097
Christof Schmittbd0072e2009-11-24 16:54:11 +010098 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +020099 atomic_inc(&wka_port->refcount);
100 return 0;
101 }
102 return -EIO;
103}
104
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200105static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200106{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700107 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100108 struct zfcp_fc_wka_port *wka_port =
109 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200110
Swen Schillig5ab944f2008-10-01 12:42:17 +0200111 mutex_lock(&wka_port->mutex);
112 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100113 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200114 goto out;
115
Christof Schmittbd0072e2009-11-24 16:54:11 +0100116 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200117 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100118 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200119 wake_up(&wka_port->completion_wq);
120 }
121out:
122 mutex_unlock(&wka_port->mutex);
123}
124
Christof Schmittbd0072e2009-11-24 16:54:11 +0100125static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200126{
127 if (atomic_dec_return(&wka_port->refcount) != 0)
128 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200129 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200130 schedule_delayed_work(&wka_port->work, HZ / 100);
131}
132
Christof Schmittbd0072e2009-11-24 16:54:11 +0100133static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200134 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200135{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200136 init_waitqueue_head(&wka_port->completion_wq);
137
138 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200139 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200140
Christof Schmittbd0072e2009-11-24 16:54:11 +0100141 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200142 atomic_set(&wka_port->refcount, 0);
143 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200144 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200145}
146
Christof Schmittbd0072e2009-11-24 16:54:11 +0100147static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200148{
149 cancel_delayed_work_sync(&wka->work);
150 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100151 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200152 mutex_unlock(&wka->mutex);
153}
154
Christof Schmittbd0072e2009-11-24 16:54:11 +0100155void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200156{
Swen Schilligf3450c72009-11-24 16:53:59 +0100157 if (!gs)
158 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200159 zfcp_fc_wka_port_force_offline(&gs->ms);
160 zfcp_fc_wka_port_force_offline(&gs->ts);
161 zfcp_fc_wka_port_force_offline(&gs->ds);
162 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200163}
164
Christof Schmitt24073b42008-06-10 18:20:54 +0200165static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100166 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200167{
168 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100169 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200170 struct zfcp_port *port;
171
Swen Schilligecf0c772009-11-24 16:53:58 +0100172 read_lock_irqsave(&adapter->port_list_lock, flags);
173 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100174 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200175 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200176 if (!port->d_id)
177 zfcp_erp_port_reopen(port,
178 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100179 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200180 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100181 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200182}
183
184static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
185{
186 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100187 struct fc_els_rscn *head;
188 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200189 u16 i;
190 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100191 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200192
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100193 head = (struct fc_els_rscn *) status_buffer->payload.data;
194 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200195
196 /* see FC-FS */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100197 no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200198
199 for (i = 1; i < no_entries; i++) {
200 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100201 page++;
202 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
203 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
204 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200205 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
206 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200207 }
Swen Schillig9eae07e2009-11-24 16:54:06 +0100208 queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work);
Christof Schmitt24073b42008-06-10 18:20:54 +0200209}
210
Swen Schillig7ba58c92008-10-01 12:42:18 +0200211static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200212{
Swen Schilligecf0c772009-11-24 16:53:58 +0100213 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200214 struct zfcp_adapter *adapter = req->adapter;
215 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200216
Swen Schilligecf0c772009-11-24 16:53:58 +0100217 read_lock_irqsave(&adapter->port_list_lock, flags);
218 list_for_each_entry(port, &adapter->port_list, list)
219 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100220 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200221 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100222 }
223 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200224}
225
226static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
227{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100228 struct fsf_status_read_buffer *status_buffer;
229 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200230
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100231 status_buffer = (struct fsf_status_read_buffer *) req->data;
232 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
233 zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200234}
235
236static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
237{
238 struct fsf_status_read_buffer *status_buffer =
239 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100240 struct fc_els_logo *logo =
241 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200242
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100243 zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200244}
245
246/**
247 * zfcp_fc_incoming_els - handle incoming ELS
248 * @fsf_req - request which contains incoming ELS
249 */
250void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
251{
252 struct fsf_status_read_buffer *status_buffer =
253 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200254 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200255
Swen Schillig2c55b752010-12-02 15:16:13 +0100256 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100257 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200258 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100259 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200260 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100261 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200262 zfcp_fc_incoming_rscn(fsf_req);
263}
264
Christof Schmittfcf7e612011-02-22 19:54:42 +0100265static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200266{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100267 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
268 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200269
Christof Schmittfcf7e612011-02-22 19:54:42 +0100270 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200271 return;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100272 if (gid_pn_rsp->ct_hdr.ct_cmd != FC_FS_ACC)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200273 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100274
Christof Schmitt24073b42008-06-10 18:20:54 +0200275 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100276 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200277}
278
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100279static void zfcp_fc_complete(void *data)
280{
281 complete(data);
282}
283
Christof Schmittfcf7e612011-02-22 19:54:42 +0100284static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
285{
286 ct_hdr->ct_rev = FC_CT_REV;
287 ct_hdr->ct_fs_type = FC_FST_DIR;
288 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
289 ct_hdr->ct_cmd = cmd;
290 ct_hdr->ct_mr_size = mr_size / 4;
291}
292
Christof Schmitt799b76d2009-08-18 15:43:20 +0200293static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100294 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200295{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200296 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100297 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100298 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
299 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200300 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200301
302 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100303 fc_req->ct_els.port = port;
304 fc_req->ct_els.handler = zfcp_fc_complete;
305 fc_req->ct_els.handler_data = &completion;
306 fc_req->ct_els.req = &fc_req->sg_req;
307 fc_req->ct_els.resp = &fc_req->sg_rsp;
308 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
309 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200310
Christof Schmittfcf7e612011-02-22 19:54:42 +0100311 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
312 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
313 gid_pn_req->gid_pn.fn_wwpn = port->wwpn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200314
Christof Schmittfcf7e612011-02-22 19:54:42 +0100315 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100316 adapter->pool.gid_pn_req,
317 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100318 if (!ret) {
319 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100320 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100321 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200322 return ret;
323}
324
325/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100326 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200327 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200328 * return: -ENOMEM on error, 0 otherwise
329 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200330static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200331{
332 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100333 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200334 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200335
Christof Schmittfcf7e612011-02-22 19:54:42 +0100336 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
337 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200338 return -ENOMEM;
339
Christof Schmittfcf7e612011-02-22 19:54:42 +0100340 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200341
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200342 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200343 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200344 goto out;
345
Christof Schmittfcf7e612011-02-22 19:54:42 +0100346 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200347
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200348 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200349out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100350 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200351 return ret;
352}
353
Christof Schmitt799b76d2009-08-18 15:43:20 +0200354void zfcp_fc_port_did_lookup(struct work_struct *work)
355{
356 int ret;
357 struct zfcp_port *port = container_of(work, struct zfcp_port,
358 gid_pn_work);
359
360 ret = zfcp_fc_ns_gid_pn(port);
361 if (ret) {
362 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100363 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200364 goto out;
365 }
366
367 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200368 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200369 goto out;
370 }
371
Swen Schilligea4a3a62010-12-02 15:16:16 +0100372 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200373out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100374 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200375}
376
Christof Schmitt24073b42008-06-10 18:20:54 +0200377/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200378 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
379 * @port: The zfcp_port to lookup the d_id for.
380 */
381void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
382{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100383 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200384 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100385 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200386}
387
388/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200389 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
390 * @port: zfcp_port structure
391 * @plogi: plogi payload
392 *
393 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
394 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100395void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200396{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100397 if (plogi->fl_wwpn != port->wwpn) {
398 port->d_id = 0;
399 dev_warn(&port->adapter->ccw_device->dev,
400 "A port opened with WWPN 0x%016Lx returned data that "
401 "identifies it as WWPN 0x%016Lx\n",
402 (unsigned long long) port->wwpn,
403 (unsigned long long) plogi->fl_wwpn);
404 return;
405 }
406
407 port->wwnn = plogi->fl_wwnn;
408 port->maxframe_size = plogi->fl_csp.sp_bb_data;
409
410 if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200411 port->supported_classes |= FC_COS_CLASS1;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100412 if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200413 port->supported_classes |= FC_COS_CLASS2;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100414 if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200415 port->supported_classes |= FC_COS_CLASS3;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100416 if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID)
Christof Schmitt24073b42008-06-10 18:20:54 +0200417 port->supported_classes |= FC_COS_CLASS4;
418}
419
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100420static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200421{
Christof Schmitt087897e2011-02-22 19:54:41 +0100422 struct zfcp_fc_req *fc_req = data;
423 struct zfcp_port *port = fc_req->ct_els.port;
424 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200425
Christof Schmitt087897e2011-02-22 19:54:41 +0100426 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200427 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200428 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100429 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200430 goto out;
431 }
432
433 if (!port->wwnn)
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100434 port->wwnn = adisc_resp->adisc_wwnn;
Christof Schmitt24073b42008-06-10 18:20:54 +0200435
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100436 if ((port->wwpn != adisc_resp->adisc_wwpn) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100437 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100438 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100439 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100440 goto out;
441 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200442
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100443 /* port is good, unblock rport without going through erp */
444 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200445 out:
Christof Schmitt14e242e2009-08-18 15:43:11 +0200446 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100447 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100448 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200449}
450
451static int zfcp_fc_adisc(struct zfcp_port *port)
452{
Christof Schmitt087897e2011-02-22 19:54:41 +0100453 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200454 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100455 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100456 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200457
Christof Schmitt087897e2011-02-22 19:54:41 +0100458 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
459 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200460 return -ENOMEM;
461
Christof Schmitt087897e2011-02-22 19:54:41 +0100462 fc_req->ct_els.port = port;
463 fc_req->ct_els.req = &fc_req->sg_req;
464 fc_req->ct_els.resp = &fc_req->sg_rsp;
465 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100466 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100467 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100468 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200469
Christof Schmitt087897e2011-02-22 19:54:41 +0100470 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
471 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200472
473 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
474 without FC-AL-2 capability, so we don't set it */
Christof Schmitt087897e2011-02-22 19:54:41 +0100475 fc_req->u.adisc.req.adisc_wwpn = fc_host_port_name(shost);
476 fc_req->u.adisc.req.adisc_wwnn = fc_host_node_name(shost);
477 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
478 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200479
Christof Schmitt087897e2011-02-22 19:54:41 +0100480 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100481 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100482 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100483 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100484
485 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200486}
487
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100488void zfcp_fc_link_test_work(struct work_struct *work)
489{
490 struct zfcp_port *port =
491 container_of(work, struct zfcp_port, test_link_work);
492 int retval;
493
Christof Schmitt615f59e2010-02-17 11:18:56 +0100494 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100495 port->rport_task = RPORT_DEL;
496 zfcp_scsi_rport_work(&port->rport_work);
497
Christof Schmitt14e242e2009-08-18 15:43:11 +0200498 /* only issue one test command at one time per port */
499 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
500 goto out;
501
502 atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
503
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100504 retval = zfcp_fc_adisc(port);
505 if (retval == 0)
506 return;
507
508 /* send of ADISC was not possible */
Christof Schmitt14e242e2009-08-18 15:43:11 +0200509 atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100510 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100511
Christof Schmitt14e242e2009-08-18 15:43:11 +0200512out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100513 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100514}
515
Christof Schmitt24073b42008-06-10 18:20:54 +0200516/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200517 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200518 * @port: port to be tested
519 *
520 * Test status of a link to a remote port using the ELS command ADISC.
521 * If there is a problem with the remote port, error recovery steps
522 * will be triggered.
523 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200524void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200525{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100526 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200527 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100528 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200529}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200530
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100531static void zfcp_free_sg_env(struct zfcp_fc_gpn_ft *gpn_ft, int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200532{
533 struct scatterlist *sg = &gpn_ft->sg_req;
534
Swen Schilliga4623c42009-08-18 15:43:15 +0200535 kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg));
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100536 zfcp_sg_free_table(gpn_ft->sg_resp, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200537
538 kfree(gpn_ft);
539}
540
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100541static struct zfcp_fc_gpn_ft *zfcp_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200542{
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100543 struct zfcp_fc_gpn_ft *gpn_ft;
544 struct zfcp_fc_gpn_ft_req *req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200545
546 gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL);
547 if (!gpn_ft)
548 return NULL;
549
Christof Schmitt6e51f082010-04-30 18:09:37 +0200550 req = kmem_cache_zalloc(zfcp_data.gpn_ft_cache, GFP_KERNEL);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200551 if (!req) {
552 kfree(gpn_ft);
553 gpn_ft = NULL;
554 goto out;
555 }
556 sg_init_one(&gpn_ft->sg_req, req, sizeof(*req));
557
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100558 if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) {
559 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200560 gpn_ft = NULL;
561 }
562out:
563 return gpn_ft;
564}
565
566
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100567static int zfcp_fc_send_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200568 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200569{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100570 struct zfcp_fsf_ct_els *ct = &gpn_ft->ct;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100571 struct zfcp_fc_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100572 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200573 int ret;
574
575 /* prepare CT IU for GPN_FT */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100576 req->ct_hdr.ct_rev = FC_CT_REV;
577 req->ct_hdr.ct_fs_type = FC_FST_DIR;
578 req->ct_hdr.ct_fs_subtype = FC_NS_SUBTYPE;
579 req->ct_hdr.ct_options = 0;
580 req->ct_hdr.ct_cmd = FC_NS_GPN_FT;
581 req->ct_hdr.ct_mr_size = max_bytes / 4;
582 req->gpn_ft.fn_domain_id_scope = 0;
583 req->gpn_ft.fn_area_id_scope = 0;
584 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200585
586 /* prepare zfcp_send_ct */
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100587 ct->handler = zfcp_fc_complete;
588 ct->handler_data = &completion;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200589 ct->req = &gpn_ft->sg_req;
590 ct->resp = gpn_ft->sg_resp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200591
Swen Schillig51375ee2010-01-14 17:19:02 +0100592 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct, NULL,
593 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200594 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100595 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200596 return ret;
597}
598
Swen Schilligf3450c72009-11-24 16:53:59 +0100599static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200600{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200601 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
602 return;
603
Swen Schilligcc8c2822008-06-10 18:21:00 +0200604 atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status);
605
Christof Schmitt04062892008-10-01 12:42:20 +0200606 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100607 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200608 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100609
Swen Schilligf3450c72009-11-24 16:53:59 +0100610 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200611}
612
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100613static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft,
614 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200615{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100616 struct zfcp_fsf_ct_els *ct = &gpn_ft->ct;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200617 struct scatterlist *sg = gpn_ft->sg_resp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100618 struct fc_ct_hdr *hdr = sg_virt(sg);
619 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200620 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100621 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100622 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200623 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200624 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200625
626 if (ct->status)
627 return -EIO;
628
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100629 if (hdr->ct_cmd != FC_FS_ACC) {
630 if (hdr->ct_reason == FC_BA_RJT_UNABLE)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200631 return -EAGAIN; /* might be a temporary condition */
632 return -EIO;
633 }
634
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100635 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100636 dev_warn(&adapter->ccw_device->dev,
637 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100638 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200639 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100640 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200641
Swen Schilligcc8c2822008-06-10 18:21:00 +0200642 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100643 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100644 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200645 acc++;
646 else
647 acc = sg_virt(++sg);
648
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100649 last = acc->fp_flags & FC_NS_FID_LAST;
650 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200651
Swen Schillig5ab944f2008-10-01 12:42:17 +0200652 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100653 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200654 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200655 /* skip the adapter's port and known remote ports */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100656 if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200657 continue;
658
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100659 port = zfcp_port_enqueue(adapter, acc->fp_wwpn,
Swen Schilligcc8c2822008-06-10 18:21:00 +0200660 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100661 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100662 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100663 else if (PTR_ERR(port) != -EEXIST)
664 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200665 }
666
667 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100668 write_lock_irqsave(&adapter->port_list_lock, flags);
669 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100670 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100671 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100672
673 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100674 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Christof Schmitt615f59e2010-02-17 11:18:56 +0100675 zfcp_device_unregister(&port->dev, &zfcp_sysfs_port_attrs);
Swen Schilligf3450c72009-11-24 16:53:59 +0100676 }
677
Swen Schilligcc8c2822008-06-10 18:21:00 +0200678 return ret;
679}
680
681/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200682 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100683 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200684 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100685void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200686{
Swen Schillig9eae07e2009-11-24 16:54:06 +0100687 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
688 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200689 int ret, i;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100690 struct zfcp_fc_gpn_ft *gpn_ft;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100691 int chain, max_entries, buf_num, max_bytes;
692
693 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100694 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
695 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
696 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200697
Swen Schillig306b6ed2009-04-17 15:08:02 +0200698 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
699 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100700 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200701
Swen Schillig9eae07e2009-11-24 16:54:06 +0100702 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
703 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200704
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100705 gpn_ft = zfcp_alloc_sg_env(buf_num);
Swen Schillig9eae07e2009-11-24 16:54:06 +0100706 if (!gpn_ft)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200707 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200708
709 for (i = 0; i < 3; i++) {
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200710 ret = zfcp_fc_send_gpn_ft(gpn_ft, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200711 if (!ret) {
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100712 ret = zfcp_fc_eval_gpn_ft(gpn_ft, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200713 if (ret == -EAGAIN)
714 ssleep(1);
715 else
716 break;
717 }
718 }
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100719 zfcp_free_sg_env(gpn_ft, buf_num);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200720out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200721 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200722}
723
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100724static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200725{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100726 struct fc_bsg_job *job = data;
727 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100728 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200729
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100730 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
731 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
732 jr->result = zfcp_ct_els->status ? -EIO : 0;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200733 job->job_done(job);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200734}
735
Christof Schmittf09d5452010-01-13 17:52:36 +0100736static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job)
737{
738 u32 preamble_word1;
739 u8 gs_type;
740 struct zfcp_adapter *adapter;
741
742 preamble_word1 = job->request->rqst_data.r_ct.preamble_word1;
743 gs_type = (preamble_word1 & 0xff000000) >> 24;
744
745 adapter = (struct zfcp_adapter *) job->shost->hostdata[0];
746
747 switch (gs_type) {
748 case FC_FST_ALIAS:
749 return &adapter->gs->as;
750 case FC_FST_MGMT:
751 return &adapter->gs->ms;
752 case FC_FST_TIME:
753 return &adapter->gs->ts;
754 break;
755 case FC_FST_DIR:
756 return &adapter->gs->ds;
757 break;
758 default:
759 return NULL;
760 }
761}
762
763static void zfcp_fc_ct_job_handler(void *data)
764{
765 struct fc_bsg_job *job = data;
766 struct zfcp_fc_wka_port *wka_port;
767
768 wka_port = zfcp_fc_job_wka_port(job);
769 zfcp_fc_wka_port_put(wka_port);
770
771 zfcp_fc_ct_els_job_handler(data);
772}
773
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100774static int zfcp_fc_exec_els_job(struct fc_bsg_job *job,
775 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200776{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100777 struct zfcp_fsf_ct_els *els = job->dd_data;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200778 struct fc_rport *rport = job->rport;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200779 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100780 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200781
Sven Schuetz9d544f22009-04-06 18:31:47 +0200782 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200783 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100784 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200785 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100786
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100787 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100788 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100789 } else
790 d_id = ntoh24(job->request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200791
Christof Schmittf09d5452010-01-13 17:52:36 +0100792 els->handler = zfcp_fc_ct_els_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100793 return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200794}
795
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100796static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job,
797 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200798{
799 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100800 struct zfcp_fsf_ct_els *ct = job->dd_data;
801 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200802
Christof Schmittf09d5452010-01-13 17:52:36 +0100803 wka_port = zfcp_fc_job_wka_port(job);
804 if (!wka_port)
805 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200806
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100807 ret = zfcp_fc_wka_port_get(wka_port);
808 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200809 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200810
Christof Schmittf09d5452010-01-13 17:52:36 +0100811 ct->handler = zfcp_fc_ct_job_handler;
Swen Schillig51375ee2010-01-14 17:19:02 +0100812 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100813 if (ret)
814 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200815
Sven Schuetz9d544f22009-04-06 18:31:47 +0200816 return ret;
817}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200818
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100819int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job)
820{
821 struct Scsi_Host *shost;
822 struct zfcp_adapter *adapter;
823 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
824
825 shost = job->rport ? rport_to_shost(job->rport) : job->shost;
826 adapter = (struct zfcp_adapter *)shost->hostdata[0];
827
828 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
829 return -EINVAL;
830
831 ct_els->req = job->request_payload.sg_list;
832 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100833 ct_els->handler_data = job;
834
835 switch (job->request->msgcode) {
836 case FC_BSG_RPT_ELS:
837 case FC_BSG_HST_ELS_NOLOGIN:
838 return zfcp_fc_exec_els_job(job, adapter);
839 case FC_BSG_RPT_CT:
840 case FC_BSG_HST_CT:
841 return zfcp_fc_exec_ct_job(job, adapter);
842 default:
843 return -EINVAL;
844 }
845}
846
Swen Schillig491ca442010-01-14 17:19:01 +0100847int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job)
848{
849 /* hardware tracks timeout, reset bsg timeout to not interfere */
850 return -EAGAIN;
851}
852
Swen Schilligd5a282a2009-08-18 15:43:22 +0200853int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
854{
Christof Schmittbd0072e2009-11-24 16:54:11 +0100855 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +0200856
Christof Schmittbd0072e2009-11-24 16:54:11 +0100857 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200858 if (!wka_ports)
859 return -ENOMEM;
860
861 adapter->gs = wka_ports;
862 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
863 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
864 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
865 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +0200866
867 return 0;
868}
869
870void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
871{
872 kfree(adapter->gs);
873 adapter->gs = NULL;
874}
875