2 * Copyright (c) 2016 Chelsio Communications, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/module.h>
10 #include <linux/list.h>
11 #include <linux/workqueue.h>
12 #include <linux/skbuff.h>
13 #include <linux/timer.h>
14 #include <linux/notifier.h>
15 #include <linux/inetdevice.h>
17 #include <linux/tcp.h>
18 #include <linux/if_vlan.h>
20 #include <net/neighbour.h>
21 #include <net/netevent.h>
22 #include <net/route.h>
24 #include <net/ip6_route.h>
25 #include <net/addrconf.h>
27 #include <libcxgb_cm.h>
31 static void cxgbit_init_wr_wait(struct cxgbit_wr_wait
*wr_waitp
)
34 reinit_completion(&wr_waitp
->completion
);
38 cxgbit_wake_up(struct cxgbit_wr_wait
*wr_waitp
, const char *func
, u8 ret
)
40 if (ret
== CPL_ERR_NONE
)
46 pr_err("%s: err:%u", func
, ret
);
48 complete(&wr_waitp
->completion
);
52 cxgbit_wait_for_reply(struct cxgbit_device
*cdev
,
53 struct cxgbit_wr_wait
*wr_waitp
, u32 tid
, u32 timeout
,
58 if (!test_bit(CDEV_STATE_UP
, &cdev
->flags
)) {
63 ret
= wait_for_completion_timeout(&wr_waitp
->completion
, timeout
* HZ
);
65 pr_info("%s - Device %s not responding tid %u\n",
66 func
, pci_name(cdev
->lldi
.pdev
), tid
);
67 wr_waitp
->ret
= -ETIMEDOUT
;
71 pr_info("%s: FW reply %d tid %u\n",
72 pci_name(cdev
->lldi
.pdev
), wr_waitp
->ret
, tid
);
76 static int cxgbit_np_hashfn(const struct cxgbit_np
*cnp
)
78 return ((unsigned long)cnp
>> 10) & (NP_INFO_HASH_SIZE
- 1);
81 static struct np_info
*
82 cxgbit_np_hash_add(struct cxgbit_device
*cdev
, struct cxgbit_np
*cnp
,
85 struct np_info
*p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
88 int bucket
= cxgbit_np_hashfn(cnp
);
92 spin_lock(&cdev
->np_lock
);
93 p
->next
= cdev
->np_hash_tab
[bucket
];
94 cdev
->np_hash_tab
[bucket
] = p
;
95 spin_unlock(&cdev
->np_lock
);
102 cxgbit_np_hash_find(struct cxgbit_device
*cdev
, struct cxgbit_np
*cnp
)
104 int stid
= -1, bucket
= cxgbit_np_hashfn(cnp
);
107 spin_lock(&cdev
->np_lock
);
108 for (p
= cdev
->np_hash_tab
[bucket
]; p
; p
= p
->next
) {
114 spin_unlock(&cdev
->np_lock
);
119 static int cxgbit_np_hash_del(struct cxgbit_device
*cdev
, struct cxgbit_np
*cnp
)
121 int stid
= -1, bucket
= cxgbit_np_hashfn(cnp
);
122 struct np_info
*p
, **prev
= &cdev
->np_hash_tab
[bucket
];
124 spin_lock(&cdev
->np_lock
);
125 for (p
= *prev
; p
; prev
= &p
->next
, p
= p
->next
) {
133 spin_unlock(&cdev
->np_lock
);
138 void _cxgbit_free_cnp(struct kref
*kref
)
140 struct cxgbit_np
*cnp
;
142 cnp
= container_of(kref
, struct cxgbit_np
, kref
);
147 cxgbit_create_server6(struct cxgbit_device
*cdev
, unsigned int stid
,
148 struct cxgbit_np
*cnp
)
150 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)
151 &cnp
->com
.local_addr
;
155 pr_debug("%s: dev = %s; stid = %u; sin6_port = %u\n",
156 __func__
, cdev
->lldi
.ports
[0]->name
, stid
, sin6
->sin6_port
);
158 addr_type
= ipv6_addr_type((const struct in6_addr
*)
160 if (addr_type
!= IPV6_ADDR_ANY
) {
161 ret
= cxgb4_clip_get(cdev
->lldi
.ports
[0],
162 (const u32
*)&sin6
->sin6_addr
.s6_addr
, 1);
164 pr_err("Unable to find clip table entry. laddr %pI6. Error:%d.\n",
165 sin6
->sin6_addr
.s6_addr
, ret
);
171 cxgbit_init_wr_wait(&cnp
->com
.wr_wait
);
173 ret
= cxgb4_create_server6(cdev
->lldi
.ports
[0],
174 stid
, &sin6
->sin6_addr
,
176 cdev
->lldi
.rxq_ids
[0]);
178 ret
= cxgbit_wait_for_reply(cdev
, &cnp
->com
.wr_wait
,
181 ret
= net_xmit_errno(ret
);
186 if (ret
!= -ETIMEDOUT
)
187 cxgb4_clip_release(cdev
->lldi
.ports
[0],
188 (const u32
*)&sin6
->sin6_addr
.s6_addr
, 1);
190 pr_err("create server6 err %d stid %d laddr %pI6 lport %d\n",
191 ret
, stid
, sin6
->sin6_addr
.s6_addr
,
192 ntohs(sin6
->sin6_port
));
199 cxgbit_create_server4(struct cxgbit_device
*cdev
, unsigned int stid
,
200 struct cxgbit_np
*cnp
)
202 struct sockaddr_in
*sin
= (struct sockaddr_in
*)
203 &cnp
->com
.local_addr
;
206 pr_debug("%s: dev = %s; stid = %u; sin_port = %u\n",
207 __func__
, cdev
->lldi
.ports
[0]->name
, stid
, sin
->sin_port
);
210 cxgbit_init_wr_wait(&cnp
->com
.wr_wait
);
212 ret
= cxgb4_create_server(cdev
->lldi
.ports
[0],
213 stid
, sin
->sin_addr
.s_addr
,
215 cdev
->lldi
.rxq_ids
[0]);
217 ret
= cxgbit_wait_for_reply(cdev
,
221 ret
= net_xmit_errno(ret
);
226 pr_err("create server failed err %d stid %d laddr %pI4 lport %d\n",
227 ret
, stid
, &sin
->sin_addr
, ntohs(sin
->sin_port
));
231 struct cxgbit_device
*cxgbit_find_device(struct net_device
*ndev
, u8
*port_id
)
233 struct cxgbit_device
*cdev
;
236 list_for_each_entry(cdev
, &cdev_list_head
, list
) {
237 struct cxgb4_lld_info
*lldi
= &cdev
->lldi
;
239 for (i
= 0; i
< lldi
->nports
; i
++) {
240 if (lldi
->ports
[i
] == ndev
) {
251 static struct net_device
*cxgbit_get_real_dev(struct net_device
*ndev
)
253 if (ndev
->priv_flags
& IFF_BONDING
) {
254 pr_err("Bond devices are not supported. Interface:%s\n",
259 if (is_vlan_dev(ndev
))
260 return vlan_dev_real_dev(ndev
);
265 static struct net_device
*cxgbit_ipv4_netdev(__be32 saddr
)
267 struct net_device
*ndev
;
269 ndev
= __ip_dev_find(&init_net
, saddr
, false);
273 return cxgbit_get_real_dev(ndev
);
276 static struct net_device
*cxgbit_ipv6_netdev(struct in6_addr
*addr6
)
278 struct net_device
*ndev
= NULL
;
281 if (IS_ENABLED(CONFIG_IPV6
)) {
282 for_each_netdev_rcu(&init_net
, ndev
)
283 if (ipv6_chk_addr(&init_net
, addr6
, ndev
, 1)) {
290 return cxgbit_get_real_dev(ndev
);
293 static struct cxgbit_device
*cxgbit_find_np_cdev(struct cxgbit_np
*cnp
)
295 struct sockaddr_storage
*sockaddr
= &cnp
->com
.local_addr
;
296 int ss_family
= sockaddr
->ss_family
;
297 struct net_device
*ndev
= NULL
;
298 struct cxgbit_device
*cdev
= NULL
;
301 if (ss_family
== AF_INET
) {
302 struct sockaddr_in
*sin
;
304 sin
= (struct sockaddr_in
*)sockaddr
;
305 ndev
= cxgbit_ipv4_netdev(sin
->sin_addr
.s_addr
);
306 } else if (ss_family
== AF_INET6
) {
307 struct sockaddr_in6
*sin6
;
309 sin6
= (struct sockaddr_in6
*)sockaddr
;
310 ndev
= cxgbit_ipv6_netdev(&sin6
->sin6_addr
);
315 cdev
= cxgbit_find_device(ndev
, NULL
);
321 static bool cxgbit_inaddr_any(struct cxgbit_np
*cnp
)
323 struct sockaddr_storage
*sockaddr
= &cnp
->com
.local_addr
;
324 int ss_family
= sockaddr
->ss_family
;
327 if (ss_family
== AF_INET
) {
328 struct sockaddr_in
*sin
;
330 sin
= (struct sockaddr_in
*)sockaddr
;
331 if (sin
->sin_addr
.s_addr
== htonl(INADDR_ANY
))
333 } else if (ss_family
== AF_INET6
) {
334 struct sockaddr_in6
*sin6
;
336 sin6
= (struct sockaddr_in6
*)sockaddr
;
337 addr_type
= ipv6_addr_type((const struct in6_addr
*)
339 if (addr_type
== IPV6_ADDR_ANY
)
346 __cxgbit_setup_cdev_np(struct cxgbit_device
*cdev
, struct cxgbit_np
*cnp
)
349 int ss_family
= cnp
->com
.local_addr
.ss_family
;
351 if (!test_bit(CDEV_STATE_UP
, &cdev
->flags
))
354 stid
= cxgb4_alloc_stid(cdev
->lldi
.tids
, ss_family
, cnp
);
358 if (!cxgbit_np_hash_add(cdev
, cnp
, stid
)) {
359 cxgb4_free_stid(cdev
->lldi
.tids
, stid
, ss_family
);
363 if (ss_family
== AF_INET
)
364 ret
= cxgbit_create_server4(cdev
, stid
, cnp
);
366 ret
= cxgbit_create_server6(cdev
, stid
, cnp
);
369 if (ret
!= -ETIMEDOUT
)
370 cxgb4_free_stid(cdev
->lldi
.tids
, stid
,
372 cxgbit_np_hash_del(cdev
, cnp
);
378 static int cxgbit_setup_cdev_np(struct cxgbit_np
*cnp
)
380 struct cxgbit_device
*cdev
;
383 mutex_lock(&cdev_list_lock
);
384 cdev
= cxgbit_find_np_cdev(cnp
);
388 if (cxgbit_np_hash_find(cdev
, cnp
) >= 0)
391 if (__cxgbit_setup_cdev_np(cdev
, cnp
))
394 cnp
->com
.cdev
= cdev
;
397 mutex_unlock(&cdev_list_lock
);
401 static int cxgbit_setup_all_np(struct cxgbit_np
*cnp
)
403 struct cxgbit_device
*cdev
;
407 mutex_lock(&cdev_list_lock
);
408 list_for_each_entry(cdev
, &cdev_list_head
, list
) {
409 if (cxgbit_np_hash_find(cdev
, cnp
) >= 0) {
410 mutex_unlock(&cdev_list_lock
);
415 list_for_each_entry(cdev
, &cdev_list_head
, list
) {
416 ret
= __cxgbit_setup_cdev_np(cdev
, cnp
);
417 if (ret
== -ETIMEDOUT
)
423 mutex_unlock(&cdev_list_lock
);
425 return count
? 0 : -1;
428 int cxgbit_setup_np(struct iscsi_np
*np
, struct sockaddr_storage
*ksockaddr
)
430 struct cxgbit_np
*cnp
;
433 if ((ksockaddr
->ss_family
!= AF_INET
) &&
434 (ksockaddr
->ss_family
!= AF_INET6
))
437 cnp
= kzalloc(sizeof(*cnp
), GFP_KERNEL
);
441 init_waitqueue_head(&cnp
->accept_wait
);
442 init_completion(&cnp
->com
.wr_wait
.completion
);
443 init_completion(&cnp
->accept_comp
);
444 INIT_LIST_HEAD(&cnp
->np_accept_list
);
445 spin_lock_init(&cnp
->np_accept_lock
);
446 kref_init(&cnp
->kref
);
447 memcpy(&np
->np_sockaddr
, ksockaddr
,
448 sizeof(struct sockaddr_storage
));
449 memcpy(&cnp
->com
.local_addr
, &np
->np_sockaddr
,
450 sizeof(cnp
->com
.local_addr
));
453 cnp
->com
.cdev
= NULL
;
455 if (cxgbit_inaddr_any(cnp
))
456 ret
= cxgbit_setup_all_np(cnp
);
458 ret
= cxgbit_setup_cdev_np(cnp
);
465 np
->np_context
= cnp
;
466 cnp
->com
.state
= CSK_STATE_LISTEN
;
471 cxgbit_set_conn_info(struct iscsi_np
*np
, struct iscsi_conn
*conn
,
472 struct cxgbit_sock
*csk
)
474 conn
->login_family
= np
->np_sockaddr
.ss_family
;
475 conn
->login_sockaddr
= csk
->com
.remote_addr
;
476 conn
->local_sockaddr
= csk
->com
.local_addr
;
479 int cxgbit_accept_np(struct iscsi_np
*np
, struct iscsi_conn
*conn
)
481 struct cxgbit_np
*cnp
= np
->np_context
;
482 struct cxgbit_sock
*csk
;
486 ret
= wait_for_completion_interruptible(&cnp
->accept_comp
);
490 spin_lock_bh(&np
->np_thread_lock
);
491 if (np
->np_thread_state
>= ISCSI_NP_THREAD_RESET
) {
492 spin_unlock_bh(&np
->np_thread_lock
);
494 * No point in stalling here when np_thread
495 * is in state RESET/SHUTDOWN/EXIT - bail
499 spin_unlock_bh(&np
->np_thread_lock
);
501 spin_lock_bh(&cnp
->np_accept_lock
);
502 if (list_empty(&cnp
->np_accept_list
)) {
503 spin_unlock_bh(&cnp
->np_accept_lock
);
507 csk
= list_first_entry(&cnp
->np_accept_list
,
511 list_del_init(&csk
->accept_node
);
512 spin_unlock_bh(&cnp
->np_accept_lock
);
516 cxgbit_set_conn_info(np
, conn
, csk
);
521 __cxgbit_free_cdev_np(struct cxgbit_device
*cdev
, struct cxgbit_np
*cnp
)
526 stid
= cxgbit_np_hash_del(cdev
, cnp
);
529 if (!test_bit(CDEV_STATE_UP
, &cdev
->flags
))
532 if (cnp
->np
->np_sockaddr
.ss_family
== AF_INET6
)
536 cxgbit_init_wr_wait(&cnp
->com
.wr_wait
);
537 ret
= cxgb4_remove_server(cdev
->lldi
.ports
[0], stid
,
538 cdev
->lldi
.rxq_ids
[0], ipv6
);
541 ret
= net_xmit_errno(ret
);
548 ret
= cxgbit_wait_for_reply(cdev
, &cnp
->com
.wr_wait
,
550 if (ret
== -ETIMEDOUT
)
553 if (ipv6
&& cnp
->com
.cdev
) {
554 struct sockaddr_in6
*sin6
;
556 sin6
= (struct sockaddr_in6
*)&cnp
->com
.local_addr
;
557 cxgb4_clip_release(cdev
->lldi
.ports
[0],
558 (const u32
*)&sin6
->sin6_addr
.s6_addr
,
562 cxgb4_free_stid(cdev
->lldi
.tids
, stid
,
563 cnp
->com
.local_addr
.ss_family
);
567 static void cxgbit_free_all_np(struct cxgbit_np
*cnp
)
569 struct cxgbit_device
*cdev
;
572 mutex_lock(&cdev_list_lock
);
573 list_for_each_entry(cdev
, &cdev_list_head
, list
) {
574 ret
= __cxgbit_free_cdev_np(cdev
, cnp
);
575 if (ret
== -ETIMEDOUT
)
578 mutex_unlock(&cdev_list_lock
);
581 static void cxgbit_free_cdev_np(struct cxgbit_np
*cnp
)
583 struct cxgbit_device
*cdev
;
586 mutex_lock(&cdev_list_lock
);
587 list_for_each_entry(cdev
, &cdev_list_head
, list
) {
588 if (cdev
== cnp
->com
.cdev
) {
596 __cxgbit_free_cdev_np(cdev
, cnp
);
598 mutex_unlock(&cdev_list_lock
);
601 static void __cxgbit_free_conn(struct cxgbit_sock
*csk
);
603 void cxgbit_free_np(struct iscsi_np
*np
)
605 struct cxgbit_np
*cnp
= np
->np_context
;
606 struct cxgbit_sock
*csk
, *tmp
;
608 cnp
->com
.state
= CSK_STATE_DEAD
;
610 cxgbit_free_cdev_np(cnp
);
612 cxgbit_free_all_np(cnp
);
614 spin_lock_bh(&cnp
->np_accept_lock
);
615 list_for_each_entry_safe(csk
, tmp
, &cnp
->np_accept_list
, accept_node
) {
616 list_del_init(&csk
->accept_node
);
617 __cxgbit_free_conn(csk
);
619 spin_unlock_bh(&cnp
->np_accept_lock
);
621 np
->np_context
= NULL
;
625 static void cxgbit_send_halfclose(struct cxgbit_sock
*csk
)
628 u32 len
= roundup(sizeof(struct cpl_close_con_req
), 16);
630 skb
= alloc_skb(len
, GFP_ATOMIC
);
634 cxgb_mk_close_con_req(skb
, len
, csk
->tid
, csk
->txq_idx
,
637 cxgbit_skcb_flags(skb
) |= SKCBF_TX_FLAG_COMPL
;
638 __skb_queue_tail(&csk
->txq
, skb
);
639 cxgbit_push_tx_frames(csk
);
642 static void cxgbit_arp_failure_discard(void *handle
, struct sk_buff
*skb
)
644 struct cxgbit_sock
*csk
= handle
;
646 pr_debug("%s cxgbit_device %p\n", __func__
, handle
);
651 static void cxgbit_abort_arp_failure(void *handle
, struct sk_buff
*skb
)
653 struct cxgbit_device
*cdev
= handle
;
654 struct cpl_abort_req
*req
= cplhdr(skb
);
656 pr_debug("%s cdev %p\n", __func__
, cdev
);
657 req
->cmd
= CPL_ABORT_NO_RST
;
658 cxgbit_ofld_send(cdev
, skb
);
661 static int cxgbit_send_abort_req(struct cxgbit_sock
*csk
)
664 u32 len
= roundup(sizeof(struct cpl_abort_req
), 16);
666 pr_debug("%s: csk %p tid %u; state %d\n",
667 __func__
, csk
, csk
->tid
, csk
->com
.state
);
669 __skb_queue_purge(&csk
->txq
);
671 if (!test_and_set_bit(CSK_TX_DATA_SENT
, &csk
->com
.flags
))
672 cxgbit_send_tx_flowc_wr(csk
);
674 skb
= __skb_dequeue(&csk
->skbq
);
675 cxgb_mk_abort_req(skb
, len
, csk
->tid
, csk
->txq_idx
,
676 csk
->com
.cdev
, cxgbit_abort_arp_failure
);
678 return cxgbit_l2t_send(csk
->com
.cdev
, skb
, csk
->l2t
);
682 __cxgbit_abort_conn(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
686 if (csk
->com
.state
!= CSK_STATE_ESTABLISHED
)
689 set_bit(CSK_ABORT_RPL_WAIT
, &csk
->com
.flags
);
690 csk
->com
.state
= CSK_STATE_ABORTING
;
692 cxgbit_send_abort_req(csk
);
697 cxgbit_wake_up(&csk
->com
.wr_wait
, __func__
, CPL_ERR_NONE
);
701 void cxgbit_abort_conn(struct cxgbit_sock
*csk
)
703 struct sk_buff
*skb
= alloc_skb(0, GFP_KERNEL
| __GFP_NOFAIL
);
706 cxgbit_init_wr_wait(&csk
->com
.wr_wait
);
708 spin_lock_bh(&csk
->lock
);
709 if (csk
->lock_owner
) {
710 cxgbit_skcb_rx_backlog_fn(skb
) = __cxgbit_abort_conn
;
711 __skb_queue_tail(&csk
->backlogq
, skb
);
713 __cxgbit_abort_conn(csk
, skb
);
715 spin_unlock_bh(&csk
->lock
);
717 cxgbit_wait_for_reply(csk
->com
.cdev
, &csk
->com
.wr_wait
,
718 csk
->tid
, 600, __func__
);
721 static void __cxgbit_free_conn(struct cxgbit_sock
*csk
)
723 struct iscsi_conn
*conn
= csk
->conn
;
724 bool release
= false;
726 pr_debug("%s: state %d\n",
727 __func__
, csk
->com
.state
);
729 spin_lock_bh(&csk
->lock
);
730 switch (csk
->com
.state
) {
731 case CSK_STATE_ESTABLISHED
:
732 if (conn
&& (conn
->conn_state
== TARG_CONN_STATE_IN_LOGOUT
)) {
733 csk
->com
.state
= CSK_STATE_CLOSING
;
734 cxgbit_send_halfclose(csk
);
736 csk
->com
.state
= CSK_STATE_ABORTING
;
737 cxgbit_send_abort_req(csk
);
740 case CSK_STATE_CLOSING
:
741 csk
->com
.state
= CSK_STATE_MORIBUND
;
742 cxgbit_send_halfclose(csk
);
748 pr_err("%s: csk %p; state %d\n",
749 __func__
, csk
, csk
->com
.state
);
751 spin_unlock_bh(&csk
->lock
);
757 void cxgbit_free_conn(struct iscsi_conn
*conn
)
759 __cxgbit_free_conn(conn
->context
);
762 static void cxgbit_set_emss(struct cxgbit_sock
*csk
, u16 opt
)
764 csk
->emss
= csk
->com
.cdev
->lldi
.mtus
[TCPOPT_MSS_G(opt
)] -
765 ((csk
->com
.remote_addr
.ss_family
== AF_INET
) ?
766 sizeof(struct iphdr
) : sizeof(struct ipv6hdr
)) -
767 sizeof(struct tcphdr
);
768 csk
->mss
= csk
->emss
;
769 if (TCPOPT_TSTAMP_G(opt
))
770 csk
->emss
-= round_up(TCPOLEN_TIMESTAMP
, 4);
774 pr_info("Warning: misaligned mtu idx %u mss %u emss=%u\n",
775 TCPOPT_MSS_G(opt
), csk
->mss
, csk
->emss
);
776 pr_debug("%s mss_idx %u mss %u emss=%u\n", __func__
, TCPOPT_MSS_G(opt
),
777 csk
->mss
, csk
->emss
);
780 static void cxgbit_free_skb(struct cxgbit_sock
*csk
)
784 __skb_queue_purge(&csk
->txq
);
785 __skb_queue_purge(&csk
->rxq
);
786 __skb_queue_purge(&csk
->backlogq
);
787 __skb_queue_purge(&csk
->ppodq
);
788 __skb_queue_purge(&csk
->skbq
);
790 while ((skb
= cxgbit_sock_dequeue_wr(csk
)))
793 __kfree_skb(csk
->lro_hskb
);
796 void _cxgbit_free_csk(struct kref
*kref
)
798 struct cxgbit_sock
*csk
;
799 struct cxgbit_device
*cdev
;
801 csk
= container_of(kref
, struct cxgbit_sock
, kref
);
803 pr_debug("%s csk %p state %d\n", __func__
, csk
, csk
->com
.state
);
805 if (csk
->com
.local_addr
.ss_family
== AF_INET6
) {
806 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)
807 &csk
->com
.local_addr
;
808 cxgb4_clip_release(csk
->com
.cdev
->lldi
.ports
[0],
810 &sin6
->sin6_addr
.s6_addr
, 1);
813 cxgb4_remove_tid(csk
->com
.cdev
->lldi
.tids
, 0, csk
->tid
,
814 csk
->com
.local_addr
.ss_family
);
815 dst_release(csk
->dst
);
816 cxgb4_l2t_release(csk
->l2t
);
818 cdev
= csk
->com
.cdev
;
819 spin_lock_bh(&cdev
->cskq
.lock
);
820 list_del(&csk
->list
);
821 spin_unlock_bh(&cdev
->cskq
.lock
);
823 cxgbit_free_skb(csk
);
824 cxgbit_put_cnp(csk
->cnp
);
825 cxgbit_put_cdev(cdev
);
830 static void cxgbit_set_tcp_window(struct cxgbit_sock
*csk
, struct port_info
*pi
)
832 unsigned int linkspeed
;
835 linkspeed
= pi
->link_cfg
.speed
;
836 scale
= linkspeed
/ SPEED_10000
;
838 #define CXGBIT_10G_RCV_WIN (256 * 1024)
839 csk
->rcv_win
= CXGBIT_10G_RCV_WIN
;
841 csk
->rcv_win
*= scale
;
843 #define CXGBIT_10G_SND_WIN (256 * 1024)
844 csk
->snd_win
= CXGBIT_10G_SND_WIN
;
846 csk
->snd_win
*= scale
;
848 pr_debug("%s snd_win %d rcv_win %d\n",
849 __func__
, csk
->snd_win
, csk
->rcv_win
);
852 #ifdef CONFIG_CHELSIO_T4_DCB
853 static u8
cxgbit_get_iscsi_dcb_state(struct net_device
*ndev
)
855 return ndev
->dcbnl_ops
->getstate(ndev
);
858 static int cxgbit_select_priority(int pri_mask
)
863 return (ffs(pri_mask
) - 1);
866 static u8
cxgbit_get_iscsi_dcb_priority(struct net_device
*ndev
, u16 local_port
)
871 struct dcb_app iscsi_dcb_app
= {
872 .protocol
= local_port
875 ret
= (int)ndev
->dcbnl_ops
->getcap(ndev
, DCB_CAP_ATTR_DCBX
, &caps
);
880 if (caps
& DCB_CAP_DCBX_VER_IEEE
) {
881 iscsi_dcb_app
.selector
= IEEE_8021QAZ_APP_SEL_ANY
;
883 ret
= dcb_ieee_getapp_mask(ndev
, &iscsi_dcb_app
);
885 } else if (caps
& DCB_CAP_DCBX_VER_CEE
) {
886 iscsi_dcb_app
.selector
= DCB_APP_IDTYPE_PORTNUM
;
888 ret
= dcb_getapp(ndev
, &iscsi_dcb_app
);
891 pr_info("iSCSI priority is set to %u\n", cxgbit_select_priority(ret
));
893 return cxgbit_select_priority(ret
);
898 cxgbit_offload_init(struct cxgbit_sock
*csk
, int iptype
, __u8
*peer_ip
,
899 u16 local_port
, struct dst_entry
*dst
,
900 struct cxgbit_device
*cdev
)
904 struct net_device
*ndev
;
905 u16 rxq_idx
, port_id
;
906 #ifdef CONFIG_CHELSIO_T4_DCB
910 n
= dst_neigh_lookup(dst
, peer_ip
);
915 if (!(n
->nud_state
& NUD_VALID
))
916 neigh_event_send(n
, NULL
);
919 if (n
->dev
->flags
& IFF_LOOPBACK
) {
921 ndev
= cxgbit_ipv4_netdev(*(__be32
*)peer_ip
);
922 else if (IS_ENABLED(CONFIG_IPV6
))
923 ndev
= cxgbit_ipv6_netdev((struct in6_addr
*)peer_ip
);
932 csk
->l2t
= cxgb4_l2t_get(cdev
->lldi
.l2t
,
936 csk
->mtu
= ndev
->mtu
;
937 csk
->tx_chan
= cxgb4_port_chan(ndev
);
939 ((struct port_info
*)netdev_priv(ndev
))->smt_idx
;
940 step
= cdev
->lldi
.ntxq
/
942 csk
->txq_idx
= cxgb4_port_idx(ndev
) * step
;
943 step
= cdev
->lldi
.nrxq
/
945 csk
->ctrlq_idx
= cxgb4_port_idx(ndev
);
946 csk
->rss_qid
= cdev
->lldi
.rxq_ids
[
947 cxgb4_port_idx(ndev
) * step
];
948 csk
->port_id
= cxgb4_port_idx(ndev
);
949 cxgbit_set_tcp_window(csk
,
950 (struct port_info
*)netdev_priv(ndev
));
952 ndev
= cxgbit_get_real_dev(n
->dev
);
958 #ifdef CONFIG_CHELSIO_T4_DCB
959 if (cxgbit_get_iscsi_dcb_state(ndev
))
960 priority
= cxgbit_get_iscsi_dcb_priority(ndev
,
963 csk
->dcb_priority
= priority
;
965 csk
->l2t
= cxgb4_l2t_get(cdev
->lldi
.l2t
, n
, ndev
, priority
);
967 csk
->l2t
= cxgb4_l2t_get(cdev
->lldi
.l2t
, n
, ndev
, 0);
971 port_id
= cxgb4_port_idx(ndev
);
972 csk
->mtu
= dst_mtu(dst
);
973 csk
->tx_chan
= cxgb4_port_chan(ndev
);
975 ((struct port_info
*)netdev_priv(ndev
))->smt_idx
;
976 step
= cdev
->lldi
.ntxq
/
978 csk
->txq_idx
= (port_id
* step
) +
979 (cdev
->selectq
[port_id
][0]++ % step
);
980 csk
->ctrlq_idx
= cxgb4_port_idx(ndev
);
981 step
= cdev
->lldi
.nrxq
/
983 rxq_idx
= (port_id
* step
) +
984 (cdev
->selectq
[port_id
][1]++ % step
);
985 csk
->rss_qid
= cdev
->lldi
.rxq_ids
[rxq_idx
];
986 csk
->port_id
= port_id
;
987 cxgbit_set_tcp_window(csk
,
988 (struct port_info
*)netdev_priv(ndev
));
997 int cxgbit_ofld_send(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1001 if (!test_bit(CDEV_STATE_UP
, &cdev
->flags
)) {
1003 pr_err("%s - device not up - dropping\n", __func__
);
1007 ret
= cxgb4_ofld_send(cdev
->lldi
.ports
[0], skb
);
1010 return ret
< 0 ? ret
: 0;
1013 static void cxgbit_release_tid(struct cxgbit_device
*cdev
, u32 tid
)
1015 u32 len
= roundup(sizeof(struct cpl_tid_release
), 16);
1016 struct sk_buff
*skb
;
1018 skb
= alloc_skb(len
, GFP_ATOMIC
);
1022 cxgb_mk_tid_release(skb
, len
, tid
, 0);
1023 cxgbit_ofld_send(cdev
, skb
);
1027 cxgbit_l2t_send(struct cxgbit_device
*cdev
, struct sk_buff
*skb
,
1028 struct l2t_entry
*l2e
)
1032 if (!test_bit(CDEV_STATE_UP
, &cdev
->flags
)) {
1034 pr_err("%s - device not up - dropping\n", __func__
);
1038 ret
= cxgb4_l2t_send(cdev
->lldi
.ports
[0], skb
, l2e
);
1041 return ret
< 0 ? ret
: 0;
1044 static void cxgbit_send_rx_credits(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1046 if (csk
->com
.state
!= CSK_STATE_ESTABLISHED
) {
1051 cxgbit_ofld_send(csk
->com
.cdev
, skb
);
1055 * CPL connection rx data ack: host ->
1056 * Send RX credits through an RX_DATA_ACK CPL message.
1057 * Returns the number of credits sent.
1059 int cxgbit_rx_data_ack(struct cxgbit_sock
*csk
)
1061 struct sk_buff
*skb
;
1062 u32 len
= roundup(sizeof(struct cpl_rx_data_ack
), 16);
1065 skb
= alloc_skb(len
, GFP_KERNEL
);
1069 credit_dack
= RX_DACK_CHANGE_F
| RX_DACK_MODE_V(1) |
1070 RX_CREDITS_V(csk
->rx_credits
);
1072 cxgb_mk_rx_data_ack(skb
, len
, csk
->tid
, csk
->ctrlq_idx
,
1075 csk
->rx_credits
= 0;
1077 spin_lock_bh(&csk
->lock
);
1078 if (csk
->lock_owner
) {
1079 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_send_rx_credits
;
1080 __skb_queue_tail(&csk
->backlogq
, skb
);
1081 spin_unlock_bh(&csk
->lock
);
1085 cxgbit_send_rx_credits(csk
, skb
);
1086 spin_unlock_bh(&csk
->lock
);
1091 #define FLOWC_WR_NPARAMS_MIN 9
1092 #define FLOWC_WR_NPARAMS_MAX 11
1093 static int cxgbit_alloc_csk_skb(struct cxgbit_sock
*csk
)
1095 struct sk_buff
*skb
;
1099 flowclen
= offsetof(struct fw_flowc_wr
,
1100 mnemval
[FLOWC_WR_NPARAMS_MAX
]);
1102 len
= max_t(u32
, sizeof(struct cpl_abort_req
),
1103 sizeof(struct cpl_abort_rpl
));
1105 len
= max(len
, flowclen
);
1106 len
= roundup(len
, 16);
1108 for (i
= 0; i
< 3; i
++) {
1109 skb
= alloc_skb(len
, GFP_ATOMIC
);
1112 __skb_queue_tail(&csk
->skbq
, skb
);
1115 skb
= alloc_skb(LRO_SKB_MIN_HEADROOM
, GFP_ATOMIC
);
1119 memset(skb
->data
, 0, LRO_SKB_MIN_HEADROOM
);
1120 csk
->lro_hskb
= skb
;
1124 __skb_queue_purge(&csk
->skbq
);
1129 cxgbit_pass_accept_rpl(struct cxgbit_sock
*csk
, struct cpl_pass_accept_req
*req
)
1131 struct sk_buff
*skb
;
1132 const struct tcphdr
*tcph
;
1133 struct cpl_t5_pass_accept_rpl
*rpl5
;
1134 struct cxgb4_lld_info
*lldi
= &csk
->com
.cdev
->lldi
;
1135 unsigned int len
= roundup(sizeof(*rpl5
), 16);
1136 unsigned int mtu_idx
;
1142 pr_debug("%s csk %p tid %u\n", __func__
, csk
, csk
->tid
);
1144 skb
= alloc_skb(len
, GFP_ATOMIC
);
1146 cxgbit_put_csk(csk
);
1150 rpl5
= __skb_put_zero(skb
, len
);
1152 INIT_TP_WR(rpl5
, csk
->tid
);
1153 OPCODE_TID(rpl5
) = cpu_to_be32(MK_OPCODE_TID(CPL_PASS_ACCEPT_RPL
,
1155 cxgb_best_mtu(csk
->com
.cdev
->lldi
.mtus
, csk
->mtu
, &mtu_idx
,
1157 (csk
->com
.remote_addr
.ss_family
== AF_INET
) ? 0 : 1);
1158 wscale
= cxgb_compute_wscale(csk
->rcv_win
);
1160 * Specify the largest window that will fit in opt0. The
1161 * remainder will be specified in the rx_data_ack.
1163 win
= csk
->rcv_win
>> 10;
1164 if (win
> RCV_BUFSIZ_M
)
1166 opt0
= TCAM_BYPASS_F
|
1167 WND_SCALE_V(wscale
) |
1168 MSS_IDX_V(mtu_idx
) |
1169 L2T_IDX_V(csk
->l2t
->idx
) |
1170 TX_CHAN_V(csk
->tx_chan
) |
1171 SMAC_SEL_V(csk
->smac_idx
) |
1172 DSCP_V(csk
->tos
>> 2) |
1173 ULP_MODE_V(ULP_MODE_ISCSI
) |
1176 opt2
= RX_CHANNEL_V(0) |
1177 RSS_QUEUE_VALID_F
| RSS_QUEUE_V(csk
->rss_qid
);
1179 if (!is_t5(lldi
->adapter_type
))
1180 opt2
|= RX_FC_DISABLE_F
;
1182 if (req
->tcpopt
.tstamp
)
1183 opt2
|= TSTAMPS_EN_F
;
1184 if (req
->tcpopt
.sack
)
1187 opt2
|= WND_SCALE_EN_F
;
1189 hlen
= ntohl(req
->hdr_len
);
1191 if (is_t5(lldi
->adapter_type
))
1192 tcph
= (struct tcphdr
*)((u8
*)(req
+ 1) +
1193 ETH_HDR_LEN_G(hlen
) + IP_HDR_LEN_G(hlen
));
1195 tcph
= (struct tcphdr
*)((u8
*)(req
+ 1) +
1196 T6_ETH_HDR_LEN_G(hlen
) + T6_IP_HDR_LEN_G(hlen
));
1198 if (tcph
->ece
&& tcph
->cwr
)
1199 opt2
|= CCTRL_ECN_V(1);
1201 opt2
|= RX_COALESCE_V(3);
1202 opt2
|= CONG_CNTRL_V(CONG_ALG_NEWRENO
);
1205 rpl5
->iss
= cpu_to_be32((prandom_u32() & ~7UL) - 1);
1207 opt2
|= T5_OPT_2_VALID_F
;
1209 rpl5
->opt0
= cpu_to_be64(opt0
);
1210 rpl5
->opt2
= cpu_to_be32(opt2
);
1211 set_wr_txq(skb
, CPL_PRIORITY_SETUP
, csk
->ctrlq_idx
);
1212 t4_set_arp_err_handler(skb
, csk
, cxgbit_arp_failure_discard
);
1213 cxgbit_l2t_send(csk
->com
.cdev
, skb
, csk
->l2t
);
1217 cxgbit_pass_accept_req(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1219 struct cxgbit_sock
*csk
= NULL
;
1220 struct cxgbit_np
*cnp
;
1221 struct cpl_pass_accept_req
*req
= cplhdr(skb
);
1222 unsigned int stid
= PASS_OPEN_TID_G(ntohl(req
->tos_stid
));
1223 struct tid_info
*t
= cdev
->lldi
.tids
;
1224 unsigned int tid
= GET_TID(req
);
1225 u16 peer_mss
= ntohs(req
->tcpopt
.mss
);
1226 unsigned short hdrs
;
1228 struct dst_entry
*dst
;
1229 __u8 local_ip
[16], peer_ip
[16];
1230 __be16 local_port
, peer_port
;
1234 pr_debug("%s: cdev = %p; stid = %u; tid = %u\n",
1235 __func__
, cdev
, stid
, tid
);
1237 cnp
= lookup_stid(t
, stid
);
1239 pr_err("%s connect request on invalid stid %d\n",
1244 if (cnp
->com
.state
!= CSK_STATE_LISTEN
) {
1245 pr_err("%s - listening parent not in CSK_STATE_LISTEN\n",
1250 csk
= lookup_tid(t
, tid
);
1252 pr_err("%s csk not null tid %u\n",
1257 cxgb_get_4tuple(req
, cdev
->lldi
.adapter_type
, &iptype
, local_ip
,
1258 peer_ip
, &local_port
, &peer_port
);
1260 /* Find output route */
1262 pr_debug("%s parent sock %p tid %u laddr %pI4 raddr %pI4 "
1263 "lport %d rport %d peer_mss %d\n"
1264 , __func__
, cnp
, tid
,
1265 local_ip
, peer_ip
, ntohs(local_port
),
1266 ntohs(peer_port
), peer_mss
);
1267 dst
= cxgb_find_route(&cdev
->lldi
, cxgbit_get_real_dev
,
1268 *(__be32
*)local_ip
,
1270 local_port
, peer_port
,
1271 PASS_OPEN_TOS_G(ntohl(req
->tos_stid
)));
1273 pr_debug("%s parent sock %p tid %u laddr %pI6 raddr %pI6 "
1274 "lport %d rport %d peer_mss %d\n"
1275 , __func__
, cnp
, tid
,
1276 local_ip
, peer_ip
, ntohs(local_port
),
1277 ntohs(peer_port
), peer_mss
);
1278 dst
= cxgb_find_route6(&cdev
->lldi
, cxgbit_get_real_dev
,
1280 local_port
, peer_port
,
1281 PASS_OPEN_TOS_G(ntohl(req
->tos_stid
)),
1282 ((struct sockaddr_in6
*)
1283 &cnp
->com
.local_addr
)->sin6_scope_id
);
1286 pr_err("%s - failed to find dst entry!\n",
1291 csk
= kzalloc(sizeof(*csk
), GFP_ATOMIC
);
1297 ret
= cxgbit_offload_init(csk
, iptype
, peer_ip
, ntohs(local_port
),
1300 pr_err("%s - failed to allocate l2t entry!\n",
1307 kref_init(&csk
->kref
);
1308 init_completion(&csk
->com
.wr_wait
.completion
);
1310 INIT_LIST_HEAD(&csk
->accept_node
);
1312 hdrs
= (iptype
== 4 ? sizeof(struct iphdr
) : sizeof(struct ipv6hdr
)) +
1313 sizeof(struct tcphdr
) + (req
->tcpopt
.tstamp
? 12 : 0);
1314 if (peer_mss
&& csk
->mtu
> (peer_mss
+ hdrs
))
1315 csk
->mtu
= peer_mss
+ hdrs
;
1317 csk
->com
.state
= CSK_STATE_CONNECTING
;
1318 csk
->com
.cdev
= cdev
;
1320 csk
->tos
= PASS_OPEN_TOS_G(ntohl(req
->tos_stid
));
1323 csk
->wr_cred
= cdev
->lldi
.wr_cred
-
1324 DIV_ROUND_UP(sizeof(struct cpl_abort_req
), 16);
1325 csk
->wr_max_cred
= csk
->wr_cred
;
1326 csk
->wr_una_cred
= 0;
1329 struct sockaddr_in
*sin
= (struct sockaddr_in
*)
1330 &csk
->com
.local_addr
;
1331 sin
->sin_family
= AF_INET
;
1332 sin
->sin_port
= local_port
;
1333 sin
->sin_addr
.s_addr
= *(__be32
*)local_ip
;
1335 sin
= (struct sockaddr_in
*)&csk
->com
.remote_addr
;
1336 sin
->sin_family
= AF_INET
;
1337 sin
->sin_port
= peer_port
;
1338 sin
->sin_addr
.s_addr
= *(__be32
*)peer_ip
;
1340 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*)
1341 &csk
->com
.local_addr
;
1343 sin6
->sin6_family
= PF_INET6
;
1344 sin6
->sin6_port
= local_port
;
1345 memcpy(sin6
->sin6_addr
.s6_addr
, local_ip
, 16);
1346 cxgb4_clip_get(cdev
->lldi
.ports
[0],
1347 (const u32
*)&sin6
->sin6_addr
.s6_addr
,
1350 sin6
= (struct sockaddr_in6
*)&csk
->com
.remote_addr
;
1351 sin6
->sin6_family
= PF_INET6
;
1352 sin6
->sin6_port
= peer_port
;
1353 memcpy(sin6
->sin6_addr
.s6_addr
, peer_ip
, 16);
1356 skb_queue_head_init(&csk
->rxq
);
1357 skb_queue_head_init(&csk
->txq
);
1358 skb_queue_head_init(&csk
->ppodq
);
1359 skb_queue_head_init(&csk
->backlogq
);
1360 skb_queue_head_init(&csk
->skbq
);
1361 cxgbit_sock_reset_wr_list(csk
);
1362 spin_lock_init(&csk
->lock
);
1363 init_waitqueue_head(&csk
->waitq
);
1364 init_waitqueue_head(&csk
->ack_waitq
);
1365 csk
->lock_owner
= false;
1367 if (cxgbit_alloc_csk_skb(csk
)) {
1373 cxgbit_get_cnp(cnp
);
1374 cxgbit_get_cdev(cdev
);
1376 spin_lock(&cdev
->cskq
.lock
);
1377 list_add_tail(&csk
->list
, &cdev
->cskq
.list
);
1378 spin_unlock(&cdev
->cskq
.lock
);
1379 cxgb4_insert_tid(t
, csk
, tid
, csk
->com
.local_addr
.ss_family
);
1380 cxgbit_pass_accept_rpl(csk
, req
);
1384 cxgbit_release_tid(cdev
, tid
);
1390 cxgbit_tx_flowc_wr_credits(struct cxgbit_sock
*csk
, u32
*nparamsp
,
1393 u32 nparams
, flowclen16
, flowclen
;
1395 nparams
= FLOWC_WR_NPARAMS_MIN
;
1397 if (csk
->snd_wscale
)
1400 #ifdef CONFIG_CHELSIO_T4_DCB
1403 flowclen
= offsetof(struct fw_flowc_wr
, mnemval
[nparams
]);
1404 flowclen16
= DIV_ROUND_UP(flowclen
, 16);
1405 flowclen
= flowclen16
* 16;
1407 * Return the number of 16-byte credits used by the flowc request.
1408 * Pass back the nparams and actual flowc length if requested.
1411 *nparamsp
= nparams
;
1413 *flowclenp
= flowclen
;
1417 u32
cxgbit_send_tx_flowc_wr(struct cxgbit_sock
*csk
)
1419 struct cxgbit_device
*cdev
= csk
->com
.cdev
;
1420 struct fw_flowc_wr
*flowc
;
1421 u32 nparams
, flowclen16
, flowclen
;
1422 struct sk_buff
*skb
;
1425 #ifdef CONFIG_CHELSIO_T4_DCB
1426 u16 vlan
= ((struct l2t_entry
*)csk
->l2t
)->vlan
;
1429 flowclen16
= cxgbit_tx_flowc_wr_credits(csk
, &nparams
, &flowclen
);
1431 skb
= __skb_dequeue(&csk
->skbq
);
1432 flowc
= __skb_put_zero(skb
, flowclen
);
1434 flowc
->op_to_nparams
= cpu_to_be32(FW_WR_OP_V(FW_FLOWC_WR
) |
1435 FW_FLOWC_WR_NPARAMS_V(nparams
));
1436 flowc
->flowid_len16
= cpu_to_be32(FW_WR_LEN16_V(flowclen16
) |
1437 FW_WR_FLOWID_V(csk
->tid
));
1438 flowc
->mnemval
[0].mnemonic
= FW_FLOWC_MNEM_PFNVFN
;
1439 flowc
->mnemval
[0].val
= cpu_to_be32(FW_PFVF_CMD_PFN_V
1440 (csk
->com
.cdev
->lldi
.pf
));
1441 flowc
->mnemval
[1].mnemonic
= FW_FLOWC_MNEM_CH
;
1442 flowc
->mnemval
[1].val
= cpu_to_be32(csk
->tx_chan
);
1443 flowc
->mnemval
[2].mnemonic
= FW_FLOWC_MNEM_PORT
;
1444 flowc
->mnemval
[2].val
= cpu_to_be32(csk
->tx_chan
);
1445 flowc
->mnemval
[3].mnemonic
= FW_FLOWC_MNEM_IQID
;
1446 flowc
->mnemval
[3].val
= cpu_to_be32(csk
->rss_qid
);
1447 flowc
->mnemval
[4].mnemonic
= FW_FLOWC_MNEM_SNDNXT
;
1448 flowc
->mnemval
[4].val
= cpu_to_be32(csk
->snd_nxt
);
1449 flowc
->mnemval
[5].mnemonic
= FW_FLOWC_MNEM_RCVNXT
;
1450 flowc
->mnemval
[5].val
= cpu_to_be32(csk
->rcv_nxt
);
1451 flowc
->mnemval
[6].mnemonic
= FW_FLOWC_MNEM_SNDBUF
;
1452 flowc
->mnemval
[6].val
= cpu_to_be32(csk
->snd_win
);
1453 flowc
->mnemval
[7].mnemonic
= FW_FLOWC_MNEM_MSS
;
1454 flowc
->mnemval
[7].val
= cpu_to_be32(csk
->emss
);
1456 flowc
->mnemval
[8].mnemonic
= FW_FLOWC_MNEM_TXDATAPLEN_MAX
;
1457 if (test_bit(CDEV_ISO_ENABLE
, &cdev
->flags
))
1458 flowc
->mnemval
[8].val
= cpu_to_be32(CXGBIT_MAX_ISO_PAYLOAD
);
1460 flowc
->mnemval
[8].val
= cpu_to_be32(16384);
1464 if (csk
->snd_wscale
) {
1465 flowc
->mnemval
[index
].mnemonic
= FW_FLOWC_MNEM_RCV_SCALE
;
1466 flowc
->mnemval
[index
].val
= cpu_to_be32(csk
->snd_wscale
);
1470 #ifdef CONFIG_CHELSIO_T4_DCB
1471 flowc
->mnemval
[index
].mnemonic
= FW_FLOWC_MNEM_DCBPRIO
;
1472 if (vlan
== VLAN_NONE
) {
1473 pr_warn("csk %u without VLAN Tag on DCB Link\n", csk
->tid
);
1474 flowc
->mnemval
[index
].val
= cpu_to_be32(0);
1476 flowc
->mnemval
[index
].val
= cpu_to_be32(
1477 (vlan
& VLAN_PRIO_MASK
) >> VLAN_PRIO_SHIFT
);
1480 pr_debug("%s: csk %p; tx_chan = %u; rss_qid = %u; snd_seq = %u;"
1481 " rcv_seq = %u; snd_win = %u; emss = %u\n",
1482 __func__
, csk
, csk
->tx_chan
, csk
->rss_qid
, csk
->snd_nxt
,
1483 csk
->rcv_nxt
, csk
->snd_win
, csk
->emss
);
1484 set_wr_txq(skb
, CPL_PRIORITY_DATA
, csk
->txq_idx
);
1485 cxgbit_ofld_send(csk
->com
.cdev
, skb
);
1489 int cxgbit_setup_conn_digest(struct cxgbit_sock
*csk
)
1491 struct sk_buff
*skb
;
1492 struct cpl_set_tcb_field
*req
;
1493 u8 hcrc
= csk
->submode
& CXGBIT_SUBMODE_HCRC
;
1494 u8 dcrc
= csk
->submode
& CXGBIT_SUBMODE_DCRC
;
1495 unsigned int len
= roundup(sizeof(*req
), 16);
1498 skb
= alloc_skb(len
, GFP_KERNEL
);
1502 /* set up ulp submode */
1503 req
= __skb_put_zero(skb
, len
);
1505 INIT_TP_WR(req
, csk
->tid
);
1506 OPCODE_TID(req
) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD
, csk
->tid
));
1507 req
->reply_ctrl
= htons(NO_REPLY_V(0) | QUEUENO_V(csk
->rss_qid
));
1508 req
->word_cookie
= htons(0);
1509 req
->mask
= cpu_to_be64(0x3 << 4);
1510 req
->val
= cpu_to_be64(((hcrc
? ULP_CRC_HEADER
: 0) |
1511 (dcrc
? ULP_CRC_DATA
: 0)) << 4);
1512 set_wr_txq(skb
, CPL_PRIORITY_CONTROL
, csk
->ctrlq_idx
);
1514 cxgbit_get_csk(csk
);
1515 cxgbit_init_wr_wait(&csk
->com
.wr_wait
);
1517 cxgbit_ofld_send(csk
->com
.cdev
, skb
);
1519 ret
= cxgbit_wait_for_reply(csk
->com
.cdev
,
1521 csk
->tid
, 5, __func__
);
1528 int cxgbit_setup_conn_pgidx(struct cxgbit_sock
*csk
, u32 pg_idx
)
1530 struct sk_buff
*skb
;
1531 struct cpl_set_tcb_field
*req
;
1532 unsigned int len
= roundup(sizeof(*req
), 16);
1535 skb
= alloc_skb(len
, GFP_KERNEL
);
1539 req
= __skb_put_zero(skb
, len
);
1541 INIT_TP_WR(req
, csk
->tid
);
1542 OPCODE_TID(req
) = htonl(MK_OPCODE_TID(CPL_SET_TCB_FIELD
, csk
->tid
));
1543 req
->reply_ctrl
= htons(NO_REPLY_V(0) | QUEUENO_V(csk
->rss_qid
));
1544 req
->word_cookie
= htons(0);
1545 req
->mask
= cpu_to_be64(0x3 << 8);
1546 req
->val
= cpu_to_be64(pg_idx
<< 8);
1547 set_wr_txq(skb
, CPL_PRIORITY_CONTROL
, csk
->ctrlq_idx
);
1549 cxgbit_get_csk(csk
);
1550 cxgbit_init_wr_wait(&csk
->com
.wr_wait
);
1552 cxgbit_ofld_send(csk
->com
.cdev
, skb
);
1554 ret
= cxgbit_wait_for_reply(csk
->com
.cdev
,
1556 csk
->tid
, 5, __func__
);
1564 cxgbit_pass_open_rpl(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1566 struct cpl_pass_open_rpl
*rpl
= cplhdr(skb
);
1567 struct tid_info
*t
= cdev
->lldi
.tids
;
1568 unsigned int stid
= GET_TID(rpl
);
1569 struct cxgbit_np
*cnp
= lookup_stid(t
, stid
);
1571 pr_debug("%s: cnp = %p; stid = %u; status = %d\n",
1572 __func__
, cnp
, stid
, rpl
->status
);
1575 pr_info("%s stid %d lookup failure\n", __func__
, stid
);
1579 cxgbit_wake_up(&cnp
->com
.wr_wait
, __func__
, rpl
->status
);
1580 cxgbit_put_cnp(cnp
);
1586 cxgbit_close_listsrv_rpl(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1588 struct cpl_close_listsvr_rpl
*rpl
= cplhdr(skb
);
1589 struct tid_info
*t
= cdev
->lldi
.tids
;
1590 unsigned int stid
= GET_TID(rpl
);
1591 struct cxgbit_np
*cnp
= lookup_stid(t
, stid
);
1593 pr_debug("%s: cnp = %p; stid = %u; status = %d\n",
1594 __func__
, cnp
, stid
, rpl
->status
);
1597 pr_info("%s stid %d lookup failure\n", __func__
, stid
);
1601 cxgbit_wake_up(&cnp
->com
.wr_wait
, __func__
, rpl
->status
);
1602 cxgbit_put_cnp(cnp
);
1608 cxgbit_pass_establish(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1610 struct cpl_pass_establish
*req
= cplhdr(skb
);
1611 struct tid_info
*t
= cdev
->lldi
.tids
;
1612 unsigned int tid
= GET_TID(req
);
1613 struct cxgbit_sock
*csk
;
1614 struct cxgbit_np
*cnp
;
1615 u16 tcp_opt
= be16_to_cpu(req
->tcp_opt
);
1616 u32 snd_isn
= be32_to_cpu(req
->snd_isn
);
1617 u32 rcv_isn
= be32_to_cpu(req
->rcv_isn
);
1619 csk
= lookup_tid(t
, tid
);
1620 if (unlikely(!csk
)) {
1621 pr_err("can't find connection for tid %u.\n", tid
);
1626 pr_debug("%s: csk %p; tid %u; cnp %p\n",
1627 __func__
, csk
, tid
, cnp
);
1629 csk
->write_seq
= snd_isn
;
1630 csk
->snd_una
= snd_isn
;
1631 csk
->snd_nxt
= snd_isn
;
1633 csk
->rcv_nxt
= rcv_isn
;
1635 if (csk
->rcv_win
> (RCV_BUFSIZ_M
<< 10))
1636 csk
->rx_credits
= (csk
->rcv_win
- (RCV_BUFSIZ_M
<< 10));
1638 csk
->snd_wscale
= TCPOPT_SND_WSCALE_G(tcp_opt
);
1639 cxgbit_set_emss(csk
, tcp_opt
);
1640 dst_confirm(csk
->dst
);
1641 csk
->com
.state
= CSK_STATE_ESTABLISHED
;
1642 spin_lock_bh(&cnp
->np_accept_lock
);
1643 list_add_tail(&csk
->accept_node
, &cnp
->np_accept_list
);
1644 spin_unlock_bh(&cnp
->np_accept_lock
);
1645 complete(&cnp
->accept_comp
);
1650 static void cxgbit_queue_rx_skb(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1652 cxgbit_skcb_flags(skb
) = 0;
1653 spin_lock_bh(&csk
->rxq
.lock
);
1654 __skb_queue_tail(&csk
->rxq
, skb
);
1655 spin_unlock_bh(&csk
->rxq
.lock
);
1656 wake_up(&csk
->waitq
);
1659 static void cxgbit_peer_close(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1661 pr_debug("%s: csk %p; tid %u; state %d\n",
1662 __func__
, csk
, csk
->tid
, csk
->com
.state
);
1664 switch (csk
->com
.state
) {
1665 case CSK_STATE_ESTABLISHED
:
1666 csk
->com
.state
= CSK_STATE_CLOSING
;
1667 cxgbit_queue_rx_skb(csk
, skb
);
1669 case CSK_STATE_CLOSING
:
1670 /* simultaneous close */
1671 csk
->com
.state
= CSK_STATE_MORIBUND
;
1673 case CSK_STATE_MORIBUND
:
1674 csk
->com
.state
= CSK_STATE_DEAD
;
1675 cxgbit_put_csk(csk
);
1677 case CSK_STATE_ABORTING
:
1680 pr_info("%s: cpl_peer_close in bad state %d\n",
1681 __func__
, csk
->com
.state
);
1687 static void cxgbit_close_con_rpl(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1689 pr_debug("%s: csk %p; tid %u; state %d\n",
1690 __func__
, csk
, csk
->tid
, csk
->com
.state
);
1692 switch (csk
->com
.state
) {
1693 case CSK_STATE_CLOSING
:
1694 csk
->com
.state
= CSK_STATE_MORIBUND
;
1696 case CSK_STATE_MORIBUND
:
1697 csk
->com
.state
= CSK_STATE_DEAD
;
1698 cxgbit_put_csk(csk
);
1700 case CSK_STATE_ABORTING
:
1701 case CSK_STATE_DEAD
:
1704 pr_info("%s: cpl_close_con_rpl in bad state %d\n",
1705 __func__
, csk
->com
.state
);
1711 static void cxgbit_abort_req_rss(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1713 struct cpl_abort_req_rss
*hdr
= cplhdr(skb
);
1714 unsigned int tid
= GET_TID(hdr
);
1715 struct sk_buff
*rpl_skb
;
1716 bool release
= false;
1717 bool wakeup_thread
= false;
1718 u32 len
= roundup(sizeof(struct cpl_abort_rpl
), 16);
1720 pr_debug("%s: csk %p; tid %u; state %d\n",
1721 __func__
, csk
, tid
, csk
->com
.state
);
1723 if (cxgb_is_neg_adv(hdr
->status
)) {
1724 pr_err("%s: got neg advise %d on tid %u\n",
1725 __func__
, hdr
->status
, tid
);
1729 switch (csk
->com
.state
) {
1730 case CSK_STATE_CONNECTING
:
1731 case CSK_STATE_MORIBUND
:
1732 csk
->com
.state
= CSK_STATE_DEAD
;
1735 case CSK_STATE_ESTABLISHED
:
1736 csk
->com
.state
= CSK_STATE_DEAD
;
1737 wakeup_thread
= true;
1739 case CSK_STATE_CLOSING
:
1740 csk
->com
.state
= CSK_STATE_DEAD
;
1744 case CSK_STATE_ABORTING
:
1747 pr_info("%s: cpl_abort_req_rss in bad state %d\n",
1748 __func__
, csk
->com
.state
);
1749 csk
->com
.state
= CSK_STATE_DEAD
;
1752 __skb_queue_purge(&csk
->txq
);
1754 if (!test_and_set_bit(CSK_TX_DATA_SENT
, &csk
->com
.flags
))
1755 cxgbit_send_tx_flowc_wr(csk
);
1757 rpl_skb
= __skb_dequeue(&csk
->skbq
);
1759 cxgb_mk_abort_rpl(rpl_skb
, len
, csk
->tid
, csk
->txq_idx
);
1760 cxgbit_ofld_send(csk
->com
.cdev
, rpl_skb
);
1762 if (wakeup_thread
) {
1763 cxgbit_queue_rx_skb(csk
, skb
);
1768 cxgbit_put_csk(csk
);
1773 static void cxgbit_abort_rpl_rss(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1775 struct cpl_abort_rpl_rss
*rpl
= cplhdr(skb
);
1777 pr_debug("%s: csk %p; tid %u; state %d\n",
1778 __func__
, csk
, csk
->tid
, csk
->com
.state
);
1780 switch (csk
->com
.state
) {
1781 case CSK_STATE_ABORTING
:
1782 csk
->com
.state
= CSK_STATE_DEAD
;
1783 if (test_bit(CSK_ABORT_RPL_WAIT
, &csk
->com
.flags
))
1784 cxgbit_wake_up(&csk
->com
.wr_wait
, __func__
,
1786 cxgbit_put_csk(csk
);
1789 pr_info("%s: cpl_abort_rpl_rss in state %d\n",
1790 __func__
, csk
->com
.state
);
1796 static bool cxgbit_credit_err(const struct cxgbit_sock
*csk
)
1798 const struct sk_buff
*skb
= csk
->wr_pending_head
;
1801 if (unlikely(csk
->wr_cred
> csk
->wr_max_cred
)) {
1802 pr_err("csk 0x%p, tid %u, credit %u > %u\n",
1803 csk
, csk
->tid
, csk
->wr_cred
, csk
->wr_max_cred
);
1808 credit
+= (__force u32
)skb
->csum
;
1809 skb
= cxgbit_skcb_tx_wr_next(skb
);
1812 if (unlikely((csk
->wr_cred
+ credit
) != csk
->wr_max_cred
)) {
1813 pr_err("csk 0x%p, tid %u, credit %u + %u != %u.\n",
1814 csk
, csk
->tid
, csk
->wr_cred
,
1815 credit
, csk
->wr_max_cred
);
1823 static void cxgbit_fw4_ack(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1825 struct cpl_fw4_ack
*rpl
= (struct cpl_fw4_ack
*)cplhdr(skb
);
1826 u32 credits
= rpl
->credits
;
1827 u32 snd_una
= ntohl(rpl
->snd_una
);
1829 csk
->wr_cred
+= credits
;
1830 if (csk
->wr_una_cred
> (csk
->wr_max_cred
- csk
->wr_cred
))
1831 csk
->wr_una_cred
= csk
->wr_max_cred
- csk
->wr_cred
;
1834 struct sk_buff
*p
= cxgbit_sock_peek_wr(csk
);
1835 const u32 csum
= (__force u32
)p
->csum
;
1838 pr_err("csk 0x%p,%u, cr %u,%u+%u, empty.\n",
1839 csk
, csk
->tid
, credits
,
1840 csk
->wr_cred
, csk
->wr_una_cred
);
1844 if (unlikely(credits
< csum
)) {
1845 pr_warn("csk 0x%p,%u, cr %u,%u+%u, < %u.\n",
1847 credits
, csk
->wr_cred
, csk
->wr_una_cred
,
1849 p
->csum
= (__force __wsum
)(csum
- credits
);
1853 cxgbit_sock_dequeue_wr(csk
);
1858 if (unlikely(cxgbit_credit_err(csk
))) {
1859 cxgbit_queue_rx_skb(csk
, skb
);
1863 if (rpl
->seq_vld
& CPL_FW4_ACK_FLAGS_SEQVAL
) {
1864 if (unlikely(before(snd_una
, csk
->snd_una
))) {
1865 pr_warn("csk 0x%p,%u, snd_una %u/%u.",
1866 csk
, csk
->tid
, snd_una
,
1871 if (csk
->snd_una
!= snd_una
) {
1872 csk
->snd_una
= snd_una
;
1873 dst_confirm(csk
->dst
);
1874 wake_up(&csk
->ack_waitq
);
1878 if (skb_queue_len(&csk
->txq
))
1879 cxgbit_push_tx_frames(csk
);
1885 static void cxgbit_set_tcb_rpl(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1887 struct cxgbit_sock
*csk
;
1888 struct cpl_set_tcb_rpl
*rpl
= (struct cpl_set_tcb_rpl
*)skb
->data
;
1889 unsigned int tid
= GET_TID(rpl
);
1890 struct cxgb4_lld_info
*lldi
= &cdev
->lldi
;
1891 struct tid_info
*t
= lldi
->tids
;
1893 csk
= lookup_tid(t
, tid
);
1894 if (unlikely(!csk
)) {
1895 pr_err("can't find connection for tid %u.\n", tid
);
1898 cxgbit_wake_up(&csk
->com
.wr_wait
, __func__
, rpl
->status
);
1901 cxgbit_put_csk(csk
);
1906 static void cxgbit_rx_data(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1908 struct cxgbit_sock
*csk
;
1909 struct cpl_rx_data
*cpl
= cplhdr(skb
);
1910 unsigned int tid
= GET_TID(cpl
);
1911 struct cxgb4_lld_info
*lldi
= &cdev
->lldi
;
1912 struct tid_info
*t
= lldi
->tids
;
1914 csk
= lookup_tid(t
, tid
);
1915 if (unlikely(!csk
)) {
1916 pr_err("can't find conn. for tid %u.\n", tid
);
1920 cxgbit_queue_rx_skb(csk
, skb
);
1927 __cxgbit_process_rx_cpl(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1929 spin_lock(&csk
->lock
);
1930 if (csk
->lock_owner
) {
1931 __skb_queue_tail(&csk
->backlogq
, skb
);
1932 spin_unlock(&csk
->lock
);
1936 cxgbit_skcb_rx_backlog_fn(skb
)(csk
, skb
);
1937 spin_unlock(&csk
->lock
);
1940 static void cxgbit_process_rx_cpl(struct cxgbit_sock
*csk
, struct sk_buff
*skb
)
1942 cxgbit_get_csk(csk
);
1943 __cxgbit_process_rx_cpl(csk
, skb
);
1944 cxgbit_put_csk(csk
);
1947 static void cxgbit_rx_cpl(struct cxgbit_device
*cdev
, struct sk_buff
*skb
)
1949 struct cxgbit_sock
*csk
;
1950 struct cpl_tx_data
*cpl
= cplhdr(skb
);
1951 struct cxgb4_lld_info
*lldi
= &cdev
->lldi
;
1952 struct tid_info
*t
= lldi
->tids
;
1953 unsigned int tid
= GET_TID(cpl
);
1954 u8 opcode
= cxgbit_skcb_rx_opcode(skb
);
1959 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_fw4_ack
;
1962 case CPL_PEER_CLOSE
:
1963 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_peer_close
;
1965 case CPL_CLOSE_CON_RPL
:
1966 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_close_con_rpl
;
1968 case CPL_ABORT_REQ_RSS
:
1969 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_abort_req_rss
;
1971 case CPL_ABORT_RPL_RSS
:
1972 cxgbit_skcb_rx_backlog_fn(skb
) = cxgbit_abort_rpl_rss
;
1978 csk
= lookup_tid(t
, tid
);
1979 if (unlikely(!csk
)) {
1980 pr_err("can't find conn. for tid %u.\n", tid
);
1985 cxgbit_process_rx_cpl(csk
, skb
);
1987 __cxgbit_process_rx_cpl(csk
, skb
);
1994 cxgbit_cplhandler_func cxgbit_cplhandlers
[NUM_CPL_CMDS
] = {
1995 [CPL_PASS_OPEN_RPL
] = cxgbit_pass_open_rpl
,
1996 [CPL_CLOSE_LISTSRV_RPL
] = cxgbit_close_listsrv_rpl
,
1997 [CPL_PASS_ACCEPT_REQ
] = cxgbit_pass_accept_req
,
1998 [CPL_PASS_ESTABLISH
] = cxgbit_pass_establish
,
1999 [CPL_SET_TCB_RPL
] = cxgbit_set_tcb_rpl
,
2000 [CPL_RX_DATA
] = cxgbit_rx_data
,
2001 [CPL_FW4_ACK
] = cxgbit_rx_cpl
,
2002 [CPL_PEER_CLOSE
] = cxgbit_rx_cpl
,
2003 [CPL_CLOSE_CON_RPL
] = cxgbit_rx_cpl
,
2004 [CPL_ABORT_REQ_RSS
] = cxgbit_rx_cpl
,
2005 [CPL_ABORT_RPL_RSS
] = cxgbit_rx_cpl
,