blob: 760b2fe29365b476e445dbddfa48de0a6e08378e [file] [log] [blame]
Steve Wisecfdda9d2010-04-21 15:30:06 -07001/*
2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32#include <linux/module.h>
33#include <linux/list.h>
34#include <linux/workqueue.h>
35#include <linux/skbuff.h>
36#include <linux/timer.h>
37#include <linux/notifier.h>
38#include <linux/inetdevice.h>
39#include <linux/ip.h>
40#include <linux/tcp.h>
41
42#include <net/neighbour.h>
43#include <net/netevent.h>
44#include <net/route.h>
45
46#include "iw_cxgb4.h"
47
48static char *states[] = {
49 "idle",
50 "listen",
51 "connecting",
52 "mpa_wait_req",
53 "mpa_req_sent",
54 "mpa_req_rcvd",
55 "mpa_rep_sent",
56 "fpdu_mode",
57 "aborting",
58 "closing",
59 "moribund",
60 "dead",
61 NULL,
62};
63
Steve Wiseb52fe092011-03-11 22:30:01 +000064static int dack_mode = 1;
Steve Wiseba6d3922010-06-23 15:46:49 +000065module_param(dack_mode, int, 0644);
Steve Wiseb52fe092011-03-11 22:30:01 +000066MODULE_PARM_DESC(dack_mode, "Delayed ack mode (default=1)");
Steve Wiseba6d3922010-06-23 15:46:49 +000067
Roland Dreierbe4c9ba2010-05-05 14:45:40 -070068int c4iw_max_read_depth = 8;
69module_param(c4iw_max_read_depth, int, 0644);
70MODULE_PARM_DESC(c4iw_max_read_depth, "Per-connection max ORD/IRD (default=8)");
71
Steve Wisecfdda9d2010-04-21 15:30:06 -070072static int enable_tcp_timestamps;
73module_param(enable_tcp_timestamps, int, 0644);
74MODULE_PARM_DESC(enable_tcp_timestamps, "Enable tcp timestamps (default=0)");
75
76static int enable_tcp_sack;
77module_param(enable_tcp_sack, int, 0644);
78MODULE_PARM_DESC(enable_tcp_sack, "Enable tcp SACK (default=0)");
79
80static int enable_tcp_window_scaling = 1;
81module_param(enable_tcp_window_scaling, int, 0644);
82MODULE_PARM_DESC(enable_tcp_window_scaling,
83 "Enable tcp window scaling (default=1)");
84
85int c4iw_debug;
86module_param(c4iw_debug, int, 0644);
87MODULE_PARM_DESC(c4iw_debug, "Enable debug logging (default=0)");
88
89static int peer2peer;
90module_param(peer2peer, int, 0644);
91MODULE_PARM_DESC(peer2peer, "Support peer2peer ULPs (default=0)");
92
93static int p2p_type = FW_RI_INIT_P2PTYPE_READ_REQ;
94module_param(p2p_type, int, 0644);
95MODULE_PARM_DESC(p2p_type, "RDMAP opcode to use for the RTR message: "
96 "1=RDMA_READ 0=RDMA_WRITE (default 1)");
97
98static int ep_timeout_secs = 60;
99module_param(ep_timeout_secs, int, 0644);
100MODULE_PARM_DESC(ep_timeout_secs, "CM Endpoint operation timeout "
101 "in seconds (default=60)");
102
103static int mpa_rev = 1;
104module_param(mpa_rev, int, 0644);
105MODULE_PARM_DESC(mpa_rev, "MPA Revision, 0 supports amso1100, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530106 "1 is RFC0544 spec compliant, 2 is IETF MPA Peer Connect Draft"
107 " compliant (default=1)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700108
109static int markers_enabled;
110module_param(markers_enabled, int, 0644);
111MODULE_PARM_DESC(markers_enabled, "Enable MPA MARKERS (default(0)=disabled)");
112
113static int crc_enabled = 1;
114module_param(crc_enabled, int, 0644);
115MODULE_PARM_DESC(crc_enabled, "Enable MPA CRC (default(1)=enabled)");
116
117static int rcv_win = 256 * 1024;
118module_param(rcv_win, int, 0644);
119MODULE_PARM_DESC(rcv_win, "TCP receive window in bytes (default=256KB)");
120
Steve Wise98ae68b2010-09-10 11:15:41 -0500121static int snd_win = 128 * 1024;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700122module_param(snd_win, int, 0644);
Steve Wise98ae68b2010-09-10 11:15:41 -0500123MODULE_PARM_DESC(snd_win, "TCP send window in bytes (default=128KB)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700124
Steve Wisecfdda9d2010-04-21 15:30:06 -0700125static struct workqueue_struct *workq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700126
127static struct sk_buff_head rxq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700128
129static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp);
130static void ep_timeout(unsigned long arg);
131static void connect_reply_upcall(struct c4iw_ep *ep, int status);
132
Roland Dreierbe4c9ba2010-05-05 14:45:40 -0700133static LIST_HEAD(timeout_list);
134static spinlock_t timeout_lock;
135
Steve Wisecfdda9d2010-04-21 15:30:06 -0700136static void start_ep_timer(struct c4iw_ep *ep)
137{
138 PDBG("%s ep %p\n", __func__, ep);
139 if (timer_pending(&ep->timer)) {
140 PDBG("%s stopped / restarted timer ep %p\n", __func__, ep);
141 del_timer_sync(&ep->timer);
142 } else
143 c4iw_get_ep(&ep->com);
144 ep->timer.expires = jiffies + ep_timeout_secs * HZ;
145 ep->timer.data = (unsigned long)ep;
146 ep->timer.function = ep_timeout;
147 add_timer(&ep->timer);
148}
149
150static void stop_ep_timer(struct c4iw_ep *ep)
151{
152 PDBG("%s ep %p\n", __func__, ep);
153 if (!timer_pending(&ep->timer)) {
154 printk(KERN_ERR "%s timer stopped when its not running! "
155 "ep %p state %u\n", __func__, ep, ep->com.state);
156 WARN_ON(1);
157 return;
158 }
159 del_timer_sync(&ep->timer);
160 c4iw_put_ep(&ep->com);
161}
162
163static int c4iw_l2t_send(struct c4iw_rdev *rdev, struct sk_buff *skb,
164 struct l2t_entry *l2e)
165{
166 int error = 0;
167
168 if (c4iw_fatal_error(rdev)) {
169 kfree_skb(skb);
170 PDBG("%s - device in error state - dropping\n", __func__);
171 return -EIO;
172 }
173 error = cxgb4_l2t_send(rdev->lldi.ports[0], skb, l2e);
174 if (error < 0)
175 kfree_skb(skb);
Steve Wise74594862010-09-10 11:14:58 -0500176 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700177}
178
179int c4iw_ofld_send(struct c4iw_rdev *rdev, struct sk_buff *skb)
180{
181 int error = 0;
182
183 if (c4iw_fatal_error(rdev)) {
184 kfree_skb(skb);
185 PDBG("%s - device in error state - dropping\n", __func__);
186 return -EIO;
187 }
188 error = cxgb4_ofld_send(rdev->lldi.ports[0], skb);
189 if (error < 0)
190 kfree_skb(skb);
Steve Wise74594862010-09-10 11:14:58 -0500191 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700192}
193
194static void release_tid(struct c4iw_rdev *rdev, u32 hwtid, struct sk_buff *skb)
195{
196 struct cpl_tid_release *req;
197
198 skb = get_skb(skb, sizeof *req, GFP_KERNEL);
199 if (!skb)
200 return;
201 req = (struct cpl_tid_release *) skb_put(skb, sizeof(*req));
202 INIT_TP_WR(req, hwtid);
203 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_TID_RELEASE, hwtid));
204 set_wr_txq(skb, CPL_PRIORITY_SETUP, 0);
205 c4iw_ofld_send(rdev, skb);
206 return;
207}
208
209static void set_emss(struct c4iw_ep *ep, u16 opt)
210{
211 ep->emss = ep->com.dev->rdev.lldi.mtus[GET_TCPOPT_MSS(opt)] - 40;
212 ep->mss = ep->emss;
213 if (GET_TCPOPT_TSTAMP(opt))
214 ep->emss -= 12;
215 if (ep->emss < 128)
216 ep->emss = 128;
217 PDBG("%s mss_idx %u mss %u emss=%u\n", __func__, GET_TCPOPT_MSS(opt),
218 ep->mss, ep->emss);
219}
220
221static enum c4iw_ep_state state_read(struct c4iw_ep_common *epc)
222{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700223 enum c4iw_ep_state state;
224
Steve Wise2f5b48c2010-09-10 11:15:36 -0500225 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700226 state = epc->state;
Steve Wise2f5b48c2010-09-10 11:15:36 -0500227 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700228 return state;
229}
230
231static void __state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
232{
233 epc->state = new;
234}
235
236static void state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
237{
Steve Wise2f5b48c2010-09-10 11:15:36 -0500238 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700239 PDBG("%s - %s -> %s\n", __func__, states[epc->state], states[new]);
240 __state_set(epc, new);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500241 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700242 return;
243}
244
245static void *alloc_ep(int size, gfp_t gfp)
246{
247 struct c4iw_ep_common *epc;
248
249 epc = kzalloc(size, gfp);
250 if (epc) {
251 kref_init(&epc->kref);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500252 mutex_init(&epc->mutex);
Steve Wiseaadc4df2010-09-10 11:15:25 -0500253 c4iw_init_wr_wait(&epc->wr_wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700254 }
255 PDBG("%s alloc ep %p\n", __func__, epc);
256 return epc;
257}
258
259void _c4iw_free_ep(struct kref *kref)
260{
261 struct c4iw_ep *ep;
262
263 ep = container_of(kref, struct c4iw_ep, com.kref);
264 PDBG("%s ep %p state %s\n", __func__, ep, states[state_read(&ep->com)]);
265 if (test_bit(RELEASE_RESOURCES, &ep->com.flags)) {
266 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
267 dst_release(ep->dst);
268 cxgb4_l2t_release(ep->l2t);
269 }
270 kfree(ep);
271}
272
273static void release_ep_resources(struct c4iw_ep *ep)
274{
275 set_bit(RELEASE_RESOURCES, &ep->com.flags);
276 c4iw_put_ep(&ep->com);
277}
278
Steve Wisecfdda9d2010-04-21 15:30:06 -0700279static int status2errno(int status)
280{
281 switch (status) {
282 case CPL_ERR_NONE:
283 return 0;
284 case CPL_ERR_CONN_RESET:
285 return -ECONNRESET;
286 case CPL_ERR_ARP_MISS:
287 return -EHOSTUNREACH;
288 case CPL_ERR_CONN_TIMEDOUT:
289 return -ETIMEDOUT;
290 case CPL_ERR_TCAM_FULL:
291 return -ENOMEM;
292 case CPL_ERR_CONN_EXIST:
293 return -EADDRINUSE;
294 default:
295 return -EIO;
296 }
297}
298
299/*
300 * Try and reuse skbs already allocated...
301 */
302static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp)
303{
304 if (skb && !skb_is_nonlinear(skb) && !skb_cloned(skb)) {
305 skb_trim(skb, 0);
306 skb_get(skb);
307 skb_reset_transport_header(skb);
308 } else {
309 skb = alloc_skb(len, gfp);
310 }
311 return skb;
312}
313
314static struct rtable *find_route(struct c4iw_dev *dev, __be32 local_ip,
315 __be32 peer_ip, __be16 local_port,
316 __be16 peer_port, u8 tos)
317{
318 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700319 struct flowi4 fl4;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700320
David S. Miller31e45432011-05-03 20:25:42 -0700321 rt = ip_route_output_ports(&init_net, &fl4, NULL, peer_ip, local_ip,
David S. Miller78fbfd82011-03-12 00:00:52 -0500322 peer_port, local_port, IPPROTO_TCP,
323 tos, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800324 if (IS_ERR(rt))
Steve Wisecfdda9d2010-04-21 15:30:06 -0700325 return NULL;
326 return rt;
327}
328
329static void arp_failure_discard(void *handle, struct sk_buff *skb)
330{
331 PDBG("%s c4iw_dev %p\n", __func__, handle);
332 kfree_skb(skb);
333}
334
335/*
336 * Handle an ARP failure for an active open.
337 */
338static void act_open_req_arp_failure(void *handle, struct sk_buff *skb)
339{
340 printk(KERN_ERR MOD "ARP failure duing connect\n");
341 kfree_skb(skb);
342}
343
344/*
345 * Handle an ARP failure for a CPL_ABORT_REQ. Change it into a no RST variant
346 * and send it along.
347 */
348static void abort_arp_failure(void *handle, struct sk_buff *skb)
349{
350 struct c4iw_rdev *rdev = handle;
351 struct cpl_abort_req *req = cplhdr(skb);
352
353 PDBG("%s rdev %p\n", __func__, rdev);
354 req->cmd = CPL_ABORT_NO_RST;
355 c4iw_ofld_send(rdev, skb);
356}
357
358static void send_flowc(struct c4iw_ep *ep, struct sk_buff *skb)
359{
360 unsigned int flowclen = 80;
361 struct fw_flowc_wr *flowc;
362 int i;
363
364 skb = get_skb(skb, flowclen, GFP_KERNEL);
365 flowc = (struct fw_flowc_wr *)__skb_put(skb, flowclen);
366
367 flowc->op_to_nparams = cpu_to_be32(FW_WR_OP(FW_FLOWC_WR) |
368 FW_FLOWC_WR_NPARAMS(8));
369 flowc->flowid_len16 = cpu_to_be32(FW_WR_LEN16(DIV_ROUND_UP(flowclen,
370 16)) | FW_WR_FLOWID(ep->hwtid));
371
372 flowc->mnemval[0].mnemonic = FW_FLOWC_MNEM_PFNVFN;
Steve Wise94788652011-01-21 17:00:34 +0000373 flowc->mnemval[0].val = cpu_to_be32(PCI_FUNC(ep->com.dev->rdev.lldi.pdev->devfn) << 8);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700374 flowc->mnemval[1].mnemonic = FW_FLOWC_MNEM_CH;
375 flowc->mnemval[1].val = cpu_to_be32(ep->tx_chan);
376 flowc->mnemval[2].mnemonic = FW_FLOWC_MNEM_PORT;
377 flowc->mnemval[2].val = cpu_to_be32(ep->tx_chan);
378 flowc->mnemval[3].mnemonic = FW_FLOWC_MNEM_IQID;
379 flowc->mnemval[3].val = cpu_to_be32(ep->rss_qid);
380 flowc->mnemval[4].mnemonic = FW_FLOWC_MNEM_SNDNXT;
381 flowc->mnemval[4].val = cpu_to_be32(ep->snd_seq);
382 flowc->mnemval[5].mnemonic = FW_FLOWC_MNEM_RCVNXT;
383 flowc->mnemval[5].val = cpu_to_be32(ep->rcv_seq);
384 flowc->mnemval[6].mnemonic = FW_FLOWC_MNEM_SNDBUF;
385 flowc->mnemval[6].val = cpu_to_be32(snd_win);
386 flowc->mnemval[7].mnemonic = FW_FLOWC_MNEM_MSS;
387 flowc->mnemval[7].val = cpu_to_be32(ep->emss);
388 /* Pad WR to 16 byte boundary */
389 flowc->mnemval[8].mnemonic = 0;
390 flowc->mnemval[8].val = 0;
391 for (i = 0; i < 9; i++) {
392 flowc->mnemval[i].r4[0] = 0;
393 flowc->mnemval[i].r4[1] = 0;
394 flowc->mnemval[i].r4[2] = 0;
395 }
396
397 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
398 c4iw_ofld_send(&ep->com.dev->rdev, skb);
399}
400
401static int send_halfclose(struct c4iw_ep *ep, gfp_t gfp)
402{
403 struct cpl_close_con_req *req;
404 struct sk_buff *skb;
405 int wrlen = roundup(sizeof *req, 16);
406
407 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
408 skb = get_skb(NULL, wrlen, gfp);
409 if (!skb) {
410 printk(KERN_ERR MOD "%s - failed to alloc skb\n", __func__);
411 return -ENOMEM;
412 }
413 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
414 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
415 req = (struct cpl_close_con_req *) skb_put(skb, wrlen);
416 memset(req, 0, wrlen);
417 INIT_TP_WR(req, ep->hwtid);
418 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_CON_REQ,
419 ep->hwtid));
420 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
421}
422
423static int send_abort(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
424{
425 struct cpl_abort_req *req;
426 int wrlen = roundup(sizeof *req, 16);
427
428 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
429 skb = get_skb(skb, wrlen, gfp);
430 if (!skb) {
431 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
432 __func__);
433 return -ENOMEM;
434 }
435 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
436 t4_set_arp_err_handler(skb, &ep->com.dev->rdev, abort_arp_failure);
437 req = (struct cpl_abort_req *) skb_put(skb, wrlen);
438 memset(req, 0, wrlen);
439 INIT_TP_WR(req, ep->hwtid);
440 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_REQ, ep->hwtid));
441 req->cmd = CPL_ABORT_SEND_RST;
442 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
443}
444
445static int send_connect(struct c4iw_ep *ep)
446{
447 struct cpl_act_open_req *req;
448 struct sk_buff *skb;
449 u64 opt0;
450 u32 opt2;
451 unsigned int mtu_idx;
452 int wscale;
453 int wrlen = roundup(sizeof *req, 16);
454
455 PDBG("%s ep %p atid %u\n", __func__, ep, ep->atid);
456
457 skb = get_skb(NULL, wrlen, GFP_KERNEL);
458 if (!skb) {
459 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
460 __func__);
461 return -ENOMEM;
462 }
Steve Wised4f1a5c2010-07-23 19:12:32 +0000463 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700464
465 cxgb4_best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx);
466 wscale = compute_wscale(rcv_win);
467 opt0 = KEEP_ALIVE(1) |
Steve Wiseba6d3922010-06-23 15:46:49 +0000468 DELACK(1) |
Steve Wisecfdda9d2010-04-21 15:30:06 -0700469 WND_SCALE(wscale) |
470 MSS_IDX(mtu_idx) |
471 L2T_IDX(ep->l2t->idx) |
472 TX_CHAN(ep->tx_chan) |
473 SMAC_SEL(ep->smac_idx) |
474 DSCP(ep->tos) |
Steve Wiseb48f3b92011-03-11 22:30:21 +0000475 ULP_MODE(ULP_MODE_TCPDDP) |
Steve Wisecfdda9d2010-04-21 15:30:06 -0700476 RCV_BUFSIZ(rcv_win>>10);
477 opt2 = RX_CHANNEL(0) |
478 RSS_QUEUE_VALID | RSS_QUEUE(ep->rss_qid);
479 if (enable_tcp_timestamps)
480 opt2 |= TSTAMPS_EN(1);
481 if (enable_tcp_sack)
482 opt2 |= SACK_EN(1);
483 if (wscale && enable_tcp_window_scaling)
484 opt2 |= WND_SCALE_EN(1);
485 t4_set_arp_err_handler(skb, NULL, act_open_req_arp_failure);
486
487 req = (struct cpl_act_open_req *) skb_put(skb, wrlen);
488 INIT_TP_WR(req, 0);
489 OPCODE_TID(req) = cpu_to_be32(
490 MK_OPCODE_TID(CPL_ACT_OPEN_REQ, ((ep->rss_qid<<14)|ep->atid)));
491 req->local_port = ep->com.local_addr.sin_port;
492 req->peer_port = ep->com.remote_addr.sin_port;
493 req->local_ip = ep->com.local_addr.sin_addr.s_addr;
494 req->peer_ip = ep->com.remote_addr.sin_addr.s_addr;
495 req->opt0 = cpu_to_be64(opt0);
496 req->params = 0;
497 req->opt2 = cpu_to_be32(opt2);
498 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
499}
500
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530501static void send_mpa_req(struct c4iw_ep *ep, struct sk_buff *skb,
502 u8 mpa_rev_to_use)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700503{
504 int mpalen, wrlen;
505 struct fw_ofld_tx_data_wr *req;
506 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530507 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700508
509 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
510
511 BUG_ON(skb_cloned(skb));
512
513 mpalen = sizeof(*mpa) + ep->plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530514 if (mpa_rev_to_use == 2)
515 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700516 wrlen = roundup(mpalen + sizeof *req, 16);
517 skb = get_skb(skb, wrlen, GFP_KERNEL);
518 if (!skb) {
519 connect_reply_upcall(ep, -ENOMEM);
520 return;
521 }
522 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
523
524 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
525 memset(req, 0, wrlen);
526 req->op_to_immdlen = cpu_to_be32(
527 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
528 FW_WR_COMPL(1) |
529 FW_WR_IMMDLEN(mpalen));
530 req->flowid_len16 = cpu_to_be32(
531 FW_WR_FLOWID(ep->hwtid) |
532 FW_WR_LEN16(wrlen >> 4));
533 req->plen = cpu_to_be32(mpalen);
534 req->tunnel_to_proxy = cpu_to_be32(
535 FW_OFLD_TX_DATA_WR_FLUSH(1) |
536 FW_OFLD_TX_DATA_WR_SHOVE(1));
537
538 mpa = (struct mpa_message *)(req + 1);
539 memcpy(mpa->key, MPA_KEY_REQ, sizeof(mpa->key));
540 mpa->flags = (crc_enabled ? MPA_CRC : 0) |
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530541 (markers_enabled ? MPA_MARKERS : 0) |
542 (mpa_rev_to_use == 2 ? MPA_ENHANCED_RDMA_CONN : 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700543 mpa->private_data_size = htons(ep->plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530544 mpa->revision = mpa_rev_to_use;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530545 if (mpa_rev_to_use == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530546 ep->tried_with_mpa_v1 = 1;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530547 ep->retry_with_mpa_v1 = 0;
548 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700549
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530550 if (mpa_rev_to_use == 2) {
551 mpa->private_data_size +=
552 htons(sizeof(struct mpa_v2_conn_params));
553 mpa_v2_params.ird = htons((u16)ep->ird);
554 mpa_v2_params.ord = htons((u16)ep->ord);
555
556 if (peer2peer) {
557 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
558 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
559 mpa_v2_params.ord |=
560 htons(MPA_V2_RDMA_WRITE_RTR);
561 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
562 mpa_v2_params.ord |=
563 htons(MPA_V2_RDMA_READ_RTR);
564 }
565 memcpy(mpa->private_data, &mpa_v2_params,
566 sizeof(struct mpa_v2_conn_params));
567
568 if (ep->plen)
569 memcpy(mpa->private_data +
570 sizeof(struct mpa_v2_conn_params),
571 ep->mpa_pkt + sizeof(*mpa), ep->plen);
572 } else
573 if (ep->plen)
574 memcpy(mpa->private_data,
575 ep->mpa_pkt + sizeof(*mpa), ep->plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700576
577 /*
578 * Reference the mpa skb. This ensures the data area
579 * will remain in memory until the hw acks the tx.
580 * Function fw4_ack() will deref it.
581 */
582 skb_get(skb);
583 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
584 BUG_ON(ep->mpa_skb);
585 ep->mpa_skb = skb;
586 c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
587 start_ep_timer(ep);
588 state_set(&ep->com, MPA_REQ_SENT);
589 ep->mpa_attr.initiator = 1;
590 return;
591}
592
593static int send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen)
594{
595 int mpalen, wrlen;
596 struct fw_ofld_tx_data_wr *req;
597 struct mpa_message *mpa;
598 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530599 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700600
601 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
602
603 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530604 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
605 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700606 wrlen = roundup(mpalen + sizeof *req, 16);
607
608 skb = get_skb(NULL, wrlen, GFP_KERNEL);
609 if (!skb) {
610 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
611 return -ENOMEM;
612 }
613 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
614
615 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
616 memset(req, 0, wrlen);
617 req->op_to_immdlen = cpu_to_be32(
618 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
619 FW_WR_COMPL(1) |
620 FW_WR_IMMDLEN(mpalen));
621 req->flowid_len16 = cpu_to_be32(
622 FW_WR_FLOWID(ep->hwtid) |
623 FW_WR_LEN16(wrlen >> 4));
624 req->plen = cpu_to_be32(mpalen);
625 req->tunnel_to_proxy = cpu_to_be32(
626 FW_OFLD_TX_DATA_WR_FLUSH(1) |
627 FW_OFLD_TX_DATA_WR_SHOVE(1));
628
629 mpa = (struct mpa_message *)(req + 1);
630 memset(mpa, 0, sizeof(*mpa));
631 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
632 mpa->flags = MPA_REJECT;
633 mpa->revision = mpa_rev;
634 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530635
636 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
637 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
638 mpa->private_data_size +=
639 htons(sizeof(struct mpa_v2_conn_params));
640 mpa_v2_params.ird = htons(((u16)ep->ird) |
641 (peer2peer ? MPA_V2_PEER2PEER_MODEL :
642 0));
643 mpa_v2_params.ord = htons(((u16)ep->ord) | (peer2peer ?
644 (p2p_type ==
645 FW_RI_INIT_P2PTYPE_RDMA_WRITE ?
646 MPA_V2_RDMA_WRITE_RTR : p2p_type ==
647 FW_RI_INIT_P2PTYPE_READ_REQ ?
648 MPA_V2_RDMA_READ_RTR : 0) : 0));
649 memcpy(mpa->private_data, &mpa_v2_params,
650 sizeof(struct mpa_v2_conn_params));
651
652 if (ep->plen)
653 memcpy(mpa->private_data +
654 sizeof(struct mpa_v2_conn_params), pdata, plen);
655 } else
656 if (plen)
657 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700658
659 /*
660 * Reference the mpa skb again. This ensures the data area
661 * will remain in memory until the hw acks the tx.
662 * Function fw4_ack() will deref it.
663 */
664 skb_get(skb);
665 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
666 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
667 BUG_ON(ep->mpa_skb);
668 ep->mpa_skb = skb;
669 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
670}
671
672static int send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen)
673{
674 int mpalen, wrlen;
675 struct fw_ofld_tx_data_wr *req;
676 struct mpa_message *mpa;
677 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530678 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700679
680 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
681
682 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530683 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
684 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700685 wrlen = roundup(mpalen + sizeof *req, 16);
686
687 skb = get_skb(NULL, wrlen, GFP_KERNEL);
688 if (!skb) {
689 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
690 return -ENOMEM;
691 }
692 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
693
694 req = (struct fw_ofld_tx_data_wr *) skb_put(skb, wrlen);
695 memset(req, 0, wrlen);
696 req->op_to_immdlen = cpu_to_be32(
697 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
698 FW_WR_COMPL(1) |
699 FW_WR_IMMDLEN(mpalen));
700 req->flowid_len16 = cpu_to_be32(
701 FW_WR_FLOWID(ep->hwtid) |
702 FW_WR_LEN16(wrlen >> 4));
703 req->plen = cpu_to_be32(mpalen);
704 req->tunnel_to_proxy = cpu_to_be32(
705 FW_OFLD_TX_DATA_WR_FLUSH(1) |
706 FW_OFLD_TX_DATA_WR_SHOVE(1));
707
708 mpa = (struct mpa_message *)(req + 1);
709 memset(mpa, 0, sizeof(*mpa));
710 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
711 mpa->flags = (ep->mpa_attr.crc_enabled ? MPA_CRC : 0) |
712 (markers_enabled ? MPA_MARKERS : 0);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530713 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700714 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530715
716 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
717 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
718 mpa->private_data_size +=
719 htons(sizeof(struct mpa_v2_conn_params));
720 mpa_v2_params.ird = htons((u16)ep->ird);
721 mpa_v2_params.ord = htons((u16)ep->ord);
722 if (peer2peer && (ep->mpa_attr.p2p_type !=
723 FW_RI_INIT_P2PTYPE_DISABLED)) {
724 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
725
726 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
727 mpa_v2_params.ord |=
728 htons(MPA_V2_RDMA_WRITE_RTR);
729 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
730 mpa_v2_params.ord |=
731 htons(MPA_V2_RDMA_READ_RTR);
732 }
733
734 memcpy(mpa->private_data, &mpa_v2_params,
735 sizeof(struct mpa_v2_conn_params));
736
737 if (ep->plen)
738 memcpy(mpa->private_data +
739 sizeof(struct mpa_v2_conn_params), pdata, plen);
740 } else
741 if (plen)
742 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700743
744 /*
745 * Reference the mpa skb. This ensures the data area
746 * will remain in memory until the hw acks the tx.
747 * Function fw4_ack() will deref it.
748 */
749 skb_get(skb);
750 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
751 ep->mpa_skb = skb;
752 state_set(&ep->com, MPA_REP_SENT);
753 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
754}
755
756static int act_establish(struct c4iw_dev *dev, struct sk_buff *skb)
757{
758 struct c4iw_ep *ep;
759 struct cpl_act_establish *req = cplhdr(skb);
760 unsigned int tid = GET_TID(req);
761 unsigned int atid = GET_TID_TID(ntohl(req->tos_atid));
762 struct tid_info *t = dev->rdev.lldi.tids;
763
764 ep = lookup_atid(t, atid);
765
766 PDBG("%s ep %p tid %u snd_isn %u rcv_isn %u\n", __func__, ep, tid,
767 be32_to_cpu(req->snd_isn), be32_to_cpu(req->rcv_isn));
768
769 dst_confirm(ep->dst);
770
771 /* setup the hwtid for this connection */
772 ep->hwtid = tid;
773 cxgb4_insert_tid(t, ep, tid);
774
775 ep->snd_seq = be32_to_cpu(req->snd_isn);
776 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
777
778 set_emss(ep, ntohs(req->tcp_opt));
779
780 /* dealloc the atid */
781 cxgb4_free_atid(t, atid);
782
783 /* start MPA negotiation */
784 send_flowc(ep, NULL);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530785 if (ep->retry_with_mpa_v1)
786 send_mpa_req(ep, skb, 1);
787 else
788 send_mpa_req(ep, skb, mpa_rev);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700789
790 return 0;
791}
792
793static void close_complete_upcall(struct c4iw_ep *ep)
794{
795 struct iw_cm_event event;
796
797 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
798 memset(&event, 0, sizeof(event));
799 event.event = IW_CM_EVENT_CLOSE;
800 if (ep->com.cm_id) {
801 PDBG("close complete delivered ep %p cm_id %p tid %u\n",
802 ep, ep->com.cm_id, ep->hwtid);
803 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
804 ep->com.cm_id->rem_ref(ep->com.cm_id);
805 ep->com.cm_id = NULL;
806 ep->com.qp = NULL;
807 }
808}
809
810static int abort_connection(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
811{
812 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
813 close_complete_upcall(ep);
814 state_set(&ep->com, ABORTING);
815 return send_abort(ep, skb, gfp);
816}
817
818static void peer_close_upcall(struct c4iw_ep *ep)
819{
820 struct iw_cm_event event;
821
822 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
823 memset(&event, 0, sizeof(event));
824 event.event = IW_CM_EVENT_DISCONNECT;
825 if (ep->com.cm_id) {
826 PDBG("peer close delivered ep %p cm_id %p tid %u\n",
827 ep, ep->com.cm_id, ep->hwtid);
828 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
829 }
830}
831
832static void peer_abort_upcall(struct c4iw_ep *ep)
833{
834 struct iw_cm_event event;
835
836 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
837 memset(&event, 0, sizeof(event));
838 event.event = IW_CM_EVENT_CLOSE;
839 event.status = -ECONNRESET;
840 if (ep->com.cm_id) {
841 PDBG("abort delivered ep %p cm_id %p tid %u\n", ep,
842 ep->com.cm_id, ep->hwtid);
843 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
844 ep->com.cm_id->rem_ref(ep->com.cm_id);
845 ep->com.cm_id = NULL;
846 ep->com.qp = NULL;
847 }
848}
849
850static void connect_reply_upcall(struct c4iw_ep *ep, int status)
851{
852 struct iw_cm_event event;
853
854 PDBG("%s ep %p tid %u status %d\n", __func__, ep, ep->hwtid, status);
855 memset(&event, 0, sizeof(event));
856 event.event = IW_CM_EVENT_CONNECT_REPLY;
857 event.status = status;
858 event.local_addr = ep->com.local_addr;
859 event.remote_addr = ep->com.remote_addr;
860
861 if ((status == 0) || (status == -ECONNREFUSED)) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530862 if (!ep->tried_with_mpa_v1) {
863 /* this means MPA_v2 is used */
864 event.private_data_len = ep->plen -
865 sizeof(struct mpa_v2_conn_params);
866 event.private_data = ep->mpa_pkt +
867 sizeof(struct mpa_message) +
868 sizeof(struct mpa_v2_conn_params);
869 } else {
870 /* this means MPA_v1 is used */
871 event.private_data_len = ep->plen;
872 event.private_data = ep->mpa_pkt +
873 sizeof(struct mpa_message);
874 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700875 }
Roland Dreier85963e42010-07-19 13:13:09 -0700876
877 PDBG("%s ep %p tid %u status %d\n", __func__, ep,
878 ep->hwtid, status);
879 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
880
Steve Wisecfdda9d2010-04-21 15:30:06 -0700881 if (status < 0) {
882 ep->com.cm_id->rem_ref(ep->com.cm_id);
883 ep->com.cm_id = NULL;
884 ep->com.qp = NULL;
885 }
886}
887
888static void connect_request_upcall(struct c4iw_ep *ep)
889{
890 struct iw_cm_event event;
891
892 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
893 memset(&event, 0, sizeof(event));
894 event.event = IW_CM_EVENT_CONNECT_REQUEST;
895 event.local_addr = ep->com.local_addr;
896 event.remote_addr = ep->com.remote_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700897 event.provider_data = ep;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530898 if (!ep->tried_with_mpa_v1) {
899 /* this means MPA_v2 is used */
900 event.ord = ep->ord;
901 event.ird = ep->ird;
902 event.private_data_len = ep->plen -
903 sizeof(struct mpa_v2_conn_params);
904 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message) +
905 sizeof(struct mpa_v2_conn_params);
906 } else {
907 /* this means MPA_v1 is used. Send max supported */
908 event.ord = c4iw_max_read_depth;
909 event.ird = c4iw_max_read_depth;
910 event.private_data_len = ep->plen;
911 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message);
912 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700913 if (state_read(&ep->parent_ep->com) != DEAD) {
914 c4iw_get_ep(&ep->com);
915 ep->parent_ep->com.cm_id->event_handler(
916 ep->parent_ep->com.cm_id,
917 &event);
918 }
919 c4iw_put_ep(&ep->parent_ep->com);
920 ep->parent_ep = NULL;
921}
922
923static void established_upcall(struct c4iw_ep *ep)
924{
925 struct iw_cm_event event;
926
927 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
928 memset(&event, 0, sizeof(event));
929 event.event = IW_CM_EVENT_ESTABLISHED;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530930 event.ird = ep->ird;
931 event.ord = ep->ord;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700932 if (ep->com.cm_id) {
933 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
934 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
935 }
936}
937
938static int update_rx_credits(struct c4iw_ep *ep, u32 credits)
939{
940 struct cpl_rx_data_ack *req;
941 struct sk_buff *skb;
942 int wrlen = roundup(sizeof *req, 16);
943
944 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
945 skb = get_skb(NULL, wrlen, GFP_KERNEL);
946 if (!skb) {
947 printk(KERN_ERR MOD "update_rx_credits - cannot alloc skb!\n");
948 return 0;
949 }
950
951 req = (struct cpl_rx_data_ack *) skb_put(skb, wrlen);
952 memset(req, 0, wrlen);
953 INIT_TP_WR(req, ep->hwtid);
954 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_RX_DATA_ACK,
955 ep->hwtid));
Steve Wiseba6d3922010-06-23 15:46:49 +0000956 req->credit_dack = cpu_to_be32(credits | RX_FORCE_ACK(1) |
957 F_RX_DACK_CHANGE |
958 V_RX_DACK_MODE(dack_mode));
Steve Wised4f1a5c2010-07-23 19:12:32 +0000959 set_wr_txq(skb, CPL_PRIORITY_ACK, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700960 c4iw_ofld_send(&ep->com.dev->rdev, skb);
961 return credits;
962}
963
964static void process_mpa_reply(struct c4iw_ep *ep, struct sk_buff *skb)
965{
966 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530967 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700968 u16 plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530969 u16 resp_ird, resp_ord;
970 u8 rtr_mismatch = 0, insuff_ird = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700971 struct c4iw_qp_attributes attrs;
972 enum c4iw_qp_attr_mask mask;
973 int err;
974
975 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
976
977 /*
978 * Stop mpa timer. If it expired, then the state has
979 * changed and we bail since ep_timeout already aborted
980 * the connection.
981 */
982 stop_ep_timer(ep);
983 if (state_read(&ep->com) != MPA_REQ_SENT)
984 return;
985
986 /*
987 * If we get more than the supported amount of private data
988 * then we must fail this connection.
989 */
990 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
991 err = -EINVAL;
992 goto err;
993 }
994
995 /*
996 * copy the new data into our accumulation buffer.
997 */
998 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
999 skb->len);
1000 ep->mpa_pkt_len += skb->len;
1001
1002 /*
1003 * if we don't even have the mpa message, then bail.
1004 */
1005 if (ep->mpa_pkt_len < sizeof(*mpa))
1006 return;
1007 mpa = (struct mpa_message *) ep->mpa_pkt;
1008
1009 /* Validate MPA header. */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301010 if (mpa->revision > mpa_rev) {
1011 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1012 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001013 err = -EPROTO;
1014 goto err;
1015 }
1016 if (memcmp(mpa->key, MPA_KEY_REP, sizeof(mpa->key))) {
1017 err = -EPROTO;
1018 goto err;
1019 }
1020
1021 plen = ntohs(mpa->private_data_size);
1022
1023 /*
1024 * Fail if there's too much private data.
1025 */
1026 if (plen > MPA_MAX_PRIVATE_DATA) {
1027 err = -EPROTO;
1028 goto err;
1029 }
1030
1031 /*
1032 * If plen does not account for pkt size
1033 */
1034 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
1035 err = -EPROTO;
1036 goto err;
1037 }
1038
1039 ep->plen = (u8) plen;
1040
1041 /*
1042 * If we don't have all the pdata yet, then bail.
1043 * We'll continue process when more data arrives.
1044 */
1045 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
1046 return;
1047
1048 if (mpa->flags & MPA_REJECT) {
1049 err = -ECONNREFUSED;
1050 goto err;
1051 }
1052
1053 /*
1054 * If we get here we have accumulated the entire mpa
1055 * start reply message including private data. And
1056 * the MPA header is valid.
1057 */
1058 state_set(&ep->com, FPDU_MODE);
1059 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1060 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1061 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301062 ep->mpa_attr.version = mpa->revision;
1063 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1064
1065 if (mpa->revision == 2) {
1066 ep->mpa_attr.enhanced_rdma_conn =
1067 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1068 if (ep->mpa_attr.enhanced_rdma_conn) {
1069 mpa_v2_params = (struct mpa_v2_conn_params *)
1070 (ep->mpa_pkt + sizeof(*mpa));
1071 resp_ird = ntohs(mpa_v2_params->ird) &
1072 MPA_V2_IRD_ORD_MASK;
1073 resp_ord = ntohs(mpa_v2_params->ord) &
1074 MPA_V2_IRD_ORD_MASK;
1075
1076 /*
1077 * This is a double-check. Ideally, below checks are
1078 * not required since ird/ord stuff has been taken
1079 * care of in c4iw_accept_cr
1080 */
1081 if ((ep->ird < resp_ord) || (ep->ord > resp_ird)) {
1082 err = -ENOMEM;
1083 ep->ird = resp_ord;
1084 ep->ord = resp_ird;
1085 insuff_ird = 1;
1086 }
1087
1088 if (ntohs(mpa_v2_params->ird) &
1089 MPA_V2_PEER2PEER_MODEL) {
1090 if (ntohs(mpa_v2_params->ord) &
1091 MPA_V2_RDMA_WRITE_RTR)
1092 ep->mpa_attr.p2p_type =
1093 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1094 else if (ntohs(mpa_v2_params->ord) &
1095 MPA_V2_RDMA_READ_RTR)
1096 ep->mpa_attr.p2p_type =
1097 FW_RI_INIT_P2PTYPE_READ_REQ;
1098 }
1099 }
1100 } else if (mpa->revision == 1)
1101 if (peer2peer)
1102 ep->mpa_attr.p2p_type = p2p_type;
1103
Steve Wisecfdda9d2010-04-21 15:30:06 -07001104 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301105 "xmit_marker_enabled=%d, version=%d p2p_type=%d local-p2p_type = "
1106 "%d\n", __func__, ep->mpa_attr.crc_enabled,
1107 ep->mpa_attr.recv_marker_enabled,
1108 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1109 ep->mpa_attr.p2p_type, p2p_type);
1110
1111 /*
1112 * If responder's RTR does not match with that of initiator, assign
1113 * FW_RI_INIT_P2PTYPE_DISABLED in mpa attributes so that RTR is not
1114 * generated when moving QP to RTS state.
1115 * A TERM message will be sent after QP has moved to RTS state
1116 */
1117 if ((ep->mpa_attr.version == 2) &&
1118 (ep->mpa_attr.p2p_type != p2p_type)) {
1119 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1120 rtr_mismatch = 1;
1121 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001122
1123 attrs.mpa_attr = ep->mpa_attr;
1124 attrs.max_ird = ep->ird;
1125 attrs.max_ord = ep->ord;
1126 attrs.llp_stream_handle = ep;
1127 attrs.next_state = C4IW_QP_STATE_RTS;
1128
1129 mask = C4IW_QP_ATTR_NEXT_STATE |
1130 C4IW_QP_ATTR_LLP_STREAM_HANDLE | C4IW_QP_ATTR_MPA_ATTR |
1131 C4IW_QP_ATTR_MAX_IRD | C4IW_QP_ATTR_MAX_ORD;
1132
1133 /* bind QP and TID with INIT_WR */
1134 err = c4iw_modify_qp(ep->com.qp->rhp,
1135 ep->com.qp, mask, &attrs, 1);
1136 if (err)
1137 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301138
1139 /*
1140 * If responder's RTR requirement did not match with what initiator
1141 * supports, generate TERM message
1142 */
1143 if (rtr_mismatch) {
1144 printk(KERN_ERR "%s: RTR mismatch, sending TERM\n", __func__);
1145 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1146 attrs.ecode = MPA_NOMATCH_RTR;
1147 attrs.next_state = C4IW_QP_STATE_TERMINATE;
1148 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
1149 C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
1150 err = -ENOMEM;
1151 goto out;
1152 }
1153
1154 /*
1155 * Generate TERM if initiator IRD is not sufficient for responder
1156 * provided ORD. Currently, we do the same behaviour even when
1157 * responder provided IRD is also not sufficient as regards to
1158 * initiator ORD.
1159 */
1160 if (insuff_ird) {
1161 printk(KERN_ERR "%s: Insufficient IRD, sending TERM\n",
1162 __func__);
1163 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1164 attrs.ecode = MPA_INSUFF_IRD;
1165 attrs.next_state = C4IW_QP_STATE_TERMINATE;
1166 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
1167 C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
1168 err = -ENOMEM;
1169 goto out;
1170 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001171 goto out;
1172err:
Steve Wiseb21ef162010-06-10 19:02:55 +00001173 state_set(&ep->com, ABORTING);
1174 send_abort(ep, skb, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001175out:
1176 connect_reply_upcall(ep, err);
1177 return;
1178}
1179
1180static void process_mpa_request(struct c4iw_ep *ep, struct sk_buff *skb)
1181{
1182 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301183 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001184 u16 plen;
1185
1186 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1187
1188 if (state_read(&ep->com) != MPA_REQ_WAIT)
1189 return;
1190
1191 /*
1192 * If we get more than the supported amount of private data
1193 * then we must fail this connection.
1194 */
1195 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
1196 stop_ep_timer(ep);
1197 abort_connection(ep, skb, GFP_KERNEL);
1198 return;
1199 }
1200
1201 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1202
1203 /*
1204 * Copy the new data into our accumulation buffer.
1205 */
1206 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1207 skb->len);
1208 ep->mpa_pkt_len += skb->len;
1209
1210 /*
1211 * If we don't even have the mpa message, then bail.
1212 * We'll continue process when more data arrives.
1213 */
1214 if (ep->mpa_pkt_len < sizeof(*mpa))
1215 return;
1216
1217 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1218 stop_ep_timer(ep);
1219 mpa = (struct mpa_message *) ep->mpa_pkt;
1220
1221 /*
1222 * Validate MPA Header.
1223 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301224 if (mpa->revision > mpa_rev) {
1225 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1226 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001227 abort_connection(ep, skb, GFP_KERNEL);
1228 return;
1229 }
1230
1231 if (memcmp(mpa->key, MPA_KEY_REQ, sizeof(mpa->key))) {
1232 abort_connection(ep, skb, GFP_KERNEL);
1233 return;
1234 }
1235
1236 plen = ntohs(mpa->private_data_size);
1237
1238 /*
1239 * Fail if there's too much private data.
1240 */
1241 if (plen > MPA_MAX_PRIVATE_DATA) {
1242 abort_connection(ep, skb, GFP_KERNEL);
1243 return;
1244 }
1245
1246 /*
1247 * If plen does not account for pkt size
1248 */
1249 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
1250 abort_connection(ep, skb, GFP_KERNEL);
1251 return;
1252 }
1253 ep->plen = (u8) plen;
1254
1255 /*
1256 * If we don't have all the pdata yet, then bail.
1257 */
1258 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
1259 return;
1260
1261 /*
1262 * If we get here we have accumulated the entire mpa
1263 * start reply message including private data.
1264 */
1265 ep->mpa_attr.initiator = 0;
1266 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1267 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1268 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301269 ep->mpa_attr.version = mpa->revision;
1270 if (mpa->revision == 1)
1271 ep->tried_with_mpa_v1 = 1;
1272 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1273
1274 if (mpa->revision == 2) {
1275 ep->mpa_attr.enhanced_rdma_conn =
1276 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1277 if (ep->mpa_attr.enhanced_rdma_conn) {
1278 mpa_v2_params = (struct mpa_v2_conn_params *)
1279 (ep->mpa_pkt + sizeof(*mpa));
1280 ep->ird = ntohs(mpa_v2_params->ird) &
1281 MPA_V2_IRD_ORD_MASK;
1282 ep->ord = ntohs(mpa_v2_params->ord) &
1283 MPA_V2_IRD_ORD_MASK;
1284 if (ntohs(mpa_v2_params->ird) & MPA_V2_PEER2PEER_MODEL)
1285 if (peer2peer) {
1286 if (ntohs(mpa_v2_params->ord) &
1287 MPA_V2_RDMA_WRITE_RTR)
1288 ep->mpa_attr.p2p_type =
1289 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1290 else if (ntohs(mpa_v2_params->ord) &
1291 MPA_V2_RDMA_READ_RTR)
1292 ep->mpa_attr.p2p_type =
1293 FW_RI_INIT_P2PTYPE_READ_REQ;
1294 }
1295 }
1296 } else if (mpa->revision == 1)
1297 if (peer2peer)
1298 ep->mpa_attr.p2p_type = p2p_type;
1299
Steve Wisecfdda9d2010-04-21 15:30:06 -07001300 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
1301 "xmit_marker_enabled=%d, version=%d p2p_type=%d\n", __func__,
1302 ep->mpa_attr.crc_enabled, ep->mpa_attr.recv_marker_enabled,
1303 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1304 ep->mpa_attr.p2p_type);
1305
1306 state_set(&ep->com, MPA_REQ_RCVD);
1307
1308 /* drive upcall */
1309 connect_request_upcall(ep);
1310 return;
1311}
1312
1313static int rx_data(struct c4iw_dev *dev, struct sk_buff *skb)
1314{
1315 struct c4iw_ep *ep;
1316 struct cpl_rx_data *hdr = cplhdr(skb);
1317 unsigned int dlen = ntohs(hdr->len);
1318 unsigned int tid = GET_TID(hdr);
1319 struct tid_info *t = dev->rdev.lldi.tids;
1320
1321 ep = lookup_tid(t, tid);
1322 PDBG("%s ep %p tid %u dlen %u\n", __func__, ep, ep->hwtid, dlen);
1323 skb_pull(skb, sizeof(*hdr));
1324 skb_trim(skb, dlen);
1325
1326 ep->rcv_seq += dlen;
1327 BUG_ON(ep->rcv_seq != (ntohl(hdr->seq) + dlen));
1328
1329 /* update RX credits */
1330 update_rx_credits(ep, dlen);
1331
1332 switch (state_read(&ep->com)) {
1333 case MPA_REQ_SENT:
1334 process_mpa_reply(ep, skb);
1335 break;
1336 case MPA_REQ_WAIT:
1337 process_mpa_request(ep, skb);
1338 break;
1339 case MPA_REP_SENT:
1340 break;
1341 default:
1342 printk(KERN_ERR MOD "%s Unexpected streaming data."
1343 " ep %p state %d tid %u\n",
1344 __func__, ep, state_read(&ep->com), ep->hwtid);
1345
1346 /*
1347 * The ep will timeout and inform the ULP of the failure.
1348 * See ep_timeout().
1349 */
1350 break;
1351 }
1352 return 0;
1353}
1354
1355static int abort_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1356{
1357 struct c4iw_ep *ep;
1358 struct cpl_abort_rpl_rss *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001359 int release = 0;
1360 unsigned int tid = GET_TID(rpl);
1361 struct tid_info *t = dev->rdev.lldi.tids;
1362
1363 ep = lookup_tid(t, tid);
1364 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1365 BUG_ON(!ep);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001366 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001367 switch (ep->com.state) {
1368 case ABORTING:
1369 __state_set(&ep->com, DEAD);
1370 release = 1;
1371 break;
1372 default:
1373 printk(KERN_ERR "%s ep %p state %d\n",
1374 __func__, ep, ep->com.state);
1375 break;
1376 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001377 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001378
1379 if (release)
1380 release_ep_resources(ep);
1381 return 0;
1382}
1383
1384/*
1385 * Return whether a failed active open has allocated a TID
1386 */
1387static inline int act_open_has_tid(int status)
1388{
1389 return status != CPL_ERR_TCAM_FULL && status != CPL_ERR_CONN_EXIST &&
1390 status != CPL_ERR_ARP_MISS;
1391}
1392
1393static int act_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1394{
1395 struct c4iw_ep *ep;
1396 struct cpl_act_open_rpl *rpl = cplhdr(skb);
1397 unsigned int atid = GET_TID_TID(GET_AOPEN_ATID(
1398 ntohl(rpl->atid_status)));
1399 struct tid_info *t = dev->rdev.lldi.tids;
1400 int status = GET_AOPEN_STATUS(ntohl(rpl->atid_status));
1401
1402 ep = lookup_atid(t, atid);
1403
1404 PDBG("%s ep %p atid %u status %u errno %d\n", __func__, ep, atid,
1405 status, status2errno(status));
1406
1407 if (status == CPL_ERR_RTX_NEG_ADVICE) {
1408 printk(KERN_WARNING MOD "Connection problems for atid %u\n",
1409 atid);
1410 return 0;
1411 }
1412
1413 connect_reply_upcall(ep, status2errno(status));
1414 state_set(&ep->com, DEAD);
1415
1416 if (status && act_open_has_tid(status))
1417 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, GET_TID(rpl));
1418
1419 cxgb4_free_atid(t, atid);
1420 dst_release(ep->dst);
1421 cxgb4_l2t_release(ep->l2t);
1422 c4iw_put_ep(&ep->com);
1423
1424 return 0;
1425}
1426
1427static int pass_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1428{
1429 struct cpl_pass_open_rpl *rpl = cplhdr(skb);
1430 struct tid_info *t = dev->rdev.lldi.tids;
1431 unsigned int stid = GET_TID(rpl);
1432 struct c4iw_listen_ep *ep = lookup_stid(t, stid);
1433
1434 if (!ep) {
1435 printk(KERN_ERR MOD "stid %d lookup failure!\n", stid);
1436 return 0;
1437 }
1438 PDBG("%s ep %p status %d error %d\n", __func__, ep,
1439 rpl->status, status2errno(rpl->status));
Steve Wised9594d92011-05-09 22:06:22 -07001440 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001441
1442 return 0;
1443}
1444
1445static int listen_stop(struct c4iw_listen_ep *ep)
1446{
1447 struct sk_buff *skb;
1448 struct cpl_close_listsvr_req *req;
1449
1450 PDBG("%s ep %p\n", __func__, ep);
1451 skb = get_skb(NULL, sizeof(*req), GFP_KERNEL);
1452 if (!skb) {
1453 printk(KERN_ERR MOD "%s - failed to alloc skb\n", __func__);
1454 return -ENOMEM;
1455 }
1456 req = (struct cpl_close_listsvr_req *) skb_put(skb, sizeof(*req));
1457 INIT_TP_WR(req, 0);
1458 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_LISTSRV_REQ,
1459 ep->stid));
1460 req->reply_ctrl = cpu_to_be16(
1461 QUEUENO(ep->com.dev->rdev.lldi.rxq_ids[0]));
1462 set_wr_txq(skb, CPL_PRIORITY_SETUP, 0);
1463 return c4iw_ofld_send(&ep->com.dev->rdev, skb);
1464}
1465
1466static int close_listsrv_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1467{
1468 struct cpl_close_listsvr_rpl *rpl = cplhdr(skb);
1469 struct tid_info *t = dev->rdev.lldi.tids;
1470 unsigned int stid = GET_TID(rpl);
1471 struct c4iw_listen_ep *ep = lookup_stid(t, stid);
1472
1473 PDBG("%s ep %p\n", __func__, ep);
Steve Wised9594d92011-05-09 22:06:22 -07001474 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001475 return 0;
1476}
1477
1478static void accept_cr(struct c4iw_ep *ep, __be32 peer_ip, struct sk_buff *skb,
1479 struct cpl_pass_accept_req *req)
1480{
1481 struct cpl_pass_accept_rpl *rpl;
1482 unsigned int mtu_idx;
1483 u64 opt0;
1484 u32 opt2;
1485 int wscale;
1486
1487 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1488 BUG_ON(skb_cloned(skb));
1489 skb_trim(skb, sizeof(*rpl));
1490 skb_get(skb);
1491 cxgb4_best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx);
1492 wscale = compute_wscale(rcv_win);
1493 opt0 = KEEP_ALIVE(1) |
Steve Wiseba6d3922010-06-23 15:46:49 +00001494 DELACK(1) |
Steve Wisecfdda9d2010-04-21 15:30:06 -07001495 WND_SCALE(wscale) |
1496 MSS_IDX(mtu_idx) |
1497 L2T_IDX(ep->l2t->idx) |
1498 TX_CHAN(ep->tx_chan) |
1499 SMAC_SEL(ep->smac_idx) |
1500 DSCP(ep->tos) |
Steve Wiseb48f3b92011-03-11 22:30:21 +00001501 ULP_MODE(ULP_MODE_TCPDDP) |
Steve Wisecfdda9d2010-04-21 15:30:06 -07001502 RCV_BUFSIZ(rcv_win>>10);
1503 opt2 = RX_CHANNEL(0) |
1504 RSS_QUEUE_VALID | RSS_QUEUE(ep->rss_qid);
1505
1506 if (enable_tcp_timestamps && req->tcpopt.tstamp)
1507 opt2 |= TSTAMPS_EN(1);
1508 if (enable_tcp_sack && req->tcpopt.sack)
1509 opt2 |= SACK_EN(1);
1510 if (wscale && enable_tcp_window_scaling)
1511 opt2 |= WND_SCALE_EN(1);
1512
1513 rpl = cplhdr(skb);
1514 INIT_TP_WR(rpl, ep->hwtid);
1515 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_PASS_ACCEPT_RPL,
1516 ep->hwtid));
1517 rpl->opt0 = cpu_to_be64(opt0);
1518 rpl->opt2 = cpu_to_be32(opt2);
Steve Wised4f1a5c2010-07-23 19:12:32 +00001519 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001520 c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1521
1522 return;
1523}
1524
1525static void reject_cr(struct c4iw_dev *dev, u32 hwtid, __be32 peer_ip,
1526 struct sk_buff *skb)
1527{
1528 PDBG("%s c4iw_dev %p tid %u peer_ip %x\n", __func__, dev, hwtid,
1529 peer_ip);
1530 BUG_ON(skb_cloned(skb));
1531 skb_trim(skb, sizeof(struct cpl_tid_release));
1532 skb_get(skb);
1533 release_tid(&dev->rdev, hwtid, skb);
1534 return;
1535}
1536
1537static void get_4tuple(struct cpl_pass_accept_req *req,
1538 __be32 *local_ip, __be32 *peer_ip,
1539 __be16 *local_port, __be16 *peer_port)
1540{
1541 int eth_len = G_ETH_HDR_LEN(be32_to_cpu(req->hdr_len));
1542 int ip_len = G_IP_HDR_LEN(be32_to_cpu(req->hdr_len));
1543 struct iphdr *ip = (struct iphdr *)((u8 *)(req + 1) + eth_len);
1544 struct tcphdr *tcp = (struct tcphdr *)
1545 ((u8 *)(req + 1) + eth_len + ip_len);
1546
1547 PDBG("%s saddr 0x%x daddr 0x%x sport %u dport %u\n", __func__,
1548 ntohl(ip->saddr), ntohl(ip->daddr), ntohs(tcp->source),
1549 ntohs(tcp->dest));
1550
1551 *peer_ip = ip->saddr;
1552 *local_ip = ip->daddr;
1553 *peer_port = tcp->source;
1554 *local_port = tcp->dest;
1555
1556 return;
1557}
1558
1559static int pass_accept_req(struct c4iw_dev *dev, struct sk_buff *skb)
1560{
1561 struct c4iw_ep *child_ep, *parent_ep;
1562 struct cpl_pass_accept_req *req = cplhdr(skb);
1563 unsigned int stid = GET_POPEN_TID(ntohl(req->tos_stid));
1564 struct tid_info *t = dev->rdev.lldi.tids;
1565 unsigned int hwtid = GET_TID(req);
David S. Miller69cce1d2011-07-17 23:09:49 -07001566 struct neighbour *neigh;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001567 struct dst_entry *dst;
1568 struct l2t_entry *l2t;
1569 struct rtable *rt;
1570 __be32 local_ip, peer_ip;
1571 __be16 local_port, peer_port;
1572 struct net_device *pdev;
1573 u32 tx_chan, smac_idx;
1574 u16 rss_qid;
1575 u32 mtu;
1576 int step;
Steve Wised4f1a5c2010-07-23 19:12:32 +00001577 int txq_idx, ctrlq_idx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001578
1579 parent_ep = lookup_stid(t, stid);
1580 PDBG("%s parent ep %p tid %u\n", __func__, parent_ep, hwtid);
1581
1582 get_4tuple(req, &local_ip, &peer_ip, &local_port, &peer_port);
1583
1584 if (state_read(&parent_ep->com) != LISTEN) {
1585 printk(KERN_ERR "%s - listening ep not in LISTEN\n",
1586 __func__);
1587 goto reject;
1588 }
1589
1590 /* Find output route */
1591 rt = find_route(dev, local_ip, peer_ip, local_port, peer_port,
1592 GET_POPEN_TOS(ntohl(req->tos_stid)));
1593 if (!rt) {
1594 printk(KERN_ERR MOD "%s - failed to find dst entry!\n",
1595 __func__);
1596 goto reject;
1597 }
Changli Gaod8d1f302010-06-10 23:31:35 -07001598 dst = &rt->dst;
David S. Miller69cce1d2011-07-17 23:09:49 -07001599 neigh = dst_get_neighbour(dst);
1600 if (neigh->dev->flags & IFF_LOOPBACK) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001601 pdev = ip_dev_find(&init_net, peer_ip);
1602 BUG_ON(!pdev);
David S. Miller69cce1d2011-07-17 23:09:49 -07001603 l2t = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh, pdev, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001604 mtu = pdev->mtu;
1605 tx_chan = cxgb4_port_chan(pdev);
Steve Wise2c5934b2010-06-23 15:46:44 +00001606 smac_idx = (cxgb4_port_viid(pdev) & 0x7F) << 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001607 step = dev->rdev.lldi.ntxq / dev->rdev.lldi.nchan;
1608 txq_idx = cxgb4_port_idx(pdev) * step;
Steve Wised4f1a5c2010-07-23 19:12:32 +00001609 ctrlq_idx = cxgb4_port_idx(pdev);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001610 step = dev->rdev.lldi.nrxq / dev->rdev.lldi.nchan;
1611 rss_qid = dev->rdev.lldi.rxq_ids[cxgb4_port_idx(pdev) * step];
1612 dev_put(pdev);
1613 } else {
David S. Miller69cce1d2011-07-17 23:09:49 -07001614 l2t = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh, neigh->dev, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001615 mtu = dst_mtu(dst);
David S. Miller69cce1d2011-07-17 23:09:49 -07001616 tx_chan = cxgb4_port_chan(neigh->dev);
1617 smac_idx = (cxgb4_port_viid(neigh->dev) & 0x7F) << 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001618 step = dev->rdev.lldi.ntxq / dev->rdev.lldi.nchan;
David S. Miller69cce1d2011-07-17 23:09:49 -07001619 txq_idx = cxgb4_port_idx(neigh->dev) * step;
1620 ctrlq_idx = cxgb4_port_idx(neigh->dev);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001621 step = dev->rdev.lldi.nrxq / dev->rdev.lldi.nchan;
1622 rss_qid = dev->rdev.lldi.rxq_ids[
David S. Miller69cce1d2011-07-17 23:09:49 -07001623 cxgb4_port_idx(neigh->dev) * step];
Steve Wisecfdda9d2010-04-21 15:30:06 -07001624 }
1625 if (!l2t) {
1626 printk(KERN_ERR MOD "%s - failed to allocate l2t entry!\n",
1627 __func__);
1628 dst_release(dst);
1629 goto reject;
1630 }
1631
1632 child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
1633 if (!child_ep) {
1634 printk(KERN_ERR MOD "%s - failed to allocate ep entry!\n",
1635 __func__);
1636 cxgb4_l2t_release(l2t);
1637 dst_release(dst);
1638 goto reject;
1639 }
1640 state_set(&child_ep->com, CONNECTING);
1641 child_ep->com.dev = dev;
1642 child_ep->com.cm_id = NULL;
1643 child_ep->com.local_addr.sin_family = PF_INET;
1644 child_ep->com.local_addr.sin_port = local_port;
1645 child_ep->com.local_addr.sin_addr.s_addr = local_ip;
1646 child_ep->com.remote_addr.sin_family = PF_INET;
1647 child_ep->com.remote_addr.sin_port = peer_port;
1648 child_ep->com.remote_addr.sin_addr.s_addr = peer_ip;
1649 c4iw_get_ep(&parent_ep->com);
1650 child_ep->parent_ep = parent_ep;
1651 child_ep->tos = GET_POPEN_TOS(ntohl(req->tos_stid));
1652 child_ep->l2t = l2t;
1653 child_ep->dst = dst;
1654 child_ep->hwtid = hwtid;
1655 child_ep->tx_chan = tx_chan;
1656 child_ep->smac_idx = smac_idx;
1657 child_ep->rss_qid = rss_qid;
1658 child_ep->mtu = mtu;
1659 child_ep->txq_idx = txq_idx;
Steve Wised4f1a5c2010-07-23 19:12:32 +00001660 child_ep->ctrlq_idx = ctrlq_idx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001661
1662 PDBG("%s tx_chan %u smac_idx %u rss_qid %u\n", __func__,
1663 tx_chan, smac_idx, rss_qid);
1664
1665 init_timer(&child_ep->timer);
1666 cxgb4_insert_tid(t, child_ep, hwtid);
1667 accept_cr(child_ep, peer_ip, skb, req);
1668 goto out;
1669reject:
1670 reject_cr(dev, hwtid, peer_ip, skb);
1671out:
1672 return 0;
1673}
1674
1675static int pass_establish(struct c4iw_dev *dev, struct sk_buff *skb)
1676{
1677 struct c4iw_ep *ep;
1678 struct cpl_pass_establish *req = cplhdr(skb);
1679 struct tid_info *t = dev->rdev.lldi.tids;
1680 unsigned int tid = GET_TID(req);
1681
1682 ep = lookup_tid(t, tid);
1683 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1684 ep->snd_seq = be32_to_cpu(req->snd_isn);
1685 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
1686
1687 set_emss(ep, ntohs(req->tcp_opt));
1688
1689 dst_confirm(ep->dst);
1690 state_set(&ep->com, MPA_REQ_WAIT);
1691 start_ep_timer(ep);
1692 send_flowc(ep, skb);
1693
1694 return 0;
1695}
1696
1697static int peer_close(struct c4iw_dev *dev, struct sk_buff *skb)
1698{
1699 struct cpl_peer_close *hdr = cplhdr(skb);
1700 struct c4iw_ep *ep;
1701 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001702 int disconnect = 1;
1703 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001704 struct tid_info *t = dev->rdev.lldi.tids;
1705 unsigned int tid = GET_TID(hdr);
Steve Wise8da7e7a2011-06-14 20:59:27 +00001706 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001707
1708 ep = lookup_tid(t, tid);
1709 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1710 dst_confirm(ep->dst);
1711
Steve Wise2f5b48c2010-09-10 11:15:36 -05001712 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001713 switch (ep->com.state) {
1714 case MPA_REQ_WAIT:
1715 __state_set(&ep->com, CLOSING);
1716 break;
1717 case MPA_REQ_SENT:
1718 __state_set(&ep->com, CLOSING);
1719 connect_reply_upcall(ep, -ECONNRESET);
1720 break;
1721 case MPA_REQ_RCVD:
1722
1723 /*
1724 * We're gonna mark this puppy DEAD, but keep
1725 * the reference on it until the ULP accepts or
1726 * rejects the CR. Also wake up anyone waiting
1727 * in rdma connection migration (see c4iw_accept_cr()).
1728 */
1729 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001730 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07001731 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001732 break;
1733 case MPA_REP_SENT:
1734 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001735 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07001736 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001737 break;
1738 case FPDU_MODE:
Steve Wiseca5a2202010-07-23 19:12:37 +00001739 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001740 __state_set(&ep->com, CLOSING);
Steve Wise30c95c22011-05-09 22:06:22 -07001741 attrs.next_state = C4IW_QP_STATE_CLOSING;
Steve Wise8da7e7a2011-06-14 20:59:27 +00001742 ret = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wise30c95c22011-05-09 22:06:22 -07001743 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Steve Wise8da7e7a2011-06-14 20:59:27 +00001744 if (ret != -ECONNRESET) {
1745 peer_close_upcall(ep);
1746 disconnect = 1;
1747 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001748 break;
1749 case ABORTING:
1750 disconnect = 0;
1751 break;
1752 case CLOSING:
1753 __state_set(&ep->com, MORIBUND);
1754 disconnect = 0;
1755 break;
1756 case MORIBUND:
Steve Wiseca5a2202010-07-23 19:12:37 +00001757 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001758 if (ep->com.cm_id && ep->com.qp) {
1759 attrs.next_state = C4IW_QP_STATE_IDLE;
1760 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
1761 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1762 }
1763 close_complete_upcall(ep);
1764 __state_set(&ep->com, DEAD);
1765 release = 1;
1766 disconnect = 0;
1767 break;
1768 case DEAD:
1769 disconnect = 0;
1770 break;
1771 default:
1772 BUG_ON(1);
1773 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001774 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001775 if (disconnect)
1776 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
1777 if (release)
1778 release_ep_resources(ep);
1779 return 0;
1780}
1781
1782/*
1783 * Returns whether an ABORT_REQ_RSS message is a negative advice.
1784 */
1785static int is_neg_adv_abort(unsigned int status)
1786{
1787 return status == CPL_ERR_RTX_NEG_ADVICE ||
1788 status == CPL_ERR_PERSIST_NEG_ADVICE;
1789}
1790
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301791static int c4iw_reconnect(struct c4iw_ep *ep)
1792{
1793 int err = 0;
1794 struct rtable *rt;
1795 struct net_device *pdev;
1796 struct neighbour *neigh;
1797 int step;
1798
1799 PDBG("%s qp %p cm_id %p\n", __func__, ep->com.qp, ep->com.cm_id);
1800 init_timer(&ep->timer);
1801
1802 /*
1803 * Allocate an active TID to initiate a TCP connection.
1804 */
1805 ep->atid = cxgb4_alloc_atid(ep->com.dev->rdev.lldi.tids, ep);
1806 if (ep->atid == -1) {
1807 printk(KERN_ERR MOD "%s - cannot alloc atid.\n", __func__);
1808 err = -ENOMEM;
1809 goto fail2;
1810 }
1811
1812 /* find a route */
1813 rt = find_route(ep->com.dev,
1814 ep->com.cm_id->local_addr.sin_addr.s_addr,
1815 ep->com.cm_id->remote_addr.sin_addr.s_addr,
1816 ep->com.cm_id->local_addr.sin_port,
1817 ep->com.cm_id->remote_addr.sin_port, 0);
1818 if (!rt) {
1819 printk(KERN_ERR MOD "%s - cannot find route.\n", __func__);
1820 err = -EHOSTUNREACH;
1821 goto fail3;
1822 }
1823 ep->dst = &rt->dst;
1824
1825 neigh = dst_get_neighbour(ep->dst);
1826
1827 /* get a l2t entry */
1828 if (neigh->dev->flags & IFF_LOOPBACK) {
1829 PDBG("%s LOOPBACK\n", __func__);
1830 pdev = ip_dev_find(&init_net,
1831 ep->com.cm_id->remote_addr.sin_addr.s_addr);
1832 ep->l2t = cxgb4_l2t_get(ep->com.dev->rdev.lldi.l2t,
1833 neigh, pdev, 0);
1834 ep->mtu = pdev->mtu;
1835 ep->tx_chan = cxgb4_port_chan(pdev);
1836 ep->smac_idx = (cxgb4_port_viid(pdev) & 0x7F) << 1;
1837 step = ep->com.dev->rdev.lldi.ntxq /
1838 ep->com.dev->rdev.lldi.nchan;
1839 ep->txq_idx = cxgb4_port_idx(pdev) * step;
1840 step = ep->com.dev->rdev.lldi.nrxq /
1841 ep->com.dev->rdev.lldi.nchan;
1842 ep->ctrlq_idx = cxgb4_port_idx(pdev);
1843 ep->rss_qid = ep->com.dev->rdev.lldi.rxq_ids[
1844 cxgb4_port_idx(pdev) * step];
1845 dev_put(pdev);
1846 } else {
1847 ep->l2t = cxgb4_l2t_get(ep->com.dev->rdev.lldi.l2t,
1848 neigh, neigh->dev, 0);
1849 ep->mtu = dst_mtu(ep->dst);
1850 ep->tx_chan = cxgb4_port_chan(neigh->dev);
1851 ep->smac_idx = (cxgb4_port_viid(neigh->dev) & 0x7F) << 1;
1852 step = ep->com.dev->rdev.lldi.ntxq /
1853 ep->com.dev->rdev.lldi.nchan;
1854 ep->txq_idx = cxgb4_port_idx(neigh->dev) * step;
1855 ep->ctrlq_idx = cxgb4_port_idx(neigh->dev);
1856 step = ep->com.dev->rdev.lldi.nrxq /
1857 ep->com.dev->rdev.lldi.nchan;
1858 ep->rss_qid = ep->com.dev->rdev.lldi.rxq_ids[
1859 cxgb4_port_idx(neigh->dev) * step];
1860 }
1861 if (!ep->l2t) {
1862 printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
1863 err = -ENOMEM;
1864 goto fail4;
1865 }
1866
1867 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
1868 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
1869 ep->l2t->idx);
1870
1871 state_set(&ep->com, CONNECTING);
1872 ep->tos = 0;
1873
1874 /* send connect request to rnic */
1875 err = send_connect(ep);
1876 if (!err)
1877 goto out;
1878
1879 cxgb4_l2t_release(ep->l2t);
1880fail4:
1881 dst_release(ep->dst);
1882fail3:
1883 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
1884fail2:
1885 /*
1886 * remember to send notification to upper layer.
1887 * We are in here so the upper layer is not aware that this is
1888 * re-connect attempt and so, upper layer is still waiting for
1889 * response of 1st connect request.
1890 */
1891 connect_reply_upcall(ep, -ECONNRESET);
1892 c4iw_put_ep(&ep->com);
1893out:
1894 return err;
1895}
1896
Steve Wisecfdda9d2010-04-21 15:30:06 -07001897static int peer_abort(struct c4iw_dev *dev, struct sk_buff *skb)
1898{
1899 struct cpl_abort_req_rss *req = cplhdr(skb);
1900 struct c4iw_ep *ep;
1901 struct cpl_abort_rpl *rpl;
1902 struct sk_buff *rpl_skb;
1903 struct c4iw_qp_attributes attrs;
1904 int ret;
1905 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001906 struct tid_info *t = dev->rdev.lldi.tids;
1907 unsigned int tid = GET_TID(req);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001908
1909 ep = lookup_tid(t, tid);
1910 if (is_neg_adv_abort(req->status)) {
1911 PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep,
1912 ep->hwtid);
1913 return 0;
1914 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001915 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
1916 ep->com.state);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001917
1918 /*
1919 * Wake up any threads in rdma_init() or rdma_fini().
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301920 * However, this is not needed if com state is just
1921 * MPA_REQ_SENT
Steve Wise2f5b48c2010-09-10 11:15:36 -05001922 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301923 if (ep->com.state != MPA_REQ_SENT)
1924 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001925
1926 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001927 switch (ep->com.state) {
1928 case CONNECTING:
1929 break;
1930 case MPA_REQ_WAIT:
Steve Wiseca5a2202010-07-23 19:12:37 +00001931 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001932 break;
1933 case MPA_REQ_SENT:
Steve Wiseca5a2202010-07-23 19:12:37 +00001934 stop_ep_timer(ep);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301935 if (mpa_rev == 2 && ep->tried_with_mpa_v1)
1936 connect_reply_upcall(ep, -ECONNRESET);
1937 else {
1938 /*
1939 * we just don't send notification upwards because we
1940 * want to retry with mpa_v1 without upper layers even
1941 * knowing it.
1942 *
1943 * do some housekeeping so as to re-initiate the
1944 * connection
1945 */
1946 PDBG("%s: mpa_rev=%d. Retrying with mpav1\n", __func__,
1947 mpa_rev);
1948 ep->retry_with_mpa_v1 = 1;
1949 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001950 break;
1951 case MPA_REP_SENT:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001952 break;
1953 case MPA_REQ_RCVD:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001954 break;
1955 case MORIBUND:
1956 case CLOSING:
Steve Wiseca5a2202010-07-23 19:12:37 +00001957 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001958 /*FALLTHROUGH*/
1959 case FPDU_MODE:
1960 if (ep->com.cm_id && ep->com.qp) {
1961 attrs.next_state = C4IW_QP_STATE_ERROR;
1962 ret = c4iw_modify_qp(ep->com.qp->rhp,
1963 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
1964 &attrs, 1);
1965 if (ret)
1966 printk(KERN_ERR MOD
1967 "%s - qp <- error failed!\n",
1968 __func__);
1969 }
1970 peer_abort_upcall(ep);
1971 break;
1972 case ABORTING:
1973 break;
1974 case DEAD:
1975 PDBG("%s PEER_ABORT IN DEAD STATE!!!!\n", __func__);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001976 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001977 return 0;
1978 default:
1979 BUG_ON(1);
1980 break;
1981 }
1982 dst_confirm(ep->dst);
1983 if (ep->com.state != ABORTING) {
1984 __state_set(&ep->com, DEAD);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301985 /* we don't release if we want to retry with mpa_v1 */
1986 if (!ep->retry_with_mpa_v1)
1987 release = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001988 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001989 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001990
1991 rpl_skb = get_skb(skb, sizeof(*rpl), GFP_KERNEL);
1992 if (!rpl_skb) {
1993 printk(KERN_ERR MOD "%s - cannot allocate skb!\n",
1994 __func__);
1995 release = 1;
1996 goto out;
1997 }
1998 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
1999 rpl = (struct cpl_abort_rpl *) skb_put(rpl_skb, sizeof(*rpl));
2000 INIT_TP_WR(rpl, ep->hwtid);
2001 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_RPL, ep->hwtid));
2002 rpl->cmd = CPL_ABORT_NO_RST;
2003 c4iw_ofld_send(&ep->com.dev->rdev, rpl_skb);
2004out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002005 if (release)
2006 release_ep_resources(ep);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302007
2008 /* retry with mpa-v1 */
2009 if (ep && ep->retry_with_mpa_v1) {
2010 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
2011 dst_release(ep->dst);
2012 cxgb4_l2t_release(ep->l2t);
2013 c4iw_reconnect(ep);
2014 }
2015
Steve Wisecfdda9d2010-04-21 15:30:06 -07002016 return 0;
2017}
2018
2019static int close_con_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2020{
2021 struct c4iw_ep *ep;
2022 struct c4iw_qp_attributes attrs;
2023 struct cpl_close_con_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002024 int release = 0;
2025 struct tid_info *t = dev->rdev.lldi.tids;
2026 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002027
2028 ep = lookup_tid(t, tid);
2029
2030 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2031 BUG_ON(!ep);
2032
2033 /* The cm_id may be null if we failed to connect */
Steve Wise2f5b48c2010-09-10 11:15:36 -05002034 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002035 switch (ep->com.state) {
2036 case CLOSING:
2037 __state_set(&ep->com, MORIBUND);
2038 break;
2039 case MORIBUND:
Steve Wiseca5a2202010-07-23 19:12:37 +00002040 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002041 if ((ep->com.cm_id) && (ep->com.qp)) {
2042 attrs.next_state = C4IW_QP_STATE_IDLE;
2043 c4iw_modify_qp(ep->com.qp->rhp,
2044 ep->com.qp,
2045 C4IW_QP_ATTR_NEXT_STATE,
2046 &attrs, 1);
2047 }
2048 close_complete_upcall(ep);
2049 __state_set(&ep->com, DEAD);
2050 release = 1;
2051 break;
2052 case ABORTING:
2053 case DEAD:
2054 break;
2055 default:
2056 BUG_ON(1);
2057 break;
2058 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002059 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002060 if (release)
2061 release_ep_resources(ep);
2062 return 0;
2063}
2064
2065static int terminate(struct c4iw_dev *dev, struct sk_buff *skb)
2066{
Steve Wise0e42c1f2010-09-10 11:15:09 -05002067 struct cpl_rdma_terminate *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002068 struct tid_info *t = dev->rdev.lldi.tids;
Steve Wise0e42c1f2010-09-10 11:15:09 -05002069 unsigned int tid = GET_TID(rpl);
2070 struct c4iw_ep *ep;
2071 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002072
2073 ep = lookup_tid(t, tid);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002074 BUG_ON(!ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002075
Steve Wise30c95c22011-05-09 22:06:22 -07002076 if (ep && ep->com.qp) {
Steve Wise0e42c1f2010-09-10 11:15:09 -05002077 printk(KERN_WARNING MOD "TERM received tid %u qpid %u\n", tid,
2078 ep->com.qp->wq.sq.qid);
2079 attrs.next_state = C4IW_QP_STATE_TERMINATE;
2080 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2081 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2082 } else
Steve Wise30c95c22011-05-09 22:06:22 -07002083 printk(KERN_WARNING MOD "TERM received tid %u no ep/qp\n", tid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002084
Steve Wisecfdda9d2010-04-21 15:30:06 -07002085 return 0;
2086}
2087
2088/*
2089 * Upcall from the adapter indicating data has been transmitted.
2090 * For us its just the single MPA request or reply. We can now free
2091 * the skb holding the mpa message.
2092 */
2093static int fw4_ack(struct c4iw_dev *dev, struct sk_buff *skb)
2094{
2095 struct c4iw_ep *ep;
2096 struct cpl_fw4_ack *hdr = cplhdr(skb);
2097 u8 credits = hdr->credits;
2098 unsigned int tid = GET_TID(hdr);
2099 struct tid_info *t = dev->rdev.lldi.tids;
2100
2101
2102 ep = lookup_tid(t, tid);
2103 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
2104 if (credits == 0) {
Joe Perchesaa1ad262010-10-25 19:44:22 -07002105 PDBG("%s 0 credit ack ep %p tid %u state %u\n",
2106 __func__, ep, ep->hwtid, state_read(&ep->com));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002107 return 0;
2108 }
2109
2110 dst_confirm(ep->dst);
2111 if (ep->mpa_skb) {
2112 PDBG("%s last streaming msg ack ep %p tid %u state %u "
2113 "initiator %u freeing skb\n", __func__, ep, ep->hwtid,
2114 state_read(&ep->com), ep->mpa_attr.initiator ? 1 : 0);
2115 kfree_skb(ep->mpa_skb);
2116 ep->mpa_skb = NULL;
2117 }
2118 return 0;
2119}
2120
Steve Wisecfdda9d2010-04-21 15:30:06 -07002121int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
2122{
2123 int err;
2124 struct c4iw_ep *ep = to_ep(cm_id);
2125 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2126
2127 if (state_read(&ep->com) == DEAD) {
2128 c4iw_put_ep(&ep->com);
2129 return -ECONNRESET;
2130 }
2131 BUG_ON(state_read(&ep->com) != MPA_REQ_RCVD);
2132 if (mpa_rev == 0)
2133 abort_connection(ep, NULL, GFP_KERNEL);
2134 else {
2135 err = send_mpa_reject(ep, pdata, pdata_len);
2136 err = c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
2137 }
2138 c4iw_put_ep(&ep->com);
2139 return 0;
2140}
2141
2142int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
2143{
2144 int err;
2145 struct c4iw_qp_attributes attrs;
2146 enum c4iw_qp_attr_mask mask;
2147 struct c4iw_ep *ep = to_ep(cm_id);
2148 struct c4iw_dev *h = to_c4iw_dev(cm_id->device);
2149 struct c4iw_qp *qp = get_qhp(h, conn_param->qpn);
2150
2151 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2152 if (state_read(&ep->com) == DEAD) {
2153 err = -ECONNRESET;
2154 goto err;
2155 }
2156
2157 BUG_ON(state_read(&ep->com) != MPA_REQ_RCVD);
2158 BUG_ON(!qp);
2159
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002160 if ((conn_param->ord > c4iw_max_read_depth) ||
2161 (conn_param->ird > c4iw_max_read_depth)) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002162 abort_connection(ep, NULL, GFP_KERNEL);
2163 err = -EINVAL;
2164 goto err;
2165 }
2166
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302167 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
2168 if (conn_param->ord > ep->ird) {
2169 ep->ird = conn_param->ird;
2170 ep->ord = conn_param->ord;
2171 send_mpa_reject(ep, conn_param->private_data,
2172 conn_param->private_data_len);
2173 abort_connection(ep, NULL, GFP_KERNEL);
2174 err = -ENOMEM;
2175 goto err;
2176 }
2177 if (conn_param->ird > ep->ord) {
2178 if (!ep->ord)
2179 conn_param->ird = 1;
2180 else {
2181 abort_connection(ep, NULL, GFP_KERNEL);
2182 err = -ENOMEM;
2183 goto err;
2184 }
2185 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002186
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302187 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002188 ep->ird = conn_param->ird;
2189 ep->ord = conn_param->ord;
2190
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302191 if (ep->mpa_attr.version != 2)
2192 if (peer2peer && ep->ird == 0)
2193 ep->ird = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002194
2195 PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord);
2196
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302197 cm_id->add_ref(cm_id);
2198 ep->com.cm_id = cm_id;
2199 ep->com.qp = qp;
2200
Steve Wisecfdda9d2010-04-21 15:30:06 -07002201 /* bind QP to EP and move to RTS */
2202 attrs.mpa_attr = ep->mpa_attr;
2203 attrs.max_ird = ep->ird;
2204 attrs.max_ord = ep->ord;
2205 attrs.llp_stream_handle = ep;
2206 attrs.next_state = C4IW_QP_STATE_RTS;
2207
2208 /* bind QP and TID with INIT_WR */
2209 mask = C4IW_QP_ATTR_NEXT_STATE |
2210 C4IW_QP_ATTR_LLP_STREAM_HANDLE |
2211 C4IW_QP_ATTR_MPA_ATTR |
2212 C4IW_QP_ATTR_MAX_IRD |
2213 C4IW_QP_ATTR_MAX_ORD;
2214
2215 err = c4iw_modify_qp(ep->com.qp->rhp,
2216 ep->com.qp, mask, &attrs, 1);
2217 if (err)
2218 goto err1;
2219 err = send_mpa_reply(ep, conn_param->private_data,
2220 conn_param->private_data_len);
2221 if (err)
2222 goto err1;
2223
2224 state_set(&ep->com, FPDU_MODE);
2225 established_upcall(ep);
2226 c4iw_put_ep(&ep->com);
2227 return 0;
2228err1:
2229 ep->com.cm_id = NULL;
2230 ep->com.qp = NULL;
2231 cm_id->rem_ref(cm_id);
2232err:
2233 c4iw_put_ep(&ep->com);
2234 return err;
2235}
2236
2237int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
2238{
2239 int err = 0;
2240 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
2241 struct c4iw_ep *ep;
2242 struct rtable *rt;
2243 struct net_device *pdev;
David S. Miller69cce1d2011-07-17 23:09:49 -07002244 struct neighbour *neigh;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002245 int step;
2246
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002247 if ((conn_param->ord > c4iw_max_read_depth) ||
2248 (conn_param->ird > c4iw_max_read_depth)) {
2249 err = -EINVAL;
2250 goto out;
2251 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002252 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
2253 if (!ep) {
2254 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
2255 err = -ENOMEM;
2256 goto out;
2257 }
2258 init_timer(&ep->timer);
2259 ep->plen = conn_param->private_data_len;
2260 if (ep->plen)
2261 memcpy(ep->mpa_pkt + sizeof(struct mpa_message),
2262 conn_param->private_data, ep->plen);
2263 ep->ird = conn_param->ird;
2264 ep->ord = conn_param->ord;
2265
2266 if (peer2peer && ep->ord == 0)
2267 ep->ord = 1;
2268
2269 cm_id->add_ref(cm_id);
2270 ep->com.dev = dev;
2271 ep->com.cm_id = cm_id;
2272 ep->com.qp = get_qhp(dev, conn_param->qpn);
2273 BUG_ON(!ep->com.qp);
2274 PDBG("%s qpn 0x%x qp %p cm_id %p\n", __func__, conn_param->qpn,
2275 ep->com.qp, cm_id);
2276
2277 /*
2278 * Allocate an active TID to initiate a TCP connection.
2279 */
2280 ep->atid = cxgb4_alloc_atid(dev->rdev.lldi.tids, ep);
2281 if (ep->atid == -1) {
2282 printk(KERN_ERR MOD "%s - cannot alloc atid.\n", __func__);
2283 err = -ENOMEM;
2284 goto fail2;
2285 }
2286
2287 PDBG("%s saddr 0x%x sport 0x%x raddr 0x%x rport 0x%x\n", __func__,
2288 ntohl(cm_id->local_addr.sin_addr.s_addr),
2289 ntohs(cm_id->local_addr.sin_port),
2290 ntohl(cm_id->remote_addr.sin_addr.s_addr),
2291 ntohs(cm_id->remote_addr.sin_port));
2292
2293 /* find a route */
2294 rt = find_route(dev,
2295 cm_id->local_addr.sin_addr.s_addr,
2296 cm_id->remote_addr.sin_addr.s_addr,
2297 cm_id->local_addr.sin_port,
2298 cm_id->remote_addr.sin_port, 0);
2299 if (!rt) {
2300 printk(KERN_ERR MOD "%s - cannot find route.\n", __func__);
2301 err = -EHOSTUNREACH;
2302 goto fail3;
2303 }
Changli Gaod8d1f302010-06-10 23:31:35 -07002304 ep->dst = &rt->dst;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002305
David S. Miller69cce1d2011-07-17 23:09:49 -07002306 neigh = dst_get_neighbour(ep->dst);
2307
Steve Wisecfdda9d2010-04-21 15:30:06 -07002308 /* get a l2t entry */
David S. Miller69cce1d2011-07-17 23:09:49 -07002309 if (neigh->dev->flags & IFF_LOOPBACK) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002310 PDBG("%s LOOPBACK\n", __func__);
2311 pdev = ip_dev_find(&init_net,
2312 cm_id->remote_addr.sin_addr.s_addr);
2313 ep->l2t = cxgb4_l2t_get(ep->com.dev->rdev.lldi.l2t,
David S. Miller69cce1d2011-07-17 23:09:49 -07002314 neigh, pdev, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002315 ep->mtu = pdev->mtu;
2316 ep->tx_chan = cxgb4_port_chan(pdev);
Steve Wise2c5934b2010-06-23 15:46:44 +00002317 ep->smac_idx = (cxgb4_port_viid(pdev) & 0x7F) << 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002318 step = ep->com.dev->rdev.lldi.ntxq /
2319 ep->com.dev->rdev.lldi.nchan;
2320 ep->txq_idx = cxgb4_port_idx(pdev) * step;
2321 step = ep->com.dev->rdev.lldi.nrxq /
2322 ep->com.dev->rdev.lldi.nchan;
Steve Wised4f1a5c2010-07-23 19:12:32 +00002323 ep->ctrlq_idx = cxgb4_port_idx(pdev);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002324 ep->rss_qid = ep->com.dev->rdev.lldi.rxq_ids[
2325 cxgb4_port_idx(pdev) * step];
2326 dev_put(pdev);
2327 } else {
2328 ep->l2t = cxgb4_l2t_get(ep->com.dev->rdev.lldi.l2t,
David S. Miller69cce1d2011-07-17 23:09:49 -07002329 neigh, neigh->dev, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002330 ep->mtu = dst_mtu(ep->dst);
David S. Miller69cce1d2011-07-17 23:09:49 -07002331 ep->tx_chan = cxgb4_port_chan(neigh->dev);
2332 ep->smac_idx = (cxgb4_port_viid(neigh->dev) & 0x7F) << 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002333 step = ep->com.dev->rdev.lldi.ntxq /
2334 ep->com.dev->rdev.lldi.nchan;
David S. Miller69cce1d2011-07-17 23:09:49 -07002335 ep->txq_idx = cxgb4_port_idx(neigh->dev) * step;
2336 ep->ctrlq_idx = cxgb4_port_idx(neigh->dev);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002337 step = ep->com.dev->rdev.lldi.nrxq /
2338 ep->com.dev->rdev.lldi.nchan;
2339 ep->rss_qid = ep->com.dev->rdev.lldi.rxq_ids[
David S. Miller69cce1d2011-07-17 23:09:49 -07002340 cxgb4_port_idx(neigh->dev) * step];
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302341 ep->retry_with_mpa_v1 = 0;
2342 ep->tried_with_mpa_v1 = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002343 }
2344 if (!ep->l2t) {
2345 printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
2346 err = -ENOMEM;
2347 goto fail4;
2348 }
2349
2350 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
2351 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
2352 ep->l2t->idx);
2353
2354 state_set(&ep->com, CONNECTING);
2355 ep->tos = 0;
2356 ep->com.local_addr = cm_id->local_addr;
2357 ep->com.remote_addr = cm_id->remote_addr;
2358
2359 /* send connect request to rnic */
2360 err = send_connect(ep);
2361 if (!err)
2362 goto out;
2363
2364 cxgb4_l2t_release(ep->l2t);
2365fail4:
2366 dst_release(ep->dst);
2367fail3:
2368 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
2369fail2:
2370 cm_id->rem_ref(cm_id);
2371 c4iw_put_ep(&ep->com);
2372out:
2373 return err;
2374}
2375
2376int c4iw_create_listen(struct iw_cm_id *cm_id, int backlog)
2377{
2378 int err = 0;
2379 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
2380 struct c4iw_listen_ep *ep;
2381
2382
2383 might_sleep();
2384
2385 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
2386 if (!ep) {
2387 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
2388 err = -ENOMEM;
2389 goto fail1;
2390 }
2391 PDBG("%s ep %p\n", __func__, ep);
2392 cm_id->add_ref(cm_id);
2393 ep->com.cm_id = cm_id;
2394 ep->com.dev = dev;
2395 ep->backlog = backlog;
2396 ep->com.local_addr = cm_id->local_addr;
2397
2398 /*
2399 * Allocate a server TID.
2400 */
2401 ep->stid = cxgb4_alloc_stid(dev->rdev.lldi.tids, PF_INET, ep);
2402 if (ep->stid == -1) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002403 printk(KERN_ERR MOD "%s - cannot alloc stid.\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002404 err = -ENOMEM;
2405 goto fail2;
2406 }
2407
2408 state_set(&ep->com, LISTEN);
Steve Wiseaadc4df2010-09-10 11:15:25 -05002409 c4iw_init_wr_wait(&ep->com.wr_wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002410 err = cxgb4_create_server(ep->com.dev->rdev.lldi.ports[0], ep->stid,
2411 ep->com.local_addr.sin_addr.s_addr,
2412 ep->com.local_addr.sin_port,
2413 ep->com.dev->rdev.lldi.rxq_ids[0]);
2414 if (err)
2415 goto fail3;
2416
2417 /* wait for pass_open_rpl */
Steve Wiseaadc4df2010-09-10 11:15:25 -05002418 err = c4iw_wait_for_reply(&ep->com.dev->rdev, &ep->com.wr_wait, 0, 0,
2419 __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002420 if (!err) {
2421 cm_id->provider_data = ep;
2422 goto out;
2423 }
2424fail3:
2425 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid, PF_INET);
2426fail2:
2427 cm_id->rem_ref(cm_id);
2428 c4iw_put_ep(&ep->com);
2429fail1:
2430out:
2431 return err;
2432}
2433
2434int c4iw_destroy_listen(struct iw_cm_id *cm_id)
2435{
2436 int err;
2437 struct c4iw_listen_ep *ep = to_listen_ep(cm_id);
2438
2439 PDBG("%s ep %p\n", __func__, ep);
2440
2441 might_sleep();
2442 state_set(&ep->com, DEAD);
Steve Wiseaadc4df2010-09-10 11:15:25 -05002443 c4iw_init_wr_wait(&ep->com.wr_wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002444 err = listen_stop(ep);
2445 if (err)
2446 goto done;
Steve Wiseaadc4df2010-09-10 11:15:25 -05002447 err = c4iw_wait_for_reply(&ep->com.dev->rdev, &ep->com.wr_wait, 0, 0,
2448 __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002449 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid, PF_INET);
2450done:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002451 cm_id->rem_ref(cm_id);
2452 c4iw_put_ep(&ep->com);
2453 return err;
2454}
2455
2456int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
2457{
2458 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002459 int close = 0;
2460 int fatal = 0;
2461 struct c4iw_rdev *rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002462
Steve Wise2f5b48c2010-09-10 11:15:36 -05002463 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002464
2465 PDBG("%s ep %p state %s, abrupt %d\n", __func__, ep,
2466 states[ep->com.state], abrupt);
2467
2468 rdev = &ep->com.dev->rdev;
2469 if (c4iw_fatal_error(rdev)) {
2470 fatal = 1;
2471 close_complete_upcall(ep);
2472 ep->com.state = DEAD;
2473 }
2474 switch (ep->com.state) {
2475 case MPA_REQ_WAIT:
2476 case MPA_REQ_SENT:
2477 case MPA_REQ_RCVD:
2478 case MPA_REP_SENT:
2479 case FPDU_MODE:
2480 close = 1;
2481 if (abrupt)
2482 ep->com.state = ABORTING;
2483 else {
2484 ep->com.state = CLOSING;
Steve Wiseca5a2202010-07-23 19:12:37 +00002485 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002486 }
2487 set_bit(CLOSE_SENT, &ep->com.flags);
2488 break;
2489 case CLOSING:
2490 if (!test_and_set_bit(CLOSE_SENT, &ep->com.flags)) {
2491 close = 1;
2492 if (abrupt) {
Steve Wiseca5a2202010-07-23 19:12:37 +00002493 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002494 ep->com.state = ABORTING;
2495 } else
2496 ep->com.state = MORIBUND;
2497 }
2498 break;
2499 case MORIBUND:
2500 case ABORTING:
2501 case DEAD:
2502 PDBG("%s ignoring disconnect ep %p state %u\n",
2503 __func__, ep, ep->com.state);
2504 break;
2505 default:
2506 BUG();
2507 break;
2508 }
2509
Steve Wisecfdda9d2010-04-21 15:30:06 -07002510 if (close) {
Steve Wise8da7e7a2011-06-14 20:59:27 +00002511 if (abrupt) {
2512 close_complete_upcall(ep);
2513 ret = send_abort(ep, NULL, gfp);
2514 } else
Steve Wisecfdda9d2010-04-21 15:30:06 -07002515 ret = send_halfclose(ep, gfp);
2516 if (ret)
2517 fatal = 1;
2518 }
Steve Wise8da7e7a2011-06-14 20:59:27 +00002519 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002520 if (fatal)
2521 release_ep_resources(ep);
2522 return ret;
2523}
2524
Steve Wise2f5b48c2010-09-10 11:15:36 -05002525static int async_event(struct c4iw_dev *dev, struct sk_buff *skb)
2526{
2527 struct cpl_fw6_msg *rpl = cplhdr(skb);
2528 c4iw_ev_dispatch(dev, (struct t4_cqe *)&rpl->data[0]);
2529 return 0;
2530}
2531
Steve Wisecfdda9d2010-04-21 15:30:06 -07002532/*
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002533 * These are the real handlers that are called from a
2534 * work queue.
2535 */
2536static c4iw_handler_func work_handlers[NUM_CPL_CMDS] = {
2537 [CPL_ACT_ESTABLISH] = act_establish,
2538 [CPL_ACT_OPEN_RPL] = act_open_rpl,
2539 [CPL_RX_DATA] = rx_data,
2540 [CPL_ABORT_RPL_RSS] = abort_rpl,
2541 [CPL_ABORT_RPL] = abort_rpl,
2542 [CPL_PASS_OPEN_RPL] = pass_open_rpl,
2543 [CPL_CLOSE_LISTSRV_RPL] = close_listsrv_rpl,
2544 [CPL_PASS_ACCEPT_REQ] = pass_accept_req,
2545 [CPL_PASS_ESTABLISH] = pass_establish,
2546 [CPL_PEER_CLOSE] = peer_close,
2547 [CPL_ABORT_REQ_RSS] = peer_abort,
2548 [CPL_CLOSE_CON_RPL] = close_con_rpl,
2549 [CPL_RDMA_TERMINATE] = terminate,
Steve Wise2f5b48c2010-09-10 11:15:36 -05002550 [CPL_FW4_ACK] = fw4_ack,
2551 [CPL_FW6_MSG] = async_event
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002552};
2553
2554static void process_timeout(struct c4iw_ep *ep)
2555{
2556 struct c4iw_qp_attributes attrs;
2557 int abort = 1;
2558
Steve Wise2f5b48c2010-09-10 11:15:36 -05002559 mutex_lock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002560 PDBG("%s ep %p tid %u state %d\n", __func__, ep, ep->hwtid,
2561 ep->com.state);
2562 switch (ep->com.state) {
2563 case MPA_REQ_SENT:
2564 __state_set(&ep->com, ABORTING);
2565 connect_reply_upcall(ep, -ETIMEDOUT);
2566 break;
2567 case MPA_REQ_WAIT:
2568 __state_set(&ep->com, ABORTING);
2569 break;
2570 case CLOSING:
2571 case MORIBUND:
2572 if (ep->com.cm_id && ep->com.qp) {
2573 attrs.next_state = C4IW_QP_STATE_ERROR;
2574 c4iw_modify_qp(ep->com.qp->rhp,
2575 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
2576 &attrs, 1);
2577 }
2578 __state_set(&ep->com, ABORTING);
2579 break;
2580 default:
2581 printk(KERN_ERR "%s unexpected state ep %p tid %u state %u\n",
2582 __func__, ep, ep->hwtid, ep->com.state);
2583 WARN_ON(1);
2584 abort = 0;
2585 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002586 mutex_unlock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002587 if (abort)
2588 abort_connection(ep, NULL, GFP_KERNEL);
2589 c4iw_put_ep(&ep->com);
2590}
2591
2592static void process_timedout_eps(void)
2593{
2594 struct c4iw_ep *ep;
2595
2596 spin_lock_irq(&timeout_lock);
2597 while (!list_empty(&timeout_list)) {
2598 struct list_head *tmp;
2599
2600 tmp = timeout_list.next;
2601 list_del(tmp);
2602 spin_unlock_irq(&timeout_lock);
2603 ep = list_entry(tmp, struct c4iw_ep, entry);
2604 process_timeout(ep);
2605 spin_lock_irq(&timeout_lock);
2606 }
2607 spin_unlock_irq(&timeout_lock);
2608}
2609
2610static void process_work(struct work_struct *work)
2611{
2612 struct sk_buff *skb = NULL;
2613 struct c4iw_dev *dev;
Dan Carpenterc1d73562010-05-31 14:00:53 +00002614 struct cpl_act_establish *rpl;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002615 unsigned int opcode;
2616 int ret;
2617
2618 while ((skb = skb_dequeue(&rxq))) {
2619 rpl = cplhdr(skb);
2620 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
2621 opcode = rpl->ot.opcode;
2622
2623 BUG_ON(!work_handlers[opcode]);
2624 ret = work_handlers[opcode](dev, skb);
2625 if (!ret)
2626 kfree_skb(skb);
2627 }
2628 process_timedout_eps();
2629}
2630
2631static DECLARE_WORK(skb_work, process_work);
2632
2633static void ep_timeout(unsigned long arg)
2634{
2635 struct c4iw_ep *ep = (struct c4iw_ep *)arg;
2636
2637 spin_lock(&timeout_lock);
2638 list_add_tail(&ep->entry, &timeout_list);
2639 spin_unlock(&timeout_lock);
2640 queue_work(workq, &skb_work);
2641}
2642
2643/*
Steve Wisecfdda9d2010-04-21 15:30:06 -07002644 * All the CM events are handled on a work queue to have a safe context.
2645 */
2646static int sched(struct c4iw_dev *dev, struct sk_buff *skb)
2647{
2648
2649 /*
2650 * Save dev in the skb->cb area.
2651 */
2652 *((struct c4iw_dev **) (skb->cb + sizeof(void *))) = dev;
2653
2654 /*
2655 * Queue the skb and schedule the worker thread.
2656 */
2657 skb_queue_tail(&rxq, skb);
2658 queue_work(workq, &skb_work);
2659 return 0;
2660}
2661
2662static int set_tcb_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2663{
2664 struct cpl_set_tcb_rpl *rpl = cplhdr(skb);
2665
2666 if (rpl->status != CPL_ERR_NONE) {
2667 printk(KERN_ERR MOD "Unexpected SET_TCB_RPL status %u "
2668 "for tid %u\n", rpl->status, GET_TID(rpl));
2669 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002670 kfree_skb(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002671 return 0;
2672}
2673
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002674static int fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
2675{
2676 struct cpl_fw6_msg *rpl = cplhdr(skb);
2677 struct c4iw_wr_wait *wr_waitp;
2678 int ret;
2679
2680 PDBG("%s type %u\n", __func__, rpl->type);
2681
2682 switch (rpl->type) {
2683 case 1:
2684 ret = (int)((be64_to_cpu(rpl->data[0]) >> 8) & 0xff);
Roland Dreierc8e081a2010-09-27 17:51:04 -07002685 wr_waitp = (struct c4iw_wr_wait *)(__force unsigned long) rpl->data[1];
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002686 PDBG("%s wr_waitp %p ret %u\n", __func__, wr_waitp, ret);
Steve Wised9594d92011-05-09 22:06:22 -07002687 if (wr_waitp)
2688 c4iw_wake_up(wr_waitp, ret ? -ret : 0);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002689 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002690 break;
2691 case 2:
Steve Wise2f5b48c2010-09-10 11:15:36 -05002692 sched(dev, skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002693 break;
2694 default:
2695 printk(KERN_ERR MOD "%s unexpected fw6 msg type %u\n", __func__,
2696 rpl->type);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002697 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002698 break;
2699 }
2700 return 0;
2701}
2702
Steve Wise8da7e7a2011-06-14 20:59:27 +00002703static int peer_abort_intr(struct c4iw_dev *dev, struct sk_buff *skb)
2704{
2705 struct cpl_abort_req_rss *req = cplhdr(skb);
2706 struct c4iw_ep *ep;
2707 struct tid_info *t = dev->rdev.lldi.tids;
2708 unsigned int tid = GET_TID(req);
2709
2710 ep = lookup_tid(t, tid);
2711 if (is_neg_adv_abort(req->status)) {
2712 PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep,
2713 ep->hwtid);
2714 kfree_skb(skb);
2715 return 0;
2716 }
2717 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
2718 ep->com.state);
2719
2720 /*
2721 * Wake up any threads in rdma_init() or rdma_fini().
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302722 * However, this is not needed if com state is just
2723 * MPA_REQ_SENT
Steve Wise8da7e7a2011-06-14 20:59:27 +00002724 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302725 if (ep->com.state != MPA_REQ_SENT)
2726 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002727 sched(dev, skb);
2728 return 0;
2729}
2730
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002731/*
2732 * Most upcalls from the T4 Core go to sched() to
2733 * schedule the processing on a work queue.
2734 */
2735c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS] = {
2736 [CPL_ACT_ESTABLISH] = sched,
2737 [CPL_ACT_OPEN_RPL] = sched,
2738 [CPL_RX_DATA] = sched,
2739 [CPL_ABORT_RPL_RSS] = sched,
2740 [CPL_ABORT_RPL] = sched,
2741 [CPL_PASS_OPEN_RPL] = sched,
2742 [CPL_CLOSE_LISTSRV_RPL] = sched,
2743 [CPL_PASS_ACCEPT_REQ] = sched,
2744 [CPL_PASS_ESTABLISH] = sched,
2745 [CPL_PEER_CLOSE] = sched,
2746 [CPL_CLOSE_CON_RPL] = sched,
Steve Wise8da7e7a2011-06-14 20:59:27 +00002747 [CPL_ABORT_REQ_RSS] = peer_abort_intr,
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002748 [CPL_RDMA_TERMINATE] = sched,
2749 [CPL_FW4_ACK] = sched,
2750 [CPL_SET_TCB_RPL] = set_tcb_rpl,
2751 [CPL_FW6_MSG] = fw6_msg
2752};
2753
Steve Wisecfdda9d2010-04-21 15:30:06 -07002754int __init c4iw_cm_init(void)
2755{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002756 spin_lock_init(&timeout_lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002757 skb_queue_head_init(&rxq);
2758
2759 workq = create_singlethread_workqueue("iw_cxgb4");
2760 if (!workq)
2761 return -ENOMEM;
2762
Steve Wisecfdda9d2010-04-21 15:30:06 -07002763 return 0;
2764}
2765
2766void __exit c4iw_cm_term(void)
2767{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002768 WARN_ON(!list_empty(&timeout_list));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002769 flush_workqueue(workq);
2770 destroy_workqueue(workq);
2771}