IB: simplify static rate encoding
[linux-block.git] / drivers / infiniband / ulp / ipoib / ipoib_main.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
2a1d9b7f
RD
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
1da177e4
LT
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 *
34 * $Id: ipoib_main.c 1377 2004-12-23 19:57:12Z roland $
35 */
36
37#include "ipoib.h"
38
1da177e4
LT
39#include <linux/module.h>
40
41#include <linux/init.h>
42#include <linux/slab.h>
43#include <linux/vmalloc.h>
44
45#include <linux/if_arp.h> /* For ARPHRD_xxx */
46
47#include <linux/ip.h>
48#include <linux/in.h>
49
14c85021
ACM
50#include <net/dst.h>
51
1da177e4
LT
52MODULE_AUTHOR("Roland Dreier");
53MODULE_DESCRIPTION("IP-over-InfiniBand net driver");
54MODULE_LICENSE("Dual BSD/GPL");
55
56#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
57int ipoib_debug_level;
58
59module_param_named(debug_level, ipoib_debug_level, int, 0644);
60MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
61#endif
62
1732b0ef
RD
63struct ipoib_path_iter {
64 struct net_device *dev;
65 struct ipoib_path path;
66};
67
1da177e4
LT
68static const u8 ipv4_bcast_addr[] = {
69 0x00, 0xff, 0xff, 0xff,
70 0xff, 0x12, 0x40, 0x1b, 0x00, 0x00, 0x00, 0x00,
71 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
72};
73
74struct workqueue_struct *ipoib_workqueue;
75
76static void ipoib_add_one(struct ib_device *device);
77static void ipoib_remove_one(struct ib_device *device);
78
79static struct ib_client ipoib_client = {
80 .name = "ipoib",
81 .add = ipoib_add_one,
82 .remove = ipoib_remove_one
83};
84
85int ipoib_open(struct net_device *dev)
86{
87 struct ipoib_dev_priv *priv = netdev_priv(dev);
88
89 ipoib_dbg(priv, "bringing up interface\n");
90
91 set_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
92
93 if (ipoib_pkey_dev_delay_open(dev))
94 return 0;
95
96 if (ipoib_ib_dev_open(dev))
97 return -EINVAL;
98
267ee88e
RD
99 if (ipoib_ib_dev_up(dev)) {
100 ipoib_ib_dev_stop(dev);
1da177e4 101 return -EINVAL;
267ee88e 102 }
1da177e4
LT
103
104 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
105 struct ipoib_dev_priv *cpriv;
106
107 /* Bring up any child interfaces too */
95ed644f 108 mutex_lock(&priv->vlan_mutex);
1da177e4
LT
109 list_for_each_entry(cpriv, &priv->child_intfs, list) {
110 int flags;
111
112 flags = cpriv->dev->flags;
113 if (flags & IFF_UP)
114 continue;
115
116 dev_change_flags(cpriv->dev, flags | IFF_UP);
117 }
95ed644f 118 mutex_unlock(&priv->vlan_mutex);
1da177e4
LT
119 }
120
121 netif_start_queue(dev);
122
123 return 0;
124}
125
126static int ipoib_stop(struct net_device *dev)
127{
128 struct ipoib_dev_priv *priv = netdev_priv(dev);
129
130 ipoib_dbg(priv, "stopping interface\n");
131
132 clear_bit(IPOIB_FLAG_ADMIN_UP, &priv->flags);
133
134 netif_stop_queue(dev);
135
0b3ea082
JM
136 /*
137 * Now flush workqueue to make sure a scheduled task doesn't
138 * bring our internal state back up.
139 */
140 flush_workqueue(ipoib_workqueue);
141
142 ipoib_ib_dev_down(dev, 1);
1da177e4
LT
143 ipoib_ib_dev_stop(dev);
144
145 if (!test_bit(IPOIB_FLAG_SUBINTERFACE, &priv->flags)) {
146 struct ipoib_dev_priv *cpriv;
147
148 /* Bring down any child interfaces too */
95ed644f 149 mutex_lock(&priv->vlan_mutex);
1da177e4
LT
150 list_for_each_entry(cpriv, &priv->child_intfs, list) {
151 int flags;
152
153 flags = cpriv->dev->flags;
154 if (!(flags & IFF_UP))
155 continue;
156
157 dev_change_flags(cpriv->dev, flags & ~IFF_UP);
158 }
95ed644f 159 mutex_unlock(&priv->vlan_mutex);
1da177e4
LT
160 }
161
162 return 0;
163}
164
165static int ipoib_change_mtu(struct net_device *dev, int new_mtu)
166{
167 struct ipoib_dev_priv *priv = netdev_priv(dev);
168
169 if (new_mtu > IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN)
170 return -EINVAL;
171
172 priv->admin_mtu = new_mtu;
173
174 dev->mtu = min(priv->mcast_mtu, priv->admin_mtu);
175
176 return 0;
177}
178
179static struct ipoib_path *__path_find(struct net_device *dev,
180 union ib_gid *gid)
181{
182 struct ipoib_dev_priv *priv = netdev_priv(dev);
183 struct rb_node *n = priv->path_tree.rb_node;
184 struct ipoib_path *path;
185 int ret;
186
187 while (n) {
188 path = rb_entry(n, struct ipoib_path, rb_node);
189
190 ret = memcmp(gid->raw, path->pathrec.dgid.raw,
191 sizeof (union ib_gid));
192
193 if (ret < 0)
194 n = n->rb_left;
195 else if (ret > 0)
196 n = n->rb_right;
197 else
198 return path;
199 }
200
201 return NULL;
202}
203
204static int __path_add(struct net_device *dev, struct ipoib_path *path)
205{
206 struct ipoib_dev_priv *priv = netdev_priv(dev);
207 struct rb_node **n = &priv->path_tree.rb_node;
208 struct rb_node *pn = NULL;
209 struct ipoib_path *tpath;
210 int ret;
211
212 while (*n) {
213 pn = *n;
214 tpath = rb_entry(pn, struct ipoib_path, rb_node);
215
216 ret = memcmp(path->pathrec.dgid.raw, tpath->pathrec.dgid.raw,
217 sizeof (union ib_gid));
218 if (ret < 0)
219 n = &pn->rb_left;
220 else if (ret > 0)
221 n = &pn->rb_right;
222 else
223 return -EEXIST;
224 }
225
226 rb_link_node(&path->rb_node, pn, n);
227 rb_insert_color(&path->rb_node, &priv->path_tree);
228
229 list_add_tail(&path->list, &priv->path_list);
230
231 return 0;
232}
233
234static void path_free(struct net_device *dev, struct ipoib_path *path)
235{
236 struct ipoib_dev_priv *priv = netdev_priv(dev);
237 struct ipoib_neigh *neigh, *tn;
238 struct sk_buff *skb;
239 unsigned long flags;
240
241 while ((skb = __skb_dequeue(&path->queue)))
242 dev_kfree_skb_irq(skb);
243
244 spin_lock_irqsave(&priv->lock, flags);
245
246 list_for_each_entry_safe(neigh, tn, &path->neigh_list, list) {
247 /*
248 * It's safe to call ipoib_put_ah() inside priv->lock
249 * here, because we know that path->ah will always
250 * hold one more reference, so ipoib_put_ah() will
251 * never do more than decrement the ref count.
252 */
253 if (neigh->ah)
254 ipoib_put_ah(neigh->ah);
d2e0655e
MT
255
256 ipoib_neigh_free(neigh);
1da177e4
LT
257 }
258
259 spin_unlock_irqrestore(&priv->lock, flags);
260
261 if (path->ah)
262 ipoib_put_ah(path->ah);
263
264 kfree(path);
265}
266
1732b0ef
RD
267#ifdef CONFIG_INFINIBAND_IPOIB_DEBUG
268
269struct ipoib_path_iter *ipoib_path_iter_init(struct net_device *dev)
270{
271 struct ipoib_path_iter *iter;
272
273 iter = kmalloc(sizeof *iter, GFP_KERNEL);
274 if (!iter)
275 return NULL;
276
277 iter->dev = dev;
278 memset(iter->path.pathrec.dgid.raw, 0, 16);
279
280 if (ipoib_path_iter_next(iter)) {
281 kfree(iter);
282 return NULL;
283 }
284
285 return iter;
286}
287
288int ipoib_path_iter_next(struct ipoib_path_iter *iter)
289{
290 struct ipoib_dev_priv *priv = netdev_priv(iter->dev);
291 struct rb_node *n;
292 struct ipoib_path *path;
293 int ret = 1;
294
295 spin_lock_irq(&priv->lock);
296
297 n = rb_first(&priv->path_tree);
298
299 while (n) {
300 path = rb_entry(n, struct ipoib_path, rb_node);
301
302 if (memcmp(iter->path.pathrec.dgid.raw, path->pathrec.dgid.raw,
303 sizeof (union ib_gid)) < 0) {
304 iter->path = *path;
305 ret = 0;
306 break;
307 }
308
309 n = rb_next(n);
310 }
311
312 spin_unlock_irq(&priv->lock);
313
314 return ret;
315}
316
317void ipoib_path_iter_read(struct ipoib_path_iter *iter,
318 struct ipoib_path *path)
319{
320 *path = iter->path;
321}
322
323#endif /* CONFIG_INFINIBAND_IPOIB_DEBUG */
324
1da177e4
LT
325void ipoib_flush_paths(struct net_device *dev)
326{
327 struct ipoib_dev_priv *priv = netdev_priv(dev);
328 struct ipoib_path *path, *tp;
329 LIST_HEAD(remove_list);
330 unsigned long flags;
331
332 spin_lock_irqsave(&priv->lock, flags);
333
334 list_splice(&priv->path_list, &remove_list);
335 INIT_LIST_HEAD(&priv->path_list);
336
337 list_for_each_entry(path, &remove_list, list)
338 rb_erase(&path->rb_node, &priv->path_tree);
339
340 spin_unlock_irqrestore(&priv->lock, flags);
341
342 list_for_each_entry_safe(path, tp, &remove_list, list) {
343 if (path->query)
344 ib_sa_cancel_query(path->query_id, path->query);
345 wait_for_completion(&path->done);
346 path_free(dev, path);
347 }
348}
349
350static void path_rec_completion(int status,
351 struct ib_sa_path_rec *pathrec,
352 void *path_ptr)
353{
354 struct ipoib_path *path = path_ptr;
355 struct net_device *dev = path->dev;
356 struct ipoib_dev_priv *priv = netdev_priv(dev);
357 struct ipoib_ah *ah = NULL;
358 struct ipoib_neigh *neigh;
359 struct sk_buff_head skqueue;
360 struct sk_buff *skb;
361 unsigned long flags;
362
363 if (pathrec)
364 ipoib_dbg(priv, "PathRec LID 0x%04x for GID " IPOIB_GID_FMT "\n",
365 be16_to_cpu(pathrec->dlid), IPOIB_GID_ARG(pathrec->dgid));
366 else
367 ipoib_dbg(priv, "PathRec status %d for GID " IPOIB_GID_FMT "\n",
368 status, IPOIB_GID_ARG(path->pathrec.dgid));
369
370 skb_queue_head_init(&skqueue);
371
372 if (!status) {
373 struct ib_ah_attr av = {
374 .dlid = be16_to_cpu(pathrec->dlid),
375 .sl = pathrec->sl,
bf6a9e31
JM
376 .port_num = priv->port,
377 .static_rate = pathrec->rate
1da177e4 378 };
1da177e4
LT
379
380 ah = ipoib_create_ah(dev, priv->pd, &av);
381 }
382
383 spin_lock_irqsave(&priv->lock, flags);
384
385 path->ah = ah;
386
387 if (ah) {
388 path->pathrec = *pathrec;
389
390 ipoib_dbg(priv, "created address handle %p for LID 0x%04x, SL %d\n",
391 ah, be16_to_cpu(pathrec->dlid), pathrec->sl);
392
393 while ((skb = __skb_dequeue(&path->queue)))
394 __skb_queue_tail(&skqueue, skb);
395
396 list_for_each_entry(neigh, &path->neigh_list, list) {
397 kref_get(&path->ah->ref);
398 neigh->ah = path->ah;
399
400 while ((skb = __skb_dequeue(&neigh->queue)))
401 __skb_queue_tail(&skqueue, skb);
402 }
5872a9fc 403 }
1da177e4 404
5872a9fc 405 path->query = NULL;
1da177e4
LT
406 complete(&path->done);
407
408 spin_unlock_irqrestore(&priv->lock, flags);
409
410 while ((skb = __skb_dequeue(&skqueue))) {
411 skb->dev = dev;
412 if (dev_queue_xmit(skb))
413 ipoib_warn(priv, "dev_queue_xmit failed "
414 "to requeue packet\n");
415 }
416}
417
418static struct ipoib_path *path_rec_create(struct net_device *dev,
419 union ib_gid *gid)
420{
421 struct ipoib_dev_priv *priv = netdev_priv(dev);
422 struct ipoib_path *path;
423
21a38489 424 path = kzalloc(sizeof *path, GFP_ATOMIC);
1da177e4
LT
425 if (!path)
426 return NULL;
427
21a38489 428 path->dev = dev;
1da177e4
LT
429
430 skb_queue_head_init(&path->queue);
431
432 INIT_LIST_HEAD(&path->neigh_list);
1da177e4
LT
433
434 memcpy(path->pathrec.dgid.raw, gid->raw, sizeof (union ib_gid));
435 path->pathrec.sgid = priv->local_gid;
436 path->pathrec.pkey = cpu_to_be16(priv->pkey);
437 path->pathrec.numb_path = 1;
438
439 return path;
440}
441
442static int path_rec_start(struct net_device *dev,
443 struct ipoib_path *path)
444{
445 struct ipoib_dev_priv *priv = netdev_priv(dev);
446
447 ipoib_dbg(priv, "Start path record lookup for " IPOIB_GID_FMT "\n",
448 IPOIB_GID_ARG(path->pathrec.dgid));
449
65c7edda
RD
450 init_completion(&path->done);
451
1da177e4
LT
452 path->query_id =
453 ib_sa_path_rec_get(priv->ca, priv->port,
454 &path->pathrec,
455 IB_SA_PATH_REC_DGID |
456 IB_SA_PATH_REC_SGID |
457 IB_SA_PATH_REC_NUMB_PATH |
458 IB_SA_PATH_REC_PKEY,
459 1000, GFP_ATOMIC,
460 path_rec_completion,
461 path, &path->query);
462 if (path->query_id < 0) {
463 ipoib_warn(priv, "ib_sa_path_rec_get failed\n");
464 path->query = NULL;
465 return path->query_id;
466 }
467
468 return 0;
469}
470
471static void neigh_add_path(struct sk_buff *skb, struct net_device *dev)
472{
473 struct ipoib_dev_priv *priv = netdev_priv(dev);
474 struct ipoib_path *path;
475 struct ipoib_neigh *neigh;
476
d2e0655e 477 neigh = ipoib_neigh_alloc(skb->dst->neighbour);
1da177e4
LT
478 if (!neigh) {
479 ++priv->stats.tx_dropped;
480 dev_kfree_skb_any(skb);
481 return;
482 }
483
484 skb_queue_head_init(&neigh->queue);
1da177e4
LT
485
486 /*
487 * We can only be called from ipoib_start_xmit, so we're
488 * inside tx_lock -- no need to save/restore flags.
489 */
490 spin_lock(&priv->lock);
491
492 path = __path_find(dev, (union ib_gid *) (skb->dst->neighbour->ha + 4));
493 if (!path) {
494 path = path_rec_create(dev,
495 (union ib_gid *) (skb->dst->neighbour->ha + 4));
496 if (!path)
d2e0655e 497 goto err_path;
1da177e4
LT
498
499 __path_add(dev, path);
500 }
501
502 list_add_tail(&neigh->list, &path->neigh_list);
503
47f7a071 504 if (path->ah) {
1da177e4
LT
505 kref_get(&path->ah->ref);
506 neigh->ah = path->ah;
507
508 ipoib_send(dev, skb, path->ah,
509 be32_to_cpup((__be32 *) skb->dst->neighbour->ha));
510 } else {
511 neigh->ah = NULL;
bfef73fa 512 __skb_queue_tail(&neigh->queue, skb);
1da177e4
LT
513
514 if (!path->query && path_rec_start(dev, path))
d2e0655e 515 goto err_list;
1da177e4
LT
516 }
517
518 spin_unlock(&priv->lock);
519 return;
520
d2e0655e 521err_list:
1da177e4 522 list_del(&neigh->list);
1da177e4 523
d2e0655e
MT
524err_path:
525 ipoib_neigh_free(neigh);
1da177e4
LT
526 ++priv->stats.tx_dropped;
527 dev_kfree_skb_any(skb);
528
529 spin_unlock(&priv->lock);
530}
531
d70ed607 532static void ipoib_path_lookup(struct sk_buff *skb, struct net_device *dev)
1da177e4
LT
533{
534 struct ipoib_dev_priv *priv = netdev_priv(skb->dev);
535
536 /* Look up path record for unicasts */
537 if (skb->dst->neighbour->ha[4] != 0xff) {
538 neigh_add_path(skb, dev);
539 return;
540 }
541
542 /* Add in the P_Key for multicasts */
543 skb->dst->neighbour->ha[8] = (priv->pkey >> 8) & 0xff;
544 skb->dst->neighbour->ha[9] = priv->pkey & 0xff;
545 ipoib_mcast_send(dev, (union ib_gid *) (skb->dst->neighbour->ha + 4), skb);
546}
547
548static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
549 struct ipoib_pseudoheader *phdr)
550{
551 struct ipoib_dev_priv *priv = netdev_priv(dev);
552 struct ipoib_path *path;
553
554 /*
555 * We can only be called from ipoib_start_xmit, so we're
556 * inside tx_lock -- no need to save/restore flags.
557 */
558 spin_lock(&priv->lock);
559
560 path = __path_find(dev, (union ib_gid *) (phdr->hwaddr + 4));
561 if (!path) {
562 path = path_rec_create(dev,
563 (union ib_gid *) (phdr->hwaddr + 4));
564 if (path) {
565 /* put pseudoheader back on for next time */
566 skb_push(skb, sizeof *phdr);
567 __skb_queue_tail(&path->queue, skb);
568
569 if (path_rec_start(dev, path)) {
570 spin_unlock(&priv->lock);
571 path_free(dev, path);
572 return;
573 } else
574 __path_add(dev, path);
575 } else {
576 ++priv->stats.tx_dropped;
577 dev_kfree_skb_any(skb);
578 }
579
580 spin_unlock(&priv->lock);
581 return;
582 }
583
47f7a071 584 if (path->ah) {
1da177e4
LT
585 ipoib_dbg(priv, "Send unicast ARP to %04x\n",
586 be16_to_cpu(path->pathrec.dlid));
587
588 ipoib_send(dev, skb, path->ah,
589 be32_to_cpup((__be32 *) phdr->hwaddr));
590 } else if ((path->query || !path_rec_start(dev, path)) &&
591 skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
592 /* put pseudoheader back on for next time */
593 skb_push(skb, sizeof *phdr);
594 __skb_queue_tail(&path->queue, skb);
595 } else {
596 ++priv->stats.tx_dropped;
597 dev_kfree_skb_any(skb);
598 }
599
600 spin_unlock(&priv->lock);
601}
602
603static int ipoib_start_xmit(struct sk_buff *skb, struct net_device *dev)
604{
605 struct ipoib_dev_priv *priv = netdev_priv(dev);
606 struct ipoib_neigh *neigh;
607 unsigned long flags;
608
a20583a7 609 if (!spin_trylock_irqsave(&priv->tx_lock, flags))
1da177e4 610 return NETDEV_TX_LOCKED;
1da177e4
LT
611
612 /*
613 * Check if our queue is stopped. Since we have the LLTX bit
614 * set, we can't rely on netif_stop_queue() preventing our
615 * xmit function from being called with a full queue.
616 */
617 if (unlikely(netif_queue_stopped(dev))) {
618 spin_unlock_irqrestore(&priv->tx_lock, flags);
619 return NETDEV_TX_BUSY;
620 }
621
622 if (skb->dst && skb->dst->neighbour) {
623 if (unlikely(!*to_ipoib_neigh(skb->dst->neighbour))) {
d70ed607 624 ipoib_path_lookup(skb, dev);
1da177e4
LT
625 goto out;
626 }
627
628 neigh = *to_ipoib_neigh(skb->dst->neighbour);
629
630 if (likely(neigh->ah)) {
631 ipoib_send(dev, skb, neigh->ah,
632 be32_to_cpup((__be32 *) skb->dst->neighbour->ha));
633 goto out;
634 }
635
636 if (skb_queue_len(&neigh->queue) < IPOIB_MAX_PATH_REC_QUEUE) {
637 spin_lock(&priv->lock);
638 __skb_queue_tail(&neigh->queue, skb);
639 spin_unlock(&priv->lock);
640 } else {
641 ++priv->stats.tx_dropped;
642 dev_kfree_skb_any(skb);
643 }
644 } else {
645 struct ipoib_pseudoheader *phdr =
646 (struct ipoib_pseudoheader *) skb->data;
647 skb_pull(skb, sizeof *phdr);
648
649 if (phdr->hwaddr[4] == 0xff) {
650 /* Add in the P_Key for multicast*/
651 phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff;
652 phdr->hwaddr[9] = priv->pkey & 0xff;
653
654 ipoib_mcast_send(dev, (union ib_gid *) (phdr->hwaddr + 4), skb);
655 } else {
0dca0f7b 656 /* unicast GID -- should be ARP or RARP reply */
1da177e4 657
0dca0f7b
HR
658 if ((be16_to_cpup((__be16 *) skb->data) != ETH_P_ARP) &&
659 (be16_to_cpup((__be16 *) skb->data) != ETH_P_RARP)) {
1da177e4
LT
660 ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x "
661 IPOIB_GID_FMT "\n",
662 skb->dst ? "neigh" : "dst",
97f52eb4
SH
663 be16_to_cpup((__be16 *) skb->data),
664 be32_to_cpup((__be32 *) phdr->hwaddr),
1da177e4
LT
665 IPOIB_GID_ARG(*(union ib_gid *) (phdr->hwaddr + 4)));
666 dev_kfree_skb_any(skb);
667 ++priv->stats.tx_dropped;
668 goto out;
669 }
670
671 unicast_arp_send(skb, dev, phdr);
672 }
673 }
674
675out:
676 spin_unlock_irqrestore(&priv->tx_lock, flags);
677
678 return NETDEV_TX_OK;
679}
680
681static struct net_device_stats *ipoib_get_stats(struct net_device *dev)
682{
683 struct ipoib_dev_priv *priv = netdev_priv(dev);
684
685 return &priv->stats;
686}
687
688static void ipoib_timeout(struct net_device *dev)
689{
690 struct ipoib_dev_priv *priv = netdev_priv(dev);
691
4b2d319b
RD
692 ipoib_warn(priv, "transmit timeout: latency %d msecs\n",
693 jiffies_to_msecs(jiffies - dev->trans_start));
694 ipoib_warn(priv, "queue stopped %d, tx_head %u, tx_tail %u\n",
695 netif_queue_stopped(dev),
696 priv->tx_head, priv->tx_tail);
1da177e4
LT
697 /* XXX reset QP, etc. */
698}
699
700static int ipoib_hard_header(struct sk_buff *skb,
701 struct net_device *dev,
702 unsigned short type,
703 void *daddr, void *saddr, unsigned len)
704{
705 struct ipoib_header *header;
706
707 header = (struct ipoib_header *) skb_push(skb, sizeof *header);
708
709 header->proto = htons(type);
710 header->reserved = 0;
711
712 /*
713 * If we don't have a neighbour structure, stuff the
714 * destination address onto the front of the skb so we can
715 * figure out where to send the packet later.
716 */
ef12d456 717 if ((!skb->dst || !skb->dst->neighbour) && daddr) {
1da177e4
LT
718 struct ipoib_pseudoheader *phdr =
719 (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr);
720 memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN);
721 }
722
723 return 0;
724}
725
726static void ipoib_set_mcast_list(struct net_device *dev)
727{
728 struct ipoib_dev_priv *priv = netdev_priv(dev);
729
7a343d4c
LA
730 if (!test_bit(IPOIB_FLAG_OPER_UP, &priv->flags)) {
731 ipoib_dbg(priv, "IPOIB_FLAG_OPER_UP not set");
732 return;
733 }
734
1ad62a19 735 queue_work(ipoib_workqueue, &priv->restart_task);
1da177e4
LT
736}
737
738static void ipoib_neigh_destructor(struct neighbour *n)
739{
740 struct ipoib_neigh *neigh;
741 struct ipoib_dev_priv *priv = netdev_priv(n->dev);
742 unsigned long flags;
743 struct ipoib_ah *ah = NULL;
744
745 ipoib_dbg(priv,
746 "neigh_destructor for %06x " IPOIB_GID_FMT "\n",
747 be32_to_cpup((__be32 *) n->ha),
748 IPOIB_GID_ARG(*((union ib_gid *) (n->ha + 4))));
749
750 spin_lock_irqsave(&priv->lock, flags);
751
752 neigh = *to_ipoib_neigh(n);
753 if (neigh) {
754 if (neigh->ah)
755 ah = neigh->ah;
756 list_del(&neigh->list);
d2e0655e 757 ipoib_neigh_free(neigh);
1da177e4
LT
758 }
759
760 spin_unlock_irqrestore(&priv->lock, flags);
761
762 if (ah)
763 ipoib_put_ah(ah);
764}
765
d2e0655e
MT
766struct ipoib_neigh *ipoib_neigh_alloc(struct neighbour *neighbour)
767{
768 struct ipoib_neigh *neigh;
769
770 neigh = kmalloc(sizeof *neigh, GFP_ATOMIC);
771 if (!neigh)
772 return NULL;
773
774 neigh->neighbour = neighbour;
775 *to_ipoib_neigh(neighbour) = neigh;
776
777 return neigh;
778}
779
780void ipoib_neigh_free(struct ipoib_neigh *neigh)
781{
782 *to_ipoib_neigh(neigh->neighbour) = NULL;
783 kfree(neigh);
784}
785
1da177e4
LT
786static int ipoib_neigh_setup_dev(struct net_device *dev, struct neigh_parms *parms)
787{
c5ecd62c 788 parms->neigh_destructor = ipoib_neigh_destructor;
1da177e4
LT
789
790 return 0;
791}
792
793int ipoib_dev_init(struct net_device *dev, struct ib_device *ca, int port)
794{
795 struct ipoib_dev_priv *priv = netdev_priv(dev);
796
797 /* Allocate RX/TX "rings" to hold queued skbs */
798
de6eb66b 799 priv->rx_ring = kzalloc(IPOIB_RX_RING_SIZE * sizeof (struct ipoib_rx_buf),
1da177e4
LT
800 GFP_KERNEL);
801 if (!priv->rx_ring) {
802 printk(KERN_WARNING "%s: failed to allocate RX ring (%d entries)\n",
803 ca->name, IPOIB_RX_RING_SIZE);
804 goto out;
805 }
1da177e4 806
de6eb66b 807 priv->tx_ring = kzalloc(IPOIB_TX_RING_SIZE * sizeof (struct ipoib_tx_buf),
1da177e4
LT
808 GFP_KERNEL);
809 if (!priv->tx_ring) {
810 printk(KERN_WARNING "%s: failed to allocate TX ring (%d entries)\n",
811 ca->name, IPOIB_TX_RING_SIZE);
812 goto out_rx_ring_cleanup;
813 }
1da177e4
LT
814
815 /* priv->tx_head & tx_tail are already 0 */
816
817 if (ipoib_ib_dev_init(dev, ca, port))
818 goto out_tx_ring_cleanup;
819
820 return 0;
821
822out_tx_ring_cleanup:
823 kfree(priv->tx_ring);
824
825out_rx_ring_cleanup:
826 kfree(priv->rx_ring);
827
828out:
829 return -ENOMEM;
830}
831
832void ipoib_dev_cleanup(struct net_device *dev)
833{
834 struct ipoib_dev_priv *priv = netdev_priv(dev), *cpriv, *tcpriv;
835
1732b0ef 836 ipoib_delete_debug_files(dev);
1da177e4
LT
837
838 /* Delete any child interfaces first */
839 list_for_each_entry_safe(cpriv, tcpriv, &priv->child_intfs, list) {
840 unregister_netdev(cpriv->dev);
841 ipoib_dev_cleanup(cpriv->dev);
842 free_netdev(cpriv->dev);
843 }
844
845 ipoib_ib_dev_cleanup(dev);
846
92a6b34b
HR
847 kfree(priv->rx_ring);
848 kfree(priv->tx_ring);
1da177e4 849
92a6b34b
HR
850 priv->rx_ring = NULL;
851 priv->tx_ring = NULL;
1da177e4
LT
852}
853
854static void ipoib_setup(struct net_device *dev)
855{
856 struct ipoib_dev_priv *priv = netdev_priv(dev);
857
858 dev->open = ipoib_open;
859 dev->stop = ipoib_stop;
860 dev->change_mtu = ipoib_change_mtu;
861 dev->hard_start_xmit = ipoib_start_xmit;
862 dev->get_stats = ipoib_get_stats;
863 dev->tx_timeout = ipoib_timeout;
864 dev->hard_header = ipoib_hard_header;
865 dev->set_multicast_list = ipoib_set_mcast_list;
866 dev->neigh_setup = ipoib_neigh_setup_dev;
867
868 dev->watchdog_timeo = HZ;
869
1da177e4
LT
870 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
871
872 /*
873 * We add in INFINIBAND_ALEN to allow for the destination
874 * address "pseudoheader" for skbs without neighbour struct.
875 */
876 dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN;
877 dev->addr_len = INFINIBAND_ALEN;
878 dev->type = ARPHRD_INFINIBAND;
879 dev->tx_queue_len = IPOIB_TX_RING_SIZE * 2;
880 dev->features = NETIF_F_VLAN_CHALLENGED | NETIF_F_LLTX;
881
882 /* MTU will be reset when mcast join happens */
883 dev->mtu = IPOIB_PACKET_SIZE - IPOIB_ENCAP_LEN;
884 priv->mcast_mtu = priv->admin_mtu = dev->mtu;
885
886 memcpy(dev->broadcast, ipv4_bcast_addr, INFINIBAND_ALEN);
887
888 netif_carrier_off(dev);
889
890 SET_MODULE_OWNER(dev);
891
892 priv->dev = dev;
893
894 spin_lock_init(&priv->lock);
895 spin_lock_init(&priv->tx_lock);
896
95ed644f
IM
897 mutex_init(&priv->mcast_mutex);
898 mutex_init(&priv->vlan_mutex);
1da177e4
LT
899
900 INIT_LIST_HEAD(&priv->path_list);
901 INIT_LIST_HEAD(&priv->child_intfs);
902 INIT_LIST_HEAD(&priv->dead_ahs);
903 INIT_LIST_HEAD(&priv->multicast_list);
904
905 INIT_WORK(&priv->pkey_task, ipoib_pkey_poll, priv->dev);
906 INIT_WORK(&priv->mcast_task, ipoib_mcast_join_task, priv->dev);
907 INIT_WORK(&priv->flush_task, ipoib_ib_dev_flush, priv->dev);
908 INIT_WORK(&priv->restart_task, ipoib_mcast_restart_task, priv->dev);
909 INIT_WORK(&priv->ah_reap_task, ipoib_reap_ah, priv->dev);
910}
911
912struct ipoib_dev_priv *ipoib_intf_alloc(const char *name)
913{
914 struct net_device *dev;
915
916 dev = alloc_netdev((int) sizeof (struct ipoib_dev_priv), name,
917 ipoib_setup);
918 if (!dev)
919 return NULL;
920
921 return netdev_priv(dev);
922}
923
924static ssize_t show_pkey(struct class_device *cdev, char *buf)
925{
926 struct ipoib_dev_priv *priv =
927 netdev_priv(container_of(cdev, struct net_device, class_dev));
928
929 return sprintf(buf, "0x%04x\n", priv->pkey);
930}
931static CLASS_DEVICE_ATTR(pkey, S_IRUGO, show_pkey, NULL);
932
933static ssize_t create_child(struct class_device *cdev,
934 const char *buf, size_t count)
935{
936 int pkey;
937 int ret;
938
939 if (sscanf(buf, "%i", &pkey) != 1)
940 return -EINVAL;
941
942 if (pkey < 0 || pkey > 0xffff)
943 return -EINVAL;
944
4ce05937
RD
945 /*
946 * Set the full membership bit, so that we join the right
947 * broadcast group, etc.
948 */
949 pkey |= 0x8000;
950
1da177e4
LT
951 ret = ipoib_vlan_add(container_of(cdev, struct net_device, class_dev),
952 pkey);
953
954 return ret ? ret : count;
955}
956static CLASS_DEVICE_ATTR(create_child, S_IWUGO, NULL, create_child);
957
958static ssize_t delete_child(struct class_device *cdev,
959 const char *buf, size_t count)
960{
961 int pkey;
962 int ret;
963
964 if (sscanf(buf, "%i", &pkey) != 1)
965 return -EINVAL;
966
967 if (pkey < 0 || pkey > 0xffff)
968 return -EINVAL;
969
970 ret = ipoib_vlan_delete(container_of(cdev, struct net_device, class_dev),
971 pkey);
972
973 return ret ? ret : count;
974
975}
976static CLASS_DEVICE_ATTR(delete_child, S_IWUGO, NULL, delete_child);
977
978int ipoib_add_pkey_attr(struct net_device *dev)
979{
980 return class_device_create_file(&dev->class_dev,
981 &class_device_attr_pkey);
982}
983
984static struct net_device *ipoib_add_port(const char *format,
985 struct ib_device *hca, u8 port)
986{
987 struct ipoib_dev_priv *priv;
988 int result = -ENOMEM;
989
990 priv = ipoib_intf_alloc(format);
991 if (!priv)
992 goto alloc_mem_failed;
993
994 SET_NETDEV_DEV(priv->dev, hca->dma_device);
995
996 result = ib_query_pkey(hca, port, 0, &priv->pkey);
997 if (result) {
998 printk(KERN_WARNING "%s: ib_query_pkey port %d failed (ret = %d)\n",
999 hca->name, port, result);
1000 goto alloc_mem_failed;
1001 }
1002
4ce05937
RD
1003 /*
1004 * Set the full membership bit, so that we join the right
1005 * broadcast group, etc.
1006 */
1007 priv->pkey |= 0x8000;
1008
1da177e4
LT
1009 priv->dev->broadcast[8] = priv->pkey >> 8;
1010 priv->dev->broadcast[9] = priv->pkey & 0xff;
1011
1012 result = ib_query_gid(hca, port, 0, &priv->local_gid);
1013 if (result) {
1014 printk(KERN_WARNING "%s: ib_query_gid port %d failed (ret = %d)\n",
1015 hca->name, port, result);
1016 goto alloc_mem_failed;
1017 } else
1018 memcpy(priv->dev->dev_addr + 4, priv->local_gid.raw, sizeof (union ib_gid));
1019
1020
1021 result = ipoib_dev_init(priv->dev, hca, port);
1022 if (result < 0) {
1023 printk(KERN_WARNING "%s: failed to initialize port %d (ret = %d)\n",
1024 hca->name, port, result);
1025 goto device_init_failed;
1026 }
1027
1028 INIT_IB_EVENT_HANDLER(&priv->event_handler,
1029 priv->ca, ipoib_event);
1030 result = ib_register_event_handler(&priv->event_handler);
1031 if (result < 0) {
1032 printk(KERN_WARNING "%s: ib_register_event_handler failed for "
1033 "port %d (ret = %d)\n",
1034 hca->name, port, result);
1035 goto event_failed;
1036 }
1037
1038 result = register_netdev(priv->dev);
1039 if (result) {
1040 printk(KERN_WARNING "%s: couldn't register ipoib port %d; error %d\n",
1041 hca->name, port, result);
1042 goto register_failed;
1043 }
1044
1732b0ef 1045 ipoib_create_debug_files(priv->dev);
1da177e4
LT
1046
1047 if (ipoib_add_pkey_attr(priv->dev))
1048 goto sysfs_failed;
1049 if (class_device_create_file(&priv->dev->class_dev,
1050 &class_device_attr_create_child))
1051 goto sysfs_failed;
1052 if (class_device_create_file(&priv->dev->class_dev,
1053 &class_device_attr_delete_child))
1054 goto sysfs_failed;
1055
1056 return priv->dev;
1057
1058sysfs_failed:
1732b0ef 1059 ipoib_delete_debug_files(priv->dev);
1da177e4
LT
1060 unregister_netdev(priv->dev);
1061
1062register_failed:
1063 ib_unregister_event_handler(&priv->event_handler);
51574e03 1064 flush_scheduled_work();
1da177e4
LT
1065
1066event_failed:
1067 ipoib_dev_cleanup(priv->dev);
1068
1069device_init_failed:
1070 free_netdev(priv->dev);
1071
1072alloc_mem_failed:
1073 return ERR_PTR(result);
1074}
1075
1076static void ipoib_add_one(struct ib_device *device)
1077{
1078 struct list_head *dev_list;
1079 struct net_device *dev;
1080 struct ipoib_dev_priv *priv;
1081 int s, e, p;
1082
1083 dev_list = kmalloc(sizeof *dev_list, GFP_KERNEL);
1084 if (!dev_list)
1085 return;
1086
1087 INIT_LIST_HEAD(dev_list);
1088
1089 if (device->node_type == IB_NODE_SWITCH) {
1090 s = 0;
1091 e = 0;
1092 } else {
1093 s = 1;
1094 e = device->phys_port_cnt;
1095 }
1096
1097 for (p = s; p <= e; ++p) {
1098 dev = ipoib_add_port("ib%d", device, p);
1099 if (!IS_ERR(dev)) {
1100 priv = netdev_priv(dev);
1101 list_add_tail(&priv->list, dev_list);
1102 }
1103 }
1104
1105 ib_set_client_data(device, &ipoib_client, dev_list);
1106}
1107
1108static void ipoib_remove_one(struct ib_device *device)
1109{
1110 struct ipoib_dev_priv *priv, *tmp;
1111 struct list_head *dev_list;
1112
1113 dev_list = ib_get_client_data(device, &ipoib_client);
1114
1115 list_for_each_entry_safe(priv, tmp, dev_list, list) {
1116 ib_unregister_event_handler(&priv->event_handler);
51574e03 1117 flush_scheduled_work();
1da177e4
LT
1118
1119 unregister_netdev(priv->dev);
1120 ipoib_dev_cleanup(priv->dev);
1121 free_netdev(priv->dev);
1122 }
06c56e44
MT
1123
1124 kfree(dev_list);
1da177e4
LT
1125}
1126
1127static int __init ipoib_init_module(void)
1128{
1129 int ret;
1130
1131 ret = ipoib_register_debugfs();
1132 if (ret)
1133 return ret;
1134
1135 /*
1136 * We create our own workqueue mainly because we want to be
1137 * able to flush it when devices are being removed. We can't
1138 * use schedule_work()/flush_scheduled_work() because both
1139 * unregister_netdev() and linkwatch_event take the rtnl lock,
1140 * so flush_scheduled_work() can deadlock during device
1141 * removal.
1142 */
1143 ipoib_workqueue = create_singlethread_workqueue("ipoib");
1144 if (!ipoib_workqueue) {
1145 ret = -ENOMEM;
1146 goto err_fs;
1147 }
1148
1149 ret = ib_register_client(&ipoib_client);
1150 if (ret)
1151 goto err_wq;
1152
1153 return 0;
1154
1da177e4
LT
1155err_wq:
1156 destroy_workqueue(ipoib_workqueue);
1157
9adec1a8
RD
1158err_fs:
1159 ipoib_unregister_debugfs();
1160
1da177e4
LT
1161 return ret;
1162}
1163
1164static void __exit ipoib_cleanup_module(void)
1165{
1da177e4 1166 ib_unregister_client(&ipoib_client);
9adec1a8 1167 ipoib_unregister_debugfs();
1da177e4
LT
1168 destroy_workqueue(ipoib_workqueue);
1169}
1170
1171module_init(ipoib_init_module);
1172module_exit(ipoib_cleanup_module);