blob: bd07f02cf02be6e36864db79fca3494d8a9bed05 [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>
Roland Dreier10313cb2008-03-12 07:51:03 -070044#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/if_arp.h> /* For ARPHRD_xxx */
47
48#include <linux/ip.h>
49#include <linux/in.h>
50
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020051#include <net/dst.h>
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053MODULE_AUTHOR("Roland Dreier");
54MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
55MODULE_LICENSE("Dual BSD/GPL");
56
Shirley Ma0f485252006-04-10 09:43:58 -070057int ipoib_sendq_size __read_mostly = IPOIB_TX_RING_SIZE;
58int ipoib_recvq_size __read_mostly = IPOIB_RX_RING_SIZE;
59
60module_param_named(send_queue_size, ipoib_sendq_size, int, 0444);
61MODULE_PARM_DESC(send_queue_size, "Number of descriptors in send queue");
62module_param_named(recv_queue_size, ipoib_recvq_size, int, 0444);
63MODULE_PARM_DESC(recv_queue_size, "Number of descriptors in receive queue");
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
66int ipoib_debug_level;
67
68module_param_named(debug_level, ipoib_debug_level, int, 0644);
69MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
70#endif
71
Roland Dreier1732b0e2005-11-07 10:33:11 -080072struct ipoib_path_iter {
73 struct net_device *dev;
74 struct ipoib_path path;
75};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static const u8 ipv4_bcast_addr[] = {
78 0x00, 0xff, 0xff, 0xff,
79 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
80 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
81};
82
83struct workqueue_struct *ipoib_workqueue;
84
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -070085struct ib_sa_client ipoib_sa_client;
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static void ipoib_add_one(struct ib_device *device);
88static void ipoib_remove_one(struct ib_device *device);
89
90static struct ib_client ipoib_client = {
91 .name = "ipoib",
92 .add = ipoib_add_one,
93 .remove = ipoib_remove_one
94};
95
96int ipoib_open(struct net_device *dev)
97{
98 struct ipoib_dev_priv *priv = netdev_priv(dev);
99
100 ipoib_dbg(priv, "bringing up interface\n");
101
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700102 napi_enable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
104
105 if (ipoib_pkey_dev_delay_open(dev))
106 return 0;
107
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700108 if (ipoib_ib_dev_open(dev)) {
109 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return -EINVAL;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Roland Dreier267ee882005-11-29 10:55:58 -0800113 if (ipoib_ib_dev_up(dev)) {
Yosef Etigin26bbf132007-05-19 08:51:54 -0700114 ipoib_ib_dev_stop(dev, 1);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700115 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return -EINVAL;
Roland Dreier267ee882005-11-29 10:55:58 -0800117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
120 struct ipoib_dev_priv *cpriv;
121
122 /* Bring up any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800123 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 list_for_each_entry(cpriv, &priv->child_intfs, list) {
125 int flags;
126
127 flags = cpriv->dev->flags;
128 if (flags & IFF_UP)
129 continue;
130
131 dev_change_flags(cpriv->dev, flags | IFF_UP);
132 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800133 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
136 netif_start_queue(dev);
137
138 return 0;
139}
140
141static int ipoib_stop(struct net_device *dev)
142{
143 struct ipoib_dev_priv *priv = netdev_priv(dev);
144
145 ipoib_dbg(priv, "stopping interface\n");
146
147 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700148 napi_disable(&priv->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 netif_stop_queue(dev);
151
Jack Morgenstein0b3ea082006-03-20 10:08:24 -0800152 /*
153 * Now flush workqueue to make sure a scheduled task doesn't
154 * bring our internal state back up.
155 */
156 flush_workqueue(ipoib_workqueue);
157
158 ipoib_ib_dev_down(dev, 1);
Yosef Etigin26bbf132007-05-19 08:51:54 -0700159 ipoib_ib_dev_stop(dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
162 struct ipoib_dev_priv *cpriv;
163
164 /* Bring down any child interfaces too */
Ingo Molnar95ed6442006-01-13 14:51:39 -0800165 mutex_lock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 list_for_each_entry(cpriv, &priv->child_intfs, list) {
167 int flags;
168
169 flags = cpriv->dev->flags;
170 if (!(flags & IFF_UP))
171 continue;
172
173 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
174 }
Ingo Molnar95ed6442006-01-13 14:51:39 -0800175 mutex_unlock(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 return 0;
179}
180
181static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
182{
183 struct ipoib_dev_priv *priv = netdev_priv(dev);
184
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200185 /* dev->mtu > 2K ==> connected mode */
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800186 if (ipoib_cm_admin_enabled(dev)) {
187 if (new_mtu > ipoib_cm_max_mtu(dev))
188 return -EINVAL;
189
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200190 if (new_mtu > priv->mcast_mtu)
191 ipoib_warn(priv, "mtu > %d will cause multicast packet drops.\n",
192 priv->mcast_mtu);
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800193
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200194 dev->mtu = new_mtu;
195 return 0;
196 }
197
Pradeep Satyanarayana586a6932007-12-21 13:08:23 -0800198 if (new_mtu > IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -EINVAL;
200
201 priv->admin_mtu = new_mtu;
202
203 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
204
205 return 0;
206}
207
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300208static struct ipoib_path *__path_find(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 struct ipoib_dev_priv *priv = netdev_priv(dev);
211 struct rb_node *n = priv->path_tree.rb_node;
212 struct ipoib_path *path;
213 int ret;
214
215 while (n) {
216 path = rb_entry(n, struct ipoib_path, rb_node);
217
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300218 ret = memcmp(gid, path->pathrec.dgid.raw,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 sizeof (union ib_gid));
220
221 if (ret < 0)
222 n = n->rb_left;
223 else if (ret > 0)
224 n = n->rb_right;
225 else
226 return path;
227 }
228
229 return NULL;
230}
231
232static int __path_add(struct net_device *dev, struct ipoib_path *path)
233{
234 struct ipoib_dev_priv *priv = netdev_priv(dev);
235 struct rb_node **n = &priv->path_tree.rb_node;
236 struct rb_node *pn = NULL;
237 struct ipoib_path *tpath;
238 int ret;
239
240 while (*n) {
241 pn = *n;
242 tpath = rb_entry(pn, struct ipoib_path, rb_node);
243
244 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
245 sizeof (union ib_gid));
246 if (ret < 0)
247 n = &pn->rb_left;
248 else if (ret > 0)
249 n = &pn->rb_right;
250 else
251 return -EEXIST;
252 }
253
254 rb_link_node(&path->rb_node, pn, n);
255 rb_insert_color(&path->rb_node, &priv->path_tree);
256
257 list_add_tail(&path->list, &priv->path_list);
258
259 return 0;
260}
261
262static void path_free(struct net_device *dev, struct ipoib_path *path)
263{
264 struct ipoib_dev_priv *priv = netdev_priv(dev);
265 struct ipoib_neigh *neigh, *tn;
266 struct sk_buff *skb;
267 unsigned long flags;
268
269 while ((skb = __skb_dequeue(&path->queue)))
270 dev_kfree_skb_irq(skb);
271
272 spin_lock_irqsave(&priv->lock, flags);
273
274 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
275 /*
276 * It's safe to call ipoib_put_ah() inside priv->lock
277 * here, because we know that path->ah will always
278 * hold one more reference, so ipoib_put_ah() will
279 * never do more than decrement the ref count.
280 */
281 if (neigh->ah)
282 ipoib_put_ah(neigh->ah);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300283
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200284 ipoib_neigh_free(dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286
287 spin_unlock_irqrestore(&priv->lock, flags);
288
289 if (path->ah)
290 ipoib_put_ah(path->ah);
291
292 kfree(path);
293}
294
Roland Dreier1732b0e2005-11-07 10:33:11 -0800295#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
296
297struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
298{
299 struct ipoib_path_iter *iter;
300
301 iter = kmalloc(sizeof *iter, GFP_KERNEL);
302 if (!iter)
303 return NULL;
304
305 iter->dev = dev;
306 memset(iter->path.pathrec.dgid.raw, 0, 16);
307
308 if (ipoib_path_iter_next(iter)) {
309 kfree(iter);
310 return NULL;
311 }
312
313 return iter;
314}
315
316int ipoib_path_iter_next(struct ipoib_path_iter *iter)
317{
318 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
319 struct rb_node *n;
320 struct ipoib_path *path;
321 int ret = 1;
322
323 spin_lock_irq(&priv->lock);
324
325 n = rb_first(&priv->path_tree);
326
327 while (n) {
328 path = rb_entry(n, struct ipoib_path, rb_node);
329
330 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
331 sizeof (union ib_gid)) < 0) {
332 iter->path = *path;
333 ret = 0;
334 break;
335 }
336
337 n = rb_next(n);
338 }
339
340 spin_unlock_irq(&priv->lock);
341
342 return ret;
343}
344
345void ipoib_path_iter_read(struct ipoib_path_iter *iter,
346 struct ipoib_path *path)
347{
348 *path = iter->path;
349}
350
351#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353void ipoib_flush_paths(struct net_device *dev)
354{
355 struct ipoib_dev_priv *priv = netdev_priv(dev);
356 struct ipoib_path *path, *tp;
357 LIST_HEAD(remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300359 spin_lock_irq(&priv->tx_lock);
360 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Robert P. J. Day157de222008-04-16 21:09:26 -0700362 list_splice_init(&priv->path_list, &remove_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 list_for_each_entry(path, &remove_list, list)
365 rb_erase(&path->rb_node, &priv->path_tree);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 list_for_each_entry_safe(path, tp, &remove_list, list) {
368 if (path->query)
369 ib_sa_cancel_query(path->query_id, path->query);
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300370 spin_unlock(&priv->lock);
371 spin_unlock_irq(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 wait_for_completion(&path->done);
373 path_free(dev, path);
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300374 spin_lock_irq(&priv->tx_lock);
375 spin_lock(&priv->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
Michael S. Tsirkin9217b272006-08-03 22:16:06 +0300377 spin_unlock(&priv->lock);
378 spin_unlock_irq(&priv->tx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381static void path_rec_completion(int status,
382 struct ib_sa_path_rec *pathrec,
383 void *path_ptr)
384{
385 struct ipoib_path *path = path_ptr;
386 struct net_device *dev = path->dev;
387 struct ipoib_dev_priv *priv = netdev_priv(dev);
388 struct ipoib_ah *ah = NULL;
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700389 struct ipoib_neigh *neigh, *tn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct sk_buff_head skqueue;
391 struct sk_buff *skb;
392 unsigned long flags;
393
Roland Dreier843613b2007-02-26 12:57:08 -0800394 if (!status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
396 be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
397 else
398 ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
399 status, IPOIB_GID_ARG(path->pathrec.dgid));
400
401 skb_queue_head_init(&skqueue);
402
403 if (!status) {
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700404 struct ib_ah_attr av;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Sean Hefty46f1b3d2007-04-05 11:50:11 -0700406 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av))
407 ah = ipoib_create_ah(dev, priv->pd, &av);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
410 spin_lock_irqsave(&priv->lock, flags);
411
412 path->ah = ah;
413
414 if (ah) {
415 path->pathrec = *pathrec;
416
417 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
418 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
419
420 while ((skb = __skb_dequeue(&path->queue)))
421 __skb_queue_tail(&skqueue, skb);
422
Michael S. Tsirkind04d01b2007-03-22 14:40:16 -0700423 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 kref_get(&path->ah->ref);
425 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300426 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
427 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200429 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
430 if (!ipoib_cm_get(neigh))
431 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev,
432 path,
433 neigh));
434 if (!ipoib_cm_get(neigh)) {
435 list_del(&neigh->list);
436 if (neigh->ah)
437 ipoib_put_ah(neigh->ah);
438 ipoib_neigh_free(dev, neigh);
439 continue;
440 }
441 }
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 while ((skb = __skb_dequeue(&neigh->queue)))
444 __skb_queue_tail(&skqueue, skb);
445 }
Roland Dreier5872a9f2005-11-29 10:13:54 -0800446 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Roland Dreier5872a9f2005-11-29 10:13:54 -0800448 path->query = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 complete(&path->done);
450
451 spin_unlock_irqrestore(&priv->lock, flags);
452
453 while ((skb = __skb_dequeue(&skqueue))) {
454 skb->dev = dev;
455 if (dev_queue_xmit(skb))
456 ipoib_warn(priv, "dev_queue_xmit failed "
457 "to requeue packet\n");
458 }
459}
460
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300461static struct ipoib_path *path_rec_create(struct net_device *dev, void *gid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct ipoib_dev_priv *priv = netdev_priv(dev);
464 struct ipoib_path *path;
465
Jack Morgenstein1401b532007-11-26 10:41:19 +0200466 if (!priv->broadcast)
467 return NULL;
468
Roland Dreier21a38482005-11-02 10:07:59 -0800469 path = kzalloc(sizeof *path, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (!path)
471 return NULL;
472
Roland Dreier21a38482005-11-02 10:07:59 -0800473 path->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 skb_queue_head_init(&path->queue);
476
477 INIT_LIST_HEAD(&path->neigh_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300479 memcpy(path->pathrec.dgid.raw, gid, sizeof (union ib_gid));
Roland Dreier2337f802007-10-23 19:57:54 -0700480 path->pathrec.sgid = priv->local_gid;
481 path->pathrec.pkey = cpu_to_be16(priv->pkey);
Sean Hefty81668832007-08-02 12:21:31 -0700482 path->pathrec.numb_path = 1;
483 path->pathrec.traffic_class = priv->broadcast->mcmember.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 return path;
486}
487
488static int path_rec_start(struct net_device *dev,
489 struct ipoib_path *path)
490{
491 struct ipoib_dev_priv *priv = netdev_priv(dev);
492
493 ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
494 IPOIB_GID_ARG(path->pathrec.dgid));
495
Roland Dreier65c7edd2005-11-28 21:20:34 -0800496 init_completion(&path->done);
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 path->query_id =
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -0700499 ib_sa_path_rec_get(&ipoib_sa_client, priv->ca, priv->port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 &path->pathrec,
501 IB_SA_PATH_REC_DGID |
502 IB_SA_PATH_REC_SGID |
503 IB_SA_PATH_REC_NUMB_PATH |
Sean Hefty81668832007-08-02 12:21:31 -0700504 IB_SA_PATH_REC_TRAFFIC_CLASS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 IB_SA_PATH_REC_PKEY,
506 1000, GFP_ATOMIC,
507 path_rec_completion,
508 path, &path->query);
509 if (path->query_id < 0) {
510 ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
511 path->query = NULL;
512 return path->query_id;
513 }
514
515 return 0;
516}
517
518static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
519{
520 struct ipoib_dev_priv *priv = netdev_priv(dev);
521 struct ipoib_path *path;
522 struct ipoib_neigh *neigh;
523
Moni Shoua732a2172007-10-09 19:43:36 -0700524 neigh = ipoib_neigh_alloc(skb->dst->neighbour, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (!neigh) {
Roland Dreierde903512007-09-28 15:33:51 -0700526 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 dev_kfree_skb_any(skb);
528 return;
529 }
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /*
532 * We can only be called from ipoib_start_xmit, so we're
533 * inside tx_lock -- no need to save/restore flags.
534 */
535 spin_lock(&priv->lock);
536
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300537 path = __path_find(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!path) {
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300539 path = path_rec_create(dev, skb->dst->neighbour->ha + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (!path)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300541 goto err_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 __path_add(dev, path);
544 }
545
546 list_add_tail(&neigh->list, &path->neigh_list);
547
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800548 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 kref_get(&path->ah->ref);
550 neigh->ah = path->ah;
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300551 memcpy(&neigh->dgid.raw, &path->pathrec.dgid.raw,
552 sizeof(union ib_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200554 if (ipoib_cm_enabled(dev, neigh->neighbour)) {
555 if (!ipoib_cm_get(neigh))
556 ipoib_cm_set(neigh, ipoib_cm_create_tx(dev, path, neigh));
557 if (!ipoib_cm_get(neigh)) {
558 list_del(&neigh->list);
559 if (neigh->ah)
560 ipoib_put_ah(neigh->ah);
561 ipoib_neigh_free(dev, neigh);
562 goto err_drop;
563 }
564 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE)
565 __skb_queue_tail(&neigh->queue, skb);
566 else {
567 ipoib_warn(priv, "queue length limit %d. Packet drop.\n",
568 skb_queue_len(&neigh->queue));
569 goto err_drop;
570 }
571 } else
572 ipoib_send(dev, skb, path->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 } else {
574 neigh->ah = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 if (!path->query && path_rec_start(dev, path))
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300577 goto err_list;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200578
579 __skb_queue_tail(&neigh->queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581
582 spin_unlock(&priv->lock);
583 return;
584
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300585err_list:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 list_del(&neigh->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300588err_path:
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200589 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200590err_drop:
Roland Dreierde903512007-09-28 15:33:51 -0700591 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 dev_kfree_skb_any(skb);
593
594 spin_unlock(&priv->lock);
595}
596
Roland Dreierd70ed602005-09-28 19:56:57 -0700597static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
600
601 /* Look up path record for unicasts */
602 if (skb->dst->neighbour->ha[4] != 0xff) {
603 neigh_add_path(skb, dev);
604 return;
605 }
606
607 /* Add in the P_Key for multicasts */
608 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
609 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300610 ipoib_mcast_send(dev, skb->dst->neighbour->ha + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
614 struct ipoib_pseudoheader *phdr)
615{
616 struct ipoib_dev_priv *priv = netdev_priv(dev);
617 struct ipoib_path *path;
618
619 /*
620 * We can only be called from ipoib_start_xmit, so we're
621 * inside tx_lock -- no need to save/restore flags.
622 */
623 spin_lock(&priv->lock);
624
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300625 path = __path_find(dev, phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (!path) {
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300627 path = path_rec_create(dev, phdr->hwaddr + 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (path) {
629 /* put pseudoheader back on for next time */
630 skb_push(skb, sizeof *phdr);
631 __skb_queue_tail(&path->queue, skb);
632
633 if (path_rec_start(dev, path)) {
634 spin_unlock(&priv->lock);
635 path_free(dev, path);
636 return;
637 } else
638 __path_add(dev, path);
639 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700640 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 dev_kfree_skb_any(skb);
642 }
643
644 spin_unlock(&priv->lock);
645 return;
646 }
647
Michael S. Tsirkin47f7a072006-01-17 09:22:05 -0800648 if (path->ah) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
650 be16_to_cpu(path->pathrec.dlid));
651
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200652 ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 } else if ((path->query || !path_rec_start(dev, path)) &&
654 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
655 /* put pseudoheader back on for next time */
656 skb_push(skb, sizeof *phdr);
657 __skb_queue_tail(&path->queue, skb);
658 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700659 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 dev_kfree_skb_any(skb);
661 }
662
663 spin_unlock(&priv->lock);
664}
665
666static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
667{
668 struct ipoib_dev_priv *priv = netdev_priv(dev);
669 struct ipoib_neigh *neigh;
670 unsigned long flags;
671
Eli Cohena8bfca02006-09-22 15:22:58 -0700672 if (unlikely(!spin_trylock_irqsave(&priv->tx_lock, flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return NETDEV_TX_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Eli Cohena8bfca02006-09-22 15:22:58 -0700675 if (likely(skb->dst && skb->dst->neighbour)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
Roland Dreierd70ed602005-09-28 19:56:57 -0700677 ipoib_path_lookup(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto out;
679 }
680
681 neigh = *to_ipoib_neigh(skb->dst->neighbour);
682
Or Gerlitzbafff972008-01-17 17:03:45 +0200683 if (neigh->ah)
Moni Shoua200d1712007-10-09 19:43:37 -0700684 if (unlikely((memcmp(&neigh->dgid.raw,
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300685 skb->dst->neighbour->ha + 4,
Moni Shoua200d1712007-10-09 19:43:37 -0700686 sizeof(union ib_gid))) ||
687 (neigh->dev != dev))) {
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300688 spin_lock(&priv->lock);
689 /*
690 * It's safe to call ipoib_put_ah() inside
691 * priv->lock here, because we know that
692 * path->ah will always hold one more reference,
693 * so ipoib_put_ah() will never do more than
694 * decrement the ref count.
695 */
696 ipoib_put_ah(neigh->ah);
697 list_del(&neigh->list);
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200698 ipoib_neigh_free(dev, neigh);
Michael S. Tsirkin8a7f7522006-07-19 17:44:37 +0300699 spin_unlock(&priv->lock);
700 ipoib_path_lookup(skb, dev);
701 goto out;
702 }
703
Or Gerlitzbafff972008-01-17 17:03:45 +0200704 if (ipoib_cm_get(neigh)) {
705 if (ipoib_cm_up(neigh)) {
706 ipoib_cm_send(dev, skb, ipoib_cm_get(neigh));
707 goto out;
708 }
709 } else if (neigh->ah) {
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200710 ipoib_send(dev, skb, neigh->ah, IPOIB_QPN(skb->dst->neighbour->ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 goto out;
712 }
713
714 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
715 spin_lock(&priv->lock);
716 __skb_queue_tail(&neigh->queue, skb);
717 spin_unlock(&priv->lock);
718 } else {
Roland Dreierde903512007-09-28 15:33:51 -0700719 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 dev_kfree_skb_any(skb);
721 }
722 } else {
723 struct ipoib_pseudoheader *phdr =
724 (struct ipoib_pseudoheader *) skb->data;
725 skb_pull(skb, sizeof *phdr);
726
727 if (phdr->hwaddr[4] == 0xff) {
728 /* Add in the P_Key for multicast*/
729 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
730 phdr->hwaddr[9] = priv->pkey & 0xff;
731
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300732 ipoib_mcast_send(dev, phdr->hwaddr + 4, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 } else {
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700734 /* unicast GID -- should be ARP or RARP reply */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Hal Rosenstock0dca0f72005-07-28 13:17:26 -0700736 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
737 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
739 IPOIB_GID_FMT "\n",
740 skb->dst ? "neigh" : "dst",
Sean Hefty97f52eb2005-08-13 21:05:57 -0700741 be16_to_cpup((__be16 *) skb->data),
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200742 IPOIB_QPN(phdr->hwaddr),
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300743 IPOIB_GID_RAW_ARG(phdr->hwaddr + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 dev_kfree_skb_any(skb);
Roland Dreierde903512007-09-28 15:33:51 -0700745 ++dev->stats.tx_dropped;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto out;
747 }
748
749 unicast_arp_send(skb, dev, phdr);
750 }
751 }
752
753out:
754 spin_unlock_irqrestore(&priv->tx_lock, flags);
755
756 return NETDEV_TX_OK;
757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759static void ipoib_timeout(struct net_device *dev)
760{
761 struct ipoib_dev_priv *priv = netdev_priv(dev);
762
Roland Dreier4b2d3192005-10-18 12:20:06 -0700763 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
764 jiffies_to_msecs(jiffies - dev->trans_start));
765 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
766 netif_queue_stopped(dev),
767 priv->tx_head, priv->tx_tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /* XXX reset QP, etc. */
769}
770
771static int ipoib_hard_header(struct sk_buff *skb,
772 struct net_device *dev,
773 unsigned short type,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700774 const void *daddr, const void *saddr, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct ipoib_header *header;
777
778 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
779
780 header->proto = htons(type);
781 header->reserved = 0;
782
783 /*
784 * If we don't have a neighbour structure, stuff the
785 * destination address onto the front of the skb so we can
786 * figure out where to send the packet later.
787 */
Roland Dreieref12d452006-03-29 09:36:46 -0800788 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct ipoib_pseudoheader *phdr =
790 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
791 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
792 }
793
794 return 0;
795}
796
797static void ipoib_set_mcast_list(struct net_device *dev)
798{
799 struct ipoib_dev_priv *priv = netdev_priv(dev);
800
Leonid Arsh7a343d42006-03-23 19:52:51 +0200801 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
802 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
803 return;
804 }
805
Michael S. Tsirkin1ad62a12005-08-24 14:41:51 -0700806 queue_work(ipoib_workqueue, &priv->restart_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700809static void ipoib_neigh_cleanup(struct neighbour *n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 struct ipoib_neigh *neigh;
812 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
813 unsigned long flags;
814 struct ipoib_ah *ah = NULL;
815
Moni Shoua732a2172007-10-09 19:43:36 -0700816 neigh = *to_ipoib_neigh(n);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200817 if (neigh)
Moni Shoua732a2172007-10-09 19:43:36 -0700818 priv = netdev_priv(neigh->dev);
Or Gerlitz7bc531d2008-01-29 12:57:56 +0200819 else
Moni Shoua732a2172007-10-09 19:43:36 -0700820 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 ipoib_dbg(priv,
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700822 "neigh_cleanup for %06x " IPOIB_GID_FMT "\n",
Michael S. Tsirkin073ae842006-11-16 10:59:12 +0200823 IPOIB_QPN(n->ha),
Jack Morgenstein37c22a72006-05-29 19:14:05 +0300824 IPOIB_GID_RAW_ARG(n->ha + 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 spin_lock_irqsave(&priv->lock, flags);
827
Moni Shoua732a2172007-10-09 19:43:36 -0700828 if (neigh->ah)
829 ah = neigh->ah;
830 list_del(&neigh->list);
831 ipoib_neigh_free(n->dev, neigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 spin_unlock_irqrestore(&priv->lock, flags);
834
835 if (ah)
836 ipoib_put_ah(ah);
837}
838
Moni Shoua732a2172007-10-09 19:43:36 -0700839struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour,
840 struct net_device *dev)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300841{
842 struct ipoib_neigh *neigh;
843
844 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
845 if (!neigh)
846 return NULL;
847
848 neigh->neighbour = neighbour;
Moni Shoua732a2172007-10-09 19:43:36 -0700849 neigh->dev = dev;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300850 *to_ipoib_neigh(neighbour) = neigh;
Roland Dreier82b39912006-12-12 14:48:18 -0800851 skb_queue_head_init(&neigh->queue);
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200852 ipoib_cm_set(neigh, NULL);
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300853
854 return neigh;
855}
856
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200857void ipoib_neigh_free(struct net_device *dev, struct ipoib_neigh *neigh)
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300858{
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200859 struct sk_buff *skb;
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300860 *to_ipoib_neigh(neigh->neighbour) = NULL;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200861 while ((skb = __skb_dequeue(&neigh->queue))) {
Roland Dreierde903512007-09-28 15:33:51 -0700862 ++dev->stats.tx_dropped;
Michael S. Tsirkin2745b5b2006-11-16 14:16:47 +0200863 dev_kfree_skb_any(skb);
864 }
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +0200865 if (ipoib_cm_get(neigh))
866 ipoib_cm_destroy_tx(ipoib_cm_get(neigh));
Michael S. Tsirkind2e06552006-04-04 19:59:40 +0300867 kfree(neigh);
868}
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
871{
Alexey Kuznetsovecbb4162007-03-24 12:52:16 -0700872 parms->neigh_cleanup = ipoib_neigh_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return 0;
875}
876
877int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
878{
879 struct ipoib_dev_priv *priv = netdev_priv(dev);
880
881 /* Allocate RX/TX "rings" to hold queued skbs */
Shirley Ma0f485252006-04-10 09:43:58 -0700882 priv->rx_ring = kzalloc(ipoib_recvq_size * sizeof *priv->rx_ring,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 GFP_KERNEL);
884 if (!priv->rx_ring) {
885 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700886 ca->name, ipoib_recvq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto out;
888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Roland Dreier10313cb2008-03-12 07:51:03 -0700890 priv->tx_ring = vmalloc(ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (!priv->tx_ring) {
892 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
Shirley Ma0f485252006-04-10 09:43:58 -0700893 ca->name, ipoib_sendq_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 goto out_rx_ring_cleanup;
895 }
Roland Dreier10313cb2008-03-12 07:51:03 -0700896 memset(priv->tx_ring, 0, ipoib_sendq_size * sizeof *priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Michael S. Tsirkin1b524962007-08-16 15:36:16 +0300898 /* priv->tx_head, tx_tail & tx_outstanding are already 0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 if (ipoib_ib_dev_init(dev, ca, port))
901 goto out_tx_ring_cleanup;
902
903 return 0;
904
905out_tx_ring_cleanup:
Roland Dreier10313cb2008-03-12 07:51:03 -0700906 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908out_rx_ring_cleanup:
909 kfree(priv->rx_ring);
910
911out:
912 return -ENOMEM;
913}
914
915void ipoib_dev_cleanup(struct net_device *dev)
916{
917 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
918
Roland Dreier1732b0e2005-11-07 10:33:11 -0800919 ipoib_delete_debug_files(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /* Delete any child interfaces first */
922 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
923 unregister_netdev(cpriv->dev);
924 ipoib_dev_cleanup(cpriv->dev);
925 free_netdev(cpriv->dev);
926 }
927
928 ipoib_ib_dev_cleanup(dev);
929
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700930 kfree(priv->rx_ring);
Roland Dreier10313cb2008-03-12 07:51:03 -0700931 vfree(priv->tx_ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Hal Rosenstock92a6b342005-08-13 20:50:27 -0700933 priv->rx_ring = NULL;
934 priv->tx_ring = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700937static const struct header_ops ipoib_header_ops = {
938 .create = ipoib_hard_header,
939};
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941static void ipoib_setup(struct net_device *dev)
942{
943 struct ipoib_dev_priv *priv = netdev_priv(dev);
944
Roland Dreier2337f802007-10-23 19:57:54 -0700945 dev->open = ipoib_open;
946 dev->stop = ipoib_stop;
947 dev->change_mtu = ipoib_change_mtu;
948 dev->hard_start_xmit = ipoib_start_xmit;
949 dev->tx_timeout = ipoib_timeout;
950 dev->header_ops = &ipoib_header_ops;
951 dev->set_multicast_list = ipoib_set_mcast_list;
952 dev->neigh_setup = ipoib_neigh_setup_dev;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700953
Eli Cohen82c24c12008-04-16 21:09:32 -0700954 ipoib_set_ethtool_ops(dev);
955
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700956 netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Roland Dreier2337f802007-10-23 19:57:54 -0700958 dev->watchdog_timeo = HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Roland Dreier2337f802007-10-23 19:57:54 -0700960 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 /*
963 * We add in INFINIBAND_ALEN to allow for the destination
964 * address "pseudoheader" for skbs without neighbour struct.
965 */
Roland Dreier2337f802007-10-23 19:57:54 -0700966 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
967 dev->addr_len = INFINIBAND_ALEN;
968 dev->type = ARPHRD_INFINIBAND;
969 dev->tx_queue_len = ipoib_sendq_size * 2;
Eli Coheneb14032f2008-01-30 18:30:46 +0200970 dev->features = (NETIF_F_VLAN_CHALLENGED |
971 NETIF_F_LLTX |
972 NETIF_F_HIGHDMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 /* MTU will be reset when mcast join happens */
Roland Dreier2337f802007-10-23 19:57:54 -0700975 dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN;
976 priv->mcast_mtu = priv->admin_mtu = dev->mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
979
980 netif_carrier_off(dev);
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 priv->dev = dev;
983
984 spin_lock_init(&priv->lock);
985 spin_lock_init(&priv->tx_lock);
986
Ingo Molnar95ed6442006-01-13 14:51:39 -0800987 mutex_init(&priv->mcast_mutex);
988 mutex_init(&priv->vlan_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 INIT_LIST_HEAD(&priv->path_list);
991 INIT_LIST_HEAD(&priv->child_intfs);
992 INIT_LIST_HEAD(&priv->dead_ahs);
993 INIT_LIST_HEAD(&priv->multicast_list);
994
Yosef Etigin26bbf132007-05-19 08:51:54 -0700995 INIT_DELAYED_WORK(&priv->pkey_poll_task, ipoib_pkey_poll);
996 INIT_WORK(&priv->pkey_event_task, ipoib_pkey_event);
David Howellsc4028952006-11-22 14:57:56 +0000997 INIT_DELAYED_WORK(&priv->mcast_task, ipoib_mcast_join_task);
998 INIT_WORK(&priv->flush_task, ipoib_ib_dev_flush);
999 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task);
1000 INIT_DELAYED_WORK(&priv->ah_reap_task, ipoib_reap_ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
1003struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
1004{
1005 struct net_device *dev;
1006
1007 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
1008 ipoib_setup);
1009 if (!dev)
1010 return NULL;
1011
1012 return netdev_priv(dev);
1013}
1014
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001015static ssize_t show_pkey(struct device *dev,
1016 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001018 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 return sprintf(buf, "0x%04x\n", priv->pkey);
1021}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001022static DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001024static ssize_t show_umcast(struct device *dev,
1025 struct device_attribute *attr, char *buf)
1026{
1027 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1028
1029 return sprintf(buf, "%d\n", test_bit(IPOIB_FLAG_UMCAST, &priv->flags));
1030}
1031
1032static ssize_t set_umcast(struct device *dev,
1033 struct device_attribute *attr,
1034 const char *buf, size_t count)
1035{
1036 struct ipoib_dev_priv *priv = netdev_priv(to_net_dev(dev));
1037 unsigned long umcast_val = simple_strtoul(buf, NULL, 0);
1038
1039 if (umcast_val > 0) {
1040 set_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1041 ipoib_warn(priv, "ignoring multicast groups joined directly "
1042 "by userspace\n");
1043 } else
1044 clear_bit(IPOIB_FLAG_UMCAST, &priv->flags);
1045
1046 return count;
1047}
1048static DEVICE_ATTR(umcast, S_IWUSR | S_IRUGO, show_umcast, set_umcast);
1049
1050int ipoib_add_umcast_attr(struct net_device *dev)
1051{
1052 return device_create_file(&dev->dev, &dev_attr_umcast);
1053}
1054
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001055static ssize_t create_child(struct device *dev,
1056 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 const char *buf, size_t count)
1058{
1059 int pkey;
1060 int ret;
1061
1062 if (sscanf(buf, "%i", &pkey) != 1)
1063 return -EINVAL;
1064
1065 if (pkey < 0 || pkey > 0xffff)
1066 return -EINVAL;
1067
Roland Dreier4ce05932005-08-19 12:03:17 -07001068 /*
1069 * Set the full membership bit, so that we join the right
1070 * broadcast group, etc.
1071 */
1072 pkey |= 0x8000;
1073
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001074 ret = ipoib_vlan_add(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 return ret ? ret : count;
1077}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001078static DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001080static ssize_t delete_child(struct device *dev,
1081 struct device_attribute *attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 const char *buf, size_t count)
1083{
1084 int pkey;
1085 int ret;
1086
1087 if (sscanf(buf, "%i", &pkey) != 1)
1088 return -EINVAL;
1089
1090 if (pkey < 0 || pkey > 0xffff)
1091 return -EINVAL;
1092
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001093 ret = ipoib_vlan_delete(to_net_dev(dev), pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 return ret ? ret : count;
1096
1097}
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001098static DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100int ipoib_add_pkey_attr(struct net_device *dev)
1101{
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001102 return device_create_file(&dev->dev, &dev_attr_pkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105static struct net_device *ipoib_add_port(const char *format,
1106 struct ib_device *hca, u8 port)
1107{
1108 struct ipoib_dev_priv *priv;
Eli Cohen60461362008-04-16 21:01:10 -07001109 struct ib_device_attr *device_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 int result = -ENOMEM;
1111
1112 priv = ipoib_intf_alloc(format);
1113 if (!priv)
1114 goto alloc_mem_failed;
1115
1116 SET_NETDEV_DEV(priv->dev, hca->dma_device);
1117
1118 result = ib_query_pkey(hca, port, 0, &priv->pkey);
1119 if (result) {
1120 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
1121 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001122 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
Eli Cohen60461362008-04-16 21:01:10 -07001125 device_attr = kmalloc(sizeof *device_attr, GFP_KERNEL);
1126 if (!device_attr) {
1127 printk(KERN_WARNING "%s: allocation of %zu bytes failed\n",
1128 hca->name, sizeof *device_attr);
1129 goto device_init_failed;
1130 }
1131
1132 result = ib_query_device(hca, device_attr);
1133 if (result) {
1134 printk(KERN_WARNING "%s: ib_query_device failed (ret = %d)\n",
1135 hca->name, result);
1136 kfree(device_attr);
1137 goto device_init_failed;
1138 }
Eli Cohen40ca1982008-04-16 21:09:27 -07001139 priv->hca_caps = device_attr->device_cap_flags;
Eli Cohen60461362008-04-16 21:01:10 -07001140
Eli Cohen40ca1982008-04-16 21:09:27 -07001141 kfree(device_attr);
1142
1143 if (priv->hca_caps & IB_DEVICE_UD_IP_CSUM) {
Eli Cohen60461362008-04-16 21:01:10 -07001144 set_bit(IPOIB_FLAG_CSUM, &priv->flags);
1145 priv->dev->features |= NETIF_F_SG | NETIF_F_IP_CSUM;
1146 }
1147
Roland Dreier4ce05932005-08-19 12:03:17 -07001148 /*
1149 * Set the full membership bit, so that we join the right
1150 * broadcast group, etc.
1151 */
1152 priv->pkey |= 0x8000;
1153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 priv->dev->broadcast[8] = priv->pkey >> 8;
1155 priv->dev->broadcast[9] = priv->pkey & 0xff;
1156
1157 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1158 if (result) {
1159 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1160 hca->name, port, result);
Eli Cohenca6de172007-08-21 18:46:10 +03001161 goto device_init_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 } else
1163 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 result = ipoib_dev_init(priv->dev, hca, port);
1166 if (result < 0) {
1167 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1168 hca->name, port, result);
1169 goto device_init_failed;
1170 }
1171
1172 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1173 priv->ca, ipoib_event);
1174 result = ib_register_event_handler(&priv->event_handler);
1175 if (result < 0) {
1176 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1177 "port %d (ret = %d)\n",
1178 hca->name, port, result);
1179 goto event_failed;
1180 }
1181
Eli Cohen40ca1982008-04-16 21:09:27 -07001182 if (priv->dev->features & NETIF_F_SG && priv->hca_caps & IB_DEVICE_UD_TSO)
1183 priv->dev->features |= NETIF_F_TSO;
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 result = register_netdev(priv->dev);
1186 if (result) {
1187 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1188 hca->name, port, result);
1189 goto register_failed;
1190 }
1191
Roland Dreier1732b0e2005-11-07 10:33:11 -08001192 ipoib_create_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Michael S. Tsirkin839fcab2007-02-05 22:12:23 +02001194 if (ipoib_cm_add_mode_attr(priv->dev))
1195 goto sysfs_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (ipoib_add_pkey_attr(priv->dev))
1197 goto sysfs_failed;
Or Gerlitz335a64a5a2007-10-08 10:13:00 +02001198 if (ipoib_add_umcast_attr(priv->dev))
1199 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001200 if (device_create_file(&priv->dev->dev, &dev_attr_create_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 goto sysfs_failed;
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07001202 if (device_create_file(&priv->dev->dev, &dev_attr_delete_child))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 goto sysfs_failed;
1204
1205 return priv->dev;
1206
1207sysfs_failed:
Roland Dreier1732b0e2005-11-07 10:33:11 -08001208 ipoib_delete_debug_files(priv->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 unregister_netdev(priv->dev);
1210
1211register_failed:
1212 ib_unregister_event_handler(&priv->event_handler);
Michael S. Tsirkin51574e02005-09-12 09:52:28 -07001213 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215event_failed:
1216 ipoib_dev_cleanup(priv->dev);
1217
1218device_init_failed:
1219 free_netdev(priv->dev);
1220
1221alloc_mem_failed:
1222 return ERR_PTR(result);
1223}
1224
1225static void ipoib_add_one(struct ib_device *device)
1226{
1227 struct list_head *dev_list;
1228 struct net_device *dev;
1229 struct ipoib_dev_priv *priv;
1230 int s, e, p;
1231
Tom Tucker07ebafb2006-08-03 16:02:42 -05001232 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1233 return;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1236 if (!dev_list)
1237 return;
1238
1239 INIT_LIST_HEAD(dev_list);
1240
Tom Tucker07ebafb2006-08-03 16:02:42 -05001241 if (device->node_type == RDMA_NODE_IB_SWITCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 s = 0;
1243 e = 0;
1244 } else {
1245 s = 1;
1246 e = device->phys_port_cnt;
1247 }
1248
1249 for (p = s; p <= e; ++p) {
1250 dev = ipoib_add_port("ib%d", device, p);
1251 if (!IS_ERR(dev)) {
1252 priv = netdev_priv(dev);
1253 list_add_tail(&priv->list, dev_list);
1254 }
1255 }
1256
1257 ib_set_client_data(device, &ipoib_client, dev_list);
1258}
1259
1260static void ipoib_remove_one(struct ib_device *device)
1261{
1262 struct ipoib_dev_priv *priv, *tmp;
1263 struct list_head *dev_list;
1264
Tom Tucker07ebafb2006-08-03 16:02:42 -05001265 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1266 return;
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 dev_list = ib_get_client_data(device, &ipoib_client);
1269
1270 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1271 ib_unregister_event_handler(&priv->event_handler);
Michael S. Tsirkin51574e02005-09-12 09:52:28 -07001272 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 unregister_netdev(priv->dev);
1275 ipoib_dev_cleanup(priv->dev);
1276 free_netdev(priv->dev);
1277 }
Michael S. Tsirkin06c56e42005-09-01 09:19:02 -07001278
1279 kfree(dev_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280}
1281
1282static int __init ipoib_init_module(void)
1283{
1284 int ret;
1285
Shirley Ma0f485252006-04-10 09:43:58 -07001286 ipoib_recvq_size = roundup_pow_of_two(ipoib_recvq_size);
1287 ipoib_recvq_size = min(ipoib_recvq_size, IPOIB_MAX_QUEUE_SIZE);
1288 ipoib_recvq_size = max(ipoib_recvq_size, IPOIB_MIN_QUEUE_SIZE);
1289
1290 ipoib_sendq_size = roundup_pow_of_two(ipoib_sendq_size);
1291 ipoib_sendq_size = min(ipoib_sendq_size, IPOIB_MAX_QUEUE_SIZE);
1292 ipoib_sendq_size = max(ipoib_sendq_size, IPOIB_MIN_QUEUE_SIZE);
Pradeep Satyanarayana68e995a2008-01-25 14:15:24 -08001293#ifdef CONFIG_INFINIBAND_IPOIB_CM
1294 ipoib_max_conn_qp = min(ipoib_max_conn_qp, IPOIB_CM_MAX_CONN_QP);
1295#endif
Shirley Ma0f485252006-04-10 09:43:58 -07001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 ret = ipoib_register_debugfs();
1298 if (ret)
1299 return ret;
1300
1301 /*
1302 * We create our own workqueue mainly because we want to be
1303 * able to flush it when devices are being removed. We can't
1304 * use schedule_work()/flush_scheduled_work() because both
1305 * unregister_netdev() and linkwatch_event take the rtnl lock,
1306 * so flush_scheduled_work() can deadlock during device
1307 * removal.
1308 */
1309 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1310 if (!ipoib_workqueue) {
1311 ret = -ENOMEM;
1312 goto err_fs;
1313 }
1314
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001315 ib_sa_register_client(&ipoib_sa_client);
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ret = ib_register_client(&ipoib_client);
1318 if (ret)
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001319 goto err_sa;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 return 0;
1322
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001323err_sa:
1324 ib_sa_unregister_client(&ipoib_sa_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 destroy_workqueue(ipoib_workqueue);
1326
Roland Dreier9adec1a2005-04-16 15:26:07 -07001327err_fs:
1328 ipoib_unregister_debugfs();
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return ret;
1331}
1332
1333static void __exit ipoib_cleanup_module(void)
1334{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 ib_unregister_client(&ipoib_client);
Michael S. Tsirkinc1a0b232006-08-21 16:40:12 -07001336 ib_sa_unregister_client(&ipoib_sa_client);
Roland Dreier9adec1a2005-04-16 15:26:07 -07001337 ipoib_unregister_debugfs();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 destroy_workqueue(ipoib_workqueue);
1339}
1340
1341module_init(ipoib_init_module);
1342module_exit(ipoib_cleanup_module);