2 * libcxgbi.c: Chelsio common library for T3/T4 iSCSI driver.
4 * Copyright (c) 2010-2015 Chelsio Communications, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
10 * Written by: Karen Xie (kxie@chelsio.com)
11 * Written by: Rakesh Ranjan (rranjan@chelsio.com)
14 #define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
16 #include <linux/skbuff.h>
17 #include <linux/crypto.h>
18 #include <linux/scatterlist.h>
19 #include <linux/pci.h>
20 #include <scsi/scsi.h>
21 #include <scsi/scsi_cmnd.h>
22 #include <scsi/scsi_host.h>
23 #include <linux/if_vlan.h>
24 #include <linux/inet.h>
26 #include <net/route.h>
28 #include <net/ip6_route.h>
29 #include <net/addrconf.h>
31 #include <linux/inetdevice.h> /* ip_dev_find */
32 #include <linux/module.h>
35 static unsigned int dbg_level
;
39 #define DRV_MODULE_NAME "libcxgbi"
40 #define DRV_MODULE_DESC "Chelsio iSCSI driver library"
41 #define DRV_MODULE_VERSION "0.9.1-ko"
42 #define DRV_MODULE_RELDATE "Apr. 2015"
44 static char version
[] =
45 DRV_MODULE_DESC
" " DRV_MODULE_NAME
46 " v" DRV_MODULE_VERSION
" (" DRV_MODULE_RELDATE
")\n";
48 MODULE_AUTHOR("Chelsio Communications, Inc.");
49 MODULE_DESCRIPTION(DRV_MODULE_DESC
);
50 MODULE_VERSION(DRV_MODULE_VERSION
);
51 MODULE_LICENSE("GPL");
53 module_param(dbg_level
, uint
, 0644);
54 MODULE_PARM_DESC(dbg_level
, "libiscsi debug level (default=0)");
58 * cxgbi device management
59 * maintains a list of the cxgbi devices
61 static LIST_HEAD(cdev_list
);
62 static DEFINE_MUTEX(cdev_mutex
);
64 static LIST_HEAD(cdev_rcu_list
);
65 static DEFINE_SPINLOCK(cdev_rcu_lock
);
67 static inline void cxgbi_decode_sw_tag(u32 sw_tag
, int *idx
, int *age
)
70 *age
= sw_tag
& 0x7FFF;
72 *idx
= (sw_tag
>> 16) & 0x7FFF;
75 int cxgbi_device_portmap_create(struct cxgbi_device
*cdev
, unsigned int base
,
76 unsigned int max_conn
)
78 struct cxgbi_ports_map
*pmap
= &cdev
->pmap
;
80 pmap
->port_csk
= cxgbi_alloc_big_mem(max_conn
*
81 sizeof(struct cxgbi_sock
*),
83 if (!pmap
->port_csk
) {
84 pr_warn("cdev 0x%p, portmap OOM %u.\n", cdev
, max_conn
);
88 pmap
->max_connect
= max_conn
;
89 pmap
->sport_base
= base
;
90 spin_lock_init(&pmap
->lock
);
93 EXPORT_SYMBOL_GPL(cxgbi_device_portmap_create
);
95 void cxgbi_device_portmap_cleanup(struct cxgbi_device
*cdev
)
97 struct cxgbi_ports_map
*pmap
= &cdev
->pmap
;
98 struct cxgbi_sock
*csk
;
101 for (i
= 0; i
< pmap
->max_connect
; i
++) {
102 if (pmap
->port_csk
[i
]) {
103 csk
= pmap
->port_csk
[i
];
104 pmap
->port_csk
[i
] = NULL
;
105 log_debug(1 << CXGBI_DBG_SOCK
,
106 "csk 0x%p, cdev 0x%p, offload down.\n",
108 spin_lock_bh(&csk
->lock
);
109 cxgbi_sock_set_flag(csk
, CTPF_OFFLOAD_DOWN
);
110 cxgbi_sock_closed(csk
);
111 spin_unlock_bh(&csk
->lock
);
116 EXPORT_SYMBOL_GPL(cxgbi_device_portmap_cleanup
);
118 static inline void cxgbi_device_destroy(struct cxgbi_device
*cdev
)
120 log_debug(1 << CXGBI_DBG_DEV
,
121 "cdev 0x%p, p# %u.\n", cdev
, cdev
->nports
);
122 cxgbi_hbas_remove(cdev
);
123 cxgbi_device_portmap_cleanup(cdev
);
125 cxgbi_ppm_release(cdev
->cdev2ppm(cdev
));
126 if (cdev
->pmap
.max_connect
)
127 cxgbi_free_big_mem(cdev
->pmap
.port_csk
);
131 struct cxgbi_device
*cxgbi_device_register(unsigned int extra
,
134 struct cxgbi_device
*cdev
;
136 cdev
= kzalloc(sizeof(*cdev
) + extra
+ nports
*
137 (sizeof(struct cxgbi_hba
*) +
138 sizeof(struct net_device
*)),
141 pr_warn("nport %d, OOM.\n", nports
);
144 cdev
->ports
= (struct net_device
**)(cdev
+ 1);
145 cdev
->hbas
= (struct cxgbi_hba
**)(((char*)cdev
->ports
) + nports
*
146 sizeof(struct net_device
*));
148 cdev
->dd_data
= ((char *)cdev
->hbas
) +
149 nports
* sizeof(struct cxgbi_hba
*);
150 spin_lock_init(&cdev
->pmap
.lock
);
152 mutex_lock(&cdev_mutex
);
153 list_add_tail(&cdev
->list_head
, &cdev_list
);
154 mutex_unlock(&cdev_mutex
);
156 spin_lock(&cdev_rcu_lock
);
157 list_add_tail_rcu(&cdev
->rcu_node
, &cdev_rcu_list
);
158 spin_unlock(&cdev_rcu_lock
);
160 log_debug(1 << CXGBI_DBG_DEV
,
161 "cdev 0x%p, p# %u.\n", cdev
, nports
);
164 EXPORT_SYMBOL_GPL(cxgbi_device_register
);
166 void cxgbi_device_unregister(struct cxgbi_device
*cdev
)
168 log_debug(1 << CXGBI_DBG_DEV
,
169 "cdev 0x%p, p# %u,%s.\n",
170 cdev
, cdev
->nports
, cdev
->nports
? cdev
->ports
[0]->name
: "");
172 mutex_lock(&cdev_mutex
);
173 list_del(&cdev
->list_head
);
174 mutex_unlock(&cdev_mutex
);
176 spin_lock(&cdev_rcu_lock
);
177 list_del_rcu(&cdev
->rcu_node
);
178 spin_unlock(&cdev_rcu_lock
);
181 cxgbi_device_destroy(cdev
);
183 EXPORT_SYMBOL_GPL(cxgbi_device_unregister
);
185 void cxgbi_device_unregister_all(unsigned int flag
)
187 struct cxgbi_device
*cdev
, *tmp
;
189 mutex_lock(&cdev_mutex
);
190 list_for_each_entry_safe(cdev
, tmp
, &cdev_list
, list_head
) {
191 if ((cdev
->flags
& flag
) == flag
) {
192 mutex_unlock(&cdev_mutex
);
193 cxgbi_device_unregister(cdev
);
194 mutex_lock(&cdev_mutex
);
197 mutex_unlock(&cdev_mutex
);
199 EXPORT_SYMBOL_GPL(cxgbi_device_unregister_all
);
201 struct cxgbi_device
*cxgbi_device_find_by_lldev(void *lldev
)
203 struct cxgbi_device
*cdev
, *tmp
;
205 mutex_lock(&cdev_mutex
);
206 list_for_each_entry_safe(cdev
, tmp
, &cdev_list
, list_head
) {
207 if (cdev
->lldev
== lldev
) {
208 mutex_unlock(&cdev_mutex
);
212 mutex_unlock(&cdev_mutex
);
214 log_debug(1 << CXGBI_DBG_DEV
,
215 "lldev 0x%p, NO match found.\n", lldev
);
218 EXPORT_SYMBOL_GPL(cxgbi_device_find_by_lldev
);
220 struct cxgbi_device
*cxgbi_device_find_by_netdev(struct net_device
*ndev
,
223 struct net_device
*vdev
= NULL
;
224 struct cxgbi_device
*cdev
, *tmp
;
227 if (is_vlan_dev(ndev
)) {
229 ndev
= vlan_dev_real_dev(ndev
);
230 log_debug(1 << CXGBI_DBG_DEV
,
231 "vlan dev %s -> %s.\n", vdev
->name
, ndev
->name
);
234 mutex_lock(&cdev_mutex
);
235 list_for_each_entry_safe(cdev
, tmp
, &cdev_list
, list_head
) {
236 for (i
= 0; i
< cdev
->nports
; i
++) {
237 if (ndev
== cdev
->ports
[i
]) {
238 cdev
->hbas
[i
]->vdev
= vdev
;
239 mutex_unlock(&cdev_mutex
);
246 mutex_unlock(&cdev_mutex
);
247 log_debug(1 << CXGBI_DBG_DEV
,
248 "ndev 0x%p, %s, NO match found.\n", ndev
, ndev
->name
);
251 EXPORT_SYMBOL_GPL(cxgbi_device_find_by_netdev
);
253 struct cxgbi_device
*cxgbi_device_find_by_netdev_rcu(struct net_device
*ndev
,
256 struct net_device
*vdev
= NULL
;
257 struct cxgbi_device
*cdev
;
260 if (is_vlan_dev(ndev
)) {
262 ndev
= vlan_dev_real_dev(ndev
);
263 pr_info("vlan dev %s -> %s.\n", vdev
->name
, ndev
->name
);
267 list_for_each_entry_rcu(cdev
, &cdev_rcu_list
, rcu_node
) {
268 for (i
= 0; i
< cdev
->nports
; i
++) {
269 if (ndev
== cdev
->ports
[i
]) {
270 cdev
->hbas
[i
]->vdev
= vdev
;
280 log_debug(1 << CXGBI_DBG_DEV
,
281 "ndev 0x%p, %s, NO match found.\n", ndev
, ndev
->name
);
284 EXPORT_SYMBOL_GPL(cxgbi_device_find_by_netdev_rcu
);
286 static struct cxgbi_device
*cxgbi_device_find_by_mac(struct net_device
*ndev
,
289 struct net_device
*vdev
= NULL
;
290 struct cxgbi_device
*cdev
, *tmp
;
293 if (is_vlan_dev(ndev
)) {
295 ndev
= vlan_dev_real_dev(ndev
);
296 pr_info("vlan dev %s -> %s.\n", vdev
->name
, ndev
->name
);
299 mutex_lock(&cdev_mutex
);
300 list_for_each_entry_safe(cdev
, tmp
, &cdev_list
, list_head
) {
301 for (i
= 0; i
< cdev
->nports
; i
++) {
302 if (!memcmp(ndev
->dev_addr
, cdev
->ports
[i
]->dev_addr
,
304 cdev
->hbas
[i
]->vdev
= vdev
;
305 mutex_unlock(&cdev_mutex
);
312 mutex_unlock(&cdev_mutex
);
313 log_debug(1 << CXGBI_DBG_DEV
,
314 "ndev 0x%p, %s, NO match mac found.\n",
319 void cxgbi_hbas_remove(struct cxgbi_device
*cdev
)
322 struct cxgbi_hba
*chba
;
324 log_debug(1 << CXGBI_DBG_DEV
,
325 "cdev 0x%p, p#%u.\n", cdev
, cdev
->nports
);
327 for (i
= 0; i
< cdev
->nports
; i
++) {
328 chba
= cdev
->hbas
[i
];
330 cdev
->hbas
[i
] = NULL
;
331 iscsi_host_remove(chba
->shost
);
332 pci_dev_put(cdev
->pdev
);
333 iscsi_host_free(chba
->shost
);
337 EXPORT_SYMBOL_GPL(cxgbi_hbas_remove
);
339 int cxgbi_hbas_add(struct cxgbi_device
*cdev
, u64 max_lun
,
340 unsigned int max_id
, struct scsi_host_template
*sht
,
341 struct scsi_transport_template
*stt
)
343 struct cxgbi_hba
*chba
;
344 struct Scsi_Host
*shost
;
347 log_debug(1 << CXGBI_DBG_DEV
, "cdev 0x%p, p#%u.\n", cdev
, cdev
->nports
);
349 for (i
= 0; i
< cdev
->nports
; i
++) {
350 shost
= iscsi_host_alloc(sht
, sizeof(*chba
), 1);
352 pr_info("0x%p, p%d, %s, host alloc failed.\n",
353 cdev
, i
, cdev
->ports
[i
]->name
);
358 shost
->transportt
= stt
;
359 shost
->max_lun
= max_lun
;
360 shost
->max_id
= max_id
;
361 shost
->max_channel
= 0;
362 shost
->max_cmd_len
= 16;
364 chba
= iscsi_host_priv(shost
);
366 chba
->ndev
= cdev
->ports
[i
];
369 log_debug(1 << CXGBI_DBG_DEV
,
370 "cdev 0x%p, p#%d %s: chba 0x%p.\n",
371 cdev
, i
, cdev
->ports
[i
]->name
, chba
);
373 pci_dev_get(cdev
->pdev
);
374 err
= iscsi_host_add(shost
, &cdev
->pdev
->dev
);
376 pr_info("cdev 0x%p, p#%d %s, host add failed.\n",
377 cdev
, i
, cdev
->ports
[i
]->name
);
378 pci_dev_put(cdev
->pdev
);
379 scsi_host_put(shost
);
383 cdev
->hbas
[i
] = chba
;
389 cxgbi_hbas_remove(cdev
);
392 EXPORT_SYMBOL_GPL(cxgbi_hbas_add
);
397 * - source port management
398 * To find a free source port in the port allocation map we use a very simple
399 * rotor scheme to look for the next free port.
401 * If a source port has been specified make sure that it doesn't collide with
402 * our normal source port allocation map. If it's outside the range of our
403 * allocation/deallocation scheme just let them use it.
405 * If the source port is outside our allocation range, the caller is
406 * responsible for keeping track of their port usage.
409 static struct cxgbi_sock
*find_sock_on_port(struct cxgbi_device
*cdev
,
410 unsigned char port_id
)
412 struct cxgbi_ports_map
*pmap
= &cdev
->pmap
;
416 if (!pmap
->max_connect
|| !pmap
->used
)
419 spin_lock_bh(&pmap
->lock
);
421 for (i
= 0; used
&& i
< pmap
->max_connect
; i
++) {
422 struct cxgbi_sock
*csk
= pmap
->port_csk
[i
];
425 if (csk
->port_id
== port_id
) {
426 spin_unlock_bh(&pmap
->lock
);
432 spin_unlock_bh(&pmap
->lock
);
437 static int sock_get_port(struct cxgbi_sock
*csk
)
439 struct cxgbi_device
*cdev
= csk
->cdev
;
440 struct cxgbi_ports_map
*pmap
= &cdev
->pmap
;
445 if (!pmap
->max_connect
) {
446 pr_err("cdev 0x%p, p#%u %s, NO port map.\n",
447 cdev
, csk
->port_id
, cdev
->ports
[csk
->port_id
]->name
);
448 return -EADDRNOTAVAIL
;
451 if (csk
->csk_family
== AF_INET
)
452 port
= &csk
->saddr
.sin_port
;
454 port
= &csk
->saddr6
.sin6_port
;
457 pr_err("source port NON-ZERO %u.\n",
462 spin_lock_bh(&pmap
->lock
);
463 if (pmap
->used
>= pmap
->max_connect
) {
464 spin_unlock_bh(&pmap
->lock
);
465 pr_info("cdev 0x%p, p#%u %s, ALL ports used.\n",
466 cdev
, csk
->port_id
, cdev
->ports
[csk
->port_id
]->name
);
467 return -EADDRNOTAVAIL
;
470 start
= idx
= pmap
->next
;
472 if (++idx
>= pmap
->max_connect
)
474 if (!pmap
->port_csk
[idx
]) {
476 *port
= htons(pmap
->sport_base
+ idx
);
478 pmap
->port_csk
[idx
] = csk
;
479 spin_unlock_bh(&pmap
->lock
);
481 log_debug(1 << CXGBI_DBG_SOCK
,
482 "cdev 0x%p, p#%u %s, p %u, %u.\n",
484 cdev
->ports
[csk
->port_id
]->name
,
485 pmap
->sport_base
+ idx
, pmap
->next
);
488 } while (idx
!= start
);
489 spin_unlock_bh(&pmap
->lock
);
491 /* should not happen */
492 pr_warn("cdev 0x%p, p#%u %s, next %u?\n",
493 cdev
, csk
->port_id
, cdev
->ports
[csk
->port_id
]->name
,
495 return -EADDRNOTAVAIL
;
498 static void sock_put_port(struct cxgbi_sock
*csk
)
500 struct cxgbi_device
*cdev
= csk
->cdev
;
501 struct cxgbi_ports_map
*pmap
= &cdev
->pmap
;
504 if (csk
->csk_family
== AF_INET
)
505 port
= &csk
->saddr
.sin_port
;
507 port
= &csk
->saddr6
.sin6_port
;
510 int idx
= ntohs(*port
) - pmap
->sport_base
;
513 if (idx
< 0 || idx
>= pmap
->max_connect
) {
514 pr_err("cdev 0x%p, p#%u %s, port %u OOR.\n",
516 cdev
->ports
[csk
->port_id
]->name
,
521 spin_lock_bh(&pmap
->lock
);
522 pmap
->port_csk
[idx
] = NULL
;
524 spin_unlock_bh(&pmap
->lock
);
526 log_debug(1 << CXGBI_DBG_SOCK
,
527 "cdev 0x%p, p#%u %s, release %u.\n",
528 cdev
, csk
->port_id
, cdev
->ports
[csk
->port_id
]->name
,
529 pmap
->sport_base
+ idx
);
536 * iscsi tcp connection
538 void cxgbi_sock_free_cpl_skbs(struct cxgbi_sock
*csk
)
540 if (csk
->cpl_close
) {
541 kfree_skb(csk
->cpl_close
);
542 csk
->cpl_close
= NULL
;
544 if (csk
->cpl_abort_req
) {
545 kfree_skb(csk
->cpl_abort_req
);
546 csk
->cpl_abort_req
= NULL
;
548 if (csk
->cpl_abort_rpl
) {
549 kfree_skb(csk
->cpl_abort_rpl
);
550 csk
->cpl_abort_rpl
= NULL
;
553 EXPORT_SYMBOL_GPL(cxgbi_sock_free_cpl_skbs
);
555 static struct cxgbi_sock
*cxgbi_sock_create(struct cxgbi_device
*cdev
)
557 struct cxgbi_sock
*csk
= kzalloc(sizeof(*csk
), GFP_NOIO
);
560 pr_info("alloc csk %zu failed.\n", sizeof(*csk
));
564 if (cdev
->csk_alloc_cpls(csk
) < 0) {
565 pr_info("csk 0x%p, alloc cpls failed.\n", csk
);
570 spin_lock_init(&csk
->lock
);
571 kref_init(&csk
->refcnt
);
572 skb_queue_head_init(&csk
->receive_queue
);
573 skb_queue_head_init(&csk
->write_queue
);
574 timer_setup(&csk
->retry_timer
, NULL
, 0);
575 init_completion(&csk
->cmpl
);
576 rwlock_init(&csk
->callback_lock
);
579 cxgbi_sock_set_state(csk
, CTP_CLOSED
);
581 log_debug(1 << CXGBI_DBG_SOCK
, "cdev 0x%p, new csk 0x%p.\n", cdev
, csk
);
586 static struct rtable
*find_route_ipv4(struct flowi4
*fl4
,
587 __be32 saddr
, __be32 daddr
,
588 __be16 sport
, __be16 dport
, u8 tos
,
593 rt
= ip_route_output_ports(&init_net
, fl4
, NULL
, daddr
, saddr
,
594 dport
, sport
, IPPROTO_TCP
, tos
, ifindex
);
601 static struct cxgbi_sock
*
602 cxgbi_check_route(struct sockaddr
*dst_addr
, int ifindex
)
604 struct sockaddr_in
*daddr
= (struct sockaddr_in
*)dst_addr
;
605 struct dst_entry
*dst
;
606 struct net_device
*ndev
;
607 struct cxgbi_device
*cdev
;
608 struct rtable
*rt
= NULL
;
611 struct cxgbi_sock
*csk
= NULL
;
612 unsigned int mtu
= 0;
616 rt
= find_route_ipv4(&fl4
, 0, daddr
->sin_addr
.s_addr
, 0,
617 daddr
->sin_port
, 0, ifindex
);
619 pr_info("no route to ipv4 0x%x, port %u.\n",
620 be32_to_cpu(daddr
->sin_addr
.s_addr
),
621 be16_to_cpu(daddr
->sin_port
));
626 n
= dst_neigh_lookup(dst
, &daddr
->sin_addr
.s_addr
);
633 if (rt
->rt_flags
& (RTCF_MULTICAST
| RTCF_BROADCAST
)) {
634 pr_info("multi-cast route %pI4, port %u, dev %s.\n",
635 &daddr
->sin_addr
.s_addr
, ntohs(daddr
->sin_port
),
641 if (ndev
->flags
& IFF_LOOPBACK
) {
642 ndev
= ip_dev_find(&init_net
, daddr
->sin_addr
.s_addr
);
648 pr_info("rt dev %s, loopback -> %s, mtu %u.\n",
649 n
->dev
->name
, ndev
->name
, mtu
);
652 if (!(ndev
->flags
& IFF_UP
) || !netif_carrier_ok(ndev
)) {
653 pr_info("%s interface not up.\n", ndev
->name
);
658 cdev
= cxgbi_device_find_by_netdev(ndev
, &port
);
660 cdev
= cxgbi_device_find_by_mac(ndev
, &port
);
662 pr_info("dst %pI4, %s, NOT cxgbi device.\n",
663 &daddr
->sin_addr
.s_addr
, ndev
->name
);
667 log_debug(1 << CXGBI_DBG_SOCK
,
668 "route to %pI4 :%u, ndev p#%d,%s, cdev 0x%p.\n",
669 &daddr
->sin_addr
.s_addr
, ntohs(daddr
->sin_port
),
670 port
, ndev
->name
, cdev
);
672 csk
= cxgbi_sock_create(cdev
);
682 csk
->csk_family
= AF_INET
;
683 csk
->daddr
.sin_addr
.s_addr
= daddr
->sin_addr
.s_addr
;
684 csk
->daddr
.sin_port
= daddr
->sin_port
;
685 csk
->daddr
.sin_family
= daddr
->sin_family
;
686 csk
->saddr
.sin_family
= daddr
->sin_family
;
687 csk
->saddr
.sin_addr
.s_addr
= fl4
.saddr
;
701 #if IS_ENABLED(CONFIG_IPV6)
702 static struct rt6_info
*find_route_ipv6(const struct in6_addr
*saddr
,
703 const struct in6_addr
*daddr
,
708 memset(&fl
, 0, sizeof(fl
));
709 fl
.flowi6_oif
= ifindex
;
711 memcpy(&fl
.saddr
, saddr
, sizeof(struct in6_addr
));
713 memcpy(&fl
.daddr
, daddr
, sizeof(struct in6_addr
));
714 return (struct rt6_info
*)ip6_route_output(&init_net
, NULL
, &fl
);
717 static struct cxgbi_sock
*
718 cxgbi_check_route6(struct sockaddr
*dst_addr
, int ifindex
)
720 struct sockaddr_in6
*daddr6
= (struct sockaddr_in6
*)dst_addr
;
721 struct dst_entry
*dst
;
722 struct net_device
*ndev
;
723 struct cxgbi_device
*cdev
;
724 struct rt6_info
*rt
= NULL
;
726 struct in6_addr pref_saddr
;
727 struct cxgbi_sock
*csk
= NULL
;
728 unsigned int mtu
= 0;
732 rt
= find_route_ipv6(NULL
, &daddr6
->sin6_addr
, ifindex
);
735 pr_info("no route to ipv6 %pI6 port %u\n",
736 daddr6
->sin6_addr
.s6_addr
,
737 be16_to_cpu(daddr6
->sin6_port
));
744 n
= dst_neigh_lookup(dst
, &daddr6
->sin6_addr
);
747 pr_info("%pI6, port %u, dst no neighbour.\n",
748 daddr6
->sin6_addr
.s6_addr
,
749 be16_to_cpu(daddr6
->sin6_port
));
755 if (!(ndev
->flags
& IFF_UP
) || !netif_carrier_ok(ndev
)) {
756 pr_info("%s interface not up.\n", ndev
->name
);
761 if (ipv6_addr_is_multicast(&daddr6
->sin6_addr
)) {
762 pr_info("multi-cast route %pI6 port %u, dev %s.\n",
763 daddr6
->sin6_addr
.s6_addr
,
764 ntohs(daddr6
->sin6_port
), ndev
->name
);
769 cdev
= cxgbi_device_find_by_netdev(ndev
, &port
);
771 cdev
= cxgbi_device_find_by_mac(ndev
, &port
);
773 pr_info("dst %pI6 %s, NOT cxgbi device.\n",
774 daddr6
->sin6_addr
.s6_addr
, ndev
->name
);
778 log_debug(1 << CXGBI_DBG_SOCK
,
779 "route to %pI6 :%u, ndev p#%d,%s, cdev 0x%p.\n",
780 daddr6
->sin6_addr
.s6_addr
, ntohs(daddr6
->sin6_port
), port
,
783 csk
= cxgbi_sock_create(cdev
);
793 rt6_get_prefsrc(rt
, &pref_saddr
);
794 if (ipv6_addr_any(&pref_saddr
)) {
795 struct inet6_dev
*idev
= ip6_dst_idev((struct dst_entry
*)rt
);
797 err
= ipv6_dev_get_saddr(&init_net
, idev
? idev
->dev
: NULL
,
798 &daddr6
->sin6_addr
, 0, &pref_saddr
);
800 pr_info("failed to get source address to reach %pI6\n",
806 csk
->csk_family
= AF_INET6
;
807 csk
->daddr6
.sin6_addr
= daddr6
->sin6_addr
;
808 csk
->daddr6
.sin6_port
= daddr6
->sin6_port
;
809 csk
->daddr6
.sin6_family
= daddr6
->sin6_family
;
810 csk
->saddr6
.sin6_family
= daddr6
->sin6_family
;
811 csk
->saddr6
.sin6_addr
= pref_saddr
;
822 cxgbi_sock_closed(csk
);
826 #endif /* IS_ENABLED(CONFIG_IPV6) */
828 void cxgbi_sock_established(struct cxgbi_sock
*csk
, unsigned int snd_isn
,
831 csk
->write_seq
= csk
->snd_nxt
= csk
->snd_una
= snd_isn
;
832 dst_confirm(csk
->dst
);
834 cxgbi_sock_set_state(csk
, CTP_ESTABLISHED
);
836 EXPORT_SYMBOL_GPL(cxgbi_sock_established
);
838 static void cxgbi_inform_iscsi_conn_closing(struct cxgbi_sock
*csk
)
840 log_debug(1 << CXGBI_DBG_SOCK
,
841 "csk 0x%p, state %u, flags 0x%lx, conn 0x%p.\n",
842 csk
, csk
->state
, csk
->flags
, csk
->user_data
);
844 if (csk
->state
!= CTP_ESTABLISHED
) {
845 read_lock_bh(&csk
->callback_lock
);
847 iscsi_conn_failure(csk
->user_data
,
848 ISCSI_ERR_TCP_CONN_CLOSE
);
849 read_unlock_bh(&csk
->callback_lock
);
853 void cxgbi_sock_closed(struct cxgbi_sock
*csk
)
855 log_debug(1 << CXGBI_DBG_SOCK
, "csk 0x%p,%u,0x%lx,%u.\n",
856 csk
, (csk
)->state
, (csk
)->flags
, (csk
)->tid
);
857 cxgbi_sock_set_flag(csk
, CTPF_ACTIVE_CLOSE_NEEDED
);
858 if (csk
->state
== CTP_ACTIVE_OPEN
|| csk
->state
== CTP_CLOSED
)
860 if (csk
->saddr
.sin_port
)
863 dst_release(csk
->dst
);
864 csk
->cdev
->csk_release_offload_resources(csk
);
865 cxgbi_sock_set_state(csk
, CTP_CLOSED
);
866 cxgbi_inform_iscsi_conn_closing(csk
);
869 EXPORT_SYMBOL_GPL(cxgbi_sock_closed
);
871 static void need_active_close(struct cxgbi_sock
*csk
)
876 log_debug(1 << CXGBI_DBG_SOCK
, "csk 0x%p,%u,0x%lx,%u.\n",
877 csk
, (csk
)->state
, (csk
)->flags
, (csk
)->tid
);
878 spin_lock_bh(&csk
->lock
);
880 dst_confirm(csk
->dst
);
881 data_lost
= skb_queue_len(&csk
->receive_queue
);
882 __skb_queue_purge(&csk
->receive_queue
);
884 if (csk
->state
== CTP_ACTIVE_OPEN
)
885 cxgbi_sock_set_flag(csk
, CTPF_ACTIVE_CLOSE_NEEDED
);
886 else if (csk
->state
== CTP_ESTABLISHED
) {
888 cxgbi_sock_set_state(csk
, CTP_ACTIVE_CLOSE
);
889 } else if (csk
->state
== CTP_PASSIVE_CLOSE
) {
891 cxgbi_sock_set_state(csk
, CTP_CLOSE_WAIT_2
);
895 if (!cxgbi_sock_flag(csk
, CTPF_LOGOUT_RSP_RCVD
) ||
897 csk
->cdev
->csk_send_abort_req(csk
);
899 csk
->cdev
->csk_send_close_req(csk
);
902 spin_unlock_bh(&csk
->lock
);
905 void cxgbi_sock_fail_act_open(struct cxgbi_sock
*csk
, int errno
)
907 pr_info("csk 0x%p,%u,%lx, %pI4:%u-%pI4:%u, err %d.\n",
908 csk
, csk
->state
, csk
->flags
,
909 &csk
->saddr
.sin_addr
.s_addr
, csk
->saddr
.sin_port
,
910 &csk
->daddr
.sin_addr
.s_addr
, csk
->daddr
.sin_port
,
913 cxgbi_sock_set_state(csk
, CTP_CONNECTING
);
915 cxgbi_sock_closed(csk
);
917 EXPORT_SYMBOL_GPL(cxgbi_sock_fail_act_open
);
919 void cxgbi_sock_act_open_req_arp_failure(void *handle
, struct sk_buff
*skb
)
921 struct cxgbi_sock
*csk
= (struct cxgbi_sock
*)skb
->sk
;
922 struct module
*owner
= csk
->cdev
->owner
;
924 log_debug(1 << CXGBI_DBG_SOCK
, "csk 0x%p,%u,0x%lx,%u.\n",
925 csk
, (csk
)->state
, (csk
)->flags
, (csk
)->tid
);
927 spin_lock_bh(&csk
->lock
);
928 if (csk
->state
== CTP_ACTIVE_OPEN
)
929 cxgbi_sock_fail_act_open(csk
, -EHOSTUNREACH
);
930 spin_unlock_bh(&csk
->lock
);
936 EXPORT_SYMBOL_GPL(cxgbi_sock_act_open_req_arp_failure
);
938 void cxgbi_sock_rcv_abort_rpl(struct cxgbi_sock
*csk
)
941 spin_lock_bh(&csk
->lock
);
943 cxgbi_sock_set_flag(csk
, CTPF_ABORT_RPL_RCVD
);
944 if (cxgbi_sock_flag(csk
, CTPF_ABORT_RPL_PENDING
)) {
945 cxgbi_sock_clear_flag(csk
, CTPF_ABORT_RPL_PENDING
);
946 if (cxgbi_sock_flag(csk
, CTPF_ABORT_REQ_RCVD
))
947 pr_err("csk 0x%p,%u,0x%lx,%u,ABT_RPL_RSS.\n",
948 csk
, csk
->state
, csk
->flags
, csk
->tid
);
949 cxgbi_sock_closed(csk
);
952 spin_unlock_bh(&csk
->lock
);
955 EXPORT_SYMBOL_GPL(cxgbi_sock_rcv_abort_rpl
);
957 void cxgbi_sock_rcv_peer_close(struct cxgbi_sock
*csk
)
959 log_debug(1 << CXGBI_DBG_SOCK
, "csk 0x%p,%u,0x%lx,%u.\n",
960 csk
, (csk
)->state
, (csk
)->flags
, (csk
)->tid
);
962 spin_lock_bh(&csk
->lock
);
964 if (cxgbi_sock_flag(csk
, CTPF_ABORT_RPL_PENDING
))
967 switch (csk
->state
) {
968 case CTP_ESTABLISHED
:
969 cxgbi_sock_set_state(csk
, CTP_PASSIVE_CLOSE
);
971 case CTP_ACTIVE_CLOSE
:
972 cxgbi_sock_set_state(csk
, CTP_CLOSE_WAIT_2
);
974 case CTP_CLOSE_WAIT_1
:
975 cxgbi_sock_closed(csk
);
980 pr_err("csk 0x%p,%u,0x%lx,%u, bad state.\n",
981 csk
, csk
->state
, csk
->flags
, csk
->tid
);
983 cxgbi_inform_iscsi_conn_closing(csk
);
985 spin_unlock_bh(&csk
->lock
);
988 EXPORT_SYMBOL_GPL(cxgbi_sock_rcv_peer_close
);
990 void cxgbi_sock_rcv_close_conn_rpl(struct cxgbi_sock
*csk
, u32 snd_nxt
)
992 log_debug(1 << CXGBI_DBG_SOCK
, "csk 0x%p,%u,0x%lx,%u.\n",
993 csk
, (csk
)->state
, (csk
)->flags
, (csk
)->tid
);
995 spin_lock_bh(&csk
->lock
);
997 csk
->snd_una
= snd_nxt
- 1;
998 if (cxgbi_sock_flag(csk
, CTPF_ABORT_RPL_PENDING
))
1001 switch (csk
->state
) {
1002 case CTP_ACTIVE_CLOSE
:
1003 cxgbi_sock_set_state(csk
, CTP_CLOSE_WAIT_1
);
1005 case CTP_CLOSE_WAIT_1
:
1006 case CTP_CLOSE_WAIT_2
:
1007 cxgbi_sock_closed(csk
);
1012 pr_err("csk 0x%p,%u,0x%lx,%u, bad state.\n",
1013 csk
, csk
->state
, csk
->flags
, csk
->tid
);
1016 spin_unlock_bh(&csk
->lock
);
1017 cxgbi_sock_put(csk
);
1019 EXPORT_SYMBOL_GPL(cxgbi_sock_rcv_close_conn_rpl
);
1021 void cxgbi_sock_rcv_wr_ack(struct cxgbi_sock
*csk
, unsigned int credits
,
1022 unsigned int snd_una
, int seq_chk
)
1024 log_debug(1 << CXGBI_DBG_TOE
| 1 << CXGBI_DBG_SOCK
,
1025 "csk 0x%p,%u,0x%lx,%u, cr %u,%u+%u, snd_una %u,%d.\n",
1026 csk
, csk
->state
, csk
->flags
, csk
->tid
, credits
,
1027 csk
->wr_cred
, csk
->wr_una_cred
, snd_una
, seq_chk
);
1029 spin_lock_bh(&csk
->lock
);
1031 csk
->wr_cred
+= credits
;
1032 if (csk
->wr_una_cred
> csk
->wr_max_cred
- csk
->wr_cred
)
1033 csk
->wr_una_cred
= csk
->wr_max_cred
- csk
->wr_cred
;
1036 struct sk_buff
*p
= cxgbi_sock_peek_wr(csk
);
1039 pr_err("csk 0x%p,%u,0x%lx,%u, cr %u,%u+%u, empty.\n",
1040 csk
, csk
->state
, csk
->flags
, csk
->tid
, credits
,
1041 csk
->wr_cred
, csk
->wr_una_cred
);
1045 if (unlikely(credits
< p
->csum
)) {
1046 pr_warn("csk 0x%p,%u,0x%lx,%u, cr %u,%u+%u, < %u.\n",
1047 csk
, csk
->state
, csk
->flags
, csk
->tid
,
1048 credits
, csk
->wr_cred
, csk
->wr_una_cred
,
1053 cxgbi_sock_dequeue_wr(csk
);
1059 cxgbi_sock_check_wr_invariants(csk
);
1062 if (unlikely(before(snd_una
, csk
->snd_una
))) {
1063 pr_warn("csk 0x%p,%u,0x%lx,%u, snd_una %u/%u.",
1064 csk
, csk
->state
, csk
->flags
, csk
->tid
, snd_una
,
1069 if (csk
->snd_una
!= snd_una
) {
1070 csk
->snd_una
= snd_una
;
1071 dst_confirm(csk
->dst
);
1075 if (skb_queue_len(&csk
->write_queue
)) {
1076 if (csk
->cdev
->csk_push_tx_frames(csk
, 0))
1077 cxgbi_conn_tx_open(csk
);
1079 cxgbi_conn_tx_open(csk
);
1081 spin_unlock_bh(&csk
->lock
);
1083 EXPORT_SYMBOL_GPL(cxgbi_sock_rcv_wr_ack
);
1085 static unsigned int cxgbi_sock_find_best_mtu(struct cxgbi_sock
*csk
,
1090 while (i
< csk
->cdev
->nmtus
- 1 && csk
->cdev
->mtus
[i
+ 1] <= mtu
)
1096 unsigned int cxgbi_sock_select_mss(struct cxgbi_sock
*csk
, unsigned int pmtu
)
1099 struct dst_entry
*dst
= csk
->dst
;
1101 csk
->advmss
= dst_metric_advmss(dst
);
1103 if (csk
->advmss
> pmtu
- 40)
1104 csk
->advmss
= pmtu
- 40;
1105 if (csk
->advmss
< csk
->cdev
->mtus
[0] - 40)
1106 csk
->advmss
= csk
->cdev
->mtus
[0] - 40;
1107 idx
= cxgbi_sock_find_best_mtu(csk
, csk
->advmss
+ 40);
1111 EXPORT_SYMBOL_GPL(cxgbi_sock_select_mss
);
1113 void cxgbi_sock_skb_entail(struct cxgbi_sock
*csk
, struct sk_buff
*skb
)
1115 cxgbi_skcb_tcp_seq(skb
) = csk
->write_seq
;
1116 __skb_queue_tail(&csk
->write_queue
, skb
);
1118 EXPORT_SYMBOL_GPL(cxgbi_sock_skb_entail
);
1120 void cxgbi_sock_purge_wr_queue(struct cxgbi_sock
*csk
)
1122 struct sk_buff
*skb
;
1124 while ((skb
= cxgbi_sock_dequeue_wr(csk
)) != NULL
)
1127 EXPORT_SYMBOL_GPL(cxgbi_sock_purge_wr_queue
);
1129 void cxgbi_sock_check_wr_invariants(const struct cxgbi_sock
*csk
)
1131 int pending
= cxgbi_sock_count_pending_wrs(csk
);
1133 if (unlikely(csk
->wr_cred
+ pending
!= csk
->wr_max_cred
))
1134 pr_err("csk 0x%p, tid %u, credit %u + %u != %u.\n",
1135 csk
, csk
->tid
, csk
->wr_cred
, pending
, csk
->wr_max_cred
);
1137 EXPORT_SYMBOL_GPL(cxgbi_sock_check_wr_invariants
);
1139 static int cxgbi_sock_send_pdus(struct cxgbi_sock
*csk
, struct sk_buff
*skb
)
1141 struct cxgbi_device
*cdev
= csk
->cdev
;
1142 struct sk_buff
*next
;
1143 int err
, copied
= 0;
1145 spin_lock_bh(&csk
->lock
);
1147 if (csk
->state
!= CTP_ESTABLISHED
) {
1148 log_debug(1 << CXGBI_DBG_PDU_TX
,
1149 "csk 0x%p,%u,0x%lx,%u, EAGAIN.\n",
1150 csk
, csk
->state
, csk
->flags
, csk
->tid
);
1156 log_debug(1 << CXGBI_DBG_PDU_TX
,
1157 "csk 0x%p,%u,0x%lx,%u, EPIPE %d.\n",
1158 csk
, csk
->state
, csk
->flags
, csk
->tid
, csk
->err
);
1163 if (csk
->write_seq
- csk
->snd_una
>= csk
->snd_win
) {
1164 log_debug(1 << CXGBI_DBG_PDU_TX
,
1165 "csk 0x%p,%u,0x%lx,%u, FULL %u-%u >= %u.\n",
1166 csk
, csk
->state
, csk
->flags
, csk
->tid
, csk
->write_seq
,
1167 csk
->snd_una
, csk
->snd_win
);
1173 int frags
= skb_shinfo(skb
)->nr_frags
+
1174 (skb
->len
!= skb
->data_len
);
1176 if (unlikely(skb_headroom(skb
) < cdev
->skb_tx_rsvd
)) {
1177 pr_err("csk 0x%p, skb head %u < %u.\n",
1178 csk
, skb_headroom(skb
), cdev
->skb_tx_rsvd
);
1183 if (frags
>= SKB_WR_LIST_SIZE
) {
1184 pr_err("csk 0x%p, frags %d, %u,%u >%u.\n",
1185 csk
, skb_shinfo(skb
)->nr_frags
, skb
->len
,
1186 skb
->data_len
, (uint
)(SKB_WR_LIST_SIZE
));
1193 cxgbi_skcb_set_flag(skb
, SKCBF_TX_NEED_HDR
);
1194 cxgbi_sock_skb_entail(csk
, skb
);
1196 csk
->write_seq
+= skb
->len
+
1197 cxgbi_ulp_extra_len(cxgbi_skcb_ulp_mode(skb
));
1201 if (likely(skb_queue_len(&csk
->write_queue
)))
1202 cdev
->csk_push_tx_frames(csk
, 1);
1204 spin_unlock_bh(&csk
->lock
);
1208 if (copied
== 0 && err
== -EPIPE
)
1209 copied
= csk
->err
? csk
->err
: -EPIPE
;
1216 scmd_get_params(struct scsi_cmnd
*sc
, struct scatterlist
**sgl
,
1217 unsigned int *sgcnt
, unsigned int *dlen
,
1220 struct scsi_data_buffer
*sdb
= prot
? scsi_prot(sc
) : &sc
->sdb
;
1222 *sgl
= sdb
->table
.sgl
;
1223 *sgcnt
= sdb
->table
.nents
;
1224 *dlen
= sdb
->length
;
1225 /* Caution: for protection sdb, sdb->length is invalid */
1228 void cxgbi_ddp_set_one_ppod(struct cxgbi_pagepod
*ppod
,
1229 struct cxgbi_task_tag_info
*ttinfo
,
1230 struct scatterlist
**sg_pp
, unsigned int *sg_off
)
1232 struct scatterlist
*sg
= sg_pp
? *sg_pp
: NULL
;
1233 unsigned int offset
= sg_off
? *sg_off
: 0;
1234 dma_addr_t addr
= 0UL;
1235 unsigned int len
= 0;
1238 memcpy(ppod
, &ttinfo
->hdr
, sizeof(struct cxgbi_pagepod_hdr
));
1241 addr
= sg_dma_address(sg
);
1242 len
= sg_dma_len(sg
);
1245 for (i
= 0; i
< PPOD_PAGES_MAX
; i
++) {
1247 ppod
->addr
[i
] = cpu_to_be64(addr
+ offset
);
1248 offset
+= PAGE_SIZE
;
1249 if (offset
== (len
+ sg
->offset
)) {
1253 addr
= sg_dma_address(sg
);
1254 len
= sg_dma_len(sg
);
1258 ppod
->addr
[i
] = 0ULL;
1263 * the fifth address needs to be repeated in the next ppod, so do
1271 if (offset
== len
) {
1275 addr
= sg_dma_address(sg
);
1276 len
= sg_dma_len(sg
);
1279 ppod
->addr
[i
] = sg
? cpu_to_be64(addr
+ offset
) : 0ULL;
1281 EXPORT_SYMBOL_GPL(cxgbi_ddp_set_one_ppod
);
1284 * APIs interacting with open-iscsi libraries
1287 static unsigned char padding
[4];
1289 int cxgbi_ddp_ppm_setup(void **ppm_pp
, struct cxgbi_device
*cdev
,
1290 struct cxgbi_tag_format
*tformat
,
1291 unsigned int iscsi_size
, unsigned int llimit
,
1292 unsigned int start
, unsigned int rsvd_factor
,
1293 unsigned int edram_start
, unsigned int edram_size
)
1295 int err
= cxgbi_ppm_init(ppm_pp
, cdev
->ports
[0], cdev
->pdev
,
1296 cdev
->lldev
, tformat
, iscsi_size
, llimit
, start
,
1297 rsvd_factor
, edram_start
, edram_size
);
1300 struct cxgbi_ppm
*ppm
= (struct cxgbi_ppm
*)(*ppm_pp
);
1302 if (ppm
->ppmax
< 1024 ||
1303 ppm
->tformat
.pgsz_idx_dflt
>= DDP_PGIDX_MAX
)
1304 cdev
->flags
|= CXGBI_FLAG_DDP_OFF
;
1307 cdev
->flags
|= CXGBI_FLAG_DDP_OFF
;
1312 EXPORT_SYMBOL_GPL(cxgbi_ddp_ppm_setup
);
1314 static int cxgbi_ddp_sgl_check(struct scatterlist
*sgl
, int nents
)
1317 int last_sgidx
= nents
- 1;
1318 struct scatterlist
*sg
= sgl
;
1320 for (i
= 0; i
< nents
; i
++, sg
= sg_next(sg
)) {
1321 unsigned int len
= sg
->length
+ sg
->offset
;
1323 if ((sg
->offset
& 0x3) || (i
&& sg
->offset
) ||
1324 ((i
!= last_sgidx
) && len
!= PAGE_SIZE
)) {
1325 log_debug(1 << CXGBI_DBG_DDP
,
1326 "sg %u/%u, %u,%u, not aligned.\n",
1327 i
, nents
, sg
->offset
, sg
->length
);
1336 static int cxgbi_ddp_reserve(struct cxgbi_conn
*cconn
,
1337 struct cxgbi_task_data
*tdata
, u32 sw_tag
,
1338 unsigned int xferlen
)
1340 struct cxgbi_sock
*csk
= cconn
->cep
->csk
;
1341 struct cxgbi_device
*cdev
= csk
->cdev
;
1342 struct cxgbi_ppm
*ppm
= cdev
->cdev2ppm(cdev
);
1343 struct cxgbi_task_tag_info
*ttinfo
= &tdata
->ttinfo
;
1344 struct scatterlist
*sgl
= ttinfo
->sgl
;
1345 unsigned int sgcnt
= ttinfo
->nents
;
1346 unsigned int sg_offset
= sgl
->offset
;
1349 if (cdev
->flags
& CXGBI_FLAG_DDP_OFF
) {
1350 log_debug(1 << CXGBI_DBG_DDP
,
1351 "cdev 0x%p DDP off.\n", cdev
);
1355 if (!ppm
|| xferlen
< DDP_THRESHOLD
|| !sgcnt
||
1356 ppm
->tformat
.pgsz_idx_dflt
>= DDP_PGIDX_MAX
) {
1357 log_debug(1 << CXGBI_DBG_DDP
,
1358 "ppm 0x%p, pgidx %u, xfer %u, sgcnt %u, NO ddp.\n",
1359 ppm
, ppm
? ppm
->tformat
.pgsz_idx_dflt
: DDP_PGIDX_MAX
,
1360 xferlen
, ttinfo
->nents
);
1364 /* make sure the buffer is suitable for ddp */
1365 if (cxgbi_ddp_sgl_check(sgl
, sgcnt
) < 0)
1368 ttinfo
->nr_pages
= (xferlen
+ sgl
->offset
+ (1 << PAGE_SHIFT
) - 1) >>
1372 * the ddp tag will be used for the itt in the outgoing pdu,
1373 * the itt genrated by libiscsi is saved in the ppm and can be
1374 * retrieved via the ddp tag
1376 err
= cxgbi_ppm_ppods_reserve(ppm
, ttinfo
->nr_pages
, 0, &ttinfo
->idx
,
1377 &ttinfo
->tag
, (unsigned long)sw_tag
);
1382 ttinfo
->npods
= err
;
1384 /* setup dma from scsi command sgl */
1386 err
= dma_map_sg(&ppm
->pdev
->dev
, sgl
, sgcnt
, DMA_FROM_DEVICE
);
1387 sgl
->offset
= sg_offset
;
1389 pr_info("%s: 0x%x, xfer %u, sgl %u dma mapping err.\n",
1390 __func__
, sw_tag
, xferlen
, sgcnt
);
1393 if (err
!= ttinfo
->nr_pages
) {
1394 log_debug(1 << CXGBI_DBG_DDP
,
1395 "%s: sw tag 0x%x, xfer %u, sgl %u, dma count %d.\n",
1396 __func__
, sw_tag
, xferlen
, sgcnt
, err
);
1399 ttinfo
->flags
|= CXGBI_PPOD_INFO_FLAG_MAPPED
;
1400 ttinfo
->cid
= csk
->port_id
;
1402 cxgbi_ppm_make_ppod_hdr(ppm
, ttinfo
->tag
, csk
->tid
, sgl
->offset
,
1403 xferlen
, &ttinfo
->hdr
);
1405 if (cdev
->flags
& CXGBI_FLAG_USE_PPOD_OFLDQ
) {
1406 /* write ppod from xmit_pdu (of iscsi_scsi_command pdu) */
1407 ttinfo
->flags
|= CXGBI_PPOD_INFO_FLAG_VALID
;
1409 /* write ppod from control queue now */
1410 err
= cdev
->csk_ddp_set_map(ppm
, csk
, ttinfo
);
1418 cxgbi_ppm_ppod_release(ppm
, ttinfo
->idx
);
1420 if (ttinfo
->flags
& CXGBI_PPOD_INFO_FLAG_MAPPED
) {
1421 ttinfo
->flags
&= ~CXGBI_PPOD_INFO_FLAG_MAPPED
;
1422 dma_unmap_sg(&ppm
->pdev
->dev
, sgl
, sgcnt
, DMA_FROM_DEVICE
);
1427 static void task_release_itt(struct iscsi_task
*task
, itt_t hdr_itt
)
1429 struct scsi_cmnd
*sc
= task
->sc
;
1430 struct iscsi_tcp_conn
*tcp_conn
= task
->conn
->dd_data
;
1431 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
1432 struct cxgbi_device
*cdev
= cconn
->chba
->cdev
;
1433 struct cxgbi_ppm
*ppm
= cdev
->cdev2ppm(cdev
);
1434 u32 tag
= ntohl((__force u32
)hdr_itt
);
1436 log_debug(1 << CXGBI_DBG_DDP
,
1437 "cdev 0x%p, task 0x%p, release tag 0x%x.\n",
1439 if (sc
&& sc
->sc_data_direction
== DMA_FROM_DEVICE
&&
1440 cxgbi_ppm_is_ddp_tag(ppm
, tag
)) {
1441 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
1442 struct cxgbi_task_tag_info
*ttinfo
= &tdata
->ttinfo
;
1444 if (!(cdev
->flags
& CXGBI_FLAG_USE_PPOD_OFLDQ
))
1445 cdev
->csk_ddp_clear_map(cdev
, ppm
, ttinfo
);
1446 cxgbi_ppm_ppod_release(ppm
, ttinfo
->idx
);
1447 dma_unmap_sg(&ppm
->pdev
->dev
, ttinfo
->sgl
, ttinfo
->nents
,
1452 static inline u32
cxgbi_build_sw_tag(u32 idx
, u32 age
)
1454 /* assume idx and age both are < 0x7FFF (32767) */
1455 return (idx
<< 16) | age
;
1458 static int task_reserve_itt(struct iscsi_task
*task
, itt_t
*hdr_itt
)
1460 struct scsi_cmnd
*sc
= task
->sc
;
1461 struct iscsi_conn
*conn
= task
->conn
;
1462 struct iscsi_session
*sess
= conn
->session
;
1463 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1464 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
1465 struct cxgbi_device
*cdev
= cconn
->chba
->cdev
;
1466 struct cxgbi_ppm
*ppm
= cdev
->cdev2ppm(cdev
);
1467 u32 sw_tag
= cxgbi_build_sw_tag(task
->itt
, sess
->age
);
1471 if (sc
&& sc
->sc_data_direction
== DMA_FROM_DEVICE
) {
1472 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
1473 struct cxgbi_task_tag_info
*ttinfo
= &tdata
->ttinfo
;
1475 scmd_get_params(sc
, &ttinfo
->sgl
, &ttinfo
->nents
,
1477 err
= cxgbi_ddp_reserve(cconn
, tdata
, sw_tag
, tdata
->dlen
);
1481 log_debug(1 << CXGBI_DBG_DDP
,
1482 "csk 0x%p, R task 0x%p, %u,%u, no ddp.\n",
1483 cconn
->cep
->csk
, task
, tdata
->dlen
,
1488 err
= cxgbi_ppm_make_non_ddp_tag(ppm
, sw_tag
, &tag
);
1492 /* the itt need to sent in big-endian order */
1493 *hdr_itt
= (__force itt_t
)htonl(tag
);
1495 log_debug(1 << CXGBI_DBG_DDP
,
1496 "cdev 0x%p, task 0x%p, 0x%x(0x%x,0x%x)->0x%x/0x%x.\n",
1497 cdev
, task
, sw_tag
, task
->itt
, sess
->age
, tag
, *hdr_itt
);
1501 void cxgbi_parse_pdu_itt(struct iscsi_conn
*conn
, itt_t itt
, int *idx
, int *age
)
1503 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1504 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
1505 struct cxgbi_device
*cdev
= cconn
->chba
->cdev
;
1506 struct cxgbi_ppm
*ppm
= cdev
->cdev2ppm(cdev
);
1507 u32 tag
= ntohl((__force u32
)itt
);
1511 if (cxgbi_ppm_is_ddp_tag(ppm
, tag
))
1512 sw_bits
= cxgbi_ppm_get_tag_caller_data(ppm
, tag
);
1514 sw_bits
= cxgbi_ppm_decode_non_ddp_tag(ppm
, tag
);
1519 cxgbi_decode_sw_tag(sw_bits
, idx
, age
);
1520 log_debug(1 << CXGBI_DBG_DDP
,
1521 "cdev 0x%p, tag 0x%x/0x%x, -> 0x%x(0x%x,0x%x).\n",
1522 cdev
, tag
, itt
, sw_bits
, idx
? *idx
: 0xFFFFF,
1525 EXPORT_SYMBOL_GPL(cxgbi_parse_pdu_itt
);
1527 void cxgbi_conn_tx_open(struct cxgbi_sock
*csk
)
1529 struct iscsi_conn
*conn
= csk
->user_data
;
1532 log_debug(1 << CXGBI_DBG_SOCK
,
1533 "csk 0x%p, cid %d.\n", csk
, conn
->id
);
1534 iscsi_conn_queue_work(conn
);
1537 EXPORT_SYMBOL_GPL(cxgbi_conn_tx_open
);
1540 * pdu receive, interact with libiscsi_tcp
1542 static inline int read_pdu_skb(struct iscsi_conn
*conn
,
1543 struct sk_buff
*skb
,
1544 unsigned int offset
,
1550 bytes_read
= iscsi_tcp_recv_skb(conn
, skb
, offset
, offloaded
, &status
);
1552 case ISCSI_TCP_CONN_ERR
:
1553 pr_info("skb 0x%p, off %u, %d, TCP_ERR.\n",
1554 skb
, offset
, offloaded
);
1556 case ISCSI_TCP_SUSPENDED
:
1557 log_debug(1 << CXGBI_DBG_PDU_RX
,
1558 "skb 0x%p, off %u, %d, TCP_SUSPEND, rc %d.\n",
1559 skb
, offset
, offloaded
, bytes_read
);
1560 /* no transfer - just have caller flush queue */
1562 case ISCSI_TCP_SKB_DONE
:
1563 pr_info("skb 0x%p, off %u, %d, TCP_SKB_DONE.\n",
1564 skb
, offset
, offloaded
);
1566 * pdus should always fit in the skb and we should get
1567 * segment done notifcation.
1569 iscsi_conn_printk(KERN_ERR
, conn
, "Invalid pdu or skb.");
1571 case ISCSI_TCP_SEGMENT_DONE
:
1572 log_debug(1 << CXGBI_DBG_PDU_RX
,
1573 "skb 0x%p, off %u, %d, TCP_SEG_DONE, rc %d.\n",
1574 skb
, offset
, offloaded
, bytes_read
);
1577 pr_info("skb 0x%p, off %u, %d, invalid status %d.\n",
1578 skb
, offset
, offloaded
, status
);
1584 skb_read_pdu_bhs(struct cxgbi_sock
*csk
, struct iscsi_conn
*conn
,
1585 struct sk_buff
*skb
)
1587 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1590 log_debug(1 << CXGBI_DBG_PDU_RX
,
1591 "conn 0x%p, skb 0x%p, len %u, flag 0x%lx.\n",
1592 conn
, skb
, skb
->len
, cxgbi_skcb_flags(skb
));
1594 if (!iscsi_tcp_recv_segment_is_hdr(tcp_conn
)) {
1595 pr_info("conn 0x%p, skb 0x%p, not hdr.\n", conn
, skb
);
1596 iscsi_conn_failure(conn
, ISCSI_ERR_PROTO
);
1600 if (conn
->hdrdgst_en
&&
1601 cxgbi_skcb_test_flag(skb
, SKCBF_RX_HCRC_ERR
)) {
1602 pr_info("conn 0x%p, skb 0x%p, hcrc.\n", conn
, skb
);
1603 iscsi_conn_failure(conn
, ISCSI_ERR_HDR_DGST
);
1607 if (cxgbi_skcb_test_flag(skb
, SKCBF_RX_ISCSI_COMPL
) &&
1608 cxgbi_skcb_test_flag(skb
, SKCBF_RX_DATA_DDPD
)) {
1609 /* If completion flag is set and data is directly
1610 * placed in to the host memory then update
1611 * task->exp_datasn to the datasn in completion
1612 * iSCSI hdr as T6 adapter generates completion only
1613 * for the last pdu of a sequence.
1615 itt_t itt
= ((struct iscsi_data
*)skb
->data
)->itt
;
1616 struct iscsi_task
*task
= iscsi_itt_to_ctask(conn
, itt
);
1617 u32 data_sn
= be32_to_cpu(((struct iscsi_data
*)
1618 skb
->data
)->datasn
);
1619 if (task
&& task
->sc
) {
1620 struct iscsi_tcp_task
*tcp_task
= task
->dd_data
;
1622 tcp_task
->exp_datasn
= data_sn
;
1626 err
= read_pdu_skb(conn
, skb
, 0, 0);
1627 if (likely(err
>= 0)) {
1628 struct iscsi_hdr
*hdr
= (struct iscsi_hdr
*)skb
->data
;
1629 u8 opcode
= hdr
->opcode
& ISCSI_OPCODE_MASK
;
1631 if (unlikely(opcode
== ISCSI_OP_LOGOUT_RSP
))
1632 cxgbi_sock_set_flag(csk
, CTPF_LOGOUT_RSP_RCVD
);
1638 static int skb_read_pdu_data(struct iscsi_conn
*conn
, struct sk_buff
*lskb
,
1639 struct sk_buff
*skb
, unsigned int offset
)
1641 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
1643 int opcode
= tcp_conn
->in
.hdr
->opcode
& ISCSI_OPCODE_MASK
;
1645 log_debug(1 << CXGBI_DBG_PDU_RX
,
1646 "conn 0x%p, skb 0x%p, len %u, flag 0x%lx.\n",
1647 conn
, skb
, skb
->len
, cxgbi_skcb_flags(skb
));
1649 if (conn
->datadgst_en
&&
1650 cxgbi_skcb_test_flag(lskb
, SKCBF_RX_DCRC_ERR
)) {
1651 pr_info("conn 0x%p, skb 0x%p, dcrc 0x%lx.\n",
1652 conn
, lskb
, cxgbi_skcb_flags(lskb
));
1653 iscsi_conn_failure(conn
, ISCSI_ERR_DATA_DGST
);
1657 if (iscsi_tcp_recv_segment_is_hdr(tcp_conn
))
1660 /* coalesced, add header digest length */
1661 if (lskb
== skb
&& conn
->hdrdgst_en
)
1662 offset
+= ISCSI_DIGEST_SIZE
;
1664 if (cxgbi_skcb_test_flag(lskb
, SKCBF_RX_DATA_DDPD
))
1667 if (opcode
== ISCSI_OP_SCSI_DATA_IN
)
1668 log_debug(1 << CXGBI_DBG_PDU_RX
,
1669 "skb 0x%p, op 0x%x, itt 0x%x, %u %s ddp'ed.\n",
1670 skb
, opcode
, ntohl(tcp_conn
->in
.hdr
->itt
),
1671 tcp_conn
->in
.datalen
, offloaded
? "is" : "not");
1673 return read_pdu_skb(conn
, skb
, offset
, offloaded
);
1676 static void csk_return_rx_credits(struct cxgbi_sock
*csk
, int copied
)
1678 struct cxgbi_device
*cdev
= csk
->cdev
;
1682 log_debug(1 << CXGBI_DBG_PDU_RX
,
1683 "csk 0x%p,%u,0x%lx,%u, seq %u, wup %u, thre %u, %u.\n",
1684 csk
, csk
->state
, csk
->flags
, csk
->tid
, csk
->copied_seq
,
1685 csk
->rcv_wup
, cdev
->rx_credit_thres
,
1688 if (!cdev
->rx_credit_thres
)
1691 if (csk
->state
!= CTP_ESTABLISHED
)
1694 credits
= csk
->copied_seq
- csk
->rcv_wup
;
1695 if (unlikely(!credits
))
1697 must_send
= credits
+ 16384 >= csk
->rcv_win
;
1698 if (must_send
|| credits
>= cdev
->rx_credit_thres
)
1699 csk
->rcv_wup
+= cdev
->csk_send_rx_credits(csk
, credits
);
1702 void cxgbi_conn_pdu_ready(struct cxgbi_sock
*csk
)
1704 struct cxgbi_device
*cdev
= csk
->cdev
;
1705 struct iscsi_conn
*conn
= csk
->user_data
;
1706 struct sk_buff
*skb
;
1707 unsigned int read
= 0;
1710 log_debug(1 << CXGBI_DBG_PDU_RX
,
1711 "csk 0x%p, conn 0x%p.\n", csk
, conn
);
1713 if (unlikely(!conn
|| conn
->suspend_rx
)) {
1714 log_debug(1 << CXGBI_DBG_PDU_RX
,
1715 "csk 0x%p, conn 0x%p, id %d, suspend_rx %lu!\n",
1716 csk
, conn
, conn
? conn
->id
: 0xFF,
1717 conn
? conn
->suspend_rx
: 0xFF);
1722 skb
= skb_peek(&csk
->receive_queue
);
1724 !(cxgbi_skcb_test_flag(skb
, SKCBF_RX_STATUS
))) {
1726 log_debug(1 << CXGBI_DBG_PDU_RX
,
1727 "skb 0x%p, NOT ready 0x%lx.\n",
1728 skb
, cxgbi_skcb_flags(skb
));
1731 __skb_unlink(skb
, &csk
->receive_queue
);
1733 read
+= cxgbi_skcb_rx_pdulen(skb
);
1734 log_debug(1 << CXGBI_DBG_PDU_RX
,
1735 "csk 0x%p, skb 0x%p,%u,f 0x%lx, pdu len %u.\n",
1736 csk
, skb
, skb
->len
, cxgbi_skcb_flags(skb
),
1737 cxgbi_skcb_rx_pdulen(skb
));
1739 if (cxgbi_skcb_test_flag(skb
, SKCBF_RX_COALESCED
)) {
1740 err
= skb_read_pdu_bhs(csk
, conn
, skb
);
1742 pr_err("coalesced bhs, csk 0x%p, skb 0x%p,%u, "
1743 "f 0x%lx, plen %u.\n",
1745 cxgbi_skcb_flags(skb
),
1746 cxgbi_skcb_rx_pdulen(skb
));
1749 err
= skb_read_pdu_data(conn
, skb
, skb
,
1750 err
+ cdev
->skb_rx_extra
);
1752 pr_err("coalesced data, csk 0x%p, skb 0x%p,%u, "
1753 "f 0x%lx, plen %u.\n",
1755 cxgbi_skcb_flags(skb
),
1756 cxgbi_skcb_rx_pdulen(skb
));
1758 err
= skb_read_pdu_bhs(csk
, conn
, skb
);
1760 pr_err("bhs, csk 0x%p, skb 0x%p,%u, "
1761 "f 0x%lx, plen %u.\n",
1763 cxgbi_skcb_flags(skb
),
1764 cxgbi_skcb_rx_pdulen(skb
));
1768 if (cxgbi_skcb_test_flag(skb
, SKCBF_RX_DATA
)) {
1769 struct sk_buff
*dskb
;
1771 dskb
= skb_peek(&csk
->receive_queue
);
1773 pr_err("csk 0x%p, skb 0x%p,%u, f 0x%lx,"
1774 " plen %u, NO data.\n",
1776 cxgbi_skcb_flags(skb
),
1777 cxgbi_skcb_rx_pdulen(skb
));
1781 __skb_unlink(dskb
, &csk
->receive_queue
);
1783 err
= skb_read_pdu_data(conn
, skb
, dskb
, 0);
1785 pr_err("data, csk 0x%p, skb 0x%p,%u, "
1786 "f 0x%lx, plen %u, dskb 0x%p,"
1789 cxgbi_skcb_flags(skb
),
1790 cxgbi_skcb_rx_pdulen(skb
),
1794 err
= skb_read_pdu_data(conn
, skb
, skb
, 0);
1803 log_debug(1 << CXGBI_DBG_PDU_RX
, "csk 0x%p, read %u.\n", csk
, read
);
1805 csk
->copied_seq
+= read
;
1806 csk_return_rx_credits(csk
, read
);
1807 conn
->rxdata_octets
+= read
;
1811 pr_info("csk 0x%p, 0x%p, rx failed %d, read %u.\n",
1812 csk
, conn
, err
, read
);
1813 iscsi_conn_failure(conn
, ISCSI_ERR_CONN_FAILED
);
1816 EXPORT_SYMBOL_GPL(cxgbi_conn_pdu_ready
);
1818 static int sgl_seek_offset(struct scatterlist
*sgl
, unsigned int sgcnt
,
1819 unsigned int offset
, unsigned int *off
,
1820 struct scatterlist
**sgp
)
1823 struct scatterlist
*sg
;
1825 for_each_sg(sgl
, sg
, sgcnt
, i
) {
1826 if (offset
< sg
->length
) {
1831 offset
-= sg
->length
;
1836 static int sgl_read_to_frags(struct scatterlist
*sg
, unsigned int sgoffset
,
1837 unsigned int dlen
, struct page_frag
*frags
,
1840 unsigned int datalen
= dlen
;
1841 unsigned int sglen
= sg
->length
- sgoffset
;
1842 struct page
*page
= sg_page(sg
);
1852 pr_warn("sg %d NULL, len %u/%u.\n",
1861 copy
= min(datalen
, sglen
);
1862 if (i
&& page
== frags
[i
- 1].page
&&
1863 sgoffset
+ sg
->offset
==
1864 frags
[i
- 1].offset
+ frags
[i
- 1].size
) {
1865 frags
[i
- 1].size
+= copy
;
1867 if (i
>= frag_max
) {
1868 pr_warn("too many pages %u, dlen %u.\n",
1873 frags
[i
].page
= page
;
1874 frags
[i
].offset
= sg
->offset
+ sgoffset
;
1875 frags
[i
].size
= copy
;
1886 int cxgbi_conn_alloc_pdu(struct iscsi_task
*task
, u8 opcode
)
1888 struct iscsi_tcp_conn
*tcp_conn
= task
->conn
->dd_data
;
1889 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
1890 struct cxgbi_device
*cdev
= cconn
->chba
->cdev
;
1891 struct iscsi_conn
*conn
= task
->conn
;
1892 struct iscsi_tcp_task
*tcp_task
= task
->dd_data
;
1893 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
1894 struct scsi_cmnd
*sc
= task
->sc
;
1895 struct cxgbi_sock
*csk
= cconn
->cep
->csk
;
1896 struct net_device
*ndev
= cdev
->ports
[csk
->port_id
];
1897 int headroom
= SKB_TX_ISCSI_PDU_HEADER_MAX
;
1899 tcp_task
->dd_data
= tdata
;
1902 if (SKB_MAX_HEAD(cdev
->skb_tx_rsvd
) > (512 * MAX_SKB_FRAGS
) &&
1903 (opcode
== ISCSI_OP_SCSI_DATA_OUT
||
1904 (opcode
== ISCSI_OP_SCSI_CMD
&&
1905 sc
->sc_data_direction
== DMA_TO_DEVICE
)))
1906 /* data could goes into skb head */
1907 headroom
+= min_t(unsigned int,
1908 SKB_MAX_HEAD(cdev
->skb_tx_rsvd
),
1909 conn
->max_xmit_dlength
);
1911 tdata
->skb
= alloc_skb(cdev
->skb_tx_rsvd
+ headroom
, GFP_ATOMIC
);
1913 ndev
->stats
.tx_dropped
++;
1917 skb_reserve(tdata
->skb
, cdev
->skb_tx_rsvd
);
1920 task
->hdr
= (struct iscsi_hdr
*)tdata
->skb
->data
;
1922 task
->hdr
= kzalloc(SKB_TX_ISCSI_PDU_HEADER_MAX
, GFP_ATOMIC
);
1924 __kfree_skb(tdata
->skb
);
1926 ndev
->stats
.tx_dropped
++;
1930 task
->hdr_max
= SKB_TX_ISCSI_PDU_HEADER_MAX
; /* BHS + AHS */
1932 /* data_out uses scsi_cmd's itt */
1933 if (opcode
!= ISCSI_OP_SCSI_DATA_OUT
)
1934 task_reserve_itt(task
, &task
->hdr
->itt
);
1936 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_PDU_TX
,
1937 "task 0x%p, op 0x%x, skb 0x%p,%u+%u/%u, itt 0x%x.\n",
1938 task
, opcode
, tdata
->skb
, cdev
->skb_tx_rsvd
, headroom
,
1939 conn
->max_xmit_dlength
, ntohl(task
->hdr
->itt
));
1943 EXPORT_SYMBOL_GPL(cxgbi_conn_alloc_pdu
);
1945 static inline void tx_skb_setmode(struct sk_buff
*skb
, int hcrc
, int dcrc
)
1954 cxgbi_skcb_ulp_mode(skb
) = (ULP2_MODE_ISCSI
<< 4) | submode
;
1956 cxgbi_skcb_ulp_mode(skb
) = 0;
1959 int cxgbi_conn_init_pdu(struct iscsi_task
*task
, unsigned int offset
,
1962 struct iscsi_conn
*conn
= task
->conn
;
1963 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
1964 struct sk_buff
*skb
= tdata
->skb
;
1965 unsigned int datalen
= count
;
1966 int i
, padlen
= iscsi_padding(count
);
1969 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_PDU_TX
,
1970 "task 0x%p,0x%p, skb 0x%p, 0x%x,0x%x,0x%x, %u+%u.\n",
1971 task
, task
->sc
, skb
, (*skb
->data
) & ISCSI_OPCODE_MASK
,
1972 ntohl(task
->cmdsn
), ntohl(task
->hdr
->itt
), offset
, count
);
1974 skb_put(skb
, task
->hdr_len
);
1975 tx_skb_setmode(skb
, conn
->hdrdgst_en
, datalen
? conn
->datadgst_en
: 0);
1980 struct scsi_data_buffer
*sdb
= &task
->sc
->sdb
;
1981 struct scatterlist
*sg
= NULL
;
1984 tdata
->offset
= offset
;
1985 tdata
->count
= count
;
1986 err
= sgl_seek_offset(
1987 sdb
->table
.sgl
, sdb
->table
.nents
,
1988 tdata
->offset
, &tdata
->sgoffset
, &sg
);
1990 pr_warn("tpdu, sgl %u, bad offset %u/%u.\n",
1991 sdb
->table
.nents
, tdata
->offset
, sdb
->length
);
1994 err
= sgl_read_to_frags(sg
, tdata
->sgoffset
, tdata
->count
,
1995 tdata
->frags
, MAX_PDU_FRAGS
);
1997 pr_warn("tpdu, sgl %u, bad offset %u + %u.\n",
1998 sdb
->table
.nents
, tdata
->offset
, tdata
->count
);
2001 tdata
->nr_frags
= err
;
2003 if (tdata
->nr_frags
> MAX_SKB_FRAGS
||
2004 (padlen
&& tdata
->nr_frags
== MAX_SKB_FRAGS
)) {
2005 char *dst
= skb
->data
+ task
->hdr_len
;
2006 struct page_frag
*frag
= tdata
->frags
;
2008 /* data fits in the skb's headroom */
2009 for (i
= 0; i
< tdata
->nr_frags
; i
++, frag
++) {
2010 char *src
= kmap_atomic(frag
->page
);
2012 memcpy(dst
, src
+frag
->offset
, frag
->size
);
2017 memset(dst
, 0, padlen
);
2020 skb_put(skb
, count
+ padlen
);
2022 /* data fit into frag_list */
2023 for (i
= 0; i
< tdata
->nr_frags
; i
++) {
2024 __skb_fill_page_desc(skb
, i
,
2025 tdata
->frags
[i
].page
,
2026 tdata
->frags
[i
].offset
,
2027 tdata
->frags
[i
].size
);
2028 skb_frag_ref(skb
, i
);
2030 skb_shinfo(skb
)->nr_frags
= tdata
->nr_frags
;
2032 skb
->data_len
+= count
;
2033 skb
->truesize
+= count
;
2037 pg
= virt_to_page(task
->data
);
2040 skb_fill_page_desc(skb
, 0, pg
, offset_in_page(task
->data
),
2043 skb
->data_len
+= count
;
2044 skb
->truesize
+= count
;
2048 i
= skb_shinfo(skb
)->nr_frags
;
2049 skb_fill_page_desc(skb
, skb_shinfo(skb
)->nr_frags
,
2050 virt_to_page(padding
), offset_in_page(padding
),
2053 skb
->data_len
+= padlen
;
2054 skb
->truesize
+= padlen
;
2060 EXPORT_SYMBOL_GPL(cxgbi_conn_init_pdu
);
2062 int cxgbi_conn_xmit_pdu(struct iscsi_task
*task
)
2064 struct iscsi_tcp_conn
*tcp_conn
= task
->conn
->dd_data
;
2065 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
2066 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
2067 struct cxgbi_task_tag_info
*ttinfo
= &tdata
->ttinfo
;
2068 struct sk_buff
*skb
= tdata
->skb
;
2069 struct cxgbi_sock
*csk
= NULL
;
2070 unsigned int datalen
;
2074 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_PDU_TX
,
2075 "task 0x%p\n", task
);
2079 if (cconn
&& cconn
->cep
)
2080 csk
= cconn
->cep
->csk
;
2082 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_PDU_TX
,
2083 "task 0x%p, csk gone.\n", task
);
2088 datalen
= skb
->data_len
;
2090 /* write ppod first if using ofldq to write ppod */
2091 if (ttinfo
->flags
& CXGBI_PPOD_INFO_FLAG_VALID
) {
2092 struct cxgbi_ppm
*ppm
= csk
->cdev
->cdev2ppm(csk
->cdev
);
2094 ttinfo
->flags
&= ~CXGBI_PPOD_INFO_FLAG_VALID
;
2095 if (csk
->cdev
->csk_ddp_set_map(ppm
, csk
, ttinfo
) < 0)
2096 pr_err("task 0x%p, ppod writing using ofldq failed.\n",
2098 /* continue. Let fl get the data */
2102 memcpy(skb
->data
, task
->hdr
, SKB_TX_ISCSI_PDU_HEADER_MAX
);
2104 err
= cxgbi_sock_send_pdus(cconn
->cep
->csk
, skb
);
2108 log_debug(1 << CXGBI_DBG_PDU_TX
,
2109 "task 0x%p,0x%p, skb 0x%p, len %u/%u, rv %d.\n",
2110 task
, task
->sc
, skb
, skb
->len
, skb
->data_len
, err
);
2112 if (task
->conn
->hdrdgst_en
)
2113 pdulen
+= ISCSI_DIGEST_SIZE
;
2115 if (datalen
&& task
->conn
->datadgst_en
)
2116 pdulen
+= ISCSI_DIGEST_SIZE
;
2118 task
->conn
->txdata_octets
+= pdulen
;
2122 if (err
== -EAGAIN
|| err
== -ENOBUFS
) {
2123 log_debug(1 << CXGBI_DBG_PDU_TX
,
2124 "task 0x%p, skb 0x%p, len %u/%u, %d EAGAIN.\n",
2125 task
, skb
, skb
->len
, skb
->data_len
, err
);
2126 /* reset skb to send when we are called again */
2131 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_PDU_TX
,
2132 "itt 0x%x, skb 0x%p, len %u/%u, xmit err %d.\n",
2133 task
->itt
, skb
, skb
->len
, skb
->data_len
, err
);
2137 iscsi_conn_printk(KERN_ERR
, task
->conn
, "xmit err %d.\n", err
);
2138 iscsi_conn_failure(task
->conn
, ISCSI_ERR_XMIT_FAILED
);
2141 EXPORT_SYMBOL_GPL(cxgbi_conn_xmit_pdu
);
2143 void cxgbi_cleanup_task(struct iscsi_task
*task
)
2145 struct iscsi_tcp_task
*tcp_task
= task
->dd_data
;
2146 struct cxgbi_task_data
*tdata
= iscsi_task_cxgbi_data(task
);
2148 if (!tcp_task
|| !tdata
|| (tcp_task
->dd_data
!= tdata
)) {
2149 pr_info("task 0x%p,0x%p, tcp_task 0x%p, tdata 0x%p/0x%p.\n",
2150 task
, task
->sc
, tcp_task
,
2151 tcp_task
? tcp_task
->dd_data
: NULL
, tdata
);
2155 log_debug(1 << CXGBI_DBG_ISCSI
,
2156 "task 0x%p, skb 0x%p, itt 0x%x.\n",
2157 task
, tdata
->skb
, task
->hdr_itt
);
2159 tcp_task
->dd_data
= NULL
;
2165 /* never reached the xmit task callout */
2167 __kfree_skb(tdata
->skb
);
2171 task_release_itt(task
, task
->hdr_itt
);
2172 memset(tdata
, 0, sizeof(*tdata
));
2174 iscsi_tcp_cleanup_task(task
);
2176 EXPORT_SYMBOL_GPL(cxgbi_cleanup_task
);
2178 void cxgbi_get_conn_stats(struct iscsi_cls_conn
*cls_conn
,
2179 struct iscsi_stats
*stats
)
2181 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2183 stats
->txdata_octets
= conn
->txdata_octets
;
2184 stats
->rxdata_octets
= conn
->rxdata_octets
;
2185 stats
->scsicmd_pdus
= conn
->scsicmd_pdus_cnt
;
2186 stats
->dataout_pdus
= conn
->dataout_pdus_cnt
;
2187 stats
->scsirsp_pdus
= conn
->scsirsp_pdus_cnt
;
2188 stats
->datain_pdus
= conn
->datain_pdus_cnt
;
2189 stats
->r2t_pdus
= conn
->r2t_pdus_cnt
;
2190 stats
->tmfcmd_pdus
= conn
->tmfcmd_pdus_cnt
;
2191 stats
->tmfrsp_pdus
= conn
->tmfrsp_pdus_cnt
;
2192 stats
->digest_err
= 0;
2193 stats
->timeout_err
= 0;
2194 stats
->custom_length
= 1;
2195 strcpy(stats
->custom
[0].desc
, "eh_abort_cnt");
2196 stats
->custom
[0].value
= conn
->eh_abort_cnt
;
2198 EXPORT_SYMBOL_GPL(cxgbi_get_conn_stats
);
2200 static int cxgbi_conn_max_xmit_dlength(struct iscsi_conn
*conn
)
2202 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2203 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
2204 struct cxgbi_device
*cdev
= cconn
->chba
->cdev
;
2205 unsigned int headroom
= SKB_MAX_HEAD(cdev
->skb_tx_rsvd
);
2206 unsigned int max_def
= 512 * MAX_SKB_FRAGS
;
2207 unsigned int max
= max(max_def
, headroom
);
2209 max
= min(cconn
->chba
->cdev
->tx_max_size
, max
);
2210 if (conn
->max_xmit_dlength
)
2211 conn
->max_xmit_dlength
= min(conn
->max_xmit_dlength
, max
);
2213 conn
->max_xmit_dlength
= max
;
2214 cxgbi_align_pdu_size(conn
->max_xmit_dlength
);
2219 static int cxgbi_conn_max_recv_dlength(struct iscsi_conn
*conn
)
2221 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2222 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
2223 unsigned int max
= cconn
->chba
->cdev
->rx_max_size
;
2225 cxgbi_align_pdu_size(max
);
2227 if (conn
->max_recv_dlength
) {
2228 if (conn
->max_recv_dlength
> max
) {
2229 pr_err("MaxRecvDataSegmentLength %u > %u.\n",
2230 conn
->max_recv_dlength
, max
);
2233 conn
->max_recv_dlength
= min(conn
->max_recv_dlength
, max
);
2234 cxgbi_align_pdu_size(conn
->max_recv_dlength
);
2236 conn
->max_recv_dlength
= max
;
2241 int cxgbi_set_conn_param(struct iscsi_cls_conn
*cls_conn
,
2242 enum iscsi_param param
, char *buf
, int buflen
)
2244 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2245 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2246 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
2247 struct cxgbi_sock
*csk
= cconn
->cep
->csk
;
2250 log_debug(1 << CXGBI_DBG_ISCSI
,
2251 "cls_conn 0x%p, param %d, buf(%d) %s.\n",
2252 cls_conn
, param
, buflen
, buf
);
2255 case ISCSI_PARAM_HDRDGST_EN
:
2256 err
= iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2257 if (!err
&& conn
->hdrdgst_en
)
2258 err
= csk
->cdev
->csk_ddp_setup_digest(csk
, csk
->tid
,
2262 case ISCSI_PARAM_DATADGST_EN
:
2263 err
= iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2264 if (!err
&& conn
->datadgst_en
)
2265 err
= csk
->cdev
->csk_ddp_setup_digest(csk
, csk
->tid
,
2269 case ISCSI_PARAM_MAX_R2T
:
2270 return iscsi_tcp_set_max_r2t(conn
, buf
);
2271 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
2272 err
= iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2274 err
= cxgbi_conn_max_recv_dlength(conn
);
2276 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
2277 err
= iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2279 err
= cxgbi_conn_max_xmit_dlength(conn
);
2282 return iscsi_set_param(cls_conn
, param
, buf
, buflen
);
2286 EXPORT_SYMBOL_GPL(cxgbi_set_conn_param
);
2288 int cxgbi_get_ep_param(struct iscsi_endpoint
*ep
, enum iscsi_param param
,
2291 struct cxgbi_endpoint
*cep
= ep
->dd_data
;
2292 struct cxgbi_sock
*csk
;
2294 log_debug(1 << CXGBI_DBG_ISCSI
,
2295 "cls_conn 0x%p, param %d.\n", ep
, param
);
2298 case ISCSI_PARAM_CONN_PORT
:
2299 case ISCSI_PARAM_CONN_ADDRESS
:
2307 return iscsi_conn_get_addr_param((struct sockaddr_storage
*)
2308 &csk
->daddr
, param
, buf
);
2314 EXPORT_SYMBOL_GPL(cxgbi_get_ep_param
);
2316 struct iscsi_cls_conn
*
2317 cxgbi_create_conn(struct iscsi_cls_session
*cls_session
, u32 cid
)
2319 struct iscsi_cls_conn
*cls_conn
;
2320 struct iscsi_conn
*conn
;
2321 struct iscsi_tcp_conn
*tcp_conn
;
2322 struct cxgbi_conn
*cconn
;
2324 cls_conn
= iscsi_tcp_conn_setup(cls_session
, sizeof(*cconn
), cid
);
2328 conn
= cls_conn
->dd_data
;
2329 tcp_conn
= conn
->dd_data
;
2330 cconn
= tcp_conn
->dd_data
;
2331 cconn
->iconn
= conn
;
2333 log_debug(1 << CXGBI_DBG_ISCSI
,
2334 "cid %u(0x%x), cls 0x%p,0x%p, conn 0x%p,0x%p,0x%p.\n",
2335 cid
, cid
, cls_session
, cls_conn
, conn
, tcp_conn
, cconn
);
2339 EXPORT_SYMBOL_GPL(cxgbi_create_conn
);
2341 int cxgbi_bind_conn(struct iscsi_cls_session
*cls_session
,
2342 struct iscsi_cls_conn
*cls_conn
,
2343 u64 transport_eph
, int is_leading
)
2345 struct iscsi_conn
*conn
= cls_conn
->dd_data
;
2346 struct iscsi_tcp_conn
*tcp_conn
= conn
->dd_data
;
2347 struct cxgbi_conn
*cconn
= tcp_conn
->dd_data
;
2348 struct cxgbi_ppm
*ppm
;
2349 struct iscsi_endpoint
*ep
;
2350 struct cxgbi_endpoint
*cep
;
2351 struct cxgbi_sock
*csk
;
2354 ep
= iscsi_lookup_endpoint(transport_eph
);
2358 /* setup ddp pagesize */
2362 ppm
= csk
->cdev
->cdev2ppm(csk
->cdev
);
2363 err
= csk
->cdev
->csk_ddp_setup_pgidx(csk
, csk
->tid
,
2364 ppm
->tformat
.pgsz_idx_dflt
);
2368 err
= iscsi_conn_bind(cls_session
, cls_conn
, is_leading
);
2372 /* calculate the tag idx bits needed for this conn based on cmds_max */
2373 cconn
->task_idx_bits
= (__ilog2_u32(conn
->session
->cmds_max
- 1)) + 1;
2375 write_lock_bh(&csk
->callback_lock
);
2376 csk
->user_data
= conn
;
2377 cconn
->chba
= cep
->chba
;
2380 write_unlock_bh(&csk
->callback_lock
);
2382 cxgbi_conn_max_xmit_dlength(conn
);
2383 cxgbi_conn_max_recv_dlength(conn
);
2385 log_debug(1 << CXGBI_DBG_ISCSI
,
2386 "cls 0x%p,0x%p, ep 0x%p, cconn 0x%p, csk 0x%p.\n",
2387 cls_session
, cls_conn
, ep
, cconn
, csk
);
2388 /* init recv engine */
2389 iscsi_tcp_hdr_recv_prep(tcp_conn
);
2393 EXPORT_SYMBOL_GPL(cxgbi_bind_conn
);
2395 struct iscsi_cls_session
*cxgbi_create_session(struct iscsi_endpoint
*ep
,
2396 u16 cmds_max
, u16 qdepth
,
2399 struct cxgbi_endpoint
*cep
;
2400 struct cxgbi_hba
*chba
;
2401 struct Scsi_Host
*shost
;
2402 struct iscsi_cls_session
*cls_session
;
2403 struct iscsi_session
*session
;
2406 pr_err("missing endpoint.\n");
2412 shost
= chba
->shost
;
2414 BUG_ON(chba
!= iscsi_host_priv(shost
));
2416 cls_session
= iscsi_session_setup(chba
->cdev
->itp
, shost
,
2418 sizeof(struct iscsi_tcp_task
) +
2419 sizeof(struct cxgbi_task_data
),
2420 initial_cmdsn
, ISCSI_MAX_TARGET
);
2424 session
= cls_session
->dd_data
;
2425 if (iscsi_tcp_r2tpool_alloc(session
))
2426 goto remove_session
;
2428 log_debug(1 << CXGBI_DBG_ISCSI
,
2429 "ep 0x%p, cls sess 0x%p.\n", ep
, cls_session
);
2433 iscsi_session_teardown(cls_session
);
2436 EXPORT_SYMBOL_GPL(cxgbi_create_session
);
2438 void cxgbi_destroy_session(struct iscsi_cls_session
*cls_session
)
2440 log_debug(1 << CXGBI_DBG_ISCSI
,
2441 "cls sess 0x%p.\n", cls_session
);
2443 iscsi_tcp_r2tpool_free(cls_session
->dd_data
);
2444 iscsi_session_teardown(cls_session
);
2446 EXPORT_SYMBOL_GPL(cxgbi_destroy_session
);
2448 int cxgbi_set_host_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
2449 char *buf
, int buflen
)
2451 struct cxgbi_hba
*chba
= iscsi_host_priv(shost
);
2454 shost_printk(KERN_ERR
, shost
, "Could not get host param. "
2455 "netdev for host not set.\n");
2459 log_debug(1 << CXGBI_DBG_ISCSI
,
2460 "shost 0x%p, hba 0x%p,%s, param %d, buf(%d) %s.\n",
2461 shost
, chba
, chba
->ndev
->name
, param
, buflen
, buf
);
2464 case ISCSI_HOST_PARAM_IPADDRESS
:
2466 __be32 addr
= in_aton(buf
);
2467 log_debug(1 << CXGBI_DBG_ISCSI
,
2468 "hba %s, req. ipv4 %pI4.\n", chba
->ndev
->name
, &addr
);
2469 cxgbi_set_iscsi_ipv4(chba
, addr
);
2472 case ISCSI_HOST_PARAM_HWADDRESS
:
2473 case ISCSI_HOST_PARAM_NETDEV_NAME
:
2476 return iscsi_host_set_param(shost
, param
, buf
, buflen
);
2479 EXPORT_SYMBOL_GPL(cxgbi_set_host_param
);
2481 int cxgbi_get_host_param(struct Scsi_Host
*shost
, enum iscsi_host_param param
,
2484 struct cxgbi_hba
*chba
= iscsi_host_priv(shost
);
2488 shost_printk(KERN_ERR
, shost
, "Could not get host param. "
2489 "netdev for host not set.\n");
2493 log_debug(1 << CXGBI_DBG_ISCSI
,
2494 "shost 0x%p, hba 0x%p,%s, param %d.\n",
2495 shost
, chba
, chba
->ndev
->name
, param
);
2498 case ISCSI_HOST_PARAM_HWADDRESS
:
2499 len
= sysfs_format_mac(buf
, chba
->ndev
->dev_addr
, 6);
2501 case ISCSI_HOST_PARAM_NETDEV_NAME
:
2502 len
= sprintf(buf
, "%s\n", chba
->ndev
->name
);
2504 case ISCSI_HOST_PARAM_IPADDRESS
:
2506 struct cxgbi_sock
*csk
= find_sock_on_port(chba
->cdev
,
2509 len
= sprintf(buf
, "%pIS",
2510 (struct sockaddr
*)&csk
->saddr
);
2512 log_debug(1 << CXGBI_DBG_ISCSI
,
2513 "hba %s, addr %s.\n", chba
->ndev
->name
, buf
);
2517 return iscsi_host_get_param(shost
, param
, buf
);
2522 EXPORT_SYMBOL_GPL(cxgbi_get_host_param
);
2524 struct iscsi_endpoint
*cxgbi_ep_connect(struct Scsi_Host
*shost
,
2525 struct sockaddr
*dst_addr
,
2528 struct iscsi_endpoint
*ep
;
2529 struct cxgbi_endpoint
*cep
;
2530 struct cxgbi_hba
*hba
= NULL
;
2531 struct cxgbi_sock
*csk
;
2535 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_SOCK
,
2536 "shost 0x%p, non_blocking %d, dst_addr 0x%p.\n",
2537 shost
, non_blocking
, dst_addr
);
2540 hba
= iscsi_host_priv(shost
);
2542 pr_info("shost 0x%p, priv NULL.\n", shost
);
2548 if (dst_addr
->sa_family
== AF_INET
) {
2549 csk
= cxgbi_check_route(dst_addr
, ifindex
);
2550 #if IS_ENABLED(CONFIG_IPV6)
2551 } else if (dst_addr
->sa_family
== AF_INET6
) {
2552 csk
= cxgbi_check_route6(dst_addr
, ifindex
);
2555 pr_info("address family 0x%x NOT supported.\n",
2556 dst_addr
->sa_family
);
2557 err
= -EAFNOSUPPORT
;
2558 return (struct iscsi_endpoint
*)ERR_PTR(err
);
2562 return (struct iscsi_endpoint
*)csk
;
2563 cxgbi_sock_get(csk
);
2566 hba
= csk
->cdev
->hbas
[csk
->port_id
];
2567 else if (hba
!= csk
->cdev
->hbas
[csk
->port_id
]) {
2568 if (ifindex
!= hba
->ndev
->ifindex
) {
2569 cxgbi_sock_put(csk
);
2570 cxgbi_sock_closed(csk
);
2571 ifindex
= hba
->ndev
->ifindex
;
2575 pr_info("Could not connect through requested host %u"
2576 "hba 0x%p != 0x%p (%u).\n",
2577 shost
->host_no
, hba
,
2578 csk
->cdev
->hbas
[csk
->port_id
], csk
->port_id
);
2583 err
= sock_get_port(csk
);
2587 cxgbi_sock_set_state(csk
, CTP_CONNECTING
);
2588 err
= csk
->cdev
->csk_init_act_open(csk
);
2592 if (cxgbi_sock_is_closing(csk
)) {
2594 pr_info("csk 0x%p is closing.\n", csk
);
2598 ep
= iscsi_create_endpoint(sizeof(*cep
));
2601 pr_info("iscsi alloc ep, OOM.\n");
2609 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_SOCK
,
2610 "ep 0x%p, cep 0x%p, csk 0x%p, hba 0x%p,%s.\n",
2611 ep
, cep
, csk
, hba
, hba
->ndev
->name
);
2615 cxgbi_sock_put(csk
);
2616 cxgbi_sock_closed(csk
);
2618 return ERR_PTR(err
);
2620 EXPORT_SYMBOL_GPL(cxgbi_ep_connect
);
2622 int cxgbi_ep_poll(struct iscsi_endpoint
*ep
, int timeout_ms
)
2624 struct cxgbi_endpoint
*cep
= ep
->dd_data
;
2625 struct cxgbi_sock
*csk
= cep
->csk
;
2627 if (!cxgbi_sock_is_established(csk
))
2631 EXPORT_SYMBOL_GPL(cxgbi_ep_poll
);
2633 void cxgbi_ep_disconnect(struct iscsi_endpoint
*ep
)
2635 struct cxgbi_endpoint
*cep
= ep
->dd_data
;
2636 struct cxgbi_conn
*cconn
= cep
->cconn
;
2637 struct cxgbi_sock
*csk
= cep
->csk
;
2639 log_debug(1 << CXGBI_DBG_ISCSI
| 1 << CXGBI_DBG_SOCK
,
2640 "ep 0x%p, cep 0x%p, cconn 0x%p, csk 0x%p,%u,0x%lx.\n",
2641 ep
, cep
, cconn
, csk
, csk
->state
, csk
->flags
);
2643 if (cconn
&& cconn
->iconn
) {
2644 iscsi_suspend_tx(cconn
->iconn
);
2645 write_lock_bh(&csk
->callback_lock
);
2646 cep
->csk
->user_data
= NULL
;
2648 write_unlock_bh(&csk
->callback_lock
);
2650 iscsi_destroy_endpoint(ep
);
2652 if (likely(csk
->state
>= CTP_ESTABLISHED
))
2653 need_active_close(csk
);
2655 cxgbi_sock_closed(csk
);
2657 cxgbi_sock_put(csk
);
2659 EXPORT_SYMBOL_GPL(cxgbi_ep_disconnect
);
2661 int cxgbi_iscsi_init(struct iscsi_transport
*itp
,
2662 struct scsi_transport_template
**stt
)
2664 *stt
= iscsi_register_transport(itp
);
2666 pr_err("unable to register %s transport 0x%p.\n",
2670 log_debug(1 << CXGBI_DBG_ISCSI
,
2671 "%s, registered iscsi transport 0x%p.\n",
2675 EXPORT_SYMBOL_GPL(cxgbi_iscsi_init
);
2677 void cxgbi_iscsi_cleanup(struct iscsi_transport
*itp
,
2678 struct scsi_transport_template
**stt
)
2681 log_debug(1 << CXGBI_DBG_ISCSI
,
2682 "de-register transport 0x%p, %s, stt 0x%p.\n",
2683 itp
, itp
->name
, *stt
);
2685 iscsi_unregister_transport(itp
);
2688 EXPORT_SYMBOL_GPL(cxgbi_iscsi_cleanup
);
2690 umode_t
cxgbi_attr_is_visible(int param_type
, int param
)
2692 switch (param_type
) {
2693 case ISCSI_HOST_PARAM
:
2695 case ISCSI_HOST_PARAM_NETDEV_NAME
:
2696 case ISCSI_HOST_PARAM_HWADDRESS
:
2697 case ISCSI_HOST_PARAM_IPADDRESS
:
2698 case ISCSI_HOST_PARAM_INITIATOR_NAME
:
2705 case ISCSI_PARAM_MAX_RECV_DLENGTH
:
2706 case ISCSI_PARAM_MAX_XMIT_DLENGTH
:
2707 case ISCSI_PARAM_HDRDGST_EN
:
2708 case ISCSI_PARAM_DATADGST_EN
:
2709 case ISCSI_PARAM_CONN_ADDRESS
:
2710 case ISCSI_PARAM_CONN_PORT
:
2711 case ISCSI_PARAM_EXP_STATSN
:
2712 case ISCSI_PARAM_PERSISTENT_ADDRESS
:
2713 case ISCSI_PARAM_PERSISTENT_PORT
:
2714 case ISCSI_PARAM_PING_TMO
:
2715 case ISCSI_PARAM_RECV_TMO
:
2716 case ISCSI_PARAM_INITIAL_R2T_EN
:
2717 case ISCSI_PARAM_MAX_R2T
:
2718 case ISCSI_PARAM_IMM_DATA_EN
:
2719 case ISCSI_PARAM_FIRST_BURST
:
2720 case ISCSI_PARAM_MAX_BURST
:
2721 case ISCSI_PARAM_PDU_INORDER_EN
:
2722 case ISCSI_PARAM_DATASEQ_INORDER_EN
:
2723 case ISCSI_PARAM_ERL
:
2724 case ISCSI_PARAM_TARGET_NAME
:
2725 case ISCSI_PARAM_TPGT
:
2726 case ISCSI_PARAM_USERNAME
:
2727 case ISCSI_PARAM_PASSWORD
:
2728 case ISCSI_PARAM_USERNAME_IN
:
2729 case ISCSI_PARAM_PASSWORD_IN
:
2730 case ISCSI_PARAM_FAST_ABORT
:
2731 case ISCSI_PARAM_ABORT_TMO
:
2732 case ISCSI_PARAM_LU_RESET_TMO
:
2733 case ISCSI_PARAM_TGT_RESET_TMO
:
2734 case ISCSI_PARAM_IFACE_NAME
:
2735 case ISCSI_PARAM_INITIATOR_NAME
:
2744 EXPORT_SYMBOL_GPL(cxgbi_attr_is_visible
);
2746 static int __init
libcxgbi_init_module(void)
2748 pr_info("%s", version
);
2750 BUILD_BUG_ON(sizeof_field(struct sk_buff
, cb
) <
2751 sizeof(struct cxgbi_skb_cb
));
2755 static void __exit
libcxgbi_exit_module(void)
2757 cxgbi_device_unregister_all(0xFF);
2761 module_init(libcxgbi_init_module
);
2762 module_exit(libcxgbi_exit_module
);