Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 2 | /* |
| 3 | * zfcp device driver |
| 4 | * |
| 5 | * Fibre Channel related functions for the zfcp device driver. |
| 6 | * |
Steffen Maier | ab8ab4b | 2017-07-28 12:30:59 +0200 | [diff] [blame] | 7 | * Copyright IBM Corp. 2008, 2017 |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 10 | #define KMSG_COMPONENT "zfcp" |
| 11 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 12 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 13 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 15 | #include <linux/utsname.h> |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 16 | #include <linux/random.h> |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 17 | #include <linux/bsg-lib.h> |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 18 | #include <scsi/fc/fc_els.h> |
| 19 | #include <scsi/libfc.h> |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 20 | #include "zfcp_ext.h" |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 21 | #include "zfcp_fc.h" |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 22 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 23 | struct kmem_cache *zfcp_fc_req_cache; |
| 24 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 25 | static 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 Schmitt | e0d7fcb | 2008-12-19 16:56:58 +0100 | [diff] [blame] | 30 | }; |
| 31 | |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 32 | static bool no_auto_port_rescan; |
Martin Peschke | b096ef8 | 2017-07-28 12:31:07 +0200 | [diff] [blame] | 33 | module_param(no_auto_port_rescan, bool, 0600); |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 34 | MODULE_PARM_DESC(no_auto_port_rescan, |
| 35 | "no automatic port_rescan (default off)"); |
| 36 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 37 | static unsigned int port_scan_backoff = 500; |
| 38 | module_param(port_scan_backoff, uint, 0600); |
| 39 | MODULE_PARM_DESC(port_scan_backoff, |
| 40 | "upper limit of port scan random backoff in msecs (default 500)"); |
| 41 | |
| 42 | static unsigned int port_scan_ratelimit = 60000; |
| 43 | module_param(port_scan_ratelimit, uint, 0600); |
| 44 | MODULE_PARM_DESC(port_scan_ratelimit, |
| 45 | "minimum interval between port scans in msecs (default 60000)"); |
| 46 | |
| 47 | unsigned int zfcp_fc_port_scan_backoff(void) |
| 48 | { |
| 49 | if (!port_scan_backoff) |
| 50 | return 0; |
George Spelvin | 0cd0e57 | 2020-07-03 15:19:57 +0200 | [diff] [blame] | 51 | return prandom_u32_max(port_scan_backoff); |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | static 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 | |
| 62 | static 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 Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 79 | void zfcp_fc_conditional_port_scan(struct zfcp_adapter *adapter) |
| 80 | { |
| 81 | if (no_auto_port_rescan) |
| 82 | return; |
| 83 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 84 | zfcp_fc_port_scan(adapter); |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | void zfcp_fc_inverse_conditional_port_scan(struct zfcp_adapter *adapter) |
| 88 | { |
| 89 | if (!no_auto_port_rescan) |
| 90 | return; |
| 91 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 92 | zfcp_fc_port_scan(adapter); |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 93 | } |
| 94 | |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 95 | /** |
| 96 | * zfcp_fc_post_event - post event to userspace via fc_transport |
| 97 | * @work: work struct with enqueued events |
| 98 | */ |
| 99 | void 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(), |
Steffen Maier | 6919298 | 2018-05-17 19:15:04 +0200 | [diff] [blame] | 114 | event->code, event->data); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 115 | list_del(&event->list); |
| 116 | kfree(event); |
| 117 | } |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /** |
| 121 | * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context |
| 122 | * @adapter: The adapter where to enqueue the event |
| 123 | * @event_code: The event code (as defined in fc_host_event_code in |
| 124 | * scsi_transport_fc.h) |
| 125 | * @event_data: The event data (e.g. n_port page in case of els) |
| 126 | */ |
| 127 | void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter, |
Steffen Maier | 6919298 | 2018-05-17 19:15:04 +0200 | [diff] [blame] | 128 | enum fc_host_event_code event_code, u32 event_data) |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 129 | { |
| 130 | struct zfcp_fc_event *event; |
| 131 | |
| 132 | event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC); |
| 133 | if (!event) |
| 134 | return; |
| 135 | |
| 136 | event->code = event_code; |
| 137 | event->data = event_data; |
| 138 | |
| 139 | spin_lock(&adapter->events.list_lock); |
| 140 | list_add_tail(&event->list, &adapter->events.list); |
| 141 | spin_unlock(&adapter->events.list_lock); |
| 142 | |
| 143 | queue_work(adapter->work_queue, &adapter->events.work); |
| 144 | } |
| 145 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 146 | static int zfcp_fc_wka_port_get(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 147 | { |
| 148 | if (mutex_lock_interruptible(&wka_port->mutex)) |
| 149 | return -ERESTARTSYS; |
| 150 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 151 | if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE || |
| 152 | wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) { |
| 153 | wka_port->status = ZFCP_FC_WKA_PORT_OPENING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 154 | if (zfcp_fsf_open_wka_port(wka_port)) |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 155 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | mutex_unlock(&wka_port->mutex); |
| 159 | |
Swen Schillig | 27f492c | 2009-07-13 15:06:13 +0200 | [diff] [blame] | 160 | wait_event(wka_port->completion_wq, |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 161 | wka_port->status == ZFCP_FC_WKA_PORT_ONLINE || |
| 162 | wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 163 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 164 | if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 165 | atomic_inc(&wka_port->refcount); |
| 166 | return 0; |
| 167 | } |
| 168 | return -EIO; |
| 169 | } |
| 170 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 171 | static void zfcp_fc_wka_port_offline(struct work_struct *work) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 172 | { |
Jean Delvare | bf6aede | 2009-04-02 16:56:54 -0700 | [diff] [blame] | 173 | struct delayed_work *dw = to_delayed_work(work); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 174 | struct zfcp_fc_wka_port *wka_port = |
| 175 | container_of(dw, struct zfcp_fc_wka_port, work); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 176 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 177 | mutex_lock(&wka_port->mutex); |
| 178 | if ((atomic_read(&wka_port->refcount) != 0) || |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 179 | (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 180 | goto out; |
| 181 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 182 | wka_port->status = ZFCP_FC_WKA_PORT_CLOSING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 183 | if (zfcp_fsf_close_wka_port(wka_port)) { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 184 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 185 | wake_up(&wka_port->completion_wq); |
| 186 | } |
| 187 | out: |
| 188 | mutex_unlock(&wka_port->mutex); |
| 189 | } |
| 190 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 191 | static void zfcp_fc_wka_port_put(struct zfcp_fc_wka_port *wka_port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 192 | { |
| 193 | if (atomic_dec_return(&wka_port->refcount) != 0) |
| 194 | return; |
Martin Olsson | 19af5cd | 2009-04-23 11:37:37 +0200 | [diff] [blame] | 195 | /* wait 10 milliseconds, other reqs might pop in */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 196 | schedule_delayed_work(&wka_port->work, HZ / 100); |
| 197 | } |
| 198 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 199 | static void zfcp_fc_wka_port_init(struct zfcp_fc_wka_port *wka_port, u32 d_id, |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 200 | struct zfcp_adapter *adapter) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 201 | { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 202 | init_waitqueue_head(&wka_port->completion_wq); |
| 203 | |
| 204 | wka_port->adapter = adapter; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 205 | wka_port->d_id = d_id; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 206 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 207 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 208 | atomic_set(&wka_port->refcount, 0); |
| 209 | mutex_init(&wka_port->mutex); |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 210 | INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 211 | } |
| 212 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 213 | static void zfcp_fc_wka_port_force_offline(struct zfcp_fc_wka_port *wka) |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 214 | { |
| 215 | cancel_delayed_work_sync(&wka->work); |
| 216 | mutex_lock(&wka->mutex); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 217 | wka->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 218 | mutex_unlock(&wka->mutex); |
| 219 | } |
| 220 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 221 | void zfcp_fc_wka_ports_force_offline(struct zfcp_fc_wka_ports *gs) |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 222 | { |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 223 | if (!gs) |
| 224 | return; |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 225 | zfcp_fc_wka_port_force_offline(&gs->ms); |
| 226 | zfcp_fc_wka_port_force_offline(&gs->ts); |
| 227 | zfcp_fc_wka_port_force_offline(&gs->ds); |
| 228 | zfcp_fc_wka_port_force_offline(&gs->as); |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 229 | } |
| 230 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 231 | static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 232 | struct fc_els_rscn_page *page) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 233 | { |
| 234 | unsigned long flags; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 235 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 236 | struct zfcp_port *port; |
| 237 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 238 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 239 | list_for_each_entry(port, &adapter->port_list, list) { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 240 | if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range)) |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 241 | zfcp_fc_test_link(port); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 242 | } |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 243 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 244 | } |
| 245 | |
| 246 | static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req) |
| 247 | { |
| 248 | struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data; |
Steffen Maier | c820657 | 2019-03-26 14:37:00 +0100 | [diff] [blame] | 249 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 250 | struct fc_els_rscn *head; |
| 251 | struct fc_els_rscn_page *page; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 252 | u16 i; |
| 253 | u16 no_entries; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 254 | unsigned int afmt; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 255 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 256 | head = (struct fc_els_rscn *) status_buffer->payload.data; |
| 257 | page = (struct fc_els_rscn_page *) head; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 258 | |
| 259 | /* see FC-FS */ |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 260 | no_entries = be16_to_cpu(head->rscn_plen) / |
| 261 | sizeof(struct fc_els_rscn_page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 262 | |
Steffen Maier | c820657 | 2019-03-26 14:37:00 +0100 | [diff] [blame] | 263 | if (no_entries > 1) { |
| 264 | /* handle failed ports */ |
| 265 | unsigned long flags; |
| 266 | struct zfcp_port *port; |
| 267 | |
| 268 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 269 | list_for_each_entry(port, &adapter->port_list, list) { |
| 270 | if (port->d_id) |
| 271 | continue; |
| 272 | zfcp_erp_port_reopen(port, |
| 273 | ZFCP_STATUS_COMMON_ERP_FAILED, |
| 274 | "fcrscn1"); |
| 275 | } |
| 276 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
| 277 | } |
| 278 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 279 | for (i = 1; i < no_entries; i++) { |
| 280 | /* skip head and start with 1st element */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 281 | page++; |
| 282 | afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK; |
| 283 | _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt], |
| 284 | page); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 285 | zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN, |
| 286 | *(u32 *)page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 287 | } |
Steffen Maier | 43f60cb | 2012-09-04 15:23:35 +0200 | [diff] [blame] | 288 | zfcp_fc_conditional_port_scan(fsf_req->adapter); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 291 | static void zfcp_fc_incoming_wwpn(struct zfcp_fsf_req *req, u64 wwpn) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 292 | { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 293 | unsigned long flags; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 294 | struct zfcp_adapter *adapter = req->adapter; |
| 295 | struct zfcp_port *port; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 296 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 297 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 298 | list_for_each_entry(port, &adapter->port_list, list) |
| 299 | if (port->wwpn == wwpn) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 300 | zfcp_erp_port_forced_reopen(port, 0, "fciwwp1"); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 301 | break; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 302 | } |
| 303 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req) |
| 307 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 308 | struct fsf_status_read_buffer *status_buffer; |
| 309 | struct fc_els_flogi *plogi; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 310 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 311 | status_buffer = (struct fsf_status_read_buffer *) req->data; |
| 312 | plogi = (struct fc_els_flogi *) status_buffer->payload.data; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 313 | zfcp_fc_incoming_wwpn(req, be64_to_cpu(plogi->fl_wwpn)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req) |
| 317 | { |
| 318 | struct fsf_status_read_buffer *status_buffer = |
| 319 | (struct fsf_status_read_buffer *)req->data; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 320 | struct fc_els_logo *logo = |
| 321 | (struct fc_els_logo *) status_buffer->payload.data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 322 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 323 | zfcp_fc_incoming_wwpn(req, be64_to_cpu(logo->fl_n_port_wwn)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /** |
| 327 | * zfcp_fc_incoming_els - handle incoming ELS |
Steffen Maier | 8684d61 | 2018-11-08 15:44:54 +0100 | [diff] [blame] | 328 | * @fsf_req: request which contains incoming ELS |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 329 | */ |
| 330 | void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req) |
| 331 | { |
| 332 | struct fsf_status_read_buffer *status_buffer = |
| 333 | (struct fsf_status_read_buffer *) fsf_req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 334 | unsigned int els_type = status_buffer->payload.data[0]; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 335 | |
Swen Schillig | 2c55b75 | 2010-12-02 15:16:13 +0100 | [diff] [blame] | 336 | zfcp_dbf_san_in_els("fciels1", fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 337 | if (els_type == ELS_PLOGI) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 338 | zfcp_fc_incoming_plogi(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 339 | else if (els_type == ELS_LOGO) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 340 | zfcp_fc_incoming_logo(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 341 | else if (els_type == ELS_RSCN) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 342 | zfcp_fc_incoming_rscn(fsf_req); |
| 343 | } |
| 344 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 345 | static void zfcp_fc_ns_gid_pn_eval(struct zfcp_fc_req *fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 346 | { |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 347 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 348 | struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 349 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 350 | if (ct_els->status) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 351 | return; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 352 | if (gid_pn_rsp->ct_hdr.ct_cmd != cpu_to_be16(FC_FS_ACC)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 353 | return; |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 354 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 355 | /* looks like a valid d_id */ |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 356 | ct_els->port->d_id = ntoh24(gid_pn_rsp->gid_pn.fp_fid); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 357 | } |
| 358 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 359 | static void zfcp_fc_complete(void *data) |
| 360 | { |
| 361 | complete(data); |
| 362 | } |
| 363 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 364 | static void zfcp_fc_ct_ns_init(struct fc_ct_hdr *ct_hdr, u16 cmd, u16 mr_size) |
| 365 | { |
| 366 | ct_hdr->ct_rev = FC_CT_REV; |
| 367 | ct_hdr->ct_fs_type = FC_FST_DIR; |
| 368 | ct_hdr->ct_fs_subtype = FC_NS_SUBTYPE; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 369 | ct_hdr->ct_cmd = cpu_to_be16(cmd); |
| 370 | ct_hdr->ct_mr_size = cpu_to_be16(mr_size / 4); |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 371 | } |
| 372 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 373 | static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port, |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 374 | struct zfcp_fc_req *fc_req) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 375 | { |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 376 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 377 | DECLARE_COMPLETION_ONSTACK(completion); |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 378 | struct zfcp_fc_gid_pn_req *gid_pn_req = &fc_req->u.gid_pn.req; |
| 379 | struct zfcp_fc_gid_pn_rsp *gid_pn_rsp = &fc_req->u.gid_pn.rsp; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 380 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 381 | |
| 382 | /* setup parameters for send generic command */ |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 383 | fc_req->ct_els.port = port; |
| 384 | fc_req->ct_els.handler = zfcp_fc_complete; |
| 385 | fc_req->ct_els.handler_data = &completion; |
| 386 | fc_req->ct_els.req = &fc_req->sg_req; |
| 387 | fc_req->ct_els.resp = &fc_req->sg_rsp; |
| 388 | sg_init_one(&fc_req->sg_req, gid_pn_req, sizeof(*gid_pn_req)); |
| 389 | sg_init_one(&fc_req->sg_rsp, gid_pn_rsp, sizeof(*gid_pn_rsp)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 390 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 391 | zfcp_fc_ct_ns_init(&gid_pn_req->ct_hdr, |
| 392 | FC_NS_GID_PN, ZFCP_FC_CT_SIZE_PAGE); |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 393 | gid_pn_req->gid_pn.fn_wwpn = cpu_to_be64(port->wwpn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 394 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 395 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, &fc_req->ct_els, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 396 | adapter->pool.gid_pn_req, |
| 397 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 398 | if (!ret) { |
| 399 | wait_for_completion(&completion); |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 400 | zfcp_fc_ns_gid_pn_eval(fc_req); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 401 | } |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 402 | return ret; |
| 403 | } |
| 404 | |
| 405 | /** |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 406 | * zfcp_fc_ns_gid_pn - initiate GID_PN nameserver request |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 407 | * @port: port where GID_PN request is needed |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 408 | * return: -ENOMEM on error, 0 otherwise |
| 409 | */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 410 | static int zfcp_fc_ns_gid_pn(struct zfcp_port *port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 411 | { |
| 412 | int ret; |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 413 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 414 | struct zfcp_adapter *adapter = port->adapter; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 415 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 416 | fc_req = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC); |
| 417 | if (!fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 418 | return -ENOMEM; |
| 419 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 420 | memset(fc_req, 0, sizeof(*fc_req)); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 421 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 422 | ret = zfcp_fc_wka_port_get(&adapter->gs->ds); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 423 | if (ret) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 424 | goto out; |
| 425 | |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 426 | ret = zfcp_fc_ns_gid_pn_request(port, fc_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 427 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 428 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 429 | out: |
Christof Schmitt | fcf7e61 | 2011-02-22 19:54:42 +0100 | [diff] [blame] | 430 | mempool_free(fc_req, adapter->pool.gid_pn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 431 | return ret; |
| 432 | } |
| 433 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 434 | void zfcp_fc_port_did_lookup(struct work_struct *work) |
| 435 | { |
| 436 | int ret; |
| 437 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 438 | gid_pn_work); |
| 439 | |
Steffen Maier | 5c750d5 | 2018-05-17 19:14:57 +0200 | [diff] [blame] | 440 | set_worker_desc("zgidpn%16llx", port->wwpn); /* < WORKER_DESC_LEN=24 */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 441 | ret = zfcp_fc_ns_gid_pn(port); |
| 442 | if (ret) { |
| 443 | /* could not issue gid_pn for some reason */ |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 444 | zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1"); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 445 | goto out; |
| 446 | } |
| 447 | |
| 448 | if (!port->d_id) { |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 449 | zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 450 | goto out; |
| 451 | } |
| 452 | |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 453 | zfcp_erp_port_reopen(port, 0, "fcgpn_3"); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 454 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 455 | put_device(&port->dev); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 456 | } |
| 457 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 458 | /** |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 459 | * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request |
| 460 | * @port: The zfcp_port to lookup the d_id for. |
| 461 | */ |
| 462 | void zfcp_fc_trigger_did_lookup(struct zfcp_port *port) |
| 463 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 464 | get_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 465 | if (!queue_work(port->adapter->work_queue, &port->gid_pn_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 466 | put_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | /** |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 470 | * zfcp_fc_plogi_evaluate - evaluate PLOGI playload |
| 471 | * @port: zfcp_port structure |
| 472 | * @plogi: plogi payload |
| 473 | * |
| 474 | * Evaluate PLOGI playload and copy important fields into zfcp_port structure |
| 475 | */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 476 | void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fc_els_flogi *plogi) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 477 | { |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 478 | if (be64_to_cpu(plogi->fl_wwpn) != port->wwpn) { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 479 | port->d_id = 0; |
| 480 | dev_warn(&port->adapter->ccw_device->dev, |
| 481 | "A port opened with WWPN 0x%016Lx returned data that " |
| 482 | "identifies it as WWPN 0x%016Lx\n", |
| 483 | (unsigned long long) port->wwpn, |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 484 | (unsigned long long) be64_to_cpu(plogi->fl_wwpn)); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 485 | return; |
| 486 | } |
| 487 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 488 | port->wwnn = be64_to_cpu(plogi->fl_wwnn); |
| 489 | port->maxframe_size = be16_to_cpu(plogi->fl_csp.sp_bb_data); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 490 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 491 | if (plogi->fl_cssp[0].cp_class & cpu_to_be16(FC_CPC_VALID)) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 492 | port->supported_classes |= FC_COS_CLASS1; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 493 | if (plogi->fl_cssp[1].cp_class & cpu_to_be16(FC_CPC_VALID)) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 494 | port->supported_classes |= FC_COS_CLASS2; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 495 | if (plogi->fl_cssp[2].cp_class & cpu_to_be16(FC_CPC_VALID)) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 496 | port->supported_classes |= FC_COS_CLASS3; |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 497 | if (plogi->fl_cssp[3].cp_class & cpu_to_be16(FC_CPC_VALID)) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 498 | port->supported_classes |= FC_COS_CLASS4; |
| 499 | } |
| 500 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 501 | static void zfcp_fc_adisc_handler(void *data) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 502 | { |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 503 | struct zfcp_fc_req *fc_req = data; |
| 504 | struct zfcp_port *port = fc_req->ct_els.port; |
| 505 | struct fc_els_adisc *adisc_resp = &fc_req->u.adisc.rsp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 506 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 507 | if (fc_req->ct_els.status) { |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 508 | /* request rejected or timed out */ |
Swen Schillig | 5b43e71 | 2009-04-17 15:08:10 +0200 | [diff] [blame] | 509 | zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 510 | "fcadh_1"); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 511 | goto out; |
| 512 | } |
| 513 | |
| 514 | if (!port->wwnn) |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 515 | port->wwnn = be64_to_cpu(adisc_resp->adisc_wwnn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 516 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 517 | if ((port->wwpn != be64_to_cpu(adisc_resp->adisc_wwpn)) || |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 518 | !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) { |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 519 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 520 | "fcadh_2"); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 521 | goto out; |
| 522 | } |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 523 | |
Steffen Maier | 8c9db66 | 2022-01-18 17:58:03 +0100 | [diff] [blame] | 524 | /* re-init to undo drop from zfcp_fc_adisc() */ |
| 525 | port->d_id = ntoh24(adisc_resp->adisc_port_id); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 526 | /* port is good, unblock rport without going through erp */ |
| 527 | zfcp_scsi_schedule_rport_register(port); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 528 | out: |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 529 | atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 530 | put_device(&port->dev); |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 531 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | static int zfcp_fc_adisc(struct zfcp_port *port) |
| 535 | { |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 536 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 537 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 538 | struct Scsi_Host *shost = adapter->scsi_host; |
Steffen Maier | 8c9db66 | 2022-01-18 17:58:03 +0100 | [diff] [blame] | 539 | u32 d_id; |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 540 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 541 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 542 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_ATOMIC); |
| 543 | if (!fc_req) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 544 | return -ENOMEM; |
| 545 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 546 | fc_req->ct_els.port = port; |
| 547 | fc_req->ct_els.req = &fc_req->sg_req; |
| 548 | fc_req->ct_els.resp = &fc_req->sg_rsp; |
| 549 | sg_init_one(&fc_req->sg_req, &fc_req->u.adisc.req, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 550 | sizeof(struct fc_els_adisc)); |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 551 | sg_init_one(&fc_req->sg_rsp, &fc_req->u.adisc.rsp, |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 552 | sizeof(struct fc_els_adisc)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 553 | |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 554 | fc_req->ct_els.handler = zfcp_fc_adisc_handler; |
| 555 | fc_req->ct_els.handler_data = fc_req; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 556 | |
| 557 | /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports |
| 558 | without FC-AL-2 capability, so we don't set it */ |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 559 | fc_req->u.adisc.req.adisc_wwpn = cpu_to_be64(fc_host_port_name(shost)); |
| 560 | fc_req->u.adisc.req.adisc_wwnn = cpu_to_be64(fc_host_node_name(shost)); |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 561 | fc_req->u.adisc.req.adisc_cmd = ELS_ADISC; |
| 562 | hton24(fc_req->u.adisc.req.adisc_port_id, fc_host_port_id(shost)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 563 | |
Steffen Maier | 8c9db66 | 2022-01-18 17:58:03 +0100 | [diff] [blame] | 564 | d_id = port->d_id; /* remember as destination for send els below */ |
| 565 | /* |
| 566 | * Force fresh GID_PN lookup on next port recovery. |
| 567 | * Must happen after request setup and before sending request, |
| 568 | * to prevent race with port->d_id re-init in zfcp_fc_adisc_handler(). |
| 569 | */ |
| 570 | port->d_id = 0; |
| 571 | |
| 572 | ret = zfcp_fsf_send_els(adapter, d_id, &fc_req->ct_els, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 573 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 574 | if (ret) |
Christof Schmitt | 087897e | 2011-02-22 19:54:41 +0100 | [diff] [blame] | 575 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 576 | |
| 577 | return ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 578 | } |
| 579 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 580 | void zfcp_fc_link_test_work(struct work_struct *work) |
| 581 | { |
| 582 | struct zfcp_port *port = |
| 583 | container_of(work, struct zfcp_port, test_link_work); |
| 584 | int retval; |
| 585 | |
Steffen Maier | 5c750d5 | 2018-05-17 19:14:57 +0200 | [diff] [blame] | 586 | set_worker_desc("zadisc%16llx", port->wwpn); /* < WORKER_DESC_LEN=24 */ |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 587 | get_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 588 | port->rport_task = RPORT_DEL; |
| 589 | zfcp_scsi_rport_work(&port->rport_work); |
| 590 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 591 | /* only issue one test command at one time per port */ |
| 592 | if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST) |
| 593 | goto out; |
| 594 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 595 | atomic_or(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 596 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 597 | retval = zfcp_fc_adisc(port); |
| 598 | if (retval == 0) |
| 599 | return; |
| 600 | |
| 601 | /* send of ADISC was not possible */ |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 602 | atomic_andnot(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 603 | zfcp_erp_port_forced_reopen(port, 0, "fcltwk1"); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 604 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 605 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 606 | put_device(&port->dev); |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 607 | } |
| 608 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 609 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 610 | * zfcp_fc_test_link - lightweight link test procedure |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 611 | * @port: port to be tested |
| 612 | * |
| 613 | * Test status of a link to a remote port using the ELS command ADISC. |
| 614 | * If there is a problem with the remote port, error recovery steps |
| 615 | * will be triggered. |
| 616 | */ |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 617 | void zfcp_fc_test_link(struct zfcp_port *port) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 618 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 619 | get_device(&port->dev); |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 620 | if (!queue_work(port->adapter->work_queue, &port->test_link_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 621 | put_device(&port->dev); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 622 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 623 | |
Steffen Maier | 58f3ead | 2018-11-08 15:44:38 +0100 | [diff] [blame] | 624 | /** |
| 625 | * zfcp_fc_sg_free_table - free memory used by scatterlists |
| 626 | * @sg: pointer to scatterlist |
| 627 | * @count: number of scatterlist which are to be free'ed |
| 628 | * the scatterlist are expected to reference pages always |
| 629 | */ |
| 630 | static void zfcp_fc_sg_free_table(struct scatterlist *sg, int count) |
| 631 | { |
| 632 | int i; |
| 633 | |
Ming Lei | 013be03 | 2019-06-18 09:37:51 +0800 | [diff] [blame] | 634 | for (i = 0; i < count; i++, sg = sg_next(sg)) |
Steffen Maier | 58f3ead | 2018-11-08 15:44:38 +0100 | [diff] [blame] | 635 | if (sg) |
| 636 | free_page((unsigned long) sg_virt(sg)); |
| 637 | else |
| 638 | break; |
| 639 | } |
| 640 | |
| 641 | /** |
| 642 | * zfcp_fc_sg_setup_table - init scatterlist and allocate, assign buffers |
| 643 | * @sg: pointer to struct scatterlist |
| 644 | * @count: number of scatterlists which should be assigned with buffers |
| 645 | * of size page |
| 646 | * |
| 647 | * Returns: 0 on success, -ENOMEM otherwise |
| 648 | */ |
| 649 | static int zfcp_fc_sg_setup_table(struct scatterlist *sg, int count) |
| 650 | { |
| 651 | void *addr; |
| 652 | int i; |
| 653 | |
| 654 | sg_init_table(sg, count); |
Ming Lei | 013be03 | 2019-06-18 09:37:51 +0800 | [diff] [blame] | 655 | for (i = 0; i < count; i++, sg = sg_next(sg)) { |
Steffen Maier | 58f3ead | 2018-11-08 15:44:38 +0100 | [diff] [blame] | 656 | addr = (void *) get_zeroed_page(GFP_KERNEL); |
| 657 | if (!addr) { |
| 658 | zfcp_fc_sg_free_table(sg, i); |
| 659 | return -ENOMEM; |
| 660 | } |
| 661 | sg_set_buf(sg, addr, PAGE_SIZE); |
| 662 | } |
| 663 | return 0; |
| 664 | } |
| 665 | |
Steffen Maier | d39eda5 | 2018-05-17 19:14:58 +0200 | [diff] [blame] | 666 | static struct zfcp_fc_req *zfcp_fc_alloc_sg_env(int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 667 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 668 | struct zfcp_fc_req *fc_req; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 669 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 670 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL); |
| 671 | if (!fc_req) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 672 | return NULL; |
| 673 | |
Steffen Maier | 58f3ead | 2018-11-08 15:44:38 +0100 | [diff] [blame] | 674 | if (zfcp_fc_sg_setup_table(&fc_req->sg_rsp, buf_num)) { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 675 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
| 676 | return NULL; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 677 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 678 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 679 | sg_init_one(&fc_req->sg_req, &fc_req->u.gpn_ft.req, |
| 680 | sizeof(struct zfcp_fc_gpn_ft_req)); |
| 681 | |
| 682 | return fc_req; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 683 | } |
| 684 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 685 | static int zfcp_fc_send_gpn_ft(struct zfcp_fc_req *fc_req, |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 686 | struct zfcp_adapter *adapter, int max_bytes) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 687 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 688 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 689 | struct zfcp_fc_gpn_ft_req *req = &fc_req->u.gpn_ft.req; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 690 | DECLARE_COMPLETION_ONSTACK(completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 691 | int ret; |
| 692 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 693 | zfcp_fc_ct_ns_init(&req->ct_hdr, FC_NS_GPN_FT, max_bytes); |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 694 | req->gpn_ft.fn_fc4_type = FC_TYPE_FCP; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 695 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 696 | ct_els->handler = zfcp_fc_complete; |
| 697 | ct_els->handler_data = &completion; |
| 698 | ct_els->req = &fc_req->sg_req; |
| 699 | ct_els->resp = &fc_req->sg_rsp; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 700 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 701 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 702 | ZFCP_FC_CTELS_TMO); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 703 | if (!ret) |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 704 | wait_for_completion(&completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 705 | return ret; |
| 706 | } |
| 707 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 708 | static void zfcp_fc_validate_port(struct zfcp_port *port, struct list_head *lh) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 709 | { |
Martin Petermann | 6ab35c0 | 2009-04-17 15:08:13 +0200 | [diff] [blame] | 710 | if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC)) |
| 711 | return; |
| 712 | |
Peter Zijlstra | 805de8f4 | 2015-04-24 01:12:32 +0200 | [diff] [blame] | 713 | atomic_andnot(ZFCP_STATUS_COMMON_NOESC, &port->status); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 714 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 715 | if ((port->supported_classes != 0) || |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 716 | !list_empty(&port->unit_list)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 717 | return; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 718 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 719 | list_move_tail(&port->list, lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 720 | } |
| 721 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 722 | static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_req *fc_req, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 723 | struct zfcp_adapter *adapter, int max_entries) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 724 | { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 725 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 726 | struct scatterlist *sg = &fc_req->sg_rsp; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 727 | struct fc_ct_hdr *hdr = sg_virt(sg); |
| 728 | struct fc_gpn_ft_resp *acc = sg_virt(sg); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 729 | struct zfcp_port *port, *tmp; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 730 | unsigned long flags; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 731 | LIST_HEAD(remove_lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 732 | u32 d_id; |
Christof Schmitt | 47f7bba | 2008-08-21 13:43:33 +0200 | [diff] [blame] | 733 | int ret = 0, x, last = 0; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 734 | |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 735 | if (ct_els->status) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 736 | return -EIO; |
| 737 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 738 | if (hdr->ct_cmd != cpu_to_be16(FC_FS_ACC)) { |
Steffen Maier | ab8ab4b | 2017-07-28 12:30:59 +0200 | [diff] [blame] | 739 | if (hdr->ct_reason == FC_FS_RJT_UNABL) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 740 | return -EAGAIN; /* might be a temporary condition */ |
| 741 | return -EIO; |
| 742 | } |
| 743 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 744 | if (hdr->ct_mr_size) { |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 745 | dev_warn(&adapter->ccw_device->dev, |
| 746 | "The name server reported %d words residual data\n", |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 747 | hdr->ct_mr_size); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 748 | return -E2BIG; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 749 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 750 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 751 | /* first entry is the header */ |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 752 | for (x = 1; x < max_entries && !last; x++) { |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 753 | if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 754 | acc++; |
| 755 | else |
| 756 | acc = sg_virt(++sg); |
| 757 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 758 | last = acc->fp_flags & FC_NS_FID_LAST; |
| 759 | d_id = ntoh24(acc->fp_fid); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 760 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 761 | /* don't attach ports with a well known address */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 762 | if (d_id >= FC_FID_WELL_KNOWN_BASE) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 763 | continue; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 764 | /* skip the adapter's port and known remote ports */ |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 765 | if (be64_to_cpu(acc->fp_wwpn) == |
| 766 | fc_host_port_name(adapter->scsi_host)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 767 | continue; |
| 768 | |
Steffen Maier | 9d464fc | 2017-07-28 12:31:02 +0200 | [diff] [blame] | 769 | port = zfcp_port_enqueue(adapter, be64_to_cpu(acc->fp_wwpn), |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 770 | ZFCP_STATUS_COMMON_NOESC, d_id); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 771 | if (!IS_ERR(port)) |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 772 | zfcp_erp_port_reopen(port, 0, "fcegpf1"); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 773 | else if (PTR_ERR(port) != -EEXIST) |
| 774 | ret = PTR_ERR(port); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | zfcp_erp_wait(adapter); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 778 | write_lock_irqsave(&adapter->port_list_lock, flags); |
| 779 | list_for_each_entry_safe(port, tmp, &adapter->port_list, list) |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 780 | zfcp_fc_validate_port(port, &remove_lh); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 781 | write_unlock_irqrestore(&adapter->port_list_lock, flags); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 782 | |
| 783 | list_for_each_entry_safe(port, tmp, &remove_lh, list) { |
Swen Schillig | ea4a3a6 | 2010-12-02 15:16:16 +0100 | [diff] [blame] | 784 | zfcp_erp_port_shutdown(port, 0, "fcegpf2"); |
Sebastian Ott | 83d4e1c | 2013-04-26 16:13:48 +0200 | [diff] [blame] | 785 | device_unregister(&port->dev); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 786 | } |
| 787 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 788 | return ret; |
| 789 | } |
| 790 | |
| 791 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 792 | * zfcp_fc_scan_ports - scan remote ports and attach new ports |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 793 | * @work: reference to scheduled work |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 794 | */ |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 795 | void zfcp_fc_scan_ports(struct work_struct *work) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 796 | { |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 797 | struct delayed_work *dw = to_delayed_work(work); |
| 798 | struct zfcp_adapter *adapter = container_of(dw, struct zfcp_adapter, |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 799 | scan_work); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 800 | int ret, i; |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 801 | struct zfcp_fc_req *fc_req; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 802 | int chain, max_entries, buf_num, max_bytes; |
| 803 | |
Martin Peschke | 18f87a6 | 2014-11-13 14:59:48 +0100 | [diff] [blame] | 804 | zfcp_fc_port_scan_time(adapter); |
| 805 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 806 | chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 807 | buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1; |
| 808 | max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE; |
| 809 | max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 810 | |
Swen Schillig | 306b6ed | 2009-04-17 15:08:02 +0200 | [diff] [blame] | 811 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 812 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 813 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 814 | |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 815 | if (zfcp_fc_wka_port_get(&adapter->gs->ds)) |
| 816 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 817 | |
Steffen Maier | d39eda5 | 2018-05-17 19:14:58 +0200 | [diff] [blame] | 818 | fc_req = zfcp_fc_alloc_sg_env(buf_num); |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 819 | if (!fc_req) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 820 | goto out; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 821 | |
| 822 | for (i = 0; i < 3; i++) { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 823 | ret = zfcp_fc_send_gpn_ft(fc_req, adapter, max_bytes); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 824 | if (!ret) { |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 825 | ret = zfcp_fc_eval_gpn_ft(fc_req, adapter, max_entries); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 826 | if (ret == -EAGAIN) |
| 827 | ssleep(1); |
| 828 | else |
| 829 | break; |
| 830 | } |
| 831 | } |
Steffen Maier | 58f3ead | 2018-11-08 15:44:38 +0100 | [diff] [blame] | 832 | zfcp_fc_sg_free_table(&fc_req->sg_rsp, buf_num); |
Christof Schmitt | f977322 | 2011-02-22 19:54:43 +0100 | [diff] [blame] | 833 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 834 | out: |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 835 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 836 | } |
| 837 | |
Christof Schmitt | 038d944 | 2011-02-22 19:54:48 +0100 | [diff] [blame] | 838 | static int zfcp_fc_gspn(struct zfcp_adapter *adapter, |
| 839 | struct zfcp_fc_req *fc_req) |
| 840 | { |
| 841 | DECLARE_COMPLETION_ONSTACK(completion); |
| 842 | char devno[] = "DEVNO:"; |
| 843 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 844 | struct zfcp_fc_gspn_req *gspn_req = &fc_req->u.gspn.req; |
| 845 | struct zfcp_fc_gspn_rsp *gspn_rsp = &fc_req->u.gspn.rsp; |
| 846 | int ret; |
| 847 | |
| 848 | zfcp_fc_ct_ns_init(&gspn_req->ct_hdr, FC_NS_GSPN_ID, |
| 849 | FC_SYMBOLIC_NAME_SIZE); |
| 850 | hton24(gspn_req->gspn.fp_fid, fc_host_port_id(adapter->scsi_host)); |
| 851 | |
| 852 | sg_init_one(&fc_req->sg_req, gspn_req, sizeof(*gspn_req)); |
| 853 | sg_init_one(&fc_req->sg_rsp, gspn_rsp, sizeof(*gspn_rsp)); |
| 854 | |
| 855 | ct_els->handler = zfcp_fc_complete; |
| 856 | ct_els->handler_data = &completion; |
| 857 | ct_els->req = &fc_req->sg_req; |
| 858 | ct_els->resp = &fc_req->sg_rsp; |
| 859 | |
| 860 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
| 861 | ZFCP_FC_CTELS_TMO); |
| 862 | if (ret) |
| 863 | return ret; |
| 864 | |
| 865 | wait_for_completion(&completion); |
| 866 | if (ct_els->status) |
| 867 | return ct_els->status; |
| 868 | |
| 869 | if (fc_host_port_type(adapter->scsi_host) == FC_PORTTYPE_NPIV && |
| 870 | !(strstr(gspn_rsp->gspn.fp_name, devno))) |
| 871 | snprintf(fc_host_symbolic_name(adapter->scsi_host), |
| 872 | FC_SYMBOLIC_NAME_SIZE, "%s%s %s NAME: %s", |
| 873 | gspn_rsp->gspn.fp_name, devno, |
| 874 | dev_name(&adapter->ccw_device->dev), |
| 875 | init_utsname()->nodename); |
| 876 | else |
| 877 | strlcpy(fc_host_symbolic_name(adapter->scsi_host), |
| 878 | gspn_rsp->gspn.fp_name, FC_SYMBOLIC_NAME_SIZE); |
| 879 | |
| 880 | return 0; |
| 881 | } |
| 882 | |
| 883 | static void zfcp_fc_rspn(struct zfcp_adapter *adapter, |
| 884 | struct zfcp_fc_req *fc_req) |
| 885 | { |
| 886 | DECLARE_COMPLETION_ONSTACK(completion); |
| 887 | struct Scsi_Host *shost = adapter->scsi_host; |
| 888 | struct zfcp_fsf_ct_els *ct_els = &fc_req->ct_els; |
| 889 | struct zfcp_fc_rspn_req *rspn_req = &fc_req->u.rspn.req; |
| 890 | struct fc_ct_hdr *rspn_rsp = &fc_req->u.rspn.rsp; |
| 891 | int ret, len; |
| 892 | |
| 893 | zfcp_fc_ct_ns_init(&rspn_req->ct_hdr, FC_NS_RSPN_ID, |
| 894 | FC_SYMBOLIC_NAME_SIZE); |
| 895 | hton24(rspn_req->rspn.fr_fid.fp_fid, fc_host_port_id(shost)); |
| 896 | len = strlcpy(rspn_req->rspn.fr_name, fc_host_symbolic_name(shost), |
| 897 | FC_SYMBOLIC_NAME_SIZE); |
| 898 | rspn_req->rspn.fr_name_len = len; |
| 899 | |
| 900 | sg_init_one(&fc_req->sg_req, rspn_req, sizeof(*rspn_req)); |
| 901 | sg_init_one(&fc_req->sg_rsp, rspn_rsp, sizeof(*rspn_rsp)); |
| 902 | |
| 903 | ct_els->handler = zfcp_fc_complete; |
| 904 | ct_els->handler_data = &completion; |
| 905 | ct_els->req = &fc_req->sg_req; |
| 906 | ct_els->resp = &fc_req->sg_rsp; |
| 907 | |
| 908 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct_els, NULL, |
| 909 | ZFCP_FC_CTELS_TMO); |
| 910 | if (!ret) |
| 911 | wait_for_completion(&completion); |
| 912 | } |
| 913 | |
| 914 | /** |
| 915 | * zfcp_fc_sym_name_update - Retrieve and update the symbolic port name |
| 916 | * @work: ns_up_work of the adapter where to update the symbolic port name |
| 917 | * |
| 918 | * Retrieve the current symbolic port name that may have been set by |
| 919 | * the hardware using the GSPN request and update the fc_host |
| 920 | * symbolic_name sysfs attribute. When running in NPIV mode (and hence |
| 921 | * the port name is unique for this system), update the symbolic port |
| 922 | * name to add Linux specific information and update the FC nameserver |
| 923 | * using the RSPN request. |
| 924 | */ |
| 925 | void zfcp_fc_sym_name_update(struct work_struct *work) |
| 926 | { |
| 927 | struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter, |
| 928 | ns_up_work); |
| 929 | int ret; |
| 930 | struct zfcp_fc_req *fc_req; |
| 931 | |
| 932 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 933 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
| 934 | return; |
| 935 | |
| 936 | fc_req = kmem_cache_zalloc(zfcp_fc_req_cache, GFP_KERNEL); |
| 937 | if (!fc_req) |
| 938 | return; |
| 939 | |
| 940 | ret = zfcp_fc_wka_port_get(&adapter->gs->ds); |
| 941 | if (ret) |
| 942 | goto out_free; |
| 943 | |
| 944 | ret = zfcp_fc_gspn(adapter, fc_req); |
| 945 | if (ret || fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
| 946 | goto out_ds_put; |
| 947 | |
| 948 | memset(fc_req, 0, sizeof(*fc_req)); |
| 949 | zfcp_fc_rspn(adapter, fc_req); |
| 950 | |
| 951 | out_ds_put: |
| 952 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
| 953 | out_free: |
| 954 | kmem_cache_free(zfcp_fc_req_cache, fc_req); |
| 955 | } |
| 956 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 957 | static void zfcp_fc_ct_els_job_handler(void *data) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 958 | { |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 959 | struct bsg_job *job = data; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 960 | struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data; |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 961 | struct fc_bsg_reply *jr = job->reply; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 962 | |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 963 | jr->reply_payload_rcv_len = job->reply_payload.payload_len; |
| 964 | jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK; |
| 965 | jr->result = zfcp_ct_els->status ? -EIO : 0; |
Johannes Thumshirn | 0654816 | 2016-11-17 10:31:22 +0100 | [diff] [blame] | 966 | bsg_job_done(job, jr->result, jr->reply_payload_rcv_len); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 967 | } |
| 968 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 969 | static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct bsg_job *job) |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 970 | { |
| 971 | u32 preamble_word1; |
| 972 | u8 gs_type; |
| 973 | struct zfcp_adapter *adapter; |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 974 | struct fc_bsg_request *bsg_request = job->request; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame] | 975 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Johannes Thumshirn | cd21c60 | 2016-11-17 10:31:14 +0100 | [diff] [blame] | 976 | struct Scsi_Host *shost; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 977 | |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 978 | preamble_word1 = bsg_request->rqst_data.r_ct.preamble_word1; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 979 | gs_type = (preamble_word1 & 0xff000000) >> 24; |
| 980 | |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame] | 981 | shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job); |
Johannes Thumshirn | cd21c60 | 2016-11-17 10:31:14 +0100 | [diff] [blame] | 982 | adapter = (struct zfcp_adapter *) shost->hostdata[0]; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 983 | |
| 984 | switch (gs_type) { |
| 985 | case FC_FST_ALIAS: |
| 986 | return &adapter->gs->as; |
| 987 | case FC_FST_MGMT: |
| 988 | return &adapter->gs->ms; |
| 989 | case FC_FST_TIME: |
| 990 | return &adapter->gs->ts; |
| 991 | break; |
| 992 | case FC_FST_DIR: |
| 993 | return &adapter->gs->ds; |
| 994 | break; |
| 995 | default: |
| 996 | return NULL; |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | static void zfcp_fc_ct_job_handler(void *data) |
| 1001 | { |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 1002 | struct bsg_job *job = data; |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 1003 | struct zfcp_fc_wka_port *wka_port; |
| 1004 | |
| 1005 | wka_port = zfcp_fc_job_wka_port(job); |
| 1006 | zfcp_fc_wka_port_put(wka_port); |
| 1007 | |
| 1008 | zfcp_fc_ct_els_job_handler(data); |
| 1009 | } |
| 1010 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 1011 | static int zfcp_fc_exec_els_job(struct bsg_job *job, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1012 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1013 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1014 | struct zfcp_fsf_ct_els *els = job->dd_data; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame] | 1015 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 1016 | struct fc_bsg_request *bsg_request = job->request; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1017 | struct zfcp_port *port; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1018 | u32 d_id; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1019 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1020 | if (rport) { |
Swen Schillig | ea945ff | 2009-08-18 15:43:24 +0200 | [diff] [blame] | 1021 | port = zfcp_get_port_by_wwpn(adapter, rport->port_name); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1022 | if (!port) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1023 | return -EINVAL; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 1024 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1025 | d_id = port->d_id; |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 1026 | put_device(&port->dev); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1027 | } else |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 1028 | d_id = ntoh24(bsg_request->rqst_data.h_els.port_id); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1029 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 1030 | els->handler = zfcp_fc_ct_els_job_handler; |
Christoph Hellwig | 31156ec | 2018-03-13 17:28:39 +0100 | [diff] [blame] | 1031 | return zfcp_fsf_send_els(adapter, d_id, els, job->timeout / HZ); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1032 | } |
| 1033 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 1034 | static int zfcp_fc_exec_ct_job(struct bsg_job *job, |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1035 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1036 | { |
| 1037 | int ret; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1038 | struct zfcp_fsf_ct_els *ct = job->dd_data; |
| 1039 | struct zfcp_fc_wka_port *wka_port; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1040 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 1041 | wka_port = zfcp_fc_job_wka_port(job); |
| 1042 | if (!wka_port) |
| 1043 | return -EINVAL; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1044 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1045 | ret = zfcp_fc_wka_port_get(wka_port); |
| 1046 | if (ret) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1047 | return ret; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1048 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 1049 | ct->handler = zfcp_fc_ct_job_handler; |
Christoph Hellwig | 31156ec | 2018-03-13 17:28:39 +0100 | [diff] [blame] | 1050 | ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->timeout / HZ); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1051 | if (ret) |
| 1052 | zfcp_fc_wka_port_put(wka_port); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1053 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 1054 | return ret; |
| 1055 | } |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1056 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 1057 | int zfcp_fc_exec_bsg_job(struct bsg_job *job) |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1058 | { |
| 1059 | struct Scsi_Host *shost; |
| 1060 | struct zfcp_adapter *adapter; |
| 1061 | struct zfcp_fsf_ct_els *ct_els = job->dd_data; |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 1062 | struct fc_bsg_request *bsg_request = job->request; |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame] | 1063 | struct fc_rport *rport = fc_bsg_to_rport(job); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1064 | |
Johannes Thumshirn | 1d69b12 | 2016-11-17 10:31:15 +0100 | [diff] [blame] | 1065 | shost = rport ? rport_to_shost(rport) : fc_bsg_to_shost(job); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1066 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
| 1067 | |
| 1068 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN)) |
| 1069 | return -EINVAL; |
| 1070 | |
| 1071 | ct_els->req = job->request_payload.sg_list; |
| 1072 | ct_els->resp = job->reply_payload.sg_list; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1073 | ct_els->handler_data = job; |
| 1074 | |
Johannes Thumshirn | 01e0e15 | 2016-11-17 10:31:12 +0100 | [diff] [blame] | 1075 | switch (bsg_request->msgcode) { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 1076 | case FC_BSG_RPT_ELS: |
| 1077 | case FC_BSG_HST_ELS_NOLOGIN: |
| 1078 | return zfcp_fc_exec_els_job(job, adapter); |
| 1079 | case FC_BSG_RPT_CT: |
| 1080 | case FC_BSG_HST_CT: |
| 1081 | return zfcp_fc_exec_ct_job(job, adapter); |
| 1082 | default: |
| 1083 | return -EINVAL; |
| 1084 | } |
| 1085 | } |
| 1086 | |
Johannes Thumshirn | 75cc8cf | 2016-11-17 10:31:19 +0100 | [diff] [blame] | 1087 | int zfcp_fc_timeout_bsg_job(struct bsg_job *job) |
Swen Schillig | 491ca44 | 2010-01-14 17:19:01 +0100 | [diff] [blame] | 1088 | { |
| 1089 | /* hardware tracks timeout, reset bsg timeout to not interfere */ |
| 1090 | return -EAGAIN; |
| 1091 | } |
| 1092 | |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1093 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) |
| 1094 | { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1095 | struct zfcp_fc_wka_ports *wka_ports; |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1096 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 1097 | wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1098 | if (!wka_ports) |
| 1099 | return -ENOMEM; |
| 1100 | |
| 1101 | adapter->gs = wka_ports; |
| 1102 | zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter); |
| 1103 | zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter); |
| 1104 | zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter); |
| 1105 | zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 1106 | |
| 1107 | return 0; |
| 1108 | } |
| 1109 | |
| 1110 | void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter) |
| 1111 | { |
| 1112 | kfree(adapter->gs); |
| 1113 | adapter->gs = NULL; |
| 1114 | } |
| 1115 | |