2 * Copyright (c) 2004, 2005 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
35 #include <linux/skbuff.h>
36 #include <linux/rtnetlink.h>
39 #include <linux/igmp.h>
40 #include <linux/inetdevice.h>
41 #include <linux/delay.h>
42 #include <linux/completion.h>
43 #include <linux/slab.h>
49 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
50 static int mcast_debug_level
;
52 module_param(mcast_debug_level
, int, 0644);
53 MODULE_PARM_DESC(mcast_debug_level
,
54 "Enable multicast debug tracing if > 0");
57 static DEFINE_MUTEX(mcast_mutex
);
59 struct ipoib_mcast_iter
{
60 struct net_device
*dev
;
62 unsigned long created
;
63 unsigned int queuelen
;
64 unsigned int complete
;
65 unsigned int send_only
;
68 static void ipoib_mcast_free(struct ipoib_mcast
*mcast
)
70 struct net_device
*dev
= mcast
->dev
;
71 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
72 struct ipoib_neigh
*neigh
, *tmp
;
75 ipoib_dbg_mcast(netdev_priv(dev
), "deleting multicast group %pI6\n",
76 mcast
->mcmember
.mgid
.raw
);
78 spin_lock_irq(&priv
->lock
);
80 list_for_each_entry_safe(neigh
, tmp
, &mcast
->neigh_list
, list
) {
82 * It's safe to call ipoib_put_ah() inside priv->lock
83 * here, because we know that mcast->ah will always
84 * hold one more reference, so ipoib_put_ah() will
85 * never do more than decrement the ref count.
88 ipoib_put_ah(neigh
->ah
);
89 ipoib_neigh_free(dev
, neigh
);
92 spin_unlock_irq(&priv
->lock
);
95 ipoib_put_ah(mcast
->ah
);
97 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
99 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
102 netif_tx_lock_bh(dev
);
103 dev
->stats
.tx_dropped
+= tx_dropped
;
104 netif_tx_unlock_bh(dev
);
109 static struct ipoib_mcast
*ipoib_mcast_alloc(struct net_device
*dev
,
112 struct ipoib_mcast
*mcast
;
114 mcast
= kzalloc(sizeof *mcast
, can_sleep
? GFP_KERNEL
: GFP_ATOMIC
);
119 mcast
->created
= jiffies
;
122 INIT_LIST_HEAD(&mcast
->list
);
123 INIT_LIST_HEAD(&mcast
->neigh_list
);
124 skb_queue_head_init(&mcast
->pkt_queue
);
129 static struct ipoib_mcast
*__ipoib_mcast_find(struct net_device
*dev
, void *mgid
)
131 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
132 struct rb_node
*n
= priv
->multicast_tree
.rb_node
;
135 struct ipoib_mcast
*mcast
;
138 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
140 ret
= memcmp(mgid
, mcast
->mcmember
.mgid
.raw
,
141 sizeof (union ib_gid
));
153 static int __ipoib_mcast_add(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
155 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
156 struct rb_node
**n
= &priv
->multicast_tree
.rb_node
, *pn
= NULL
;
159 struct ipoib_mcast
*tmcast
;
163 tmcast
= rb_entry(pn
, struct ipoib_mcast
, rb_node
);
165 ret
= memcmp(mcast
->mcmember
.mgid
.raw
, tmcast
->mcmember
.mgid
.raw
,
166 sizeof (union ib_gid
));
175 rb_link_node(&mcast
->rb_node
, pn
, n
);
176 rb_insert_color(&mcast
->rb_node
, &priv
->multicast_tree
);
181 static int ipoib_mcast_join_finish(struct ipoib_mcast
*mcast
,
182 struct ib_sa_mcmember_rec
*mcmember
)
184 struct net_device
*dev
= mcast
->dev
;
185 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
190 mcast
->mcmember
= *mcmember
;
192 /* Set the cached Q_Key before we attach if it's the broadcast group */
193 if (!memcmp(mcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
194 sizeof (union ib_gid
))) {
195 spin_lock_irq(&priv
->lock
);
196 if (!priv
->broadcast
) {
197 spin_unlock_irq(&priv
->lock
);
200 priv
->qkey
= be32_to_cpu(priv
->broadcast
->mcmember
.qkey
);
201 spin_unlock_irq(&priv
->lock
);
202 priv
->tx_wr
.wr
.ud
.remote_qkey
= priv
->qkey
;
206 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
207 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
208 ipoib_warn(priv
, "multicast group %pI6 already attached\n",
209 mcast
->mcmember
.mgid
.raw
);
214 ret
= ipoib_mcast_attach(dev
, be16_to_cpu(mcast
->mcmember
.mlid
),
215 &mcast
->mcmember
.mgid
, set_qkey
);
217 ipoib_warn(priv
, "couldn't attach QP to multicast group %pI6\n",
218 mcast
->mcmember
.mgid
.raw
);
220 clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
);
226 struct ib_ah_attr av
= {
227 .dlid
= be16_to_cpu(mcast
->mcmember
.mlid
),
228 .port_num
= priv
->port
,
229 .sl
= mcast
->mcmember
.sl
,
230 .ah_flags
= IB_AH_GRH
,
231 .static_rate
= mcast
->mcmember
.rate
,
233 .flow_label
= be32_to_cpu(mcast
->mcmember
.flow_label
),
234 .hop_limit
= mcast
->mcmember
.hop_limit
,
236 .traffic_class
= mcast
->mcmember
.traffic_class
239 av
.grh
.dgid
= mcast
->mcmember
.mgid
;
241 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
243 ipoib_warn(priv
, "ib_address_create failed\n");
245 spin_lock_irq(&priv
->lock
);
247 spin_unlock_irq(&priv
->lock
);
249 ipoib_dbg_mcast(priv
, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
250 mcast
->mcmember
.mgid
.raw
,
252 be16_to_cpu(mcast
->mcmember
.mlid
),
257 /* actually send any queued packets */
258 netif_tx_lock_bh(dev
);
259 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
260 struct sk_buff
*skb
= skb_dequeue(&mcast
->pkt_queue
);
261 netif_tx_unlock_bh(dev
);
265 if (!skb_dst(skb
) || !skb_dst(skb
)->neighbour
) {
266 /* put pseudoheader back on for next time */
267 skb_push(skb
, sizeof (struct ipoib_pseudoheader
));
270 if (dev_queue_xmit(skb
))
271 ipoib_warn(priv
, "dev_queue_xmit failed to requeue packet\n");
272 netif_tx_lock_bh(dev
);
274 netif_tx_unlock_bh(dev
);
280 ipoib_mcast_sendonly_join_complete(int status
,
281 struct ib_sa_multicast
*multicast
)
283 struct ipoib_mcast
*mcast
= multicast
->context
;
284 struct net_device
*dev
= mcast
->dev
;
286 /* We trap for port events ourselves. */
287 if (status
== -ENETRESET
)
291 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
294 if (mcast
->logcount
++ < 20)
295 ipoib_dbg_mcast(netdev_priv(dev
), "multicast join failed for %pI6, status %d\n",
296 mcast
->mcmember
.mgid
.raw
, status
);
298 /* Flush out any queued packets */
299 netif_tx_lock_bh(dev
);
300 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
301 ++dev
->stats
.tx_dropped
;
302 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
304 netif_tx_unlock_bh(dev
);
306 /* Clear the busy flag so we try again */
307 status
= test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
,
313 static int ipoib_mcast_sendonly_join(struct ipoib_mcast
*mcast
)
315 struct net_device
*dev
= mcast
->dev
;
316 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
317 struct ib_sa_mcmember_rec rec
= {
318 #if 0 /* Some SMs don't support send-only yet */
326 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
327 ipoib_dbg_mcast(priv
, "device shutting down, no multicast joins\n");
331 if (test_and_set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)) {
332 ipoib_dbg_mcast(priv
, "multicast entry busy, skipping\n");
336 rec
.mgid
= mcast
->mcmember
.mgid
;
337 rec
.port_gid
= priv
->local_gid
;
338 rec
.pkey
= cpu_to_be16(priv
->pkey
);
340 mcast
->mc
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
,
342 IB_SA_MCMEMBER_REC_MGID
|
343 IB_SA_MCMEMBER_REC_PORT_GID
|
344 IB_SA_MCMEMBER_REC_PKEY
|
345 IB_SA_MCMEMBER_REC_JOIN_STATE
,
347 ipoib_mcast_sendonly_join_complete
,
349 if (IS_ERR(mcast
->mc
)) {
350 ret
= PTR_ERR(mcast
->mc
);
351 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
352 ipoib_warn(priv
, "ib_sa_join_multicast failed (ret = %d)\n",
355 ipoib_dbg_mcast(priv
, "no multicast record for %pI6, starting join\n",
356 mcast
->mcmember
.mgid
.raw
);
362 void ipoib_mcast_carrier_on_task(struct work_struct
*work
)
364 struct ipoib_dev_priv
*priv
= container_of(work
, struct ipoib_dev_priv
,
366 struct ib_port_attr attr
;
369 * Take rtnl_lock to avoid racing with ipoib_stop() and
370 * turning the carrier back on while a device is being
373 if (ib_query_port(priv
->ca
, priv
->port
, &attr
) ||
374 attr
.state
!= IB_PORT_ACTIVE
) {
375 ipoib_dbg(priv
, "Keeping carrier off until IB port is active\n");
380 netif_carrier_on(priv
->dev
);
384 static int ipoib_mcast_join_complete(int status
,
385 struct ib_sa_multicast
*multicast
)
387 struct ipoib_mcast
*mcast
= multicast
->context
;
388 struct net_device
*dev
= mcast
->dev
;
389 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
391 ipoib_dbg_mcast(priv
, "join completion for %pI6 (status %d)\n",
392 mcast
->mcmember
.mgid
.raw
, status
);
394 /* We trap for port events ourselves. */
395 if (status
== -ENETRESET
)
399 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
403 mutex_lock(&mcast_mutex
);
404 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
405 queue_delayed_work(ipoib_workqueue
,
406 &priv
->mcast_task
, 0);
407 mutex_unlock(&mcast_mutex
);
410 * Defer carrier on work to ipoib_workqueue to avoid a
411 * deadlock on rtnl_lock here.
413 if (mcast
== priv
->broadcast
)
414 queue_work(ipoib_workqueue
, &priv
->carrier_on_task
);
419 if (mcast
->logcount
++ < 20) {
420 if (status
== -ETIMEDOUT
|| status
== -EAGAIN
) {
421 ipoib_dbg_mcast(priv
, "multicast join failed for %pI6, status %d\n",
422 mcast
->mcmember
.mgid
.raw
, status
);
424 ipoib_warn(priv
, "multicast join failed for %pI6, status %d\n",
425 mcast
->mcmember
.mgid
.raw
, status
);
430 if (mcast
->backoff
> IPOIB_MAX_BACKOFF_SECONDS
)
431 mcast
->backoff
= IPOIB_MAX_BACKOFF_SECONDS
;
433 /* Clear the busy flag so we try again */
434 status
= test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
436 mutex_lock(&mcast_mutex
);
437 spin_lock_irq(&priv
->lock
);
438 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
439 queue_delayed_work(ipoib_workqueue
, &priv
->mcast_task
,
440 mcast
->backoff
* HZ
);
441 spin_unlock_irq(&priv
->lock
);
442 mutex_unlock(&mcast_mutex
);
447 static void ipoib_mcast_join(struct net_device
*dev
, struct ipoib_mcast
*mcast
,
450 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
451 struct ib_sa_mcmember_rec rec
= {
454 ib_sa_comp_mask comp_mask
;
457 ipoib_dbg_mcast(priv
, "joining MGID %pI6\n", mcast
->mcmember
.mgid
.raw
);
459 rec
.mgid
= mcast
->mcmember
.mgid
;
460 rec
.port_gid
= priv
->local_gid
;
461 rec
.pkey
= cpu_to_be16(priv
->pkey
);
464 IB_SA_MCMEMBER_REC_MGID
|
465 IB_SA_MCMEMBER_REC_PORT_GID
|
466 IB_SA_MCMEMBER_REC_PKEY
|
467 IB_SA_MCMEMBER_REC_JOIN_STATE
;
471 IB_SA_MCMEMBER_REC_QKEY
|
472 IB_SA_MCMEMBER_REC_MTU_SELECTOR
|
473 IB_SA_MCMEMBER_REC_MTU
|
474 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS
|
475 IB_SA_MCMEMBER_REC_RATE_SELECTOR
|
476 IB_SA_MCMEMBER_REC_RATE
|
477 IB_SA_MCMEMBER_REC_SL
|
478 IB_SA_MCMEMBER_REC_FLOW_LABEL
|
479 IB_SA_MCMEMBER_REC_HOP_LIMIT
;
481 rec
.qkey
= priv
->broadcast
->mcmember
.qkey
;
482 rec
.mtu_selector
= IB_SA_EQ
;
483 rec
.mtu
= priv
->broadcast
->mcmember
.mtu
;
484 rec
.traffic_class
= priv
->broadcast
->mcmember
.traffic_class
;
485 rec
.rate_selector
= IB_SA_EQ
;
486 rec
.rate
= priv
->broadcast
->mcmember
.rate
;
487 rec
.sl
= priv
->broadcast
->mcmember
.sl
;
488 rec
.flow_label
= priv
->broadcast
->mcmember
.flow_label
;
489 rec
.hop_limit
= priv
->broadcast
->mcmember
.hop_limit
;
492 set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
493 mcast
->mc
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
, priv
->port
,
494 &rec
, comp_mask
, GFP_KERNEL
,
495 ipoib_mcast_join_complete
, mcast
);
496 if (IS_ERR(mcast
->mc
)) {
497 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
498 ret
= PTR_ERR(mcast
->mc
);
499 ipoib_warn(priv
, "ib_sa_join_multicast failed, status %d\n", ret
);
502 if (mcast
->backoff
> IPOIB_MAX_BACKOFF_SECONDS
)
503 mcast
->backoff
= IPOIB_MAX_BACKOFF_SECONDS
;
505 mutex_lock(&mcast_mutex
);
506 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
507 queue_delayed_work(ipoib_workqueue
,
509 mcast
->backoff
* HZ
);
510 mutex_unlock(&mcast_mutex
);
514 void ipoib_mcast_join_task(struct work_struct
*work
)
516 struct ipoib_dev_priv
*priv
=
517 container_of(work
, struct ipoib_dev_priv
, mcast_task
.work
);
518 struct net_device
*dev
= priv
->dev
;
520 if (!test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
523 if (ib_query_gid(priv
->ca
, priv
->port
, 0, &priv
->local_gid
))
524 ipoib_warn(priv
, "ib_query_gid() failed\n");
526 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
529 struct ib_port_attr attr
;
531 if (!ib_query_port(priv
->ca
, priv
->port
, &attr
))
532 priv
->local_lid
= attr
.lid
;
534 ipoib_warn(priv
, "ib_query_port failed\n");
537 if (!priv
->broadcast
) {
538 struct ipoib_mcast
*broadcast
;
540 if (!test_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
))
543 broadcast
= ipoib_mcast_alloc(dev
, 1);
545 ipoib_warn(priv
, "failed to allocate broadcast group\n");
546 mutex_lock(&mcast_mutex
);
547 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
548 queue_delayed_work(ipoib_workqueue
,
549 &priv
->mcast_task
, HZ
);
550 mutex_unlock(&mcast_mutex
);
554 spin_lock_irq(&priv
->lock
);
555 memcpy(broadcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
556 sizeof (union ib_gid
));
557 priv
->broadcast
= broadcast
;
559 __ipoib_mcast_add(dev
, priv
->broadcast
);
560 spin_unlock_irq(&priv
->lock
);
563 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
564 if (!test_bit(IPOIB_MCAST_FLAG_BUSY
, &priv
->broadcast
->flags
))
565 ipoib_mcast_join(dev
, priv
->broadcast
, 0);
570 struct ipoib_mcast
*mcast
= NULL
;
572 spin_lock_irq(&priv
->lock
);
573 list_for_each_entry(mcast
, &priv
->multicast_list
, list
) {
574 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)
575 && !test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)
576 && !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
577 /* Found the next unjoined group */
581 spin_unlock_irq(&priv
->lock
);
583 if (&mcast
->list
== &priv
->multicast_list
) {
588 ipoib_mcast_join(dev
, mcast
, 1);
592 priv
->mcast_mtu
= IPOIB_UD_MTU(ib_mtu_enum_to_int(priv
->broadcast
->mcmember
.mtu
));
594 if (!ipoib_cm_admin_enabled(dev
)) {
596 dev_set_mtu(dev
, min(priv
->mcast_mtu
, priv
->admin_mtu
));
600 ipoib_dbg_mcast(priv
, "successfully joined all multicast groups\n");
602 clear_bit(IPOIB_MCAST_RUN
, &priv
->flags
);
605 int ipoib_mcast_start_thread(struct net_device
*dev
)
607 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
609 ipoib_dbg_mcast(priv
, "starting multicast thread\n");
611 mutex_lock(&mcast_mutex
);
612 if (!test_and_set_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
613 queue_delayed_work(ipoib_workqueue
, &priv
->mcast_task
, 0);
614 mutex_unlock(&mcast_mutex
);
619 int ipoib_mcast_stop_thread(struct net_device
*dev
, int flush
)
621 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
623 ipoib_dbg_mcast(priv
, "stopping multicast thread\n");
625 mutex_lock(&mcast_mutex
);
626 clear_bit(IPOIB_MCAST_RUN
, &priv
->flags
);
627 cancel_delayed_work(&priv
->mcast_task
);
628 mutex_unlock(&mcast_mutex
);
631 flush_workqueue(ipoib_workqueue
);
636 static int ipoib_mcast_leave(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
638 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
641 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
642 ib_sa_free_multicast(mcast
->mc
);
644 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
645 ipoib_dbg_mcast(priv
, "leaving MGID %pI6\n",
646 mcast
->mcmember
.mgid
.raw
);
648 /* Remove ourselves from the multicast group */
649 ret
= ib_detach_mcast(priv
->qp
, &mcast
->mcmember
.mgid
,
650 be16_to_cpu(mcast
->mcmember
.mlid
));
652 ipoib_warn(priv
, "ib_detach_mcast failed (result = %d)\n", ret
);
658 void ipoib_mcast_send(struct net_device
*dev
, void *mgid
, struct sk_buff
*skb
)
660 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
661 struct ipoib_mcast
*mcast
;
664 spin_lock_irqsave(&priv
->lock
, flags
);
666 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
) ||
668 !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
669 ++dev
->stats
.tx_dropped
;
670 dev_kfree_skb_any(skb
);
674 mcast
= __ipoib_mcast_find(dev
, mgid
);
676 /* Let's create a new send only group now */
677 ipoib_dbg_mcast(priv
, "setting up send only multicast group for %pI6\n",
680 mcast
= ipoib_mcast_alloc(dev
, 0);
682 ipoib_warn(priv
, "unable to allocate memory for "
683 "multicast structure\n");
684 ++dev
->stats
.tx_dropped
;
685 dev_kfree_skb_any(skb
);
689 set_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
);
690 memcpy(mcast
->mcmember
.mgid
.raw
, mgid
, sizeof (union ib_gid
));
691 __ipoib_mcast_add(dev
, mcast
);
692 list_add_tail(&mcast
->list
, &priv
->multicast_list
);
696 if (skb_queue_len(&mcast
->pkt_queue
) < IPOIB_MAX_MCAST_QUEUE
)
697 skb_queue_tail(&mcast
->pkt_queue
, skb
);
699 ++dev
->stats
.tx_dropped
;
700 dev_kfree_skb_any(skb
);
703 if (test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
704 ipoib_dbg_mcast(priv
, "no address vector, "
705 "but multicast join already started\n");
706 else if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
))
707 ipoib_mcast_sendonly_join(mcast
);
710 * If lookup completes between here and out:, don't
711 * want to send packet twice.
717 if (mcast
&& mcast
->ah
) {
719 skb_dst(skb
)->neighbour
&&
720 !*to_ipoib_neigh(skb_dst(skb
)->neighbour
)) {
721 struct ipoib_neigh
*neigh
= ipoib_neigh_alloc(skb_dst(skb
)->neighbour
,
725 kref_get(&mcast
->ah
->ref
);
726 neigh
->ah
= mcast
->ah
;
727 list_add_tail(&neigh
->list
, &mcast
->neigh_list
);
731 spin_unlock_irqrestore(&priv
->lock
, flags
);
732 ipoib_send(dev
, skb
, mcast
->ah
, IB_MULTICAST_QPN
);
737 spin_unlock_irqrestore(&priv
->lock
, flags
);
740 void ipoib_mcast_dev_flush(struct net_device
*dev
)
742 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
743 LIST_HEAD(remove_list
);
744 struct ipoib_mcast
*mcast
, *tmcast
;
747 ipoib_dbg_mcast(priv
, "flushing multicast list\n");
749 spin_lock_irqsave(&priv
->lock
, flags
);
751 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
752 list_del(&mcast
->list
);
753 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
754 list_add_tail(&mcast
->list
, &remove_list
);
757 if (priv
->broadcast
) {
758 rb_erase(&priv
->broadcast
->rb_node
, &priv
->multicast_tree
);
759 list_add_tail(&priv
->broadcast
->list
, &remove_list
);
760 priv
->broadcast
= NULL
;
763 spin_unlock_irqrestore(&priv
->lock
, flags
);
765 list_for_each_entry_safe(mcast
, tmcast
, &remove_list
, list
) {
766 ipoib_mcast_leave(dev
, mcast
);
767 ipoib_mcast_free(mcast
);
771 static int ipoib_mcast_addr_is_valid(const u8
*addr
, const u8
*broadcast
)
773 /* reserved QPN, prefix, scope */
774 if (memcmp(addr
, broadcast
, 6))
776 /* signature lower, pkey */
777 if (memcmp(addr
+ 7, broadcast
+ 7, 3))
782 void ipoib_mcast_restart_task(struct work_struct
*work
)
784 struct ipoib_dev_priv
*priv
=
785 container_of(work
, struct ipoib_dev_priv
, restart_task
);
786 struct net_device
*dev
= priv
->dev
;
787 struct netdev_hw_addr
*ha
;
788 struct ipoib_mcast
*mcast
, *tmcast
;
789 LIST_HEAD(remove_list
);
791 struct ib_sa_mcmember_rec rec
;
793 ipoib_dbg_mcast(priv
, "restarting multicast task\n");
795 ipoib_mcast_stop_thread(dev
, 0);
797 local_irq_save(flags
);
798 netif_addr_lock(dev
);
799 spin_lock(&priv
->lock
);
802 * Unfortunately, the networking core only gives us a list of all of
803 * the multicast hardware addresses. We need to figure out which ones
804 * are new and which ones have been removed
807 /* Clear out the found flag */
808 list_for_each_entry(mcast
, &priv
->multicast_list
, list
)
809 clear_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
811 /* Mark all of the entries that are found or don't exist */
812 netdev_for_each_mc_addr(ha
, dev
) {
815 if (!ipoib_mcast_addr_is_valid(ha
->addr
, dev
->broadcast
))
818 memcpy(mgid
.raw
, ha
->addr
+ 4, sizeof mgid
);
820 mcast
= __ipoib_mcast_find(dev
, &mgid
);
821 if (!mcast
|| test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
822 struct ipoib_mcast
*nmcast
;
824 /* ignore group which is directly joined by userspace */
825 if (test_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
) &&
826 !ib_sa_get_mcmember_rec(priv
->ca
, priv
->port
, &mgid
, &rec
)) {
827 ipoib_dbg_mcast(priv
, "ignoring multicast entry for mgid %pI6\n",
832 /* Not found or send-only group, let's add a new entry */
833 ipoib_dbg_mcast(priv
, "adding multicast entry for mgid %pI6\n",
836 nmcast
= ipoib_mcast_alloc(dev
, 0);
838 ipoib_warn(priv
, "unable to allocate memory for multicast structure\n");
842 set_bit(IPOIB_MCAST_FLAG_FOUND
, &nmcast
->flags
);
844 nmcast
->mcmember
.mgid
= mgid
;
847 /* Destroy the send only entry */
848 list_move_tail(&mcast
->list
, &remove_list
);
850 rb_replace_node(&mcast
->rb_node
,
852 &priv
->multicast_tree
);
854 __ipoib_mcast_add(dev
, nmcast
);
856 list_add_tail(&nmcast
->list
, &priv
->multicast_list
);
860 set_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
863 /* Remove all of the entries don't exist anymore */
864 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
865 if (!test_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
) &&
866 !test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
867 ipoib_dbg_mcast(priv
, "deleting multicast group %pI6\n",
868 mcast
->mcmember
.mgid
.raw
);
870 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
872 /* Move to the remove list */
873 list_move_tail(&mcast
->list
, &remove_list
);
877 spin_unlock(&priv
->lock
);
878 netif_addr_unlock(dev
);
879 local_irq_restore(flags
);
881 /* We have to cancel outside of the spinlock */
882 list_for_each_entry_safe(mcast
, tmcast
, &remove_list
, list
) {
883 ipoib_mcast_leave(mcast
->dev
, mcast
);
884 ipoib_mcast_free(mcast
);
887 if (test_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
))
888 ipoib_mcast_start_thread(dev
);
891 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
893 struct ipoib_mcast_iter
*ipoib_mcast_iter_init(struct net_device
*dev
)
895 struct ipoib_mcast_iter
*iter
;
897 iter
= kmalloc(sizeof *iter
, GFP_KERNEL
);
902 memset(iter
->mgid
.raw
, 0, 16);
904 if (ipoib_mcast_iter_next(iter
)) {
912 int ipoib_mcast_iter_next(struct ipoib_mcast_iter
*iter
)
914 struct ipoib_dev_priv
*priv
= netdev_priv(iter
->dev
);
916 struct ipoib_mcast
*mcast
;
919 spin_lock_irq(&priv
->lock
);
921 n
= rb_first(&priv
->multicast_tree
);
924 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
926 if (memcmp(iter
->mgid
.raw
, mcast
->mcmember
.mgid
.raw
,
927 sizeof (union ib_gid
)) < 0) {
928 iter
->mgid
= mcast
->mcmember
.mgid
;
929 iter
->created
= mcast
->created
;
930 iter
->queuelen
= skb_queue_len(&mcast
->pkt_queue
);
931 iter
->complete
= !!mcast
->ah
;
932 iter
->send_only
= !!(mcast
->flags
& (1 << IPOIB_MCAST_FLAG_SENDONLY
));
942 spin_unlock_irq(&priv
->lock
);
947 void ipoib_mcast_iter_read(struct ipoib_mcast_iter
*iter
,
949 unsigned long *created
,
950 unsigned int *queuelen
,
951 unsigned int *complete
,
952 unsigned int *send_only
)
955 *created
= iter
->created
;
956 *queuelen
= iter
->queuelen
;
957 *complete
= iter
->complete
;
958 *send_only
= iter
->send_only
;
961 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */