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