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>
48 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
49 static int mcast_debug_level
;
51 module_param(mcast_debug_level
, int, 0644);
52 MODULE_PARM_DESC(mcast_debug_level
,
53 "Enable multicast debug tracing if > 0");
56 static DEFINE_MUTEX(mcast_mutex
);
58 struct ipoib_mcast_iter
{
59 struct net_device
*dev
;
61 unsigned long created
;
62 unsigned int queuelen
;
63 unsigned int complete
;
64 unsigned int send_only
;
67 static void ipoib_mcast_free(struct ipoib_mcast
*mcast
)
69 struct net_device
*dev
= mcast
->dev
;
70 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
71 struct ipoib_neigh
*neigh
, *tmp
;
74 ipoib_dbg_mcast(netdev_priv(dev
), "deleting multicast group %pI6\n",
75 mcast
->mcmember
.mgid
.raw
);
77 spin_lock_irq(&priv
->lock
);
79 list_for_each_entry_safe(neigh
, tmp
, &mcast
->neigh_list
, list
) {
81 * It's safe to call ipoib_put_ah() inside priv->lock
82 * here, because we know that mcast->ah will always
83 * hold one more reference, so ipoib_put_ah() will
84 * never do more than decrement the ref count.
87 ipoib_put_ah(neigh
->ah
);
88 ipoib_neigh_free(dev
, neigh
);
91 spin_unlock_irq(&priv
->lock
);
94 ipoib_put_ah(mcast
->ah
);
96 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
98 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
101 netif_tx_lock_bh(dev
);
102 dev
->stats
.tx_dropped
+= tx_dropped
;
103 netif_tx_unlock_bh(dev
);
108 static struct ipoib_mcast
*ipoib_mcast_alloc(struct net_device
*dev
,
111 struct ipoib_mcast
*mcast
;
113 mcast
= kzalloc(sizeof *mcast
, can_sleep
? GFP_KERNEL
: GFP_ATOMIC
);
118 mcast
->created
= jiffies
;
121 INIT_LIST_HEAD(&mcast
->list
);
122 INIT_LIST_HEAD(&mcast
->neigh_list
);
123 skb_queue_head_init(&mcast
->pkt_queue
);
128 static struct ipoib_mcast
*__ipoib_mcast_find(struct net_device
*dev
, void *mgid
)
130 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
131 struct rb_node
*n
= priv
->multicast_tree
.rb_node
;
134 struct ipoib_mcast
*mcast
;
137 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
139 ret
= memcmp(mgid
, mcast
->mcmember
.mgid
.raw
,
140 sizeof (union ib_gid
));
152 static int __ipoib_mcast_add(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
154 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
155 struct rb_node
**n
= &priv
->multicast_tree
.rb_node
, *pn
= NULL
;
158 struct ipoib_mcast
*tmcast
;
162 tmcast
= rb_entry(pn
, struct ipoib_mcast
, rb_node
);
164 ret
= memcmp(mcast
->mcmember
.mgid
.raw
, tmcast
->mcmember
.mgid
.raw
,
165 sizeof (union ib_gid
));
174 rb_link_node(&mcast
->rb_node
, pn
, n
);
175 rb_insert_color(&mcast
->rb_node
, &priv
->multicast_tree
);
180 static int ipoib_mcast_join_finish(struct ipoib_mcast
*mcast
,
181 struct ib_sa_mcmember_rec
*mcmember
)
183 struct net_device
*dev
= mcast
->dev
;
184 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
189 mcast
->mcmember
= *mcmember
;
191 /* Set the cached Q_Key before we attach if it's the broadcast group */
192 if (!memcmp(mcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
193 sizeof (union ib_gid
))) {
194 spin_lock_irq(&priv
->lock
);
195 if (!priv
->broadcast
) {
196 spin_unlock_irq(&priv
->lock
);
199 priv
->qkey
= be32_to_cpu(priv
->broadcast
->mcmember
.qkey
);
200 spin_unlock_irq(&priv
->lock
);
201 priv
->tx_wr
.wr
.ud
.remote_qkey
= priv
->qkey
;
205 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
206 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
207 ipoib_warn(priv
, "multicast group %pI6 already attached\n",
208 mcast
->mcmember
.mgid
.raw
);
213 ret
= ipoib_mcast_attach(dev
, be16_to_cpu(mcast
->mcmember
.mlid
),
214 &mcast
->mcmember
.mgid
, set_qkey
);
216 ipoib_warn(priv
, "couldn't attach QP to multicast group %pI6\n",
217 mcast
->mcmember
.mgid
.raw
);
219 clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
);
225 struct ib_ah_attr av
= {
226 .dlid
= be16_to_cpu(mcast
->mcmember
.mlid
),
227 .port_num
= priv
->port
,
228 .sl
= mcast
->mcmember
.sl
,
229 .ah_flags
= IB_AH_GRH
,
230 .static_rate
= mcast
->mcmember
.rate
,
232 .flow_label
= be32_to_cpu(mcast
->mcmember
.flow_label
),
233 .hop_limit
= mcast
->mcmember
.hop_limit
,
235 .traffic_class
= mcast
->mcmember
.traffic_class
238 av
.grh
.dgid
= mcast
->mcmember
.mgid
;
240 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
242 ipoib_warn(priv
, "ib_address_create failed\n");
244 spin_lock_irq(&priv
->lock
);
246 spin_unlock_irq(&priv
->lock
);
248 ipoib_dbg_mcast(priv
, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
249 mcast
->mcmember
.mgid
.raw
,
251 be16_to_cpu(mcast
->mcmember
.mlid
),
256 /* actually send any queued packets */
257 netif_tx_lock_bh(dev
);
258 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
259 struct sk_buff
*skb
= skb_dequeue(&mcast
->pkt_queue
);
260 netif_tx_unlock_bh(dev
);
264 if (!skb_dst(skb
) || !skb_dst(skb
)->neighbour
) {
265 /* put pseudoheader back on for next time */
266 skb_push(skb
, sizeof (struct ipoib_pseudoheader
));
269 if (dev_queue_xmit(skb
))
270 ipoib_warn(priv
, "dev_queue_xmit failed to requeue packet\n");
271 netif_tx_lock_bh(dev
);
273 netif_tx_unlock_bh(dev
);
279 ipoib_mcast_sendonly_join_complete(int status
,
280 struct ib_sa_multicast
*multicast
)
282 struct ipoib_mcast
*mcast
= multicast
->context
;
283 struct net_device
*dev
= mcast
->dev
;
285 /* We trap for port events ourselves. */
286 if (status
== -ENETRESET
)
290 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
293 if (mcast
->logcount
++ < 20)
294 ipoib_dbg_mcast(netdev_priv(dev
), "multicast join failed for %pI6, status %d\n",
295 mcast
->mcmember
.mgid
.raw
, status
);
297 /* Flush out any queued packets */
298 netif_tx_lock_bh(dev
);
299 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
300 ++dev
->stats
.tx_dropped
;
301 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
303 netif_tx_unlock_bh(dev
);
305 /* Clear the busy flag so we try again */
306 status
= test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
,
312 static int ipoib_mcast_sendonly_join(struct ipoib_mcast
*mcast
)
314 struct net_device
*dev
= mcast
->dev
;
315 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
316 struct ib_sa_mcmember_rec rec
= {
317 #if 0 /* Some SMs don't support send-only yet */
325 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
326 ipoib_dbg_mcast(priv
, "device shutting down, no multicast joins\n");
330 if (test_and_set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)) {
331 ipoib_dbg_mcast(priv
, "multicast entry busy, skipping\n");
335 rec
.mgid
= mcast
->mcmember
.mgid
;
336 rec
.port_gid
= priv
->local_gid
;
337 rec
.pkey
= cpu_to_be16(priv
->pkey
);
339 mcast
->mc
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
,
341 IB_SA_MCMEMBER_REC_MGID
|
342 IB_SA_MCMEMBER_REC_PORT_GID
|
343 IB_SA_MCMEMBER_REC_PKEY
|
344 IB_SA_MCMEMBER_REC_JOIN_STATE
,
346 ipoib_mcast_sendonly_join_complete
,
348 if (IS_ERR(mcast
->mc
)) {
349 ret
= PTR_ERR(mcast
->mc
);
350 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
351 ipoib_warn(priv
, "ib_sa_join_multicast failed (ret = %d)\n",
354 ipoib_dbg_mcast(priv
, "no multicast record for %pI6, starting join\n",
355 mcast
->mcmember
.mgid
.raw
);
361 void ipoib_mcast_carrier_on_task(struct work_struct
*work
)
363 struct ipoib_dev_priv
*priv
= container_of(work
, struct ipoib_dev_priv
,
365 struct ib_port_attr attr
;
368 * Take rtnl_lock to avoid racing with ipoib_stop() and
369 * turning the carrier back on while a device is being
372 if (ib_query_port(priv
->ca
, priv
->port
, &attr
) ||
373 attr
.state
!= IB_PORT_ACTIVE
) {
374 ipoib_dbg(priv
, "Keeping carrier off until IB port is active\n");
379 netif_carrier_on(priv
->dev
);
383 static int ipoib_mcast_join_complete(int status
,
384 struct ib_sa_multicast
*multicast
)
386 struct ipoib_mcast
*mcast
= multicast
->context
;
387 struct net_device
*dev
= mcast
->dev
;
388 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
390 ipoib_dbg_mcast(priv
, "join completion for %pI6 (status %d)\n",
391 mcast
->mcmember
.mgid
.raw
, status
);
393 /* We trap for port events ourselves. */
394 if (status
== -ENETRESET
)
398 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
402 mutex_lock(&mcast_mutex
);
403 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
404 queue_delayed_work(ipoib_workqueue
,
405 &priv
->mcast_task
, 0);
406 mutex_unlock(&mcast_mutex
);
409 * Defer carrier on work to ipoib_workqueue to avoid a
410 * deadlock on rtnl_lock here.
412 if (mcast
== priv
->broadcast
)
413 queue_work(ipoib_workqueue
, &priv
->carrier_on_task
);
418 if (mcast
->logcount
++ < 20) {
419 if (status
== -ETIMEDOUT
|| status
== -EAGAIN
) {
420 ipoib_dbg_mcast(priv
, "multicast join failed for %pI6, status %d\n",
421 mcast
->mcmember
.mgid
.raw
, status
);
423 ipoib_warn(priv
, "multicast join failed for %pI6, status %d\n",
424 mcast
->mcmember
.mgid
.raw
, status
);
429 if (mcast
->backoff
> IPOIB_MAX_BACKOFF_SECONDS
)
430 mcast
->backoff
= IPOIB_MAX_BACKOFF_SECONDS
;
432 /* Clear the busy flag so we try again */
433 status
= test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
435 mutex_lock(&mcast_mutex
);
436 spin_lock_irq(&priv
->lock
);
437 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
438 queue_delayed_work(ipoib_workqueue
, &priv
->mcast_task
,
439 mcast
->backoff
* HZ
);
440 spin_unlock_irq(&priv
->lock
);
441 mutex_unlock(&mcast_mutex
);
446 static void ipoib_mcast_join(struct net_device
*dev
, struct ipoib_mcast
*mcast
,
449 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
450 struct ib_sa_mcmember_rec rec
= {
453 ib_sa_comp_mask comp_mask
;
456 ipoib_dbg_mcast(priv
, "joining MGID %pI6\n", mcast
->mcmember
.mgid
.raw
);
458 rec
.mgid
= mcast
->mcmember
.mgid
;
459 rec
.port_gid
= priv
->local_gid
;
460 rec
.pkey
= cpu_to_be16(priv
->pkey
);
463 IB_SA_MCMEMBER_REC_MGID
|
464 IB_SA_MCMEMBER_REC_PORT_GID
|
465 IB_SA_MCMEMBER_REC_PKEY
|
466 IB_SA_MCMEMBER_REC_JOIN_STATE
;
470 IB_SA_MCMEMBER_REC_QKEY
|
471 IB_SA_MCMEMBER_REC_MTU_SELECTOR
|
472 IB_SA_MCMEMBER_REC_MTU
|
473 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS
|
474 IB_SA_MCMEMBER_REC_RATE_SELECTOR
|
475 IB_SA_MCMEMBER_REC_RATE
|
476 IB_SA_MCMEMBER_REC_SL
|
477 IB_SA_MCMEMBER_REC_FLOW_LABEL
|
478 IB_SA_MCMEMBER_REC_HOP_LIMIT
;
480 rec
.qkey
= priv
->broadcast
->mcmember
.qkey
;
481 rec
.mtu_selector
= IB_SA_EQ
;
482 rec
.mtu
= priv
->broadcast
->mcmember
.mtu
;
483 rec
.traffic_class
= priv
->broadcast
->mcmember
.traffic_class
;
484 rec
.rate_selector
= IB_SA_EQ
;
485 rec
.rate
= priv
->broadcast
->mcmember
.rate
;
486 rec
.sl
= priv
->broadcast
->mcmember
.sl
;
487 rec
.flow_label
= priv
->broadcast
->mcmember
.flow_label
;
488 rec
.hop_limit
= priv
->broadcast
->mcmember
.hop_limit
;
491 set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
492 mcast
->mc
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
, priv
->port
,
493 &rec
, comp_mask
, GFP_KERNEL
,
494 ipoib_mcast_join_complete
, mcast
);
495 if (IS_ERR(mcast
->mc
)) {
496 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
497 ret
= PTR_ERR(mcast
->mc
);
498 ipoib_warn(priv
, "ib_sa_join_multicast failed, status %d\n", ret
);
501 if (mcast
->backoff
> IPOIB_MAX_BACKOFF_SECONDS
)
502 mcast
->backoff
= IPOIB_MAX_BACKOFF_SECONDS
;
504 mutex_lock(&mcast_mutex
);
505 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
506 queue_delayed_work(ipoib_workqueue
,
508 mcast
->backoff
* HZ
);
509 mutex_unlock(&mcast_mutex
);
513 void ipoib_mcast_join_task(struct work_struct
*work
)
515 struct ipoib_dev_priv
*priv
=
516 container_of(work
, struct ipoib_dev_priv
, mcast_task
.work
);
517 struct net_device
*dev
= priv
->dev
;
519 if (!test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
522 if (ib_query_gid(priv
->ca
, priv
->port
, 0, &priv
->local_gid
))
523 ipoib_warn(priv
, "ib_query_gid() failed\n");
525 memcpy(priv
->dev
->dev_addr
+ 4, priv
->local_gid
.raw
, sizeof (union ib_gid
));
528 struct ib_port_attr attr
;
530 if (!ib_query_port(priv
->ca
, priv
->port
, &attr
))
531 priv
->local_lid
= attr
.lid
;
533 ipoib_warn(priv
, "ib_query_port failed\n");
536 if (!priv
->broadcast
) {
537 struct ipoib_mcast
*broadcast
;
539 if (!test_bit(IPOIB_FLAG_ADMIN_UP
, &priv
->flags
))
542 broadcast
= ipoib_mcast_alloc(dev
, 1);
544 ipoib_warn(priv
, "failed to allocate broadcast group\n");
545 mutex_lock(&mcast_mutex
);
546 if (test_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
547 queue_delayed_work(ipoib_workqueue
,
548 &priv
->mcast_task
, HZ
);
549 mutex_unlock(&mcast_mutex
);
553 spin_lock_irq(&priv
->lock
);
554 memcpy(broadcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
555 sizeof (union ib_gid
));
556 priv
->broadcast
= broadcast
;
558 __ipoib_mcast_add(dev
, priv
->broadcast
);
559 spin_unlock_irq(&priv
->lock
);
562 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
563 if (!test_bit(IPOIB_MCAST_FLAG_BUSY
, &priv
->broadcast
->flags
))
564 ipoib_mcast_join(dev
, priv
->broadcast
, 0);
569 struct ipoib_mcast
*mcast
= NULL
;
571 spin_lock_irq(&priv
->lock
);
572 list_for_each_entry(mcast
, &priv
->multicast_list
, list
) {
573 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)
574 && !test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)
575 && !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
576 /* Found the next unjoined group */
580 spin_unlock_irq(&priv
->lock
);
582 if (&mcast
->list
== &priv
->multicast_list
) {
587 ipoib_mcast_join(dev
, mcast
, 1);
591 priv
->mcast_mtu
= IPOIB_UD_MTU(ib_mtu_enum_to_int(priv
->broadcast
->mcmember
.mtu
));
593 if (!ipoib_cm_admin_enabled(dev
)) {
595 dev_set_mtu(dev
, min(priv
->mcast_mtu
, priv
->admin_mtu
));
599 ipoib_dbg_mcast(priv
, "successfully joined all multicast groups\n");
601 clear_bit(IPOIB_MCAST_RUN
, &priv
->flags
);
604 int ipoib_mcast_start_thread(struct net_device
*dev
)
606 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
608 ipoib_dbg_mcast(priv
, "starting multicast thread\n");
610 mutex_lock(&mcast_mutex
);
611 if (!test_and_set_bit(IPOIB_MCAST_RUN
, &priv
->flags
))
612 queue_delayed_work(ipoib_workqueue
, &priv
->mcast_task
, 0);
613 mutex_unlock(&mcast_mutex
);
618 int ipoib_mcast_stop_thread(struct net_device
*dev
, int flush
)
620 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
622 ipoib_dbg_mcast(priv
, "stopping multicast thread\n");
624 mutex_lock(&mcast_mutex
);
625 clear_bit(IPOIB_MCAST_RUN
, &priv
->flags
);
626 cancel_delayed_work(&priv
->mcast_task
);
627 mutex_unlock(&mcast_mutex
);
630 flush_workqueue(ipoib_workqueue
);
635 static int ipoib_mcast_leave(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
637 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
640 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
641 ib_sa_free_multicast(mcast
->mc
);
643 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
644 ipoib_dbg_mcast(priv
, "leaving MGID %pI6\n",
645 mcast
->mcmember
.mgid
.raw
);
647 /* Remove ourselves from the multicast group */
648 ret
= ib_detach_mcast(priv
->qp
, &mcast
->mcmember
.mgid
,
649 be16_to_cpu(mcast
->mcmember
.mlid
));
651 ipoib_warn(priv
, "ib_detach_mcast failed (result = %d)\n", ret
);
657 void ipoib_mcast_send(struct net_device
*dev
, void *mgid
, struct sk_buff
*skb
)
659 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
660 struct ipoib_mcast
*mcast
;
663 spin_lock_irqsave(&priv
->lock
, flags
);
665 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
) ||
667 !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
668 ++dev
->stats
.tx_dropped
;
669 dev_kfree_skb_any(skb
);
673 mcast
= __ipoib_mcast_find(dev
, mgid
);
675 /* Let's create a new send only group now */
676 ipoib_dbg_mcast(priv
, "setting up send only multicast group for %pI6\n",
679 mcast
= ipoib_mcast_alloc(dev
, 0);
681 ipoib_warn(priv
, "unable to allocate memory for "
682 "multicast structure\n");
683 ++dev
->stats
.tx_dropped
;
684 dev_kfree_skb_any(skb
);
688 set_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
);
689 memcpy(mcast
->mcmember
.mgid
.raw
, mgid
, sizeof (union ib_gid
));
690 __ipoib_mcast_add(dev
, mcast
);
691 list_add_tail(&mcast
->list
, &priv
->multicast_list
);
695 if (skb_queue_len(&mcast
->pkt_queue
) < IPOIB_MAX_MCAST_QUEUE
)
696 skb_queue_tail(&mcast
->pkt_queue
, skb
);
698 ++dev
->stats
.tx_dropped
;
699 dev_kfree_skb_any(skb
);
702 if (test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
703 ipoib_dbg_mcast(priv
, "no address vector, "
704 "but multicast join already started\n");
705 else if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
))
706 ipoib_mcast_sendonly_join(mcast
);
709 * If lookup completes between here and out:, don't
710 * want to send packet twice.
716 if (mcast
&& mcast
->ah
) {
718 skb_dst(skb
)->neighbour
&&
719 !*to_ipoib_neigh(skb_dst(skb
)->neighbour
)) {
720 struct ipoib_neigh
*neigh
= ipoib_neigh_alloc(skb_dst(skb
)->neighbour
,
724 kref_get(&mcast
->ah
->ref
);
725 neigh
->ah
= mcast
->ah
;
726 list_add_tail(&neigh
->list
, &mcast
->neigh_list
);
730 spin_unlock_irqrestore(&priv
->lock
, flags
);
731 ipoib_send(dev
, skb
, mcast
->ah
, IB_MULTICAST_QPN
);
736 spin_unlock_irqrestore(&priv
->lock
, flags
);
739 void ipoib_mcast_dev_flush(struct net_device
*dev
)
741 struct ipoib_dev_priv
*priv
= netdev_priv(dev
);
742 LIST_HEAD(remove_list
);
743 struct ipoib_mcast
*mcast
, *tmcast
;
746 ipoib_dbg_mcast(priv
, "flushing multicast list\n");
748 spin_lock_irqsave(&priv
->lock
, flags
);
750 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
751 list_del(&mcast
->list
);
752 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
753 list_add_tail(&mcast
->list
, &remove_list
);
756 if (priv
->broadcast
) {
757 rb_erase(&priv
->broadcast
->rb_node
, &priv
->multicast_tree
);
758 list_add_tail(&priv
->broadcast
->list
, &remove_list
);
759 priv
->broadcast
= NULL
;
762 spin_unlock_irqrestore(&priv
->lock
, flags
);
764 list_for_each_entry_safe(mcast
, tmcast
, &remove_list
, list
) {
765 ipoib_mcast_leave(dev
, mcast
);
766 ipoib_mcast_free(mcast
);
770 static int ipoib_mcast_addr_is_valid(const u8
*addr
, const u8
*broadcast
)
772 /* reserved QPN, prefix, scope */
773 if (memcmp(addr
, broadcast
, 6))
775 /* signature lower, pkey */
776 if (memcmp(addr
+ 7, broadcast
+ 7, 3))
781 void ipoib_mcast_restart_task(struct work_struct
*work
)
783 struct ipoib_dev_priv
*priv
=
784 container_of(work
, struct ipoib_dev_priv
, restart_task
);
785 struct net_device
*dev
= priv
->dev
;
786 struct dev_mc_list
*mclist
;
787 struct ipoib_mcast
*mcast
, *tmcast
;
788 LIST_HEAD(remove_list
);
790 struct ib_sa_mcmember_rec rec
;
792 ipoib_dbg_mcast(priv
, "restarting multicast task\n");
794 ipoib_mcast_stop_thread(dev
, 0);
796 local_irq_save(flags
);
797 netif_addr_lock(dev
);
798 spin_lock(&priv
->lock
);
801 * Unfortunately, the networking core only gives us a list of all of
802 * the multicast hardware addresses. We need to figure out which ones
803 * are new and which ones have been removed
806 /* Clear out the found flag */
807 list_for_each_entry(mcast
, &priv
->multicast_list
, list
)
808 clear_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
810 /* Mark all of the entries that are found or don't exist */
811 netdev_for_each_mc_addr(mclist
, dev
) {
814 if (!ipoib_mcast_addr_is_valid(mclist
->dmi_addr
,
818 memcpy(mgid
.raw
, mclist
->dmi_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 */