blob: 4f8afa2b8e214acc698ed7bfcbd4a41770ce630d [file] [log] [blame]
Steve Wisecfdda9d2010-04-21 15:30:06 -07001/*
Steve Wise9eccfe12014-03-26 17:08:09 -05002 * Copyright (c) 2009-2014 Chelsio, Inc. All rights reserved.
Steve Wisecfdda9d2010-04-21 15:30:06 -07003 *
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
Steve Wise11b8e222014-05-16 12:42:46 -050050#include <rdma/ib_addr.h>
51
Steve Wisecfdda9d2010-04-21 15:30:06 -070052#include "iw_cxgb4.h"
Hariprasad S84cc6ac62015-08-25 14:08:23 +053053#include "clip_tbl.h"
Steve Wisecfdda9d2010-04-21 15:30:06 -070054
55static char *states[] = {
56 "idle",
57 "listen",
58 "connecting",
59 "mpa_wait_req",
60 "mpa_req_sent",
61 "mpa_req_rcvd",
62 "mpa_rep_sent",
63 "fpdu_mode",
64 "aborting",
65 "closing",
66 "moribund",
67 "dead",
68 NULL,
69};
70
Vipul Pandya5be78ee2012-12-10 09:30:54 +000071static int nocong;
72module_param(nocong, int, 0644);
73MODULE_PARM_DESC(nocong, "Turn of congestion control (default=0)");
74
75static int enable_ecn;
76module_param(enable_ecn, int, 0644);
77MODULE_PARM_DESC(enable_ecn, "Enable ECN (default=0/disabled)");
78
Steve Wiseb52fe092011-03-11 22:30:01 +000079static int dack_mode = 1;
Steve Wiseba6d3922010-06-23 15:46:49 +000080module_param(dack_mode, int, 0644);
Steve Wiseb52fe092011-03-11 22:30:01 +000081MODULE_PARM_DESC(dack_mode, "Delayed ack mode (default=1)");
Steve Wiseba6d3922010-06-23 15:46:49 +000082
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +053083uint c4iw_max_read_depth = 32;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -070084module_param(c4iw_max_read_depth, int, 0644);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +053085MODULE_PARM_DESC(c4iw_max_read_depth,
86 "Per-connection max ORD/IRD (default=32)");
Roland Dreierbe4c9ba2010-05-05 14:45:40 -070087
Steve Wisecfdda9d2010-04-21 15:30:06 -070088static int enable_tcp_timestamps;
89module_param(enable_tcp_timestamps, int, 0644);
90MODULE_PARM_DESC(enable_tcp_timestamps, "Enable tcp timestamps (default=0)");
91
92static int enable_tcp_sack;
93module_param(enable_tcp_sack, int, 0644);
94MODULE_PARM_DESC(enable_tcp_sack, "Enable tcp SACK (default=0)");
95
96static int enable_tcp_window_scaling = 1;
97module_param(enable_tcp_window_scaling, int, 0644);
98MODULE_PARM_DESC(enable_tcp_window_scaling,
99 "Enable tcp window scaling (default=1)");
100
101int c4iw_debug;
102module_param(c4iw_debug, int, 0644);
103MODULE_PARM_DESC(c4iw_debug, "Enable debug logging (default=0)");
104
Steve Wisedf2d5132014-03-19 17:44:44 +0530105static int peer2peer = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700106module_param(peer2peer, int, 0644);
Steve Wisedf2d5132014-03-19 17:44:44 +0530107MODULE_PARM_DESC(peer2peer, "Support peer2peer ULPs (default=1)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700108
109static int p2p_type = FW_RI_INIT_P2PTYPE_READ_REQ;
110module_param(p2p_type, int, 0644);
111MODULE_PARM_DESC(p2p_type, "RDMAP opcode to use for the RTR message: "
112 "1=RDMA_READ 0=RDMA_WRITE (default 1)");
113
114static int ep_timeout_secs = 60;
115module_param(ep_timeout_secs, int, 0644);
116MODULE_PARM_DESC(ep_timeout_secs, "CM Endpoint operation timeout "
117 "in seconds (default=60)");
118
Hariprasad Sb8ac3112015-07-27 14:08:52 +0530119static int mpa_rev = 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700120module_param(mpa_rev, int, 0644);
121MODULE_PARM_DESC(mpa_rev, "MPA Revision, 0 supports amso1100, "
Hariprasad Sccd2c302016-05-06 22:17:55 +0530122 "1 is RFC5044 spec compliant, 2 is IETF MPA Peer Connect Draft"
Hariprasad Sb8ac3112015-07-27 14:08:52 +0530123 " compliant (default=2)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700124
125static int markers_enabled;
126module_param(markers_enabled, int, 0644);
127MODULE_PARM_DESC(markers_enabled, "Enable MPA MARKERS (default(0)=disabled)");
128
129static int crc_enabled = 1;
130module_param(crc_enabled, int, 0644);
131MODULE_PARM_DESC(crc_enabled, "Enable MPA CRC (default(1)=enabled)");
132
133static int rcv_win = 256 * 1024;
134module_param(rcv_win, int, 0644);
135MODULE_PARM_DESC(rcv_win, "TCP receive window in bytes (default=256KB)");
136
Steve Wise98ae68b2010-09-10 11:15:41 -0500137static int snd_win = 128 * 1024;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700138module_param(snd_win, int, 0644);
Steve Wise98ae68b2010-09-10 11:15:41 -0500139MODULE_PARM_DESC(snd_win, "TCP send window in bytes (default=128KB)");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700140
Steve Wisecfdda9d2010-04-21 15:30:06 -0700141static struct workqueue_struct *workq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700142
143static struct sk_buff_head rxq;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700144
145static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp);
146static void ep_timeout(unsigned long arg);
147static void connect_reply_upcall(struct c4iw_ep *ep, int status);
Hariprasad S9dec9002016-05-05 01:27:29 +0530148static int sched(struct c4iw_dev *dev, struct sk_buff *skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700149
Roland Dreierbe4c9ba2010-05-05 14:45:40 -0700150static LIST_HEAD(timeout_list);
151static spinlock_t timeout_lock;
152
Hariprasad S9ca6f7c2016-05-06 22:17:54 +0530153static void deref_cm_id(struct c4iw_ep_common *epc)
154{
155 epc->cm_id->rem_ref(epc->cm_id);
156 epc->cm_id = NULL;
157 set_bit(CM_ID_DEREFED, &epc->history);
158}
159
160static void ref_cm_id(struct c4iw_ep_common *epc)
161{
162 set_bit(CM_ID_REFED, &epc->history);
163 epc->cm_id->add_ref(epc->cm_id);
164}
165
Vipul Pandya325abea2013-01-07 13:11:53 +0000166static void deref_qp(struct c4iw_ep *ep)
167{
168 c4iw_qp_rem_ref(&ep->com.qp->ibqp);
169 clear_bit(QP_REFERENCED, &ep->com.flags);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +0530170 set_bit(QP_DEREFED, &ep->com.history);
Vipul Pandya325abea2013-01-07 13:11:53 +0000171}
172
173static void ref_qp(struct c4iw_ep *ep)
174{
175 set_bit(QP_REFERENCED, &ep->com.flags);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +0530176 set_bit(QP_REFED, &ep->com.history);
Vipul Pandya325abea2013-01-07 13:11:53 +0000177 c4iw_qp_add_ref(&ep->com.qp->ibqp);
178}
179
Steve Wisecfdda9d2010-04-21 15:30:06 -0700180static void start_ep_timer(struct c4iw_ep *ep)
181{
182 PDBG("%s ep %p\n", __func__, ep);
183 if (timer_pending(&ep->timer)) {
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000184 pr_err("%s timer already started! ep %p\n",
185 __func__, ep);
186 return;
187 }
188 clear_bit(TIMEOUT, &ep->com.flags);
189 c4iw_get_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700190 ep->timer.expires = jiffies + ep_timeout_secs * HZ;
191 ep->timer.data = (unsigned long)ep;
192 ep->timer.function = ep_timeout;
193 add_timer(&ep->timer);
194}
195
Steve Wiseb33bd0c2014-04-09 09:38:25 -0500196static int stop_ep_timer(struct c4iw_ep *ep)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700197{
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000198 PDBG("%s ep %p stopping\n", __func__, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700199 del_timer_sync(&ep->timer);
Steve Wiseb33bd0c2014-04-09 09:38:25 -0500200 if (!test_and_set_bit(TIMEOUT, &ep->com.flags)) {
Vipul Pandya1ec779c2013-01-07 13:11:56 +0000201 c4iw_put_ep(&ep->com);
Steve Wiseb33bd0c2014-04-09 09:38:25 -0500202 return 0;
203 }
204 return 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700205}
206
207static int c4iw_l2t_send(struct c4iw_rdev *rdev, struct sk_buff *skb,
208 struct l2t_entry *l2e)
209{
210 int error = 0;
211
212 if (c4iw_fatal_error(rdev)) {
213 kfree_skb(skb);
214 PDBG("%s - device in error state - dropping\n", __func__);
215 return -EIO;
216 }
217 error = cxgb4_l2t_send(rdev->lldi.ports[0], skb, l2e);
218 if (error < 0)
219 kfree_skb(skb);
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530220 else if (error == NET_XMIT_DROP)
221 return -ENOMEM;
Steve Wise74594862010-09-10 11:14:58 -0500222 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700223}
224
225int c4iw_ofld_send(struct c4iw_rdev *rdev, struct sk_buff *skb)
226{
227 int error = 0;
228
229 if (c4iw_fatal_error(rdev)) {
230 kfree_skb(skb);
231 PDBG("%s - device in error state - dropping\n", __func__);
232 return -EIO;
233 }
234 error = cxgb4_ofld_send(rdev->lldi.ports[0], skb);
235 if (error < 0)
236 kfree_skb(skb);
Steve Wise74594862010-09-10 11:14:58 -0500237 return error < 0 ? error : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700238}
239
240static void release_tid(struct c4iw_rdev *rdev, u32 hwtid, struct sk_buff *skb)
241{
242 struct cpl_tid_release *req;
243
244 skb = get_skb(skb, sizeof *req, GFP_KERNEL);
245 if (!skb)
246 return;
247 req = (struct cpl_tid_release *) skb_put(skb, sizeof(*req));
248 INIT_TP_WR(req, hwtid);
249 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_TID_RELEASE, hwtid));
250 set_wr_txq(skb, CPL_PRIORITY_SETUP, 0);
251 c4iw_ofld_send(rdev, skb);
252 return;
253}
254
255static void set_emss(struct c4iw_ep *ep, u16 opt)
256{
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800257 ep->emss = ep->com.dev->rdev.lldi.mtus[TCPOPT_MSS_G(opt)] -
Hariprasad S04524a42014-09-24 03:53:41 +0530258 ((AF_INET == ep->com.remote_addr.ss_family) ?
259 sizeof(struct iphdr) : sizeof(struct ipv6hdr)) -
260 sizeof(struct tcphdr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700261 ep->mss = ep->emss;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800262 if (TCPOPT_TSTAMP_G(opt))
Hariprasad S04524a42014-09-24 03:53:41 +0530263 ep->emss -= round_up(TCPOLEN_TIMESTAMP, 4);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700264 if (ep->emss < 128)
265 ep->emss = 128;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530266 if (ep->emss & 7)
267 PDBG("Warning: misaligned mtu idx %u mss %u emss=%u\n",
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800268 TCPOPT_MSS_G(opt), ep->mss, ep->emss);
269 PDBG("%s mss_idx %u mss %u emss=%u\n", __func__, TCPOPT_MSS_G(opt),
Steve Wisecfdda9d2010-04-21 15:30:06 -0700270 ep->mss, ep->emss);
271}
272
273static enum c4iw_ep_state state_read(struct c4iw_ep_common *epc)
274{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700275 enum c4iw_ep_state state;
276
Steve Wise2f5b48c2010-09-10 11:15:36 -0500277 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700278 state = epc->state;
Steve Wise2f5b48c2010-09-10 11:15:36 -0500279 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700280 return state;
281}
282
283static void __state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
284{
285 epc->state = new;
286}
287
288static void state_set(struct c4iw_ep_common *epc, enum c4iw_ep_state new)
289{
Steve Wise2f5b48c2010-09-10 11:15:36 -0500290 mutex_lock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700291 PDBG("%s - %s -> %s\n", __func__, states[epc->state], states[new]);
292 __state_set(epc, new);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500293 mutex_unlock(&epc->mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700294 return;
295}
296
297static void *alloc_ep(int size, gfp_t gfp)
298{
299 struct c4iw_ep_common *epc;
300
301 epc = kzalloc(size, gfp);
302 if (epc) {
303 kref_init(&epc->kref);
Steve Wise2f5b48c2010-09-10 11:15:36 -0500304 mutex_init(&epc->mutex);
Steve Wiseaadc4df2010-09-10 11:15:25 -0500305 c4iw_init_wr_wait(&epc->wr_wait);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700306 }
307 PDBG("%s alloc ep %p\n", __func__, epc);
308 return epc;
309}
310
Hariprasad S944661d2016-05-06 22:18:03 +0530311static void remove_ep_tid(struct c4iw_ep *ep)
312{
313 unsigned long flags;
314
315 spin_lock_irqsave(&ep->com.dev->lock, flags);
316 _remove_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep->hwtid, 0);
317 spin_unlock_irqrestore(&ep->com.dev->lock, flags);
318}
319
320static void insert_ep_tid(struct c4iw_ep *ep)
321{
322 unsigned long flags;
323
324 spin_lock_irqsave(&ep->com.dev->lock, flags);
325 _insert_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep, ep->hwtid, 0);
326 spin_unlock_irqrestore(&ep->com.dev->lock, flags);
327}
328
329/*
330 * Atomically lookup the ep ptr given the tid and grab a reference on the ep.
331 */
332static struct c4iw_ep *get_ep_from_tid(struct c4iw_dev *dev, unsigned int tid)
333{
334 struct c4iw_ep *ep;
335 unsigned long flags;
336
337 spin_lock_irqsave(&dev->lock, flags);
338 ep = idr_find(&dev->hwtid_idr, tid);
339 if (ep)
340 c4iw_get_ep(&ep->com);
341 spin_unlock_irqrestore(&dev->lock, flags);
342 return ep;
343}
344
Hariprasad Sf86fac72016-05-06 22:18:07 +0530345/*
346 * Atomically lookup the ep ptr given the stid and grab a reference on the ep.
347 */
348static struct c4iw_listen_ep *get_ep_from_stid(struct c4iw_dev *dev,
349 unsigned int stid)
350{
351 struct c4iw_listen_ep *ep;
352 unsigned long flags;
353
354 spin_lock_irqsave(&dev->lock, flags);
355 ep = idr_find(&dev->stid_idr, stid);
356 if (ep)
357 c4iw_get_ep(&ep->com);
358 spin_unlock_irqrestore(&dev->lock, flags);
359 return ep;
360}
361
Steve Wisecfdda9d2010-04-21 15:30:06 -0700362void _c4iw_free_ep(struct kref *kref)
363{
364 struct c4iw_ep *ep;
365
366 ep = container_of(kref, struct c4iw_ep, com.kref);
Hariprasad S9dec9002016-05-05 01:27:29 +0530367 PDBG("%s ep %p state %s\n", __func__, ep, states[ep->com.state]);
Vipul Pandya325abea2013-01-07 13:11:53 +0000368 if (test_bit(QP_REFERENCED, &ep->com.flags))
369 deref_qp(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700370 if (test_bit(RELEASE_RESOURCES, &ep->com.flags)) {
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530371 if (ep->com.remote_addr.ss_family == AF_INET6) {
372 struct sockaddr_in6 *sin6 =
373 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600374 &ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530375
376 cxgb4_clip_release(
377 ep->com.dev->rdev.lldi.ports[0],
378 (const u32 *)&sin6->sin6_addr.s6_addr,
379 1);
380 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700381 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
382 dst_release(ep->dst);
383 cxgb4_l2t_release(ep->l2t);
Hariprasad Sc878b702016-05-06 22:18:04 +0530384 if (ep->mpa_skb)
385 kfree_skb(ep->mpa_skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700386 }
387 kfree(ep);
388}
389
390static void release_ep_resources(struct c4iw_ep *ep)
391{
392 set_bit(RELEASE_RESOURCES, &ep->com.flags);
Hariprasad S944661d2016-05-06 22:18:03 +0530393
394 /*
395 * If we have a hwtid, then remove it from the idr table
396 * so lookups will no longer find this endpoint. Otherwise
397 * we have a race where one thread finds the ep ptr just
398 * before the other thread is freeing the ep memory.
399 */
400 if (ep->hwtid != -1)
401 remove_ep_tid(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700402 c4iw_put_ep(&ep->com);
403}
404
Steve Wisecfdda9d2010-04-21 15:30:06 -0700405static int status2errno(int status)
406{
407 switch (status) {
408 case CPL_ERR_NONE:
409 return 0;
410 case CPL_ERR_CONN_RESET:
411 return -ECONNRESET;
412 case CPL_ERR_ARP_MISS:
413 return -EHOSTUNREACH;
414 case CPL_ERR_CONN_TIMEDOUT:
415 return -ETIMEDOUT;
416 case CPL_ERR_TCAM_FULL:
417 return -ENOMEM;
418 case CPL_ERR_CONN_EXIST:
419 return -EADDRINUSE;
420 default:
421 return -EIO;
422 }
423}
424
425/*
426 * Try and reuse skbs already allocated...
427 */
428static struct sk_buff *get_skb(struct sk_buff *skb, int len, gfp_t gfp)
429{
430 if (skb && !skb_is_nonlinear(skb) && !skb_cloned(skb)) {
431 skb_trim(skb, 0);
432 skb_get(skb);
433 skb_reset_transport_header(skb);
434 } else {
435 skb = alloc_skb(len, gfp);
436 }
Steve Wiseb38a0ad2013-08-06 21:04:37 +0530437 t4_set_arp_err_handler(skb, NULL, NULL);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700438 return skb;
439}
440
Vipul Pandya830662f2013-07-04 16:10:47 +0530441static struct net_device *get_real_dev(struct net_device *egress_dev)
442{
Steve Wise11b8e222014-05-16 12:42:46 -0500443 return rdma_vlan_dev_real_dev(egress_dev) ? : egress_dev;
Vipul Pandya830662f2013-07-04 16:10:47 +0530444}
445
446static int our_interface(struct c4iw_dev *dev, struct net_device *egress_dev)
447{
448 int i;
449
450 egress_dev = get_real_dev(egress_dev);
451 for (i = 0; i < dev->rdev.lldi.nports; i++)
452 if (dev->rdev.lldi.ports[i] == egress_dev)
453 return 1;
454 return 0;
455}
456
457static struct dst_entry *find_route6(struct c4iw_dev *dev, __u8 *local_ip,
458 __u8 *peer_ip, __be16 local_port,
459 __be16 peer_port, u8 tos,
460 __u32 sin6_scope_id)
461{
462 struct dst_entry *dst = NULL;
463
464 if (IS_ENABLED(CONFIG_IPV6)) {
465 struct flowi6 fl6;
466
467 memset(&fl6, 0, sizeof(fl6));
468 memcpy(&fl6.daddr, peer_ip, 16);
469 memcpy(&fl6.saddr, local_ip, 16);
470 if (ipv6_addr_type(&fl6.daddr) & IPV6_ADDR_LINKLOCAL)
471 fl6.flowi6_oif = sin6_scope_id;
472 dst = ip6_route_output(&init_net, NULL, &fl6);
473 if (!dst)
474 goto out;
475 if (!our_interface(dev, ip6_dst_idev(dst)->dev) &&
476 !(ip6_dst_idev(dst)->dev->flags & IFF_LOOPBACK)) {
477 dst_release(dst);
478 dst = NULL;
479 }
480 }
481
482out:
483 return dst;
484}
485
486static struct dst_entry *find_route(struct c4iw_dev *dev, __be32 local_ip,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700487 __be32 peer_ip, __be16 local_port,
488 __be16 peer_port, u8 tos)
489{
490 struct rtable *rt;
David S. Miller31e4543d2011-05-03 20:25:42 -0700491 struct flowi4 fl4;
Vipul Pandya830662f2013-07-04 16:10:47 +0530492 struct neighbour *n;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700493
David S. Miller31e4543d2011-05-03 20:25:42 -0700494 rt = ip_route_output_ports(&init_net, &fl4, NULL, peer_ip, local_ip,
David S. Miller78fbfd82011-03-12 00:00:52 -0500495 peer_port, local_port, IPPROTO_TCP,
496 tos, 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800497 if (IS_ERR(rt))
Steve Wisecfdda9d2010-04-21 15:30:06 -0700498 return NULL;
Vipul Pandya830662f2013-07-04 16:10:47 +0530499 n = dst_neigh_lookup(&rt->dst, &peer_ip);
500 if (!n)
501 return NULL;
Steve Wisef8e81902014-03-19 17:44:39 +0530502 if (!our_interface(dev, n->dev) &&
503 !(n->dev->flags & IFF_LOOPBACK)) {
Hariprasad Sd4802012014-09-24 03:53:42 +0530504 neigh_release(n);
Vipul Pandya830662f2013-07-04 16:10:47 +0530505 dst_release(&rt->dst);
506 return NULL;
507 }
508 neigh_release(n);
509 return &rt->dst;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700510}
511
512static void arp_failure_discard(void *handle, struct sk_buff *skb)
513{
Hariprasad S9dec9002016-05-05 01:27:29 +0530514 pr_err(MOD "ARP failure\n");
Steve Wisecfdda9d2010-04-21 15:30:06 -0700515 kfree_skb(skb);
516}
517
Hariprasad S9dec9002016-05-05 01:27:29 +0530518enum {
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530519 NUM_FAKE_CPLS = 2,
Hariprasad S9dec9002016-05-05 01:27:29 +0530520 FAKE_CPL_PUT_EP_SAFE = NUM_CPL_CMDS + 0,
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530521 FAKE_CPL_PASS_PUT_EP_SAFE = NUM_CPL_CMDS + 1,
Hariprasad S9dec9002016-05-05 01:27:29 +0530522};
523
524static int _put_ep_safe(struct c4iw_dev *dev, struct sk_buff *skb)
525{
526 struct c4iw_ep *ep;
527
528 ep = *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *)));
529 release_ep_resources(ep);
530 return 0;
531}
532
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530533static int _put_pass_ep_safe(struct c4iw_dev *dev, struct sk_buff *skb)
534{
535 struct c4iw_ep *ep;
536
537 ep = *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *)));
538 c4iw_put_ep(&ep->parent_ep->com);
539 release_ep_resources(ep);
540 return 0;
541}
542
Hariprasad S9dec9002016-05-05 01:27:29 +0530543/*
544 * Fake up a special CPL opcode and call sched() so process_work() will call
545 * _put_ep_safe() in a safe context to free the ep resources. This is needed
546 * because ARP error handlers are called in an ATOMIC context, and
547 * _c4iw_free_ep() needs to block.
548 */
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530549static void queue_arp_failure_cpl(struct c4iw_ep *ep, struct sk_buff *skb,
550 int cpl)
Hariprasad S9dec9002016-05-05 01:27:29 +0530551{
552 struct cpl_act_establish *rpl = cplhdr(skb);
553
554 /* Set our special ARP_FAILURE opcode */
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530555 rpl->ot.opcode = cpl;
Hariprasad S9dec9002016-05-05 01:27:29 +0530556
557 /*
558 * Save ep in the skb->cb area, after where sched() will save the dev
559 * ptr.
560 */
561 *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *))) = ep;
562 sched(ep->com.dev, skb);
563}
564
565/* Handle an ARP failure for an accept */
566static void pass_accept_rpl_arp_failure(void *handle, struct sk_buff *skb)
567{
568 struct c4iw_ep *ep = handle;
569
570 pr_err(MOD "ARP failure during accept - tid %u -dropping connection\n",
571 ep->hwtid);
572
573 __state_set(&ep->com, DEAD);
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530574 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PASS_PUT_EP_SAFE);
Hariprasad S9dec9002016-05-05 01:27:29 +0530575}
576
Steve Wisecfdda9d2010-04-21 15:30:06 -0700577/*
578 * Handle an ARP failure for an active open.
579 */
580static void act_open_req_arp_failure(void *handle, struct sk_buff *skb)
581{
Hariprasad S5dab6d32014-06-23 19:12:36 +0530582 struct c4iw_ep *ep = handle;
583
Masanari Iidae3d132d2015-10-16 21:14:29 +0900584 printk(KERN_ERR MOD "ARP failure during connect\n");
Hariprasad S5dab6d32014-06-23 19:12:36 +0530585 connect_reply_upcall(ep, -EHOSTUNREACH);
Hariprasad S9dec9002016-05-05 01:27:29 +0530586 __state_set(&ep->com, DEAD);
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530587 if (ep->com.remote_addr.ss_family == AF_INET6) {
588 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -0600589 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530590 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
591 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
592 }
Hariprasad S5dab6d32014-06-23 19:12:36 +0530593 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
594 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530595 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PUT_EP_SAFE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700596}
597
598/*
599 * Handle an ARP failure for a CPL_ABORT_REQ. Change it into a no RST variant
600 * and send it along.
601 */
602static void abort_arp_failure(void *handle, struct sk_buff *skb)
603{
Hariprasad S761e19a2016-05-06 22:18:02 +0530604 int ret;
605 struct c4iw_ep *ep = handle;
606 struct c4iw_rdev *rdev = &ep->com.dev->rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700607 struct cpl_abort_req *req = cplhdr(skb);
608
609 PDBG("%s rdev %p\n", __func__, rdev);
610 req->cmd = CPL_ABORT_NO_RST;
Hariprasad S761e19a2016-05-06 22:18:02 +0530611 ret = c4iw_ofld_send(rdev, skb);
612 if (ret) {
613 __state_set(&ep->com, DEAD);
614 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PUT_EP_SAFE);
615 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700616}
617
Hariprasad Sfef44222016-05-05 01:27:33 +0530618static int send_flowc(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700619{
620 unsigned int flowclen = 80;
621 struct fw_flowc_wr *flowc;
622 int i;
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530623 u16 vlan = ep->l2t->vlan;
624 int nparams;
625
626 if (vlan == CPL_L2T_VLAN_NONE)
627 nparams = 8;
628 else
629 nparams = 9;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700630
631 skb = get_skb(skb, flowclen, GFP_KERNEL);
632 flowc = (struct fw_flowc_wr *)__skb_put(skb, flowclen);
633
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530634 flowc->op_to_nparams = cpu_to_be32(FW_WR_OP_V(FW_FLOWC_WR) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530635 FW_FLOWC_WR_NPARAMS_V(nparams));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530636 flowc->flowid_len16 = cpu_to_be32(FW_WR_LEN16_V(DIV_ROUND_UP(flowclen,
637 16)) | FW_WR_FLOWID_V(ep->hwtid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700638
639 flowc->mnemval[0].mnemonic = FW_FLOWC_MNEM_PFNVFN;
Hariprasad Shenai51678652014-11-21 12:52:02 +0530640 flowc->mnemval[0].val = cpu_to_be32(FW_PFVF_CMD_PFN_V
Hariprasad Shenai35b1de52014-06-27 19:23:47 +0530641 (ep->com.dev->rdev.lldi.pf));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700642 flowc->mnemval[1].mnemonic = FW_FLOWC_MNEM_CH;
643 flowc->mnemval[1].val = cpu_to_be32(ep->tx_chan);
644 flowc->mnemval[2].mnemonic = FW_FLOWC_MNEM_PORT;
645 flowc->mnemval[2].val = cpu_to_be32(ep->tx_chan);
646 flowc->mnemval[3].mnemonic = FW_FLOWC_MNEM_IQID;
647 flowc->mnemval[3].val = cpu_to_be32(ep->rss_qid);
648 flowc->mnemval[4].mnemonic = FW_FLOWC_MNEM_SNDNXT;
649 flowc->mnemval[4].val = cpu_to_be32(ep->snd_seq);
650 flowc->mnemval[5].mnemonic = FW_FLOWC_MNEM_RCVNXT;
651 flowc->mnemval[5].val = cpu_to_be32(ep->rcv_seq);
652 flowc->mnemval[6].mnemonic = FW_FLOWC_MNEM_SNDBUF;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530653 flowc->mnemval[6].val = cpu_to_be32(ep->snd_win);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700654 flowc->mnemval[7].mnemonic = FW_FLOWC_MNEM_MSS;
655 flowc->mnemval[7].val = cpu_to_be32(ep->emss);
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530656 if (nparams == 9) {
657 u16 pri;
658
659 pri = (vlan & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
660 flowc->mnemval[8].mnemonic = FW_FLOWC_MNEM_SCHEDCLASS;
661 flowc->mnemval[8].val = cpu_to_be32(pri);
662 } else {
663 /* Pad WR to 16 byte boundary */
664 flowc->mnemval[8].mnemonic = 0;
665 flowc->mnemval[8].val = 0;
666 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700667 for (i = 0; i < 9; i++) {
668 flowc->mnemval[i].r4[0] = 0;
669 flowc->mnemval[i].r4[1] = 0;
670 flowc->mnemval[i].r4[2] = 0;
671 }
672
673 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Hariprasad Sfef44222016-05-05 01:27:33 +0530674 return c4iw_ofld_send(&ep->com.dev->rdev, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700675}
676
677static int send_halfclose(struct c4iw_ep *ep, gfp_t gfp)
678{
679 struct cpl_close_con_req *req;
680 struct sk_buff *skb;
681 int wrlen = roundup(sizeof *req, 16);
682
683 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
684 skb = get_skb(NULL, wrlen, gfp);
685 if (!skb) {
686 printk(KERN_ERR MOD "%s - failed to alloc skb\n", __func__);
687 return -ENOMEM;
688 }
689 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
690 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
691 req = (struct cpl_close_con_req *) skb_put(skb, wrlen);
692 memset(req, 0, wrlen);
693 INIT_TP_WR(req, ep->hwtid);
694 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_CON_REQ,
695 ep->hwtid));
696 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
697}
698
699static int send_abort(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
700{
701 struct cpl_abort_req *req;
702 int wrlen = roundup(sizeof *req, 16);
703
704 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
705 skb = get_skb(skb, wrlen, gfp);
706 if (!skb) {
707 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
708 __func__);
709 return -ENOMEM;
710 }
711 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Hariprasad S761e19a2016-05-06 22:18:02 +0530712 t4_set_arp_err_handler(skb, ep, abort_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700713 req = (struct cpl_abort_req *) skb_put(skb, wrlen);
714 memset(req, 0, wrlen);
715 INIT_TP_WR(req, ep->hwtid);
716 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_REQ, ep->hwtid));
717 req->cmd = CPL_ABORT_SEND_RST;
718 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
719}
720
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530721static void best_mtu(const unsigned short *mtus, unsigned short mtu,
Hariprasad S04524a42014-09-24 03:53:41 +0530722 unsigned int *idx, int use_ts, int ipv6)
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530723{
Hariprasad S04524a42014-09-24 03:53:41 +0530724 unsigned short hdr_size = (ipv6 ?
725 sizeof(struct ipv6hdr) :
726 sizeof(struct iphdr)) +
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530727 sizeof(struct tcphdr) +
Hariprasad S04524a42014-09-24 03:53:41 +0530728 (use_ts ?
729 round_up(TCPOLEN_TIMESTAMP, 4) : 0);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530730 unsigned short data_size = mtu - hdr_size;
731
732 cxgb4_best_aligned_mtu(mtus, hdr_size, data_size, 8, idx);
733}
734
Steve Wisecfdda9d2010-04-21 15:30:06 -0700735static int send_connect(struct c4iw_ep *ep)
736{
Hariprasad S963cab52015-09-23 17:19:27 +0530737 struct cpl_act_open_req *req = NULL;
738 struct cpl_t5_act_open_req *t5req = NULL;
739 struct cpl_t6_act_open_req *t6req = NULL;
740 struct cpl_act_open_req6 *req6 = NULL;
741 struct cpl_t5_act_open_req6 *t5req6 = NULL;
742 struct cpl_t6_act_open_req6 *t6req6 = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700743 struct sk_buff *skb;
744 u64 opt0;
745 u32 opt2;
746 unsigned int mtu_idx;
747 int wscale;
Hariprasad S963cab52015-09-23 17:19:27 +0530748 int win, sizev4, sizev6, wrlen;
Steve Wise9eccfe12014-03-26 17:08:09 -0500749 struct sockaddr_in *la = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600750 &ep->com.local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500751 struct sockaddr_in *ra = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600752 &ep->com.remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500753 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600754 &ep->com.local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500755 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600756 &ep->com.remote_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530757 int ret;
Hariprasad S963cab52015-09-23 17:19:27 +0530758 enum chip_type adapter_type = ep->com.dev->rdev.lldi.adapter_type;
759 u32 isn = (prandom_u32() & ~7UL) - 1;
760
761 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
762 case CHELSIO_T4:
763 sizev4 = sizeof(struct cpl_act_open_req);
764 sizev6 = sizeof(struct cpl_act_open_req6);
765 break;
766 case CHELSIO_T5:
767 sizev4 = sizeof(struct cpl_t5_act_open_req);
768 sizev6 = sizeof(struct cpl_t5_act_open_req6);
769 break;
770 case CHELSIO_T6:
771 sizev4 = sizeof(struct cpl_t6_act_open_req);
772 sizev6 = sizeof(struct cpl_t6_act_open_req6);
773 break;
774 default:
775 pr_err("T%d Chip is not supported\n",
776 CHELSIO_CHIP_VERSION(adapter_type));
777 return -EINVAL;
778 }
Vipul Pandya830662f2013-07-04 16:10:47 +0530779
780 wrlen = (ep->com.remote_addr.ss_family == AF_INET) ?
781 roundup(sizev4, 16) :
782 roundup(sizev6, 16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700783
784 PDBG("%s ep %p atid %u\n", __func__, ep, ep->atid);
785
786 skb = get_skb(NULL, wrlen, GFP_KERNEL);
787 if (!skb) {
788 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
789 __func__);
790 return -ENOMEM;
791 }
Steve Wised4f1a5c2010-07-23 19:12:32 +0000792 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700793
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530794 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +0530795 enable_tcp_timestamps,
796 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700797 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530798
799 /*
800 * Specify the largest window that will fit in opt0. The
801 * remainder will be specified in the rx_data_ack.
802 */
803 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -0800804 if (win > RCV_BUFSIZ_M)
805 win = RCV_BUFSIZ_M;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530806
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800807 opt0 = (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800808 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800809 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -0800810 WND_SCALE_V(wscale) |
811 MSS_IDX_V(mtu_idx) |
812 L2T_IDX_V(ep->l2t->idx) |
813 TX_CHAN_V(ep->tx_chan) |
814 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530815 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800816 ULP_MODE_V(ULP_MODE_TCPDDP) |
817 RCV_BUFSIZ_V(win);
818 opt2 = RX_CHANNEL_V(0) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800819 CCTRL_ECN_V(enable_ecn) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800820 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700821 if (enable_tcp_timestamps)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800822 opt2 |= TSTAMPS_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700823 if (enable_tcp_sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800824 opt2 |= SACK_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700825 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -0800826 opt2 |= WND_SCALE_EN_F;
Hariprasad S963cab52015-09-23 17:19:27 +0530827 if (CHELSIO_CHIP_VERSION(adapter_type) > CHELSIO_T4) {
828 if (peer2peer)
829 isn += 4;
830
Anish Bhattd7990b02014-11-12 17:15:57 -0800831 opt2 |= T5_OPT_2_VALID_F;
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530832 opt2 |= CONG_CNTRL_V(CONG_ALG_TAHOE);
Hariprasad S0b741042015-04-22 01:44:58 +0530833 opt2 |= T5_ISS_F;
Steve Wise92e50112014-04-24 14:31:59 -0500834 }
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530835
836 if (ep->com.remote_addr.ss_family == AF_INET6)
837 cxgb4_clip_get(ep->com.dev->rdev.lldi.ports[0],
838 (const u32 *)&la6->sin6_addr.s6_addr, 1);
839
Hariprasad S5dab6d32014-06-23 19:12:36 +0530840 t4_set_arp_err_handler(skb, ep, act_open_req_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700841
Hariprasad S963cab52015-09-23 17:19:27 +0530842 if (ep->com.remote_addr.ss_family == AF_INET) {
843 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
844 case CHELSIO_T4:
845 req = (struct cpl_act_open_req *)skb_put(skb, wrlen);
Vipul Pandya830662f2013-07-04 16:10:47 +0530846 INIT_TP_WR(req, 0);
Hariprasad S963cab52015-09-23 17:19:27 +0530847 break;
848 case CHELSIO_T5:
849 t5req = (struct cpl_t5_act_open_req *)skb_put(skb,
850 wrlen);
851 INIT_TP_WR(t5req, 0);
852 req = (struct cpl_act_open_req *)t5req;
853 break;
854 case CHELSIO_T6:
855 t6req = (struct cpl_t6_act_open_req *)skb_put(skb,
856 wrlen);
857 INIT_TP_WR(t6req, 0);
858 req = (struct cpl_act_open_req *)t6req;
859 t5req = (struct cpl_t5_act_open_req *)t6req;
860 break;
861 default:
862 pr_err("T%d Chip is not supported\n",
863 CHELSIO_CHIP_VERSION(adapter_type));
864 ret = -EINVAL;
865 goto clip_release;
866 }
867
868 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ACT_OPEN_REQ,
869 ((ep->rss_qid<<14) | ep->atid)));
870 req->local_port = la->sin_port;
871 req->peer_port = ra->sin_port;
872 req->local_ip = la->sin_addr.s_addr;
873 req->peer_ip = ra->sin_addr.s_addr;
874 req->opt0 = cpu_to_be64(opt0);
875
876 if (is_t4(ep->com.dev->rdev.lldi.adapter_type)) {
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530877 req->params = cpu_to_be32(cxgb4_select_ntuple(
878 ep->com.dev->rdev.lldi.ports[0],
879 ep->l2t));
Vipul Pandya830662f2013-07-04 16:10:47 +0530880 req->opt2 = cpu_to_be32(opt2);
881 } else {
Hariprasad S963cab52015-09-23 17:19:27 +0530882 t5req->params = cpu_to_be64(FILTER_TUPLE_V(
883 cxgb4_select_ntuple(
884 ep->com.dev->rdev.lldi.ports[0],
885 ep->l2t)));
886 t5req->rsvd = cpu_to_be32(isn);
887 PDBG("%s snd_isn %u\n", __func__, t5req->rsvd);
888 t5req->opt2 = cpu_to_be32(opt2);
889 }
890 } else {
891 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
892 case CHELSIO_T4:
Vipul Pandya830662f2013-07-04 16:10:47 +0530893 req6 = (struct cpl_act_open_req6 *)skb_put(skb, wrlen);
Vipul Pandya830662f2013-07-04 16:10:47 +0530894 INIT_TP_WR(req6, 0);
Hariprasad S963cab52015-09-23 17:19:27 +0530895 break;
896 case CHELSIO_T5:
897 t5req6 = (struct cpl_t5_act_open_req6 *)skb_put(skb,
898 wrlen);
899 INIT_TP_WR(t5req6, 0);
900 req6 = (struct cpl_act_open_req6 *)t5req6;
901 break;
902 case CHELSIO_T6:
903 t6req6 = (struct cpl_t6_act_open_req6 *)skb_put(skb,
904 wrlen);
905 INIT_TP_WR(t6req6, 0);
906 req6 = (struct cpl_act_open_req6 *)t6req6;
907 t5req6 = (struct cpl_t5_act_open_req6 *)t6req6;
908 break;
909 default:
910 pr_err("T%d Chip is not supported\n",
911 CHELSIO_CHIP_VERSION(adapter_type));
912 ret = -EINVAL;
913 goto clip_release;
914 }
915
916 OPCODE_TID(req6) = cpu_to_be32(MK_OPCODE_TID(CPL_ACT_OPEN_REQ6,
917 ((ep->rss_qid<<14)|ep->atid)));
918 req6->local_port = la6->sin6_port;
919 req6->peer_port = ra6->sin6_port;
920 req6->local_ip_hi = *((__be64 *)(la6->sin6_addr.s6_addr));
921 req6->local_ip_lo = *((__be64 *)(la6->sin6_addr.s6_addr + 8));
922 req6->peer_ip_hi = *((__be64 *)(ra6->sin6_addr.s6_addr));
923 req6->peer_ip_lo = *((__be64 *)(ra6->sin6_addr.s6_addr + 8));
924 req6->opt0 = cpu_to_be64(opt0);
925
926 if (is_t4(ep->com.dev->rdev.lldi.adapter_type)) {
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530927 req6->params = cpu_to_be32(cxgb4_select_ntuple(
928 ep->com.dev->rdev.lldi.ports[0],
929 ep->l2t));
Vipul Pandya830662f2013-07-04 16:10:47 +0530930 req6->opt2 = cpu_to_be32(opt2);
Vipul Pandya830662f2013-07-04 16:10:47 +0530931 } else {
Hariprasad S963cab52015-09-23 17:19:27 +0530932 t5req6->params = cpu_to_be64(FILTER_TUPLE_V(
933 cxgb4_select_ntuple(
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530934 ep->com.dev->rdev.lldi.ports[0],
Hariprasad Sda22b8962014-09-24 03:53:43 +0530935 ep->l2t)));
Hariprasad S963cab52015-09-23 17:19:27 +0530936 t5req6->rsvd = cpu_to_be32(isn);
937 PDBG("%s snd_isn %u\n", __func__, t5req6->rsvd);
938 t5req6->opt2 = cpu_to_be32(opt2);
Vipul Pandya830662f2013-07-04 16:10:47 +0530939 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000940 }
941
Vipul Pandya793dad92012-12-10 09:30:56 +0000942 set_bit(ACT_OPEN_REQ, &ep->com.history);
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530943 ret = c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Hariprasad S963cab52015-09-23 17:19:27 +0530944clip_release:
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530945 if (ret && ep->com.remote_addr.ss_family == AF_INET6)
946 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
947 (const u32 *)&la6->sin6_addr.s6_addr, 1);
948 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700949}
950
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530951static int send_mpa_req(struct c4iw_ep *ep, struct sk_buff *skb,
952 u8 mpa_rev_to_use)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700953{
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530954 int mpalen, wrlen, ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700955 struct fw_ofld_tx_data_wr *req;
956 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530957 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700958
959 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
960
961 BUG_ON(skb_cloned(skb));
962
963 mpalen = sizeof(*mpa) + ep->plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530964 if (mpa_rev_to_use == 2)
965 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700966 wrlen = roundup(mpalen + sizeof *req, 16);
967 skb = get_skb(skb, wrlen, GFP_KERNEL);
968 if (!skb) {
969 connect_reply_upcall(ep, -ENOMEM);
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530970 return -ENOMEM;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700971 }
972 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
973
974 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
975 memset(req, 0, wrlen);
976 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530977 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
978 FW_WR_COMPL_F |
979 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700980 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530981 FW_WR_FLOWID_V(ep->hwtid) |
982 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700983 req->plen = cpu_to_be32(mpalen);
984 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530985 FW_OFLD_TX_DATA_WR_FLUSH_F |
986 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700987
988 mpa = (struct mpa_message *)(req + 1);
989 memcpy(mpa->key, MPA_KEY_REQ, sizeof(mpa->key));
990 mpa->flags = (crc_enabled ? MPA_CRC : 0) |
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530991 (markers_enabled ? MPA_MARKERS : 0) |
992 (mpa_rev_to_use == 2 ? MPA_ENHANCED_RDMA_CONN : 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700993 mpa->private_data_size = htons(ep->plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530994 mpa->revision = mpa_rev_to_use;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530995 if (mpa_rev_to_use == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530996 ep->tried_with_mpa_v1 = 1;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +0530997 ep->retry_with_mpa_v1 = 0;
998 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700999
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301000 if (mpa_rev_to_use == 2) {
Roland Dreierf747c342012-07-05 14:16:54 -07001001 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1002 sizeof (struct mpa_v2_conn_params));
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301003 PDBG("%s initiator ird %u ord %u\n", __func__, ep->ird,
1004 ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301005 mpa_v2_params.ird = htons((u16)ep->ird);
1006 mpa_v2_params.ord = htons((u16)ep->ord);
1007
1008 if (peer2peer) {
1009 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
1010 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
1011 mpa_v2_params.ord |=
1012 htons(MPA_V2_RDMA_WRITE_RTR);
1013 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
1014 mpa_v2_params.ord |=
1015 htons(MPA_V2_RDMA_READ_RTR);
1016 }
1017 memcpy(mpa->private_data, &mpa_v2_params,
1018 sizeof(struct mpa_v2_conn_params));
1019
1020 if (ep->plen)
1021 memcpy(mpa->private_data +
1022 sizeof(struct mpa_v2_conn_params),
1023 ep->mpa_pkt + sizeof(*mpa), ep->plen);
1024 } else
1025 if (ep->plen)
1026 memcpy(mpa->private_data,
1027 ep->mpa_pkt + sizeof(*mpa), ep->plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001028
1029 /*
1030 * Reference the mpa skb. This ensures the data area
1031 * will remain in memory until the hw acks the tx.
1032 * Function fw4_ack() will deref it.
1033 */
1034 skb_get(skb);
1035 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
1036 BUG_ON(ep->mpa_skb);
1037 ep->mpa_skb = skb;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301038 ret = c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1039 if (ret)
1040 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001041 start_ep_timer(ep);
Steve Wisea7db89e2014-03-21 20:40:35 +05301042 __state_set(&ep->com, MPA_REQ_SENT);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001043 ep->mpa_attr.initiator = 1;
Steve Wise9c88aa02014-03-21 20:40:34 +05301044 ep->snd_seq += mpalen;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301045 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001046}
1047
1048static int send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen)
1049{
1050 int mpalen, wrlen;
1051 struct fw_ofld_tx_data_wr *req;
1052 struct mpa_message *mpa;
1053 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301054 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001055
1056 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
1057
1058 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301059 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
1060 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001061 wrlen = roundup(mpalen + sizeof *req, 16);
1062
1063 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1064 if (!skb) {
1065 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
1066 return -ENOMEM;
1067 }
1068 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
1069
1070 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
1071 memset(req, 0, wrlen);
1072 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301073 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
1074 FW_WR_COMPL_F |
1075 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001076 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301077 FW_WR_FLOWID_V(ep->hwtid) |
1078 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001079 req->plen = cpu_to_be32(mpalen);
1080 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301081 FW_OFLD_TX_DATA_WR_FLUSH_F |
1082 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001083
1084 mpa = (struct mpa_message *)(req + 1);
1085 memset(mpa, 0, sizeof(*mpa));
1086 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
1087 mpa->flags = MPA_REJECT;
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00001088 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001089 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301090
1091 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
1092 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -07001093 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1094 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301095 mpa_v2_params.ird = htons(((u16)ep->ird) |
1096 (peer2peer ? MPA_V2_PEER2PEER_MODEL :
1097 0));
1098 mpa_v2_params.ord = htons(((u16)ep->ord) | (peer2peer ?
1099 (p2p_type ==
1100 FW_RI_INIT_P2PTYPE_RDMA_WRITE ?
1101 MPA_V2_RDMA_WRITE_RTR : p2p_type ==
1102 FW_RI_INIT_P2PTYPE_READ_REQ ?
1103 MPA_V2_RDMA_READ_RTR : 0) : 0));
1104 memcpy(mpa->private_data, &mpa_v2_params,
1105 sizeof(struct mpa_v2_conn_params));
1106
1107 if (ep->plen)
1108 memcpy(mpa->private_data +
1109 sizeof(struct mpa_v2_conn_params), pdata, plen);
1110 } else
1111 if (plen)
1112 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001113
1114 /*
1115 * Reference the mpa skb again. This ensures the data area
1116 * will remain in memory until the hw acks the tx.
1117 * Function fw4_ack() will deref it.
1118 */
1119 skb_get(skb);
1120 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001121 BUG_ON(ep->mpa_skb);
1122 ep->mpa_skb = skb;
Steve Wise9c88aa02014-03-21 20:40:34 +05301123 ep->snd_seq += mpalen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001124 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1125}
1126
1127static int send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen)
1128{
1129 int mpalen, wrlen;
1130 struct fw_ofld_tx_data_wr *req;
1131 struct mpa_message *mpa;
1132 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301133 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001134
1135 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
1136
1137 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301138 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
1139 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001140 wrlen = roundup(mpalen + sizeof *req, 16);
1141
1142 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1143 if (!skb) {
1144 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
1145 return -ENOMEM;
1146 }
1147 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
1148
1149 req = (struct fw_ofld_tx_data_wr *) skb_put(skb, wrlen);
1150 memset(req, 0, wrlen);
1151 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301152 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
1153 FW_WR_COMPL_F |
1154 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001155 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301156 FW_WR_FLOWID_V(ep->hwtid) |
1157 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001158 req->plen = cpu_to_be32(mpalen);
1159 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301160 FW_OFLD_TX_DATA_WR_FLUSH_F |
1161 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001162
1163 mpa = (struct mpa_message *)(req + 1);
1164 memset(mpa, 0, sizeof(*mpa));
1165 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
1166 mpa->flags = (ep->mpa_attr.crc_enabled ? MPA_CRC : 0) |
1167 (markers_enabled ? MPA_MARKERS : 0);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301168 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001169 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301170
1171 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
1172 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -07001173 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1174 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301175 mpa_v2_params.ird = htons((u16)ep->ird);
1176 mpa_v2_params.ord = htons((u16)ep->ord);
1177 if (peer2peer && (ep->mpa_attr.p2p_type !=
1178 FW_RI_INIT_P2PTYPE_DISABLED)) {
1179 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
1180
1181 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
1182 mpa_v2_params.ord |=
1183 htons(MPA_V2_RDMA_WRITE_RTR);
1184 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
1185 mpa_v2_params.ord |=
1186 htons(MPA_V2_RDMA_READ_RTR);
1187 }
1188
1189 memcpy(mpa->private_data, &mpa_v2_params,
1190 sizeof(struct mpa_v2_conn_params));
1191
1192 if (ep->plen)
1193 memcpy(mpa->private_data +
1194 sizeof(struct mpa_v2_conn_params), pdata, plen);
1195 } else
1196 if (plen)
1197 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001198
1199 /*
1200 * Reference the mpa skb. This ensures the data area
1201 * will remain in memory until the hw acks the tx.
1202 * Function fw4_ack() will deref it.
1203 */
1204 skb_get(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001205 ep->mpa_skb = skb;
Steve Wisea7db89e2014-03-21 20:40:35 +05301206 __state_set(&ep->com, MPA_REP_SENT);
Steve Wise9c88aa02014-03-21 20:40:34 +05301207 ep->snd_seq += mpalen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001208 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1209}
1210
1211static int act_establish(struct c4iw_dev *dev, struct sk_buff *skb)
1212{
1213 struct c4iw_ep *ep;
1214 struct cpl_act_establish *req = cplhdr(skb);
1215 unsigned int tid = GET_TID(req);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001216 unsigned int atid = TID_TID_G(ntohl(req->tos_atid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001217 struct tid_info *t = dev->rdev.lldi.tids;
Hariprasad Sfef44222016-05-05 01:27:33 +05301218 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001219
1220 ep = lookup_atid(t, atid);
1221
1222 PDBG("%s ep %p tid %u snd_isn %u rcv_isn %u\n", __func__, ep, tid,
1223 be32_to_cpu(req->snd_isn), be32_to_cpu(req->rcv_isn));
1224
Steve Wisea7db89e2014-03-21 20:40:35 +05301225 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001226 dst_confirm(ep->dst);
1227
1228 /* setup the hwtid for this connection */
1229 ep->hwtid = tid;
1230 cxgb4_insert_tid(t, ep, tid);
Hariprasad S944661d2016-05-06 22:18:03 +05301231 insert_ep_tid(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001232
1233 ep->snd_seq = be32_to_cpu(req->snd_isn);
1234 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
1235
1236 set_emss(ep, ntohs(req->tcp_opt));
1237
1238 /* dealloc the atid */
Vipul Pandya793dad92012-12-10 09:30:56 +00001239 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001240 cxgb4_free_atid(t, atid);
Vipul Pandya793dad92012-12-10 09:30:56 +00001241 set_bit(ACT_ESTAB, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001242
1243 /* start MPA negotiation */
Hariprasad Sfef44222016-05-05 01:27:33 +05301244 ret = send_flowc(ep, NULL);
1245 if (ret)
1246 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301247 if (ep->retry_with_mpa_v1)
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301248 ret = send_mpa_req(ep, skb, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301249 else
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301250 ret = send_mpa_req(ep, skb, mpa_rev);
1251 if (ret)
1252 goto err;
Steve Wisea7db89e2014-03-21 20:40:35 +05301253 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001254 return 0;
Hariprasad Sfef44222016-05-05 01:27:33 +05301255err:
1256 mutex_unlock(&ep->com.mutex);
1257 connect_reply_upcall(ep, -ENOMEM);
1258 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
1259 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001260}
1261
Steve Wisebe13b2d2014-03-21 20:40:33 +05301262static void close_complete_upcall(struct c4iw_ep *ep, int status)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001263{
1264 struct iw_cm_event event;
1265
1266 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1267 memset(&event, 0, sizeof(event));
1268 event.event = IW_CM_EVENT_CLOSE;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301269 event.status = status;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001270 if (ep->com.cm_id) {
1271 PDBG("close complete delivered ep %p cm_id %p tid %u\n",
1272 ep, ep->com.cm_id, ep->hwtid);
1273 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301274 deref_cm_id(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001275 set_bit(CLOSE_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001276 }
1277}
1278
Steve Wisecfdda9d2010-04-21 15:30:06 -07001279static void peer_close_upcall(struct c4iw_ep *ep)
1280{
1281 struct iw_cm_event event;
1282
1283 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1284 memset(&event, 0, sizeof(event));
1285 event.event = IW_CM_EVENT_DISCONNECT;
1286 if (ep->com.cm_id) {
1287 PDBG("peer close delivered ep %p cm_id %p tid %u\n",
1288 ep, ep->com.cm_id, ep->hwtid);
1289 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001290 set_bit(DISCONN_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001291 }
1292}
1293
1294static void peer_abort_upcall(struct c4iw_ep *ep)
1295{
1296 struct iw_cm_event event;
1297
1298 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1299 memset(&event, 0, sizeof(event));
1300 event.event = IW_CM_EVENT_CLOSE;
1301 event.status = -ECONNRESET;
1302 if (ep->com.cm_id) {
1303 PDBG("abort delivered ep %p cm_id %p tid %u\n", ep,
1304 ep->com.cm_id, ep->hwtid);
1305 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301306 deref_cm_id(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001307 set_bit(ABORT_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001308 }
1309}
1310
1311static void connect_reply_upcall(struct c4iw_ep *ep, int status)
1312{
1313 struct iw_cm_event event;
1314
1315 PDBG("%s ep %p tid %u status %d\n", __func__, ep, ep->hwtid, status);
1316 memset(&event, 0, sizeof(event));
1317 event.event = IW_CM_EVENT_CONNECT_REPLY;
1318 event.status = status;
Steve Wise24d44a32013-07-04 16:10:44 +05301319 memcpy(&event.local_addr, &ep->com.local_addr,
1320 sizeof(ep->com.local_addr));
1321 memcpy(&event.remote_addr, &ep->com.remote_addr,
1322 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001323
1324 if ((status == 0) || (status == -ECONNREFUSED)) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301325 if (!ep->tried_with_mpa_v1) {
1326 /* this means MPA_v2 is used */
Hariprasad S158c7762015-09-08 09:56:58 +05301327 event.ord = ep->ird;
1328 event.ird = ep->ord;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301329 event.private_data_len = ep->plen -
1330 sizeof(struct mpa_v2_conn_params);
1331 event.private_data = ep->mpa_pkt +
1332 sizeof(struct mpa_message) +
1333 sizeof(struct mpa_v2_conn_params);
1334 } else {
1335 /* this means MPA_v1 is used */
Hariprasad S158c7762015-09-08 09:56:58 +05301336 event.ord = cur_max_read_depth(ep->com.dev);
1337 event.ird = cur_max_read_depth(ep->com.dev);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301338 event.private_data_len = ep->plen;
1339 event.private_data = ep->mpa_pkt +
1340 sizeof(struct mpa_message);
1341 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001342 }
Roland Dreier85963e42010-07-19 13:13:09 -07001343
1344 PDBG("%s ep %p tid %u status %d\n", __func__, ep,
1345 ep->hwtid, status);
Vipul Pandya793dad92012-12-10 09:30:56 +00001346 set_bit(CONN_RPL_UPCALL, &ep->com.history);
Roland Dreier85963e42010-07-19 13:13:09 -07001347 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
1348
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301349 if (status < 0)
1350 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001351}
1352
Steve Wisebe13b2d2014-03-21 20:40:33 +05301353static int connect_request_upcall(struct c4iw_ep *ep)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001354{
1355 struct iw_cm_event event;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301356 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001357
1358 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1359 memset(&event, 0, sizeof(event));
1360 event.event = IW_CM_EVENT_CONNECT_REQUEST;
Steve Wise24d44a32013-07-04 16:10:44 +05301361 memcpy(&event.local_addr, &ep->com.local_addr,
1362 sizeof(ep->com.local_addr));
1363 memcpy(&event.remote_addr, &ep->com.remote_addr,
1364 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001365 event.provider_data = ep;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301366 if (!ep->tried_with_mpa_v1) {
1367 /* this means MPA_v2 is used */
1368 event.ord = ep->ord;
1369 event.ird = ep->ird;
1370 event.private_data_len = ep->plen -
1371 sizeof(struct mpa_v2_conn_params);
1372 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message) +
1373 sizeof(struct mpa_v2_conn_params);
1374 } else {
1375 /* this means MPA_v1 is used. Send max supported */
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301376 event.ord = cur_max_read_depth(ep->com.dev);
1377 event.ird = cur_max_read_depth(ep->com.dev);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301378 event.private_data_len = ep->plen;
1379 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message);
1380 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05301381 c4iw_get_ep(&ep->com);
1382 ret = ep->parent_ep->com.cm_id->event_handler(ep->parent_ep->com.cm_id,
1383 &event);
1384 if (ret)
1385 c4iw_put_ep(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001386 set_bit(CONNREQ_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001387 c4iw_put_ep(&ep->parent_ep->com);
Steve Wisebe13b2d2014-03-21 20:40:33 +05301388 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001389}
1390
1391static void established_upcall(struct c4iw_ep *ep)
1392{
1393 struct iw_cm_event event;
1394
1395 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1396 memset(&event, 0, sizeof(event));
1397 event.event = IW_CM_EVENT_ESTABLISHED;
Hariprasad S3dd9a5d2015-09-08 09:57:00 +05301398 event.ird = ep->ord;
1399 event.ord = ep->ird;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001400 if (ep->com.cm_id) {
1401 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1402 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001403 set_bit(ESTAB_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001404 }
1405}
1406
1407static int update_rx_credits(struct c4iw_ep *ep, u32 credits)
1408{
1409 struct cpl_rx_data_ack *req;
1410 struct sk_buff *skb;
1411 int wrlen = roundup(sizeof *req, 16);
1412
1413 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
1414 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1415 if (!skb) {
1416 printk(KERN_ERR MOD "update_rx_credits - cannot alloc skb!\n");
1417 return 0;
1418 }
1419
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301420 /*
1421 * If we couldn't specify the entire rcv window at connection setup
1422 * due to the limit in the number of bits in the RCV_BUFSIZ field,
1423 * then add the overage in to the credits returned.
1424 */
Anish Bhattd7990b02014-11-12 17:15:57 -08001425 if (ep->rcv_win > RCV_BUFSIZ_M * 1024)
1426 credits += ep->rcv_win - RCV_BUFSIZ_M * 1024;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301427
Steve Wisecfdda9d2010-04-21 15:30:06 -07001428 req = (struct cpl_rx_data_ack *) skb_put(skb, wrlen);
1429 memset(req, 0, wrlen);
1430 INIT_TP_WR(req, ep->hwtid);
1431 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_RX_DATA_ACK,
1432 ep->hwtid));
Anish Bhattd7990b02014-11-12 17:15:57 -08001433 req->credit_dack = cpu_to_be32(credits | RX_FORCE_ACK_F |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05301434 RX_DACK_CHANGE_F |
1435 RX_DACK_MODE_V(dack_mode));
Steve Wised4f1a5c2010-07-23 19:12:32 +00001436 set_wr_txq(skb, CPL_PRIORITY_ACK, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001437 c4iw_ofld_send(&ep->com.dev->rdev, skb);
1438 return credits;
1439}
1440
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301441#define RELAXED_IRD_NEGOTIATION 1
1442
Hariprasad Sf8e1e1d2016-05-05 01:27:32 +05301443/*
1444 * process_mpa_reply - process streaming mode MPA reply
1445 *
1446 * Returns:
1447 *
1448 * 0 upon success indicating a connect request was delivered to the ULP
1449 * or the mpa request is incomplete but valid so far.
1450 *
1451 * 1 if a failure requires the caller to close the connection.
1452 *
1453 * 2 if a failure requires the caller to abort the connection.
1454 */
Steve Wisecc18b932014-04-24 14:31:53 -05001455static int process_mpa_reply(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001456{
1457 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301458 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001459 u16 plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301460 u16 resp_ird, resp_ord;
1461 u8 rtr_mismatch = 0, insuff_ird = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001462 struct c4iw_qp_attributes attrs;
1463 enum c4iw_qp_attr_mask mask;
1464 int err;
Steve Wisecc18b932014-04-24 14:31:53 -05001465 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001466
1467 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1468
1469 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -07001470 * If we get more than the supported amount of private data
1471 * then we must fail this connection.
1472 */
1473 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
1474 err = -EINVAL;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301475 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001476 }
1477
1478 /*
1479 * copy the new data into our accumulation buffer.
1480 */
1481 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1482 skb->len);
1483 ep->mpa_pkt_len += skb->len;
1484
1485 /*
1486 * if we don't even have the mpa message, then bail.
1487 */
1488 if (ep->mpa_pkt_len < sizeof(*mpa))
Steve Wisecc18b932014-04-24 14:31:53 -05001489 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001490 mpa = (struct mpa_message *) ep->mpa_pkt;
1491
1492 /* Validate MPA header. */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301493 if (mpa->revision > mpa_rev) {
1494 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1495 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001496 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301497 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001498 }
1499 if (memcmp(mpa->key, MPA_KEY_REP, sizeof(mpa->key))) {
1500 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301501 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001502 }
1503
1504 plen = ntohs(mpa->private_data_size);
1505
1506 /*
1507 * Fail if there's too much private data.
1508 */
1509 if (plen > MPA_MAX_PRIVATE_DATA) {
1510 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301511 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001512 }
1513
1514 /*
1515 * If plen does not account for pkt size
1516 */
1517 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
1518 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301519 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001520 }
1521
1522 ep->plen = (u8) plen;
1523
1524 /*
1525 * If we don't have all the pdata yet, then bail.
1526 * We'll continue process when more data arrives.
1527 */
1528 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
Steve Wisecc18b932014-04-24 14:31:53 -05001529 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001530
1531 if (mpa->flags & MPA_REJECT) {
1532 err = -ECONNREFUSED;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301533 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001534 }
1535
1536 /*
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301537 * Stop mpa timer. If it expired, then
1538 * we ignore the MPA reply. process_timeout()
1539 * will abort the connection.
1540 */
1541 if (stop_ep_timer(ep))
1542 return 0;
1543
1544 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -07001545 * If we get here we have accumulated the entire mpa
1546 * start reply message including private data. And
1547 * the MPA header is valid.
1548 */
Steve Wisec529fb52014-03-21 20:40:37 +05301549 __state_set(&ep->com, FPDU_MODE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001550 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1551 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1552 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301553 ep->mpa_attr.version = mpa->revision;
1554 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1555
1556 if (mpa->revision == 2) {
1557 ep->mpa_attr.enhanced_rdma_conn =
1558 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1559 if (ep->mpa_attr.enhanced_rdma_conn) {
1560 mpa_v2_params = (struct mpa_v2_conn_params *)
1561 (ep->mpa_pkt + sizeof(*mpa));
1562 resp_ird = ntohs(mpa_v2_params->ird) &
1563 MPA_V2_IRD_ORD_MASK;
1564 resp_ord = ntohs(mpa_v2_params->ord) &
1565 MPA_V2_IRD_ORD_MASK;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301566 PDBG("%s responder ird %u ord %u ep ird %u ord %u\n",
1567 __func__, resp_ird, resp_ord, ep->ird, ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301568
1569 /*
1570 * This is a double-check. Ideally, below checks are
1571 * not required since ird/ord stuff has been taken
1572 * care of in c4iw_accept_cr
1573 */
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301574 if (ep->ird < resp_ord) {
1575 if (RELAXED_IRD_NEGOTIATION && resp_ord <=
1576 ep->com.dev->rdev.lldi.max_ordird_qp)
1577 ep->ird = resp_ord;
1578 else
1579 insuff_ird = 1;
1580 } else if (ep->ird > resp_ord) {
1581 ep->ird = resp_ord;
1582 }
1583 if (ep->ord > resp_ird) {
1584 if (RELAXED_IRD_NEGOTIATION)
1585 ep->ord = resp_ird;
1586 else
1587 insuff_ird = 1;
1588 }
1589 if (insuff_ird) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301590 err = -ENOMEM;
1591 ep->ird = resp_ord;
1592 ep->ord = resp_ird;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301593 }
1594
1595 if (ntohs(mpa_v2_params->ird) &
1596 MPA_V2_PEER2PEER_MODEL) {
1597 if (ntohs(mpa_v2_params->ord) &
1598 MPA_V2_RDMA_WRITE_RTR)
1599 ep->mpa_attr.p2p_type =
1600 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1601 else if (ntohs(mpa_v2_params->ord) &
1602 MPA_V2_RDMA_READ_RTR)
1603 ep->mpa_attr.p2p_type =
1604 FW_RI_INIT_P2PTYPE_READ_REQ;
1605 }
1606 }
1607 } else if (mpa->revision == 1)
1608 if (peer2peer)
1609 ep->mpa_attr.p2p_type = p2p_type;
1610
Steve Wisecfdda9d2010-04-21 15:30:06 -07001611 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301612 "xmit_marker_enabled=%d, version=%d p2p_type=%d local-p2p_type = "
1613 "%d\n", __func__, ep->mpa_attr.crc_enabled,
1614 ep->mpa_attr.recv_marker_enabled,
1615 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1616 ep->mpa_attr.p2p_type, p2p_type);
1617
1618 /*
1619 * If responder's RTR does not match with that of initiator, assign
1620 * FW_RI_INIT_P2PTYPE_DISABLED in mpa attributes so that RTR is not
1621 * generated when moving QP to RTS state.
1622 * A TERM message will be sent after QP has moved to RTS state
1623 */
Kumar Sanghvi91018f82012-02-25 17:45:02 -08001624 if ((ep->mpa_attr.version == 2) && peer2peer &&
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301625 (ep->mpa_attr.p2p_type != p2p_type)) {
1626 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1627 rtr_mismatch = 1;
1628 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001629
1630 attrs.mpa_attr = ep->mpa_attr;
1631 attrs.max_ird = ep->ird;
1632 attrs.max_ord = ep->ord;
1633 attrs.llp_stream_handle = ep;
1634 attrs.next_state = C4IW_QP_STATE_RTS;
1635
1636 mask = C4IW_QP_ATTR_NEXT_STATE |
1637 C4IW_QP_ATTR_LLP_STREAM_HANDLE | C4IW_QP_ATTR_MPA_ATTR |
1638 C4IW_QP_ATTR_MAX_IRD | C4IW_QP_ATTR_MAX_ORD;
1639
1640 /* bind QP and TID with INIT_WR */
1641 err = c4iw_modify_qp(ep->com.qp->rhp,
1642 ep->com.qp, mask, &attrs, 1);
1643 if (err)
1644 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301645
1646 /*
1647 * If responder's RTR requirement did not match with what initiator
1648 * supports, generate TERM message
1649 */
1650 if (rtr_mismatch) {
1651 printk(KERN_ERR "%s: RTR mismatch, sending TERM\n", __func__);
1652 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1653 attrs.ecode = MPA_NOMATCH_RTR;
1654 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Steve Wisecc18b932014-04-24 14:31:53 -05001655 attrs.send_term = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301656 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001657 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301658 err = -ENOMEM;
Steve Wisecc18b932014-04-24 14:31:53 -05001659 disconnect = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301660 goto out;
1661 }
1662
1663 /*
1664 * Generate TERM if initiator IRD is not sufficient for responder
1665 * provided ORD. Currently, we do the same behaviour even when
1666 * responder provided IRD is also not sufficient as regards to
1667 * initiator ORD.
1668 */
1669 if (insuff_ird) {
1670 printk(KERN_ERR "%s: Insufficient IRD, sending TERM\n",
1671 __func__);
1672 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1673 attrs.ecode = MPA_INSUFF_IRD;
1674 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Steve Wisecc18b932014-04-24 14:31:53 -05001675 attrs.send_term = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301676 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001677 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301678 err = -ENOMEM;
Steve Wisecc18b932014-04-24 14:31:53 -05001679 disconnect = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301680 goto out;
1681 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001682 goto out;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301683err_stop_timer:
1684 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001685err:
Hariprasad Sf8e1e1d2016-05-05 01:27:32 +05301686 disconnect = 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001687out:
1688 connect_reply_upcall(ep, err);
Steve Wisecc18b932014-04-24 14:31:53 -05001689 return disconnect;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001690}
1691
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301692/*
1693 * process_mpa_request - process streaming mode MPA request
1694 *
1695 * Returns:
1696 *
1697 * 0 upon success indicating a connect request was delivered to the ULP
1698 * or the mpa request is incomplete but valid so far.
1699 *
1700 * 1 if a failure requires the caller to close the connection.
1701 *
1702 * 2 if a failure requires the caller to abort the connection.
1703 */
1704static int process_mpa_request(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001705{
1706 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301707 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001708 u16 plen;
1709
1710 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1711
Steve Wisecfdda9d2010-04-21 15:30:06 -07001712 /*
1713 * If we get more than the supported amount of private data
1714 * then we must fail this connection.
1715 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301716 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt))
1717 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001718
1719 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1720
1721 /*
1722 * Copy the new data into our accumulation buffer.
1723 */
1724 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1725 skb->len);
1726 ep->mpa_pkt_len += skb->len;
1727
1728 /*
1729 * If we don't even have the mpa message, then bail.
1730 * We'll continue process when more data arrives.
1731 */
1732 if (ep->mpa_pkt_len < sizeof(*mpa))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301733 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001734
1735 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001736 mpa = (struct mpa_message *) ep->mpa_pkt;
1737
1738 /*
1739 * Validate MPA Header.
1740 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301741 if (mpa->revision > mpa_rev) {
1742 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1743 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301744 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001745 }
1746
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301747 if (memcmp(mpa->key, MPA_KEY_REQ, sizeof(mpa->key)))
1748 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001749
1750 plen = ntohs(mpa->private_data_size);
1751
1752 /*
1753 * Fail if there's too much private data.
1754 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301755 if (plen > MPA_MAX_PRIVATE_DATA)
1756 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001757
1758 /*
1759 * If plen does not account for pkt size
1760 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301761 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen))
1762 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001763 ep->plen = (u8) plen;
1764
1765 /*
1766 * If we don't have all the pdata yet, then bail.
1767 */
1768 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301769 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001770
1771 /*
1772 * If we get here we have accumulated the entire mpa
1773 * start reply message including private data.
1774 */
1775 ep->mpa_attr.initiator = 0;
1776 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1777 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1778 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301779 ep->mpa_attr.version = mpa->revision;
1780 if (mpa->revision == 1)
1781 ep->tried_with_mpa_v1 = 1;
1782 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1783
1784 if (mpa->revision == 2) {
1785 ep->mpa_attr.enhanced_rdma_conn =
1786 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1787 if (ep->mpa_attr.enhanced_rdma_conn) {
1788 mpa_v2_params = (struct mpa_v2_conn_params *)
1789 (ep->mpa_pkt + sizeof(*mpa));
1790 ep->ird = ntohs(mpa_v2_params->ird) &
1791 MPA_V2_IRD_ORD_MASK;
1792 ep->ord = ntohs(mpa_v2_params->ord) &
1793 MPA_V2_IRD_ORD_MASK;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301794 PDBG("%s initiator ird %u ord %u\n", __func__, ep->ird,
1795 ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301796 if (ntohs(mpa_v2_params->ird) & MPA_V2_PEER2PEER_MODEL)
1797 if (peer2peer) {
1798 if (ntohs(mpa_v2_params->ord) &
1799 MPA_V2_RDMA_WRITE_RTR)
1800 ep->mpa_attr.p2p_type =
1801 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1802 else if (ntohs(mpa_v2_params->ord) &
1803 MPA_V2_RDMA_READ_RTR)
1804 ep->mpa_attr.p2p_type =
1805 FW_RI_INIT_P2PTYPE_READ_REQ;
1806 }
1807 }
1808 } else if (mpa->revision == 1)
1809 if (peer2peer)
1810 ep->mpa_attr.p2p_type = p2p_type;
1811
Steve Wisecfdda9d2010-04-21 15:30:06 -07001812 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
1813 "xmit_marker_enabled=%d, version=%d p2p_type=%d\n", __func__,
1814 ep->mpa_attr.crc_enabled, ep->mpa_attr.recv_marker_enabled,
1815 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1816 ep->mpa_attr.p2p_type);
1817
Hariprasad Se4b76a22016-05-06 22:17:59 +05301818 __state_set(&ep->com, MPA_REQ_RCVD);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001819
Hariprasad Se4b76a22016-05-06 22:17:59 +05301820 /* drive upcall */
1821 mutex_lock_nested(&ep->parent_ep->com.mutex, SINGLE_DEPTH_NESTING);
1822 if (ep->parent_ep->com.state != DEAD) {
1823 if (connect_request_upcall(ep))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301824 goto err_unlock_parent;
Hariprasad Se4b76a22016-05-06 22:17:59 +05301825 } else {
1826 goto err_unlock_parent;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301827 }
Hariprasad Se4b76a22016-05-06 22:17:59 +05301828 mutex_unlock(&ep->parent_ep->com.mutex);
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301829 return 0;
1830
1831err_unlock_parent:
1832 mutex_unlock(&ep->parent_ep->com.mutex);
1833 goto err_out;
1834err_stop_timer:
1835 (void)stop_ep_timer(ep);
1836err_out:
1837 return 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001838}
1839
1840static int rx_data(struct c4iw_dev *dev, struct sk_buff *skb)
1841{
1842 struct c4iw_ep *ep;
1843 struct cpl_rx_data *hdr = cplhdr(skb);
1844 unsigned int dlen = ntohs(hdr->len);
1845 unsigned int tid = GET_TID(hdr);
Vipul Pandya793dad92012-12-10 09:30:56 +00001846 __u8 status = hdr->status;
Steve Wisecc18b932014-04-24 14:31:53 -05001847 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001848
Hariprasad S944661d2016-05-06 22:18:03 +05301849 ep = get_ep_from_tid(dev, tid);
Steve Wise977116c2014-03-21 20:40:36 +05301850 if (!ep)
1851 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001852 PDBG("%s ep %p tid %u dlen %u\n", __func__, ep, ep->hwtid, dlen);
1853 skb_pull(skb, sizeof(*hdr));
1854 skb_trim(skb, dlen);
Steve Wisec529fb52014-03-21 20:40:37 +05301855 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001856
Steve Wisecfdda9d2010-04-21 15:30:06 -07001857 /* update RX credits */
1858 update_rx_credits(ep, dlen);
1859
Steve Wisec529fb52014-03-21 20:40:37 +05301860 switch (ep->com.state) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001861 case MPA_REQ_SENT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001862 ep->rcv_seq += dlen;
Steve Wisecc18b932014-04-24 14:31:53 -05001863 disconnect = process_mpa_reply(ep, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001864 break;
1865 case MPA_REQ_WAIT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001866 ep->rcv_seq += dlen;
Hariprasad S4a4dd8d2016-05-06 22:18:08 +05301867 disconnect = process_mpa_request(ep, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001868 break;
Vipul Pandya15579672013-01-07 13:11:52 +00001869 case FPDU_MODE: {
1870 struct c4iw_qp_attributes attrs;
1871 BUG_ON(!ep->com.qp);
Vipul Pandyae8e5b922013-01-07 13:11:55 +00001872 if (status)
Vipul Pandya15579672013-01-07 13:11:52 +00001873 pr_err("%s Unexpected streaming data." \
Vipul Pandya04236df2013-01-07 13:11:54 +00001874 " qpid %u ep %p state %d tid %u status %d\n",
1875 __func__, ep->com.qp->wq.sq.qid, ep,
Steve Wisec529fb52014-03-21 20:40:37 +05301876 ep->com.state, ep->hwtid, status);
Steve Wise97d7ec02013-08-06 21:04:34 +05301877 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Vipul Pandya15579672013-01-07 13:11:52 +00001878 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001879 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1880 disconnect = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001881 break;
1882 }
Vipul Pandya15579672013-01-07 13:11:52 +00001883 default:
1884 break;
1885 }
Steve Wisec529fb52014-03-21 20:40:37 +05301886 mutex_unlock(&ep->com.mutex);
Steve Wisecc18b932014-04-24 14:31:53 -05001887 if (disconnect)
Hariprasad S4a4dd8d2016-05-06 22:18:08 +05301888 c4iw_ep_disconnect(ep, disconnect == 2, GFP_KERNEL);
Hariprasad S944661d2016-05-06 22:18:03 +05301889 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001890 return 0;
1891}
1892
1893static int abort_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1894{
1895 struct c4iw_ep *ep;
1896 struct cpl_abort_rpl_rss *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001897 int release = 0;
1898 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001899
Hariprasad S944661d2016-05-06 22:18:03 +05301900 ep = get_ep_from_tid(dev, tid);
Vipul Pandya49840372012-05-18 15:29:29 +05301901 if (!ep) {
1902 printk(KERN_WARNING MOD "Abort rpl to freed endpoint\n");
1903 return 0;
1904 }
Wei Yongjun92dd6c32012-09-07 06:51:23 +00001905 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001906 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001907 switch (ep->com.state) {
1908 case ABORTING:
Vipul Pandya91e9c0712013-01-07 13:11:51 +00001909 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001910 __state_set(&ep->com, DEAD);
1911 release = 1;
1912 break;
1913 default:
1914 printk(KERN_ERR "%s ep %p state %d\n",
1915 __func__, ep, ep->com.state);
1916 break;
1917 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001918 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001919
1920 if (release)
1921 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05301922 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001923 return 0;
1924}
1925
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301926static int send_fw_act_open_req(struct c4iw_ep *ep, unsigned int atid)
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001927{
1928 struct sk_buff *skb;
1929 struct fw_ofld_connection_wr *req;
1930 unsigned int mtu_idx;
1931 int wscale;
Vipul Pandya830662f2013-07-04 16:10:47 +05301932 struct sockaddr_in *sin;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301933 int win;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001934
1935 skb = get_skb(NULL, sizeof(*req), GFP_KERNEL);
1936 req = (struct fw_ofld_connection_wr *)__skb_put(skb, sizeof(*req));
1937 memset(req, 0, sizeof(*req));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001938 req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301939 req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16)));
Kumar Sanghvi41b4f862013-12-18 16:38:26 +05301940 req->le.filter = cpu_to_be32(cxgb4_select_ntuple(
1941 ep->com.dev->rdev.lldi.ports[0],
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001942 ep->l2t));
Steve Wise170003c2016-02-26 09:18:03 -06001943 sin = (struct sockaddr_in *)&ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05301944 req->le.lport = sin->sin_port;
1945 req->le.u.ipv4.lip = sin->sin_addr.s_addr;
Steve Wise170003c2016-02-26 09:18:03 -06001946 sin = (struct sockaddr_in *)&ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05301947 req->le.pport = sin->sin_port;
1948 req->le.u.ipv4.pip = sin->sin_addr.s_addr;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001949 req->tcb.t_state_to_astid =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301950 htonl(FW_OFLD_CONNECTION_WR_T_STATE_V(TCP_SYN_SENT) |
1951 FW_OFLD_CONNECTION_WR_ASTID_V(atid));
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001952 req->tcb.cplrxdataack_cplpassacceptrpl =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301953 htons(FW_OFLD_CONNECTION_WR_CPLRXDATAACK_F);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001954 req->tcb.tx_max = (__force __be32) jiffies;
Vipul Pandya793dad92012-12-10 09:30:56 +00001955 req->tcb.rcv_adv = htons(1);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05301956 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +05301957 enable_tcp_timestamps,
1958 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001959 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301960
1961 /*
1962 * Specify the largest window that will fit in opt0. The
1963 * remainder will be specified in the rx_data_ack.
1964 */
1965 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -08001966 if (win > RCV_BUFSIZ_M)
1967 win = RCV_BUFSIZ_M;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301968
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001969 req->tcb.opt0 = (__force __be64) (TCAM_BYPASS_F |
1970 (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001971 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001972 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -08001973 WND_SCALE_V(wscale) |
1974 MSS_IDX_V(mtu_idx) |
1975 L2T_IDX_V(ep->l2t->idx) |
1976 TX_CHAN_V(ep->tx_chan) |
1977 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +05301978 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001979 ULP_MODE_V(ULP_MODE_TCPDDP) |
1980 RCV_BUFSIZ_V(win));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001981 req->tcb.opt2 = (__force __be32) (PACE_V(1) |
1982 TX_QUEUE_V(ep->com.dev->rdev.lldi.tx_modq[ep->tx_chan]) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001983 RX_CHANNEL_V(0) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001984 CCTRL_ECN_V(enable_ecn) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001985 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid));
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001986 if (enable_tcp_timestamps)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001987 req->tcb.opt2 |= (__force __be32)TSTAMPS_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001988 if (enable_tcp_sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001989 req->tcb.opt2 |= (__force __be32)SACK_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001990 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -08001991 req->tcb.opt2 |= (__force __be32)WND_SCALE_EN_F;
1992 req->tcb.opt0 = cpu_to_be64((__force u64)req->tcb.opt0);
1993 req->tcb.opt2 = cpu_to_be32((__force u32)req->tcb.opt2);
Vipul Pandya793dad92012-12-10 09:30:56 +00001994 set_wr_txq(skb, CPL_PRIORITY_CONTROL, ep->ctrlq_idx);
1995 set_bit(ACT_OFLD_CONN, &ep->com.history);
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301996 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001997}
1998
Steve Wisecfdda9d2010-04-21 15:30:06 -07001999/*
2000 * Return whether a failed active open has allocated a TID
2001 */
2002static inline int act_open_has_tid(int status)
2003{
2004 return status != CPL_ERR_TCAM_FULL && status != CPL_ERR_CONN_EXIST &&
2005 status != CPL_ERR_ARP_MISS;
2006}
2007
Steve Wise7a2cea22014-03-14 21:52:07 +05302008/* Returns whether a CPL status conveys negative advice.
2009 */
2010static int is_neg_adv(unsigned int status)
2011{
2012 return status == CPL_ERR_RTX_NEG_ADVICE ||
2013 status == CPL_ERR_PERSIST_NEG_ADVICE ||
2014 status == CPL_ERR_KEEPALV_NEG_ADVICE;
2015}
2016
Hariprasad Shenaidd92b122014-07-21 20:55:13 +05302017static char *neg_adv_str(unsigned int status)
2018{
2019 switch (status) {
2020 case CPL_ERR_RTX_NEG_ADVICE:
2021 return "Retransmit timeout";
2022 case CPL_ERR_PERSIST_NEG_ADVICE:
2023 return "Persist timeout";
2024 case CPL_ERR_KEEPALV_NEG_ADVICE:
2025 return "Keepalive timeout";
2026 default:
2027 return "Unknown";
2028 }
2029}
2030
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302031static void set_tcp_window(struct c4iw_ep *ep, struct port_info *pi)
2032{
2033 ep->snd_win = snd_win;
2034 ep->rcv_win = rcv_win;
2035 PDBG("%s snd_win %d rcv_win %d\n", __func__, ep->snd_win, ep->rcv_win);
2036}
2037
Vipul Pandya793dad92012-12-10 09:30:56 +00002038#define ACT_OPEN_RETRY_COUNT 2
2039
Vipul Pandya830662f2013-07-04 16:10:47 +05302040static int import_ep(struct c4iw_ep *ep, int iptype, __u8 *peer_ip,
2041 struct dst_entry *dst, struct c4iw_dev *cdev,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302042 bool clear_mpa_v1, enum chip_type adapter_type, u8 tos)
Vipul Pandya830662f2013-07-04 16:10:47 +05302043{
2044 struct neighbour *n;
2045 int err, step;
2046 struct net_device *pdev;
2047
2048 n = dst_neigh_lookup(dst, peer_ip);
2049 if (!n)
2050 return -ENODEV;
2051
2052 rcu_read_lock();
2053 err = -ENOMEM;
2054 if (n->dev->flags & IFF_LOOPBACK) {
2055 if (iptype == 4)
2056 pdev = ip_dev_find(&init_net, *(__be32 *)peer_ip);
2057 else if (IS_ENABLED(CONFIG_IPV6))
2058 for_each_netdev(&init_net, pdev) {
2059 if (ipv6_chk_addr(&init_net,
2060 (struct in6_addr *)peer_ip,
2061 pdev, 1))
2062 break;
2063 }
2064 else
2065 pdev = NULL;
2066
2067 if (!pdev) {
2068 err = -ENODEV;
2069 goto out;
2070 }
2071 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302072 n, pdev, rt_tos2priority(tos));
Vipul Pandya830662f2013-07-04 16:10:47 +05302073 if (!ep->l2t)
2074 goto out;
2075 ep->mtu = pdev->mtu;
2076 ep->tx_chan = cxgb4_port_chan(pdev);
Hariprasad S963cab52015-09-23 17:19:27 +05302077 ep->smac_idx = cxgb4_tp_smt_idx(adapter_type,
2078 cxgb4_port_viid(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302079 step = cdev->rdev.lldi.ntxq /
2080 cdev->rdev.lldi.nchan;
2081 ep->txq_idx = cxgb4_port_idx(pdev) * step;
2082 step = cdev->rdev.lldi.nrxq /
2083 cdev->rdev.lldi.nchan;
2084 ep->ctrlq_idx = cxgb4_port_idx(pdev);
2085 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
2086 cxgb4_port_idx(pdev) * step];
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302087 set_tcp_window(ep, (struct port_info *)netdev_priv(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302088 dev_put(pdev);
2089 } else {
2090 pdev = get_real_dev(n->dev);
2091 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
2092 n, pdev, 0);
2093 if (!ep->l2t)
2094 goto out;
2095 ep->mtu = dst_mtu(dst);
Steve Wise11b8e222014-05-16 12:42:46 -05002096 ep->tx_chan = cxgb4_port_chan(pdev);
Hariprasad S963cab52015-09-23 17:19:27 +05302097 ep->smac_idx = cxgb4_tp_smt_idx(adapter_type,
2098 cxgb4_port_viid(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302099 step = cdev->rdev.lldi.ntxq /
2100 cdev->rdev.lldi.nchan;
Steve Wise11b8e222014-05-16 12:42:46 -05002101 ep->txq_idx = cxgb4_port_idx(pdev) * step;
2102 ep->ctrlq_idx = cxgb4_port_idx(pdev);
Vipul Pandya830662f2013-07-04 16:10:47 +05302103 step = cdev->rdev.lldi.nrxq /
2104 cdev->rdev.lldi.nchan;
2105 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
Steve Wise11b8e222014-05-16 12:42:46 -05002106 cxgb4_port_idx(pdev) * step];
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302107 set_tcp_window(ep, (struct port_info *)netdev_priv(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302108
2109 if (clear_mpa_v1) {
2110 ep->retry_with_mpa_v1 = 0;
2111 ep->tried_with_mpa_v1 = 0;
2112 }
2113 }
2114 err = 0;
2115out:
2116 rcu_read_unlock();
2117
2118 neigh_release(n);
2119
2120 return err;
2121}
2122
Vipul Pandya793dad92012-12-10 09:30:56 +00002123static int c4iw_reconnect(struct c4iw_ep *ep)
2124{
2125 int err = 0;
Steve Wise24d44a32013-07-04 16:10:44 +05302126 struct sockaddr_in *laddr = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002127 &ep->com.cm_id->m_local_addr;
Steve Wise24d44a32013-07-04 16:10:44 +05302128 struct sockaddr_in *raddr = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002129 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302130 struct sockaddr_in6 *laddr6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002131 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302132 struct sockaddr_in6 *raddr6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002133 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302134 int iptype;
2135 __u8 *ra;
Vipul Pandya793dad92012-12-10 09:30:56 +00002136
2137 PDBG("%s qp %p cm_id %p\n", __func__, ep->com.qp, ep->com.cm_id);
2138 init_timer(&ep->timer);
Hariprasad S093108c2016-05-06 22:18:09 +05302139 c4iw_init_wr_wait(&ep->com.wr_wait);
Vipul Pandya793dad92012-12-10 09:30:56 +00002140
2141 /*
2142 * Allocate an active TID to initiate a TCP connection.
2143 */
2144 ep->atid = cxgb4_alloc_atid(ep->com.dev->rdev.lldi.tids, ep);
2145 if (ep->atid == -1) {
2146 pr_err("%s - cannot alloc atid.\n", __func__);
2147 err = -ENOMEM;
2148 goto fail2;
2149 }
2150 insert_handle(ep->com.dev, &ep->com.dev->atid_idr, ep, ep->atid);
2151
2152 /* find a route */
Steve Wise170003c2016-02-26 09:18:03 -06002153 if (ep->com.cm_id->m_local_addr.ss_family == AF_INET) {
Vipul Pandya830662f2013-07-04 16:10:47 +05302154 ep->dst = find_route(ep->com.dev, laddr->sin_addr.s_addr,
2155 raddr->sin_addr.s_addr, laddr->sin_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302156 raddr->sin_port, ep->com.cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302157 iptype = 4;
2158 ra = (__u8 *)&raddr->sin_addr;
2159 } else {
2160 ep->dst = find_route6(ep->com.dev, laddr6->sin6_addr.s6_addr,
2161 raddr6->sin6_addr.s6_addr,
2162 laddr6->sin6_port, raddr6->sin6_port, 0,
2163 raddr6->sin6_scope_id);
2164 iptype = 6;
2165 ra = (__u8 *)&raddr6->sin6_addr;
2166 }
2167 if (!ep->dst) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002168 pr_err("%s - cannot find route.\n", __func__);
2169 err = -EHOSTUNREACH;
2170 goto fail3;
2171 }
Hariprasad S963cab52015-09-23 17:19:27 +05302172 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, false,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302173 ep->com.dev->rdev.lldi.adapter_type,
2174 ep->com.cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302175 if (err) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002176 pr_err("%s - cannot alloc l2e.\n", __func__);
Vipul Pandya793dad92012-12-10 09:30:56 +00002177 goto fail4;
2178 }
2179
2180 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
2181 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
2182 ep->l2t->idx);
2183
2184 state_set(&ep->com, CONNECTING);
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302185 ep->tos = ep->com.cm_id->tos;
Vipul Pandya793dad92012-12-10 09:30:56 +00002186
2187 /* send connect request to rnic */
2188 err = send_connect(ep);
2189 if (!err)
2190 goto out;
2191
2192 cxgb4_l2t_release(ep->l2t);
2193fail4:
2194 dst_release(ep->dst);
2195fail3:
2196 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
2197 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
2198fail2:
2199 /*
2200 * remember to send notification to upper layer.
2201 * We are in here so the upper layer is not aware that this is
2202 * re-connect attempt and so, upper layer is still waiting for
2203 * response of 1st connect request.
2204 */
2205 connect_reply_upcall(ep, -ECONNRESET);
2206 c4iw_put_ep(&ep->com);
2207out:
2208 return err;
2209}
2210
Steve Wisecfdda9d2010-04-21 15:30:06 -07002211static int act_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2212{
2213 struct c4iw_ep *ep;
2214 struct cpl_act_open_rpl *rpl = cplhdr(skb);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002215 unsigned int atid = TID_TID_G(AOPEN_ATID_G(
2216 ntohl(rpl->atid_status)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002217 struct tid_info *t = dev->rdev.lldi.tids;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002218 int status = AOPEN_STATUS_G(ntohl(rpl->atid_status));
Vipul Pandya830662f2013-07-04 16:10:47 +05302219 struct sockaddr_in *la;
2220 struct sockaddr_in *ra;
2221 struct sockaddr_in6 *la6;
2222 struct sockaddr_in6 *ra6;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302223 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002224
2225 ep = lookup_atid(t, atid);
Steve Wise170003c2016-02-26 09:18:03 -06002226 la = (struct sockaddr_in *)&ep->com.local_addr;
2227 ra = (struct sockaddr_in *)&ep->com.remote_addr;
2228 la6 = (struct sockaddr_in6 *)&ep->com.local_addr;
2229 ra6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002230
2231 PDBG("%s ep %p atid %u status %u errno %d\n", __func__, ep, atid,
2232 status, status2errno(status));
2233
Steve Wise7a2cea22014-03-14 21:52:07 +05302234 if (is_neg_adv(status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05302235 PDBG("%s Connection problems for atid %u status %u (%s)\n",
2236 __func__, atid, status, neg_adv_str(status));
2237 ep->stats.connect_neg_adv++;
2238 mutex_lock(&dev->rdev.stats.lock);
2239 dev->rdev.stats.neg_adv++;
2240 mutex_unlock(&dev->rdev.stats.lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002241 return 0;
2242 }
2243
Vipul Pandya793dad92012-12-10 09:30:56 +00002244 set_bit(ACT_OPEN_RPL, &ep->com.history);
2245
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302246 /*
2247 * Log interesting failures.
2248 */
2249 switch (status) {
2250 case CPL_ERR_CONN_RESET:
2251 case CPL_ERR_CONN_TIMEDOUT:
2252 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002253 case CPL_ERR_TCAM_FULL:
Vipul Pandya830662f2013-07-04 16:10:47 +05302254 mutex_lock(&dev->rdev.stats.lock);
Vipul Pandya3b174d92013-03-14 05:09:03 +00002255 dev->rdev.stats.tcam_full++;
Vipul Pandya830662f2013-07-04 16:10:47 +05302256 mutex_unlock(&dev->rdev.stats.lock);
2257 if (ep->com.local_addr.ss_family == AF_INET &&
2258 dev->rdev.lldi.enable_fw_ofld_conn) {
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302259 ret = send_fw_act_open_req(ep, TID_TID_G(AOPEN_ATID_G(
2260 ntohl(rpl->atid_status))));
2261 if (ret)
2262 goto fail;
Vipul Pandya793dad92012-12-10 09:30:56 +00002263 return 0;
2264 }
2265 break;
2266 case CPL_ERR_CONN_EXIST:
2267 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
2268 set_bit(ACT_RETRY_INUSE, &ep->com.history);
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302269 if (ep->com.remote_addr.ss_family == AF_INET6) {
2270 struct sockaddr_in6 *sin6 =
2271 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002272 &ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302273 cxgb4_clip_release(
2274 ep->com.dev->rdev.lldi.ports[0],
2275 (const u32 *)
2276 &sin6->sin6_addr.s6_addr, 1);
2277 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002278 remove_handle(ep->com.dev, &ep->com.dev->atid_idr,
2279 atid);
2280 cxgb4_free_atid(t, atid);
2281 dst_release(ep->dst);
2282 cxgb4_l2t_release(ep->l2t);
2283 c4iw_reconnect(ep);
2284 return 0;
2285 }
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002286 break;
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302287 default:
Vipul Pandya830662f2013-07-04 16:10:47 +05302288 if (ep->com.local_addr.ss_family == AF_INET) {
2289 pr_info("Active open failure - atid %u status %u errno %d %pI4:%u->%pI4:%u\n",
2290 atid, status, status2errno(status),
2291 &la->sin_addr.s_addr, ntohs(la->sin_port),
2292 &ra->sin_addr.s_addr, ntohs(ra->sin_port));
2293 } else {
2294 pr_info("Active open failure - atid %u status %u errno %d %pI6:%u->%pI6:%u\n",
2295 atid, status, status2errno(status),
2296 la6->sin6_addr.s6_addr, ntohs(la6->sin6_port),
2297 ra6->sin6_addr.s6_addr, ntohs(ra6->sin6_port));
2298 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302299 break;
2300 }
2301
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302302fail:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002303 connect_reply_upcall(ep, status2errno(status));
2304 state_set(&ep->com, DEAD);
2305
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302306 if (ep->com.remote_addr.ss_family == AF_INET6) {
2307 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -06002308 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302309 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
2310 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
2311 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002312 if (status && act_open_has_tid(status))
2313 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, GET_TID(rpl));
2314
Vipul Pandya793dad92012-12-10 09:30:56 +00002315 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002316 cxgb4_free_atid(t, atid);
2317 dst_release(ep->dst);
2318 cxgb4_l2t_release(ep->l2t);
2319 c4iw_put_ep(&ep->com);
2320
2321 return 0;
2322}
2323
2324static int pass_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2325{
2326 struct cpl_pass_open_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002327 unsigned int stid = GET_TID(rpl);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302328 struct c4iw_listen_ep *ep = get_ep_from_stid(dev, stid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002329
2330 if (!ep) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00002331 PDBG("%s stid %d lookup failure!\n", __func__, stid);
2332 goto out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002333 }
2334 PDBG("%s ep %p status %d error %d\n", __func__, ep,
2335 rpl->status, status2errno(rpl->status));
Steve Wised9594d92011-05-09 22:06:22 -07002336 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Hariprasad Sf86fac72016-05-06 22:18:07 +05302337 c4iw_put_ep(&ep->com);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002338out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002339 return 0;
2340}
2341
Steve Wisecfdda9d2010-04-21 15:30:06 -07002342static int close_listsrv_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2343{
2344 struct cpl_close_listsvr_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002345 unsigned int stid = GET_TID(rpl);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302346 struct c4iw_listen_ep *ep = get_ep_from_stid(dev, stid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002347
2348 PDBG("%s ep %p\n", __func__, ep);
Steve Wised9594d92011-05-09 22:06:22 -07002349 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Hariprasad Sf86fac72016-05-06 22:18:07 +05302350 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002351 return 0;
2352}
2353
Hariprasad S9dec9002016-05-05 01:27:29 +05302354static int accept_cr(struct c4iw_ep *ep, struct sk_buff *skb,
2355 struct cpl_pass_accept_req *req)
Steve Wisecfdda9d2010-04-21 15:30:06 -07002356{
2357 struct cpl_pass_accept_rpl *rpl;
2358 unsigned int mtu_idx;
2359 u64 opt0;
2360 u32 opt2;
2361 int wscale;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302362 struct cpl_t5_pass_accept_rpl *rpl5 = NULL;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302363 int win;
Hariprasad S963cab52015-09-23 17:19:27 +05302364 enum chip_type adapter_type = ep->com.dev->rdev.lldi.adapter_type;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002365
2366 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2367 BUG_ON(skb_cloned(skb));
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302368
Steve Wisecfdda9d2010-04-21 15:30:06 -07002369 skb_get(skb);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302370 rpl = cplhdr(skb);
Hariprasad S963cab52015-09-23 17:19:27 +05302371 if (!is_t4(adapter_type)) {
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302372 skb_trim(skb, roundup(sizeof(*rpl5), 16));
2373 rpl5 = (void *)rpl;
2374 INIT_TP_WR(rpl5, ep->hwtid);
2375 } else {
2376 skb_trim(skb, sizeof(*rpl));
2377 INIT_TP_WR(rpl, ep->hwtid);
2378 }
2379 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_PASS_ACCEPT_RPL,
2380 ep->hwtid));
2381
2382 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +05302383 enable_tcp_timestamps && req->tcpopt.tstamp,
2384 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002385 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302386
2387 /*
2388 * Specify the largest window that will fit in opt0. The
2389 * remainder will be specified in the rx_data_ack.
2390 */
2391 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -08002392 if (win > RCV_BUFSIZ_M)
2393 win = RCV_BUFSIZ_M;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002394 opt0 = (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002395 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002396 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -08002397 WND_SCALE_V(wscale) |
2398 MSS_IDX_V(mtu_idx) |
2399 L2T_IDX_V(ep->l2t->idx) |
2400 TX_CHAN_V(ep->tx_chan) |
2401 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002402 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002403 ULP_MODE_V(ULP_MODE_TCPDDP) |
2404 RCV_BUFSIZ_V(win);
2405 opt2 = RX_CHANNEL_V(0) |
2406 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002407
2408 if (enable_tcp_timestamps && req->tcpopt.tstamp)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002409 opt2 |= TSTAMPS_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002410 if (enable_tcp_sack && req->tcpopt.sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002411 opt2 |= SACK_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002412 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -08002413 opt2 |= WND_SCALE_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002414 if (enable_ecn) {
2415 const struct tcphdr *tcph;
2416 u32 hlen = ntohl(req->hdr_len);
2417
Hariprasad S963cab52015-09-23 17:19:27 +05302418 if (CHELSIO_CHIP_VERSION(adapter_type) <= CHELSIO_T5)
2419 tcph = (const void *)(req + 1) + ETH_HDR_LEN_G(hlen) +
2420 IP_HDR_LEN_G(hlen);
2421 else
2422 tcph = (const void *)(req + 1) +
2423 T6_ETH_HDR_LEN_G(hlen) + T6_IP_HDR_LEN_G(hlen);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002424 if (tcph->ece && tcph->cwr)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002425 opt2 |= CCTRL_ECN_V(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002426 }
Hariprasad S963cab52015-09-23 17:19:27 +05302427 if (CHELSIO_CHIP_VERSION(adapter_type) > CHELSIO_T4) {
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302428 u32 isn = (prandom_u32() & ~7UL) - 1;
Anish Bhattd7990b02014-11-12 17:15:57 -08002429 opt2 |= T5_OPT_2_VALID_F;
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05302430 opt2 |= CONG_CNTRL_V(CONG_ALG_TAHOE);
Hariprasad S0b741042015-04-22 01:44:58 +05302431 opt2 |= T5_ISS_F;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302432 rpl5 = (void *)rpl;
2433 memset(&rpl5->iss, 0, roundup(sizeof(*rpl5)-sizeof(*rpl), 16));
2434 if (peer2peer)
2435 isn += 4;
2436 rpl5->iss = cpu_to_be32(isn);
2437 PDBG("%s iss %u\n", __func__, be32_to_cpu(rpl5->iss));
Steve Wise92e50112014-04-24 14:31:59 -05002438 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002439
Steve Wisecfdda9d2010-04-21 15:30:06 -07002440 rpl->opt0 = cpu_to_be64(opt0);
2441 rpl->opt2 = cpu_to_be32(opt2);
Steve Wised4f1a5c2010-07-23 19:12:32 +00002442 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Hariprasad S9dec9002016-05-05 01:27:29 +05302443 t4_set_arp_err_handler(skb, ep, pass_accept_rpl_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002444
Hariprasad S9dec9002016-05-05 01:27:29 +05302445 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002446}
2447
Vipul Pandya830662f2013-07-04 16:10:47 +05302448static void reject_cr(struct c4iw_dev *dev, u32 hwtid, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07002449{
Vipul Pandya830662f2013-07-04 16:10:47 +05302450 PDBG("%s c4iw_dev %p tid %u\n", __func__, dev, hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002451 BUG_ON(skb_cloned(skb));
2452 skb_trim(skb, sizeof(struct cpl_tid_release));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002453 release_tid(&dev->rdev, hwtid, skb);
2454 return;
2455}
2456
Hariprasad S963cab52015-09-23 17:19:27 +05302457static void get_4tuple(struct cpl_pass_accept_req *req, enum chip_type type,
2458 int *iptype, __u8 *local_ip, __u8 *peer_ip,
Steve Wisecfdda9d2010-04-21 15:30:06 -07002459 __be16 *local_port, __be16 *peer_port)
2460{
Hariprasad S963cab52015-09-23 17:19:27 +05302461 int eth_len = (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) ?
2462 ETH_HDR_LEN_G(be32_to_cpu(req->hdr_len)) :
2463 T6_ETH_HDR_LEN_G(be32_to_cpu(req->hdr_len));
2464 int ip_len = (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) ?
2465 IP_HDR_LEN_G(be32_to_cpu(req->hdr_len)) :
2466 T6_IP_HDR_LEN_G(be32_to_cpu(req->hdr_len));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002467 struct iphdr *ip = (struct iphdr *)((u8 *)(req + 1) + eth_len);
Vipul Pandya830662f2013-07-04 16:10:47 +05302468 struct ipv6hdr *ip6 = (struct ipv6hdr *)((u8 *)(req + 1) + eth_len);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002469 struct tcphdr *tcp = (struct tcphdr *)
2470 ((u8 *)(req + 1) + eth_len + ip_len);
2471
Vipul Pandya830662f2013-07-04 16:10:47 +05302472 if (ip->version == 4) {
2473 PDBG("%s saddr 0x%x daddr 0x%x sport %u dport %u\n", __func__,
2474 ntohl(ip->saddr), ntohl(ip->daddr), ntohs(tcp->source),
2475 ntohs(tcp->dest));
2476 *iptype = 4;
2477 memcpy(peer_ip, &ip->saddr, 4);
2478 memcpy(local_ip, &ip->daddr, 4);
2479 } else {
2480 PDBG("%s saddr %pI6 daddr %pI6 sport %u dport %u\n", __func__,
2481 ip6->saddr.s6_addr, ip6->daddr.s6_addr, ntohs(tcp->source),
2482 ntohs(tcp->dest));
2483 *iptype = 6;
2484 memcpy(peer_ip, ip6->saddr.s6_addr, 16);
2485 memcpy(local_ip, ip6->daddr.s6_addr, 16);
2486 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002487 *peer_port = tcp->source;
2488 *local_port = tcp->dest;
2489
2490 return;
2491}
2492
2493static int pass_accept_req(struct c4iw_dev *dev, struct sk_buff *skb)
2494{
Vipul Pandya793dad92012-12-10 09:30:56 +00002495 struct c4iw_ep *child_ep = NULL, *parent_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002496 struct cpl_pass_accept_req *req = cplhdr(skb);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002497 unsigned int stid = PASS_OPEN_TID_G(ntohl(req->tos_stid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002498 struct tid_info *t = dev->rdev.lldi.tids;
2499 unsigned int hwtid = GET_TID(req);
2500 struct dst_entry *dst;
Vipul Pandya830662f2013-07-04 16:10:47 +05302501 __u8 local_ip[16], peer_ip[16];
Steve Wisecfdda9d2010-04-21 15:30:06 -07002502 __be16 local_port, peer_port;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302503 struct sockaddr_in6 *sin6;
David Miller3786cf12011-12-02 16:52:31 +00002504 int err;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002505 u16 peer_mss = ntohs(req->tcpopt.mss);
Vipul Pandya830662f2013-07-04 16:10:47 +05302506 int iptype;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302507 unsigned short hdrs;
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302508 u8 tos = PASS_OPEN_TOS_G(ntohl(req->tos_stid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002509
Hariprasad Sf86fac72016-05-06 22:18:07 +05302510 parent_ep = (struct c4iw_ep *)get_ep_from_stid(dev, stid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002511 if (!parent_ep) {
2512 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
2513 goto reject;
2514 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00002515
Steve Wisecfdda9d2010-04-21 15:30:06 -07002516 if (state_read(&parent_ep->com) != LISTEN) {
Hariprasad S6812fae2016-02-05 11:43:29 +05302517 PDBG("%s - listening ep not in LISTEN\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002518 goto reject;
2519 }
2520
Hariprasad S963cab52015-09-23 17:19:27 +05302521 get_4tuple(req, parent_ep->com.dev->rdev.lldi.adapter_type, &iptype,
2522 local_ip, peer_ip, &local_port, &peer_port);
Vipul Pandya830662f2013-07-04 16:10:47 +05302523
Steve Wisecfdda9d2010-04-21 15:30:06 -07002524 /* Find output route */
Vipul Pandya830662f2013-07-04 16:10:47 +05302525 if (iptype == 4) {
2526 PDBG("%s parent ep %p hwtid %u laddr %pI4 raddr %pI4 lport %d rport %d peer_mss %d\n"
2527 , __func__, parent_ep, hwtid,
2528 local_ip, peer_ip, ntohs(local_port),
2529 ntohs(peer_port), peer_mss);
2530 dst = find_route(dev, *(__be32 *)local_ip, *(__be32 *)peer_ip,
2531 local_port, peer_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302532 tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302533 } else {
2534 PDBG("%s parent ep %p hwtid %u laddr %pI6 raddr %pI6 lport %d rport %d peer_mss %d\n"
2535 , __func__, parent_ep, hwtid,
2536 local_ip, peer_ip, ntohs(local_port),
2537 ntohs(peer_port), peer_mss);
2538 dst = find_route6(dev, local_ip, peer_ip, local_port, peer_port,
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002539 PASS_OPEN_TOS_G(ntohl(req->tos_stid)),
Vipul Pandya830662f2013-07-04 16:10:47 +05302540 ((struct sockaddr_in6 *)
2541 &parent_ep->com.local_addr)->sin6_scope_id);
2542 }
2543 if (!dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002544 printk(KERN_ERR MOD "%s - failed to find dst entry!\n",
2545 __func__);
2546 goto reject;
2547 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002548
2549 child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
2550 if (!child_ep) {
2551 printk(KERN_ERR MOD "%s - failed to allocate ep entry!\n",
2552 __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002553 dst_release(dst);
2554 goto reject;
2555 }
David Miller3786cf12011-12-02 16:52:31 +00002556
Hariprasad S963cab52015-09-23 17:19:27 +05302557 err = import_ep(child_ep, iptype, peer_ip, dst, dev, false,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302558 parent_ep->com.dev->rdev.lldi.adapter_type, tos);
David Miller3786cf12011-12-02 16:52:31 +00002559 if (err) {
2560 printk(KERN_ERR MOD "%s - failed to allocate l2t entry!\n",
2561 __func__);
2562 dst_release(dst);
2563 kfree(child_ep);
2564 goto reject;
2565 }
2566
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302567 hdrs = sizeof(struct iphdr) + sizeof(struct tcphdr) +
2568 ((enable_tcp_timestamps && req->tcpopt.tstamp) ? 12 : 0);
2569 if (peer_mss && child_ep->mtu > (peer_mss + hdrs))
2570 child_ep->mtu = peer_mss + hdrs;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002571
Steve Wisecfdda9d2010-04-21 15:30:06 -07002572 state_set(&child_ep->com, CONNECTING);
2573 child_ep->com.dev = dev;
2574 child_ep->com.cm_id = NULL;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002575
Vipul Pandya830662f2013-07-04 16:10:47 +05302576 if (iptype == 4) {
2577 struct sockaddr_in *sin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002578 &child_ep->com.local_addr;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002579
Vipul Pandya830662f2013-07-04 16:10:47 +05302580 sin->sin_family = PF_INET;
2581 sin->sin_port = local_port;
2582 sin->sin_addr.s_addr = *(__be32 *)local_ip;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002583
2584 sin = (struct sockaddr_in *)&child_ep->com.local_addr;
2585 sin->sin_family = PF_INET;
2586 sin->sin_port = ((struct sockaddr_in *)
2587 &parent_ep->com.local_addr)->sin_port;
2588 sin->sin_addr.s_addr = *(__be32 *)local_ip;
2589
Steve Wise170003c2016-02-26 09:18:03 -06002590 sin = (struct sockaddr_in *)&child_ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302591 sin->sin_family = PF_INET;
2592 sin->sin_port = peer_port;
2593 sin->sin_addr.s_addr = *(__be32 *)peer_ip;
2594 } else {
Steve Wise170003c2016-02-26 09:18:03 -06002595 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302596 sin6->sin6_family = PF_INET6;
2597 sin6->sin6_port = local_port;
2598 memcpy(sin6->sin6_addr.s6_addr, local_ip, 16);
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002599
2600 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
2601 sin6->sin6_family = PF_INET6;
2602 sin6->sin6_port = ((struct sockaddr_in6 *)
2603 &parent_ep->com.local_addr)->sin6_port;
2604 memcpy(sin6->sin6_addr.s6_addr, local_ip, 16);
2605
Steve Wise170003c2016-02-26 09:18:03 -06002606 sin6 = (struct sockaddr_in6 *)&child_ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302607 sin6->sin6_family = PF_INET6;
2608 sin6->sin6_port = peer_port;
2609 memcpy(sin6->sin6_addr.s6_addr, peer_ip, 16);
2610 }
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002611
Steve Wisecfdda9d2010-04-21 15:30:06 -07002612 c4iw_get_ep(&parent_ep->com);
2613 child_ep->parent_ep = parent_ep;
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302614 child_ep->tos = tos;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002615 child_ep->dst = dst;
2616 child_ep->hwtid = hwtid;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002617
2618 PDBG("%s tx_chan %u smac_idx %u rss_qid %u\n", __func__,
David Miller3786cf12011-12-02 16:52:31 +00002619 child_ep->tx_chan, child_ep->smac_idx, child_ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002620
2621 init_timer(&child_ep->timer);
2622 cxgb4_insert_tid(t, child_ep, hwtid);
Hariprasad S944661d2016-05-06 22:18:03 +05302623 insert_ep_tid(child_ep);
Hariprasad S9dec9002016-05-05 01:27:29 +05302624 if (accept_cr(child_ep, skb, req)) {
2625 c4iw_put_ep(&parent_ep->com);
2626 release_ep_resources(child_ep);
2627 } else {
2628 set_bit(PASS_ACCEPT_REQ, &child_ep->com.history);
2629 }
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302630 if (iptype == 6) {
Steve Wise170003c2016-02-26 09:18:03 -06002631 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302632 cxgb4_clip_get(child_ep->com.dev->rdev.lldi.ports[0],
2633 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
2634 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002635 goto out;
2636reject:
Vipul Pandya830662f2013-07-04 16:10:47 +05302637 reject_cr(dev, hwtid, skb);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302638 if (parent_ep)
2639 c4iw_put_ep(&parent_ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002640out:
2641 return 0;
2642}
2643
2644static int pass_establish(struct c4iw_dev *dev, struct sk_buff *skb)
2645{
2646 struct c4iw_ep *ep;
2647 struct cpl_pass_establish *req = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002648 unsigned int tid = GET_TID(req);
Hariprasad Sfef44222016-05-05 01:27:33 +05302649 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002650
Hariprasad S944661d2016-05-06 22:18:03 +05302651 ep = get_ep_from_tid(dev, tid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002652 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2653 ep->snd_seq = be32_to_cpu(req->snd_isn);
2654 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
2655
Vipul Pandya1cab7752012-12-10 09:30:55 +00002656 PDBG("%s ep %p hwtid %u tcp_opt 0x%02x\n", __func__, ep, tid,
2657 ntohs(req->tcp_opt));
2658
Steve Wisecfdda9d2010-04-21 15:30:06 -07002659 set_emss(ep, ntohs(req->tcp_opt));
2660
2661 dst_confirm(ep->dst);
Hariprasad Sfef44222016-05-05 01:27:33 +05302662 mutex_lock(&ep->com.mutex);
2663 ep->com.state = MPA_REQ_WAIT;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002664 start_ep_timer(ep);
Vipul Pandya793dad92012-12-10 09:30:56 +00002665 set_bit(PASS_ESTAB, &ep->com.history);
Hariprasad Sfef44222016-05-05 01:27:33 +05302666 ret = send_flowc(ep, skb);
2667 mutex_unlock(&ep->com.mutex);
2668 if (ret)
2669 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Hariprasad S944661d2016-05-06 22:18:03 +05302670 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002671
2672 return 0;
2673}
2674
2675static int peer_close(struct c4iw_dev *dev, struct sk_buff *skb)
2676{
2677 struct cpl_peer_close *hdr = cplhdr(skb);
2678 struct c4iw_ep *ep;
2679 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002680 int disconnect = 1;
2681 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002682 unsigned int tid = GET_TID(hdr);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002683 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002684
Hariprasad S944661d2016-05-06 22:18:03 +05302685 ep = get_ep_from_tid(dev, tid);
2686 if (!ep)
2687 return 0;
2688
Steve Wisecfdda9d2010-04-21 15:30:06 -07002689 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2690 dst_confirm(ep->dst);
2691
Vipul Pandya793dad92012-12-10 09:30:56 +00002692 set_bit(PEER_CLOSE, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002693 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002694 switch (ep->com.state) {
2695 case MPA_REQ_WAIT:
2696 __state_set(&ep->com, CLOSING);
2697 break;
2698 case MPA_REQ_SENT:
2699 __state_set(&ep->com, CLOSING);
2700 connect_reply_upcall(ep, -ECONNRESET);
2701 break;
2702 case MPA_REQ_RCVD:
2703
2704 /*
2705 * We're gonna mark this puppy DEAD, but keep
2706 * the reference on it until the ULP accepts or
2707 * rejects the CR. Also wake up anyone waiting
2708 * in rdma connection migration (see c4iw_accept_cr()).
2709 */
2710 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002711 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002712 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002713 break;
2714 case MPA_REP_SENT:
2715 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002716 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002717 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002718 break;
2719 case FPDU_MODE:
Steve Wiseca5a2202010-07-23 19:12:37 +00002720 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002721 __state_set(&ep->com, CLOSING);
Steve Wise30c95c22011-05-09 22:06:22 -07002722 attrs.next_state = C4IW_QP_STATE_CLOSING;
Steve Wise8da7e7a2011-06-14 20:59:27 +00002723 ret = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wise30c95c22011-05-09 22:06:22 -07002724 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002725 if (ret != -ECONNRESET) {
2726 peer_close_upcall(ep);
2727 disconnect = 1;
2728 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002729 break;
2730 case ABORTING:
2731 disconnect = 0;
2732 break;
2733 case CLOSING:
2734 __state_set(&ep->com, MORIBUND);
2735 disconnect = 0;
2736 break;
2737 case MORIBUND:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002738 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002739 if (ep->com.cm_id && ep->com.qp) {
2740 attrs.next_state = C4IW_QP_STATE_IDLE;
2741 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2742 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2743 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05302744 close_complete_upcall(ep, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002745 __state_set(&ep->com, DEAD);
2746 release = 1;
2747 disconnect = 0;
2748 break;
2749 case DEAD:
2750 disconnect = 0;
2751 break;
2752 default:
2753 BUG_ON(1);
2754 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002755 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002756 if (disconnect)
2757 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
2758 if (release)
2759 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05302760 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002761 return 0;
2762}
2763
Steve Wisecfdda9d2010-04-21 15:30:06 -07002764static int peer_abort(struct c4iw_dev *dev, struct sk_buff *skb)
2765{
2766 struct cpl_abort_req_rss *req = cplhdr(skb);
2767 struct c4iw_ep *ep;
2768 struct cpl_abort_rpl *rpl;
2769 struct sk_buff *rpl_skb;
2770 struct c4iw_qp_attributes attrs;
2771 int ret;
2772 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002773 unsigned int tid = GET_TID(req);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002774
Hariprasad S944661d2016-05-06 22:18:03 +05302775 ep = get_ep_from_tid(dev, tid);
2776 if (!ep)
2777 return 0;
2778
Steve Wise7a2cea22014-03-14 21:52:07 +05302779 if (is_neg_adv(req->status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05302780 PDBG("%s Negative advice on abort- tid %u status %d (%s)\n",
2781 __func__, ep->hwtid, req->status,
2782 neg_adv_str(req->status));
2783 ep->stats.abort_neg_adv++;
2784 mutex_lock(&dev->rdev.stats.lock);
2785 dev->rdev.stats.neg_adv++;
2786 mutex_unlock(&dev->rdev.stats.lock);
Hariprasad S944661d2016-05-06 22:18:03 +05302787 goto deref_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002788 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002789 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
2790 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00002791 set_bit(PEER_ABORT, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002792
2793 /*
2794 * Wake up any threads in rdma_init() or rdma_fini().
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302795 * However, this is not needed if com state is just
2796 * MPA_REQ_SENT
Steve Wise2f5b48c2010-09-10 11:15:36 -05002797 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302798 if (ep->com.state != MPA_REQ_SENT)
2799 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002800
2801 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002802 switch (ep->com.state) {
2803 case CONNECTING:
Hariprasad S9dec9002016-05-05 01:27:29 +05302804 c4iw_put_ep(&ep->parent_ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002805 break;
2806 case MPA_REQ_WAIT:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002807 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002808 break;
2809 case MPA_REQ_SENT:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002810 (void)stop_ep_timer(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002811 if (mpa_rev == 1 || (mpa_rev == 2 && ep->tried_with_mpa_v1))
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302812 connect_reply_upcall(ep, -ECONNRESET);
2813 else {
2814 /*
2815 * we just don't send notification upwards because we
2816 * want to retry with mpa_v1 without upper layers even
2817 * knowing it.
2818 *
2819 * do some housekeeping so as to re-initiate the
2820 * connection
2821 */
2822 PDBG("%s: mpa_rev=%d. Retrying with mpav1\n", __func__,
2823 mpa_rev);
2824 ep->retry_with_mpa_v1 = 1;
2825 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002826 break;
2827 case MPA_REP_SENT:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002828 break;
2829 case MPA_REQ_RCVD:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002830 break;
2831 case MORIBUND:
2832 case CLOSING:
Steve Wiseca5a2202010-07-23 19:12:37 +00002833 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002834 /*FALLTHROUGH*/
2835 case FPDU_MODE:
2836 if (ep->com.cm_id && ep->com.qp) {
2837 attrs.next_state = C4IW_QP_STATE_ERROR;
2838 ret = c4iw_modify_qp(ep->com.qp->rhp,
2839 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
2840 &attrs, 1);
2841 if (ret)
2842 printk(KERN_ERR MOD
2843 "%s - qp <- error failed!\n",
2844 __func__);
2845 }
2846 peer_abort_upcall(ep);
2847 break;
2848 case ABORTING:
2849 break;
2850 case DEAD:
2851 PDBG("%s PEER_ABORT IN DEAD STATE!!!!\n", __func__);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002852 mutex_unlock(&ep->com.mutex);
Hariprasad S944661d2016-05-06 22:18:03 +05302853 goto deref_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002854 default:
2855 BUG_ON(1);
2856 break;
2857 }
2858 dst_confirm(ep->dst);
2859 if (ep->com.state != ABORTING) {
2860 __state_set(&ep->com, DEAD);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302861 /* we don't release if we want to retry with mpa_v1 */
2862 if (!ep->retry_with_mpa_v1)
2863 release = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002864 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002865 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002866
2867 rpl_skb = get_skb(skb, sizeof(*rpl), GFP_KERNEL);
2868 if (!rpl_skb) {
2869 printk(KERN_ERR MOD "%s - cannot allocate skb!\n",
2870 __func__);
2871 release = 1;
2872 goto out;
2873 }
2874 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
2875 rpl = (struct cpl_abort_rpl *) skb_put(rpl_skb, sizeof(*rpl));
2876 INIT_TP_WR(rpl, ep->hwtid);
2877 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_RPL, ep->hwtid));
2878 rpl->cmd = CPL_ABORT_NO_RST;
2879 c4iw_ofld_send(&ep->com.dev->rdev, rpl_skb);
2880out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002881 if (release)
2882 release_ep_resources(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002883 else if (ep->retry_with_mpa_v1) {
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302884 if (ep->com.remote_addr.ss_family == AF_INET6) {
2885 struct sockaddr_in6 *sin6 =
2886 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002887 &ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302888 cxgb4_clip_release(
2889 ep->com.dev->rdev.lldi.ports[0],
2890 (const u32 *)&sin6->sin6_addr.s6_addr,
2891 1);
2892 }
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002893 remove_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep->hwtid);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302894 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
2895 dst_release(ep->dst);
2896 cxgb4_l2t_release(ep->l2t);
2897 c4iw_reconnect(ep);
2898 }
2899
Hariprasad S944661d2016-05-06 22:18:03 +05302900deref_ep:
2901 c4iw_put_ep(&ep->com);
2902 /* Dereferencing ep, referenced in peer_abort_intr() */
2903 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002904 return 0;
2905}
2906
2907static int close_con_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2908{
2909 struct c4iw_ep *ep;
2910 struct c4iw_qp_attributes attrs;
2911 struct cpl_close_con_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002912 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002913 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002914
Hariprasad S944661d2016-05-06 22:18:03 +05302915 ep = get_ep_from_tid(dev, tid);
2916 if (!ep)
2917 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002918
2919 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2920 BUG_ON(!ep);
2921
2922 /* The cm_id may be null if we failed to connect */
Steve Wise2f5b48c2010-09-10 11:15:36 -05002923 mutex_lock(&ep->com.mutex);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05302924 set_bit(CLOSE_CON_RPL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002925 switch (ep->com.state) {
2926 case CLOSING:
2927 __state_set(&ep->com, MORIBUND);
2928 break;
2929 case MORIBUND:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002930 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002931 if ((ep->com.cm_id) && (ep->com.qp)) {
2932 attrs.next_state = C4IW_QP_STATE_IDLE;
2933 c4iw_modify_qp(ep->com.qp->rhp,
2934 ep->com.qp,
2935 C4IW_QP_ATTR_NEXT_STATE,
2936 &attrs, 1);
2937 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05302938 close_complete_upcall(ep, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002939 __state_set(&ep->com, DEAD);
2940 release = 1;
2941 break;
2942 case ABORTING:
2943 case DEAD:
2944 break;
2945 default:
2946 BUG_ON(1);
2947 break;
2948 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002949 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002950 if (release)
2951 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05302952 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002953 return 0;
2954}
2955
2956static int terminate(struct c4iw_dev *dev, struct sk_buff *skb)
2957{
Steve Wise0e42c1f2010-09-10 11:15:09 -05002958 struct cpl_rdma_terminate *rpl = cplhdr(skb);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002959 unsigned int tid = GET_TID(rpl);
2960 struct c4iw_ep *ep;
2961 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002962
Hariprasad S944661d2016-05-06 22:18:03 +05302963 ep = get_ep_from_tid(dev, tid);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002964 BUG_ON(!ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002965
Steve Wise30c95c22011-05-09 22:06:22 -07002966 if (ep && ep->com.qp) {
Steve Wise0e42c1f2010-09-10 11:15:09 -05002967 printk(KERN_WARNING MOD "TERM received tid %u qpid %u\n", tid,
2968 ep->com.qp->wq.sq.qid);
2969 attrs.next_state = C4IW_QP_STATE_TERMINATE;
2970 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2971 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2972 } else
Steve Wise30c95c22011-05-09 22:06:22 -07002973 printk(KERN_WARNING MOD "TERM received tid %u no ep/qp\n", tid);
Hariprasad S944661d2016-05-06 22:18:03 +05302974 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002975
Steve Wisecfdda9d2010-04-21 15:30:06 -07002976 return 0;
2977}
2978
2979/*
2980 * Upcall from the adapter indicating data has been transmitted.
2981 * For us its just the single MPA request or reply. We can now free
2982 * the skb holding the mpa message.
2983 */
2984static int fw4_ack(struct c4iw_dev *dev, struct sk_buff *skb)
2985{
2986 struct c4iw_ep *ep;
2987 struct cpl_fw4_ack *hdr = cplhdr(skb);
2988 u8 credits = hdr->credits;
2989 unsigned int tid = GET_TID(hdr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002990
2991
Hariprasad S944661d2016-05-06 22:18:03 +05302992 ep = get_ep_from_tid(dev, tid);
2993 if (!ep)
2994 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002995 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
2996 if (credits == 0) {
Joe Perchesaa1ad262010-10-25 19:44:22 -07002997 PDBG("%s 0 credit ack ep %p tid %u state %u\n",
2998 __func__, ep, ep->hwtid, state_read(&ep->com));
Hariprasad S944661d2016-05-06 22:18:03 +05302999 goto out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003000 }
3001
3002 dst_confirm(ep->dst);
3003 if (ep->mpa_skb) {
3004 PDBG("%s last streaming msg ack ep %p tid %u state %u "
3005 "initiator %u freeing skb\n", __func__, ep, ep->hwtid,
3006 state_read(&ep->com), ep->mpa_attr.initiator ? 1 : 0);
3007 kfree_skb(ep->mpa_skb);
3008 ep->mpa_skb = NULL;
Hariprasad Se4b76a22016-05-06 22:17:59 +05303009 mutex_lock(&ep->com.mutex);
3010 if (test_bit(STOP_MPA_TIMER, &ep->com.flags))
3011 stop_ep_timer(ep);
3012 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003013 }
Hariprasad S944661d2016-05-06 22:18:03 +05303014out:
3015 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003016 return 0;
3017}
3018
Steve Wisecfdda9d2010-04-21 15:30:06 -07003019int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
3020{
Steve Wisea7db89e2014-03-21 20:40:35 +05303021 int err = 0;
3022 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003023 struct c4iw_ep *ep = to_ep(cm_id);
3024 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
3025
Steve Wisea7db89e2014-03-21 20:40:35 +05303026 mutex_lock(&ep->com.mutex);
Hariprasad Se8667a92016-05-06 22:18:06 +05303027 if (ep->com.state != MPA_REQ_RCVD) {
Steve Wisea7db89e2014-03-21 20:40:35 +05303028 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003029 c4iw_put_ep(&ep->com);
3030 return -ECONNRESET;
3031 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003032 set_bit(ULP_REJECT, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003033 if (mpa_rev == 0)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303034 disconnect = 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003035 else {
3036 err = send_mpa_reject(ep, pdata, pdata_len);
Steve Wisea7db89e2014-03-21 20:40:35 +05303037 disconnect = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003038 }
Steve Wisea7db89e2014-03-21 20:40:35 +05303039 mutex_unlock(&ep->com.mutex);
Hariprasad Se4b76a22016-05-06 22:17:59 +05303040 if (disconnect) {
3041 stop_ep_timer(ep);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303042 err = c4iw_ep_disconnect(ep, disconnect == 2, GFP_KERNEL);
Hariprasad Se4b76a22016-05-06 22:17:59 +05303043 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003044 c4iw_put_ep(&ep->com);
3045 return 0;
3046}
3047
3048int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
3049{
3050 int err;
3051 struct c4iw_qp_attributes attrs;
3052 enum c4iw_qp_attr_mask mask;
3053 struct c4iw_ep *ep = to_ep(cm_id);
3054 struct c4iw_dev *h = to_c4iw_dev(cm_id->device);
3055 struct c4iw_qp *qp = get_qhp(h, conn_param->qpn);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303056 int abort = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003057
3058 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
Steve Wisea7db89e2014-03-21 20:40:35 +05303059
3060 mutex_lock(&ep->com.mutex);
Hariprasad Se8667a92016-05-06 22:18:06 +05303061 if (ep->com.state != MPA_REQ_RCVD) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003062 err = -ECONNRESET;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303063 goto err_out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003064 }
3065
Steve Wisecfdda9d2010-04-21 15:30:06 -07003066 BUG_ON(!qp);
3067
Vipul Pandya793dad92012-12-10 09:30:56 +00003068 set_bit(ULP_ACCEPT, &ep->com.history);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303069 if ((conn_param->ord > cur_max_read_depth(ep->com.dev)) ||
3070 (conn_param->ird > cur_max_read_depth(ep->com.dev))) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003071 err = -EINVAL;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303072 goto err_abort;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003073 }
3074
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303075 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
3076 if (conn_param->ord > ep->ird) {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303077 if (RELAXED_IRD_NEGOTIATION) {
3078 ep->ord = ep->ird;
3079 } else {
3080 ep->ird = conn_param->ird;
3081 ep->ord = conn_param->ord;
3082 send_mpa_reject(ep, conn_param->private_data,
3083 conn_param->private_data_len);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303084 err = -ENOMEM;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303085 goto err_abort;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303086 }
3087 }
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303088 if (conn_param->ird < ep->ord) {
3089 if (RELAXED_IRD_NEGOTIATION &&
3090 ep->ord <= h->rdev.lldi.max_ordird_qp) {
3091 conn_param->ird = ep->ord;
3092 } else {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303093 err = -ENOMEM;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303094 goto err_abort;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303095 }
3096 }
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303097 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003098 ep->ird = conn_param->ird;
3099 ep->ord = conn_param->ord;
3100
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303101 if (ep->mpa_attr.version == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303102 if (peer2peer && ep->ird == 0)
3103 ep->ird = 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303104 } else {
3105 if (peer2peer &&
3106 (ep->mpa_attr.p2p_type != FW_RI_INIT_P2PTYPE_DISABLED) &&
Hariprasad Sf57b7802015-09-08 09:56:59 +05303107 (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ) && ep->ird == 0)
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303108 ep->ird = 1;
3109 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003110
3111 PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord);
3112
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303113 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303114 ref_cm_id(&ep->com);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303115 ep->com.qp = qp;
Vipul Pandya325abea2013-01-07 13:11:53 +00003116 ref_qp(ep);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303117
Steve Wisecfdda9d2010-04-21 15:30:06 -07003118 /* bind QP to EP and move to RTS */
3119 attrs.mpa_attr = ep->mpa_attr;
3120 attrs.max_ird = ep->ird;
3121 attrs.max_ord = ep->ord;
3122 attrs.llp_stream_handle = ep;
3123 attrs.next_state = C4IW_QP_STATE_RTS;
3124
3125 /* bind QP and TID with INIT_WR */
3126 mask = C4IW_QP_ATTR_NEXT_STATE |
3127 C4IW_QP_ATTR_LLP_STREAM_HANDLE |
3128 C4IW_QP_ATTR_MPA_ATTR |
3129 C4IW_QP_ATTR_MAX_IRD |
3130 C4IW_QP_ATTR_MAX_ORD;
3131
3132 err = c4iw_modify_qp(ep->com.qp->rhp,
3133 ep->com.qp, mask, &attrs, 1);
3134 if (err)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303135 goto err_deref_cm_id;
Hariprasad Se4b76a22016-05-06 22:17:59 +05303136
3137 set_bit(STOP_MPA_TIMER, &ep->com.flags);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003138 err = send_mpa_reply(ep, conn_param->private_data,
3139 conn_param->private_data_len);
3140 if (err)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303141 goto err_deref_cm_id;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003142
Steve Wisea7db89e2014-03-21 20:40:35 +05303143 __state_set(&ep->com, FPDU_MODE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003144 established_upcall(ep);
Steve Wisea7db89e2014-03-21 20:40:35 +05303145 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003146 c4iw_put_ep(&ep->com);
3147 return 0;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303148err_deref_cm_id:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303149 deref_cm_id(&ep->com);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303150err_abort:
3151 abort = 1;
3152err_out:
Steve Wisea7db89e2014-03-21 20:40:35 +05303153 mutex_unlock(&ep->com.mutex);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303154 if (abort)
3155 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003156 c4iw_put_ep(&ep->com);
3157 return err;
3158}
3159
Vipul Pandya830662f2013-07-04 16:10:47 +05303160static int pick_local_ipaddrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
3161{
3162 struct in_device *ind;
3163 int found = 0;
Steve Wise170003c2016-02-26 09:18:03 -06003164 struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->m_local_addr;
3165 struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303166
3167 ind = in_dev_get(dev->rdev.lldi.ports[0]);
3168 if (!ind)
3169 return -EADDRNOTAVAIL;
3170 for_primary_ifa(ind) {
3171 laddr->sin_addr.s_addr = ifa->ifa_address;
3172 raddr->sin_addr.s_addr = ifa->ifa_address;
3173 found = 1;
3174 break;
3175 }
3176 endfor_ifa(ind);
3177 in_dev_put(ind);
3178 return found ? 0 : -EADDRNOTAVAIL;
3179}
3180
3181static int get_lladdr(struct net_device *dev, struct in6_addr *addr,
3182 unsigned char banned_flags)
3183{
3184 struct inet6_dev *idev;
3185 int err = -EADDRNOTAVAIL;
3186
3187 rcu_read_lock();
3188 idev = __in6_dev_get(dev);
3189 if (idev != NULL) {
3190 struct inet6_ifaddr *ifp;
3191
3192 read_lock_bh(&idev->lock);
3193 list_for_each_entry(ifp, &idev->addr_list, if_list) {
3194 if (ifp->scope == IFA_LINK &&
3195 !(ifp->flags & banned_flags)) {
3196 memcpy(addr, &ifp->addr, 16);
3197 err = 0;
3198 break;
3199 }
3200 }
3201 read_unlock_bh(&idev->lock);
3202 }
3203 rcu_read_unlock();
3204 return err;
3205}
3206
3207static int pick_local_ip6addrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
3208{
3209 struct in6_addr uninitialized_var(addr);
Steve Wise170003c2016-02-26 09:18:03 -06003210 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)&cm_id->m_local_addr;
3211 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)&cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303212
Nicholas Krause54b9a962015-08-26 23:00:59 -04003213 if (!get_lladdr(dev->rdev.lldi.ports[0], &addr, IFA_F_TENTATIVE)) {
Vipul Pandya830662f2013-07-04 16:10:47 +05303214 memcpy(la6->sin6_addr.s6_addr, &addr, 16);
3215 memcpy(ra6->sin6_addr.s6_addr, &addr, 16);
3216 return 0;
3217 }
3218 return -EADDRNOTAVAIL;
3219}
3220
Steve Wisecfdda9d2010-04-21 15:30:06 -07003221int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
3222{
Steve Wisecfdda9d2010-04-21 15:30:06 -07003223 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
3224 struct c4iw_ep *ep;
David Miller3786cf12011-12-02 16:52:31 +00003225 int err = 0;
Steve Wise9eccfe12014-03-26 17:08:09 -05003226 struct sockaddr_in *laddr;
3227 struct sockaddr_in *raddr;
3228 struct sockaddr_in6 *laddr6;
3229 struct sockaddr_in6 *raddr6;
Vipul Pandya830662f2013-07-04 16:10:47 +05303230 __u8 *ra;
3231 int iptype;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003232
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303233 if ((conn_param->ord > cur_max_read_depth(dev)) ||
3234 (conn_param->ird > cur_max_read_depth(dev))) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003235 err = -EINVAL;
3236 goto out;
3237 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003238 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
3239 if (!ep) {
3240 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
3241 err = -ENOMEM;
3242 goto out;
3243 }
3244 init_timer(&ep->timer);
3245 ep->plen = conn_param->private_data_len;
3246 if (ep->plen)
3247 memcpy(ep->mpa_pkt + sizeof(struct mpa_message),
3248 conn_param->private_data, ep->plen);
3249 ep->ird = conn_param->ird;
3250 ep->ord = conn_param->ord;
3251
3252 if (peer2peer && ep->ord == 0)
3253 ep->ord = 1;
3254
Steve Wisecfdda9d2010-04-21 15:30:06 -07003255 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303256 ref_cm_id(&ep->com);
3257 ep->com.dev = dev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003258 ep->com.qp = get_qhp(dev, conn_param->qpn);
Vipul Pandya830662f2013-07-04 16:10:47 +05303259 if (!ep->com.qp) {
3260 PDBG("%s qpn 0x%x not found!\n", __func__, conn_param->qpn);
3261 err = -EINVAL;
Steve Wise9eccfe12014-03-26 17:08:09 -05003262 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303263 }
Vipul Pandya325abea2013-01-07 13:11:53 +00003264 ref_qp(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003265 PDBG("%s qpn 0x%x qp %p cm_id %p\n", __func__, conn_param->qpn,
3266 ep->com.qp, cm_id);
3267
3268 /*
3269 * Allocate an active TID to initiate a TCP connection.
3270 */
3271 ep->atid = cxgb4_alloc_atid(dev->rdev.lldi.tids, ep);
3272 if (ep->atid == -1) {
3273 printk(KERN_ERR MOD "%s - cannot alloc atid.\n", __func__);
3274 err = -ENOMEM;
Steve Wise9eccfe12014-03-26 17:08:09 -05003275 goto fail1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003276 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003277 insert_handle(dev, &dev->atid_idr, ep, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003278
Steve Wise170003c2016-02-26 09:18:03 -06003279 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -05003280 sizeof(ep->com.local_addr));
Steve Wise170003c2016-02-26 09:18:03 -06003281 memcpy(&ep->com.remote_addr, &cm_id->m_remote_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -05003282 sizeof(ep->com.remote_addr));
3283
Steve Wise170003c2016-02-26 09:18:03 -06003284 laddr = (struct sockaddr_in *)&ep->com.local_addr;
3285 raddr = (struct sockaddr_in *)&ep->com.remote_addr;
3286 laddr6 = (struct sockaddr_in6 *)&ep->com.local_addr;
3287 raddr6 = (struct sockaddr_in6 *) &ep->com.remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -05003288
Steve Wise170003c2016-02-26 09:18:03 -06003289 if (cm_id->m_remote_addr.ss_family == AF_INET) {
Vipul Pandya830662f2013-07-04 16:10:47 +05303290 iptype = 4;
3291 ra = (__u8 *)&raddr->sin_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003292
Vipul Pandya830662f2013-07-04 16:10:47 +05303293 /*
3294 * Handle loopback requests to INADDR_ANY.
3295 */
3296 if ((__force int)raddr->sin_addr.s_addr == INADDR_ANY) {
3297 err = pick_local_ipaddrs(dev, cm_id);
3298 if (err)
Steve Wise9eccfe12014-03-26 17:08:09 -05003299 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303300 }
3301
3302 /* find a route */
3303 PDBG("%s saddr %pI4 sport 0x%x raddr %pI4 rport 0x%x\n",
3304 __func__, &laddr->sin_addr, ntohs(laddr->sin_port),
3305 ra, ntohs(raddr->sin_port));
3306 ep->dst = find_route(dev, laddr->sin_addr.s_addr,
3307 raddr->sin_addr.s_addr, laddr->sin_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303308 raddr->sin_port, cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05303309 } else {
3310 iptype = 6;
3311 ra = (__u8 *)&raddr6->sin6_addr;
3312
3313 /*
3314 * Handle loopback requests to INADDR_ANY.
3315 */
3316 if (ipv6_addr_type(&raddr6->sin6_addr) == IPV6_ADDR_ANY) {
3317 err = pick_local_ip6addrs(dev, cm_id);
3318 if (err)
Steve Wise9eccfe12014-03-26 17:08:09 -05003319 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303320 }
3321
3322 /* find a route */
3323 PDBG("%s saddr %pI6 sport 0x%x raddr %pI6 rport 0x%x\n",
3324 __func__, laddr6->sin6_addr.s6_addr,
3325 ntohs(laddr6->sin6_port),
3326 raddr6->sin6_addr.s6_addr, ntohs(raddr6->sin6_port));
3327 ep->dst = find_route6(dev, laddr6->sin6_addr.s6_addr,
3328 raddr6->sin6_addr.s6_addr,
3329 laddr6->sin6_port, raddr6->sin6_port, 0,
3330 raddr6->sin6_scope_id);
3331 }
3332 if (!ep->dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003333 printk(KERN_ERR MOD "%s - cannot find route.\n", __func__);
3334 err = -EHOSTUNREACH;
Steve Wise9eccfe12014-03-26 17:08:09 -05003335 goto fail2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003336 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003337
Hariprasad S963cab52015-09-23 17:19:27 +05303338 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, true,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303339 ep->com.dev->rdev.lldi.adapter_type, cm_id->tos);
David Miller3786cf12011-12-02 16:52:31 +00003340 if (err) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003341 printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
Steve Wise9eccfe12014-03-26 17:08:09 -05003342 goto fail3;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003343 }
3344
3345 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
3346 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
3347 ep->l2t->idx);
3348
3349 state_set(&ep->com, CONNECTING);
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303350 ep->tos = cm_id->tos;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003351
3352 /* send connect request to rnic */
3353 err = send_connect(ep);
3354 if (!err)
3355 goto out;
3356
3357 cxgb4_l2t_release(ep->l2t);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003358fail3:
Steve Wise9eccfe12014-03-26 17:08:09 -05003359 dst_release(ep->dst);
3360fail2:
Vipul Pandya793dad92012-12-10 09:30:56 +00003361 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003362 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
Steve Wise9eccfe12014-03-26 17:08:09 -05003363fail1:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303364 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003365 c4iw_put_ep(&ep->com);
3366out:
3367 return err;
3368}
3369
Vipul Pandya830662f2013-07-04 16:10:47 +05303370static int create_server6(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
3371{
3372 int err;
Steve Wise9eccfe12014-03-26 17:08:09 -05003373 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06003374 &ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303375
Hariprasad S28de1f72016-01-13 10:03:14 +05303376 if (ipv6_addr_type(&sin6->sin6_addr) != IPV6_ADDR_ANY) {
3377 err = cxgb4_clip_get(ep->com.dev->rdev.lldi.ports[0],
3378 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
3379 if (err)
3380 return err;
3381 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303382 c4iw_init_wr_wait(&ep->com.wr_wait);
3383 err = cxgb4_create_server6(ep->com.dev->rdev.lldi.ports[0],
3384 ep->stid, &sin6->sin6_addr,
3385 sin6->sin6_port,
3386 ep->com.dev->rdev.lldi.rxq_ids[0]);
3387 if (!err)
3388 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
3389 &ep->com.wr_wait,
3390 0, 0, __func__);
Hariprasad Se6b11162014-12-08 15:02:47 +05303391 else if (err > 0)
3392 err = net_xmit_errno(err);
Hariprasad S28de1f72016-01-13 10:03:14 +05303393 if (err) {
3394 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3395 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
Vipul Pandya830662f2013-07-04 16:10:47 +05303396 pr_err("cxgb4_create_server6/filter failed err %d stid %d laddr %pI6 lport %d\n",
3397 err, ep->stid,
3398 sin6->sin6_addr.s6_addr, ntohs(sin6->sin6_port));
Hariprasad S28de1f72016-01-13 10:03:14 +05303399 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303400 return err;
3401}
3402
3403static int create_server4(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
3404{
3405 int err;
Steve Wise9eccfe12014-03-26 17:08:09 -05003406 struct sockaddr_in *sin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06003407 &ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303408
3409 if (dev->rdev.lldi.enable_fw_ofld_conn) {
3410 do {
3411 err = cxgb4_create_server_filter(
3412 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3413 sin->sin_addr.s_addr, sin->sin_port, 0,
3414 ep->com.dev->rdev.lldi.rxq_ids[0], 0, 0);
3415 if (err == -EBUSY) {
Hariprasad S99718e52015-09-08 09:56:57 +05303416 if (c4iw_fatal_error(&ep->com.dev->rdev)) {
3417 err = -EIO;
3418 break;
3419 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303420 set_current_state(TASK_UNINTERRUPTIBLE);
3421 schedule_timeout(usecs_to_jiffies(100));
3422 }
3423 } while (err == -EBUSY);
3424 } else {
3425 c4iw_init_wr_wait(&ep->com.wr_wait);
3426 err = cxgb4_create_server(ep->com.dev->rdev.lldi.ports[0],
3427 ep->stid, sin->sin_addr.s_addr, sin->sin_port,
3428 0, ep->com.dev->rdev.lldi.rxq_ids[0]);
3429 if (!err)
3430 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
3431 &ep->com.wr_wait,
3432 0, 0, __func__);
Hariprasad Se6b11162014-12-08 15:02:47 +05303433 else if (err > 0)
3434 err = net_xmit_errno(err);
Vipul Pandya830662f2013-07-04 16:10:47 +05303435 }
3436 if (err)
3437 pr_err("cxgb4_create_server/filter failed err %d stid %d laddr %pI4 lport %d\n"
3438 , err, ep->stid,
3439 &sin->sin_addr, ntohs(sin->sin_port));
3440 return err;
3441}
3442
Steve Wisecfdda9d2010-04-21 15:30:06 -07003443int c4iw_create_listen(struct iw_cm_id *cm_id, int backlog)
3444{
3445 int err = 0;
3446 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
3447 struct c4iw_listen_ep *ep;
3448
Steve Wisecfdda9d2010-04-21 15:30:06 -07003449 might_sleep();
3450
3451 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
3452 if (!ep) {
3453 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
3454 err = -ENOMEM;
3455 goto fail1;
3456 }
3457 PDBG("%s ep %p\n", __func__, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003458 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303459 ref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003460 ep->com.dev = dev;
3461 ep->backlog = backlog;
Steve Wise170003c2016-02-26 09:18:03 -06003462 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
Steve Wise24d44a32013-07-04 16:10:44 +05303463 sizeof(ep->com.local_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07003464
3465 /*
3466 * Allocate a server TID.
3467 */
Kumar Sanghvi8c044692013-12-18 16:38:25 +05303468 if (dev->rdev.lldi.enable_fw_ofld_conn &&
3469 ep->com.local_addr.ss_family == AF_INET)
Vipul Pandya830662f2013-07-04 16:10:47 +05303470 ep->stid = cxgb4_alloc_sftid(dev->rdev.lldi.tids,
Steve Wise170003c2016-02-26 09:18:03 -06003471 cm_id->m_local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003472 else
Vipul Pandya830662f2013-07-04 16:10:47 +05303473 ep->stid = cxgb4_alloc_stid(dev->rdev.lldi.tids,
Steve Wise170003c2016-02-26 09:18:03 -06003474 cm_id->m_local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003475
Steve Wisecfdda9d2010-04-21 15:30:06 -07003476 if (ep->stid == -1) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003477 printk(KERN_ERR MOD "%s - cannot alloc stid.\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003478 err = -ENOMEM;
3479 goto fail2;
3480 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003481 insert_handle(dev, &dev->stid_idr, ep, ep->stid);
Steve Wise9eccfe12014-03-26 17:08:09 -05003482
Steve Wise170003c2016-02-26 09:18:03 -06003483 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
3484 sizeof(ep->com.local_addr));
Steve Wise9eccfe12014-03-26 17:08:09 -05003485
Steve Wisecfdda9d2010-04-21 15:30:06 -07003486 state_set(&ep->com, LISTEN);
Vipul Pandya830662f2013-07-04 16:10:47 +05303487 if (ep->com.local_addr.ss_family == AF_INET)
3488 err = create_server4(dev, ep);
3489 else
3490 err = create_server6(dev, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003491 if (!err) {
3492 cm_id->provider_data = ep;
3493 goto out;
3494 }
Steve Wise9eccfe12014-03-26 17:08:09 -05003495
Vipul Pandya830662f2013-07-04 16:10:47 +05303496 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
3497 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003498fail2:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303499 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003500 c4iw_put_ep(&ep->com);
3501fail1:
3502out:
3503 return err;
3504}
3505
3506int c4iw_destroy_listen(struct iw_cm_id *cm_id)
3507{
3508 int err;
3509 struct c4iw_listen_ep *ep = to_listen_ep(cm_id);
3510
3511 PDBG("%s ep %p\n", __func__, ep);
3512
3513 might_sleep();
3514 state_set(&ep->com, DEAD);
Vipul Pandya830662f2013-07-04 16:10:47 +05303515 if (ep->com.dev->rdev.lldi.enable_fw_ofld_conn &&
3516 ep->com.local_addr.ss_family == AF_INET) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003517 err = cxgb4_remove_server_filter(
3518 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3519 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
3520 } else {
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303521 struct sockaddr_in6 *sin6;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003522 c4iw_init_wr_wait(&ep->com.wr_wait);
Vipul Pandya830662f2013-07-04 16:10:47 +05303523 err = cxgb4_remove_server(
3524 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3525 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003526 if (err)
3527 goto done;
3528 err = c4iw_wait_for_reply(&ep->com.dev->rdev, &ep->com.wr_wait,
3529 0, 0, __func__);
Steve Wise170003c2016-02-26 09:18:03 -06003530 sin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303531 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3532 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003533 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003534 remove_handle(ep->com.dev, &ep->com.dev->stid_idr, ep->stid);
Vipul Pandya830662f2013-07-04 16:10:47 +05303535 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
3536 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003537done:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303538 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003539 c4iw_put_ep(&ep->com);
3540 return err;
3541}
3542
3543int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
3544{
3545 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003546 int close = 0;
3547 int fatal = 0;
3548 struct c4iw_rdev *rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003549
Steve Wise2f5b48c2010-09-10 11:15:36 -05003550 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003551
3552 PDBG("%s ep %p state %s, abrupt %d\n", __func__, ep,
3553 states[ep->com.state], abrupt);
3554
Hariprasad S6e410d82016-05-05 01:27:31 +05303555 /*
3556 * Ref the ep here in case we have fatal errors causing the
3557 * ep to be released and freed.
3558 */
3559 c4iw_get_ep(&ep->com);
3560
Steve Wisecfdda9d2010-04-21 15:30:06 -07003561 rdev = &ep->com.dev->rdev;
3562 if (c4iw_fatal_error(rdev)) {
3563 fatal = 1;
Steve Wisebe13b2d2014-03-21 20:40:33 +05303564 close_complete_upcall(ep, -EIO);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003565 ep->com.state = DEAD;
3566 }
3567 switch (ep->com.state) {
3568 case MPA_REQ_WAIT:
3569 case MPA_REQ_SENT:
3570 case MPA_REQ_RCVD:
3571 case MPA_REP_SENT:
3572 case FPDU_MODE:
3573 close = 1;
3574 if (abrupt)
3575 ep->com.state = ABORTING;
3576 else {
3577 ep->com.state = CLOSING;
Steve Wiseca5a2202010-07-23 19:12:37 +00003578 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003579 }
3580 set_bit(CLOSE_SENT, &ep->com.flags);
3581 break;
3582 case CLOSING:
3583 if (!test_and_set_bit(CLOSE_SENT, &ep->com.flags)) {
3584 close = 1;
3585 if (abrupt) {
Steve Wiseb33bd0c2014-04-09 09:38:25 -05003586 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003587 ep->com.state = ABORTING;
3588 } else
3589 ep->com.state = MORIBUND;
3590 }
3591 break;
3592 case MORIBUND:
3593 case ABORTING:
3594 case DEAD:
3595 PDBG("%s ignoring disconnect ep %p state %u\n",
3596 __func__, ep, ep->com.state);
3597 break;
3598 default:
3599 BUG();
3600 break;
3601 }
3602
Steve Wisecfdda9d2010-04-21 15:30:06 -07003603 if (close) {
Steve Wise8da7e7a2011-06-14 20:59:27 +00003604 if (abrupt) {
Vipul Pandya793dad92012-12-10 09:30:56 +00003605 set_bit(EP_DISC_ABORT, &ep->com.history);
Steve Wisebe13b2d2014-03-21 20:40:33 +05303606 close_complete_upcall(ep, -ECONNRESET);
Steve Wise8da7e7a2011-06-14 20:59:27 +00003607 ret = send_abort(ep, NULL, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003608 } else {
3609 set_bit(EP_DISC_CLOSE, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003610 ret = send_halfclose(ep, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003611 }
Hariprasad S88bc230d2016-05-05 01:27:30 +05303612 if (ret) {
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303613 set_bit(EP_DISC_FAIL, &ep->com.history);
Hariprasad S88bc230d2016-05-05 01:27:30 +05303614 if (!abrupt) {
3615 stop_ep_timer(ep);
3616 close_complete_upcall(ep, -EIO);
3617 }
Hariprasad Sc00dcba2016-05-05 01:27:36 +05303618 if (ep->com.qp) {
3619 struct c4iw_qp_attributes attrs;
3620
3621 attrs.next_state = C4IW_QP_STATE_ERROR;
3622 ret = c4iw_modify_qp(ep->com.qp->rhp,
3623 ep->com.qp,
3624 C4IW_QP_ATTR_NEXT_STATE,
3625 &attrs, 1);
3626 if (ret)
3627 pr_err(MOD
3628 "%s - qp <- error failed!\n",
3629 __func__);
3630 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003631 fatal = 1;
Hariprasad S88bc230d2016-05-05 01:27:30 +05303632 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003633 }
Steve Wise8da7e7a2011-06-14 20:59:27 +00003634 mutex_unlock(&ep->com.mutex);
Hariprasad S6e410d82016-05-05 01:27:31 +05303635 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003636 if (fatal)
3637 release_ep_resources(ep);
3638 return ret;
3639}
3640
Vipul Pandya1cab7752012-12-10 09:30:55 +00003641static void active_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3642 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3643{
3644 struct c4iw_ep *ep;
Vipul Pandya793dad92012-12-10 09:30:56 +00003645 int atid = be32_to_cpu(req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003646
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003647 ep = (struct c4iw_ep *)lookup_atid(dev->rdev.lldi.tids,
3648 (__force u32) req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003649 if (!ep)
3650 return;
3651
3652 switch (req->retval) {
3653 case FW_ENOMEM:
Vipul Pandya793dad92012-12-10 09:30:56 +00003654 set_bit(ACT_RETRY_NOMEM, &ep->com.history);
3655 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3656 send_fw_act_open_req(ep, atid);
3657 return;
3658 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003659 case FW_EADDRINUSE:
Vipul Pandya793dad92012-12-10 09:30:56 +00003660 set_bit(ACT_RETRY_INUSE, &ep->com.history);
3661 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3662 send_fw_act_open_req(ep, atid);
3663 return;
3664 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003665 break;
3666 default:
3667 pr_info("%s unexpected ofld conn wr retval %d\n",
3668 __func__, req->retval);
3669 break;
3670 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003671 pr_err("active ofld_connect_wr failure %d atid %d\n",
3672 req->retval, atid);
3673 mutex_lock(&dev->rdev.stats.lock);
3674 dev->rdev.stats.act_ofld_conn_fails++;
3675 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003676 connect_reply_upcall(ep, status2errno(req->retval));
Vipul Pandya793dad92012-12-10 09:30:56 +00003677 state_set(&ep->com, DEAD);
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303678 if (ep->com.remote_addr.ss_family == AF_INET6) {
3679 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -06003680 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303681 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3682 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
3683 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003684 remove_handle(dev, &dev->atid_idr, atid);
3685 cxgb4_free_atid(dev->rdev.lldi.tids, atid);
3686 dst_release(ep->dst);
3687 cxgb4_l2t_release(ep->l2t);
3688 c4iw_put_ep(&ep->com);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003689}
3690
3691static void passive_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3692 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3693{
3694 struct sk_buff *rpl_skb;
3695 struct cpl_pass_accept_req *cpl;
3696 int ret;
3697
Paul Bolle710a3112013-02-05 20:51:30 +00003698 rpl_skb = (struct sk_buff *)(unsigned long)req->cookie;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003699 BUG_ON(!rpl_skb);
3700 if (req->retval) {
3701 PDBG("%s passive open failure %d\n", __func__, req->retval);
Vipul Pandya793dad92012-12-10 09:30:56 +00003702 mutex_lock(&dev->rdev.stats.lock);
3703 dev->rdev.stats.pas_ofld_conn_fails++;
3704 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003705 kfree_skb(rpl_skb);
3706 } else {
3707 cpl = (struct cpl_pass_accept_req *)cplhdr(rpl_skb);
3708 OPCODE_TID(cpl) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ,
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003709 (__force u32) htonl(
3710 (__force u32) req->tid)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003711 ret = pass_accept_req(dev, rpl_skb);
3712 if (!ret)
3713 kfree_skb(rpl_skb);
3714 }
3715 return;
3716}
3717
3718static int deferred_fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
Steve Wise2f5b48c2010-09-10 11:15:36 -05003719{
3720 struct cpl_fw6_msg *rpl = cplhdr(skb);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003721 struct cpl_fw6_msg_ofld_connection_wr_rpl *req;
3722
3723 switch (rpl->type) {
3724 case FW6_TYPE_CQE:
3725 c4iw_ev_dispatch(dev, (struct t4_cqe *)&rpl->data[0]);
3726 break;
3727 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
3728 req = (struct cpl_fw6_msg_ofld_connection_wr_rpl *)rpl->data;
3729 switch (req->t_state) {
3730 case TCP_SYN_SENT:
3731 active_ofld_conn_reply(dev, skb, req);
3732 break;
3733 case TCP_SYN_RECV:
3734 passive_ofld_conn_reply(dev, skb, req);
3735 break;
3736 default:
3737 pr_err("%s unexpected ofld conn wr state %d\n",
3738 __func__, req->t_state);
3739 break;
3740 }
3741 break;
3742 }
3743 return 0;
3744}
3745
3746static void build_cpl_pass_accept_req(struct sk_buff *skb, int stid , u8 tos)
3747{
Hariprasad S963cab52015-09-23 17:19:27 +05303748 __be32 l2info;
3749 __be16 hdr_len, vlantag, len;
3750 u16 eth_hdr_len;
3751 int tcp_hdr_len, ip_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003752 u8 intf;
3753 struct cpl_rx_pkt *cpl = cplhdr(skb);
3754 struct cpl_pass_accept_req *req;
3755 struct tcp_options_received tmp_opt;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003756 struct c4iw_dev *dev;
Hariprasad S963cab52015-09-23 17:19:27 +05303757 enum chip_type type;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003758
Vipul Pandyaf079af72013-03-14 05:08:58 +00003759 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003760 /* Store values from cpl_rx_pkt in temporary location. */
Hariprasad S963cab52015-09-23 17:19:27 +05303761 vlantag = cpl->vlan;
3762 len = cpl->len;
3763 l2info = cpl->l2info;
3764 hdr_len = cpl->hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003765 intf = cpl->iff;
3766
3767 __skb_pull(skb, sizeof(*req) + sizeof(struct rss_header));
3768
3769 /*
3770 * We need to parse the TCP options from SYN packet.
3771 * to generate cpl_pass_accept_req.
3772 */
3773 memset(&tmp_opt, 0, sizeof(tmp_opt));
3774 tcp_clear_options(&tmp_opt);
Christoph Paasch1a2c6182013-03-17 08:23:34 +00003775 tcp_parse_options(skb, &tmp_opt, 0, NULL);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003776
3777 req = (struct cpl_pass_accept_req *)__skb_push(skb, sizeof(*req));
3778 memset(req, 0, sizeof(*req));
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05303779 req->l2info = cpu_to_be16(SYN_INTF_V(intf) |
3780 SYN_MAC_IDX_V(RX_MACIDX_G(
Hariprasad S963cab52015-09-23 17:19:27 +05303781 be32_to_cpu(l2info))) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05303782 SYN_XACT_MATCH_F);
Hariprasad S963cab52015-09-23 17:19:27 +05303783 type = dev->rdev.lldi.adapter_type;
3784 tcp_hdr_len = RX_TCPHDR_LEN_G(be16_to_cpu(hdr_len));
3785 ip_hdr_len = RX_IPHDR_LEN_G(be16_to_cpu(hdr_len));
3786 req->hdr_len =
3787 cpu_to_be32(SYN_RX_CHAN_V(RX_CHAN_G(be32_to_cpu(l2info))));
3788 if (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) {
3789 eth_hdr_len = is_t4(type) ?
3790 RX_ETHHDR_LEN_G(be32_to_cpu(l2info)) :
3791 RX_T5_ETHHDR_LEN_G(be32_to_cpu(l2info));
3792 req->hdr_len |= cpu_to_be32(TCP_HDR_LEN_V(tcp_hdr_len) |
3793 IP_HDR_LEN_V(ip_hdr_len) |
3794 ETH_HDR_LEN_V(eth_hdr_len));
3795 } else { /* T6 and later */
3796 eth_hdr_len = RX_T6_ETHHDR_LEN_G(be32_to_cpu(l2info));
3797 req->hdr_len |= cpu_to_be32(T6_TCP_HDR_LEN_V(tcp_hdr_len) |
3798 T6_IP_HDR_LEN_V(ip_hdr_len) |
3799 T6_ETH_HDR_LEN_V(eth_hdr_len));
3800 }
3801 req->vlan = vlantag;
3802 req->len = len;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003803 req->tos_stid = cpu_to_be32(PASS_OPEN_TID_V(stid) |
3804 PASS_OPEN_TOS_V(tos));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003805 req->tcpopt.mss = htons(tmp_opt.mss_clamp);
3806 if (tmp_opt.wscale_ok)
3807 req->tcpopt.wsf = tmp_opt.snd_wscale;
3808 req->tcpopt.tstamp = tmp_opt.saw_tstamp;
3809 if (tmp_opt.sack_ok)
3810 req->tcpopt.sack = 1;
3811 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ, 0));
3812 return;
3813}
3814
3815static void send_fw_pass_open_req(struct c4iw_dev *dev, struct sk_buff *skb,
3816 __be32 laddr, __be16 lport,
3817 __be32 raddr, __be16 rport,
3818 u32 rcv_isn, u32 filter, u16 window,
3819 u32 rss_qid, u8 port_id)
3820{
3821 struct sk_buff *req_skb;
3822 struct fw_ofld_connection_wr *req;
3823 struct cpl_pass_accept_req *cpl = cplhdr(skb);
Steve Wise1ce1d472014-03-21 20:40:31 +05303824 int ret;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003825
3826 req_skb = alloc_skb(sizeof(struct fw_ofld_connection_wr), GFP_KERNEL);
3827 req = (struct fw_ofld_connection_wr *)__skb_put(req_skb, sizeof(*req));
3828 memset(req, 0, sizeof(*req));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003829 req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR) | FW_WR_COMPL_F);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303830 req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16)));
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05303831 req->le.version_cpl = htonl(FW_OFLD_CONNECTION_WR_CPL_F);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003832 req->le.filter = (__force __be32) filter;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003833 req->le.lport = lport;
3834 req->le.pport = rport;
3835 req->le.u.ipv4.lip = laddr;
3836 req->le.u.ipv4.pip = raddr;
3837 req->tcb.rcv_nxt = htonl(rcv_isn + 1);
3838 req->tcb.rcv_adv = htons(window);
3839 req->tcb.t_state_to_astid =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05303840 htonl(FW_OFLD_CONNECTION_WR_T_STATE_V(TCP_SYN_RECV) |
3841 FW_OFLD_CONNECTION_WR_RCV_SCALE_V(cpl->tcpopt.wsf) |
3842 FW_OFLD_CONNECTION_WR_ASTID_V(
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003843 PASS_OPEN_TID_G(ntohl(cpl->tos_stid))));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003844
3845 /*
3846 * We store the qid in opt2 which will be used by the firmware
3847 * to send us the wr response.
3848 */
Anish Bhattd7990b02014-11-12 17:15:57 -08003849 req->tcb.opt2 = htonl(RSS_QUEUE_V(rss_qid));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003850
3851 /*
3852 * We initialize the MSS index in TCB to 0xF.
3853 * So that when driver sends cpl_pass_accept_rpl
3854 * TCB picks up the correct value. If this was 0
3855 * TP will ignore any value > 0 for MSS index.
3856 */
Anish Bhattd7990b02014-11-12 17:15:57 -08003857 req->tcb.opt0 = cpu_to_be64(MSS_IDX_V(0xF));
Hariprasad S6198dd82015-04-22 01:44:59 +05303858 req->cookie = (uintptr_t)skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003859
3860 set_wr_txq(req_skb, CPL_PRIORITY_CONTROL, port_id);
Steve Wise1ce1d472014-03-21 20:40:31 +05303861 ret = cxgb4_ofld_send(dev->rdev.lldi.ports[0], req_skb);
3862 if (ret < 0) {
3863 pr_err("%s - cxgb4_ofld_send error %d - dropping\n", __func__,
3864 ret);
3865 kfree_skb(skb);
3866 kfree_skb(req_skb);
3867 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003868}
3869
3870/*
3871 * Handler for CPL_RX_PKT message. Need to handle cpl_rx_pkt
3872 * messages when a filter is being used instead of server to
3873 * redirect a syn packet. When packets hit filter they are redirected
3874 * to the offload queue and driver tries to establish the connection
3875 * using firmware work request.
3876 */
3877static int rx_pkt(struct c4iw_dev *dev, struct sk_buff *skb)
3878{
3879 int stid;
3880 unsigned int filter;
3881 struct ethhdr *eh = NULL;
3882 struct vlan_ethhdr *vlan_eh = NULL;
3883 struct iphdr *iph;
3884 struct tcphdr *tcph;
3885 struct rss_header *rss = (void *)skb->data;
3886 struct cpl_rx_pkt *cpl = (void *)skb->data;
3887 struct cpl_pass_accept_req *req = (void *)(rss + 1);
3888 struct l2t_entry *e;
3889 struct dst_entry *dst;
Hariprasad Sf86fac72016-05-06 22:18:07 +05303890 struct c4iw_ep *lep = NULL;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003891 u16 window;
3892 struct port_info *pi;
3893 struct net_device *pdev;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003894 u16 rss_qid, eth_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003895 int step;
3896 u32 tx_chan;
3897 struct neighbour *neigh;
3898
3899 /* Drop all non-SYN packets */
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08003900 if (!(cpl->l2info & cpu_to_be32(RXF_SYN_F)))
Vipul Pandya1cab7752012-12-10 09:30:55 +00003901 goto reject;
3902
3903 /*
3904 * Drop all packets which did not hit the filter.
3905 * Unlikely to happen.
3906 */
3907 if (!(rss->filter_hit && rss->filter_tid))
3908 goto reject;
3909
3910 /*
3911 * Calculate the server tid from filter hit index from cpl_rx_pkt.
3912 */
Kumar Sanghvia4ea0252013-12-18 16:38:24 +05303913 stid = (__force int) cpu_to_be32((__force u32) rss->hash_val);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003914
Hariprasad Sf86fac72016-05-06 22:18:07 +05303915 lep = (struct c4iw_ep *)get_ep_from_stid(dev, stid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003916 if (!lep) {
3917 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
3918 goto reject;
3919 }
3920
Hariprasad S963cab52015-09-23 17:19:27 +05303921 switch (CHELSIO_CHIP_VERSION(dev->rdev.lldi.adapter_type)) {
3922 case CHELSIO_T4:
3923 eth_hdr_len = RX_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3924 break;
3925 case CHELSIO_T5:
3926 eth_hdr_len = RX_T5_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3927 break;
3928 case CHELSIO_T6:
3929 eth_hdr_len = RX_T6_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3930 break;
3931 default:
3932 pr_err("T%d Chip is not supported\n",
3933 CHELSIO_CHIP_VERSION(dev->rdev.lldi.adapter_type));
3934 goto reject;
3935 }
3936
Vipul Pandyaf079af72013-03-14 05:08:58 +00003937 if (eth_hdr_len == ETH_HLEN) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003938 eh = (struct ethhdr *)(req + 1);
3939 iph = (struct iphdr *)(eh + 1);
3940 } else {
3941 vlan_eh = (struct vlan_ethhdr *)(req + 1);
3942 iph = (struct iphdr *)(vlan_eh + 1);
3943 skb->vlan_tci = ntohs(cpl->vlan);
3944 }
3945
3946 if (iph->version != 0x4)
3947 goto reject;
3948
3949 tcph = (struct tcphdr *)(iph + 1);
3950 skb_set_network_header(skb, (void *)iph - (void *)rss);
3951 skb_set_transport_header(skb, (void *)tcph - (void *)rss);
3952 skb_get(skb);
3953
3954 PDBG("%s lip 0x%x lport %u pip 0x%x pport %u tos %d\n", __func__,
3955 ntohl(iph->daddr), ntohs(tcph->dest), ntohl(iph->saddr),
3956 ntohs(tcph->source), iph->tos);
3957
Vipul Pandya830662f2013-07-04 16:10:47 +05303958 dst = find_route(dev, iph->daddr, iph->saddr, tcph->dest, tcph->source,
3959 iph->tos);
3960 if (!dst) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003961 pr_err("%s - failed to find dst entry!\n",
3962 __func__);
3963 goto reject;
3964 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003965 neigh = dst_neigh_lookup_skb(dst, skb);
3966
Zhouyi Zhouaaa0c232013-03-14 17:21:50 +00003967 if (!neigh) {
3968 pr_err("%s - failed to allocate neigh!\n",
3969 __func__);
3970 goto free_dst;
3971 }
3972
Vipul Pandya1cab7752012-12-10 09:30:55 +00003973 if (neigh->dev->flags & IFF_LOOPBACK) {
3974 pdev = ip_dev_find(&init_net, iph->daddr);
3975 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
3976 pdev, 0);
3977 pi = (struct port_info *)netdev_priv(pdev);
3978 tx_chan = cxgb4_port_chan(pdev);
3979 dev_put(pdev);
3980 } else {
Vipul Pandya830662f2013-07-04 16:10:47 +05303981 pdev = get_real_dev(neigh->dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003982 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
Vipul Pandya830662f2013-07-04 16:10:47 +05303983 pdev, 0);
3984 pi = (struct port_info *)netdev_priv(pdev);
3985 tx_chan = cxgb4_port_chan(pdev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003986 }
Steve Wiseebf00062014-03-19 17:44:40 +05303987 neigh_release(neigh);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003988 if (!e) {
3989 pr_err("%s - failed to allocate l2t entry!\n",
3990 __func__);
3991 goto free_dst;
3992 }
3993
3994 step = dev->rdev.lldi.nrxq / dev->rdev.lldi.nchan;
3995 rss_qid = dev->rdev.lldi.rxq_ids[pi->port_id * step];
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003996 window = (__force u16) htons((__force u16)tcph->window);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003997
3998 /* Calcuate filter portion for LE region. */
Kumar Sanghvi41b4f862013-12-18 16:38:26 +05303999 filter = (__force unsigned int) cpu_to_be32(cxgb4_select_ntuple(
4000 dev->rdev.lldi.ports[0],
4001 e));
Vipul Pandya1cab7752012-12-10 09:30:55 +00004002
4003 /*
4004 * Synthesize the cpl_pass_accept_req. We have everything except the
4005 * TID. Once firmware sends a reply with TID we update the TID field
4006 * in cpl and pass it through the regular cpl_pass_accept_req path.
4007 */
4008 build_cpl_pass_accept_req(skb, stid, iph->tos);
4009 send_fw_pass_open_req(dev, skb, iph->daddr, tcph->dest, iph->saddr,
4010 tcph->source, ntohl(tcph->seq), filter, window,
4011 rss_qid, pi->port_id);
4012 cxgb4_l2t_release(e);
4013free_dst:
4014 dst_release(dst);
4015reject:
Hariprasad Sf86fac72016-05-06 22:18:07 +05304016 if (lep)
4017 c4iw_put_ep(&lep->com);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004018 return 0;
4019}
4020
Steve Wisecfdda9d2010-04-21 15:30:06 -07004021/*
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004022 * These are the real handlers that are called from a
4023 * work queue.
4024 */
Hariprasad S9dec9002016-05-05 01:27:29 +05304025static c4iw_handler_func work_handlers[NUM_CPL_CMDS + NUM_FAKE_CPLS] = {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004026 [CPL_ACT_ESTABLISH] = act_establish,
4027 [CPL_ACT_OPEN_RPL] = act_open_rpl,
4028 [CPL_RX_DATA] = rx_data,
4029 [CPL_ABORT_RPL_RSS] = abort_rpl,
4030 [CPL_ABORT_RPL] = abort_rpl,
4031 [CPL_PASS_OPEN_RPL] = pass_open_rpl,
4032 [CPL_CLOSE_LISTSRV_RPL] = close_listsrv_rpl,
4033 [CPL_PASS_ACCEPT_REQ] = pass_accept_req,
4034 [CPL_PASS_ESTABLISH] = pass_establish,
4035 [CPL_PEER_CLOSE] = peer_close,
4036 [CPL_ABORT_REQ_RSS] = peer_abort,
4037 [CPL_CLOSE_CON_RPL] = close_con_rpl,
4038 [CPL_RDMA_TERMINATE] = terminate,
Steve Wise2f5b48c2010-09-10 11:15:36 -05004039 [CPL_FW4_ACK] = fw4_ack,
Vipul Pandya1cab7752012-12-10 09:30:55 +00004040 [CPL_FW6_MSG] = deferred_fw6_msg,
Hariprasad S9dec9002016-05-05 01:27:29 +05304041 [CPL_RX_PKT] = rx_pkt,
Hariprasad S8d1f1a62016-05-06 22:17:57 +05304042 [FAKE_CPL_PUT_EP_SAFE] = _put_ep_safe,
4043 [FAKE_CPL_PASS_PUT_EP_SAFE] = _put_pass_ep_safe
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004044};
4045
4046static void process_timeout(struct c4iw_ep *ep)
4047{
4048 struct c4iw_qp_attributes attrs;
4049 int abort = 1;
4050
Steve Wise2f5b48c2010-09-10 11:15:36 -05004051 mutex_lock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004052 PDBG("%s ep %p tid %u state %d\n", __func__, ep, ep->hwtid,
4053 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00004054 set_bit(TIMEDOUT, &ep->com.history);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004055 switch (ep->com.state) {
4056 case MPA_REQ_SENT:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004057 connect_reply_upcall(ep, -ETIMEDOUT);
4058 break;
4059 case MPA_REQ_WAIT:
Hariprasad Sceb110a2016-05-06 22:18:05 +05304060 case MPA_REQ_RCVD:
Hariprasad Se4b76a22016-05-06 22:17:59 +05304061 case MPA_REP_SENT:
Hariprasad Sceb110a2016-05-06 22:18:05 +05304062 case FPDU_MODE:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004063 break;
4064 case CLOSING:
4065 case MORIBUND:
4066 if (ep->com.cm_id && ep->com.qp) {
4067 attrs.next_state = C4IW_QP_STATE_ERROR;
4068 c4iw_modify_qp(ep->com.qp->rhp,
4069 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
4070 &attrs, 1);
4071 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05304072 close_complete_upcall(ep, -ETIMEDOUT);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004073 break;
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004074 case ABORTING:
4075 case DEAD:
4076
4077 /*
4078 * These states are expected if the ep timed out at the same
4079 * time as another thread was calling stop_ep_timer().
4080 * So we silently do nothing for these states.
4081 */
4082 abort = 0;
4083 break;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004084 default:
Julia Lawall76f267b2012-11-03 10:58:27 +00004085 WARN(1, "%s unexpected state ep %p tid %u state %u\n",
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004086 __func__, ep, ep->hwtid, ep->com.state);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004087 abort = 0;
4088 }
Steve Wisecc18b932014-04-24 14:31:53 -05004089 mutex_unlock(&ep->com.mutex);
Hariprasad S69736272016-05-05 01:27:37 +05304090 if (abort)
4091 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004092 c4iw_put_ep(&ep->com);
4093}
4094
4095static void process_timedout_eps(void)
4096{
4097 struct c4iw_ep *ep;
4098
4099 spin_lock_irq(&timeout_lock);
4100 while (!list_empty(&timeout_list)) {
4101 struct list_head *tmp;
4102
4103 tmp = timeout_list.next;
4104 list_del(tmp);
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004105 tmp->next = NULL;
4106 tmp->prev = NULL;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004107 spin_unlock_irq(&timeout_lock);
4108 ep = list_entry(tmp, struct c4iw_ep, entry);
4109 process_timeout(ep);
4110 spin_lock_irq(&timeout_lock);
4111 }
4112 spin_unlock_irq(&timeout_lock);
4113}
4114
4115static void process_work(struct work_struct *work)
4116{
4117 struct sk_buff *skb = NULL;
4118 struct c4iw_dev *dev;
Dan Carpenterc1d73562010-05-31 14:00:53 +00004119 struct cpl_act_establish *rpl;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004120 unsigned int opcode;
4121 int ret;
4122
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004123 process_timedout_eps();
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004124 while ((skb = skb_dequeue(&rxq))) {
4125 rpl = cplhdr(skb);
4126 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
4127 opcode = rpl->ot.opcode;
4128
4129 BUG_ON(!work_handlers[opcode]);
4130 ret = work_handlers[opcode](dev, skb);
4131 if (!ret)
4132 kfree_skb(skb);
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004133 process_timedout_eps();
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004134 }
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004135}
4136
4137static DECLARE_WORK(skb_work, process_work);
4138
4139static void ep_timeout(unsigned long arg)
4140{
4141 struct c4iw_ep *ep = (struct c4iw_ep *)arg;
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004142 int kickit = 0;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004143
4144 spin_lock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004145 if (!test_and_set_bit(TIMEOUT, &ep->com.flags)) {
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004146 /*
4147 * Only insert if it is not already on the list.
4148 */
4149 if (!ep->entry.next) {
4150 list_add_tail(&ep->entry, &timeout_list);
4151 kickit = 1;
4152 }
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004153 }
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004154 spin_unlock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004155 if (kickit)
4156 queue_work(workq, &skb_work);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004157}
4158
4159/*
Steve Wisecfdda9d2010-04-21 15:30:06 -07004160 * All the CM events are handled on a work queue to have a safe context.
4161 */
4162static int sched(struct c4iw_dev *dev, struct sk_buff *skb)
4163{
4164
4165 /*
4166 * Save dev in the skb->cb area.
4167 */
4168 *((struct c4iw_dev **) (skb->cb + sizeof(void *))) = dev;
4169
4170 /*
4171 * Queue the skb and schedule the worker thread.
4172 */
4173 skb_queue_tail(&rxq, skb);
4174 queue_work(workq, &skb_work);
4175 return 0;
4176}
4177
4178static int set_tcb_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
4179{
4180 struct cpl_set_tcb_rpl *rpl = cplhdr(skb);
4181
4182 if (rpl->status != CPL_ERR_NONE) {
4183 printk(KERN_ERR MOD "Unexpected SET_TCB_RPL status %u "
4184 "for tid %u\n", rpl->status, GET_TID(rpl));
4185 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05004186 kfree_skb(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07004187 return 0;
4188}
4189
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004190static int fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
4191{
4192 struct cpl_fw6_msg *rpl = cplhdr(skb);
4193 struct c4iw_wr_wait *wr_waitp;
4194 int ret;
4195
4196 PDBG("%s type %u\n", __func__, rpl->type);
4197
4198 switch (rpl->type) {
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004199 case FW6_TYPE_WR_RPL:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004200 ret = (int)((be64_to_cpu(rpl->data[0]) >> 8) & 0xff);
Roland Dreierc8e081a2010-09-27 17:51:04 -07004201 wr_waitp = (struct c4iw_wr_wait *)(__force unsigned long) rpl->data[1];
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004202 PDBG("%s wr_waitp %p ret %u\n", __func__, wr_waitp, ret);
Steve Wised9594d92011-05-09 22:06:22 -07004203 if (wr_waitp)
4204 c4iw_wake_up(wr_waitp, ret ? -ret : 0);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004205 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004206 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004207 case FW6_TYPE_CQE:
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004208 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
Vipul Pandya1cab7752012-12-10 09:30:55 +00004209 sched(dev, skb);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004210 break;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004211 default:
4212 printk(KERN_ERR MOD "%s unexpected fw6 msg type %u\n", __func__,
4213 rpl->type);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004214 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004215 break;
4216 }
4217 return 0;
4218}
4219
Steve Wise8da7e7a2011-06-14 20:59:27 +00004220static int peer_abort_intr(struct c4iw_dev *dev, struct sk_buff *skb)
4221{
4222 struct cpl_abort_req_rss *req = cplhdr(skb);
4223 struct c4iw_ep *ep;
Steve Wise8da7e7a2011-06-14 20:59:27 +00004224 unsigned int tid = GET_TID(req);
4225
Hariprasad S944661d2016-05-06 22:18:03 +05304226 ep = get_ep_from_tid(dev, tid);
4227 /* This EP will be dereferenced in peer_abort() */
Steve Wise14b92222012-04-30 15:31:29 -05004228 if (!ep) {
4229 printk(KERN_WARNING MOD
4230 "Abort on non-existent endpoint, tid %d\n", tid);
4231 kfree_skb(skb);
4232 return 0;
4233 }
Steve Wise7a2cea22014-03-14 21:52:07 +05304234 if (is_neg_adv(req->status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05304235 PDBG("%s Negative advice on abort- tid %u status %d (%s)\n",
4236 __func__, ep->hwtid, req->status,
4237 neg_adv_str(req->status));
Hariprasad S944661d2016-05-06 22:18:03 +05304238 goto out;
Steve Wise8da7e7a2011-06-14 20:59:27 +00004239 }
4240 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
4241 ep->com.state);
4242
Hariprasad S093108c2016-05-06 22:18:09 +05304243 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Hariprasad S944661d2016-05-06 22:18:03 +05304244out:
Steve Wise8da7e7a2011-06-14 20:59:27 +00004245 sched(dev, skb);
4246 return 0;
4247}
4248
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004249/*
4250 * Most upcalls from the T4 Core go to sched() to
4251 * schedule the processing on a work queue.
4252 */
4253c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS] = {
4254 [CPL_ACT_ESTABLISH] = sched,
4255 [CPL_ACT_OPEN_RPL] = sched,
4256 [CPL_RX_DATA] = sched,
4257 [CPL_ABORT_RPL_RSS] = sched,
4258 [CPL_ABORT_RPL] = sched,
4259 [CPL_PASS_OPEN_RPL] = sched,
4260 [CPL_CLOSE_LISTSRV_RPL] = sched,
4261 [CPL_PASS_ACCEPT_REQ] = sched,
4262 [CPL_PASS_ESTABLISH] = sched,
4263 [CPL_PEER_CLOSE] = sched,
4264 [CPL_CLOSE_CON_RPL] = sched,
Steve Wise8da7e7a2011-06-14 20:59:27 +00004265 [CPL_ABORT_REQ_RSS] = peer_abort_intr,
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004266 [CPL_RDMA_TERMINATE] = sched,
4267 [CPL_FW4_ACK] = sched,
4268 [CPL_SET_TCB_RPL] = set_tcb_rpl,
Vipul Pandya1cab7752012-12-10 09:30:55 +00004269 [CPL_FW6_MSG] = fw6_msg,
4270 [CPL_RX_PKT] = sched
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004271};
4272
Steve Wisecfdda9d2010-04-21 15:30:06 -07004273int __init c4iw_cm_init(void)
4274{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004275 spin_lock_init(&timeout_lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07004276 skb_queue_head_init(&rxq);
4277
4278 workq = create_singlethread_workqueue("iw_cxgb4");
4279 if (!workq)
4280 return -ENOMEM;
4281
Steve Wisecfdda9d2010-04-21 15:30:06 -07004282 return 0;
4283}
4284
Steve Wise46c13762014-06-20 14:26:25 -05004285void c4iw_cm_term(void)
Steve Wisecfdda9d2010-04-21 15:30:06 -07004286{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004287 WARN_ON(!list_empty(&timeout_list));
Steve Wisecfdda9d2010-04-21 15:30:06 -07004288 flush_workqueue(workq);
4289 destroy_workqueue(workq);
4290}