]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/infiniband/ulp/ipoib/ipoib_multicast.c
IB/ipoib: Use dedicated workqueues per interface
[mirror_ubuntu-artful-kernel.git] / drivers / infiniband / ulp / ipoib / ipoib_multicast.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
2a1d9b7f
RD
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
1da177e4
LT
5 *
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.
1da177e4
LT
33 */
34
35#include <linux/skbuff.h>
36#include <linux/rtnetlink.h>
fec14d2f 37#include <linux/moduleparam.h>
1da177e4
LT
38#include <linux/ip.h>
39#include <linux/in.h>
40#include <linux/igmp.h>
41#include <linux/inetdevice.h>
42#include <linux/delay.h>
43#include <linux/completion.h>
5a0e3ad6 44#include <linux/slab.h>
1da177e4 45
14c85021
ACM
46#include <net/dst.h>
47
1da177e4
LT
48#include "ipoib.h"
49
50#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
51static int mcast_debug_level;
52
53module_param(mcast_debug_level, int, 0644);
54MODULE_PARM_DESC(mcast_debug_level,
55 "Enable multicast debug tracing if > 0");
56#endif
57
95ed644f 58static DEFINE_MUTEX(mcast_mutex);
1da177e4 59
1da177e4
LT
60struct ipoib_mcast_iter {
61 struct net_device *dev;
62 union ib_gid mgid;
63 unsigned long created;
64 unsigned int queuelen;
65 unsigned int complete;
66 unsigned int send_only;
67};
68
69static void ipoib_mcast_free(struct ipoib_mcast *mcast)
70{
71 struct net_device *dev = mcast->dev;
b36f170b 72 int tx_dropped = 0;
1da177e4 73
5b095d98 74 ipoib_dbg_mcast(netdev_priv(dev), "deleting multicast group %pI6\n",
fcace2fe 75 mcast->mcmember.mgid.raw);
1da177e4 76
b63b70d8
SP
77 /* remove all neigh connected to this mcast */
78 ipoib_del_neighs_by_gid(dev, mcast->mcmember.mgid.raw);
1da177e4 79
1da177e4
LT
80 if (mcast->ah)
81 ipoib_put_ah(mcast->ah);
82
b36f170b
MT
83 while (!skb_queue_empty(&mcast->pkt_queue)) {
84 ++tx_dropped;
8c608a32 85 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
b36f170b
MT
86 }
87
943c246e 88 netif_tx_lock_bh(dev);
de903512 89 dev->stats.tx_dropped += tx_dropped;
943c246e 90 netif_tx_unlock_bh(dev);
1da177e4
LT
91
92 kfree(mcast);
93}
94
95static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev,
96 int can_sleep)
97{
98 struct ipoib_mcast *mcast;
99
de6eb66b 100 mcast = kzalloc(sizeof *mcast, can_sleep ? GFP_KERNEL : GFP_ATOMIC);
1da177e4
LT
101 if (!mcast)
102 return NULL;
103
1da177e4
LT
104 mcast->dev = dev;
105 mcast->created = jiffies;
ce5b65cc 106 mcast->backoff = 1;
1da177e4
LT
107
108 INIT_LIST_HEAD(&mcast->list);
109 INIT_LIST_HEAD(&mcast->neigh_list);
110 skb_queue_head_init(&mcast->pkt_queue);
111
1da177e4
LT
112 return mcast;
113}
114
37c22a77 115static struct ipoib_mcast *__ipoib_mcast_find(struct net_device *dev, void *mgid)
1da177e4
LT
116{
117 struct ipoib_dev_priv *priv = netdev_priv(dev);
118 struct rb_node *n = priv->multicast_tree.rb_node;
119
120 while (n) {
121 struct ipoib_mcast *mcast;
122 int ret;
123
124 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
125
37c22a77 126 ret = memcmp(mgid, mcast->mcmember.mgid.raw,
1da177e4
LT
127 sizeof (union ib_gid));
128 if (ret < 0)
129 n = n->rb_left;
130 else if (ret > 0)
131 n = n->rb_right;
132 else
133 return mcast;
134 }
135
136 return NULL;
137}
138
139static int __ipoib_mcast_add(struct net_device *dev, struct ipoib_mcast *mcast)
140{
141 struct ipoib_dev_priv *priv = netdev_priv(dev);
142 struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL;
143
144 while (*n) {
145 struct ipoib_mcast *tmcast;
146 int ret;
147
148 pn = *n;
149 tmcast = rb_entry(pn, struct ipoib_mcast, rb_node);
150
151 ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw,
152 sizeof (union ib_gid));
153 if (ret < 0)
154 n = &pn->rb_left;
155 else if (ret > 0)
156 n = &pn->rb_right;
157 else
158 return -EEXIST;
159 }
160
161 rb_link_node(&mcast->rb_node, pn, n);
162 rb_insert_color(&mcast->rb_node, &priv->multicast_tree);
163
164 return 0;
165}
166
167static int ipoib_mcast_join_finish(struct ipoib_mcast *mcast,
168 struct ib_sa_mcmember_rec *mcmember)
169{
170 struct net_device *dev = mcast->dev;
171 struct ipoib_dev_priv *priv = netdev_priv(dev);
7343b231 172 struct ipoib_ah *ah;
1da177e4 173 int ret;
d0de1362 174 int set_qkey = 0;
1da177e4
LT
175
176 mcast->mcmember = *mcmember;
177
bea1e22d
PM
178 /* Set the multicast MTU and cached Q_Key before we attach if it's
179 * the broadcast group.
180 */
1da177e4
LT
181 if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
182 sizeof (union ib_gid))) {
e1d50dce
JM
183 spin_lock_irq(&priv->lock);
184 if (!priv->broadcast) {
185 spin_unlock_irq(&priv->lock);
186 return -EAGAIN;
187 }
bea1e22d 188 priv->mcast_mtu = IPOIB_UD_MTU(ib_mtu_enum_to_int(priv->broadcast->mcmember.mtu));
1da177e4 189 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
e1d50dce 190 spin_unlock_irq(&priv->lock);
1da177e4 191 priv->tx_wr.wr.ud.remote_qkey = priv->qkey;
d0de1362 192 set_qkey = 1;
1da177e4
LT
193 }
194
195 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
196 if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
5b095d98 197 ipoib_warn(priv, "multicast group %pI6 already attached\n",
fcace2fe 198 mcast->mcmember.mgid.raw);
1da177e4
LT
199
200 return 0;
201 }
202
203 ret = ipoib_mcast_attach(dev, be16_to_cpu(mcast->mcmember.mlid),
d0de1362 204 &mcast->mcmember.mgid, set_qkey);
1da177e4 205 if (ret < 0) {
5b095d98 206 ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n",
fcace2fe 207 mcast->mcmember.mgid.raw);
1da177e4
LT
208
209 clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags);
210 return ret;
211 }
212 }
213
214 {
215 struct ib_ah_attr av = {
216 .dlid = be16_to_cpu(mcast->mcmember.mlid),
217 .port_num = priv->port,
218 .sl = mcast->mcmember.sl,
219 .ah_flags = IB_AH_GRH,
bf6a9e31 220 .static_rate = mcast->mcmember.rate,
1da177e4
LT
221 .grh = {
222 .flow_label = be32_to_cpu(mcast->mcmember.flow_label),
223 .hop_limit = mcast->mcmember.hop_limit,
224 .sgid_index = 0,
225 .traffic_class = mcast->mcmember.traffic_class
226 }
227 };
1da177e4
LT
228 av.grh.dgid = mcast->mcmember.mgid;
229
7343b231 230 ah = ipoib_create_ah(dev, priv->pd, &av);
3874397c
MM
231 if (IS_ERR(ah)) {
232 ipoib_warn(priv, "ib_address_create failed %ld\n",
233 -PTR_ERR(ah));
234 /* use original error */
235 return PTR_ERR(ah);
1da177e4 236 } else {
624d01f8
OG
237 spin_lock_irq(&priv->lock);
238 mcast->ah = ah;
239 spin_unlock_irq(&priv->lock);
240
5b095d98 241 ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n",
fcace2fe 242 mcast->mcmember.mgid.raw,
1da177e4
LT
243 mcast->ah->ah,
244 be16_to_cpu(mcast->mcmember.mlid),
245 mcast->mcmember.sl);
246 }
247 }
248
249 /* actually send any queued packets */
943c246e 250 netif_tx_lock_bh(dev);
1da177e4
LT
251 while (!skb_queue_empty(&mcast->pkt_queue)) {
252 struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue);
69cce1d1 253
943c246e 254 netif_tx_unlock_bh(dev);
1da177e4
LT
255
256 skb->dev = dev;
1da177e4
LT
257 if (dev_queue_xmit(skb))
258 ipoib_warn(priv, "dev_queue_xmit failed to requeue packet\n");
936d7de3 259
943c246e 260 netif_tx_lock_bh(dev);
1da177e4 261 }
943c246e 262 netif_tx_unlock_bh(dev);
1da177e4
LT
263
264 return 0;
265}
266
faec2f7b 267static int
1da177e4 268ipoib_mcast_sendonly_join_complete(int status,
faec2f7b 269 struct ib_sa_multicast *multicast)
1da177e4 270{
faec2f7b 271 struct ipoib_mcast *mcast = multicast->context;
1da177e4
LT
272 struct net_device *dev = mcast->dev;
273
faec2f7b
SH
274 /* We trap for port events ourselves. */
275 if (status == -ENETRESET)
e7a623d2 276 return 0;
faec2f7b 277
1da177e4 278 if (!status)
faec2f7b
SH
279 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
280
281 if (status) {
1da177e4 282 if (mcast->logcount++ < 20)
e7a623d2 283 ipoib_dbg_mcast(netdev_priv(dev), "multicast join failed for %pI6, status %d\n",
fcace2fe 284 mcast->mcmember.mgid.raw, status);
1da177e4
LT
285
286 /* Flush out any queued packets */
943c246e 287 netif_tx_lock_bh(dev);
b36f170b 288 while (!skb_queue_empty(&mcast->pkt_queue)) {
de903512 289 ++dev->stats.tx_dropped;
8c608a32 290 dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue));
b36f170b 291 }
943c246e 292 netif_tx_unlock_bh(dev);
e7a623d2
RD
293
294 /* Clear the busy flag so we try again */
295 status = test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY,
296 &mcast->flags);
1da177e4 297 }
faec2f7b 298 return status;
1da177e4
LT
299}
300
301static int ipoib_mcast_sendonly_join(struct ipoib_mcast *mcast)
302{
303 struct net_device *dev = mcast->dev;
304 struct ipoib_dev_priv *priv = netdev_priv(dev);
305 struct ib_sa_mcmember_rec rec = {
306#if 0 /* Some SMs don't support send-only yet */
307 .join_state = 4
308#else
309 .join_state = 1
310#endif
311 };
312 int ret = 0;
313
314 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
e7a623d2 315 ipoib_dbg_mcast(priv, "device shutting down, no multicast joins\n");
1da177e4
LT
316 return -ENODEV;
317 }
318
e7a623d2
RD
319 if (test_and_set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) {
320 ipoib_dbg_mcast(priv, "multicast entry busy, skipping\n");
1da177e4
LT
321 return -EBUSY;
322 }
323
324 rec.mgid = mcast->mcmember.mgid;
325 rec.port_gid = priv->local_gid;
97f52eb4 326 rec.pkey = cpu_to_be16(priv->pkey);
1da177e4 327
faec2f7b
SH
328 mcast->mc = ib_sa_join_multicast(&ipoib_sa_client, priv->ca,
329 priv->port, &rec,
330 IB_SA_MCMEMBER_REC_MGID |
331 IB_SA_MCMEMBER_REC_PORT_GID |
332 IB_SA_MCMEMBER_REC_PKEY |
333 IB_SA_MCMEMBER_REC_JOIN_STATE,
334 GFP_ATOMIC,
335 ipoib_mcast_sendonly_join_complete,
336 mcast);
337 if (IS_ERR(mcast->mc)) {
338 ret = PTR_ERR(mcast->mc);
339 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
e7a623d2
RD
340 ipoib_warn(priv, "ib_sa_join_multicast failed (ret = %d)\n",
341 ret);
1da177e4 342 } else {
e7a623d2
RD
343 ipoib_dbg_mcast(priv, "no multicast record for %pI6, starting join\n",
344 mcast->mcmember.mgid.raw);
1da177e4
LT
345 }
346
347 return ret;
348}
349
e8224e4b
YE
350void ipoib_mcast_carrier_on_task(struct work_struct *work)
351{
352 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
353 carrier_on_task);
5ee95120 354 struct ib_port_attr attr;
e8224e4b 355
5ee95120
MS
356 if (ib_query_port(priv->ca, priv->port, &attr) ||
357 attr.state != IB_PORT_ACTIVE) {
358 ipoib_dbg(priv, "Keeping carrier off until IB port is active\n");
359 return;
360 }
361
894021a7
DL
362 /*
363 * Take rtnl_lock to avoid racing with ipoib_stop() and
364 * turning the carrier back on while a device is being
365 * removed. However, ipoib_stop() will attempt to flush
366 * the workqueue while holding the rtnl lock, so loop
367 * on trylock until either we get the lock or we see
368 * FLAG_OPER_UP go away as that signals that we are bailing
369 * and can safely ignore the carrier on work.
370 */
371 while (!rtnl_trylock()) {
372 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
373 return;
374 else
375 msleep(20);
376 }
c84ca6d2
DL
377 if (!ipoib_cm_admin_enabled(priv->dev))
378 dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu));
e8224e4b
YE
379 netif_carrier_on(priv->dev);
380 rtnl_unlock();
381}
382
faec2f7b
SH
383static int ipoib_mcast_join_complete(int status,
384 struct ib_sa_multicast *multicast)
1da177e4 385{
faec2f7b 386 struct ipoib_mcast *mcast = multicast->context;
1da177e4
LT
387 struct net_device *dev = mcast->dev;
388 struct ipoib_dev_priv *priv = netdev_priv(dev);
389
5b095d98 390 ipoib_dbg_mcast(priv, "join completion for %pI6 (status %d)\n",
fcace2fe 391 mcast->mcmember.mgid.raw, status);
1da177e4 392
faec2f7b 393 /* We trap for port events ourselves. */
e7a623d2
RD
394 if (status == -ENETRESET) {
395 status = 0;
a9c8ba58 396 goto out;
e7a623d2 397 }
faec2f7b
SH
398
399 if (!status)
400 status = ipoib_mcast_join_finish(mcast, &multicast->rec);
401
402 if (!status) {
ce5b65cc 403 mcast->backoff = 1;
e7a623d2 404 mutex_lock(&mcast_mutex);
1da177e4 405 if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
0b39578b 406 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
e7a623d2 407 mutex_unlock(&mcast_mutex);
55c9adde 408
e8224e4b 409 /*
0b39578b 410 * Defer carrier on work to priv->wq to avoid a
e8224e4b
YE
411 * deadlock on rtnl_lock here.
412 */
413 if (mcast == priv->broadcast)
0b39578b 414 queue_work(priv->wq, &priv->carrier_on_task);
9acf6a85 415
e7a623d2
RD
416 status = 0;
417 goto out;
016d9fb2 418 }
e7a623d2
RD
419
420 if (mcast->logcount++ < 20) {
421 if (status == -ETIMEDOUT || status == -EAGAIN) {
422 ipoib_dbg_mcast(priv, "multicast join failed for %pI6, status %d\n",
423 mcast->mcmember.mgid.raw, status);
424 } else {
425 ipoib_warn(priv, "multicast join failed for %pI6, status %d\n",
426 mcast->mcmember.mgid.raw, status);
427 }
428 }
429
430 mcast->backoff *= 2;
431 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
432 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
433
434 /* Clear the busy flag so we try again */
435 status = test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
436
437 mutex_lock(&mcast_mutex);
9acf6a85 438 spin_lock_irq(&priv->lock);
e7a623d2 439 if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
0b39578b 440 queue_delayed_work(priv->wq, &priv->mcast_task,
faec2f7b 441 mcast->backoff * HZ);
9acf6a85 442 spin_unlock_irq(&priv->lock);
95ed644f 443 mutex_unlock(&mcast_mutex);
e7a623d2
RD
444out:
445 complete(&mcast->done);
faec2f7b 446 return status;
1da177e4
LT
447}
448
449static void ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast,
450 int create)
451{
452 struct ipoib_dev_priv *priv = netdev_priv(dev);
453 struct ib_sa_mcmember_rec rec = {
454 .join_state = 1
455 };
456 ib_sa_comp_mask comp_mask;
457 int ret = 0;
458
5b095d98 459 ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw);
1da177e4
LT
460
461 rec.mgid = mcast->mcmember.mgid;
462 rec.port_gid = priv->local_gid;
97f52eb4 463 rec.pkey = cpu_to_be16(priv->pkey);
1da177e4
LT
464
465 comp_mask =
466 IB_SA_MCMEMBER_REC_MGID |
467 IB_SA_MCMEMBER_REC_PORT_GID |
468 IB_SA_MCMEMBER_REC_PKEY |
469 IB_SA_MCMEMBER_REC_JOIN_STATE;
470
471 if (create) {
472 comp_mask |=
d0df6d6d
RD
473 IB_SA_MCMEMBER_REC_QKEY |
474 IB_SA_MCMEMBER_REC_MTU_SELECTOR |
475 IB_SA_MCMEMBER_REC_MTU |
476 IB_SA_MCMEMBER_REC_TRAFFIC_CLASS |
477 IB_SA_MCMEMBER_REC_RATE_SELECTOR |
478 IB_SA_MCMEMBER_REC_RATE |
479 IB_SA_MCMEMBER_REC_SL |
480 IB_SA_MCMEMBER_REC_FLOW_LABEL |
481 IB_SA_MCMEMBER_REC_HOP_LIMIT;
1da177e4
LT
482
483 rec.qkey = priv->broadcast->mcmember.qkey;
d0df6d6d
RD
484 rec.mtu_selector = IB_SA_EQ;
485 rec.mtu = priv->broadcast->mcmember.mtu;
486 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
487 rec.rate_selector = IB_SA_EQ;
488 rec.rate = priv->broadcast->mcmember.rate;
1da177e4
LT
489 rec.sl = priv->broadcast->mcmember.sl;
490 rec.flow_label = priv->broadcast->mcmember.flow_label;
d0df6d6d 491 rec.hop_limit = priv->broadcast->mcmember.hop_limit;
1da177e4
LT
492 }
493
016d9fb2 494 set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
e7a623d2
RD
495 init_completion(&mcast->done);
496 set_bit(IPOIB_MCAST_JOIN_STARTED, &mcast->flags);
497
faec2f7b
SH
498 mcast->mc = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port,
499 &rec, comp_mask, GFP_KERNEL,
500 ipoib_mcast_join_complete, mcast);
501 if (IS_ERR(mcast->mc)) {
502 clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags);
a9c8ba58 503 complete(&mcast->done);
faec2f7b
SH
504 ret = PTR_ERR(mcast->mc);
505 ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret);
1da177e4
LT
506
507 mcast->backoff *= 2;
508 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
509 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
510
e7a623d2 511 mutex_lock(&mcast_mutex);
1da177e4 512 if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
0b39578b 513 queue_delayed_work(priv->wq, &priv->mcast_task,
ce5b65cc 514 mcast->backoff * HZ);
e7a623d2 515 mutex_unlock(&mcast_mutex);
faec2f7b 516 }
1da177e4
LT
517}
518
c4028958 519void ipoib_mcast_join_task(struct work_struct *work)
1da177e4 520{
c4028958
DH
521 struct ipoib_dev_priv *priv =
522 container_of(work, struct ipoib_dev_priv, mcast_task.work);
523 struct net_device *dev = priv->dev;
94232d9c 524 struct ib_port_attr port_attr;
1da177e4
LT
525
526 if (!test_bit(IPOIB_MCAST_RUN, &priv->flags))
527 return;
528
94232d9c
ES
529 if (ib_query_port(priv->ca, priv->port, &port_attr) ||
530 port_attr.state != IB_PORT_ACTIVE) {
531 ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n",
532 port_attr.state);
533 return;
534 }
68f9d83c 535 priv->local_lid = port_attr.lid;
94232d9c 536
1da177e4 537 if (ib_query_gid(priv->ca, priv->port, 0, &priv->local_gid))
24bd1e4e 538 ipoib_warn(priv, "ib_query_gid() failed\n");
1da177e4
LT
539 else
540 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
541
1da177e4 542 if (!priv->broadcast) {
20b83382
RD
543 struct ipoib_mcast *broadcast;
544
894021a7 545 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
50df48f5
YE
546 return;
547
20b83382
RD
548 broadcast = ipoib_mcast_alloc(dev, 1);
549 if (!broadcast) {
1da177e4 550 ipoib_warn(priv, "failed to allocate broadcast group\n");
95ed644f 551 mutex_lock(&mcast_mutex);
1da177e4 552 if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
0b39578b
DL
553 queue_delayed_work(priv->wq, &priv->mcast_task,
554 HZ);
95ed644f 555 mutex_unlock(&mcast_mutex);
1da177e4
LT
556 return;
557 }
558
20b83382
RD
559 spin_lock_irq(&priv->lock);
560 memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4,
1da177e4 561 sizeof (union ib_gid));
20b83382 562 priv->broadcast = broadcast;
1da177e4 563
1da177e4
LT
564 __ipoib_mcast_add(dev, priv->broadcast);
565 spin_unlock_irq(&priv->lock);
566 }
567
568 if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
e7a623d2 569 if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags))
faec2f7b 570 ipoib_mcast_join(dev, priv->broadcast, 0);
1da177e4
LT
571 return;
572 }
573
574 while (1) {
575 struct ipoib_mcast *mcast = NULL;
576
577 spin_lock_irq(&priv->lock);
578 list_for_each_entry(mcast, &priv->multicast_list, list) {
e7a623d2
RD
579 if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)
580 && !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)
581 && !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
1da177e4
LT
582 /* Found the next unjoined group */
583 break;
584 }
585 }
586 spin_unlock_irq(&priv->lock);
587
588 if (&mcast->list == &priv->multicast_list) {
589 /* All done */
590 break;
591 }
592
e7a623d2 593 ipoib_mcast_join(dev, mcast, 1);
1da177e4
LT
594 return;
595 }
596
1da177e4
LT
597 ipoib_dbg_mcast(priv, "successfully joined all multicast groups\n");
598
599 clear_bit(IPOIB_MCAST_RUN, &priv->flags);
1da177e4
LT
600}
601
602int ipoib_mcast_start_thread(struct net_device *dev)
603{
604 struct ipoib_dev_priv *priv = netdev_priv(dev);
605
606 ipoib_dbg_mcast(priv, "starting multicast thread\n");
607
95ed644f 608 mutex_lock(&mcast_mutex);
1da177e4 609 if (!test_and_set_bit(IPOIB_MCAST_RUN, &priv->flags))
0b39578b 610 queue_delayed_work(priv->wq, &priv->mcast_task, 0);
95ed644f 611 mutex_unlock(&mcast_mutex);
1da177e4
LT
612
613 return 0;
614}
615
4e0ab200 616int ipoib_mcast_stop_thread(struct net_device *dev, int flush)
1da177e4
LT
617{
618 struct ipoib_dev_priv *priv = netdev_priv(dev);
1da177e4
LT
619
620 ipoib_dbg_mcast(priv, "stopping multicast thread\n");
621
95ed644f 622 mutex_lock(&mcast_mutex);
1da177e4
LT
623 clear_bit(IPOIB_MCAST_RUN, &priv->flags);
624 cancel_delayed_work(&priv->mcast_task);
95ed644f 625 mutex_unlock(&mcast_mutex);
1da177e4 626
4e0ab200 627 if (flush)
0b39578b 628 flush_workqueue(priv->wq);
1da177e4 629
1da177e4
LT
630 return 0;
631}
632
633static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast)
634{
635 struct ipoib_dev_priv *priv = netdev_priv(dev);
1da177e4
LT
636 int ret = 0;
637
e07832b6
SH
638 if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
639 ib_sa_free_multicast(mcast->mc);
640
faec2f7b 641 if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) {
5b095d98 642 ipoib_dbg_mcast(priv, "leaving MGID %pI6\n",
fcace2fe 643 mcast->mcmember.mgid.raw);
1da177e4 644
faec2f7b 645 /* Remove ourselves from the multicast group */
9eae554c
RD
646 ret = ib_detach_mcast(priv->qp, &mcast->mcmember.mgid,
647 be16_to_cpu(mcast->mcmember.mlid));
faec2f7b 648 if (ret)
9eae554c 649 ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret);
faec2f7b 650 }
1da177e4 651
1da177e4
LT
652 return 0;
653}
654
b63b70d8 655void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb)
1da177e4
LT
656{
657 struct ipoib_dev_priv *priv = netdev_priv(dev);
658 struct ipoib_mcast *mcast;
943c246e 659 unsigned long flags;
b63b70d8 660 void *mgid = daddr + 4;
700db99d 661
943c246e 662 spin_lock_irqsave(&priv->lock, flags);
1da177e4 663
b3e2749b 664 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) ||
20b83382
RD
665 !priv->broadcast ||
666 !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) {
de903512 667 ++dev->stats.tx_dropped;
479a0796
MT
668 dev_kfree_skb_any(skb);
669 goto unlock;
670 }
671
1da177e4
LT
672 mcast = __ipoib_mcast_find(dev, mgid);
673 if (!mcast) {
674 /* Let's create a new send only group now */
5b095d98 675 ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n",
fcace2fe 676 mgid);
1da177e4
LT
677
678 mcast = ipoib_mcast_alloc(dev, 0);
679 if (!mcast) {
680 ipoib_warn(priv, "unable to allocate memory for "
681 "multicast structure\n");
de903512 682 ++dev->stats.tx_dropped;
1da177e4
LT
683 dev_kfree_skb_any(skb);
684 goto out;
685 }
686
687 set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags);
37c22a77 688 memcpy(mcast->mcmember.mgid.raw, mgid, sizeof (union ib_gid));
1da177e4
LT
689 __ipoib_mcast_add(dev, mcast);
690 list_add_tail(&mcast->list, &priv->multicast_list);
691 }
692
693 if (!mcast->ah) {
694 if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE)
695 skb_queue_tail(&mcast->pkt_queue, skb);
b36f170b 696 else {
de903512 697 ++dev->stats.tx_dropped;
1da177e4 698 dev_kfree_skb_any(skb);
b36f170b 699 }
1da177e4 700
faec2f7b 701 if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags))
1da177e4
LT
702 ipoib_dbg_mcast(priv, "no address vector, "
703 "but multicast join already started\n");
e7a623d2
RD
704 else if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags))
705 ipoib_mcast_sendonly_join(mcast);
1da177e4
LT
706
707 /*
708 * If lookup completes between here and out:, don't
709 * want to send packet twice.
710 */
711 mcast = NULL;
712 }
713
714out:
715 if (mcast && mcast->ah) {
b63b70d8
SP
716 struct ipoib_neigh *neigh;
717
718 spin_unlock_irqrestore(&priv->lock, flags);
719 neigh = ipoib_neigh_get(dev, daddr);
720 spin_lock_irqsave(&priv->lock, flags);
721 if (!neigh) {
b63b70d8 722 neigh = ipoib_neigh_alloc(daddr, dev);
b63b70d8
SP
723 if (neigh) {
724 kref_get(&mcast->ah->ref);
725 neigh->ah = mcast->ah;
726 list_add_tail(&neigh->list, &mcast->neigh_list);
1da177e4
LT
727 }
728 }
721d67cd 729 spin_unlock_irqrestore(&priv->lock, flags);
1da177e4 730 ipoib_send(dev, skb, mcast->ah, IB_MULTICAST_QPN);
b63b70d8
SP
731 if (neigh)
732 ipoib_neigh_put(neigh);
721d67cd 733 return;
1da177e4
LT
734 }
735
479a0796 736unlock:
943c246e 737 spin_unlock_irqrestore(&priv->lock, flags);
1da177e4
LT
738}
739
740void ipoib_mcast_dev_flush(struct net_device *dev)
741{
742 struct ipoib_dev_priv *priv = netdev_priv(dev);
743 LIST_HEAD(remove_list);
988bd503 744 struct ipoib_mcast *mcast, *tmcast;
1da177e4
LT
745 unsigned long flags;
746
747 ipoib_dbg_mcast(priv, "flushing multicast list\n");
748
749 spin_lock_irqsave(&priv->lock, flags);
1da177e4 750
988bd503
EC
751 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
752 list_del(&mcast->list);
753 rb_erase(&mcast->rb_node, &priv->multicast_tree);
754 list_add_tail(&mcast->list, &remove_list);
1da177e4
LT
755 }
756
757 if (priv->broadcast) {
3cd96564 758 rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree);
988bd503
EC
759 list_add_tail(&priv->broadcast->list, &remove_list);
760 priv->broadcast = NULL;
1da177e4
LT
761 }
762
763 spin_unlock_irqrestore(&priv->lock, flags);
764
962121b4 765 /* seperate between the wait to the leave*/
a9c8ba58 766 list_for_each_entry_safe(mcast, tmcast, &remove_list, list)
e7a623d2 767 if (test_bit(IPOIB_MCAST_JOIN_STARTED, &mcast->flags))
a9c8ba58
ES
768 wait_for_completion(&mcast->done);
769
1da177e4
LT
770 list_for_each_entry_safe(mcast, tmcast, &remove_list, list) {
771 ipoib_mcast_leave(dev, mcast);
772 ipoib_mcast_free(mcast);
773 }
774}
775
3e4aa12f 776static int ipoib_mcast_addr_is_valid(const u8 *addr, const u8 *broadcast)
5e47596b 777{
5e47596b
JG
778 /* reserved QPN, prefix, scope */
779 if (memcmp(addr, broadcast, 6))
780 return 0;
781 /* signature lower, pkey */
782 if (memcmp(addr + 7, broadcast + 7, 3))
783 return 0;
784 return 1;
785}
786
c4028958 787void ipoib_mcast_restart_task(struct work_struct *work)
1da177e4 788{
c4028958
DH
789 struct ipoib_dev_priv *priv =
790 container_of(work, struct ipoib_dev_priv, restart_task);
791 struct net_device *dev = priv->dev;
22bedad3 792 struct netdev_hw_addr *ha;
1da177e4
LT
793 struct ipoib_mcast *mcast, *tmcast;
794 LIST_HEAD(remove_list);
795 unsigned long flags;
335a64a5 796 struct ib_sa_mcmember_rec rec;
1da177e4
LT
797
798 ipoib_dbg_mcast(priv, "restarting multicast task\n");
799
4e0ab200
RD
800 ipoib_mcast_stop_thread(dev, 0);
801
932ff279 802 local_irq_save(flags);
e308a5d8 803 netif_addr_lock(dev);
78bfe0b5 804 spin_lock(&priv->lock);
1da177e4
LT
805
806 /*
807 * Unfortunately, the networking core only gives us a list of all of
808 * the multicast hardware addresses. We need to figure out which ones
809 * are new and which ones have been removed
810 */
811
812 /* Clear out the found flag */
813 list_for_each_entry(mcast, &priv->multicast_list, list)
814 clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
815
816 /* Mark all of the entries that are found or don't exist */
22bedad3 817 netdev_for_each_mc_addr(ha, dev) {
1da177e4
LT
818 union ib_gid mgid;
819
22bedad3 820 if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast))
5e47596b
JG
821 continue;
822
22bedad3 823 memcpy(mgid.raw, ha->addr + 4, sizeof mgid);
1da177e4 824
1da177e4
LT
825 mcast = __ipoib_mcast_find(dev, &mgid);
826 if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
827 struct ipoib_mcast *nmcast;
828
335a64a5
OG
829 /* ignore group which is directly joined by userspace */
830 if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) &&
831 !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) {
5b095d98 832 ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n",
fcace2fe 833 mgid.raw);
335a64a5
OG
834 continue;
835 }
836
1da177e4 837 /* Not found or send-only group, let's add a new entry */
5b095d98 838 ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n",
fcace2fe 839 mgid.raw);
1da177e4
LT
840
841 nmcast = ipoib_mcast_alloc(dev, 0);
842 if (!nmcast) {
843 ipoib_warn(priv, "unable to allocate memory for multicast structure\n");
844 continue;
845 }
846
847 set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags);
848
849 nmcast->mcmember.mgid = mgid;
850
851 if (mcast) {
852 /* Destroy the send only entry */
179e0917 853 list_move_tail(&mcast->list, &remove_list);
1da177e4
LT
854
855 rb_replace_node(&mcast->rb_node,
856 &nmcast->rb_node,
857 &priv->multicast_tree);
858 } else
859 __ipoib_mcast_add(dev, nmcast);
860
861 list_add_tail(&nmcast->list, &priv->multicast_list);
862 }
863
864 if (mcast)
865 set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags);
866 }
867
868 /* Remove all of the entries don't exist anymore */
869 list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) {
870 if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) &&
871 !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) {
5b095d98 872 ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n",
fcace2fe 873 mcast->mcmember.mgid.raw);
1da177e4
LT
874
875 rb_erase(&mcast->rb_node, &priv->multicast_tree);
876
877 /* Move to the remove list */
179e0917 878 list_move_tail(&mcast->list, &remove_list);
1da177e4
LT
879 }
880 }
78bfe0b5
MT
881
882 spin_unlock(&priv->lock);
e308a5d8 883 netif_addr_unlock(dev);
932ff279 884 local_irq_restore(flags);
1da177e4 885
962121b4 886 /* We have to cancel outside of the spinlock */
1da177e4
LT
887 list_for_each_entry_safe(mcast, tmcast, &remove_list, list) {
888 ipoib_mcast_leave(mcast->dev, mcast);
889 ipoib_mcast_free(mcast);
890 }
962121b4 891
894021a7 892 if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags))
962121b4 893 ipoib_mcast_start_thread(dev);
1da177e4
LT
894}
895
8ae5a8a2
RD
896#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
897
1da177e4
LT
898struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev)
899{
900 struct ipoib_mcast_iter *iter;
901
902 iter = kmalloc(sizeof *iter, GFP_KERNEL);
903 if (!iter)
904 return NULL;
905
906 iter->dev = dev;
1732b0ef 907 memset(iter->mgid.raw, 0, 16);
1da177e4
LT
908
909 if (ipoib_mcast_iter_next(iter)) {
1732b0ef 910 kfree(iter);
1da177e4
LT
911 return NULL;
912 }
913
914 return iter;
915}
916
1da177e4
LT
917int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter)
918{
919 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
920 struct rb_node *n;
921 struct ipoib_mcast *mcast;
922 int ret = 1;
923
924 spin_lock_irq(&priv->lock);
925
926 n = rb_first(&priv->multicast_tree);
927
928 while (n) {
929 mcast = rb_entry(n, struct ipoib_mcast, rb_node);
930
931 if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw,
932 sizeof (union ib_gid)) < 0) {
933 iter->mgid = mcast->mcmember.mgid;
934 iter->created = mcast->created;
935 iter->queuelen = skb_queue_len(&mcast->pkt_queue);
936 iter->complete = !!mcast->ah;
937 iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY));
938
939 ret = 0;
940
941 break;
942 }
943
944 n = rb_next(n);
945 }
946
947 spin_unlock_irq(&priv->lock);
948
949 return ret;
950}
951
952void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter,
953 union ib_gid *mgid,
954 unsigned long *created,
955 unsigned int *queuelen,
956 unsigned int *complete,
957 unsigned int *send_only)
958{
959 *mgid = iter->mgid;
960 *created = iter->created;
961 *queuelen = iter->queuelen;
962 *complete = iter->complete;
963 *send_only = iter->send_only;
964}
8ae5a8a2
RD
965
966#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */