blob: 54186943896b8bc3c4e93767377556e1c0a278b4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christof Schmitt24073b42008-06-10 18:20:54 +02002/*
3 * zfcp device driver
4 *
5 * Fibre Channel related functions for the zfcp device driver.
6 *
Steffen Maierab8ab4b2017-07-28 12:30:59 +02007 * Copyright IBM Corp. 2008, 2017
Christof Schmitt24073b42008-06-10 18:20:54 +02008 */
9
Christof Schmittecf39d42008-12-25 13:39:53 +010010#define KMSG_COMPONENT "zfcp"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Christof Schmitt9d05ce22009-11-24 16:54:09 +010013#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Christof Schmitt038d9442011-02-22 19:54:48 +010015#include <linux/utsname.h>
Martin Peschke18f87a62014-11-13 14:59:48 +010016#include <linux/random.h>
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +010017#include <linux/bsg-lib.h>
Christof Schmitt9d05ce22009-11-24 16:54:09 +010018#include <scsi/fc/fc_els.h>
19#include <scsi/libfc.h>
Christof Schmitt24073b42008-06-10 18:20:54 +020020#include "zfcp_ext.h"
Christof Schmitt9d05ce22009-11-24 16:54:09 +010021#include "zfcp_fc.h"
Christof Schmitt24073b42008-06-10 18:20:54 +020022
Christof Schmitt087897e2011-02-22 19:54:41 +010023struct kmem_cache *zfcp_fc_req_cache;
24
Christof Schmitt9d05ce22009-11-24 16:54:09 +010025static u32 zfcp_fc_rscn_range_mask[] = {
26 [ELS_ADDR_FMT_PORT] = 0xFFFFFF,
27 [ELS_ADDR_FMT_AREA] = 0xFFFF00,
28 [ELS_ADDR_FMT_DOM] = 0xFF0000,
29 [ELS_ADDR_FMT_FAB] = 0x000000,
Christof Schmitte0d7fcb2008-12-19 16:56:58 +010030};
31
Steffen Maier43f60cb2012-09-04 15:23:35 +020032static bool no_auto_port_rescan;
Martin Peschkeb096ef82017-07-28 12:31:07 +020033module_param(no_auto_port_rescan, bool, 0600);
Steffen Maier43f60cb2012-09-04 15:23:35 +020034MODULE_PARM_DESC(no_auto_port_rescan,
35 "no automatic port_rescan (default off)");
36
Martin Peschke18f87a62014-11-13 14:59:48 +010037static unsigned int port_scan_backoff = 500;
38module_param(port_scan_backoff, uint, 0600);
39MODULE_PARM_DESC(port_scan_backoff,
40 "upper limit of port scan random backoff in msecs (default 500)");
41
42static unsigned int port_scan_ratelimit = 60000;
43module_param(port_scan_ratelimit, uint, 0600);
44MODULE_PARM_DESC(port_scan_ratelimit,
45 "minimum interval between port scans in msecs (default 60000)");
46
47unsigned int zfcp_fc_port_scan_backoff(void)
48{
49 if (!port_scan_backoff)
50 return 0;
51 return get_random_int() % port_scan_backoff;
52}
53
54static void zfcp_fc_port_scan_time(struct zfcp_adapter *adapter)
55{
56 unsigned long interval = msecs_to_jiffies(port_scan_ratelimit);
57 unsigned long backoff = msecs_to_jiffies(zfcp_fc_port_scan_backoff());
58
59 adapter->next_port_scan = jiffies + interval + backoff;
60}
61
62static void zfcp_fc_port_scan(struct zfcp_adapter *adapter)
63{
64 unsigned long now = jiffies;
65 unsigned long next = adapter->next_port_scan;
66 unsigned long delay = 0, max;
67
68 /* delay only needed within waiting period */
69 if (time_before(now, next)) {
70 delay = next - now;
71 /* paranoia: never ever delay scans longer than specified */
72 max = msecs_to_jiffies(port_scan_ratelimit + port_scan_backoff);
73 delay = min(delay, max);
74 }
75
76 queue_delayed_work(adapter->work_queue, &adapter->scan_work, delay);
77}
78
Steffen Maier43f60cb2012-09-04 15:23:35 +020079void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter)
80{
81 if (no_auto_port_rescan)
82 return;
83
Martin Peschke18f87a62014-11-13 14:59:48 +010084 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020085}
86
87void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter)
88{
89 if (!no_auto_port_rescan)
90 return;
91
Martin Peschke18f87a62014-11-13 14:59:48 +010092 zfcp_fc_port_scan(adapter);
Steffen Maier43f60cb2012-09-04 15:23:35 +020093}
94
Sven Schuetz2d1e5472010-07-16 15:37:39 +020095/**
96 * zfcp_fc_post_event - post event to userspace via fc_transport
97 * @work: work struct with enqueued events
98 */
99void zfcp_fc_post_event(struct work_struct *work)
100{
101 struct zfcp_fc_event *event = NULL, *tmp = NULL;
102 LIST_HEAD(tmp_lh);
103 struct zfcp_fc_events *events = container_of(work,
104 struct zfcp_fc_events, work);
105 struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter,
106 events);
107
108 spin_lock_bh(&events->list_lock);
109 list_splice_init(&events->list, &tmp_lh);
110 spin_unlock_bh(&events->list_lock);
111
112 list_for_each_entry_safe(event, tmp, &tmp_lh, list) {
113 fc_host_post_event(adapter->scsi_host, fc_get_event_number(),
114 event->code, event->data);
115 list_del(&event->list);
116 kfree(event);
117 }
118
119}
120
121/**
122 * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context
123 * @adapter: The adapter where to enqueue the event
124 * @event_code: The event code (as defined in fc_host_event_code in
125 * scsi_transport_fc.h)
126 * @event_data: The event data (e.g. n_port page in case of els)
127 */
128void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter,
129 enum fc_host_event_code event_code, u32 event_data)
130{
131 struct zfcp_fc_event *event;
132
133 event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC);
134 if (!event)
135 return;
136
137 event->code = event_code;
138 event->data = event_data;
139
140 spin_lock(&adapter->events.list_lock);
141 list_add_tail(&event->list, &adapter->events.list);
142 spin_unlock(&adapter->events.list_lock);
143
144 queue_work(adapter->work_queue, &adapter->events.work);
145}
146
Christof Schmittbd0072e2009-11-24 16:54:11 +0100147static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200148{
149 if (mutex_lock_interruptible(&wka_port->mutex))
150 return -ERESTARTSYS;
151
Christof Schmittbd0072e2009-11-24 16:54:11 +0100152 if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE ||
153 wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) {
154 wka_port->status = ZFCP_FC_WKA_PORT_OPENING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200155 if (zfcp_fsf_open_wka_port(wka_port))
Christof Schmittbd0072e2009-11-24 16:54:11 +0100156 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200157 }
158
159 mutex_unlock(&wka_port->mutex);
160
Swen Schillig27f492c2009-07-13 15:06:13 +0200161 wait_event(wka_port->completion_wq,
Christof Schmittbd0072e2009-11-24 16:54:11 +0100162 wka_port->status == ZFCP_FC_WKA_PORT_ONLINE ||
163 wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200164
Christof Schmittbd0072e2009-11-24 16:54:11 +0100165 if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200166 atomic_inc(&wka_port->refcount);
167 return 0;
168 }
169 return -EIO;
170}
171
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200172static void zfcp_fc_wka_port_offline(struct work_struct *work)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200173{
Jean Delvarebf6aede2009-04-02 16:56:54 -0700174 struct delayed_work *dw = to_delayed_work(work);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100175 struct zfcp_fc_wka_port *wka_port =
176 container_of(dw, struct zfcp_fc_wka_port, work);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200177
Swen Schillig5ab944f2008-10-01 12:42:17 +0200178 mutex_lock(&wka_port->mutex);
179 if ((atomic_read(&wka_port->refcount) != 0) ||
Christof Schmittbd0072e2009-11-24 16:54:11 +0100180 (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200181 goto out;
182
Christof Schmittbd0072e2009-11-24 16:54:11 +0100183 wka_port->status = ZFCP_FC_WKA_PORT_CLOSING;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200184 if (zfcp_fsf_close_wka_port(wka_port)) {
Christof Schmittbd0072e2009-11-24 16:54:11 +0100185 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200186 wake_up(&wka_port->completion_wq);
187 }
188out:
189 mutex_unlock(&wka_port->mutex);
190}
191
Christof Schmittbd0072e2009-11-24 16:54:11 +0100192static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200193{
194 if (atomic_dec_return(&wka_port->refcount) != 0)
195 return;
Martin Olsson19af5cd2009-04-23 11:37:37 +0200196 /* wait 10 milliseconds, other reqs might pop in */
Swen Schillig5ab944f2008-10-01 12:42:17 +0200197 schedule_delayed_work(&wka_port->work, HZ / 100);
198}
199
Christof Schmittbd0072e2009-11-24 16:54:11 +0100200static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id,
Sven Schuetz9d544f22009-04-06 18:31:47 +0200201 struct zfcp_adapter *adapter)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200202{
Swen Schillig5ab944f2008-10-01 12:42:17 +0200203 init_waitqueue_head(&wka_port->completion_wq);
204
205 wka_port->adapter = adapter;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200206 wka_port->d_id = d_id;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200207
Christof Schmittbd0072e2009-11-24 16:54:11 +0100208 wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200209 atomic_set(&wka_port->refcount, 0);
210 mutex_init(&wka_port->mutex);
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200211 INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200212}
213
Christof Schmittbd0072e2009-11-24 16:54:11 +0100214static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka)
Swen Schillig828bc122009-04-17 15:08:05 +0200215{
216 cancel_delayed_work_sync(&wka->work);
217 mutex_lock(&wka->mutex);
Christof Schmittbd0072e2009-11-24 16:54:11 +0100218 wka->status = ZFCP_FC_WKA_PORT_OFFLINE;
Swen Schillig828bc122009-04-17 15:08:05 +0200219 mutex_unlock(&wka->mutex);
220}
221
Christof Schmittbd0072e2009-11-24 16:54:11 +0100222void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs)
Christof Schmitt55c770f2009-08-18 15:43:12 +0200223{
Swen Schilligf3450c72009-11-24 16:53:59 +0100224 if (!gs)
225 return;
Christof Schmitt55c770f2009-08-18 15:43:12 +0200226 zfcp_fc_wka_port_force_offline(&gs->ms);
227 zfcp_fc_wka_port_force_offline(&gs->ts);
228 zfcp_fc_wka_port_force_offline(&gs->ds);
229 zfcp_fc_wka_port_force_offline(&gs->as);
Christof Schmitt55c770f2009-08-18 15:43:12 +0200230}
231
Christof Schmitt24073b42008-06-10 18:20:54 +0200232static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100233 struct fc_els_rscn_page *page)
Christof Schmitt24073b42008-06-10 18:20:54 +0200234{
235 unsigned long flags;
Swen Schilligecf0c772009-11-24 16:53:58 +0100236 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmitt24073b42008-06-10 18:20:54 +0200237 struct zfcp_port *port;
238
Swen Schilligecf0c772009-11-24 16:53:58 +0100239 read_lock_irqsave(&adapter->port_list_lock, flags);
240 list_for_each_entry(port, &adapter->port_list, list) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100241 if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range))
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200242 zfcp_fc_test_link(port);
Swen Schilligea460a82009-05-15 13:18:20 +0200243 if (!port->d_id)
244 zfcp_erp_port_reopen(port,
245 ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100246 "fcrscn1");
Swen Schilligea460a82009-05-15 13:18:20 +0200247 }
Swen Schilligecf0c772009-11-24 16:53:58 +0100248 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200249}
250
251static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req)
252{
253 struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100254 struct fc_els_rscn *head;
255 struct fc_els_rscn_page *page;
Christof Schmitt24073b42008-06-10 18:20:54 +0200256 u16 i;
257 u16 no_entries;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100258 unsigned int afmt;
Christof Schmitt24073b42008-06-10 18:20:54 +0200259
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100260 head = (struct fc_els_rscn *) status_buffer->payload.data;
261 page = (struct fc_els_rscn_page *) head;
Christof Schmitt24073b42008-06-10 18:20:54 +0200262
263 /* see FC-FS */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200264 no_entries = be16_to_cpu(head->rscn_plen) /
265 sizeof(struct fc_els_rscn_page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200266
267 for (i = 1; i < no_entries; i++) {
268 /* skip head and start with 1st element */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100269 page++;
270 afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK;
271 _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt],
272 page);
Sven Schuetz2d1e5472010-07-16 15:37:39 +0200273 zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN,
274 *(u32 *)page);
Christof Schmitt24073b42008-06-10 18:20:54 +0200275 }
Steffen Maier43f60cb2012-09-04 15:23:35 +0200276 zfcp_fc_conditional_port_scan(fsf_req->adapter);
Christof Schmitt24073b42008-06-10 18:20:54 +0200277}
278
Swen Schillig7ba58c92008-10-01 12:42:18 +0200279static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn)
Christof Schmitt24073b42008-06-10 18:20:54 +0200280{
Swen Schilligecf0c772009-11-24 16:53:58 +0100281 unsigned long flags;
Christof Schmitt24073b42008-06-10 18:20:54 +0200282 struct zfcp_adapter *adapter = req->adapter;
283 struct zfcp_port *port;
Christof Schmitt24073b42008-06-10 18:20:54 +0200284
Swen Schilligecf0c772009-11-24 16:53:58 +0100285 read_lock_irqsave(&adapter->port_list_lock, flags);
286 list_for_each_entry(port, &adapter->port_list, list)
287 if (port->wwpn == wwpn) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100288 zfcp_erp_port_forced_reopen(port, 0, "fciwwp1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200289 break;
Swen Schilligecf0c772009-11-24 16:53:58 +0100290 }
291 read_unlock_irqrestore(&adapter->port_list_lock, flags);
Christof Schmitt24073b42008-06-10 18:20:54 +0200292}
293
294static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req)
295{
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100296 struct fsf_status_read_buffer *status_buffer;
297 struct fc_els_flogi *plogi;
Christof Schmitt24073b42008-06-10 18:20:54 +0200298
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100299 status_buffer = (struct fsf_status_read_buffer *) req->data;
300 plogi = (struct fc_els_flogi *) status_buffer->payload.data;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200301 zfcp_fc_incoming_wwpn(req, be64_to_cpu(plogi->fl_wwpn));
Christof Schmitt24073b42008-06-10 18:20:54 +0200302}
303
304static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req)
305{
306 struct fsf_status_read_buffer *status_buffer =
307 (struct fsf_status_read_buffer *)req->data;
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100308 struct fc_els_logo *logo =
309 (struct fc_els_logo *) status_buffer->payload.data;
Christof Schmitt24073b42008-06-10 18:20:54 +0200310
Steffen Maier9d464fc2017-07-28 12:31:02 +0200311 zfcp_fc_incoming_wwpn(req, be64_to_cpu(logo->fl_n_port_wwn));
Christof Schmitt24073b42008-06-10 18:20:54 +0200312}
313
314/**
315 * zfcp_fc_incoming_els - handle incoming ELS
316 * @fsf_req - request which contains incoming ELS
317 */
318void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req)
319{
320 struct fsf_status_read_buffer *status_buffer =
321 (struct fsf_status_read_buffer *) fsf_req->data;
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200322 unsigned int els_type = status_buffer->payload.data[0];
Christof Schmitt24073b42008-06-10 18:20:54 +0200323
Swen Schillig2c55b752010-12-02 15:16:13 +0100324 zfcp_dbf_san_in_els("fciels1", fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100325 if (els_type == ELS_PLOGI)
Christof Schmitt24073b42008-06-10 18:20:54 +0200326 zfcp_fc_incoming_plogi(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100327 else if (els_type == ELS_LOGO)
Christof Schmitt24073b42008-06-10 18:20:54 +0200328 zfcp_fc_incoming_logo(fsf_req);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100329 else if (els_type == ELS_RSCN)
Christof Schmitt24073b42008-06-10 18:20:54 +0200330 zfcp_fc_incoming_rscn(fsf_req);
331}
332
Christof Schmittfcf7e612011-02-22 19:54:42 +0100333static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200334{
Christof Schmittfcf7e612011-02-22 19:54:42 +0100335 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
336 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200337
Christof Schmittfcf7e612011-02-22 19:54:42 +0100338 if (ct_els->status)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200339 return;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200340 if (gid_pn_rsp->ct_hdr.ct_cmd != cpu_to_be16(FC_FS_ACC))
Swen Schillig5ab944f2008-10-01 12:42:17 +0200341 return;
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100342
Christof Schmitt24073b42008-06-10 18:20:54 +0200343 /* looks like a valid d_id */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100344 ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid);
Christof Schmitt24073b42008-06-10 18:20:54 +0200345}
346
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100347static void zfcp_fc_complete(void *data)
348{
349 complete(data);
350}
351
Christof Schmittfcf7e612011-02-22 19:54:42 +0100352static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size)
353{
354 ct_hdr->ct_rev = FC_CT_REV;
355 ct_hdr->ct_fs_type = FC_FST_DIR;
356 ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200357 ct_hdr->ct_cmd = cpu_to_be16(cmd);
358 ct_hdr->ct_mr_size = cpu_to_be16(mr_size / 4);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100359}
360
Christof Schmitt799b76d2009-08-18 15:43:20 +0200361static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port,
Christof Schmittfcf7e612011-02-22 19:54:42 +0100362 struct zfcp_fc_req *fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200363{
Christof Schmitt799b76d2009-08-18 15:43:20 +0200364 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100365 DECLARE_COMPLETION_ONSTACK(completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100366 struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req;
367 struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200368 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200369
370 /* setup parameters for send generic command */
Christof Schmittfcf7e612011-02-22 19:54:42 +0100371 fc_req->ct_els.port = port;
372 fc_req->ct_els.handler = zfcp_fc_complete;
373 fc_req->ct_els.handler_data = &completion;
374 fc_req->ct_els.req = &fc_req->sg_req;
375 fc_req->ct_els.resp = &fc_req->sg_rsp;
376 sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req));
377 sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp));
Christof Schmitt24073b42008-06-10 18:20:54 +0200378
Christof Schmittfcf7e612011-02-22 19:54:42 +0100379 zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr,
380 FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE);
Steffen Maier9d464fc2017-07-28 12:31:02 +0200381 gid_pn_req->gid_pn.fn_wwpn = cpu_to_be64(port->wwpn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200382
Christof Schmittfcf7e612011-02-22 19:54:42 +0100383 ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100384 adapter->pool.gid_pn_req,
385 ZFCP_FC_CTELS_TMO);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100386 if (!ret) {
387 wait_for_completion(&completion);
Christof Schmittfcf7e612011-02-22 19:54:42 +0100388 zfcp_fc_ns_gid_pn_eval(fc_req);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100389 }
Swen Schillig5ab944f2008-10-01 12:42:17 +0200390 return ret;
391}
392
393/**
Christof Schmittfcf7e612011-02-22 19:54:42 +0100394 * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request
Christof Schmitt799b76d2009-08-18 15:43:20 +0200395 * @port: port where GID_PN request is needed
Swen Schillig5ab944f2008-10-01 12:42:17 +0200396 * return: -ENOMEM on error, 0 otherwise
397 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200398static int zfcp_fc_ns_gid_pn(struct zfcp_port *port)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200399{
400 int ret;
Christof Schmittfcf7e612011-02-22 19:54:42 +0100401 struct zfcp_fc_req *fc_req;
Christof Schmitt799b76d2009-08-18 15:43:20 +0200402 struct zfcp_adapter *adapter = port->adapter;
Swen Schillig5ab944f2008-10-01 12:42:17 +0200403
Christof Schmittfcf7e612011-02-22 19:54:42 +0100404 fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC);
405 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200406 return -ENOMEM;
407
Christof Schmittfcf7e612011-02-22 19:54:42 +0100408 memset(fc_req, 0, sizeof(*fc_req));
Swen Schillig5ab944f2008-10-01 12:42:17 +0200409
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200410 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
Christof Schmitt24073b42008-06-10 18:20:54 +0200411 if (ret)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200412 goto out;
413
Christof Schmittfcf7e612011-02-22 19:54:42 +0100414 ret = zfcp_fc_ns_gid_pn_request(port, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200415
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200416 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200417out:
Christof Schmittfcf7e612011-02-22 19:54:42 +0100418 mempool_free(fc_req, adapter->pool.gid_pn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200419 return ret;
420}
421
Christof Schmitt799b76d2009-08-18 15:43:20 +0200422void zfcp_fc_port_did_lookup(struct work_struct *work)
423{
424 int ret;
425 struct zfcp_port *port = container_of(work, struct zfcp_port,
426 gid_pn_work);
427
Steffen Maier5c750d52018-05-17 19:14:57 +0200428 set_worker_desc("zgidpn%16llx", port->wwpn); /* < WORKER_DESC_LEN=24 */
Christof Schmitt799b76d2009-08-18 15:43:20 +0200429 ret = zfcp_fc_ns_gid_pn(port);
430 if (ret) {
431 /* could not issue gid_pn for some reason */
Swen Schilligea4a3a62010-12-02 15:16:16 +0100432 zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200433 goto out;
434 }
435
436 if (!port->d_id) {
Swen Schilligedaed852010-09-08 14:40:01 +0200437 zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200438 goto out;
439 }
440
Swen Schilligea4a3a62010-12-02 15:16:16 +0100441 zfcp_erp_port_reopen(port, 0, "fcgpn_3");
Christof Schmitt799b76d2009-08-18 15:43:20 +0200442out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100443 put_device(&port->dev);
Christof Schmitt799b76d2009-08-18 15:43:20 +0200444}
445
Christof Schmitt24073b42008-06-10 18:20:54 +0200446/**
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200447 * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request
448 * @port: The zfcp_port to lookup the d_id for.
449 */
450void zfcp_fc_trigger_did_lookup(struct zfcp_port *port)
451{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100452 get_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200453 if (!queue_work(port->adapter->work_queue, &port->gid_pn_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100454 put_device(&port->dev);
Christof Schmitt934aeb5872009-10-14 11:00:43 +0200455}
456
457/**
Christof Schmitt24073b42008-06-10 18:20:54 +0200458 * zfcp_fc_plogi_evaluate - evaluate PLOGI playload
459 * @port: zfcp_port structure
460 * @plogi: plogi payload
461 *
462 * Evaluate PLOGI playload and copy important fields into zfcp_port structure
463 */
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100464void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi)
Christof Schmitt24073b42008-06-10 18:20:54 +0200465{
Steffen Maier9d464fc2017-07-28 12:31:02 +0200466 if (be64_to_cpu(plogi->fl_wwpn) != port->wwpn) {
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100467 port->d_id = 0;
468 dev_warn(&port->adapter->ccw_device->dev,
469 "A port opened with WWPN 0x%016Lx returned data that "
470 "identifies it as WWPN 0x%016Lx\n",
471 (unsigned long long) port->wwpn,
Steffen Maier9d464fc2017-07-28 12:31:02 +0200472 (unsigned long long) be64_to_cpu(plogi->fl_wwpn));
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100473 return;
474 }
475
Steffen Maier9d464fc2017-07-28 12:31:02 +0200476 port->wwnn = be64_to_cpu(plogi->fl_wwnn);
477 port->maxframe_size = be16_to_cpu(plogi->fl_csp.sp_bb_data);
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100478
Steffen Maier9d464fc2017-07-28 12:31:02 +0200479 if (plogi->fl_cssp[0].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200480 port->supported_classes |= FC_COS_CLASS1;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200481 if (plogi->fl_cssp[1].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200482 port->supported_classes |= FC_COS_CLASS2;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200483 if (plogi->fl_cssp[2].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200484 port->supported_classes |= FC_COS_CLASS3;
Steffen Maier9d464fc2017-07-28 12:31:02 +0200485 if (plogi->fl_cssp[3].cp_class & cpu_to_be16(FC_CPC_VALID))
Christof Schmitt24073b42008-06-10 18:20:54 +0200486 port->supported_classes |= FC_COS_CLASS4;
487}
488
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100489static void zfcp_fc_adisc_handler(void *data)
Christof Schmitt24073b42008-06-10 18:20:54 +0200490{
Christof Schmitt087897e2011-02-22 19:54:41 +0100491 struct zfcp_fc_req *fc_req = data;
492 struct zfcp_port *port = fc_req->ct_els.port;
493 struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp;
Christof Schmitt24073b42008-06-10 18:20:54 +0200494
Christof Schmitt087897e2011-02-22 19:54:41 +0100495 if (fc_req->ct_els.status) {
Christof Schmitt24073b42008-06-10 18:20:54 +0200496 /* request rejected or timed out */
Swen Schillig5b43e712009-04-17 15:08:10 +0200497 zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100498 "fcadh_1");
Christof Schmitt24073b42008-06-10 18:20:54 +0200499 goto out;
500 }
501
502 if (!port->wwnn)
Steffen Maier9d464fc2017-07-28 12:31:02 +0200503 port->wwnn = be64_to_cpu(adisc_resp->adisc_wwnn);
Christof Schmitt24073b42008-06-10 18:20:54 +0200504
Steffen Maier9d464fc2017-07-28 12:31:02 +0200505 if ((port->wwpn != be64_to_cpu(adisc_resp->adisc_wwpn)) ||
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100506 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) {
Swen Schillig24095492009-03-02 13:09:07 +0100507 zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED,
Swen Schilligea4a3a62010-12-02 15:16:16 +0100508 "fcadh_2");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100509 goto out;
510 }
Christof Schmitt24073b42008-06-10 18:20:54 +0200511
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100512 /* port is good, unblock rport without going through erp */
513 zfcp_scsi_schedule_rport_register(port);
Christof Schmitt24073b42008-06-10 18:20:54 +0200514 out:
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200515 atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt615f59e2010-02-17 11:18:56 +0100516 put_device(&port->dev);
Christof Schmitt087897e2011-02-22 19:54:41 +0100517 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmitt24073b42008-06-10 18:20:54 +0200518}
519
520static int zfcp_fc_adisc(struct zfcp_port *port)
521{
Christof Schmitt087897e2011-02-22 19:54:41 +0100522 struct zfcp_fc_req *fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200523 struct zfcp_adapter *adapter = port->adapter;
Christof Schmitt087897e2011-02-22 19:54:41 +0100524 struct Scsi_Host *shost = adapter->scsi_host;
Christof Schmittee744622009-11-24 16:54:14 +0100525 int ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200526
Christof Schmitt087897e2011-02-22 19:54:41 +0100527 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC);
528 if (!fc_req)
Christof Schmitt24073b42008-06-10 18:20:54 +0200529 return -ENOMEM;
530
Christof Schmitt087897e2011-02-22 19:54:41 +0100531 fc_req->ct_els.port = port;
532 fc_req->ct_els.req = &fc_req->sg_req;
533 fc_req->ct_els.resp = &fc_req->sg_rsp;
534 sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100535 sizeof(struct fc_els_adisc));
Christof Schmitt087897e2011-02-22 19:54:41 +0100536 sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp,
Christof Schmitt9d05ce22009-11-24 16:54:09 +0100537 sizeof(struct fc_els_adisc));
Christof Schmitt24073b42008-06-10 18:20:54 +0200538
Christof Schmitt087897e2011-02-22 19:54:41 +0100539 fc_req->ct_els.handler = zfcp_fc_adisc_handler;
540 fc_req->ct_els.handler_data = fc_req;
Christof Schmitt24073b42008-06-10 18:20:54 +0200541
542 /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports
543 without FC-AL-2 capability, so we don't set it */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200544 fc_req->u.adisc.req.adisc_wwpn = cpu_to_be64(fc_host_port_name(shost));
545 fc_req->u.adisc.req.adisc_wwnn = cpu_to_be64(fc_host_node_name(shost));
Christof Schmitt087897e2011-02-22 19:54:41 +0100546 fc_req->u.adisc.req.adisc_cmd = ELS_ADISC;
547 hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost));
Christof Schmitt24073b42008-06-10 18:20:54 +0200548
Christof Schmitt087897e2011-02-22 19:54:41 +0100549 ret = zfcp_fsf_send_els(adapter, port->d_id, &fc_req->ct_els,
Swen Schillig51375ee2010-01-14 17:19:02 +0100550 ZFCP_FC_CTELS_TMO);
Christof Schmittee744622009-11-24 16:54:14 +0100551 if (ret)
Christof Schmitt087897e2011-02-22 19:54:41 +0100552 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Christof Schmittee744622009-11-24 16:54:14 +0100553
554 return ret;
Christof Schmitt24073b42008-06-10 18:20:54 +0200555}
556
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100557void zfcp_fc_link_test_work(struct work_struct *work)
558{
559 struct zfcp_port *port =
560 container_of(work, struct zfcp_port, test_link_work);
561 int retval;
562
Steffen Maier5c750d52018-05-17 19:14:57 +0200563 set_worker_desc("zadisc%16llx", port->wwpn); /* < WORKER_DESC_LEN=24 */
Christof Schmitt615f59e2010-02-17 11:18:56 +0100564 get_device(&port->dev);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100565 port->rport_task = RPORT_DEL;
566 zfcp_scsi_rport_work(&port->rport_work);
567
Christof Schmitt14e242e2009-08-18 15:43:11 +0200568 /* only issue one test command at one time per port */
569 if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST)
570 goto out;
571
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200572 atomic_or(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Christof Schmitt14e242e2009-08-18 15:43:11 +0200573
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100574 retval = zfcp_fc_adisc(port);
575 if (retval == 0)
576 return;
577
578 /* send of ADISC was not possible */
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200579 atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status);
Swen Schilligea4a3a62010-12-02 15:16:16 +0100580 zfcp_erp_port_forced_reopen(port, 0, "fcltwk1");
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100581
Christof Schmitt14e242e2009-08-18 15:43:11 +0200582out:
Christof Schmitt615f59e2010-02-17 11:18:56 +0100583 put_device(&port->dev);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100584}
585
Christof Schmitt24073b42008-06-10 18:20:54 +0200586/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200587 * zfcp_fc_test_link - lightweight link test procedure
Christof Schmitt24073b42008-06-10 18:20:54 +0200588 * @port: port to be tested
589 *
590 * Test status of a link to a remote port using the ELS command ADISC.
591 * If there is a problem with the remote port, error recovery steps
592 * will be triggered.
593 */
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200594void zfcp_fc_test_link(struct zfcp_port *port)
Christof Schmitt24073b42008-06-10 18:20:54 +0200595{
Christof Schmitt615f59e2010-02-17 11:18:56 +0100596 get_device(&port->dev);
Swen Schillig45446832009-08-18 15:43:17 +0200597 if (!queue_work(port->adapter->work_queue, &port->test_link_work))
Christof Schmitt615f59e2010-02-17 11:18:56 +0100598 put_device(&port->dev);
Christof Schmitt24073b42008-06-10 18:20:54 +0200599}
Swen Schilligcc8c2822008-06-10 18:21:00 +0200600
Steffen Maierd39eda52018-05-17 19:14:58 +0200601static struct zfcp_fc_req *zfcp_fc_alloc_sg_env(int buf_num)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200602{
Christof Schmittf9773222011-02-22 19:54:43 +0100603 struct zfcp_fc_req *fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200604
Christof Schmittf9773222011-02-22 19:54:43 +0100605 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
606 if (!fc_req)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200607 return NULL;
608
Christof Schmittf9773222011-02-22 19:54:43 +0100609 if (zfcp_sg_setup_table(&fc_req->sg_rsp, buf_num)) {
610 kmem_cache_free(zfcp_fc_req_cache, fc_req);
611 return NULL;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200612 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200613
Christof Schmittf9773222011-02-22 19:54:43 +0100614 sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req,
615 sizeof(struct zfcp_fc_gpn_ft_req));
616
617 return fc_req;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200618}
619
Christof Schmittf9773222011-02-22 19:54:43 +0100620static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req,
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200621 struct zfcp_adapter *adapter, int max_bytes)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200622{
Christof Schmittf9773222011-02-22 19:54:43 +0100623 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
624 struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100625 DECLARE_COMPLETION_ONSTACK(completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200626 int ret;
627
Christof Schmittf9773222011-02-22 19:54:43 +0100628 zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes);
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100629 req->gpn_ft.fn_fc4_type = FC_TYPE_FCP;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200630
Christof Schmittf9773222011-02-22 19:54:43 +0100631 ct_els->handler = zfcp_fc_complete;
632 ct_els->handler_data = &completion;
633 ct_els->req = &fc_req->sg_req;
634 ct_els->resp = &fc_req->sg_rsp;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200635
Christof Schmittf9773222011-02-22 19:54:43 +0100636 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
Swen Schillig51375ee2010-01-14 17:19:02 +0100637 ZFCP_FC_CTELS_TMO);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200638 if (!ret)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100639 wait_for_completion(&completion);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200640 return ret;
641}
642
Swen Schilligf3450c72009-11-24 16:53:59 +0100643static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200644{
Martin Petermann6ab35c02009-04-17 15:08:13 +0200645 if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC))
646 return;
647
Peter Zijlstra805de8f42015-04-24 01:12:32 +0200648 atomic_andnot(ZFCP_STATUS_COMMON_NOESC, &port->status);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200649
Christof Schmitt04062892008-10-01 12:42:20 +0200650 if ((port->supported_classes != 0) ||
Swen Schilligf3450c72009-11-24 16:53:59 +0100651 !list_empty(&port->unit_list))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200652 return;
Swen Schilligf3450c72009-11-24 16:53:59 +0100653
Swen Schilligf3450c72009-11-24 16:53:59 +0100654 list_move_tail(&port->list, lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200655}
656
Christof Schmittf9773222011-02-22 19:54:43 +0100657static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100658 struct zfcp_adapter *adapter, int max_entries)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200659{
Christof Schmittf9773222011-02-22 19:54:43 +0100660 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
661 struct scatterlist *sg = &fc_req->sg_rsp;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100662 struct fc_ct_hdr *hdr = sg_virt(sg);
663 struct fc_gpn_ft_resp *acc = sg_virt(sg);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200664 struct zfcp_port *port, *tmp;
Swen Schilligecf0c772009-11-24 16:53:58 +0100665 unsigned long flags;
Swen Schilligf3450c72009-11-24 16:53:59 +0100666 LIST_HEAD(remove_lh);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200667 u32 d_id;
Christof Schmitt47f7bba2008-08-21 13:43:33 +0200668 int ret = 0, x, last = 0;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200669
Christof Schmittf9773222011-02-22 19:54:43 +0100670 if (ct_els->status)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200671 return -EIO;
672
Steffen Maier9d464fc2017-07-28 12:31:02 +0200673 if (hdr->ct_cmd != cpu_to_be16(FC_FS_ACC)) {
Steffen Maierab8ab4b2017-07-28 12:30:59 +0200674 if (hdr->ct_reason == FC_FS_RJT_UNABL)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200675 return -EAGAIN; /* might be a temporary condition */
676 return -EIO;
677 }
678
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100679 if (hdr->ct_mr_size) {
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100680 dev_warn(&adapter->ccw_device->dev,
681 "The name server reported %d words residual data\n",
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100682 hdr->ct_mr_size);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200683 return -E2BIG;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100684 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200685
Swen Schilligcc8c2822008-06-10 18:21:00 +0200686 /* first entry is the header */
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100687 for (x = 1; x < max_entries && !last; x++) {
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100688 if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200689 acc++;
690 else
691 acc = sg_virt(++sg);
692
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100693 last = acc->fp_flags & FC_NS_FID_LAST;
694 d_id = ntoh24(acc->fp_fid);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200695
Swen Schillig5ab944f2008-10-01 12:42:17 +0200696 /* don't attach ports with a well known address */
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100697 if (d_id >= FC_FID_WELL_KNOWN_BASE)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200698 continue;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200699 /* skip the adapter's port and known remote ports */
Steffen Maier9d464fc2017-07-28 12:31:02 +0200700 if (be64_to_cpu(acc->fp_wwpn) ==
701 fc_host_port_name(adapter->scsi_host))
Swen Schilligcc8c2822008-06-10 18:21:00 +0200702 continue;
703
Steffen Maier9d464fc2017-07-28 12:31:02 +0200704 port = zfcp_port_enqueue(adapter, be64_to_cpu(acc->fp_wwpn),
Swen Schilligcc8c2822008-06-10 18:21:00 +0200705 ZFCP_STATUS_COMMON_NOESC, d_id);
Swen Schilligecf0c772009-11-24 16:53:58 +0100706 if (!IS_ERR(port))
Swen Schilligea4a3a62010-12-02 15:16:16 +0100707 zfcp_erp_port_reopen(port, 0, "fcegpf1");
Swen Schilligecf0c772009-11-24 16:53:58 +0100708 else if (PTR_ERR(port) != -EEXIST)
709 ret = PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200710 }
711
712 zfcp_erp_wait(adapter);
Swen Schilligecf0c772009-11-24 16:53:58 +0100713 write_lock_irqsave(&adapter->port_list_lock, flags);
714 list_for_each_entry_safe(port, tmp, &adapter->port_list, list)
Swen Schilligf3450c72009-11-24 16:53:59 +0100715 zfcp_fc_validate_port(port, &remove_lh);
Swen Schilligecf0c772009-11-24 16:53:58 +0100716 write_unlock_irqrestore(&adapter->port_list_lock, flags);
Swen Schilligf3450c72009-11-24 16:53:59 +0100717
718 list_for_each_entry_safe(port, tmp, &remove_lh, list) {
Swen Schilligea4a3a62010-12-02 15:16:16 +0100719 zfcp_erp_port_shutdown(port, 0, "fcegpf2");
Sebastian Ott83d4e1c2013-04-26 16:13:48 +0200720 device_unregister(&port->dev);
Swen Schilligf3450c72009-11-24 16:53:59 +0100721 }
722
Swen Schilligcc8c2822008-06-10 18:21:00 +0200723 return ret;
724}
725
726/**
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200727 * zfcp_fc_scan_ports - scan remote ports and attach new ports
Swen Schillig9eae07e2009-11-24 16:54:06 +0100728 * @work: reference to scheduled work
Swen Schilligcc8c2822008-06-10 18:21:00 +0200729 */
Swen Schillig9eae07e2009-11-24 16:54:06 +0100730void zfcp_fc_scan_ports(struct work_struct *work)
Swen Schilligcc8c2822008-06-10 18:21:00 +0200731{
Martin Peschke18f87a62014-11-13 14:59:48 +0100732 struct delayed_work *dw = to_delayed_work(work);
733 struct zfcp_adapter *adapter = container_of(dw, struct zfcp_adapter,
Swen Schillig9eae07e2009-11-24 16:54:06 +0100734 scan_work);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200735 int ret, i;
Christof Schmittf9773222011-02-22 19:54:43 +0100736 struct zfcp_fc_req *fc_req;
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100737 int chain, max_entries, buf_num, max_bytes;
738
Martin Peschke18f87a62014-11-13 14:59:48 +0100739 zfcp_fc_port_scan_time(adapter);
740
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100741 chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100742 buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1;
743 max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE;
744 max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200745
Swen Schillig306b6ed2009-04-17 15:08:02 +0200746 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
747 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
Swen Schillig9eae07e2009-11-24 16:54:06 +0100748 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200749
Swen Schillig9eae07e2009-11-24 16:54:06 +0100750 if (zfcp_fc_wka_port_get(&adapter->gs->ds))
751 return;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200752
Steffen Maierd39eda52018-05-17 19:14:58 +0200753 fc_req = zfcp_fc_alloc_sg_env(buf_num);
Christof Schmittf9773222011-02-22 19:54:43 +0100754 if (!fc_req)
Swen Schillig5ab944f2008-10-01 12:42:17 +0200755 goto out;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200756
757 for (i = 0; i < 3; i++) {
Christof Schmittf9773222011-02-22 19:54:43 +0100758 ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200759 if (!ret) {
Christof Schmittf9773222011-02-22 19:54:43 +0100760 ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200761 if (ret == -EAGAIN)
762 ssleep(1);
763 else
764 break;
765 }
766 }
Christof Schmittf9773222011-02-22 19:54:43 +0100767 zfcp_sg_free_table(&fc_req->sg_rsp, buf_num);
768 kmem_cache_free(zfcp_fc_req_cache, fc_req);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200769out:
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200770 zfcp_fc_wka_port_put(&adapter->gs->ds);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200771}
772
Christof Schmitt038d9442011-02-22 19:54:48 +0100773static int zfcp_fc_gspn(struct zfcp_adapter *adapter,
774 struct zfcp_fc_req *fc_req)
775{
776 DECLARE_COMPLETION_ONSTACK(completion);
777 char devno[] = "DEVNO:";
778 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
779 struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req;
780 struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp;
781 int ret;
782
783 zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID,
784 FC_SYMBOLIC_NAME_SIZE);
785 hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host));
786
787 sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req));
788 sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp));
789
790 ct_els->handler = zfcp_fc_complete;
791 ct_els->handler_data = &completion;
792 ct_els->req = &fc_req->sg_req;
793 ct_els->resp = &fc_req->sg_rsp;
794
795 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
796 ZFCP_FC_CTELS_TMO);
797 if (ret)
798 return ret;
799
800 wait_for_completion(&completion);
801 if (ct_els->status)
802 return ct_els->status;
803
804 if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV &&
805 !(strstr(gspn_rsp->gspn.fp_name, devno)))
806 snprintf(fc_host_symbolic_name(adapter->scsi_host),
807 FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s",
808 gspn_rsp->gspn.fp_name, devno,
809 dev_name(&adapter->ccw_device->dev),
810 init_utsname()->nodename);
811 else
812 strlcpy(fc_host_symbolic_name(adapter->scsi_host),
813 gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE);
814
815 return 0;
816}
817
818static void zfcp_fc_rspn(struct zfcp_adapter *adapter,
819 struct zfcp_fc_req *fc_req)
820{
821 DECLARE_COMPLETION_ONSTACK(completion);
822 struct Scsi_Host *shost = adapter->scsi_host;
823 struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els;
824 struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req;
825 struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp;
826 int ret, len;
827
828 zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID,
829 FC_SYMBOLIC_NAME_SIZE);
830 hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost));
831 len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost),
832 FC_SYMBOLIC_NAME_SIZE);
833 rspn_req->rspn.fr_name_len = len;
834
835 sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req));
836 sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp));
837
838 ct_els->handler = zfcp_fc_complete;
839 ct_els->handler_data = &completion;
840 ct_els->req = &fc_req->sg_req;
841 ct_els->resp = &fc_req->sg_rsp;
842
843 ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL,
844 ZFCP_FC_CTELS_TMO);
845 if (!ret)
846 wait_for_completion(&completion);
847}
848
849/**
850 * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name
851 * @work: ns_up_work of the adapter where to update the symbolic port name
852 *
853 * Retrieve the current symbolic port name that may have been set by
854 * the hardware using the GSPN request and update the fc_host
855 * symbolic_name sysfs attribute. When running in NPIV mode (and hence
856 * the port name is unique for this system), update the symbolic port
857 * name to add Linux specific information and update the FC nameserver
858 * using the RSPN request.
859 */
860void zfcp_fc_sym_name_update(struct work_struct *work)
861{
862 struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter,
863 ns_up_work);
864 int ret;
865 struct zfcp_fc_req *fc_req;
866
867 if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT &&
868 fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
869 return;
870
871 fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL);
872 if (!fc_req)
873 return;
874
875 ret = zfcp_fc_wka_port_get(&adapter->gs->ds);
876 if (ret)
877 goto out_free;
878
879 ret = zfcp_fc_gspn(adapter, fc_req);
880 if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV)
881 goto out_ds_put;
882
883 memset(fc_req, 0, sizeof(*fc_req));
884 zfcp_fc_rspn(adapter, fc_req);
885
886out_ds_put:
887 zfcp_fc_wka_port_put(&adapter->gs->ds);
888out_free:
889 kmem_cache_free(zfcp_fc_req_cache, fc_req);
890}
891
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100892static void zfcp_fc_ct_els_job_handler(void *data)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200893{
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100894 struct bsg_job *job = data;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100895 struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data;
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100896 struct fc_bsg_reply *jr = job->reply;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200897
Swen Schillig7dec9cf2010-01-26 17:49:19 +0100898 jr->reply_payload_rcv_len = job->reply_payload.payload_len;
899 jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK;
900 jr->result = zfcp_ct_els->status ? -EIO : 0;
Johannes Thumshirn06548162016-11-17 10:31:22 +0100901 bsg_job_done(job, jr->result, jr->reply_payload_rcv_len);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200902}
903
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100904static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct bsg_job *job)
Christof Schmittf09d5452010-01-13 17:52:36 +0100905{
906 u32 preamble_word1;
907 u8 gs_type;
908 struct zfcp_adapter *adapter;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100909 struct fc_bsg_request *bsg_request = job->request;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100910 struct fc_rport *rport = fc_bsg_to_rport(job);
Johannes Thumshirncd21c602016-11-17 10:31:14 +0100911 struct Scsi_Host *shost;
Christof Schmittf09d5452010-01-13 17:52:36 +0100912
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100913 preamble_word1 = bsg_request->rqst_data.r_ct.preamble_word1;
Christof Schmittf09d5452010-01-13 17:52:36 +0100914 gs_type = (preamble_word1 & 0xff000000) >> 24;
915
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100916 shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job);
Johannes Thumshirncd21c602016-11-17 10:31:14 +0100917 adapter = (struct zfcp_adapter *) shost->hostdata[0];
Christof Schmittf09d5452010-01-13 17:52:36 +0100918
919 switch (gs_type) {
920 case FC_FST_ALIAS:
921 return &adapter->gs->as;
922 case FC_FST_MGMT:
923 return &adapter->gs->ms;
924 case FC_FST_TIME:
925 return &adapter->gs->ts;
926 break;
927 case FC_FST_DIR:
928 return &adapter->gs->ds;
929 break;
930 default:
931 return NULL;
932 }
933}
934
935static void zfcp_fc_ct_job_handler(void *data)
936{
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100937 struct bsg_job *job = data;
Christof Schmittf09d5452010-01-13 17:52:36 +0100938 struct zfcp_fc_wka_port *wka_port;
939
940 wka_port = zfcp_fc_job_wka_port(job);
941 zfcp_fc_wka_port_put(wka_port);
942
943 zfcp_fc_ct_els_job_handler(data);
944}
945
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100946static int zfcp_fc_exec_els_job(struct bsg_job *job,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100947 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200948{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100949 struct zfcp_fsf_ct_els *els = job->dd_data;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100950 struct fc_rport *rport = fc_bsg_to_rport(job);
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100951 struct fc_bsg_request *bsg_request = job->request;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200952 struct zfcp_port *port;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100953 u32 d_id;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200954
Sven Schuetz9d544f22009-04-06 18:31:47 +0200955 if (rport) {
Swen Schilligea945ff2009-08-18 15:43:24 +0200956 port = zfcp_get_port_by_wwpn(adapter, rport->port_name);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100957 if (!port)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200958 return -EINVAL;
Swen Schilligecf0c772009-11-24 16:53:58 +0100959
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100960 d_id = port->d_id;
Christof Schmitt615f59e2010-02-17 11:18:56 +0100961 put_device(&port->dev);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100962 } else
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100963 d_id = ntoh24(bsg_request->rqst_data.h_els.port_id);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200964
Christof Schmittf09d5452010-01-13 17:52:36 +0100965 els->handler = zfcp_fc_ct_els_job_handler;
Christoph Hellwig31156ec2018-03-13 17:28:39 +0100966 return zfcp_fsf_send_els(adapter, d_id, els, job->timeout / HZ);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200967}
968
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100969static int zfcp_fc_exec_ct_job(struct bsg_job *job,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100970 struct zfcp_adapter *adapter)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200971{
972 int ret;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100973 struct zfcp_fsf_ct_els *ct = job->dd_data;
974 struct zfcp_fc_wka_port *wka_port;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200975
Christof Schmittf09d5452010-01-13 17:52:36 +0100976 wka_port = zfcp_fc_job_wka_port(job);
977 if (!wka_port)
978 return -EINVAL;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200979
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100980 ret = zfcp_fc_wka_port_get(wka_port);
981 if (ret)
Sven Schuetz9d544f22009-04-06 18:31:47 +0200982 return ret;
Sven Schuetz9d544f22009-04-06 18:31:47 +0200983
Christof Schmittf09d5452010-01-13 17:52:36 +0100984 ct->handler = zfcp_fc_ct_job_handler;
Christoph Hellwig31156ec2018-03-13 17:28:39 +0100985 ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->timeout / HZ);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100986 if (ret)
987 zfcp_fc_wka_port_put(wka_port);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200988
Sven Schuetz9d544f22009-04-06 18:31:47 +0200989 return ret;
990}
Swen Schilligd5a282a2009-08-18 15:43:22 +0200991
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +0100992int zfcp_fc_exec_bsg_job(struct bsg_job *job)
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100993{
994 struct Scsi_Host *shost;
995 struct zfcp_adapter *adapter;
996 struct zfcp_fsf_ct_els *ct_els = job->dd_data;
Johannes Thumshirn01e0e152016-11-17 10:31:12 +0100997 struct fc_bsg_request *bsg_request = job->request;
Johannes Thumshirn1d69b122016-11-17 10:31:15 +0100998 struct fc_rport *rport = fc_bsg_to_rport(job);
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100999
Johannes Thumshirn1d69b122016-11-17 10:31:15 +01001000 shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job);
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001001 adapter = (struct zfcp_adapter *)shost->hostdata[0];
1002
1003 if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN))
1004 return -EINVAL;
1005
1006 ct_els->req = job->request_payload.sg_list;
1007 ct_els->resp = job->reply_payload.sg_list;
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001008 ct_els->handler_data = job;
1009
Johannes Thumshirn01e0e152016-11-17 10:31:12 +01001010 switch (bsg_request->msgcode) {
Christof Schmitt7c7dc192009-11-24 16:54:13 +01001011 case FC_BSG_RPT_ELS:
1012 case FC_BSG_HST_ELS_NOLOGIN:
1013 return zfcp_fc_exec_els_job(job, adapter);
1014 case FC_BSG_RPT_CT:
1015 case FC_BSG_HST_CT:
1016 return zfcp_fc_exec_ct_job(job, adapter);
1017 default:
1018 return -EINVAL;
1019 }
1020}
1021
Johannes Thumshirn75cc8cf2016-11-17 10:31:19 +01001022int zfcp_fc_timeout_bsg_job(struct bsg_job *job)
Swen Schillig491ca442010-01-14 17:19:01 +01001023{
1024 /* hardware tracks timeout, reset bsg timeout to not interfere */
1025 return -EAGAIN;
1026}
1027
Swen Schilligd5a282a2009-08-18 15:43:22 +02001028int zfcp_fc_gs_setup(struct zfcp_adapter *adapter)
1029{
Christof Schmittbd0072e2009-11-24 16:54:11 +01001030 struct zfcp_fc_wka_ports *wka_ports;
Swen Schilligd5a282a2009-08-18 15:43:22 +02001031
Christof Schmittbd0072e2009-11-24 16:54:11 +01001032 wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001033 if (!wka_ports)
1034 return -ENOMEM;
1035
1036 adapter->gs = wka_ports;
1037 zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter);
1038 zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter);
1039 zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter);
1040 zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter);
Swen Schilligd5a282a2009-08-18 15:43:22 +02001041
1042 return 0;
1043}
1044
1045void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter)
1046{
1047 kfree(adapter->gs);
1048 adapter->gs = NULL;
1049}
1050