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