2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
37 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/slab.h>
41 #include <linux/kernel.h>
42 #include <linux/vmalloc.h>
44 #include <linux/if_arp.h> /* For ARPHRD_xxx */
51 MODULE_AUTHOR("Roland Dreier");
52 MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
53 MODULE_LICENSE("Dual BSD/GPL");
55 int ipoib_sendq_size __read_mostly
= IPOIB_TX_RING_SIZE
;
56 int ipoib_recvq_size __read_mostly
= IPOIB_RX_RING_SIZE
;
58 module_param_named(send_queue_size
, ipoib_sendq_size
, int, 0444);
59 MODULE_PARM_DESC(send_queue_size
, "Number of descriptors in send queue");
60 module_param_named(recv_queue_size
, ipoib_recvq_size
, int, 0444);
61 MODULE_PARM_DESC(recv_queue_size
, "Number of descriptors in receive queue");
64 module_param(lro
, bool, 0444);
65 MODULE_PARM_DESC(lro
, "Enable LRO (Large Receive Offload)");
67 static int lro_max_aggr
= IPOIB_LRO_MAX_AGGR
;
68 module_param(lro_max_aggr
, int, 0644);
69 MODULE_PARM_DESC(lro_max_aggr
, "LRO: Max packets to be aggregated "
72 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
73 int ipoib_debug_level
;
75 module_param_named(debug_level
, ipoib_debug_level
, int, 0644);
76 MODULE_PARM_DESC(debug_level
, "Enable debug tracing if > 0");
79 struct ipoib_path_iter
{
80 struct net_device
*dev
;
81 struct ipoib_path path
;
84 static const u8 ipv4_bcast_addr
[] = {
85 0x00, 0xff, 0xff, 0xff,
86 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
87 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
90 struct workqueue_struct
*ipoib_workqueue
;
92 struct ib_sa_client ipoib_sa_client
;
94 static void ipoib_add_one(struct ib_device
*device
);
95 static void ipoib_remove_one(struct ib_device
*device
);
97 static struct ib_client ipoib_client
= {
100 .remove
= ipoib_remove_one
103 int ipoib_open(struct net_device
*dev
)
105 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
107 ipoib_dbg(priv
, "bringing up interface\n");
109 if (!test_and_set_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
))
110 napi_enable(&priv
->napi
);
112 if (ipoib_pkey_dev_delay_open(dev
))
115 if (ipoib_ib_dev_open(dev
))
118 if (ipoib_ib_dev_up(dev
))
121 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
122 struct ipoib_dev_priv
*cpriv
;
124 /* Bring up any child interfaces too */
125 mutex_lock(&priv
->vlan_mutex
);
126 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
129 flags
= cpriv
->dev
->flags
;
133 dev_change_flags(cpriv
->dev
, flags
| IFF_UP
);
135 mutex_unlock(&priv
->vlan_mutex
);
138 netif_start_queue(dev
);
143 ipoib_ib_dev_stop(dev
, 1);
146 napi_disable(&priv
->napi
);
147 clear_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
152 static int ipoib_stop(struct net_device
*dev
)
154 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
156 ipoib_dbg(priv
, "stopping interface\n");
158 clear_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
);
159 napi_disable(&priv
->napi
);
161 netif_stop_queue(dev
);
163 ipoib_ib_dev_down(dev
, 0);
164 ipoib_ib_dev_stop(dev
, 0);
166 if (!test_bit(IPOIB_FLAG_SUBINTERFACE
, &priv
->flags
)) {
167 struct ipoib_dev_priv
*cpriv
;
169 /* Bring down any child interfaces too */
170 mutex_lock(&priv
->vlan_mutex
);
171 list_for_each_entry(cpriv
, &priv
->child_intfs
, list
) {
174 flags
= cpriv
->dev
->flags
;
175 if (!(flags
& IFF_UP
))
178 dev_change_flags(cpriv
->dev
, flags
& ~IFF_UP
);
180 mutex_unlock(&priv
->vlan_mutex
);
186 static int ipoib_change_mtu(struct net_device
*dev
, int new_mtu
)
188 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
190 /* dev->mtu > 2K ==> connected mode */
191 if (ipoib_cm_admin_enabled(dev
)) {
192 if (new_mtu
> ipoib_cm_max_mtu(dev
))
195 if (new_mtu
> priv
->mcast_mtu
)
196 ipoib_warn(priv
, "mtu > %d will cause multicast packet drops.\n",
203 if (new_mtu
> IPOIB_UD_MTU(priv
->max_ib_mtu
))
206 priv
->admin_mtu
= new_mtu
;
208 dev
->mtu
= min(priv
->mcast_mtu
, priv
->admin_mtu
);
213 static struct ipoib_path
*__path_find(struct net_device
*dev
, void *gid
)
215 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
216 struct rb_node
*n
= priv
->path_tree
.rb_node
;
217 struct ipoib_path
*path
;
221 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
223 ret
= memcmp(gid
, path
->pathrec
.dgid
.raw
,
224 sizeof (union ib_gid
));
237 static int __path_add(struct net_device
*dev
, struct ipoib_path
*path
)
239 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
240 struct rb_node
**n
= &priv
->path_tree
.rb_node
;
241 struct rb_node
*pn
= NULL
;
242 struct ipoib_path
*tpath
;
247 tpath
= rb_entry(pn
, struct ipoib_path
, rb_node
);
249 ret
= memcmp(path
->pathrec
.dgid
.raw
, tpath
->pathrec
.dgid
.raw
,
250 sizeof (union ib_gid
));
259 rb_link_node(&path
->rb_node
, pn
, n
);
260 rb_insert_color(&path
->rb_node
, &priv
->path_tree
);
262 list_add_tail(&path
->list
, &priv
->path_list
);
267 static void path_free(struct net_device
*dev
, struct ipoib_path
*path
)
269 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
270 struct ipoib_neigh
*neigh
, *tn
;
274 while ((skb
= __skb_dequeue(&path
->queue
)))
275 dev_kfree_skb_irq(skb
);
277 spin_lock_irqsave(&priv
->lock
, flags
);
279 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
281 * It's safe to call ipoib_put_ah() inside priv->lock
282 * here, because we know that path->ah will always
283 * hold one more reference, so ipoib_put_ah() will
284 * never do more than decrement the ref count.
287 ipoib_put_ah(neigh
->ah
);
289 ipoib_neigh_free(dev
, neigh
);
292 spin_unlock_irqrestore(&priv
->lock
, flags
);
295 ipoib_put_ah(path
->ah
);
300 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
302 struct ipoib_path_iter
*ipoib_path_iter_init(struct net_device
*dev
)
304 struct ipoib_path_iter
*iter
;
306 iter
= kmalloc(sizeof *iter
, GFP_KERNEL
);
311 memset(iter
->path
.pathrec
.dgid
.raw
, 0, 16);
313 if (ipoib_path_iter_next(iter
)) {
321 int ipoib_path_iter_next(struct ipoib_path_iter
*iter
)
323 struct ipoib_dev_priv
*priv
= netdev_priv(iter
->dev
);
325 struct ipoib_path
*path
;
328 spin_lock_irq(&priv
->lock
);
330 n
= rb_first(&priv
->path_tree
);
333 path
= rb_entry(n
, struct ipoib_path
, rb_node
);
335 if (memcmp(iter
->path
.pathrec
.dgid
.raw
, path
->pathrec
.dgid
.raw
,
336 sizeof (union ib_gid
)) < 0) {
345 spin_unlock_irq(&priv
->lock
);
350 void ipoib_path_iter_read(struct ipoib_path_iter
*iter
,
351 struct ipoib_path
*path
)
356 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
358 void ipoib_mark_paths_invalid(struct net_device
*dev
)
360 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
361 struct ipoib_path
*path
, *tp
;
363 spin_lock_irq(&priv
->lock
);
365 list_for_each_entry_safe(path
, tp
, &priv
->path_list
, list
) {
366 ipoib_dbg(priv
, "mark path LID 0x%04x GID %pI6 invalid\n",
367 be16_to_cpu(path
->pathrec
.dlid
),
368 path
->pathrec
.dgid
.raw
);
372 spin_unlock_irq(&priv
->lock
);
375 void ipoib_flush_paths(struct net_device
*dev
)
377 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
378 struct ipoib_path
*path
, *tp
;
379 LIST_HEAD(remove_list
);
382 netif_tx_lock_bh(dev
);
383 spin_lock_irqsave(&priv
->lock
, flags
);
385 list_splice_init(&priv
->path_list
, &remove_list
);
387 list_for_each_entry(path
, &remove_list
, list
)
388 rb_erase(&path
->rb_node
, &priv
->path_tree
);
390 list_for_each_entry_safe(path
, tp
, &remove_list
, list
) {
392 ib_sa_cancel_query(path
->query_id
, path
->query
);
393 spin_unlock_irqrestore(&priv
->lock
, flags
);
394 netif_tx_unlock_bh(dev
);
395 wait_for_completion(&path
->done
);
396 path_free(dev
, path
);
397 netif_tx_lock_bh(dev
);
398 spin_lock_irqsave(&priv
->lock
, flags
);
401 spin_unlock_irqrestore(&priv
->lock
, flags
);
402 netif_tx_unlock_bh(dev
);
405 static void path_rec_completion(int status
,
406 struct ib_sa_path_rec
*pathrec
,
409 struct ipoib_path
*path
= path_ptr
;
410 struct net_device
*dev
= path
->dev
;
411 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
412 struct ipoib_ah
*ah
= NULL
;
413 struct ipoib_ah
*old_ah
= NULL
;
414 struct ipoib_neigh
*neigh
, *tn
;
415 struct sk_buff_head skqueue
;
420 ipoib_dbg(priv
, "PathRec LID 0x%04x for GID %pI6\n",
421 be16_to_cpu(pathrec
->dlid
), pathrec
->dgid
.raw
);
423 ipoib_dbg(priv
, "PathRec status %d for GID %pI6\n",
424 status
, path
->pathrec
.dgid
.raw
);
426 skb_queue_head_init(&skqueue
);
429 struct ib_ah_attr av
;
431 if (!ib_init_ah_from_path(priv
->ca
, priv
->port
, pathrec
, &av
))
432 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
435 spin_lock_irqsave(&priv
->lock
, flags
);
438 path
->pathrec
= *pathrec
;
443 ipoib_dbg(priv
, "created address handle %p for LID 0x%04x, SL %d\n",
444 ah
, be16_to_cpu(pathrec
->dlid
), pathrec
->sl
);
446 while ((skb
= __skb_dequeue(&path
->queue
)))
447 __skb_queue_tail(&skqueue
, skb
);
449 list_for_each_entry_safe(neigh
, tn
, &path
->neigh_list
, list
) {
451 WARN_ON(neigh
->ah
!= old_ah
);
453 * Dropping the ah reference inside
454 * priv->lock is safe here, because we
455 * will hold one more reference from
456 * the original value of path->ah (ie
459 ipoib_put_ah(neigh
->ah
);
461 kref_get(&path
->ah
->ref
);
462 neigh
->ah
= path
->ah
;
463 memcpy(&neigh
->dgid
.raw
, &path
->pathrec
.dgid
.raw
,
464 sizeof(union ib_gid
));
466 if (ipoib_cm_enabled(dev
, neigh
->neighbour
)) {
467 if (!ipoib_cm_get(neigh
))
468 ipoib_cm_set(neigh
, ipoib_cm_create_tx(dev
,
471 if (!ipoib_cm_get(neigh
)) {
472 list_del(&neigh
->list
);
474 ipoib_put_ah(neigh
->ah
);
475 ipoib_neigh_free(dev
, neigh
);
480 while ((skb
= __skb_dequeue(&neigh
->queue
)))
481 __skb_queue_tail(&skqueue
, skb
);
487 complete(&path
->done
);
489 spin_unlock_irqrestore(&priv
->lock
, flags
);
492 ipoib_put_ah(old_ah
);
494 while ((skb
= __skb_dequeue(&skqueue
))) {
496 if (dev_queue_xmit(skb
))
497 ipoib_warn(priv
, "dev_queue_xmit failed "
498 "to requeue packet\n");
502 static struct ipoib_path
*path_rec_create(struct net_device
*dev
, void *gid
)
504 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
505 struct ipoib_path
*path
;
507 if (!priv
->broadcast
)
510 path
= kzalloc(sizeof *path
, GFP_ATOMIC
);
516 skb_queue_head_init(&path
->queue
);
518 INIT_LIST_HEAD(&path
->neigh_list
);
520 memcpy(path
->pathrec
.dgid
.raw
, gid
, sizeof (union ib_gid
));
521 path
->pathrec
.sgid
= priv
->local_gid
;
522 path
->pathrec
.pkey
= cpu_to_be16(priv
->pkey
);
523 path
->pathrec
.numb_path
= 1;
524 path
->pathrec
.traffic_class
= priv
->broadcast
->mcmember
.traffic_class
;
529 static int path_rec_start(struct net_device
*dev
,
530 struct ipoib_path
*path
)
532 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
534 ipoib_dbg(priv
, "Start path record lookup for %pI6\n",
535 path
->pathrec
.dgid
.raw
);
537 init_completion(&path
->done
);
540 ib_sa_path_rec_get(&ipoib_sa_client
, priv
->ca
, priv
->port
,
542 IB_SA_PATH_REC_DGID
|
543 IB_SA_PATH_REC_SGID
|
544 IB_SA_PATH_REC_NUMB_PATH
|
545 IB_SA_PATH_REC_TRAFFIC_CLASS
|
550 if (path
->query_id
< 0) {
551 ipoib_warn(priv
, "ib_sa_path_rec_get failed: %d\n", path
->query_id
);
553 complete(&path
->done
);
554 return path
->query_id
;
560 static void neigh_add_path(struct sk_buff
*skb
, struct net_device
*dev
)
562 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
563 struct ipoib_path
*path
;
564 struct ipoib_neigh
*neigh
;
567 neigh
= ipoib_neigh_alloc(skb
->dst
->neighbour
, skb
->dev
);
569 ++dev
->stats
.tx_dropped
;
570 dev_kfree_skb_any(skb
);
574 spin_lock_irqsave(&priv
->lock
, flags
);
576 path
= __path_find(dev
, skb
->dst
->neighbour
->ha
+ 4);
578 path
= path_rec_create(dev
, skb
->dst
->neighbour
->ha
+ 4);
582 __path_add(dev
, path
);
585 list_add_tail(&neigh
->list
, &path
->neigh_list
);
588 kref_get(&path
->ah
->ref
);
589 neigh
->ah
= path
->ah
;
590 memcpy(&neigh
->dgid
.raw
, &path
->pathrec
.dgid
.raw
,
591 sizeof(union ib_gid
));
593 if (ipoib_cm_enabled(dev
, neigh
->neighbour
)) {
594 if (!ipoib_cm_get(neigh
))
595 ipoib_cm_set(neigh
, ipoib_cm_create_tx(dev
, path
, neigh
));
596 if (!ipoib_cm_get(neigh
)) {
597 list_del(&neigh
->list
);
599 ipoib_put_ah(neigh
->ah
);
600 ipoib_neigh_free(dev
, neigh
);
603 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
)
604 __skb_queue_tail(&neigh
->queue
, skb
);
606 ipoib_warn(priv
, "queue length limit %d. Packet drop.\n",
607 skb_queue_len(&neigh
->queue
));
611 ipoib_send(dev
, skb
, path
->ah
, IPOIB_QPN(skb
->dst
->neighbour
->ha
));
615 if (!path
->query
&& path_rec_start(dev
, path
))
618 __skb_queue_tail(&neigh
->queue
, skb
);
621 spin_unlock_irqrestore(&priv
->lock
, flags
);
625 list_del(&neigh
->list
);
628 ipoib_neigh_free(dev
, neigh
);
630 ++dev
->stats
.tx_dropped
;
631 dev_kfree_skb_any(skb
);
633 spin_unlock_irqrestore(&priv
->lock
, flags
);
636 static void ipoib_path_lookup(struct sk_buff
*skb
, struct net_device
*dev
)
638 struct ipoib_dev_priv
*priv
= netdev_priv(skb
->dev
);
640 /* Look up path record for unicasts */
641 if (skb
->dst
->neighbour
->ha
[4] != 0xff) {
642 neigh_add_path(skb
, dev
);
646 /* Add in the P_Key for multicasts */
647 skb
->dst
->neighbour
->ha
[8] = (priv
->pkey
>> 8) & 0xff;
648 skb
->dst
->neighbour
->ha
[9] = priv
->pkey
& 0xff;
649 ipoib_mcast_send(dev
, skb
->dst
->neighbour
->ha
+ 4, skb
);
652 static void unicast_arp_send(struct sk_buff
*skb
, struct net_device
*dev
,
653 struct ipoib_pseudoheader
*phdr
)
655 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
656 struct ipoib_path
*path
;
659 spin_lock_irqsave(&priv
->lock
, flags
);
661 path
= __path_find(dev
, phdr
->hwaddr
+ 4);
662 if (!path
|| !path
->valid
) {
666 path
= path_rec_create(dev
, phdr
->hwaddr
+ 4);
670 /* put pseudoheader back on for next time */
671 skb_push(skb
, sizeof *phdr
);
672 __skb_queue_tail(&path
->queue
, skb
);
674 if (!path
->query
&& path_rec_start(dev
, path
)) {
675 spin_unlock_irqrestore(&priv
->lock
, flags
);
677 path_free(dev
, path
);
680 __path_add(dev
, path
);
682 ++dev
->stats
.tx_dropped
;
683 dev_kfree_skb_any(skb
);
686 spin_unlock_irqrestore(&priv
->lock
, flags
);
691 ipoib_dbg(priv
, "Send unicast ARP to %04x\n",
692 be16_to_cpu(path
->pathrec
.dlid
));
694 ipoib_send(dev
, skb
, path
->ah
, IPOIB_QPN(phdr
->hwaddr
));
695 } else if ((path
->query
|| !path_rec_start(dev
, path
)) &&
696 skb_queue_len(&path
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
697 /* put pseudoheader back on for next time */
698 skb_push(skb
, sizeof *phdr
);
699 __skb_queue_tail(&path
->queue
, skb
);
701 ++dev
->stats
.tx_dropped
;
702 dev_kfree_skb_any(skb
);
705 spin_unlock_irqrestore(&priv
->lock
, flags
);
708 static int ipoib_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
710 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
711 struct ipoib_neigh
*neigh
;
714 if (likely(skb
->dst
&& skb
->dst
->neighbour
)) {
715 if (unlikely(!*to_ipoib_neigh(skb
->dst
->neighbour
))) {
716 ipoib_path_lookup(skb
, dev
);
720 neigh
= *to_ipoib_neigh(skb
->dst
->neighbour
);
722 if (unlikely((memcmp(&neigh
->dgid
.raw
,
723 skb
->dst
->neighbour
->ha
+ 4,
724 sizeof(union ib_gid
))) ||
725 (neigh
->dev
!= dev
))) {
726 spin_lock_irqsave(&priv
->lock
, flags
);
728 * It's safe to call ipoib_put_ah() inside
729 * priv->lock here, because we know that
730 * path->ah will always hold one more reference,
731 * so ipoib_put_ah() will never do more than
732 * decrement the ref count.
735 ipoib_put_ah(neigh
->ah
);
736 list_del(&neigh
->list
);
737 ipoib_neigh_free(dev
, neigh
);
738 spin_unlock_irqrestore(&priv
->lock
, flags
);
739 ipoib_path_lookup(skb
, dev
);
743 if (ipoib_cm_get(neigh
)) {
744 if (ipoib_cm_up(neigh
)) {
745 ipoib_cm_send(dev
, skb
, ipoib_cm_get(neigh
));
748 } else if (neigh
->ah
) {
749 ipoib_send(dev
, skb
, neigh
->ah
, IPOIB_QPN(skb
->dst
->neighbour
->ha
));
753 if (skb_queue_len(&neigh
->queue
) < IPOIB_MAX_PATH_REC_QUEUE
) {
754 spin_lock_irqsave(&priv
->lock
, flags
);
755 __skb_queue_tail(&neigh
->queue
, skb
);
756 spin_unlock_irqrestore(&priv
->lock
, flags
);
758 ++dev
->stats
.tx_dropped
;
759 dev_kfree_skb_any(skb
);
762 struct ipoib_pseudoheader
*phdr
=
763 (struct ipoib_pseudoheader
*) skb
->data
;
764 skb_pull(skb
, sizeof *phdr
);
766 if (phdr
->hwaddr
[4] == 0xff) {
767 /* Add in the P_Key for multicast*/
768 phdr
->hwaddr
[8] = (priv
->pkey
>> 8) & 0xff;
769 phdr
->hwaddr
[9] = priv
->pkey
& 0xff;
771 ipoib_mcast_send(dev
, phdr
->hwaddr
+ 4, skb
);
773 /* unicast GID -- should be ARP or RARP reply */
775 if ((be16_to_cpup((__be16
*) skb
->data
) != ETH_P_ARP
) &&
776 (be16_to_cpup((__be16
*) skb
->data
) != ETH_P_RARP
)) {
777 ipoib_warn(priv
, "Unicast, no %s: type %04x, QPN %06x %pI6\n",
778 skb
->dst
? "neigh" : "dst",
779 be16_to_cpup((__be16
*) skb
->data
),
780 IPOIB_QPN(phdr
->hwaddr
),
782 dev_kfree_skb_any(skb
);
783 ++dev
->stats
.tx_dropped
;
787 unicast_arp_send(skb
, dev
, phdr
);
794 static void ipoib_timeout(struct net_device
*dev
)
796 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
798 ipoib_warn(priv
, "transmit timeout: latency %d msecs\n",
799 jiffies_to_msecs(jiffies
- dev
->trans_start
));
800 ipoib_warn(priv
, "queue stopped %d, tx_head %u, tx_tail %u\n",
801 netif_queue_stopped(dev
),
802 priv
->tx_head
, priv
->tx_tail
);
803 /* XXX reset QP, etc. */
806 static int ipoib_hard_header(struct sk_buff
*skb
,
807 struct net_device
*dev
,
809 const void *daddr
, const void *saddr
, unsigned len
)
811 struct ipoib_header
*header
;
813 header
= (struct ipoib_header
*) skb_push(skb
, sizeof *header
);
815 header
->proto
= htons(type
);
816 header
->reserved
= 0;
819 * If we don't have a neighbour structure, stuff the
820 * destination address onto the front of the skb so we can
821 * figure out where to send the packet later.
823 if ((!skb
->dst
|| !skb
->dst
->neighbour
) && daddr
) {
824 struct ipoib_pseudoheader
*phdr
=
825 (struct ipoib_pseudoheader
*) skb_push(skb
, sizeof *phdr
);
826 memcpy(phdr
->hwaddr
, daddr
, INFINIBAND_ALEN
);
832 static void ipoib_set_mcast_list(struct net_device
*dev
)
834 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
836 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
837 ipoib_dbg(priv
, "IPOIB_FLAG_OPER_UP not set");
841 queue_work(ipoib_workqueue
, &priv
->restart_task
);
844 static void ipoib_neigh_cleanup(struct neighbour
*n
)
846 struct ipoib_neigh
*neigh
;
847 struct ipoib_dev_priv
*priv
= netdev_priv(n
->dev
);
849 struct ipoib_ah
*ah
= NULL
;
851 neigh
= *to_ipoib_neigh(n
);
853 priv
= netdev_priv(neigh
->dev
);
857 "neigh_cleanup for %06x %pI6\n",
861 spin_lock_irqsave(&priv
->lock
, flags
);
865 list_del(&neigh
->list
);
866 ipoib_neigh_free(n
->dev
, neigh
);
868 spin_unlock_irqrestore(&priv
->lock
, flags
);
874 struct ipoib_neigh
*ipoib_neigh_alloc(struct neighbour
*neighbour
,
875 struct net_device
*dev
)
877 struct ipoib_neigh
*neigh
;
879 neigh
= kmalloc(sizeof *neigh
, GFP_ATOMIC
);
883 neigh
->neighbour
= neighbour
;
885 *to_ipoib_neigh(neighbour
) = neigh
;
886 skb_queue_head_init(&neigh
->queue
);
887 ipoib_cm_set(neigh
, NULL
);
892 void ipoib_neigh_free(struct net_device
*dev
, struct ipoib_neigh
*neigh
)
895 *to_ipoib_neigh(neigh
->neighbour
) = NULL
;
896 while ((skb
= __skb_dequeue(&neigh
->queue
))) {
897 ++dev
->stats
.tx_dropped
;
898 dev_kfree_skb_any(skb
);
900 if (ipoib_cm_get(neigh
))
901 ipoib_cm_destroy_tx(ipoib_cm_get(neigh
));
905 static int ipoib_neigh_setup_dev(struct net_device
*dev
, struct neigh_parms
*parms
)
907 parms
->neigh_cleanup
= ipoib_neigh_cleanup
;
912 int ipoib_dev_init(struct net_device
*dev
, struct ib_device
*ca
, int port
)
914 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
916 /* Allocate RX/TX "rings" to hold queued skbs */
917 priv
->rx_ring
= kzalloc(ipoib_recvq_size
* sizeof *priv
->rx_ring
,
919 if (!priv
->rx_ring
) {
920 printk(KERN_WARNING
"%s: failed to allocate RX ring (%d entries)\n",
921 ca
->name
, ipoib_recvq_size
);
925 priv
->tx_ring
= vmalloc(ipoib_sendq_size
* sizeof *priv
->tx_ring
);
926 if (!priv
->tx_ring
) {
927 printk(KERN_WARNING
"%s: failed to allocate TX ring (%d entries)\n",
928 ca
->name
, ipoib_sendq_size
);
929 goto out_rx_ring_cleanup
;
931 memset(priv
->tx_ring
, 0, ipoib_sendq_size
* sizeof *priv
->tx_ring
);
933 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
935 if (ipoib_ib_dev_init(dev
, ca
, port
))
936 goto out_tx_ring_cleanup
;
941 vfree(priv
->tx_ring
);
944 kfree(priv
->rx_ring
);
950 void ipoib_dev_cleanup(struct net_device
*dev
)
952 struct ipoib_dev_priv
*priv
= netdev_priv(dev
), *cpriv
, *tcpriv
;
954 ipoib_delete_debug_files(dev
);
956 /* Delete any child interfaces first */
957 list_for_each_entry_safe(cpriv
, tcpriv
, &priv
->child_intfs
, list
) {
958 unregister_netdev(cpriv
->dev
);
959 ipoib_dev_cleanup(cpriv
->dev
);
960 free_netdev(cpriv
->dev
);
963 ipoib_ib_dev_cleanup(dev
);
965 kfree(priv
->rx_ring
);
966 vfree(priv
->tx_ring
);
968 priv
->rx_ring
= NULL
;
969 priv
->tx_ring
= NULL
;
972 static const struct header_ops ipoib_header_ops
= {
973 .create
= ipoib_hard_header
,
976 static int get_skb_hdr(struct sk_buff
*skb
, void **iphdr
,
977 void **tcph
, u64
*hdr_flags
, void *priv
)
982 if (unlikely(skb
->protocol
!= htons(ETH_P_IP
)))
986 * In the future we may add an else clause that verifies the
987 * checksum and allows devices which do not calculate checksum
990 if (unlikely(skb
->ip_summed
!= CHECKSUM_UNNECESSARY
))
993 /* Check for non-TCP packet */
994 skb_reset_network_header(skb
);
996 if (iph
->protocol
!= IPPROTO_TCP
)
999 ip_len
= ip_hdrlen(skb
);
1000 skb_set_transport_header(skb
, ip_len
);
1001 *tcph
= tcp_hdr(skb
);
1003 /* check if IP header and TCP header are complete */
1004 if (ntohs(iph
->tot_len
) < ip_len
+ tcp_hdrlen(skb
))
1007 *hdr_flags
= LRO_IPV4
| LRO_TCP
;
1013 static void ipoib_lro_setup(struct ipoib_dev_priv
*priv
)
1015 priv
->lro
.lro_mgr
.max_aggr
= lro_max_aggr
;
1016 priv
->lro
.lro_mgr
.max_desc
= IPOIB_MAX_LRO_DESCRIPTORS
;
1017 priv
->lro
.lro_mgr
.lro_arr
= priv
->lro
.lro_desc
;
1018 priv
->lro
.lro_mgr
.get_skb_header
= get_skb_hdr
;
1019 priv
->lro
.lro_mgr
.features
= LRO_F_NAPI
;
1020 priv
->lro
.lro_mgr
.dev
= priv
->dev
;
1021 priv
->lro
.lro_mgr
.ip_summed_aggr
= CHECKSUM_UNNECESSARY
;
1024 static const struct net_device_ops ipoib_netdev_ops
= {
1025 .ndo_open
= ipoib_open
,
1026 .ndo_stop
= ipoib_stop
,
1027 .ndo_change_mtu
= ipoib_change_mtu
,
1028 .ndo_start_xmit
= ipoib_start_xmit
,
1029 .ndo_tx_timeout
= ipoib_timeout
,
1030 .ndo_set_multicast_list
= ipoib_set_mcast_list
,
1031 .ndo_neigh_setup
= ipoib_neigh_setup_dev
,
1034 static void ipoib_setup(struct net_device
*dev
)
1036 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
1038 dev
->netdev_ops
= &ipoib_netdev_ops
;
1039 dev
->header_ops
= &ipoib_header_ops
;
1041 ipoib_set_ethtool_ops(dev
);
1043 netif_napi_add(dev
, &priv
->napi
, ipoib_poll
, 100);
1045 dev
->watchdog_timeo
= HZ
;
1047 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
1050 * We add in INFINIBAND_ALEN to allow for the destination
1051 * address "pseudoheader" for skbs without neighbour struct.
1053 dev
->hard_header_len
= IPOIB_ENCAP_LEN
+ INFINIBAND_ALEN
;
1054 dev
->addr_len
= INFINIBAND_ALEN
;
1055 dev
->type
= ARPHRD_INFINIBAND
;
1056 dev
->tx_queue_len
= ipoib_sendq_size
* 2;
1057 dev
->features
= (NETIF_F_VLAN_CHALLENGED
|
1060 memcpy(dev
->broadcast
, ipv4_bcast_addr
, INFINIBAND_ALEN
);
1062 netif_carrier_off(dev
);
1066 ipoib_lro_setup(priv
);
1068 spin_lock_init(&priv
->lock
);
1070 mutex_init(&priv
->vlan_mutex
);
1072 INIT_LIST_HEAD(&priv
->path_list
);
1073 INIT_LIST_HEAD(&priv
->child_intfs
);
1074 INIT_LIST_HEAD(&priv
->dead_ahs
);
1075 INIT_LIST_HEAD(&priv
->multicast_list
);
1077 INIT_DELAYED_WORK(&priv
->pkey_poll_task
, ipoib_pkey_poll
);
1078 INIT_DELAYED_WORK(&priv
->mcast_task
, ipoib_mcast_join_task
);
1079 INIT_WORK(&priv
->carrier_on_task
, ipoib_mcast_carrier_on_task
);
1080 INIT_WORK(&priv
->flush_light
, ipoib_ib_dev_flush_light
);
1081 INIT_WORK(&priv
->flush_normal
, ipoib_ib_dev_flush_normal
);
1082 INIT_WORK(&priv
->flush_heavy
, ipoib_ib_dev_flush_heavy
);
1083 INIT_WORK(&priv
->restart_task
, ipoib_mcast_restart_task
);
1084 INIT_DELAYED_WORK(&priv
->ah_reap_task
, ipoib_reap_ah
);
1087 struct ipoib_dev_priv
*ipoib_intf_alloc(const char *name
)
1089 struct net_device
*dev
;
1091 dev
= alloc_netdev((int) sizeof (struct ipoib_dev_priv
), name
,
1096 return netdev_priv(dev
);
1099 static ssize_t
show_pkey(struct device
*dev
,
1100 struct device_attribute
*attr
, char *buf
)
1102 struct ipoib_dev_priv
*priv
= netdev_priv(to_net_dev(dev
));
1104 return sprintf(buf
, "0x%04x\n", priv
->pkey
);
1106 static DEVICE_ATTR(pkey
, S_IRUGO
, show_pkey
, NULL
);
1108 static ssize_t
show_umcast(struct device
*dev
,
1109 struct device_attribute
*attr
, char *buf
)
1111 struct ipoib_dev_priv
*priv
= netdev_priv(to_net_dev(dev
));
1113 return sprintf(buf
, "%d\n", test_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
));
1116 static ssize_t
set_umcast(struct device
*dev
,
1117 struct device_attribute
*attr
,
1118 const char *buf
, size_t count
)
1120 struct ipoib_dev_priv
*priv
= netdev_priv(to_net_dev(dev
));
1121 unsigned long umcast_val
= simple_strtoul(buf
, NULL
, 0);
1123 if (umcast_val
> 0) {
1124 set_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
);
1125 ipoib_warn(priv
, "ignoring multicast groups joined directly "
1128 clear_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
);
1132 static DEVICE_ATTR(umcast
, S_IWUSR
| S_IRUGO
, show_umcast
, set_umcast
);
1134 int ipoib_add_umcast_attr(struct net_device
*dev
)
1136 return device_create_file(&dev
->dev
, &dev_attr_umcast
);
1139 static ssize_t
create_child(struct device
*dev
,
1140 struct device_attribute
*attr
,
1141 const char *buf
, size_t count
)
1146 if (sscanf(buf
, "%i", &pkey
) != 1)
1149 if (pkey
< 0 || pkey
> 0xffff)
1153 * Set the full membership bit, so that we join the right
1154 * broadcast group, etc.
1158 ret
= ipoib_vlan_add(to_net_dev(dev
), pkey
);
1160 return ret
? ret
: count
;
1162 static DEVICE_ATTR(create_child
, S_IWUGO
, NULL
, create_child
);
1164 static ssize_t
delete_child(struct device
*dev
,
1165 struct device_attribute
*attr
,
1166 const char *buf
, size_t count
)
1171 if (sscanf(buf
, "%i", &pkey
) != 1)
1174 if (pkey
< 0 || pkey
> 0xffff)
1177 ret
= ipoib_vlan_delete(to_net_dev(dev
), pkey
);
1179 return ret
? ret
: count
;
1182 static DEVICE_ATTR(delete_child
, S_IWUGO
, NULL
, delete_child
);
1184 int ipoib_add_pkey_attr(struct net_device
*dev
)
1186 return device_create_file(&dev
->dev
, &dev_attr_pkey
);
1189 int ipoib_set_dev_features(struct ipoib_dev_priv
*priv
, struct ib_device
*hca
)
1191 struct ib_device_attr
*device_attr
;
1192 int result
= -ENOMEM
;
1194 device_attr
= kmalloc(sizeof *device_attr
, GFP_KERNEL
);
1196 printk(KERN_WARNING
"%s: allocation of %zu bytes failed\n",
1197 hca
->name
, sizeof *device_attr
);
1201 result
= ib_query_device(hca
, device_attr
);
1203 printk(KERN_WARNING
"%s: ib_query_device failed (ret = %d)\n",
1208 priv
->hca_caps
= device_attr
->device_cap_flags
;
1212 if (priv
->hca_caps
& IB_DEVICE_UD_IP_CSUM
) {
1213 set_bit(IPOIB_FLAG_CSUM
, &priv
->flags
);
1214 priv
->dev
->features
|= NETIF_F_SG
| NETIF_F_IP_CSUM
;
1218 priv
->dev
->features
|= NETIF_F_LRO
;
1220 if (priv
->dev
->features
& NETIF_F_SG
&& priv
->hca_caps
& IB_DEVICE_UD_TSO
)
1221 priv
->dev
->features
|= NETIF_F_TSO
;
1227 static struct net_device
*ipoib_add_port(const char *format
,
1228 struct ib_device
*hca
, u8 port
)
1230 struct ipoib_dev_priv
*priv
;
1231 struct ib_port_attr attr
;
1232 int result
= -ENOMEM
;
1234 priv
= ipoib_intf_alloc(format
);
1236 goto alloc_mem_failed
;
1238 SET_NETDEV_DEV(priv
->dev
, hca
->dma_device
);
1240 if (!ib_query_port(hca
, port
, &attr
))
1241 priv
->max_ib_mtu
= ib_mtu_enum_to_int(attr
.max_mtu
);
1243 printk(KERN_WARNING
"%s: ib_query_port %d failed\n",
1245 goto device_init_failed
;
1248 /* MTU will be reset when mcast join happens */
1249 priv
->dev
->mtu
= IPOIB_UD_MTU(priv
->max_ib_mtu
);
1250 priv
->mcast_mtu
= priv
->admin_mtu
= priv
->dev
->mtu
;
1252 result
= ib_query_pkey(hca
, port
, 0, &priv
->pkey
);
1254 printk(KERN_WARNING
"%s: ib_query_pkey port %d failed (ret = %d)\n",
1255 hca
->name
, port
, result
);
1256 goto device_init_failed
;
1259 if (ipoib_set_dev_features(priv
, hca
))
1260 goto device_init_failed
;
1263 * Set the full membership bit, so that we join the right
1264 * broadcast group, etc.
1266 priv
->pkey
|= 0x8000;
1268 priv
->dev
->broadcast
[8] = priv
->pkey
>> 8;
1269 priv
->dev
->broadcast
[9] = priv
->pkey
& 0xff;
1271 result
= ib_query_gid(hca
, port
, 0, &priv
->local_gid
);
1273 printk(KERN_WARNING
"%s: ib_query_gid port %d failed (ret = %d)\n",
1274 hca
->name
, port
, result
);
1275 goto device_init_failed
;
1277 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
1279 result
= ipoib_dev_init(priv
->dev
, hca
, port
);
1281 printk(KERN_WARNING
"%s: failed to initialize port %d (ret = %d)\n",
1282 hca
->name
, port
, result
);
1283 goto device_init_failed
;
1286 INIT_IB_EVENT_HANDLER(&priv
->event_handler
,
1287 priv
->ca
, ipoib_event
);
1288 result
= ib_register_event_handler(&priv
->event_handler
);
1290 printk(KERN_WARNING
"%s: ib_register_event_handler failed for "
1291 "port %d (ret = %d)\n",
1292 hca
->name
, port
, result
);
1296 result
= register_netdev(priv
->dev
);
1298 printk(KERN_WARNING
"%s: couldn't register ipoib port %d; error %d\n",
1299 hca
->name
, port
, result
);
1300 goto register_failed
;
1303 ipoib_create_debug_files(priv
->dev
);
1305 if (ipoib_cm_add_mode_attr(priv
->dev
))
1307 if (ipoib_add_pkey_attr(priv
->dev
))
1309 if (ipoib_add_umcast_attr(priv
->dev
))
1311 if (device_create_file(&priv
->dev
->dev
, &dev_attr_create_child
))
1313 if (device_create_file(&priv
->dev
->dev
, &dev_attr_delete_child
))
1319 ipoib_delete_debug_files(priv
->dev
);
1320 unregister_netdev(priv
->dev
);
1323 ib_unregister_event_handler(&priv
->event_handler
);
1324 flush_workqueue(ipoib_workqueue
);
1327 ipoib_dev_cleanup(priv
->dev
);
1330 free_netdev(priv
->dev
);
1333 return ERR_PTR(result
);
1336 static void ipoib_add_one(struct ib_device
*device
)
1338 struct list_head
*dev_list
;
1339 struct net_device
*dev
;
1340 struct ipoib_dev_priv
*priv
;
1343 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
1346 dev_list
= kmalloc(sizeof *dev_list
, GFP_KERNEL
);
1350 INIT_LIST_HEAD(dev_list
);
1352 if (device
->node_type
== RDMA_NODE_IB_SWITCH
) {
1357 e
= device
->phys_port_cnt
;
1360 for (p
= s
; p
<= e
; ++p
) {
1361 dev
= ipoib_add_port("ib%d", device
, p
);
1363 priv
= netdev_priv(dev
);
1364 list_add_tail(&priv
->list
, dev_list
);
1368 ib_set_client_data(device
, &ipoib_client
, dev_list
);
1371 static void ipoib_remove_one(struct ib_device
*device
)
1373 struct ipoib_dev_priv
*priv
, *tmp
;
1374 struct list_head
*dev_list
;
1376 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
1379 dev_list
= ib_get_client_data(device
, &ipoib_client
);
1381 list_for_each_entry_safe(priv
, tmp
, dev_list
, list
) {
1382 ib_unregister_event_handler(&priv
->event_handler
);
1385 dev_change_flags(priv
->dev
, priv
->dev
->flags
& ~IFF_UP
);
1388 flush_workqueue(ipoib_workqueue
);
1390 unregister_netdev(priv
->dev
);
1391 ipoib_dev_cleanup(priv
->dev
);
1392 free_netdev(priv
->dev
);
1398 static int __init
ipoib_init_module(void)
1402 ipoib_recvq_size
= roundup_pow_of_two(ipoib_recvq_size
);
1403 ipoib_recvq_size
= min(ipoib_recvq_size
, IPOIB_MAX_QUEUE_SIZE
);
1404 ipoib_recvq_size
= max(ipoib_recvq_size
, IPOIB_MIN_QUEUE_SIZE
);
1406 ipoib_sendq_size
= roundup_pow_of_two(ipoib_sendq_size
);
1407 ipoib_sendq_size
= min(ipoib_sendq_size
, IPOIB_MAX_QUEUE_SIZE
);
1408 ipoib_sendq_size
= max(ipoib_sendq_size
, max(2 * MAX_SEND_CQE
,
1409 IPOIB_MIN_QUEUE_SIZE
));
1410 #ifdef CONFIG_INFINIBAND_IPOIB_CM
1411 ipoib_max_conn_qp
= min(ipoib_max_conn_qp
, IPOIB_CM_MAX_CONN_QP
);
1415 * When copying small received packets, we only copy from the
1416 * linear data part of the SKB, so we rely on this condition.
1418 BUILD_BUG_ON(IPOIB_CM_COPYBREAK
> IPOIB_CM_HEAD_SIZE
);
1420 ret
= ipoib_register_debugfs();
1425 * We create our own workqueue mainly because we want to be
1426 * able to flush it when devices are being removed. We can't
1427 * use schedule_work()/flush_scheduled_work() because both
1428 * unregister_netdev() and linkwatch_event take the rtnl lock,
1429 * so flush_scheduled_work() can deadlock during device
1432 ipoib_workqueue
= create_singlethread_workqueue("ipoib");
1433 if (!ipoib_workqueue
) {
1438 ib_sa_register_client(&ipoib_sa_client
);
1440 ret
= ib_register_client(&ipoib_client
);
1447 ib_sa_unregister_client(&ipoib_sa_client
);
1448 destroy_workqueue(ipoib_workqueue
);
1451 ipoib_unregister_debugfs();
1456 static void __exit
ipoib_cleanup_module(void)
1458 ib_unregister_client(&ipoib_client
);
1459 ib_sa_unregister_client(&ipoib_sa_client
);
1460 ipoib_unregister_debugfs();
1461 destroy_workqueue(ipoib_workqueue
);
1464 module_init(ipoib_init_module
);
1465 module_exit(ipoib_cleanup_module
);