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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct 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 Shitrit | 3b56113 | 2016-05-25 22:02:07 +0300 | [diff] [blame] | 67 | /* join state that allows creating mcg with sendonly member request */ |
| 68 | #define SENDONLY_FULLMEMBER_JOIN 8 |
| 69 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 70 | /* |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 71 | * This should be called with the priv->lock held |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 72 | */ |
| 73 | static void __ipoib_mcast_schedule_join_thread(struct ipoib_dev_priv *priv, |
| 74 | struct ipoib_mcast *mcast, |
| 75 | bool delay) |
| 76 | { |
Erez Shitrit | 0e5544d | 2015-04-02 13:39:04 +0300 | [diff] [blame] | 77 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 78 | 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 Lameter | 5a0e81f | 2015-12-21 08:42:53 -0600 | [diff] [blame] | 112 | static void ipoib_mcast_free(struct ipoib_mcast *mcast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | { |
| 114 | struct net_device *dev = mcast->dev; |
Michael S. Tsirkin | b36f170b6 | 2006-01-17 12:19:40 -0800 | [diff] [blame] | 115 | int tx_dropped = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 117 | ipoib_dbg_mcast(ipoib_priv(dev), "deleting multicast group %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 118 | mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 120 | /* remove all neigh connected to this mcast */ |
| 121 | ipoib_del_neighs_by_gid(dev, mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | if (mcast->ah) |
| 124 | ipoib_put_ah(mcast->ah); |
| 125 | |
Michael S. Tsirkin | b36f170b6 | 2006-01-17 12:19:40 -0800 | [diff] [blame] | 126 | while (!skb_queue_empty(&mcast->pkt_queue)) { |
| 127 | ++tx_dropped; |
Roland Dreier | 8c608a3 | 2005-11-07 10:49:38 -0800 | [diff] [blame] | 128 | dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue)); |
Michael S. Tsirkin | b36f170b6 | 2006-01-17 12:19:40 -0800 | [diff] [blame] | 129 | } |
| 130 | |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 131 | netif_tx_lock_bh(dev); |
Roland Dreier | de90351 | 2007-09-28 15:33:51 -0700 | [diff] [blame] | 132 | dev->stats.tx_dropped += tx_dropped; |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 133 | netif_tx_unlock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | kfree(mcast); |
| 136 | } |
| 137 | |
| 138 | static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev, |
| 139 | int can_sleep) |
| 140 | { |
| 141 | struct ipoib_mcast *mcast; |
| 142 | |
Roland Dreier | de6eb66 | 2005-11-02 07:23:14 -0800 | [diff] [blame] | 143 | mcast = kzalloc(sizeof *mcast, can_sleep ? GFP_KERNEL : GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | if (!mcast) |
| 145 | return NULL; |
| 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | mcast->dev = dev; |
| 148 | mcast->created = jiffies; |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 149 | mcast->delay_until = jiffies; |
Hal Rosenstock | ce5b65c | 2005-09-18 13:47:53 -0700 | [diff] [blame] | 150 | mcast->backoff = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
| 152 | INIT_LIST_HEAD(&mcast->list); |
| 153 | INIT_LIST_HEAD(&mcast->neigh_list); |
| 154 | skb_queue_head_init(&mcast->pkt_queue); |
| 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | return mcast; |
| 157 | } |
| 158 | |
Christoph Lameter | 432c55f | 2015-12-21 08:42:54 -0600 | [diff] [blame] | 159 | 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] | 160 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 161 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | struct rb_node *n = priv->multicast_tree.rb_node; |
| 163 | |
| 164 | while (n) { |
| 165 | struct ipoib_mcast *mcast; |
| 166 | int ret; |
| 167 | |
| 168 | mcast = rb_entry(n, struct ipoib_mcast, rb_node); |
| 169 | |
Jack Morgenstein | 37c22a7 | 2006-05-29 19:14:05 +0300 | [diff] [blame] | 170 | ret = memcmp(mgid, mcast->mcmember.mgid.raw, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | 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 | |
| 183 | static int __ipoib_mcast_add(struct net_device *dev, struct ipoib_mcast *mcast) |
| 184 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 185 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | struct rb_node **n = &priv->multicast_tree.rb_node, *pn = NULL; |
| 187 | |
| 188 | while (*n) { |
| 189 | struct ipoib_mcast *tmcast; |
| 190 | int ret; |
| 191 | |
| 192 | pn = *n; |
| 193 | tmcast = rb_entry(pn, struct ipoib_mcast, rb_node); |
| 194 | |
| 195 | ret = memcmp(mcast->mcmember.mgid.raw, tmcast->mcmember.mgid.raw, |
| 196 | sizeof (union ib_gid)); |
| 197 | if (ret < 0) |
| 198 | n = &pn->rb_left; |
| 199 | else if (ret > 0) |
| 200 | n = &pn->rb_right; |
| 201 | else |
| 202 | return -EEXIST; |
| 203 | } |
| 204 | |
| 205 | rb_link_node(&mcast->rb_node, pn, n); |
| 206 | rb_insert_color(&mcast->rb_node, &priv->multicast_tree); |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | static 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 Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 215 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 216 | struct rdma_netdev *rn = netdev_priv(dev); |
Eli Cohen | 7343b23 | 2006-02-27 20:47:43 -0800 | [diff] [blame] | 217 | struct ipoib_ah *ah; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | int ret; |
Eli Cohen | d0de136 | 2008-07-14 23:48:50 -0700 | [diff] [blame] | 219 | int set_qkey = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
| 221 | mcast->mcmember = *mcmember; |
| 222 | |
Patrick McHardy | bea1e22 | 2012-08-30 07:01:30 +0000 | [diff] [blame] | 223 | /* Set the multicast MTU and cached Q_Key before we attach if it's |
| 224 | * the broadcast group. |
| 225 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | if (!memcmp(mcast->mcmember.mgid.raw, priv->dev->broadcast + 4, |
| 227 | sizeof (union ib_gid))) { |
Jack Morgenstein | e1d50dc | 2008-05-20 15:41:09 -0700 | [diff] [blame] | 228 | spin_lock_irq(&priv->lock); |
| 229 | if (!priv->broadcast) { |
| 230 | spin_unlock_irq(&priv->lock); |
| 231 | return -EAGAIN; |
| 232 | } |
Erez Shitrit | 3fd0605 | 2015-04-02 13:39:01 +0300 | [diff] [blame] | 233 | /*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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey); |
Jack Morgenstein | e1d50dc | 2008-05-20 15:41:09 -0700 | [diff] [blame] | 251 | spin_unlock_irq(&priv->lock); |
Christoph Hellwig | e622f2f | 2015-10-08 09:16:33 +0100 | [diff] [blame] | 252 | priv->tx_wr.remote_qkey = priv->qkey; |
Eli Cohen | d0de136 | 2008-07-14 23:48:50 -0700 | [diff] [blame] | 253 | set_qkey = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) { |
| 257 | if (test_and_set_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) { |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 258 | ipoib_warn(priv, "multicast group %pI6 already attached\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 259 | mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 264 | ret = rn->attach_mcast(dev, priv->ca, &mcast->mcmember.mgid, |
| 265 | be16_to_cpu(mcast->mcmember.mlid), |
| 266 | set_qkey, priv->qkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | if (ret < 0) { |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 268 | ipoib_warn(priv, "couldn't attach QP to multicast group %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 269 | mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags); |
| 272 | return ret; |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | { |
Dasaratharaman Chandramouli | 9089885 | 2017-04-29 14:41:18 -0400 | [diff] [blame] | 277 | struct rdma_ah_attr av = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Morgenstein | bf6a9e3 | 2006-04-10 09:43:47 -0700 | [diff] [blame] | 282 | .static_rate = mcast->mcmember.rate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | .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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | av.grh.dgid = mcast->mcmember.mgid; |
| 291 | |
Eli Cohen | 7343b23 | 2006-02-27 20:47:43 -0800 | [diff] [blame] | 292 | ah = ipoib_create_ah(dev, priv->pd, &av); |
Mike Marciniszyn | 3874397 | 2011-11-21 08:43:54 -0500 | [diff] [blame] | 293 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | } |
Dasaratharaman Chandramouli | cfd5193 | 2017-04-29 14:41:14 -0400 | [diff] [blame] | 299 | spin_lock_irq(&priv->lock); |
| 300 | mcast->ah = ah; |
| 301 | spin_unlock_irq(&priv->lock); |
| 302 | |
| 303 | ipoib_dbg_mcast(priv, "MGID %pI6 AV %p, LID 0x%04x, SL %d\n", |
| 304 | mcast->mcmember.mgid.raw, |
| 305 | mcast->ah->ah, |
| 306 | be16_to_cpu(mcast->mcmember.mlid), |
| 307 | mcast->mcmember.sl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | /* actually send any queued packets */ |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 311 | netif_tx_lock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | while (!skb_queue_empty(&mcast->pkt_queue)) { |
| 313 | struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue); |
David S. Miller | 69cce1d | 2011-07-17 23:09:49 -0700 | [diff] [blame] | 314 | |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 315 | netif_tx_unlock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | skb->dev = dev; |
Roland Dreier | 936d7de | 2012-02-07 14:51:21 +0000 | [diff] [blame] | 318 | |
Feras Daoud | d32b9a8 | 2016-12-28 14:47:25 +0200 | [diff] [blame] | 319 | ret = dev_queue_xmit(skb); |
| 320 | if (ret) |
| 321 | ipoib_warn(priv, "%s:dev_queue_xmit failed to re-queue packet, ret:%d\n", |
| 322 | __func__, ret); |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 323 | netif_tx_lock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | } |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 325 | netif_tx_unlock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
Yossi Etigin | e8224e4 | 2008-09-16 11:57:45 -0700 | [diff] [blame] | 330 | void ipoib_mcast_carrier_on_task(struct work_struct *work) |
| 331 | { |
| 332 | struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv, |
| 333 | carrier_on_task); |
Moni Shoua | 5ee95120 | 2009-09-24 12:01:05 -0700 | [diff] [blame] | 334 | struct ib_port_attr attr; |
Yossi Etigin | e8224e4 | 2008-09-16 11:57:45 -0700 | [diff] [blame] | 335 | |
Moni Shoua | 5ee95120 | 2009-09-24 12:01:05 -0700 | [diff] [blame] | 336 | if (ib_query_port(priv->ca, priv->port, &attr) || |
| 337 | attr.state != IB_PORT_ACTIVE) { |
| 338 | ipoib_dbg(priv, "Keeping carrier off until IB port is active\n"); |
| 339 | return; |
| 340 | } |
Erez Shitrit | 3b56113 | 2016-05-25 22:02:07 +0300 | [diff] [blame] | 341 | /* |
| 342 | * Check if can send sendonly MCG's with sendonly-fullmember join state. |
| 343 | * It done here after the successfully join to the broadcast group, |
| 344 | * because the broadcast group must always be joined first and is always |
| 345 | * re-joined if the SM changes substantially. |
| 346 | */ |
Dasaratharaman Chandramouli | ee1c60b | 2017-03-20 19:38:08 -0400 | [diff] [blame] | 347 | priv->sm_fullmember_sendonly_support = |
| 348 | ib_sa_sendonly_fullmem_support(&ipoib_sa_client, |
| 349 | priv->ca, priv->port); |
Doug Ledford | 894021a | 2015-02-21 19:27:02 -0500 | [diff] [blame] | 350 | /* |
| 351 | * Take rtnl_lock to avoid racing with ipoib_stop() and |
| 352 | * turning the carrier back on while a device is being |
| 353 | * removed. However, ipoib_stop() will attempt to flush |
| 354 | * the workqueue while holding the rtnl lock, so loop |
| 355 | * on trylock until either we get the lock or we see |
| 356 | * FLAG_OPER_UP go away as that signals that we are bailing |
| 357 | * and can safely ignore the carrier on work. |
| 358 | */ |
| 359 | while (!rtnl_trylock()) { |
| 360 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
| 361 | return; |
| 362 | else |
| 363 | msleep(20); |
| 364 | } |
Doug Ledford | c84ca6d | 2015-02-21 19:27:01 -0500 | [diff] [blame] | 365 | if (!ipoib_cm_admin_enabled(priv->dev)) |
| 366 | dev_set_mtu(priv->dev, min(priv->mcast_mtu, priv->admin_mtu)); |
Yossi Etigin | e8224e4 | 2008-09-16 11:57:45 -0700 | [diff] [blame] | 367 | netif_carrier_on(priv->dev); |
| 368 | rtnl_unlock(); |
| 369 | } |
| 370 | |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 371 | static int ipoib_mcast_join_complete(int status, |
| 372 | struct ib_sa_multicast *multicast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | { |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 374 | struct ipoib_mcast *mcast = multicast->context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | struct net_device *dev = mcast->dev; |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 376 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 378 | ipoib_dbg_mcast(priv, "%sjoin completion for %pI6 (status %d)\n", |
| 379 | test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? |
| 380 | "sendonly " : "", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 381 | mcast->mcmember.mgid.raw, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 383 | /* We trap for port events ourselves. */ |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 384 | if (status == -ENETRESET) { |
| 385 | status = 0; |
Erez Shitrit | a9c8ba5 | 2013-10-16 17:37:51 +0300 | [diff] [blame] | 386 | goto out; |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 387 | } |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 388 | |
| 389 | if (!status) |
| 390 | status = ipoib_mcast_join_finish(mcast, &multicast->rec); |
| 391 | |
| 392 | if (!status) { |
Hal Rosenstock | ce5b65c | 2005-09-18 13:47:53 -0700 | [diff] [blame] | 393 | mcast->backoff = 1; |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 394 | mcast->delay_until = jiffies; |
Shirley Ma | 55c9add | 2007-03-08 14:59:30 -0800 | [diff] [blame] | 395 | |
Yossi Etigin | e8224e4 | 2008-09-16 11:57:45 -0700 | [diff] [blame] | 396 | /* |
Doug Ledford | 0b39578 | 2015-02-21 19:27:03 -0500 | [diff] [blame] | 397 | * Defer carrier on work to priv->wq to avoid a |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 398 | * deadlock on rtnl_lock here. Requeue our multicast |
| 399 | * work too, which will end up happening right after |
| 400 | * our carrier on task work and will allow us to |
| 401 | * send out all of the non-broadcast joins |
Yossi Etigin | e8224e4 | 2008-09-16 11:57:45 -0700 | [diff] [blame] | 402 | */ |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 403 | if (mcast == priv->broadcast) { |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 404 | spin_lock_irq(&priv->lock); |
Doug Ledford | 0b39578 | 2015-02-21 19:27:03 -0500 | [diff] [blame] | 405 | queue_work(priv->wq, &priv->carrier_on_task); |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 406 | __ipoib_mcast_schedule_join_thread(priv, NULL, 0); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 407 | goto out_locked; |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 408 | } |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 409 | } else { |
Jason Gunthorpe | d1178cb | 2015-08-21 17:34:13 -0600 | [diff] [blame] | 410 | bool silent_fail = |
| 411 | test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) && |
| 412 | status == -EINVAL; |
| 413 | |
| 414 | if (mcast->logcount < 20) { |
| 415 | if (status == -ETIMEDOUT || status == -EAGAIN || |
| 416 | silent_fail) { |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 417 | ipoib_dbg_mcast(priv, "%smulticast join failed for %pI6, status %d\n", |
| 418 | test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "", |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 419 | mcast->mcmember.mgid.raw, status); |
| 420 | } else { |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 421 | ipoib_warn(priv, "%smulticast join failed for %pI6, status %d\n", |
| 422 | test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) ? "sendonly " : "", |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 423 | mcast->mcmember.mgid.raw, status); |
| 424 | } |
Jason Gunthorpe | d1178cb | 2015-08-21 17:34:13 -0600 | [diff] [blame] | 425 | |
| 426 | if (!silent_fail) |
| 427 | mcast->logcount++; |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 428 | } |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 429 | |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 430 | if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) && |
| 431 | mcast->backoff >= 2) { |
| 432 | /* |
| 433 | * We only retry sendonly joins once before we drop |
| 434 | * the packet and quit trying to deal with the |
| 435 | * group. However, we leave the group in the |
| 436 | * mcast list as an unjoined group. If we want to |
| 437 | * try joining again, we simply queue up a packet |
| 438 | * and restart the join thread. The empty queue |
| 439 | * is why the join thread ignores this group. |
| 440 | */ |
| 441 | mcast->backoff = 1; |
| 442 | netif_tx_lock_bh(dev); |
| 443 | while (!skb_queue_empty(&mcast->pkt_queue)) { |
| 444 | ++dev->stats.tx_dropped; |
| 445 | dev_kfree_skb_any(skb_dequeue(&mcast->pkt_queue)); |
| 446 | } |
| 447 | netif_tx_unlock_bh(dev); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 448 | } else { |
| 449 | spin_lock_irq(&priv->lock); |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 450 | /* Requeue this join task with a backoff delay */ |
| 451 | __ipoib_mcast_schedule_join_thread(priv, mcast, 1); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 452 | goto out_locked; |
| 453 | } |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 454 | } |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 455 | out: |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 456 | spin_lock_irq(&priv->lock); |
| 457 | out_locked: |
| 458 | /* |
| 459 | * Make sure to set mcast->mc before we clear the busy flag to avoid |
| 460 | * racing with code that checks for BUSY before checking mcast->mc |
| 461 | */ |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 462 | if (status) |
| 463 | mcast->mc = NULL; |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 464 | else |
| 465 | mcast->mc = multicast; |
| 466 | clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); |
| 467 | spin_unlock_irq(&priv->lock); |
Roland Dreier | e7a623d | 2015-01-30 15:39:20 -0800 | [diff] [blame] | 468 | complete(&mcast->done); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 469 | |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 470 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
| 472 | |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 473 | /* |
| 474 | * Caller must hold 'priv->lock' |
| 475 | */ |
| 476 | static int ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 478 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 479 | struct ib_sa_multicast *multicast; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | struct ib_sa_mcmember_rec rec = { |
| 481 | .join_state = 1 |
| 482 | }; |
| 483 | ib_sa_comp_mask comp_mask; |
| 484 | int ret = 0; |
| 485 | |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 486 | if (!priv->broadcast || |
| 487 | !test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
| 488 | return -EINVAL; |
| 489 | |
Feras Daoud | 3e31a49 | 2017-03-19 11:18:55 +0200 | [diff] [blame] | 490 | init_completion(&mcast->done); |
| 491 | set_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); |
| 492 | |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 493 | ipoib_dbg_mcast(priv, "joining MGID %pI6\n", mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | rec.mgid = mcast->mcmember.mgid; |
| 496 | rec.port_gid = priv->local_gid; |
Sean Hefty | 97f52eb | 2005-08-13 21:05:57 -0700 | [diff] [blame] | 497 | rec.pkey = cpu_to_be16(priv->pkey); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | comp_mask = |
| 500 | IB_SA_MCMEMBER_REC_MGID | |
| 501 | IB_SA_MCMEMBER_REC_PORT_GID | |
| 502 | IB_SA_MCMEMBER_REC_PKEY | |
| 503 | IB_SA_MCMEMBER_REC_JOIN_STATE; |
| 504 | |
Doug Ledford | c3acdc0 | 2015-09-03 17:05:58 -0400 | [diff] [blame] | 505 | if (mcast != priv->broadcast) { |
| 506 | /* |
| 507 | * RFC 4391: |
| 508 | * The MGID MUST use the same P_Key, Q_Key, SL, MTU, |
| 509 | * and HopLimit as those used in the broadcast-GID. The rest |
| 510 | * of attributes SHOULD follow the values used in the |
| 511 | * broadcast-GID as well. |
| 512 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | comp_mask |= |
Roland Dreier | d0df6d6 | 2006-09-22 15:22:56 -0700 | [diff] [blame] | 514 | IB_SA_MCMEMBER_REC_QKEY | |
| 515 | IB_SA_MCMEMBER_REC_MTU_SELECTOR | |
| 516 | IB_SA_MCMEMBER_REC_MTU | |
| 517 | IB_SA_MCMEMBER_REC_TRAFFIC_CLASS | |
| 518 | IB_SA_MCMEMBER_REC_RATE_SELECTOR | |
| 519 | IB_SA_MCMEMBER_REC_RATE | |
| 520 | IB_SA_MCMEMBER_REC_SL | |
| 521 | IB_SA_MCMEMBER_REC_FLOW_LABEL | |
| 522 | IB_SA_MCMEMBER_REC_HOP_LIMIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | rec.qkey = priv->broadcast->mcmember.qkey; |
Roland Dreier | d0df6d6 | 2006-09-22 15:22:56 -0700 | [diff] [blame] | 525 | rec.mtu_selector = IB_SA_EQ; |
| 526 | rec.mtu = priv->broadcast->mcmember.mtu; |
| 527 | rec.traffic_class = priv->broadcast->mcmember.traffic_class; |
| 528 | rec.rate_selector = IB_SA_EQ; |
| 529 | rec.rate = priv->broadcast->mcmember.rate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | rec.sl = priv->broadcast->mcmember.sl; |
| 531 | rec.flow_label = priv->broadcast->mcmember.flow_label; |
Roland Dreier | d0df6d6 | 2006-09-22 15:22:56 -0700 | [diff] [blame] | 532 | rec.hop_limit = priv->broadcast->mcmember.hop_limit; |
Doug Ledford | c3acdc0 | 2015-09-03 17:05:58 -0400 | [diff] [blame] | 533 | |
| 534 | /* |
Erez Shitrit | 3b56113 | 2016-05-25 22:02:07 +0300 | [diff] [blame] | 535 | * Send-only IB Multicast joins work at the core IB layer but |
| 536 | * require specific SM support. |
| 537 | * We can use such joins here only if the current SM supports that feature. |
| 538 | * However, if not, we emulate an Ethernet multicast send, |
| 539 | * which does not require a multicast subscription and will |
| 540 | * still send properly. The most appropriate thing to |
Doug Ledford | c3852ab | 2015-09-25 14:35:01 -0400 | [diff] [blame] | 541 | * do is to create the group if it doesn't exist as that |
| 542 | * most closely emulates the behavior, from a user space |
Erez Shitrit | 3b56113 | 2016-05-25 22:02:07 +0300 | [diff] [blame] | 543 | * application perspective, of Ethernet multicast operation. |
Doug Ledford | c3acdc0 | 2015-09-03 17:05:58 -0400 | [diff] [blame] | 544 | */ |
Erez Shitrit | 3b56113 | 2016-05-25 22:02:07 +0300 | [diff] [blame] | 545 | if (test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) && |
| 546 | priv->sm_fullmember_sendonly_support) |
| 547 | /* SM supports sendonly-fullmember, otherwise fallback to full-member */ |
| 548 | rec.join_state = SENDONLY_FULLMEMBER_JOIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 550 | spin_unlock_irq(&priv->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 552 | multicast = ib_sa_join_multicast(&ipoib_sa_client, priv->ca, priv->port, |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 553 | &rec, comp_mask, GFP_KERNEL, |
| 554 | ipoib_mcast_join_complete, mcast); |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 555 | spin_lock_irq(&priv->lock); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 556 | if (IS_ERR(multicast)) { |
| 557 | ret = PTR_ERR(multicast); |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 558 | ipoib_warn(priv, "ib_sa_join_multicast failed, status %d\n", ret); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 559 | /* Requeue this join task with a backoff delay */ |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 560 | __ipoib_mcast_schedule_join_thread(priv, mcast, 1); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 561 | clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags); |
| 562 | spin_unlock_irq(&priv->lock); |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 563 | complete(&mcast->done); |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 564 | spin_lock_irq(&priv->lock); |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 565 | } |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 566 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | } |
| 568 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 569 | void ipoib_mcast_join_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 571 | struct ipoib_dev_priv *priv = |
| 572 | container_of(work, struct ipoib_dev_priv, mcast_task.work); |
| 573 | struct net_device *dev = priv->dev; |
Erez Shitrit | 94232d9 | 2013-10-16 17:37:53 +0300 | [diff] [blame] | 574 | struct ib_port_attr port_attr; |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 575 | unsigned long delay_until = 0; |
| 576 | struct ipoib_mcast *mcast = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Erez Shitrit | 0e5544d | 2015-04-02 13:39:04 +0300 | [diff] [blame] | 578 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | return; |
| 580 | |
Bart Van Assche | 11b642b | 2016-11-21 10:21:41 -0800 | [diff] [blame] | 581 | if (ib_query_port(priv->ca, priv->port, &port_attr)) { |
| 582 | ipoib_dbg(priv, "ib_query_port() failed\n"); |
| 583 | return; |
| 584 | } |
| 585 | if (port_attr.state != IB_PORT_ACTIVE) { |
Erez Shitrit | 94232d9 | 2013-10-16 17:37:53 +0300 | [diff] [blame] | 586 | ipoib_dbg(priv, "port state is not ACTIVE (state = %d) suspending join task\n", |
| 587 | port_attr.state); |
| 588 | return; |
| 589 | } |
Alex Estrin | 68f9d83 | 2014-08-20 11:15:08 -0400 | [diff] [blame] | 590 | priv->local_lid = port_attr.lid; |
Mark Bloch | 9b29953 | 2016-06-04 15:15:22 +0300 | [diff] [blame] | 591 | netif_addr_lock_bh(dev); |
Erez Shitrit | 94232d9 | 2013-10-16 17:37:53 +0300 | [diff] [blame] | 592 | |
Mark Bloch | 492a7e6 | 2016-05-18 16:42:43 +0300 | [diff] [blame] | 593 | if (!test_bit(IPOIB_FLAG_DEV_ADDR_SET, &priv->flags)) { |
Mark Bloch | 9b29953 | 2016-06-04 15:15:22 +0300 | [diff] [blame] | 594 | netif_addr_unlock_bh(dev); |
Mark Bloch | 492a7e6 | 2016-05-18 16:42:43 +0300 | [diff] [blame] | 595 | return; |
| 596 | } |
Mark Bloch | 9b29953 | 2016-06-04 15:15:22 +0300 | [diff] [blame] | 597 | netif_addr_unlock_bh(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 599 | spin_lock_irq(&priv->lock); |
| 600 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
| 601 | goto out; |
| 602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | if (!priv->broadcast) { |
Roland Dreier | 20b8338 | 2006-02-11 12:22:12 -0800 | [diff] [blame] | 604 | struct ipoib_mcast *broadcast; |
| 605 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 606 | broadcast = ipoib_mcast_alloc(dev, 0); |
Roland Dreier | 20b8338 | 2006-02-11 12:22:12 -0800 | [diff] [blame] | 607 | if (!broadcast) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | ipoib_warn(priv, "failed to allocate broadcast group\n"); |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 609 | /* |
| 610 | * Restart us after a 1 second delay to retry |
| 611 | * creating our broadcast group and attaching to |
| 612 | * it. Until this succeeds, this ipoib dev is |
| 613 | * completely stalled (multicast wise). |
| 614 | */ |
| 615 | __ipoib_mcast_schedule_join_thread(priv, NULL, 1); |
| 616 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | } |
| 618 | |
Roland Dreier | 20b8338 | 2006-02-11 12:22:12 -0800 | [diff] [blame] | 619 | memcpy(broadcast->mcmember.mgid.raw, priv->dev->broadcast + 4, |
| 620 | sizeof (union ib_gid)); |
| 621 | priv->broadcast = broadcast; |
| 622 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | __ipoib_mcast_add(dev, priv->broadcast); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | } |
| 625 | |
| 626 | if (!test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) { |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 627 | if (IS_ERR_OR_NULL(priv->broadcast->mc) && |
| 628 | !test_bit(IPOIB_MCAST_FLAG_BUSY, &priv->broadcast->flags)) { |
| 629 | mcast = priv->broadcast; |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 630 | if (mcast->backoff > 1 && |
| 631 | time_before(jiffies, mcast->delay_until)) { |
| 632 | delay_until = mcast->delay_until; |
| 633 | mcast = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | } |
| 635 | } |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 636 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | } |
| 638 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 639 | /* |
| 640 | * We'll never get here until the broadcast group is both allocated |
| 641 | * and attached |
| 642 | */ |
| 643 | list_for_each_entry(mcast, &priv->multicast_list, list) { |
| 644 | if (IS_ERR_OR_NULL(mcast->mc) && |
| 645 | !test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags) && |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 646 | (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags) || |
| 647 | !skb_queue_empty(&mcast->pkt_queue))) { |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 648 | if (mcast->backoff == 1 || |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 649 | time_after_eq(jiffies, mcast->delay_until)) { |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 650 | /* Found the next unjoined group */ |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 651 | if (ipoib_mcast_join(dev, mcast)) { |
| 652 | spin_unlock_irq(&priv->lock); |
| 653 | return; |
| 654 | } |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 655 | } else if (!delay_until || |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 656 | time_before(mcast->delay_until, delay_until)) |
| 657 | delay_until = mcast->delay_until; |
| 658 | } |
| 659 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 661 | mcast = NULL; |
| 662 | ipoib_dbg_mcast(priv, "successfully started all multicast joins\n"); |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 663 | |
| 664 | out: |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 665 | if (delay_until) { |
| 666 | cancel_delayed_work(&priv->mcast_task); |
| 667 | queue_delayed_work(priv->wq, &priv->mcast_task, |
| 668 | delay_until - jiffies); |
| 669 | } |
Feras Daoud | 3e31a49 | 2017-03-19 11:18:55 +0200 | [diff] [blame] | 670 | if (mcast) |
Alex Estrin | 08bc327 | 2016-02-11 16:30:51 -0500 | [diff] [blame] | 671 | ipoib_mcast_join(dev, mcast); |
Feras Daoud | 3e31a49 | 2017-03-19 11:18:55 +0200 | [diff] [blame] | 672 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 673 | spin_unlock_irq(&priv->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | } |
| 675 | |
Zhu Yanjun | 5c37077 | 2017-01-18 23:16:06 -0500 | [diff] [blame] | 676 | void ipoib_mcast_start_thread(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 678 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 679 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
| 681 | ipoib_dbg_mcast(priv, "starting multicast thread\n"); |
| 682 | |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 683 | spin_lock_irqsave(&priv->lock, flags); |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 684 | __ipoib_mcast_schedule_join_thread(priv, NULL, 0); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 685 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Doug Ledford | efc82ee | 2015-02-21 19:27:04 -0500 | [diff] [blame] | 688 | int ipoib_mcast_stop_thread(struct net_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 690 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 691 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | |
| 693 | ipoib_dbg_mcast(priv, "stopping multicast thread\n"); |
| 694 | |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 695 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | cancel_delayed_work(&priv->mcast_task); |
Doug Ledford | 1c0453d | 2015-02-21 19:27:07 -0500 | [diff] [blame] | 697 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
Doug Ledford | efc82ee | 2015-02-21 19:27:04 -0500 | [diff] [blame] | 699 | flush_workqueue(priv->wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | return 0; |
| 702 | } |
| 703 | |
Christoph Lameter | 5a0e81f | 2015-12-21 08:42:53 -0600 | [diff] [blame] | 704 | static int ipoib_mcast_leave(struct net_device *dev, struct ipoib_mcast *mcast) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 706 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 707 | struct rdma_netdev *rn = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | int ret = 0; |
| 709 | |
Sean Hefty | e07832b | 2007-03-19 14:31:36 -0800 | [diff] [blame] | 710 | if (test_and_clear_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 711 | ipoib_warn(priv, "ipoib_mcast_leave on an in-flight join\n"); |
| 712 | |
| 713 | if (!IS_ERR_OR_NULL(mcast->mc)) |
Sean Hefty | e07832b | 2007-03-19 14:31:36 -0800 | [diff] [blame] | 714 | ib_sa_free_multicast(mcast->mc); |
| 715 | |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 716 | if (test_and_clear_bit(IPOIB_MCAST_FLAG_ATTACHED, &mcast->flags)) { |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 717 | ipoib_dbg_mcast(priv, "leaving MGID %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 718 | mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 720 | /* Remove ourselves from the multicast group */ |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 721 | ret = rn->detach_mcast(dev, priv->ca, &mcast->mcmember.mgid, |
| 722 | be16_to_cpu(mcast->mcmember.mlid)); |
Sean Hefty | faec2f7 | 2007-02-15 17:00:17 -0800 | [diff] [blame] | 723 | if (ret) |
Roland Dreier | 9eae554 | 2008-07-14 23:48:50 -0700 | [diff] [blame] | 724 | ipoib_warn(priv, "ib_detach_mcast failed (result = %d)\n", ret); |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 725 | } else if (!test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) |
| 726 | ipoib_dbg(priv, "leaving with no mcmember but not a " |
| 727 | "SENDONLY join\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | return 0; |
| 730 | } |
| 731 | |
Christoph Lameter | 432c55f | 2015-12-21 08:42:54 -0600 | [diff] [blame] | 732 | /* |
| 733 | * Check if the multicast group is sendonly. If so remove it from the maps |
| 734 | * and add to the remove list |
| 735 | */ |
| 736 | void ipoib_check_and_add_mcast_sendonly(struct ipoib_dev_priv *priv, u8 *mgid, |
| 737 | struct list_head *remove_list) |
| 738 | { |
| 739 | /* Is this multicast ? */ |
| 740 | if (*mgid == 0xff) { |
| 741 | struct ipoib_mcast *mcast = __ipoib_mcast_find(priv->dev, mgid); |
| 742 | |
| 743 | if (mcast && test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) { |
| 744 | list_del(&mcast->list); |
| 745 | rb_erase(&mcast->rb_node, &priv->multicast_tree); |
| 746 | list_add_tail(&mcast->list, remove_list); |
| 747 | } |
| 748 | } |
| 749 | } |
| 750 | |
Erez Shitrit | 50be28d | 2016-01-07 09:28:08 +0200 | [diff] [blame] | 751 | void ipoib_mcast_remove_list(struct list_head *remove_list) |
Christoph Lameter | 5a0e81f | 2015-12-21 08:42:53 -0600 | [diff] [blame] | 752 | { |
| 753 | struct ipoib_mcast *mcast, *tmcast; |
| 754 | |
| 755 | list_for_each_entry_safe(mcast, tmcast, remove_list, list) { |
Erez Shitrit | 50be28d | 2016-01-07 09:28:08 +0200 | [diff] [blame] | 756 | ipoib_mcast_leave(mcast->dev, mcast); |
Christoph Lameter | 5a0e81f | 2015-12-21 08:42:53 -0600 | [diff] [blame] | 757 | ipoib_mcast_free(mcast); |
| 758 | } |
| 759 | } |
| 760 | |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 761 | void ipoib_mcast_send(struct net_device *dev, u8 *daddr, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 763 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 764 | struct rdma_netdev *rn = netdev_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | struct ipoib_mcast *mcast; |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 766 | unsigned long flags; |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 767 | void *mgid = daddr + 4; |
David S. Miller | 700db99 | 2012-07-05 21:08:05 -0700 | [diff] [blame] | 768 | |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 769 | spin_lock_irqsave(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | |
Or Gerlitz | b3e2749 | 2008-03-11 16:10:02 +0200 | [diff] [blame] | 771 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags) || |
Roland Dreier | 20b8338 | 2006-02-11 12:22:12 -0800 | [diff] [blame] | 772 | !priv->broadcast || |
| 773 | !test_bit(IPOIB_MCAST_FLAG_ATTACHED, &priv->broadcast->flags)) { |
Roland Dreier | de90351 | 2007-09-28 15:33:51 -0700 | [diff] [blame] | 774 | ++dev->stats.tx_dropped; |
Michael S. Tsirkin | 479a079 | 2006-02-07 16:37:08 -0800 | [diff] [blame] | 775 | dev_kfree_skb_any(skb); |
| 776 | goto unlock; |
| 777 | } |
| 778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | mcast = __ipoib_mcast_find(dev, mgid); |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 780 | if (!mcast || !mcast->ah) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | if (!mcast) { |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 782 | /* Let's create a new send only group now */ |
| 783 | ipoib_dbg_mcast(priv, "setting up send only multicast group for %pI6\n", |
| 784 | mgid); |
| 785 | |
| 786 | mcast = ipoib_mcast_alloc(dev, 0); |
| 787 | if (!mcast) { |
| 788 | ipoib_warn(priv, "unable to allocate memory " |
| 789 | "for multicast structure\n"); |
| 790 | ++dev->stats.tx_dropped; |
| 791 | dev_kfree_skb_any(skb); |
| 792 | goto unlock; |
| 793 | } |
| 794 | |
| 795 | set_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags); |
| 796 | memcpy(mcast->mcmember.mgid.raw, mgid, |
| 797 | sizeof (union ib_gid)); |
| 798 | __ipoib_mcast_add(dev, mcast); |
| 799 | list_add_tail(&mcast->list, &priv->multicast_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | } |
Paolo Abeni | fc791b6 | 2016-10-13 18:26:56 +0200 | [diff] [blame] | 801 | if (skb_queue_len(&mcast->pkt_queue) < IPOIB_MAX_MCAST_QUEUE) { |
| 802 | /* put pseudoheader back on for next time */ |
| 803 | skb_push(skb, sizeof(struct ipoib_pseudo_header)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | skb_queue_tail(&mcast->pkt_queue, skb); |
Paolo Abeni | fc791b6 | 2016-10-13 18:26:56 +0200 | [diff] [blame] | 805 | } else { |
Roland Dreier | de90351 | 2007-09-28 15:33:51 -0700 | [diff] [blame] | 806 | ++dev->stats.tx_dropped; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | dev_kfree_skb_any(skb); |
Michael S. Tsirkin | b36f170b6 | 2006-01-17 12:19:40 -0800 | [diff] [blame] | 808 | } |
Doug Ledford | d2fe937 | 2015-02-21 19:27:06 -0500 | [diff] [blame] | 809 | if (!test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) { |
| 810 | __ipoib_mcast_schedule_join_thread(priv, NULL, 0); |
| 811 | } |
| 812 | } else { |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 813 | struct ipoib_neigh *neigh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 815 | spin_unlock_irqrestore(&priv->lock, flags); |
| 816 | neigh = ipoib_neigh_get(dev, daddr); |
| 817 | spin_lock_irqsave(&priv->lock, flags); |
| 818 | if (!neigh) { |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 819 | neigh = ipoib_neigh_alloc(daddr, dev); |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 820 | if (neigh) { |
| 821 | kref_get(&mcast->ah->ref); |
| 822 | neigh->ah = mcast->ah; |
| 823 | list_add_tail(&neigh->list, &mcast->neigh_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | } |
| 825 | } |
Roland Dreier | 721d67c | 2009-09-05 20:23:40 -0700 | [diff] [blame] | 826 | spin_unlock_irqrestore(&priv->lock, flags); |
Erez Shitrit | cd565b4 | 2017-04-10 11:22:30 +0300 | [diff] [blame] | 827 | mcast->ah->last_send = rn->send(dev, skb, mcast->ah->ah, |
| 828 | IB_MULTICAST_QPN); |
Shlomo Pongratz | b63b70d | 2012-07-24 17:05:22 +0000 | [diff] [blame] | 829 | if (neigh) |
| 830 | ipoib_neigh_put(neigh); |
Roland Dreier | 721d67c | 2009-09-05 20:23:40 -0700 | [diff] [blame] | 831 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Michael S. Tsirkin | 479a079 | 2006-02-07 16:37:08 -0800 | [diff] [blame] | 834 | unlock: |
Roland Dreier | 943c246 | 2008-09-30 10:36:21 -0700 | [diff] [blame] | 835 | spin_unlock_irqrestore(&priv->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | } |
| 837 | |
| 838 | void ipoib_mcast_dev_flush(struct net_device *dev) |
| 839 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 840 | struct ipoib_dev_priv *priv = ipoib_priv(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | LIST_HEAD(remove_list); |
Eli Cohen | 988bd50 | 2006-01-12 14:32:20 -0800 | [diff] [blame] | 842 | struct ipoib_mcast *mcast, *tmcast; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | unsigned long flags; |
| 844 | |
| 845 | ipoib_dbg_mcast(priv, "flushing multicast list\n"); |
| 846 | |
| 847 | spin_lock_irqsave(&priv->lock, flags); |
Eli Cohen | 988bd50 | 2006-01-12 14:32:20 -0800 | [diff] [blame] | 848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) { |
Eli Cohen | 988bd50 | 2006-01-12 14:32:20 -0800 | [diff] [blame] | 850 | list_del(&mcast->list); |
| 851 | rb_erase(&mcast->rb_node, &priv->multicast_tree); |
| 852 | list_add_tail(&mcast->list, &remove_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } |
| 854 | |
| 855 | if (priv->broadcast) { |
Roland Dreier | 3cd9656 | 2006-09-22 15:22:46 -0700 | [diff] [blame] | 856 | rb_erase(&priv->broadcast->rb_node, &priv->multicast_tree); |
Eli Cohen | 988bd50 | 2006-01-12 14:32:20 -0800 | [diff] [blame] | 857 | list_add_tail(&priv->broadcast->list, &remove_list); |
| 858 | priv->broadcast = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | spin_unlock_irqrestore(&priv->lock, flags); |
| 862 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 863 | /* |
| 864 | * make sure the in-flight joins have finished before we attempt |
| 865 | * to leave |
| 866 | */ |
Erez Shitrit | a9c8ba5 | 2013-10-16 17:37:51 +0300 | [diff] [blame] | 867 | list_for_each_entry_safe(mcast, tmcast, &remove_list, list) |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 868 | if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) |
Erez Shitrit | a9c8ba5 | 2013-10-16 17:37:51 +0300 | [diff] [blame] | 869 | wait_for_completion(&mcast->done); |
| 870 | |
Erez Shitrit | 50be28d | 2016-01-07 09:28:08 +0200 | [diff] [blame] | 871 | ipoib_mcast_remove_list(&remove_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | } |
| 873 | |
Jiri Pirko | 3e4aa12f8 | 2010-03-22 03:21:39 +0000 | [diff] [blame] | 874 | 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] | 875 | { |
Jason Gunthorpe | 5e47596 | 2009-09-05 20:23:40 -0700 | [diff] [blame] | 876 | /* reserved QPN, prefix, scope */ |
| 877 | if (memcmp(addr, broadcast, 6)) |
| 878 | return 0; |
| 879 | /* signature lower, pkey */ |
| 880 | if (memcmp(addr + 7, broadcast + 7, 3)) |
| 881 | return 0; |
| 882 | return 1; |
| 883 | } |
| 884 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 885 | void ipoib_mcast_restart_task(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 887 | struct ipoib_dev_priv *priv = |
| 888 | container_of(work, struct ipoib_dev_priv, restart_task); |
| 889 | struct net_device *dev = priv->dev; |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 890 | struct netdev_hw_addr *ha; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | struct ipoib_mcast *mcast, *tmcast; |
| 892 | LIST_HEAD(remove_list); |
| 893 | unsigned long flags; |
Or Gerlitz | 335a64a5a | 2007-10-08 10:13:00 +0200 | [diff] [blame] | 894 | struct ib_sa_mcmember_rec rec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 896 | if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) |
| 897 | /* |
| 898 | * shortcut...on shutdown flush is called next, just |
| 899 | * let it do all the work |
| 900 | */ |
| 901 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 903 | ipoib_dbg_mcast(priv, "restarting multicast task\n"); |
Roland Dreier | 4e0ab20 | 2015-01-30 15:38:46 -0800 | [diff] [blame] | 904 | |
Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 905 | local_irq_save(flags); |
David S. Miller | e308a5d | 2008-07-15 00:13:44 -0700 | [diff] [blame] | 906 | netif_addr_lock(dev); |
Michael S. Tsirkin | 78bfe0b | 2006-01-11 11:47:34 -0800 | [diff] [blame] | 907 | spin_lock(&priv->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | /* |
| 910 | * Unfortunately, the networking core only gives us a list of all of |
| 911 | * the multicast hardware addresses. We need to figure out which ones |
| 912 | * are new and which ones have been removed |
| 913 | */ |
| 914 | |
| 915 | /* Clear out the found flag */ |
| 916 | list_for_each_entry(mcast, &priv->multicast_list, list) |
| 917 | clear_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags); |
| 918 | |
| 919 | /* Mark all of the entries that are found or don't exist */ |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 920 | netdev_for_each_mc_addr(ha, dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | union ib_gid mgid; |
| 922 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 923 | if (!ipoib_mcast_addr_is_valid(ha->addr, dev->broadcast)) |
Jason Gunthorpe | 5e47596 | 2009-09-05 20:23:40 -0700 | [diff] [blame] | 924 | continue; |
| 925 | |
Jiri Pirko | 22bedad3 | 2010-04-01 21:22:57 +0000 | [diff] [blame] | 926 | memcpy(mgid.raw, ha->addr + 4, sizeof mgid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | mcast = __ipoib_mcast_find(dev, &mgid); |
| 929 | if (!mcast || test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) { |
| 930 | struct ipoib_mcast *nmcast; |
| 931 | |
Or Gerlitz | 335a64a5a | 2007-10-08 10:13:00 +0200 | [diff] [blame] | 932 | /* ignore group which is directly joined by userspace */ |
| 933 | if (test_bit(IPOIB_FLAG_UMCAST, &priv->flags) && |
| 934 | !ib_sa_get_mcmember_rec(priv->ca, priv->port, &mgid, &rec)) { |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 935 | ipoib_dbg_mcast(priv, "ignoring multicast entry for mgid %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 936 | mgid.raw); |
Or Gerlitz | 335a64a5a | 2007-10-08 10:13:00 +0200 | [diff] [blame] | 937 | continue; |
| 938 | } |
| 939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | /* Not found or send-only group, let's add a new entry */ |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 941 | ipoib_dbg_mcast(priv, "adding multicast entry for mgid %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 942 | mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | |
| 944 | nmcast = ipoib_mcast_alloc(dev, 0); |
| 945 | if (!nmcast) { |
| 946 | ipoib_warn(priv, "unable to allocate memory for multicast structure\n"); |
| 947 | continue; |
| 948 | } |
| 949 | |
| 950 | set_bit(IPOIB_MCAST_FLAG_FOUND, &nmcast->flags); |
| 951 | |
| 952 | nmcast->mcmember.mgid = mgid; |
| 953 | |
| 954 | if (mcast) { |
| 955 | /* Destroy the send only entry */ |
Akinobu Mita | 179e091 | 2006-06-26 00:24:41 -0700 | [diff] [blame] | 956 | list_move_tail(&mcast->list, &remove_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | |
| 958 | rb_replace_node(&mcast->rb_node, |
| 959 | &nmcast->rb_node, |
| 960 | &priv->multicast_tree); |
| 961 | } else |
| 962 | __ipoib_mcast_add(dev, nmcast); |
| 963 | |
| 964 | list_add_tail(&nmcast->list, &priv->multicast_list); |
| 965 | } |
| 966 | |
| 967 | if (mcast) |
| 968 | set_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags); |
| 969 | } |
| 970 | |
| 971 | /* Remove all of the entries don't exist anymore */ |
| 972 | list_for_each_entry_safe(mcast, tmcast, &priv->multicast_list, list) { |
| 973 | if (!test_bit(IPOIB_MCAST_FLAG_FOUND, &mcast->flags) && |
| 974 | !test_bit(IPOIB_MCAST_FLAG_SENDONLY, &mcast->flags)) { |
Harvey Harrison | 5b095d989 | 2008-10-29 12:52:50 -0700 | [diff] [blame] | 975 | ipoib_dbg_mcast(priv, "deleting multicast group %pI6\n", |
Harvey Harrison | fcace2f | 2008-10-28 22:37:22 -0700 | [diff] [blame] | 976 | mcast->mcmember.mgid.raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
| 978 | rb_erase(&mcast->rb_node, &priv->multicast_tree); |
| 979 | |
| 980 | /* Move to the remove list */ |
Akinobu Mita | 179e091 | 2006-06-26 00:24:41 -0700 | [diff] [blame] | 981 | list_move_tail(&mcast->list, &remove_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 982 | } |
| 983 | } |
Michael S. Tsirkin | 78bfe0b | 2006-01-11 11:47:34 -0800 | [diff] [blame] | 984 | |
| 985 | spin_unlock(&priv->lock); |
David S. Miller | e308a5d | 2008-07-15 00:13:44 -0700 | [diff] [blame] | 986 | netif_addr_unlock(dev); |
Herbert Xu | 932ff27 | 2006-06-09 12:20:56 -0700 | [diff] [blame] | 987 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 989 | /* |
| 990 | * make sure the in-flight joins have finished before we attempt |
| 991 | * to leave |
| 992 | */ |
| 993 | list_for_each_entry_safe(mcast, tmcast, &remove_list, list) |
| 994 | if (test_bit(IPOIB_MCAST_FLAG_BUSY, &mcast->flags)) |
| 995 | wait_for_completion(&mcast->done); |
| 996 | |
Erez Shitrit | 50be28d | 2016-01-07 09:28:08 +0200 | [diff] [blame] | 997 | ipoib_mcast_remove_list(&remove_list); |
Roland Dreier | 962121b | 2015-01-30 15:39:11 -0800 | [diff] [blame] | 998 | |
Doug Ledford | 6991141 | 2015-02-21 19:27:05 -0500 | [diff] [blame] | 999 | /* |
| 1000 | * Double check that we are still up |
| 1001 | */ |
| 1002 | if (test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) { |
| 1003 | spin_lock_irqsave(&priv->lock, flags); |
| 1004 | __ipoib_mcast_schedule_join_thread(priv, NULL, 0); |
| 1005 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1006 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
Roland Dreier | 8ae5a8a | 2005-11-02 20:51:01 -0800 | [diff] [blame] | 1009 | #ifdef CONFIG_INFINIBAND_IPOIB_DEBUG |
| 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | struct ipoib_mcast_iter *ipoib_mcast_iter_init(struct net_device *dev) |
| 1012 | { |
| 1013 | struct ipoib_mcast_iter *iter; |
| 1014 | |
| 1015 | iter = kmalloc(sizeof *iter, GFP_KERNEL); |
| 1016 | if (!iter) |
| 1017 | return NULL; |
| 1018 | |
| 1019 | iter->dev = dev; |
Roland Dreier | 1732b0e | 2005-11-07 10:33:11 -0800 | [diff] [blame] | 1020 | memset(iter->mgid.raw, 0, 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
| 1022 | if (ipoib_mcast_iter_next(iter)) { |
Roland Dreier | 1732b0e | 2005-11-07 10:33:11 -0800 | [diff] [blame] | 1023 | kfree(iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return NULL; |
| 1025 | } |
| 1026 | |
| 1027 | return iter; |
| 1028 | } |
| 1029 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | int ipoib_mcast_iter_next(struct ipoib_mcast_iter *iter) |
| 1031 | { |
Erez Shitrit | c1048af | 2017-04-10 11:22:29 +0300 | [diff] [blame] | 1032 | struct ipoib_dev_priv *priv = ipoib_priv(iter->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | struct rb_node *n; |
| 1034 | struct ipoib_mcast *mcast; |
| 1035 | int ret = 1; |
| 1036 | |
| 1037 | spin_lock_irq(&priv->lock); |
| 1038 | |
| 1039 | n = rb_first(&priv->multicast_tree); |
| 1040 | |
| 1041 | while (n) { |
| 1042 | mcast = rb_entry(n, struct ipoib_mcast, rb_node); |
| 1043 | |
| 1044 | if (memcmp(iter->mgid.raw, mcast->mcmember.mgid.raw, |
| 1045 | sizeof (union ib_gid)) < 0) { |
| 1046 | iter->mgid = mcast->mcmember.mgid; |
| 1047 | iter->created = mcast->created; |
| 1048 | iter->queuelen = skb_queue_len(&mcast->pkt_queue); |
| 1049 | iter->complete = !!mcast->ah; |
| 1050 | iter->send_only = !!(mcast->flags & (1 << IPOIB_MCAST_FLAG_SENDONLY)); |
| 1051 | |
| 1052 | ret = 0; |
| 1053 | |
| 1054 | break; |
| 1055 | } |
| 1056 | |
| 1057 | n = rb_next(n); |
| 1058 | } |
| 1059 | |
| 1060 | spin_unlock_irq(&priv->lock); |
| 1061 | |
| 1062 | return ret; |
| 1063 | } |
| 1064 | |
| 1065 | void ipoib_mcast_iter_read(struct ipoib_mcast_iter *iter, |
| 1066 | union ib_gid *mgid, |
| 1067 | unsigned long *created, |
| 1068 | unsigned int *queuelen, |
| 1069 | unsigned int *complete, |
| 1070 | unsigned int *send_only) |
| 1071 | { |
| 1072 | *mgid = iter->mgid; |
| 1073 | *created = iter->created; |
| 1074 | *queuelen = iter->queuelen; |
| 1075 | *complete = iter->complete; |
| 1076 | *send_only = iter->send_only; |
| 1077 | } |
Roland Dreier | 8ae5a8a | 2005-11-02 20:51:01 -0800 | [diff] [blame] | 1078 | |
| 1079 | #endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */ |