blob: 7cad4dd87469a887f1df18a23ef10be2a3aaae71 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 */
34
35#include "ipoib.h"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38
39#include <linux/init.h>
40#include <linux/slab.h>
Shirley Ma0f485252006-04-10 09:43:58 -070041#include <linux/kernel.h>
Roland Dreier10313cb2008-03-12 07:51:03 -070042#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <linux/if_arp.h> /* For ARPHRD_xxx */
45
46#include <linux/ip.h>
47#include <linux/in.h>
48
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +000049#include <linux/jhash.h>
50#include <net/arp.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020051
Yan Burman4b486802013-02-19 15:40:23 +000052#define DRV_VERSION "1.0.0"
53
54const char ipoib_driver_version[] = DRV_VERSION;
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056MODULE_AUTHOR("Roland Dreier");
57MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
58MODULE_LICENSE("Dual BSD/GPL");
Yan Burman4b486802013-02-19 15:40:23 +000059MODULE_VERSION(DRV_VERSION);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Shirley Ma0f485252006-04-10 09:43:58 -070061int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
62int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
63
64module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
65MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
66module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
67MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
70int ipoib_debug_level;
71
72module_param_named(debug_level, ipoib_debug_level, int, 0644);
73MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
74#endif
75
Roland Dreier1732b0e2005-11-07 10:33:11 -080076struct ipoib_path_iter {
77 struct net_device *dev;
78 struct ipoib_path path;
79};
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081static const u8 ipv4_bcast_addr[] = {
82 0x00, 0xff, 0xff, 0xff,
83 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
84 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
85};
86
87struct workqueue_struct *ipoib_workqueue;
88
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -070089struct ib_sa_client ipoib_sa_client;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static void ipoib_add_one(struct ib_device *device);
92static void ipoib_remove_one(struct ib_device *device);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +000093static void ipoib_neigh_reclaim(struct rcu_head *rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95static struct ib_client ipoib_client = {
96 .name = "ipoib",
97 .add = ipoib_add_one,
98 .remove = ipoib_remove_one
99};
100
101int ipoib_open(struct net_device *dev)
102{
103 struct ipoib_dev_priv *priv = netdev_priv(dev);
104
105 ipoib_dbg(priv, "bringing up interface\n");
106
Michal Schmidt437708c2014-01-17 19:47:25 +0100107 netif_carrier_off(dev);
108
Yossi Etigine028cc52009-04-20 13:58:08 -0700109 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500111 if (ipoib_ib_dev_open(dev)) {
Alex Estrindd57c932014-08-06 14:40:32 -0400112 if (!test_bit(IPOIB_PKEY_ASSIGNED, &priv->flags))
113 return 0;
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800114 goto err_disable;
Alex Estrindd57c932014-08-06 14:40:32 -0400115 }
Yossi Etiginfe25c562008-11-12 10:24:36 -0800116
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800117 if (ipoib_ib_dev_up(dev))
118 goto err_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
121 struct ipoib_dev_priv *cpriv;
122
123 /* Bring up any child interfaces too */
Erez Shitritf47944c2013-10-16 17:37:49 +0300124 down_read(&priv->vlan_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 list_for_each_entry(cpriv, &priv->child_intfs, list) {
126 int flags;
127
128 flags = cpriv->dev->flags;
129 if (flags & IFF_UP)
130 continue;
131
132 dev_change_flags(cpriv->dev, flags | IFF_UP);
133 }
Erez Shitritf47944c2013-10-16 17:37:49 +0300134 up_read(&priv->vlan_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 netif_start_queue(dev);
138
139 return 0;
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800140
141err_stop:
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500142 ipoib_ib_dev_stop(dev);
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800143
144err_disable:
Roland Dreierb8a1b1c2009-01-14 14:55:41 -0800145 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
146
147 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150static int ipoib_stop(struct net_device *dev)
151{
152 struct ipoib_dev_priv *priv = netdev_priv(dev);
153
154 ipoib_dbg(priv, "stopping interface\n");
155
156 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
157
158 netif_stop_queue(dev);
159
Doug Ledfordefc82ee2015-02-21 19:27:04 -0500160 ipoib_ib_dev_down(dev);
161 ipoib_ib_dev_stop(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
164 struct ipoib_dev_priv *cpriv;
165
166 /* Bring down any child interfaces too */
Erez Shitritf47944c2013-10-16 17:37:49 +0300167 down_read(&priv->vlan_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 list_for_each_entry(cpriv, &priv->child_intfs, list) {
169 int flags;
170
171 flags = cpriv->dev->flags;
172 if (!(flags & IFF_UP))
173 continue;
174
175 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
176 }
Erez Shitritf47944c2013-10-16 17:37:49 +0300177 up_read(&priv->vlan_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 return 0;
181}
182
Or Gerlitz9baa0b02012-09-13 05:56:36 +0000183static void ipoib_uninit(struct net_device *dev)
184{
185 ipoib_dev_cleanup(dev);
186}
187
David S. Miller9ca36f72011-11-16 18:05:50 -0500188static netdev_features_t ipoib_fix_features(struct net_device *dev, netdev_features_t features)
Michał Mirosław3d96c742011-04-19 00:43:20 +0000189{
190 struct ipoib_dev_priv *priv = netdev_priv(dev);
191
192 if (test_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags))
193 features &= ~(NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO);
194
195 return features;
196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
199{
200 struct ipoib_dev_priv *priv = netdev_priv(dev);
201
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200202 /* dev->mtu > 2K ==> connected mode */
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800203 if (ipoib_cm_admin_enabled(dev)) {
204 if (new_mtu > ipoib_cm_max_mtu(dev))
205 return -EINVAL;
206
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200207 if (new_mtu > priv->mcast_mtu)
208 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
209 priv->mcast_mtu);
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800210
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200211 dev->mtu = new_mtu;
212 return 0;
213 }
214
Shirley Mabc7b3a32008-04-23 11:55:45 -0700215 if (new_mtu > IPOIB_UD_MTU(priv->max_ib_mtu))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return -EINVAL;
217
218 priv->admin_mtu = new_mtu;
219
220 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
221
222 return 0;
223}
224
Roland Dreier71d9c5f2012-10-02 21:23:43 -0700225int ipoib_set_mode(struct net_device *dev, const char *buf)
226{
227 struct ipoib_dev_priv *priv = netdev_priv(dev);
228
229 /* flush paths if we switch modes so that connections are restarted */
230 if (IPOIB_CM_SUPPORTED(dev->dev_addr) && !strcmp(buf, "connected\n")) {
231 set_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags);
232 ipoib_warn(priv, "enabling connected mode "
233 "will cause multicast packet drops\n");
234 netdev_update_features(dev);
235 rtnl_unlock();
236 priv->tx_wr.send_flags &= ~IB_SEND_IP_CSUM;
237
238 ipoib_flush_paths(dev);
239 rtnl_lock();
240 return 0;
241 }
242
243 if (!strcmp(buf, "datagram\n")) {
244 clear_bit(IPOIB_FLAG_ADMIN_CM, &priv->flags);
245 netdev_update_features(dev);
246 dev_set_mtu(dev, min(priv->mcast_mtu, dev->mtu));
247 rtnl_unlock();
248 ipoib_flush_paths(dev);
249 rtnl_lock();
250 return 0;
251 }
252
253 return -EINVAL;
254}
255
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300256static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct ipoib_dev_priv *priv = netdev_priv(dev);
259 struct rb_node *n = priv->path_tree.rb_node;
260 struct ipoib_path *path;
261 int ret;
262
263 while (n) {
264 path = rb_entry(n, struct ipoib_path, rb_node);
265
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300266 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 sizeof (union ib_gid));
268
269 if (ret < 0)
270 n = n->rb_left;
271 else if (ret > 0)
272 n = n->rb_right;
273 else
274 return path;
275 }
276
277 return NULL;
278}
279
280static int __path_add(struct net_device *dev, struct ipoib_path *path)
281{
282 struct ipoib_dev_priv *priv = netdev_priv(dev);
283 struct rb_node **n = &priv->path_tree.rb_node;
284 struct rb_node *pn = NULL;
285 struct ipoib_path *tpath;
286 int ret;
287
288 while (*n) {
289 pn = *n;
290 tpath = rb_entry(pn, struct ipoib_path, rb_node);
291
292 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
293 sizeof (union ib_gid));
294 if (ret < 0)
295 n = &pn->rb_left;
296 else if (ret > 0)
297 n = &pn->rb_right;
298 else
299 return -EEXIST;
300 }
301
302 rb_link_node(&path->rb_node, pn, n);
303 rb_insert_color(&path->rb_node, &priv->path_tree);
304
305 list_add_tail(&path->list, &priv->path_list);
306
307 return 0;
308}
309
310static void path_free(struct net_device *dev, struct ipoib_path *path)
311{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 while ((skb = __skb_dequeue(&path->queue)))
315 dev_kfree_skb_irq(skb);
316
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000317 ipoib_dbg(netdev_priv(dev), "path_free\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000319 /* remove all neigh connected to this path */
320 ipoib_del_neighs_by_gid(dev, path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 if (path->ah)
323 ipoib_put_ah(path->ah);
324
325 kfree(path);
326}
327
Roland Dreier1732b0e2005-11-07 10:33:11 -0800328#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
329
330struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
331{
332 struct ipoib_path_iter *iter;
333
334 iter = kmalloc(sizeof *iter, GFP_KERNEL);
335 if (!iter)
336 return NULL;
337
338 iter->dev = dev;
339 memset(iter->path.pathrec.dgid.raw, 0, 16);
340
341 if (ipoib_path_iter_next(iter)) {
342 kfree(iter);
343 return NULL;
344 }
345
346 return iter;
347}
348
349int ipoib_path_iter_next(struct ipoib_path_iter *iter)
350{
351 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
352 struct rb_node *n;
353 struct ipoib_path *path;
354 int ret = 1;
355
356 spin_lock_irq(&priv->lock);
357
358 n = rb_first(&priv->path_tree);
359
360 while (n) {
361 path = rb_entry(n, struct ipoib_path, rb_node);
362
363 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
364 sizeof (union ib_gid)) < 0) {
365 iter->path = *path;
366 ret = 0;
367 break;
368 }
369
370 n = rb_next(n);
371 }
372
373 spin_unlock_irq(&priv->lock);
374
375 return ret;
376}
377
378void ipoib_path_iter_read(struct ipoib_path_iter *iter,
379 struct ipoib_path *path)
380{
381 *path = iter->path;
382}
383
384#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
385
Moni Shouaee1e2c82008-07-14 23:48:49 -0700386void ipoib_mark_paths_invalid(struct net_device *dev)
387{
388 struct ipoib_dev_priv *priv = netdev_priv(dev);
389 struct ipoib_path *path, *tp;
390
391 spin_lock_irq(&priv->lock);
392
393 list_for_each_entry_safe(path, tp, &priv->path_list, list) {
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700394 ipoib_dbg(priv, "mark path LID 0x%04x GID %pI6 invalid\n",
Moni Shouaee1e2c82008-07-14 23:48:49 -0700395 be16_to_cpu(path->pathrec.dlid),
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700396 path->pathrec.dgid.raw);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700397 path->valid = 0;
398 }
399
400 spin_unlock_irq(&priv->lock);
401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403void ipoib_flush_paths(struct net_device *dev)
404{
405 struct ipoib_dev_priv *priv = netdev_priv(dev);
406 struct ipoib_path *path, *tp;
407 LIST_HEAD(remove_list);
Roland Dreier943c2462008-09-30 10:36:21 -0700408 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Roland Dreier943c2462008-09-30 10:36:21 -0700410 netif_tx_lock_bh(dev);
411 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Robert P. J. Day157de222008-04-16 21:09:26 -0700413 list_splice_init(&priv->path_list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 list_for_each_entry(path, &remove_list, list)
416 rb_erase(&path->rb_node, &priv->path_tree);
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 list_for_each_entry_safe(path, tp, &remove_list, list) {
419 if (path->query)
420 ib_sa_cancel_query(path->query_id, path->query);
Roland Dreier943c2462008-09-30 10:36:21 -0700421 spin_unlock_irqrestore(&priv->lock, flags);
422 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 wait_for_completion(&path->done);
424 path_free(dev, path);
Roland Dreier943c2462008-09-30 10:36:21 -0700425 netif_tx_lock_bh(dev);
426 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Roland Dreier943c2462008-09-30 10:36:21 -0700428
429 spin_unlock_irqrestore(&priv->lock, flags);
430 netif_tx_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433static void path_rec_completion(int status,
434 struct ib_sa_path_rec *pathrec,
435 void *path_ptr)
436{
437 struct ipoib_path *path = path_ptr;
438 struct net_device *dev = path->dev;
439 struct ipoib_dev_priv *priv = netdev_priv(dev);
440 struct ipoib_ah *ah = NULL;
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700441 struct ipoib_ah *old_ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700442 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 struct sk_buff_head skqueue;
444 struct sk_buff *skb;
445 unsigned long flags;
446
Roland Dreier843613b2007-02-26 12:57:08 -0800447 if (!status)
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700448 ipoib_dbg(priv, "PathRec LID 0x%04x for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700449 be16_to_cpu(pathrec->dlid), pathrec->dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 else
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700451 ipoib_dbg(priv, "PathRec status %d for GID %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700452 status, path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 skb_queue_head_init(&skqueue);
455
456 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700457 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700459 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
460 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462
463 spin_lock_irqsave(&priv->lock, flags);
464
Mike Marciniszyn38743972011-11-21 08:43:54 -0500465 if (!IS_ERR_OR_NULL(ah)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 path->pathrec = *pathrec;
467
Roland Dreierc9da4ba2008-09-25 15:26:15 -0700468 old_ah = path->ah;
469 path->ah = ah;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
472 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
473
474 while ((skb = __skb_dequeue(&path->queue)))
475 __skb_queue_tail(&skqueue, skb);
476
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700477 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Moni Shouaee1e2c82008-07-14 23:48:49 -0700478 if (neigh->ah) {
479 WARN_ON(neigh->ah != old_ah);
480 /*
481 * Dropping the ah reference inside
482 * priv->lock is safe here, because we
483 * will hold one more reference from
484 * the original value of path->ah (ie
485 * old_ah).
486 */
487 ipoib_put_ah(neigh->ah);
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 kref_get(&path->ah->ref);
490 neigh->ah = path->ah;
491
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000492 if (ipoib_cm_enabled(dev, neigh->daddr)) {
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200493 if (!ipoib_cm_get(neigh))
494 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
495 path,
496 neigh));
497 if (!ipoib_cm_get(neigh)) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000498 ipoib_neigh_free(neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200499 continue;
500 }
501 }
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 while ((skb = __skb_dequeue(&neigh->queue)))
504 __skb_queue_tail(&skqueue, skb);
505 }
Moni Shouaee1e2c82008-07-14 23:48:49 -0700506 path->valid = 1;
Roland Dreier5872a9f2005-11-29 10:13:54 -0800507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Roland Dreier5872a9f2005-11-29 10:13:54 -0800509 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 complete(&path->done);
511
512 spin_unlock_irqrestore(&priv->lock, flags);
513
Roland Dreierf72dd562013-02-25 09:42:15 -0800514 if (IS_ERR_OR_NULL(ah))
515 ipoib_del_neighs_by_gid(dev, path->pathrec.dgid.raw);
516
Moni Shouaee1e2c82008-07-14 23:48:49 -0700517 if (old_ah)
518 ipoib_put_ah(old_ah);
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 while ((skb = __skb_dequeue(&skqueue))) {
521 skb->dev = dev;
522 if (dev_queue_xmit(skb))
523 ipoib_warn(priv, "dev_queue_xmit failed "
524 "to requeue packet\n");
525 }
526}
527
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300528static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 struct ipoib_dev_priv *priv = netdev_priv(dev);
531 struct ipoib_path *path;
532
Jack Morgenstein1401b532007-11-26 10:41:19 +0200533 if (!priv->broadcast)
534 return NULL;
535
Roland Dreier21a38482005-11-02 10:07:59 -0800536 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!path)
538 return NULL;
539
Roland Dreier21a38482005-11-02 10:07:59 -0800540 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 skb_queue_head_init(&path->queue);
543
544 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300546 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Roland Dreier2337f802007-10-23 19:57:54 -0700547 path->pathrec.sgid = priv->local_gid;
548 path->pathrec.pkey = cpu_to_be16(priv->pkey);
Sean Hefty81668832007-08-02 12:21:31 -0700549 path->pathrec.numb_path = 1;
550 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
552 return path;
553}
554
555static int path_rec_start(struct net_device *dev,
556 struct ipoib_path *path)
557{
558 struct ipoib_dev_priv *priv = netdev_priv(dev);
559
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700560 ipoib_dbg(priv, "Start path record lookup for %pI6\n",
Harvey Harrisonfcace2f2008-10-28 22:37:22 -0700561 path->pathrec.dgid.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Roland Dreier65c7edd2005-11-28 21:20:34 -0800563 init_completion(&path->done);
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700566 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 &path->pathrec,
568 IB_SA_PATH_REC_DGID |
569 IB_SA_PATH_REC_SGID |
570 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700571 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 IB_SA_PATH_REC_PKEY,
573 1000, GFP_ATOMIC,
574 path_rec_completion,
575 path, &path->query);
576 if (path->query_id < 0) {
Or Gerlitz01b3fc82008-07-22 14:18:34 -0700577 ipoib_warn(priv, "ib_sa_path_rec_get failed: %d\n", path->query_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 path->query = NULL;
Yossi Etigin93a3ab92008-11-12 10:24:38 -0800579 complete(&path->done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return path->query_id;
581 }
582
583 return 0;
584}
585
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000586static void neigh_add_path(struct sk_buff *skb, u8 *daddr,
587 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 struct ipoib_dev_priv *priv = netdev_priv(dev);
590 struct ipoib_path *path;
591 struct ipoib_neigh *neigh;
Roland Dreier943c2462008-09-30 10:36:21 -0700592 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000594 spin_lock_irqsave(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000595 neigh = ipoib_neigh_alloc(daddr, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (!neigh) {
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000597 spin_unlock_irqrestore(&priv->lock, flags);
Roland Dreierde903512007-09-28 15:33:51 -0700598 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 dev_kfree_skb_any(skb);
600 return;
601 }
602
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000603 path = __path_find(dev, daddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (!path) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000605 path = path_rec_create(dev, daddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300607 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 __path_add(dev, path);
610 }
611
612 list_add_tail(&neigh->list, &path->neigh_list);
613
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800614 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 kref_get(&path->ah->ref);
616 neigh->ah = path->ah;
617
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000618 if (ipoib_cm_enabled(dev, neigh->daddr)) {
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200619 if (!ipoib_cm_get(neigh))
620 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
621 if (!ipoib_cm_get(neigh)) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000622 ipoib_neigh_free(neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200623 goto err_drop;
624 }
625 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
626 __skb_queue_tail(&neigh->queue, skb);
627 else {
628 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
629 skb_queue_len(&neigh->queue));
630 goto err_drop;
631 }
Roland Dreier721d67c2009-09-05 20:23:40 -0700632 } else {
633 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000634 ipoib_send(dev, skb, path->ah, IPOIB_QPN(daddr));
635 ipoib_neigh_put(neigh);
Roland Dreier721d67c2009-09-05 20:23:40 -0700636 return;
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 } else {
639 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (!path->query && path_rec_start(dev, path))
Jim Foraker49b8e742013-08-08 17:44:22 -0700642 goto err_path;
Erez Shitrit1e85b802015-04-02 13:39:03 +0300643 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
644 __skb_queue_tail(&neigh->queue, skb);
645 else
646 goto err_drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
648
Roland Dreier943c2462008-09-30 10:36:21 -0700649 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000650 ipoib_neigh_put(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return;
652
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300653err_path:
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000654 ipoib_neigh_free(neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200655err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700656 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 dev_kfree_skb_any(skb);
658
Roland Dreier943c2462008-09-30 10:36:21 -0700659 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000660 ipoib_neigh_put(neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
Roland Dreier936d7de2012-02-07 14:51:21 +0000664 struct ipoib_cb *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 struct ipoib_dev_priv *priv = netdev_priv(dev);
667 struct ipoib_path *path;
Roland Dreier943c2462008-09-30 10:36:21 -0700668 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Roland Dreier943c2462008-09-30 10:36:21 -0700670 spin_lock_irqsave(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Roland Dreier936d7de2012-02-07 14:51:21 +0000672 path = __path_find(dev, cb->hwaddr + 4);
Moni Shouaee1e2c82008-07-14 23:48:49 -0700673 if (!path || !path->valid) {
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800674 int new_path = 0;
675
676 if (!path) {
Roland Dreier936d7de2012-02-07 14:51:21 +0000677 path = path_rec_create(dev, cb->hwaddr + 4);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800678 new_path = 1;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 if (path) {
Erez Shitrit1e85b802015-04-02 13:39:03 +0300681 if (skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
682 __skb_queue_tail(&path->queue, skb);
683 } else {
684 ++dev->stats.tx_dropped;
685 dev_kfree_skb_any(skb);
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Yossi Etiginff79ae82008-11-12 10:24:39 -0800688 if (!path->query && path_rec_start(dev, path)) {
Roland Dreier943c2462008-09-30 10:36:21 -0700689 spin_unlock_irqrestore(&priv->lock, flags);
Jack Morgenstein71d98b42009-02-17 14:51:47 -0800690 if (new_path)
691 path_free(dev, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return;
693 } else
694 __path_add(dev, path);
695 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700696 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 dev_kfree_skb_any(skb);
698 }
699
Roland Dreier943c2462008-09-30 10:36:21 -0700700 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return;
702 }
703
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800704 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
706 be16_to_cpu(path->pathrec.dlid));
707
Roland Dreier721d67c2009-09-05 20:23:40 -0700708 spin_unlock_irqrestore(&priv->lock, flags);
Roland Dreier936d7de2012-02-07 14:51:21 +0000709 ipoib_send(dev, skb, path->ah, IPOIB_QPN(cb->hwaddr));
Roland Dreier721d67c2009-09-05 20:23:40 -0700710 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 } else if ((path->query || !path_rec_start(dev, path)) &&
712 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 __skb_queue_tail(&path->queue, skb);
714 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700715 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 dev_kfree_skb_any(skb);
717 }
718
Roland Dreier943c2462008-09-30 10:36:21 -0700719 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
723{
724 struct ipoib_dev_priv *priv = netdev_priv(dev);
725 struct ipoib_neigh *neigh;
Eric Dumazetb49fe362014-09-18 11:00:27 -0700726 struct ipoib_cb *cb = ipoib_skb_cb(skb);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000727 struct ipoib_header *header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 unsigned long flags;
729
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000730 header = (struct ipoib_header *) skb->data;
731
732 if (unlikely(cb->hwaddr[4] == 0xff)) {
733 /* multicast, arrange "if" according to probability */
734 if ((header->proto != htons(ETH_P_IP)) &&
735 (header->proto != htons(ETH_P_IPV6)) &&
736 (header->proto != htons(ETH_P_ARP)) &&
Patrick McHardydc850b02013-04-17 06:18:29 +0000737 (header->proto != htons(ETH_P_RARP)) &&
738 (header->proto != htons(ETH_P_TIPC))) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000739 /* ethertype not supported by IPoIB */
David Miller17e6abe2011-12-02 16:52:44 +0000740 ++dev->stats.tx_dropped;
741 dev_kfree_skb_any(skb);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000742 return NETDEV_TX_OK;
David Miller17e6abe2011-12-02 16:52:44 +0000743 }
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000744 /* Add in the P_Key for multicast*/
745 cb->hwaddr[8] = (priv->pkey >> 8) & 0xff;
746 cb->hwaddr[9] = priv->pkey & 0xff;
747
748 neigh = ipoib_neigh_get(dev, cb->hwaddr);
749 if (likely(neigh))
750 goto send_using_neigh;
751 ipoib_mcast_send(dev, cb->hwaddr, skb);
752 return NETDEV_TX_OK;
David Miller17e6abe2011-12-02 16:52:44 +0000753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000755 /* unicast, arrange "switch" according to probability */
756 switch (header->proto) {
757 case htons(ETH_P_IP):
758 case htons(ETH_P_IPV6):
Patrick McHardydc850b02013-04-17 06:18:29 +0000759 case htons(ETH_P_TIPC):
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000760 neigh = ipoib_neigh_get(dev, cb->hwaddr);
761 if (unlikely(!neigh)) {
762 neigh_add_path(skb, cb->hwaddr, dev);
763 return NETDEV_TX_OK;
Yossi Etigina50df392009-01-09 14:05:11 -0800764 }
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000765 break;
766 case htons(ETH_P_ARP):
767 case htons(ETH_P_RARP):
768 /* for unicast ARP and RARP should always perform path find */
769 unicast_arp_send(skb, dev, cb);
770 return NETDEV_TX_OK;
771 default:
772 /* ethertype not supported by IPoIB */
773 ++dev->stats.tx_dropped;
774 dev_kfree_skb_any(skb);
775 return NETDEV_TX_OK;
776 }
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300777
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000778send_using_neigh:
779 /* note we now hold a ref to neigh */
780 if (ipoib_cm_get(neigh)) {
781 if (ipoib_cm_up(neigh)) {
782 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
783 goto unref;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 }
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000785 } else if (neigh->ah) {
786 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(cb->hwaddr));
787 goto unref;
788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000790 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
791 spin_lock_irqsave(&priv->lock, flags);
792 __skb_queue_tail(&neigh->queue, skb);
793 spin_unlock_irqrestore(&priv->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 } else {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000795 ++dev->stats.tx_dropped;
796 dev_kfree_skb_any(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000798
799unref:
800 ipoib_neigh_put(neigh);
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return NETDEV_TX_OK;
803}
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805static void ipoib_timeout(struct net_device *dev)
806{
807 struct ipoib_dev_priv *priv = netdev_priv(dev);
808
Roland Dreier4b2d3192005-10-18 12:20:06 -0700809 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
810 jiffies_to_msecs(jiffies - dev->trans_start));
811 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
812 netif_queue_stopped(dev),
813 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /* XXX reset QP, etc. */
815}
816
817static int ipoib_hard_header(struct sk_buff *skb,
818 struct net_device *dev,
819 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700820 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
822 struct ipoib_header *header;
Eric Dumazetb49fe362014-09-18 11:00:27 -0700823 struct ipoib_cb *cb = ipoib_skb_cb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
826
827 header->proto = htons(type);
828 header->reserved = 0;
829
830 /*
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000831 * we don't rely on dst_entry structure, always stuff the
Roland Dreier936d7de2012-02-07 14:51:21 +0000832 * destination address into skb->cb so we can figure out where
833 * to send the packet later.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 */
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000835 memcpy(cb->hwaddr, daddr, INFINIBAND_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Doug Ledford83bdd3b2013-04-01 21:25:30 +0000837 return sizeof *header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840static void ipoib_set_mcast_list(struct net_device *dev)
841{
842 struct ipoib_dev_priv *priv = netdev_priv(dev);
843
Leonid Arsh7a343d42006-03-23 19:52:51 +0200844 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
845 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
846 return;
847 }
848
Doug Ledford0b395782015-02-21 19:27:03 -0500849 queue_work(priv->wq, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Nicolas Dichtel5aa7add2015-04-02 17:07:07 +0200852static int ipoib_get_iflink(const struct net_device *dev)
853{
854 struct ipoib_dev_priv *priv = netdev_priv(dev);
855
856 return priv->parent->ifindex;
857}
858
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000859static u32 ipoib_addr_hash(struct ipoib_neigh_hash *htbl, u8 *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000861 /*
862 * Use only the address parts that contributes to spreading
863 * The subnet prefix is not used as one can not connect to
864 * same remote port (GUID) using the same remote QPN via two
865 * different subnets.
866 */
867 /* qpn octets[1:4) & port GUID octets[12:20) */
Shlomo Pongratz9d1ad662013-02-19 15:40:22 +0000868 u32 *d32 = (u32 *) daddr;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000869 u32 hv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Shlomo Pongratz9d1ad662013-02-19 15:40:22 +0000871 hv = jhash_3words(d32[3], d32[4], IPOIB_QPN_MASK & d32[0], 0);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000872 return hv & htbl->mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000875struct ipoib_neigh *ipoib_neigh_get(struct net_device *dev, u8 *daddr)
876{
877 struct ipoib_dev_priv *priv = netdev_priv(dev);
878 struct ipoib_neigh_table *ntbl = &priv->ntbl;
879 struct ipoib_neigh_hash *htbl;
880 struct ipoib_neigh *neigh = NULL;
881 u32 hash_val;
882
883 rcu_read_lock_bh();
884
885 htbl = rcu_dereference_bh(ntbl->htbl);
886
887 if (!htbl)
888 goto out_unlock;
889
890 hash_val = ipoib_addr_hash(htbl, daddr);
891 for (neigh = rcu_dereference_bh(htbl->buckets[hash_val]);
892 neigh != NULL;
893 neigh = rcu_dereference_bh(neigh->hnext)) {
894 if (memcmp(daddr, neigh->daddr, INFINIBAND_ALEN) == 0) {
895 /* found, take one ref on behalf of the caller */
896 if (!atomic_inc_not_zero(&neigh->refcnt)) {
897 /* deleted */
898 neigh = NULL;
899 goto out_unlock;
900 }
901 neigh->alive = jiffies;
902 goto out_unlock;
903 }
904 }
905
906out_unlock:
907 rcu_read_unlock_bh();
908 return neigh;
909}
910
911static void __ipoib_reap_neigh(struct ipoib_dev_priv *priv)
912{
913 struct ipoib_neigh_table *ntbl = &priv->ntbl;
914 struct ipoib_neigh_hash *htbl;
915 unsigned long neigh_obsolete;
916 unsigned long dt;
917 unsigned long flags;
918 int i;
919
920 if (test_bit(IPOIB_STOP_NEIGH_GC, &priv->flags))
921 return;
922
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000923 spin_lock_irqsave(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000924
925 htbl = rcu_dereference_protected(ntbl->htbl,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000926 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000927
928 if (!htbl)
929 goto out_unlock;
930
931 /* neigh is obsolete if it was idle for two GC periods */
932 dt = 2 * arp_tbl.gc_interval;
933 neigh_obsolete = jiffies - dt;
934 /* handle possible race condition */
935 if (test_bit(IPOIB_STOP_NEIGH_GC, &priv->flags))
936 goto out_unlock;
937
938 for (i = 0; i < htbl->size; i++) {
939 struct ipoib_neigh *neigh;
940 struct ipoib_neigh __rcu **np = &htbl->buckets[i];
941
942 while ((neigh = rcu_dereference_protected(*np,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000943 lockdep_is_held(&priv->lock))) != NULL) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000944 /* was the neigh idle for two GC periods */
945 if (time_after(neigh_obsolete, neigh->alive)) {
946 rcu_assign_pointer(*np,
947 rcu_dereference_protected(neigh->hnext,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000948 lockdep_is_held(&priv->lock)));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000949 /* remove from path/mc list */
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000950 list_del(&neigh->list);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000951 call_rcu(&neigh->rcu, ipoib_neigh_reclaim);
952 } else {
953 np = &neigh->hnext;
954 }
955
956 }
957 }
958
959out_unlock:
Shlomo Pongratzb5120a62012-08-29 15:14:34 +0000960 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000961}
962
963static void ipoib_reap_neigh(struct work_struct *work)
964{
965 struct ipoib_dev_priv *priv =
966 container_of(work, struct ipoib_dev_priv, neigh_reap_task.work);
967
968 __ipoib_reap_neigh(priv);
969
970 if (!test_bit(IPOIB_STOP_NEIGH_GC, &priv->flags))
Doug Ledford0b395782015-02-21 19:27:03 -0500971 queue_delayed_work(priv->wq, &priv->neigh_reap_task,
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000972 arp_tbl.gc_interval);
973}
974
975
976static struct ipoib_neigh *ipoib_neigh_ctor(u8 *daddr,
Moni Shoua732a2172007-10-09 19:43:36 -0700977 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300978{
979 struct ipoib_neigh *neigh;
980
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000981 neigh = kzalloc(sizeof *neigh, GFP_ATOMIC);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300982 if (!neigh)
983 return NULL;
984
Moni Shoua732a2172007-10-09 19:43:36 -0700985 neigh->dev = dev;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000986 memcpy(&neigh->daddr, daddr, sizeof(neigh->daddr));
Roland Dreier82b39912006-12-12 14:48:18 -0800987 skb_queue_head_init(&neigh->queue);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000988 INIT_LIST_HEAD(&neigh->list);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200989 ipoib_cm_set(neigh, NULL);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000990 /* one ref on behalf of the caller */
991 atomic_set(&neigh->refcnt, 1);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300992
993 return neigh;
994}
995
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000996struct ipoib_neigh *ipoib_neigh_alloc(u8 *daddr,
997 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300998{
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +0000999 struct ipoib_dev_priv *priv = netdev_priv(dev);
1000 struct ipoib_neigh_table *ntbl = &priv->ntbl;
1001 struct ipoib_neigh_hash *htbl;
1002 struct ipoib_neigh *neigh;
1003 u32 hash_val;
1004
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001005 htbl = rcu_dereference_protected(ntbl->htbl,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001006 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001007 if (!htbl) {
1008 neigh = NULL;
1009 goto out_unlock;
1010 }
1011
1012 /* need to add a new neigh, but maybe some other thread succeeded?
1013 * recalc hash, maybe hash resize took place so we do a search
1014 */
1015 hash_val = ipoib_addr_hash(htbl, daddr);
1016 for (neigh = rcu_dereference_protected(htbl->buckets[hash_val],
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001017 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001018 neigh != NULL;
1019 neigh = rcu_dereference_protected(neigh->hnext,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001020 lockdep_is_held(&priv->lock))) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001021 if (memcmp(daddr, neigh->daddr, INFINIBAND_ALEN) == 0) {
1022 /* found, take one ref on behalf of the caller */
1023 if (!atomic_inc_not_zero(&neigh->refcnt)) {
1024 /* deleted */
1025 neigh = NULL;
1026 break;
1027 }
1028 neigh->alive = jiffies;
1029 goto out_unlock;
1030 }
1031 }
1032
1033 neigh = ipoib_neigh_ctor(daddr, dev);
1034 if (!neigh)
1035 goto out_unlock;
1036
1037 /* one ref on behalf of the hash table */
1038 atomic_inc(&neigh->refcnt);
1039 neigh->alive = jiffies;
1040 /* put in hash */
1041 rcu_assign_pointer(neigh->hnext,
1042 rcu_dereference_protected(htbl->buckets[hash_val],
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001043 lockdep_is_held(&priv->lock)));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001044 rcu_assign_pointer(htbl->buckets[hash_val], neigh);
1045 atomic_inc(&ntbl->entries);
1046
1047out_unlock:
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001048
1049 return neigh;
1050}
1051
1052void ipoib_neigh_dtor(struct ipoib_neigh *neigh)
1053{
1054 /* neigh reference count was dropprd to zero */
1055 struct net_device *dev = neigh->dev;
1056 struct ipoib_dev_priv *priv = netdev_priv(dev);
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +02001057 struct sk_buff *skb;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001058 if (neigh->ah)
1059 ipoib_put_ah(neigh->ah);
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +02001060 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -07001061 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +02001062 dev_kfree_skb_any(skb);
1063 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001064 if (ipoib_cm_get(neigh))
1065 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001066 ipoib_dbg(netdev_priv(dev),
1067 "neigh free for %06x %pI6\n",
1068 IPOIB_QPN(neigh->daddr),
1069 neigh->daddr + 4);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +03001070 kfree(neigh);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001071 if (atomic_dec_and_test(&priv->ntbl.entries)) {
1072 if (test_bit(IPOIB_NEIGH_TBL_FLUSH, &priv->flags))
1073 complete(&priv->ntbl.flushed);
1074 }
Michael S. Tsirkind2e06552006-04-04 19:59:40 +03001075}
1076
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001077static void ipoib_neigh_reclaim(struct rcu_head *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001079 /* Called as a result of removal from hash table */
1080 struct ipoib_neigh *neigh = container_of(rp, struct ipoib_neigh, rcu);
1081 /* note TX context may hold another ref */
1082 ipoib_neigh_put(neigh);
1083}
1084
1085void ipoib_neigh_free(struct ipoib_neigh *neigh)
1086{
1087 struct net_device *dev = neigh->dev;
1088 struct ipoib_dev_priv *priv = netdev_priv(dev);
1089 struct ipoib_neigh_table *ntbl = &priv->ntbl;
1090 struct ipoib_neigh_hash *htbl;
1091 struct ipoib_neigh __rcu **np;
1092 struct ipoib_neigh *n;
1093 u32 hash_val;
1094
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001095 htbl = rcu_dereference_protected(ntbl->htbl,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001096 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001097 if (!htbl)
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001098 return;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001099
1100 hash_val = ipoib_addr_hash(htbl, neigh->daddr);
1101 np = &htbl->buckets[hash_val];
1102 for (n = rcu_dereference_protected(*np,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001103 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001104 n != NULL;
Shlomo Pongratz6c723a62012-08-13 14:39:50 +00001105 n = rcu_dereference_protected(*np,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001106 lockdep_is_held(&priv->lock))) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001107 if (n == neigh) {
1108 /* found */
1109 rcu_assign_pointer(*np,
1110 rcu_dereference_protected(neigh->hnext,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001111 lockdep_is_held(&priv->lock)));
Jim Foraker49b8e742013-08-08 17:44:22 -07001112 /* remove from parent list */
1113 list_del(&neigh->list);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001114 call_rcu(&neigh->rcu, ipoib_neigh_reclaim);
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001115 return;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001116 } else {
1117 np = &n->hnext;
1118 }
1119 }
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001120}
1121
1122static int ipoib_neigh_hash_init(struct ipoib_dev_priv *priv)
1123{
1124 struct ipoib_neigh_table *ntbl = &priv->ntbl;
1125 struct ipoib_neigh_hash *htbl;
1126 struct ipoib_neigh **buckets;
1127 u32 size;
1128
1129 clear_bit(IPOIB_NEIGH_TBL_FLUSH, &priv->flags);
1130 ntbl->htbl = NULL;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001131 htbl = kzalloc(sizeof(*htbl), GFP_KERNEL);
1132 if (!htbl)
1133 return -ENOMEM;
1134 set_bit(IPOIB_STOP_NEIGH_GC, &priv->flags);
1135 size = roundup_pow_of_two(arp_tbl.gc_thresh3);
1136 buckets = kzalloc(size * sizeof(*buckets), GFP_KERNEL);
1137 if (!buckets) {
1138 kfree(htbl);
1139 return -ENOMEM;
1140 }
1141 htbl->size = size;
1142 htbl->mask = (size - 1);
1143 htbl->buckets = buckets;
1144 ntbl->htbl = htbl;
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001145 htbl->ntbl = ntbl;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001146 atomic_set(&ntbl->entries, 0);
1147
1148 /* start garbage collection */
1149 clear_bit(IPOIB_STOP_NEIGH_GC, &priv->flags);
Doug Ledford0b395782015-02-21 19:27:03 -05001150 queue_delayed_work(priv->wq, &priv->neigh_reap_task,
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001151 arp_tbl.gc_interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 return 0;
1154}
1155
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001156static void neigh_hash_free_rcu(struct rcu_head *head)
1157{
1158 struct ipoib_neigh_hash *htbl = container_of(head,
1159 struct ipoib_neigh_hash,
1160 rcu);
1161 struct ipoib_neigh __rcu **buckets = htbl->buckets;
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001162 struct ipoib_neigh_table *ntbl = htbl->ntbl;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001163
1164 kfree(buckets);
1165 kfree(htbl);
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001166 complete(&ntbl->deleted);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001167}
1168
1169void ipoib_del_neighs_by_gid(struct net_device *dev, u8 *gid)
1170{
1171 struct ipoib_dev_priv *priv = netdev_priv(dev);
1172 struct ipoib_neigh_table *ntbl = &priv->ntbl;
1173 struct ipoib_neigh_hash *htbl;
1174 unsigned long flags;
1175 int i;
1176
1177 /* remove all neigh connected to a given path or mcast */
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001178 spin_lock_irqsave(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001179
1180 htbl = rcu_dereference_protected(ntbl->htbl,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001181 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001182
1183 if (!htbl)
1184 goto out_unlock;
1185
1186 for (i = 0; i < htbl->size; i++) {
1187 struct ipoib_neigh *neigh;
1188 struct ipoib_neigh __rcu **np = &htbl->buckets[i];
1189
1190 while ((neigh = rcu_dereference_protected(*np,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001191 lockdep_is_held(&priv->lock))) != NULL) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001192 /* delete neighs belong to this parent */
1193 if (!memcmp(gid, neigh->daddr + 4, sizeof (union ib_gid))) {
1194 rcu_assign_pointer(*np,
1195 rcu_dereference_protected(neigh->hnext,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001196 lockdep_is_held(&priv->lock)));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001197 /* remove from parent list */
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001198 list_del(&neigh->list);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001199 call_rcu(&neigh->rcu, ipoib_neigh_reclaim);
1200 } else {
1201 np = &neigh->hnext;
1202 }
1203
1204 }
1205 }
1206out_unlock:
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001207 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001208}
1209
1210static void ipoib_flush_neighs(struct ipoib_dev_priv *priv)
1211{
1212 struct ipoib_neigh_table *ntbl = &priv->ntbl;
1213 struct ipoib_neigh_hash *htbl;
1214 unsigned long flags;
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001215 int i, wait_flushed = 0;
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001216
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001217 init_completion(&priv->ntbl.flushed);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001218
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001219 spin_lock_irqsave(&priv->lock, flags);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001220
1221 htbl = rcu_dereference_protected(ntbl->htbl,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001222 lockdep_is_held(&priv->lock));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001223 if (!htbl)
1224 goto out_unlock;
1225
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001226 wait_flushed = atomic_read(&priv->ntbl.entries);
1227 if (!wait_flushed)
1228 goto free_htbl;
1229
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001230 for (i = 0; i < htbl->size; i++) {
1231 struct ipoib_neigh *neigh;
1232 struct ipoib_neigh __rcu **np = &htbl->buckets[i];
1233
1234 while ((neigh = rcu_dereference_protected(*np,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001235 lockdep_is_held(&priv->lock))) != NULL) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001236 rcu_assign_pointer(*np,
1237 rcu_dereference_protected(neigh->hnext,
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001238 lockdep_is_held(&priv->lock)));
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001239 /* remove from path/mc list */
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001240 list_del(&neigh->list);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001241 call_rcu(&neigh->rcu, ipoib_neigh_reclaim);
1242 }
1243 }
1244
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001245free_htbl:
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001246 rcu_assign_pointer(ntbl->htbl, NULL);
1247 call_rcu(&htbl->rcu, neigh_hash_free_rcu);
1248
1249out_unlock:
Shlomo Pongratzb5120a62012-08-29 15:14:34 +00001250 spin_unlock_irqrestore(&priv->lock, flags);
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001251 if (wait_flushed)
1252 wait_for_completion(&priv->ntbl.flushed);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001253}
1254
1255static void ipoib_neigh_hash_uninit(struct net_device *dev)
1256{
1257 struct ipoib_dev_priv *priv = netdev_priv(dev);
1258 int stopped;
1259
1260 ipoib_dbg(priv, "ipoib_neigh_hash_uninit\n");
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001261 init_completion(&priv->ntbl.deleted);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001262 set_bit(IPOIB_NEIGH_TBL_FLUSH, &priv->flags);
1263
1264 /* Stop GC if called at init fail need to cancel work */
1265 stopped = test_and_set_bit(IPOIB_STOP_NEIGH_GC, &priv->flags);
1266 if (!stopped)
1267 cancel_delayed_work(&priv->neigh_reap_task);
1268
Shlomo Pongratz66172c02012-08-29 15:14:33 +00001269 ipoib_flush_neighs(priv);
1270
1271 wait_for_completion(&priv->ntbl.deleted);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001272}
1273
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
1276{
1277 struct ipoib_dev_priv *priv = netdev_priv(dev);
1278
1279 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -07001280 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 GFP_KERNEL);
1282 if (!priv->rx_ring) {
1283 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -07001284 ca->name, ipoib_recvq_size);
Doug Ledfordbe7aa662015-02-21 19:27:00 -05001285 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Joe Perches948579c2010-11-05 03:07:36 +00001288 priv->tx_ring = vzalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (!priv->tx_ring) {
1290 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -07001291 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 goto out_rx_ring_cleanup;
1293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Michael S. Tsirkin1b524962007-08-16 15:36:16 +03001295 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 if (ipoib_ib_dev_init(dev, ca, port))
1298 goto out_tx_ring_cleanup;
1299
Doug Ledfordbe7aa662015-02-21 19:27:00 -05001300 /*
1301 * Must be after ipoib_ib_dev_init so we can allocate a per
1302 * device wq there and use it here
1303 */
1304 if (ipoib_neigh_hash_init(priv) < 0)
1305 goto out_dev_uninit;
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return 0;
1308
Doug Ledfordbe7aa662015-02-21 19:27:00 -05001309out_dev_uninit:
1310 ipoib_ib_dev_cleanup(dev);
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312out_tx_ring_cleanup:
Roland Dreier10313cb2008-03-12 07:51:03 -07001313 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315out_rx_ring_cleanup:
1316 kfree(priv->rx_ring);
1317
1318out:
1319 return -ENOMEM;
1320}
1321
1322void ipoib_dev_cleanup(struct net_device *dev)
1323{
1324 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001325 LIST_HEAD(head);
1326
1327 ASSERT_RTNL();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Roland Dreier1732b0e2005-11-07 10:33:11 -08001329 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 /* Delete any child interfaces first */
1332 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001333 /* Stop GC on child */
1334 set_bit(IPOIB_STOP_NEIGH_GC, &cpriv->flags);
1335 cancel_delayed_work(&cpriv->neigh_reap_task);
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001336 unregister_netdevice_queue(cpriv->dev, &head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001338 unregister_netdevice_many(&head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Doug Ledfordbe7aa662015-02-21 19:27:00 -05001340 /*
1341 * Must be before ipoib_ib_dev_cleanup or we delete an in use
1342 * work queue
1343 */
1344 ipoib_neigh_hash_uninit(dev);
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ipoib_ib_dev_cleanup(dev);
1347
Hal Rosenstock92a6b342005-08-13 20:50:27 -07001348 kfree(priv->rx_ring);
Roland Dreier10313cb2008-03-12 07:51:03 -07001349 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Hal Rosenstock92a6b342005-08-13 20:50:27 -07001351 priv->rx_ring = NULL;
1352 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -07001355static const struct header_ops ipoib_header_ops = {
1356 .create = ipoib_hard_header,
1357};
1358
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001359static const struct net_device_ops ipoib_netdev_ops = {
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001360 .ndo_uninit = ipoib_uninit,
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001361 .ndo_open = ipoib_open,
1362 .ndo_stop = ipoib_stop,
1363 .ndo_change_mtu = ipoib_change_mtu,
Michał Mirosław3d96c742011-04-19 00:43:20 +00001364 .ndo_fix_features = ipoib_fix_features,
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001365 .ndo_start_xmit = ipoib_start_xmit,
1366 .ndo_tx_timeout = ipoib_timeout,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001367 .ndo_set_rx_mode = ipoib_set_mcast_list,
Nicolas Dichtel5aa7add2015-04-02 17:07:07 +02001368 .ndo_get_iflink = ipoib_get_iflink,
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001369};
1370
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001371void ipoib_setup(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 struct ipoib_dev_priv *priv = netdev_priv(dev);
1374
Stephen Hemmingerfe8114e2009-03-20 19:35:32 +00001375 dev->netdev_ops = &ipoib_netdev_ops;
Roland Dreier2337f802007-10-23 19:57:54 -07001376 dev->header_ops = &ipoib_header_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001377
Eli Cohen82c24c12008-04-16 21:09:32 -07001378 ipoib_set_ethtool_ops(dev);
1379
Michal Schmidt7f1a3862013-08-21 18:50:22 +02001380 netif_napi_add(dev, &priv->napi, ipoib_poll, NAPI_POLL_WEIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Roland Dreier2337f802007-10-23 19:57:54 -07001382 dev->watchdog_timeo = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Roland Dreier2337f802007-10-23 19:57:54 -07001384 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Roland Dreier936d7de2012-02-07 14:51:21 +00001386 dev->hard_header_len = IPOIB_ENCAP_LEN;
Roland Dreier2337f802007-10-23 19:57:54 -07001387 dev->addr_len = INFINIBAND_ALEN;
1388 dev->type = ARPHRD_INFINIBAND;
1389 dev->tx_queue_len = ipoib_sendq_size * 2;
Eli Coheneb14032f2008-01-30 18:30:46 +02001390 dev->features = (NETIF_F_VLAN_CHALLENGED |
Eli Coheneb14032f2008-01-30 18:30:46 +02001391 NETIF_F_HIGHDMA);
Eric Dumazet02875872014-10-05 18:38:35 -07001392 netif_keep_dst(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 priv->dev = dev;
1397
1398 spin_lock_init(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Erez Shitritf47944c2013-10-16 17:37:49 +03001400 init_rwsem(&priv->vlan_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
1402 INIT_LIST_HEAD(&priv->path_list);
1403 INIT_LIST_HEAD(&priv->child_intfs);
1404 INIT_LIST_HEAD(&priv->dead_ahs);
1405 INIT_LIST_HEAD(&priv->multicast_list);
1406
David Howellsc4028952006-11-22 14:57:56 +00001407 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
Yossi Etigine8224e42008-09-16 11:57:45 -07001408 INIT_WORK(&priv->carrier_on_task, ipoib_mcast_carrier_on_task);
Moni Shouaee1e2c82008-07-14 23:48:49 -07001409 INIT_WORK(&priv->flush_light, ipoib_ib_dev_flush_light);
1410 INIT_WORK(&priv->flush_normal, ipoib_ib_dev_flush_normal);
1411 INIT_WORK(&priv->flush_heavy, ipoib_ib_dev_flush_heavy);
David Howellsc4028952006-11-22 14:57:56 +00001412 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1413 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001414 INIT_DELAYED_WORK(&priv->neigh_reap_task, ipoib_reap_neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415}
1416
1417struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1418{
1419 struct net_device *dev;
1420
Tom Gundersenc835a672014-07-14 16:37:24 +02001421 dev = alloc_netdev((int)sizeof(struct ipoib_dev_priv), name,
1422 NET_NAME_UNKNOWN, ipoib_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (!dev)
1424 return NULL;
1425
1426 return netdev_priv(dev);
1427}
1428
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001429static ssize_t show_pkey(struct device *dev,
1430 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001432 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 return sprintf(buf, "0x%04x\n", priv->pkey);
1435}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001436static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001438static ssize_t show_umcast(struct device *dev,
1439 struct device_attribute *attr, char *buf)
1440{
1441 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1442
1443 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1444}
1445
Or Gerlitz862096a2012-09-27 12:06:02 +00001446void ipoib_set_umcast(struct net_device *ndev, int umcast_val)
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001447{
Or Gerlitz862096a2012-09-27 12:06:02 +00001448 struct ipoib_dev_priv *priv = netdev_priv(ndev);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001449
1450 if (umcast_val > 0) {
1451 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1452 ipoib_warn(priv, "ignoring multicast groups joined directly "
1453 "by userspace\n");
1454 } else
1455 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
Or Gerlitz862096a2012-09-27 12:06:02 +00001456}
1457
1458static ssize_t set_umcast(struct device *dev,
1459 struct device_attribute *attr,
1460 const char *buf, size_t count)
1461{
1462 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1463
1464 ipoib_set_umcast(to_net_dev(dev), umcast_val);
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001465
1466 return count;
1467}
1468static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1469
1470int ipoib_add_umcast_attr(struct net_device *dev)
1471{
1472 return device_create_file(&dev->dev, &dev_attr_umcast);
1473}
1474
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001475static ssize_t create_child(struct device *dev,
1476 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 const char *buf, size_t count)
1478{
1479 int pkey;
1480 int ret;
1481
1482 if (sscanf(buf, "%i", &pkey) != 1)
1483 return -EINVAL;
1484
Or Gerlitz3d790a42013-07-18 14:02:31 +03001485 if (pkey <= 0 || pkey > 0xffff || pkey == 0x8000)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return -EINVAL;
1487
Roland Dreier4ce05932005-08-19 12:03:17 -07001488 /*
1489 * Set the full membership bit, so that we join the right
1490 * broadcast group, etc.
1491 */
1492 pkey |= 0x8000;
1493
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001494 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 return ret ? ret : count;
1497}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001498static DEVICE_ATTR(create_child, S_IWUSR, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001500static ssize_t delete_child(struct device *dev,
1501 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 const char *buf, size_t count)
1503{
1504 int pkey;
1505 int ret;
1506
1507 if (sscanf(buf, "%i", &pkey) != 1)
1508 return -EINVAL;
1509
1510 if (pkey < 0 || pkey > 0xffff)
1511 return -EINVAL;
1512
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001513 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 return ret ? ret : count;
1516
1517}
Or Gerlitz7a52b342010-06-06 04:59:16 +00001518static DEVICE_ATTR(delete_child, S_IWUSR, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520int ipoib_add_pkey_attr(struct net_device *dev)
1521{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001522 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523}
1524
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001525int ipoib_set_dev_features(struct ipoib_dev_priv *priv, struct ib_device *hca)
1526{
1527 struct ib_device_attr *device_attr;
1528 int result = -ENOMEM;
1529
1530 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1531 if (!device_attr) {
1532 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1533 hca->name, sizeof *device_attr);
1534 return result;
1535 }
1536
1537 result = ib_query_device(hca, device_attr);
1538 if (result) {
1539 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1540 hca->name, result);
1541 kfree(device_attr);
1542 return result;
1543 }
1544 priv->hca_caps = device_attr->device_cap_flags;
1545
1546 kfree(device_attr);
1547
1548 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
Michał Mirosław3d96c742011-04-19 00:43:20 +00001549 priv->dev->hw_features = NETIF_F_SG |
1550 NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
1551
1552 if (priv->hca_caps & IB_DEVICE_UD_TSO)
1553 priv->dev->hw_features |= NETIF_F_TSO;
1554
1555 priv->dev->features |= priv->dev->hw_features;
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001556 }
1557
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001558 return 0;
1559}
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561static struct net_device *ipoib_add_port(const char *format,
1562 struct ib_device *hca, u8 port)
1563{
1564 struct ipoib_dev_priv *priv;
Shirley Mabc7b3a32008-04-23 11:55:45 -07001565 struct ib_port_attr attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 int result = -ENOMEM;
1567
1568 priv = ipoib_intf_alloc(format);
1569 if (!priv)
1570 goto alloc_mem_failed;
1571
1572 SET_NETDEV_DEV(priv->dev, hca->dma_device);
Eli Cohenc3aa9b12010-09-20 07:05:06 +00001573 priv->dev->dev_id = port - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Shirley Mabc7b3a32008-04-23 11:55:45 -07001575 if (!ib_query_port(hca, port, &attr))
1576 priv->max_ib_mtu = ib_mtu_enum_to_int(attr.max_mtu);
1577 else {
1578 printk(KERN_WARNING "%s: ib_query_port %d failed\n",
1579 hca->name, port);
1580 goto device_init_failed;
1581 }
1582
1583 /* MTU will be reset when mcast join happens */
1584 priv->dev->mtu = IPOIB_UD_MTU(priv->max_ib_mtu);
1585 priv->mcast_mtu = priv->admin_mtu = priv->dev->mtu;
1586
David Miller596b9b62011-07-25 00:01:25 +00001587 priv->dev->neigh_priv_len = sizeof(struct ipoib_neigh);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1590 if (result) {
1591 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1592 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001593 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595
Or Gerlitz83bb63f2008-10-22 15:49:49 -07001596 if (ipoib_set_dev_features(priv, hca))
Eli Cohen60461362008-04-16 21:01:10 -07001597 goto device_init_failed;
Vladimir Sokolovskyaf40da82008-07-14 23:48:48 -07001598
Roland Dreier4ce05932005-08-19 12:03:17 -07001599 /*
1600 * Set the full membership bit, so that we join the right
1601 * broadcast group, etc.
1602 */
1603 priv->pkey |= 0x8000;
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 priv->dev->broadcast[8] = priv->pkey >> 8;
1606 priv->dev->broadcast[9] = priv->pkey & 0xff;
1607
1608 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1609 if (result) {
1610 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1611 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001612 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 } else
1614 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 result = ipoib_dev_init(priv->dev, hca, port);
1617 if (result < 0) {
1618 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1619 hca->name, port, result);
1620 goto device_init_failed;
1621 }
1622
1623 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1624 priv->ca, ipoib_event);
1625 result = ib_register_event_handler(&priv->event_handler);
1626 if (result < 0) {
1627 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1628 "port %d (ret = %d)\n",
1629 hca->name, port, result);
1630 goto event_failed;
1631 }
1632
1633 result = register_netdev(priv->dev);
1634 if (result) {
1635 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1636 hca->name, port, result);
1637 goto register_failed;
1638 }
1639
Roland Dreier1732b0e2005-11-07 10:33:11 -08001640 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001642 if (ipoib_cm_add_mode_attr(priv->dev))
1643 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (ipoib_add_pkey_attr(priv->dev))
1645 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001646 if (ipoib_add_umcast_attr(priv->dev))
1647 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001648 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001650 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 goto sysfs_failed;
1652
1653 return priv->dev;
1654
1655sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001656 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 unregister_netdev(priv->dev);
1658
1659register_failed:
1660 ib_unregister_event_handler(&priv->event_handler);
Doug Ledford0b395782015-02-21 19:27:03 -05001661 flush_workqueue(ipoib_workqueue);
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001662 /* Stop GC if started before flush */
1663 set_bit(IPOIB_STOP_NEIGH_GC, &priv->flags);
1664 cancel_delayed_work(&priv->neigh_reap_task);
Doug Ledford0b395782015-02-21 19:27:03 -05001665 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667event_failed:
1668 ipoib_dev_cleanup(priv->dev);
1669
1670device_init_failed:
1671 free_netdev(priv->dev);
1672
1673alloc_mem_failed:
1674 return ERR_PTR(result);
1675}
1676
1677static void ipoib_add_one(struct ib_device *device)
1678{
1679 struct list_head *dev_list;
1680 struct net_device *dev;
1681 struct ipoib_dev_priv *priv;
1682 int s, e, p;
1683
Tom Tucker07ebafb2006-08-03 16:02:42 -05001684 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1685 return;
1686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1688 if (!dev_list)
1689 return;
1690
1691 INIT_LIST_HEAD(dev_list);
1692
Tom Tucker07ebafb2006-08-03 16:02:42 -05001693 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 s = 0;
1695 e = 0;
1696 } else {
1697 s = 1;
1698 e = device->phys_port_cnt;
1699 }
1700
1701 for (p = s; p <= e; ++p) {
Eli Cohen7b4c8762010-09-27 17:51:11 -07001702 if (rdma_port_get_link_layer(device, p) != IB_LINK_LAYER_INFINIBAND)
1703 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 dev = ipoib_add_port("ib%d", device, p);
1705 if (!IS_ERR(dev)) {
1706 priv = netdev_priv(dev);
1707 list_add_tail(&priv->list, dev_list);
1708 }
1709 }
1710
1711 ib_set_client_data(device, &ipoib_client, dev_list);
1712}
1713
1714static void ipoib_remove_one(struct ib_device *device)
1715{
1716 struct ipoib_dev_priv *priv, *tmp;
1717 struct list_head *dev_list;
1718
Tom Tucker07ebafb2006-08-03 16:02:42 -05001719 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1720 return;
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 dev_list = ib_get_client_data(device, &ipoib_client);
Itai Garbi5a2815f2013-02-19 15:40:24 +00001723 if (!dev_list)
1724 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
1726 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1727 ib_unregister_event_handler(&priv->event_handler);
Doug Ledford0b395782015-02-21 19:27:03 -05001728 flush_workqueue(ipoib_workqueue);
Roland Dreiera77a57a2008-08-19 15:01:32 -07001729
1730 rtnl_lock();
1731 dev_change_flags(priv->dev, priv->dev->flags & ~IFF_UP);
1732 rtnl_unlock();
1733
Shlomo Pongratzb63b70d2012-07-24 17:05:22 +00001734 /* Stop GC */
1735 set_bit(IPOIB_STOP_NEIGH_GC, &priv->flags);
1736 cancel_delayed_work(&priv->neigh_reap_task);
Doug Ledford0b395782015-02-21 19:27:03 -05001737 flush_workqueue(priv->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 unregister_netdev(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 free_netdev(priv->dev);
1741 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001742
1743 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
1746static int __init ipoib_init_module(void)
1747{
1748 int ret;
1749
Shirley Ma0f485252006-04-10 09:43:58 -07001750 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1751 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1752 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1753
1754 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1755 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001756 ipoib_sendq_size = max3(ipoib_sendq_size, 2 * MAX_SEND_CQE, IPOIB_MIN_QUEUE_SIZE);
Pradeep Satyanarayana68e995a2008-01-25 14:15:24 -08001757#ifdef CONFIG_INFINIBAND_IPOIB_CM
1758 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1759#endif
Shirley Ma0f485252006-04-10 09:43:58 -07001760
Eli Cohenf89271da2008-07-14 23:48:44 -07001761 /*
1762 * When copying small received packets, we only copy from the
1763 * linear data part of the SKB, so we rely on this condition.
1764 */
1765 BUILD_BUG_ON(IPOIB_CM_COPYBREAK > IPOIB_CM_HEAD_SIZE);
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 ret = ipoib_register_debugfs();
1768 if (ret)
1769 return ret;
1770
1771 /*
Doug Ledford0b395782015-02-21 19:27:03 -05001772 * We create a global workqueue here that is used for all flush
1773 * operations. However, if you attempt to flush a workqueue
1774 * from a task on that same workqueue, it deadlocks the system.
1775 * We want to be able to flush the tasks associated with a
1776 * specific net device, so we also create a workqueue for each
1777 * netdevice. We queue up the tasks for that device only on
1778 * its private workqueue, and we only queue up flush events
1779 * on our global flush workqueue. This avoids the deadlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 */
Doug Ledford0b395782015-02-21 19:27:03 -05001781 ipoib_workqueue = create_singlethread_workqueue("ipoib_flush");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (!ipoib_workqueue) {
1783 ret = -ENOMEM;
1784 goto err_fs;
1785 }
1786
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001787 ib_sa_register_client(&ipoib_sa_client);
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 ret = ib_register_client(&ipoib_client);
1790 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001791 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001793 ret = ipoib_netlink_init();
1794 if (ret)
1795 goto err_client;
1796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 return 0;
1798
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001799err_client:
1800 ib_unregister_client(&ipoib_client);
1801
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001802err_sa:
1803 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 destroy_workqueue(ipoib_workqueue);
1805
Roland Dreier9adec1a2005-04-16 15:26:07 -07001806err_fs:
1807 ipoib_unregister_debugfs();
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 return ret;
1810}
1811
1812static void __exit ipoib_cleanup_module(void)
1813{
Or Gerlitz9baa0b02012-09-13 05:56:36 +00001814 ipoib_netlink_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001816 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001817 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 destroy_workqueue(ipoib_workqueue);
1819}
1820
1821module_init(ipoib_init_module);
1822module_exit(ipoib_cleanup_module);