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
,
141 struct ipoib_mcast
*mcast
;
143 mcast
= kzalloc(sizeof *mcast
, can_sleep
? GFP_KERNEL
: GFP_ATOMIC
);
148 mcast
->created
= jiffies
;
149 mcast
->delay_until
= jiffies
;
152 INIT_LIST_HEAD(&mcast
->list
);
153 INIT_LIST_HEAD(&mcast
->neigh_list
);
154 skb_queue_head_init(&mcast
->pkt_queue
);
159 static struct ipoib_mcast
*__ipoib_mcast_find(struct net_device
*dev
, void *mgid
)
161 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
162 struct rb_node
*n
= priv
->multicast_tree
.rb_node
;
165 struct ipoib_mcast
*mcast
;
168 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
170 ret
= memcmp(mgid
, mcast
->mcmember
.mgid
.raw
,
171 sizeof (union ib_gid
));
183 static int __ipoib_mcast_add(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
185 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
186 struct rb_node
**n
= &priv
->multicast_tree
.rb_node
, *pn
= NULL
;
189 struct ipoib_mcast
*tmcast
;
193 tmcast
= rb_entry(pn
, struct ipoib_mcast
, rb_node
);
195 ret
= memcmp(mcast
->mcmember
.mgid
.raw
, tmcast
->mcmember
.mgid
.raw
,
196 sizeof (union ib_gid
));
205 rb_link_node(&mcast
->rb_node
, pn
, n
);
206 rb_insert_color(&mcast
->rb_node
, &priv
->multicast_tree
);
211 static int ipoib_mcast_join_finish(struct ipoib_mcast
*mcast
,
212 struct ib_sa_mcmember_rec
*mcmember
)
214 struct net_device
*dev
= mcast
->dev
;
215 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
216 struct rdma_netdev
*rn
= netdev_priv(dev
);
218 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 if (priv
->mcast_mtu
== priv
->admin_mtu
)
246 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv
->broadcast
->mcmember
.mtu
));
249 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv
->broadcast
->mcmember
.mtu
));
251 priv
->qkey
= be32_to_cpu(priv
->broadcast
->mcmember
.qkey
);
252 spin_unlock_irq(&priv
->lock
);
253 priv
->tx_wr
.remote_qkey
= priv
->qkey
;
257 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
258 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
259 ipoib_warn(priv
, "multicast group %pI6 already attached\n",
260 mcast
->mcmember
.mgid
.raw
);
265 ret
= rn
->attach_mcast(dev
, priv
->ca
, &mcast
->mcmember
.mgid
,
266 be16_to_cpu(mcast
->mcmember
.mlid
),
267 set_qkey
, priv
->qkey
);
269 ipoib_warn(priv
, "couldn't attach QP to multicast group %pI6\n",
270 mcast
->mcmember
.mgid
.raw
);
272 clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
);
277 memset(&av
, 0, sizeof(av
));
278 av
.type
= rdma_ah_find_type(priv
->ca
, priv
->port
);
279 rdma_ah_set_dlid(&av
, be16_to_cpu(mcast
->mcmember
.mlid
)),
280 rdma_ah_set_port_num(&av
, priv
->port
);
281 rdma_ah_set_sl(&av
, mcast
->mcmember
.sl
);
282 rdma_ah_set_static_rate(&av
, mcast
->mcmember
.rate
);
284 rdma_ah_set_grh(&av
, &mcast
->mcmember
.mgid
,
285 be32_to_cpu(mcast
->mcmember
.flow_label
),
286 0, mcast
->mcmember
.hop_limit
,
287 mcast
->mcmember
.traffic_class
);
289 ah
= ipoib_create_ah(dev
, priv
->pd
, &av
);
291 ipoib_warn(priv
, "ib_address_create failed %ld\n",
293 /* use original error */
296 spin_lock_irq(&priv
->lock
);
298 spin_unlock_irq(&priv
->lock
);
300 ipoib_dbg_mcast(priv
, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
301 mcast
->mcmember
.mgid
.raw
,
303 be16_to_cpu(mcast
->mcmember
.mlid
),
306 /* actually send any queued packets */
307 netif_tx_lock_bh(dev
);
308 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
309 struct sk_buff
*skb
= skb_dequeue(&mcast
->pkt_queue
);
311 netif_tx_unlock_bh(dev
);
315 ret
= dev_queue_xmit(skb
);
317 ipoib_warn(priv
, "%s:dev_queue_xmit failed to re-queue packet, ret:%d\n",
319 netif_tx_lock_bh(dev
);
321 netif_tx_unlock_bh(dev
);
326 void ipoib_mcast_carrier_on_task(struct work_struct
*work
)
328 struct ipoib_dev_priv
*priv
= container_of(work
, struct ipoib_dev_priv
,
330 struct ib_port_attr attr
;
332 if (ib_query_port(priv
->ca
, priv
->port
, &attr
) ||
333 attr
.state
!= IB_PORT_ACTIVE
) {
334 ipoib_dbg(priv
, "Keeping carrier off until IB port is active\n");
338 * Check if can send sendonly MCG's with sendonly-fullmember join state.
339 * It done here after the successfully join to the broadcast group,
340 * because the broadcast group must always be joined first and is always
341 * re-joined if the SM changes substantially.
343 priv
->sm_fullmember_sendonly_support
=
344 ib_sa_sendonly_fullmem_support(&ipoib_sa_client
,
345 priv
->ca
, priv
->port
);
347 * Take rtnl_lock to avoid racing with ipoib_stop() and
348 * turning the carrier back on while a device is being
349 * removed. However, ipoib_stop() will attempt to flush
350 * the workqueue while holding the rtnl lock, so loop
351 * on trylock until either we get the lock or we see
352 * FLAG_OPER_UP go away as that signals that we are bailing
353 * and can safely ignore the carrier on work.
355 while (!rtnl_trylock()) {
356 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
361 if (!ipoib_cm_admin_enabled(priv
->dev
))
362 dev_set_mtu(priv
->dev
, min(priv
->mcast_mtu
, priv
->admin_mtu
));
363 netif_carrier_on(priv
->dev
);
367 static int ipoib_mcast_join_complete(int status
,
368 struct ib_sa_multicast
*multicast
)
370 struct ipoib_mcast
*mcast
= multicast
->context
;
371 struct net_device
*dev
= mcast
->dev
;
372 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
374 ipoib_dbg_mcast(priv
, "%sjoin completion for %pI6 (status %d)\n",
375 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ?
377 mcast
->mcmember
.mgid
.raw
, status
);
379 /* We trap for port events ourselves. */
380 if (status
== -ENETRESET
) {
386 status
= ipoib_mcast_join_finish(mcast
, &multicast
->rec
);
390 mcast
->delay_until
= jiffies
;
393 * Defer carrier on work to priv->wq to avoid a
394 * deadlock on rtnl_lock here. Requeue our multicast
395 * work too, which will end up happening right after
396 * our carrier on task work and will allow us to
397 * send out all of the non-broadcast joins
399 if (mcast
== priv
->broadcast
) {
400 spin_lock_irq(&priv
->lock
);
401 queue_work(priv
->wq
, &priv
->carrier_on_task
);
402 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
407 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
410 if (mcast
->logcount
< 20) {
411 if (status
== -ETIMEDOUT
|| status
== -EAGAIN
||
413 ipoib_dbg_mcast(priv
, "%smulticast join failed for %pI6, status %d\n",
414 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ? "sendonly " : "",
415 mcast
->mcmember
.mgid
.raw
, status
);
417 ipoib_warn(priv
, "%smulticast join failed for %pI6, status %d\n",
418 test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ? "sendonly " : "",
419 mcast
->mcmember
.mgid
.raw
, status
);
426 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
427 mcast
->backoff
>= 2) {
429 * We only retry sendonly joins once before we drop
430 * the packet and quit trying to deal with the
431 * group. However, we leave the group in the
432 * mcast list as an unjoined group. If we want to
433 * try joining again, we simply queue up a packet
434 * and restart the join thread. The empty queue
435 * is why the join thread ignores this group.
438 netif_tx_lock_bh(dev
);
439 while (!skb_queue_empty(&mcast
->pkt_queue
)) {
440 ++dev
->stats
.tx_dropped
;
441 dev_kfree_skb_any(skb_dequeue(&mcast
->pkt_queue
));
443 netif_tx_unlock_bh(dev
);
445 spin_lock_irq(&priv
->lock
);
446 /* Requeue this join task with a backoff delay */
447 __ipoib_mcast_schedule_join_thread(priv
, mcast
, 1);
452 spin_lock_irq(&priv
->lock
);
455 * Make sure to set mcast->mc before we clear the busy flag to avoid
456 * racing with code that checks for BUSY before checking mcast->mc
461 mcast
->mc
= multicast
;
462 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
463 spin_unlock_irq(&priv
->lock
);
464 complete(&mcast
->done
);
470 * Caller must hold 'priv->lock'
472 static int ipoib_mcast_join(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
474 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
475 struct ib_sa_multicast
*multicast
;
476 struct ib_sa_mcmember_rec rec
= {
479 ib_sa_comp_mask comp_mask
;
482 if (!priv
->broadcast
||
483 !test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
486 init_completion(&mcast
->done
);
487 set_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
489 ipoib_dbg_mcast(priv
, "joining MGID %pI6\n", mcast
->mcmember
.mgid
.raw
);
491 rec
.mgid
= mcast
->mcmember
.mgid
;
492 rec
.port_gid
= priv
->local_gid
;
493 rec
.pkey
= cpu_to_be16(priv
->pkey
);
496 IB_SA_MCMEMBER_REC_MGID
|
497 IB_SA_MCMEMBER_REC_PORT_GID
|
498 IB_SA_MCMEMBER_REC_PKEY
|
499 IB_SA_MCMEMBER_REC_JOIN_STATE
;
501 if (mcast
!= priv
->broadcast
) {
504 * The MGID MUST use the same P_Key, Q_Key, SL, MTU,
505 * and HopLimit as those used in the broadcast-GID. The rest
506 * of attributes SHOULD follow the values used in the
507 * broadcast-GID as well.
510 IB_SA_MCMEMBER_REC_QKEY
|
511 IB_SA_MCMEMBER_REC_MTU_SELECTOR
|
512 IB_SA_MCMEMBER_REC_MTU
|
513 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS
|
514 IB_SA_MCMEMBER_REC_RATE_SELECTOR
|
515 IB_SA_MCMEMBER_REC_RATE
|
516 IB_SA_MCMEMBER_REC_SL
|
517 IB_SA_MCMEMBER_REC_FLOW_LABEL
|
518 IB_SA_MCMEMBER_REC_HOP_LIMIT
;
520 rec
.qkey
= priv
->broadcast
->mcmember
.qkey
;
521 rec
.mtu_selector
= IB_SA_EQ
;
522 rec
.mtu
= priv
->broadcast
->mcmember
.mtu
;
523 rec
.traffic_class
= priv
->broadcast
->mcmember
.traffic_class
;
524 rec
.rate_selector
= IB_SA_EQ
;
525 rec
.rate
= priv
->broadcast
->mcmember
.rate
;
526 rec
.sl
= priv
->broadcast
->mcmember
.sl
;
527 rec
.flow_label
= priv
->broadcast
->mcmember
.flow_label
;
528 rec
.hop_limit
= priv
->broadcast
->mcmember
.hop_limit
;
531 * Send-only IB Multicast joins work at the core IB layer but
532 * require specific SM support.
533 * We can use such joins here only if the current SM supports that feature.
534 * However, if not, we emulate an Ethernet multicast send,
535 * which does not require a multicast subscription and will
536 * still send properly. The most appropriate thing to
537 * do is to create the group if it doesn't exist as that
538 * most closely emulates the behavior, from a user space
539 * application perspective, of Ethernet multicast operation.
541 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) &&
542 priv
->sm_fullmember_sendonly_support
)
543 /* SM supports sendonly-fullmember, otherwise fallback to full-member */
544 rec
.join_state
= SENDONLY_FULLMEMBER_JOIN
;
546 spin_unlock_irq(&priv
->lock
);
548 multicast
= ib_sa_join_multicast(&ipoib_sa_client
, priv
->ca
, priv
->port
,
549 &rec
, comp_mask
, GFP_KERNEL
,
550 ipoib_mcast_join_complete
, mcast
);
551 spin_lock_irq(&priv
->lock
);
552 if (IS_ERR(multicast
)) {
553 ret
= PTR_ERR(multicast
);
554 ipoib_warn(priv
, "ib_sa_join_multicast failed, status %d\n", ret
);
555 /* Requeue this join task with a backoff delay */
556 __ipoib_mcast_schedule_join_thread(priv
, mcast
, 1);
557 clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
);
558 spin_unlock_irq(&priv
->lock
);
559 complete(&mcast
->done
);
560 spin_lock_irq(&priv
->lock
);
565 void ipoib_mcast_join_task(struct work_struct
*work
)
567 struct ipoib_dev_priv
*priv
=
568 container_of(work
, struct ipoib_dev_priv
, mcast_task
.work
);
569 struct net_device
*dev
= priv
->dev
;
570 struct ib_port_attr port_attr
;
571 unsigned long delay_until
= 0;
572 struct ipoib_mcast
*mcast
= NULL
;
574 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
577 if (ib_query_port(priv
->ca
, priv
->port
, &port_attr
)) {
578 ipoib_dbg(priv
, "ib_query_port() failed\n");
581 if (port_attr
.state
!= IB_PORT_ACTIVE
) {
582 ipoib_dbg(priv
, "port state is not ACTIVE (state = %d) suspending join task\n",
586 priv
->local_lid
= port_attr
.lid
;
587 netif_addr_lock_bh(dev
);
589 if (!test_bit(IPOIB_FLAG_DEV_ADDR_SET
, &priv
->flags
)) {
590 netif_addr_unlock_bh(dev
);
593 netif_addr_unlock_bh(dev
);
595 spin_lock_irq(&priv
->lock
);
596 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
599 if (!priv
->broadcast
) {
600 struct ipoib_mcast
*broadcast
;
602 broadcast
= ipoib_mcast_alloc(dev
, 0);
604 ipoib_warn(priv
, "failed to allocate broadcast group\n");
606 * Restart us after a 1 second delay to retry
607 * creating our broadcast group and attaching to
608 * it. Until this succeeds, this ipoib dev is
609 * completely stalled (multicast wise).
611 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 1);
615 memcpy(broadcast
->mcmember
.mgid
.raw
, priv
->dev
->broadcast
+ 4,
616 sizeof (union ib_gid
));
617 priv
->broadcast
= broadcast
;
619 __ipoib_mcast_add(dev
, priv
->broadcast
);
622 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
623 if (IS_ERR_OR_NULL(priv
->broadcast
->mc
) &&
624 !test_bit(IPOIB_MCAST_FLAG_BUSY
, &priv
->broadcast
->flags
)) {
625 mcast
= priv
->broadcast
;
626 if (mcast
->backoff
> 1 &&
627 time_before(jiffies
, mcast
->delay_until
)) {
628 delay_until
= mcast
->delay_until
;
636 * We'll never get here until the broadcast group is both allocated
639 list_for_each_entry(mcast
, &priv
->multicast_list
, list
) {
640 if (IS_ERR_OR_NULL(mcast
->mc
) &&
641 !test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
) &&
642 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
) ||
643 !skb_queue_empty(&mcast
->pkt_queue
))) {
644 if (mcast
->backoff
== 1 ||
645 time_after_eq(jiffies
, mcast
->delay_until
)) {
646 /* Found the next unjoined group */
647 if (ipoib_mcast_join(dev
, mcast
)) {
648 spin_unlock_irq(&priv
->lock
);
651 } else if (!delay_until
||
652 time_before(mcast
->delay_until
, delay_until
))
653 delay_until
= mcast
->delay_until
;
658 ipoib_dbg_mcast(priv
, "successfully started all multicast joins\n");
662 cancel_delayed_work(&priv
->mcast_task
);
663 queue_delayed_work(priv
->wq
, &priv
->mcast_task
,
664 delay_until
- jiffies
);
667 ipoib_mcast_join(dev
, mcast
);
669 spin_unlock_irq(&priv
->lock
);
672 void ipoib_mcast_start_thread(struct net_device
*dev
)
674 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
677 ipoib_dbg_mcast(priv
, "starting multicast thread\n");
679 spin_lock_irqsave(&priv
->lock
, flags
);
680 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
681 spin_unlock_irqrestore(&priv
->lock
, flags
);
684 int ipoib_mcast_stop_thread(struct net_device
*dev
)
686 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
688 ipoib_dbg_mcast(priv
, "stopping multicast thread\n");
690 cancel_delayed_work_sync(&priv
->mcast_task
);
695 static int ipoib_mcast_leave(struct net_device
*dev
, struct ipoib_mcast
*mcast
)
697 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
698 struct rdma_netdev
*rn
= netdev_priv(dev
);
701 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
702 ipoib_warn(priv
, "ipoib_mcast_leave on an in-flight join\n");
704 if (!IS_ERR_OR_NULL(mcast
->mc
))
705 ib_sa_free_multicast(mcast
->mc
);
707 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED
, &mcast
->flags
)) {
708 ipoib_dbg_mcast(priv
, "leaving MGID %pI6\n",
709 mcast
->mcmember
.mgid
.raw
);
711 /* Remove ourselves from the multicast group */
712 ret
= rn
->detach_mcast(dev
, priv
->ca
, &mcast
->mcmember
.mgid
,
713 be16_to_cpu(mcast
->mcmember
.mlid
));
715 ipoib_warn(priv
, "ib_detach_mcast failed (result = %d)\n", ret
);
716 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
))
717 ipoib_dbg(priv
, "leaving with no mcmember but not a "
724 * Check if the multicast group is sendonly. If so remove it from the maps
725 * and add to the remove list
727 void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv
*priv
, u8
*mgid
,
728 struct list_head
*remove_list
)
730 /* Is this multicast ? */
732 struct ipoib_mcast
*mcast
= __ipoib_mcast_find(priv
->dev
, mgid
);
734 if (mcast
&& test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
735 list_del(&mcast
->list
);
736 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
737 list_add_tail(&mcast
->list
, remove_list
);
742 void ipoib_mcast_remove_list(struct list_head
*remove_list
)
744 struct ipoib_mcast
*mcast
, *tmcast
;
747 * make sure the in-flight joins have finished before we attempt
750 list_for_each_entry_safe(mcast
, tmcast
, remove_list
, list
)
751 if (test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
))
752 wait_for_completion(&mcast
->done
);
754 list_for_each_entry_safe(mcast
, tmcast
, remove_list
, list
) {
755 ipoib_mcast_leave(mcast
->dev
, mcast
);
756 ipoib_mcast_free(mcast
);
760 void ipoib_mcast_send(struct net_device
*dev
, u8
*daddr
, struct sk_buff
*skb
)
762 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
763 struct rdma_netdev
*rn
= netdev_priv(dev
);
764 struct ipoib_mcast
*mcast
;
766 void *mgid
= daddr
+ 4;
768 spin_lock_irqsave(&priv
->lock
, flags
);
770 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
) ||
772 !test_bit(IPOIB_MCAST_FLAG_ATTACHED
, &priv
->broadcast
->flags
)) {
773 ++dev
->stats
.tx_dropped
;
774 dev_kfree_skb_any(skb
);
778 mcast
= __ipoib_mcast_find(dev
, mgid
);
779 if (!mcast
|| !mcast
->ah
) {
781 /* Let's create a new send only group now */
782 ipoib_dbg_mcast(priv
, "setting up send only multicast group for %pI6\n",
785 mcast
= ipoib_mcast_alloc(dev
, 0);
787 ipoib_warn(priv
, "unable to allocate memory "
788 "for multicast structure\n");
789 ++dev
->stats
.tx_dropped
;
790 dev_kfree_skb_any(skb
);
794 set_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
);
795 memcpy(mcast
->mcmember
.mgid
.raw
, mgid
,
796 sizeof (union ib_gid
));
797 __ipoib_mcast_add(dev
, mcast
);
798 list_add_tail(&mcast
->list
, &priv
->multicast_list
);
800 if (skb_queue_len(&mcast
->pkt_queue
) < IPOIB_MAX_MCAST_QUEUE
) {
801 /* put pseudoheader back on for next time */
802 skb_push(skb
, sizeof(struct ipoib_pseudo_header
));
803 skb_queue_tail(&mcast
->pkt_queue
, skb
);
805 ++dev
->stats
.tx_dropped
;
806 dev_kfree_skb_any(skb
);
808 if (!test_bit(IPOIB_MCAST_FLAG_BUSY
, &mcast
->flags
)) {
809 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
812 struct ipoib_neigh
*neigh
;
814 spin_unlock_irqrestore(&priv
->lock
, flags
);
815 neigh
= ipoib_neigh_get(dev
, daddr
);
816 spin_lock_irqsave(&priv
->lock
, flags
);
818 neigh
= ipoib_neigh_alloc(daddr
, dev
);
819 /* Make sure that the neigh will be added only
820 * once to mcast list.
822 if (neigh
&& list_empty(&neigh
->list
)) {
823 kref_get(&mcast
->ah
->ref
);
824 neigh
->ah
= mcast
->ah
;
825 list_add_tail(&neigh
->list
, &mcast
->neigh_list
);
828 spin_unlock_irqrestore(&priv
->lock
, flags
);
829 mcast
->ah
->last_send
= rn
->send(dev
, skb
, mcast
->ah
->ah
,
832 ipoib_neigh_put(neigh
);
837 spin_unlock_irqrestore(&priv
->lock
, flags
);
840 void ipoib_mcast_dev_flush(struct net_device
*dev
)
842 struct ipoib_dev_priv
*priv
= ipoib_priv(dev
);
843 LIST_HEAD(remove_list
);
844 struct ipoib_mcast
*mcast
, *tmcast
;
847 mutex_lock(&priv
->mcast_mutex
);
848 ipoib_dbg_mcast(priv
, "flushing multicast list\n");
850 spin_lock_irqsave(&priv
->lock
, flags
);
852 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
853 list_del(&mcast
->list
);
854 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
855 list_add_tail(&mcast
->list
, &remove_list
);
858 if (priv
->broadcast
) {
859 rb_erase(&priv
->broadcast
->rb_node
, &priv
->multicast_tree
);
860 list_add_tail(&priv
->broadcast
->list
, &remove_list
);
861 priv
->broadcast
= NULL
;
864 spin_unlock_irqrestore(&priv
->lock
, flags
);
866 ipoib_mcast_remove_list(&remove_list
);
867 mutex_unlock(&priv
->mcast_mutex
);
870 static int ipoib_mcast_addr_is_valid(const u8
*addr
, const u8
*broadcast
)
872 /* reserved QPN, prefix, scope */
873 if (memcmp(addr
, broadcast
, 6))
875 /* signature lower, pkey */
876 if (memcmp(addr
+ 7, broadcast
+ 7, 3))
881 void ipoib_mcast_restart_task(struct work_struct
*work
)
883 struct ipoib_dev_priv
*priv
=
884 container_of(work
, struct ipoib_dev_priv
, restart_task
);
885 struct net_device
*dev
= priv
->dev
;
886 struct netdev_hw_addr
*ha
;
887 struct ipoib_mcast
*mcast
, *tmcast
;
888 LIST_HEAD(remove_list
);
890 struct ib_sa_mcmember_rec rec
;
892 if (!test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
))
894 * shortcut...on shutdown flush is called next, just
895 * let it do all the work
899 ipoib_dbg_mcast(priv
, "restarting multicast task\n");
901 local_irq_save(flags
);
902 netif_addr_lock(dev
);
903 spin_lock(&priv
->lock
);
906 * Unfortunately, the networking core only gives us a list of all of
907 * the multicast hardware addresses. We need to figure out which ones
908 * are new and which ones have been removed
911 /* Clear out the found flag */
912 list_for_each_entry(mcast
, &priv
->multicast_list
, list
)
913 clear_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
915 /* Mark all of the entries that are found or don't exist */
916 netdev_for_each_mc_addr(ha
, dev
) {
919 if (!ipoib_mcast_addr_is_valid(ha
->addr
, dev
->broadcast
))
922 memcpy(mgid
.raw
, ha
->addr
+ 4, sizeof mgid
);
924 mcast
= __ipoib_mcast_find(dev
, &mgid
);
925 if (!mcast
|| test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
926 struct ipoib_mcast
*nmcast
;
928 /* ignore group which is directly joined by userspace */
929 if (test_bit(IPOIB_FLAG_UMCAST
, &priv
->flags
) &&
930 !ib_sa_get_mcmember_rec(priv
->ca
, priv
->port
, &mgid
, &rec
)) {
931 ipoib_dbg_mcast(priv
, "ignoring multicast entry for mgid %pI6\n",
936 /* Not found or send-only group, let's add a new entry */
937 ipoib_dbg_mcast(priv
, "adding multicast entry for mgid %pI6\n",
940 nmcast
= ipoib_mcast_alloc(dev
, 0);
942 ipoib_warn(priv
, "unable to allocate memory for multicast structure\n");
946 set_bit(IPOIB_MCAST_FLAG_FOUND
, &nmcast
->flags
);
948 nmcast
->mcmember
.mgid
= mgid
;
951 /* Destroy the send only entry */
952 list_move_tail(&mcast
->list
, &remove_list
);
954 rb_replace_node(&mcast
->rb_node
,
956 &priv
->multicast_tree
);
958 __ipoib_mcast_add(dev
, nmcast
);
960 list_add_tail(&nmcast
->list
, &priv
->multicast_list
);
964 set_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
);
967 /* Remove all of the entries don't exist anymore */
968 list_for_each_entry_safe(mcast
, tmcast
, &priv
->multicast_list
, list
) {
969 if (!test_bit(IPOIB_MCAST_FLAG_FOUND
, &mcast
->flags
) &&
970 !test_bit(IPOIB_MCAST_FLAG_SENDONLY
, &mcast
->flags
)) {
971 ipoib_dbg_mcast(priv
, "deleting multicast group %pI6\n",
972 mcast
->mcmember
.mgid
.raw
);
974 rb_erase(&mcast
->rb_node
, &priv
->multicast_tree
);
976 /* Move to the remove list */
977 list_move_tail(&mcast
->list
, &remove_list
);
981 spin_unlock(&priv
->lock
);
982 netif_addr_unlock(dev
);
983 local_irq_restore(flags
);
985 ipoib_mcast_remove_list(&remove_list
);
988 * Double check that we are still up
990 if (test_bit(IPOIB_FLAG_OPER_UP
, &priv
->flags
)) {
991 spin_lock_irqsave(&priv
->lock
, flags
);
992 __ipoib_mcast_schedule_join_thread(priv
, NULL
, 0);
993 spin_unlock_irqrestore(&priv
->lock
, flags
);
997 #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
999 struct ipoib_mcast_iter
*ipoib_mcast_iter_init(struct net_device
*dev
)
1001 struct ipoib_mcast_iter
*iter
;
1003 iter
= kmalloc(sizeof *iter
, GFP_KERNEL
);
1008 memset(iter
->mgid
.raw
, 0, 16);
1010 if (ipoib_mcast_iter_next(iter
)) {
1018 int ipoib_mcast_iter_next(struct ipoib_mcast_iter
*iter
)
1020 struct ipoib_dev_priv
*priv
= ipoib_priv(iter
->dev
);
1022 struct ipoib_mcast
*mcast
;
1025 spin_lock_irq(&priv
->lock
);
1027 n
= rb_first(&priv
->multicast_tree
);
1030 mcast
= rb_entry(n
, struct ipoib_mcast
, rb_node
);
1032 if (memcmp(iter
->mgid
.raw
, mcast
->mcmember
.mgid
.raw
,
1033 sizeof (union ib_gid
)) < 0) {
1034 iter
->mgid
= mcast
->mcmember
.mgid
;
1035 iter
->created
= mcast
->created
;
1036 iter
->queuelen
= skb_queue_len(&mcast
->pkt_queue
);
1037 iter
->complete
= !!mcast
->ah
;
1038 iter
->send_only
= !!(mcast
->flags
& (1 << IPOIB_MCAST_FLAG_SENDONLY
));
1048 spin_unlock_irq(&priv
->lock
);
1053 void ipoib_mcast_iter_read(struct ipoib_mcast_iter
*iter
,
1055 unsigned long *created
,
1056 unsigned int *queuelen
,
1057 unsigned int *complete
,
1058 unsigned int *send_only
)
1061 *created
= iter
->created
;
1062 *queuelen
= iter
->queuelen
;
1063 *complete
= iter
->complete
;
1064 *send_only
= iter
->send_only
;
1067 #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */