blob: 362610d870e4328935f8be02f4ffaa0faae96ea6 [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.
33 *
34 * $Id: ipoib_main.c 1377 2004-12-23 19:57:12Z roland $
35 */
36
37#include "ipoib.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/module.h>
40
41#include <linux/init.h>
42#include <linux/slab.h>
Shirley Ma0f485252006-04-10 09:43:58 -070043#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <linux/if_arp.h> /* For ARPHRD_xxx */
46
47#include <linux/ip.h>
48#include <linux/in.h>
49
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020050#include <net/dst.h>
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052MODULE_AUTHOR("Roland Dreier");
53MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
54MODULE_LICENSE("Dual BSD/GPL");
55
Shirley Ma0f485252006-04-10 09:43:58 -070056int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
57int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
58
59module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
60MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
61module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
62MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
65int ipoib_debug_level;
66
67module_param_named(debug_level, ipoib_debug_level, int, 0644);
68MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
69#endif
70
Roland Dreier1732b0e2005-11-07 10:33:11 -080071struct ipoib_path_iter {
72 struct net_device *dev;
73 struct ipoib_path path;
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static const u8 ipv4_bcast_addr[] = {
77 0x00, 0xff, 0xff, 0xff,
78 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
79 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
80};
81
82struct workqueue_struct *ipoib_workqueue;
83
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -070084struct ib_sa_client ipoib_sa_client;
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086static void ipoib_add_one(struct ib_device *device);
87static void ipoib_remove_one(struct ib_device *device);
88
89static struct ib_client ipoib_client = {
90 .name = "ipoib",
91 .add = ipoib_add_one,
92 .remove = ipoib_remove_one
93};
94
95int ipoib_open(struct net_device *dev)
96{
97 struct ipoib_dev_priv *priv = netdev_priv(dev);
98
99 ipoib_dbg(priv, "bringing up interface\n");
100
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700101 napi_enable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
103
104 if (ipoib_pkey_dev_delay_open(dev))
105 return 0;
106
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700107 if (ipoib_ib_dev_open(dev)) {
108 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return -EINVAL;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Roland Dreier267ee882005-11-29 10:55:58 -0800112 if (ipoib_ib_dev_up(dev)) {
Yosef Etigin26bbf132007-05-19 08:51:54 -0700113 ipoib_ib_dev_stop(dev, 1);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700114 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return -EINVAL;
Roland Dreier267ee882005-11-29 10:55:58 -0800116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
119 struct ipoib_dev_priv *cpriv;
120
121 /* Bring up any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800122 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 list_for_each_entry(cpriv, &priv->child_intfs, list) {
124 int flags;
125
126 flags = cpriv->dev->flags;
127 if (flags & IFF_UP)
128 continue;
129
130 dev_change_flags(cpriv->dev, flags | IFF_UP);
131 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800132 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 netif_start_queue(dev);
136
137 return 0;
138}
139
140static int ipoib_stop(struct net_device *dev)
141{
142 struct ipoib_dev_priv *priv = netdev_priv(dev);
143
144 ipoib_dbg(priv, "stopping interface\n");
145
146 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700147 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 netif_stop_queue(dev);
150
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200151 clear_bit(IPOIB_FLAG_NETIF_STOPPED, &priv->flags);
152
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800153 /*
154 * Now flush workqueue to make sure a scheduled task doesn't
155 * bring our internal state back up.
156 */
157 flush_workqueue(ipoib_workqueue);
158
159 ipoib_ib_dev_down(dev, 1);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700160 ipoib_ib_dev_stop(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
163 struct ipoib_dev_priv *cpriv;
164
165 /* Bring down any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800166 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 list_for_each_entry(cpriv, &priv->child_intfs, list) {
168 int flags;
169
170 flags = cpriv->dev->flags;
171 if (!(flags & IFF_UP))
172 continue;
173
174 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
175 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800176 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178
179 return 0;
180}
181
182static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
183{
184 struct ipoib_dev_priv *priv = netdev_priv(dev);
185
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200186 /* dev->mtu > 2K ==> connected mode */
187 if (ipoib_cm_admin_enabled(dev) && new_mtu <= IPOIB_CM_MTU) {
188 if (new_mtu > priv->mcast_mtu)
189 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
190 priv->mcast_mtu);
191 dev->mtu = new_mtu;
192 return 0;
193 }
194
195 if (new_mtu > IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EINVAL;
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 priv->admin_mtu = new_mtu;
200
201 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
202
203 return 0;
204}
205
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300206static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 struct ipoib_dev_priv *priv = netdev_priv(dev);
209 struct rb_node *n = priv->path_tree.rb_node;
210 struct ipoib_path *path;
211 int ret;
212
213 while (n) {
214 path = rb_entry(n, struct ipoib_path, rb_node);
215
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300216 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 sizeof (union ib_gid));
218
219 if (ret < 0)
220 n = n->rb_left;
221 else if (ret > 0)
222 n = n->rb_right;
223 else
224 return path;
225 }
226
227 return NULL;
228}
229
230static int __path_add(struct net_device *dev, struct ipoib_path *path)
231{
232 struct ipoib_dev_priv *priv = netdev_priv(dev);
233 struct rb_node **n = &priv->path_tree.rb_node;
234 struct rb_node *pn = NULL;
235 struct ipoib_path *tpath;
236 int ret;
237
238 while (*n) {
239 pn = *n;
240 tpath = rb_entry(pn, struct ipoib_path, rb_node);
241
242 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
243 sizeof (union ib_gid));
244 if (ret < 0)
245 n = &pn->rb_left;
246 else if (ret > 0)
247 n = &pn->rb_right;
248 else
249 return -EEXIST;
250 }
251
252 rb_link_node(&path->rb_node, pn, n);
253 rb_insert_color(&path->rb_node, &priv->path_tree);
254
255 list_add_tail(&path->list, &priv->path_list);
256
257 return 0;
258}
259
260static void path_free(struct net_device *dev, struct ipoib_path *path)
261{
262 struct ipoib_dev_priv *priv = netdev_priv(dev);
263 struct ipoib_neigh *neigh, *tn;
264 struct sk_buff *skb;
265 unsigned long flags;
266
267 while ((skb = __skb_dequeue(&path->queue)))
268 dev_kfree_skb_irq(skb);
269
270 spin_lock_irqsave(&priv->lock, flags);
271
272 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
273 /*
274 * It's safe to call ipoib_put_ah() inside priv->lock
275 * here, because we know that path->ah will always
276 * hold one more reference, so ipoib_put_ah() will
277 * never do more than decrement the ref count.
278 */
279 if (neigh->ah)
280 ipoib_put_ah(neigh->ah);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300281
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200282 ipoib_neigh_free(dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
285 spin_unlock_irqrestore(&priv->lock, flags);
286
287 if (path->ah)
288 ipoib_put_ah(path->ah);
289
290 kfree(path);
291}
292
Roland Dreier1732b0e2005-11-07 10:33:11 -0800293#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
294
295struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
296{
297 struct ipoib_path_iter *iter;
298
299 iter = kmalloc(sizeof *iter, GFP_KERNEL);
300 if (!iter)
301 return NULL;
302
303 iter->dev = dev;
304 memset(iter->path.pathrec.dgid.raw, 0, 16);
305
306 if (ipoib_path_iter_next(iter)) {
307 kfree(iter);
308 return NULL;
309 }
310
311 return iter;
312}
313
314int ipoib_path_iter_next(struct ipoib_path_iter *iter)
315{
316 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
317 struct rb_node *n;
318 struct ipoib_path *path;
319 int ret = 1;
320
321 spin_lock_irq(&priv->lock);
322
323 n = rb_first(&priv->path_tree);
324
325 while (n) {
326 path = rb_entry(n, struct ipoib_path, rb_node);
327
328 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
329 sizeof (union ib_gid)) < 0) {
330 iter->path = *path;
331 ret = 0;
332 break;
333 }
334
335 n = rb_next(n);
336 }
337
338 spin_unlock_irq(&priv->lock);
339
340 return ret;
341}
342
343void ipoib_path_iter_read(struct ipoib_path_iter *iter,
344 struct ipoib_path *path)
345{
346 *path = iter->path;
347}
348
349#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351void ipoib_flush_paths(struct net_device *dev)
352{
353 struct ipoib_dev_priv *priv = netdev_priv(dev);
354 struct ipoib_path *path, *tp;
355 LIST_HEAD(remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300357 spin_lock_irq(&priv->tx_lock);
358 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 list_splice(&priv->path_list, &remove_list);
361 INIT_LIST_HEAD(&priv->path_list);
362
363 list_for_each_entry(path, &remove_list, list)
364 rb_erase(&path->rb_node, &priv->path_tree);
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 list_for_each_entry_safe(path, tp, &remove_list, list) {
367 if (path->query)
368 ib_sa_cancel_query(path->query_id, path->query);
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300369 spin_unlock(&priv->lock);
370 spin_unlock_irq(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 wait_for_completion(&path->done);
372 path_free(dev, path);
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300373 spin_lock_irq(&priv->tx_lock);
374 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300376 spin_unlock(&priv->lock);
377 spin_unlock_irq(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380static void path_rec_completion(int status,
381 struct ib_sa_path_rec *pathrec,
382 void *path_ptr)
383{
384 struct ipoib_path *path = path_ptr;
385 struct net_device *dev = path->dev;
386 struct ipoib_dev_priv *priv = netdev_priv(dev);
387 struct ipoib_ah *ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700388 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct sk_buff_head skqueue;
390 struct sk_buff *skb;
391 unsigned long flags;
392
Roland Dreier843613b2007-02-26 12:57:08 -0800393 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
395 be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
396 else
397 ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
398 status, IPOIB_GID_ARG(path->pathrec.dgid));
399
400 skb_queue_head_init(&skqueue);
401
402 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700403 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700405 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
406 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408
409 spin_lock_irqsave(&priv->lock, flags);
410
411 path->ah = ah;
412
413 if (ah) {
414 path->pathrec = *pathrec;
415
416 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
417 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
418
419 while ((skb = __skb_dequeue(&path->queue)))
420 __skb_queue_tail(&skqueue, skb);
421
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700422 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 kref_get(&path->ah->ref);
424 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300425 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
426 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200428 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
429 if (!ipoib_cm_get(neigh))
430 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
431 path,
432 neigh));
433 if (!ipoib_cm_get(neigh)) {
434 list_del(&neigh->list);
435 if (neigh->ah)
436 ipoib_put_ah(neigh->ah);
437 ipoib_neigh_free(dev, neigh);
438 continue;
439 }
440 }
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 while ((skb = __skb_dequeue(&neigh->queue)))
443 __skb_queue_tail(&skqueue, skb);
444 }
Roland Dreier5872a9f2005-11-29 10:13:54 -0800445 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Roland Dreier5872a9f2005-11-29 10:13:54 -0800447 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 complete(&path->done);
449
450 spin_unlock_irqrestore(&priv->lock, flags);
451
452 while ((skb = __skb_dequeue(&skqueue))) {
453 skb->dev = dev;
454 if (dev_queue_xmit(skb))
455 ipoib_warn(priv, "dev_queue_xmit failed "
456 "to requeue packet\n");
457 }
458}
459
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300460static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
462 struct ipoib_dev_priv *priv = netdev_priv(dev);
463 struct ipoib_path *path;
464
Roland Dreier21a38482005-11-02 10:07:59 -0800465 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (!path)
467 return NULL;
468
Roland Dreier21a38482005-11-02 10:07:59 -0800469 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471 skb_queue_head_init(&path->queue);
472
473 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300475 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Sean Hefty81668832007-08-02 12:21:31 -0700476 path->pathrec.sgid = priv->local_gid;
477 path->pathrec.pkey = cpu_to_be16(priv->pkey);
478 path->pathrec.numb_path = 1;
479 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 return path;
482}
483
484static int path_rec_start(struct net_device *dev,
485 struct ipoib_path *path)
486{
487 struct ipoib_dev_priv *priv = netdev_priv(dev);
488
489 ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
490 IPOIB_GID_ARG(path->pathrec.dgid));
491
Roland Dreier65c7edd2005-11-28 21:20:34 -0800492 init_completion(&path->done);
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700495 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 &path->pathrec,
497 IB_SA_PATH_REC_DGID |
498 IB_SA_PATH_REC_SGID |
499 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700500 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 IB_SA_PATH_REC_PKEY,
502 1000, GFP_ATOMIC,
503 path_rec_completion,
504 path, &path->query);
505 if (path->query_id < 0) {
506 ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
507 path->query = NULL;
508 return path->query_id;
509 }
510
511 return 0;
512}
513
514static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
515{
516 struct ipoib_dev_priv *priv = netdev_priv(dev);
517 struct ipoib_path *path;
518 struct ipoib_neigh *neigh;
519
Moni Shoua732a2172007-10-09 19:43:36 -0700520 neigh = ipoib_neigh_alloc(skb->dst->neighbour, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (!neigh) {
Roland Dreierde903512007-09-28 15:33:51 -0700522 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 dev_kfree_skb_any(skb);
524 return;
525 }
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /*
528 * We can only be called from ipoib_start_xmit, so we're
529 * inside tx_lock -- no need to save/restore flags.
530 */
531 spin_lock(&priv->lock);
532
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300533 path = __path_find(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (!path) {
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300535 path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300537 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 __path_add(dev, path);
540 }
541
542 list_add_tail(&neigh->list, &path->neigh_list);
543
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800544 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 kref_get(&path->ah->ref);
546 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300547 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
548 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200550 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
551 if (!ipoib_cm_get(neigh))
552 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
553 if (!ipoib_cm_get(neigh)) {
554 list_del(&neigh->list);
555 if (neigh->ah)
556 ipoib_put_ah(neigh->ah);
557 ipoib_neigh_free(dev, neigh);
558 goto err_drop;
559 }
560 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
561 __skb_queue_tail(&neigh->queue, skb);
562 else {
563 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
564 skb_queue_len(&neigh->queue));
565 goto err_drop;
566 }
567 } else
568 ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 } else {
570 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (!path->query && path_rec_start(dev, path))
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300573 goto err_list;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200574
575 __skb_queue_tail(&neigh->queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577
578 spin_unlock(&priv->lock);
579 return;
580
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300581err_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 list_del(&neigh->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300584err_path:
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200585 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200586err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700587 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 dev_kfree_skb_any(skb);
589
590 spin_unlock(&priv->lock);
591}
592
Roland Dreierd70ed602005-09-28 19:56:57 -0700593static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
596
597 /* Look up path record for unicasts */
598 if (skb->dst->neighbour->ha[4] != 0xff) {
599 neigh_add_path(skb, dev);
600 return;
601 }
602
603 /* Add in the P_Key for multicasts */
604 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
605 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300606 ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
610 struct ipoib_pseudoheader *phdr)
611{
612 struct ipoib_dev_priv *priv = netdev_priv(dev);
613 struct ipoib_path *path;
614
615 /*
616 * We can only be called from ipoib_start_xmit, so we're
617 * inside tx_lock -- no need to save/restore flags.
618 */
619 spin_lock(&priv->lock);
620
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300621 path = __path_find(dev, phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (!path) {
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300623 path = path_rec_create(dev, phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (path) {
625 /* put pseudoheader back on for next time */
626 skb_push(skb, sizeof *phdr);
627 __skb_queue_tail(&path->queue, skb);
628
629 if (path_rec_start(dev, path)) {
630 spin_unlock(&priv->lock);
631 path_free(dev, path);
632 return;
633 } else
634 __path_add(dev, path);
635 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700636 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 dev_kfree_skb_any(skb);
638 }
639
640 spin_unlock(&priv->lock);
641 return;
642 }
643
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800644 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
646 be16_to_cpu(path->pathrec.dlid));
647
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200648 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 } else if ((path->query || !path_rec_start(dev, path)) &&
650 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
651 /* put pseudoheader back on for next time */
652 skb_push(skb, sizeof *phdr);
653 __skb_queue_tail(&path->queue, skb);
654 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700655 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 dev_kfree_skb_any(skb);
657 }
658
659 spin_unlock(&priv->lock);
660}
661
662static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
663{
664 struct ipoib_dev_priv *priv = netdev_priv(dev);
665 struct ipoib_neigh *neigh;
666 unsigned long flags;
667
Eli Cohena8bfca02006-09-22 15:22:58 -0700668 if (unlikely(!spin_trylock_irqsave(&priv->tx_lock, flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return NETDEV_TX_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 /*
672 * Check if our queue is stopped. Since we have the LLTX bit
673 * set, we can't rely on netif_stop_queue() preventing our
674 * xmit function from being called with a full queue.
675 */
676 if (unlikely(netif_queue_stopped(dev))) {
677 spin_unlock_irqrestore(&priv->tx_lock, flags);
678 return NETDEV_TX_BUSY;
679 }
680
Eli Cohena8bfca02006-09-22 15:22:58 -0700681 if (likely(skb->dst && skb->dst->neighbour)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
Roland Dreierd70ed602005-09-28 19:56:57 -0700683 ipoib_path_lookup(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 goto out;
685 }
686
687 neigh = *to_ipoib_neigh(skb->dst->neighbour);
688
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200689 if (ipoib_cm_get(neigh)) {
690 if (ipoib_cm_up(neigh)) {
691 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
692 goto out;
693 }
694 } else if (neigh->ah) {
Moni Shoua200d1712007-10-09 19:43:37 -0700695 if (unlikely((memcmp(&neigh->dgid.raw,
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300696 skb->dst->neighbour->ha + 4,
Moni Shoua200d1712007-10-09 19:43:37 -0700697 sizeof(union ib_gid))) ||
698 (neigh->dev != dev))) {
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300699 spin_lock(&priv->lock);
700 /*
701 * It's safe to call ipoib_put_ah() inside
702 * priv->lock here, because we know that
703 * path->ah will always hold one more reference,
704 * so ipoib_put_ah() will never do more than
705 * decrement the ref count.
706 */
707 ipoib_put_ah(neigh->ah);
708 list_del(&neigh->list);
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200709 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300710 spin_unlock(&priv->lock);
711 ipoib_path_lookup(skb, dev);
712 goto out;
713 }
714
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200715 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 goto out;
717 }
718
719 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
720 spin_lock(&priv->lock);
721 __skb_queue_tail(&neigh->queue, skb);
722 spin_unlock(&priv->lock);
723 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700724 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 dev_kfree_skb_any(skb);
726 }
727 } else {
728 struct ipoib_pseudoheader *phdr =
729 (struct ipoib_pseudoheader *) skb->data;
730 skb_pull(skb, sizeof *phdr);
731
732 if (phdr->hwaddr[4] == 0xff) {
733 /* Add in the P_Key for multicast*/
734 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
735 phdr->hwaddr[9] = priv->pkey & 0xff;
736
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300737 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 } else {
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700739 /* unicast GID -- should be ARP or RARP reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700741 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
742 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
744 IPOIB_GID_FMT "\n",
745 skb->dst ? "neigh" : "dst",
Sean Hefty97f52eb2005-08-13 21:05:57 -0700746 be16_to_cpup((__be16 *) skb->data),
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200747 IPOIB_QPN(phdr->hwaddr),
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300748 IPOIB_GID_RAW_ARG(phdr->hwaddr + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 dev_kfree_skb_any(skb);
Roland Dreierde903512007-09-28 15:33:51 -0700750 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 goto out;
752 }
753
754 unicast_arp_send(skb, dev, phdr);
755 }
756 }
757
758out:
759 spin_unlock_irqrestore(&priv->tx_lock, flags);
760
761 return NETDEV_TX_OK;
762}
763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764static void ipoib_timeout(struct net_device *dev)
765{
766 struct ipoib_dev_priv *priv = netdev_priv(dev);
767
Roland Dreier4b2d3192005-10-18 12:20:06 -0700768 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
769 jiffies_to_msecs(jiffies - dev->trans_start));
770 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
771 netif_queue_stopped(dev),
772 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /* XXX reset QP, etc. */
774}
775
776static int ipoib_hard_header(struct sk_buff *skb,
777 struct net_device *dev,
778 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700779 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct ipoib_header *header;
782
783 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
784
785 header->proto = htons(type);
786 header->reserved = 0;
787
788 /*
789 * If we don't have a neighbour structure, stuff the
790 * destination address onto the front of the skb so we can
791 * figure out where to send the packet later.
792 */
Roland Dreieref12d452006-03-29 09:36:46 -0800793 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct ipoib_pseudoheader *phdr =
795 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
796 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
797 }
798
799 return 0;
800}
801
802static void ipoib_set_mcast_list(struct net_device *dev)
803{
804 struct ipoib_dev_priv *priv = netdev_priv(dev);
805
Leonid Arsh7a343d42006-03-23 19:52:51 +0200806 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
807 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
808 return;
809 }
810
Michael S. Tsirkin1ad62a12005-08-24 14:41:51 -0700811 queue_work(ipoib_workqueue, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700814static void ipoib_neigh_cleanup(struct neighbour *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 struct ipoib_neigh *neigh;
817 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
818 unsigned long flags;
819 struct ipoib_ah *ah = NULL;
820
Moni Shoua732a2172007-10-09 19:43:36 -0700821 neigh = *to_ipoib_neigh(n);
822 if (neigh) {
823 priv = netdev_priv(neigh->dev);
824 ipoib_dbg(priv, "neigh_destructor for bonding device: %s\n",
825 n->dev->name);
826 } else
827 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 ipoib_dbg(priv,
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700829 "neigh_cleanup for %06x " IPOIB_GID_FMT "\n",
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200830 IPOIB_QPN(n->ha),
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300831 IPOIB_GID_RAW_ARG(n->ha + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 spin_lock_irqsave(&priv->lock, flags);
834
Moni Shoua732a2172007-10-09 19:43:36 -0700835 if (neigh->ah)
836 ah = neigh->ah;
837 list_del(&neigh->list);
838 ipoib_neigh_free(n->dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 spin_unlock_irqrestore(&priv->lock, flags);
841
842 if (ah)
843 ipoib_put_ah(ah);
844}
845
Moni Shoua732a2172007-10-09 19:43:36 -0700846struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
847 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300848{
849 struct ipoib_neigh *neigh;
850
851 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
852 if (!neigh)
853 return NULL;
854
855 neigh->neighbour = neighbour;
Moni Shoua732a2172007-10-09 19:43:36 -0700856 neigh->dev = dev;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300857 *to_ipoib_neigh(neighbour) = neigh;
Roland Dreier82b39912006-12-12 14:48:18 -0800858 skb_queue_head_init(&neigh->queue);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200859 ipoib_cm_set(neigh, NULL);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300860
861 return neigh;
862}
863
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200864void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300865{
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200866 struct sk_buff *skb;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300867 *to_ipoib_neigh(neigh->neighbour) = NULL;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200868 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -0700869 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200870 dev_kfree_skb_any(skb);
871 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200872 if (ipoib_cm_get(neigh))
873 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300874 kfree(neigh);
875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
878{
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700879 parms->neigh_cleanup = ipoib_neigh_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 return 0;
882}
883
884int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
885{
886 struct ipoib_dev_priv *priv = netdev_priv(dev);
887
888 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -0700889 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 GFP_KERNEL);
891 if (!priv->rx_ring) {
892 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700893 ca->name, ipoib_recvq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto out;
895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Shirley Ma0f485252006-04-10 09:43:58 -0700897 priv->tx_ring = kzalloc(ipoib_sendq_size * sizeof *priv->tx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 GFP_KERNEL);
899 if (!priv->tx_ring) {
900 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700901 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 goto out_rx_ring_cleanup;
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /* priv->tx_head & tx_tail are already 0 */
906
907 if (ipoib_ib_dev_init(dev, ca, port))
908 goto out_tx_ring_cleanup;
909
910 return 0;
911
912out_tx_ring_cleanup:
913 kfree(priv->tx_ring);
914
915out_rx_ring_cleanup:
916 kfree(priv->rx_ring);
917
918out:
919 return -ENOMEM;
920}
921
922void ipoib_dev_cleanup(struct net_device *dev)
923{
924 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
925
Roland Dreier1732b0e2005-11-07 10:33:11 -0800926 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 /* Delete any child interfaces first */
929 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
930 unregister_netdev(cpriv->dev);
931 ipoib_dev_cleanup(cpriv->dev);
932 free_netdev(cpriv->dev);
933 }
934
935 ipoib_ib_dev_cleanup(dev);
936
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700937 kfree(priv->rx_ring);
938 kfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700940 priv->rx_ring = NULL;
941 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
943
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700944static const struct header_ops ipoib_header_ops = {
945 .create = ipoib_hard_header,
946};
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948static void ipoib_setup(struct net_device *dev)
949{
950 struct ipoib_dev_priv *priv = netdev_priv(dev);
951
952 dev->open = ipoib_open;
953 dev->stop = ipoib_stop;
954 dev->change_mtu = ipoib_change_mtu;
955 dev->hard_start_xmit = ipoib_start_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 dev->tx_timeout = ipoib_timeout;
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700957 dev->header_ops = &ipoib_header_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 dev->set_multicast_list = ipoib_set_mcast_list;
959 dev->neigh_setup = ipoib_neigh_setup_dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700960
961 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 dev->watchdog_timeo = HZ;
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
966
967 /*
968 * We add in INFINIBAND_ALEN to allow for the destination
969 * address "pseudoheader" for skbs without neighbour struct.
970 */
971 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
972 dev->addr_len = INFINIBAND_ALEN;
973 dev->type = ARPHRD_INFINIBAND;
Shirley Ma0f485252006-04-10 09:43:58 -0700974 dev->tx_queue_len = ipoib_sendq_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX;
976
977 /* MTU will be reset when mcast join happens */
978 dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN;
979 priv->mcast_mtu = priv->admin_mtu = dev->mtu;
980
981 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
982
983 netif_carrier_off(dev);
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 priv->dev = dev;
986
987 spin_lock_init(&priv->lock);
988 spin_lock_init(&priv->tx_lock);
989
Ingo Molnar95ed6442006-01-13 14:51:39 -0800990 mutex_init(&priv->mcast_mutex);
991 mutex_init(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 INIT_LIST_HEAD(&priv->path_list);
994 INIT_LIST_HEAD(&priv->child_intfs);
995 INIT_LIST_HEAD(&priv->dead_ahs);
996 INIT_LIST_HEAD(&priv->multicast_list);
997
Yosef Etigin26bbf132007-05-19 08:51:54 -0700998 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
999 INIT_WORK(&priv->pkey_event_task, ipoib_pkey_event);
David Howellsc4028952006-11-22 14:57:56 +00001000 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
1001 INIT_WORK(&priv->flush_task, ipoib_ib_dev_flush);
1002 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1003 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1007{
1008 struct net_device *dev;
1009
1010 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1011 ipoib_setup);
1012 if (!dev)
1013 return NULL;
1014
1015 return netdev_priv(dev);
1016}
1017
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001018static ssize_t show_pkey(struct device *dev,
1019 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001021 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 return sprintf(buf, "0x%04x\n", priv->pkey);
1024}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001025static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001027static ssize_t show_umcast(struct device *dev,
1028 struct device_attribute *attr, char *buf)
1029{
1030 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1031
1032 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1033}
1034
1035static ssize_t set_umcast(struct device *dev,
1036 struct device_attribute *attr,
1037 const char *buf, size_t count)
1038{
1039 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1040 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1041
1042 if (umcast_val > 0) {
1043 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1044 ipoib_warn(priv, "ignoring multicast groups joined directly "
1045 "by userspace\n");
1046 } else
1047 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1048
1049 return count;
1050}
1051static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1052
1053int ipoib_add_umcast_attr(struct net_device *dev)
1054{
1055 return device_create_file(&dev->dev, &dev_attr_umcast);
1056}
1057
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001058static ssize_t create_child(struct device *dev,
1059 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 const char *buf, size_t count)
1061{
1062 int pkey;
1063 int ret;
1064
1065 if (sscanf(buf, "%i", &pkey) != 1)
1066 return -EINVAL;
1067
1068 if (pkey < 0 || pkey > 0xffff)
1069 return -EINVAL;
1070
Roland Dreier4ce05932005-08-19 12:03:17 -07001071 /*
1072 * Set the full membership bit, so that we join the right
1073 * broadcast group, etc.
1074 */
1075 pkey |= 0x8000;
1076
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001077 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 return ret ? ret : count;
1080}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001081static DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001083static ssize_t delete_child(struct device *dev,
1084 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 const char *buf, size_t count)
1086{
1087 int pkey;
1088 int ret;
1089
1090 if (sscanf(buf, "%i", &pkey) != 1)
1091 return -EINVAL;
1092
1093 if (pkey < 0 || pkey > 0xffff)
1094 return -EINVAL;
1095
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001096 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 return ret ? ret : count;
1099
1100}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001101static DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103int ipoib_add_pkey_attr(struct net_device *dev)
1104{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001105 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108static struct net_device *ipoib_add_port(const char *format,
1109 struct ib_device *hca, u8 port)
1110{
1111 struct ipoib_dev_priv *priv;
1112 int result = -ENOMEM;
1113
1114 priv = ipoib_intf_alloc(format);
1115 if (!priv)
1116 goto alloc_mem_failed;
1117
1118 SET_NETDEV_DEV(priv->dev, hca->dma_device);
1119
1120 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1121 if (result) {
1122 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1123 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001124 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126
Roland Dreier4ce05932005-08-19 12:03:17 -07001127 /*
1128 * Set the full membership bit, so that we join the right
1129 * broadcast group, etc.
1130 */
1131 priv->pkey |= 0x8000;
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 priv->dev->broadcast[8] = priv->pkey >> 8;
1134 priv->dev->broadcast[9] = priv->pkey & 0xff;
1135
1136 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1137 if (result) {
1138 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1139 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001140 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 } else
1142 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1143
1144
1145 result = ipoib_dev_init(priv->dev, hca, port);
1146 if (result < 0) {
1147 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1148 hca->name, port, result);
1149 goto device_init_failed;
1150 }
1151
1152 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1153 priv->ca, ipoib_event);
1154 result = ib_register_event_handler(&priv->event_handler);
1155 if (result < 0) {
1156 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1157 "port %d (ret = %d)\n",
1158 hca->name, port, result);
1159 goto event_failed;
1160 }
1161
1162 result = register_netdev(priv->dev);
1163 if (result) {
1164 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1165 hca->name, port, result);
1166 goto register_failed;
1167 }
1168
Roland Dreier1732b0e2005-11-07 10:33:11 -08001169 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001171 if (ipoib_cm_add_mode_attr(priv->dev))
1172 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (ipoib_add_pkey_attr(priv->dev))
1174 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001175 if (ipoib_add_umcast_attr(priv->dev))
1176 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001177 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001179 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 goto sysfs_failed;
1181
1182 return priv->dev;
1183
1184sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001185 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 unregister_netdev(priv->dev);
1187
1188register_failed:
1189 ib_unregister_event_handler(&priv->event_handler);
Michael S. Tsirkin51574e02005-09-12 09:52:28 -07001190 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192event_failed:
1193 ipoib_dev_cleanup(priv->dev);
1194
1195device_init_failed:
1196 free_netdev(priv->dev);
1197
1198alloc_mem_failed:
1199 return ERR_PTR(result);
1200}
1201
1202static void ipoib_add_one(struct ib_device *device)
1203{
1204 struct list_head *dev_list;
1205 struct net_device *dev;
1206 struct ipoib_dev_priv *priv;
1207 int s, e, p;
1208
Tom Tucker07ebafb2006-08-03 16:02:42 -05001209 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1210 return;
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1213 if (!dev_list)
1214 return;
1215
1216 INIT_LIST_HEAD(dev_list);
1217
Tom Tucker07ebafb2006-08-03 16:02:42 -05001218 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 s = 0;
1220 e = 0;
1221 } else {
1222 s = 1;
1223 e = device->phys_port_cnt;
1224 }
1225
1226 for (p = s; p <= e; ++p) {
1227 dev = ipoib_add_port("ib%d", device, p);
1228 if (!IS_ERR(dev)) {
1229 priv = netdev_priv(dev);
1230 list_add_tail(&priv->list, dev_list);
1231 }
1232 }
1233
1234 ib_set_client_data(device, &ipoib_client, dev_list);
1235}
1236
1237static void ipoib_remove_one(struct ib_device *device)
1238{
1239 struct ipoib_dev_priv *priv, *tmp;
1240 struct list_head *dev_list;
1241
Tom Tucker07ebafb2006-08-03 16:02:42 -05001242 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1243 return;
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 dev_list = ib_get_client_data(device, &ipoib_client);
1246
1247 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1248 ib_unregister_event_handler(&priv->event_handler);
Michael S. Tsirkin51574e02005-09-12 09:52:28 -07001249 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251 unregister_netdev(priv->dev);
1252 ipoib_dev_cleanup(priv->dev);
1253 free_netdev(priv->dev);
1254 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001255
1256 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259static int __init ipoib_init_module(void)
1260{
1261 int ret;
1262
Shirley Ma0f485252006-04-10 09:43:58 -07001263 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1264 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1265 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1266
1267 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1268 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
1269 ipoib_sendq_size = max(ipoib_sendq_size, IPOIB_MIN_QUEUE_SIZE);
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 ret = ipoib_register_debugfs();
1272 if (ret)
1273 return ret;
1274
1275 /*
1276 * We create our own workqueue mainly because we want to be
1277 * able to flush it when devices are being removed. We can't
1278 * use schedule_work()/flush_scheduled_work() because both
1279 * unregister_netdev() and linkwatch_event take the rtnl lock,
1280 * so flush_scheduled_work() can deadlock during device
1281 * removal.
1282 */
1283 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1284 if (!ipoib_workqueue) {
1285 ret = -ENOMEM;
1286 goto err_fs;
1287 }
1288
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001289 ib_sa_register_client(&ipoib_sa_client);
1290
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 ret = ib_register_client(&ipoib_client);
1292 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001293 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 return 0;
1296
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001297err_sa:
1298 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 destroy_workqueue(ipoib_workqueue);
1300
Roland Dreier9adec1a2005-04-16 15:26:07 -07001301err_fs:
1302 ipoib_unregister_debugfs();
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 return ret;
1305}
1306
1307static void __exit ipoib_cleanup_module(void)
1308{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001310 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001311 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 destroy_workqueue(ipoib_workqueue);
1313}
1314
1315module_init(ipoib_init_module);
1316module_exit(ipoib_cleanup_module);