blob: 8865a3332a62897d7866b497488a10d7760782a1 [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>
Vipul Pandya1cab7752012-12-10 09:30:55 +000041#include <linux/if_vlan.h>
Steve Wisecfdda9d2010-04-21 15:30:06 -070042
43#include <net/neighbour.h>
44#include <net/netevent.h>
45#include <net/route.h>
Vipul Pandya1cab7752012-12-10 09:30:55 +000046#include <net/tcp.h>
Vipul Pandya830662f2013-07-04 16:10:47 +053047#include <net/ip6_route.h>
48#include <net/addrconf.h>
Steve Wisecfdda9d2010-04-21 15:30:06 -070049
50#include "iw_cxgb4.h"
51
52static char *states[] = {
53 "idle",
54 "listen",
55 "connecting",
56 "mpa_wait_req",
57 "mpa_req_sent",
58 "mpa_req_rcvd",
59 "mpa_rep_sent",
60 "fpdu_mode",
61 "aborting",
62 "closing",
63 "moribund",
64 "dead",
65 NULL,
66};
67
Vipul Pandya5be78ee2012-12-10 09:30:54 +000068static int nocong;
69module_param(nocong, int, 0644);
70MODULE_PARM_DESC(nocong, "Turn of congestion control (default=0)");
71
72static int enable_ecn;
73module_param(enable_ecn, int, 0644);
74MODULE_PARM_DESC(enable_ecn, "Enable ECN (default=0/disabled)");
75
Steve Wiseb52fe092011-03-11 22:30:01 +000076static int dack_mode = 1;
Steve Wiseba6d3922010-06-23 15:46:49 +000077module_param(dack_mode, int, 0644);
Steve Wiseb52fe092011-03-11 22:30:01 +000078MODULE_PARM_DESC(dack_mode, "Delayed ack mode (default=1)");
Steve Wiseba6d3922010-06-23 15:46:49 +000079
Roland Dreierbe4c9ba2010-05-05 14:45:40 -070080int c4iw_max_read_depth = 8;
81module_param(c4iw_max_read_depth, int, 0644);
82MODULE_PARM_DESC(c4iw_max_read_depth, "Per-connection max ORD/IRD (default=8)");
83
Steve Wisecfdda9d2010-04-21 15:30:06 -070084static int enable_tcp_timestamps;
85module_param(enable_tcp_timestamps, int, 0644);
86MODULE_PARM_DESC(enable_tcp_timestamps, "Enable tcp timestamps (default=0)");
87
88static int enable_tcp_sack;
89module_param(enable_tcp_sack, int, 0644);
90MODULE_PARM_DESC(enable_tcp_sack, "Enable tcp SACK (default=0)");
91
92static int enable_tcp_window_scaling = 1;
93module_param(enable_tcp_window_scaling, int, 0644);
94MODULE_PARM_DESC(enable_tcp_window_scaling,
95 "Enable tcp window scaling (default=1)");
96
97int c4iw_debug;
98module_param(c4iw_debug, int, 0644);
99MODULE_PARM_DESC(c4iw_debug, "Enable debug logging (default=0)");
100
101static int peer2peer;
102module_param(peer2peer, int, 0644);
103MODULE_PARM_DESC(peer2peer, "Support peer2peer ULPs (default=0)");
104
105static int p2p_type = FW_RI_INIT_P2PTYPE_READ_REQ;
106module_param(p2p_type, int, 0644);
107MODULE_PARM_DESC(p2p_type, "RDMAP opcode to use for the RTR message: "
108 "1=RDMA_READ 0=RDMA_WRITE (default 1)");
109
110static int ep_timeout_secs = 60;
111module_param(ep_timeout_secs, int, 0644);
112MODULE_PARM_DESC(ep_timeout_secs, "CM Endpoint operation timeout "
113 "in seconds (default=60)");
114
115static int mpa_rev = 1;
116module_param(mpa_rev, int, 0644);
117MODULE_PARM_DESC(mpa_rev, "MPA Revision, 0 supports amso1100, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530118 "1 is RFC0544 spec compliant, 2 is IETF MPA Peer Connect Draft"
119 " compliant (default=1)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700120
121static int markers_enabled;
122module_param(markers_enabled, int, 0644);
123MODULE_PARM_DESC(markers_enabled, "Enable MPA MARKERS (default(0)=disabled)");
124
125static int crc_enabled = 1;
126module_param(crc_enabled, int, 0644);
127MODULE_PARM_DESC(crc_enabled, "Enable MPA CRC (default(1)=enabled)");
128
129static int rcv_win = 256 * 1024;
130module_param(rcv_win, int, 0644);
131MODULE_PARM_DESC(rcv_win, "TCP receive window in bytes (default=256KB)");
132
Steve Wise98ae68b2010-09-10 11:15:41 -0500133static int snd_win = 128 * 1024;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700134module_param(snd_win, int, 0644);
Steve Wise98ae68b2010-09-10 11:15:41 -0500135MODULE_PARM_DESC(snd_win, "TCP send window in bytes (default=128KB)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700136
Steve Wisecfdda9d2010-04-21 15:30:06 -0700137static struct workqueue_struct *workq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700138
139static struct sk_buff_head rxq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700140
141static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp);
142static void ep_timeout(unsigned long arg);
143static void connect_reply_upcall(struct c4iw_ep *ep, int status);
144
Roland Dreierbe4c9ba2010-05-05 14:45:40 -0700145static LIST_HEAD(timeout_list);
146static spinlock_t timeout_lock;
147
Vipul Pandya325abea2013-01-07 13:11:53 +0000148static void deref_qp(struct c4iw_ep *ep)
149{
150 c4iw_qp_rem_ref(&ep->com.qp->ibqp);
151 clear_bit(QP_REFERENCED, &ep->com.flags);
152}
153
154static void ref_qp(struct c4iw_ep *ep)
155{
156 set_bit(QP_REFERENCED, &ep->com.flags);
157 c4iw_qp_add_ref(&ep->com.qp->ibqp);
158}
159
Steve Wisecfdda9d2010-04-21 15:30:06 -0700160static void start_ep_timer(struct c4iw_ep *ep)
161{
162 PDBG("%s ep %p\n", __func__, ep);
163 if (timer_pending(&ep->timer)) {
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000164 pr_err("%s timer already started! ep %p\n",
165 __func__, ep);
166 return;
167 }
168 clear_bit(TIMEOUT, &ep->com.flags);
169 c4iw_get_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700170 ep->timer.expires = jiffies + ep_timeout_secs * HZ;
171 ep->timer.data = (unsigned long)ep;
172 ep->timer.function = ep_timeout;
173 add_timer(&ep->timer);
174}
175
176static void stop_ep_timer(struct c4iw_ep *ep)
177{
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000178 PDBG("%s ep %p stopping\n", __func__, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700179 del_timer_sync(&ep->timer);
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000180 if (!test_and_set_bit(TIMEOUT, &ep->com.flags))
181 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700182}
183
184static int c4iw_l2t_send(struct c4iw_rdev *rdev, struct sk_buff *skb,
185 struct l2t_entry *l2e)
186{
187 int error = 0;
188
189 if (c4iw_fatal_error(rdev)) {
190 kfree_skb(skb);
191 PDBG("%s - device in error state - dropping\n", __func__);
192 return -EIO;
193 }
194 error = cxgb4_l2t_send(rdev->lldi.ports[0], skb, l2e);
195 if (error < 0)
196 kfree_skb(skb);
Steve Wise74594862010-09-10 11:14:58 -0500197 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700198}
199
200int c4iw_ofld_send(struct c4iw_rdev *rdev, struct sk_buff *skb)
201{
202 int error = 0;
203
204 if (c4iw_fatal_error(rdev)) {
205 kfree_skb(skb);
206 PDBG("%s - device in error state - dropping\n", __func__);
207 return -EIO;
208 }
209 error = cxgb4_ofld_send(rdev->lldi.ports[0], skb);
210 if (error < 0)
211 kfree_skb(skb);
Steve Wise74594862010-09-10 11:14:58 -0500212 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700213}
214
215static void release_tid(struct c4iw_rdev *rdev, u32 hwtid, struct sk_buff *skb)
216{
217 struct cpl_tid_release *req;
218
219 skb = get_skb(skb, sizeof *req, GFP_KERNEL);
220 if (!skb)
221 return;
222 req = (struct cpl_tid_release *) skb_put(skb, sizeof(*req));
223 INIT_TP_WR(req, hwtid);
224 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_TID_RELEASE, hwtid));
225 set_wr_txq(skb, CPL_PRIORITY_SETUP, 0);
226 c4iw_ofld_send(rdev, skb);
227 return;
228}
229
230static void set_emss(struct c4iw_ep *ep, u16 opt)
231{
232 ep->emss = ep->com.dev->rdev.lldi.mtus[GET_TCPOPT_MSS(opt)] - 40;
233 ep->mss = ep->emss;
234 if (GET_TCPOPT_TSTAMP(opt))
235 ep->emss -= 12;
236 if (ep->emss < 128)
237 ep->emss = 128;
238 PDBG("%s mss_idx %u mss %u emss=%u\n", __func__, GET_TCPOPT_MSS(opt),
239 ep->mss, ep->emss);
240}
241
242static enum c4iw_ep_state state_read(struct c4iw_ep_common *epc)
243{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700244 enum c4iw_ep_state state;
245
Steve Wise2f5b48c2010-09-10 11:15:36 -0500246 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700247 state = epc->state;
Steve Wise2f5b48c2010-09-10 11:15:36 -0500248 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700249 return state;
250}
251
252static void __state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
253{
254 epc->state = new;
255}
256
257static void state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
258{
Steve Wise2f5b48c2010-09-10 11:15:36 -0500259 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700260 PDBG("%s - %s -> %s\n", __func__, states[epc->state], states[new]);
261 __state_set(epc, new);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500262 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700263 return;
264}
265
266static void *alloc_ep(int size, gfp_t gfp)
267{
268 struct c4iw_ep_common *epc;
269
270 epc = kzalloc(size, gfp);
271 if (epc) {
272 kref_init(&epc->kref);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500273 mutex_init(&epc->mutex);
Steve Wiseaadc4df2010-09-10 11:15:25 -0500274 c4iw_init_wr_wait(&epc->wr_wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700275 }
276 PDBG("%s alloc ep %p\n", __func__, epc);
277 return epc;
278}
279
280void _c4iw_free_ep(struct kref *kref)
281{
282 struct c4iw_ep *ep;
283
284 ep = container_of(kref, struct c4iw_ep, com.kref);
285 PDBG("%s ep %p state %s\n", __func__, ep, states[state_read(&ep->com)]);
Vipul Pandya325abea2013-01-07 13:11:53 +0000286 if (test_bit(QP_REFERENCED, &ep->com.flags))
287 deref_qp(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700288 if (test_bit(RELEASE_RESOURCES, &ep->com.flags)) {
Vipul Pandyafe7e0a42013-01-07 13:11:57 +0000289 remove_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep->hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700290 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
291 dst_release(ep->dst);
292 cxgb4_l2t_release(ep->l2t);
293 }
294 kfree(ep);
295}
296
297static void release_ep_resources(struct c4iw_ep *ep)
298{
299 set_bit(RELEASE_RESOURCES, &ep->com.flags);
300 c4iw_put_ep(&ep->com);
301}
302
Steve Wisecfdda9d2010-04-21 15:30:06 -0700303static int status2errno(int status)
304{
305 switch (status) {
306 case CPL_ERR_NONE:
307 return 0;
308 case CPL_ERR_CONN_RESET:
309 return -ECONNRESET;
310 case CPL_ERR_ARP_MISS:
311 return -EHOSTUNREACH;
312 case CPL_ERR_CONN_TIMEDOUT:
313 return -ETIMEDOUT;
314 case CPL_ERR_TCAM_FULL:
315 return -ENOMEM;
316 case CPL_ERR_CONN_EXIST:
317 return -EADDRINUSE;
318 default:
319 return -EIO;
320 }
321}
322
323/*
324 * Try and reuse skbs already allocated...
325 */
326static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp)
327{
328 if (skb && !skb_is_nonlinear(skb) && !skb_cloned(skb)) {
329 skb_trim(skb, 0);
330 skb_get(skb);
331 skb_reset_transport_header(skb);
332 } else {
333 skb = alloc_skb(len, gfp);
334 }
335 return skb;
336}
337
Vipul Pandya830662f2013-07-04 16:10:47 +0530338static struct net_device *get_real_dev(struct net_device *egress_dev)
339{
340 struct net_device *phys_dev = egress_dev;
341 if (egress_dev->priv_flags & IFF_802_1Q_VLAN)
342 phys_dev = vlan_dev_real_dev(egress_dev);
343 return phys_dev;
344}
345
346static int our_interface(struct c4iw_dev *dev, struct net_device *egress_dev)
347{
348 int i;
349
350 egress_dev = get_real_dev(egress_dev);
351 for (i = 0; i < dev->rdev.lldi.nports; i++)
352 if (dev->rdev.lldi.ports[i] == egress_dev)
353 return 1;
354 return 0;
355}
356
357static struct dst_entry *find_route6(struct c4iw_dev *dev, __u8 *local_ip,
358 __u8 *peer_ip, __be16 local_port,
359 __be16 peer_port, u8 tos,
360 __u32 sin6_scope_id)
361{
362 struct dst_entry *dst = NULL;
363
364 if (IS_ENABLED(CONFIG_IPV6)) {
365 struct flowi6 fl6;
366
367 memset(&fl6, 0, sizeof(fl6));
368 memcpy(&fl6.daddr, peer_ip, 16);
369 memcpy(&fl6.saddr, local_ip, 16);
370 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
371 fl6.flowi6_oif = sin6_scope_id;
372 dst = ip6_route_output(&init_net, NULL, &fl6);
373 if (!dst)
374 goto out;
375 if (!our_interface(dev, ip6_dst_idev(dst)->dev) &&
376 !(ip6_dst_idev(dst)->dev->flags & IFF_LOOPBACK)) {
377 dst_release(dst);
378 dst = NULL;
379 }
380 }
381
382out:
383 return dst;
384}
385
386static struct dst_entry *find_route(struct c4iw_dev *dev, __be32 local_ip,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700387 __be32 peer_ip, __be16 local_port,
388 __be16 peer_port, u8 tos)
389{
390 struct rtable *rt;
David S. Miller31e45432011-05-03 20:25:42 -0700391 struct flowi4 fl4;
Vipul Pandya830662f2013-07-04 16:10:47 +0530392 struct neighbour *n;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700393
David S. Miller31e45432011-05-03 20:25:42 -0700394 rt = ip_route_output_ports(&init_net, &fl4, NULL, peer_ip, local_ip,
David S. Miller78fbfd82011-03-12 00:00:52 -0500395 peer_port, local_port, IPPROTO_TCP,
396 tos, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800397 if (IS_ERR(rt))
Steve Wisecfdda9d2010-04-21 15:30:06 -0700398 return NULL;
Vipul Pandya830662f2013-07-04 16:10:47 +0530399 n = dst_neigh_lookup(&rt->dst, &peer_ip);
400 if (!n)
401 return NULL;
402 if (!our_interface(dev, n->dev)) {
403 dst_release(&rt->dst);
404 return NULL;
405 }
406 neigh_release(n);
407 return &rt->dst;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700408}
409
410static void arp_failure_discard(void *handle, struct sk_buff *skb)
411{
412 PDBG("%s c4iw_dev %p\n", __func__, handle);
413 kfree_skb(skb);
414}
415
416/*
417 * Handle an ARP failure for an active open.
418 */
419static void act_open_req_arp_failure(void *handle, struct sk_buff *skb)
420{
421 printk(KERN_ERR MOD "ARP failure duing connect\n");
422 kfree_skb(skb);
423}
424
425/*
426 * Handle an ARP failure for a CPL_ABORT_REQ. Change it into a no RST variant
427 * and send it along.
428 */
429static void abort_arp_failure(void *handle, struct sk_buff *skb)
430{
431 struct c4iw_rdev *rdev = handle;
432 struct cpl_abort_req *req = cplhdr(skb);
433
434 PDBG("%s rdev %p\n", __func__, rdev);
435 req->cmd = CPL_ABORT_NO_RST;
436 c4iw_ofld_send(rdev, skb);
437}
438
439static void send_flowc(struct c4iw_ep *ep, struct sk_buff *skb)
440{
441 unsigned int flowclen = 80;
442 struct fw_flowc_wr *flowc;
443 int i;
444
445 skb = get_skb(skb, flowclen, GFP_KERNEL);
446 flowc = (struct fw_flowc_wr *)__skb_put(skb, flowclen);
447
448 flowc->op_to_nparams = cpu_to_be32(FW_WR_OP(FW_FLOWC_WR) |
449 FW_FLOWC_WR_NPARAMS(8));
450 flowc->flowid_len16 = cpu_to_be32(FW_WR_LEN16(DIV_ROUND_UP(flowclen,
451 16)) | FW_WR_FLOWID(ep->hwtid));
452
453 flowc->mnemval[0].mnemonic = FW_FLOWC_MNEM_PFNVFN;
Steve Wise947886572011-01-21 17:00:34 +0000454 flowc->mnemval[0].val = cpu_to_be32(PCI_FUNC(ep->com.dev->rdev.lldi.pdev->devfn) << 8);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700455 flowc->mnemval[1].mnemonic = FW_FLOWC_MNEM_CH;
456 flowc->mnemval[1].val = cpu_to_be32(ep->tx_chan);
457 flowc->mnemval[2].mnemonic = FW_FLOWC_MNEM_PORT;
458 flowc->mnemval[2].val = cpu_to_be32(ep->tx_chan);
459 flowc->mnemval[3].mnemonic = FW_FLOWC_MNEM_IQID;
460 flowc->mnemval[3].val = cpu_to_be32(ep->rss_qid);
461 flowc->mnemval[4].mnemonic = FW_FLOWC_MNEM_SNDNXT;
462 flowc->mnemval[4].val = cpu_to_be32(ep->snd_seq);
463 flowc->mnemval[5].mnemonic = FW_FLOWC_MNEM_RCVNXT;
464 flowc->mnemval[5].val = cpu_to_be32(ep->rcv_seq);
465 flowc->mnemval[6].mnemonic = FW_FLOWC_MNEM_SNDBUF;
466 flowc->mnemval[6].val = cpu_to_be32(snd_win);
467 flowc->mnemval[7].mnemonic = FW_FLOWC_MNEM_MSS;
468 flowc->mnemval[7].val = cpu_to_be32(ep->emss);
469 /* Pad WR to 16 byte boundary */
470 flowc->mnemval[8].mnemonic = 0;
471 flowc->mnemval[8].val = 0;
472 for (i = 0; i < 9; i++) {
473 flowc->mnemval[i].r4[0] = 0;
474 flowc->mnemval[i].r4[1] = 0;
475 flowc->mnemval[i].r4[2] = 0;
476 }
477
478 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
479 c4iw_ofld_send(&ep->com.dev->rdev, skb);
480}
481
482static int send_halfclose(struct c4iw_ep *ep, gfp_t gfp)
483{
484 struct cpl_close_con_req *req;
485 struct sk_buff *skb;
486 int wrlen = roundup(sizeof *req, 16);
487
488 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
489 skb = get_skb(NULL, wrlen, gfp);
490 if (!skb) {
491 printk(KERN_ERR MOD "%s - failed to alloc skb\n", __func__);
492 return -ENOMEM;
493 }
494 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
495 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
496 req = (struct cpl_close_con_req *) skb_put(skb, wrlen);
497 memset(req, 0, wrlen);
498 INIT_TP_WR(req, ep->hwtid);
499 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_CON_REQ,
500 ep->hwtid));
501 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
502}
503
504static int send_abort(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
505{
506 struct cpl_abort_req *req;
507 int wrlen = roundup(sizeof *req, 16);
508
509 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
510 skb = get_skb(skb, wrlen, gfp);
511 if (!skb) {
512 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
513 __func__);
514 return -ENOMEM;
515 }
516 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
517 t4_set_arp_err_handler(skb, &ep->com.dev->rdev, abort_arp_failure);
518 req = (struct cpl_abort_req *) skb_put(skb, wrlen);
519 memset(req, 0, wrlen);
520 INIT_TP_WR(req, ep->hwtid);
521 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_REQ, ep->hwtid));
522 req->cmd = CPL_ABORT_SEND_RST;
523 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
524}
525
Vipul Pandya5be78ee2012-12-10 09:30:54 +0000526#define VLAN_NONE 0xfff
527#define FILTER_SEL_VLAN_NONE 0xffff
528#define FILTER_SEL_WIDTH_P_FC (3+1) /* port uses 3 bits, FCoE one bit */
529#define FILTER_SEL_WIDTH_VIN_P_FC \
530 (6 + 7 + FILTER_SEL_WIDTH_P_FC) /* 6 bits are unused, VF uses 7 bits*/
531#define FILTER_SEL_WIDTH_TAG_P_FC \
532 (3 + FILTER_SEL_WIDTH_VIN_P_FC) /* PF uses 3 bits */
533#define FILTER_SEL_WIDTH_VLD_TAG_P_FC (1 + FILTER_SEL_WIDTH_TAG_P_FC)
534
535static unsigned int select_ntuple(struct c4iw_dev *dev, struct dst_entry *dst,
536 struct l2t_entry *l2t)
537{
538 unsigned int ntuple = 0;
539 u32 viid;
540
541 switch (dev->rdev.lldi.filt_mode) {
542
543 /* default filter mode */
544 case HW_TPL_FR_MT_PR_IV_P_FC:
545 if (l2t->vlan == VLAN_NONE)
546 ntuple |= FILTER_SEL_VLAN_NONE << FILTER_SEL_WIDTH_P_FC;
547 else {
548 ntuple |= l2t->vlan << FILTER_SEL_WIDTH_P_FC;
Steve Wise68074bb2013-08-06 21:04:33 +0530549 ntuple |= 1 << FILTER_SEL_WIDTH_TAG_P_FC;
Vipul Pandya5be78ee2012-12-10 09:30:54 +0000550 }
551 ntuple |= l2t->lport << S_PORT | IPPROTO_TCP <<
552 FILTER_SEL_WIDTH_VLD_TAG_P_FC;
553 break;
554 case HW_TPL_FR_MT_PR_OV_P_FC: {
555 viid = cxgb4_port_viid(l2t->neigh->dev);
556
557 ntuple |= FW_VIID_VIN_GET(viid) << FILTER_SEL_WIDTH_P_FC;
558 ntuple |= FW_VIID_PFN_GET(viid) << FILTER_SEL_WIDTH_VIN_P_FC;
559 ntuple |= FW_VIID_VIVLD_GET(viid) << FILTER_SEL_WIDTH_TAG_P_FC;
560 ntuple |= l2t->lport << S_PORT | IPPROTO_TCP <<
561 FILTER_SEL_WIDTH_VLD_TAG_P_FC;
562 break;
563 }
564 default:
565 break;
566 }
567 return ntuple;
568}
569
Steve Wisecfdda9d2010-04-21 15:30:06 -0700570static int send_connect(struct c4iw_ep *ep)
571{
572 struct cpl_act_open_req *req;
Vipul Pandyaf079af72013-03-14 05:08:58 +0000573 struct cpl_t5_act_open_req *t5_req;
Vipul Pandya830662f2013-07-04 16:10:47 +0530574 struct cpl_act_open_req6 *req6;
575 struct cpl_t5_act_open_req6 *t5_req6;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700576 struct sk_buff *skb;
577 u64 opt0;
578 u32 opt2;
579 unsigned int mtu_idx;
580 int wscale;
Vipul Pandya830662f2013-07-04 16:10:47 +0530581 int wrlen;
582 int sizev4 = is_t4(ep->com.dev->rdev.lldi.adapter_type) ?
583 sizeof(struct cpl_act_open_req) :
584 sizeof(struct cpl_t5_act_open_req);
585 int sizev6 = is_t4(ep->com.dev->rdev.lldi.adapter_type) ?
586 sizeof(struct cpl_act_open_req6) :
587 sizeof(struct cpl_t5_act_open_req6);
588 struct sockaddr_in *la = (struct sockaddr_in *)&ep->com.local_addr;
589 struct sockaddr_in *ra = (struct sockaddr_in *)&ep->com.remote_addr;
590 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)&ep->com.local_addr;
591 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
592
593 wrlen = (ep->com.remote_addr.ss_family == AF_INET) ?
594 roundup(sizev4, 16) :
595 roundup(sizev6, 16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700596
597 PDBG("%s ep %p atid %u\n", __func__, ep, ep->atid);
598
599 skb = get_skb(NULL, wrlen, GFP_KERNEL);
600 if (!skb) {
601 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
602 __func__);
603 return -ENOMEM;
604 }
Steve Wised4f1a5c2010-07-23 19:12:32 +0000605 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700606
607 cxgb4_best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx);
608 wscale = compute_wscale(rcv_win);
Vipul Pandya5be78ee2012-12-10 09:30:54 +0000609 opt0 = (nocong ? NO_CONG(1) : 0) |
610 KEEP_ALIVE(1) |
Steve Wiseba6d3922010-06-23 15:46:49 +0000611 DELACK(1) |
Steve Wisecfdda9d2010-04-21 15:30:06 -0700612 WND_SCALE(wscale) |
613 MSS_IDX(mtu_idx) |
614 L2T_IDX(ep->l2t->idx) |
615 TX_CHAN(ep->tx_chan) |
616 SMAC_SEL(ep->smac_idx) |
617 DSCP(ep->tos) |
Steve Wiseb48f3b92011-03-11 22:30:21 +0000618 ULP_MODE(ULP_MODE_TCPDDP) |
Steve Wisecfdda9d2010-04-21 15:30:06 -0700619 RCV_BUFSIZ(rcv_win>>10);
620 opt2 = RX_CHANNEL(0) |
Vipul Pandya5be78ee2012-12-10 09:30:54 +0000621 CCTRL_ECN(enable_ecn) |
Steve Wisecfdda9d2010-04-21 15:30:06 -0700622 RSS_QUEUE_VALID | RSS_QUEUE(ep->rss_qid);
623 if (enable_tcp_timestamps)
624 opt2 |= TSTAMPS_EN(1);
625 if (enable_tcp_sack)
626 opt2 |= SACK_EN(1);
627 if (wscale && enable_tcp_window_scaling)
628 opt2 |= WND_SCALE_EN(1);
629 t4_set_arp_err_handler(skb, NULL, act_open_req_arp_failure);
630
Vipul Pandyaf079af72013-03-14 05:08:58 +0000631 if (is_t4(ep->com.dev->rdev.lldi.adapter_type)) {
Vipul Pandya830662f2013-07-04 16:10:47 +0530632 if (ep->com.remote_addr.ss_family == AF_INET) {
633 req = (struct cpl_act_open_req *) skb_put(skb, wrlen);
634 INIT_TP_WR(req, 0);
635 OPCODE_TID(req) = cpu_to_be32(
Vipul Pandyaf079af72013-03-14 05:08:58 +0000636 MK_OPCODE_TID(CPL_ACT_OPEN_REQ,
637 ((ep->rss_qid << 14) | ep->atid)));
Vipul Pandya830662f2013-07-04 16:10:47 +0530638 req->local_port = la->sin_port;
639 req->peer_port = ra->sin_port;
640 req->local_ip = la->sin_addr.s_addr;
641 req->peer_ip = ra->sin_addr.s_addr;
642 req->opt0 = cpu_to_be64(opt0);
643 req->params = cpu_to_be32(select_ntuple(ep->com.dev,
644 ep->dst, ep->l2t));
645 req->opt2 = cpu_to_be32(opt2);
646 } else {
647 req6 = (struct cpl_act_open_req6 *)skb_put(skb, wrlen);
648
649 INIT_TP_WR(req6, 0);
650 OPCODE_TID(req6) = cpu_to_be32(
651 MK_OPCODE_TID(CPL_ACT_OPEN_REQ6,
652 ((ep->rss_qid<<14)|ep->atid)));
653 req6->local_port = la6->sin6_port;
654 req6->peer_port = ra6->sin6_port;
655 req6->local_ip_hi = *((__be64 *)
656 (la6->sin6_addr.s6_addr));
657 req6->local_ip_lo = *((__be64 *)
658 (la6->sin6_addr.s6_addr + 8));
659 req6->peer_ip_hi = *((__be64 *)
660 (ra6->sin6_addr.s6_addr));
661 req6->peer_ip_lo = *((__be64 *)
662 (ra6->sin6_addr.s6_addr + 8));
663 req6->opt0 = cpu_to_be64(opt0);
664 req6->params = cpu_to_be32(
665 select_ntuple(ep->com.dev, ep->dst,
666 ep->l2t));
667 req6->opt2 = cpu_to_be32(opt2);
668 }
669 } else {
670 if (ep->com.remote_addr.ss_family == AF_INET) {
671 t5_req = (struct cpl_t5_act_open_req *)
672 skb_put(skb, wrlen);
673 INIT_TP_WR(t5_req, 0);
674 OPCODE_TID(t5_req) = cpu_to_be32(
675 MK_OPCODE_TID(CPL_ACT_OPEN_REQ,
676 ((ep->rss_qid << 14) | ep->atid)));
677 t5_req->local_port = la->sin_port;
678 t5_req->peer_port = ra->sin_port;
679 t5_req->local_ip = la->sin_addr.s_addr;
680 t5_req->peer_ip = ra->sin_addr.s_addr;
681 t5_req->opt0 = cpu_to_be64(opt0);
682 t5_req->params = cpu_to_be64(V_FILTER_TUPLE(
683 select_ntuple(ep->com.dev,
684 ep->dst, ep->l2t)));
685 t5_req->opt2 = cpu_to_be32(opt2);
686 } else {
687 t5_req6 = (struct cpl_t5_act_open_req6 *)
688 skb_put(skb, wrlen);
689 INIT_TP_WR(t5_req6, 0);
690 OPCODE_TID(t5_req6) = cpu_to_be32(
691 MK_OPCODE_TID(CPL_ACT_OPEN_REQ6,
692 ((ep->rss_qid<<14)|ep->atid)));
693 t5_req6->local_port = la6->sin6_port;
694 t5_req6->peer_port = ra6->sin6_port;
695 t5_req6->local_ip_hi = *((__be64 *)
696 (la6->sin6_addr.s6_addr));
697 t5_req6->local_ip_lo = *((__be64 *)
698 (la6->sin6_addr.s6_addr + 8));
699 t5_req6->peer_ip_hi = *((__be64 *)
700 (ra6->sin6_addr.s6_addr));
701 t5_req6->peer_ip_lo = *((__be64 *)
702 (ra6->sin6_addr.s6_addr + 8));
703 t5_req6->opt0 = cpu_to_be64(opt0);
704 t5_req6->params = (__force __be64)cpu_to_be32(
705 select_ntuple(ep->com.dev, ep->dst, ep->l2t));
706 t5_req6->opt2 = cpu_to_be32(opt2);
707 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000708 }
709
Vipul Pandya793dad92012-12-10 09:30:56 +0000710 set_bit(ACT_OPEN_REQ, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700711 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
712}
713
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530714static void send_mpa_req(struct c4iw_ep *ep, struct sk_buff *skb,
715 u8 mpa_rev_to_use)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700716{
717 int mpalen, wrlen;
718 struct fw_ofld_tx_data_wr *req;
719 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530720 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700721
722 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
723
724 BUG_ON(skb_cloned(skb));
725
726 mpalen = sizeof(*mpa) + ep->plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530727 if (mpa_rev_to_use == 2)
728 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700729 wrlen = roundup(mpalen + sizeof *req, 16);
730 skb = get_skb(skb, wrlen, GFP_KERNEL);
731 if (!skb) {
732 connect_reply_upcall(ep, -ENOMEM);
733 return;
734 }
735 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
736
737 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
738 memset(req, 0, wrlen);
739 req->op_to_immdlen = cpu_to_be32(
740 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
741 FW_WR_COMPL(1) |
742 FW_WR_IMMDLEN(mpalen));
743 req->flowid_len16 = cpu_to_be32(
744 FW_WR_FLOWID(ep->hwtid) |
745 FW_WR_LEN16(wrlen >> 4));
746 req->plen = cpu_to_be32(mpalen);
747 req->tunnel_to_proxy = cpu_to_be32(
748 FW_OFLD_TX_DATA_WR_FLUSH(1) |
749 FW_OFLD_TX_DATA_WR_SHOVE(1));
750
751 mpa = (struct mpa_message *)(req + 1);
752 memcpy(mpa->key, MPA_KEY_REQ, sizeof(mpa->key));
753 mpa->flags = (crc_enabled ? MPA_CRC : 0) |
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530754 (markers_enabled ? MPA_MARKERS : 0) |
755 (mpa_rev_to_use == 2 ? MPA_ENHANCED_RDMA_CONN : 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700756 mpa->private_data_size = htons(ep->plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530757 mpa->revision = mpa_rev_to_use;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530758 if (mpa_rev_to_use == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530759 ep->tried_with_mpa_v1 = 1;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530760 ep->retry_with_mpa_v1 = 0;
761 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700762
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530763 if (mpa_rev_to_use == 2) {
Roland Dreierf747c342012-07-05 14:16:54 -0700764 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
765 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530766 mpa_v2_params.ird = htons((u16)ep->ird);
767 mpa_v2_params.ord = htons((u16)ep->ord);
768
769 if (peer2peer) {
770 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
771 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
772 mpa_v2_params.ord |=
773 htons(MPA_V2_RDMA_WRITE_RTR);
774 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
775 mpa_v2_params.ord |=
776 htons(MPA_V2_RDMA_READ_RTR);
777 }
778 memcpy(mpa->private_data, &mpa_v2_params,
779 sizeof(struct mpa_v2_conn_params));
780
781 if (ep->plen)
782 memcpy(mpa->private_data +
783 sizeof(struct mpa_v2_conn_params),
784 ep->mpa_pkt + sizeof(*mpa), ep->plen);
785 } else
786 if (ep->plen)
787 memcpy(mpa->private_data,
788 ep->mpa_pkt + sizeof(*mpa), ep->plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700789
790 /*
791 * Reference the mpa skb. This ensures the data area
792 * will remain in memory until the hw acks the tx.
793 * Function fw4_ack() will deref it.
794 */
795 skb_get(skb);
796 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
797 BUG_ON(ep->mpa_skb);
798 ep->mpa_skb = skb;
799 c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
800 start_ep_timer(ep);
801 state_set(&ep->com, MPA_REQ_SENT);
802 ep->mpa_attr.initiator = 1;
803 return;
804}
805
806static int send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen)
807{
808 int mpalen, wrlen;
809 struct fw_ofld_tx_data_wr *req;
810 struct mpa_message *mpa;
811 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530812 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700813
814 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
815
816 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530817 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
818 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700819 wrlen = roundup(mpalen + sizeof *req, 16);
820
821 skb = get_skb(NULL, wrlen, GFP_KERNEL);
822 if (!skb) {
823 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
824 return -ENOMEM;
825 }
826 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
827
828 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
829 memset(req, 0, wrlen);
830 req->op_to_immdlen = cpu_to_be32(
831 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
832 FW_WR_COMPL(1) |
833 FW_WR_IMMDLEN(mpalen));
834 req->flowid_len16 = cpu_to_be32(
835 FW_WR_FLOWID(ep->hwtid) |
836 FW_WR_LEN16(wrlen >> 4));
837 req->plen = cpu_to_be32(mpalen);
838 req->tunnel_to_proxy = cpu_to_be32(
839 FW_OFLD_TX_DATA_WR_FLUSH(1) |
840 FW_OFLD_TX_DATA_WR_SHOVE(1));
841
842 mpa = (struct mpa_message *)(req + 1);
843 memset(mpa, 0, sizeof(*mpa));
844 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
845 mpa->flags = MPA_REJECT;
Vipul Pandyafe7e0a42013-01-07 13:11:57 +0000846 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700847 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530848
849 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
850 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -0700851 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
852 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530853 mpa_v2_params.ird = htons(((u16)ep->ird) |
854 (peer2peer ? MPA_V2_PEER2PEER_MODEL :
855 0));
856 mpa_v2_params.ord = htons(((u16)ep->ord) | (peer2peer ?
857 (p2p_type ==
858 FW_RI_INIT_P2PTYPE_RDMA_WRITE ?
859 MPA_V2_RDMA_WRITE_RTR : p2p_type ==
860 FW_RI_INIT_P2PTYPE_READ_REQ ?
861 MPA_V2_RDMA_READ_RTR : 0) : 0));
862 memcpy(mpa->private_data, &mpa_v2_params,
863 sizeof(struct mpa_v2_conn_params));
864
865 if (ep->plen)
866 memcpy(mpa->private_data +
867 sizeof(struct mpa_v2_conn_params), pdata, plen);
868 } else
869 if (plen)
870 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700871
872 /*
873 * Reference the mpa skb again. This ensures the data area
874 * will remain in memory until the hw acks the tx.
875 * Function fw4_ack() will deref it.
876 */
877 skb_get(skb);
878 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
879 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
880 BUG_ON(ep->mpa_skb);
881 ep->mpa_skb = skb;
882 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
883}
884
885static int send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen)
886{
887 int mpalen, wrlen;
888 struct fw_ofld_tx_data_wr *req;
889 struct mpa_message *mpa;
890 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530891 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700892
893 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
894
895 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530896 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
897 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700898 wrlen = roundup(mpalen + sizeof *req, 16);
899
900 skb = get_skb(NULL, wrlen, GFP_KERNEL);
901 if (!skb) {
902 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
903 return -ENOMEM;
904 }
905 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
906
907 req = (struct fw_ofld_tx_data_wr *) skb_put(skb, wrlen);
908 memset(req, 0, wrlen);
909 req->op_to_immdlen = cpu_to_be32(
910 FW_WR_OP(FW_OFLD_TX_DATA_WR) |
911 FW_WR_COMPL(1) |
912 FW_WR_IMMDLEN(mpalen));
913 req->flowid_len16 = cpu_to_be32(
914 FW_WR_FLOWID(ep->hwtid) |
915 FW_WR_LEN16(wrlen >> 4));
916 req->plen = cpu_to_be32(mpalen);
917 req->tunnel_to_proxy = cpu_to_be32(
918 FW_OFLD_TX_DATA_WR_FLUSH(1) |
919 FW_OFLD_TX_DATA_WR_SHOVE(1));
920
921 mpa = (struct mpa_message *)(req + 1);
922 memset(mpa, 0, sizeof(*mpa));
923 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
924 mpa->flags = (ep->mpa_attr.crc_enabled ? MPA_CRC : 0) |
925 (markers_enabled ? MPA_MARKERS : 0);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530926 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700927 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530928
929 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
930 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -0700931 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
932 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530933 mpa_v2_params.ird = htons((u16)ep->ird);
934 mpa_v2_params.ord = htons((u16)ep->ord);
935 if (peer2peer && (ep->mpa_attr.p2p_type !=
936 FW_RI_INIT_P2PTYPE_DISABLED)) {
937 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
938
939 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
940 mpa_v2_params.ord |=
941 htons(MPA_V2_RDMA_WRITE_RTR);
942 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
943 mpa_v2_params.ord |=
944 htons(MPA_V2_RDMA_READ_RTR);
945 }
946
947 memcpy(mpa->private_data, &mpa_v2_params,
948 sizeof(struct mpa_v2_conn_params));
949
950 if (ep->plen)
951 memcpy(mpa->private_data +
952 sizeof(struct mpa_v2_conn_params), pdata, plen);
953 } else
954 if (plen)
955 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700956
957 /*
958 * Reference the mpa skb. This ensures the data area
959 * will remain in memory until the hw acks the tx.
960 * Function fw4_ack() will deref it.
961 */
962 skb_get(skb);
963 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
964 ep->mpa_skb = skb;
965 state_set(&ep->com, MPA_REP_SENT);
966 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
967}
968
969static int act_establish(struct c4iw_dev *dev, struct sk_buff *skb)
970{
971 struct c4iw_ep *ep;
972 struct cpl_act_establish *req = cplhdr(skb);
973 unsigned int tid = GET_TID(req);
974 unsigned int atid = GET_TID_TID(ntohl(req->tos_atid));
975 struct tid_info *t = dev->rdev.lldi.tids;
976
977 ep = lookup_atid(t, atid);
978
979 PDBG("%s ep %p tid %u snd_isn %u rcv_isn %u\n", __func__, ep, tid,
980 be32_to_cpu(req->snd_isn), be32_to_cpu(req->rcv_isn));
981
982 dst_confirm(ep->dst);
983
984 /* setup the hwtid for this connection */
985 ep->hwtid = tid;
986 cxgb4_insert_tid(t, ep, tid);
Vipul Pandya793dad92012-12-10 09:30:56 +0000987 insert_handle(dev, &dev->hwtid_idr, ep, ep->hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700988
989 ep->snd_seq = be32_to_cpu(req->snd_isn);
990 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
991
992 set_emss(ep, ntohs(req->tcp_opt));
993
994 /* dealloc the atid */
Vipul Pandya793dad92012-12-10 09:30:56 +0000995 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700996 cxgb4_free_atid(t, atid);
Vipul Pandya793dad92012-12-10 09:30:56 +0000997 set_bit(ACT_ESTAB, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700998
999 /* start MPA negotiation */
1000 send_flowc(ep, NULL);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301001 if (ep->retry_with_mpa_v1)
1002 send_mpa_req(ep, skb, 1);
1003 else
1004 send_mpa_req(ep, skb, mpa_rev);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001005
1006 return 0;
1007}
1008
1009static void close_complete_upcall(struct c4iw_ep *ep)
1010{
1011 struct iw_cm_event event;
1012
1013 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1014 memset(&event, 0, sizeof(event));
1015 event.event = IW_CM_EVENT_CLOSE;
1016 if (ep->com.cm_id) {
1017 PDBG("close complete delivered ep %p cm_id %p tid %u\n",
1018 ep, ep->com.cm_id, ep->hwtid);
1019 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
1020 ep->com.cm_id->rem_ref(ep->com.cm_id);
1021 ep->com.cm_id = NULL;
Vipul Pandya793dad92012-12-10 09:30:56 +00001022 set_bit(CLOSE_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001023 }
1024}
1025
1026static int abort_connection(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
1027{
1028 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1029 close_complete_upcall(ep);
1030 state_set(&ep->com, ABORTING);
Vipul Pandya793dad92012-12-10 09:30:56 +00001031 set_bit(ABORT_CONN, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001032 return send_abort(ep, skb, gfp);
1033}
1034
1035static void peer_close_upcall(struct c4iw_ep *ep)
1036{
1037 struct iw_cm_event event;
1038
1039 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1040 memset(&event, 0, sizeof(event));
1041 event.event = IW_CM_EVENT_DISCONNECT;
1042 if (ep->com.cm_id) {
1043 PDBG("peer close delivered ep %p cm_id %p tid %u\n",
1044 ep, ep->com.cm_id, ep->hwtid);
1045 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001046 set_bit(DISCONN_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001047 }
1048}
1049
1050static void peer_abort_upcall(struct c4iw_ep *ep)
1051{
1052 struct iw_cm_event event;
1053
1054 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1055 memset(&event, 0, sizeof(event));
1056 event.event = IW_CM_EVENT_CLOSE;
1057 event.status = -ECONNRESET;
1058 if (ep->com.cm_id) {
1059 PDBG("abort delivered ep %p cm_id %p tid %u\n", ep,
1060 ep->com.cm_id, ep->hwtid);
1061 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
1062 ep->com.cm_id->rem_ref(ep->com.cm_id);
1063 ep->com.cm_id = NULL;
Vipul Pandya793dad92012-12-10 09:30:56 +00001064 set_bit(ABORT_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001065 }
1066}
1067
1068static void connect_reply_upcall(struct c4iw_ep *ep, int status)
1069{
1070 struct iw_cm_event event;
1071
1072 PDBG("%s ep %p tid %u status %d\n", __func__, ep, ep->hwtid, status);
1073 memset(&event, 0, sizeof(event));
1074 event.event = IW_CM_EVENT_CONNECT_REPLY;
1075 event.status = status;
Steve Wise24d44a32013-07-04 16:10:44 +05301076 memcpy(&event.local_addr, &ep->com.local_addr,
1077 sizeof(ep->com.local_addr));
1078 memcpy(&event.remote_addr, &ep->com.remote_addr,
1079 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001080
1081 if ((status == 0) || (status == -ECONNREFUSED)) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301082 if (!ep->tried_with_mpa_v1) {
1083 /* this means MPA_v2 is used */
1084 event.private_data_len = ep->plen -
1085 sizeof(struct mpa_v2_conn_params);
1086 event.private_data = ep->mpa_pkt +
1087 sizeof(struct mpa_message) +
1088 sizeof(struct mpa_v2_conn_params);
1089 } else {
1090 /* this means MPA_v1 is used */
1091 event.private_data_len = ep->plen;
1092 event.private_data = ep->mpa_pkt +
1093 sizeof(struct mpa_message);
1094 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001095 }
Roland Dreier85963e42010-07-19 13:13:09 -07001096
1097 PDBG("%s ep %p tid %u status %d\n", __func__, ep,
1098 ep->hwtid, status);
Vipul Pandya793dad92012-12-10 09:30:56 +00001099 set_bit(CONN_RPL_UPCALL, &ep->com.history);
Roland Dreier85963e42010-07-19 13:13:09 -07001100 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
1101
Steve Wisecfdda9d2010-04-21 15:30:06 -07001102 if (status < 0) {
1103 ep->com.cm_id->rem_ref(ep->com.cm_id);
1104 ep->com.cm_id = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001105 }
1106}
1107
1108static void connect_request_upcall(struct c4iw_ep *ep)
1109{
1110 struct iw_cm_event event;
1111
1112 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1113 memset(&event, 0, sizeof(event));
1114 event.event = IW_CM_EVENT_CONNECT_REQUEST;
Steve Wise24d44a32013-07-04 16:10:44 +05301115 memcpy(&event.local_addr, &ep->com.local_addr,
1116 sizeof(ep->com.local_addr));
1117 memcpy(&event.remote_addr, &ep->com.remote_addr,
1118 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001119 event.provider_data = ep;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301120 if (!ep->tried_with_mpa_v1) {
1121 /* this means MPA_v2 is used */
1122 event.ord = ep->ord;
1123 event.ird = ep->ird;
1124 event.private_data_len = ep->plen -
1125 sizeof(struct mpa_v2_conn_params);
1126 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message) +
1127 sizeof(struct mpa_v2_conn_params);
1128 } else {
1129 /* this means MPA_v1 is used. Send max supported */
1130 event.ord = c4iw_max_read_depth;
1131 event.ird = c4iw_max_read_depth;
1132 event.private_data_len = ep->plen;
1133 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message);
1134 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001135 if (state_read(&ep->parent_ep->com) != DEAD) {
1136 c4iw_get_ep(&ep->com);
1137 ep->parent_ep->com.cm_id->event_handler(
1138 ep->parent_ep->com.cm_id,
1139 &event);
1140 }
Vipul Pandya793dad92012-12-10 09:30:56 +00001141 set_bit(CONNREQ_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001142 c4iw_put_ep(&ep->parent_ep->com);
1143 ep->parent_ep = NULL;
1144}
1145
1146static void established_upcall(struct c4iw_ep *ep)
1147{
1148 struct iw_cm_event event;
1149
1150 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1151 memset(&event, 0, sizeof(event));
1152 event.event = IW_CM_EVENT_ESTABLISHED;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301153 event.ird = ep->ird;
1154 event.ord = ep->ord;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001155 if (ep->com.cm_id) {
1156 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1157 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001158 set_bit(ESTAB_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001159 }
1160}
1161
1162static int update_rx_credits(struct c4iw_ep *ep, u32 credits)
1163{
1164 struct cpl_rx_data_ack *req;
1165 struct sk_buff *skb;
1166 int wrlen = roundup(sizeof *req, 16);
1167
1168 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
1169 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1170 if (!skb) {
1171 printk(KERN_ERR MOD "update_rx_credits - cannot alloc skb!\n");
1172 return 0;
1173 }
1174
1175 req = (struct cpl_rx_data_ack *) skb_put(skb, wrlen);
1176 memset(req, 0, wrlen);
1177 INIT_TP_WR(req, ep->hwtid);
1178 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_RX_DATA_ACK,
1179 ep->hwtid));
Steve Wiseba6d3922010-06-23 15:46:49 +00001180 req->credit_dack = cpu_to_be32(credits | RX_FORCE_ACK(1) |
1181 F_RX_DACK_CHANGE |
1182 V_RX_DACK_MODE(dack_mode));
Steve Wised4f1a5c2010-07-23 19:12:32 +00001183 set_wr_txq(skb, CPL_PRIORITY_ACK, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001184 c4iw_ofld_send(&ep->com.dev->rdev, skb);
1185 return credits;
1186}
1187
1188static void process_mpa_reply(struct c4iw_ep *ep, struct sk_buff *skb)
1189{
1190 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301191 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001192 u16 plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301193 u16 resp_ird, resp_ord;
1194 u8 rtr_mismatch = 0, insuff_ird = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001195 struct c4iw_qp_attributes attrs;
1196 enum c4iw_qp_attr_mask mask;
1197 int err;
1198
1199 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1200
1201 /*
1202 * Stop mpa timer. If it expired, then the state has
1203 * changed and we bail since ep_timeout already aborted
1204 * the connection.
1205 */
1206 stop_ep_timer(ep);
1207 if (state_read(&ep->com) != MPA_REQ_SENT)
1208 return;
1209
1210 /*
1211 * If we get more than the supported amount of private data
1212 * then we must fail this connection.
1213 */
1214 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
1215 err = -EINVAL;
1216 goto err;
1217 }
1218
1219 /*
1220 * copy the new data into our accumulation buffer.
1221 */
1222 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1223 skb->len);
1224 ep->mpa_pkt_len += skb->len;
1225
1226 /*
1227 * if we don't even have the mpa message, then bail.
1228 */
1229 if (ep->mpa_pkt_len < sizeof(*mpa))
1230 return;
1231 mpa = (struct mpa_message *) ep->mpa_pkt;
1232
1233 /* Validate MPA header. */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301234 if (mpa->revision > mpa_rev) {
1235 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1236 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001237 err = -EPROTO;
1238 goto err;
1239 }
1240 if (memcmp(mpa->key, MPA_KEY_REP, sizeof(mpa->key))) {
1241 err = -EPROTO;
1242 goto err;
1243 }
1244
1245 plen = ntohs(mpa->private_data_size);
1246
1247 /*
1248 * Fail if there's too much private data.
1249 */
1250 if (plen > MPA_MAX_PRIVATE_DATA) {
1251 err = -EPROTO;
1252 goto err;
1253 }
1254
1255 /*
1256 * If plen does not account for pkt size
1257 */
1258 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
1259 err = -EPROTO;
1260 goto err;
1261 }
1262
1263 ep->plen = (u8) plen;
1264
1265 /*
1266 * If we don't have all the pdata yet, then bail.
1267 * We'll continue process when more data arrives.
1268 */
1269 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
1270 return;
1271
1272 if (mpa->flags & MPA_REJECT) {
1273 err = -ECONNREFUSED;
1274 goto err;
1275 }
1276
1277 /*
1278 * If we get here we have accumulated the entire mpa
1279 * start reply message including private data. And
1280 * the MPA header is valid.
1281 */
1282 state_set(&ep->com, FPDU_MODE);
1283 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1284 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1285 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301286 ep->mpa_attr.version = mpa->revision;
1287 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1288
1289 if (mpa->revision == 2) {
1290 ep->mpa_attr.enhanced_rdma_conn =
1291 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1292 if (ep->mpa_attr.enhanced_rdma_conn) {
1293 mpa_v2_params = (struct mpa_v2_conn_params *)
1294 (ep->mpa_pkt + sizeof(*mpa));
1295 resp_ird = ntohs(mpa_v2_params->ird) &
1296 MPA_V2_IRD_ORD_MASK;
1297 resp_ord = ntohs(mpa_v2_params->ord) &
1298 MPA_V2_IRD_ORD_MASK;
1299
1300 /*
1301 * This is a double-check. Ideally, below checks are
1302 * not required since ird/ord stuff has been taken
1303 * care of in c4iw_accept_cr
1304 */
1305 if ((ep->ird < resp_ord) || (ep->ord > resp_ird)) {
1306 err = -ENOMEM;
1307 ep->ird = resp_ord;
1308 ep->ord = resp_ird;
1309 insuff_ird = 1;
1310 }
1311
1312 if (ntohs(mpa_v2_params->ird) &
1313 MPA_V2_PEER2PEER_MODEL) {
1314 if (ntohs(mpa_v2_params->ord) &
1315 MPA_V2_RDMA_WRITE_RTR)
1316 ep->mpa_attr.p2p_type =
1317 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1318 else if (ntohs(mpa_v2_params->ord) &
1319 MPA_V2_RDMA_READ_RTR)
1320 ep->mpa_attr.p2p_type =
1321 FW_RI_INIT_P2PTYPE_READ_REQ;
1322 }
1323 }
1324 } else if (mpa->revision == 1)
1325 if (peer2peer)
1326 ep->mpa_attr.p2p_type = p2p_type;
1327
Steve Wisecfdda9d2010-04-21 15:30:06 -07001328 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301329 "xmit_marker_enabled=%d, version=%d p2p_type=%d local-p2p_type = "
1330 "%d\n", __func__, ep->mpa_attr.crc_enabled,
1331 ep->mpa_attr.recv_marker_enabled,
1332 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1333 ep->mpa_attr.p2p_type, p2p_type);
1334
1335 /*
1336 * If responder's RTR does not match with that of initiator, assign
1337 * FW_RI_INIT_P2PTYPE_DISABLED in mpa attributes so that RTR is not
1338 * generated when moving QP to RTS state.
1339 * A TERM message will be sent after QP has moved to RTS state
1340 */
Kumar Sanghvi91018f82012-02-25 17:45:02 -08001341 if ((ep->mpa_attr.version == 2) && peer2peer &&
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301342 (ep->mpa_attr.p2p_type != p2p_type)) {
1343 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1344 rtr_mismatch = 1;
1345 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001346
1347 attrs.mpa_attr = ep->mpa_attr;
1348 attrs.max_ird = ep->ird;
1349 attrs.max_ord = ep->ord;
1350 attrs.llp_stream_handle = ep;
1351 attrs.next_state = C4IW_QP_STATE_RTS;
1352
1353 mask = C4IW_QP_ATTR_NEXT_STATE |
1354 C4IW_QP_ATTR_LLP_STREAM_HANDLE | C4IW_QP_ATTR_MPA_ATTR |
1355 C4IW_QP_ATTR_MAX_IRD | C4IW_QP_ATTR_MAX_ORD;
1356
1357 /* bind QP and TID with INIT_WR */
1358 err = c4iw_modify_qp(ep->com.qp->rhp,
1359 ep->com.qp, mask, &attrs, 1);
1360 if (err)
1361 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301362
1363 /*
1364 * If responder's RTR requirement did not match with what initiator
1365 * supports, generate TERM message
1366 */
1367 if (rtr_mismatch) {
1368 printk(KERN_ERR "%s: RTR mismatch, sending TERM\n", __func__);
1369 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1370 attrs.ecode = MPA_NOMATCH_RTR;
1371 attrs.next_state = C4IW_QP_STATE_TERMINATE;
1372 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
1373 C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
1374 err = -ENOMEM;
1375 goto out;
1376 }
1377
1378 /*
1379 * Generate TERM if initiator IRD is not sufficient for responder
1380 * provided ORD. Currently, we do the same behaviour even when
1381 * responder provided IRD is also not sufficient as regards to
1382 * initiator ORD.
1383 */
1384 if (insuff_ird) {
1385 printk(KERN_ERR "%s: Insufficient IRD, sending TERM\n",
1386 __func__);
1387 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1388 attrs.ecode = MPA_INSUFF_IRD;
1389 attrs.next_state = C4IW_QP_STATE_TERMINATE;
1390 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
1391 C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
1392 err = -ENOMEM;
1393 goto out;
1394 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001395 goto out;
1396err:
Steve Wiseb21ef162010-06-10 19:02:55 +00001397 state_set(&ep->com, ABORTING);
1398 send_abort(ep, skb, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001399out:
1400 connect_reply_upcall(ep, err);
1401 return;
1402}
1403
1404static void process_mpa_request(struct c4iw_ep *ep, struct sk_buff *skb)
1405{
1406 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301407 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001408 u16 plen;
1409
1410 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1411
1412 if (state_read(&ep->com) != MPA_REQ_WAIT)
1413 return;
1414
1415 /*
1416 * If we get more than the supported amount of private data
1417 * then we must fail this connection.
1418 */
1419 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
1420 stop_ep_timer(ep);
1421 abort_connection(ep, skb, GFP_KERNEL);
1422 return;
1423 }
1424
1425 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1426
1427 /*
1428 * Copy the new data into our accumulation buffer.
1429 */
1430 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1431 skb->len);
1432 ep->mpa_pkt_len += skb->len;
1433
1434 /*
1435 * If we don't even have the mpa message, then bail.
1436 * We'll continue process when more data arrives.
1437 */
1438 if (ep->mpa_pkt_len < sizeof(*mpa))
1439 return;
1440
1441 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1442 stop_ep_timer(ep);
1443 mpa = (struct mpa_message *) ep->mpa_pkt;
1444
1445 /*
1446 * Validate MPA Header.
1447 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301448 if (mpa->revision > mpa_rev) {
1449 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1450 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00001451 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001452 abort_connection(ep, skb, GFP_KERNEL);
1453 return;
1454 }
1455
1456 if (memcmp(mpa->key, MPA_KEY_REQ, sizeof(mpa->key))) {
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00001457 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001458 abort_connection(ep, skb, GFP_KERNEL);
1459 return;
1460 }
1461
1462 plen = ntohs(mpa->private_data_size);
1463
1464 /*
1465 * Fail if there's too much private data.
1466 */
1467 if (plen > MPA_MAX_PRIVATE_DATA) {
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00001468 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001469 abort_connection(ep, skb, GFP_KERNEL);
1470 return;
1471 }
1472
1473 /*
1474 * If plen does not account for pkt size
1475 */
1476 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00001477 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001478 abort_connection(ep, skb, GFP_KERNEL);
1479 return;
1480 }
1481 ep->plen = (u8) plen;
1482
1483 /*
1484 * If we don't have all the pdata yet, then bail.
1485 */
1486 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
1487 return;
1488
1489 /*
1490 * If we get here we have accumulated the entire mpa
1491 * start reply message including private data.
1492 */
1493 ep->mpa_attr.initiator = 0;
1494 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1495 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1496 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301497 ep->mpa_attr.version = mpa->revision;
1498 if (mpa->revision == 1)
1499 ep->tried_with_mpa_v1 = 1;
1500 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1501
1502 if (mpa->revision == 2) {
1503 ep->mpa_attr.enhanced_rdma_conn =
1504 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1505 if (ep->mpa_attr.enhanced_rdma_conn) {
1506 mpa_v2_params = (struct mpa_v2_conn_params *)
1507 (ep->mpa_pkt + sizeof(*mpa));
1508 ep->ird = ntohs(mpa_v2_params->ird) &
1509 MPA_V2_IRD_ORD_MASK;
1510 ep->ord = ntohs(mpa_v2_params->ord) &
1511 MPA_V2_IRD_ORD_MASK;
1512 if (ntohs(mpa_v2_params->ird) & MPA_V2_PEER2PEER_MODEL)
1513 if (peer2peer) {
1514 if (ntohs(mpa_v2_params->ord) &
1515 MPA_V2_RDMA_WRITE_RTR)
1516 ep->mpa_attr.p2p_type =
1517 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1518 else if (ntohs(mpa_v2_params->ord) &
1519 MPA_V2_RDMA_READ_RTR)
1520 ep->mpa_attr.p2p_type =
1521 FW_RI_INIT_P2PTYPE_READ_REQ;
1522 }
1523 }
1524 } else if (mpa->revision == 1)
1525 if (peer2peer)
1526 ep->mpa_attr.p2p_type = p2p_type;
1527
Steve Wisecfdda9d2010-04-21 15:30:06 -07001528 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
1529 "xmit_marker_enabled=%d, version=%d p2p_type=%d\n", __func__,
1530 ep->mpa_attr.crc_enabled, ep->mpa_attr.recv_marker_enabled,
1531 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1532 ep->mpa_attr.p2p_type);
1533
1534 state_set(&ep->com, MPA_REQ_RCVD);
1535
1536 /* drive upcall */
1537 connect_request_upcall(ep);
1538 return;
1539}
1540
1541static int rx_data(struct c4iw_dev *dev, struct sk_buff *skb)
1542{
1543 struct c4iw_ep *ep;
1544 struct cpl_rx_data *hdr = cplhdr(skb);
1545 unsigned int dlen = ntohs(hdr->len);
1546 unsigned int tid = GET_TID(hdr);
1547 struct tid_info *t = dev->rdev.lldi.tids;
Vipul Pandya793dad92012-12-10 09:30:56 +00001548 __u8 status = hdr->status;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001549
1550 ep = lookup_tid(t, tid);
1551 PDBG("%s ep %p tid %u dlen %u\n", __func__, ep, ep->hwtid, dlen);
1552 skb_pull(skb, sizeof(*hdr));
1553 skb_trim(skb, dlen);
1554
Steve Wisecfdda9d2010-04-21 15:30:06 -07001555 /* update RX credits */
1556 update_rx_credits(ep, dlen);
1557
1558 switch (state_read(&ep->com)) {
1559 case MPA_REQ_SENT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001560 ep->rcv_seq += dlen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001561 process_mpa_reply(ep, skb);
1562 break;
1563 case MPA_REQ_WAIT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001564 ep->rcv_seq += dlen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001565 process_mpa_request(ep, skb);
1566 break;
Vipul Pandya15579672013-01-07 13:11:52 +00001567 case FPDU_MODE: {
1568 struct c4iw_qp_attributes attrs;
1569 BUG_ON(!ep->com.qp);
Vipul Pandyae8e5b922013-01-07 13:11:55 +00001570 if (status)
Vipul Pandya15579672013-01-07 13:11:52 +00001571 pr_err("%s Unexpected streaming data." \
Vipul Pandya04236df2013-01-07 13:11:54 +00001572 " qpid %u ep %p state %d tid %u status %d\n",
1573 __func__, ep->com.qp->wq.sq.qid, ep,
1574 state_read(&ep->com), ep->hwtid, status);
Steve Wise97d7ec02013-08-06 21:04:34 +05301575 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Vipul Pandya15579672013-01-07 13:11:52 +00001576 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wise97d7ec02013-08-06 21:04:34 +05301577 C4IW_QP_ATTR_NEXT_STATE, &attrs, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001578 break;
1579 }
Vipul Pandya15579672013-01-07 13:11:52 +00001580 default:
1581 break;
1582 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001583 return 0;
1584}
1585
1586static int abort_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1587{
1588 struct c4iw_ep *ep;
1589 struct cpl_abort_rpl_rss *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001590 int release = 0;
1591 unsigned int tid = GET_TID(rpl);
1592 struct tid_info *t = dev->rdev.lldi.tids;
1593
1594 ep = lookup_tid(t, tid);
Vipul Pandya49840372012-05-18 15:29:29 +05301595 if (!ep) {
1596 printk(KERN_WARNING MOD "Abort rpl to freed endpoint\n");
1597 return 0;
1598 }
Wei Yongjun92dd6c32012-09-07 06:51:23 +00001599 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001600 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001601 switch (ep->com.state) {
1602 case ABORTING:
Vipul Pandya91e9c0712013-01-07 13:11:51 +00001603 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001604 __state_set(&ep->com, DEAD);
1605 release = 1;
1606 break;
1607 default:
1608 printk(KERN_ERR "%s ep %p state %d\n",
1609 __func__, ep, ep->com.state);
1610 break;
1611 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001612 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001613
1614 if (release)
1615 release_ep_resources(ep);
1616 return 0;
1617}
1618
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001619static void send_fw_act_open_req(struct c4iw_ep *ep, unsigned int atid)
1620{
1621 struct sk_buff *skb;
1622 struct fw_ofld_connection_wr *req;
1623 unsigned int mtu_idx;
1624 int wscale;
Vipul Pandya830662f2013-07-04 16:10:47 +05301625 struct sockaddr_in *sin;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001626
1627 skb = get_skb(NULL, sizeof(*req), GFP_KERNEL);
1628 req = (struct fw_ofld_connection_wr *)__skb_put(skb, sizeof(*req));
1629 memset(req, 0, sizeof(*req));
1630 req->op_compl = htonl(V_WR_OP(FW_OFLD_CONNECTION_WR));
1631 req->len16_pkd = htonl(FW_WR_LEN16(DIV_ROUND_UP(sizeof(*req), 16)));
1632 req->le.filter = cpu_to_be32(select_ntuple(ep->com.dev, ep->dst,
1633 ep->l2t));
Vipul Pandya830662f2013-07-04 16:10:47 +05301634 sin = (struct sockaddr_in *)&ep->com.local_addr;
1635 req->le.lport = sin->sin_port;
1636 req->le.u.ipv4.lip = sin->sin_addr.s_addr;
1637 sin = (struct sockaddr_in *)&ep->com.remote_addr;
1638 req->le.pport = sin->sin_port;
1639 req->le.u.ipv4.pip = sin->sin_addr.s_addr;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001640 req->tcb.t_state_to_astid =
1641 htonl(V_FW_OFLD_CONNECTION_WR_T_STATE(TCP_SYN_SENT) |
1642 V_FW_OFLD_CONNECTION_WR_ASTID(atid));
1643 req->tcb.cplrxdataack_cplpassacceptrpl =
1644 htons(F_FW_OFLD_CONNECTION_WR_CPLRXDATAACK);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001645 req->tcb.tx_max = (__force __be32) jiffies;
Vipul Pandya793dad92012-12-10 09:30:56 +00001646 req->tcb.rcv_adv = htons(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001647 cxgb4_best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx);
1648 wscale = compute_wscale(rcv_win);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001649 req->tcb.opt0 = (__force __be64) (TCAM_BYPASS(1) |
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001650 (nocong ? NO_CONG(1) : 0) |
1651 KEEP_ALIVE(1) |
1652 DELACK(1) |
1653 WND_SCALE(wscale) |
1654 MSS_IDX(mtu_idx) |
1655 L2T_IDX(ep->l2t->idx) |
1656 TX_CHAN(ep->tx_chan) |
1657 SMAC_SEL(ep->smac_idx) |
1658 DSCP(ep->tos) |
1659 ULP_MODE(ULP_MODE_TCPDDP) |
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001660 RCV_BUFSIZ(rcv_win >> 10));
1661 req->tcb.opt2 = (__force __be32) (PACE(1) |
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001662 TX_QUEUE(ep->com.dev->rdev.lldi.tx_modq[ep->tx_chan]) |
1663 RX_CHANNEL(0) |
1664 CCTRL_ECN(enable_ecn) |
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001665 RSS_QUEUE_VALID | RSS_QUEUE(ep->rss_qid));
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001666 if (enable_tcp_timestamps)
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001667 req->tcb.opt2 |= (__force __be32) TSTAMPS_EN(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001668 if (enable_tcp_sack)
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001669 req->tcb.opt2 |= (__force __be32) SACK_EN(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001670 if (wscale && enable_tcp_window_scaling)
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001671 req->tcb.opt2 |= (__force __be32) WND_SCALE_EN(1);
1672 req->tcb.opt0 = cpu_to_be64((__force u64) req->tcb.opt0);
1673 req->tcb.opt2 = cpu_to_be32((__force u32) req->tcb.opt2);
Vipul Pandya793dad92012-12-10 09:30:56 +00001674 set_wr_txq(skb, CPL_PRIORITY_CONTROL, ep->ctrlq_idx);
1675 set_bit(ACT_OFLD_CONN, &ep->com.history);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001676 c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1677}
1678
Steve Wisecfdda9d2010-04-21 15:30:06 -07001679/*
1680 * Return whether a failed active open has allocated a TID
1681 */
1682static inline int act_open_has_tid(int status)
1683{
1684 return status != CPL_ERR_TCAM_FULL && status != CPL_ERR_CONN_EXIST &&
1685 status != CPL_ERR_ARP_MISS;
1686}
1687
Vipul Pandya793dad92012-12-10 09:30:56 +00001688#define ACT_OPEN_RETRY_COUNT 2
1689
Vipul Pandya830662f2013-07-04 16:10:47 +05301690static int import_ep(struct c4iw_ep *ep, int iptype, __u8 *peer_ip,
1691 struct dst_entry *dst, struct c4iw_dev *cdev,
1692 bool clear_mpa_v1)
1693{
1694 struct neighbour *n;
1695 int err, step;
1696 struct net_device *pdev;
1697
1698 n = dst_neigh_lookup(dst, peer_ip);
1699 if (!n)
1700 return -ENODEV;
1701
1702 rcu_read_lock();
1703 err = -ENOMEM;
1704 if (n->dev->flags & IFF_LOOPBACK) {
1705 if (iptype == 4)
1706 pdev = ip_dev_find(&init_net, *(__be32 *)peer_ip);
1707 else if (IS_ENABLED(CONFIG_IPV6))
1708 for_each_netdev(&init_net, pdev) {
1709 if (ipv6_chk_addr(&init_net,
1710 (struct in6_addr *)peer_ip,
1711 pdev, 1))
1712 break;
1713 }
1714 else
1715 pdev = NULL;
1716
1717 if (!pdev) {
1718 err = -ENODEV;
1719 goto out;
1720 }
1721 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
1722 n, pdev, 0);
1723 if (!ep->l2t)
1724 goto out;
1725 ep->mtu = pdev->mtu;
1726 ep->tx_chan = cxgb4_port_chan(pdev);
1727 ep->smac_idx = (cxgb4_port_viid(pdev) & 0x7F) << 1;
1728 step = cdev->rdev.lldi.ntxq /
1729 cdev->rdev.lldi.nchan;
1730 ep->txq_idx = cxgb4_port_idx(pdev) * step;
1731 step = cdev->rdev.lldi.nrxq /
1732 cdev->rdev.lldi.nchan;
1733 ep->ctrlq_idx = cxgb4_port_idx(pdev);
1734 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
1735 cxgb4_port_idx(pdev) * step];
1736 dev_put(pdev);
1737 } else {
1738 pdev = get_real_dev(n->dev);
1739 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
1740 n, pdev, 0);
1741 if (!ep->l2t)
1742 goto out;
1743 ep->mtu = dst_mtu(dst);
1744 ep->tx_chan = cxgb4_port_chan(n->dev);
1745 ep->smac_idx = (cxgb4_port_viid(n->dev) & 0x7F) << 1;
1746 step = cdev->rdev.lldi.ntxq /
1747 cdev->rdev.lldi.nchan;
1748 ep->txq_idx = cxgb4_port_idx(n->dev) * step;
1749 ep->ctrlq_idx = cxgb4_port_idx(n->dev);
1750 step = cdev->rdev.lldi.nrxq /
1751 cdev->rdev.lldi.nchan;
1752 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
1753 cxgb4_port_idx(n->dev) * step];
1754
1755 if (clear_mpa_v1) {
1756 ep->retry_with_mpa_v1 = 0;
1757 ep->tried_with_mpa_v1 = 0;
1758 }
1759 }
1760 err = 0;
1761out:
1762 rcu_read_unlock();
1763
1764 neigh_release(n);
1765
1766 return err;
1767}
1768
Vipul Pandya793dad92012-12-10 09:30:56 +00001769static int c4iw_reconnect(struct c4iw_ep *ep)
1770{
1771 int err = 0;
Steve Wise24d44a32013-07-04 16:10:44 +05301772 struct sockaddr_in *laddr = (struct sockaddr_in *)
1773 &ep->com.cm_id->local_addr;
1774 struct sockaddr_in *raddr = (struct sockaddr_in *)
1775 &ep->com.cm_id->remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05301776 struct sockaddr_in6 *laddr6 = (struct sockaddr_in6 *)
1777 &ep->com.cm_id->local_addr;
1778 struct sockaddr_in6 *raddr6 = (struct sockaddr_in6 *)
1779 &ep->com.cm_id->remote_addr;
1780 int iptype;
1781 __u8 *ra;
Vipul Pandya793dad92012-12-10 09:30:56 +00001782
1783 PDBG("%s qp %p cm_id %p\n", __func__, ep->com.qp, ep->com.cm_id);
1784 init_timer(&ep->timer);
1785
1786 /*
1787 * Allocate an active TID to initiate a TCP connection.
1788 */
1789 ep->atid = cxgb4_alloc_atid(ep->com.dev->rdev.lldi.tids, ep);
1790 if (ep->atid == -1) {
1791 pr_err("%s - cannot alloc atid.\n", __func__);
1792 err = -ENOMEM;
1793 goto fail2;
1794 }
1795 insert_handle(ep->com.dev, &ep->com.dev->atid_idr, ep, ep->atid);
1796
1797 /* find a route */
Vipul Pandya830662f2013-07-04 16:10:47 +05301798 if (ep->com.cm_id->local_addr.ss_family == AF_INET) {
1799 ep->dst = find_route(ep->com.dev, laddr->sin_addr.s_addr,
1800 raddr->sin_addr.s_addr, laddr->sin_port,
1801 raddr->sin_port, 0);
1802 iptype = 4;
1803 ra = (__u8 *)&raddr->sin_addr;
1804 } else {
1805 ep->dst = find_route6(ep->com.dev, laddr6->sin6_addr.s6_addr,
1806 raddr6->sin6_addr.s6_addr,
1807 laddr6->sin6_port, raddr6->sin6_port, 0,
1808 raddr6->sin6_scope_id);
1809 iptype = 6;
1810 ra = (__u8 *)&raddr6->sin6_addr;
1811 }
1812 if (!ep->dst) {
Vipul Pandya793dad92012-12-10 09:30:56 +00001813 pr_err("%s - cannot find route.\n", __func__);
1814 err = -EHOSTUNREACH;
1815 goto fail3;
1816 }
Vipul Pandya830662f2013-07-04 16:10:47 +05301817 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, false);
1818 if (err) {
Vipul Pandya793dad92012-12-10 09:30:56 +00001819 pr_err("%s - cannot alloc l2e.\n", __func__);
Vipul Pandya793dad92012-12-10 09:30:56 +00001820 goto fail4;
1821 }
1822
1823 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
1824 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
1825 ep->l2t->idx);
1826
1827 state_set(&ep->com, CONNECTING);
1828 ep->tos = 0;
1829
1830 /* send connect request to rnic */
1831 err = send_connect(ep);
1832 if (!err)
1833 goto out;
1834
1835 cxgb4_l2t_release(ep->l2t);
1836fail4:
1837 dst_release(ep->dst);
1838fail3:
1839 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
1840 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
1841fail2:
1842 /*
1843 * remember to send notification to upper layer.
1844 * We are in here so the upper layer is not aware that this is
1845 * re-connect attempt and so, upper layer is still waiting for
1846 * response of 1st connect request.
1847 */
1848 connect_reply_upcall(ep, -ECONNRESET);
1849 c4iw_put_ep(&ep->com);
1850out:
1851 return err;
1852}
1853
Steve Wisecfdda9d2010-04-21 15:30:06 -07001854static int act_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1855{
1856 struct c4iw_ep *ep;
1857 struct cpl_act_open_rpl *rpl = cplhdr(skb);
1858 unsigned int atid = GET_TID_TID(GET_AOPEN_ATID(
1859 ntohl(rpl->atid_status)));
1860 struct tid_info *t = dev->rdev.lldi.tids;
1861 int status = GET_AOPEN_STATUS(ntohl(rpl->atid_status));
Vipul Pandya830662f2013-07-04 16:10:47 +05301862 struct sockaddr_in *la;
1863 struct sockaddr_in *ra;
1864 struct sockaddr_in6 *la6;
1865 struct sockaddr_in6 *ra6;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001866
1867 ep = lookup_atid(t, atid);
Vipul Pandya830662f2013-07-04 16:10:47 +05301868 la = (struct sockaddr_in *)&ep->com.local_addr;
1869 ra = (struct sockaddr_in *)&ep->com.remote_addr;
1870 la6 = (struct sockaddr_in6 *)&ep->com.local_addr;
1871 ra6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001872
1873 PDBG("%s ep %p atid %u status %u errno %d\n", __func__, ep, atid,
1874 status, status2errno(status));
1875
1876 if (status == CPL_ERR_RTX_NEG_ADVICE) {
1877 printk(KERN_WARNING MOD "Connection problems for atid %u\n",
1878 atid);
1879 return 0;
1880 }
1881
Vipul Pandya793dad92012-12-10 09:30:56 +00001882 set_bit(ACT_OPEN_RPL, &ep->com.history);
1883
Vipul Pandyad716a2a2012-05-18 15:29:31 +05301884 /*
1885 * Log interesting failures.
1886 */
1887 switch (status) {
1888 case CPL_ERR_CONN_RESET:
1889 case CPL_ERR_CONN_TIMEDOUT:
1890 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001891 case CPL_ERR_TCAM_FULL:
Vipul Pandya830662f2013-07-04 16:10:47 +05301892 mutex_lock(&dev->rdev.stats.lock);
Vipul Pandya3b174d92013-03-14 05:09:03 +00001893 dev->rdev.stats.tcam_full++;
Vipul Pandya830662f2013-07-04 16:10:47 +05301894 mutex_unlock(&dev->rdev.stats.lock);
1895 if (ep->com.local_addr.ss_family == AF_INET &&
1896 dev->rdev.lldi.enable_fw_ofld_conn) {
Vipul Pandya793dad92012-12-10 09:30:56 +00001897 send_fw_act_open_req(ep,
1898 GET_TID_TID(GET_AOPEN_ATID(
1899 ntohl(rpl->atid_status))));
1900 return 0;
1901 }
1902 break;
1903 case CPL_ERR_CONN_EXIST:
1904 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
1905 set_bit(ACT_RETRY_INUSE, &ep->com.history);
1906 remove_handle(ep->com.dev, &ep->com.dev->atid_idr,
1907 atid);
1908 cxgb4_free_atid(t, atid);
1909 dst_release(ep->dst);
1910 cxgb4_l2t_release(ep->l2t);
1911 c4iw_reconnect(ep);
1912 return 0;
1913 }
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001914 break;
Vipul Pandyad716a2a2012-05-18 15:29:31 +05301915 default:
Vipul Pandya830662f2013-07-04 16:10:47 +05301916 if (ep->com.local_addr.ss_family == AF_INET) {
1917 pr_info("Active open failure - atid %u status %u errno %d %pI4:%u->%pI4:%u\n",
1918 atid, status, status2errno(status),
1919 &la->sin_addr.s_addr, ntohs(la->sin_port),
1920 &ra->sin_addr.s_addr, ntohs(ra->sin_port));
1921 } else {
1922 pr_info("Active open failure - atid %u status %u errno %d %pI6:%u->%pI6:%u\n",
1923 atid, status, status2errno(status),
1924 la6->sin6_addr.s6_addr, ntohs(la6->sin6_port),
1925 ra6->sin6_addr.s6_addr, ntohs(ra6->sin6_port));
1926 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +05301927 break;
1928 }
1929
Steve Wisecfdda9d2010-04-21 15:30:06 -07001930 connect_reply_upcall(ep, status2errno(status));
1931 state_set(&ep->com, DEAD);
1932
1933 if (status && act_open_has_tid(status))
1934 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, GET_TID(rpl));
1935
Vipul Pandya793dad92012-12-10 09:30:56 +00001936 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001937 cxgb4_free_atid(t, atid);
1938 dst_release(ep->dst);
1939 cxgb4_l2t_release(ep->l2t);
1940 c4iw_put_ep(&ep->com);
1941
1942 return 0;
1943}
1944
1945static int pass_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1946{
1947 struct cpl_pass_open_rpl *rpl = cplhdr(skb);
1948 struct tid_info *t = dev->rdev.lldi.tids;
1949 unsigned int stid = GET_TID(rpl);
1950 struct c4iw_listen_ep *ep = lookup_stid(t, stid);
1951
1952 if (!ep) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00001953 PDBG("%s stid %d lookup failure!\n", __func__, stid);
1954 goto out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001955 }
1956 PDBG("%s ep %p status %d error %d\n", __func__, ep,
1957 rpl->status, status2errno(rpl->status));
Steve Wised9594d92011-05-09 22:06:22 -07001958 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001959
Vipul Pandya1cab7752012-12-10 09:30:55 +00001960out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07001961 return 0;
1962}
1963
Steve Wisecfdda9d2010-04-21 15:30:06 -07001964static int close_listsrv_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1965{
1966 struct cpl_close_listsvr_rpl *rpl = cplhdr(skb);
1967 struct tid_info *t = dev->rdev.lldi.tids;
1968 unsigned int stid = GET_TID(rpl);
1969 struct c4iw_listen_ep *ep = lookup_stid(t, stid);
1970
1971 PDBG("%s ep %p\n", __func__, ep);
Steve Wised9594d92011-05-09 22:06:22 -07001972 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001973 return 0;
1974}
1975
Vipul Pandya830662f2013-07-04 16:10:47 +05301976static void accept_cr(struct c4iw_ep *ep, struct sk_buff *skb,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001977 struct cpl_pass_accept_req *req)
1978{
1979 struct cpl_pass_accept_rpl *rpl;
1980 unsigned int mtu_idx;
1981 u64 opt0;
1982 u32 opt2;
1983 int wscale;
1984
1985 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1986 BUG_ON(skb_cloned(skb));
1987 skb_trim(skb, sizeof(*rpl));
1988 skb_get(skb);
1989 cxgb4_best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx);
1990 wscale = compute_wscale(rcv_win);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001991 opt0 = (nocong ? NO_CONG(1) : 0) |
1992 KEEP_ALIVE(1) |
Steve Wiseba6d3922010-06-23 15:46:49 +00001993 DELACK(1) |
Steve Wisecfdda9d2010-04-21 15:30:06 -07001994 WND_SCALE(wscale) |
1995 MSS_IDX(mtu_idx) |
1996 L2T_IDX(ep->l2t->idx) |
1997 TX_CHAN(ep->tx_chan) |
1998 SMAC_SEL(ep->smac_idx) |
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001999 DSCP(ep->tos >> 2) |
Steve Wiseb48f3b92011-03-11 22:30:21 +00002000 ULP_MODE(ULP_MODE_TCPDDP) |
Steve Wisecfdda9d2010-04-21 15:30:06 -07002001 RCV_BUFSIZ(rcv_win>>10);
2002 opt2 = RX_CHANNEL(0) |
2003 RSS_QUEUE_VALID | RSS_QUEUE(ep->rss_qid);
2004
2005 if (enable_tcp_timestamps && req->tcpopt.tstamp)
2006 opt2 |= TSTAMPS_EN(1);
2007 if (enable_tcp_sack && req->tcpopt.sack)
2008 opt2 |= SACK_EN(1);
2009 if (wscale && enable_tcp_window_scaling)
2010 opt2 |= WND_SCALE_EN(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002011 if (enable_ecn) {
2012 const struct tcphdr *tcph;
2013 u32 hlen = ntohl(req->hdr_len);
2014
2015 tcph = (const void *)(req + 1) + G_ETH_HDR_LEN(hlen) +
2016 G_IP_HDR_LEN(hlen);
2017 if (tcph->ece && tcph->cwr)
2018 opt2 |= CCTRL_ECN(1);
2019 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002020
2021 rpl = cplhdr(skb);
2022 INIT_TP_WR(rpl, ep->hwtid);
2023 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_PASS_ACCEPT_RPL,
2024 ep->hwtid));
2025 rpl->opt0 = cpu_to_be64(opt0);
2026 rpl->opt2 = cpu_to_be32(opt2);
Steve Wised4f1a5c2010-07-23 19:12:32 +00002027 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002028 c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
2029
2030 return;
2031}
2032
Vipul Pandya830662f2013-07-04 16:10:47 +05302033static void reject_cr(struct c4iw_dev *dev, u32 hwtid, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07002034{
Vipul Pandya830662f2013-07-04 16:10:47 +05302035 PDBG("%s c4iw_dev %p tid %u\n", __func__, dev, hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002036 BUG_ON(skb_cloned(skb));
2037 skb_trim(skb, sizeof(struct cpl_tid_release));
2038 skb_get(skb);
2039 release_tid(&dev->rdev, hwtid, skb);
2040 return;
2041}
2042
Vipul Pandya830662f2013-07-04 16:10:47 +05302043static void get_4tuple(struct cpl_pass_accept_req *req, int *iptype,
2044 __u8 *local_ip, __u8 *peer_ip,
Steve Wisecfdda9d2010-04-21 15:30:06 -07002045 __be16 *local_port, __be16 *peer_port)
2046{
2047 int eth_len = G_ETH_HDR_LEN(be32_to_cpu(req->hdr_len));
2048 int ip_len = G_IP_HDR_LEN(be32_to_cpu(req->hdr_len));
2049 struct iphdr *ip = (struct iphdr *)((u8 *)(req + 1) + eth_len);
Vipul Pandya830662f2013-07-04 16:10:47 +05302050 struct ipv6hdr *ip6 = (struct ipv6hdr *)((u8 *)(req + 1) + eth_len);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002051 struct tcphdr *tcp = (struct tcphdr *)
2052 ((u8 *)(req + 1) + eth_len + ip_len);
2053
Vipul Pandya830662f2013-07-04 16:10:47 +05302054 if (ip->version == 4) {
2055 PDBG("%s saddr 0x%x daddr 0x%x sport %u dport %u\n", __func__,
2056 ntohl(ip->saddr), ntohl(ip->daddr), ntohs(tcp->source),
2057 ntohs(tcp->dest));
2058 *iptype = 4;
2059 memcpy(peer_ip, &ip->saddr, 4);
2060 memcpy(local_ip, &ip->daddr, 4);
2061 } else {
2062 PDBG("%s saddr %pI6 daddr %pI6 sport %u dport %u\n", __func__,
2063 ip6->saddr.s6_addr, ip6->daddr.s6_addr, ntohs(tcp->source),
2064 ntohs(tcp->dest));
2065 *iptype = 6;
2066 memcpy(peer_ip, ip6->saddr.s6_addr, 16);
2067 memcpy(local_ip, ip6->daddr.s6_addr, 16);
2068 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002069 *peer_port = tcp->source;
2070 *local_port = tcp->dest;
2071
2072 return;
2073}
2074
2075static int pass_accept_req(struct c4iw_dev *dev, struct sk_buff *skb)
2076{
Vipul Pandya793dad92012-12-10 09:30:56 +00002077 struct c4iw_ep *child_ep = NULL, *parent_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002078 struct cpl_pass_accept_req *req = cplhdr(skb);
2079 unsigned int stid = GET_POPEN_TID(ntohl(req->tos_stid));
2080 struct tid_info *t = dev->rdev.lldi.tids;
2081 unsigned int hwtid = GET_TID(req);
2082 struct dst_entry *dst;
Vipul Pandya830662f2013-07-04 16:10:47 +05302083 __u8 local_ip[16], peer_ip[16];
Steve Wisecfdda9d2010-04-21 15:30:06 -07002084 __be16 local_port, peer_port;
David Miller3786cf12011-12-02 16:52:31 +00002085 int err;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002086 u16 peer_mss = ntohs(req->tcpopt.mss);
Vipul Pandya830662f2013-07-04 16:10:47 +05302087 int iptype;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002088
2089 parent_ep = lookup_stid(t, stid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002090 if (!parent_ep) {
2091 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
2092 goto reject;
2093 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00002094
Steve Wisecfdda9d2010-04-21 15:30:06 -07002095 if (state_read(&parent_ep->com) != LISTEN) {
2096 printk(KERN_ERR "%s - listening ep not in LISTEN\n",
2097 __func__);
2098 goto reject;
2099 }
2100
Vipul Pandya830662f2013-07-04 16:10:47 +05302101 get_4tuple(req, &iptype, local_ip, peer_ip, &local_port, &peer_port);
2102
Steve Wisecfdda9d2010-04-21 15:30:06 -07002103 /* Find output route */
Vipul Pandya830662f2013-07-04 16:10:47 +05302104 if (iptype == 4) {
2105 PDBG("%s parent ep %p hwtid %u laddr %pI4 raddr %pI4 lport %d rport %d peer_mss %d\n"
2106 , __func__, parent_ep, hwtid,
2107 local_ip, peer_ip, ntohs(local_port),
2108 ntohs(peer_port), peer_mss);
2109 dst = find_route(dev, *(__be32 *)local_ip, *(__be32 *)peer_ip,
2110 local_port, peer_port,
2111 GET_POPEN_TOS(ntohl(req->tos_stid)));
2112 } else {
2113 PDBG("%s parent ep %p hwtid %u laddr %pI6 raddr %pI6 lport %d rport %d peer_mss %d\n"
2114 , __func__, parent_ep, hwtid,
2115 local_ip, peer_ip, ntohs(local_port),
2116 ntohs(peer_port), peer_mss);
2117 dst = find_route6(dev, local_ip, peer_ip, local_port, peer_port,
2118 PASS_OPEN_TOS(ntohl(req->tos_stid)),
2119 ((struct sockaddr_in6 *)
2120 &parent_ep->com.local_addr)->sin6_scope_id);
2121 }
2122 if (!dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002123 printk(KERN_ERR MOD "%s - failed to find dst entry!\n",
2124 __func__);
2125 goto reject;
2126 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002127
2128 child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
2129 if (!child_ep) {
2130 printk(KERN_ERR MOD "%s - failed to allocate ep entry!\n",
2131 __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002132 dst_release(dst);
2133 goto reject;
2134 }
David Miller3786cf12011-12-02 16:52:31 +00002135
Vipul Pandya830662f2013-07-04 16:10:47 +05302136 err = import_ep(child_ep, iptype, peer_ip, dst, dev, false);
David Miller3786cf12011-12-02 16:52:31 +00002137 if (err) {
2138 printk(KERN_ERR MOD "%s - failed to allocate l2t entry!\n",
2139 __func__);
2140 dst_release(dst);
2141 kfree(child_ep);
2142 goto reject;
2143 }
2144
Vipul Pandya1cab7752012-12-10 09:30:55 +00002145 if (peer_mss && child_ep->mtu > (peer_mss + 40))
2146 child_ep->mtu = peer_mss + 40;
2147
Steve Wisecfdda9d2010-04-21 15:30:06 -07002148 state_set(&child_ep->com, CONNECTING);
2149 child_ep->com.dev = dev;
2150 child_ep->com.cm_id = NULL;
Vipul Pandya830662f2013-07-04 16:10:47 +05302151 if (iptype == 4) {
2152 struct sockaddr_in *sin = (struct sockaddr_in *)
2153 &child_ep->com.local_addr;
2154 sin->sin_family = PF_INET;
2155 sin->sin_port = local_port;
2156 sin->sin_addr.s_addr = *(__be32 *)local_ip;
2157 sin = (struct sockaddr_in *)&child_ep->com.remote_addr;
2158 sin->sin_family = PF_INET;
2159 sin->sin_port = peer_port;
2160 sin->sin_addr.s_addr = *(__be32 *)peer_ip;
2161 } else {
2162 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)
2163 &child_ep->com.local_addr;
2164 sin6->sin6_family = PF_INET6;
2165 sin6->sin6_port = local_port;
2166 memcpy(sin6->sin6_addr.s6_addr, local_ip, 16);
2167 sin6 = (struct sockaddr_in6 *)&child_ep->com.remote_addr;
2168 sin6->sin6_family = PF_INET6;
2169 sin6->sin6_port = peer_port;
2170 memcpy(sin6->sin6_addr.s6_addr, peer_ip, 16);
2171 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002172 c4iw_get_ep(&parent_ep->com);
2173 child_ep->parent_ep = parent_ep;
2174 child_ep->tos = GET_POPEN_TOS(ntohl(req->tos_stid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002175 child_ep->dst = dst;
2176 child_ep->hwtid = hwtid;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002177
2178 PDBG("%s tx_chan %u smac_idx %u rss_qid %u\n", __func__,
David Miller3786cf12011-12-02 16:52:31 +00002179 child_ep->tx_chan, child_ep->smac_idx, child_ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002180
2181 init_timer(&child_ep->timer);
2182 cxgb4_insert_tid(t, child_ep, hwtid);
Vipul Pandyab3de6cf2013-01-07 13:11:59 +00002183 insert_handle(dev, &dev->hwtid_idr, child_ep, child_ep->hwtid);
Vipul Pandya830662f2013-07-04 16:10:47 +05302184 accept_cr(child_ep, skb, req);
Vipul Pandya793dad92012-12-10 09:30:56 +00002185 set_bit(PASS_ACCEPT_REQ, &child_ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002186 goto out;
2187reject:
Vipul Pandya830662f2013-07-04 16:10:47 +05302188 reject_cr(dev, hwtid, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002189out:
2190 return 0;
2191}
2192
2193static int pass_establish(struct c4iw_dev *dev, struct sk_buff *skb)
2194{
2195 struct c4iw_ep *ep;
2196 struct cpl_pass_establish *req = cplhdr(skb);
2197 struct tid_info *t = dev->rdev.lldi.tids;
2198 unsigned int tid = GET_TID(req);
2199
2200 ep = lookup_tid(t, tid);
2201 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2202 ep->snd_seq = be32_to_cpu(req->snd_isn);
2203 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
2204
Vipul Pandya1cab7752012-12-10 09:30:55 +00002205 PDBG("%s ep %p hwtid %u tcp_opt 0x%02x\n", __func__, ep, tid,
2206 ntohs(req->tcp_opt));
2207
Steve Wisecfdda9d2010-04-21 15:30:06 -07002208 set_emss(ep, ntohs(req->tcp_opt));
2209
2210 dst_confirm(ep->dst);
2211 state_set(&ep->com, MPA_REQ_WAIT);
2212 start_ep_timer(ep);
2213 send_flowc(ep, skb);
Vipul Pandya793dad92012-12-10 09:30:56 +00002214 set_bit(PASS_ESTAB, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002215
2216 return 0;
2217}
2218
2219static int peer_close(struct c4iw_dev *dev, struct sk_buff *skb)
2220{
2221 struct cpl_peer_close *hdr = cplhdr(skb);
2222 struct c4iw_ep *ep;
2223 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002224 int disconnect = 1;
2225 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002226 struct tid_info *t = dev->rdev.lldi.tids;
2227 unsigned int tid = GET_TID(hdr);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002228 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002229
2230 ep = lookup_tid(t, tid);
2231 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2232 dst_confirm(ep->dst);
2233
Vipul Pandya793dad92012-12-10 09:30:56 +00002234 set_bit(PEER_CLOSE, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002235 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002236 switch (ep->com.state) {
2237 case MPA_REQ_WAIT:
2238 __state_set(&ep->com, CLOSING);
2239 break;
2240 case MPA_REQ_SENT:
2241 __state_set(&ep->com, CLOSING);
2242 connect_reply_upcall(ep, -ECONNRESET);
2243 break;
2244 case MPA_REQ_RCVD:
2245
2246 /*
2247 * We're gonna mark this puppy DEAD, but keep
2248 * the reference on it until the ULP accepts or
2249 * rejects the CR. Also wake up anyone waiting
2250 * in rdma connection migration (see c4iw_accept_cr()).
2251 */
2252 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002253 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002254 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002255 break;
2256 case MPA_REP_SENT:
2257 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002258 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002259 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002260 break;
2261 case FPDU_MODE:
Steve Wiseca5a2202010-07-23 19:12:37 +00002262 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002263 __state_set(&ep->com, CLOSING);
Steve Wise30c95c22011-05-09 22:06:22 -07002264 attrs.next_state = C4IW_QP_STATE_CLOSING;
Steve Wise8da7e7a2011-06-14 20:59:27 +00002265 ret = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wise30c95c22011-05-09 22:06:22 -07002266 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002267 if (ret != -ECONNRESET) {
2268 peer_close_upcall(ep);
2269 disconnect = 1;
2270 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002271 break;
2272 case ABORTING:
2273 disconnect = 0;
2274 break;
2275 case CLOSING:
2276 __state_set(&ep->com, MORIBUND);
2277 disconnect = 0;
2278 break;
2279 case MORIBUND:
Steve Wiseca5a2202010-07-23 19:12:37 +00002280 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002281 if (ep->com.cm_id && ep->com.qp) {
2282 attrs.next_state = C4IW_QP_STATE_IDLE;
2283 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2284 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2285 }
2286 close_complete_upcall(ep);
2287 __state_set(&ep->com, DEAD);
2288 release = 1;
2289 disconnect = 0;
2290 break;
2291 case DEAD:
2292 disconnect = 0;
2293 break;
2294 default:
2295 BUG_ON(1);
2296 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002297 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002298 if (disconnect)
2299 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
2300 if (release)
2301 release_ep_resources(ep);
2302 return 0;
2303}
2304
2305/*
2306 * Returns whether an ABORT_REQ_RSS message is a negative advice.
2307 */
2308static int is_neg_adv_abort(unsigned int status)
2309{
2310 return status == CPL_ERR_RTX_NEG_ADVICE ||
2311 status == CPL_ERR_PERSIST_NEG_ADVICE;
2312}
2313
2314static int peer_abort(struct c4iw_dev *dev, struct sk_buff *skb)
2315{
2316 struct cpl_abort_req_rss *req = cplhdr(skb);
2317 struct c4iw_ep *ep;
2318 struct cpl_abort_rpl *rpl;
2319 struct sk_buff *rpl_skb;
2320 struct c4iw_qp_attributes attrs;
2321 int ret;
2322 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002323 struct tid_info *t = dev->rdev.lldi.tids;
2324 unsigned int tid = GET_TID(req);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002325
2326 ep = lookup_tid(t, tid);
2327 if (is_neg_adv_abort(req->status)) {
2328 PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep,
2329 ep->hwtid);
2330 return 0;
2331 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002332 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
2333 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00002334 set_bit(PEER_ABORT, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002335
2336 /*
2337 * Wake up any threads in rdma_init() or rdma_fini().
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302338 * However, this is not needed if com state is just
2339 * MPA_REQ_SENT
Steve Wise2f5b48c2010-09-10 11:15:36 -05002340 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302341 if (ep->com.state != MPA_REQ_SENT)
2342 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002343
2344 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002345 switch (ep->com.state) {
2346 case CONNECTING:
2347 break;
2348 case MPA_REQ_WAIT:
Steve Wiseca5a2202010-07-23 19:12:37 +00002349 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002350 break;
2351 case MPA_REQ_SENT:
Steve Wiseca5a2202010-07-23 19:12:37 +00002352 stop_ep_timer(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002353 if (mpa_rev == 1 || (mpa_rev == 2 && ep->tried_with_mpa_v1))
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302354 connect_reply_upcall(ep, -ECONNRESET);
2355 else {
2356 /*
2357 * we just don't send notification upwards because we
2358 * want to retry with mpa_v1 without upper layers even
2359 * knowing it.
2360 *
2361 * do some housekeeping so as to re-initiate the
2362 * connection
2363 */
2364 PDBG("%s: mpa_rev=%d. Retrying with mpav1\n", __func__,
2365 mpa_rev);
2366 ep->retry_with_mpa_v1 = 1;
2367 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002368 break;
2369 case MPA_REP_SENT:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002370 break;
2371 case MPA_REQ_RCVD:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002372 break;
2373 case MORIBUND:
2374 case CLOSING:
Steve Wiseca5a2202010-07-23 19:12:37 +00002375 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002376 /*FALLTHROUGH*/
2377 case FPDU_MODE:
2378 if (ep->com.cm_id && ep->com.qp) {
2379 attrs.next_state = C4IW_QP_STATE_ERROR;
2380 ret = c4iw_modify_qp(ep->com.qp->rhp,
2381 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
2382 &attrs, 1);
2383 if (ret)
2384 printk(KERN_ERR MOD
2385 "%s - qp <- error failed!\n",
2386 __func__);
2387 }
2388 peer_abort_upcall(ep);
2389 break;
2390 case ABORTING:
2391 break;
2392 case DEAD:
2393 PDBG("%s PEER_ABORT IN DEAD STATE!!!!\n", __func__);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002394 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002395 return 0;
2396 default:
2397 BUG_ON(1);
2398 break;
2399 }
2400 dst_confirm(ep->dst);
2401 if (ep->com.state != ABORTING) {
2402 __state_set(&ep->com, DEAD);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302403 /* we don't release if we want to retry with mpa_v1 */
2404 if (!ep->retry_with_mpa_v1)
2405 release = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002406 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002407 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002408
2409 rpl_skb = get_skb(skb, sizeof(*rpl), GFP_KERNEL);
2410 if (!rpl_skb) {
2411 printk(KERN_ERR MOD "%s - cannot allocate skb!\n",
2412 __func__);
2413 release = 1;
2414 goto out;
2415 }
2416 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
2417 rpl = (struct cpl_abort_rpl *) skb_put(rpl_skb, sizeof(*rpl));
2418 INIT_TP_WR(rpl, ep->hwtid);
2419 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_RPL, ep->hwtid));
2420 rpl->cmd = CPL_ABORT_NO_RST;
2421 c4iw_ofld_send(&ep->com.dev->rdev, rpl_skb);
2422out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002423 if (release)
2424 release_ep_resources(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002425 else if (ep->retry_with_mpa_v1) {
2426 remove_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep->hwtid);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302427 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
2428 dst_release(ep->dst);
2429 cxgb4_l2t_release(ep->l2t);
2430 c4iw_reconnect(ep);
2431 }
2432
Steve Wisecfdda9d2010-04-21 15:30:06 -07002433 return 0;
2434}
2435
2436static int close_con_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2437{
2438 struct c4iw_ep *ep;
2439 struct c4iw_qp_attributes attrs;
2440 struct cpl_close_con_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002441 int release = 0;
2442 struct tid_info *t = dev->rdev.lldi.tids;
2443 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002444
2445 ep = lookup_tid(t, tid);
2446
2447 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2448 BUG_ON(!ep);
2449
2450 /* The cm_id may be null if we failed to connect */
Steve Wise2f5b48c2010-09-10 11:15:36 -05002451 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002452 switch (ep->com.state) {
2453 case CLOSING:
2454 __state_set(&ep->com, MORIBUND);
2455 break;
2456 case MORIBUND:
Steve Wiseca5a2202010-07-23 19:12:37 +00002457 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002458 if ((ep->com.cm_id) && (ep->com.qp)) {
2459 attrs.next_state = C4IW_QP_STATE_IDLE;
2460 c4iw_modify_qp(ep->com.qp->rhp,
2461 ep->com.qp,
2462 C4IW_QP_ATTR_NEXT_STATE,
2463 &attrs, 1);
2464 }
2465 close_complete_upcall(ep);
2466 __state_set(&ep->com, DEAD);
2467 release = 1;
2468 break;
2469 case ABORTING:
2470 case DEAD:
2471 break;
2472 default:
2473 BUG_ON(1);
2474 break;
2475 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002476 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002477 if (release)
2478 release_ep_resources(ep);
2479 return 0;
2480}
2481
2482static int terminate(struct c4iw_dev *dev, struct sk_buff *skb)
2483{
Steve Wise0e42c1f2010-09-10 11:15:09 -05002484 struct cpl_rdma_terminate *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002485 struct tid_info *t = dev->rdev.lldi.tids;
Steve Wise0e42c1f2010-09-10 11:15:09 -05002486 unsigned int tid = GET_TID(rpl);
2487 struct c4iw_ep *ep;
2488 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002489
2490 ep = lookup_tid(t, tid);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002491 BUG_ON(!ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002492
Steve Wise30c95c22011-05-09 22:06:22 -07002493 if (ep && ep->com.qp) {
Steve Wise0e42c1f2010-09-10 11:15:09 -05002494 printk(KERN_WARNING MOD "TERM received tid %u qpid %u\n", tid,
2495 ep->com.qp->wq.sq.qid);
2496 attrs.next_state = C4IW_QP_STATE_TERMINATE;
2497 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2498 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2499 } else
Steve Wise30c95c22011-05-09 22:06:22 -07002500 printk(KERN_WARNING MOD "TERM received tid %u no ep/qp\n", tid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002501
Steve Wisecfdda9d2010-04-21 15:30:06 -07002502 return 0;
2503}
2504
2505/*
2506 * Upcall from the adapter indicating data has been transmitted.
2507 * For us its just the single MPA request or reply. We can now free
2508 * the skb holding the mpa message.
2509 */
2510static int fw4_ack(struct c4iw_dev *dev, struct sk_buff *skb)
2511{
2512 struct c4iw_ep *ep;
2513 struct cpl_fw4_ack *hdr = cplhdr(skb);
2514 u8 credits = hdr->credits;
2515 unsigned int tid = GET_TID(hdr);
2516 struct tid_info *t = dev->rdev.lldi.tids;
2517
2518
2519 ep = lookup_tid(t, tid);
2520 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
2521 if (credits == 0) {
Joe Perchesaa1ad262010-10-25 19:44:22 -07002522 PDBG("%s 0 credit ack ep %p tid %u state %u\n",
2523 __func__, ep, ep->hwtid, state_read(&ep->com));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002524 return 0;
2525 }
2526
2527 dst_confirm(ep->dst);
2528 if (ep->mpa_skb) {
2529 PDBG("%s last streaming msg ack ep %p tid %u state %u "
2530 "initiator %u freeing skb\n", __func__, ep, ep->hwtid,
2531 state_read(&ep->com), ep->mpa_attr.initiator ? 1 : 0);
2532 kfree_skb(ep->mpa_skb);
2533 ep->mpa_skb = NULL;
2534 }
2535 return 0;
2536}
2537
Steve Wisecfdda9d2010-04-21 15:30:06 -07002538int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
2539{
2540 int err;
2541 struct c4iw_ep *ep = to_ep(cm_id);
2542 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2543
2544 if (state_read(&ep->com) == DEAD) {
2545 c4iw_put_ep(&ep->com);
2546 return -ECONNRESET;
2547 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002548 set_bit(ULP_REJECT, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002549 BUG_ON(state_read(&ep->com) != MPA_REQ_RCVD);
2550 if (mpa_rev == 0)
2551 abort_connection(ep, NULL, GFP_KERNEL);
2552 else {
2553 err = send_mpa_reject(ep, pdata, pdata_len);
2554 err = c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
2555 }
2556 c4iw_put_ep(&ep->com);
2557 return 0;
2558}
2559
2560int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
2561{
2562 int err;
2563 struct c4iw_qp_attributes attrs;
2564 enum c4iw_qp_attr_mask mask;
2565 struct c4iw_ep *ep = to_ep(cm_id);
2566 struct c4iw_dev *h = to_c4iw_dev(cm_id->device);
2567 struct c4iw_qp *qp = get_qhp(h, conn_param->qpn);
2568
2569 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2570 if (state_read(&ep->com) == DEAD) {
2571 err = -ECONNRESET;
2572 goto err;
2573 }
2574
2575 BUG_ON(state_read(&ep->com) != MPA_REQ_RCVD);
2576 BUG_ON(!qp);
2577
Vipul Pandya793dad92012-12-10 09:30:56 +00002578 set_bit(ULP_ACCEPT, &ep->com.history);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002579 if ((conn_param->ord > c4iw_max_read_depth) ||
2580 (conn_param->ird > c4iw_max_read_depth)) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002581 abort_connection(ep, NULL, GFP_KERNEL);
2582 err = -EINVAL;
2583 goto err;
2584 }
2585
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302586 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
2587 if (conn_param->ord > ep->ird) {
2588 ep->ird = conn_param->ird;
2589 ep->ord = conn_param->ord;
2590 send_mpa_reject(ep, conn_param->private_data,
2591 conn_param->private_data_len);
2592 abort_connection(ep, NULL, GFP_KERNEL);
2593 err = -ENOMEM;
2594 goto err;
2595 }
2596 if (conn_param->ird > ep->ord) {
2597 if (!ep->ord)
2598 conn_param->ird = 1;
2599 else {
2600 abort_connection(ep, NULL, GFP_KERNEL);
2601 err = -ENOMEM;
2602 goto err;
2603 }
2604 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002605
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302606 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002607 ep->ird = conn_param->ird;
2608 ep->ord = conn_param->ord;
2609
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302610 if (ep->mpa_attr.version != 2)
2611 if (peer2peer && ep->ird == 0)
2612 ep->ird = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002613
2614 PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord);
2615
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302616 cm_id->add_ref(cm_id);
2617 ep->com.cm_id = cm_id;
2618 ep->com.qp = qp;
Vipul Pandya325abea2013-01-07 13:11:53 +00002619 ref_qp(ep);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302620
Steve Wisecfdda9d2010-04-21 15:30:06 -07002621 /* bind QP to EP and move to RTS */
2622 attrs.mpa_attr = ep->mpa_attr;
2623 attrs.max_ird = ep->ird;
2624 attrs.max_ord = ep->ord;
2625 attrs.llp_stream_handle = ep;
2626 attrs.next_state = C4IW_QP_STATE_RTS;
2627
2628 /* bind QP and TID with INIT_WR */
2629 mask = C4IW_QP_ATTR_NEXT_STATE |
2630 C4IW_QP_ATTR_LLP_STREAM_HANDLE |
2631 C4IW_QP_ATTR_MPA_ATTR |
2632 C4IW_QP_ATTR_MAX_IRD |
2633 C4IW_QP_ATTR_MAX_ORD;
2634
2635 err = c4iw_modify_qp(ep->com.qp->rhp,
2636 ep->com.qp, mask, &attrs, 1);
2637 if (err)
2638 goto err1;
2639 err = send_mpa_reply(ep, conn_param->private_data,
2640 conn_param->private_data_len);
2641 if (err)
2642 goto err1;
2643
2644 state_set(&ep->com, FPDU_MODE);
2645 established_upcall(ep);
2646 c4iw_put_ep(&ep->com);
2647 return 0;
2648err1:
2649 ep->com.cm_id = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002650 cm_id->rem_ref(cm_id);
2651err:
2652 c4iw_put_ep(&ep->com);
2653 return err;
2654}
2655
Vipul Pandya830662f2013-07-04 16:10:47 +05302656static int pick_local_ipaddrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
2657{
2658 struct in_device *ind;
2659 int found = 0;
2660 struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->local_addr;
2661 struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_id->remote_addr;
2662
2663 ind = in_dev_get(dev->rdev.lldi.ports[0]);
2664 if (!ind)
2665 return -EADDRNOTAVAIL;
2666 for_primary_ifa(ind) {
2667 laddr->sin_addr.s_addr = ifa->ifa_address;
2668 raddr->sin_addr.s_addr = ifa->ifa_address;
2669 found = 1;
2670 break;
2671 }
2672 endfor_ifa(ind);
2673 in_dev_put(ind);
2674 return found ? 0 : -EADDRNOTAVAIL;
2675}
2676
2677static int get_lladdr(struct net_device *dev, struct in6_addr *addr,
2678 unsigned char banned_flags)
2679{
2680 struct inet6_dev *idev;
2681 int err = -EADDRNOTAVAIL;
2682
2683 rcu_read_lock();
2684 idev = __in6_dev_get(dev);
2685 if (idev != NULL) {
2686 struct inet6_ifaddr *ifp;
2687
2688 read_lock_bh(&idev->lock);
2689 list_for_each_entry(ifp, &idev->addr_list, if_list) {
2690 if (ifp->scope == IFA_LINK &&
2691 !(ifp->flags & banned_flags)) {
2692 memcpy(addr, &ifp->addr, 16);
2693 err = 0;
2694 break;
2695 }
2696 }
2697 read_unlock_bh(&idev->lock);
2698 }
2699 rcu_read_unlock();
2700 return err;
2701}
2702
2703static int pick_local_ip6addrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
2704{
2705 struct in6_addr uninitialized_var(addr);
2706 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)&cm_id->local_addr;
2707 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)&cm_id->remote_addr;
2708
2709 if (get_lladdr(dev->rdev.lldi.ports[0], &addr, IFA_F_TENTATIVE)) {
2710 memcpy(la6->sin6_addr.s6_addr, &addr, 16);
2711 memcpy(ra6->sin6_addr.s6_addr, &addr, 16);
2712 return 0;
2713 }
2714 return -EADDRNOTAVAIL;
2715}
2716
Steve Wisecfdda9d2010-04-21 15:30:06 -07002717int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
2718{
Steve Wisecfdda9d2010-04-21 15:30:06 -07002719 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
2720 struct c4iw_ep *ep;
David Miller3786cf12011-12-02 16:52:31 +00002721 int err = 0;
Steve Wise24d44a32013-07-04 16:10:44 +05302722 struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->local_addr;
2723 struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_id->remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302724 struct sockaddr_in6 *laddr6 = (struct sockaddr_in6 *)&cm_id->local_addr;
2725 struct sockaddr_in6 *raddr6 = (struct sockaddr_in6 *)
2726 &cm_id->remote_addr;
2727 __u8 *ra;
2728 int iptype;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002729
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002730 if ((conn_param->ord > c4iw_max_read_depth) ||
2731 (conn_param->ird > c4iw_max_read_depth)) {
2732 err = -EINVAL;
2733 goto out;
2734 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002735 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
2736 if (!ep) {
2737 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
2738 err = -ENOMEM;
2739 goto out;
2740 }
2741 init_timer(&ep->timer);
2742 ep->plen = conn_param->private_data_len;
2743 if (ep->plen)
2744 memcpy(ep->mpa_pkt + sizeof(struct mpa_message),
2745 conn_param->private_data, ep->plen);
2746 ep->ird = conn_param->ird;
2747 ep->ord = conn_param->ord;
2748
2749 if (peer2peer && ep->ord == 0)
2750 ep->ord = 1;
2751
2752 cm_id->add_ref(cm_id);
2753 ep->com.dev = dev;
2754 ep->com.cm_id = cm_id;
2755 ep->com.qp = get_qhp(dev, conn_param->qpn);
Vipul Pandya830662f2013-07-04 16:10:47 +05302756 if (!ep->com.qp) {
2757 PDBG("%s qpn 0x%x not found!\n", __func__, conn_param->qpn);
2758 err = -EINVAL;
2759 goto fail2;
2760 }
Vipul Pandya325abea2013-01-07 13:11:53 +00002761 ref_qp(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002762 PDBG("%s qpn 0x%x qp %p cm_id %p\n", __func__, conn_param->qpn,
2763 ep->com.qp, cm_id);
2764
2765 /*
2766 * Allocate an active TID to initiate a TCP connection.
2767 */
2768 ep->atid = cxgb4_alloc_atid(dev->rdev.lldi.tids, ep);
2769 if (ep->atid == -1) {
2770 printk(KERN_ERR MOD "%s - cannot alloc atid.\n", __func__);
2771 err = -ENOMEM;
2772 goto fail2;
2773 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002774 insert_handle(dev, &dev->atid_idr, ep, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002775
Vipul Pandya830662f2013-07-04 16:10:47 +05302776 if (cm_id->remote_addr.ss_family == AF_INET) {
2777 iptype = 4;
2778 ra = (__u8 *)&raddr->sin_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002779
Vipul Pandya830662f2013-07-04 16:10:47 +05302780 /*
2781 * Handle loopback requests to INADDR_ANY.
2782 */
2783 if ((__force int)raddr->sin_addr.s_addr == INADDR_ANY) {
2784 err = pick_local_ipaddrs(dev, cm_id);
2785 if (err)
2786 goto fail2;
2787 }
2788
2789 /* find a route */
2790 PDBG("%s saddr %pI4 sport 0x%x raddr %pI4 rport 0x%x\n",
2791 __func__, &laddr->sin_addr, ntohs(laddr->sin_port),
2792 ra, ntohs(raddr->sin_port));
2793 ep->dst = find_route(dev, laddr->sin_addr.s_addr,
2794 raddr->sin_addr.s_addr, laddr->sin_port,
2795 raddr->sin_port, 0);
2796 } else {
2797 iptype = 6;
2798 ra = (__u8 *)&raddr6->sin6_addr;
2799
2800 /*
2801 * Handle loopback requests to INADDR_ANY.
2802 */
2803 if (ipv6_addr_type(&raddr6->sin6_addr) == IPV6_ADDR_ANY) {
2804 err = pick_local_ip6addrs(dev, cm_id);
2805 if (err)
2806 goto fail2;
2807 }
2808
2809 /* find a route */
2810 PDBG("%s saddr %pI6 sport 0x%x raddr %pI6 rport 0x%x\n",
2811 __func__, laddr6->sin6_addr.s6_addr,
2812 ntohs(laddr6->sin6_port),
2813 raddr6->sin6_addr.s6_addr, ntohs(raddr6->sin6_port));
2814 ep->dst = find_route6(dev, laddr6->sin6_addr.s6_addr,
2815 raddr6->sin6_addr.s6_addr,
2816 laddr6->sin6_port, raddr6->sin6_port, 0,
2817 raddr6->sin6_scope_id);
2818 }
2819 if (!ep->dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002820 printk(KERN_ERR MOD "%s - cannot find route.\n", __func__);
2821 err = -EHOSTUNREACH;
2822 goto fail3;
2823 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002824
Vipul Pandya830662f2013-07-04 16:10:47 +05302825 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, true);
David Miller3786cf12011-12-02 16:52:31 +00002826 if (err) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002827 printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002828 goto fail4;
2829 }
2830
2831 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
2832 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
2833 ep->l2t->idx);
2834
2835 state_set(&ep->com, CONNECTING);
2836 ep->tos = 0;
Steve Wise24d44a32013-07-04 16:10:44 +05302837 memcpy(&ep->com.local_addr, &cm_id->local_addr,
2838 sizeof(ep->com.local_addr));
2839 memcpy(&ep->com.remote_addr, &cm_id->remote_addr,
2840 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002841
2842 /* send connect request to rnic */
2843 err = send_connect(ep);
2844 if (!err)
2845 goto out;
2846
2847 cxgb4_l2t_release(ep->l2t);
2848fail4:
2849 dst_release(ep->dst);
2850fail3:
Vipul Pandya793dad92012-12-10 09:30:56 +00002851 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002852 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
2853fail2:
2854 cm_id->rem_ref(cm_id);
2855 c4iw_put_ep(&ep->com);
2856out:
2857 return err;
2858}
2859
Vipul Pandya830662f2013-07-04 16:10:47 +05302860static int create_server6(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
2861{
2862 int err;
2863 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
2864
2865 c4iw_init_wr_wait(&ep->com.wr_wait);
2866 err = cxgb4_create_server6(ep->com.dev->rdev.lldi.ports[0],
2867 ep->stid, &sin6->sin6_addr,
2868 sin6->sin6_port,
2869 ep->com.dev->rdev.lldi.rxq_ids[0]);
2870 if (!err)
2871 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
2872 &ep->com.wr_wait,
2873 0, 0, __func__);
2874 if (err)
2875 pr_err("cxgb4_create_server6/filter failed err %d stid %d laddr %pI6 lport %d\n",
2876 err, ep->stid,
2877 sin6->sin6_addr.s6_addr, ntohs(sin6->sin6_port));
2878 return err;
2879}
2880
2881static int create_server4(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
2882{
2883 int err;
2884 struct sockaddr_in *sin = (struct sockaddr_in *)&ep->com.local_addr;
2885
2886 if (dev->rdev.lldi.enable_fw_ofld_conn) {
2887 do {
2888 err = cxgb4_create_server_filter(
2889 ep->com.dev->rdev.lldi.ports[0], ep->stid,
2890 sin->sin_addr.s_addr, sin->sin_port, 0,
2891 ep->com.dev->rdev.lldi.rxq_ids[0], 0, 0);
2892 if (err == -EBUSY) {
2893 set_current_state(TASK_UNINTERRUPTIBLE);
2894 schedule_timeout(usecs_to_jiffies(100));
2895 }
2896 } while (err == -EBUSY);
2897 } else {
2898 c4iw_init_wr_wait(&ep->com.wr_wait);
2899 err = cxgb4_create_server(ep->com.dev->rdev.lldi.ports[0],
2900 ep->stid, sin->sin_addr.s_addr, sin->sin_port,
2901 0, ep->com.dev->rdev.lldi.rxq_ids[0]);
2902 if (!err)
2903 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
2904 &ep->com.wr_wait,
2905 0, 0, __func__);
2906 }
2907 if (err)
2908 pr_err("cxgb4_create_server/filter failed err %d stid %d laddr %pI4 lport %d\n"
2909 , err, ep->stid,
2910 &sin->sin_addr, ntohs(sin->sin_port));
2911 return err;
2912}
2913
Steve Wisecfdda9d2010-04-21 15:30:06 -07002914int c4iw_create_listen(struct iw_cm_id *cm_id, int backlog)
2915{
2916 int err = 0;
2917 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
2918 struct c4iw_listen_ep *ep;
2919
Steve Wisecfdda9d2010-04-21 15:30:06 -07002920 might_sleep();
2921
2922 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
2923 if (!ep) {
2924 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
2925 err = -ENOMEM;
2926 goto fail1;
2927 }
2928 PDBG("%s ep %p\n", __func__, ep);
2929 cm_id->add_ref(cm_id);
2930 ep->com.cm_id = cm_id;
2931 ep->com.dev = dev;
2932 ep->backlog = backlog;
Steve Wise24d44a32013-07-04 16:10:44 +05302933 memcpy(&ep->com.local_addr, &cm_id->local_addr,
2934 sizeof(ep->com.local_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002935
2936 /*
2937 * Allocate a server TID.
2938 */
Vipul Pandya1cab7752012-12-10 09:30:55 +00002939 if (dev->rdev.lldi.enable_fw_ofld_conn)
Vipul Pandya830662f2013-07-04 16:10:47 +05302940 ep->stid = cxgb4_alloc_sftid(dev->rdev.lldi.tids,
2941 cm_id->local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002942 else
Vipul Pandya830662f2013-07-04 16:10:47 +05302943 ep->stid = cxgb4_alloc_stid(dev->rdev.lldi.tids,
2944 cm_id->local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002945
Steve Wisecfdda9d2010-04-21 15:30:06 -07002946 if (ep->stid == -1) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07002947 printk(KERN_ERR MOD "%s - cannot alloc stid.\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002948 err = -ENOMEM;
2949 goto fail2;
2950 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002951 insert_handle(dev, &dev->stid_idr, ep, ep->stid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002952 state_set(&ep->com, LISTEN);
Vipul Pandya830662f2013-07-04 16:10:47 +05302953 if (ep->com.local_addr.ss_family == AF_INET)
2954 err = create_server4(dev, ep);
2955 else
2956 err = create_server6(dev, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002957 if (!err) {
2958 cm_id->provider_data = ep;
2959 goto out;
2960 }
Vipul Pandya830662f2013-07-04 16:10:47 +05302961 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
2962 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002963fail2:
2964 cm_id->rem_ref(cm_id);
2965 c4iw_put_ep(&ep->com);
2966fail1:
2967out:
2968 return err;
2969}
2970
2971int c4iw_destroy_listen(struct iw_cm_id *cm_id)
2972{
2973 int err;
2974 struct c4iw_listen_ep *ep = to_listen_ep(cm_id);
2975
2976 PDBG("%s ep %p\n", __func__, ep);
2977
2978 might_sleep();
2979 state_set(&ep->com, DEAD);
Vipul Pandya830662f2013-07-04 16:10:47 +05302980 if (ep->com.dev->rdev.lldi.enable_fw_ofld_conn &&
2981 ep->com.local_addr.ss_family == AF_INET) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00002982 err = cxgb4_remove_server_filter(
2983 ep->com.dev->rdev.lldi.ports[0], ep->stid,
2984 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
2985 } else {
2986 c4iw_init_wr_wait(&ep->com.wr_wait);
Vipul Pandya830662f2013-07-04 16:10:47 +05302987 err = cxgb4_remove_server(
2988 ep->com.dev->rdev.lldi.ports[0], ep->stid,
2989 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002990 if (err)
2991 goto done;
2992 err = c4iw_wait_for_reply(&ep->com.dev->rdev, &ep->com.wr_wait,
2993 0, 0, __func__);
2994 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002995 remove_handle(ep->com.dev, &ep->com.dev->stid_idr, ep->stid);
Vipul Pandya830662f2013-07-04 16:10:47 +05302996 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
2997 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002998done:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002999 cm_id->rem_ref(cm_id);
3000 c4iw_put_ep(&ep->com);
3001 return err;
3002}
3003
3004int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
3005{
3006 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003007 int close = 0;
3008 int fatal = 0;
3009 struct c4iw_rdev *rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003010
Steve Wise2f5b48c2010-09-10 11:15:36 -05003011 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003012
3013 PDBG("%s ep %p state %s, abrupt %d\n", __func__, ep,
3014 states[ep->com.state], abrupt);
3015
3016 rdev = &ep->com.dev->rdev;
3017 if (c4iw_fatal_error(rdev)) {
3018 fatal = 1;
3019 close_complete_upcall(ep);
3020 ep->com.state = DEAD;
3021 }
3022 switch (ep->com.state) {
3023 case MPA_REQ_WAIT:
3024 case MPA_REQ_SENT:
3025 case MPA_REQ_RCVD:
3026 case MPA_REP_SENT:
3027 case FPDU_MODE:
3028 close = 1;
3029 if (abrupt)
3030 ep->com.state = ABORTING;
3031 else {
3032 ep->com.state = CLOSING;
Steve Wiseca5a2202010-07-23 19:12:37 +00003033 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003034 }
3035 set_bit(CLOSE_SENT, &ep->com.flags);
3036 break;
3037 case CLOSING:
3038 if (!test_and_set_bit(CLOSE_SENT, &ep->com.flags)) {
3039 close = 1;
3040 if (abrupt) {
Steve Wiseca5a2202010-07-23 19:12:37 +00003041 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003042 ep->com.state = ABORTING;
3043 } else
3044 ep->com.state = MORIBUND;
3045 }
3046 break;
3047 case MORIBUND:
3048 case ABORTING:
3049 case DEAD:
3050 PDBG("%s ignoring disconnect ep %p state %u\n",
3051 __func__, ep, ep->com.state);
3052 break;
3053 default:
3054 BUG();
3055 break;
3056 }
3057
Steve Wisecfdda9d2010-04-21 15:30:06 -07003058 if (close) {
Steve Wise8da7e7a2011-06-14 20:59:27 +00003059 if (abrupt) {
Vipul Pandya793dad92012-12-10 09:30:56 +00003060 set_bit(EP_DISC_ABORT, &ep->com.history);
Steve Wise8da7e7a2011-06-14 20:59:27 +00003061 close_complete_upcall(ep);
3062 ret = send_abort(ep, NULL, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003063 } else {
3064 set_bit(EP_DISC_CLOSE, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003065 ret = send_halfclose(ep, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003066 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003067 if (ret)
3068 fatal = 1;
3069 }
Steve Wise8da7e7a2011-06-14 20:59:27 +00003070 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003071 if (fatal)
3072 release_ep_resources(ep);
3073 return ret;
3074}
3075
Vipul Pandya1cab7752012-12-10 09:30:55 +00003076static void active_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3077 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3078{
3079 struct c4iw_ep *ep;
Vipul Pandya793dad92012-12-10 09:30:56 +00003080 int atid = be32_to_cpu(req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003081
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003082 ep = (struct c4iw_ep *)lookup_atid(dev->rdev.lldi.tids,
3083 (__force u32) req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003084 if (!ep)
3085 return;
3086
3087 switch (req->retval) {
3088 case FW_ENOMEM:
Vipul Pandya793dad92012-12-10 09:30:56 +00003089 set_bit(ACT_RETRY_NOMEM, &ep->com.history);
3090 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3091 send_fw_act_open_req(ep, atid);
3092 return;
3093 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003094 case FW_EADDRINUSE:
Vipul Pandya793dad92012-12-10 09:30:56 +00003095 set_bit(ACT_RETRY_INUSE, &ep->com.history);
3096 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3097 send_fw_act_open_req(ep, atid);
3098 return;
3099 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003100 break;
3101 default:
3102 pr_info("%s unexpected ofld conn wr retval %d\n",
3103 __func__, req->retval);
3104 break;
3105 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003106 pr_err("active ofld_connect_wr failure %d atid %d\n",
3107 req->retval, atid);
3108 mutex_lock(&dev->rdev.stats.lock);
3109 dev->rdev.stats.act_ofld_conn_fails++;
3110 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003111 connect_reply_upcall(ep, status2errno(req->retval));
Vipul Pandya793dad92012-12-10 09:30:56 +00003112 state_set(&ep->com, DEAD);
3113 remove_handle(dev, &dev->atid_idr, atid);
3114 cxgb4_free_atid(dev->rdev.lldi.tids, atid);
3115 dst_release(ep->dst);
3116 cxgb4_l2t_release(ep->l2t);
3117 c4iw_put_ep(&ep->com);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003118}
3119
3120static void passive_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3121 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3122{
3123 struct sk_buff *rpl_skb;
3124 struct cpl_pass_accept_req *cpl;
3125 int ret;
3126
Paul Bolle710a3112013-02-05 20:51:30 +00003127 rpl_skb = (struct sk_buff *)(unsigned long)req->cookie;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003128 BUG_ON(!rpl_skb);
3129 if (req->retval) {
3130 PDBG("%s passive open failure %d\n", __func__, req->retval);
Vipul Pandya793dad92012-12-10 09:30:56 +00003131 mutex_lock(&dev->rdev.stats.lock);
3132 dev->rdev.stats.pas_ofld_conn_fails++;
3133 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003134 kfree_skb(rpl_skb);
3135 } else {
3136 cpl = (struct cpl_pass_accept_req *)cplhdr(rpl_skb);
3137 OPCODE_TID(cpl) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ,
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003138 (__force u32) htonl(
3139 (__force u32) req->tid)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003140 ret = pass_accept_req(dev, rpl_skb);
3141 if (!ret)
3142 kfree_skb(rpl_skb);
3143 }
3144 return;
3145}
3146
3147static int deferred_fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
Steve Wise2f5b48c2010-09-10 11:15:36 -05003148{
3149 struct cpl_fw6_msg *rpl = cplhdr(skb);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003150 struct cpl_fw6_msg_ofld_connection_wr_rpl *req;
3151
3152 switch (rpl->type) {
3153 case FW6_TYPE_CQE:
3154 c4iw_ev_dispatch(dev, (struct t4_cqe *)&rpl->data[0]);
3155 break;
3156 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
3157 req = (struct cpl_fw6_msg_ofld_connection_wr_rpl *)rpl->data;
3158 switch (req->t_state) {
3159 case TCP_SYN_SENT:
3160 active_ofld_conn_reply(dev, skb, req);
3161 break;
3162 case TCP_SYN_RECV:
3163 passive_ofld_conn_reply(dev, skb, req);
3164 break;
3165 default:
3166 pr_err("%s unexpected ofld conn wr state %d\n",
3167 __func__, req->t_state);
3168 break;
3169 }
3170 break;
3171 }
3172 return 0;
3173}
3174
3175static void build_cpl_pass_accept_req(struct sk_buff *skb, int stid , u8 tos)
3176{
3177 u32 l2info;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003178 u16 vlantag, len, hdr_len, eth_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003179 u8 intf;
3180 struct cpl_rx_pkt *cpl = cplhdr(skb);
3181 struct cpl_pass_accept_req *req;
3182 struct tcp_options_received tmp_opt;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003183 struct c4iw_dev *dev;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003184
Vipul Pandyaf079af72013-03-14 05:08:58 +00003185 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003186 /* Store values from cpl_rx_pkt in temporary location. */
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003187 vlantag = (__force u16) cpl->vlan;
3188 len = (__force u16) cpl->len;
3189 l2info = (__force u32) cpl->l2info;
3190 hdr_len = (__force u16) cpl->hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003191 intf = cpl->iff;
3192
3193 __skb_pull(skb, sizeof(*req) + sizeof(struct rss_header));
3194
3195 /*
3196 * We need to parse the TCP options from SYN packet.
3197 * to generate cpl_pass_accept_req.
3198 */
3199 memset(&tmp_opt, 0, sizeof(tmp_opt));
3200 tcp_clear_options(&tmp_opt);
Christoph Paasch1a2c6182013-03-17 08:23:34 +00003201 tcp_parse_options(skb, &tmp_opt, 0, NULL);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003202
3203 req = (struct cpl_pass_accept_req *)__skb_push(skb, sizeof(*req));
3204 memset(req, 0, sizeof(*req));
3205 req->l2info = cpu_to_be16(V_SYN_INTF(intf) |
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003206 V_SYN_MAC_IDX(G_RX_MACIDX(
3207 (__force int) htonl(l2info))) |
Vipul Pandya1cab7752012-12-10 09:30:55 +00003208 F_SYN_XACT_MATCH);
Vipul Pandyaf079af72013-03-14 05:08:58 +00003209 eth_hdr_len = is_t4(dev->rdev.lldi.adapter_type) ?
3210 G_RX_ETHHDR_LEN((__force int) htonl(l2info)) :
3211 G_RX_T5_ETHHDR_LEN((__force int) htonl(l2info));
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003212 req->hdr_len = cpu_to_be32(V_SYN_RX_CHAN(G_RX_CHAN(
3213 (__force int) htonl(l2info))) |
3214 V_TCP_HDR_LEN(G_RX_TCPHDR_LEN(
3215 (__force int) htons(hdr_len))) |
3216 V_IP_HDR_LEN(G_RX_IPHDR_LEN(
3217 (__force int) htons(hdr_len))) |
Vipul Pandyaf079af72013-03-14 05:08:58 +00003218 V_ETH_HDR_LEN(G_RX_ETHHDR_LEN(eth_hdr_len)));
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003219 req->vlan = (__force __be16) vlantag;
3220 req->len = (__force __be16) len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003221 req->tos_stid = cpu_to_be32(PASS_OPEN_TID(stid) |
3222 PASS_OPEN_TOS(tos));
3223 req->tcpopt.mss = htons(tmp_opt.mss_clamp);
3224 if (tmp_opt.wscale_ok)
3225 req->tcpopt.wsf = tmp_opt.snd_wscale;
3226 req->tcpopt.tstamp = tmp_opt.saw_tstamp;
3227 if (tmp_opt.sack_ok)
3228 req->tcpopt.sack = 1;
3229 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ, 0));
3230 return;
3231}
3232
3233static void send_fw_pass_open_req(struct c4iw_dev *dev, struct sk_buff *skb,
3234 __be32 laddr, __be16 lport,
3235 __be32 raddr, __be16 rport,
3236 u32 rcv_isn, u32 filter, u16 window,
3237 u32 rss_qid, u8 port_id)
3238{
3239 struct sk_buff *req_skb;
3240 struct fw_ofld_connection_wr *req;
3241 struct cpl_pass_accept_req *cpl = cplhdr(skb);
3242
3243 req_skb = alloc_skb(sizeof(struct fw_ofld_connection_wr), GFP_KERNEL);
3244 req = (struct fw_ofld_connection_wr *)__skb_put(req_skb, sizeof(*req));
3245 memset(req, 0, sizeof(*req));
3246 req->op_compl = htonl(V_WR_OP(FW_OFLD_CONNECTION_WR) | FW_WR_COMPL(1));
3247 req->len16_pkd = htonl(FW_WR_LEN16(DIV_ROUND_UP(sizeof(*req), 16)));
3248 req->le.version_cpl = htonl(F_FW_OFLD_CONNECTION_WR_CPL);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003249 req->le.filter = (__force __be32) filter;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003250 req->le.lport = lport;
3251 req->le.pport = rport;
3252 req->le.u.ipv4.lip = laddr;
3253 req->le.u.ipv4.pip = raddr;
3254 req->tcb.rcv_nxt = htonl(rcv_isn + 1);
3255 req->tcb.rcv_adv = htons(window);
3256 req->tcb.t_state_to_astid =
3257 htonl(V_FW_OFLD_CONNECTION_WR_T_STATE(TCP_SYN_RECV) |
3258 V_FW_OFLD_CONNECTION_WR_RCV_SCALE(cpl->tcpopt.wsf) |
3259 V_FW_OFLD_CONNECTION_WR_ASTID(
3260 GET_PASS_OPEN_TID(ntohl(cpl->tos_stid))));
3261
3262 /*
3263 * We store the qid in opt2 which will be used by the firmware
3264 * to send us the wr response.
3265 */
3266 req->tcb.opt2 = htonl(V_RSS_QUEUE(rss_qid));
3267
3268 /*
3269 * We initialize the MSS index in TCB to 0xF.
3270 * So that when driver sends cpl_pass_accept_rpl
3271 * TCB picks up the correct value. If this was 0
3272 * TP will ignore any value > 0 for MSS index.
3273 */
3274 req->tcb.opt0 = cpu_to_be64(V_MSS_IDX(0xF));
Paul Bolle710a3112013-02-05 20:51:30 +00003275 req->cookie = (unsigned long)skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003276
3277 set_wr_txq(req_skb, CPL_PRIORITY_CONTROL, port_id);
3278 cxgb4_ofld_send(dev->rdev.lldi.ports[0], req_skb);
3279}
3280
3281/*
3282 * Handler for CPL_RX_PKT message. Need to handle cpl_rx_pkt
3283 * messages when a filter is being used instead of server to
3284 * redirect a syn packet. When packets hit filter they are redirected
3285 * to the offload queue and driver tries to establish the connection
3286 * using firmware work request.
3287 */
3288static int rx_pkt(struct c4iw_dev *dev, struct sk_buff *skb)
3289{
3290 int stid;
3291 unsigned int filter;
3292 struct ethhdr *eh = NULL;
3293 struct vlan_ethhdr *vlan_eh = NULL;
3294 struct iphdr *iph;
3295 struct tcphdr *tcph;
3296 struct rss_header *rss = (void *)skb->data;
3297 struct cpl_rx_pkt *cpl = (void *)skb->data;
3298 struct cpl_pass_accept_req *req = (void *)(rss + 1);
3299 struct l2t_entry *e;
3300 struct dst_entry *dst;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003301 struct c4iw_ep *lep;
3302 u16 window;
3303 struct port_info *pi;
3304 struct net_device *pdev;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003305 u16 rss_qid, eth_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003306 int step;
3307 u32 tx_chan;
3308 struct neighbour *neigh;
3309
3310 /* Drop all non-SYN packets */
3311 if (!(cpl->l2info & cpu_to_be32(F_RXF_SYN)))
3312 goto reject;
3313
3314 /*
3315 * Drop all packets which did not hit the filter.
3316 * Unlikely to happen.
3317 */
3318 if (!(rss->filter_hit && rss->filter_tid))
3319 goto reject;
3320
3321 /*
3322 * Calculate the server tid from filter hit index from cpl_rx_pkt.
3323 */
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003324 stid = (__force int) cpu_to_be32((__force u32) rss->hash_val)
3325 - dev->rdev.lldi.tids->sftid_base
Vipul Pandya1cab7752012-12-10 09:30:55 +00003326 + dev->rdev.lldi.tids->nstids;
3327
3328 lep = (struct c4iw_ep *)lookup_stid(dev->rdev.lldi.tids, stid);
3329 if (!lep) {
3330 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
3331 goto reject;
3332 }
3333
Vipul Pandyaf079af72013-03-14 05:08:58 +00003334 eth_hdr_len = is_t4(dev->rdev.lldi.adapter_type) ?
3335 G_RX_ETHHDR_LEN(htonl(cpl->l2info)) :
3336 G_RX_T5_ETHHDR_LEN(htonl(cpl->l2info));
3337 if (eth_hdr_len == ETH_HLEN) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003338 eh = (struct ethhdr *)(req + 1);
3339 iph = (struct iphdr *)(eh + 1);
3340 } else {
3341 vlan_eh = (struct vlan_ethhdr *)(req + 1);
3342 iph = (struct iphdr *)(vlan_eh + 1);
3343 skb->vlan_tci = ntohs(cpl->vlan);
3344 }
3345
3346 if (iph->version != 0x4)
3347 goto reject;
3348
3349 tcph = (struct tcphdr *)(iph + 1);
3350 skb_set_network_header(skb, (void *)iph - (void *)rss);
3351 skb_set_transport_header(skb, (void *)tcph - (void *)rss);
3352 skb_get(skb);
3353
3354 PDBG("%s lip 0x%x lport %u pip 0x%x pport %u tos %d\n", __func__,
3355 ntohl(iph->daddr), ntohs(tcph->dest), ntohl(iph->saddr),
3356 ntohs(tcph->source), iph->tos);
3357
Vipul Pandya830662f2013-07-04 16:10:47 +05303358 dst = find_route(dev, iph->daddr, iph->saddr, tcph->dest, tcph->source,
3359 iph->tos);
3360 if (!dst) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003361 pr_err("%s - failed to find dst entry!\n",
3362 __func__);
3363 goto reject;
3364 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003365 neigh = dst_neigh_lookup_skb(dst, skb);
3366
Zhouyi Zhouaaa0c232013-03-14 17:21:50 +00003367 if (!neigh) {
3368 pr_err("%s - failed to allocate neigh!\n",
3369 __func__);
3370 goto free_dst;
3371 }
3372
Vipul Pandya1cab7752012-12-10 09:30:55 +00003373 if (neigh->dev->flags & IFF_LOOPBACK) {
3374 pdev = ip_dev_find(&init_net, iph->daddr);
3375 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
3376 pdev, 0);
3377 pi = (struct port_info *)netdev_priv(pdev);
3378 tx_chan = cxgb4_port_chan(pdev);
3379 dev_put(pdev);
3380 } else {
Vipul Pandya830662f2013-07-04 16:10:47 +05303381 pdev = get_real_dev(neigh->dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003382 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
Vipul Pandya830662f2013-07-04 16:10:47 +05303383 pdev, 0);
3384 pi = (struct port_info *)netdev_priv(pdev);
3385 tx_chan = cxgb4_port_chan(pdev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003386 }
3387 if (!e) {
3388 pr_err("%s - failed to allocate l2t entry!\n",
3389 __func__);
3390 goto free_dst;
3391 }
3392
3393 step = dev->rdev.lldi.nrxq / dev->rdev.lldi.nchan;
3394 rss_qid = dev->rdev.lldi.rxq_ids[pi->port_id * step];
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003395 window = (__force u16) htons((__force u16)tcph->window);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003396
3397 /* Calcuate filter portion for LE region. */
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003398 filter = (__force unsigned int) cpu_to_be32(select_ntuple(dev, dst, e));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003399
3400 /*
3401 * Synthesize the cpl_pass_accept_req. We have everything except the
3402 * TID. Once firmware sends a reply with TID we update the TID field
3403 * in cpl and pass it through the regular cpl_pass_accept_req path.
3404 */
3405 build_cpl_pass_accept_req(skb, stid, iph->tos);
3406 send_fw_pass_open_req(dev, skb, iph->daddr, tcph->dest, iph->saddr,
3407 tcph->source, ntohl(tcph->seq), filter, window,
3408 rss_qid, pi->port_id);
3409 cxgb4_l2t_release(e);
3410free_dst:
3411 dst_release(dst);
3412reject:
Steve Wise2f5b48c2010-09-10 11:15:36 -05003413 return 0;
3414}
3415
Steve Wisecfdda9d2010-04-21 15:30:06 -07003416/*
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003417 * These are the real handlers that are called from a
3418 * work queue.
3419 */
3420static c4iw_handler_func work_handlers[NUM_CPL_CMDS] = {
3421 [CPL_ACT_ESTABLISH] = act_establish,
3422 [CPL_ACT_OPEN_RPL] = act_open_rpl,
3423 [CPL_RX_DATA] = rx_data,
3424 [CPL_ABORT_RPL_RSS] = abort_rpl,
3425 [CPL_ABORT_RPL] = abort_rpl,
3426 [CPL_PASS_OPEN_RPL] = pass_open_rpl,
3427 [CPL_CLOSE_LISTSRV_RPL] = close_listsrv_rpl,
3428 [CPL_PASS_ACCEPT_REQ] = pass_accept_req,
3429 [CPL_PASS_ESTABLISH] = pass_establish,
3430 [CPL_PEER_CLOSE] = peer_close,
3431 [CPL_ABORT_REQ_RSS] = peer_abort,
3432 [CPL_CLOSE_CON_RPL] = close_con_rpl,
3433 [CPL_RDMA_TERMINATE] = terminate,
Steve Wise2f5b48c2010-09-10 11:15:36 -05003434 [CPL_FW4_ACK] = fw4_ack,
Vipul Pandya1cab7752012-12-10 09:30:55 +00003435 [CPL_FW6_MSG] = deferred_fw6_msg,
3436 [CPL_RX_PKT] = rx_pkt
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003437};
3438
3439static void process_timeout(struct c4iw_ep *ep)
3440{
3441 struct c4iw_qp_attributes attrs;
3442 int abort = 1;
3443
Steve Wise2f5b48c2010-09-10 11:15:36 -05003444 mutex_lock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003445 PDBG("%s ep %p tid %u state %d\n", __func__, ep, ep->hwtid,
3446 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00003447 set_bit(TIMEDOUT, &ep->com.history);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003448 switch (ep->com.state) {
3449 case MPA_REQ_SENT:
3450 __state_set(&ep->com, ABORTING);
3451 connect_reply_upcall(ep, -ETIMEDOUT);
3452 break;
3453 case MPA_REQ_WAIT:
3454 __state_set(&ep->com, ABORTING);
3455 break;
3456 case CLOSING:
3457 case MORIBUND:
3458 if (ep->com.cm_id && ep->com.qp) {
3459 attrs.next_state = C4IW_QP_STATE_ERROR;
3460 c4iw_modify_qp(ep->com.qp->rhp,
3461 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
3462 &attrs, 1);
3463 }
3464 __state_set(&ep->com, ABORTING);
3465 break;
3466 default:
Julia Lawall76f267b2012-11-03 10:58:27 +00003467 WARN(1, "%s unexpected state ep %p tid %u state %u\n",
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003468 __func__, ep, ep->hwtid, ep->com.state);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003469 abort = 0;
3470 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05003471 mutex_unlock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003472 if (abort)
3473 abort_connection(ep, NULL, GFP_KERNEL);
3474 c4iw_put_ep(&ep->com);
3475}
3476
3477static void process_timedout_eps(void)
3478{
3479 struct c4iw_ep *ep;
3480
3481 spin_lock_irq(&timeout_lock);
3482 while (!list_empty(&timeout_list)) {
3483 struct list_head *tmp;
3484
3485 tmp = timeout_list.next;
3486 list_del(tmp);
3487 spin_unlock_irq(&timeout_lock);
3488 ep = list_entry(tmp, struct c4iw_ep, entry);
3489 process_timeout(ep);
3490 spin_lock_irq(&timeout_lock);
3491 }
3492 spin_unlock_irq(&timeout_lock);
3493}
3494
3495static void process_work(struct work_struct *work)
3496{
3497 struct sk_buff *skb = NULL;
3498 struct c4iw_dev *dev;
Dan Carpenterc1d73562010-05-31 14:00:53 +00003499 struct cpl_act_establish *rpl;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003500 unsigned int opcode;
3501 int ret;
3502
3503 while ((skb = skb_dequeue(&rxq))) {
3504 rpl = cplhdr(skb);
3505 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
3506 opcode = rpl->ot.opcode;
3507
3508 BUG_ON(!work_handlers[opcode]);
3509 ret = work_handlers[opcode](dev, skb);
3510 if (!ret)
3511 kfree_skb(skb);
3512 }
3513 process_timedout_eps();
3514}
3515
3516static DECLARE_WORK(skb_work, process_work);
3517
3518static void ep_timeout(unsigned long arg)
3519{
3520 struct c4iw_ep *ep = (struct c4iw_ep *)arg;
Vipul Pandya1ec779c2013-01-07 13:11:56 +00003521 int kickit = 0;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003522
3523 spin_lock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00003524 if (!test_and_set_bit(TIMEOUT, &ep->com.flags)) {
3525 list_add_tail(&ep->entry, &timeout_list);
3526 kickit = 1;
3527 }
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003528 spin_unlock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00003529 if (kickit)
3530 queue_work(workq, &skb_work);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003531}
3532
3533/*
Steve Wisecfdda9d2010-04-21 15:30:06 -07003534 * All the CM events are handled on a work queue to have a safe context.
3535 */
3536static int sched(struct c4iw_dev *dev, struct sk_buff *skb)
3537{
3538
3539 /*
3540 * Save dev in the skb->cb area.
3541 */
3542 *((struct c4iw_dev **) (skb->cb + sizeof(void *))) = dev;
3543
3544 /*
3545 * Queue the skb and schedule the worker thread.
3546 */
3547 skb_queue_tail(&rxq, skb);
3548 queue_work(workq, &skb_work);
3549 return 0;
3550}
3551
3552static int set_tcb_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
3553{
3554 struct cpl_set_tcb_rpl *rpl = cplhdr(skb);
3555
3556 if (rpl->status != CPL_ERR_NONE) {
3557 printk(KERN_ERR MOD "Unexpected SET_TCB_RPL status %u "
3558 "for tid %u\n", rpl->status, GET_TID(rpl));
3559 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05003560 kfree_skb(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003561 return 0;
3562}
3563
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003564static int fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
3565{
3566 struct cpl_fw6_msg *rpl = cplhdr(skb);
3567 struct c4iw_wr_wait *wr_waitp;
3568 int ret;
3569
3570 PDBG("%s type %u\n", __func__, rpl->type);
3571
3572 switch (rpl->type) {
Vipul Pandya5be78ee2012-12-10 09:30:54 +00003573 case FW6_TYPE_WR_RPL:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003574 ret = (int)((be64_to_cpu(rpl->data[0]) >> 8) & 0xff);
Roland Dreierc8e081a2010-09-27 17:51:04 -07003575 wr_waitp = (struct c4iw_wr_wait *)(__force unsigned long) rpl->data[1];
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003576 PDBG("%s wr_waitp %p ret %u\n", __func__, wr_waitp, ret);
Steve Wised9594d92011-05-09 22:06:22 -07003577 if (wr_waitp)
3578 c4iw_wake_up(wr_waitp, ret ? -ret : 0);
Steve Wise2f5b48c2010-09-10 11:15:36 -05003579 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003580 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00003581 case FW6_TYPE_CQE:
Vipul Pandya5be78ee2012-12-10 09:30:54 +00003582 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
Vipul Pandya1cab7752012-12-10 09:30:55 +00003583 sched(dev, skb);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00003584 break;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003585 default:
3586 printk(KERN_ERR MOD "%s unexpected fw6 msg type %u\n", __func__,
3587 rpl->type);
Steve Wise2f5b48c2010-09-10 11:15:36 -05003588 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003589 break;
3590 }
3591 return 0;
3592}
3593
Steve Wise8da7e7a2011-06-14 20:59:27 +00003594static int peer_abort_intr(struct c4iw_dev *dev, struct sk_buff *skb)
3595{
3596 struct cpl_abort_req_rss *req = cplhdr(skb);
3597 struct c4iw_ep *ep;
3598 struct tid_info *t = dev->rdev.lldi.tids;
3599 unsigned int tid = GET_TID(req);
3600
3601 ep = lookup_tid(t, tid);
Steve Wise14b92222012-04-30 15:31:29 -05003602 if (!ep) {
3603 printk(KERN_WARNING MOD
3604 "Abort on non-existent endpoint, tid %d\n", tid);
3605 kfree_skb(skb);
3606 return 0;
3607 }
Steve Wise8da7e7a2011-06-14 20:59:27 +00003608 if (is_neg_adv_abort(req->status)) {
3609 PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep,
3610 ep->hwtid);
3611 kfree_skb(skb);
3612 return 0;
3613 }
3614 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
3615 ep->com.state);
3616
3617 /*
3618 * Wake up any threads in rdma_init() or rdma_fini().
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00003619 * However, if we are on MPAv2 and want to retry with MPAv1
3620 * then, don't wake up yet.
Steve Wise8da7e7a2011-06-14 20:59:27 +00003621 */
Vipul Pandya7c0a33d2013-01-07 13:11:58 +00003622 if (mpa_rev == 2 && !ep->tried_with_mpa_v1) {
3623 if (ep->com.state != MPA_REQ_SENT)
3624 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
3625 } else
3626 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise8da7e7a2011-06-14 20:59:27 +00003627 sched(dev, skb);
3628 return 0;
3629}
3630
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003631/*
3632 * Most upcalls from the T4 Core go to sched() to
3633 * schedule the processing on a work queue.
3634 */
3635c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS] = {
3636 [CPL_ACT_ESTABLISH] = sched,
3637 [CPL_ACT_OPEN_RPL] = sched,
3638 [CPL_RX_DATA] = sched,
3639 [CPL_ABORT_RPL_RSS] = sched,
3640 [CPL_ABORT_RPL] = sched,
3641 [CPL_PASS_OPEN_RPL] = sched,
3642 [CPL_CLOSE_LISTSRV_RPL] = sched,
3643 [CPL_PASS_ACCEPT_REQ] = sched,
3644 [CPL_PASS_ESTABLISH] = sched,
3645 [CPL_PEER_CLOSE] = sched,
3646 [CPL_CLOSE_CON_RPL] = sched,
Steve Wise8da7e7a2011-06-14 20:59:27 +00003647 [CPL_ABORT_REQ_RSS] = peer_abort_intr,
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003648 [CPL_RDMA_TERMINATE] = sched,
3649 [CPL_FW4_ACK] = sched,
3650 [CPL_SET_TCB_RPL] = set_tcb_rpl,
Vipul Pandya1cab7752012-12-10 09:30:55 +00003651 [CPL_FW6_MSG] = fw6_msg,
3652 [CPL_RX_PKT] = sched
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003653};
3654
Steve Wisecfdda9d2010-04-21 15:30:06 -07003655int __init c4iw_cm_init(void)
3656{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003657 spin_lock_init(&timeout_lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003658 skb_queue_head_init(&rxq);
3659
3660 workq = create_singlethread_workqueue("iw_cxgb4");
3661 if (!workq)
3662 return -ENOMEM;
3663
Steve Wisecfdda9d2010-04-21 15:30:06 -07003664 return 0;
3665}
3666
3667void __exit c4iw_cm_term(void)
3668{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003669 WARN_ON(!list_empty(&timeout_list));
Steve Wisecfdda9d2010-04-21 15:30:06 -07003670 flush_workqueue(workq);
3671 destroy_workqueue(workq);
3672}