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>
37 #include <linux/moduleparam.h>
40 #include <linux/igmp.h>
41 #include <linux/inetdevice.h>
42 #include <linux/delay.h>
43 #include <linux/completion.h>
44 #include <linux/slab.h>
50 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
51 static int mcast_debug_level
;
53 module_param(mcast_debug_level
, int, 0644);
54 MODULE_PARM_DESC(mcast_debug_level
,
55 "Enable multicast debug tracing if > 0");
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 /* join state that allows creating mcg with sendonly member request */
68 #define SENDONLY_FULLMEMBER_JOIN 8
71 * This should be called with the priv->lock held
73 static void __ipoib_mcast_schedule_join_thread(struct ipoib_dev_priv
*priv
,
74 struct ipoib_mcast
*mcast
,
77 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
81 * We will be scheduling *something*, so cancel whatever is
82 * currently scheduled first
84 cancel_delayed_work(&priv
->mcast_task
);
87 * We had a failure and want to schedule a retry later
90 if (mcast
->backoff
> IPOIB_MAX_BACKOFF_SECONDS
)
91 mcast
->backoff
= IPOIB_MAX_BACKOFF_SECONDS
;
92 mcast
->delay_until
= jiffies
+ (mcast
->backoff
* HZ
);
94 * Mark this mcast for its delay, but restart the
95 * task immediately. The join task will make sure to
96 * clear out all entries without delays, and then
97 * schedule itself to run again when the earliest
100 queue_delayed_work(priv
->wq
, &priv
->mcast_task
, 0);
103 * Special case of retrying after a failure to
104 * allocate the broadcast multicast group, wait
105 * 1 second and try again
107 queue_delayed_work(priv
->wq
, &priv
->mcast_task
, HZ
);
109 queue_delayed_work(priv
->wq
, &priv
->mcast_task
, 0);
112 static void ipoib_mcast_free(struct ipoib_mcast
*mcast
)
114 struct net_device
*dev
= mcast
->dev
;
117 ipoib_dbg_mcast(ipoib_priv(dev
), "deleting multicast group %pI6\n",
118 mcast
->mcmember
.mgid
.raw
);
120 /* remove all neigh connected to this mcast */
121 ipoib_del_neighs_by_gid(dev
, mcast
->mcmember
.mgid
.raw
);
124 ipoib_put_ah(mcast
->ah
);
126 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
128 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
131 netif_tx_lock_bh(dev
);
132 dev
->stats
.tx_dropped
+= tx_dropped
;
133 netif_tx_unlock_bh(dev
);
138 static struct ipoib_mcast
*ipoib_mcast_alloc(struct net_device
*dev
)
140 struct ipoib_mcast
*mcast
;
142 mcast
= kzalloc(sizeof(*mcast
), GFP_ATOMIC
);
147 mcast
->created
= jiffies
;
148 mcast
->delay_until
= jiffies
;
151 INIT_LIST_HEAD(&mcast
->list
);
152 INIT_LIST_HEAD(&mcast
->neigh_list
);
153 skb_queue_head_init(&mcast
->pkt_queue
);
158 static struct ipoib_mcast
*__ipoib_mcast_find(struct net_device
*dev
, void *mgid
)
160 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
161 struct rb_node
*n
= priv
->multicast_tree
.rb_node
;
164 struct ipoib_mcast
*mcast
;
167 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
169 ret
= memcmp(mgid
, mcast
->mcmember
.mgid
.raw
,
170 sizeof (union ib_gid
));
182 static int __ipoib_mcast_add(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
184 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
185 struct rb_node
**n
= &priv
->multicast_tree
.rb_node
, *pn
= NULL
;
188 struct ipoib_mcast
*tmcast
;
192 tmcast
= rb_entry(pn
, struct ipoib_mcast
, rb_node
);
194 ret
= memcmp(mcast
->mcmember
.mgid
.raw
, tmcast
->mcmember
.mgid
.raw
,
195 sizeof (union ib_gid
));
204 rb_link_node(&mcast
->rb_node
, pn
, n
);
205 rb_insert_color(&mcast
->rb_node
, &priv
->multicast_tree
);
210 static int ipoib_mcast_join_finish(struct ipoib_mcast
*mcast
,
211 struct ib_sa_mcmember_rec
*mcmember
)
213 struct net_device
*dev
= mcast
->dev
;
214 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
215 struct rdma_netdev
*rn
= netdev_priv(dev
);
217 struct rdma_ah_attr av
;
222 mcast
->mcmember
= *mcmember
;
224 /* Set the multicast MTU and cached Q_Key before we attach if it's
225 * the broadcast group.
227 if (!memcmp(mcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
228 sizeof (union ib_gid
))) {
229 spin_lock_irq(&priv
->lock
);
230 if (!priv
->broadcast
) {
231 spin_unlock_irq(&priv
->lock
);
234 /*update priv member according to the new mcast*/
235 priv
->broadcast
->mcmember
.qkey
= mcmember
->qkey
;
236 priv
->broadcast
->mcmember
.mtu
= mcmember
->mtu
;
237 priv
->broadcast
->mcmember
.traffic_class
= mcmember
->traffic_class
;
238 priv
->broadcast
->mcmember
.rate
= mcmember
->rate
;
239 priv
->broadcast
->mcmember
.sl
= mcmember
->sl
;
240 priv
->broadcast
->mcmember
.flow_label
= mcmember
->flow_label
;
241 priv
->broadcast
->mcmember
.hop_limit
= mcmember
->hop_limit
;
242 /* assume if the admin and the mcast are the same both can be changed */
243 mtu
= rdma_mtu_enum_to_int(priv
->ca
, priv
->port
,
244 priv
->broadcast
->mcmember
.mtu
);
245 if (priv
->mcast_mtu
== priv
->admin_mtu
)
246 priv
->admin_mtu
= IPOIB_UD_MTU(mtu
);
247 priv
->mcast_mtu
= IPOIB_UD_MTU(mtu
);
248 rn
->mtu
= priv
->mcast_mtu
;
250 priv
->qkey
= be32_to_cpu(priv
->broadcast
->mcmember
.qkey
);
251 spin_unlock_irq(&priv
->lock
);
252 priv
->tx_wr
.remote_qkey
= priv
->qkey
;
256 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
257 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
258 ipoib_warn(priv
, "multicast group %pI6 already attached\n",
259 mcast
->mcmember
.mgid
.raw
);
264 ret
= rn
->attach_mcast(dev
, priv
->ca
, &mcast
->mcmember
.mgid
,
265 be16_to_cpu(mcast
->mcmember
.mlid
),
266 set_qkey
, priv
->qkey
);
268 ipoib_warn(priv
, "couldn't attach QP to multicast group %pI6\n",
269 mcast
->mcmember
.mgid
.raw
);
271 clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
);
276 memset(&av
, 0, sizeof(av
));
277 av
.type
= rdma_ah_find_type(priv
->ca
, priv
->port
);
278 rdma_ah_set_dlid(&av
, be16_to_cpu(mcast
->mcmember
.mlid
)),
279 rdma_ah_set_port_num(&av
, priv
->port
);
280 rdma_ah_set_sl(&av
, mcast
->mcmember
.sl
);
281 rdma_ah_set_static_rate(&av
, mcast
->mcmember
.rate
);
283 rdma_ah_set_grh(&av
, &mcast
->mcmember
.mgid
,
284 be32_to_cpu(mcast
->mcmember
.flow_label
),
285 0, mcast
->mcmember
.hop_limit
,
286 mcast
->mcmember
.traffic_class
);
288 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
290 ipoib_warn(priv
, "ib_address_create failed %ld\n",
292 /* use original error */
295 spin_lock_irq(&priv
->lock
);
297 spin_unlock_irq(&priv
->lock
);
299 ipoib_dbg_mcast(priv
, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
300 mcast
->mcmember
.mgid
.raw
,
302 be16_to_cpu(mcast
->mcmember
.mlid
),
305 /* actually send any queued packets */
306 netif_tx_lock_bh(dev
);
307 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
308 struct sk_buff
*skb
= skb_dequeue(&mcast
->pkt_queue
);
310 netif_tx_unlock_bh(dev
);
314 ret
= dev_queue_xmit(skb
);
316 ipoib_warn(priv
, "%s:dev_queue_xmit failed to re-queue packet, ret:%d\n",
318 netif_tx_lock_bh(dev
);
320 netif_tx_unlock_bh(dev
);
325 void ipoib_mcast_carrier_on_task(struct work_struct
*work
)
327 struct ipoib_dev_priv
*priv
= container_of(work
, struct ipoib_dev_priv
,
329 struct ib_port_attr attr
;
331 if (ib_query_port(priv
->ca
, priv
->port
, &attr
) ||
332 attr
.state
!= IB_PORT_ACTIVE
) {
333 ipoib_dbg(priv
, "Keeping carrier off until IB port is active\n");
337 * Check if can send sendonly MCG's with sendonly-fullmember join state.
338 * It done here after the successfully join to the broadcast group,
339 * because the broadcast group must always be joined first and is always
340 * re-joined if the SM changes substantially.
342 priv
->sm_fullmember_sendonly_support
=
343 ib_sa_sendonly_fullmem_support(&ipoib_sa_client
,
344 priv
->ca
, priv
->port
);
346 * Take rtnl_lock to avoid racing with ipoib_stop() and
347 * turning the carrier back on while a device is being
348 * removed. However, ipoib_stop() will attempt to flush
349 * the workqueue while holding the rtnl lock, so loop
350 * on trylock until either we get the lock or we see
351 * FLAG_OPER_UP go away as that signals that we are bailing
352 * and can safely ignore the carrier on work.
354 while (!rtnl_trylock()) {
355 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
360 if (!ipoib_cm_admin_enabled(priv
->dev
))
361 dev_set_mtu(priv
->dev
, min(priv
->mcast_mtu
, priv
->admin_mtu
));
362 netif_carrier_on(priv
->dev
);
366 static int ipoib_mcast_join_complete(int status
,
367 struct ib_sa_multicast
*multicast
)
369 struct ipoib_mcast
*mcast
= multicast
->context
;
370 struct net_device
*dev
= mcast
->dev
;
371 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
373 ipoib_dbg_mcast(priv
, "%sjoin completion for %pI6 (status %d)\n",
374 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ?
376 mcast
->mcmember
.mgid
.raw
, status
);
378 /* We trap for port events ourselves. */
379 if (status
== -ENETRESET
) {
385 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
389 mcast
->delay_until
= jiffies
;
392 * Defer carrier on work to priv->wq to avoid a
393 * deadlock on rtnl_lock here. Requeue our multicast
394 * work too, which will end up happening right after
395 * our carrier on task work and will allow us to
396 * send out all of the non-broadcast joins
398 if (mcast
== priv
->broadcast
) {
399 spin_lock_irq(&priv
->lock
);
400 queue_work(priv
->wq
, &priv
->carrier_on_task
);
401 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
406 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
409 if (mcast
->logcount
< 20) {
410 if (status
== -ETIMEDOUT
|| status
== -EAGAIN
||
412 ipoib_dbg_mcast(priv
, "%smulticast join failed for %pI6, status %d\n",
413 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ? "sendonly " : "",
414 mcast
->mcmember
.mgid
.raw
, status
);
416 ipoib_warn(priv
, "%smulticast join failed for %pI6, status %d\n",
417 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ? "sendonly " : "",
418 mcast
->mcmember
.mgid
.raw
, status
);
425 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
426 mcast
->backoff
>= 2) {
428 * We only retry sendonly joins once before we drop
429 * the packet and quit trying to deal with the
430 * group. However, we leave the group in the
431 * mcast list as an unjoined group. If we want to
432 * try joining again, we simply queue up a packet
433 * and restart the join thread. The empty queue
434 * is why the join thread ignores this group.
437 netif_tx_lock_bh(dev
);
438 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
439 ++dev
->stats
.tx_dropped
;
440 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
442 netif_tx_unlock_bh(dev
);
444 spin_lock_irq(&priv
->lock
);
445 /* Requeue this join task with a backoff delay */
446 __ipoib_mcast_schedule_join_thread(priv
, mcast
, 1);
451 spin_lock_irq(&priv
->lock
);
454 * Make sure to set mcast->mc before we clear the busy flag to avoid
455 * racing with code that checks for BUSY before checking mcast->mc
460 mcast
->mc
= multicast
;
461 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
462 spin_unlock_irq(&priv
->lock
);
463 complete(&mcast
->done
);
469 * Caller must hold 'priv->lock'
471 static int ipoib_mcast_join(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
473 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
474 struct ib_sa_multicast
*multicast
;
475 struct ib_sa_mcmember_rec rec
= {
478 ib_sa_comp_mask comp_mask
;
481 if (!priv
->broadcast
||
482 !test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
485 init_completion(&mcast
->done
);
486 set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
488 ipoib_dbg_mcast(priv
, "joining MGID %pI6\n", mcast
->mcmember
.mgid
.raw
);
490 rec
.mgid
= mcast
->mcmember
.mgid
;
491 rec
.port_gid
= priv
->local_gid
;
492 rec
.pkey
= cpu_to_be16(priv
->pkey
);
495 IB_SA_MCMEMBER_REC_MGID
|
496 IB_SA_MCMEMBER_REC_PORT_GID
|
497 IB_SA_MCMEMBER_REC_PKEY
|
498 IB_SA_MCMEMBER_REC_JOIN_STATE
;
500 if (mcast
!= priv
->broadcast
) {
503 * The MGID MUST use the same P_Key, Q_Key, SL, MTU,
504 * and HopLimit as those used in the broadcast-GID. The rest
505 * of attributes SHOULD follow the values used in the
506 * broadcast-GID as well.
509 IB_SA_MCMEMBER_REC_QKEY
|
510 IB_SA_MCMEMBER_REC_MTU_SELECTOR
|
511 IB_SA_MCMEMBER_REC_MTU
|
512 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS
|
513 IB_SA_MCMEMBER_REC_RATE_SELECTOR
|
514 IB_SA_MCMEMBER_REC_RATE
|
515 IB_SA_MCMEMBER_REC_SL
|
516 IB_SA_MCMEMBER_REC_FLOW_LABEL
|
517 IB_SA_MCMEMBER_REC_HOP_LIMIT
;
519 rec
.qkey
= priv
->broadcast
->mcmember
.qkey
;
520 rec
.mtu_selector
= IB_SA_EQ
;
521 rec
.mtu
= priv
->broadcast
->mcmember
.mtu
;
522 rec
.traffic_class
= priv
->broadcast
->mcmember
.traffic_class
;
523 rec
.rate_selector
= IB_SA_EQ
;
524 rec
.rate
= priv
->broadcast
->mcmember
.rate
;
525 rec
.sl
= priv
->broadcast
->mcmember
.sl
;
526 rec
.flow_label
= priv
->broadcast
->mcmember
.flow_label
;
527 rec
.hop_limit
= priv
->broadcast
->mcmember
.hop_limit
;
530 * Send-only IB Multicast joins work at the core IB layer but
531 * require specific SM support.
532 * We can use such joins here only if the current SM supports that feature.
533 * However, if not, we emulate an Ethernet multicast send,
534 * which does not require a multicast subscription and will
535 * still send properly. The most appropriate thing to
536 * do is to create the group if it doesn't exist as that
537 * most closely emulates the behavior, from a user space
538 * application perspective, of Ethernet multicast operation.
540 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
541 priv
->sm_fullmember_sendonly_support
)
542 /* SM supports sendonly-fullmember, otherwise fallback to full-member */
543 rec
.join_state
= SENDONLY_FULLMEMBER_JOIN
;
545 spin_unlock_irq(&priv
->lock
);
547 multicast
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
, priv
->port
,
548 &rec
, comp_mask
, GFP_KERNEL
,
549 ipoib_mcast_join_complete
, mcast
);
550 spin_lock_irq(&priv
->lock
);
551 if (IS_ERR(multicast
)) {
552 ret
= PTR_ERR(multicast
);
553 ipoib_warn(priv
, "ib_sa_join_multicast failed, status %d\n", ret
);
554 /* Requeue this join task with a backoff delay */
555 __ipoib_mcast_schedule_join_thread(priv
, mcast
, 1);
556 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
557 spin_unlock_irq(&priv
->lock
);
558 complete(&mcast
->done
);
559 spin_lock_irq(&priv
->lock
);
564 void ipoib_mcast_join_task(struct work_struct
*work
)
566 struct ipoib_dev_priv
*priv
=
567 container_of(work
, struct ipoib_dev_priv
, mcast_task
.work
);
568 struct net_device
*dev
= priv
->dev
;
569 struct ib_port_attr port_attr
;
570 unsigned long delay_until
= 0;
571 struct ipoib_mcast
*mcast
= NULL
;
573 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
576 if (ib_query_port(priv
->ca
, priv
->port
, &port_attr
)) {
577 ipoib_dbg(priv
, "ib_query_port() failed\n");
580 if (port_attr
.state
!= IB_PORT_ACTIVE
) {
581 ipoib_dbg(priv
, "port state is not ACTIVE (state = %d) suspending join task\n",
585 priv
->local_lid
= port_attr
.lid
;
586 netif_addr_lock_bh(dev
);
588 if (!test_bit(IPOIB_FLAG_DEV_ADDR_SET
, &priv
->flags
)) {
589 netif_addr_unlock_bh(dev
);
592 netif_addr_unlock_bh(dev
);
594 spin_lock_irq(&priv
->lock
);
595 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
598 if (!priv
->broadcast
) {
599 struct ipoib_mcast
*broadcast
;
601 broadcast
= ipoib_mcast_alloc(dev
);
603 ipoib_warn(priv
, "failed to allocate broadcast group\n");
605 * Restart us after a 1 second delay to retry
606 * creating our broadcast group and attaching to
607 * it. Until this succeeds, this ipoib dev is
608 * completely stalled (multicast wise).
610 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 1);
614 memcpy(broadcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
615 sizeof (union ib_gid
));
616 priv
->broadcast
= broadcast
;
618 __ipoib_mcast_add(dev
, priv
->broadcast
);
621 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
622 if (IS_ERR_OR_NULL(priv
->broadcast
->mc
) &&
623 !test_bit(IPOIB_MCAST_FLAG_BUSY
, &priv
->broadcast
->flags
)) {
624 mcast
= priv
->broadcast
;
625 if (mcast
->backoff
> 1 &&
626 time_before(jiffies
, mcast
->delay_until
)) {
627 delay_until
= mcast
->delay_until
;
635 * We'll never get here until the broadcast group is both allocated
638 list_for_each_entry(mcast
, &priv
->multicast_list
, list
) {
639 if (IS_ERR_OR_NULL(mcast
->mc
) &&
640 !test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
) &&
641 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ||
642 !skb_queue_empty(&mcast
->pkt_queue
))) {
643 if (mcast
->backoff
== 1 ||
644 time_after_eq(jiffies
, mcast
->delay_until
)) {
645 /* Found the next unjoined group */
646 if (ipoib_mcast_join(dev
, mcast
)) {
647 spin_unlock_irq(&priv
->lock
);
650 } else if (!delay_until
||
651 time_before(mcast
->delay_until
, delay_until
))
652 delay_until
= mcast
->delay_until
;
657 ipoib_dbg_mcast(priv
, "successfully started all multicast joins\n");
661 cancel_delayed_work(&priv
->mcast_task
);
662 queue_delayed_work(priv
->wq
, &priv
->mcast_task
,
663 delay_until
- jiffies
);
666 ipoib_mcast_join(dev
, mcast
);
668 spin_unlock_irq(&priv
->lock
);
671 void ipoib_mcast_start_thread(struct net_device
*dev
)
673 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
676 ipoib_dbg_mcast(priv
, "starting multicast thread\n");
678 spin_lock_irqsave(&priv
->lock
, flags
);
679 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
680 spin_unlock_irqrestore(&priv
->lock
, flags
);
683 void ipoib_mcast_stop_thread(struct net_device
*dev
)
685 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
687 ipoib_dbg_mcast(priv
, "stopping multicast thread\n");
689 cancel_delayed_work_sync(&priv
->mcast_task
);
692 static int ipoib_mcast_leave(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
694 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
695 struct rdma_netdev
*rn
= netdev_priv(dev
);
698 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
699 ipoib_warn(priv
, "ipoib_mcast_leave on an in-flight join\n");
701 if (!IS_ERR_OR_NULL(mcast
->mc
))
702 ib_sa_free_multicast(mcast
->mc
);
704 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
705 ipoib_dbg_mcast(priv
, "leaving MGID %pI6\n",
706 mcast
->mcmember
.mgid
.raw
);
708 /* Remove ourselves from the multicast group */
709 ret
= rn
->detach_mcast(dev
, priv
->ca
, &mcast
->mcmember
.mgid
,
710 be16_to_cpu(mcast
->mcmember
.mlid
));
712 ipoib_warn(priv
, "ib_detach_mcast failed (result = %d)\n", ret
);
713 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
))
714 ipoib_dbg(priv
, "leaving with no mcmember but not a "
721 * Check if the multicast group is sendonly. If so remove it from the maps
722 * and add to the remove list
724 void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv
*priv
, u8
*mgid
,
725 struct list_head
*remove_list
)
727 /* Is this multicast ? */
729 struct ipoib_mcast
*mcast
= __ipoib_mcast_find(priv
->dev
, mgid
);
731 if (mcast
&& test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
732 list_del(&mcast
->list
);
733 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
734 list_add_tail(&mcast
->list
, remove_list
);
739 void ipoib_mcast_remove_list(struct list_head
*remove_list
)
741 struct ipoib_mcast
*mcast
, *tmcast
;
744 * make sure the in-flight joins have finished before we attempt
747 list_for_each_entry_safe(mcast
, tmcast
, remove_list
, list
)
748 if (test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
749 wait_for_completion(&mcast
->done
);
751 list_for_each_entry_safe(mcast
, tmcast
, remove_list
, list
) {
752 ipoib_mcast_leave(mcast
->dev
, mcast
);
753 ipoib_mcast_free(mcast
);
757 void ipoib_mcast_send(struct net_device
*dev
, u8
*daddr
, struct sk_buff
*skb
)
759 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
760 struct rdma_netdev
*rn
= netdev_priv(dev
);
761 struct ipoib_mcast
*mcast
;
763 void *mgid
= daddr
+ 4;
765 spin_lock_irqsave(&priv
->lock
, flags
);
767 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
) ||
769 !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
770 ++dev
->stats
.tx_dropped
;
771 dev_kfree_skb_any(skb
);
775 mcast
= __ipoib_mcast_find(dev
, mgid
);
776 if (!mcast
|| !mcast
->ah
) {
778 /* Let's create a new send only group now */
779 ipoib_dbg_mcast(priv
, "setting up send only multicast group for %pI6\n",
782 mcast
= ipoib_mcast_alloc(dev
);
784 ipoib_warn(priv
, "unable to allocate memory "
785 "for multicast structure\n");
786 ++dev
->stats
.tx_dropped
;
787 dev_kfree_skb_any(skb
);
791 set_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
);
792 memcpy(mcast
->mcmember
.mgid
.raw
, mgid
,
793 sizeof (union ib_gid
));
794 __ipoib_mcast_add(dev
, mcast
);
795 list_add_tail(&mcast
->list
, &priv
->multicast_list
);
797 if (skb_queue_len(&mcast
->pkt_queue
) < IPOIB_MAX_MCAST_QUEUE
) {
798 /* put pseudoheader back on for next time */
799 skb_push(skb
, sizeof(struct ipoib_pseudo_header
));
800 skb_queue_tail(&mcast
->pkt_queue
, skb
);
802 ++dev
->stats
.tx_dropped
;
803 dev_kfree_skb_any(skb
);
805 if (!test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)) {
806 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
809 struct ipoib_neigh
*neigh
;
811 spin_unlock_irqrestore(&priv
->lock
, flags
);
812 neigh
= ipoib_neigh_get(dev
, daddr
);
813 spin_lock_irqsave(&priv
->lock
, flags
);
815 neigh
= ipoib_neigh_alloc(daddr
, dev
);
816 /* Make sure that the neigh will be added only
817 * once to mcast list.
819 if (neigh
&& list_empty(&neigh
->list
)) {
820 kref_get(&mcast
->ah
->ref
);
821 neigh
->ah
= mcast
->ah
;
822 neigh
->ah
->valid
= 1;
823 list_add_tail(&neigh
->list
, &mcast
->neigh_list
);
826 spin_unlock_irqrestore(&priv
->lock
, flags
);
827 mcast
->ah
->last_send
= rn
->send(dev
, skb
, mcast
->ah
->ah
,
830 ipoib_neigh_put(neigh
);
835 spin_unlock_irqrestore(&priv
->lock
, flags
);
838 void ipoib_mcast_dev_flush(struct net_device
*dev
)
840 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
841 LIST_HEAD(remove_list
);
842 struct ipoib_mcast
*mcast
, *tmcast
;
845 mutex_lock(&priv
->mcast_mutex
);
846 ipoib_dbg_mcast(priv
, "flushing multicast list\n");
848 spin_lock_irqsave(&priv
->lock
, flags
);
850 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
851 list_del(&mcast
->list
);
852 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
853 list_add_tail(&mcast
->list
, &remove_list
);
856 if (priv
->broadcast
) {
857 rb_erase(&priv
->broadcast
->rb_node
, &priv
->multicast_tree
);
858 list_add_tail(&priv
->broadcast
->list
, &remove_list
);
859 priv
->broadcast
= NULL
;
862 spin_unlock_irqrestore(&priv
->lock
, flags
);
864 ipoib_mcast_remove_list(&remove_list
);
865 mutex_unlock(&priv
->mcast_mutex
);
868 static int ipoib_mcast_addr_is_valid(const u8
*addr
, const u8
*broadcast
)
870 /* reserved QPN, prefix, scope */
871 if (memcmp(addr
, broadcast
, 6))
873 /* signature lower, pkey */
874 if (memcmp(addr
+ 7, broadcast
+ 7, 3))
879 void ipoib_mcast_restart_task(struct work_struct
*work
)
881 struct ipoib_dev_priv
*priv
=
882 container_of(work
, struct ipoib_dev_priv
, restart_task
);
883 struct net_device
*dev
= priv
->dev
;
884 struct netdev_hw_addr
*ha
;
885 struct ipoib_mcast
*mcast
, *tmcast
;
886 LIST_HEAD(remove_list
);
887 struct ib_sa_mcmember_rec rec
;
889 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
891 * shortcut...on shutdown flush is called next, just
892 * let it do all the work
896 ipoib_dbg_mcast(priv
, "restarting multicast task\n");
898 netif_addr_lock_bh(dev
);
899 spin_lock_irq(&priv
->lock
);
902 * Unfortunately, the networking core only gives us a list of all of
903 * the multicast hardware addresses. We need to figure out which ones
904 * are new and which ones have been removed
907 /* Clear out the found flag */
908 list_for_each_entry(mcast
, &priv
->multicast_list
, list
)
909 clear_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
911 /* Mark all of the entries that are found or don't exist */
912 netdev_for_each_mc_addr(ha
, dev
) {
915 if (!ipoib_mcast_addr_is_valid(ha
->addr
, dev
->broadcast
))
918 memcpy(mgid
.raw
, ha
->addr
+ 4, sizeof(mgid
));
920 mcast
= __ipoib_mcast_find(dev
, &mgid
);
921 if (!mcast
|| test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
922 struct ipoib_mcast
*nmcast
;
924 /* ignore group which is directly joined by userspace */
925 if (test_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
) &&
926 !ib_sa_get_mcmember_rec(priv
->ca
, priv
->port
, &mgid
, &rec
)) {
927 ipoib_dbg_mcast(priv
, "ignoring multicast entry for mgid %pI6\n",
932 /* Not found or send-only group, let's add a new entry */
933 ipoib_dbg_mcast(priv
, "adding multicast entry for mgid %pI6\n",
936 nmcast
= ipoib_mcast_alloc(dev
);
938 ipoib_warn(priv
, "unable to allocate memory for multicast structure\n");
942 set_bit(IPOIB_MCAST_FLAG_FOUND
, &nmcast
->flags
);
944 nmcast
->mcmember
.mgid
= mgid
;
947 /* Destroy the send only entry */
948 list_move_tail(&mcast
->list
, &remove_list
);
950 rb_replace_node(&mcast
->rb_node
,
952 &priv
->multicast_tree
);
954 __ipoib_mcast_add(dev
, nmcast
);
956 list_add_tail(&nmcast
->list
, &priv
->multicast_list
);
960 set_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
963 /* Remove all of the entries don't exist anymore */
964 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
965 if (!test_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
) &&
966 !test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
967 ipoib_dbg_mcast(priv
, "deleting multicast group %pI6\n",
968 mcast
->mcmember
.mgid
.raw
);
970 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
972 /* Move to the remove list */
973 list_move_tail(&mcast
->list
, &remove_list
);
977 spin_unlock_irq(&priv
->lock
);
978 netif_addr_unlock_bh(dev
);
980 ipoib_mcast_remove_list(&remove_list
);
983 * Double check that we are still up
985 if (test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
986 spin_lock_irq(&priv
->lock
);
987 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
988 spin_unlock_irq(&priv
->lock
);
992 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
994 struct ipoib_mcast_iter
*ipoib_mcast_iter_init(struct net_device
*dev
)
996 struct ipoib_mcast_iter
*iter
;
998 iter
= kmalloc(sizeof(*iter
), GFP_KERNEL
);
1003 memset(iter
->mgid
.raw
, 0, 16);
1005 if (ipoib_mcast_iter_next(iter
)) {
1013 int ipoib_mcast_iter_next(struct ipoib_mcast_iter
*iter
)
1015 struct ipoib_dev_priv
*priv
= ipoib_priv(iter
->dev
);
1017 struct ipoib_mcast
*mcast
;
1020 spin_lock_irq(&priv
->lock
);
1022 n
= rb_first(&priv
->multicast_tree
);
1025 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
1027 if (memcmp(iter
->mgid
.raw
, mcast
->mcmember
.mgid
.raw
,
1028 sizeof (union ib_gid
)) < 0) {
1029 iter
->mgid
= mcast
->mcmember
.mgid
;
1030 iter
->created
= mcast
->created
;
1031 iter
->queuelen
= skb_queue_len(&mcast
->pkt_queue
);
1032 iter
->complete
= !!mcast
->ah
;
1033 iter
->send_only
= !!(mcast
->flags
& (1 << IPOIB_MCAST_FLAG_SENDONLY
));
1043 spin_unlock_irq(&priv
->lock
);
1048 void ipoib_mcast_iter_read(struct ipoib_mcast_iter
*iter
,
1050 unsigned long *created
,
1051 unsigned int *queuelen
,
1052 unsigned int *complete
,
1053 unsigned int *send_only
)
1056 *created
= iter
->created
;
1057 *queuelen
= iter
->queuelen
;
1058 *complete
= iter
->complete
;
1059 *send_only
= iter
->send_only
;
1062 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */