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 | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 6 | * Copyright IBM Corporation 2008, 2009 |
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 | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 12 | #include "zfcp_ext.h" |
| 13 | |
Christof Schmitt | e0d7fcb | 2008-12-19 16:56:58 +0100 | [diff] [blame] | 14 | enum rscn_address_format { |
| 15 | RSCN_PORT_ADDRESS = 0x0, |
| 16 | RSCN_AREA_ADDRESS = 0x1, |
| 17 | RSCN_DOMAIN_ADDRESS = 0x2, |
| 18 | RSCN_FABRIC_ADDRESS = 0x3, |
| 19 | }; |
| 20 | |
| 21 | static u32 rscn_range_mask[] = { |
| 22 | [RSCN_PORT_ADDRESS] = 0xFFFFFF, |
| 23 | [RSCN_AREA_ADDRESS] = 0xFFFF00, |
| 24 | [RSCN_DOMAIN_ADDRESS] = 0xFF0000, |
| 25 | [RSCN_FABRIC_ADDRESS] = 0x000000, |
| 26 | }; |
| 27 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 28 | struct gpn_ft_resp_acc { |
| 29 | u8 control; |
| 30 | u8 port_id[3]; |
| 31 | u8 reserved[4]; |
| 32 | u64 wwpn; |
| 33 | } __attribute__ ((packed)); |
| 34 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 35 | #define ZFCP_CT_SIZE_ONE_PAGE (PAGE_SIZE - sizeof(struct ct_hdr)) |
| 36 | #define ZFCP_GPN_FT_ENTRIES (ZFCP_CT_SIZE_ONE_PAGE \ |
| 37 | / sizeof(struct gpn_ft_resp_acc)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 38 | #define ZFCP_GPN_FT_BUFFERS 4 |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 39 | #define ZFCP_GPN_FT_MAX_SIZE (ZFCP_GPN_FT_BUFFERS * PAGE_SIZE \ |
| 40 | - sizeof(struct ct_hdr)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 41 | #define ZFCP_GPN_FT_MAX_ENTRIES ZFCP_GPN_FT_BUFFERS * (ZFCP_GPN_FT_ENTRIES + 1) |
| 42 | |
| 43 | struct ct_iu_gpn_ft_resp { |
| 44 | struct ct_hdr header; |
| 45 | struct gpn_ft_resp_acc accept[ZFCP_GPN_FT_ENTRIES]; |
| 46 | } __attribute__ ((packed)); |
| 47 | |
| 48 | struct zfcp_gpn_ft { |
| 49 | struct zfcp_send_ct ct; |
| 50 | struct scatterlist sg_req; |
| 51 | struct scatterlist sg_resp[ZFCP_GPN_FT_BUFFERS]; |
| 52 | }; |
| 53 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 54 | struct zfcp_fc_ns_handler_data { |
| 55 | struct completion done; |
| 56 | void (*handler)(unsigned long); |
| 57 | unsigned long handler_data; |
| 58 | }; |
| 59 | |
| 60 | static int zfcp_wka_port_get(struct zfcp_wka_port *wka_port) |
| 61 | { |
| 62 | if (mutex_lock_interruptible(&wka_port->mutex)) |
| 63 | return -ERESTARTSYS; |
| 64 | |
Christof Schmitt | 1c1cba1 | 2008-11-26 18:07:36 +0100 | [diff] [blame] | 65 | if (wka_port->status == ZFCP_WKA_PORT_OFFLINE || |
| 66 | wka_port->status == ZFCP_WKA_PORT_CLOSING) { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 67 | wka_port->status = ZFCP_WKA_PORT_OPENING; |
| 68 | if (zfcp_fsf_open_wka_port(wka_port)) |
| 69 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 70 | } |
| 71 | |
| 72 | mutex_unlock(&wka_port->mutex); |
| 73 | |
Swen Schillig | 27f492c | 2009-07-13 15:06:13 +0200 | [diff] [blame] | 74 | wait_event(wka_port->completion_wq, |
| 75 | wka_port->status == ZFCP_WKA_PORT_ONLINE || |
| 76 | wka_port->status == ZFCP_WKA_PORT_OFFLINE); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 77 | |
| 78 | if (wka_port->status == ZFCP_WKA_PORT_ONLINE) { |
| 79 | atomic_inc(&wka_port->refcount); |
| 80 | return 0; |
| 81 | } |
| 82 | return -EIO; |
| 83 | } |
| 84 | |
| 85 | static void zfcp_wka_port_offline(struct work_struct *work) |
| 86 | { |
Jean Delvare | bf6aede | 2009-04-02 16:56:54 -0700 | [diff] [blame] | 87 | struct delayed_work *dw = to_delayed_work(work); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 88 | struct zfcp_wka_port *wka_port = |
| 89 | container_of(dw, struct zfcp_wka_port, work); |
| 90 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 91 | mutex_lock(&wka_port->mutex); |
| 92 | if ((atomic_read(&wka_port->refcount) != 0) || |
| 93 | (wka_port->status != ZFCP_WKA_PORT_ONLINE)) |
| 94 | goto out; |
| 95 | |
| 96 | wka_port->status = ZFCP_WKA_PORT_CLOSING; |
| 97 | if (zfcp_fsf_close_wka_port(wka_port)) { |
| 98 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 99 | wake_up(&wka_port->completion_wq); |
| 100 | } |
| 101 | out: |
| 102 | mutex_unlock(&wka_port->mutex); |
| 103 | } |
| 104 | |
| 105 | static void zfcp_wka_port_put(struct zfcp_wka_port *wka_port) |
| 106 | { |
| 107 | if (atomic_dec_return(&wka_port->refcount) != 0) |
| 108 | return; |
Martin Olsson | 19af5cd | 2009-04-23 11:37:37 +0200 | [diff] [blame] | 109 | /* wait 10 milliseconds, other reqs might pop in */ |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 110 | schedule_delayed_work(&wka_port->work, HZ / 100); |
| 111 | } |
| 112 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 113 | static void zfcp_fc_wka_port_init(struct zfcp_wka_port *wka_port, u32 d_id, |
| 114 | struct zfcp_adapter *adapter) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 115 | { |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 116 | init_waitqueue_head(&wka_port->completion_wq); |
| 117 | |
| 118 | wka_port->adapter = adapter; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 119 | wka_port->d_id = d_id; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 120 | |
| 121 | wka_port->status = ZFCP_WKA_PORT_OFFLINE; |
| 122 | atomic_set(&wka_port->refcount, 0); |
| 123 | mutex_init(&wka_port->mutex); |
| 124 | INIT_DELAYED_WORK(&wka_port->work, zfcp_wka_port_offline); |
| 125 | } |
| 126 | |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 127 | static void zfcp_fc_wka_port_force_offline(struct zfcp_wka_port *wka) |
Swen Schillig | 828bc12 | 2009-04-17 15:08:05 +0200 | [diff] [blame] | 128 | { |
| 129 | cancel_delayed_work_sync(&wka->work); |
| 130 | mutex_lock(&wka->mutex); |
| 131 | wka->status = ZFCP_WKA_PORT_OFFLINE; |
| 132 | mutex_unlock(&wka->mutex); |
| 133 | } |
| 134 | |
Christof Schmitt | 55c770f | 2009-08-18 15:43:12 +0200 | [diff] [blame] | 135 | void zfcp_fc_wka_ports_force_offline(struct zfcp_wka_ports *gs) |
| 136 | { |
| 137 | zfcp_fc_wka_port_force_offline(&gs->ms); |
| 138 | zfcp_fc_wka_port_force_offline(&gs->ts); |
| 139 | zfcp_fc_wka_port_force_offline(&gs->ds); |
| 140 | zfcp_fc_wka_port_force_offline(&gs->as); |
| 141 | zfcp_fc_wka_port_force_offline(&gs->ks); |
| 142 | } |
| 143 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 144 | static void _zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req, u32 range, |
| 145 | struct fcp_rscn_element *elem) |
| 146 | { |
| 147 | unsigned long flags; |
| 148 | struct zfcp_port *port; |
| 149 | |
| 150 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 151 | list_for_each_entry(port, &fsf_req->adapter->port_list_head, list) { |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 152 | if ((port->d_id & range) == (elem->nport_did & range)) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 153 | zfcp_test_link(port); |
Swen Schillig | ea460a8 | 2009-05-15 13:18:20 +0200 | [diff] [blame] | 154 | if (!port->d_id) |
| 155 | zfcp_erp_port_reopen(port, |
| 156 | ZFCP_STATUS_COMMON_ERP_FAILED, |
| 157 | "fcrscn1", NULL); |
| 158 | } |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 159 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 160 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 161 | } |
| 162 | |
| 163 | static void zfcp_fc_incoming_rscn(struct zfcp_fsf_req *fsf_req) |
| 164 | { |
| 165 | struct fsf_status_read_buffer *status_buffer = (void *)fsf_req->data; |
| 166 | struct fcp_rscn_head *fcp_rscn_head; |
| 167 | struct fcp_rscn_element *fcp_rscn_element; |
| 168 | u16 i; |
| 169 | u16 no_entries; |
| 170 | u32 range_mask; |
| 171 | |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 172 | fcp_rscn_head = (struct fcp_rscn_head *) status_buffer->payload.data; |
| 173 | fcp_rscn_element = (struct fcp_rscn_element *) fcp_rscn_head; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 174 | |
| 175 | /* see FC-FS */ |
| 176 | no_entries = fcp_rscn_head->payload_len / |
| 177 | sizeof(struct fcp_rscn_element); |
| 178 | |
| 179 | for (i = 1; i < no_entries; i++) { |
| 180 | /* skip head and start with 1st element */ |
| 181 | fcp_rscn_element++; |
Christof Schmitt | e0d7fcb | 2008-12-19 16:56:58 +0100 | [diff] [blame] | 182 | range_mask = rscn_range_mask[fcp_rscn_element->addr_format]; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 183 | _zfcp_fc_incoming_rscn(fsf_req, range_mask, fcp_rscn_element); |
| 184 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 185 | schedule_work(&fsf_req->adapter->scan_work); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Swen Schillig | 7ba58c9 | 2008-10-01 12:42:18 +0200 | [diff] [blame] | 188 | 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] | 189 | { |
| 190 | struct zfcp_adapter *adapter = req->adapter; |
| 191 | struct zfcp_port *port; |
| 192 | unsigned long flags; |
| 193 | |
| 194 | read_lock_irqsave(&zfcp_data.config_lock, flags); |
| 195 | list_for_each_entry(port, &adapter->port_list_head, list) |
| 196 | if (port->wwpn == wwpn) |
| 197 | break; |
| 198 | read_unlock_irqrestore(&zfcp_data.config_lock, flags); |
| 199 | |
| 200 | if (port && (port->wwpn == wwpn)) |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 201 | zfcp_erp_port_forced_reopen(port, 0, "fciwwp1", req); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | static void zfcp_fc_incoming_plogi(struct zfcp_fsf_req *req) |
| 205 | { |
| 206 | struct fsf_status_read_buffer *status_buffer = |
| 207 | (struct fsf_status_read_buffer *)req->data; |
| 208 | struct fsf_plogi *els_plogi = |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 209 | (struct fsf_plogi *) status_buffer->payload.data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 210 | |
| 211 | zfcp_fc_incoming_wwpn(req, els_plogi->serv_param.wwpn); |
| 212 | } |
| 213 | |
| 214 | static void zfcp_fc_incoming_logo(struct zfcp_fsf_req *req) |
| 215 | { |
| 216 | struct fsf_status_read_buffer *status_buffer = |
| 217 | (struct fsf_status_read_buffer *)req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 218 | struct fcp_logo *els_logo = |
| 219 | (struct fcp_logo *) status_buffer->payload.data; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 220 | |
| 221 | zfcp_fc_incoming_wwpn(req, els_logo->nport_wwpn); |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * zfcp_fc_incoming_els - handle incoming ELS |
| 226 | * @fsf_req - request which contains incoming ELS |
| 227 | */ |
| 228 | void zfcp_fc_incoming_els(struct zfcp_fsf_req *fsf_req) |
| 229 | { |
| 230 | struct fsf_status_read_buffer *status_buffer = |
| 231 | (struct fsf_status_read_buffer *) fsf_req->data; |
Swen Schillig | c41f8cb | 2008-07-02 10:56:39 +0200 | [diff] [blame] | 232 | unsigned int els_type = status_buffer->payload.data[0]; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 233 | |
Swen Schillig | 5771710 | 2009-08-18 15:43:21 +0200 | [diff] [blame] | 234 | zfcp_dbf_san_incoming_els(fsf_req); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 235 | if (els_type == LS_PLOGI) |
| 236 | zfcp_fc_incoming_plogi(fsf_req); |
| 237 | else if (els_type == LS_LOGO) |
| 238 | zfcp_fc_incoming_logo(fsf_req); |
| 239 | else if (els_type == LS_RSCN) |
| 240 | zfcp_fc_incoming_rscn(fsf_req); |
| 241 | } |
| 242 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 243 | static void zfcp_fc_ns_handler(unsigned long data) |
| 244 | { |
| 245 | struct zfcp_fc_ns_handler_data *compl_rec = |
| 246 | (struct zfcp_fc_ns_handler_data *) data; |
| 247 | |
| 248 | if (compl_rec->handler) |
| 249 | compl_rec->handler(compl_rec->handler_data); |
| 250 | |
| 251 | complete(&compl_rec->done); |
| 252 | } |
| 253 | |
| 254 | static void zfcp_fc_ns_gid_pn_eval(unsigned long data) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 255 | { |
| 256 | struct zfcp_gid_pn_data *gid_pn = (struct zfcp_gid_pn_data *) data; |
| 257 | struct zfcp_send_ct *ct = &gid_pn->ct; |
| 258 | struct ct_iu_gid_pn_req *ct_iu_req = sg_virt(ct->req); |
| 259 | struct ct_iu_gid_pn_resp *ct_iu_resp = sg_virt(ct->resp); |
| 260 | struct zfcp_port *port = gid_pn->port; |
| 261 | |
| 262 | if (ct->status) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 263 | return; |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 264 | if (ct_iu_resp->header.cmd_rsp_code != ZFCP_CT_ACCEPT) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 265 | return; |
Christof Schmitt | a5b11dd | 2009-03-02 13:08:54 +0100 | [diff] [blame] | 266 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 267 | /* paranoia */ |
| 268 | if (ct_iu_req->wwpn != port->wwpn) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 269 | return; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 270 | /* looks like a valid d_id */ |
| 271 | port->d_id = ct_iu_resp->d_id & ZFCP_DID_MASK; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 272 | } |
| 273 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 274 | static int zfcp_fc_ns_gid_pn_request(struct zfcp_port *port, |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 275 | struct zfcp_gid_pn_data *gid_pn) |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 276 | { |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 277 | struct zfcp_adapter *adapter = port->adapter; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 278 | struct zfcp_fc_ns_handler_data compl_rec; |
| 279 | int ret; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 280 | |
| 281 | /* setup parameters for send generic command */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 282 | gid_pn->port = port; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 283 | gid_pn->ct.wka_port = &adapter->gs->ds; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 284 | gid_pn->ct.handler = zfcp_fc_ns_handler; |
| 285 | gid_pn->ct.handler_data = (unsigned long) &compl_rec; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 286 | gid_pn->ct.timeout = ZFCP_NS_GID_PN_TIMEOUT; |
| 287 | gid_pn->ct.req = &gid_pn->req; |
| 288 | gid_pn->ct.resp = &gid_pn->resp; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 289 | sg_init_one(&gid_pn->req, &gid_pn->ct_iu_req, |
| 290 | sizeof(struct ct_iu_gid_pn_req)); |
| 291 | sg_init_one(&gid_pn->resp, &gid_pn->ct_iu_resp, |
| 292 | sizeof(struct ct_iu_gid_pn_resp)); |
| 293 | |
| 294 | /* setup nameserver request */ |
| 295 | gid_pn->ct_iu_req.header.revision = ZFCP_CT_REVISION; |
| 296 | gid_pn->ct_iu_req.header.gs_type = ZFCP_CT_DIRECTORY_SERVICE; |
| 297 | gid_pn->ct_iu_req.header.gs_subtype = ZFCP_CT_NAME_SERVER; |
| 298 | gid_pn->ct_iu_req.header.options = ZFCP_CT_SYNCHRONOUS; |
| 299 | gid_pn->ct_iu_req.header.cmd_rsp_code = ZFCP_CT_GID_PN; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 300 | gid_pn->ct_iu_req.header.max_res_size = ZFCP_CT_SIZE_ONE_PAGE / 4; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 301 | gid_pn->ct_iu_req.wwpn = port->wwpn; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 302 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 303 | init_completion(&compl_rec.done); |
| 304 | compl_rec.handler = zfcp_fc_ns_gid_pn_eval; |
| 305 | compl_rec.handler_data = (unsigned long) gid_pn; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 306 | ret = zfcp_fsf_send_ct(&gid_pn->ct, adapter->pool.gid_pn_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 307 | if (!ret) |
| 308 | wait_for_completion(&compl_rec.done); |
| 309 | return ret; |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * zfcp_fc_ns_gid_pn_request - initiate GID_PN nameserver request |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 314 | * @port: port where GID_PN request is needed |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 315 | * return: -ENOMEM on error, 0 otherwise |
| 316 | */ |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 317 | static int zfcp_fc_ns_gid_pn(struct zfcp_port *port) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 318 | { |
| 319 | int ret; |
| 320 | struct zfcp_gid_pn_data *gid_pn; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 321 | struct zfcp_adapter *adapter = port->adapter; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 322 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 323 | gid_pn = mempool_alloc(adapter->pool.gid_pn_data, GFP_ATOMIC); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 324 | if (!gid_pn) |
| 325 | return -ENOMEM; |
| 326 | |
| 327 | memset(gid_pn, 0, sizeof(*gid_pn)); |
| 328 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 329 | ret = zfcp_wka_port_get(&adapter->gs->ds); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 330 | if (ret) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 331 | goto out; |
| 332 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 333 | ret = zfcp_fc_ns_gid_pn_request(port, gid_pn); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 334 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 335 | zfcp_wka_port_put(&adapter->gs->ds); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 336 | out: |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 337 | mempool_free(gid_pn, adapter->pool.gid_pn_data); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 338 | return ret; |
| 339 | } |
| 340 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 341 | void zfcp_fc_port_did_lookup(struct work_struct *work) |
| 342 | { |
| 343 | int ret; |
| 344 | struct zfcp_port *port = container_of(work, struct zfcp_port, |
| 345 | gid_pn_work); |
| 346 | |
| 347 | ret = zfcp_fc_ns_gid_pn(port); |
| 348 | if (ret) { |
| 349 | /* could not issue gid_pn for some reason */ |
| 350 | zfcp_erp_adapter_reopen(port->adapter, 0, "fcgpn_1", NULL); |
| 351 | goto out; |
| 352 | } |
| 353 | |
| 354 | if (!port->d_id) { |
| 355 | zfcp_erp_port_failed(port, "fcgpn_2", NULL); |
| 356 | goto out; |
| 357 | } |
| 358 | |
| 359 | zfcp_erp_port_reopen(port, 0, "fcgpn_3", NULL); |
| 360 | out: |
| 361 | zfcp_port_put(port); |
| 362 | } |
| 363 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 364 | /** |
| 365 | * zfcp_fc_plogi_evaluate - evaluate PLOGI playload |
| 366 | * @port: zfcp_port structure |
| 367 | * @plogi: plogi payload |
| 368 | * |
| 369 | * Evaluate PLOGI playload and copy important fields into zfcp_port structure |
| 370 | */ |
| 371 | void zfcp_fc_plogi_evaluate(struct zfcp_port *port, struct fsf_plogi *plogi) |
| 372 | { |
| 373 | port->maxframe_size = plogi->serv_param.common_serv_param[7] | |
| 374 | ((plogi->serv_param.common_serv_param[6] & 0x0F) << 8); |
| 375 | if (plogi->serv_param.class1_serv_param[0] & 0x80) |
| 376 | port->supported_classes |= FC_COS_CLASS1; |
| 377 | if (plogi->serv_param.class2_serv_param[0] & 0x80) |
| 378 | port->supported_classes |= FC_COS_CLASS2; |
| 379 | if (plogi->serv_param.class3_serv_param[0] & 0x80) |
| 380 | port->supported_classes |= FC_COS_CLASS3; |
| 381 | if (plogi->serv_param.class4_serv_param[0] & 0x80) |
| 382 | port->supported_classes |= FC_COS_CLASS4; |
| 383 | } |
| 384 | |
| 385 | struct zfcp_els_adisc { |
| 386 | struct zfcp_send_els els; |
| 387 | struct scatterlist req; |
| 388 | struct scatterlist resp; |
| 389 | struct zfcp_ls_adisc ls_adisc; |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 390 | struct zfcp_ls_adisc ls_adisc_acc; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 391 | }; |
| 392 | |
| 393 | static void zfcp_fc_adisc_handler(unsigned long data) |
| 394 | { |
| 395 | struct zfcp_els_adisc *adisc = (struct zfcp_els_adisc *) data; |
| 396 | struct zfcp_port *port = adisc->els.port; |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 397 | struct zfcp_ls_adisc *ls_adisc = &adisc->ls_adisc_acc; |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 398 | |
Christof Schmitt | 3968ce8 | 2008-07-02 10:56:32 +0200 | [diff] [blame] | 399 | if (adisc->els.status) { |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 400 | /* request rejected or timed out */ |
Swen Schillig | 5b43e71 | 2009-04-17 15:08:10 +0200 | [diff] [blame] | 401 | zfcp_erp_port_forced_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
| 402 | "fcadh_1", NULL); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 403 | goto out; |
| 404 | } |
| 405 | |
| 406 | if (!port->wwnn) |
| 407 | port->wwnn = ls_adisc->wwnn; |
| 408 | |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 409 | if ((port->wwpn != ls_adisc->wwpn) || |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 410 | !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_OPEN)) { |
Swen Schillig | 2409549 | 2009-03-02 13:09:07 +0100 | [diff] [blame] | 411 | zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED, |
| 412 | "fcadh_2", NULL); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 413 | goto out; |
| 414 | } |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 415 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 416 | /* port is good, unblock rport without going through erp */ |
| 417 | zfcp_scsi_schedule_rport_register(port); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 418 | out: |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 419 | atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 420 | zfcp_port_put(port); |
| 421 | kfree(adisc); |
| 422 | } |
| 423 | |
| 424 | static int zfcp_fc_adisc(struct zfcp_port *port) |
| 425 | { |
| 426 | struct zfcp_els_adisc *adisc; |
| 427 | struct zfcp_adapter *adapter = port->adapter; |
| 428 | |
| 429 | adisc = kzalloc(sizeof(struct zfcp_els_adisc), GFP_ATOMIC); |
| 430 | if (!adisc) |
| 431 | return -ENOMEM; |
| 432 | |
| 433 | adisc->els.req = &adisc->req; |
| 434 | adisc->els.resp = &adisc->resp; |
| 435 | sg_init_one(adisc->els.req, &adisc->ls_adisc, |
| 436 | sizeof(struct zfcp_ls_adisc)); |
| 437 | sg_init_one(adisc->els.resp, &adisc->ls_adisc_acc, |
Swen Schillig | 44cc76f | 2008-10-01 12:42:16 +0200 | [diff] [blame] | 438 | sizeof(struct zfcp_ls_adisc)); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 439 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 440 | adisc->els.adapter = adapter; |
| 441 | adisc->els.port = port; |
| 442 | adisc->els.d_id = port->d_id; |
| 443 | adisc->els.handler = zfcp_fc_adisc_handler; |
| 444 | adisc->els.handler_data = (unsigned long) adisc; |
| 445 | adisc->els.ls_code = adisc->ls_adisc.code = ZFCP_LS_ADISC; |
| 446 | |
| 447 | /* acc. to FC-FS, hard_nport_id in ADISC should not be set for ports |
| 448 | without FC-AL-2 capability, so we don't set it */ |
| 449 | adisc->ls_adisc.wwpn = fc_host_port_name(adapter->scsi_host); |
| 450 | adisc->ls_adisc.wwnn = fc_host_node_name(adapter->scsi_host); |
| 451 | adisc->ls_adisc.nport_id = fc_host_port_id(adapter->scsi_host); |
| 452 | |
| 453 | return zfcp_fsf_send_els(&adisc->els); |
| 454 | } |
| 455 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 456 | void zfcp_fc_link_test_work(struct work_struct *work) |
| 457 | { |
| 458 | struct zfcp_port *port = |
| 459 | container_of(work, struct zfcp_port, test_link_work); |
| 460 | int retval; |
| 461 | |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 462 | zfcp_port_get(port); |
| 463 | port->rport_task = RPORT_DEL; |
| 464 | zfcp_scsi_rport_work(&port->rport_work); |
| 465 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 466 | /* only issue one test command at one time per port */ |
| 467 | if (atomic_read(&port->status) & ZFCP_STATUS_PORT_LINK_TEST) |
| 468 | goto out; |
| 469 | |
| 470 | atomic_set_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
| 471 | |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 472 | retval = zfcp_fc_adisc(port); |
| 473 | if (retval == 0) |
| 474 | return; |
| 475 | |
| 476 | /* send of ADISC was not possible */ |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 477 | atomic_clear_mask(ZFCP_STATUS_PORT_LINK_TEST, &port->status); |
Christof Schmitt | a2fa0ae | 2009-03-02 13:09:08 +0100 | [diff] [blame] | 478 | zfcp_erp_port_forced_reopen(port, 0, "fcltwk1", NULL); |
| 479 | |
Christof Schmitt | 14e242e | 2009-08-18 15:43:11 +0200 | [diff] [blame] | 480 | out: |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 481 | zfcp_port_put(port); |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 482 | } |
| 483 | |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 484 | /** |
| 485 | * zfcp_test_link - lightweight link test procedure |
| 486 | * @port: port to be tested |
| 487 | * |
| 488 | * Test status of a link to a remote port using the ELS command ADISC. |
| 489 | * If there is a problem with the remote port, error recovery steps |
| 490 | * will be triggered. |
| 491 | */ |
| 492 | void zfcp_test_link(struct zfcp_port *port) |
| 493 | { |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 494 | zfcp_port_get(port); |
Swen Schillig | 4544683 | 2009-08-18 15:43:17 +0200 | [diff] [blame] | 495 | if (!queue_work(port->adapter->work_queue, &port->test_link_work)) |
Christof Schmitt | 8fdf30d | 2009-03-02 13:09:01 +0100 | [diff] [blame] | 496 | zfcp_port_put(port); |
Christof Schmitt | 24073b4 | 2008-06-10 18:20:54 +0200 | [diff] [blame] | 497 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 498 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 499 | static void zfcp_free_sg_env(struct zfcp_gpn_ft *gpn_ft, int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 500 | { |
| 501 | struct scatterlist *sg = &gpn_ft->sg_req; |
| 502 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 503 | kmem_cache_free(zfcp_data.gpn_ft_cache, sg_virt(sg)); |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 504 | zfcp_sg_free_table(gpn_ft->sg_resp, buf_num); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 505 | |
| 506 | kfree(gpn_ft); |
| 507 | } |
| 508 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 509 | static struct zfcp_gpn_ft *zfcp_alloc_sg_env(int buf_num) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 510 | { |
| 511 | struct zfcp_gpn_ft *gpn_ft; |
| 512 | struct ct_iu_gpn_ft_req *req; |
| 513 | |
| 514 | gpn_ft = kzalloc(sizeof(*gpn_ft), GFP_KERNEL); |
| 515 | if (!gpn_ft) |
| 516 | return NULL; |
| 517 | |
Swen Schillig | a4623c4 | 2009-08-18 15:43:15 +0200 | [diff] [blame] | 518 | req = kmem_cache_alloc(zfcp_data.gpn_ft_cache, GFP_KERNEL); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 519 | if (!req) { |
| 520 | kfree(gpn_ft); |
| 521 | gpn_ft = NULL; |
| 522 | goto out; |
| 523 | } |
| 524 | sg_init_one(&gpn_ft->sg_req, req, sizeof(*req)); |
| 525 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 526 | if (zfcp_sg_setup_table(gpn_ft->sg_resp, buf_num)) { |
| 527 | zfcp_free_sg_env(gpn_ft, buf_num); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 528 | gpn_ft = NULL; |
| 529 | } |
| 530 | out: |
| 531 | return gpn_ft; |
| 532 | } |
| 533 | |
| 534 | |
| 535 | static int zfcp_scan_issue_gpn_ft(struct zfcp_gpn_ft *gpn_ft, |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 536 | struct zfcp_adapter *adapter, |
| 537 | int max_bytes) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 538 | { |
| 539 | struct zfcp_send_ct *ct = &gpn_ft->ct; |
| 540 | struct ct_iu_gpn_ft_req *req = sg_virt(&gpn_ft->sg_req); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 541 | struct zfcp_fc_ns_handler_data compl_rec; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 542 | int ret; |
| 543 | |
| 544 | /* prepare CT IU for GPN_FT */ |
| 545 | req->header.revision = ZFCP_CT_REVISION; |
| 546 | req->header.gs_type = ZFCP_CT_DIRECTORY_SERVICE; |
| 547 | req->header.gs_subtype = ZFCP_CT_NAME_SERVER; |
| 548 | req->header.options = ZFCP_CT_SYNCHRONOUS; |
| 549 | req->header.cmd_rsp_code = ZFCP_CT_GPN_FT; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 550 | req->header.max_res_size = max_bytes / 4; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 551 | req->flags = 0; |
| 552 | req->domain_id_scope = 0; |
| 553 | req->area_id_scope = 0; |
| 554 | req->fc4_type = ZFCP_CT_SCSI_FCP; |
| 555 | |
| 556 | /* prepare zfcp_send_ct */ |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 557 | ct->wka_port = &adapter->gs->ds; |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 558 | ct->handler = zfcp_fc_ns_handler; |
| 559 | ct->handler_data = (unsigned long)&compl_rec; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 560 | ct->timeout = 10; |
| 561 | ct->req = &gpn_ft->sg_req; |
| 562 | ct->resp = gpn_ft->sg_resp; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 563 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 564 | init_completion(&compl_rec.done); |
| 565 | compl_rec.handler = NULL; |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 566 | ret = zfcp_fsf_send_ct(ct, NULL); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 567 | if (!ret) |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 568 | wait_for_completion(&compl_rec.done); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 569 | return ret; |
| 570 | } |
| 571 | |
| 572 | static void zfcp_validate_port(struct zfcp_port *port) |
| 573 | { |
| 574 | struct zfcp_adapter *adapter = port->adapter; |
| 575 | |
Martin Petermann | 6ab35c0 | 2009-04-17 15:08:13 +0200 | [diff] [blame] | 576 | if (!(atomic_read(&port->status) & ZFCP_STATUS_COMMON_NOESC)) |
| 577 | return; |
| 578 | |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 579 | atomic_clear_mask(ZFCP_STATUS_COMMON_NOESC, &port->status); |
| 580 | |
Christof Schmitt | 0406289 | 2008-10-01 12:42:20 +0200 | [diff] [blame] | 581 | if ((port->supported_classes != 0) || |
| 582 | !list_empty(&port->unit_list_head)) { |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 583 | zfcp_port_put(port); |
| 584 | return; |
| 585 | } |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 586 | zfcp_erp_port_shutdown(port, 0, "fcpval1", NULL); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 587 | zfcp_erp_wait(adapter); |
| 588 | zfcp_port_put(port); |
| 589 | zfcp_port_dequeue(port); |
| 590 | } |
| 591 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 592 | static int zfcp_scan_eval_gpn_ft(struct zfcp_gpn_ft *gpn_ft, int max_entries) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 593 | { |
| 594 | struct zfcp_send_ct *ct = &gpn_ft->ct; |
| 595 | struct scatterlist *sg = gpn_ft->sg_resp; |
| 596 | struct ct_hdr *hdr = sg_virt(sg); |
| 597 | struct gpn_ft_resp_acc *acc = sg_virt(sg); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 598 | struct zfcp_adapter *adapter = ct->wka_port->adapter; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 599 | struct zfcp_port *port, *tmp; |
| 600 | u32 d_id; |
Christof Schmitt | 47f7bba | 2008-08-21 13:43:33 +0200 | [diff] [blame] | 601 | int ret = 0, x, last = 0; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 602 | |
| 603 | if (ct->status) |
| 604 | return -EIO; |
| 605 | |
| 606 | if (hdr->cmd_rsp_code != ZFCP_CT_ACCEPT) { |
| 607 | if (hdr->reason_code == ZFCP_CT_UNABLE_TO_PERFORM_CMD) |
| 608 | return -EAGAIN; /* might be a temporary condition */ |
| 609 | return -EIO; |
| 610 | } |
| 611 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 612 | if (hdr->max_res_size) { |
| 613 | dev_warn(&adapter->ccw_device->dev, |
| 614 | "The name server reported %d words residual data\n", |
| 615 | hdr->max_res_size); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 616 | return -E2BIG; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 617 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 618 | |
| 619 | down(&zfcp_data.config_sema); |
| 620 | |
| 621 | /* first entry is the header */ |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 622 | for (x = 1; x < max_entries && !last; x++) { |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 623 | if (x % (ZFCP_GPN_FT_ENTRIES + 1)) |
| 624 | acc++; |
| 625 | else |
| 626 | acc = sg_virt(++sg); |
| 627 | |
Christof Schmitt | 47f7bba | 2008-08-21 13:43:33 +0200 | [diff] [blame] | 628 | last = acc->control & 0x80; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 629 | d_id = acc->port_id[0] << 16 | acc->port_id[1] << 8 | |
| 630 | acc->port_id[2]; |
| 631 | |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 632 | /* don't attach ports with a well known address */ |
| 633 | if ((d_id & ZFCP_DID_WKA) == ZFCP_DID_WKA) |
| 634 | continue; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 635 | /* skip the adapter's port and known remote ports */ |
Swen Schillig | 9528539 | 2008-08-21 13:43:35 +0200 | [diff] [blame] | 636 | if (acc->wwpn == fc_host_port_name(adapter->scsi_host)) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 637 | continue; |
Swen Schillig | 9528539 | 2008-08-21 13:43:35 +0200 | [diff] [blame] | 638 | port = zfcp_get_port_by_wwpn(adapter, acc->wwpn); |
Martin Petermann | 6ab35c0 | 2009-04-17 15:08:13 +0200 | [diff] [blame] | 639 | if (port) |
Swen Schillig | 9528539 | 2008-08-21 13:43:35 +0200 | [diff] [blame] | 640 | continue; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 641 | |
| 642 | port = zfcp_port_enqueue(adapter, acc->wwpn, |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 643 | ZFCP_STATUS_COMMON_NOESC, d_id); |
Swen Schillig | 317e6b6 | 2008-07-02 10:56:37 +0200 | [diff] [blame] | 644 | if (IS_ERR(port)) |
| 645 | ret = PTR_ERR(port); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 646 | else |
Swen Schillig | 5ffd51a | 2009-03-02 13:09:04 +0100 | [diff] [blame] | 647 | zfcp_erp_port_reopen(port, 0, "fcegpf1", NULL); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | zfcp_erp_wait(adapter); |
| 651 | list_for_each_entry_safe(port, tmp, &adapter->port_list_head, list) |
| 652 | zfcp_validate_port(port); |
| 653 | up(&zfcp_data.config_sema); |
| 654 | return ret; |
| 655 | } |
| 656 | |
| 657 | /** |
| 658 | * zfcp_scan_ports - scan remote ports and attach new ports |
| 659 | * @adapter: pointer to struct zfcp_adapter |
| 660 | */ |
| 661 | int zfcp_scan_ports(struct zfcp_adapter *adapter) |
| 662 | { |
| 663 | int ret, i; |
| 664 | struct zfcp_gpn_ft *gpn_ft; |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 665 | int chain, max_entries, buf_num, max_bytes; |
| 666 | |
| 667 | chain = adapter->adapter_features & FSF_FEATURE_ELS_CT_CHAINED_SBALS; |
| 668 | buf_num = chain ? ZFCP_GPN_FT_BUFFERS : 1; |
| 669 | max_entries = chain ? ZFCP_GPN_FT_MAX_ENTRIES : ZFCP_GPN_FT_ENTRIES; |
| 670 | max_bytes = chain ? ZFCP_GPN_FT_MAX_SIZE : ZFCP_CT_SIZE_ONE_PAGE; |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 671 | |
Swen Schillig | 306b6ed | 2009-04-17 15:08:02 +0200 | [diff] [blame] | 672 | if (fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPORT && |
| 673 | fc_host_port_type(adapter->scsi_host) != FC_PORTTYPE_NPIV) |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 674 | return 0; |
| 675 | |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 676 | ret = zfcp_wka_port_get(&adapter->gs->ds); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 677 | if (ret) |
| 678 | return ret; |
| 679 | |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 680 | gpn_ft = zfcp_alloc_sg_env(buf_num); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 681 | if (!gpn_ft) { |
| 682 | ret = -ENOMEM; |
| 683 | goto out; |
| 684 | } |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 685 | |
| 686 | for (i = 0; i < 3; i++) { |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 687 | ret = zfcp_scan_issue_gpn_ft(gpn_ft, adapter, max_bytes); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 688 | if (!ret) { |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 689 | ret = zfcp_scan_eval_gpn_ft(gpn_ft, max_entries); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 690 | if (ret == -EAGAIN) |
| 691 | ssleep(1); |
| 692 | else |
| 693 | break; |
| 694 | } |
| 695 | } |
Christof Schmitt | 39eb7e9a | 2008-12-19 16:57:01 +0100 | [diff] [blame] | 696 | zfcp_free_sg_env(gpn_ft, buf_num); |
Swen Schillig | 5ab944f | 2008-10-01 12:42:17 +0200 | [diff] [blame] | 697 | out: |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 698 | zfcp_wka_port_put(&adapter->gs->ds); |
Swen Schillig | cc8c282 | 2008-06-10 18:21:00 +0200 | [diff] [blame] | 699 | return ret; |
| 700 | } |
| 701 | |
| 702 | |
| 703 | void _zfcp_scan_ports_later(struct work_struct *work) |
| 704 | { |
| 705 | zfcp_scan_ports(container_of(work, struct zfcp_adapter, scan_work)); |
| 706 | } |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 707 | |
| 708 | struct zfcp_els_fc_job { |
| 709 | struct zfcp_send_els els; |
| 710 | struct fc_bsg_job *job; |
| 711 | }; |
| 712 | |
| 713 | static void zfcp_fc_generic_els_handler(unsigned long data) |
| 714 | { |
| 715 | struct zfcp_els_fc_job *els_fc_job = (struct zfcp_els_fc_job *) data; |
| 716 | struct fc_bsg_job *job = els_fc_job->job; |
| 717 | struct fc_bsg_reply *reply = job->reply; |
| 718 | |
| 719 | if (els_fc_job->els.status) { |
| 720 | /* request rejected or timed out */ |
| 721 | reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_REJECT; |
| 722 | goto out; |
| 723 | } |
| 724 | |
| 725 | reply->reply_data.ctels_reply.status = FC_CTELS_STATUS_OK; |
Christof Schmitt | dc577d5 | 2009-05-15 13:18:22 +0200 | [diff] [blame] | 726 | reply->reply_payload_rcv_len = job->reply_payload.payload_len; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 727 | |
| 728 | out: |
| 729 | job->state_flags = FC_RQST_STATE_DONE; |
| 730 | job->job_done(job); |
| 731 | kfree(els_fc_job); |
| 732 | } |
| 733 | |
| 734 | int zfcp_fc_execute_els_fc_job(struct fc_bsg_job *job) |
| 735 | { |
| 736 | struct zfcp_els_fc_job *els_fc_job; |
| 737 | struct fc_rport *rport = job->rport; |
| 738 | struct Scsi_Host *shost; |
| 739 | struct zfcp_adapter *adapter; |
| 740 | struct zfcp_port *port; |
| 741 | u8 *port_did; |
| 742 | |
| 743 | shost = rport ? rport_to_shost(rport) : job->shost; |
| 744 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
| 745 | |
| 746 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN)) |
| 747 | return -EINVAL; |
| 748 | |
| 749 | els_fc_job = kzalloc(sizeof(struct zfcp_els_fc_job), GFP_KERNEL); |
| 750 | if (!els_fc_job) |
| 751 | return -ENOMEM; |
| 752 | |
| 753 | els_fc_job->els.adapter = adapter; |
| 754 | if (rport) { |
| 755 | read_lock_irq(&zfcp_data.config_lock); |
| 756 | port = rport->dd_data; |
| 757 | if (port) |
Christof Schmitt | dc577d5 | 2009-05-15 13:18:22 +0200 | [diff] [blame] | 758 | els_fc_job->els.d_id = port->d_id; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 759 | read_unlock_irq(&zfcp_data.config_lock); |
| 760 | if (!port) { |
| 761 | kfree(els_fc_job); |
| 762 | return -EINVAL; |
| 763 | } |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 764 | } else { |
| 765 | port_did = job->request->rqst_data.h_els.port_id; |
| 766 | els_fc_job->els.d_id = (port_did[0] << 16) + |
| 767 | (port_did[1] << 8) + port_did[2]; |
| 768 | } |
| 769 | |
| 770 | els_fc_job->els.req = job->request_payload.sg_list; |
| 771 | els_fc_job->els.resp = job->reply_payload.sg_list; |
| 772 | els_fc_job->els.handler = zfcp_fc_generic_els_handler; |
| 773 | els_fc_job->els.handler_data = (unsigned long) els_fc_job; |
| 774 | els_fc_job->job = job; |
| 775 | |
| 776 | return zfcp_fsf_send_els(&els_fc_job->els); |
| 777 | } |
| 778 | |
| 779 | struct zfcp_ct_fc_job { |
| 780 | struct zfcp_send_ct ct; |
| 781 | struct fc_bsg_job *job; |
| 782 | }; |
| 783 | |
| 784 | static void zfcp_fc_generic_ct_handler(unsigned long data) |
| 785 | { |
| 786 | struct zfcp_ct_fc_job *ct_fc_job = (struct zfcp_ct_fc_job *) data; |
| 787 | struct fc_bsg_job *job = ct_fc_job->job; |
| 788 | |
| 789 | job->reply->reply_data.ctels_reply.status = ct_fc_job->ct.status ? |
| 790 | FC_CTELS_STATUS_REJECT : FC_CTELS_STATUS_OK; |
Christof Schmitt | dc577d5 | 2009-05-15 13:18:22 +0200 | [diff] [blame] | 791 | job->reply->reply_payload_rcv_len = job->reply_payload.payload_len; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 792 | job->state_flags = FC_RQST_STATE_DONE; |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 793 | job->job_done(job); |
| 794 | |
| 795 | zfcp_wka_port_put(ct_fc_job->ct.wka_port); |
| 796 | |
| 797 | kfree(ct_fc_job); |
| 798 | } |
| 799 | |
| 800 | int zfcp_fc_execute_ct_fc_job(struct fc_bsg_job *job) |
| 801 | { |
| 802 | int ret; |
| 803 | u8 gs_type; |
| 804 | struct fc_rport *rport = job->rport; |
| 805 | struct Scsi_Host *shost; |
| 806 | struct zfcp_adapter *adapter; |
| 807 | struct zfcp_ct_fc_job *ct_fc_job; |
| 808 | u32 preamble_word1; |
| 809 | |
| 810 | shost = rport ? rport_to_shost(rport) : job->shost; |
| 811 | |
| 812 | adapter = (struct zfcp_adapter *)shost->hostdata[0]; |
| 813 | if (!(atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_OPEN)) |
| 814 | return -EINVAL; |
| 815 | |
| 816 | ct_fc_job = kzalloc(sizeof(struct zfcp_ct_fc_job), GFP_KERNEL); |
| 817 | if (!ct_fc_job) |
| 818 | return -ENOMEM; |
| 819 | |
| 820 | preamble_word1 = job->request->rqst_data.r_ct.preamble_word1; |
| 821 | gs_type = (preamble_word1 & 0xff000000) >> 24; |
| 822 | |
| 823 | switch (gs_type) { |
| 824 | case FC_FST_ALIAS: |
| 825 | ct_fc_job->ct.wka_port = &adapter->gs->as; |
| 826 | break; |
| 827 | case FC_FST_MGMT: |
| 828 | ct_fc_job->ct.wka_port = &adapter->gs->ms; |
| 829 | break; |
| 830 | case FC_FST_TIME: |
| 831 | ct_fc_job->ct.wka_port = &adapter->gs->ts; |
| 832 | break; |
| 833 | case FC_FST_DIR: |
| 834 | ct_fc_job->ct.wka_port = &adapter->gs->ds; |
| 835 | break; |
| 836 | default: |
| 837 | kfree(ct_fc_job); |
| 838 | return -EINVAL; /* no such service */ |
| 839 | } |
| 840 | |
| 841 | ret = zfcp_wka_port_get(ct_fc_job->ct.wka_port); |
| 842 | if (ret) { |
| 843 | kfree(ct_fc_job); |
| 844 | return ret; |
| 845 | } |
| 846 | |
| 847 | ct_fc_job->ct.req = job->request_payload.sg_list; |
| 848 | ct_fc_job->ct.resp = job->reply_payload.sg_list; |
| 849 | ct_fc_job->ct.timeout = ZFCP_FSF_REQUEST_TIMEOUT; |
| 850 | ct_fc_job->ct.handler = zfcp_fc_generic_ct_handler; |
| 851 | ct_fc_job->ct.handler_data = (unsigned long) ct_fc_job; |
| 852 | ct_fc_job->ct.completion = NULL; |
| 853 | ct_fc_job->job = job; |
| 854 | |
Christof Schmitt | 799b76d | 2009-08-18 15:43:20 +0200 | [diff] [blame] | 855 | ret = zfcp_fsf_send_ct(&ct_fc_job->ct, NULL); |
Sven Schuetz | 9d544f2 | 2009-04-06 18:31:47 +0200 | [diff] [blame] | 856 | if (ret) { |
| 857 | kfree(ct_fc_job); |
| 858 | zfcp_wka_port_put(ct_fc_job->ct.wka_port); |
| 859 | } |
| 860 | return ret; |
| 861 | } |
Swen Schillig | d5a282a | 2009-08-18 15:43:22 +0200 | [diff] [blame^] | 862 | |
| 863 | int zfcp_fc_gs_setup(struct zfcp_adapter *adapter) |
| 864 | { |
| 865 | struct zfcp_wka_ports *wka_ports; |
| 866 | |
| 867 | wka_ports = kzalloc(sizeof(struct zfcp_wka_ports), GFP_KERNEL); |
| 868 | if (!wka_ports) |
| 869 | return -ENOMEM; |
| 870 | |
| 871 | adapter->gs = wka_ports; |
| 872 | zfcp_fc_wka_port_init(&wka_ports->ms, FC_FID_MGMT_SERV, adapter); |
| 873 | zfcp_fc_wka_port_init(&wka_ports->ts, FC_FID_TIME_SERV, adapter); |
| 874 | zfcp_fc_wka_port_init(&wka_ports->ds, FC_FID_DIR_SERV, adapter); |
| 875 | zfcp_fc_wka_port_init(&wka_ports->as, FC_FID_ALIASES, adapter); |
| 876 | zfcp_fc_wka_port_init(&wka_ports->ks, FC_FID_SEC_KEY, adapter); |
| 877 | |
| 878 | return 0; |
| 879 | } |
| 880 | |
| 881 | void zfcp_fc_gs_destroy(struct zfcp_adapter *adapter) |
| 882 | { |
| 883 | kfree(adapter->gs); |
| 884 | adapter->gs = NULL; |
| 885 | } |
| 886 | |