Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * zfcp device driver |
| 3 | * |
| 4 | * Fibre Channel related functions for the zfcp device driver. |
| 5 | * |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 6 | * Copyright IBM Corporation 2008, 2010 |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Christof Schmitt | ecf39d4 | 2008-12-25 13:39:53 +0100 | [diff] [blame] | 9 | #define KMSG_COMPONENT "zfcp" |
| 10 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 11 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 12 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 14 | #include <scsi/fc/fc_els.h> |
| 15 | #include <scsi/libfc.h> |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 16 | #include "zfcp_ext.h" |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 17 | #include "zfcp_fc.h" |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 18 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 19 | static u32 zfcp_fc_rscn_range_mask[] = { |
| 20 | [ELS_ADDR_FMT_PORT] = 0xFFFFFF, |
| 21 | [ELS_ADDR_FMT_AREA] = 0xFFFF00, |
| 22 | [ELS_ADDR_FMT_DOM] = 0xFF0000, |
| 23 | [ELS_ADDR_FMT_FAB] = 0x000000, |
Christof Schmitt | e0d7fcb | 2008-12-19 16:56:58 +0100 | [diff] [blame] | 24 | }; |
| 25 | |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 26 | /** |
| 27 | * zfcp_fc_post_event - post event to userspace via fc_transport |
| 28 | * @work: work struct with enqueued events |
| 29 | */ |
| 30 | void zfcp_fc_post_event(struct work_struct *work) |
| 31 | { |
| 32 | struct zfcp_fc_event *event = NULL, *tmp = NULL; |
| 33 | LIST_HEAD(tmp_lh); |
| 34 | struct zfcp_fc_events *events = container_of(work, |
| 35 | struct zfcp_fc_events, work); |
| 36 | struct zfcp_adapter *adapter = container_of(events, struct zfcp_adapter, |
| 37 | events); |
| 38 | |
| 39 | spin_lock_bh(&events->list_lock); |
| 40 | list_splice_init(&events->list, &tmp_lh); |
| 41 | spin_unlock_bh(&events->list_lock); |
| 42 | |
| 43 | list_for_each_entry_safe(event, tmp, &tmp_lh, list) { |
| 44 | fc_host_post_event(adapter->scsi_host, fc_get_event_number(), |
| 45 | event->code, event->data); |
| 46 | list_del(&event->list); |
| 47 | kfree(event); |
| 48 | } |
| 49 | |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * zfcp_fc_enqueue_event - safely enqueue FC HBA API event from irq context |
| 54 | * @adapter: The adapter where to enqueue the event |
| 55 | * @event_code: The event code (as defined in fc_host_event_code in |
| 56 | * scsi_transport_fc.h) |
| 57 | * @event_data: The event data (e.g. n_port page in case of els) |
| 58 | */ |
| 59 | void zfcp_fc_enqueue_event(struct zfcp_adapter *adapter, |
| 60 | enum fc_host_event_code event_code, u32 event_data) |
| 61 | { |
| 62 | struct zfcp_fc_event *event; |
| 63 | |
| 64 | event = kmalloc(sizeof(struct zfcp_fc_event), GFP_ATOMIC); |
| 65 | if (!event) |
| 66 | return; |
| 67 | |
| 68 | event->code = event_code; |
| 69 | event->data = event_data; |
| 70 | |
| 71 | spin_lock(&adapter->events.list_lock); |
| 72 | list_add_tail(&event->list, &adapter->events.list); |
| 73 | spin_unlock(&adapter->events.list_lock); |
| 74 | |
| 75 | queue_work(adapter->work_queue, &adapter->events.work); |
| 76 | } |
| 77 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 78 | 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] | 79 | { |
| 80 | if (mutex_lock_interruptible(&wka_port->mutex)) |
| 81 | return -ERESTARTSYS; |
| 82 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 83 | if (wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE || |
| 84 | wka_port->status == ZFCP_FC_WKA_PORT_CLOSING) { |
| 85 | wka_port->status = ZFCP_FC_WKA_PORT_OPENING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 86 | if (zfcp_fsf_open_wka_port(wka_port)) |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 87 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | mutex_unlock(&wka_port->mutex); |
| 91 | |
Swen Schillig | 27f492c | 2009-07-13 15:06:13 +0200 | [diff] [blame] | 92 | wait_event(wka_port->completion_wq, |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 93 | wka_port->status == ZFCP_FC_WKA_PORT_ONLINE || |
| 94 | wka_port->status == ZFCP_FC_WKA_PORT_OFFLINE); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 95 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 96 | if (wka_port->status == ZFCP_FC_WKA_PORT_ONLINE) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 97 | atomic_inc(&wka_port->refcount); |
| 98 | return 0; |
| 99 | } |
| 100 | return -EIO; |
| 101 | } |
| 102 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 103 | static void zfcp_fc_wka_port_offline(struct work_struct *work) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 104 | { |
Jean Delvare | bf6aede | 2009-04-02 16:56:54 -0700 | [diff] [blame] | 105 | struct delayed_work *dw = to_delayed_work(work); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 106 | struct zfcp_fc_wka_port *wka_port = |
| 107 | container_of(dw, struct zfcp_fc_wka_port, work); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 108 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 109 | mutex_lock(&wka_port->mutex); |
| 110 | if ((atomic_read(&wka_port->refcount) != 0) || |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 111 | (wka_port->status != ZFCP_FC_WKA_PORT_ONLINE)) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 112 | goto out; |
| 113 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 114 | wka_port->status = ZFCP_FC_WKA_PORT_CLOSING; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 115 | if (zfcp_fsf_close_wka_port(wka_port)) { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 116 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 117 | wake_up(&wka_port->completion_wq); |
| 118 | } |
| 119 | out: |
| 120 | mutex_unlock(&wka_port->mutex); |
| 121 | } |
| 122 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 123 | 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] | 124 | { |
| 125 | if (atomic_dec_return(&wka_port->refcount) != 0) |
| 126 | return; |
Martin Olsson | 19af5cd | 2009-04-23 11:37:37 +0200 | [diff] [blame] | 127 | /* wait 10 milliseconds, other reqs might pop in */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 128 | schedule_delayed_work(&wka_port->work, HZ / 100); |
| 129 | } |
| 130 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 131 | 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] | 132 | struct zfcp_adapter *adapter) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 133 | { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 134 | init_waitqueue_head(&wka_port->completion_wq); |
| 135 | |
| 136 | wka_port->adapter = adapter; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 137 | wka_port->d_id = d_id; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 138 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 139 | wka_port->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 140 | atomic_set(&wka_port->refcount, 0); |
| 141 | mutex_init(&wka_port->mutex); |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 142 | INIT_DELAYED_WORK(&wka_port->work, zfcp_fc_wka_port_offline); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 143 | } |
| 144 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 145 | 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] | 146 | { |
| 147 | cancel_delayed_work_sync(&wka->work); |
| 148 | mutex_lock(&wka->mutex); |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 149 | wka->status = ZFCP_FC_WKA_PORT_OFFLINE; |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 150 | mutex_unlock(&wka->mutex); |
| 151 | } |
| 152 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 153 | 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] | 154 | { |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 155 | if (!gs) |
| 156 | return; |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 157 | zfcp_fc_wka_port_force_offline(&gs->ms); |
| 158 | zfcp_fc_wka_port_force_offline(&gs->ts); |
| 159 | zfcp_fc_wka_port_force_offline(&gs->ds); |
| 160 | zfcp_fc_wka_port_force_offline(&gs->as); |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 161 | } |
| 162 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 163 | 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] | 164 | struct fc_els_rscn_page *page) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 165 | { |
| 166 | unsigned long flags; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 167 | struct zfcp_adapter *adapter = fsf_req->adapter; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 168 | struct zfcp_port *port; |
| 169 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 170 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 171 | list_for_each_entry(port, &adapter->port_list, list) { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 172 | if ((port->d_id & range) == (ntoh24(page->rscn_fid) & range)) |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 173 | zfcp_fc_test_link(port); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 174 | if (!port->d_id) |
| 175 | zfcp_erp_port_reopen(port, |
| 176 | ZFCP_STATUS_COMMON_ERP_FAILED, |
| 177 | "fcrscn1", NULL); |
| 178 | } |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 179 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req) |
| 183 | { |
| 184 | struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 185 | struct fc_els_rscn *head; |
| 186 | struct fc_els_rscn_page *page; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 187 | u16 i; |
| 188 | u16 no_entries; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 189 | unsigned int afmt; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 190 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 191 | head = (struct fc_els_rscn *) status_buffer->payload.data; |
| 192 | page = (struct fc_els_rscn_page *) head; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 193 | |
| 194 | /* see FC-FS */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 195 | no_entries = head->rscn_plen / sizeof(struct fc_els_rscn_page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 196 | |
| 197 | for (i = 1; i < no_entries; i++) { |
| 198 | /* skip head and start with 1st element */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 199 | page++; |
| 200 | afmt = page->rscn_page_flags & ELS_RSCN_ADDR_FMT_MASK; |
| 201 | _zfcp_fc_incoming_rscn(fsf_req, zfcp_fc_rscn_range_mask[afmt], |
| 202 | page); |
Sven Schuetz | 2d1e547 | 2010-07-16 15:37:39 +0200 | [diff] [blame] | 203 | zfcp_fc_enqueue_event(fsf_req->adapter, FCH_EVT_RSCN, |
| 204 | *(u32 *)page); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 205 | } |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 206 | queue_work(fsf_req->adapter->work_queue, &fsf_req->adapter->scan_work); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 207 | } |
| 208 | |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 209 | 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] | 210 | { |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 211 | unsigned long flags; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 212 | struct zfcp_adapter *adapter = req->adapter; |
| 213 | struct zfcp_port *port; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 214 | |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 215 | read_lock_irqsave(&adapter->port_list_lock, flags); |
| 216 | list_for_each_entry(port, &adapter->port_list, list) |
| 217 | if (port->wwpn == wwpn) { |
| 218 | zfcp_erp_port_forced_reopen(port, 0, "fciwwp1", req); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 219 | break; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 220 | } |
| 221 | read_unlock_irqrestore(&adapter->port_list_lock, flags); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req) |
| 225 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 226 | struct fsf_status_read_buffer *status_buffer; |
| 227 | struct fc_els_flogi *plogi; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 228 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 229 | status_buffer = (struct fsf_status_read_buffer *) req->data; |
| 230 | plogi = (struct fc_els_flogi *) status_buffer->payload.data; |
| 231 | zfcp_fc_incoming_wwpn(req, plogi->fl_wwpn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req) |
| 235 | { |
| 236 | struct fsf_status_read_buffer *status_buffer = |
| 237 | (struct fsf_status_read_buffer *)req->data; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 238 | struct fc_els_logo *logo = |
| 239 | (struct fc_els_logo *) status_buffer->payload.data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 240 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 241 | zfcp_fc_incoming_wwpn(req, logo->fl_n_port_wwn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | /** |
| 245 | * zfcp_fc_incoming_els - handle incoming ELS |
| 246 | * @fsf_req - request which contains incoming ELS |
| 247 | */ |
| 248 | void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req) |
| 249 | { |
| 250 | struct fsf_status_read_buffer *status_buffer = |
| 251 | (struct fsf_status_read_buffer *) fsf_req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 252 | unsigned int els_type = status_buffer->payload.data[0]; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 253 | |
Swen Schillig | 2c55b75 | 2010-12-02 15:16:13 +0100 | [diff] [blame^] | 254 | zfcp_dbf_san_in_els("fciels1", fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 255 | if (els_type == ELS_PLOGI) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 256 | zfcp_fc_incoming_plogi(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 257 | else if (els_type == ELS_LOGO) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 258 | zfcp_fc_incoming_logo(fsf_req); |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 259 | else if (els_type == ELS_RSCN) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 260 | zfcp_fc_incoming_rscn(fsf_req); |
| 261 | } |
| 262 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 263 | static void zfcp_fc_ns_gid_pn_eval(void *data) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 264 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 265 | struct zfcp_fc_gid_pn *gid_pn = data; |
| 266 | struct zfcp_fsf_ct_els *ct = &gid_pn->ct; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 267 | struct zfcp_fc_gid_pn_req *gid_pn_req = sg_virt(ct->req); |
| 268 | struct zfcp_fc_gid_pn_resp *gid_pn_resp = sg_virt(ct->resp); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 269 | struct zfcp_port *port = gid_pn->port; |
| 270 | |
| 271 | if (ct->status) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 272 | return; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 273 | if (gid_pn_resp->ct_hdr.ct_cmd != FC_FS_ACC) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 274 | return; |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 275 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 276 | /* paranoia */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 277 | if (gid_pn_req->gid_pn.fn_wwpn != port->wwpn) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 278 | return; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 279 | /* looks like a valid d_id */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 280 | port->d_id = ntoh24(gid_pn_resp->gid_pn.fp_fid); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 281 | } |
| 282 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 283 | static void zfcp_fc_complete(void *data) |
| 284 | { |
| 285 | complete(data); |
| 286 | } |
| 287 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 288 | static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port, |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 289 | struct zfcp_fc_gid_pn *gid_pn) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 290 | { |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 291 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 292 | DECLARE_COMPLETION_ONSTACK(completion); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 293 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 294 | |
| 295 | /* setup parameters for send generic command */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 296 | gid_pn->port = port; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 297 | gid_pn->ct.handler = zfcp_fc_complete; |
| 298 | gid_pn->ct.handler_data = &completion; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 299 | gid_pn->ct.req = &gid_pn->sg_req; |
| 300 | gid_pn->ct.resp = &gid_pn->sg_resp; |
| 301 | sg_init_one(&gid_pn->sg_req, &gid_pn->gid_pn_req, |
| 302 | sizeof(struct zfcp_fc_gid_pn_req)); |
| 303 | sg_init_one(&gid_pn->sg_resp, &gid_pn->gid_pn_resp, |
| 304 | sizeof(struct zfcp_fc_gid_pn_resp)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 305 | |
| 306 | /* setup nameserver request */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 307 | gid_pn->gid_pn_req.ct_hdr.ct_rev = FC_CT_REV; |
| 308 | gid_pn->gid_pn_req.ct_hdr.ct_fs_type = FC_FST_DIR; |
| 309 | gid_pn->gid_pn_req.ct_hdr.ct_fs_subtype = FC_NS_SUBTYPE; |
| 310 | gid_pn->gid_pn_req.ct_hdr.ct_options = 0; |
| 311 | gid_pn->gid_pn_req.ct_hdr.ct_cmd = FC_NS_GID_PN; |
| 312 | gid_pn->gid_pn_req.ct_hdr.ct_mr_size = ZFCP_FC_CT_SIZE_PAGE / 4; |
| 313 | gid_pn->gid_pn_req.gid_pn.fn_wwpn = port->wwpn; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 314 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 315 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, &gid_pn->ct, |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 316 | adapter->pool.gid_pn_req, |
| 317 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 318 | if (!ret) { |
| 319 | wait_for_completion(&completion); |
| 320 | zfcp_fc_ns_gid_pn_eval(gid_pn); |
| 321 | } |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 322 | return ret; |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 327 | * @port: port where GID_PN request is needed |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 328 | * return: -ENOMEM on error, 0 otherwise |
| 329 | */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 330 | static int zfcp_fc_ns_gid_pn(struct zfcp_port *port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 331 | { |
| 332 | int ret; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 333 | struct zfcp_fc_gid_pn *gid_pn; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 334 | struct zfcp_adapter *adapter = port->adapter; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 335 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 336 | gid_pn = mempool_alloc(adapter->pool.gid_pn, GFP_ATOMIC); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 337 | if (!gid_pn) |
| 338 | return -ENOMEM; |
| 339 | |
| 340 | memset(gid_pn, 0, sizeof(*gid_pn)); |
| 341 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 342 | ret = zfcp_fc_wka_port_get(&adapter->gs->ds); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 343 | if (ret) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 344 | goto out; |
| 345 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 346 | ret = zfcp_fc_ns_gid_pn_request(port, gid_pn); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 347 | |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 348 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 349 | out: |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 350 | mempool_free(gid_pn, adapter->pool.gid_pn); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 351 | return ret; |
| 352 | } |
| 353 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 354 | void zfcp_fc_port_did_lookup(struct work_struct *work) |
| 355 | { |
| 356 | int ret; |
| 357 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 358 | gid_pn_work); |
| 359 | |
| 360 | ret = zfcp_fc_ns_gid_pn(port); |
| 361 | if (ret) { |
| 362 | /* could not issue gid_pn for some reason */ |
| 363 | zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1", NULL); |
| 364 | goto out; |
| 365 | } |
| 366 | |
| 367 | if (!port->d_id) { |
Swen Schillig | edaed85 | 2010-09-08 14:40:01 +0200 | [diff] [blame] | 368 | zfcp_erp_set_port_status(port, ZFCP_STATUS_COMMON_ERP_FAILED); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 369 | goto out; |
| 370 | } |
| 371 | |
| 372 | zfcp_erp_port_reopen(port, 0, "fcgpn_3", NULL); |
| 373 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 374 | put_device(&port->dev); |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 377 | /** |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 378 | * zfcp_fc_trigger_did_lookup - trigger the d_id lookup using a GID_PN request |
| 379 | * @port: The zfcp_port to lookup the d_id for. |
| 380 | */ |
| 381 | void zfcp_fc_trigger_did_lookup(struct zfcp_port *port) |
| 382 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 383 | get_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 384 | if (!queue_work(port->adapter->work_queue, &port->gid_pn_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 385 | put_device(&port->dev); |
Christof Schmitt | 934aeb587 | 2009-10-14 11:00:43 +0200 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | /** |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 389 | * zfcp_fc_plogi_evaluate - evaluate PLOGI playload |
| 390 | * @port: zfcp_port structure |
| 391 | * @plogi: plogi payload |
| 392 | * |
| 393 | * Evaluate PLOGI playload and copy important fields into zfcp_port structure |
| 394 | */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 395 | 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] | 396 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 397 | if (plogi->fl_wwpn != port->wwpn) { |
| 398 | port->d_id = 0; |
| 399 | dev_warn(&port->adapter->ccw_device->dev, |
| 400 | "A port opened with WWPN 0x%016Lx returned data that " |
| 401 | "identifies it as WWPN 0x%016Lx\n", |
| 402 | (unsigned long long) port->wwpn, |
| 403 | (unsigned long long) plogi->fl_wwpn); |
| 404 | return; |
| 405 | } |
| 406 | |
| 407 | port->wwnn = plogi->fl_wwnn; |
| 408 | port->maxframe_size = plogi->fl_csp.sp_bb_data; |
| 409 | |
| 410 | if (plogi->fl_cssp[0].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 411 | port->supported_classes |= FC_COS_CLASS1; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 412 | if (plogi->fl_cssp[1].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 413 | port->supported_classes |= FC_COS_CLASS2; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 414 | if (plogi->fl_cssp[2].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 415 | port->supported_classes |= FC_COS_CLASS3; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 416 | if (plogi->fl_cssp[3].cp_class & FC_CPC_VALID) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 417 | port->supported_classes |= FC_COS_CLASS4; |
| 418 | } |
| 419 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 420 | static void zfcp_fc_adisc_handler(void *data) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 421 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 422 | struct zfcp_fc_els_adisc *adisc = data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 423 | struct zfcp_port *port = adisc->els.port; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 424 | struct fc_els_adisc *adisc_resp = &adisc->adisc_resp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 425 | |
Christof Schmitt | 3968ce8 | 2008-07-02 10:56:32 +0200 | [diff] [blame] | 426 | if (adisc->els.status) { |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 427 | /* request rejected or timed out */ |
Swen Schillig | 5b43e71 | 2009-04-17 15:08:10 +0200 | [diff] [blame] | 428 | zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
| 429 | "fcadh_1", NULL); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 430 | goto out; |
| 431 | } |
| 432 | |
| 433 | if (!port->wwnn) |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 434 | port->wwnn = adisc_resp->adisc_wwnn; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 435 | |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 436 | if ((port->wwpn != adisc_resp->adisc_wwpn) || |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 437 | !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) { |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 438 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
| 439 | "fcadh_2", NULL); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 440 | goto out; |
| 441 | } |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 442 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 443 | /* port is good, unblock rport without going through erp */ |
| 444 | zfcp_scsi_schedule_rport_register(port); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 445 | out: |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 446 | atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 447 | put_device(&port->dev); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 448 | kmem_cache_free(zfcp_data.adisc_cache, adisc); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 449 | } |
| 450 | |
| 451 | static int zfcp_fc_adisc(struct zfcp_port *port) |
| 452 | { |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 453 | struct zfcp_fc_els_adisc *adisc; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 454 | struct zfcp_adapter *adapter = port->adapter; |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 455 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 456 | |
Christof Schmitt | 6e51f08 | 2010-04-30 18:09:37 +0200 | [diff] [blame] | 457 | adisc = kmem_cache_zalloc(zfcp_data.adisc_cache, GFP_ATOMIC); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 458 | if (!adisc) |
| 459 | return -ENOMEM; |
| 460 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 461 | adisc->els.port = port; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 462 | adisc->els.req = &adisc->req; |
| 463 | adisc->els.resp = &adisc->resp; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 464 | sg_init_one(adisc->els.req, &adisc->adisc_req, |
| 465 | sizeof(struct fc_els_adisc)); |
| 466 | sg_init_one(adisc->els.resp, &adisc->adisc_resp, |
| 467 | sizeof(struct fc_els_adisc)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 468 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 469 | adisc->els.handler = zfcp_fc_adisc_handler; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 470 | adisc->els.handler_data = adisc; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 471 | |
| 472 | /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports |
| 473 | without FC-AL-2 capability, so we don't set it */ |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 474 | adisc->adisc_req.adisc_wwpn = fc_host_port_name(adapter->scsi_host); |
| 475 | adisc->adisc_req.adisc_wwnn = fc_host_node_name(adapter->scsi_host); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 476 | adisc->adisc_req.adisc_cmd = ELS_ADISC; |
Christof Schmitt | 9d05ce2 | 2009-11-24 16:54:09 +0100 | [diff] [blame] | 477 | hton24(adisc->adisc_req.adisc_port_id, |
| 478 | fc_host_port_id(adapter->scsi_host)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 479 | |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 480 | ret = zfcp_fsf_send_els(adapter, port->d_id, &adisc->els, |
| 481 | ZFCP_FC_CTELS_TMO); |
Christof Schmitt | ee74462 | 2009-11-24 16:54:14 +0100 | [diff] [blame] | 482 | if (ret) |
| 483 | kmem_cache_free(zfcp_data.adisc_cache, adisc); |
| 484 | |
| 485 | return ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 486 | } |
| 487 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 488 | void zfcp_fc_link_test_work(struct work_struct *work) |
| 489 | { |
| 490 | struct zfcp_port *port = |
| 491 | container_of(work, struct zfcp_port, test_link_work); |
| 492 | int retval; |
| 493 | |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 494 | get_device(&port->dev); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 495 | port->rport_task = RPORT_DEL; |
| 496 | zfcp_scsi_rport_work(&port->rport_work); |
| 497 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 498 | /* only issue one test command at one time per port */ |
| 499 | if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST) |
| 500 | goto out; |
| 501 | |
| 502 | atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
| 503 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 504 | retval = zfcp_fc_adisc(port); |
| 505 | if (retval == 0) |
| 506 | return; |
| 507 | |
| 508 | /* send of ADISC was not possible */ |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 509 | atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 510 | zfcp_erp_port_forced_reopen(port, 0, "fcltwk1", NULL); |
| 511 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 512 | out: |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 513 | put_device(&port->dev); |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 514 | } |
| 515 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 516 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 517 | * zfcp_fc_test_link - lightweight link test procedure |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 518 | * @port: port to be tested |
| 519 | * |
| 520 | * Test status of a link to a remote port using the ELS command ADISC. |
| 521 | * If there is a problem with the remote port, error recovery steps |
| 522 | * will be triggered. |
| 523 | */ |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 524 | void zfcp_fc_test_link(struct zfcp_port *port) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 525 | { |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 526 | get_device(&port->dev); |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 527 | if (!queue_work(port->adapter->work_queue, &port->test_link_work)) |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 528 | put_device(&port->dev); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 529 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 530 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 531 | static void zfcp_free_sg_env(struct zfcp_fc_gpn_ft *gpn_ft, int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 532 | { |
| 533 | struct scatterlist *sg = &gpn_ft->sg_req; |
| 534 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 535 | kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg)); |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 536 | zfcp_sg_free_table(gpn_ft->sg_resp, buf_num); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 537 | |
| 538 | kfree(gpn_ft); |
| 539 | } |
| 540 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 541 | static struct zfcp_fc_gpn_ft *zfcp_alloc_sg_env(int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 542 | { |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 543 | struct zfcp_fc_gpn_ft *gpn_ft; |
| 544 | struct zfcp_fc_gpn_ft_req *req; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 545 | |
| 546 | gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL); |
| 547 | if (!gpn_ft) |
| 548 | return NULL; |
| 549 | |
Christof Schmitt | 6e51f08 | 2010-04-30 18:09:37 +0200 | [diff] [blame] | 550 | req = kmem_cache_zalloc(zfcp_data.gpn_ft_cache, GFP_KERNEL); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 551 | if (!req) { |
| 552 | kfree(gpn_ft); |
| 553 | gpn_ft = NULL; |
| 554 | goto out; |
| 555 | } |
| 556 | sg_init_one(&gpn_ft->sg_req, req, sizeof(*req)); |
| 557 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 558 | if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) { |
| 559 | zfcp_free_sg_env(gpn_ft, buf_num); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 560 | gpn_ft = NULL; |
| 561 | } |
| 562 | out: |
| 563 | return gpn_ft; |
| 564 | } |
| 565 | |
| 566 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 567 | static int zfcp_fc_send_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft, |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 568 | struct zfcp_adapter *adapter, int max_bytes) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 569 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 570 | struct zfcp_fsf_ct_els *ct = &gpn_ft->ct; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 571 | struct zfcp_fc_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 572 | DECLARE_COMPLETION_ONSTACK(completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 573 | int ret; |
| 574 | |
| 575 | /* prepare CT IU for GPN_FT */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 576 | req->ct_hdr.ct_rev = FC_CT_REV; |
| 577 | req->ct_hdr.ct_fs_type = FC_FST_DIR; |
| 578 | req->ct_hdr.ct_fs_subtype = FC_NS_SUBTYPE; |
| 579 | req->ct_hdr.ct_options = 0; |
| 580 | req->ct_hdr.ct_cmd = FC_NS_GPN_FT; |
| 581 | req->ct_hdr.ct_mr_size = max_bytes / 4; |
| 582 | req->gpn_ft.fn_domain_id_scope = 0; |
| 583 | req->gpn_ft.fn_area_id_scope = 0; |
| 584 | req->gpn_ft.fn_fc4_type = FC_TYPE_FCP; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 585 | |
| 586 | /* prepare zfcp_send_ct */ |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 587 | ct->handler = zfcp_fc_complete; |
| 588 | ct->handler_data = &completion; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 589 | ct->req = &gpn_ft->sg_req; |
| 590 | ct->resp = gpn_ft->sg_resp; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 591 | |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 592 | ret = zfcp_fsf_send_ct(&adapter->gs->ds, ct, NULL, |
| 593 | ZFCP_FC_CTELS_TMO); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 594 | if (!ret) |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 595 | wait_for_completion(&completion); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 596 | return ret; |
| 597 | } |
| 598 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 599 | 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] | 600 | { |
Martin Petermann | 6ab35c0 | 2009-04-17 15:08:13 +0200 | [diff] [blame] | 601 | if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC)) |
| 602 | return; |
| 603 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 604 | atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status); |
| 605 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 606 | if ((port->supported_classes != 0) || |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 607 | !list_empty(&port->unit_list)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 608 | return; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 609 | |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 610 | list_move_tail(&port->list, lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 611 | } |
| 612 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 613 | static int zfcp_fc_eval_gpn_ft(struct zfcp_fc_gpn_ft *gpn_ft, |
| 614 | struct zfcp_adapter *adapter, int max_entries) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 615 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 616 | struct zfcp_fsf_ct_els *ct = &gpn_ft->ct; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 617 | struct scatterlist *sg = gpn_ft->sg_resp; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 618 | struct fc_ct_hdr *hdr = sg_virt(sg); |
| 619 | struct fc_gpn_ft_resp *acc = sg_virt(sg); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 620 | struct zfcp_port *port, *tmp; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 621 | unsigned long flags; |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 622 | LIST_HEAD(remove_lh); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 623 | u32 d_id; |
Christof Schmitt | 47f7bba | 2008-08-21 13:43:33 +0200 | [diff] [blame] | 624 | int ret = 0, x, last = 0; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 625 | |
| 626 | if (ct->status) |
| 627 | return -EIO; |
| 628 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 629 | if (hdr->ct_cmd != FC_FS_ACC) { |
| 630 | if (hdr->ct_reason == FC_BA_RJT_UNABLE) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 631 | return -EAGAIN; /* might be a temporary condition */ |
| 632 | return -EIO; |
| 633 | } |
| 634 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 635 | if (hdr->ct_mr_size) { |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 636 | dev_warn(&adapter->ccw_device->dev, |
| 637 | "The name server reported %d words residual data\n", |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 638 | hdr->ct_mr_size); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 639 | return -E2BIG; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 640 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 641 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 642 | /* first entry is the header */ |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 643 | for (x = 1; x < max_entries && !last; x++) { |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 644 | if (x % (ZFCP_FC_GPN_FT_ENT_PAGE + 1)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 645 | acc++; |
| 646 | else |
| 647 | acc = sg_virt(++sg); |
| 648 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 649 | last = acc->fp_flags & FC_NS_FID_LAST; |
| 650 | d_id = ntoh24(acc->fp_fid); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 651 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 652 | /* don't attach ports with a well known address */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 653 | if (d_id >= FC_FID_WELL_KNOWN_BASE) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 654 | continue; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 655 | /* skip the adapter's port and known remote ports */ |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 656 | if (acc->fp_wwpn == fc_host_port_name(adapter->scsi_host)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 657 | continue; |
| 658 | |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 659 | port = zfcp_port_enqueue(adapter, acc->fp_wwpn, |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 660 | ZFCP_STATUS_COMMON_NOESC, d_id); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 661 | if (!IS_ERR(port)) |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 662 | zfcp_erp_port_reopen(port, 0, "fcegpf1", NULL); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 663 | else if (PTR_ERR(port) != -EEXIST) |
| 664 | ret = PTR_ERR(port); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 665 | } |
| 666 | |
| 667 | zfcp_erp_wait(adapter); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 668 | write_lock_irqsave(&adapter->port_list_lock, flags); |
| 669 | list_for_each_entry_safe(port, tmp, &adapter->port_list, list) |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 670 | zfcp_fc_validate_port(port, &remove_lh); |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 671 | write_unlock_irqrestore(&adapter->port_list_lock, flags); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 672 | |
| 673 | list_for_each_entry_safe(port, tmp, &remove_lh, list) { |
| 674 | zfcp_erp_port_shutdown(port, 0, "fcegpf2", NULL); |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 675 | zfcp_device_unregister(&port->dev, &zfcp_sysfs_port_attrs); |
Swen Schillig | f3450c7 | 2009-11-24 16:53:59 +0100 | [diff] [blame] | 676 | } |
| 677 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 678 | return ret; |
| 679 | } |
| 680 | |
| 681 | /** |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 682 | * zfcp_fc_scan_ports - scan remote ports and attach new ports |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 683 | * @work: reference to scheduled work |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 684 | */ |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 685 | void zfcp_fc_scan_ports(struct work_struct *work) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 686 | { |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 687 | struct zfcp_adapter *adapter = container_of(work, struct zfcp_adapter, |
| 688 | scan_work); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 689 | int ret, i; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 690 | struct zfcp_fc_gpn_ft *gpn_ft; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 691 | int chain, max_entries, buf_num, max_bytes; |
| 692 | |
| 693 | chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS; |
Christof Schmitt | dbf5dfe | 2009-11-24 16:54:10 +0100 | [diff] [blame] | 694 | buf_num = chain ? ZFCP_FC_GPN_FT_NUM_BUFS : 1; |
| 695 | max_entries = chain ? ZFCP_FC_GPN_FT_MAX_ENT : ZFCP_FC_GPN_FT_ENT_PAGE; |
| 696 | max_bytes = chain ? ZFCP_FC_GPN_FT_MAX_SIZE : ZFCP_FC_CT_SIZE_PAGE; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 697 | |
Swen Schillig | 306b6ed | 2009-04-17 15:08:02 +0200 | [diff] [blame] | 698 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 699 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 700 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 701 | |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 702 | if (zfcp_fc_wka_port_get(&adapter->gs->ds)) |
| 703 | return; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 704 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 705 | gpn_ft = zfcp_alloc_sg_env(buf_num); |
Swen Schillig | 9eae07e | 2009-11-24 16:54:06 +0100 | [diff] [blame] | 706 | if (!gpn_ft) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 707 | goto out; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 708 | |
| 709 | for (i = 0; i < 3; i++) { |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 710 | ret = zfcp_fc_send_gpn_ft(gpn_ft, adapter, max_bytes); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 711 | if (!ret) { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 712 | ret = zfcp_fc_eval_gpn_ft(gpn_ft, adapter, max_entries); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 713 | if (ret == -EAGAIN) |
| 714 | ssleep(1); |
| 715 | else |
| 716 | break; |
| 717 | } |
| 718 | } |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 719 | zfcp_free_sg_env(gpn_ft, buf_num); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 720 | out: |
Swen Schillig | 6f53a2d | 2009-08-18 15:43:23 +0200 | [diff] [blame] | 721 | zfcp_fc_wka_port_put(&adapter->gs->ds); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 722 | } |
| 723 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 724 | static void zfcp_fc_ct_els_job_handler(void *data) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 725 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 726 | struct fc_bsg_job *job = data; |
| 727 | struct zfcp_fsf_ct_els *zfcp_ct_els = job->dd_data; |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 728 | struct fc_bsg_reply *jr = job->reply; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 729 | |
Swen Schillig | 7dec9cf | 2010-01-26 17:49:19 +0100 | [diff] [blame] | 730 | jr->reply_payload_rcv_len = job->reply_payload.payload_len; |
| 731 | jr->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK; |
| 732 | jr->result = zfcp_ct_els->status ? -EIO : 0; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 733 | job->job_done(job); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 734 | } |
| 735 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 736 | static struct zfcp_fc_wka_port *zfcp_fc_job_wka_port(struct fc_bsg_job *job) |
| 737 | { |
| 738 | u32 preamble_word1; |
| 739 | u8 gs_type; |
| 740 | struct zfcp_adapter *adapter; |
| 741 | |
| 742 | preamble_word1 = job->request->rqst_data.r_ct.preamble_word1; |
| 743 | gs_type = (preamble_word1 & 0xff000000) >> 24; |
| 744 | |
| 745 | adapter = (struct zfcp_adapter *) job->shost->hostdata[0]; |
| 746 | |
| 747 | switch (gs_type) { |
| 748 | case FC_FST_ALIAS: |
| 749 | return &adapter->gs->as; |
| 750 | case FC_FST_MGMT: |
| 751 | return &adapter->gs->ms; |
| 752 | case FC_FST_TIME: |
| 753 | return &adapter->gs->ts; |
| 754 | break; |
| 755 | case FC_FST_DIR: |
| 756 | return &adapter->gs->ds; |
| 757 | break; |
| 758 | default: |
| 759 | return NULL; |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | static void zfcp_fc_ct_job_handler(void *data) |
| 764 | { |
| 765 | struct fc_bsg_job *job = data; |
| 766 | struct zfcp_fc_wka_port *wka_port; |
| 767 | |
| 768 | wka_port = zfcp_fc_job_wka_port(job); |
| 769 | zfcp_fc_wka_port_put(wka_port); |
| 770 | |
| 771 | zfcp_fc_ct_els_job_handler(data); |
| 772 | } |
| 773 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 774 | static int zfcp_fc_exec_els_job(struct fc_bsg_job *job, |
| 775 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 776 | { |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 777 | struct zfcp_fsf_ct_els *els = job->dd_data; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 778 | struct fc_rport *rport = job->rport; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 779 | struct zfcp_port *port; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 780 | u32 d_id; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 781 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 782 | if (rport) { |
Swen Schillig | ea945ff | 2009-08-18 15:43:24 +0200 | [diff] [blame] | 783 | port = zfcp_get_port_by_wwpn(adapter, rport->port_name); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 784 | if (!port) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 785 | return -EINVAL; |
Swen Schillig | ecf0c77 | 2009-11-24 16:53:58 +0100 | [diff] [blame] | 786 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 787 | d_id = port->d_id; |
Christof Schmitt | 615f59e | 2010-02-17 11:18:56 +0100 | [diff] [blame] | 788 | put_device(&port->dev); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 789 | } else |
| 790 | d_id = ntoh24(job->request->rqst_data.h_els.port_id); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 791 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 792 | els->handler = zfcp_fc_ct_els_job_handler; |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 793 | return zfcp_fsf_send_els(adapter, d_id, els, job->req->timeout / HZ); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 794 | } |
| 795 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 796 | static int zfcp_fc_exec_ct_job(struct fc_bsg_job *job, |
| 797 | struct zfcp_adapter *adapter) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 798 | { |
| 799 | int ret; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 800 | struct zfcp_fsf_ct_els *ct = job->dd_data; |
| 801 | struct zfcp_fc_wka_port *wka_port; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 802 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 803 | wka_port = zfcp_fc_job_wka_port(job); |
| 804 | if (!wka_port) |
| 805 | return -EINVAL; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 806 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 807 | ret = zfcp_fc_wka_port_get(wka_port); |
| 808 | if (ret) |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 809 | return ret; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 810 | |
Christof Schmitt | f09d545 | 2010-01-13 17:52:36 +0100 | [diff] [blame] | 811 | ct->handler = zfcp_fc_ct_job_handler; |
Swen Schillig | 51375ee | 2010-01-14 17:19:02 +0100 | [diff] [blame] | 812 | ret = zfcp_fsf_send_ct(wka_port, ct, NULL, job->req->timeout / HZ); |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 813 | if (ret) |
| 814 | zfcp_fc_wka_port_put(wka_port); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 815 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 816 | return ret; |
| 817 | } |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 818 | |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 819 | int zfcp_fc_exec_bsg_job(struct fc_bsg_job *job) |
| 820 | { |
| 821 | struct Scsi_Host *shost; |
| 822 | struct zfcp_adapter *adapter; |
| 823 | struct zfcp_fsf_ct_els *ct_els = job->dd_data; |
| 824 | |
| 825 | shost = job->rport ? rport_to_shost(job->rport) : job->shost; |
| 826 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
| 827 | |
| 828 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN)) |
| 829 | return -EINVAL; |
| 830 | |
| 831 | ct_els->req = job->request_payload.sg_list; |
| 832 | ct_els->resp = job->reply_payload.sg_list; |
Christof Schmitt | 7c7dc19 | 2009-11-24 16:54:13 +0100 | [diff] [blame] | 833 | ct_els->handler_data = job; |
| 834 | |
| 835 | switch (job->request->msgcode) { |
| 836 | case FC_BSG_RPT_ELS: |
| 837 | case FC_BSG_HST_ELS_NOLOGIN: |
| 838 | return zfcp_fc_exec_els_job(job, adapter); |
| 839 | case FC_BSG_RPT_CT: |
| 840 | case FC_BSG_HST_CT: |
| 841 | return zfcp_fc_exec_ct_job(job, adapter); |
| 842 | default: |
| 843 | return -EINVAL; |
| 844 | } |
| 845 | } |
| 846 | |
Swen Schillig | 491ca44 | 2010-01-14 17:19:01 +0100 | [diff] [blame] | 847 | int zfcp_fc_timeout_bsg_job(struct fc_bsg_job *job) |
| 848 | { |
| 849 | /* hardware tracks timeout, reset bsg timeout to not interfere */ |
| 850 | return -EAGAIN; |
| 851 | } |
| 852 | |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 853 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) |
| 854 | { |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 855 | struct zfcp_fc_wka_ports *wka_ports; |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 856 | |
Christof Schmitt | bd0072e | 2009-11-24 16:54:11 +0100 | [diff] [blame] | 857 | wka_ports = kzalloc(sizeof(struct zfcp_fc_wka_ports), GFP_KERNEL); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 858 | if (!wka_ports) |
| 859 | return -ENOMEM; |
| 860 | |
| 861 | adapter->gs = wka_ports; |
| 862 | zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter); |
| 863 | zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter); |
| 864 | zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter); |
| 865 | zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter); |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame] | 866 | |
| 867 | return 0; |
| 868 | } |
| 869 | |
| 870 | void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter) |
| 871 | { |
| 872 | kfree(adapter->gs); |
| 873 | adapter->gs = NULL; |
| 874 | } |
| 875 | |