blob: 3385869443ecd39314a5b3b7ef7ec5dcb995eb19 [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
Erez Shitritc1048af2017-04-10 11:22:29 +0300117 ipoib_dbg_mcast(ipoib_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{
Erez Shitritc1048af2017-04-10 11:22:29 +0300161 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 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{
Erez Shitritc1048af2017-04-10 11:22:29 +0300185 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 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;
Erez Shitritc1048af2017-04-10 11:22:29 +0300215 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Erez Shitritcd565b42017-04-10 11:22:30 +0300216 struct rdma_netdev *rn = netdev_priv(dev);
Eli Cohen7343b232006-02-27 20:47:43 -0800217 struct ipoib_ah *ah;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 int ret;
Eli Cohend0de1362008-07-14 23:48:50 -0700219 int set_qkey = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 mcast->mcmember = *mcmember;
222
Patrick McHardybea1e222012-08-30 07:01:30 +0000223 /* Set the multicast MTU and cached Q_Key before we attach if it's
224 * the broadcast group.
225 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
227 sizeof (union ib_gid))) {
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700228 spin_lock_irq(&priv->lock);
229 if (!priv->broadcast) {
230 spin_unlock_irq(&priv->lock);
231 return -EAGAIN;
232 }
Erez Shitrit3fd06052015-04-02 13:39:01 +0300233 /*update priv member according to the new mcast*/
234 priv->broadcast->mcmember.qkey = mcmember->qkey;
235 priv->broadcast->mcmember.mtu = mcmember->mtu;
236 priv->broadcast->mcmember.traffic_class = mcmember->traffic_class;
237 priv->broadcast->mcmember.rate = mcmember->rate;
238 priv->broadcast->mcmember.sl = mcmember->sl;
239 priv->broadcast->mcmember.flow_label = mcmember->flow_label;
240 priv->broadcast->mcmember.hop_limit = mcmember->hop_limit;
241 /* assume if the admin and the mcast are the same both can be changed */
242 if (priv->mcast_mtu == priv->admin_mtu)
243 priv->admin_mtu =
244 priv->mcast_mtu =
245 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
246 else
247 priv->mcast_mtu =
248 IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
Jack Morgensteine1d50dc2008-05-20 15:41:09 -0700251 spin_unlock_irq(&priv->lock);
Christoph Hellwige622f2f2015-10-08 09:16:33 +0100252 priv->tx_wr.remote_qkey = priv->qkey;
Eli Cohend0de1362008-07-14 23:48:50 -0700253 set_qkey = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
256 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
257 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700258 ipoib_warn(priv, "multicast group %pI6 already attached\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700259 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 return 0;
262 }
263
Erez Shitritcd565b42017-04-10 11:22:30 +0300264 ret = rn->attach_mcast(dev, priv->ca, &mcast->mcmember.mgid,
265 be16_to_cpu(mcast->mcmember.mlid),
266 set_qkey, priv->qkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (ret < 0) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700268 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700269 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
272 return ret;
273 }
274 }
275
276 {
277 struct ib_ah_attr av = {
278 .dlid = be16_to_cpu(mcast->mcmember.mlid),
279 .port_num = priv->port,
280 .sl = mcast->mcmember.sl,
281 .ah_flags = IB_AH_GRH,
Jack Morgensteinbf6a9e32006-04-10 09:43:47 -0700282 .static_rate = mcast->mcmember.rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .grh = {
284 .flow_label = be32_to_cpu(mcast->mcmember.flow_label),
285 .hop_limit = mcast->mcmember.hop_limit,
286 .sgid_index = 0,
287 .traffic_class = mcast->mcmember.traffic_class
288 }
289 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 av.grh.dgid = mcast->mcmember.mgid;
291
Eli Cohen7343b232006-02-27 20:47:43 -0800292 ah = ipoib_create_ah(dev, priv->pd, &av);
Mike Marciniszyn38743972011-11-21 08:43:54 -0500293 if (IS_ERR(ah)) {
294 ipoib_warn(priv, "ib_address_create failed %ld\n",
295 -PTR_ERR(ah));
296 /* use original error */
297 return PTR_ERR(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 } else {
Or Gerlitz624d01f2006-07-24 10:42:00 +0300299 spin_lock_irq(&priv->lock);
300 mcast->ah = ah;
301 spin_unlock_irq(&priv->lock);
302
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700303 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700304 mcast->mcmember.mgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 mcast->ah->ah,
306 be16_to_cpu(mcast->mcmember.mlid),
307 mcast->mcmember.sl);
308 }
309 }
310
311 /* actually send any queued packets */
Roland Dreier943c2462008-09-30 10:36:21 -0700312 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 while (!skb_queue_empty(&mcast->pkt_queue)) {
314 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
David S. Miller69cce1d2011-07-17 23:09:49 -0700315
Roland Dreier943c2462008-09-30 10:36:21 -0700316 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 skb->dev = dev;
Roland Dreier936d7de2012-02-07 14:51:21 +0000319
Feras Daoudd32b9a82016-12-28 14:47:25 +0200320 ret = dev_queue_xmit(skb);
321 if (ret)
322 ipoib_warn(priv, "%s:dev_queue_xmit failed to re-queue packet, ret:%d\n",
323 __func__, ret);
Roland Dreier943c2462008-09-30 10:36:21 -0700324 netif_tx_lock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Roland Dreier943c2462008-09-30 10:36:21 -0700326 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 return 0;
329}
330
Yossi Etigine8224e42008-09-16 11:57:45 -0700331void ipoib_mcast_carrier_on_task(struct work_struct *work)
332{
333 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
334 carrier_on_task);
Moni Shoua5ee951202009-09-24 12:01:05 -0700335 struct ib_port_attr attr;
Yossi Etigine8224e42008-09-16 11:57:45 -0700336
Moni Shoua5ee951202009-09-24 12:01:05 -0700337 if (ib_query_port(priv->ca, priv->port, &attr) ||
338 attr.state != IB_PORT_ACTIVE) {
339 ipoib_dbg(priv, "Keeping carrier off until IB port is active\n");
340 return;
341 }
Erez Shitrit3b561132016-05-25 22:02:07 +0300342 /*
343 * Check if can send sendonly MCG's with sendonly-fullmember join state.
344 * It done here after the successfully join to the broadcast group,
345 * because the broadcast group must always be joined first and is always
346 * re-joined if the SM changes substantially.
347 */
Dasaratharaman Chandramouliee1c60b2017-03-20 19:38:08 -0400348 priv->sm_fullmember_sendonly_support =
349 ib_sa_sendonly_fullmem_support(&ipoib_sa_client,
350 priv->ca, priv->port);
Doug Ledford894021a2015-02-21 19:27:02 -0500351 /*
352 * Take rtnl_lock to avoid racing with ipoib_stop() and
353 * turning the carrier back on while a device is being
354 * removed. However, ipoib_stop() will attempt to flush
355 * the workqueue while holding the rtnl lock, so loop
356 * on trylock until either we get the lock or we see
357 * FLAG_OPER_UP go away as that signals that we are bailing
358 * and can safely ignore the carrier on work.
359 */
360 while (!rtnl_trylock()) {
361 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
362 return;
363 else
364 msleep(20);
365 }
Doug Ledfordc84ca6d2015-02-21 19:27:01 -0500366 if (!ipoib_cm_admin_enabled(priv->dev))
367 dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu));
Yossi Etigine8224e42008-09-16 11:57:45 -0700368 netif_carrier_on(priv->dev);
369 rtnl_unlock();
370}
371
Sean Heftyfaec2f72007-02-15 17:00:17 -0800372static int ipoib_mcast_join_complete(int status,
373 struct ib_sa_multicast *multicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Sean Heftyfaec2f72007-02-15 17:00:17 -0800375 struct ipoib_mcast *mcast = multicast->context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct net_device *dev = mcast->dev;
Erez Shitritc1048af2017-04-10 11:22:29 +0300377 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500379 ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n",
380 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ?
381 "sendonly " : "",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700382 mcast->mcmember.mgid.raw, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Sean Heftyfaec2f72007-02-15 17:00:17 -0800384 /* We trap for port events ourselves. */
Roland Dreiere7a623d2015-01-30 15:39:20 -0800385 if (status == -ENETRESET) {
386 status = 0;
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300387 goto out;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800388 }
Sean Heftyfaec2f72007-02-15 17:00:17 -0800389
390 if (!status)
391 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
392
393 if (!status) {
Hal Rosenstockce5b65c2005-09-18 13:47:53 -0700394 mcast->backoff = 1;
Doug Ledford69911412015-02-21 19:27:05 -0500395 mcast->delay_until = jiffies;
Shirley Ma55c9add2007-03-08 14:59:30 -0800396
Yossi Etigine8224e42008-09-16 11:57:45 -0700397 /*
Doug Ledford0b395782015-02-21 19:27:03 -0500398 * Defer carrier on work to priv->wq to avoid a
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500399 * deadlock on rtnl_lock here. Requeue our multicast
400 * work too, which will end up happening right after
401 * our carrier on task work and will allow us to
402 * send out all of the non-broadcast joins
Yossi Etigine8224e42008-09-16 11:57:45 -0700403 */
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500404 if (mcast == priv->broadcast) {
Doug Ledford1c0453d2015-02-21 19:27:07 -0500405 spin_lock_irq(&priv->lock);
Doug Ledford0b395782015-02-21 19:27:03 -0500406 queue_work(priv->wq, &priv->carrier_on_task);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500407 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500408 goto out_locked;
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500409 }
Doug Ledford69911412015-02-21 19:27:05 -0500410 } else {
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600411 bool silent_fail =
412 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
413 status == -EINVAL;
414
415 if (mcast->logcount < 20) {
416 if (status == -ETIMEDOUT || status == -EAGAIN ||
417 silent_fail) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500418 ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n",
419 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500420 mcast->mcmember.mgid.raw, status);
421 } else {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500422 ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n",
423 test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "",
Doug Ledford69911412015-02-21 19:27:05 -0500424 mcast->mcmember.mgid.raw, status);
425 }
Jason Gunthorped1178cb2015-08-21 17:34:13 -0600426
427 if (!silent_fail)
428 mcast->logcount++;
Roland Dreiere7a623d2015-01-30 15:39:20 -0800429 }
Doug Ledford69911412015-02-21 19:27:05 -0500430
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500431 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
432 mcast->backoff >= 2) {
433 /*
434 * We only retry sendonly joins once before we drop
435 * the packet and quit trying to deal with the
436 * group. However, we leave the group in the
437 * mcast list as an unjoined group. If we want to
438 * try joining again, we simply queue up a packet
439 * and restart the join thread. The empty queue
440 * is why the join thread ignores this group.
441 */
442 mcast->backoff = 1;
443 netif_tx_lock_bh(dev);
444 while (!skb_queue_empty(&mcast->pkt_queue)) {
445 ++dev->stats.tx_dropped;
446 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
447 }
448 netif_tx_unlock_bh(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500449 } else {
450 spin_lock_irq(&priv->lock);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500451 /* Requeue this join task with a backoff delay */
452 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500453 goto out_locked;
454 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800455 }
Roland Dreiere7a623d2015-01-30 15:39:20 -0800456out:
Doug Ledford1c0453d2015-02-21 19:27:07 -0500457 spin_lock_irq(&priv->lock);
458out_locked:
459 /*
460 * Make sure to set mcast->mc before we clear the busy flag to avoid
461 * racing with code that checks for BUSY before checking mcast->mc
462 */
Doug Ledford69911412015-02-21 19:27:05 -0500463 if (status)
464 mcast->mc = NULL;
Doug Ledford1c0453d2015-02-21 19:27:07 -0500465 else
466 mcast->mc = multicast;
467 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
468 spin_unlock_irq(&priv->lock);
Roland Dreiere7a623d2015-01-30 15:39:20 -0800469 complete(&mcast->done);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500470
Sean Heftyfaec2f72007-02-15 17:00:17 -0800471 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Alex Estrin08bc3272016-02-11 16:30:51 -0500474/*
475 * Caller must hold 'priv->lock'
476 */
477static int ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Erez Shitritc1048af2017-04-10 11:22:29 +0300479 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500480 struct ib_sa_multicast *multicast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 struct ib_sa_mcmember_rec rec = {
482 .join_state = 1
483 };
484 ib_sa_comp_mask comp_mask;
485 int ret = 0;
486
Alex Estrin08bc3272016-02-11 16:30:51 -0500487 if (!priv->broadcast ||
488 !test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
489 return -EINVAL;
490
Feras Daoud3e31a492017-03-19 11:18:55 +0200491 init_completion(&mcast->done);
492 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
493
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700494 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 rec.mgid = mcast->mcmember.mgid;
497 rec.port_gid = priv->local_gid;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700498 rec.pkey = cpu_to_be16(priv->pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 comp_mask =
501 IB_SA_MCMEMBER_REC_MGID |
502 IB_SA_MCMEMBER_REC_PORT_GID |
503 IB_SA_MCMEMBER_REC_PKEY |
504 IB_SA_MCMEMBER_REC_JOIN_STATE;
505
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400506 if (mcast != priv->broadcast) {
507 /*
508 * RFC 4391:
509 * The MGID MUST use the same P_Key, Q_Key, SL, MTU,
510 * and HopLimit as those used in the broadcast-GID. The rest
511 * of attributes SHOULD follow the values used in the
512 * broadcast-GID as well.
513 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 comp_mask |=
Roland Dreierd0df6d62006-09-22 15:22:56 -0700515 IB_SA_MCMEMBER_REC_QKEY |
516 IB_SA_MCMEMBER_REC_MTU_SELECTOR |
517 IB_SA_MCMEMBER_REC_MTU |
518 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS |
519 IB_SA_MCMEMBER_REC_RATE_SELECTOR |
520 IB_SA_MCMEMBER_REC_RATE |
521 IB_SA_MCMEMBER_REC_SL |
522 IB_SA_MCMEMBER_REC_FLOW_LABEL |
523 IB_SA_MCMEMBER_REC_HOP_LIMIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 rec.qkey = priv->broadcast->mcmember.qkey;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700526 rec.mtu_selector = IB_SA_EQ;
527 rec.mtu = priv->broadcast->mcmember.mtu;
528 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
529 rec.rate_selector = IB_SA_EQ;
530 rec.rate = priv->broadcast->mcmember.rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 rec.sl = priv->broadcast->mcmember.sl;
532 rec.flow_label = priv->broadcast->mcmember.flow_label;
Roland Dreierd0df6d62006-09-22 15:22:56 -0700533 rec.hop_limit = priv->broadcast->mcmember.hop_limit;
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400534
535 /*
Erez Shitrit3b561132016-05-25 22:02:07 +0300536 * Send-only IB Multicast joins work at the core IB layer but
537 * require specific SM support.
538 * We can use such joins here only if the current SM supports that feature.
539 * However, if not, we emulate an Ethernet multicast send,
540 * which does not require a multicast subscription and will
541 * still send properly. The most appropriate thing to
Doug Ledfordc3852ab2015-09-25 14:35:01 -0400542 * do is to create the group if it doesn't exist as that
543 * most closely emulates the behavior, from a user space
Erez Shitrit3b561132016-05-25 22:02:07 +0300544 * application perspective, of Ethernet multicast operation.
Doug Ledfordc3acdc02015-09-03 17:05:58 -0400545 */
Erez Shitrit3b561132016-05-25 22:02:07 +0300546 if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) &&
547 priv->sm_fullmember_sendonly_support)
548 /* SM supports sendonly-fullmember, otherwise fallback to full-member */
549 rec.join_state = SENDONLY_FULLMEMBER_JOIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
Alex Estrin08bc3272016-02-11 16:30:51 -0500551 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Doug Ledford1c0453d2015-02-21 19:27:07 -0500553 multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port,
Sean Heftyfaec2f72007-02-15 17:00:17 -0800554 &rec, comp_mask, GFP_KERNEL,
555 ipoib_mcast_join_complete, mcast);
Alex Estrin08bc3272016-02-11 16:30:51 -0500556 spin_lock_irq(&priv->lock);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500557 if (IS_ERR(multicast)) {
558 ret = PTR_ERR(multicast);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800559 ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500560 /* Requeue this join task with a backoff delay */
Doug Ledford69911412015-02-21 19:27:05 -0500561 __ipoib_mcast_schedule_join_thread(priv, mcast, 1);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500562 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
563 spin_unlock_irq(&priv->lock);
Doug Ledford69911412015-02-21 19:27:05 -0500564 complete(&mcast->done);
Alex Estrin08bc3272016-02-11 16:30:51 -0500565 spin_lock_irq(&priv->lock);
Sean Heftyfaec2f72007-02-15 17:00:17 -0800566 }
Alex Estrin08bc3272016-02-11 16:30:51 -0500567 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
David Howellsc4028952006-11-22 14:57:56 +0000570void ipoib_mcast_join_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
David Howellsc4028952006-11-22 14:57:56 +0000572 struct ipoib_dev_priv *priv =
573 container_of(work, struct ipoib_dev_priv, mcast_task.work);
574 struct net_device *dev = priv->dev;
Erez Shitrit94232d92013-10-16 17:37:53 +0300575 struct ib_port_attr port_attr;
Doug Ledford69911412015-02-21 19:27:05 -0500576 unsigned long delay_until = 0;
577 struct ipoib_mcast *mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Erez Shitrit0e5544d2015-04-02 13:39:04 +0300579 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return;
581
Bart Van Assche11b642b2016-11-21 10:21:41 -0800582 if (ib_query_port(priv->ca, priv->port, &port_attr)) {
583 ipoib_dbg(priv, "ib_query_port() failed\n");
584 return;
585 }
586 if (port_attr.state != IB_PORT_ACTIVE) {
Erez Shitrit94232d92013-10-16 17:37:53 +0300587 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
588 port_attr.state);
589 return;
590 }
Alex Estrin68f9d832014-08-20 11:15:08 -0400591 priv->local_lid = port_attr.lid;
Mark Bloch9b299532016-06-04 15:15:22 +0300592 netif_addr_lock_bh(dev);
Erez Shitrit94232d92013-10-16 17:37:53 +0300593
Mark Bloch492a7e62016-05-18 16:42:43 +0300594 if (!test_bit(IPOIB_FLAG_DEV_ADDR_SET, &priv->flags)) {
Mark Bloch9b299532016-06-04 15:15:22 +0300595 netif_addr_unlock_bh(dev);
Mark Bloch492a7e62016-05-18 16:42:43 +0300596 return;
597 }
Mark Bloch9b299532016-06-04 15:15:22 +0300598 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Doug Ledford69911412015-02-21 19:27:05 -0500600 spin_lock_irq(&priv->lock);
601 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
602 goto out;
603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!priv->broadcast) {
Roland Dreier20b83382006-02-11 12:22:12 -0800605 struct ipoib_mcast *broadcast;
606
Doug Ledford69911412015-02-21 19:27:05 -0500607 broadcast = ipoib_mcast_alloc(dev, 0);
Roland Dreier20b83382006-02-11 12:22:12 -0800608 if (!broadcast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 ipoib_warn(priv, "failed to allocate broadcast group\n");
Doug Ledford69911412015-02-21 19:27:05 -0500610 /*
611 * Restart us after a 1 second delay to retry
612 * creating our broadcast group and attaching to
613 * it. Until this succeeds, this ipoib dev is
614 * completely stalled (multicast wise).
615 */
616 __ipoib_mcast_schedule_join_thread(priv, NULL, 1);
617 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Roland Dreier20b83382006-02-11 12:22:12 -0800620 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
621 sizeof (union ib_gid));
622 priv->broadcast = broadcast;
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 __ipoib_mcast_add(dev, priv->broadcast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Doug Ledford69911412015-02-21 19:27:05 -0500628 if (IS_ERR_OR_NULL(priv->broadcast->mc) &&
629 !test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags)) {
630 mcast = priv->broadcast;
Doug Ledford69911412015-02-21 19:27:05 -0500631 if (mcast->backoff > 1 &&
632 time_before(jiffies, mcast->delay_until)) {
633 delay_until = mcast->delay_until;
634 mcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 }
Doug Ledford69911412015-02-21 19:27:05 -0500637 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
Doug Ledford69911412015-02-21 19:27:05 -0500640 /*
641 * We'll never get here until the broadcast group is both allocated
642 * and attached
643 */
644 list_for_each_entry(mcast, &priv->multicast_list, list) {
645 if (IS_ERR_OR_NULL(mcast->mc) &&
646 !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags) &&
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500647 (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ||
648 !skb_queue_empty(&mcast->pkt_queue))) {
Doug Ledford69911412015-02-21 19:27:05 -0500649 if (mcast->backoff == 1 ||
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500650 time_after_eq(jiffies, mcast->delay_until)) {
Doug Ledford69911412015-02-21 19:27:05 -0500651 /* Found the next unjoined group */
Alex Estrin08bc3272016-02-11 16:30:51 -0500652 if (ipoib_mcast_join(dev, mcast)) {
653 spin_unlock_irq(&priv->lock);
654 return;
655 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500656 } else if (!delay_until ||
Doug Ledford69911412015-02-21 19:27:05 -0500657 time_before(mcast->delay_until, delay_until))
658 delay_until = mcast->delay_until;
659 }
660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500662 mcast = NULL;
663 ipoib_dbg_mcast(priv, "successfully started all multicast joins\n");
Doug Ledford69911412015-02-21 19:27:05 -0500664
665out:
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500666 if (delay_until) {
667 cancel_delayed_work(&priv->mcast_task);
668 queue_delayed_work(priv->wq, &priv->mcast_task,
669 delay_until - jiffies);
670 }
Feras Daoud3e31a492017-03-19 11:18:55 +0200671 if (mcast)
Alex Estrin08bc3272016-02-11 16:30:51 -0500672 ipoib_mcast_join(dev, mcast);
Feras Daoud3e31a492017-03-19 11:18:55 +0200673
Doug Ledford69911412015-02-21 19:27:05 -0500674 spin_unlock_irq(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Zhu Yanjun5c370772017-01-18 23:16:06 -0500677void ipoib_mcast_start_thread(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Erez Shitritc1048af2017-04-10 11:22:29 +0300679 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500680 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 ipoib_dbg_mcast(priv, "starting multicast thread\n");
683
Doug Ledford1c0453d2015-02-21 19:27:07 -0500684 spin_lock_irqsave(&priv->lock, flags);
Doug Ledford69911412015-02-21 19:27:05 -0500685 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500686 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500689int ipoib_mcast_stop_thread(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Erez Shitritc1048af2017-04-10 11:22:29 +0300691 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500692 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
695
Doug Ledford1c0453d2015-02-21 19:27:07 -0500696 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 cancel_delayed_work(&priv->mcast_task);
Doug Ledford1c0453d2015-02-21 19:27:07 -0500698 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500700 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return 0;
703}
704
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600705static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Erez Shitritc1048af2017-04-10 11:22:29 +0300707 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Erez Shitritcd565b42017-04-10 11:22:30 +0300708 struct rdma_netdev *rn = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 int ret = 0;
710
Sean Heftye07832b2007-03-19 14:31:36 -0800711 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Doug Ledford69911412015-02-21 19:27:05 -0500712 ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n");
713
714 if (!IS_ERR_OR_NULL(mcast->mc))
Sean Heftye07832b2007-03-19 14:31:36 -0800715 ib_sa_free_multicast(mcast->mc);
716
Sean Heftyfaec2f72007-02-15 17:00:17 -0800717 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700718 ipoib_dbg_mcast(priv, "leaving MGID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700719 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Sean Heftyfaec2f72007-02-15 17:00:17 -0800721 /* Remove ourselves from the multicast group */
Erez Shitritcd565b42017-04-10 11:22:30 +0300722 ret = rn->detach_mcast(dev, priv->ca, &mcast->mcmember.mgid,
723 be16_to_cpu(mcast->mcmember.mlid));
Sean Heftyfaec2f72007-02-15 17:00:17 -0800724 if (ret)
Roland Dreier9eae5542008-07-14 23:48:50 -0700725 ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret);
Doug Ledford69911412015-02-21 19:27:05 -0500726 } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
727 ipoib_dbg(priv, "leaving with no mcmember but not a "
728 "SENDONLY join\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return 0;
731}
732
Christoph Lameter432c55f2015-12-21 08:42:54 -0600733/*
734 * Check if the multicast group is sendonly. If so remove it from the maps
735 * and add to the remove list
736 */
737void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv *priv, u8 *mgid,
738 struct list_head *remove_list)
739{
740 /* Is this multicast ? */
741 if (*mgid == 0xff) {
742 struct ipoib_mcast *mcast = __ipoib_mcast_find(priv->dev, mgid);
743
744 if (mcast && test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
745 list_del(&mcast->list);
746 rb_erase(&mcast->rb_node, &priv->multicast_tree);
747 list_add_tail(&mcast->list, remove_list);
748 }
749 }
750}
751
Erez Shitrit50be28d2016-01-07 09:28:08 +0200752void ipoib_mcast_remove_list(struct list_head *remove_list)
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600753{
754 struct ipoib_mcast *mcast, *tmcast;
755
756 list_for_each_entry_safe(mcast, tmcast, remove_list, list) {
Erez Shitrit50be28d2016-01-07 09:28:08 +0200757 ipoib_mcast_leave(mcast->dev, mcast);
Christoph Lameter5a0e81f2015-12-21 08:42:53 -0600758 ipoib_mcast_free(mcast);
759 }
760}
761
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000762void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Erez Shitritc1048af2017-04-10 11:22:29 +0300764 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Erez Shitritcd565b42017-04-10 11:22:30 +0300765 struct rdma_netdev *rn = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct ipoib_mcast *mcast;
Roland Dreier943c2462008-09-30 10:36:21 -0700767 unsigned long flags;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000768 void *mgid = daddr + 4;
David S. Miller700db992012-07-05 21:08:05 -0700769
Roland Dreier943c2462008-09-30 10:36:21 -0700770 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Or Gerlitzb3e27492008-03-11 16:10:02 +0200772 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
Roland Dreier20b83382006-02-11 12:22:12 -0800773 !priv->broadcast ||
774 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
Roland Dreierde903512007-09-28 15:33:51 -0700775 ++dev->stats.tx_dropped;
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800776 dev_kfree_skb_any(skb);
777 goto unlock;
778 }
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 mcast = __ipoib_mcast_find(dev, mgid);
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500781 if (!mcast || !mcast->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (!mcast) {
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500783 /* Let's create a new send only group now */
784 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
785 mgid);
786
787 mcast = ipoib_mcast_alloc(dev, 0);
788 if (!mcast) {
789 ipoib_warn(priv, "unable to allocate memory "
790 "for multicast structure\n");
791 ++dev->stats.tx_dropped;
792 dev_kfree_skb_any(skb);
793 goto unlock;
794 }
795
796 set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags);
797 memcpy(mcast->mcmember.mgid.raw, mgid,
798 sizeof (union ib_gid));
799 __ipoib_mcast_add(dev, mcast);
800 list_add_tail(&mcast->list, &priv->multicast_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
Paolo Abenifc791b62016-10-13 18:26:56 +0200802 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE) {
803 /* put pseudoheader back on for next time */
804 skb_push(skb, sizeof(struct ipoib_pseudo_header));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 skb_queue_tail(&mcast->pkt_queue, skb);
Paolo Abenifc791b62016-10-13 18:26:56 +0200806 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700807 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 dev_kfree_skb_any(skb);
Michael S. Tsirkinb36f170b62006-01-17 12:19:40 -0800809 }
Doug Ledfordd2fe9372015-02-21 19:27:06 -0500810 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
811 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
812 }
813 } else {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000814 struct ipoib_neigh *neigh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000816 spin_unlock_irqrestore(&priv->lock, flags);
817 neigh = ipoib_neigh_get(dev, daddr);
818 spin_lock_irqsave(&priv->lock, flags);
819 if (!neigh) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000820 neigh = ipoib_neigh_alloc(daddr, dev);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000821 if (neigh) {
822 kref_get(&mcast->ah->ref);
823 neigh->ah = mcast->ah;
824 list_add_tail(&neigh->list, &mcast->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700827 spin_unlock_irqrestore(&priv->lock, flags);
Erez Shitritcd565b42017-04-10 11:22:30 +0300828 mcast->ah->last_send = rn->send(dev, skb, mcast->ah->ah,
829 IB_MULTICAST_QPN);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000830 if (neigh)
831 ipoib_neigh_put(neigh);
Roland Dreier721d67c2009-09-05 20:23:40 -0700832 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
Michael S. Tsirkin479a0792006-02-07 16:37:08 -0800835unlock:
Roland Dreier943c2462008-09-30 10:36:21 -0700836 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
839void ipoib_mcast_dev_flush(struct net_device *dev)
840{
Erez Shitritc1048af2017-04-10 11:22:29 +0300841 struct ipoib_dev_priv *priv = ipoib_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 LIST_HEAD(remove_list);
Eli Cohen988bd502006-01-12 14:32:20 -0800843 struct ipoib_mcast *mcast, *tmcast;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 unsigned long flags;
845
846 ipoib_dbg_mcast(priv, "flushing multicast list\n");
847
848 spin_lock_irqsave(&priv->lock, flags);
Eli Cohen988bd502006-01-12 14:32:20 -0800849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
Eli Cohen988bd502006-01-12 14:32:20 -0800851 list_del(&mcast->list);
852 rb_erase(&mcast->rb_node, &priv->multicast_tree);
853 list_add_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 }
855
856 if (priv->broadcast) {
Roland Dreier3cd96562006-09-22 15:22:46 -0700857 rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree);
Eli Cohen988bd502006-01-12 14:32:20 -0800858 list_add_tail(&priv->broadcast->list, &remove_list);
859 priv->broadcast = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861
862 spin_unlock_irqrestore(&priv->lock, flags);
863
Doug Ledford69911412015-02-21 19:27:05 -0500864 /*
865 * make sure the in-flight joins have finished before we attempt
866 * to leave
867 */
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300868 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
Doug Ledford69911412015-02-21 19:27:05 -0500869 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
Erez Shitrita9c8ba52013-10-16 17:37:51 +0300870 wait_for_completion(&mcast->done);
871
Erez Shitrit50be28d2016-01-07 09:28:08 +0200872 ipoib_mcast_remove_list(&remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Jiri Pirko3e4aa12f82010-03-22 03:21:39 +0000875static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700876{
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700877 /* reserved QPN, prefix, scope */
878 if (memcmp(addr, broadcast, 6))
879 return 0;
880 /* signature lower, pkey */
881 if (memcmp(addr + 7, broadcast + 7, 3))
882 return 0;
883 return 1;
884}
885
David Howellsc4028952006-11-22 14:57:56 +0000886void ipoib_mcast_restart_task(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
David Howellsc4028952006-11-22 14:57:56 +0000888 struct ipoib_dev_priv *priv =
889 container_of(work, struct ipoib_dev_priv, restart_task);
890 struct net_device *dev = priv->dev;
Jiri Pirko22bedad32010-04-01 21:22:57 +0000891 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct ipoib_mcast *mcast, *tmcast;
893 LIST_HEAD(remove_list);
894 unsigned long flags;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200895 struct ib_sa_mcmember_rec rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Doug Ledford69911412015-02-21 19:27:05 -0500897 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
898 /*
899 * shortcut...on shutdown flush is called next, just
900 * let it do all the work
901 */
902 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Doug Ledford69911412015-02-21 19:27:05 -0500904 ipoib_dbg_mcast(priv, "restarting multicast task\n");
Roland Dreier4e0ab202015-01-30 15:38:46 -0800905
Herbert Xu932ff272006-06-09 12:20:56 -0700906 local_irq_save(flags);
David S. Millere308a5d2008-07-15 00:13:44 -0700907 netif_addr_lock(dev);
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800908 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /*
911 * Unfortunately, the networking core only gives us a list of all of
912 * the multicast hardware addresses. We need to figure out which ones
913 * are new and which ones have been removed
914 */
915
916 /* Clear out the found flag */
917 list_for_each_entry(mcast, &priv->multicast_list, list)
918 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
919
920 /* Mark all of the entries that are found or don't exist */
Jiri Pirko22bedad32010-04-01 21:22:57 +0000921 netdev_for_each_mc_addr(ha, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 union ib_gid mgid;
923
Jiri Pirko22bedad32010-04-01 21:22:57 +0000924 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
Jason Gunthorpe5e475962009-09-05 20:23:40 -0700925 continue;
926
Jiri Pirko22bedad32010-04-01 21:22:57 +0000927 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 mcast = __ipoib_mcast_find(dev, &mgid);
930 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
931 struct ipoib_mcast *nmcast;
932
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200933 /* ignore group which is directly joined by userspace */
934 if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) &&
935 !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700936 ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700937 mgid.raw);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +0200938 continue;
939 }
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /* Not found or send-only group, let's add a new entry */
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700942 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700943 mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 nmcast = ipoib_mcast_alloc(dev, 0);
946 if (!nmcast) {
947 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
948 continue;
949 }
950
951 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
952
953 nmcast->mcmember.mgid = mgid;
954
955 if (mcast) {
956 /* Destroy the send only entry */
Akinobu Mita179e0912006-06-26 00:24:41 -0700957 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 rb_replace_node(&mcast->rb_node,
960 &nmcast->rb_node,
961 &priv->multicast_tree);
962 } else
963 __ipoib_mcast_add(dev, nmcast);
964
965 list_add_tail(&nmcast->list, &priv->multicast_list);
966 }
967
968 if (mcast)
969 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
970 }
971
972 /* Remove all of the entries don't exist anymore */
973 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
974 if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) &&
975 !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700976 ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700977 mcast->mcmember.mgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 rb_erase(&mcast->rb_node, &priv->multicast_tree);
980
981 /* Move to the remove list */
Akinobu Mita179e0912006-06-26 00:24:41 -0700982 list_move_tail(&mcast->list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 }
984 }
Michael S. Tsirkin78bfe0b2006-01-11 11:47:34 -0800985
986 spin_unlock(&priv->lock);
David S. Millere308a5d2008-07-15 00:13:44 -0700987 netif_addr_unlock(dev);
Herbert Xu932ff272006-06-09 12:20:56 -0700988 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Doug Ledford69911412015-02-21 19:27:05 -0500990 /*
991 * make sure the in-flight joins have finished before we attempt
992 * to leave
993 */
994 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
995 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
996 wait_for_completion(&mcast->done);
997
Erez Shitrit50be28d2016-01-07 09:28:08 +0200998 ipoib_mcast_remove_list(&remove_list);
Roland Dreier962121b2015-01-30 15:39:11 -0800999
Doug Ledford69911412015-02-21 19:27:05 -05001000 /*
1001 * Double check that we are still up
1002 */
1003 if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
1004 spin_lock_irqsave(&priv->lock, flags);
1005 __ipoib_mcast_schedule_join_thread(priv, NULL, 0);
1006 spin_unlock_irqrestore(&priv->lock, flags);
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
Roland Dreier8ae5a8a2005-11-02 20:51:01 -08001010#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
1013{
1014 struct ipoib_mcast_iter *iter;
1015
1016 iter = kmalloc(sizeof *iter, GFP_KERNEL);
1017 if (!iter)
1018 return NULL;
1019
1020 iter->dev = dev;
Roland Dreier1732b0e2005-11-07 10:33:11 -08001021 memset(iter->mgid.raw, 0, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 if (ipoib_mcast_iter_next(iter)) {
Roland Dreier1732b0e2005-11-07 10:33:11 -08001024 kfree(iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return NULL;
1026 }
1027
1028 return iter;
1029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
1032{
Erez Shitritc1048af2017-04-10 11:22:29 +03001033 struct ipoib_dev_priv *priv = ipoib_priv(iter->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct rb_node *n;
1035 struct ipoib_mcast *mcast;
1036 int ret = 1;
1037
1038 spin_lock_irq(&priv->lock);
1039
1040 n = rb_first(&priv->multicast_tree);
1041
1042 while (n) {
1043 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
1044
1045 if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw,
1046 sizeof (union ib_gid)) < 0) {
1047 iter->mgid = mcast->mcmember.mgid;
1048 iter->created = mcast->created;
1049 iter->queuelen = skb_queue_len(&mcast->pkt_queue);
1050 iter->complete = !!mcast->ah;
1051 iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY));
1052
1053 ret = 0;
1054
1055 break;
1056 }
1057
1058 n = rb_next(n);
1059 }
1060
1061 spin_unlock_irq(&priv->lock);
1062
1063 return ret;
1064}
1065
1066void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
1067 union ib_gid *mgid,
1068 unsigned long *created,
1069 unsigned int *queuelen,
1070 unsigned int *complete,
1071 unsigned int *send_only)
1072{
1073 *mgid = iter->mgid;
1074 *created = iter->created;
1075 *queuelen = iter->queuelen;
1076 *complete = iter->complete;
1077 *send_only = iter->send_only;
1078}
Roland Dreier8ae5a8a2005-11-02 20:51:01 -08001079
1080#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */