1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35#include <linux/skbuff.h>
36#include <linux/rtnetlink.h>
37#include <linux/moduleparam.h>
38#include <linux/ip.h>
39#include <linux/in.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>
45
46#include <net/dst.h>
47
48#include "ipoib.h"
49
50#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
51static int mcast_debug_level;
52
53module_param(mcast_debug_level, int, 0644);
54MODULE_PARM_DESC(mcast_debug_level,
55 "Enable multicast debug tracing if > 0");
56#endif
57
58struct ipoib_mcast_iter {
59 struct net_device *dev;
60 union ib_gid mgid;
61 unsigned long created;
62 unsigned int queuelen;
63 unsigned int complete;
64 unsigned int send_only;
65};
66
67
68#define SENDONLY_FULLMEMBER_JOIN 8
69
70
71
72
73static void __ipoib_mcast_schedule_join_thread(struct ipoib_dev_priv *priv,
74 struct ipoib_mcast *mcast,
75 bool delay)
76{
77 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
78 return;
79
80
81
82
83
84 cancel_delayed_work(&priv->mcast_task);
85 if (mcast && delay) {
86
87
88
89 mcast->backoff *= 2;
90 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
91 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
92 mcast->delay_until = jiffies + (mcast->backoff * HZ);
93
94
95
96
97
98
99
100 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
101 } else if (delay) {
102
103
104
105
106
107 queue_delayed_work(priv->wq, &priv->mcast_task, HZ);
108 } else
109 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
110}
111
112static void ipoib_mcast_free(struct ipoib_mcast *mcast)
113{
114 struct net_device *dev = mcast->dev;
115 int tx_dropped = 0;
116
117 ipoib_dbg_mcast(ipoib_priv(dev), "deleting multicast group %pI6\n",
118 mcast->mcmember.mgid.raw);
119
120
121 ipoib_del_neighs_by_gid(dev, mcast->mcmember.mgid.raw);
122
123 if (mcast->ah)
124 ipoib_put_ah(mcast->ah);
125
126 while (!skb_queue_empty(&mcast->pkt_queue)) {
127 ++tx_dropped;
128 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
129 }
130
131 netif_tx_lock_bh(dev);
132 dev->stats.tx_dropped += tx_dropped;
133 netif_tx_unlock_bh(dev);
134
135 kfree(mcast);
136}
137
138static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev,
139 int can_sleep)
140{
141 struct ipoib_mcast *mcast;
142
143 mcast = kzalloc(sizeof *mcast, can_sleep ? GFP_KERNEL : GFP_ATOMIC);
144 if (!mcast)
145 return NULL;
146
147 mcast->dev = dev;
148 mcast->created = jiffies;
149 mcast->delay_until = jiffies;
150 mcast->backoff = 1;
151
152 INIT_LIST_HEAD(&mcast->list);
153 INIT_LIST_HEAD(&mcast->neigh_list);
154 skb_queue_head_init(&mcast->pkt_queue);
155
156 return mcast;
157}
158
159static struct ipoib_mcast *__ipoib_mcast_find(struct net_device *dev, void *mgid)
160{
161 struct ipoib_dev_priv *priv = ipoib_priv(dev);
162 struct rb_node *n = priv->multicast_tree.rb_node;
163
164 while (n) {
165 struct ipoib_mcast *mcast;
166 int ret;
167
168 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
169
170 ret = memcmp(mgid, mcast->mcmember.mgid.raw,
171 sizeof (union ib_gid));
172 if (ret < 0)
173 n = n->rb_left;
174 else if (ret > 0)
175 n = n->rb_right;
176 else
177 return mcast;
178 }
179
180 return NULL;
181}
182
183static int __ipoib_mcast_add(struct net_device *dev, struct ipoib_mcast *mcast)
184{
185 struct ipoib_dev_priv *priv = ipoib_priv(dev);
186 struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL;
187
188 while (*n) {
189 struct ipoib_mcast *tmcast;
190 int ret;
191
192 pn = *n;
193 tmcast = rb_entry(pn, struct ipoib_mcast, rb_node);
194
195 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw,
196 sizeof (union ib_gid));
197 if (ret < 0)
198 n = &pn->rb_left;
199 else if (ret > 0)
200 n = &pn->rb_right;
201 else
202 return -EEXIST;
203 }
204
205 rb_link_node(&mcast->rb_node, pn, n);
206 rb_insert_color(&mcast->rb_node, &priv->multicast_tree);
207
208 return 0;
209}
210
211static int ipoib_mcast_join_finish(struct ipoib_mcast *mcast,
212 struct ib_sa_mcmember_rec *mcmember)
213{
214 struct net_device *dev = mcast->dev;
215 struct ipoib_dev_priv *priv = ipoib_priv(dev);
216 struct rdma_netdev *rn = netdev_priv(dev);
217 struct ipoib_ah *ah;
218 struct rdma_ah_attr av;
219 int ret;
220 int set_qkey = 0;
221
222 mcast->mcmember = *mcmember;
223
224
225
226
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);
232 return -EAGAIN;
233 }
234
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
243 if (priv->mcast_mtu == priv->admin_mtu)
244 priv->admin_mtu =
245 priv->mcast_mtu =
246 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
247 else
248 priv->mcast_mtu =
249 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
250
251 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
252 spin_unlock_irq(&priv->lock);
253 priv->tx_wr.remote_qkey = priv->qkey;
254 set_qkey = 1;
255 }
256
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);
261
262 return 0;
263 }
264
265 ret = rn->attach_mcast(dev, priv->ca, &mcast->mcmember.mgid,
266 be16_to_cpu(mcast->mcmember.mlid),
267 set_qkey, priv->qkey);
268 if (ret < 0) {
269 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
270 mcast->mcmember.mgid.raw);
271
272 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
273 return ret;
274 }
275 }
276
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);
283
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);
288
289 ah = ipoib_create_ah(dev, priv->pd, &av);
290 if (IS_ERR(ah)) {
291 ipoib_warn(priv, "ib_address_create failed %ld\n",
292 -PTR_ERR(ah));
293
294 return PTR_ERR(ah);
295 }
296 spin_lock_irq(&priv->lock);
297 mcast->ah = ah;
298 spin_unlock_irq(&priv->lock);
299
300 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
301 mcast->mcmember.mgid.raw,
302 mcast->ah->ah,
303 be16_to_cpu(mcast->mcmember.mlid),
304 mcast->mcmember.sl);
305
306
307 netif_tx_lock_bh(dev);
308 while (!skb_queue_empty(&mcast->pkt_queue)) {
309 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
310
311 netif_tx_unlock_bh(dev);
312
313 skb->dev = dev;
314
315 ret = dev_queue_xmit(skb);
316 if (ret)
317 ipoib_warn(priv, "%s:dev_queue_xmit failed to re-queue packet, ret:%d\n",
318 __func__, ret);
319 netif_tx_lock_bh(dev);
320 }
321 netif_tx_unlock_bh(dev);
322
323 return 0;
324}
325
326void ipoib_mcast_carrier_on_task(struct work_struct *work)
327{
328 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
329 carrier_on_task);
330 struct ib_port_attr attr;
331
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");
335 return;
336 }
337
338
339
340
341
342
343 priv->sm_fullmember_sendonly_support =
344 ib_sa_sendonly_fullmem_support(&ipoib_sa_client,
345 priv->ca, priv->port);
346
347
348
349
350
351
352
353
354
355 while (!rtnl_trylock()) {
356 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
357 return;
358 else
359 msleep(20);
360 }
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);
364 rtnl_unlock();
365}
366
367static int ipoib_mcast_join_complete(int status,
368 struct ib_sa_multicast *multicast)
369{
370 struct ipoib_mcast *mcast = multicast->context;
371 struct net_device *dev = mcast->dev;
372 struct ipoib_dev_priv *priv = ipoib_priv(dev);
373
374 ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n",
375 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ?
376 "sendonly " : "",
377 mcast->mcmember.mgid.raw, status);
378
379
380 if (status == -ENETRESET) {
381 status = 0;
382 goto out;
383 }
384
385 if (!status)
386 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
387
388 if (!status) {
389 mcast->backoff = 1;
390 mcast->delay_until = jiffies;
391
392
393
394
395
396
397
398
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);
403 goto out_locked;
404 }
405 } else {
406 bool silent_fail =
407 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
408 status == -EINVAL;
409
410 if (mcast->logcount < 20) {
411 if (status == -ETIMEDOUT || status == -EAGAIN ||
412 silent_fail) {
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);
416 } else {
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);
420 }
421
422 if (!silent_fail)
423 mcast->logcount++;
424 }
425
426 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
427 mcast->backoff >= 2) {
428
429
430
431
432
433
434
435
436
437 mcast->backoff = 1;
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));
442 }
443 netif_tx_unlock_bh(dev);
444 } else {
445 spin_lock_irq(&priv->lock);
446
447 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
448 goto out_locked;
449 }
450 }
451out:
452 spin_lock_irq(&priv->lock);
453out_locked:
454
455
456
457
458 if (status)
459 mcast->mc = NULL;
460 else
461 mcast->mc = multicast;
462 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
463 spin_unlock_irq(&priv->lock);
464 complete(&mcast->done);
465
466 return status;
467}
468
469
470
471
472static int ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast)
473{
474 struct ipoib_dev_priv *priv = ipoib_priv(dev);
475 struct ib_sa_multicast *multicast;
476 struct ib_sa_mcmember_rec rec = {
477 .join_state = 1
478 };
479 ib_sa_comp_mask comp_mask;
480 int ret = 0;
481
482 if (!priv->broadcast ||
483 !test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
484 return -EINVAL;
485
486 init_completion(&mcast->done);
487 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
488
489 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
490
491 rec.mgid = mcast->mcmember.mgid;
492 rec.port_gid = priv->local_gid;
493 rec.pkey = cpu_to_be16(priv->pkey);
494
495 comp_mask =
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;
500
501 if (mcast != priv->broadcast) {
502
503
504
505
506
507
508
509 comp_mask |=
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;
519
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;
529
530
531
532
533
534
535
536
537
538
539
540
541 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
542 priv->sm_fullmember_sendonly_support)
543
544 rec.join_state = SENDONLY_FULLMEMBER_JOIN;
545 }
546 spin_unlock_irq(&priv->lock);
547
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
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);
561 }
562 return 0;
563}
564
565void ipoib_mcast_join_task(struct work_struct *work)
566{
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;
573
574 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
575 return;
576
577 if (ib_query_port(priv->ca, priv->port, &port_attr)) {
578 ipoib_dbg(priv, "ib_query_port() failed\n");
579 return;
580 }
581 if (port_attr.state != IB_PORT_ACTIVE) {
582 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
583 port_attr.state);
584 return;
585 }
586 priv->local_lid = port_attr.lid;
587 netif_addr_lock_bh(dev);
588
589 if (!test_bit(IPOIB_FLAG_DEV_ADDR_SET, &priv->flags)) {
590 netif_addr_unlock_bh(dev);
591 return;
592 }
593 netif_addr_unlock_bh(dev);
594
595 spin_lock_irq(&priv->lock);
596 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
597 goto out;
598
599 if (!priv->broadcast) {
600 struct ipoib_mcast *broadcast;
601
602 broadcast = ipoib_mcast_alloc(dev, 0);
603 if (!broadcast) {
604 ipoib_warn(priv, "failed to allocate broadcast group\n");
605
606
607
608
609
610
611 __ipoib_mcast_schedule_join_thread(priv, NULL, 1);
612 goto out;
613 }
614
615 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
616 sizeof (union ib_gid));
617 priv->broadcast = broadcast;
618
619 __ipoib_mcast_add(dev, priv->broadcast);
620 }
621
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;
629 mcast = NULL;
630 }
631 }
632 goto out;
633 }
634
635
636
637
638
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
647 if (ipoib_mcast_join(dev, mcast)) {
648 spin_unlock_irq(&priv->lock);
649 return;
650 }
651 } else if (!delay_until ||
652 time_before(mcast->delay_until, delay_until))
653 delay_until = mcast->delay_until;
654 }
655 }
656
657 mcast = NULL;
658 ipoib_dbg_mcast(priv, "successfully started all multicast joins\n");
659
660out:
661 if (delay_until) {
662 cancel_delayed_work(&priv->mcast_task);
663 queue_delayed_work(priv->wq, &priv->mcast_task,
664 delay_until - jiffies);
665 }
666 if (mcast)
667 ipoib_mcast_join(dev, mcast);
668
669 spin_unlock_irq(&priv->lock);
670}
671
672void ipoib_mcast_start_thread(struct net_device *dev)
673{
674 struct ipoib_dev_priv *priv = ipoib_priv(dev);
675 unsigned long flags;
676
677 ipoib_dbg_mcast(priv, "starting multicast thread\n");
678
679 spin_lock_irqsave(&priv->lock, flags);
680 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
681 spin_unlock_irqrestore(&priv->lock, flags);
682}
683
684int ipoib_mcast_stop_thread(struct net_device *dev)
685{
686 struct ipoib_dev_priv *priv = ipoib_priv(dev);
687
688 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
689
690 cancel_delayed_work_sync(&priv->mcast_task);
691
692 return 0;
693}
694
695static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
696{
697 struct ipoib_dev_priv *priv = ipoib_priv(dev);
698 struct rdma_netdev *rn = netdev_priv(dev);
699 int ret = 0;
700
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");
703
704 if (!IS_ERR_OR_NULL(mcast->mc))
705 ib_sa_free_multicast(mcast->mc);
706
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);
710
711
712 ret = rn->detach_mcast(dev, priv->ca, &mcast->mcmember.mgid,
713 be16_to_cpu(mcast->mcmember.mlid));
714 if (ret)
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 "
718 "SENDONLY join\n");
719
720 return 0;
721}
722
723
724
725
726
727void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv *priv, u8 *mgid,
728 struct list_head *remove_list)
729{
730
731 if (*mgid == 0xff) {
732 struct ipoib_mcast *mcast = __ipoib_mcast_find(priv->dev, mgid);
733
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);
738 }
739 }
740}
741
742void ipoib_mcast_remove_list(struct list_head *remove_list)
743{
744 struct ipoib_mcast *mcast, *tmcast;
745
746
747
748
749
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);
753
754 list_for_each_entry_safe(mcast, tmcast, remove_list, list) {
755 ipoib_mcast_leave(mcast->dev, mcast);
756 ipoib_mcast_free(mcast);
757 }
758}
759
760void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
761{
762 struct ipoib_dev_priv *priv = ipoib_priv(dev);
763 struct rdma_netdev *rn = netdev_priv(dev);
764 struct ipoib_mcast *mcast;
765 unsigned long flags;
766 void *mgid = daddr + 4;
767
768 spin_lock_irqsave(&priv->lock, flags);
769
770 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
771 !priv->broadcast ||
772 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
773 ++dev->stats.tx_dropped;
774 dev_kfree_skb_any(skb);
775 goto unlock;
776 }
777
778 mcast = __ipoib_mcast_find(dev, mgid);
779 if (!mcast || !mcast->ah) {
780 if (!mcast) {
781
782 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
783 mgid);
784
785 mcast = ipoib_mcast_alloc(dev, 0);
786 if (!mcast) {
787 ipoib_warn(priv, "unable to allocate memory "
788 "for multicast structure\n");
789 ++dev->stats.tx_dropped;
790 dev_kfree_skb_any(skb);
791 goto unlock;
792 }
793
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);
799 }
800 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE) {
801
802 skb_push(skb, sizeof(struct ipoib_pseudo_header));
803 skb_queue_tail(&mcast->pkt_queue, skb);
804 } else {
805 ++dev->stats.tx_dropped;
806 dev_kfree_skb_any(skb);
807 }
808 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
809 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
810 }
811 } else {
812 struct ipoib_neigh *neigh;
813
814 spin_unlock_irqrestore(&priv->lock, flags);
815 neigh = ipoib_neigh_get(dev, daddr);
816 spin_lock_irqsave(&priv->lock, flags);
817 if (!neigh) {
818 neigh = ipoib_neigh_alloc(daddr, dev);
819
820
821
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);
826 }
827 }
828 spin_unlock_irqrestore(&priv->lock, flags);
829 mcast->ah->last_send = rn->send(dev, skb, mcast->ah->ah,
830 IB_MULTICAST_QPN);
831 if (neigh)
832 ipoib_neigh_put(neigh);
833 return;
834 }
835
836unlock:
837 spin_unlock_irqrestore(&priv->lock, flags);
838}
839
840void ipoib_mcast_dev_flush(struct net_device *dev)
841{
842 struct ipoib_dev_priv *priv = ipoib_priv(dev);
843 LIST_HEAD(remove_list);
844 struct ipoib_mcast *mcast, *tmcast;
845 unsigned long flags;
846
847 mutex_lock(&priv->mcast_mutex);
848 ipoib_dbg_mcast(priv, "flushing multicast list\n");
849
850 spin_lock_irqsave(&priv->lock, flags);
851
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);
856 }
857
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;
862 }
863
864 spin_unlock_irqrestore(&priv->lock, flags);
865
866 ipoib_mcast_remove_list(&remove_list);
867 mutex_unlock(&priv->mcast_mutex);
868}
869
870static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
871{
872
873 if (memcmp(addr, broadcast, 6))
874 return 0;
875
876 if (memcmp(addr + 7, broadcast + 7, 3))
877 return 0;
878 return 1;
879}
880
881void ipoib_mcast_restart_task(struct work_struct *work)
882{
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);
889 unsigned long flags;
890 struct ib_sa_mcmember_rec rec;
891
892 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
893
894
895
896
897 return;
898
899 ipoib_dbg_mcast(priv, "restarting multicast task\n");
900
901 local_irq_save(flags);
902 netif_addr_lock(dev);
903 spin_lock(&priv->lock);
904
905
906
907
908
909
910
911
912 list_for_each_entry(mcast, &priv->multicast_list, list)
913 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
914
915
916 netdev_for_each_mc_addr(ha, dev) {
917 union ib_gid mgid;
918
919 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
920 continue;
921
922 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
923
924 mcast = __ipoib_mcast_find(dev, &mgid);
925 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
926 struct ipoib_mcast *nmcast;
927
928
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",
932 mgid.raw);
933 continue;
934 }
935
936
937 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
938 mgid.raw);
939
940 nmcast = ipoib_mcast_alloc(dev, 0);
941 if (!nmcast) {
942 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
943 continue;
944 }
945
946 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
947
948 nmcast->mcmember.mgid = mgid;
949
950 if (mcast) {
951
952 list_move_tail(&mcast->list, &remove_list);
953
954 rb_replace_node(&mcast->rb_node,
955 &nmcast->rb_node,
956 &priv->multicast_tree);
957 } else
958 __ipoib_mcast_add(dev, nmcast);
959
960 list_add_tail(&nmcast->list, &priv->multicast_list);
961 }
962
963 if (mcast)
964 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
965 }
966
967
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);
973
974 rb_erase(&mcast->rb_node, &priv->multicast_tree);
975
976
977 list_move_tail(&mcast->list, &remove_list);
978 }
979 }
980
981 spin_unlock(&priv->lock);
982 netif_addr_unlock(dev);
983 local_irq_restore(flags);
984
985 ipoib_mcast_remove_list(&remove_list);
986
987
988
989
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);
994 }
995}
996
997#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
998
999struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
1000{
1001 struct ipoib_mcast_iter *iter;
1002
1003 iter = kmalloc(sizeof *iter, GFP_KERNEL);
1004 if (!iter)
1005 return NULL;
1006
1007 iter->dev = dev;
1008 memset(iter->mgid.raw, 0, 16);
1009
1010 if (ipoib_mcast_iter_next(iter)) {
1011 kfree(iter);
1012 return NULL;
1013 }
1014
1015 return iter;
1016}
1017
1018int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
1019{
1020 struct ipoib_dev_priv *priv = ipoib_priv(iter->dev);
1021 struct rb_node *n;
1022 struct ipoib_mcast *mcast;
1023 int ret = 1;
1024
1025 spin_lock_irq(&priv->lock);
1026
1027 n = rb_first(&priv->multicast_tree);
1028
1029 while (n) {
1030 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
1031
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));
1039
1040 ret = 0;
1041
1042 break;
1043 }
1044
1045 n = rb_next(n);
1046 }
1047
1048 spin_unlock_irq(&priv->lock);
1049
1050 return ret;
1051}
1052
1053void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
1054 union ib_gid *mgid,
1055 unsigned long *created,
1056 unsigned int *queuelen,
1057 unsigned int *complete,
1058 unsigned int *send_only)
1059{
1060 *mgid = iter->mgid;
1061 *created = iter->created;
1062 *queuelen = iter->queuelen;
1063 *complete = iter->complete;
1064 *send_only = iter->send_only;
1065}
1066
1067#endif
1068