blob: fc3e50e8e391ae418f11ee9d912b8afa0c17af94 [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
Erez Shitrit3b561132016-05-25 22:02:07 +030067/* join state that allows creating mcg with sendonly member request */
68#define SENDONLY_FULLMEMBER_JOIN 8
69
Doug Ledford69911412015-02-21 19:27:05 -050070/*
Doug Ledford1c0453d2015-02-21 19:27:07 -050071 * This should be called with the priv->lock held
Doug Ledford69911412015-02-21 19:27:05 -050072 */
73static void __ipoib_mcast_schedule_join_thread(struct ipoib_dev_priv *priv,
74 struct ipoib_mcast *mcast,
75 bool delay)
76{
Erez Shitrit0e5544d2015-04-02 13:39:04 +030077 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
Doug Ledford69911412015-02-21 19:27:05 -050078 return;
79
80 /*
81 * We will be scheduling *something*, so cancel whatever is
82 * currently scheduled first
83 */
84 cancel_delayed_work(&priv->mcast_task);
85 if (mcast && delay) {
86 /*
87 * We had a failure and want to schedule a retry later
88 */
89 mcast->backoff *= 2;
90 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
91 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
92 mcast->delay_until = jiffies + (mcast->backoff * HZ);
93 /*
94 * Mark this mcast for its delay, but restart the
95 * task immediately. The join task will make sure to
96 * clear out all entries without delays, and then
97 * schedule itself to run again when the earliest
98 * delay expires
99 */
100 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
101 } else if (delay) {
102 /*
103 * Special case of retrying after a failure to
104 * allocate the broadcast multicast group, wait
105 * 1 second and try again
106 */
107 queue_delayed_work(priv->wq, &priv->mcast_task, HZ);
108 } else
109 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
110}
111
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600112static void ipoib_mcast_free(struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct net_device *dev = mcast->dev;
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800115 int tx_dropped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700117 ipoib_dbg_mcast(netdev_priv(dev), "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700118 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000120 /* remove all neigh connected to this mcast */
121 ipoib_del_neighs_by_gid(dev, mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (mcast->ah)
124 ipoib_put_ah(mcast->ah);
125
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800126 while (!skb_queue_empty(&mcast->pkt_queue)) {
127 ++tx_dropped;
Roland Dreier8c608a32005-11-07 10:49:38 -0800128 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800129 }
130
Roland Dreier943c2462008-09-30 10:36:21 -0700131 netif_tx_lock_bh(dev);
Roland Dreierde903512007-09-28 15:33:51 -0700132 dev->stats.tx_dropped += tx_dropped;
Roland Dreier943c2462008-09-30 10:36:21 -0700133 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 kfree(mcast);
136}
137
138static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev,
139 int can_sleep)
140{
141 struct ipoib_mcast *mcast;
142
Roland Dreierde6eb662005-11-02 07:23:14 -0800143 mcast = kzalloc(sizeof *mcast, can_sleep ? GFP_KERNEL : GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!mcast)
145 return NULL;
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 mcast->dev = dev;
148 mcast->created = jiffies;
Doug Ledford69911412015-02-21 19:27:05 -0500149 mcast->delay_until = jiffies;
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700150 mcast->backoff = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 INIT_LIST_HEAD(&mcast->list);
153 INIT_LIST_HEAD(&mcast->neigh_list);
154 skb_queue_head_init(&mcast->pkt_queue);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return mcast;
157}
158
Christoph Lameter432c55f2015-12-21 08:42:54 -0600159static struct ipoib_mcast *__ipoib_mcast_find(struct net_device *dev, void *mgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct ipoib_dev_priv *priv = netdev_priv(dev);
162 struct rb_node *n = priv->multicast_tree.rb_node;
163
164 while (n) {
165 struct ipoib_mcast *mcast;
166 int ret;
167
168 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
169
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300170 ret = memcmp(mgid, mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 sizeof (union ib_gid));
172 if (ret < 0)
173 n = n->rb_left;
174 else if (ret > 0)
175 n = n->rb_right;
176 else
177 return mcast;
178 }
179
180 return NULL;
181}
182
183static int __ipoib_mcast_add(struct net_device *dev, struct ipoib_mcast *mcast)
184{
185 struct ipoib_dev_priv *priv = netdev_priv(dev);
186 struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL;
187
188 while (*n) {
189 struct ipoib_mcast *tmcast;
190 int ret;
191
192 pn = *n;
193 tmcast = rb_entry(pn, struct ipoib_mcast, rb_node);
194
195 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw,
196 sizeof (union ib_gid));
197 if (ret < 0)
198 n = &pn->rb_left;
199 else if (ret > 0)
200 n = &pn->rb_right;
201 else
202 return -EEXIST;
203 }
204
205 rb_link_node(&mcast->rb_node, pn, n);
206 rb_insert_color(&mcast->rb_node, &priv->multicast_tree);
207
208 return 0;
209}
210
211static int ipoib_mcast_join_finish(struct ipoib_mcast *mcast,
212 struct ib_sa_mcmember_rec *mcmember)
213{
214 struct net_device *dev = mcast->dev;
215 struct ipoib_dev_priv *priv = netdev_priv(dev);
Eli Cohen7343b232006-02-27 20:47:43 -0800216 struct ipoib_ah *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int ret;
Eli Cohend0de1362008-07-14 23:48:50 -0700218 int set_qkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 mcast->mcmember = *mcmember;
221
Patrick McHardybea1e222012-08-30 07:01:30 +0000222 /* Set the multicast MTU and cached Q_Key before we attach if it's
223 * the broadcast group.
224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
226 sizeof (union ib_gid))) {
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700227 spin_lock_irq(&priv->lock);
228 if (!priv->broadcast) {
229 spin_unlock_irq(&priv->lock);
230 return -EAGAIN;
231 }
Erez Shitrit3fd06052015-04-02 13:39:01 +0300232 /*update priv member according to the new mcast*/
233 priv->broadcast->mcmember.qkey = mcmember->qkey;
234 priv->broadcast->mcmember.mtu = mcmember->mtu;
235 priv->broadcast->mcmember.traffic_class = mcmember->traffic_class;
236 priv->broadcast->mcmember.rate = mcmember->rate;
237 priv->broadcast->mcmember.sl = mcmember->sl;
238 priv->broadcast->mcmember.flow_label = mcmember->flow_label;
239 priv->broadcast->mcmember.hop_limit = mcmember->hop_limit;
240 /* assume if the admin and the mcast are the same both can be changed */
241 if (priv->mcast_mtu == priv->admin_mtu)
242 priv->admin_mtu =
243 priv->mcast_mtu =
244 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
245 else
246 priv->mcast_mtu =
247 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700250 spin_unlock_irq(&priv->lock);
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100251 priv->tx_wr.remote_qkey = priv->qkey;
Eli Cohend0de1362008-07-14 23:48:50 -0700252 set_qkey = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254
255 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
256 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700257 ipoib_warn(priv, "multicast group %pI6 already attached\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700258 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 return 0;
261 }
262
263 ret = ipoib_mcast_attach(dev, be16_to_cpu(mcast->mcmember.mlid),
Eli Cohend0de1362008-07-14 23:48:50 -0700264 &mcast->mcmember.mgid, set_qkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 if (ret < 0) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700266 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700267 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
270 return ret;
271 }
272 }
273
274 {
275 struct ib_ah_attr av = {
276 .dlid = be16_to_cpu(mcast->mcmember.mlid),
277 .port_num = priv->port,
278 .sl = mcast->mcmember.sl,
279 .ah_flags = IB_AH_GRH,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700280 .static_rate = mcast->mcmember.rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .grh = {
282 .flow_label = be32_to_cpu(mcast->mcmember.flow_label),
283 .hop_limit = mcast->mcmember.hop_limit,
284 .sgid_index = 0,
285 .traffic_class = mcast->mcmember.traffic_class
286 }
287 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 av.grh.dgid = mcast->mcmember.mgid;
289
Eli Cohen7343b232006-02-27 20:47:43 -0800290 ah = ipoib_create_ah(dev, priv->pd, &av);
Mike Marciniszyn38743972011-11-21 08:43:54 -0500291 if (IS_ERR(ah)) {
292 ipoib_warn(priv, "ib_address_create failed %ld\n",
293 -PTR_ERR(ah));
294 /* use original error */
295 return PTR_ERR(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 } else {
Or Gerlitz624d01f2006-07-24 10:42:00 +0300297 spin_lock_irq(&priv->lock);
298 mcast->ah = ah;
299 spin_unlock_irq(&priv->lock);
300
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700301 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700302 mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 mcast->ah->ah,
304 be16_to_cpu(mcast->mcmember.mlid),
305 mcast->mcmember.sl);
306 }
307 }
308
309 /* actually send any queued packets */
Roland Dreier943c2462008-09-30 10:36:21 -0700310 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 while (!skb_queue_empty(&mcast->pkt_queue)) {
312 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
David S. Miller69cce1d2011-07-17 23:09:49 -0700313
Roland Dreier943c2462008-09-30 10:36:21 -0700314 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 skb->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (dev_queue_xmit(skb))
318 ipoib_warn(priv, "dev_queue_xmit failed to requeue packet\n");
Roland Dreier936d7de2012-02-07 14:51:21 +0000319
Roland Dreier943c2462008-09-30 10:36:21 -0700320 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
Roland Dreier943c2462008-09-30 10:36:21 -0700322 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 return 0;
325}
326
Yossi Etigine8224e42008-09-16 11:57:45 -0700327void ipoib_mcast_carrier_on_task(struct work_struct *work)
328{
329 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
330 carrier_on_task);
Moni Shoua5ee951202009-09-24 12:01:05 -0700331 struct ib_port_attr attr;
Erez Shitrit3b561132016-05-25 22:02:07 +0300332 int ret;
Yossi Etigine8224e42008-09-16 11:57:45 -0700333
Moni Shoua5ee951202009-09-24 12:01:05 -0700334 if (ib_query_port(priv->ca, priv->port, &attr) ||
335 attr.state != IB_PORT_ACTIVE) {
336 ipoib_dbg(priv, "Keeping carrier off until IB port is active\n");
337 return;
338 }
Erez Shitrit3b561132016-05-25 22:02:07 +0300339 /*
340 * Check if can send sendonly MCG's with sendonly-fullmember join state.
341 * It done here after the successfully join to the broadcast group,
342 * because the broadcast group must always be joined first and is always
343 * re-joined if the SM changes substantially.
344 */
345 ret = ipoib_check_sm_sendonly_fullmember_support(priv);
346 if (ret < 0)
347 pr_debug("%s failed query sm support for sendonly-fullmember (ret: %d)\n",
348 priv->dev->name, ret);
Moni Shoua5ee951202009-09-24 12:01:05 -0700349
Doug Ledford894021a2015-02-21 19:27:02 -0500350 /*
351 * Take rtnl_lock to avoid racing with ipoib_stop() and
352 * turning the carrier back on while a device is being
353 * removed. However, ipoib_stop() will attempt to flush
354 * the workqueue while holding the rtnl lock, so loop
355 * on trylock until either we get the lock or we see
356 * FLAG_OPER_UP go away as that signals that we are bailing
357 * and can safely ignore the carrier on work.
358 */
359 while (!rtnl_trylock()) {
360 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
361 return;
362 else
363 msleep(20);
364 }
Doug Ledfordc84ca6d2015-02-21 19:27:01 -0500365 if (!ipoib_cm_admin_enabled(priv->dev))
366 dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu));
Yossi Etigine8224e42008-09-16 11:57:45 -0700367 netif_carrier_on(priv->dev);
368 rtnl_unlock();
369}
370
Sean Heftyfaec2f72007-02-15 17:00:17 -0800371static int ipoib_mcast_join_complete(int status,
372 struct ib_sa_multicast *multicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Sean Heftyfaec2f72007-02-15 17:00:17 -0800374 struct ipoib_mcast *mcast = multicast->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct net_device *dev = mcast->dev;
376 struct ipoib_dev_priv *priv = netdev_priv(dev);
377
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500378 ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n",
379 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ?
380 "sendonly " : "",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700381 mcast->mcmember.mgid.raw, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Sean Heftyfaec2f72007-02-15 17:00:17 -0800383 /* We trap for port events ourselves. */
Roland Dreiere7a623d2015-01-30 15:39:20 -0800384 if (status == -ENETRESET) {
385 status = 0;
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300386 goto out;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800387 }
Sean Heftyfaec2f72007-02-15 17:00:17 -0800388
389 if (!status)
390 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
391
392 if (!status) {
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700393 mcast->backoff = 1;
Doug Ledford69911412015-02-21 19:27:05 -0500394 mcast->delay_until = jiffies;
Shirley Ma55c9add2007-03-08 14:59:30 -0800395
Yossi Etigine8224e42008-09-16 11:57:45 -0700396 /*
Doug Ledford0b395782015-02-21 19:27:03 -0500397 * Defer carrier on work to priv->wq to avoid a
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500398 * deadlock on rtnl_lock here. Requeue our multicast
399 * work too, which will end up happening right after
400 * our carrier on task work and will allow us to
401 * send out all of the non-broadcast joins
Yossi Etigine8224e42008-09-16 11:57:45 -0700402 */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500403 if (mcast == priv->broadcast) {
Doug Ledford1c0453d2015-02-21 19:27:07 -0500404 spin_lock_irq(&priv->lock);
Doug Ledford0b395782015-02-21 19:27:03 -0500405 queue_work(priv->wq, &priv->carrier_on_task);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500406 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500407 goto out_locked;
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500408 }
Doug Ledford69911412015-02-21 19:27:05 -0500409 } else {
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600410 bool silent_fail =
411 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
412 status == -EINVAL;
413
414 if (mcast->logcount < 20) {
415 if (status == -ETIMEDOUT || status == -EAGAIN ||
416 silent_fail) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500417 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n",
418 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500419 mcast->mcmember.mgid.raw, status);
420 } else {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500421 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n",
422 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500423 mcast->mcmember.mgid.raw, status);
424 }
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600425
426 if (!silent_fail)
427 mcast->logcount++;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800428 }
Doug Ledford69911412015-02-21 19:27:05 -0500429
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500430 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
431 mcast->backoff >= 2) {
432 /*
433 * We only retry sendonly joins once before we drop
434 * the packet and quit trying to deal with the
435 * group. However, we leave the group in the
436 * mcast list as an unjoined group. If we want to
437 * try joining again, we simply queue up a packet
438 * and restart the join thread. The empty queue
439 * is why the join thread ignores this group.
440 */
441 mcast->backoff = 1;
442 netif_tx_lock_bh(dev);
443 while (!skb_queue_empty(&mcast->pkt_queue)) {
444 ++dev->stats.tx_dropped;
445 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
446 }
447 netif_tx_unlock_bh(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500448 } else {
449 spin_lock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500450 /* Requeue this join task with a backoff delay */
451 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500452 goto out_locked;
453 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800454 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800455out:
Doug Ledford1c0453d2015-02-21 19:27:07 -0500456 spin_lock_irq(&priv->lock);
457out_locked:
458 /*
459 * Make sure to set mcast->mc before we clear the busy flag to avoid
460 * racing with code that checks for BUSY before checking mcast->mc
461 */
Doug Ledford69911412015-02-21 19:27:05 -0500462 if (status)
463 mcast->mc = NULL;
Doug Ledford1c0453d2015-02-21 19:27:07 -0500464 else
465 mcast->mc = multicast;
466 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
467 spin_unlock_irq(&priv->lock);
Roland Dreiere7a623d2015-01-30 15:39:20 -0800468 complete(&mcast->done);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500469
Sean Heftyfaec2f72007-02-15 17:00:17 -0800470 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Alex Estrin08bc3272016-02-11 16:30:51 -0500473/*
474 * Caller must hold 'priv->lock'
475 */
476static int ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500479 struct ib_sa_multicast *multicast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct ib_sa_mcmember_rec rec = {
481 .join_state = 1
482 };
483 ib_sa_comp_mask comp_mask;
484 int ret = 0;
485
Alex Estrin08bc3272016-02-11 16:30:51 -0500486 if (!priv->broadcast ||
487 !test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
488 return -EINVAL;
489
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700490 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 rec.mgid = mcast->mcmember.mgid;
493 rec.port_gid = priv->local_gid;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700494 rec.pkey = cpu_to_be16(priv->pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 comp_mask =
497 IB_SA_MCMEMBER_REC_MGID |
498 IB_SA_MCMEMBER_REC_PORT_GID |
499 IB_SA_MCMEMBER_REC_PKEY |
500 IB_SA_MCMEMBER_REC_JOIN_STATE;
501
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400502 if (mcast != priv->broadcast) {
503 /*
504 * RFC 4391:
505 * The MGID MUST use the same P_Key, Q_Key, SL, MTU,
506 * and HopLimit as those used in the broadcast-GID. The rest
507 * of attributes SHOULD follow the values used in the
508 * broadcast-GID as well.
509 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 comp_mask |=
Roland Dreierd0df6d62006-09-22 15:22:56 -0700511 IB_SA_MCMEMBER_REC_QKEY |
512 IB_SA_MCMEMBER_REC_MTU_SELECTOR |
513 IB_SA_MCMEMBER_REC_MTU |
514 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS |
515 IB_SA_MCMEMBER_REC_RATE_SELECTOR |
516 IB_SA_MCMEMBER_REC_RATE |
517 IB_SA_MCMEMBER_REC_SL |
518 IB_SA_MCMEMBER_REC_FLOW_LABEL |
519 IB_SA_MCMEMBER_REC_HOP_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 rec.qkey = priv->broadcast->mcmember.qkey;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700522 rec.mtu_selector = IB_SA_EQ;
523 rec.mtu = priv->broadcast->mcmember.mtu;
524 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
525 rec.rate_selector = IB_SA_EQ;
526 rec.rate = priv->broadcast->mcmember.rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 rec.sl = priv->broadcast->mcmember.sl;
528 rec.flow_label = priv->broadcast->mcmember.flow_label;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700529 rec.hop_limit = priv->broadcast->mcmember.hop_limit;
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400530
531 /*
Erez Shitrit3b561132016-05-25 22:02:07 +0300532 * Send-only IB Multicast joins work at the core IB layer but
533 * require specific SM support.
534 * We can use such joins here only if the current SM supports that feature.
535 * However, if not, we emulate an Ethernet multicast send,
536 * which does not require a multicast subscription and will
537 * still send properly. The most appropriate thing to
Doug Ledfordc3852ab2015-09-25 14:35:01 -0400538 * do is to create the group if it doesn't exist as that
539 * most closely emulates the behavior, from a user space
Erez Shitrit3b561132016-05-25 22:02:07 +0300540 * application perspective, of Ethernet multicast operation.
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400541 */
Erez Shitrit3b561132016-05-25 22:02:07 +0300542 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
543 priv->sm_fullmember_sendonly_support)
544 /* SM supports sendonly-fullmember, otherwise fallback to full-member */
545 rec.join_state = SENDONLY_FULLMEMBER_JOIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Alex Estrin08bc3272016-02-11 16:30:51 -0500547 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Doug Ledford1c0453d2015-02-21 19:27:07 -0500549 multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port,
Sean Heftyfaec2f72007-02-15 17:00:17 -0800550 &rec, comp_mask, GFP_KERNEL,
551 ipoib_mcast_join_complete, mcast);
Alex Estrin08bc3272016-02-11 16:30:51 -0500552 spin_lock_irq(&priv->lock);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500553 if (IS_ERR(multicast)) {
554 ret = PTR_ERR(multicast);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800555 ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500556 /* Requeue this join task with a backoff delay */
Doug Ledford69911412015-02-21 19:27:05 -0500557 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500558 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
559 spin_unlock_irq(&priv->lock);
Doug Ledford69911412015-02-21 19:27:05 -0500560 complete(&mcast->done);
Alex Estrin08bc3272016-02-11 16:30:51 -0500561 spin_lock_irq(&priv->lock);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800562 }
Alex Estrin08bc3272016-02-11 16:30:51 -0500563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
David Howellsc4028952006-11-22 14:57:56 +0000566void ipoib_mcast_join_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
David Howellsc4028952006-11-22 14:57:56 +0000568 struct ipoib_dev_priv *priv =
569 container_of(work, struct ipoib_dev_priv, mcast_task.work);
570 struct net_device *dev = priv->dev;
Erez Shitrit94232d92013-10-16 17:37:53 +0300571 struct ib_port_attr port_attr;
Doug Ledford69911412015-02-21 19:27:05 -0500572 unsigned long delay_until = 0;
573 struct ipoib_mcast *mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Erez Shitrit0e5544d2015-04-02 13:39:04 +0300575 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return;
577
Erez Shitrit94232d92013-10-16 17:37:53 +0300578 if (ib_query_port(priv->ca, priv->port, &port_attr) ||
579 port_attr.state != IB_PORT_ACTIVE) {
580 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
581 port_attr.state);
582 return;
583 }
Alex Estrin68f9d832014-08-20 11:15:08 -0400584 priv->local_lid = port_attr.lid;
Erez Shitrit94232d92013-10-16 17:37:53 +0300585
Matan Barak55ee3ab2015-10-15 18:38:45 +0300586 if (ib_query_gid(priv->ca, priv->port, 0, &priv->local_gid, NULL))
Michael S. Tsirkin24bd1e42007-05-18 16:12:54 +0300587 ipoib_warn(priv, "ib_query_gid() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 else
589 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
590
Doug Ledford69911412015-02-21 19:27:05 -0500591 spin_lock_irq(&priv->lock);
592 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
593 goto out;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (!priv->broadcast) {
Roland Dreier20b83382006-02-11 12:22:12 -0800596 struct ipoib_mcast *broadcast;
597
Doug Ledford69911412015-02-21 19:27:05 -0500598 broadcast = ipoib_mcast_alloc(dev, 0);
Roland Dreier20b83382006-02-11 12:22:12 -0800599 if (!broadcast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 ipoib_warn(priv, "failed to allocate broadcast group\n");
Doug Ledford69911412015-02-21 19:27:05 -0500601 /*
602 * Restart us after a 1 second delay to retry
603 * creating our broadcast group and attaching to
604 * it. Until this succeeds, this ipoib dev is
605 * completely stalled (multicast wise).
606 */
607 __ipoib_mcast_schedule_join_thread(priv, NULL, 1);
608 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
610
Roland Dreier20b83382006-02-11 12:22:12 -0800611 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
612 sizeof (union ib_gid));
613 priv->broadcast = broadcast;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 __ipoib_mcast_add(dev, priv->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
618 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Doug Ledford69911412015-02-21 19:27:05 -0500619 if (IS_ERR_OR_NULL(priv->broadcast->mc) &&
620 !test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags)) {
621 mcast = priv->broadcast;
Doug Ledford69911412015-02-21 19:27:05 -0500622 if (mcast->backoff > 1 &&
623 time_before(jiffies, mcast->delay_until)) {
624 delay_until = mcast->delay_until;
625 mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627 }
Doug Ledford69911412015-02-21 19:27:05 -0500628 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
Doug Ledford69911412015-02-21 19:27:05 -0500631 /*
632 * We'll never get here until the broadcast group is both allocated
633 * and attached
634 */
635 list_for_each_entry(mcast, &priv->multicast_list, list) {
636 if (IS_ERR_OR_NULL(mcast->mc) &&
637 !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags) &&
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500638 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ||
639 !skb_queue_empty(&mcast->pkt_queue))) {
Doug Ledford69911412015-02-21 19:27:05 -0500640 if (mcast->backoff == 1 ||
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500641 time_after_eq(jiffies, mcast->delay_until)) {
Doug Ledford69911412015-02-21 19:27:05 -0500642 /* Found the next unjoined group */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500643 init_completion(&mcast->done);
644 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
Alex Estrin08bc3272016-02-11 16:30:51 -0500645 if (ipoib_mcast_join(dev, mcast)) {
646 spin_unlock_irq(&priv->lock);
647 return;
648 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500649 } else if (!delay_until ||
Doug Ledford69911412015-02-21 19:27:05 -0500650 time_before(mcast->delay_until, delay_until))
651 delay_until = mcast->delay_until;
652 }
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500655 mcast = NULL;
656 ipoib_dbg_mcast(priv, "successfully started all multicast joins\n");
Doug Ledford69911412015-02-21 19:27:05 -0500657
658out:
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500659 if (delay_until) {
660 cancel_delayed_work(&priv->mcast_task);
661 queue_delayed_work(priv->wq, &priv->mcast_task,
662 delay_until - jiffies);
663 }
Doug Ledford69911412015-02-21 19:27:05 -0500664 if (mcast) {
665 init_completion(&mcast->done);
666 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
Alex Estrin08bc3272016-02-11 16:30:51 -0500667 ipoib_mcast_join(dev, mcast);
Doug Ledford69911412015-02-21 19:27:05 -0500668 }
669 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672int ipoib_mcast_start_thread(struct net_device *dev)
673{
674 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500675 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 ipoib_dbg_mcast(priv, "starting multicast thread\n");
678
Doug Ledford1c0453d2015-02-21 19:27:07 -0500679 spin_lock_irqsave(&priv->lock, flags);
Doug Ledford69911412015-02-21 19:27:05 -0500680 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500681 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 return 0;
684}
685
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500686int ipoib_mcast_stop_thread(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct ipoib_dev_priv *priv = netdev_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500689 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
692
Doug Ledford1c0453d2015-02-21 19:27:07 -0500693 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 cancel_delayed_work(&priv->mcast_task);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500695 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500697 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
701
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600702static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct ipoib_dev_priv *priv = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int ret = 0;
706
Sean Heftye07832b2007-03-19 14:31:36 -0800707 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Doug Ledford69911412015-02-21 19:27:05 -0500708 ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n");
709
710 if (!IS_ERR_OR_NULL(mcast->mc))
Sean Heftye07832b2007-03-19 14:31:36 -0800711 ib_sa_free_multicast(mcast->mc);
712
Sean Heftyfaec2f72007-02-15 17:00:17 -0800713 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700714 ipoib_dbg_mcast(priv, "leaving MGID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700715 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Sean Heftyfaec2f72007-02-15 17:00:17 -0800717 /* Remove ourselves from the multicast group */
Roland Dreier9eae5542008-07-14 23:48:50 -0700718 ret = ib_detach_mcast(priv->qp, &mcast->mcmember.mgid,
719 be16_to_cpu(mcast->mcmember.mlid));
Sean Heftyfaec2f72007-02-15 17:00:17 -0800720 if (ret)
Roland Dreier9eae5542008-07-14 23:48:50 -0700721 ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret);
Doug Ledford69911412015-02-21 19:27:05 -0500722 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
723 ipoib_dbg(priv, "leaving with no mcmember but not a "
724 "SENDONLY join\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return 0;
727}
728
Christoph Lameter432c55f2015-12-21 08:42:54 -0600729/*
730 * Check if the multicast group is sendonly. If so remove it from the maps
731 * and add to the remove list
732 */
733void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv *priv, u8 *mgid,
734 struct list_head *remove_list)
735{
736 /* Is this multicast ? */
737 if (*mgid == 0xff) {
738 struct ipoib_mcast *mcast = __ipoib_mcast_find(priv->dev, mgid);
739
740 if (mcast && test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
741 list_del(&mcast->list);
742 rb_erase(&mcast->rb_node, &priv->multicast_tree);
743 list_add_tail(&mcast->list, remove_list);
744 }
745 }
746}
747
Erez Shitrit50be28d2016-01-07 09:28:08 +0200748void ipoib_mcast_remove_list(struct list_head *remove_list)
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600749{
750 struct ipoib_mcast *mcast, *tmcast;
751
752 list_for_each_entry_safe(mcast, tmcast, remove_list, list) {
Erez Shitrit50be28d2016-01-07 09:28:08 +0200753 ipoib_mcast_leave(mcast->dev, mcast);
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600754 ipoib_mcast_free(mcast);
755 }
756}
757
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000758void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 struct ipoib_dev_priv *priv = netdev_priv(dev);
761 struct ipoib_mcast *mcast;
Roland Dreier943c2462008-09-30 10:36:21 -0700762 unsigned long flags;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000763 void *mgid = daddr + 4;
David S. Miller700db992012-07-05 21:08:05 -0700764
Roland Dreier943c2462008-09-30 10:36:21 -0700765 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Or Gerlitzb3e27492008-03-11 16:10:02 +0200767 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
Roland Dreier20b83382006-02-11 12:22:12 -0800768 !priv->broadcast ||
769 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Roland Dreierde903512007-09-28 15:33:51 -0700770 ++dev->stats.tx_dropped;
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800771 dev_kfree_skb_any(skb);
772 goto unlock;
773 }
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 mcast = __ipoib_mcast_find(dev, mgid);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500776 if (!mcast || !mcast->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 if (!mcast) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500778 /* Let's create a new send only group now */
779 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
780 mgid);
781
782 mcast = ipoib_mcast_alloc(dev, 0);
783 if (!mcast) {
784 ipoib_warn(priv, "unable to allocate memory "
785 "for multicast structure\n");
786 ++dev->stats.tx_dropped;
787 dev_kfree_skb_any(skb);
788 goto unlock;
789 }
790
791 set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags);
792 memcpy(mcast->mcmember.mgid.raw, mgid,
793 sizeof (union ib_gid));
794 __ipoib_mcast_add(dev, mcast);
795 list_add_tail(&mcast->list, &priv->multicast_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE)
798 skb_queue_tail(&mcast->pkt_queue, skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800799 else {
Roland Dreierde903512007-09-28 15:33:51 -0700800 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dev_kfree_skb_any(skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800802 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500803 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
804 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
805 }
806 } else {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000807 struct ipoib_neigh *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000809 spin_unlock_irqrestore(&priv->lock, flags);
810 neigh = ipoib_neigh_get(dev, daddr);
811 spin_lock_irqsave(&priv->lock, flags);
812 if (!neigh) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000813 neigh = ipoib_neigh_alloc(daddr, dev);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000814 if (neigh) {
815 kref_get(&mcast->ah->ref);
816 neigh->ah = mcast->ah;
817 list_add_tail(&neigh->list, &mcast->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700820 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 ipoib_send(dev, skb, mcast->ah, IB_MULTICAST_QPN);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000822 if (neigh)
823 ipoib_neigh_put(neigh);
Roland Dreier721d67c2009-09-05 20:23:40 -0700824 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800827unlock:
Roland Dreier943c2462008-09-30 10:36:21 -0700828 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831void ipoib_mcast_dev_flush(struct net_device *dev)
832{
833 struct ipoib_dev_priv *priv = netdev_priv(dev);
834 LIST_HEAD(remove_list);
Eli Cohen988bd502006-01-12 14:32:20 -0800835 struct ipoib_mcast *mcast, *tmcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 unsigned long flags;
837
838 ipoib_dbg_mcast(priv, "flushing multicast list\n");
839
840 spin_lock_irqsave(&priv->lock, flags);
Eli Cohen988bd502006-01-12 14:32:20 -0800841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
Eli Cohen988bd502006-01-12 14:32:20 -0800843 list_del(&mcast->list);
844 rb_erase(&mcast->rb_node, &priv->multicast_tree);
845 list_add_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847
848 if (priv->broadcast) {
Roland Dreier3cd96562006-09-22 15:22:46 -0700849 rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree);
Eli Cohen988bd502006-01-12 14:32:20 -0800850 list_add_tail(&priv->broadcast->list, &remove_list);
851 priv->broadcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853
854 spin_unlock_irqrestore(&priv->lock, flags);
855
Doug Ledford69911412015-02-21 19:27:05 -0500856 /*
857 * make sure the in-flight joins have finished before we attempt
858 * to leave
859 */
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300860 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
Doug Ledford69911412015-02-21 19:27:05 -0500861 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300862 wait_for_completion(&mcast->done);
863
Erez Shitrit50be28d2016-01-07 09:28:08 +0200864 ipoib_mcast_remove_list(&remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
Jiri Pirko3e4aa12f82010-03-22 03:21:39 +0000867static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700868{
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700869 /* reserved QPN, prefix, scope */
870 if (memcmp(addr, broadcast, 6))
871 return 0;
872 /* signature lower, pkey */
873 if (memcmp(addr + 7, broadcast + 7, 3))
874 return 0;
875 return 1;
876}
877
David Howellsc4028952006-11-22 14:57:56 +0000878void ipoib_mcast_restart_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
David Howellsc4028952006-11-22 14:57:56 +0000880 struct ipoib_dev_priv *priv =
881 container_of(work, struct ipoib_dev_priv, restart_task);
882 struct net_device *dev = priv->dev;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000883 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct ipoib_mcast *mcast, *tmcast;
885 LIST_HEAD(remove_list);
886 unsigned long flags;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200887 struct ib_sa_mcmember_rec rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Doug Ledford69911412015-02-21 19:27:05 -0500889 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
890 /*
891 * shortcut...on shutdown flush is called next, just
892 * let it do all the work
893 */
894 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Doug Ledford69911412015-02-21 19:27:05 -0500896 ipoib_dbg_mcast(priv, "restarting multicast task\n");
Roland Dreier4e0ab202015-01-30 15:38:46 -0800897
Herbert Xu932ff272006-06-09 12:20:56 -0700898 local_irq_save(flags);
David S. Millere308a5d2008-07-15 00:13:44 -0700899 netif_addr_lock(dev);
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800900 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /*
903 * Unfortunately, the networking core only gives us a list of all of
904 * the multicast hardware addresses. We need to figure out which ones
905 * are new and which ones have been removed
906 */
907
908 /* Clear out the found flag */
909 list_for_each_entry(mcast, &priv->multicast_list, list)
910 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
911
912 /* Mark all of the entries that are found or don't exist */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000913 netdev_for_each_mc_addr(ha, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 union ib_gid mgid;
915
Jiri Pirko22bedad32010-04-01 21:22:57 +0000916 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700917 continue;
918
Jiri Pirko22bedad32010-04-01 21:22:57 +0000919 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 mcast = __ipoib_mcast_find(dev, &mgid);
922 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
923 struct ipoib_mcast *nmcast;
924
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200925 /* ignore group which is directly joined by userspace */
926 if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) &&
927 !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700928 ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700929 mgid.raw);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200930 continue;
931 }
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /* Not found or send-only group, let's add a new entry */
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700934 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700935 mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 nmcast = ipoib_mcast_alloc(dev, 0);
938 if (!nmcast) {
939 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
940 continue;
941 }
942
943 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
944
945 nmcast->mcmember.mgid = mgid;
946
947 if (mcast) {
948 /* Destroy the send only entry */
Akinobu Mita179e0912006-06-26 00:24:41 -0700949 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 rb_replace_node(&mcast->rb_node,
952 &nmcast->rb_node,
953 &priv->multicast_tree);
954 } else
955 __ipoib_mcast_add(dev, nmcast);
956
957 list_add_tail(&nmcast->list, &priv->multicast_list);
958 }
959
960 if (mcast)
961 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
962 }
963
964 /* Remove all of the entries don't exist anymore */
965 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
966 if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) &&
967 !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700968 ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700969 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 rb_erase(&mcast->rb_node, &priv->multicast_tree);
972
973 /* Move to the remove list */
Akinobu Mita179e0912006-06-26 00:24:41 -0700974 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976 }
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800977
978 spin_unlock(&priv->lock);
David S. Millere308a5d2008-07-15 00:13:44 -0700979 netif_addr_unlock(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700980 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Doug Ledford69911412015-02-21 19:27:05 -0500982 /*
983 * make sure the in-flight joins have finished before we attempt
984 * to leave
985 */
986 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
987 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
988 wait_for_completion(&mcast->done);
989
Erez Shitrit50be28d2016-01-07 09:28:08 +0200990 ipoib_mcast_remove_list(&remove_list);
Roland Dreier962121b2015-01-30 15:39:11 -0800991
Doug Ledford69911412015-02-21 19:27:05 -0500992 /*
993 * Double check that we are still up
994 */
995 if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
996 spin_lock_irqsave(&priv->lock, flags);
997 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
998 spin_unlock_irqrestore(&priv->lock, flags);
999 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Roland Dreier8ae5a8a2005-11-02 20:51:01 -08001002#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
1005{
1006 struct ipoib_mcast_iter *iter;
1007
1008 iter = kmalloc(sizeof *iter, GFP_KERNEL);
1009 if (!iter)
1010 return NULL;
1011
1012 iter->dev = dev;
Roland Dreier1732b0e2005-11-07 10:33:11 -08001013 memset(iter->mgid.raw, 0, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 if (ipoib_mcast_iter_next(iter)) {
Roland Dreier1732b0e2005-11-07 10:33:11 -08001016 kfree(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return NULL;
1018 }
1019
1020 return iter;
1021}
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
1024{
1025 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
1026 struct rb_node *n;
1027 struct ipoib_mcast *mcast;
1028 int ret = 1;
1029
1030 spin_lock_irq(&priv->lock);
1031
1032 n = rb_first(&priv->multicast_tree);
1033
1034 while (n) {
1035 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
1036
1037 if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw,
1038 sizeof (union ib_gid)) < 0) {
1039 iter->mgid = mcast->mcmember.mgid;
1040 iter->created = mcast->created;
1041 iter->queuelen = skb_queue_len(&mcast->pkt_queue);
1042 iter->complete = !!mcast->ah;
1043 iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY));
1044
1045 ret = 0;
1046
1047 break;
1048 }
1049
1050 n = rb_next(n);
1051 }
1052
1053 spin_unlock_irq(&priv->lock);
1054
1055 return ret;
1056}
1057
1058void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
1059 union ib_gid *mgid,
1060 unsigned long *created,
1061 unsigned int *queuelen,
1062 unsigned int *complete,
1063 unsigned int *send_only)
1064{
1065 *mgid = iter->mgid;
1066 *created = iter->created;
1067 *queuelen = iter->queuelen;
1068 *complete = iter->complete;
1069 *send_only = iter->send_only;
1070}
Roland Dreier8ae5a8a2005-11-02 20:51:01 -08001071
1072#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */