blob: 3203ebe9b1003a30e80e5dde37351f8795951549 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
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.
24 *
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
32 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include <linux/skbuff.h>
36#include <linux/rtnetlink.h>
Paul Gortmakerfec14d22011-08-30 12:32:52 -040037#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020046#include <net/dst.h>
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070058struct 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
Doug Ledford69911412015-02-21 19:27:05 -050067/*
Doug Ledford1c0453d2015-02-21 19:27:07 -050068 * This should be called with the priv->lock held
Doug Ledford69911412015-02-21 19:27:05 -050069 */
70static void __ipoib_mcast_schedule_join_thread(struct ipoib_dev_priv *priv,
71 struct ipoib_mcast *mcast,
72 bool delay)
73{
74 if (!test_bit(IPOIB_MCAST_RUN, &priv->flags))
75 return;
76
77 /*
78 * We will be scheduling *something*, so cancel whatever is
79 * currently scheduled first
80 */
81 cancel_delayed_work(&priv->mcast_task);
82 if (mcast && delay) {
83 /*
84 * We had a failure and want to schedule a retry later
85 */
86 mcast->backoff *= 2;
87 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
88 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
89 mcast->delay_until = jiffies + (mcast->backoff * HZ);
90 /*
91 * Mark this mcast for its delay, but restart the
92 * task immediately. The join task will make sure to
93 * clear out all entries without delays, and then
94 * schedule itself to run again when the earliest
95 * delay expires
96 */
97 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
98 } else if (delay) {
99 /*
100 * Special case of retrying after a failure to
101 * allocate the broadcast multicast group, wait
102 * 1 second and try again
103 */
104 queue_delayed_work(priv->wq, &priv->mcast_task, HZ);
105 } else
106 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
107}
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static void ipoib_mcast_free(struct ipoib_mcast *mcast)
110{
111 struct net_device *dev = mcast->dev;
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800112 int tx_dropped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700114 ipoib_dbg_mcast(netdev_priv(dev), "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700115 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000117 /* remove all neigh connected to this mcast */
118 ipoib_del_neighs_by_gid(dev, mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (mcast->ah)
121 ipoib_put_ah(mcast->ah);
122
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800123 while (!skb_queue_empty(&mcast->pkt_queue)) {
124 ++tx_dropped;
Roland Dreier8c608a32005-11-07 10:49:38 -0800125 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800126 }
127
Roland Dreier943c2462008-09-30 10:36:21 -0700128 netif_tx_lock_bh(dev);
Roland Dreierde903512007-09-28 15:33:51 -0700129 dev->stats.tx_dropped += tx_dropped;
Roland Dreier943c2462008-09-30 10:36:21 -0700130 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 kfree(mcast);
133}
134
135static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev,
136 int can_sleep)
137{
138 struct ipoib_mcast *mcast;
139
Roland Dreierde6eb662005-11-02 07:23:14 -0800140 mcast = kzalloc(sizeof *mcast, can_sleep ? GFP_KERNEL : GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (!mcast)
142 return NULL;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 mcast->dev = dev;
145 mcast->created = jiffies;
Doug Ledford69911412015-02-21 19:27:05 -0500146 mcast->delay_until = jiffies;
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700147 mcast->backoff = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 INIT_LIST_HEAD(&mcast->list);
150 INIT_LIST_HEAD(&mcast->neigh_list);
151 skb_queue_head_init(&mcast->pkt_queue);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return mcast;
154}
155
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300156static struct ipoib_mcast *__ipoib_mcast_find(struct net_device *dev, void *mgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
158 struct ipoib_dev_priv *priv = netdev_priv(dev);
159 struct rb_node *n = priv->multicast_tree.rb_node;
160
161 while (n) {
162 struct ipoib_mcast *mcast;
163 int ret;
164
165 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
166
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300167 ret = memcmp(mgid, mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 sizeof (union ib_gid));
169 if (ret < 0)
170 n = n->rb_left;
171 else if (ret > 0)
172 n = n->rb_right;
173 else
174 return mcast;
175 }
176
177 return NULL;
178}
179
180static int __ipoib_mcast_add(struct net_device *dev, struct ipoib_mcast *mcast)
181{
182 struct ipoib_dev_priv *priv = netdev_priv(dev);
183 struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL;
184
185 while (*n) {
186 struct ipoib_mcast *tmcast;
187 int ret;
188
189 pn = *n;
190 tmcast = rb_entry(pn, struct ipoib_mcast, rb_node);
191
192 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw,
193 sizeof (union ib_gid));
194 if (ret < 0)
195 n = &pn->rb_left;
196 else if (ret > 0)
197 n = &pn->rb_right;
198 else
199 return -EEXIST;
200 }
201
202 rb_link_node(&mcast->rb_node, pn, n);
203 rb_insert_color(&mcast->rb_node, &priv->multicast_tree);
204
205 return 0;
206}
207
208static int ipoib_mcast_join_finish(struct ipoib_mcast *mcast,
209 struct ib_sa_mcmember_rec *mcmember)
210{
211 struct net_device *dev = mcast->dev;
212 struct ipoib_dev_priv *priv = netdev_priv(dev);
Eli Cohen7343b232006-02-27 20:47:43 -0800213 struct ipoib_ah *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 int ret;
Eli Cohend0de1362008-07-14 23:48:50 -0700215 int set_qkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 mcast->mcmember = *mcmember;
218
Patrick McHardybea1e222012-08-30 07:01:30 +0000219 /* Set the multicast MTU and cached Q_Key before we attach if it's
220 * the broadcast group.
221 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
223 sizeof (union ib_gid))) {
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700224 spin_lock_irq(&priv->lock);
225 if (!priv->broadcast) {
226 spin_unlock_irq(&priv->lock);
227 return -EAGAIN;
228 }
Patrick McHardybea1e222012-08-30 07:01:30 +0000229 priv->mcast_mtu = IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700231 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 priv->tx_wr.wr.ud.remote_qkey = priv->qkey;
Eli Cohend0de1362008-07-14 23:48:50 -0700233 set_qkey = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 }
235
236 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
237 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700238 ipoib_warn(priv, "multicast group %pI6 already attached\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700239 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 return 0;
242 }
243
244 ret = ipoib_mcast_attach(dev, be16_to_cpu(mcast->mcmember.mlid),
Eli Cohend0de1362008-07-14 23:48:50 -0700245 &mcast->mcmember.mgid, set_qkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (ret < 0) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700247 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700248 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
251 return ret;
252 }
253 }
254
255 {
256 struct ib_ah_attr av = {
257 .dlid = be16_to_cpu(mcast->mcmember.mlid),
258 .port_num = priv->port,
259 .sl = mcast->mcmember.sl,
260 .ah_flags = IB_AH_GRH,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700261 .static_rate = mcast->mcmember.rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .grh = {
263 .flow_label = be32_to_cpu(mcast->mcmember.flow_label),
264 .hop_limit = mcast->mcmember.hop_limit,
265 .sgid_index = 0,
266 .traffic_class = mcast->mcmember.traffic_class
267 }
268 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 av.grh.dgid = mcast->mcmember.mgid;
270
Eli Cohen7343b232006-02-27 20:47:43 -0800271 ah = ipoib_create_ah(dev, priv->pd, &av);
Mike Marciniszyn38743972011-11-21 08:43:54 -0500272 if (IS_ERR(ah)) {
273 ipoib_warn(priv, "ib_address_create failed %ld\n",
274 -PTR_ERR(ah));
275 /* use original error */
276 return PTR_ERR(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 } else {
Or Gerlitz624d01f2006-07-24 10:42:00 +0300278 spin_lock_irq(&priv->lock);
279 mcast->ah = ah;
280 spin_unlock_irq(&priv->lock);
281
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700282 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700283 mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 mcast->ah->ah,
285 be16_to_cpu(mcast->mcmember.mlid),
286 mcast->mcmember.sl);
287 }
288 }
289
290 /* actually send any queued packets */
Roland Dreier943c2462008-09-30 10:36:21 -0700291 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 while (!skb_queue_empty(&mcast->pkt_queue)) {
293 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
David S. Miller69cce1d2011-07-17 23:09:49 -0700294
Roland Dreier943c2462008-09-30 10:36:21 -0700295 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (dev_queue_xmit(skb))
299 ipoib_warn(priv, "dev_queue_xmit failed to requeue packet\n");
Roland Dreier936d7de2012-02-07 14:51:21 +0000300
Roland Dreier943c2462008-09-30 10:36:21 -0700301 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
Roland Dreier943c2462008-09-30 10:36:21 -0700303 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 return 0;
306}
307
Yossi Etigine8224e42008-09-16 11:57:45 -0700308void ipoib_mcast_carrier_on_task(struct work_struct *work)
309{
310 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
311 carrier_on_task);
Moni Shoua5ee951202009-09-24 12:01:05 -0700312 struct ib_port_attr attr;
Yossi Etigine8224e42008-09-16 11:57:45 -0700313
Moni Shoua5ee951202009-09-24 12:01:05 -0700314 if (ib_query_port(priv->ca, priv->port, &attr) ||
315 attr.state != IB_PORT_ACTIVE) {
316 ipoib_dbg(priv, "Keeping carrier off until IB port is active\n");
317 return;
318 }
319
Doug Ledford894021a2015-02-21 19:27:02 -0500320 /*
321 * Take rtnl_lock to avoid racing with ipoib_stop() and
322 * turning the carrier back on while a device is being
323 * removed. However, ipoib_stop() will attempt to flush
324 * the workqueue while holding the rtnl lock, so loop
325 * on trylock until either we get the lock or we see
326 * FLAG_OPER_UP go away as that signals that we are bailing
327 * and can safely ignore the carrier on work.
328 */
329 while (!rtnl_trylock()) {
330 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
331 return;
332 else
333 msleep(20);
334 }
Doug Ledfordc84ca6d2015-02-21 19:27:01 -0500335 if (!ipoib_cm_admin_enabled(priv->dev))
336 dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu));
Yossi Etigine8224e42008-09-16 11:57:45 -0700337 netif_carrier_on(priv->dev);
338 rtnl_unlock();
339}
340
Sean Heftyfaec2f72007-02-15 17:00:17 -0800341static int ipoib_mcast_join_complete(int status,
342 struct ib_sa_multicast *multicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Sean Heftyfaec2f72007-02-15 17:00:17 -0800344 struct ipoib_mcast *mcast = multicast->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct net_device *dev = mcast->dev;
346 struct ipoib_dev_priv *priv = netdev_priv(dev);
347
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500348 ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n",
349 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ?
350 "sendonly " : "",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700351 mcast->mcmember.mgid.raw, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Sean Heftyfaec2f72007-02-15 17:00:17 -0800353 /* We trap for port events ourselves. */
Roland Dreiere7a623d2015-01-30 15:39:20 -0800354 if (status == -ENETRESET) {
355 status = 0;
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300356 goto out;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800357 }
Sean Heftyfaec2f72007-02-15 17:00:17 -0800358
359 if (!status)
360 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
361
362 if (!status) {
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700363 mcast->backoff = 1;
Doug Ledford69911412015-02-21 19:27:05 -0500364 mcast->delay_until = jiffies;
Shirley Ma55c9add2007-03-08 14:59:30 -0800365
Yossi Etigine8224e42008-09-16 11:57:45 -0700366 /*
Doug Ledford0b395782015-02-21 19:27:03 -0500367 * Defer carrier on work to priv->wq to avoid a
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500368 * deadlock on rtnl_lock here. Requeue our multicast
369 * work too, which will end up happening right after
370 * our carrier on task work and will allow us to
371 * send out all of the non-broadcast joins
Yossi Etigine8224e42008-09-16 11:57:45 -0700372 */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500373 if (mcast == priv->broadcast) {
Doug Ledford1c0453d2015-02-21 19:27:07 -0500374 spin_lock_irq(&priv->lock);
Doug Ledford0b395782015-02-21 19:27:03 -0500375 queue_work(priv->wq, &priv->carrier_on_task);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500376 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500377 goto out_locked;
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500378 }
Doug Ledford69911412015-02-21 19:27:05 -0500379 } else {
380 if (mcast->logcount++ < 20) {
381 if (status == -ETIMEDOUT || status == -EAGAIN) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500382 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n",
383 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500384 mcast->mcmember.mgid.raw, status);
385 } else {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500386 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n",
387 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500388 mcast->mcmember.mgid.raw, status);
389 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800390 }
Doug Ledford69911412015-02-21 19:27:05 -0500391
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500392 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
393 mcast->backoff >= 2) {
394 /*
395 * We only retry sendonly joins once before we drop
396 * the packet and quit trying to deal with the
397 * group. However, we leave the group in the
398 * mcast list as an unjoined group. If we want to
399 * try joining again, we simply queue up a packet
400 * and restart the join thread. The empty queue
401 * is why the join thread ignores this group.
402 */
403 mcast->backoff = 1;
404 netif_tx_lock_bh(dev);
405 while (!skb_queue_empty(&mcast->pkt_queue)) {
406 ++dev->stats.tx_dropped;
407 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
408 }
409 netif_tx_unlock_bh(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500410 } else {
411 spin_lock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500412 /* Requeue this join task with a backoff delay */
413 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500414 goto out_locked;
415 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800416 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800417out:
Doug Ledford1c0453d2015-02-21 19:27:07 -0500418 spin_lock_irq(&priv->lock);
419out_locked:
420 /*
421 * Make sure to set mcast->mc before we clear the busy flag to avoid
422 * racing with code that checks for BUSY before checking mcast->mc
423 */
Doug Ledford69911412015-02-21 19:27:05 -0500424 if (status)
425 mcast->mc = NULL;
Doug Ledford1c0453d2015-02-21 19:27:07 -0500426 else
427 mcast->mc = multicast;
428 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
429 spin_unlock_irq(&priv->lock);
Roland Dreiere7a623d2015-01-30 15:39:20 -0800430 complete(&mcast->done);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500431
Sean Heftyfaec2f72007-02-15 17:00:17 -0800432 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435static void ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast,
436 int create)
437{
438 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500439 struct ib_sa_multicast *multicast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 struct ib_sa_mcmember_rec rec = {
441 .join_state = 1
442 };
443 ib_sa_comp_mask comp_mask;
444 int ret = 0;
445
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700446 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 rec.mgid = mcast->mcmember.mgid;
449 rec.port_gid = priv->local_gid;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700450 rec.pkey = cpu_to_be16(priv->pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 comp_mask =
453 IB_SA_MCMEMBER_REC_MGID |
454 IB_SA_MCMEMBER_REC_PORT_GID |
455 IB_SA_MCMEMBER_REC_PKEY |
456 IB_SA_MCMEMBER_REC_JOIN_STATE;
457
458 if (create) {
459 comp_mask |=
Roland Dreierd0df6d62006-09-22 15:22:56 -0700460 IB_SA_MCMEMBER_REC_QKEY |
461 IB_SA_MCMEMBER_REC_MTU_SELECTOR |
462 IB_SA_MCMEMBER_REC_MTU |
463 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS |
464 IB_SA_MCMEMBER_REC_RATE_SELECTOR |
465 IB_SA_MCMEMBER_REC_RATE |
466 IB_SA_MCMEMBER_REC_SL |
467 IB_SA_MCMEMBER_REC_FLOW_LABEL |
468 IB_SA_MCMEMBER_REC_HOP_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 rec.qkey = priv->broadcast->mcmember.qkey;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700471 rec.mtu_selector = IB_SA_EQ;
472 rec.mtu = priv->broadcast->mcmember.mtu;
473 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
474 rec.rate_selector = IB_SA_EQ;
475 rec.rate = priv->broadcast->mcmember.rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 rec.sl = priv->broadcast->mcmember.sl;
477 rec.flow_label = priv->broadcast->mcmember.flow_label;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700478 rec.hop_limit = priv->broadcast->mcmember.hop_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
Doug Ledford1c0453d2015-02-21 19:27:07 -0500481 multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port,
Sean Heftyfaec2f72007-02-15 17:00:17 -0800482 &rec, comp_mask, GFP_KERNEL,
483 ipoib_mcast_join_complete, mcast);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500484 if (IS_ERR(multicast)) {
485 ret = PTR_ERR(multicast);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800486 ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500487 spin_lock_irq(&priv->lock);
488 /* Requeue this join task with a backoff delay */
Doug Ledford69911412015-02-21 19:27:05 -0500489 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500490 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
491 spin_unlock_irq(&priv->lock);
Doug Ledford69911412015-02-21 19:27:05 -0500492 complete(&mcast->done);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
David Howellsc4028952006-11-22 14:57:56 +0000496void ipoib_mcast_join_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
David Howellsc4028952006-11-22 14:57:56 +0000498 struct ipoib_dev_priv *priv =
499 container_of(work, struct ipoib_dev_priv, mcast_task.work);
500 struct net_device *dev = priv->dev;
Erez Shitrit94232d92013-10-16 17:37:53 +0300501 struct ib_port_attr port_attr;
Doug Ledford69911412015-02-21 19:27:05 -0500502 unsigned long delay_until = 0;
503 struct ipoib_mcast *mcast = NULL;
504 int create = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (!test_bit(IPOIB_MCAST_RUN, &priv->flags))
507 return;
508
Erez Shitrit94232d92013-10-16 17:37:53 +0300509 if (ib_query_port(priv->ca, priv->port, &port_attr) ||
510 port_attr.state != IB_PORT_ACTIVE) {
511 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
512 port_attr.state);
513 return;
514 }
Alex Estrin68f9d832014-08-20 11:15:08 -0400515 priv->local_lid = port_attr.lid;
Erez Shitrit94232d92013-10-16 17:37:53 +0300516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (ib_query_gid(priv->ca, priv->port, 0, &priv->local_gid))
Michael S. Tsirkin24bd1e42007-05-18 16:12:54 +0300518 ipoib_warn(priv, "ib_query_gid() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 else
520 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
521
Doug Ledford69911412015-02-21 19:27:05 -0500522 spin_lock_irq(&priv->lock);
523 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
524 goto out;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 if (!priv->broadcast) {
Roland Dreier20b83382006-02-11 12:22:12 -0800527 struct ipoib_mcast *broadcast;
528
Doug Ledford69911412015-02-21 19:27:05 -0500529 broadcast = ipoib_mcast_alloc(dev, 0);
Roland Dreier20b83382006-02-11 12:22:12 -0800530 if (!broadcast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 ipoib_warn(priv, "failed to allocate broadcast group\n");
Doug Ledford69911412015-02-21 19:27:05 -0500532 /*
533 * Restart us after a 1 second delay to retry
534 * creating our broadcast group and attaching to
535 * it. Until this succeeds, this ipoib dev is
536 * completely stalled (multicast wise).
537 */
538 __ipoib_mcast_schedule_join_thread(priv, NULL, 1);
539 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
Roland Dreier20b83382006-02-11 12:22:12 -0800542 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
543 sizeof (union ib_gid));
544 priv->broadcast = broadcast;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 __ipoib_mcast_add(dev, priv->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
549 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Doug Ledford69911412015-02-21 19:27:05 -0500550 if (IS_ERR_OR_NULL(priv->broadcast->mc) &&
551 !test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags)) {
552 mcast = priv->broadcast;
553 create = 0;
554 if (mcast->backoff > 1 &&
555 time_before(jiffies, mcast->delay_until)) {
556 delay_until = mcast->delay_until;
557 mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
559 }
Doug Ledford69911412015-02-21 19:27:05 -0500560 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
562
Doug Ledford69911412015-02-21 19:27:05 -0500563 /*
564 * We'll never get here until the broadcast group is both allocated
565 * and attached
566 */
567 list_for_each_entry(mcast, &priv->multicast_list, list) {
568 if (IS_ERR_OR_NULL(mcast->mc) &&
569 !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags) &&
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500570 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ||
571 !skb_queue_empty(&mcast->pkt_queue))) {
Doug Ledford69911412015-02-21 19:27:05 -0500572 if (mcast->backoff == 1 ||
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500573 time_after_eq(jiffies, mcast->delay_until)) {
Doug Ledford69911412015-02-21 19:27:05 -0500574 /* Found the next unjoined group */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500575 init_completion(&mcast->done);
576 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
577 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
578 create = 0;
579 else
580 create = 1;
581 spin_unlock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500582 ipoib_mcast_join(dev, mcast, create);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500583 spin_lock_irq(&priv->lock);
584 } else if (!delay_until ||
Doug Ledford69911412015-02-21 19:27:05 -0500585 time_before(mcast->delay_until, delay_until))
586 delay_until = mcast->delay_until;
587 }
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500590 mcast = NULL;
591 ipoib_dbg_mcast(priv, "successfully started all multicast joins\n");
Doug Ledford69911412015-02-21 19:27:05 -0500592
593out:
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500594 if (delay_until) {
595 cancel_delayed_work(&priv->mcast_task);
596 queue_delayed_work(priv->wq, &priv->mcast_task,
597 delay_until - jiffies);
598 }
Doug Ledford69911412015-02-21 19:27:05 -0500599 if (mcast) {
600 init_completion(&mcast->done);
601 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
602 }
603 spin_unlock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500604 if (mcast)
605 ipoib_mcast_join(dev, mcast, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608int ipoib_mcast_start_thread(struct net_device *dev)
609{
610 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500611 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 ipoib_dbg_mcast(priv, "starting multicast thread\n");
614
Doug Ledford1c0453d2015-02-21 19:27:07 -0500615 spin_lock_irqsave(&priv->lock, flags);
Doug Ledford69911412015-02-21 19:27:05 -0500616 set_bit(IPOIB_MCAST_RUN, &priv->flags);
617 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500618 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 return 0;
621}
622
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500623int ipoib_mcast_stop_thread(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
625 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500626 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
629
Doug Ledford1c0453d2015-02-21 19:27:07 -0500630 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 clear_bit(IPOIB_MCAST_RUN, &priv->flags);
632 cancel_delayed_work(&priv->mcast_task);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500633 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500635 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638}
639
640static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
641{
642 struct ipoib_dev_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 int ret = 0;
644
Sean Heftye07832b2007-03-19 14:31:36 -0800645 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Doug Ledford69911412015-02-21 19:27:05 -0500646 ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n");
647
648 if (!IS_ERR_OR_NULL(mcast->mc))
Sean Heftye07832b2007-03-19 14:31:36 -0800649 ib_sa_free_multicast(mcast->mc);
650
Sean Heftyfaec2f72007-02-15 17:00:17 -0800651 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700652 ipoib_dbg_mcast(priv, "leaving MGID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700653 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Sean Heftyfaec2f72007-02-15 17:00:17 -0800655 /* Remove ourselves from the multicast group */
Roland Dreier9eae5542008-07-14 23:48:50 -0700656 ret = ib_detach_mcast(priv->qp, &mcast->mcmember.mgid,
657 be16_to_cpu(mcast->mcmember.mlid));
Sean Heftyfaec2f72007-02-15 17:00:17 -0800658 if (ret)
Roland Dreier9eae5542008-07-14 23:48:50 -0700659 ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret);
Doug Ledford69911412015-02-21 19:27:05 -0500660 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
661 ipoib_dbg(priv, "leaving with no mcmember but not a "
662 "SENDONLY join\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return 0;
665}
666
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000667void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct ipoib_dev_priv *priv = netdev_priv(dev);
670 struct ipoib_mcast *mcast;
Roland Dreier943c2462008-09-30 10:36:21 -0700671 unsigned long flags;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000672 void *mgid = daddr + 4;
David S. Miller700db992012-07-05 21:08:05 -0700673
Roland Dreier943c2462008-09-30 10:36:21 -0700674 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Or Gerlitzb3e27492008-03-11 16:10:02 +0200676 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
Roland Dreier20b83382006-02-11 12:22:12 -0800677 !priv->broadcast ||
678 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Roland Dreierde903512007-09-28 15:33:51 -0700679 ++dev->stats.tx_dropped;
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800680 dev_kfree_skb_any(skb);
681 goto unlock;
682 }
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 mcast = __ipoib_mcast_find(dev, mgid);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500685 if (!mcast || !mcast->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (!mcast) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500687 /* Let's create a new send only group now */
688 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
689 mgid);
690
691 mcast = ipoib_mcast_alloc(dev, 0);
692 if (!mcast) {
693 ipoib_warn(priv, "unable to allocate memory "
694 "for multicast structure\n");
695 ++dev->stats.tx_dropped;
696 dev_kfree_skb_any(skb);
697 goto unlock;
698 }
699
700 set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags);
701 memcpy(mcast->mcmember.mgid.raw, mgid,
702 sizeof (union ib_gid));
703 __ipoib_mcast_add(dev, mcast);
704 list_add_tail(&mcast->list, &priv->multicast_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE)
707 skb_queue_tail(&mcast->pkt_queue, skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800708 else {
Roland Dreierde903512007-09-28 15:33:51 -0700709 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 dev_kfree_skb_any(skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800711 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500712 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
713 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
714 }
715 } else {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000716 struct ipoib_neigh *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000718 spin_unlock_irqrestore(&priv->lock, flags);
719 neigh = ipoib_neigh_get(dev, daddr);
720 spin_lock_irqsave(&priv->lock, flags);
721 if (!neigh) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000722 neigh = ipoib_neigh_alloc(daddr, dev);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000723 if (neigh) {
724 kref_get(&mcast->ah->ref);
725 neigh->ah = mcast->ah;
726 list_add_tail(&neigh->list, &mcast->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700729 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ipoib_send(dev, skb, mcast->ah, IB_MULTICAST_QPN);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000731 if (neigh)
732 ipoib_neigh_put(neigh);
Roland Dreier721d67c2009-09-05 20:23:40 -0700733 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800736unlock:
Roland Dreier943c2462008-09-30 10:36:21 -0700737 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740void ipoib_mcast_dev_flush(struct net_device *dev)
741{
742 struct ipoib_dev_priv *priv = netdev_priv(dev);
743 LIST_HEAD(remove_list);
Eli Cohen988bd502006-01-12 14:32:20 -0800744 struct ipoib_mcast *mcast, *tmcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 unsigned long flags;
746
747 ipoib_dbg_mcast(priv, "flushing multicast list\n");
748
749 spin_lock_irqsave(&priv->lock, flags);
Eli Cohen988bd502006-01-12 14:32:20 -0800750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
Eli Cohen988bd502006-01-12 14:32:20 -0800752 list_del(&mcast->list);
753 rb_erase(&mcast->rb_node, &priv->multicast_tree);
754 list_add_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756
757 if (priv->broadcast) {
Roland Dreier3cd96562006-09-22 15:22:46 -0700758 rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree);
Eli Cohen988bd502006-01-12 14:32:20 -0800759 list_add_tail(&priv->broadcast->list, &remove_list);
760 priv->broadcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
763 spin_unlock_irqrestore(&priv->lock, flags);
764
Doug Ledford69911412015-02-21 19:27:05 -0500765 /*
766 * make sure the in-flight joins have finished before we attempt
767 * to leave
768 */
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300769 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
Doug Ledford69911412015-02-21 19:27:05 -0500770 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300771 wait_for_completion(&mcast->done);
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 list_for_each_entry_safe(mcast, tmcast, &remove_list, list) {
774 ipoib_mcast_leave(dev, mcast);
775 ipoib_mcast_free(mcast);
776 }
777}
778
Jiri Pirko3e4aa12f82010-03-22 03:21:39 +0000779static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700780{
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700781 /* reserved QPN, prefix, scope */
782 if (memcmp(addr, broadcast, 6))
783 return 0;
784 /* signature lower, pkey */
785 if (memcmp(addr + 7, broadcast + 7, 3))
786 return 0;
787 return 1;
788}
789
David Howellsc4028952006-11-22 14:57:56 +0000790void ipoib_mcast_restart_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
David Howellsc4028952006-11-22 14:57:56 +0000792 struct ipoib_dev_priv *priv =
793 container_of(work, struct ipoib_dev_priv, restart_task);
794 struct net_device *dev = priv->dev;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000795 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct ipoib_mcast *mcast, *tmcast;
797 LIST_HEAD(remove_list);
798 unsigned long flags;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200799 struct ib_sa_mcmember_rec rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Doug Ledford69911412015-02-21 19:27:05 -0500801 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
802 /*
803 * shortcut...on shutdown flush is called next, just
804 * let it do all the work
805 */
806 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Doug Ledford69911412015-02-21 19:27:05 -0500808 ipoib_dbg_mcast(priv, "restarting multicast task\n");
Roland Dreier4e0ab202015-01-30 15:38:46 -0800809
Herbert Xu932ff272006-06-09 12:20:56 -0700810 local_irq_save(flags);
David S. Millere308a5d2008-07-15 00:13:44 -0700811 netif_addr_lock(dev);
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800812 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /*
815 * Unfortunately, the networking core only gives us a list of all of
816 * the multicast hardware addresses. We need to figure out which ones
817 * are new and which ones have been removed
818 */
819
820 /* Clear out the found flag */
821 list_for_each_entry(mcast, &priv->multicast_list, list)
822 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
823
824 /* Mark all of the entries that are found or don't exist */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000825 netdev_for_each_mc_addr(ha, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 union ib_gid mgid;
827
Jiri Pirko22bedad32010-04-01 21:22:57 +0000828 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700829 continue;
830
Jiri Pirko22bedad32010-04-01 21:22:57 +0000831 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 mcast = __ipoib_mcast_find(dev, &mgid);
834 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
835 struct ipoib_mcast *nmcast;
836
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200837 /* ignore group which is directly joined by userspace */
838 if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) &&
839 !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700840 ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700841 mgid.raw);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200842 continue;
843 }
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* Not found or send-only group, let's add a new entry */
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700846 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700847 mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 nmcast = ipoib_mcast_alloc(dev, 0);
850 if (!nmcast) {
851 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
852 continue;
853 }
854
855 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
856
857 nmcast->mcmember.mgid = mgid;
858
859 if (mcast) {
860 /* Destroy the send only entry */
Akinobu Mita179e0912006-06-26 00:24:41 -0700861 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 rb_replace_node(&mcast->rb_node,
864 &nmcast->rb_node,
865 &priv->multicast_tree);
866 } else
867 __ipoib_mcast_add(dev, nmcast);
868
869 list_add_tail(&nmcast->list, &priv->multicast_list);
870 }
871
872 if (mcast)
873 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
874 }
875
876 /* Remove all of the entries don't exist anymore */
877 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
878 if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) &&
879 !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700880 ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700881 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 rb_erase(&mcast->rb_node, &priv->multicast_tree);
884
885 /* Move to the remove list */
Akinobu Mita179e0912006-06-26 00:24:41 -0700886 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 }
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800889
890 spin_unlock(&priv->lock);
David S. Millere308a5d2008-07-15 00:13:44 -0700891 netif_addr_unlock(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700892 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Doug Ledford69911412015-02-21 19:27:05 -0500894 /*
895 * make sure the in-flight joins have finished before we attempt
896 * to leave
897 */
898 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
899 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
900 wait_for_completion(&mcast->done);
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 list_for_each_entry_safe(mcast, tmcast, &remove_list, list) {
903 ipoib_mcast_leave(mcast->dev, mcast);
904 ipoib_mcast_free(mcast);
905 }
Roland Dreier962121b2015-01-30 15:39:11 -0800906
Doug Ledford69911412015-02-21 19:27:05 -0500907 /*
908 * Double check that we are still up
909 */
910 if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
911 spin_lock_irqsave(&priv->lock, flags);
912 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
913 spin_unlock_irqrestore(&priv->lock, flags);
914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
916
Roland Dreier8ae5a8a2005-11-02 20:51:01 -0800917#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
920{
921 struct ipoib_mcast_iter *iter;
922
923 iter = kmalloc(sizeof *iter, GFP_KERNEL);
924 if (!iter)
925 return NULL;
926
927 iter->dev = dev;
Roland Dreier1732b0e2005-11-07 10:33:11 -0800928 memset(iter->mgid.raw, 0, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 if (ipoib_mcast_iter_next(iter)) {
Roland Dreier1732b0e2005-11-07 10:33:11 -0800931 kfree(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return NULL;
933 }
934
935 return iter;
936}
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
939{
940 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
941 struct rb_node *n;
942 struct ipoib_mcast *mcast;
943 int ret = 1;
944
945 spin_lock_irq(&priv->lock);
946
947 n = rb_first(&priv->multicast_tree);
948
949 while (n) {
950 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
951
952 if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw,
953 sizeof (union ib_gid)) < 0) {
954 iter->mgid = mcast->mcmember.mgid;
955 iter->created = mcast->created;
956 iter->queuelen = skb_queue_len(&mcast->pkt_queue);
957 iter->complete = !!mcast->ah;
958 iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY));
959
960 ret = 0;
961
962 break;
963 }
964
965 n = rb_next(n);
966 }
967
968 spin_unlock_irq(&priv->lock);
969
970 return ret;
971}
972
973void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
974 union ib_gid *mgid,
975 unsigned long *created,
976 unsigned int *queuelen,
977 unsigned int *complete,
978 unsigned int *send_only)
979{
980 *mgid = iter->mgid;
981 *created = iter->created;
982 *queuelen = iter->queuelen;
983 *complete = iter->complete;
984 *send_only = iter->send_only;
985}
Roland Dreier8ae5a8a2005-11-02 20:51:01 -0800986
987#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */