blob: 050dfa175d169dd3f77ee83767f1988062989891 [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{
Erez Shitrit0e5544d2015-04-02 13:39:04 +030074 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
Doug Ledford69911412015-02-21 19:27:05 -050075 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
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600109static void ipoib_mcast_free(struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
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
Christoph Lameter432c55f2015-12-21 08:42:54 -0600156static 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 }
Erez Shitrit3fd06052015-04-02 13:39:01 +0300229 /*update priv member according to the new mcast*/
230 priv->broadcast->mcmember.qkey = mcmember->qkey;
231 priv->broadcast->mcmember.mtu = mcmember->mtu;
232 priv->broadcast->mcmember.traffic_class = mcmember->traffic_class;
233 priv->broadcast->mcmember.rate = mcmember->rate;
234 priv->broadcast->mcmember.sl = mcmember->sl;
235 priv->broadcast->mcmember.flow_label = mcmember->flow_label;
236 priv->broadcast->mcmember.hop_limit = mcmember->hop_limit;
237 /* assume if the admin and the mcast are the same both can be changed */
238 if (priv->mcast_mtu == priv->admin_mtu)
239 priv->admin_mtu =
240 priv->mcast_mtu =
241 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
242 else
243 priv->mcast_mtu =
244 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700247 spin_unlock_irq(&priv->lock);
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100248 priv->tx_wr.remote_qkey = priv->qkey;
Eli Cohend0de1362008-07-14 23:48:50 -0700249 set_qkey = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
252 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
253 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700254 ipoib_warn(priv, "multicast group %pI6 already attached\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700255 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 return 0;
258 }
259
260 ret = ipoib_mcast_attach(dev, be16_to_cpu(mcast->mcmember.mlid),
Eli Cohend0de1362008-07-14 23:48:50 -0700261 &mcast->mcmember.mgid, set_qkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (ret < 0) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700263 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700264 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
267 return ret;
268 }
269 }
270
271 {
272 struct ib_ah_attr av = {
273 .dlid = be16_to_cpu(mcast->mcmember.mlid),
274 .port_num = priv->port,
275 .sl = mcast->mcmember.sl,
276 .ah_flags = IB_AH_GRH,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700277 .static_rate = mcast->mcmember.rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 .grh = {
279 .flow_label = be32_to_cpu(mcast->mcmember.flow_label),
280 .hop_limit = mcast->mcmember.hop_limit,
281 .sgid_index = 0,
282 .traffic_class = mcast->mcmember.traffic_class
283 }
284 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 av.grh.dgid = mcast->mcmember.mgid;
286
Eli Cohen7343b232006-02-27 20:47:43 -0800287 ah = ipoib_create_ah(dev, priv->pd, &av);
Mike Marciniszyn38743972011-11-21 08:43:54 -0500288 if (IS_ERR(ah)) {
289 ipoib_warn(priv, "ib_address_create failed %ld\n",
290 -PTR_ERR(ah));
291 /* use original error */
292 return PTR_ERR(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 } else {
Or Gerlitz624d01f2006-07-24 10:42:00 +0300294 spin_lock_irq(&priv->lock);
295 mcast->ah = ah;
296 spin_unlock_irq(&priv->lock);
297
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700298 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700299 mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 mcast->ah->ah,
301 be16_to_cpu(mcast->mcmember.mlid),
302 mcast->mcmember.sl);
303 }
304 }
305
306 /* actually send any queued packets */
Roland Dreier943c2462008-09-30 10:36:21 -0700307 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 while (!skb_queue_empty(&mcast->pkt_queue)) {
309 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
David S. Miller69cce1d2011-07-17 23:09:49 -0700310
Roland Dreier943c2462008-09-30 10:36:21 -0700311 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (dev_queue_xmit(skb))
315 ipoib_warn(priv, "dev_queue_xmit failed to requeue packet\n");
Roland Dreier936d7de2012-02-07 14:51:21 +0000316
Roland Dreier943c2462008-09-30 10:36:21 -0700317 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Roland Dreier943c2462008-09-30 10:36:21 -0700319 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 return 0;
322}
323
Yossi Etigine8224e42008-09-16 11:57:45 -0700324void ipoib_mcast_carrier_on_task(struct work_struct *work)
325{
326 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
327 carrier_on_task);
Moni Shoua5ee951202009-09-24 12:01:05 -0700328 struct ib_port_attr attr;
Yossi Etigine8224e42008-09-16 11:57:45 -0700329
Moni Shoua5ee951202009-09-24 12:01:05 -0700330 if (ib_query_port(priv->ca, priv->port, &attr) ||
331 attr.state != IB_PORT_ACTIVE) {
332 ipoib_dbg(priv, "Keeping carrier off until IB port is active\n");
333 return;
334 }
335
Doug Ledford894021a2015-02-21 19:27:02 -0500336 /*
337 * Take rtnl_lock to avoid racing with ipoib_stop() and
338 * turning the carrier back on while a device is being
339 * removed. However, ipoib_stop() will attempt to flush
340 * the workqueue while holding the rtnl lock, so loop
341 * on trylock until either we get the lock or we see
342 * FLAG_OPER_UP go away as that signals that we are bailing
343 * and can safely ignore the carrier on work.
344 */
345 while (!rtnl_trylock()) {
346 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
347 return;
348 else
349 msleep(20);
350 }
Doug Ledfordc84ca6d2015-02-21 19:27:01 -0500351 if (!ipoib_cm_admin_enabled(priv->dev))
352 dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu));
Yossi Etigine8224e42008-09-16 11:57:45 -0700353 netif_carrier_on(priv->dev);
354 rtnl_unlock();
355}
356
Sean Heftyfaec2f72007-02-15 17:00:17 -0800357static int ipoib_mcast_join_complete(int status,
358 struct ib_sa_multicast *multicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Sean Heftyfaec2f72007-02-15 17:00:17 -0800360 struct ipoib_mcast *mcast = multicast->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct net_device *dev = mcast->dev;
362 struct ipoib_dev_priv *priv = netdev_priv(dev);
363
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500364 ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n",
365 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ?
366 "sendonly " : "",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700367 mcast->mcmember.mgid.raw, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Sean Heftyfaec2f72007-02-15 17:00:17 -0800369 /* We trap for port events ourselves. */
Roland Dreiere7a623d2015-01-30 15:39:20 -0800370 if (status == -ENETRESET) {
371 status = 0;
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300372 goto out;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800373 }
Sean Heftyfaec2f72007-02-15 17:00:17 -0800374
375 if (!status)
376 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
377
378 if (!status) {
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700379 mcast->backoff = 1;
Doug Ledford69911412015-02-21 19:27:05 -0500380 mcast->delay_until = jiffies;
Shirley Ma55c9add2007-03-08 14:59:30 -0800381
Yossi Etigine8224e42008-09-16 11:57:45 -0700382 /*
Doug Ledford0b395782015-02-21 19:27:03 -0500383 * Defer carrier on work to priv->wq to avoid a
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500384 * deadlock on rtnl_lock here. Requeue our multicast
385 * work too, which will end up happening right after
386 * our carrier on task work and will allow us to
387 * send out all of the non-broadcast joins
Yossi Etigine8224e42008-09-16 11:57:45 -0700388 */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500389 if (mcast == priv->broadcast) {
Doug Ledford1c0453d2015-02-21 19:27:07 -0500390 spin_lock_irq(&priv->lock);
Doug Ledford0b395782015-02-21 19:27:03 -0500391 queue_work(priv->wq, &priv->carrier_on_task);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500392 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500393 goto out_locked;
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500394 }
Doug Ledford69911412015-02-21 19:27:05 -0500395 } else {
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600396 bool silent_fail =
397 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
398 status == -EINVAL;
399
400 if (mcast->logcount < 20) {
401 if (status == -ETIMEDOUT || status == -EAGAIN ||
402 silent_fail) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500403 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n",
404 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500405 mcast->mcmember.mgid.raw, status);
406 } else {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500407 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n",
408 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500409 mcast->mcmember.mgid.raw, status);
410 }
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600411
412 if (!silent_fail)
413 mcast->logcount++;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800414 }
Doug Ledford69911412015-02-21 19:27:05 -0500415
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500416 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
417 mcast->backoff >= 2) {
418 /*
419 * We only retry sendonly joins once before we drop
420 * the packet and quit trying to deal with the
421 * group. However, we leave the group in the
422 * mcast list as an unjoined group. If we want to
423 * try joining again, we simply queue up a packet
424 * and restart the join thread. The empty queue
425 * is why the join thread ignores this group.
426 */
427 mcast->backoff = 1;
428 netif_tx_lock_bh(dev);
429 while (!skb_queue_empty(&mcast->pkt_queue)) {
430 ++dev->stats.tx_dropped;
431 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
432 }
433 netif_tx_unlock_bh(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500434 } else {
435 spin_lock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500436 /* Requeue this join task with a backoff delay */
437 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500438 goto out_locked;
439 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800440 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800441out:
Doug Ledford1c0453d2015-02-21 19:27:07 -0500442 spin_lock_irq(&priv->lock);
443out_locked:
444 /*
445 * Make sure to set mcast->mc before we clear the busy flag to avoid
446 * racing with code that checks for BUSY before checking mcast->mc
447 */
Doug Ledford69911412015-02-21 19:27:05 -0500448 if (status)
449 mcast->mc = NULL;
Doug Ledford1c0453d2015-02-21 19:27:07 -0500450 else
451 mcast->mc = multicast;
452 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
453 spin_unlock_irq(&priv->lock);
Roland Dreiere7a623d2015-01-30 15:39:20 -0800454 complete(&mcast->done);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500455
Sean Heftyfaec2f72007-02-15 17:00:17 -0800456 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400459static void ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500462 struct ib_sa_multicast *multicast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct ib_sa_mcmember_rec rec = {
464 .join_state = 1
465 };
466 ib_sa_comp_mask comp_mask;
467 int ret = 0;
468
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700469 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 rec.mgid = mcast->mcmember.mgid;
472 rec.port_gid = priv->local_gid;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700473 rec.pkey = cpu_to_be16(priv->pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 comp_mask =
476 IB_SA_MCMEMBER_REC_MGID |
477 IB_SA_MCMEMBER_REC_PORT_GID |
478 IB_SA_MCMEMBER_REC_PKEY |
479 IB_SA_MCMEMBER_REC_JOIN_STATE;
480
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400481 if (mcast != priv->broadcast) {
482 /*
483 * RFC 4391:
484 * The MGID MUST use the same P_Key, Q_Key, SL, MTU,
485 * and HopLimit as those used in the broadcast-GID. The rest
486 * of attributes SHOULD follow the values used in the
487 * broadcast-GID as well.
488 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 comp_mask |=
Roland Dreierd0df6d62006-09-22 15:22:56 -0700490 IB_SA_MCMEMBER_REC_QKEY |
491 IB_SA_MCMEMBER_REC_MTU_SELECTOR |
492 IB_SA_MCMEMBER_REC_MTU |
493 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS |
494 IB_SA_MCMEMBER_REC_RATE_SELECTOR |
495 IB_SA_MCMEMBER_REC_RATE |
496 IB_SA_MCMEMBER_REC_SL |
497 IB_SA_MCMEMBER_REC_FLOW_LABEL |
498 IB_SA_MCMEMBER_REC_HOP_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 rec.qkey = priv->broadcast->mcmember.qkey;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700501 rec.mtu_selector = IB_SA_EQ;
502 rec.mtu = priv->broadcast->mcmember.mtu;
503 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
504 rec.rate_selector = IB_SA_EQ;
505 rec.rate = priv->broadcast->mcmember.rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 rec.sl = priv->broadcast->mcmember.sl;
507 rec.flow_label = priv->broadcast->mcmember.flow_label;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700508 rec.hop_limit = priv->broadcast->mcmember.hop_limit;
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400509
510 /*
Doug Ledfordc3852ab2015-09-25 14:35:01 -0400511 * Send-only IB Multicast joins do not work at the core
512 * IB layer yet, so we can't use them here. However,
513 * we are emulating an Ethernet multicast send, which
514 * does not require a multicast subscription and will
515 * still send properly. The most appropriate thing to
516 * do is to create the group if it doesn't exist as that
517 * most closely emulates the behavior, from a user space
518 * application perspecitive, of Ethernet multicast
519 * operation. For now, we do a full join, maybe later
520 * when the core IB layers support send only joins we
521 * will use them.
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400522 */
Doug Ledfordc3852ab2015-09-25 14:35:01 -0400523#if 0
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400524 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
525 rec.join_state = 4;
526#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528
Doug Ledford1c0453d2015-02-21 19:27:07 -0500529 multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port,
Sean Heftyfaec2f72007-02-15 17:00:17 -0800530 &rec, comp_mask, GFP_KERNEL,
531 ipoib_mcast_join_complete, mcast);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500532 if (IS_ERR(multicast)) {
533 ret = PTR_ERR(multicast);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800534 ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500535 spin_lock_irq(&priv->lock);
536 /* Requeue this join task with a backoff delay */
Doug Ledford69911412015-02-21 19:27:05 -0500537 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500538 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
539 spin_unlock_irq(&priv->lock);
Doug Ledford69911412015-02-21 19:27:05 -0500540 complete(&mcast->done);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
David Howellsc4028952006-11-22 14:57:56 +0000544void ipoib_mcast_join_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
David Howellsc4028952006-11-22 14:57:56 +0000546 struct ipoib_dev_priv *priv =
547 container_of(work, struct ipoib_dev_priv, mcast_task.work);
548 struct net_device *dev = priv->dev;
Erez Shitrit94232d92013-10-16 17:37:53 +0300549 struct ib_port_attr port_attr;
Doug Ledford69911412015-02-21 19:27:05 -0500550 unsigned long delay_until = 0;
551 struct ipoib_mcast *mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Erez Shitrit0e5544d2015-04-02 13:39:04 +0300553 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return;
555
Erez Shitrit94232d92013-10-16 17:37:53 +0300556 if (ib_query_port(priv->ca, priv->port, &port_attr) ||
557 port_attr.state != IB_PORT_ACTIVE) {
558 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
559 port_attr.state);
560 return;
561 }
Alex Estrin68f9d832014-08-20 11:15:08 -0400562 priv->local_lid = port_attr.lid;
Erez Shitrit94232d92013-10-16 17:37:53 +0300563
Matan Barak55ee3ab2015-10-15 18:38:45 +0300564 if (ib_query_gid(priv->ca, priv->port, 0, &priv->local_gid, NULL))
Michael S. Tsirkin24bd1e42007-05-18 16:12:54 +0300565 ipoib_warn(priv, "ib_query_gid() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 else
567 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
568
Doug Ledford69911412015-02-21 19:27:05 -0500569 spin_lock_irq(&priv->lock);
570 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
571 goto out;
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 if (!priv->broadcast) {
Roland Dreier20b83382006-02-11 12:22:12 -0800574 struct ipoib_mcast *broadcast;
575
Doug Ledford69911412015-02-21 19:27:05 -0500576 broadcast = ipoib_mcast_alloc(dev, 0);
Roland Dreier20b83382006-02-11 12:22:12 -0800577 if (!broadcast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 ipoib_warn(priv, "failed to allocate broadcast group\n");
Doug Ledford69911412015-02-21 19:27:05 -0500579 /*
580 * Restart us after a 1 second delay to retry
581 * creating our broadcast group and attaching to
582 * it. Until this succeeds, this ipoib dev is
583 * completely stalled (multicast wise).
584 */
585 __ipoib_mcast_schedule_join_thread(priv, NULL, 1);
586 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Roland Dreier20b83382006-02-11 12:22:12 -0800589 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
590 sizeof (union ib_gid));
591 priv->broadcast = broadcast;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 __ipoib_mcast_add(dev, priv->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595
596 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Doug Ledford69911412015-02-21 19:27:05 -0500597 if (IS_ERR_OR_NULL(priv->broadcast->mc) &&
598 !test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags)) {
599 mcast = priv->broadcast;
Doug Ledford69911412015-02-21 19:27:05 -0500600 if (mcast->backoff > 1 &&
601 time_before(jiffies, mcast->delay_until)) {
602 delay_until = mcast->delay_until;
603 mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 }
Doug Ledford69911412015-02-21 19:27:05 -0500606 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608
Doug Ledford69911412015-02-21 19:27:05 -0500609 /*
610 * We'll never get here until the broadcast group is both allocated
611 * and attached
612 */
613 list_for_each_entry(mcast, &priv->multicast_list, list) {
614 if (IS_ERR_OR_NULL(mcast->mc) &&
615 !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags) &&
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500616 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ||
617 !skb_queue_empty(&mcast->pkt_queue))) {
Doug Ledford69911412015-02-21 19:27:05 -0500618 if (mcast->backoff == 1 ||
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500619 time_after_eq(jiffies, mcast->delay_until)) {
Doug Ledford69911412015-02-21 19:27:05 -0500620 /* Found the next unjoined group */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500621 init_completion(&mcast->done);
622 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500623 spin_unlock_irq(&priv->lock);
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400624 ipoib_mcast_join(dev, mcast);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500625 spin_lock_irq(&priv->lock);
626 } else if (!delay_until ||
Doug Ledford69911412015-02-21 19:27:05 -0500627 time_before(mcast->delay_until, delay_until))
628 delay_until = mcast->delay_until;
629 }
630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500632 mcast = NULL;
633 ipoib_dbg_mcast(priv, "successfully started all multicast joins\n");
Doug Ledford69911412015-02-21 19:27:05 -0500634
635out:
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500636 if (delay_until) {
637 cancel_delayed_work(&priv->mcast_task);
638 queue_delayed_work(priv->wq, &priv->mcast_task,
639 delay_until - jiffies);
640 }
Doug Ledford69911412015-02-21 19:27:05 -0500641 if (mcast) {
642 init_completion(&mcast->done);
643 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
644 }
645 spin_unlock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500646 if (mcast)
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400647 ipoib_mcast_join(dev, mcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
650int ipoib_mcast_start_thread(struct net_device *dev)
651{
652 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500653 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 ipoib_dbg_mcast(priv, "starting multicast thread\n");
656
Doug Ledford1c0453d2015-02-21 19:27:07 -0500657 spin_lock_irqsave(&priv->lock, flags);
Doug Ledford69911412015-02-21 19:27:05 -0500658 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500659 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 return 0;
662}
663
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500664int ipoib_mcast_stop_thread(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500667 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
670
Doug Ledford1c0453d2015-02-21 19:27:07 -0500671 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 cancel_delayed_work(&priv->mcast_task);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500673 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500675 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
678}
679
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600680static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct ipoib_dev_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int ret = 0;
684
Sean Heftye07832b2007-03-19 14:31:36 -0800685 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Doug Ledford69911412015-02-21 19:27:05 -0500686 ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n");
687
688 if (!IS_ERR_OR_NULL(mcast->mc))
Sean Heftye07832b2007-03-19 14:31:36 -0800689 ib_sa_free_multicast(mcast->mc);
690
Sean Heftyfaec2f72007-02-15 17:00:17 -0800691 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700692 ipoib_dbg_mcast(priv, "leaving MGID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700693 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Sean Heftyfaec2f72007-02-15 17:00:17 -0800695 /* Remove ourselves from the multicast group */
Roland Dreier9eae5542008-07-14 23:48:50 -0700696 ret = ib_detach_mcast(priv->qp, &mcast->mcmember.mgid,
697 be16_to_cpu(mcast->mcmember.mlid));
Sean Heftyfaec2f72007-02-15 17:00:17 -0800698 if (ret)
Roland Dreier9eae5542008-07-14 23:48:50 -0700699 ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret);
Doug Ledford69911412015-02-21 19:27:05 -0500700 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
701 ipoib_dbg(priv, "leaving with no mcmember but not a "
702 "SENDONLY join\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
705}
706
Christoph Lameter432c55f2015-12-21 08:42:54 -0600707/*
708 * Check if the multicast group is sendonly. If so remove it from the maps
709 * and add to the remove list
710 */
711void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv *priv, u8 *mgid,
712 struct list_head *remove_list)
713{
714 /* Is this multicast ? */
715 if (*mgid == 0xff) {
716 struct ipoib_mcast *mcast = __ipoib_mcast_find(priv->dev, mgid);
717
718 if (mcast && test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
719 list_del(&mcast->list);
720 rb_erase(&mcast->rb_node, &priv->multicast_tree);
721 list_add_tail(&mcast->list, remove_list);
722 }
723 }
724}
725
Erez Shitrit50be28d2016-01-07 09:28:08 +0200726void ipoib_mcast_remove_list(struct list_head *remove_list)
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600727{
728 struct ipoib_mcast *mcast, *tmcast;
729
730 list_for_each_entry_safe(mcast, tmcast, remove_list, list) {
Erez Shitrit50be28d2016-01-07 09:28:08 +0200731 ipoib_mcast_leave(mcast->dev, mcast);
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600732 ipoib_mcast_free(mcast);
733 }
734}
735
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000736void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct ipoib_dev_priv *priv = netdev_priv(dev);
739 struct ipoib_mcast *mcast;
Roland Dreier943c2462008-09-30 10:36:21 -0700740 unsigned long flags;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000741 void *mgid = daddr + 4;
David S. Miller700db992012-07-05 21:08:05 -0700742
Roland Dreier943c2462008-09-30 10:36:21 -0700743 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Or Gerlitzb3e27492008-03-11 16:10:02 +0200745 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
Roland Dreier20b83382006-02-11 12:22:12 -0800746 !priv->broadcast ||
747 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Roland Dreierde903512007-09-28 15:33:51 -0700748 ++dev->stats.tx_dropped;
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800749 dev_kfree_skb_any(skb);
750 goto unlock;
751 }
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 mcast = __ipoib_mcast_find(dev, mgid);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500754 if (!mcast || !mcast->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (!mcast) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500756 /* Let's create a new send only group now */
757 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
758 mgid);
759
760 mcast = ipoib_mcast_alloc(dev, 0);
761 if (!mcast) {
762 ipoib_warn(priv, "unable to allocate memory "
763 "for multicast structure\n");
764 ++dev->stats.tx_dropped;
765 dev_kfree_skb_any(skb);
766 goto unlock;
767 }
768
769 set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags);
770 memcpy(mcast->mcmember.mgid.raw, mgid,
771 sizeof (union ib_gid));
772 __ipoib_mcast_add(dev, mcast);
773 list_add_tail(&mcast->list, &priv->multicast_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE)
776 skb_queue_tail(&mcast->pkt_queue, skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800777 else {
Roland Dreierde903512007-09-28 15:33:51 -0700778 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 dev_kfree_skb_any(skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800780 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500781 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
782 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
783 }
784 } else {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000785 struct ipoib_neigh *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000787 spin_unlock_irqrestore(&priv->lock, flags);
788 neigh = ipoib_neigh_get(dev, daddr);
789 spin_lock_irqsave(&priv->lock, flags);
790 if (!neigh) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000791 neigh = ipoib_neigh_alloc(daddr, dev);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000792 if (neigh) {
793 kref_get(&mcast->ah->ref);
794 neigh->ah = mcast->ah;
795 list_add_tail(&neigh->list, &mcast->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700798 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 ipoib_send(dev, skb, mcast->ah, IB_MULTICAST_QPN);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000800 if (neigh)
801 ipoib_neigh_put(neigh);
Roland Dreier721d67c2009-09-05 20:23:40 -0700802 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800805unlock:
Roland Dreier943c2462008-09-30 10:36:21 -0700806 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809void ipoib_mcast_dev_flush(struct net_device *dev)
810{
811 struct ipoib_dev_priv *priv = netdev_priv(dev);
812 LIST_HEAD(remove_list);
Eli Cohen988bd502006-01-12 14:32:20 -0800813 struct ipoib_mcast *mcast, *tmcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 unsigned long flags;
815
816 ipoib_dbg_mcast(priv, "flushing multicast list\n");
817
818 spin_lock_irqsave(&priv->lock, flags);
Eli Cohen988bd502006-01-12 14:32:20 -0800819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
Eli Cohen988bd502006-01-12 14:32:20 -0800821 list_del(&mcast->list);
822 rb_erase(&mcast->rb_node, &priv->multicast_tree);
823 list_add_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
825
826 if (priv->broadcast) {
Roland Dreier3cd96562006-09-22 15:22:46 -0700827 rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree);
Eli Cohen988bd502006-01-12 14:32:20 -0800828 list_add_tail(&priv->broadcast->list, &remove_list);
829 priv->broadcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
831
832 spin_unlock_irqrestore(&priv->lock, flags);
833
Doug Ledford69911412015-02-21 19:27:05 -0500834 /*
835 * make sure the in-flight joins have finished before we attempt
836 * to leave
837 */
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300838 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
Doug Ledford69911412015-02-21 19:27:05 -0500839 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300840 wait_for_completion(&mcast->done);
841
Erez Shitrit50be28d2016-01-07 09:28:08 +0200842 ipoib_mcast_remove_list(&remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Jiri Pirko3e4aa12f82010-03-22 03:21:39 +0000845static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700846{
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700847 /* reserved QPN, prefix, scope */
848 if (memcmp(addr, broadcast, 6))
849 return 0;
850 /* signature lower, pkey */
851 if (memcmp(addr + 7, broadcast + 7, 3))
852 return 0;
853 return 1;
854}
855
David Howellsc4028952006-11-22 14:57:56 +0000856void ipoib_mcast_restart_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
David Howellsc4028952006-11-22 14:57:56 +0000858 struct ipoib_dev_priv *priv =
859 container_of(work, struct ipoib_dev_priv, restart_task);
860 struct net_device *dev = priv->dev;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000861 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 struct ipoib_mcast *mcast, *tmcast;
863 LIST_HEAD(remove_list);
864 unsigned long flags;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200865 struct ib_sa_mcmember_rec rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Doug Ledford69911412015-02-21 19:27:05 -0500867 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
868 /*
869 * shortcut...on shutdown flush is called next, just
870 * let it do all the work
871 */
872 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Doug Ledford69911412015-02-21 19:27:05 -0500874 ipoib_dbg_mcast(priv, "restarting multicast task\n");
Roland Dreier4e0ab202015-01-30 15:38:46 -0800875
Herbert Xu932ff272006-06-09 12:20:56 -0700876 local_irq_save(flags);
David S. Millere308a5d2008-07-15 00:13:44 -0700877 netif_addr_lock(dev);
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800878 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 /*
881 * Unfortunately, the networking core only gives us a list of all of
882 * the multicast hardware addresses. We need to figure out which ones
883 * are new and which ones have been removed
884 */
885
886 /* Clear out the found flag */
887 list_for_each_entry(mcast, &priv->multicast_list, list)
888 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
889
890 /* Mark all of the entries that are found or don't exist */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000891 netdev_for_each_mc_addr(ha, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 union ib_gid mgid;
893
Jiri Pirko22bedad32010-04-01 21:22:57 +0000894 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700895 continue;
896
Jiri Pirko22bedad32010-04-01 21:22:57 +0000897 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 mcast = __ipoib_mcast_find(dev, &mgid);
900 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
901 struct ipoib_mcast *nmcast;
902
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200903 /* ignore group which is directly joined by userspace */
904 if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) &&
905 !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700906 ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700907 mgid.raw);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200908 continue;
909 }
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* Not found or send-only group, let's add a new entry */
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700912 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700913 mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 nmcast = ipoib_mcast_alloc(dev, 0);
916 if (!nmcast) {
917 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
918 continue;
919 }
920
921 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
922
923 nmcast->mcmember.mgid = mgid;
924
925 if (mcast) {
926 /* Destroy the send only entry */
Akinobu Mita179e0912006-06-26 00:24:41 -0700927 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 rb_replace_node(&mcast->rb_node,
930 &nmcast->rb_node,
931 &priv->multicast_tree);
932 } else
933 __ipoib_mcast_add(dev, nmcast);
934
935 list_add_tail(&nmcast->list, &priv->multicast_list);
936 }
937
938 if (mcast)
939 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
940 }
941
942 /* Remove all of the entries don't exist anymore */
943 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
944 if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) &&
945 !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700946 ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700947 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 rb_erase(&mcast->rb_node, &priv->multicast_tree);
950
951 /* Move to the remove list */
Akinobu Mita179e0912006-06-26 00:24:41 -0700952 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954 }
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800955
956 spin_unlock(&priv->lock);
David S. Millere308a5d2008-07-15 00:13:44 -0700957 netif_addr_unlock(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700958 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Doug Ledford69911412015-02-21 19:27:05 -0500960 /*
961 * make sure the in-flight joins have finished before we attempt
962 * to leave
963 */
964 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
965 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
966 wait_for_completion(&mcast->done);
967
Erez Shitrit50be28d2016-01-07 09:28:08 +0200968 ipoib_mcast_remove_list(&remove_list);
Roland Dreier962121b2015-01-30 15:39:11 -0800969
Doug Ledford69911412015-02-21 19:27:05 -0500970 /*
971 * Double check that we are still up
972 */
973 if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
974 spin_lock_irqsave(&priv->lock, flags);
975 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
976 spin_unlock_irqrestore(&priv->lock, flags);
977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
Roland Dreier8ae5a8a2005-11-02 20:51:01 -0800980#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
983{
984 struct ipoib_mcast_iter *iter;
985
986 iter = kmalloc(sizeof *iter, GFP_KERNEL);
987 if (!iter)
988 return NULL;
989
990 iter->dev = dev;
Roland Dreier1732b0e2005-11-07 10:33:11 -0800991 memset(iter->mgid.raw, 0, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 if (ipoib_mcast_iter_next(iter)) {
Roland Dreier1732b0e2005-11-07 10:33:11 -0800994 kfree(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return NULL;
996 }
997
998 return iter;
999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
1002{
1003 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
1004 struct rb_node *n;
1005 struct ipoib_mcast *mcast;
1006 int ret = 1;
1007
1008 spin_lock_irq(&priv->lock);
1009
1010 n = rb_first(&priv->multicast_tree);
1011
1012 while (n) {
1013 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
1014
1015 if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw,
1016 sizeof (union ib_gid)) < 0) {
1017 iter->mgid = mcast->mcmember.mgid;
1018 iter->created = mcast->created;
1019 iter->queuelen = skb_queue_len(&mcast->pkt_queue);
1020 iter->complete = !!mcast->ah;
1021 iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY));
1022
1023 ret = 0;
1024
1025 break;
1026 }
1027
1028 n = rb_next(n);
1029 }
1030
1031 spin_unlock_irq(&priv->lock);
1032
1033 return ret;
1034}
1035
1036void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
1037 union ib_gid *mgid,
1038 unsigned long *created,
1039 unsigned int *queuelen,
1040 unsigned int *complete,
1041 unsigned int *send_only)
1042{
1043 *mgid = iter->mgid;
1044 *created = iter->created;
1045 *queuelen = iter->queuelen;
1046 *complete = iter->complete;
1047 *send_only = iter->send_only;
1048}
Roland Dreier8ae5a8a2005-11-02 20:51:01 -08001049
1050#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */