blob: 2ba3403d8101768eb195cd298648be6289053f74 [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 S64bec742016-05-06 22:18:10 +0530518static void mpa_start_arp_failure(void *handle, struct sk_buff *skb)
519{
520 pr_err("ARP failure during MPA Negotiation - Closing Connection\n");
521}
522
Hariprasad S9dec9002016-05-05 01:27:29 +0530523enum {
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530524 NUM_FAKE_CPLS = 2,
Hariprasad S9dec9002016-05-05 01:27:29 +0530525 FAKE_CPL_PUT_EP_SAFE = NUM_CPL_CMDS + 0,
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530526 FAKE_CPL_PASS_PUT_EP_SAFE = NUM_CPL_CMDS + 1,
Hariprasad S9dec9002016-05-05 01:27:29 +0530527};
528
529static int _put_ep_safe(struct c4iw_dev *dev, struct sk_buff *skb)
530{
531 struct c4iw_ep *ep;
532
533 ep = *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *)));
534 release_ep_resources(ep);
535 return 0;
536}
537
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530538static int _put_pass_ep_safe(struct c4iw_dev *dev, struct sk_buff *skb)
539{
540 struct c4iw_ep *ep;
541
542 ep = *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *)));
543 c4iw_put_ep(&ep->parent_ep->com);
544 release_ep_resources(ep);
545 return 0;
546}
547
Hariprasad S9dec9002016-05-05 01:27:29 +0530548/*
549 * Fake up a special CPL opcode and call sched() so process_work() will call
550 * _put_ep_safe() in a safe context to free the ep resources. This is needed
551 * because ARP error handlers are called in an ATOMIC context, and
552 * _c4iw_free_ep() needs to block.
553 */
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530554static void queue_arp_failure_cpl(struct c4iw_ep *ep, struct sk_buff *skb,
555 int cpl)
Hariprasad S9dec9002016-05-05 01:27:29 +0530556{
557 struct cpl_act_establish *rpl = cplhdr(skb);
558
559 /* Set our special ARP_FAILURE opcode */
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530560 rpl->ot.opcode = cpl;
Hariprasad S9dec9002016-05-05 01:27:29 +0530561
562 /*
563 * Save ep in the skb->cb area, after where sched() will save the dev
564 * ptr.
565 */
566 *((struct c4iw_ep **)(skb->cb + 2 * sizeof(void *))) = ep;
567 sched(ep->com.dev, skb);
568}
569
570/* Handle an ARP failure for an accept */
571static void pass_accept_rpl_arp_failure(void *handle, struct sk_buff *skb)
572{
573 struct c4iw_ep *ep = handle;
574
575 pr_err(MOD "ARP failure during accept - tid %u -dropping connection\n",
576 ep->hwtid);
577
578 __state_set(&ep->com, DEAD);
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530579 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PASS_PUT_EP_SAFE);
Hariprasad S9dec9002016-05-05 01:27:29 +0530580}
581
Steve Wisecfdda9d2010-04-21 15:30:06 -0700582/*
583 * Handle an ARP failure for an active open.
584 */
585static void act_open_req_arp_failure(void *handle, struct sk_buff *skb)
586{
Hariprasad S5dab6d32014-06-23 19:12:36 +0530587 struct c4iw_ep *ep = handle;
588
Masanari Iidae3d132d2015-10-16 21:14:29 +0900589 printk(KERN_ERR MOD "ARP failure during connect\n");
Hariprasad S5dab6d32014-06-23 19:12:36 +0530590 connect_reply_upcall(ep, -EHOSTUNREACH);
Hariprasad S9dec9002016-05-05 01:27:29 +0530591 __state_set(&ep->com, DEAD);
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530592 if (ep->com.remote_addr.ss_family == AF_INET6) {
593 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -0600594 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530595 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
596 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
597 }
Hariprasad S5dab6d32014-06-23 19:12:36 +0530598 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
599 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
Hariprasad S8d1f1a62016-05-06 22:17:57 +0530600 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PUT_EP_SAFE);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700601}
602
603/*
604 * Handle an ARP failure for a CPL_ABORT_REQ. Change it into a no RST variant
605 * and send it along.
606 */
607static void abort_arp_failure(void *handle, struct sk_buff *skb)
608{
Hariprasad S761e19a2016-05-06 22:18:02 +0530609 int ret;
610 struct c4iw_ep *ep = handle;
611 struct c4iw_rdev *rdev = &ep->com.dev->rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700612 struct cpl_abort_req *req = cplhdr(skb);
613
614 PDBG("%s rdev %p\n", __func__, rdev);
615 req->cmd = CPL_ABORT_NO_RST;
Hariprasad S761e19a2016-05-06 22:18:02 +0530616 ret = c4iw_ofld_send(rdev, skb);
617 if (ret) {
618 __state_set(&ep->com, DEAD);
619 queue_arp_failure_cpl(ep, skb, FAKE_CPL_PUT_EP_SAFE);
620 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700621}
622
Hariprasad Sfef44222016-05-05 01:27:33 +0530623static int send_flowc(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700624{
625 unsigned int flowclen = 80;
626 struct fw_flowc_wr *flowc;
627 int i;
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530628 u16 vlan = ep->l2t->vlan;
629 int nparams;
630
631 if (vlan == CPL_L2T_VLAN_NONE)
632 nparams = 8;
633 else
634 nparams = 9;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700635
636 skb = get_skb(skb, flowclen, GFP_KERNEL);
637 flowc = (struct fw_flowc_wr *)__skb_put(skb, flowclen);
638
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530639 flowc->op_to_nparams = cpu_to_be32(FW_WR_OP_V(FW_FLOWC_WR) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530640 FW_FLOWC_WR_NPARAMS_V(nparams));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530641 flowc->flowid_len16 = cpu_to_be32(FW_WR_LEN16_V(DIV_ROUND_UP(flowclen,
642 16)) | FW_WR_FLOWID_V(ep->hwtid));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700643
644 flowc->mnemval[0].mnemonic = FW_FLOWC_MNEM_PFNVFN;
Hariprasad Shenai51678652014-11-21 12:52:02 +0530645 flowc->mnemval[0].val = cpu_to_be32(FW_PFVF_CMD_PFN_V
Hariprasad Shenai35b1de52014-06-27 19:23:47 +0530646 (ep->com.dev->rdev.lldi.pf));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700647 flowc->mnemval[1].mnemonic = FW_FLOWC_MNEM_CH;
648 flowc->mnemval[1].val = cpu_to_be32(ep->tx_chan);
649 flowc->mnemval[2].mnemonic = FW_FLOWC_MNEM_PORT;
650 flowc->mnemval[2].val = cpu_to_be32(ep->tx_chan);
651 flowc->mnemval[3].mnemonic = FW_FLOWC_MNEM_IQID;
652 flowc->mnemval[3].val = cpu_to_be32(ep->rss_qid);
653 flowc->mnemval[4].mnemonic = FW_FLOWC_MNEM_SNDNXT;
654 flowc->mnemval[4].val = cpu_to_be32(ep->snd_seq);
655 flowc->mnemval[5].mnemonic = FW_FLOWC_MNEM_RCVNXT;
656 flowc->mnemval[5].val = cpu_to_be32(ep->rcv_seq);
657 flowc->mnemval[6].mnemonic = FW_FLOWC_MNEM_SNDBUF;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530658 flowc->mnemval[6].val = cpu_to_be32(ep->snd_win);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700659 flowc->mnemval[7].mnemonic = FW_FLOWC_MNEM_MSS;
660 flowc->mnemval[7].val = cpu_to_be32(ep->emss);
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530661 if (nparams == 9) {
662 u16 pri;
663
664 pri = (vlan & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT;
665 flowc->mnemval[8].mnemonic = FW_FLOWC_MNEM_SCHEDCLASS;
666 flowc->mnemval[8].val = cpu_to_be32(pri);
667 } else {
668 /* Pad WR to 16 byte boundary */
669 flowc->mnemval[8].mnemonic = 0;
670 flowc->mnemval[8].val = 0;
671 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700672 for (i = 0; i < 9; i++) {
673 flowc->mnemval[i].r4[0] = 0;
674 flowc->mnemval[i].r4[1] = 0;
675 flowc->mnemval[i].r4[2] = 0;
676 }
677
678 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Hariprasad Sfef44222016-05-05 01:27:33 +0530679 return c4iw_ofld_send(&ep->com.dev->rdev, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700680}
681
682static int send_halfclose(struct c4iw_ep *ep, gfp_t gfp)
683{
684 struct cpl_close_con_req *req;
685 struct sk_buff *skb;
686 int wrlen = roundup(sizeof *req, 16);
687
688 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
689 skb = get_skb(NULL, wrlen, gfp);
690 if (!skb) {
691 printk(KERN_ERR MOD "%s - failed to alloc skb\n", __func__);
692 return -ENOMEM;
693 }
694 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
695 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
696 req = (struct cpl_close_con_req *) skb_put(skb, wrlen);
697 memset(req, 0, wrlen);
698 INIT_TP_WR(req, ep->hwtid);
699 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_CON_REQ,
700 ep->hwtid));
701 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
702}
703
704static int send_abort(struct c4iw_ep *ep, struct sk_buff *skb, gfp_t gfp)
705{
706 struct cpl_abort_req *req;
707 int wrlen = roundup(sizeof *req, 16);
708
709 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
710 skb = get_skb(skb, wrlen, gfp);
711 if (!skb) {
712 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
713 __func__);
714 return -ENOMEM;
715 }
716 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Hariprasad S761e19a2016-05-06 22:18:02 +0530717 t4_set_arp_err_handler(skb, ep, abort_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700718 req = (struct cpl_abort_req *) skb_put(skb, wrlen);
719 memset(req, 0, wrlen);
720 INIT_TP_WR(req, ep->hwtid);
721 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_REQ, ep->hwtid));
722 req->cmd = CPL_ABORT_SEND_RST;
723 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
724}
725
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530726static void best_mtu(const unsigned short *mtus, unsigned short mtu,
Hariprasad S04524a42014-09-24 03:53:41 +0530727 unsigned int *idx, int use_ts, int ipv6)
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530728{
Hariprasad S04524a42014-09-24 03:53:41 +0530729 unsigned short hdr_size = (ipv6 ?
730 sizeof(struct ipv6hdr) :
731 sizeof(struct iphdr)) +
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530732 sizeof(struct tcphdr) +
Hariprasad S04524a42014-09-24 03:53:41 +0530733 (use_ts ?
734 round_up(TCPOLEN_TIMESTAMP, 4) : 0);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530735 unsigned short data_size = mtu - hdr_size;
736
737 cxgb4_best_aligned_mtu(mtus, hdr_size, data_size, 8, idx);
738}
739
Steve Wisecfdda9d2010-04-21 15:30:06 -0700740static int send_connect(struct c4iw_ep *ep)
741{
Hariprasad S963cab52015-09-23 17:19:27 +0530742 struct cpl_act_open_req *req = NULL;
743 struct cpl_t5_act_open_req *t5req = NULL;
744 struct cpl_t6_act_open_req *t6req = NULL;
745 struct cpl_act_open_req6 *req6 = NULL;
746 struct cpl_t5_act_open_req6 *t5req6 = NULL;
747 struct cpl_t6_act_open_req6 *t6req6 = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700748 struct sk_buff *skb;
749 u64 opt0;
750 u32 opt2;
751 unsigned int mtu_idx;
752 int wscale;
Hariprasad S963cab52015-09-23 17:19:27 +0530753 int win, sizev4, sizev6, wrlen;
Steve Wise9eccfe12014-03-26 17:08:09 -0500754 struct sockaddr_in *la = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600755 &ep->com.local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500756 struct sockaddr_in *ra = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600757 &ep->com.remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500758 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600759 &ep->com.local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500760 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600761 &ep->com.remote_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530762 int ret;
Hariprasad S963cab52015-09-23 17:19:27 +0530763 enum chip_type adapter_type = ep->com.dev->rdev.lldi.adapter_type;
764 u32 isn = (prandom_u32() & ~7UL) - 1;
765
766 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
767 case CHELSIO_T4:
768 sizev4 = sizeof(struct cpl_act_open_req);
769 sizev6 = sizeof(struct cpl_act_open_req6);
770 break;
771 case CHELSIO_T5:
772 sizev4 = sizeof(struct cpl_t5_act_open_req);
773 sizev6 = sizeof(struct cpl_t5_act_open_req6);
774 break;
775 case CHELSIO_T6:
776 sizev4 = sizeof(struct cpl_t6_act_open_req);
777 sizev6 = sizeof(struct cpl_t6_act_open_req6);
778 break;
779 default:
780 pr_err("T%d Chip is not supported\n",
781 CHELSIO_CHIP_VERSION(adapter_type));
782 return -EINVAL;
783 }
Vipul Pandya830662f2013-07-04 16:10:47 +0530784
785 wrlen = (ep->com.remote_addr.ss_family == AF_INET) ?
786 roundup(sizev4, 16) :
787 roundup(sizev6, 16);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700788
789 PDBG("%s ep %p atid %u\n", __func__, ep, ep->atid);
790
791 skb = get_skb(NULL, wrlen, GFP_KERNEL);
792 if (!skb) {
793 printk(KERN_ERR MOD "%s - failed to alloc skb.\n",
794 __func__);
795 return -ENOMEM;
796 }
Steve Wised4f1a5c2010-07-23 19:12:32 +0000797 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700798
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +0530799 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +0530800 enable_tcp_timestamps,
801 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700802 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530803
804 /*
805 * Specify the largest window that will fit in opt0. The
806 * remainder will be specified in the rx_data_ack.
807 */
808 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -0800809 if (win > RCV_BUFSIZ_M)
810 win = RCV_BUFSIZ_M;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +0530811
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800812 opt0 = (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800813 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800814 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -0800815 WND_SCALE_V(wscale) |
816 MSS_IDX_V(mtu_idx) |
817 L2T_IDX_V(ep->l2t->idx) |
818 TX_CHAN_V(ep->tx_chan) |
819 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +0530820 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800821 ULP_MODE_V(ULP_MODE_TCPDDP) |
822 RCV_BUFSIZ_V(win);
823 opt2 = RX_CHANNEL_V(0) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800824 CCTRL_ECN_V(enable_ecn) |
Anish Bhattd7990b02014-11-12 17:15:57 -0800825 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700826 if (enable_tcp_timestamps)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800827 opt2 |= TSTAMPS_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700828 if (enable_tcp_sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -0800829 opt2 |= SACK_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700830 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -0800831 opt2 |= WND_SCALE_EN_F;
Hariprasad S963cab52015-09-23 17:19:27 +0530832 if (CHELSIO_CHIP_VERSION(adapter_type) > CHELSIO_T4) {
833 if (peer2peer)
834 isn += 4;
835
Anish Bhattd7990b02014-11-12 17:15:57 -0800836 opt2 |= T5_OPT_2_VALID_F;
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530837 opt2 |= CONG_CNTRL_V(CONG_ALG_TAHOE);
Hariprasad S0b741042015-04-22 01:44:58 +0530838 opt2 |= T5_ISS_F;
Steve Wise92e50112014-04-24 14:31:59 -0500839 }
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530840
841 if (ep->com.remote_addr.ss_family == AF_INET6)
842 cxgb4_clip_get(ep->com.dev->rdev.lldi.ports[0],
843 (const u32 *)&la6->sin6_addr.s6_addr, 1);
844
Hariprasad S5dab6d32014-06-23 19:12:36 +0530845 t4_set_arp_err_handler(skb, ep, act_open_req_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700846
Hariprasad S963cab52015-09-23 17:19:27 +0530847 if (ep->com.remote_addr.ss_family == AF_INET) {
848 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
849 case CHELSIO_T4:
850 req = (struct cpl_act_open_req *)skb_put(skb, wrlen);
Vipul Pandya830662f2013-07-04 16:10:47 +0530851 INIT_TP_WR(req, 0);
Hariprasad S963cab52015-09-23 17:19:27 +0530852 break;
853 case CHELSIO_T5:
854 t5req = (struct cpl_t5_act_open_req *)skb_put(skb,
855 wrlen);
856 INIT_TP_WR(t5req, 0);
857 req = (struct cpl_act_open_req *)t5req;
858 break;
859 case CHELSIO_T6:
860 t6req = (struct cpl_t6_act_open_req *)skb_put(skb,
861 wrlen);
862 INIT_TP_WR(t6req, 0);
863 req = (struct cpl_act_open_req *)t6req;
864 t5req = (struct cpl_t5_act_open_req *)t6req;
865 break;
866 default:
867 pr_err("T%d Chip is not supported\n",
868 CHELSIO_CHIP_VERSION(adapter_type));
869 ret = -EINVAL;
870 goto clip_release;
871 }
872
873 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ACT_OPEN_REQ,
874 ((ep->rss_qid<<14) | ep->atid)));
875 req->local_port = la->sin_port;
876 req->peer_port = ra->sin_port;
877 req->local_ip = la->sin_addr.s_addr;
878 req->peer_ip = ra->sin_addr.s_addr;
879 req->opt0 = cpu_to_be64(opt0);
880
881 if (is_t4(ep->com.dev->rdev.lldi.adapter_type)) {
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530882 req->params = cpu_to_be32(cxgb4_select_ntuple(
883 ep->com.dev->rdev.lldi.ports[0],
884 ep->l2t));
Vipul Pandya830662f2013-07-04 16:10:47 +0530885 req->opt2 = cpu_to_be32(opt2);
886 } else {
Hariprasad S963cab52015-09-23 17:19:27 +0530887 t5req->params = cpu_to_be64(FILTER_TUPLE_V(
888 cxgb4_select_ntuple(
889 ep->com.dev->rdev.lldi.ports[0],
890 ep->l2t)));
891 t5req->rsvd = cpu_to_be32(isn);
892 PDBG("%s snd_isn %u\n", __func__, t5req->rsvd);
893 t5req->opt2 = cpu_to_be32(opt2);
894 }
895 } else {
896 switch (CHELSIO_CHIP_VERSION(adapter_type)) {
897 case CHELSIO_T4:
Vipul Pandya830662f2013-07-04 16:10:47 +0530898 req6 = (struct cpl_act_open_req6 *)skb_put(skb, wrlen);
Vipul Pandya830662f2013-07-04 16:10:47 +0530899 INIT_TP_WR(req6, 0);
Hariprasad S963cab52015-09-23 17:19:27 +0530900 break;
901 case CHELSIO_T5:
902 t5req6 = (struct cpl_t5_act_open_req6 *)skb_put(skb,
903 wrlen);
904 INIT_TP_WR(t5req6, 0);
905 req6 = (struct cpl_act_open_req6 *)t5req6;
906 break;
907 case CHELSIO_T6:
908 t6req6 = (struct cpl_t6_act_open_req6 *)skb_put(skb,
909 wrlen);
910 INIT_TP_WR(t6req6, 0);
911 req6 = (struct cpl_act_open_req6 *)t6req6;
912 t5req6 = (struct cpl_t5_act_open_req6 *)t6req6;
913 break;
914 default:
915 pr_err("T%d Chip is not supported\n",
916 CHELSIO_CHIP_VERSION(adapter_type));
917 ret = -EINVAL;
918 goto clip_release;
919 }
920
921 OPCODE_TID(req6) = cpu_to_be32(MK_OPCODE_TID(CPL_ACT_OPEN_REQ6,
922 ((ep->rss_qid<<14)|ep->atid)));
923 req6->local_port = la6->sin6_port;
924 req6->peer_port = ra6->sin6_port;
925 req6->local_ip_hi = *((__be64 *)(la6->sin6_addr.s6_addr));
926 req6->local_ip_lo = *((__be64 *)(la6->sin6_addr.s6_addr + 8));
927 req6->peer_ip_hi = *((__be64 *)(ra6->sin6_addr.s6_addr));
928 req6->peer_ip_lo = *((__be64 *)(ra6->sin6_addr.s6_addr + 8));
929 req6->opt0 = cpu_to_be64(opt0);
930
931 if (is_t4(ep->com.dev->rdev.lldi.adapter_type)) {
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530932 req6->params = cpu_to_be32(cxgb4_select_ntuple(
933 ep->com.dev->rdev.lldi.ports[0],
934 ep->l2t));
Vipul Pandya830662f2013-07-04 16:10:47 +0530935 req6->opt2 = cpu_to_be32(opt2);
Vipul Pandya830662f2013-07-04 16:10:47 +0530936 } else {
Hariprasad S963cab52015-09-23 17:19:27 +0530937 t5req6->params = cpu_to_be64(FILTER_TUPLE_V(
938 cxgb4_select_ntuple(
Kumar Sanghvi41b4f862013-12-18 16:38:26 +0530939 ep->com.dev->rdev.lldi.ports[0],
Hariprasad Sda22b8962014-09-24 03:53:43 +0530940 ep->l2t)));
Hariprasad S963cab52015-09-23 17:19:27 +0530941 t5req6->rsvd = cpu_to_be32(isn);
942 PDBG("%s snd_isn %u\n", __func__, t5req6->rsvd);
943 t5req6->opt2 = cpu_to_be32(opt2);
Vipul Pandya830662f2013-07-04 16:10:47 +0530944 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000945 }
946
Vipul Pandya793dad92012-12-10 09:30:56 +0000947 set_bit(ACT_OPEN_REQ, &ep->com.history);
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530948 ret = c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Hariprasad S963cab52015-09-23 17:19:27 +0530949clip_release:
Hariprasad S84cc6ac62015-08-25 14:08:23 +0530950 if (ret && ep->com.remote_addr.ss_family == AF_INET6)
951 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
952 (const u32 *)&la6->sin6_addr.s6_addr, 1);
953 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700954}
955
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530956static int send_mpa_req(struct c4iw_ep *ep, struct sk_buff *skb,
957 u8 mpa_rev_to_use)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700958{
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530959 int mpalen, wrlen, ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700960 struct fw_ofld_tx_data_wr *req;
961 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530962 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700963
964 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
965
966 BUG_ON(skb_cloned(skb));
967
968 mpalen = sizeof(*mpa) + ep->plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +0530969 if (mpa_rev_to_use == 2)
970 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700971 wrlen = roundup(mpalen + sizeof *req, 16);
972 skb = get_skb(skb, wrlen, GFP_KERNEL);
973 if (!skb) {
974 connect_reply_upcall(ep, -ENOMEM);
Hariprasad Scaa6c9f2016-05-06 22:18:00 +0530975 return -ENOMEM;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700976 }
977 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
978
979 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
980 memset(req, 0, wrlen);
981 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530982 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
983 FW_WR_COMPL_F |
984 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700985 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530986 FW_WR_FLOWID_V(ep->hwtid) |
987 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -0700988 req->plen = cpu_to_be32(mpalen);
989 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +0530990 FW_OFLD_TX_DATA_WR_FLUSH_F |
991 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700992
993 mpa = (struct mpa_message *)(req + 1);
994 memcpy(mpa->key, MPA_KEY_REQ, sizeof(mpa->key));
Hariprasad S3d4e7992016-06-10 01:05:11 +0530995
996 mpa->flags = 0;
997 if (crc_enabled)
998 mpa->flags |= MPA_CRC;
999 if (markers_enabled) {
1000 mpa->flags |= MPA_MARKERS;
1001 ep->mpa_attr.recv_marker_enabled = 1;
1002 } else {
1003 ep->mpa_attr.recv_marker_enabled = 0;
1004 }
1005 if (mpa_rev_to_use == 2)
1006 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
1007
Steve Wisecfdda9d2010-04-21 15:30:06 -07001008 mpa->private_data_size = htons(ep->plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301009 mpa->revision = mpa_rev_to_use;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +05301010 if (mpa_rev_to_use == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301011 ep->tried_with_mpa_v1 = 1;
Kumar Sanghvi01b225e2011-11-28 22:09:15 +05301012 ep->retry_with_mpa_v1 = 0;
1013 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001014
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301015 if (mpa_rev_to_use == 2) {
Roland Dreierf747c342012-07-05 14:16:54 -07001016 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1017 sizeof (struct mpa_v2_conn_params));
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301018 PDBG("%s initiator ird %u ord %u\n", __func__, ep->ird,
1019 ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301020 mpa_v2_params.ird = htons((u16)ep->ird);
1021 mpa_v2_params.ord = htons((u16)ep->ord);
1022
1023 if (peer2peer) {
1024 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
1025 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
1026 mpa_v2_params.ord |=
1027 htons(MPA_V2_RDMA_WRITE_RTR);
1028 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
1029 mpa_v2_params.ord |=
1030 htons(MPA_V2_RDMA_READ_RTR);
1031 }
1032 memcpy(mpa->private_data, &mpa_v2_params,
1033 sizeof(struct mpa_v2_conn_params));
1034
1035 if (ep->plen)
1036 memcpy(mpa->private_data +
1037 sizeof(struct mpa_v2_conn_params),
1038 ep->mpa_pkt + sizeof(*mpa), ep->plen);
1039 } else
1040 if (ep->plen)
1041 memcpy(mpa->private_data,
1042 ep->mpa_pkt + sizeof(*mpa), ep->plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001043
1044 /*
1045 * Reference the mpa skb. This ensures the data area
1046 * will remain in memory until the hw acks the tx.
1047 * Function fw4_ack() will deref it.
1048 */
1049 skb_get(skb);
1050 t4_set_arp_err_handler(skb, NULL, arp_failure_discard);
1051 BUG_ON(ep->mpa_skb);
1052 ep->mpa_skb = skb;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301053 ret = c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1054 if (ret)
1055 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001056 start_ep_timer(ep);
Steve Wisea7db89e2014-03-21 20:40:35 +05301057 __state_set(&ep->com, MPA_REQ_SENT);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001058 ep->mpa_attr.initiator = 1;
Steve Wise9c88aa02014-03-21 20:40:34 +05301059 ep->snd_seq += mpalen;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301060 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001061}
1062
1063static int send_mpa_reject(struct c4iw_ep *ep, const void *pdata, u8 plen)
1064{
1065 int mpalen, wrlen;
1066 struct fw_ofld_tx_data_wr *req;
1067 struct mpa_message *mpa;
1068 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301069 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001070
1071 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
1072
1073 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301074 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
1075 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001076 wrlen = roundup(mpalen + sizeof *req, 16);
1077
1078 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1079 if (!skb) {
1080 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
1081 return -ENOMEM;
1082 }
1083 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
1084
1085 req = (struct fw_ofld_tx_data_wr *)skb_put(skb, wrlen);
1086 memset(req, 0, wrlen);
1087 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301088 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
1089 FW_WR_COMPL_F |
1090 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001091 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301092 FW_WR_FLOWID_V(ep->hwtid) |
1093 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001094 req->plen = cpu_to_be32(mpalen);
1095 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301096 FW_OFLD_TX_DATA_WR_FLUSH_F |
1097 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001098
1099 mpa = (struct mpa_message *)(req + 1);
1100 memset(mpa, 0, sizeof(*mpa));
1101 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
1102 mpa->flags = MPA_REJECT;
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00001103 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001104 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301105
1106 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
1107 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -07001108 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1109 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301110 mpa_v2_params.ird = htons(((u16)ep->ird) |
1111 (peer2peer ? MPA_V2_PEER2PEER_MODEL :
1112 0));
1113 mpa_v2_params.ord = htons(((u16)ep->ord) | (peer2peer ?
1114 (p2p_type ==
1115 FW_RI_INIT_P2PTYPE_RDMA_WRITE ?
1116 MPA_V2_RDMA_WRITE_RTR : p2p_type ==
1117 FW_RI_INIT_P2PTYPE_READ_REQ ?
1118 MPA_V2_RDMA_READ_RTR : 0) : 0));
1119 memcpy(mpa->private_data, &mpa_v2_params,
1120 sizeof(struct mpa_v2_conn_params));
1121
1122 if (ep->plen)
1123 memcpy(mpa->private_data +
1124 sizeof(struct mpa_v2_conn_params), pdata, plen);
1125 } else
1126 if (plen)
1127 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001128
1129 /*
1130 * Reference the mpa skb again. This ensures the data area
1131 * will remain in memory until the hw acks the tx.
1132 * Function fw4_ack() will deref it.
1133 */
1134 skb_get(skb);
1135 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
Hariprasad S64bec742016-05-06 22:18:10 +05301136 t4_set_arp_err_handler(skb, NULL, mpa_start_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001137 BUG_ON(ep->mpa_skb);
1138 ep->mpa_skb = skb;
Steve Wise9c88aa02014-03-21 20:40:34 +05301139 ep->snd_seq += mpalen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001140 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1141}
1142
1143static int send_mpa_reply(struct c4iw_ep *ep, const void *pdata, u8 plen)
1144{
1145 int mpalen, wrlen;
1146 struct fw_ofld_tx_data_wr *req;
1147 struct mpa_message *mpa;
1148 struct sk_buff *skb;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301149 struct mpa_v2_conn_params mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001150
1151 PDBG("%s ep %p tid %u pd_len %d\n", __func__, ep, ep->hwtid, ep->plen);
1152
1153 mpalen = sizeof(*mpa) + plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301154 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn)
1155 mpalen += sizeof(struct mpa_v2_conn_params);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001156 wrlen = roundup(mpalen + sizeof *req, 16);
1157
1158 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1159 if (!skb) {
1160 printk(KERN_ERR MOD "%s - cannot alloc skb!\n", __func__);
1161 return -ENOMEM;
1162 }
1163 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
1164
1165 req = (struct fw_ofld_tx_data_wr *) skb_put(skb, wrlen);
1166 memset(req, 0, wrlen);
1167 req->op_to_immdlen = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301168 FW_WR_OP_V(FW_OFLD_TX_DATA_WR) |
1169 FW_WR_COMPL_F |
1170 FW_WR_IMMDLEN_V(mpalen));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001171 req->flowid_len16 = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301172 FW_WR_FLOWID_V(ep->hwtid) |
1173 FW_WR_LEN16_V(wrlen >> 4));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001174 req->plen = cpu_to_be32(mpalen);
1175 req->tunnel_to_proxy = cpu_to_be32(
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301176 FW_OFLD_TX_DATA_WR_FLUSH_F |
1177 FW_OFLD_TX_DATA_WR_SHOVE_F);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001178
1179 mpa = (struct mpa_message *)(req + 1);
1180 memset(mpa, 0, sizeof(*mpa));
1181 memcpy(mpa->key, MPA_KEY_REP, sizeof(mpa->key));
Hariprasad S3d4e7992016-06-10 01:05:11 +05301182 mpa->flags = 0;
1183 if (ep->mpa_attr.crc_enabled)
1184 mpa->flags |= MPA_CRC;
1185 if (ep->mpa_attr.recv_marker_enabled)
1186 mpa->flags |= MPA_MARKERS;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301187 mpa->revision = ep->mpa_attr.version;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001188 mpa->private_data_size = htons(plen);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301189
1190 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
1191 mpa->flags |= MPA_ENHANCED_RDMA_CONN;
Roland Dreierf747c342012-07-05 14:16:54 -07001192 mpa->private_data_size = htons(ntohs(mpa->private_data_size) +
1193 sizeof (struct mpa_v2_conn_params));
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301194 mpa_v2_params.ird = htons((u16)ep->ird);
1195 mpa_v2_params.ord = htons((u16)ep->ord);
1196 if (peer2peer && (ep->mpa_attr.p2p_type !=
1197 FW_RI_INIT_P2PTYPE_DISABLED)) {
1198 mpa_v2_params.ird |= htons(MPA_V2_PEER2PEER_MODEL);
1199
1200 if (p2p_type == FW_RI_INIT_P2PTYPE_RDMA_WRITE)
1201 mpa_v2_params.ord |=
1202 htons(MPA_V2_RDMA_WRITE_RTR);
1203 else if (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ)
1204 mpa_v2_params.ord |=
1205 htons(MPA_V2_RDMA_READ_RTR);
1206 }
1207
1208 memcpy(mpa->private_data, &mpa_v2_params,
1209 sizeof(struct mpa_v2_conn_params));
1210
1211 if (ep->plen)
1212 memcpy(mpa->private_data +
1213 sizeof(struct mpa_v2_conn_params), pdata, plen);
1214 } else
1215 if (plen)
1216 memcpy(mpa->private_data, pdata, plen);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001217
1218 /*
1219 * Reference the mpa skb. This ensures the data area
1220 * will remain in memory until the hw acks the tx.
1221 * Function fw4_ack() will deref it.
1222 */
1223 skb_get(skb);
Hariprasad S64bec742016-05-06 22:18:10 +05301224 t4_set_arp_err_handler(skb, NULL, mpa_start_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001225 ep->mpa_skb = skb;
Steve Wisea7db89e2014-03-21 20:40:35 +05301226 __state_set(&ep->com, MPA_REP_SENT);
Steve Wise9c88aa02014-03-21 20:40:34 +05301227 ep->snd_seq += mpalen;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001228 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
1229}
1230
1231static int act_establish(struct c4iw_dev *dev, struct sk_buff *skb)
1232{
1233 struct c4iw_ep *ep;
1234 struct cpl_act_establish *req = cplhdr(skb);
1235 unsigned int tid = GET_TID(req);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001236 unsigned int atid = TID_TID_G(ntohl(req->tos_atid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001237 struct tid_info *t = dev->rdev.lldi.tids;
Hariprasad Sfef44222016-05-05 01:27:33 +05301238 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001239
1240 ep = lookup_atid(t, atid);
1241
1242 PDBG("%s ep %p tid %u snd_isn %u rcv_isn %u\n", __func__, ep, tid,
1243 be32_to_cpu(req->snd_isn), be32_to_cpu(req->rcv_isn));
1244
Steve Wisea7db89e2014-03-21 20:40:35 +05301245 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001246 dst_confirm(ep->dst);
1247
1248 /* setup the hwtid for this connection */
1249 ep->hwtid = tid;
1250 cxgb4_insert_tid(t, ep, tid);
Hariprasad S944661d2016-05-06 22:18:03 +05301251 insert_ep_tid(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001252
1253 ep->snd_seq = be32_to_cpu(req->snd_isn);
1254 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
1255
1256 set_emss(ep, ntohs(req->tcp_opt));
1257
1258 /* dealloc the atid */
Vipul Pandya793dad92012-12-10 09:30:56 +00001259 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001260 cxgb4_free_atid(t, atid);
Vipul Pandya793dad92012-12-10 09:30:56 +00001261 set_bit(ACT_ESTAB, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001262
1263 /* start MPA negotiation */
Hariprasad Sfef44222016-05-05 01:27:33 +05301264 ret = send_flowc(ep, NULL);
1265 if (ret)
1266 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301267 if (ep->retry_with_mpa_v1)
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301268 ret = send_mpa_req(ep, skb, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301269 else
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301270 ret = send_mpa_req(ep, skb, mpa_rev);
1271 if (ret)
1272 goto err;
Steve Wisea7db89e2014-03-21 20:40:35 +05301273 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001274 return 0;
Hariprasad Sfef44222016-05-05 01:27:33 +05301275err:
1276 mutex_unlock(&ep->com.mutex);
1277 connect_reply_upcall(ep, -ENOMEM);
1278 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
1279 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001280}
1281
Steve Wisebe13b2d2014-03-21 20:40:33 +05301282static void close_complete_upcall(struct c4iw_ep *ep, int status)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001283{
1284 struct iw_cm_event event;
1285
1286 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1287 memset(&event, 0, sizeof(event));
1288 event.event = IW_CM_EVENT_CLOSE;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301289 event.status = status;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001290 if (ep->com.cm_id) {
1291 PDBG("close complete delivered ep %p cm_id %p tid %u\n",
1292 ep, ep->com.cm_id, ep->hwtid);
1293 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301294 deref_cm_id(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001295 set_bit(CLOSE_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001296 }
1297}
1298
Steve Wisecfdda9d2010-04-21 15:30:06 -07001299static void peer_close_upcall(struct c4iw_ep *ep)
1300{
1301 struct iw_cm_event event;
1302
1303 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1304 memset(&event, 0, sizeof(event));
1305 event.event = IW_CM_EVENT_DISCONNECT;
1306 if (ep->com.cm_id) {
1307 PDBG("peer close delivered ep %p cm_id %p tid %u\n",
1308 ep, ep->com.cm_id, ep->hwtid);
1309 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001310 set_bit(DISCONN_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001311 }
1312}
1313
1314static void peer_abort_upcall(struct c4iw_ep *ep)
1315{
1316 struct iw_cm_event event;
1317
1318 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1319 memset(&event, 0, sizeof(event));
1320 event.event = IW_CM_EVENT_CLOSE;
1321 event.status = -ECONNRESET;
1322 if (ep->com.cm_id) {
1323 PDBG("abort delivered ep %p cm_id %p tid %u\n", ep,
1324 ep->com.cm_id, ep->hwtid);
1325 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301326 deref_cm_id(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001327 set_bit(ABORT_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001328 }
1329}
1330
1331static void connect_reply_upcall(struct c4iw_ep *ep, int status)
1332{
1333 struct iw_cm_event event;
1334
1335 PDBG("%s ep %p tid %u status %d\n", __func__, ep, ep->hwtid, status);
1336 memset(&event, 0, sizeof(event));
1337 event.event = IW_CM_EVENT_CONNECT_REPLY;
1338 event.status = status;
Steve Wise24d44a32013-07-04 16:10:44 +05301339 memcpy(&event.local_addr, &ep->com.local_addr,
1340 sizeof(ep->com.local_addr));
1341 memcpy(&event.remote_addr, &ep->com.remote_addr,
1342 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001343
1344 if ((status == 0) || (status == -ECONNREFUSED)) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301345 if (!ep->tried_with_mpa_v1) {
1346 /* this means MPA_v2 is used */
Hariprasad S158c7762015-09-08 09:56:58 +05301347 event.ord = ep->ird;
1348 event.ird = ep->ord;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301349 event.private_data_len = ep->plen -
1350 sizeof(struct mpa_v2_conn_params);
1351 event.private_data = ep->mpa_pkt +
1352 sizeof(struct mpa_message) +
1353 sizeof(struct mpa_v2_conn_params);
1354 } else {
1355 /* this means MPA_v1 is used */
Hariprasad S158c7762015-09-08 09:56:58 +05301356 event.ord = cur_max_read_depth(ep->com.dev);
1357 event.ird = cur_max_read_depth(ep->com.dev);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301358 event.private_data_len = ep->plen;
1359 event.private_data = ep->mpa_pkt +
1360 sizeof(struct mpa_message);
1361 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001362 }
Roland Dreier85963e42010-07-19 13:13:09 -07001363
1364 PDBG("%s ep %p tid %u status %d\n", __func__, ep,
1365 ep->hwtid, status);
Vipul Pandya793dad92012-12-10 09:30:56 +00001366 set_bit(CONN_RPL_UPCALL, &ep->com.history);
Roland Dreier85963e42010-07-19 13:13:09 -07001367 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
1368
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05301369 if (status < 0)
1370 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001371}
1372
Steve Wisebe13b2d2014-03-21 20:40:33 +05301373static int connect_request_upcall(struct c4iw_ep *ep)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001374{
1375 struct iw_cm_event event;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301376 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001377
1378 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1379 memset(&event, 0, sizeof(event));
1380 event.event = IW_CM_EVENT_CONNECT_REQUEST;
Steve Wise24d44a32013-07-04 16:10:44 +05301381 memcpy(&event.local_addr, &ep->com.local_addr,
1382 sizeof(ep->com.local_addr));
1383 memcpy(&event.remote_addr, &ep->com.remote_addr,
1384 sizeof(ep->com.remote_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07001385 event.provider_data = ep;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301386 if (!ep->tried_with_mpa_v1) {
1387 /* this means MPA_v2 is used */
1388 event.ord = ep->ord;
1389 event.ird = ep->ird;
1390 event.private_data_len = ep->plen -
1391 sizeof(struct mpa_v2_conn_params);
1392 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message) +
1393 sizeof(struct mpa_v2_conn_params);
1394 } else {
1395 /* this means MPA_v1 is used. Send max supported */
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301396 event.ord = cur_max_read_depth(ep->com.dev);
1397 event.ird = cur_max_read_depth(ep->com.dev);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301398 event.private_data_len = ep->plen;
1399 event.private_data = ep->mpa_pkt + sizeof(struct mpa_message);
1400 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05301401 c4iw_get_ep(&ep->com);
1402 ret = ep->parent_ep->com.cm_id->event_handler(ep->parent_ep->com.cm_id,
1403 &event);
1404 if (ret)
1405 c4iw_put_ep(&ep->com);
Vipul Pandya793dad92012-12-10 09:30:56 +00001406 set_bit(CONNREQ_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001407 c4iw_put_ep(&ep->parent_ep->com);
Steve Wisebe13b2d2014-03-21 20:40:33 +05301408 return ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001409}
1410
1411static void established_upcall(struct c4iw_ep *ep)
1412{
1413 struct iw_cm_event event;
1414
1415 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1416 memset(&event, 0, sizeof(event));
1417 event.event = IW_CM_EVENT_ESTABLISHED;
Hariprasad S3dd9a5d2015-09-08 09:57:00 +05301418 event.ird = ep->ord;
1419 event.ord = ep->ird;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001420 if (ep->com.cm_id) {
1421 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1422 ep->com.cm_id->event_handler(ep->com.cm_id, &event);
Vipul Pandya793dad92012-12-10 09:30:56 +00001423 set_bit(ESTAB_UPCALL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001424 }
1425}
1426
1427static int update_rx_credits(struct c4iw_ep *ep, u32 credits)
1428{
1429 struct cpl_rx_data_ack *req;
1430 struct sk_buff *skb;
1431 int wrlen = roundup(sizeof *req, 16);
1432
1433 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
1434 skb = get_skb(NULL, wrlen, GFP_KERNEL);
1435 if (!skb) {
1436 printk(KERN_ERR MOD "update_rx_credits - cannot alloc skb!\n");
1437 return 0;
1438 }
1439
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301440 /*
1441 * If we couldn't specify the entire rcv window at connection setup
1442 * due to the limit in the number of bits in the RCV_BUFSIZ field,
1443 * then add the overage in to the credits returned.
1444 */
Anish Bhattd7990b02014-11-12 17:15:57 -08001445 if (ep->rcv_win > RCV_BUFSIZ_M * 1024)
1446 credits += ep->rcv_win - RCV_BUFSIZ_M * 1024;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301447
Steve Wisecfdda9d2010-04-21 15:30:06 -07001448 req = (struct cpl_rx_data_ack *) skb_put(skb, wrlen);
1449 memset(req, 0, wrlen);
1450 INIT_TP_WR(req, ep->hwtid);
1451 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_RX_DATA_ACK,
1452 ep->hwtid));
Anish Bhattd7990b02014-11-12 17:15:57 -08001453 req->credit_dack = cpu_to_be32(credits | RX_FORCE_ACK_F |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05301454 RX_DACK_CHANGE_F |
1455 RX_DACK_MODE_V(dack_mode));
Steve Wised4f1a5c2010-07-23 19:12:32 +00001456 set_wr_txq(skb, CPL_PRIORITY_ACK, ep->ctrlq_idx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001457 c4iw_ofld_send(&ep->com.dev->rdev, skb);
1458 return credits;
1459}
1460
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301461#define RELAXED_IRD_NEGOTIATION 1
1462
Hariprasad Sf8e1e1d2016-05-05 01:27:32 +05301463/*
1464 * process_mpa_reply - process streaming mode MPA reply
1465 *
1466 * Returns:
1467 *
1468 * 0 upon success indicating a connect request was delivered to the ULP
1469 * or the mpa request is incomplete but valid so far.
1470 *
1471 * 1 if a failure requires the caller to close the connection.
1472 *
1473 * 2 if a failure requires the caller to abort the connection.
1474 */
Steve Wisecc18b932014-04-24 14:31:53 -05001475static int process_mpa_reply(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001476{
1477 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301478 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001479 u16 plen;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301480 u16 resp_ird, resp_ord;
1481 u8 rtr_mismatch = 0, insuff_ird = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001482 struct c4iw_qp_attributes attrs;
1483 enum c4iw_qp_attr_mask mask;
1484 int err;
Steve Wisecc18b932014-04-24 14:31:53 -05001485 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001486
1487 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1488
1489 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -07001490 * If we get more than the supported amount of private data
1491 * then we must fail this connection.
1492 */
1493 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt)) {
1494 err = -EINVAL;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301495 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001496 }
1497
1498 /*
1499 * copy the new data into our accumulation buffer.
1500 */
1501 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1502 skb->len);
1503 ep->mpa_pkt_len += skb->len;
1504
1505 /*
1506 * if we don't even have the mpa message, then bail.
1507 */
1508 if (ep->mpa_pkt_len < sizeof(*mpa))
Steve Wisecc18b932014-04-24 14:31:53 -05001509 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001510 mpa = (struct mpa_message *) ep->mpa_pkt;
1511
1512 /* Validate MPA header. */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301513 if (mpa->revision > mpa_rev) {
1514 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1515 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001516 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301517 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001518 }
1519 if (memcmp(mpa->key, MPA_KEY_REP, sizeof(mpa->key))) {
1520 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301521 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001522 }
1523
1524 plen = ntohs(mpa->private_data_size);
1525
1526 /*
1527 * Fail if there's too much private data.
1528 */
1529 if (plen > MPA_MAX_PRIVATE_DATA) {
1530 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301531 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001532 }
1533
1534 /*
1535 * If plen does not account for pkt size
1536 */
1537 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen)) {
1538 err = -EPROTO;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301539 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001540 }
1541
1542 ep->plen = (u8) plen;
1543
1544 /*
1545 * If we don't have all the pdata yet, then bail.
1546 * We'll continue process when more data arrives.
1547 */
1548 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
Steve Wisecc18b932014-04-24 14:31:53 -05001549 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001550
1551 if (mpa->flags & MPA_REJECT) {
1552 err = -ECONNREFUSED;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301553 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001554 }
1555
1556 /*
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301557 * Stop mpa timer. If it expired, then
1558 * we ignore the MPA reply. process_timeout()
1559 * will abort the connection.
1560 */
1561 if (stop_ep_timer(ep))
1562 return 0;
1563
1564 /*
Steve Wisecfdda9d2010-04-21 15:30:06 -07001565 * If we get here we have accumulated the entire mpa
1566 * start reply message including private data. And
1567 * the MPA header is valid.
1568 */
Steve Wisec529fb52014-03-21 20:40:37 +05301569 __state_set(&ep->com, FPDU_MODE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001570 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001571 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301572 ep->mpa_attr.version = mpa->revision;
1573 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1574
1575 if (mpa->revision == 2) {
1576 ep->mpa_attr.enhanced_rdma_conn =
1577 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1578 if (ep->mpa_attr.enhanced_rdma_conn) {
1579 mpa_v2_params = (struct mpa_v2_conn_params *)
1580 (ep->mpa_pkt + sizeof(*mpa));
1581 resp_ird = ntohs(mpa_v2_params->ird) &
1582 MPA_V2_IRD_ORD_MASK;
1583 resp_ord = ntohs(mpa_v2_params->ord) &
1584 MPA_V2_IRD_ORD_MASK;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301585 PDBG("%s responder ird %u ord %u ep ird %u ord %u\n",
1586 __func__, resp_ird, resp_ord, ep->ird, ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301587
1588 /*
1589 * This is a double-check. Ideally, below checks are
1590 * not required since ird/ord stuff has been taken
1591 * care of in c4iw_accept_cr
1592 */
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301593 if (ep->ird < resp_ord) {
1594 if (RELAXED_IRD_NEGOTIATION && resp_ord <=
1595 ep->com.dev->rdev.lldi.max_ordird_qp)
1596 ep->ird = resp_ord;
1597 else
1598 insuff_ird = 1;
1599 } else if (ep->ird > resp_ord) {
1600 ep->ird = resp_ord;
1601 }
1602 if (ep->ord > resp_ird) {
1603 if (RELAXED_IRD_NEGOTIATION)
1604 ep->ord = resp_ird;
1605 else
1606 insuff_ird = 1;
1607 }
1608 if (insuff_ird) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301609 err = -ENOMEM;
1610 ep->ird = resp_ord;
1611 ep->ord = resp_ird;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301612 }
1613
1614 if (ntohs(mpa_v2_params->ird) &
1615 MPA_V2_PEER2PEER_MODEL) {
1616 if (ntohs(mpa_v2_params->ord) &
1617 MPA_V2_RDMA_WRITE_RTR)
1618 ep->mpa_attr.p2p_type =
1619 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1620 else if (ntohs(mpa_v2_params->ord) &
1621 MPA_V2_RDMA_READ_RTR)
1622 ep->mpa_attr.p2p_type =
1623 FW_RI_INIT_P2PTYPE_READ_REQ;
1624 }
1625 }
1626 } else if (mpa->revision == 1)
1627 if (peer2peer)
1628 ep->mpa_attr.p2p_type = p2p_type;
1629
Steve Wisecfdda9d2010-04-21 15:30:06 -07001630 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301631 "xmit_marker_enabled=%d, version=%d p2p_type=%d local-p2p_type = "
1632 "%d\n", __func__, ep->mpa_attr.crc_enabled,
1633 ep->mpa_attr.recv_marker_enabled,
1634 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1635 ep->mpa_attr.p2p_type, p2p_type);
1636
1637 /*
1638 * If responder's RTR does not match with that of initiator, assign
1639 * FW_RI_INIT_P2PTYPE_DISABLED in mpa attributes so that RTR is not
1640 * generated when moving QP to RTS state.
1641 * A TERM message will be sent after QP has moved to RTS state
1642 */
Kumar Sanghvi91018f82012-02-25 17:45:02 -08001643 if ((ep->mpa_attr.version == 2) && peer2peer &&
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301644 (ep->mpa_attr.p2p_type != p2p_type)) {
1645 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1646 rtr_mismatch = 1;
1647 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001648
1649 attrs.mpa_attr = ep->mpa_attr;
1650 attrs.max_ird = ep->ird;
1651 attrs.max_ord = ep->ord;
1652 attrs.llp_stream_handle = ep;
1653 attrs.next_state = C4IW_QP_STATE_RTS;
1654
1655 mask = C4IW_QP_ATTR_NEXT_STATE |
1656 C4IW_QP_ATTR_LLP_STREAM_HANDLE | C4IW_QP_ATTR_MPA_ATTR |
1657 C4IW_QP_ATTR_MAX_IRD | C4IW_QP_ATTR_MAX_ORD;
1658
1659 /* bind QP and TID with INIT_WR */
1660 err = c4iw_modify_qp(ep->com.qp->rhp,
1661 ep->com.qp, mask, &attrs, 1);
1662 if (err)
1663 goto err;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301664
1665 /*
1666 * If responder's RTR requirement did not match with what initiator
1667 * supports, generate TERM message
1668 */
1669 if (rtr_mismatch) {
1670 printk(KERN_ERR "%s: RTR mismatch, sending TERM\n", __func__);
1671 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1672 attrs.ecode = MPA_NOMATCH_RTR;
1673 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Steve Wisecc18b932014-04-24 14:31:53 -05001674 attrs.send_term = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301675 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001676 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301677 err = -ENOMEM;
Steve Wisecc18b932014-04-24 14:31:53 -05001678 disconnect = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301679 goto out;
1680 }
1681
1682 /*
1683 * Generate TERM if initiator IRD is not sufficient for responder
1684 * provided ORD. Currently, we do the same behaviour even when
1685 * responder provided IRD is also not sufficient as regards to
1686 * initiator ORD.
1687 */
1688 if (insuff_ird) {
1689 printk(KERN_ERR "%s: Insufficient IRD, sending TERM\n",
1690 __func__);
1691 attrs.layer_etype = LAYER_MPA | DDP_LLP;
1692 attrs.ecode = MPA_INSUFF_IRD;
1693 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Steve Wisecc18b932014-04-24 14:31:53 -05001694 attrs.send_term = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301695 err = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001696 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301697 err = -ENOMEM;
Steve Wisecc18b932014-04-24 14:31:53 -05001698 disconnect = 1;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301699 goto out;
1700 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001701 goto out;
Hariprasad Sda1cecd2016-05-06 22:17:58 +05301702err_stop_timer:
1703 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001704err:
Hariprasad Sf8e1e1d2016-05-05 01:27:32 +05301705 disconnect = 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001706out:
1707 connect_reply_upcall(ep, err);
Steve Wisecc18b932014-04-24 14:31:53 -05001708 return disconnect;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001709}
1710
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301711/*
1712 * process_mpa_request - process streaming mode MPA request
1713 *
1714 * Returns:
1715 *
1716 * 0 upon success indicating a connect request was delivered to the ULP
1717 * or the mpa request is incomplete but valid so far.
1718 *
1719 * 1 if a failure requires the caller to close the connection.
1720 *
1721 * 2 if a failure requires the caller to abort the connection.
1722 */
1723static int process_mpa_request(struct c4iw_ep *ep, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07001724{
1725 struct mpa_message *mpa;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301726 struct mpa_v2_conn_params *mpa_v2_params;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001727 u16 plen;
1728
1729 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
1730
Steve Wisecfdda9d2010-04-21 15:30:06 -07001731 /*
1732 * If we get more than the supported amount of private data
1733 * then we must fail this connection.
1734 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301735 if (ep->mpa_pkt_len + skb->len > sizeof(ep->mpa_pkt))
1736 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001737
1738 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
1739
1740 /*
1741 * Copy the new data into our accumulation buffer.
1742 */
1743 skb_copy_from_linear_data(skb, &(ep->mpa_pkt[ep->mpa_pkt_len]),
1744 skb->len);
1745 ep->mpa_pkt_len += skb->len;
1746
1747 /*
1748 * If we don't even have the mpa message, then bail.
1749 * We'll continue process when more data arrives.
1750 */
1751 if (ep->mpa_pkt_len < sizeof(*mpa))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301752 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001753
1754 PDBG("%s enter (%s line %u)\n", __func__, __FILE__, __LINE__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001755 mpa = (struct mpa_message *) ep->mpa_pkt;
1756
1757 /*
1758 * Validate MPA Header.
1759 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301760 if (mpa->revision > mpa_rev) {
1761 printk(KERN_ERR MOD "%s MPA version mismatch. Local = %d,"
1762 " Received = %d\n", __func__, mpa_rev, mpa->revision);
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301763 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001764 }
1765
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301766 if (memcmp(mpa->key, MPA_KEY_REQ, sizeof(mpa->key)))
1767 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001768
1769 plen = ntohs(mpa->private_data_size);
1770
1771 /*
1772 * Fail if there's too much private data.
1773 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301774 if (plen > MPA_MAX_PRIVATE_DATA)
1775 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001776
1777 /*
1778 * If plen does not account for pkt size
1779 */
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301780 if (ep->mpa_pkt_len > (sizeof(*mpa) + plen))
1781 goto err_stop_timer;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001782 ep->plen = (u8) plen;
1783
1784 /*
1785 * If we don't have all the pdata yet, then bail.
1786 */
1787 if (ep->mpa_pkt_len < (sizeof(*mpa) + plen))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301788 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001789
1790 /*
1791 * If we get here we have accumulated the entire mpa
1792 * start reply message including private data.
1793 */
1794 ep->mpa_attr.initiator = 0;
1795 ep->mpa_attr.crc_enabled = (mpa->flags & MPA_CRC) | crc_enabled ? 1 : 0;
1796 ep->mpa_attr.recv_marker_enabled = markers_enabled;
1797 ep->mpa_attr.xmit_marker_enabled = mpa->flags & MPA_MARKERS ? 1 : 0;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301798 ep->mpa_attr.version = mpa->revision;
1799 if (mpa->revision == 1)
1800 ep->tried_with_mpa_v1 = 1;
1801 ep->mpa_attr.p2p_type = FW_RI_INIT_P2PTYPE_DISABLED;
1802
1803 if (mpa->revision == 2) {
1804 ep->mpa_attr.enhanced_rdma_conn =
1805 mpa->flags & MPA_ENHANCED_RDMA_CONN ? 1 : 0;
1806 if (ep->mpa_attr.enhanced_rdma_conn) {
1807 mpa_v2_params = (struct mpa_v2_conn_params *)
1808 (ep->mpa_pkt + sizeof(*mpa));
1809 ep->ird = ntohs(mpa_v2_params->ird) &
1810 MPA_V2_IRD_ORD_MASK;
1811 ep->ord = ntohs(mpa_v2_params->ord) &
1812 MPA_V2_IRD_ORD_MASK;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301813 PDBG("%s initiator ird %u ord %u\n", __func__, ep->ird,
1814 ep->ord);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05301815 if (ntohs(mpa_v2_params->ird) & MPA_V2_PEER2PEER_MODEL)
1816 if (peer2peer) {
1817 if (ntohs(mpa_v2_params->ord) &
1818 MPA_V2_RDMA_WRITE_RTR)
1819 ep->mpa_attr.p2p_type =
1820 FW_RI_INIT_P2PTYPE_RDMA_WRITE;
1821 else if (ntohs(mpa_v2_params->ord) &
1822 MPA_V2_RDMA_READ_RTR)
1823 ep->mpa_attr.p2p_type =
1824 FW_RI_INIT_P2PTYPE_READ_REQ;
1825 }
1826 }
1827 } else if (mpa->revision == 1)
1828 if (peer2peer)
1829 ep->mpa_attr.p2p_type = p2p_type;
1830
Steve Wisecfdda9d2010-04-21 15:30:06 -07001831 PDBG("%s - crc_enabled=%d, recv_marker_enabled=%d, "
1832 "xmit_marker_enabled=%d, version=%d p2p_type=%d\n", __func__,
1833 ep->mpa_attr.crc_enabled, ep->mpa_attr.recv_marker_enabled,
1834 ep->mpa_attr.xmit_marker_enabled, ep->mpa_attr.version,
1835 ep->mpa_attr.p2p_type);
1836
Hariprasad Se4b76a22016-05-06 22:17:59 +05301837 __state_set(&ep->com, MPA_REQ_RCVD);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001838
Hariprasad Se4b76a22016-05-06 22:17:59 +05301839 /* drive upcall */
1840 mutex_lock_nested(&ep->parent_ep->com.mutex, SINGLE_DEPTH_NESTING);
1841 if (ep->parent_ep->com.state != DEAD) {
1842 if (connect_request_upcall(ep))
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301843 goto err_unlock_parent;
Hariprasad Se4b76a22016-05-06 22:17:59 +05301844 } else {
1845 goto err_unlock_parent;
Steve Wisebe13b2d2014-03-21 20:40:33 +05301846 }
Hariprasad Se4b76a22016-05-06 22:17:59 +05301847 mutex_unlock(&ep->parent_ep->com.mutex);
Hariprasad Sfd6aabe2016-05-05 01:27:35 +05301848 return 0;
1849
1850err_unlock_parent:
1851 mutex_unlock(&ep->parent_ep->com.mutex);
1852 goto err_out;
1853err_stop_timer:
1854 (void)stop_ep_timer(ep);
1855err_out:
1856 return 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001857}
1858
1859static int rx_data(struct c4iw_dev *dev, struct sk_buff *skb)
1860{
1861 struct c4iw_ep *ep;
1862 struct cpl_rx_data *hdr = cplhdr(skb);
1863 unsigned int dlen = ntohs(hdr->len);
1864 unsigned int tid = GET_TID(hdr);
Vipul Pandya793dad92012-12-10 09:30:56 +00001865 __u8 status = hdr->status;
Steve Wisecc18b932014-04-24 14:31:53 -05001866 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001867
Hariprasad S944661d2016-05-06 22:18:03 +05301868 ep = get_ep_from_tid(dev, tid);
Steve Wise977116c2014-03-21 20:40:36 +05301869 if (!ep)
1870 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001871 PDBG("%s ep %p tid %u dlen %u\n", __func__, ep, ep->hwtid, dlen);
1872 skb_pull(skb, sizeof(*hdr));
1873 skb_trim(skb, dlen);
Steve Wisec529fb52014-03-21 20:40:37 +05301874 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001875
Steve Wisecfdda9d2010-04-21 15:30:06 -07001876 /* update RX credits */
1877 update_rx_credits(ep, dlen);
1878
Steve Wisec529fb52014-03-21 20:40:37 +05301879 switch (ep->com.state) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001880 case MPA_REQ_SENT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001881 ep->rcv_seq += dlen;
Steve Wisecc18b932014-04-24 14:31:53 -05001882 disconnect = process_mpa_reply(ep, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001883 break;
1884 case MPA_REQ_WAIT:
Vipul Pandya55abf8d2013-01-07 13:11:50 +00001885 ep->rcv_seq += dlen;
Hariprasad S4a4dd8d2016-05-06 22:18:08 +05301886 disconnect = process_mpa_request(ep, skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001887 break;
Vipul Pandya15579672013-01-07 13:11:52 +00001888 case FPDU_MODE: {
1889 struct c4iw_qp_attributes attrs;
1890 BUG_ON(!ep->com.qp);
Vipul Pandyae8e5b922013-01-07 13:11:55 +00001891 if (status)
Vipul Pandya15579672013-01-07 13:11:52 +00001892 pr_err("%s Unexpected streaming data." \
Vipul Pandya04236df2013-01-07 13:11:54 +00001893 " qpid %u ep %p state %d tid %u status %d\n",
1894 __func__, ep->com.qp->wq.sq.qid, ep,
Steve Wisec529fb52014-03-21 20:40:37 +05301895 ep->com.state, ep->hwtid, status);
Steve Wise97d7ec02013-08-06 21:04:34 +05301896 attrs.next_state = C4IW_QP_STATE_TERMINATE;
Vipul Pandya15579672013-01-07 13:11:52 +00001897 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wisecc18b932014-04-24 14:31:53 -05001898 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
1899 disconnect = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001900 break;
1901 }
Vipul Pandya15579672013-01-07 13:11:52 +00001902 default:
1903 break;
1904 }
Steve Wisec529fb52014-03-21 20:40:37 +05301905 mutex_unlock(&ep->com.mutex);
Steve Wisecc18b932014-04-24 14:31:53 -05001906 if (disconnect)
Hariprasad S4a4dd8d2016-05-06 22:18:08 +05301907 c4iw_ep_disconnect(ep, disconnect == 2, GFP_KERNEL);
Hariprasad S944661d2016-05-06 22:18:03 +05301908 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001909 return 0;
1910}
1911
1912static int abort_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
1913{
1914 struct c4iw_ep *ep;
1915 struct cpl_abort_rpl_rss *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001916 int release = 0;
1917 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001918
Hariprasad S944661d2016-05-06 22:18:03 +05301919 ep = get_ep_from_tid(dev, tid);
Vipul Pandya49840372012-05-18 15:29:29 +05301920 if (!ep) {
1921 printk(KERN_WARNING MOD "Abort rpl to freed endpoint\n");
1922 return 0;
1923 }
Wei Yongjun92dd6c32012-09-07 06:51:23 +00001924 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
Steve Wise2f5b48c2010-09-10 11:15:36 -05001925 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001926 switch (ep->com.state) {
1927 case ABORTING:
Vipul Pandya91e9c0712013-01-07 13:11:51 +00001928 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001929 __state_set(&ep->com, DEAD);
1930 release = 1;
1931 break;
1932 default:
1933 printk(KERN_ERR "%s ep %p state %d\n",
1934 __func__, ep, ep->com.state);
1935 break;
1936 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05001937 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001938
1939 if (release)
1940 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05301941 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001942 return 0;
1943}
1944
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05301945static int send_fw_act_open_req(struct c4iw_ep *ep, unsigned int atid)
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001946{
1947 struct sk_buff *skb;
1948 struct fw_ofld_connection_wr *req;
1949 unsigned int mtu_idx;
1950 int wscale;
Vipul Pandya830662f2013-07-04 16:10:47 +05301951 struct sockaddr_in *sin;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301952 int win;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001953
1954 skb = get_skb(NULL, sizeof(*req), GFP_KERNEL);
1955 req = (struct fw_ofld_connection_wr *)__skb_put(skb, sizeof(*req));
1956 memset(req, 0, sizeof(*req));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001957 req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR));
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05301958 req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16)));
Kumar Sanghvi41b4f862013-12-18 16:38:26 +05301959 req->le.filter = cpu_to_be32(cxgb4_select_ntuple(
1960 ep->com.dev->rdev.lldi.ports[0],
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001961 ep->l2t));
Steve Wise170003c2016-02-26 09:18:03 -06001962 sin = (struct sockaddr_in *)&ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05301963 req->le.lport = sin->sin_port;
1964 req->le.u.ipv4.lip = sin->sin_addr.s_addr;
Steve Wise170003c2016-02-26 09:18:03 -06001965 sin = (struct sockaddr_in *)&ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05301966 req->le.pport = sin->sin_port;
1967 req->le.u.ipv4.pip = sin->sin_addr.s_addr;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001968 req->tcb.t_state_to_astid =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301969 htonl(FW_OFLD_CONNECTION_WR_T_STATE_V(TCP_SYN_SENT) |
1970 FW_OFLD_CONNECTION_WR_ASTID_V(atid));
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001971 req->tcb.cplrxdataack_cplpassacceptrpl =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05301972 htons(FW_OFLD_CONNECTION_WR_CPLRXDATAACK_F);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001973 req->tcb.tx_max = (__force __be32) jiffies;
Vipul Pandya793dad92012-12-10 09:30:56 +00001974 req->tcb.rcv_adv = htons(1);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05301975 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +05301976 enable_tcp_timestamps,
1977 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00001978 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301979
1980 /*
1981 * Specify the largest window that will fit in opt0. The
1982 * remainder will be specified in the rx_data_ack.
1983 */
1984 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -08001985 if (win > RCV_BUFSIZ_M)
1986 win = RCV_BUFSIZ_M;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05301987
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001988 req->tcb.opt0 = (__force __be64) (TCAM_BYPASS_F |
1989 (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001990 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08001991 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -08001992 WND_SCALE_V(wscale) |
1993 MSS_IDX_V(mtu_idx) |
1994 L2T_IDX_V(ep->l2t->idx) |
1995 TX_CHAN_V(ep->tx_chan) |
1996 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Sac8e4c62016-02-05 11:43:30 +05301997 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -08001998 ULP_MODE_V(ULP_MODE_TCPDDP) |
1999 RCV_BUFSIZ_V(win));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002000 req->tcb.opt2 = (__force __be32) (PACE_V(1) |
2001 TX_QUEUE_V(ep->com.dev->rdev.lldi.tx_modq[ep->tx_chan]) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002002 RX_CHANNEL_V(0) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002003 CCTRL_ECN_V(enable_ecn) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002004 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid));
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002005 if (enable_tcp_timestamps)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002006 req->tcb.opt2 |= (__force __be32)TSTAMPS_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002007 if (enable_tcp_sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002008 req->tcb.opt2 |= (__force __be32)SACK_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002009 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -08002010 req->tcb.opt2 |= (__force __be32)WND_SCALE_EN_F;
2011 req->tcb.opt0 = cpu_to_be64((__force u64)req->tcb.opt0);
2012 req->tcb.opt2 = cpu_to_be32((__force u32)req->tcb.opt2);
Vipul Pandya793dad92012-12-10 09:30:56 +00002013 set_wr_txq(skb, CPL_PRIORITY_CONTROL, ep->ctrlq_idx);
2014 set_bit(ACT_OFLD_CONN, &ep->com.history);
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302015 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002016}
2017
Steve Wisecfdda9d2010-04-21 15:30:06 -07002018/*
2019 * Return whether a failed active open has allocated a TID
2020 */
2021static inline int act_open_has_tid(int status)
2022{
2023 return status != CPL_ERR_TCAM_FULL && status != CPL_ERR_CONN_EXIST &&
2024 status != CPL_ERR_ARP_MISS;
2025}
2026
Steve Wise7a2cea22014-03-14 21:52:07 +05302027/* Returns whether a CPL status conveys negative advice.
2028 */
2029static int is_neg_adv(unsigned int status)
2030{
2031 return status == CPL_ERR_RTX_NEG_ADVICE ||
2032 status == CPL_ERR_PERSIST_NEG_ADVICE ||
2033 status == CPL_ERR_KEEPALV_NEG_ADVICE;
2034}
2035
Hariprasad Shenaidd92b122014-07-21 20:55:13 +05302036static char *neg_adv_str(unsigned int status)
2037{
2038 switch (status) {
2039 case CPL_ERR_RTX_NEG_ADVICE:
2040 return "Retransmit timeout";
2041 case CPL_ERR_PERSIST_NEG_ADVICE:
2042 return "Persist timeout";
2043 case CPL_ERR_KEEPALV_NEG_ADVICE:
2044 return "Keepalive timeout";
2045 default:
2046 return "Unknown";
2047 }
2048}
2049
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302050static void set_tcp_window(struct c4iw_ep *ep, struct port_info *pi)
2051{
2052 ep->snd_win = snd_win;
2053 ep->rcv_win = rcv_win;
2054 PDBG("%s snd_win %d rcv_win %d\n", __func__, ep->snd_win, ep->rcv_win);
2055}
2056
Vipul Pandya793dad92012-12-10 09:30:56 +00002057#define ACT_OPEN_RETRY_COUNT 2
2058
Vipul Pandya830662f2013-07-04 16:10:47 +05302059static int import_ep(struct c4iw_ep *ep, int iptype, __u8 *peer_ip,
2060 struct dst_entry *dst, struct c4iw_dev *cdev,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302061 bool clear_mpa_v1, enum chip_type adapter_type, u8 tos)
Vipul Pandya830662f2013-07-04 16:10:47 +05302062{
2063 struct neighbour *n;
2064 int err, step;
2065 struct net_device *pdev;
2066
2067 n = dst_neigh_lookup(dst, peer_ip);
2068 if (!n)
2069 return -ENODEV;
2070
2071 rcu_read_lock();
2072 err = -ENOMEM;
2073 if (n->dev->flags & IFF_LOOPBACK) {
2074 if (iptype == 4)
2075 pdev = ip_dev_find(&init_net, *(__be32 *)peer_ip);
2076 else if (IS_ENABLED(CONFIG_IPV6))
2077 for_each_netdev(&init_net, pdev) {
2078 if (ipv6_chk_addr(&init_net,
2079 (struct in6_addr *)peer_ip,
2080 pdev, 1))
2081 break;
2082 }
2083 else
2084 pdev = NULL;
2085
2086 if (!pdev) {
2087 err = -ENODEV;
2088 goto out;
2089 }
2090 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302091 n, pdev, rt_tos2priority(tos));
Vipul Pandya830662f2013-07-04 16:10:47 +05302092 if (!ep->l2t)
2093 goto out;
2094 ep->mtu = pdev->mtu;
2095 ep->tx_chan = cxgb4_port_chan(pdev);
Hariprasad S963cab52015-09-23 17:19:27 +05302096 ep->smac_idx = cxgb4_tp_smt_idx(adapter_type,
2097 cxgb4_port_viid(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302098 step = cdev->rdev.lldi.ntxq /
2099 cdev->rdev.lldi.nchan;
2100 ep->txq_idx = cxgb4_port_idx(pdev) * step;
2101 step = cdev->rdev.lldi.nrxq /
2102 cdev->rdev.lldi.nchan;
2103 ep->ctrlq_idx = cxgb4_port_idx(pdev);
2104 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
2105 cxgb4_port_idx(pdev) * step];
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302106 set_tcp_window(ep, (struct port_info *)netdev_priv(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302107 dev_put(pdev);
2108 } else {
2109 pdev = get_real_dev(n->dev);
2110 ep->l2t = cxgb4_l2t_get(cdev->rdev.lldi.l2t,
2111 n, pdev, 0);
2112 if (!ep->l2t)
2113 goto out;
2114 ep->mtu = dst_mtu(dst);
Steve Wise11b8e222014-05-16 12:42:46 -05002115 ep->tx_chan = cxgb4_port_chan(pdev);
Hariprasad S963cab52015-09-23 17:19:27 +05302116 ep->smac_idx = cxgb4_tp_smt_idx(adapter_type,
2117 cxgb4_port_viid(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302118 step = cdev->rdev.lldi.ntxq /
2119 cdev->rdev.lldi.nchan;
Steve Wise11b8e222014-05-16 12:42:46 -05002120 ep->txq_idx = cxgb4_port_idx(pdev) * step;
2121 ep->ctrlq_idx = cxgb4_port_idx(pdev);
Vipul Pandya830662f2013-07-04 16:10:47 +05302122 step = cdev->rdev.lldi.nrxq /
2123 cdev->rdev.lldi.nchan;
2124 ep->rss_qid = cdev->rdev.lldi.rxq_ids[
Steve Wise11b8e222014-05-16 12:42:46 -05002125 cxgb4_port_idx(pdev) * step];
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302126 set_tcp_window(ep, (struct port_info *)netdev_priv(pdev));
Vipul Pandya830662f2013-07-04 16:10:47 +05302127
2128 if (clear_mpa_v1) {
2129 ep->retry_with_mpa_v1 = 0;
2130 ep->tried_with_mpa_v1 = 0;
2131 }
2132 }
2133 err = 0;
2134out:
2135 rcu_read_unlock();
2136
2137 neigh_release(n);
2138
2139 return err;
2140}
2141
Vipul Pandya793dad92012-12-10 09:30:56 +00002142static int c4iw_reconnect(struct c4iw_ep *ep)
2143{
2144 int err = 0;
Steve Wise24d44a32013-07-04 16:10:44 +05302145 struct sockaddr_in *laddr = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002146 &ep->com.cm_id->m_local_addr;
Steve Wise24d44a32013-07-04 16:10:44 +05302147 struct sockaddr_in *raddr = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002148 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302149 struct sockaddr_in6 *laddr6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002150 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302151 struct sockaddr_in6 *raddr6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002152 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302153 int iptype;
2154 __u8 *ra;
Vipul Pandya793dad92012-12-10 09:30:56 +00002155
2156 PDBG("%s qp %p cm_id %p\n", __func__, ep->com.qp, ep->com.cm_id);
2157 init_timer(&ep->timer);
Hariprasad S093108c2016-05-06 22:18:09 +05302158 c4iw_init_wr_wait(&ep->com.wr_wait);
Vipul Pandya793dad92012-12-10 09:30:56 +00002159
2160 /*
2161 * Allocate an active TID to initiate a TCP connection.
2162 */
2163 ep->atid = cxgb4_alloc_atid(ep->com.dev->rdev.lldi.tids, ep);
2164 if (ep->atid == -1) {
2165 pr_err("%s - cannot alloc atid.\n", __func__);
2166 err = -ENOMEM;
2167 goto fail2;
2168 }
2169 insert_handle(ep->com.dev, &ep->com.dev->atid_idr, ep, ep->atid);
2170
2171 /* find a route */
Steve Wise170003c2016-02-26 09:18:03 -06002172 if (ep->com.cm_id->m_local_addr.ss_family == AF_INET) {
Vipul Pandya830662f2013-07-04 16:10:47 +05302173 ep->dst = find_route(ep->com.dev, laddr->sin_addr.s_addr,
2174 raddr->sin_addr.s_addr, laddr->sin_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302175 raddr->sin_port, ep->com.cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302176 iptype = 4;
2177 ra = (__u8 *)&raddr->sin_addr;
2178 } else {
2179 ep->dst = find_route6(ep->com.dev, laddr6->sin6_addr.s6_addr,
2180 raddr6->sin6_addr.s6_addr,
2181 laddr6->sin6_port, raddr6->sin6_port, 0,
2182 raddr6->sin6_scope_id);
2183 iptype = 6;
2184 ra = (__u8 *)&raddr6->sin6_addr;
2185 }
2186 if (!ep->dst) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002187 pr_err("%s - cannot find route.\n", __func__);
2188 err = -EHOSTUNREACH;
2189 goto fail3;
2190 }
Hariprasad S963cab52015-09-23 17:19:27 +05302191 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, false,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302192 ep->com.dev->rdev.lldi.adapter_type,
2193 ep->com.cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302194 if (err) {
Vipul Pandya793dad92012-12-10 09:30:56 +00002195 pr_err("%s - cannot alloc l2e.\n", __func__);
Vipul Pandya793dad92012-12-10 09:30:56 +00002196 goto fail4;
2197 }
2198
2199 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
2200 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
2201 ep->l2t->idx);
2202
2203 state_set(&ep->com, CONNECTING);
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302204 ep->tos = ep->com.cm_id->tos;
Vipul Pandya793dad92012-12-10 09:30:56 +00002205
2206 /* send connect request to rnic */
2207 err = send_connect(ep);
2208 if (!err)
2209 goto out;
2210
2211 cxgb4_l2t_release(ep->l2t);
2212fail4:
2213 dst_release(ep->dst);
2214fail3:
2215 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
2216 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
2217fail2:
2218 /*
2219 * remember to send notification to upper layer.
2220 * We are in here so the upper layer is not aware that this is
2221 * re-connect attempt and so, upper layer is still waiting for
2222 * response of 1st connect request.
2223 */
2224 connect_reply_upcall(ep, -ECONNRESET);
2225 c4iw_put_ep(&ep->com);
2226out:
2227 return err;
2228}
2229
Steve Wisecfdda9d2010-04-21 15:30:06 -07002230static int act_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2231{
2232 struct c4iw_ep *ep;
2233 struct cpl_act_open_rpl *rpl = cplhdr(skb);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002234 unsigned int atid = TID_TID_G(AOPEN_ATID_G(
2235 ntohl(rpl->atid_status)));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002236 struct tid_info *t = dev->rdev.lldi.tids;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002237 int status = AOPEN_STATUS_G(ntohl(rpl->atid_status));
Vipul Pandya830662f2013-07-04 16:10:47 +05302238 struct sockaddr_in *la;
2239 struct sockaddr_in *ra;
2240 struct sockaddr_in6 *la6;
2241 struct sockaddr_in6 *ra6;
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302242 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002243
2244 ep = lookup_atid(t, atid);
Steve Wise170003c2016-02-26 09:18:03 -06002245 la = (struct sockaddr_in *)&ep->com.local_addr;
2246 ra = (struct sockaddr_in *)&ep->com.remote_addr;
2247 la6 = (struct sockaddr_in6 *)&ep->com.local_addr;
2248 ra6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002249
2250 PDBG("%s ep %p atid %u status %u errno %d\n", __func__, ep, atid,
2251 status, status2errno(status));
2252
Steve Wise7a2cea22014-03-14 21:52:07 +05302253 if (is_neg_adv(status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05302254 PDBG("%s Connection problems for atid %u status %u (%s)\n",
2255 __func__, atid, status, neg_adv_str(status));
2256 ep->stats.connect_neg_adv++;
2257 mutex_lock(&dev->rdev.stats.lock);
2258 dev->rdev.stats.neg_adv++;
2259 mutex_unlock(&dev->rdev.stats.lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002260 return 0;
2261 }
2262
Vipul Pandya793dad92012-12-10 09:30:56 +00002263 set_bit(ACT_OPEN_RPL, &ep->com.history);
2264
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302265 /*
2266 * Log interesting failures.
2267 */
2268 switch (status) {
2269 case CPL_ERR_CONN_RESET:
2270 case CPL_ERR_CONN_TIMEDOUT:
2271 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002272 case CPL_ERR_TCAM_FULL:
Vipul Pandya830662f2013-07-04 16:10:47 +05302273 mutex_lock(&dev->rdev.stats.lock);
Vipul Pandya3b174d92013-03-14 05:09:03 +00002274 dev->rdev.stats.tcam_full++;
Vipul Pandya830662f2013-07-04 16:10:47 +05302275 mutex_unlock(&dev->rdev.stats.lock);
2276 if (ep->com.local_addr.ss_family == AF_INET &&
2277 dev->rdev.lldi.enable_fw_ofld_conn) {
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302278 ret = send_fw_act_open_req(ep, TID_TID_G(AOPEN_ATID_G(
2279 ntohl(rpl->atid_status))));
2280 if (ret)
2281 goto fail;
Vipul Pandya793dad92012-12-10 09:30:56 +00002282 return 0;
2283 }
2284 break;
2285 case CPL_ERR_CONN_EXIST:
2286 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
2287 set_bit(ACT_RETRY_INUSE, &ep->com.history);
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302288 if (ep->com.remote_addr.ss_family == AF_INET6) {
2289 struct sockaddr_in6 *sin6 =
2290 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002291 &ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302292 cxgb4_clip_release(
2293 ep->com.dev->rdev.lldi.ports[0],
2294 (const u32 *)
2295 &sin6->sin6_addr.s6_addr, 1);
2296 }
Vipul Pandya793dad92012-12-10 09:30:56 +00002297 remove_handle(ep->com.dev, &ep->com.dev->atid_idr,
2298 atid);
2299 cxgb4_free_atid(t, atid);
2300 dst_release(ep->dst);
2301 cxgb4_l2t_release(ep->l2t);
2302 c4iw_reconnect(ep);
2303 return 0;
2304 }
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002305 break;
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302306 default:
Vipul Pandya830662f2013-07-04 16:10:47 +05302307 if (ep->com.local_addr.ss_family == AF_INET) {
2308 pr_info("Active open failure - atid %u status %u errno %d %pI4:%u->%pI4:%u\n",
2309 atid, status, status2errno(status),
2310 &la->sin_addr.s_addr, ntohs(la->sin_port),
2311 &ra->sin_addr.s_addr, ntohs(ra->sin_port));
2312 } else {
2313 pr_info("Active open failure - atid %u status %u errno %d %pI6:%u->%pI6:%u\n",
2314 atid, status, status2errno(status),
2315 la6->sin6_addr.s6_addr, ntohs(la6->sin6_port),
2316 ra6->sin6_addr.s6_addr, ntohs(ra6->sin6_port));
2317 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +05302318 break;
2319 }
2320
Hariprasad Scaa6c9f2016-05-06 22:18:00 +05302321fail:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002322 connect_reply_upcall(ep, status2errno(status));
2323 state_set(&ep->com, DEAD);
2324
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302325 if (ep->com.remote_addr.ss_family == AF_INET6) {
2326 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -06002327 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302328 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
2329 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
2330 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002331 if (status && act_open_has_tid(status))
2332 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, GET_TID(rpl));
2333
Vipul Pandya793dad92012-12-10 09:30:56 +00002334 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002335 cxgb4_free_atid(t, atid);
2336 dst_release(ep->dst);
2337 cxgb4_l2t_release(ep->l2t);
2338 c4iw_put_ep(&ep->com);
2339
2340 return 0;
2341}
2342
2343static int pass_open_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2344{
2345 struct cpl_pass_open_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002346 unsigned int stid = GET_TID(rpl);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302347 struct c4iw_listen_ep *ep = get_ep_from_stid(dev, stid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002348
2349 if (!ep) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00002350 PDBG("%s stid %d lookup failure!\n", __func__, stid);
2351 goto out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002352 }
2353 PDBG("%s ep %p status %d error %d\n", __func__, ep,
2354 rpl->status, status2errno(rpl->status));
Steve Wised9594d92011-05-09 22:06:22 -07002355 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Hariprasad Sf86fac72016-05-06 22:18:07 +05302356 c4iw_put_ep(&ep->com);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002357out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002358 return 0;
2359}
2360
Steve Wisecfdda9d2010-04-21 15:30:06 -07002361static int close_listsrv_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2362{
2363 struct cpl_close_listsvr_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002364 unsigned int stid = GET_TID(rpl);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302365 struct c4iw_listen_ep *ep = get_ep_from_stid(dev, stid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002366
2367 PDBG("%s ep %p\n", __func__, ep);
Steve Wised9594d92011-05-09 22:06:22 -07002368 c4iw_wake_up(&ep->com.wr_wait, status2errno(rpl->status));
Hariprasad Sf86fac72016-05-06 22:18:07 +05302369 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002370 return 0;
2371}
2372
Hariprasad S9dec9002016-05-05 01:27:29 +05302373static int accept_cr(struct c4iw_ep *ep, struct sk_buff *skb,
2374 struct cpl_pass_accept_req *req)
Steve Wisecfdda9d2010-04-21 15:30:06 -07002375{
2376 struct cpl_pass_accept_rpl *rpl;
2377 unsigned int mtu_idx;
2378 u64 opt0;
2379 u32 opt2;
2380 int wscale;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302381 struct cpl_t5_pass_accept_rpl *rpl5 = NULL;
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302382 int win;
Hariprasad S963cab52015-09-23 17:19:27 +05302383 enum chip_type adapter_type = ep->com.dev->rdev.lldi.adapter_type;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002384
2385 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2386 BUG_ON(skb_cloned(skb));
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302387
Steve Wisecfdda9d2010-04-21 15:30:06 -07002388 skb_get(skb);
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302389 rpl = cplhdr(skb);
Hariprasad S963cab52015-09-23 17:19:27 +05302390 if (!is_t4(adapter_type)) {
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302391 skb_trim(skb, roundup(sizeof(*rpl5), 16));
2392 rpl5 = (void *)rpl;
2393 INIT_TP_WR(rpl5, ep->hwtid);
2394 } else {
2395 skb_trim(skb, sizeof(*rpl));
2396 INIT_TP_WR(rpl, ep->hwtid);
2397 }
2398 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_PASS_ACCEPT_RPL,
2399 ep->hwtid));
2400
2401 best_mtu(ep->com.dev->rdev.lldi.mtus, ep->mtu, &mtu_idx,
Hariprasad S04524a42014-09-24 03:53:41 +05302402 enable_tcp_timestamps && req->tcpopt.tstamp,
2403 (AF_INET == ep->com.remote_addr.ss_family) ? 0 : 1);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002404 wscale = compute_wscale(rcv_win);
Hariprasad Shenaib408ff22014-06-06 21:40:44 +05302405
2406 /*
2407 * Specify the largest window that will fit in opt0. The
2408 * remainder will be specified in the rx_data_ack.
2409 */
2410 win = ep->rcv_win >> 10;
Anish Bhattd7990b02014-11-12 17:15:57 -08002411 if (win > RCV_BUFSIZ_M)
2412 win = RCV_BUFSIZ_M;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002413 opt0 = (nocong ? NO_CONG_F : 0) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002414 KEEP_ALIVE_F |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002415 DELACK_F |
Anish Bhattd7990b02014-11-12 17:15:57 -08002416 WND_SCALE_V(wscale) |
2417 MSS_IDX_V(mtu_idx) |
2418 L2T_IDX_V(ep->l2t->idx) |
2419 TX_CHAN_V(ep->tx_chan) |
2420 SMAC_SEL_V(ep->smac_idx) |
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002421 DSCP_V(ep->tos >> 2) |
Anish Bhattd7990b02014-11-12 17:15:57 -08002422 ULP_MODE_V(ULP_MODE_TCPDDP) |
2423 RCV_BUFSIZ_V(win);
2424 opt2 = RX_CHANNEL_V(0) |
2425 RSS_QUEUE_VALID_F | RSS_QUEUE_V(ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002426
2427 if (enable_tcp_timestamps && req->tcpopt.tstamp)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002428 opt2 |= TSTAMPS_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002429 if (enable_tcp_sack && req->tcpopt.sack)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002430 opt2 |= SACK_EN_F;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002431 if (wscale && enable_tcp_window_scaling)
Anish Bhattd7990b02014-11-12 17:15:57 -08002432 opt2 |= WND_SCALE_EN_F;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002433 if (enable_ecn) {
2434 const struct tcphdr *tcph;
2435 u32 hlen = ntohl(req->hdr_len);
2436
Hariprasad S963cab52015-09-23 17:19:27 +05302437 if (CHELSIO_CHIP_VERSION(adapter_type) <= CHELSIO_T5)
2438 tcph = (const void *)(req + 1) + ETH_HDR_LEN_G(hlen) +
2439 IP_HDR_LEN_G(hlen);
2440 else
2441 tcph = (const void *)(req + 1) +
2442 T6_ETH_HDR_LEN_G(hlen) + T6_IP_HDR_LEN_G(hlen);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002443 if (tcph->ece && tcph->cwr)
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002444 opt2 |= CCTRL_ECN_V(1);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00002445 }
Hariprasad S963cab52015-09-23 17:19:27 +05302446 if (CHELSIO_CHIP_VERSION(adapter_type) > CHELSIO_T4) {
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302447 u32 isn = (prandom_u32() & ~7UL) - 1;
Anish Bhattd7990b02014-11-12 17:15:57 -08002448 opt2 |= T5_OPT_2_VALID_F;
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05302449 opt2 |= CONG_CNTRL_V(CONG_ALG_TAHOE);
Hariprasad S0b741042015-04-22 01:44:58 +05302450 opt2 |= T5_ISS_F;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302451 rpl5 = (void *)rpl;
2452 memset(&rpl5->iss, 0, roundup(sizeof(*rpl5)-sizeof(*rpl), 16));
2453 if (peer2peer)
2454 isn += 4;
2455 rpl5->iss = cpu_to_be32(isn);
2456 PDBG("%s iss %u\n", __func__, be32_to_cpu(rpl5->iss));
Steve Wise92e50112014-04-24 14:31:59 -05002457 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002458
Steve Wisecfdda9d2010-04-21 15:30:06 -07002459 rpl->opt0 = cpu_to_be64(opt0);
2460 rpl->opt2 = cpu_to_be32(opt2);
Steve Wised4f1a5c2010-07-23 19:12:32 +00002461 set_wr_txq(skb, CPL_PRIORITY_SETUP, ep->ctrlq_idx);
Hariprasad S9dec9002016-05-05 01:27:29 +05302462 t4_set_arp_err_handler(skb, ep, pass_accept_rpl_arp_failure);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002463
Hariprasad S9dec9002016-05-05 01:27:29 +05302464 return c4iw_l2t_send(&ep->com.dev->rdev, skb, ep->l2t);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002465}
2466
Vipul Pandya830662f2013-07-04 16:10:47 +05302467static void reject_cr(struct c4iw_dev *dev, u32 hwtid, struct sk_buff *skb)
Steve Wisecfdda9d2010-04-21 15:30:06 -07002468{
Vipul Pandya830662f2013-07-04 16:10:47 +05302469 PDBG("%s c4iw_dev %p tid %u\n", __func__, dev, hwtid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002470 BUG_ON(skb_cloned(skb));
2471 skb_trim(skb, sizeof(struct cpl_tid_release));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002472 release_tid(&dev->rdev, hwtid, skb);
2473 return;
2474}
2475
Hariprasad S963cab52015-09-23 17:19:27 +05302476static void get_4tuple(struct cpl_pass_accept_req *req, enum chip_type type,
2477 int *iptype, __u8 *local_ip, __u8 *peer_ip,
Steve Wisecfdda9d2010-04-21 15:30:06 -07002478 __be16 *local_port, __be16 *peer_port)
2479{
Hariprasad S963cab52015-09-23 17:19:27 +05302480 int eth_len = (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) ?
2481 ETH_HDR_LEN_G(be32_to_cpu(req->hdr_len)) :
2482 T6_ETH_HDR_LEN_G(be32_to_cpu(req->hdr_len));
2483 int ip_len = (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) ?
2484 IP_HDR_LEN_G(be32_to_cpu(req->hdr_len)) :
2485 T6_IP_HDR_LEN_G(be32_to_cpu(req->hdr_len));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002486 struct iphdr *ip = (struct iphdr *)((u8 *)(req + 1) + eth_len);
Vipul Pandya830662f2013-07-04 16:10:47 +05302487 struct ipv6hdr *ip6 = (struct ipv6hdr *)((u8 *)(req + 1) + eth_len);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002488 struct tcphdr *tcp = (struct tcphdr *)
2489 ((u8 *)(req + 1) + eth_len + ip_len);
2490
Vipul Pandya830662f2013-07-04 16:10:47 +05302491 if (ip->version == 4) {
2492 PDBG("%s saddr 0x%x daddr 0x%x sport %u dport %u\n", __func__,
2493 ntohl(ip->saddr), ntohl(ip->daddr), ntohs(tcp->source),
2494 ntohs(tcp->dest));
2495 *iptype = 4;
2496 memcpy(peer_ip, &ip->saddr, 4);
2497 memcpy(local_ip, &ip->daddr, 4);
2498 } else {
2499 PDBG("%s saddr %pI6 daddr %pI6 sport %u dport %u\n", __func__,
2500 ip6->saddr.s6_addr, ip6->daddr.s6_addr, ntohs(tcp->source),
2501 ntohs(tcp->dest));
2502 *iptype = 6;
2503 memcpy(peer_ip, ip6->saddr.s6_addr, 16);
2504 memcpy(local_ip, ip6->daddr.s6_addr, 16);
2505 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002506 *peer_port = tcp->source;
2507 *local_port = tcp->dest;
2508
2509 return;
2510}
2511
2512static int pass_accept_req(struct c4iw_dev *dev, struct sk_buff *skb)
2513{
Vipul Pandya793dad92012-12-10 09:30:56 +00002514 struct c4iw_ep *child_ep = NULL, *parent_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002515 struct cpl_pass_accept_req *req = cplhdr(skb);
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002516 unsigned int stid = PASS_OPEN_TID_G(ntohl(req->tos_stid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002517 struct tid_info *t = dev->rdev.lldi.tids;
2518 unsigned int hwtid = GET_TID(req);
2519 struct dst_entry *dst;
Vipul Pandya830662f2013-07-04 16:10:47 +05302520 __u8 local_ip[16], peer_ip[16];
Steve Wisecfdda9d2010-04-21 15:30:06 -07002521 __be16 local_port, peer_port;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302522 struct sockaddr_in6 *sin6;
David Miller3786cf12011-12-02 16:52:31 +00002523 int err;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002524 u16 peer_mss = ntohs(req->tcpopt.mss);
Vipul Pandya830662f2013-07-04 16:10:47 +05302525 int iptype;
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302526 unsigned short hdrs;
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302527 u8 tos = PASS_OPEN_TOS_G(ntohl(req->tos_stid));
Steve Wisecfdda9d2010-04-21 15:30:06 -07002528
Hariprasad Sf86fac72016-05-06 22:18:07 +05302529 parent_ep = (struct c4iw_ep *)get_ep_from_stid(dev, stid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00002530 if (!parent_ep) {
2531 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
2532 goto reject;
2533 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00002534
Steve Wisecfdda9d2010-04-21 15:30:06 -07002535 if (state_read(&parent_ep->com) != LISTEN) {
Hariprasad S6812fae2016-02-05 11:43:29 +05302536 PDBG("%s - listening ep not in LISTEN\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002537 goto reject;
2538 }
2539
Hariprasad S963cab52015-09-23 17:19:27 +05302540 get_4tuple(req, parent_ep->com.dev->rdev.lldi.adapter_type, &iptype,
2541 local_ip, peer_ip, &local_port, &peer_port);
Vipul Pandya830662f2013-07-04 16:10:47 +05302542
Steve Wisecfdda9d2010-04-21 15:30:06 -07002543 /* Find output route */
Vipul Pandya830662f2013-07-04 16:10:47 +05302544 if (iptype == 4) {
2545 PDBG("%s parent ep %p hwtid %u laddr %pI4 raddr %pI4 lport %d rport %d peer_mss %d\n"
2546 , __func__, parent_ep, hwtid,
2547 local_ip, peer_ip, ntohs(local_port),
2548 ntohs(peer_port), peer_mss);
2549 dst = find_route(dev, *(__be32 *)local_ip, *(__be32 *)peer_ip,
2550 local_port, peer_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302551 tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05302552 } else {
2553 PDBG("%s parent ep %p hwtid %u laddr %pI6 raddr %pI6 lport %d rport %d peer_mss %d\n"
2554 , __func__, parent_ep, hwtid,
2555 local_ip, peer_ip, ntohs(local_port),
2556 ntohs(peer_port), peer_mss);
2557 dst = find_route6(dev, local_ip, peer_ip, local_port, peer_port,
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08002558 PASS_OPEN_TOS_G(ntohl(req->tos_stid)),
Vipul Pandya830662f2013-07-04 16:10:47 +05302559 ((struct sockaddr_in6 *)
2560 &parent_ep->com.local_addr)->sin6_scope_id);
2561 }
2562 if (!dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07002563 printk(KERN_ERR MOD "%s - failed to find dst entry!\n",
2564 __func__);
2565 goto reject;
2566 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002567
2568 child_ep = alloc_ep(sizeof(*child_ep), GFP_KERNEL);
2569 if (!child_ep) {
2570 printk(KERN_ERR MOD "%s - failed to allocate ep entry!\n",
2571 __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002572 dst_release(dst);
2573 goto reject;
2574 }
David Miller3786cf12011-12-02 16:52:31 +00002575
Hariprasad S963cab52015-09-23 17:19:27 +05302576 err = import_ep(child_ep, iptype, peer_ip, dst, dev, false,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302577 parent_ep->com.dev->rdev.lldi.adapter_type, tos);
David Miller3786cf12011-12-02 16:52:31 +00002578 if (err) {
2579 printk(KERN_ERR MOD "%s - failed to allocate l2t entry!\n",
2580 __func__);
2581 dst_release(dst);
2582 kfree(child_ep);
2583 goto reject;
2584 }
2585
Hariprasad Shenai92e7ae72014-06-06 21:40:43 +05302586 hdrs = sizeof(struct iphdr) + sizeof(struct tcphdr) +
2587 ((enable_tcp_timestamps && req->tcpopt.tstamp) ? 12 : 0);
2588 if (peer_mss && child_ep->mtu > (peer_mss + hdrs))
2589 child_ep->mtu = peer_mss + hdrs;
Vipul Pandya1cab7752012-12-10 09:30:55 +00002590
Steve Wisecfdda9d2010-04-21 15:30:06 -07002591 state_set(&child_ep->com, CONNECTING);
2592 child_ep->com.dev = dev;
2593 child_ep->com.cm_id = NULL;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002594
Vipul Pandya830662f2013-07-04 16:10:47 +05302595 if (iptype == 4) {
2596 struct sockaddr_in *sin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06002597 &child_ep->com.local_addr;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002598
Vipul Pandya830662f2013-07-04 16:10:47 +05302599 sin->sin_family = PF_INET;
2600 sin->sin_port = local_port;
2601 sin->sin_addr.s_addr = *(__be32 *)local_ip;
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002602
2603 sin = (struct sockaddr_in *)&child_ep->com.local_addr;
2604 sin->sin_family = PF_INET;
2605 sin->sin_port = ((struct sockaddr_in *)
2606 &parent_ep->com.local_addr)->sin_port;
2607 sin->sin_addr.s_addr = *(__be32 *)local_ip;
2608
Steve Wise170003c2016-02-26 09:18:03 -06002609 sin = (struct sockaddr_in *)&child_ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302610 sin->sin_family = PF_INET;
2611 sin->sin_port = peer_port;
2612 sin->sin_addr.s_addr = *(__be32 *)peer_ip;
2613 } else {
Steve Wise170003c2016-02-26 09:18:03 -06002614 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302615 sin6->sin6_family = PF_INET6;
2616 sin6->sin6_port = local_port;
2617 memcpy(sin6->sin6_addr.s6_addr, local_ip, 16);
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002618
2619 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
2620 sin6->sin6_family = PF_INET6;
2621 sin6->sin6_port = ((struct sockaddr_in6 *)
2622 &parent_ep->com.local_addr)->sin6_port;
2623 memcpy(sin6->sin6_addr.s6_addr, local_ip, 16);
2624
Steve Wise170003c2016-02-26 09:18:03 -06002625 sin6 = (struct sockaddr_in6 *)&child_ep->com.remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05302626 sin6->sin6_family = PF_INET6;
2627 sin6->sin6_port = peer_port;
2628 memcpy(sin6->sin6_addr.s6_addr, peer_ip, 16);
2629 }
Steve Wise5b6b8fe2015-04-21 16:28:41 -04002630
Steve Wisecfdda9d2010-04-21 15:30:06 -07002631 c4iw_get_ep(&parent_ep->com);
2632 child_ep->parent_ep = parent_ep;
Hariprasad Sac8e4c62016-02-05 11:43:30 +05302633 child_ep->tos = tos;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002634 child_ep->dst = dst;
2635 child_ep->hwtid = hwtid;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002636
2637 PDBG("%s tx_chan %u smac_idx %u rss_qid %u\n", __func__,
David Miller3786cf12011-12-02 16:52:31 +00002638 child_ep->tx_chan, child_ep->smac_idx, child_ep->rss_qid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002639
2640 init_timer(&child_ep->timer);
2641 cxgb4_insert_tid(t, child_ep, hwtid);
Hariprasad S944661d2016-05-06 22:18:03 +05302642 insert_ep_tid(child_ep);
Hariprasad S9dec9002016-05-05 01:27:29 +05302643 if (accept_cr(child_ep, skb, req)) {
2644 c4iw_put_ep(&parent_ep->com);
2645 release_ep_resources(child_ep);
2646 } else {
2647 set_bit(PASS_ACCEPT_REQ, &child_ep->com.history);
2648 }
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302649 if (iptype == 6) {
Steve Wise170003c2016-02-26 09:18:03 -06002650 sin6 = (struct sockaddr_in6 *)&child_ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302651 cxgb4_clip_get(child_ep->com.dev->rdev.lldi.ports[0],
2652 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
2653 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002654 goto out;
2655reject:
Vipul Pandya830662f2013-07-04 16:10:47 +05302656 reject_cr(dev, hwtid, skb);
Hariprasad Sf86fac72016-05-06 22:18:07 +05302657 if (parent_ep)
2658 c4iw_put_ep(&parent_ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002659out:
2660 return 0;
2661}
2662
2663static int pass_establish(struct c4iw_dev *dev, struct sk_buff *skb)
2664{
2665 struct c4iw_ep *ep;
2666 struct cpl_pass_establish *req = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002667 unsigned int tid = GET_TID(req);
Hariprasad Sfef44222016-05-05 01:27:33 +05302668 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002669
Hariprasad S944661d2016-05-06 22:18:03 +05302670 ep = get_ep_from_tid(dev, tid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002671 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2672 ep->snd_seq = be32_to_cpu(req->snd_isn);
2673 ep->rcv_seq = be32_to_cpu(req->rcv_isn);
2674
Vipul Pandya1cab7752012-12-10 09:30:55 +00002675 PDBG("%s ep %p hwtid %u tcp_opt 0x%02x\n", __func__, ep, tid,
2676 ntohs(req->tcp_opt));
2677
Steve Wisecfdda9d2010-04-21 15:30:06 -07002678 set_emss(ep, ntohs(req->tcp_opt));
2679
2680 dst_confirm(ep->dst);
Hariprasad Sfef44222016-05-05 01:27:33 +05302681 mutex_lock(&ep->com.mutex);
2682 ep->com.state = MPA_REQ_WAIT;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002683 start_ep_timer(ep);
Vipul Pandya793dad92012-12-10 09:30:56 +00002684 set_bit(PASS_ESTAB, &ep->com.history);
Hariprasad Sfef44222016-05-05 01:27:33 +05302685 ret = send_flowc(ep, skb);
2686 mutex_unlock(&ep->com.mutex);
2687 if (ret)
2688 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Hariprasad S944661d2016-05-06 22:18:03 +05302689 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002690
2691 return 0;
2692}
2693
2694static int peer_close(struct c4iw_dev *dev, struct sk_buff *skb)
2695{
2696 struct cpl_peer_close *hdr = cplhdr(skb);
2697 struct c4iw_ep *ep;
2698 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002699 int disconnect = 1;
2700 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002701 unsigned int tid = GET_TID(hdr);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002702 int ret;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002703
Hariprasad S944661d2016-05-06 22:18:03 +05302704 ep = get_ep_from_tid(dev, tid);
2705 if (!ep)
2706 return 0;
2707
Steve Wisecfdda9d2010-04-21 15:30:06 -07002708 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2709 dst_confirm(ep->dst);
2710
Vipul Pandya793dad92012-12-10 09:30:56 +00002711 set_bit(PEER_CLOSE, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002712 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002713 switch (ep->com.state) {
2714 case MPA_REQ_WAIT:
2715 __state_set(&ep->com, CLOSING);
2716 break;
2717 case MPA_REQ_SENT:
2718 __state_set(&ep->com, CLOSING);
2719 connect_reply_upcall(ep, -ECONNRESET);
2720 break;
2721 case MPA_REQ_RCVD:
2722
2723 /*
2724 * We're gonna mark this puppy DEAD, but keep
2725 * the reference on it until the ULP accepts or
2726 * rejects the CR. Also wake up anyone waiting
2727 * in rdma connection migration (see c4iw_accept_cr()).
2728 */
2729 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002730 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002731 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002732 break;
2733 case MPA_REP_SENT:
2734 __state_set(&ep->com, CLOSING);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002735 PDBG("waking up ep %p tid %u\n", ep, ep->hwtid);
Steve Wised9594d92011-05-09 22:06:22 -07002736 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002737 break;
2738 case FPDU_MODE:
Steve Wiseca5a2202010-07-23 19:12:37 +00002739 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002740 __state_set(&ep->com, CLOSING);
Steve Wise30c95c22011-05-09 22:06:22 -07002741 attrs.next_state = C4IW_QP_STATE_CLOSING;
Steve Wise8da7e7a2011-06-14 20:59:27 +00002742 ret = c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
Steve Wise30c95c22011-05-09 22:06:22 -07002743 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
Steve Wise8da7e7a2011-06-14 20:59:27 +00002744 if (ret != -ECONNRESET) {
2745 peer_close_upcall(ep);
2746 disconnect = 1;
2747 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002748 break;
2749 case ABORTING:
2750 disconnect = 0;
2751 break;
2752 case CLOSING:
2753 __state_set(&ep->com, MORIBUND);
2754 disconnect = 0;
2755 break;
2756 case MORIBUND:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002757 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002758 if (ep->com.cm_id && ep->com.qp) {
2759 attrs.next_state = C4IW_QP_STATE_IDLE;
2760 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2761 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2762 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05302763 close_complete_upcall(ep, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002764 __state_set(&ep->com, DEAD);
2765 release = 1;
2766 disconnect = 0;
2767 break;
2768 case DEAD:
2769 disconnect = 0;
2770 break;
2771 default:
2772 BUG_ON(1);
2773 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002774 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002775 if (disconnect)
2776 c4iw_ep_disconnect(ep, 0, GFP_KERNEL);
2777 if (release)
2778 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05302779 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002780 return 0;
2781}
2782
Steve Wisecfdda9d2010-04-21 15:30:06 -07002783static int peer_abort(struct c4iw_dev *dev, struct sk_buff *skb)
2784{
2785 struct cpl_abort_req_rss *req = cplhdr(skb);
2786 struct c4iw_ep *ep;
2787 struct cpl_abort_rpl *rpl;
2788 struct sk_buff *rpl_skb;
2789 struct c4iw_qp_attributes attrs;
2790 int ret;
2791 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002792 unsigned int tid = GET_TID(req);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002793
Hariprasad S944661d2016-05-06 22:18:03 +05302794 ep = get_ep_from_tid(dev, tid);
2795 if (!ep)
2796 return 0;
2797
Steve Wise7a2cea22014-03-14 21:52:07 +05302798 if (is_neg_adv(req->status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05302799 PDBG("%s Negative advice on abort- tid %u status %d (%s)\n",
2800 __func__, ep->hwtid, req->status,
2801 neg_adv_str(req->status));
2802 ep->stats.abort_neg_adv++;
2803 mutex_lock(&dev->rdev.stats.lock);
2804 dev->rdev.stats.neg_adv++;
2805 mutex_unlock(&dev->rdev.stats.lock);
Hariprasad S944661d2016-05-06 22:18:03 +05302806 goto deref_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002807 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002808 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
2809 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00002810 set_bit(PEER_ABORT, &ep->com.history);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002811
2812 /*
2813 * Wake up any threads in rdma_init() or rdma_fini().
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302814 * However, this is not needed if com state is just
2815 * MPA_REQ_SENT
Steve Wise2f5b48c2010-09-10 11:15:36 -05002816 */
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302817 if (ep->com.state != MPA_REQ_SENT)
2818 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002819
2820 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002821 switch (ep->com.state) {
2822 case CONNECTING:
Hariprasad S9dec9002016-05-05 01:27:29 +05302823 c4iw_put_ep(&ep->parent_ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002824 break;
2825 case MPA_REQ_WAIT:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002826 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002827 break;
2828 case MPA_REQ_SENT:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002829 (void)stop_ep_timer(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002830 if (mpa_rev == 1 || (mpa_rev == 2 && ep->tried_with_mpa_v1))
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302831 connect_reply_upcall(ep, -ECONNRESET);
2832 else {
2833 /*
2834 * we just don't send notification upwards because we
2835 * want to retry with mpa_v1 without upper layers even
2836 * knowing it.
2837 *
2838 * do some housekeeping so as to re-initiate the
2839 * connection
2840 */
2841 PDBG("%s: mpa_rev=%d. Retrying with mpav1\n", __func__,
2842 mpa_rev);
2843 ep->retry_with_mpa_v1 = 1;
2844 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07002845 break;
2846 case MPA_REP_SENT:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002847 break;
2848 case MPA_REQ_RCVD:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002849 break;
2850 case MORIBUND:
2851 case CLOSING:
Steve Wiseca5a2202010-07-23 19:12:37 +00002852 stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002853 /*FALLTHROUGH*/
2854 case FPDU_MODE:
2855 if (ep->com.cm_id && ep->com.qp) {
2856 attrs.next_state = C4IW_QP_STATE_ERROR;
2857 ret = c4iw_modify_qp(ep->com.qp->rhp,
2858 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
2859 &attrs, 1);
2860 if (ret)
2861 printk(KERN_ERR MOD
2862 "%s - qp <- error failed!\n",
2863 __func__);
2864 }
2865 peer_abort_upcall(ep);
2866 break;
2867 case ABORTING:
2868 break;
2869 case DEAD:
2870 PDBG("%s PEER_ABORT IN DEAD STATE!!!!\n", __func__);
Steve Wise2f5b48c2010-09-10 11:15:36 -05002871 mutex_unlock(&ep->com.mutex);
Hariprasad S944661d2016-05-06 22:18:03 +05302872 goto deref_ep;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002873 default:
2874 BUG_ON(1);
2875 break;
2876 }
2877 dst_confirm(ep->dst);
2878 if (ep->com.state != ABORTING) {
2879 __state_set(&ep->com, DEAD);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302880 /* we don't release if we want to retry with mpa_v1 */
2881 if (!ep->retry_with_mpa_v1)
2882 release = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002883 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002884 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002885
2886 rpl_skb = get_skb(skb, sizeof(*rpl), GFP_KERNEL);
2887 if (!rpl_skb) {
2888 printk(KERN_ERR MOD "%s - cannot allocate skb!\n",
2889 __func__);
2890 release = 1;
2891 goto out;
2892 }
2893 set_wr_txq(skb, CPL_PRIORITY_DATA, ep->txq_idx);
2894 rpl = (struct cpl_abort_rpl *) skb_put(rpl_skb, sizeof(*rpl));
2895 INIT_TP_WR(rpl, ep->hwtid);
2896 OPCODE_TID(rpl) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_RPL, ep->hwtid));
2897 rpl->cmd = CPL_ABORT_NO_RST;
2898 c4iw_ofld_send(&ep->com.dev->rdev, rpl_skb);
2899out:
Steve Wisecfdda9d2010-04-21 15:30:06 -07002900 if (release)
2901 release_ep_resources(ep);
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002902 else if (ep->retry_with_mpa_v1) {
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302903 if (ep->com.remote_addr.ss_family == AF_INET6) {
2904 struct sockaddr_in6 *sin6 =
2905 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06002906 &ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05302907 cxgb4_clip_release(
2908 ep->com.dev->rdev.lldi.ports[0],
2909 (const u32 *)&sin6->sin6_addr.s6_addr,
2910 1);
2911 }
Vipul Pandyafe7e0a42013-01-07 13:11:57 +00002912 remove_handle(ep->com.dev, &ep->com.dev->hwtid_idr, ep->hwtid);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05302913 cxgb4_remove_tid(ep->com.dev->rdev.lldi.tids, 0, ep->hwtid);
2914 dst_release(ep->dst);
2915 cxgb4_l2t_release(ep->l2t);
2916 c4iw_reconnect(ep);
2917 }
2918
Hariprasad S944661d2016-05-06 22:18:03 +05302919deref_ep:
2920 c4iw_put_ep(&ep->com);
2921 /* Dereferencing ep, referenced in peer_abort_intr() */
2922 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002923 return 0;
2924}
2925
2926static int close_con_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
2927{
2928 struct c4iw_ep *ep;
2929 struct c4iw_qp_attributes attrs;
2930 struct cpl_close_con_rpl *rpl = cplhdr(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002931 int release = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002932 unsigned int tid = GET_TID(rpl);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002933
Hariprasad S944661d2016-05-06 22:18:03 +05302934 ep = get_ep_from_tid(dev, tid);
2935 if (!ep)
2936 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002937
2938 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
2939 BUG_ON(!ep);
2940
2941 /* The cm_id may be null if we failed to connect */
Steve Wise2f5b48c2010-09-10 11:15:36 -05002942 mutex_lock(&ep->com.mutex);
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05302943 set_bit(CLOSE_CON_RPL, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002944 switch (ep->com.state) {
2945 case CLOSING:
2946 __state_set(&ep->com, MORIBUND);
2947 break;
2948 case MORIBUND:
Steve Wiseb33bd0c2014-04-09 09:38:25 -05002949 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002950 if ((ep->com.cm_id) && (ep->com.qp)) {
2951 attrs.next_state = C4IW_QP_STATE_IDLE;
2952 c4iw_modify_qp(ep->com.qp->rhp,
2953 ep->com.qp,
2954 C4IW_QP_ATTR_NEXT_STATE,
2955 &attrs, 1);
2956 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05302957 close_complete_upcall(ep, 0);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002958 __state_set(&ep->com, DEAD);
2959 release = 1;
2960 break;
2961 case ABORTING:
2962 case DEAD:
2963 break;
2964 default:
2965 BUG_ON(1);
2966 break;
2967 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05002968 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002969 if (release)
2970 release_ep_resources(ep);
Hariprasad S944661d2016-05-06 22:18:03 +05302971 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002972 return 0;
2973}
2974
2975static int terminate(struct c4iw_dev *dev, struct sk_buff *skb)
2976{
Steve Wise0e42c1f2010-09-10 11:15:09 -05002977 struct cpl_rdma_terminate *rpl = cplhdr(skb);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002978 unsigned int tid = GET_TID(rpl);
2979 struct c4iw_ep *ep;
2980 struct c4iw_qp_attributes attrs;
Steve Wisecfdda9d2010-04-21 15:30:06 -07002981
Hariprasad S944661d2016-05-06 22:18:03 +05302982 ep = get_ep_from_tid(dev, tid);
Steve Wise0e42c1f2010-09-10 11:15:09 -05002983 BUG_ON(!ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002984
Steve Wise30c95c22011-05-09 22:06:22 -07002985 if (ep && ep->com.qp) {
Steve Wise0e42c1f2010-09-10 11:15:09 -05002986 printk(KERN_WARNING MOD "TERM received tid %u qpid %u\n", tid,
2987 ep->com.qp->wq.sq.qid);
2988 attrs.next_state = C4IW_QP_STATE_TERMINATE;
2989 c4iw_modify_qp(ep->com.qp->rhp, ep->com.qp,
2990 C4IW_QP_ATTR_NEXT_STATE, &attrs, 1);
2991 } else
Steve Wise30c95c22011-05-09 22:06:22 -07002992 printk(KERN_WARNING MOD "TERM received tid %u no ep/qp\n", tid);
Hariprasad S944661d2016-05-06 22:18:03 +05302993 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07002994
Steve Wisecfdda9d2010-04-21 15:30:06 -07002995 return 0;
2996}
2997
2998/*
2999 * Upcall from the adapter indicating data has been transmitted.
3000 * For us its just the single MPA request or reply. We can now free
3001 * the skb holding the mpa message.
3002 */
3003static int fw4_ack(struct c4iw_dev *dev, struct sk_buff *skb)
3004{
3005 struct c4iw_ep *ep;
3006 struct cpl_fw4_ack *hdr = cplhdr(skb);
3007 u8 credits = hdr->credits;
3008 unsigned int tid = GET_TID(hdr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003009
3010
Hariprasad S944661d2016-05-06 22:18:03 +05303011 ep = get_ep_from_tid(dev, tid);
3012 if (!ep)
3013 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003014 PDBG("%s ep %p tid %u credits %u\n", __func__, ep, ep->hwtid, credits);
3015 if (credits == 0) {
Joe Perchesaa1ad262010-10-25 19:44:22 -07003016 PDBG("%s 0 credit ack ep %p tid %u state %u\n",
3017 __func__, ep, ep->hwtid, state_read(&ep->com));
Hariprasad S944661d2016-05-06 22:18:03 +05303018 goto out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003019 }
3020
3021 dst_confirm(ep->dst);
3022 if (ep->mpa_skb) {
3023 PDBG("%s last streaming msg ack ep %p tid %u state %u "
3024 "initiator %u freeing skb\n", __func__, ep, ep->hwtid,
3025 state_read(&ep->com), ep->mpa_attr.initiator ? 1 : 0);
3026 kfree_skb(ep->mpa_skb);
3027 ep->mpa_skb = NULL;
Hariprasad Se4b76a22016-05-06 22:17:59 +05303028 mutex_lock(&ep->com.mutex);
3029 if (test_bit(STOP_MPA_TIMER, &ep->com.flags))
3030 stop_ep_timer(ep);
3031 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003032 }
Hariprasad S944661d2016-05-06 22:18:03 +05303033out:
3034 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003035 return 0;
3036}
3037
Steve Wisecfdda9d2010-04-21 15:30:06 -07003038int c4iw_reject_cr(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
3039{
Steve Wisea7db89e2014-03-21 20:40:35 +05303040 int err = 0;
3041 int disconnect = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003042 struct c4iw_ep *ep = to_ep(cm_id);
3043 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
3044
Steve Wisea7db89e2014-03-21 20:40:35 +05303045 mutex_lock(&ep->com.mutex);
Hariprasad Se8667a92016-05-06 22:18:06 +05303046 if (ep->com.state != MPA_REQ_RCVD) {
Steve Wisea7db89e2014-03-21 20:40:35 +05303047 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003048 c4iw_put_ep(&ep->com);
3049 return -ECONNRESET;
3050 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003051 set_bit(ULP_REJECT, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003052 if (mpa_rev == 0)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303053 disconnect = 2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003054 else {
3055 err = send_mpa_reject(ep, pdata, pdata_len);
Steve Wisea7db89e2014-03-21 20:40:35 +05303056 disconnect = 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003057 }
Steve Wisea7db89e2014-03-21 20:40:35 +05303058 mutex_unlock(&ep->com.mutex);
Hariprasad Se4b76a22016-05-06 22:17:59 +05303059 if (disconnect) {
3060 stop_ep_timer(ep);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303061 err = c4iw_ep_disconnect(ep, disconnect == 2, GFP_KERNEL);
Hariprasad Se4b76a22016-05-06 22:17:59 +05303062 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003063 c4iw_put_ep(&ep->com);
3064 return 0;
3065}
3066
3067int c4iw_accept_cr(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
3068{
3069 int err;
3070 struct c4iw_qp_attributes attrs;
3071 enum c4iw_qp_attr_mask mask;
3072 struct c4iw_ep *ep = to_ep(cm_id);
3073 struct c4iw_dev *h = to_c4iw_dev(cm_id->device);
3074 struct c4iw_qp *qp = get_qhp(h, conn_param->qpn);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303075 int abort = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003076
3077 PDBG("%s ep %p tid %u\n", __func__, ep, ep->hwtid);
Steve Wisea7db89e2014-03-21 20:40:35 +05303078
3079 mutex_lock(&ep->com.mutex);
Hariprasad Se8667a92016-05-06 22:18:06 +05303080 if (ep->com.state != MPA_REQ_RCVD) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003081 err = -ECONNRESET;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303082 goto err_out;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003083 }
3084
Steve Wisecfdda9d2010-04-21 15:30:06 -07003085 BUG_ON(!qp);
3086
Vipul Pandya793dad92012-12-10 09:30:56 +00003087 set_bit(ULP_ACCEPT, &ep->com.history);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303088 if ((conn_param->ord > cur_max_read_depth(ep->com.dev)) ||
3089 (conn_param->ird > cur_max_read_depth(ep->com.dev))) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003090 err = -EINVAL;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303091 goto err_abort;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003092 }
3093
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303094 if (ep->mpa_attr.version == 2 && ep->mpa_attr.enhanced_rdma_conn) {
3095 if (conn_param->ord > ep->ird) {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303096 if (RELAXED_IRD_NEGOTIATION) {
3097 ep->ord = ep->ird;
3098 } else {
3099 ep->ird = conn_param->ird;
3100 ep->ord = conn_param->ord;
3101 send_mpa_reject(ep, conn_param->private_data,
3102 conn_param->private_data_len);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303103 err = -ENOMEM;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303104 goto err_abort;
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303105 }
3106 }
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303107 if (conn_param->ird < ep->ord) {
3108 if (RELAXED_IRD_NEGOTIATION &&
3109 ep->ord <= h->rdev.lldi.max_ordird_qp) {
3110 conn_param->ird = ep->ord;
3111 } else {
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303112 err = -ENOMEM;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303113 goto err_abort;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303114 }
3115 }
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303116 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003117 ep->ird = conn_param->ird;
3118 ep->ord = conn_param->ord;
3119
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303120 if (ep->mpa_attr.version == 1) {
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303121 if (peer2peer && ep->ird == 0)
3122 ep->ird = 1;
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303123 } else {
3124 if (peer2peer &&
3125 (ep->mpa_attr.p2p_type != FW_RI_INIT_P2PTYPE_DISABLED) &&
Hariprasad Sf57b7802015-09-08 09:56:59 +05303126 (p2p_type == FW_RI_INIT_P2PTYPE_READ_REQ) && ep->ird == 0)
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303127 ep->ird = 1;
3128 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003129
3130 PDBG("%s %d ird %d ord %d\n", __func__, __LINE__, ep->ird, ep->ord);
3131
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303132 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303133 ref_cm_id(&ep->com);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303134 ep->com.qp = qp;
Vipul Pandya325abea2013-01-07 13:11:53 +00003135 ref_qp(ep);
Kumar Sanghvid2fe99e2011-09-25 20:17:44 +05303136
Steve Wisecfdda9d2010-04-21 15:30:06 -07003137 /* bind QP to EP and move to RTS */
3138 attrs.mpa_attr = ep->mpa_attr;
3139 attrs.max_ird = ep->ird;
3140 attrs.max_ord = ep->ord;
3141 attrs.llp_stream_handle = ep;
3142 attrs.next_state = C4IW_QP_STATE_RTS;
3143
3144 /* bind QP and TID with INIT_WR */
3145 mask = C4IW_QP_ATTR_NEXT_STATE |
3146 C4IW_QP_ATTR_LLP_STREAM_HANDLE |
3147 C4IW_QP_ATTR_MPA_ATTR |
3148 C4IW_QP_ATTR_MAX_IRD |
3149 C4IW_QP_ATTR_MAX_ORD;
3150
3151 err = c4iw_modify_qp(ep->com.qp->rhp,
3152 ep->com.qp, mask, &attrs, 1);
3153 if (err)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303154 goto err_deref_cm_id;
Hariprasad Se4b76a22016-05-06 22:17:59 +05303155
3156 set_bit(STOP_MPA_TIMER, &ep->com.flags);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003157 err = send_mpa_reply(ep, conn_param->private_data,
3158 conn_param->private_data_len);
3159 if (err)
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303160 goto err_deref_cm_id;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003161
Steve Wisea7db89e2014-03-21 20:40:35 +05303162 __state_set(&ep->com, FPDU_MODE);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003163 established_upcall(ep);
Steve Wisea7db89e2014-03-21 20:40:35 +05303164 mutex_unlock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003165 c4iw_put_ep(&ep->com);
3166 return 0;
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303167err_deref_cm_id:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303168 deref_cm_id(&ep->com);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303169err_abort:
3170 abort = 1;
3171err_out:
Steve Wisea7db89e2014-03-21 20:40:35 +05303172 mutex_unlock(&ep->com.mutex);
Hariprasad Seaf4c6d2016-05-05 01:27:34 +05303173 if (abort)
3174 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003175 c4iw_put_ep(&ep->com);
3176 return err;
3177}
3178
Vipul Pandya830662f2013-07-04 16:10:47 +05303179static int pick_local_ipaddrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
3180{
3181 struct in_device *ind;
3182 int found = 0;
Steve Wise170003c2016-02-26 09:18:03 -06003183 struct sockaddr_in *laddr = (struct sockaddr_in *)&cm_id->m_local_addr;
3184 struct sockaddr_in *raddr = (struct sockaddr_in *)&cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303185
3186 ind = in_dev_get(dev->rdev.lldi.ports[0]);
3187 if (!ind)
3188 return -EADDRNOTAVAIL;
3189 for_primary_ifa(ind) {
3190 laddr->sin_addr.s_addr = ifa->ifa_address;
3191 raddr->sin_addr.s_addr = ifa->ifa_address;
3192 found = 1;
3193 break;
3194 }
3195 endfor_ifa(ind);
3196 in_dev_put(ind);
3197 return found ? 0 : -EADDRNOTAVAIL;
3198}
3199
3200static int get_lladdr(struct net_device *dev, struct in6_addr *addr,
3201 unsigned char banned_flags)
3202{
3203 struct inet6_dev *idev;
3204 int err = -EADDRNOTAVAIL;
3205
3206 rcu_read_lock();
3207 idev = __in6_dev_get(dev);
3208 if (idev != NULL) {
3209 struct inet6_ifaddr *ifp;
3210
3211 read_lock_bh(&idev->lock);
3212 list_for_each_entry(ifp, &idev->addr_list, if_list) {
3213 if (ifp->scope == IFA_LINK &&
3214 !(ifp->flags & banned_flags)) {
3215 memcpy(addr, &ifp->addr, 16);
3216 err = 0;
3217 break;
3218 }
3219 }
3220 read_unlock_bh(&idev->lock);
3221 }
3222 rcu_read_unlock();
3223 return err;
3224}
3225
3226static int pick_local_ip6addrs(struct c4iw_dev *dev, struct iw_cm_id *cm_id)
3227{
3228 struct in6_addr uninitialized_var(addr);
Steve Wise170003c2016-02-26 09:18:03 -06003229 struct sockaddr_in6 *la6 = (struct sockaddr_in6 *)&cm_id->m_local_addr;
3230 struct sockaddr_in6 *ra6 = (struct sockaddr_in6 *)&cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303231
Nicholas Krause54b9a962015-08-26 23:00:59 -04003232 if (!get_lladdr(dev->rdev.lldi.ports[0], &addr, IFA_F_TENTATIVE)) {
Vipul Pandya830662f2013-07-04 16:10:47 +05303233 memcpy(la6->sin6_addr.s6_addr, &addr, 16);
3234 memcpy(ra6->sin6_addr.s6_addr, &addr, 16);
3235 return 0;
3236 }
3237 return -EADDRNOTAVAIL;
3238}
3239
Steve Wisecfdda9d2010-04-21 15:30:06 -07003240int c4iw_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
3241{
Steve Wisecfdda9d2010-04-21 15:30:06 -07003242 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
3243 struct c4iw_ep *ep;
David Miller3786cf12011-12-02 16:52:31 +00003244 int err = 0;
Steve Wise9eccfe12014-03-26 17:08:09 -05003245 struct sockaddr_in *laddr;
3246 struct sockaddr_in *raddr;
3247 struct sockaddr_in6 *laddr6;
3248 struct sockaddr_in6 *raddr6;
Vipul Pandya830662f2013-07-04 16:10:47 +05303249 __u8 *ra;
3250 int iptype;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003251
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05303252 if ((conn_param->ord > cur_max_read_depth(dev)) ||
3253 (conn_param->ird > cur_max_read_depth(dev))) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003254 err = -EINVAL;
3255 goto out;
3256 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003257 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
3258 if (!ep) {
3259 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
3260 err = -ENOMEM;
3261 goto out;
3262 }
3263 init_timer(&ep->timer);
3264 ep->plen = conn_param->private_data_len;
3265 if (ep->plen)
3266 memcpy(ep->mpa_pkt + sizeof(struct mpa_message),
3267 conn_param->private_data, ep->plen);
3268 ep->ird = conn_param->ird;
3269 ep->ord = conn_param->ord;
3270
3271 if (peer2peer && ep->ord == 0)
3272 ep->ord = 1;
3273
Steve Wisecfdda9d2010-04-21 15:30:06 -07003274 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303275 ref_cm_id(&ep->com);
3276 ep->com.dev = dev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003277 ep->com.qp = get_qhp(dev, conn_param->qpn);
Vipul Pandya830662f2013-07-04 16:10:47 +05303278 if (!ep->com.qp) {
3279 PDBG("%s qpn 0x%x not found!\n", __func__, conn_param->qpn);
3280 err = -EINVAL;
Steve Wise9eccfe12014-03-26 17:08:09 -05003281 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303282 }
Vipul Pandya325abea2013-01-07 13:11:53 +00003283 ref_qp(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003284 PDBG("%s qpn 0x%x qp %p cm_id %p\n", __func__, conn_param->qpn,
3285 ep->com.qp, cm_id);
3286
3287 /*
3288 * Allocate an active TID to initiate a TCP connection.
3289 */
3290 ep->atid = cxgb4_alloc_atid(dev->rdev.lldi.tids, ep);
3291 if (ep->atid == -1) {
3292 printk(KERN_ERR MOD "%s - cannot alloc atid.\n", __func__);
3293 err = -ENOMEM;
Steve Wise9eccfe12014-03-26 17:08:09 -05003294 goto fail1;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003295 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003296 insert_handle(dev, &dev->atid_idr, ep, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003297
Steve Wise170003c2016-02-26 09:18:03 -06003298 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -05003299 sizeof(ep->com.local_addr));
Steve Wise170003c2016-02-26 09:18:03 -06003300 memcpy(&ep->com.remote_addr, &cm_id->m_remote_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -05003301 sizeof(ep->com.remote_addr));
3302
Steve Wise170003c2016-02-26 09:18:03 -06003303 laddr = (struct sockaddr_in *)&ep->com.local_addr;
3304 raddr = (struct sockaddr_in *)&ep->com.remote_addr;
3305 laddr6 = (struct sockaddr_in6 *)&ep->com.local_addr;
3306 raddr6 = (struct sockaddr_in6 *) &ep->com.remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -05003307
Steve Wise170003c2016-02-26 09:18:03 -06003308 if (cm_id->m_remote_addr.ss_family == AF_INET) {
Vipul Pandya830662f2013-07-04 16:10:47 +05303309 iptype = 4;
3310 ra = (__u8 *)&raddr->sin_addr;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003311
Vipul Pandya830662f2013-07-04 16:10:47 +05303312 /*
3313 * Handle loopback requests to INADDR_ANY.
3314 */
Bart Van Asscheba987e52016-04-12 14:45:24 -07003315 if (raddr->sin_addr.s_addr == htonl(INADDR_ANY)) {
Vipul Pandya830662f2013-07-04 16:10:47 +05303316 err = pick_local_ipaddrs(dev, cm_id);
3317 if (err)
Steve Wise9eccfe12014-03-26 17:08:09 -05003318 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303319 }
3320
3321 /* find a route */
3322 PDBG("%s saddr %pI4 sport 0x%x raddr %pI4 rport 0x%x\n",
3323 __func__, &laddr->sin_addr, ntohs(laddr->sin_port),
3324 ra, ntohs(raddr->sin_port));
3325 ep->dst = find_route(dev, laddr->sin_addr.s_addr,
3326 raddr->sin_addr.s_addr, laddr->sin_port,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303327 raddr->sin_port, cm_id->tos);
Vipul Pandya830662f2013-07-04 16:10:47 +05303328 } else {
3329 iptype = 6;
3330 ra = (__u8 *)&raddr6->sin6_addr;
3331
3332 /*
3333 * Handle loopback requests to INADDR_ANY.
3334 */
3335 if (ipv6_addr_type(&raddr6->sin6_addr) == IPV6_ADDR_ANY) {
3336 err = pick_local_ip6addrs(dev, cm_id);
3337 if (err)
Steve Wise9eccfe12014-03-26 17:08:09 -05003338 goto fail1;
Vipul Pandya830662f2013-07-04 16:10:47 +05303339 }
3340
3341 /* find a route */
3342 PDBG("%s saddr %pI6 sport 0x%x raddr %pI6 rport 0x%x\n",
3343 __func__, laddr6->sin6_addr.s6_addr,
3344 ntohs(laddr6->sin6_port),
3345 raddr6->sin6_addr.s6_addr, ntohs(raddr6->sin6_port));
3346 ep->dst = find_route6(dev, laddr6->sin6_addr.s6_addr,
3347 raddr6->sin6_addr.s6_addr,
3348 laddr6->sin6_port, raddr6->sin6_port, 0,
3349 raddr6->sin6_scope_id);
3350 }
3351 if (!ep->dst) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003352 printk(KERN_ERR MOD "%s - cannot find route.\n", __func__);
3353 err = -EHOSTUNREACH;
Steve Wise9eccfe12014-03-26 17:08:09 -05003354 goto fail2;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003355 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003356
Hariprasad S963cab52015-09-23 17:19:27 +05303357 err = import_ep(ep, iptype, ra, ep->dst, ep->com.dev, true,
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303358 ep->com.dev->rdev.lldi.adapter_type, cm_id->tos);
David Miller3786cf12011-12-02 16:52:31 +00003359 if (err) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07003360 printk(KERN_ERR MOD "%s - cannot alloc l2e.\n", __func__);
Steve Wise9eccfe12014-03-26 17:08:09 -05003361 goto fail3;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003362 }
3363
3364 PDBG("%s txq_idx %u tx_chan %u smac_idx %u rss_qid %u l2t_idx %u\n",
3365 __func__, ep->txq_idx, ep->tx_chan, ep->smac_idx, ep->rss_qid,
3366 ep->l2t->idx);
3367
3368 state_set(&ep->com, CONNECTING);
Hariprasad Sac8e4c62016-02-05 11:43:30 +05303369 ep->tos = cm_id->tos;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003370
3371 /* send connect request to rnic */
3372 err = send_connect(ep);
3373 if (!err)
3374 goto out;
3375
3376 cxgb4_l2t_release(ep->l2t);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003377fail3:
Steve Wise9eccfe12014-03-26 17:08:09 -05003378 dst_release(ep->dst);
3379fail2:
Vipul Pandya793dad92012-12-10 09:30:56 +00003380 remove_handle(ep->com.dev, &ep->com.dev->atid_idr, ep->atid);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003381 cxgb4_free_atid(ep->com.dev->rdev.lldi.tids, ep->atid);
Steve Wise9eccfe12014-03-26 17:08:09 -05003382fail1:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303383 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003384 c4iw_put_ep(&ep->com);
3385out:
3386 return err;
3387}
3388
Vipul Pandya830662f2013-07-04 16:10:47 +05303389static int create_server6(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
3390{
3391 int err;
Steve Wise9eccfe12014-03-26 17:08:09 -05003392 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -06003393 &ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303394
Hariprasad S28de1f72016-01-13 10:03:14 +05303395 if (ipv6_addr_type(&sin6->sin6_addr) != IPV6_ADDR_ANY) {
3396 err = cxgb4_clip_get(ep->com.dev->rdev.lldi.ports[0],
3397 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
3398 if (err)
3399 return err;
3400 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303401 c4iw_init_wr_wait(&ep->com.wr_wait);
3402 err = cxgb4_create_server6(ep->com.dev->rdev.lldi.ports[0],
3403 ep->stid, &sin6->sin6_addr,
3404 sin6->sin6_port,
3405 ep->com.dev->rdev.lldi.rxq_ids[0]);
3406 if (!err)
3407 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
3408 &ep->com.wr_wait,
3409 0, 0, __func__);
Hariprasad Se6b11162014-12-08 15:02:47 +05303410 else if (err > 0)
3411 err = net_xmit_errno(err);
Hariprasad S28de1f72016-01-13 10:03:14 +05303412 if (err) {
3413 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3414 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
Vipul Pandya830662f2013-07-04 16:10:47 +05303415 pr_err("cxgb4_create_server6/filter failed err %d stid %d laddr %pI6 lport %d\n",
3416 err, ep->stid,
3417 sin6->sin6_addr.s6_addr, ntohs(sin6->sin6_port));
Hariprasad S28de1f72016-01-13 10:03:14 +05303418 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303419 return err;
3420}
3421
3422static int create_server4(struct c4iw_dev *dev, struct c4iw_listen_ep *ep)
3423{
3424 int err;
Steve Wise9eccfe12014-03-26 17:08:09 -05003425 struct sockaddr_in *sin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -06003426 &ep->com.local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +05303427
3428 if (dev->rdev.lldi.enable_fw_ofld_conn) {
3429 do {
3430 err = cxgb4_create_server_filter(
3431 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3432 sin->sin_addr.s_addr, sin->sin_port, 0,
3433 ep->com.dev->rdev.lldi.rxq_ids[0], 0, 0);
3434 if (err == -EBUSY) {
Hariprasad S99718e52015-09-08 09:56:57 +05303435 if (c4iw_fatal_error(&ep->com.dev->rdev)) {
3436 err = -EIO;
3437 break;
3438 }
Vipul Pandya830662f2013-07-04 16:10:47 +05303439 set_current_state(TASK_UNINTERRUPTIBLE);
3440 schedule_timeout(usecs_to_jiffies(100));
3441 }
3442 } while (err == -EBUSY);
3443 } else {
3444 c4iw_init_wr_wait(&ep->com.wr_wait);
3445 err = cxgb4_create_server(ep->com.dev->rdev.lldi.ports[0],
3446 ep->stid, sin->sin_addr.s_addr, sin->sin_port,
3447 0, ep->com.dev->rdev.lldi.rxq_ids[0]);
3448 if (!err)
3449 err = c4iw_wait_for_reply(&ep->com.dev->rdev,
3450 &ep->com.wr_wait,
3451 0, 0, __func__);
Hariprasad Se6b11162014-12-08 15:02:47 +05303452 else if (err > 0)
3453 err = net_xmit_errno(err);
Vipul Pandya830662f2013-07-04 16:10:47 +05303454 }
3455 if (err)
3456 pr_err("cxgb4_create_server/filter failed err %d stid %d laddr %pI4 lport %d\n"
3457 , err, ep->stid,
3458 &sin->sin_addr, ntohs(sin->sin_port));
3459 return err;
3460}
3461
Steve Wisecfdda9d2010-04-21 15:30:06 -07003462int c4iw_create_listen(struct iw_cm_id *cm_id, int backlog)
3463{
3464 int err = 0;
3465 struct c4iw_dev *dev = to_c4iw_dev(cm_id->device);
3466 struct c4iw_listen_ep *ep;
3467
Steve Wisecfdda9d2010-04-21 15:30:06 -07003468 might_sleep();
3469
3470 ep = alloc_ep(sizeof(*ep), GFP_KERNEL);
3471 if (!ep) {
3472 printk(KERN_ERR MOD "%s - cannot alloc ep.\n", __func__);
3473 err = -ENOMEM;
3474 goto fail1;
3475 }
3476 PDBG("%s ep %p\n", __func__, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003477 ep->com.cm_id = cm_id;
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303478 ref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003479 ep->com.dev = dev;
3480 ep->backlog = backlog;
Steve Wise170003c2016-02-26 09:18:03 -06003481 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
Steve Wise24d44a32013-07-04 16:10:44 +05303482 sizeof(ep->com.local_addr));
Steve Wisecfdda9d2010-04-21 15:30:06 -07003483
3484 /*
3485 * Allocate a server TID.
3486 */
Kumar Sanghvi8c044692013-12-18 16:38:25 +05303487 if (dev->rdev.lldi.enable_fw_ofld_conn &&
3488 ep->com.local_addr.ss_family == AF_INET)
Vipul Pandya830662f2013-07-04 16:10:47 +05303489 ep->stid = cxgb4_alloc_sftid(dev->rdev.lldi.tids,
Steve Wise170003c2016-02-26 09:18:03 -06003490 cm_id->m_local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003491 else
Vipul Pandya830662f2013-07-04 16:10:47 +05303492 ep->stid = cxgb4_alloc_stid(dev->rdev.lldi.tids,
Steve Wise170003c2016-02-26 09:18:03 -06003493 cm_id->m_local_addr.ss_family, ep);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003494
Steve Wisecfdda9d2010-04-21 15:30:06 -07003495 if (ep->stid == -1) {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07003496 printk(KERN_ERR MOD "%s - cannot alloc stid.\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003497 err = -ENOMEM;
3498 goto fail2;
3499 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003500 insert_handle(dev, &dev->stid_idr, ep, ep->stid);
Steve Wise9eccfe12014-03-26 17:08:09 -05003501
Steve Wise170003c2016-02-26 09:18:03 -06003502 memcpy(&ep->com.local_addr, &cm_id->m_local_addr,
3503 sizeof(ep->com.local_addr));
Steve Wise9eccfe12014-03-26 17:08:09 -05003504
Steve Wisecfdda9d2010-04-21 15:30:06 -07003505 state_set(&ep->com, LISTEN);
Vipul Pandya830662f2013-07-04 16:10:47 +05303506 if (ep->com.local_addr.ss_family == AF_INET)
3507 err = create_server4(dev, ep);
3508 else
3509 err = create_server6(dev, ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003510 if (!err) {
3511 cm_id->provider_data = ep;
3512 goto out;
3513 }
Steve Wise9eccfe12014-03-26 17:08:09 -05003514
Vipul Pandya830662f2013-07-04 16:10:47 +05303515 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
3516 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003517fail2:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303518 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003519 c4iw_put_ep(&ep->com);
3520fail1:
3521out:
3522 return err;
3523}
3524
3525int c4iw_destroy_listen(struct iw_cm_id *cm_id)
3526{
3527 int err;
3528 struct c4iw_listen_ep *ep = to_listen_ep(cm_id);
3529
3530 PDBG("%s ep %p\n", __func__, ep);
3531
3532 might_sleep();
3533 state_set(&ep->com, DEAD);
Vipul Pandya830662f2013-07-04 16:10:47 +05303534 if (ep->com.dev->rdev.lldi.enable_fw_ofld_conn &&
3535 ep->com.local_addr.ss_family == AF_INET) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003536 err = cxgb4_remove_server_filter(
3537 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3538 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
3539 } else {
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303540 struct sockaddr_in6 *sin6;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003541 c4iw_init_wr_wait(&ep->com.wr_wait);
Vipul Pandya830662f2013-07-04 16:10:47 +05303542 err = cxgb4_remove_server(
3543 ep->com.dev->rdev.lldi.ports[0], ep->stid,
3544 ep->com.dev->rdev.lldi.rxq_ids[0], 0);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003545 if (err)
3546 goto done;
3547 err = c4iw_wait_for_reply(&ep->com.dev->rdev, &ep->com.wr_wait,
3548 0, 0, __func__);
Steve Wise170003c2016-02-26 09:18:03 -06003549 sin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303550 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3551 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003552 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003553 remove_handle(ep->com.dev, &ep->com.dev->stid_idr, ep->stid);
Vipul Pandya830662f2013-07-04 16:10:47 +05303554 cxgb4_free_stid(ep->com.dev->rdev.lldi.tids, ep->stid,
3555 ep->com.local_addr.ss_family);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003556done:
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303557 deref_cm_id(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003558 c4iw_put_ep(&ep->com);
3559 return err;
3560}
3561
3562int c4iw_ep_disconnect(struct c4iw_ep *ep, int abrupt, gfp_t gfp)
3563{
3564 int ret = 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003565 int close = 0;
3566 int fatal = 0;
3567 struct c4iw_rdev *rdev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07003568
Steve Wise2f5b48c2010-09-10 11:15:36 -05003569 mutex_lock(&ep->com.mutex);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003570
3571 PDBG("%s ep %p state %s, abrupt %d\n", __func__, ep,
3572 states[ep->com.state], abrupt);
3573
Hariprasad S6e410d82016-05-05 01:27:31 +05303574 /*
3575 * Ref the ep here in case we have fatal errors causing the
3576 * ep to be released and freed.
3577 */
3578 c4iw_get_ep(&ep->com);
3579
Steve Wisecfdda9d2010-04-21 15:30:06 -07003580 rdev = &ep->com.dev->rdev;
3581 if (c4iw_fatal_error(rdev)) {
3582 fatal = 1;
Steve Wisebe13b2d2014-03-21 20:40:33 +05303583 close_complete_upcall(ep, -EIO);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003584 ep->com.state = DEAD;
3585 }
3586 switch (ep->com.state) {
3587 case MPA_REQ_WAIT:
3588 case MPA_REQ_SENT:
3589 case MPA_REQ_RCVD:
3590 case MPA_REP_SENT:
3591 case FPDU_MODE:
3592 close = 1;
3593 if (abrupt)
3594 ep->com.state = ABORTING;
3595 else {
3596 ep->com.state = CLOSING;
Steve Wiseca5a2202010-07-23 19:12:37 +00003597 start_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003598 }
3599 set_bit(CLOSE_SENT, &ep->com.flags);
3600 break;
3601 case CLOSING:
3602 if (!test_and_set_bit(CLOSE_SENT, &ep->com.flags)) {
3603 close = 1;
3604 if (abrupt) {
Steve Wiseb33bd0c2014-04-09 09:38:25 -05003605 (void)stop_ep_timer(ep);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003606 ep->com.state = ABORTING;
3607 } else
3608 ep->com.state = MORIBUND;
3609 }
3610 break;
3611 case MORIBUND:
3612 case ABORTING:
3613 case DEAD:
3614 PDBG("%s ignoring disconnect ep %p state %u\n",
3615 __func__, ep, ep->com.state);
3616 break;
3617 default:
3618 BUG();
3619 break;
3620 }
3621
Steve Wisecfdda9d2010-04-21 15:30:06 -07003622 if (close) {
Steve Wise8da7e7a2011-06-14 20:59:27 +00003623 if (abrupt) {
Vipul Pandya793dad92012-12-10 09:30:56 +00003624 set_bit(EP_DISC_ABORT, &ep->com.history);
Steve Wisebe13b2d2014-03-21 20:40:33 +05303625 close_complete_upcall(ep, -ECONNRESET);
Steve Wise8da7e7a2011-06-14 20:59:27 +00003626 ret = send_abort(ep, NULL, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003627 } else {
3628 set_bit(EP_DISC_CLOSE, &ep->com.history);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003629 ret = send_halfclose(ep, gfp);
Vipul Pandya793dad92012-12-10 09:30:56 +00003630 }
Hariprasad S88bc230d2016-05-05 01:27:30 +05303631 if (ret) {
Hariprasad S9ca6f7c2016-05-06 22:17:54 +05303632 set_bit(EP_DISC_FAIL, &ep->com.history);
Hariprasad S88bc230d2016-05-05 01:27:30 +05303633 if (!abrupt) {
3634 stop_ep_timer(ep);
3635 close_complete_upcall(ep, -EIO);
3636 }
Hariprasad Sc00dcba2016-05-05 01:27:36 +05303637 if (ep->com.qp) {
3638 struct c4iw_qp_attributes attrs;
3639
3640 attrs.next_state = C4IW_QP_STATE_ERROR;
3641 ret = c4iw_modify_qp(ep->com.qp->rhp,
3642 ep->com.qp,
3643 C4IW_QP_ATTR_NEXT_STATE,
3644 &attrs, 1);
3645 if (ret)
3646 pr_err(MOD
3647 "%s - qp <- error failed!\n",
3648 __func__);
3649 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003650 fatal = 1;
Hariprasad S88bc230d2016-05-05 01:27:30 +05303651 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07003652 }
Steve Wise8da7e7a2011-06-14 20:59:27 +00003653 mutex_unlock(&ep->com.mutex);
Hariprasad S6e410d82016-05-05 01:27:31 +05303654 c4iw_put_ep(&ep->com);
Steve Wisecfdda9d2010-04-21 15:30:06 -07003655 if (fatal)
3656 release_ep_resources(ep);
3657 return ret;
3658}
3659
Vipul Pandya1cab7752012-12-10 09:30:55 +00003660static void active_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3661 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3662{
3663 struct c4iw_ep *ep;
Vipul Pandya793dad92012-12-10 09:30:56 +00003664 int atid = be32_to_cpu(req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003665
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003666 ep = (struct c4iw_ep *)lookup_atid(dev->rdev.lldi.tids,
3667 (__force u32) req->tid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003668 if (!ep)
3669 return;
3670
3671 switch (req->retval) {
3672 case FW_ENOMEM:
Vipul Pandya793dad92012-12-10 09:30:56 +00003673 set_bit(ACT_RETRY_NOMEM, &ep->com.history);
3674 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3675 send_fw_act_open_req(ep, atid);
3676 return;
3677 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003678 case FW_EADDRINUSE:
Vipul Pandya793dad92012-12-10 09:30:56 +00003679 set_bit(ACT_RETRY_INUSE, &ep->com.history);
3680 if (ep->retry_count++ < ACT_OPEN_RETRY_COUNT) {
3681 send_fw_act_open_req(ep, atid);
3682 return;
3683 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003684 break;
3685 default:
3686 pr_info("%s unexpected ofld conn wr retval %d\n",
3687 __func__, req->retval);
3688 break;
3689 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003690 pr_err("active ofld_connect_wr failure %d atid %d\n",
3691 req->retval, atid);
3692 mutex_lock(&dev->rdev.stats.lock);
3693 dev->rdev.stats.act_ofld_conn_fails++;
3694 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003695 connect_reply_upcall(ep, status2errno(req->retval));
Vipul Pandya793dad92012-12-10 09:30:56 +00003696 state_set(&ep->com, DEAD);
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303697 if (ep->com.remote_addr.ss_family == AF_INET6) {
3698 struct sockaddr_in6 *sin6 =
Steve Wise170003c2016-02-26 09:18:03 -06003699 (struct sockaddr_in6 *)&ep->com.local_addr;
Hariprasad S84cc6ac62015-08-25 14:08:23 +05303700 cxgb4_clip_release(ep->com.dev->rdev.lldi.ports[0],
3701 (const u32 *)&sin6->sin6_addr.s6_addr, 1);
3702 }
Vipul Pandya793dad92012-12-10 09:30:56 +00003703 remove_handle(dev, &dev->atid_idr, atid);
3704 cxgb4_free_atid(dev->rdev.lldi.tids, atid);
3705 dst_release(ep->dst);
3706 cxgb4_l2t_release(ep->l2t);
3707 c4iw_put_ep(&ep->com);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003708}
3709
3710static void passive_ofld_conn_reply(struct c4iw_dev *dev, struct sk_buff *skb,
3711 struct cpl_fw6_msg_ofld_connection_wr_rpl *req)
3712{
3713 struct sk_buff *rpl_skb;
3714 struct cpl_pass_accept_req *cpl;
3715 int ret;
3716
Paul Bolle710a3112013-02-05 20:51:30 +00003717 rpl_skb = (struct sk_buff *)(unsigned long)req->cookie;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003718 BUG_ON(!rpl_skb);
3719 if (req->retval) {
3720 PDBG("%s passive open failure %d\n", __func__, req->retval);
Vipul Pandya793dad92012-12-10 09:30:56 +00003721 mutex_lock(&dev->rdev.stats.lock);
3722 dev->rdev.stats.pas_ofld_conn_fails++;
3723 mutex_unlock(&dev->rdev.stats.lock);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003724 kfree_skb(rpl_skb);
3725 } else {
3726 cpl = (struct cpl_pass_accept_req *)cplhdr(rpl_skb);
3727 OPCODE_TID(cpl) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ,
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003728 (__force u32) htonl(
3729 (__force u32) req->tid)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003730 ret = pass_accept_req(dev, rpl_skb);
3731 if (!ret)
3732 kfree_skb(rpl_skb);
3733 }
3734 return;
3735}
3736
3737static int deferred_fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
Steve Wise2f5b48c2010-09-10 11:15:36 -05003738{
3739 struct cpl_fw6_msg *rpl = cplhdr(skb);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003740 struct cpl_fw6_msg_ofld_connection_wr_rpl *req;
3741
3742 switch (rpl->type) {
3743 case FW6_TYPE_CQE:
3744 c4iw_ev_dispatch(dev, (struct t4_cqe *)&rpl->data[0]);
3745 break;
3746 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
3747 req = (struct cpl_fw6_msg_ofld_connection_wr_rpl *)rpl->data;
3748 switch (req->t_state) {
3749 case TCP_SYN_SENT:
3750 active_ofld_conn_reply(dev, skb, req);
3751 break;
3752 case TCP_SYN_RECV:
3753 passive_ofld_conn_reply(dev, skb, req);
3754 break;
3755 default:
3756 pr_err("%s unexpected ofld conn wr state %d\n",
3757 __func__, req->t_state);
3758 break;
3759 }
3760 break;
3761 }
3762 return 0;
3763}
3764
3765static void build_cpl_pass_accept_req(struct sk_buff *skb, int stid , u8 tos)
3766{
Hariprasad S963cab52015-09-23 17:19:27 +05303767 __be32 l2info;
3768 __be16 hdr_len, vlantag, len;
3769 u16 eth_hdr_len;
3770 int tcp_hdr_len, ip_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003771 u8 intf;
3772 struct cpl_rx_pkt *cpl = cplhdr(skb);
3773 struct cpl_pass_accept_req *req;
3774 struct tcp_options_received tmp_opt;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003775 struct c4iw_dev *dev;
Hariprasad S963cab52015-09-23 17:19:27 +05303776 enum chip_type type;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003777
Vipul Pandyaf079af72013-03-14 05:08:58 +00003778 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003779 /* Store values from cpl_rx_pkt in temporary location. */
Hariprasad S963cab52015-09-23 17:19:27 +05303780 vlantag = cpl->vlan;
3781 len = cpl->len;
3782 l2info = cpl->l2info;
3783 hdr_len = cpl->hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003784 intf = cpl->iff;
3785
3786 __skb_pull(skb, sizeof(*req) + sizeof(struct rss_header));
3787
3788 /*
3789 * We need to parse the TCP options from SYN packet.
3790 * to generate cpl_pass_accept_req.
3791 */
3792 memset(&tmp_opt, 0, sizeof(tmp_opt));
3793 tcp_clear_options(&tmp_opt);
Christoph Paasch1a2c6182013-03-17 08:23:34 +00003794 tcp_parse_options(skb, &tmp_opt, 0, NULL);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003795
3796 req = (struct cpl_pass_accept_req *)__skb_push(skb, sizeof(*req));
3797 memset(req, 0, sizeof(*req));
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05303798 req->l2info = cpu_to_be16(SYN_INTF_V(intf) |
3799 SYN_MAC_IDX_V(RX_MACIDX_G(
Hariprasad S963cab52015-09-23 17:19:27 +05303800 be32_to_cpu(l2info))) |
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +05303801 SYN_XACT_MATCH_F);
Hariprasad S963cab52015-09-23 17:19:27 +05303802 type = dev->rdev.lldi.adapter_type;
3803 tcp_hdr_len = RX_TCPHDR_LEN_G(be16_to_cpu(hdr_len));
3804 ip_hdr_len = RX_IPHDR_LEN_G(be16_to_cpu(hdr_len));
3805 req->hdr_len =
3806 cpu_to_be32(SYN_RX_CHAN_V(RX_CHAN_G(be32_to_cpu(l2info))));
3807 if (CHELSIO_CHIP_VERSION(type) <= CHELSIO_T5) {
3808 eth_hdr_len = is_t4(type) ?
3809 RX_ETHHDR_LEN_G(be32_to_cpu(l2info)) :
3810 RX_T5_ETHHDR_LEN_G(be32_to_cpu(l2info));
3811 req->hdr_len |= cpu_to_be32(TCP_HDR_LEN_V(tcp_hdr_len) |
3812 IP_HDR_LEN_V(ip_hdr_len) |
3813 ETH_HDR_LEN_V(eth_hdr_len));
3814 } else { /* T6 and later */
3815 eth_hdr_len = RX_T6_ETHHDR_LEN_G(be32_to_cpu(l2info));
3816 req->hdr_len |= cpu_to_be32(T6_TCP_HDR_LEN_V(tcp_hdr_len) |
3817 T6_IP_HDR_LEN_V(ip_hdr_len) |
3818 T6_ETH_HDR_LEN_V(eth_hdr_len));
3819 }
3820 req->vlan = vlantag;
3821 req->len = len;
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003822 req->tos_stid = cpu_to_be32(PASS_OPEN_TID_V(stid) |
3823 PASS_OPEN_TOS_V(tos));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003824 req->tcpopt.mss = htons(tmp_opt.mss_clamp);
3825 if (tmp_opt.wscale_ok)
3826 req->tcpopt.wsf = tmp_opt.snd_wscale;
3827 req->tcpopt.tstamp = tmp_opt.saw_tstamp;
3828 if (tmp_opt.sack_ok)
3829 req->tcpopt.sack = 1;
3830 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_PASS_ACCEPT_REQ, 0));
3831 return;
3832}
3833
3834static void send_fw_pass_open_req(struct c4iw_dev *dev, struct sk_buff *skb,
3835 __be32 laddr, __be16 lport,
3836 __be32 raddr, __be16 rport,
3837 u32 rcv_isn, u32 filter, u16 window,
3838 u32 rss_qid, u8 port_id)
3839{
3840 struct sk_buff *req_skb;
3841 struct fw_ofld_connection_wr *req;
3842 struct cpl_pass_accept_req *cpl = cplhdr(skb);
Steve Wise1ce1d472014-03-21 20:40:31 +05303843 int ret;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003844
3845 req_skb = alloc_skb(sizeof(struct fw_ofld_connection_wr), GFP_KERNEL);
3846 req = (struct fw_ofld_connection_wr *)__skb_put(req_skb, sizeof(*req));
3847 memset(req, 0, sizeof(*req));
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003848 req->op_compl = htonl(WR_OP_V(FW_OFLD_CONNECTION_WR) | FW_WR_COMPL_F);
Hariprasad Shenaie2ac9622014-11-07 09:35:25 +05303849 req->len16_pkd = htonl(FW_WR_LEN16_V(DIV_ROUND_UP(sizeof(*req), 16)));
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05303850 req->le.version_cpl = htonl(FW_OFLD_CONNECTION_WR_CPL_F);
Vipul Pandyaef5d6352013-01-07 13:12:00 +00003851 req->le.filter = (__force __be32) filter;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003852 req->le.lport = lport;
3853 req->le.pport = rport;
3854 req->le.u.ipv4.lip = laddr;
3855 req->le.u.ipv4.pip = raddr;
3856 req->tcb.rcv_nxt = htonl(rcv_isn + 1);
3857 req->tcb.rcv_adv = htons(window);
3858 req->tcb.t_state_to_astid =
Hariprasad Shenai77a80e22014-11-21 12:52:01 +05303859 htonl(FW_OFLD_CONNECTION_WR_T_STATE_V(TCP_SYN_RECV) |
3860 FW_OFLD_CONNECTION_WR_RCV_SCALE_V(cpl->tcpopt.wsf) |
3861 FW_OFLD_CONNECTION_WR_ASTID_V(
Hariprasad Shenai6c53e932015-01-08 21:38:15 -08003862 PASS_OPEN_TID_G(ntohl(cpl->tos_stid))));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003863
3864 /*
3865 * We store the qid in opt2 which will be used by the firmware
3866 * to send us the wr response.
3867 */
Anish Bhattd7990b02014-11-12 17:15:57 -08003868 req->tcb.opt2 = htonl(RSS_QUEUE_V(rss_qid));
Vipul Pandya1cab7752012-12-10 09:30:55 +00003869
3870 /*
3871 * We initialize the MSS index in TCB to 0xF.
3872 * So that when driver sends cpl_pass_accept_rpl
3873 * TCB picks up the correct value. If this was 0
3874 * TP will ignore any value > 0 for MSS index.
3875 */
Anish Bhattd7990b02014-11-12 17:15:57 -08003876 req->tcb.opt0 = cpu_to_be64(MSS_IDX_V(0xF));
Hariprasad S6198dd82015-04-22 01:44:59 +05303877 req->cookie = (uintptr_t)skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003878
3879 set_wr_txq(req_skb, CPL_PRIORITY_CONTROL, port_id);
Steve Wise1ce1d472014-03-21 20:40:31 +05303880 ret = cxgb4_ofld_send(dev->rdev.lldi.ports[0], req_skb);
3881 if (ret < 0) {
3882 pr_err("%s - cxgb4_ofld_send error %d - dropping\n", __func__,
3883 ret);
3884 kfree_skb(skb);
3885 kfree_skb(req_skb);
3886 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003887}
3888
3889/*
3890 * Handler for CPL_RX_PKT message. Need to handle cpl_rx_pkt
3891 * messages when a filter is being used instead of server to
3892 * redirect a syn packet. When packets hit filter they are redirected
3893 * to the offload queue and driver tries to establish the connection
3894 * using firmware work request.
3895 */
3896static int rx_pkt(struct c4iw_dev *dev, struct sk_buff *skb)
3897{
3898 int stid;
3899 unsigned int filter;
3900 struct ethhdr *eh = NULL;
3901 struct vlan_ethhdr *vlan_eh = NULL;
3902 struct iphdr *iph;
3903 struct tcphdr *tcph;
3904 struct rss_header *rss = (void *)skb->data;
3905 struct cpl_rx_pkt *cpl = (void *)skb->data;
3906 struct cpl_pass_accept_req *req = (void *)(rss + 1);
3907 struct l2t_entry *e;
3908 struct dst_entry *dst;
Hariprasad Sf86fac72016-05-06 22:18:07 +05303909 struct c4iw_ep *lep = NULL;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003910 u16 window;
3911 struct port_info *pi;
3912 struct net_device *pdev;
Vipul Pandyaf079af72013-03-14 05:08:58 +00003913 u16 rss_qid, eth_hdr_len;
Vipul Pandya1cab7752012-12-10 09:30:55 +00003914 int step;
3915 u32 tx_chan;
3916 struct neighbour *neigh;
3917
3918 /* Drop all non-SYN packets */
Hariprasad Shenaibdc590b2015-01-08 21:38:16 -08003919 if (!(cpl->l2info & cpu_to_be32(RXF_SYN_F)))
Vipul Pandya1cab7752012-12-10 09:30:55 +00003920 goto reject;
3921
3922 /*
3923 * Drop all packets which did not hit the filter.
3924 * Unlikely to happen.
3925 */
3926 if (!(rss->filter_hit && rss->filter_tid))
3927 goto reject;
3928
3929 /*
3930 * Calculate the server tid from filter hit index from cpl_rx_pkt.
3931 */
Kumar Sanghvia4ea0252013-12-18 16:38:24 +05303932 stid = (__force int) cpu_to_be32((__force u32) rss->hash_val);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003933
Hariprasad Sf86fac72016-05-06 22:18:07 +05303934 lep = (struct c4iw_ep *)get_ep_from_stid(dev, stid);
Vipul Pandya1cab7752012-12-10 09:30:55 +00003935 if (!lep) {
3936 PDBG("%s connect request on invalid stid %d\n", __func__, stid);
3937 goto reject;
3938 }
3939
Hariprasad S963cab52015-09-23 17:19:27 +05303940 switch (CHELSIO_CHIP_VERSION(dev->rdev.lldi.adapter_type)) {
3941 case CHELSIO_T4:
3942 eth_hdr_len = RX_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3943 break;
3944 case CHELSIO_T5:
3945 eth_hdr_len = RX_T5_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3946 break;
3947 case CHELSIO_T6:
3948 eth_hdr_len = RX_T6_ETHHDR_LEN_G(be32_to_cpu(cpl->l2info));
3949 break;
3950 default:
3951 pr_err("T%d Chip is not supported\n",
3952 CHELSIO_CHIP_VERSION(dev->rdev.lldi.adapter_type));
3953 goto reject;
3954 }
3955
Vipul Pandyaf079af72013-03-14 05:08:58 +00003956 if (eth_hdr_len == ETH_HLEN) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003957 eh = (struct ethhdr *)(req + 1);
3958 iph = (struct iphdr *)(eh + 1);
3959 } else {
3960 vlan_eh = (struct vlan_ethhdr *)(req + 1);
3961 iph = (struct iphdr *)(vlan_eh + 1);
3962 skb->vlan_tci = ntohs(cpl->vlan);
3963 }
3964
3965 if (iph->version != 0x4)
3966 goto reject;
3967
3968 tcph = (struct tcphdr *)(iph + 1);
3969 skb_set_network_header(skb, (void *)iph - (void *)rss);
3970 skb_set_transport_header(skb, (void *)tcph - (void *)rss);
3971 skb_get(skb);
3972
3973 PDBG("%s lip 0x%x lport %u pip 0x%x pport %u tos %d\n", __func__,
3974 ntohl(iph->daddr), ntohs(tcph->dest), ntohl(iph->saddr),
3975 ntohs(tcph->source), iph->tos);
3976
Vipul Pandya830662f2013-07-04 16:10:47 +05303977 dst = find_route(dev, iph->daddr, iph->saddr, tcph->dest, tcph->source,
3978 iph->tos);
3979 if (!dst) {
Vipul Pandya1cab7752012-12-10 09:30:55 +00003980 pr_err("%s - failed to find dst entry!\n",
3981 __func__);
3982 goto reject;
3983 }
Vipul Pandya1cab7752012-12-10 09:30:55 +00003984 neigh = dst_neigh_lookup_skb(dst, skb);
3985
Zhouyi Zhouaaa0c232013-03-14 17:21:50 +00003986 if (!neigh) {
3987 pr_err("%s - failed to allocate neigh!\n",
3988 __func__);
3989 goto free_dst;
3990 }
3991
Vipul Pandya1cab7752012-12-10 09:30:55 +00003992 if (neigh->dev->flags & IFF_LOOPBACK) {
3993 pdev = ip_dev_find(&init_net, iph->daddr);
3994 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
3995 pdev, 0);
3996 pi = (struct port_info *)netdev_priv(pdev);
3997 tx_chan = cxgb4_port_chan(pdev);
3998 dev_put(pdev);
3999 } else {
Vipul Pandya830662f2013-07-04 16:10:47 +05304000 pdev = get_real_dev(neigh->dev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004001 e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh,
Vipul Pandya830662f2013-07-04 16:10:47 +05304002 pdev, 0);
4003 pi = (struct port_info *)netdev_priv(pdev);
4004 tx_chan = cxgb4_port_chan(pdev);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004005 }
Steve Wiseebf00062014-03-19 17:44:40 +05304006 neigh_release(neigh);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004007 if (!e) {
4008 pr_err("%s - failed to allocate l2t entry!\n",
4009 __func__);
4010 goto free_dst;
4011 }
4012
4013 step = dev->rdev.lldi.nrxq / dev->rdev.lldi.nchan;
4014 rss_qid = dev->rdev.lldi.rxq_ids[pi->port_id * step];
Vipul Pandyaef5d6352013-01-07 13:12:00 +00004015 window = (__force u16) htons((__force u16)tcph->window);
Vipul Pandya1cab7752012-12-10 09:30:55 +00004016
4017 /* Calcuate filter portion for LE region. */
Kumar Sanghvi41b4f862013-12-18 16:38:26 +05304018 filter = (__force unsigned int) cpu_to_be32(cxgb4_select_ntuple(
4019 dev->rdev.lldi.ports[0],
4020 e));
Vipul Pandya1cab7752012-12-10 09:30:55 +00004021
4022 /*
4023 * Synthesize the cpl_pass_accept_req. We have everything except the
4024 * TID. Once firmware sends a reply with TID we update the TID field
4025 * in cpl and pass it through the regular cpl_pass_accept_req path.
4026 */
4027 build_cpl_pass_accept_req(skb, stid, iph->tos);
4028 send_fw_pass_open_req(dev, skb, iph->daddr, tcph->dest, iph->saddr,
4029 tcph->source, ntohl(tcph->seq), filter, window,
4030 rss_qid, pi->port_id);
4031 cxgb4_l2t_release(e);
4032free_dst:
4033 dst_release(dst);
4034reject:
Hariprasad Sf86fac72016-05-06 22:18:07 +05304035 if (lep)
4036 c4iw_put_ep(&lep->com);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004037 return 0;
4038}
4039
Steve Wisecfdda9d2010-04-21 15:30:06 -07004040/*
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004041 * These are the real handlers that are called from a
4042 * work queue.
4043 */
Hariprasad S9dec9002016-05-05 01:27:29 +05304044static c4iw_handler_func work_handlers[NUM_CPL_CMDS + NUM_FAKE_CPLS] = {
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004045 [CPL_ACT_ESTABLISH] = act_establish,
4046 [CPL_ACT_OPEN_RPL] = act_open_rpl,
4047 [CPL_RX_DATA] = rx_data,
4048 [CPL_ABORT_RPL_RSS] = abort_rpl,
4049 [CPL_ABORT_RPL] = abort_rpl,
4050 [CPL_PASS_OPEN_RPL] = pass_open_rpl,
4051 [CPL_CLOSE_LISTSRV_RPL] = close_listsrv_rpl,
4052 [CPL_PASS_ACCEPT_REQ] = pass_accept_req,
4053 [CPL_PASS_ESTABLISH] = pass_establish,
4054 [CPL_PEER_CLOSE] = peer_close,
4055 [CPL_ABORT_REQ_RSS] = peer_abort,
4056 [CPL_CLOSE_CON_RPL] = close_con_rpl,
4057 [CPL_RDMA_TERMINATE] = terminate,
Steve Wise2f5b48c2010-09-10 11:15:36 -05004058 [CPL_FW4_ACK] = fw4_ack,
Vipul Pandya1cab7752012-12-10 09:30:55 +00004059 [CPL_FW6_MSG] = deferred_fw6_msg,
Hariprasad S9dec9002016-05-05 01:27:29 +05304060 [CPL_RX_PKT] = rx_pkt,
Hariprasad S8d1f1a62016-05-06 22:17:57 +05304061 [FAKE_CPL_PUT_EP_SAFE] = _put_ep_safe,
4062 [FAKE_CPL_PASS_PUT_EP_SAFE] = _put_pass_ep_safe
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004063};
4064
4065static void process_timeout(struct c4iw_ep *ep)
4066{
4067 struct c4iw_qp_attributes attrs;
4068 int abort = 1;
4069
Steve Wise2f5b48c2010-09-10 11:15:36 -05004070 mutex_lock(&ep->com.mutex);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004071 PDBG("%s ep %p tid %u state %d\n", __func__, ep, ep->hwtid,
4072 ep->com.state);
Vipul Pandya793dad92012-12-10 09:30:56 +00004073 set_bit(TIMEDOUT, &ep->com.history);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004074 switch (ep->com.state) {
4075 case MPA_REQ_SENT:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004076 connect_reply_upcall(ep, -ETIMEDOUT);
4077 break;
4078 case MPA_REQ_WAIT:
Hariprasad Sceb110a2016-05-06 22:18:05 +05304079 case MPA_REQ_RCVD:
Hariprasad Se4b76a22016-05-06 22:17:59 +05304080 case MPA_REP_SENT:
Hariprasad Sceb110a2016-05-06 22:18:05 +05304081 case FPDU_MODE:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004082 break;
4083 case CLOSING:
4084 case MORIBUND:
4085 if (ep->com.cm_id && ep->com.qp) {
4086 attrs.next_state = C4IW_QP_STATE_ERROR;
4087 c4iw_modify_qp(ep->com.qp->rhp,
4088 ep->com.qp, C4IW_QP_ATTR_NEXT_STATE,
4089 &attrs, 1);
4090 }
Steve Wisebe13b2d2014-03-21 20:40:33 +05304091 close_complete_upcall(ep, -ETIMEDOUT);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004092 break;
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004093 case ABORTING:
4094 case DEAD:
4095
4096 /*
4097 * These states are expected if the ep timed out at the same
4098 * time as another thread was calling stop_ep_timer().
4099 * So we silently do nothing for these states.
4100 */
4101 abort = 0;
4102 break;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004103 default:
Julia Lawall76f267b2012-11-03 10:58:27 +00004104 WARN(1, "%s unexpected state ep %p tid %u state %u\n",
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004105 __func__, ep, ep->hwtid, ep->com.state);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004106 abort = 0;
4107 }
Steve Wisecc18b932014-04-24 14:31:53 -05004108 mutex_unlock(&ep->com.mutex);
Hariprasad S69736272016-05-05 01:27:37 +05304109 if (abort)
4110 c4iw_ep_disconnect(ep, 1, GFP_KERNEL);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004111 c4iw_put_ep(&ep->com);
4112}
4113
4114static void process_timedout_eps(void)
4115{
4116 struct c4iw_ep *ep;
4117
4118 spin_lock_irq(&timeout_lock);
4119 while (!list_empty(&timeout_list)) {
4120 struct list_head *tmp;
4121
4122 tmp = timeout_list.next;
4123 list_del(tmp);
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004124 tmp->next = NULL;
4125 tmp->prev = NULL;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004126 spin_unlock_irq(&timeout_lock);
4127 ep = list_entry(tmp, struct c4iw_ep, entry);
4128 process_timeout(ep);
4129 spin_lock_irq(&timeout_lock);
4130 }
4131 spin_unlock_irq(&timeout_lock);
4132}
4133
4134static void process_work(struct work_struct *work)
4135{
4136 struct sk_buff *skb = NULL;
4137 struct c4iw_dev *dev;
Dan Carpenterc1d73562010-05-31 14:00:53 +00004138 struct cpl_act_establish *rpl;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004139 unsigned int opcode;
4140 int ret;
4141
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004142 process_timedout_eps();
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004143 while ((skb = skb_dequeue(&rxq))) {
4144 rpl = cplhdr(skb);
4145 dev = *((struct c4iw_dev **) (skb->cb + sizeof(void *)));
4146 opcode = rpl->ot.opcode;
4147
4148 BUG_ON(!work_handlers[opcode]);
4149 ret = work_handlers[opcode](dev, skb);
4150 if (!ret)
4151 kfree_skb(skb);
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004152 process_timedout_eps();
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004153 }
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004154}
4155
4156static DECLARE_WORK(skb_work, process_work);
4157
4158static void ep_timeout(unsigned long arg)
4159{
4160 struct c4iw_ep *ep = (struct c4iw_ep *)arg;
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004161 int kickit = 0;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004162
4163 spin_lock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004164 if (!test_and_set_bit(TIMEOUT, &ep->com.flags)) {
Steve Wiseb33bd0c2014-04-09 09:38:25 -05004165 /*
4166 * Only insert if it is not already on the list.
4167 */
4168 if (!ep->entry.next) {
4169 list_add_tail(&ep->entry, &timeout_list);
4170 kickit = 1;
4171 }
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004172 }
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004173 spin_unlock(&timeout_lock);
Vipul Pandya1ec779c2013-01-07 13:11:56 +00004174 if (kickit)
4175 queue_work(workq, &skb_work);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004176}
4177
4178/*
Steve Wisecfdda9d2010-04-21 15:30:06 -07004179 * All the CM events are handled on a work queue to have a safe context.
4180 */
4181static int sched(struct c4iw_dev *dev, struct sk_buff *skb)
4182{
4183
4184 /*
4185 * Save dev in the skb->cb area.
4186 */
4187 *((struct c4iw_dev **) (skb->cb + sizeof(void *))) = dev;
4188
4189 /*
4190 * Queue the skb and schedule the worker thread.
4191 */
4192 skb_queue_tail(&rxq, skb);
4193 queue_work(workq, &skb_work);
4194 return 0;
4195}
4196
4197static int set_tcb_rpl(struct c4iw_dev *dev, struct sk_buff *skb)
4198{
4199 struct cpl_set_tcb_rpl *rpl = cplhdr(skb);
4200
4201 if (rpl->status != CPL_ERR_NONE) {
4202 printk(KERN_ERR MOD "Unexpected SET_TCB_RPL status %u "
4203 "for tid %u\n", rpl->status, GET_TID(rpl));
4204 }
Steve Wise2f5b48c2010-09-10 11:15:36 -05004205 kfree_skb(skb);
Steve Wisecfdda9d2010-04-21 15:30:06 -07004206 return 0;
4207}
4208
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004209static int fw6_msg(struct c4iw_dev *dev, struct sk_buff *skb)
4210{
4211 struct cpl_fw6_msg *rpl = cplhdr(skb);
4212 struct c4iw_wr_wait *wr_waitp;
4213 int ret;
4214
4215 PDBG("%s type %u\n", __func__, rpl->type);
4216
4217 switch (rpl->type) {
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004218 case FW6_TYPE_WR_RPL:
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004219 ret = (int)((be64_to_cpu(rpl->data[0]) >> 8) & 0xff);
Roland Dreierc8e081a2010-09-27 17:51:04 -07004220 wr_waitp = (struct c4iw_wr_wait *)(__force unsigned long) rpl->data[1];
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004221 PDBG("%s wr_waitp %p ret %u\n", __func__, wr_waitp, ret);
Steve Wised9594d92011-05-09 22:06:22 -07004222 if (wr_waitp)
4223 c4iw_wake_up(wr_waitp, ret ? -ret : 0);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004224 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004225 break;
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004226 case FW6_TYPE_CQE:
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004227 case FW6_TYPE_OFLD_CONNECTION_WR_RPL:
Vipul Pandya1cab7752012-12-10 09:30:55 +00004228 sched(dev, skb);
Vipul Pandya5be78ee2012-12-10 09:30:54 +00004229 break;
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004230 default:
4231 printk(KERN_ERR MOD "%s unexpected fw6 msg type %u\n", __func__,
4232 rpl->type);
Steve Wise2f5b48c2010-09-10 11:15:36 -05004233 kfree_skb(skb);
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004234 break;
4235 }
4236 return 0;
4237}
4238
Steve Wise8da7e7a2011-06-14 20:59:27 +00004239static int peer_abort_intr(struct c4iw_dev *dev, struct sk_buff *skb)
4240{
4241 struct cpl_abort_req_rss *req = cplhdr(skb);
4242 struct c4iw_ep *ep;
Steve Wise8da7e7a2011-06-14 20:59:27 +00004243 unsigned int tid = GET_TID(req);
4244
Hariprasad S944661d2016-05-06 22:18:03 +05304245 ep = get_ep_from_tid(dev, tid);
4246 /* This EP will be dereferenced in peer_abort() */
Steve Wise14b92222012-04-30 15:31:29 -05004247 if (!ep) {
4248 printk(KERN_WARNING MOD
4249 "Abort on non-existent endpoint, tid %d\n", tid);
4250 kfree_skb(skb);
4251 return 0;
4252 }
Steve Wise7a2cea22014-03-14 21:52:07 +05304253 if (is_neg_adv(req->status)) {
Hariprasad S179d03b2015-05-05 03:55:24 +05304254 PDBG("%s Negative advice on abort- tid %u status %d (%s)\n",
4255 __func__, ep->hwtid, req->status,
4256 neg_adv_str(req->status));
Hariprasad S944661d2016-05-06 22:18:03 +05304257 goto out;
Steve Wise8da7e7a2011-06-14 20:59:27 +00004258 }
4259 PDBG("%s ep %p tid %u state %u\n", __func__, ep, ep->hwtid,
4260 ep->com.state);
4261
Hariprasad S093108c2016-05-06 22:18:09 +05304262 c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET);
Hariprasad S944661d2016-05-06 22:18:03 +05304263out:
Steve Wise8da7e7a2011-06-14 20:59:27 +00004264 sched(dev, skb);
4265 return 0;
4266}
4267
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004268/*
4269 * Most upcalls from the T4 Core go to sched() to
4270 * schedule the processing on a work queue.
4271 */
4272c4iw_handler_func c4iw_handlers[NUM_CPL_CMDS] = {
4273 [CPL_ACT_ESTABLISH] = sched,
4274 [CPL_ACT_OPEN_RPL] = sched,
4275 [CPL_RX_DATA] = sched,
4276 [CPL_ABORT_RPL_RSS] = sched,
4277 [CPL_ABORT_RPL] = sched,
4278 [CPL_PASS_OPEN_RPL] = sched,
4279 [CPL_CLOSE_LISTSRV_RPL] = sched,
4280 [CPL_PASS_ACCEPT_REQ] = sched,
4281 [CPL_PASS_ESTABLISH] = sched,
4282 [CPL_PEER_CLOSE] = sched,
4283 [CPL_CLOSE_CON_RPL] = sched,
Steve Wise8da7e7a2011-06-14 20:59:27 +00004284 [CPL_ABORT_REQ_RSS] = peer_abort_intr,
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004285 [CPL_RDMA_TERMINATE] = sched,
4286 [CPL_FW4_ACK] = sched,
4287 [CPL_SET_TCB_RPL] = set_tcb_rpl,
Vipul Pandya1cab7752012-12-10 09:30:55 +00004288 [CPL_FW6_MSG] = fw6_msg,
4289 [CPL_RX_PKT] = sched
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004290};
4291
Steve Wisecfdda9d2010-04-21 15:30:06 -07004292int __init c4iw_cm_init(void)
4293{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004294 spin_lock_init(&timeout_lock);
Steve Wisecfdda9d2010-04-21 15:30:06 -07004295 skb_queue_head_init(&rxq);
4296
4297 workq = create_singlethread_workqueue("iw_cxgb4");
4298 if (!workq)
4299 return -ENOMEM;
4300
Steve Wisecfdda9d2010-04-21 15:30:06 -07004301 return 0;
4302}
4303
Steve Wise46c13762014-06-20 14:26:25 -05004304void c4iw_cm_term(void)
Steve Wisecfdda9d2010-04-21 15:30:06 -07004305{
Roland Dreierbe4c9ba2010-05-05 14:45:40 -07004306 WARN_ON(!list_empty(&timeout_list));
Steve Wisecfdda9d2010-04-21 15:30:06 -07004307 flush_workqueue(workq);
4308 destroy_workqueue(workq);
4309}