Showing error 1626

User: Jiri Slaby
Error type: Invalid Pointer Dereference
Error type description: A pointer which is invalid is being dereferenced
File location: drivers/infiniband/hw/amso1100/c2_provider.c
Line in file: 854
Project: Linux Kernel
Project version: 2.6.28
Tools: Smatch (1.59)
Entered: 2013-09-10 07:54:05 UTC


Source:

  1/*
  2 * Copyright (c) 2005 Ammasso, Inc. All rights reserved.
  3 * Copyright (c) 2005 Open Grid Computing, Inc. All rights reserved.
  4 *
  5 * This software is available to you under a choice of one of two
  6 * licenses.  You may choose to be licensed under the terms of the GNU
  7 * General Public License (GPL) Version 2, available from the file
  8 * COPYING in the main directory of this source tree, or the
  9 * OpenIB.org BSD license below:
 10 *
 11 *     Redistribution and use in source and binary forms, with or
 12 *     without modification, are permitted provided that the following
 13 *     conditions are met:
 14 *
 15 *      - Redistributions of source code must retain the above
 16 *        copyright notice, this list of conditions and the following
 17 *        disclaimer.
 18 *
 19 *      - Redistributions in binary form must reproduce the above
 20 *        copyright notice, this list of conditions and the following
 21 *        disclaimer in the documentation and/or other materials
 22 *        provided with the distribution.
 23 *
 24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 31 * SOFTWARE.
 32 *
 33 */
 34
 35#include <linux/module.h>
 36#include <linux/moduleparam.h>
 37#include <linux/pci.h>
 38#include <linux/netdevice.h>
 39#include <linux/etherdevice.h>
 40#include <linux/inetdevice.h>
 41#include <linux/delay.h>
 42#include <linux/ethtool.h>
 43#include <linux/mii.h>
 44#include <linux/if_vlan.h>
 45#include <linux/crc32.h>
 46#include <linux/in.h>
 47#include <linux/ip.h>
 48#include <linux/tcp.h>
 49#include <linux/init.h>
 50#include <linux/dma-mapping.h>
 51#include <linux/if_arp.h>
 52#include <linux/vmalloc.h>
 53
 54#include <asm/io.h>
 55#include <asm/irq.h>
 56#include <asm/byteorder.h>
 57
 58#include <rdma/ib_smi.h>
 59#include <rdma/ib_umem.h>
 60#include <rdma/ib_user_verbs.h>
 61#include "c2.h"
 62#include "c2_provider.h"
 63#include "c2_user.h"
 64
 65static int c2_query_device(struct ib_device *ibdev,
 66                           struct ib_device_attr *props)
 67{
 68        struct c2_dev *c2dev = to_c2dev(ibdev);
 69
 70        pr_debug("%s:%u\n", __func__, __LINE__);
 71
 72        *props = c2dev->props;
 73        return 0;
 74}
 75
 76static int c2_query_port(struct ib_device *ibdev,
 77                         u8 port, struct ib_port_attr *props)
 78{
 79        pr_debug("%s:%u\n", __func__, __LINE__);
 80
 81        props->max_mtu = IB_MTU_4096;
 82        props->lid = 0;
 83        props->lmc = 0;
 84        props->sm_lid = 0;
 85        props->sm_sl = 0;
 86        props->state = IB_PORT_ACTIVE;
 87        props->phys_state = 0;
 88        props->port_cap_flags =
 89            IB_PORT_CM_SUP |
 90            IB_PORT_REINIT_SUP |
 91            IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP;
 92        props->gid_tbl_len = 1;
 93        props->pkey_tbl_len = 1;
 94        props->qkey_viol_cntr = 0;
 95        props->active_width = 1;
 96        props->active_speed = 1;
 97
 98        return 0;
 99}
100
101static int c2_modify_port(struct ib_device *ibdev,
102                          u8 port, int port_modify_mask,
103                          struct ib_port_modify *props)
104{
105        pr_debug("%s:%u\n", __func__, __LINE__);
106        return 0;
107}
108
109static int c2_query_pkey(struct ib_device *ibdev,
110                         u8 port, u16 index, u16 * pkey)
111{
112        pr_debug("%s:%u\n", __func__, __LINE__);
113        *pkey = 0;
114        return 0;
115}
116
117static int c2_query_gid(struct ib_device *ibdev, u8 port,
118                        int index, union ib_gid *gid)
119{
120        struct c2_dev *c2dev = to_c2dev(ibdev);
121
122        pr_debug("%s:%u\n", __func__, __LINE__);
123        memset(&(gid->raw[0]), 0, sizeof(gid->raw));
124        memcpy(&(gid->raw[0]), c2dev->pseudo_netdev->dev_addr, 6);
125
126        return 0;
127}
128
129/* Allocate the user context data structure. This keeps track
130 * of all objects associated with a particular user-mode client.
131 */
132static struct ib_ucontext *c2_alloc_ucontext(struct ib_device *ibdev,
133                                             struct ib_udata *udata)
134{
135        struct c2_ucontext *context;
136
137        pr_debug("%s:%u\n", __func__, __LINE__);
138        context = kmalloc(sizeof(*context), GFP_KERNEL);
139        if (!context)
140                return ERR_PTR(-ENOMEM);
141
142        return &context->ibucontext;
143}
144
145static int c2_dealloc_ucontext(struct ib_ucontext *context)
146{
147        pr_debug("%s:%u\n", __func__, __LINE__);
148        kfree(context);
149        return 0;
150}
151
152static int c2_mmap_uar(struct ib_ucontext *context, struct vm_area_struct *vma)
153{
154        pr_debug("%s:%u\n", __func__, __LINE__);
155        return -ENOSYS;
156}
157
158static struct ib_pd *c2_alloc_pd(struct ib_device *ibdev,
159                                 struct ib_ucontext *context,
160                                 struct ib_udata *udata)
161{
162        struct c2_pd *pd;
163        int err;
164
165        pr_debug("%s:%u\n", __func__, __LINE__);
166
167        pd = kmalloc(sizeof(*pd), GFP_KERNEL);
168        if (!pd)
169                return ERR_PTR(-ENOMEM);
170
171        err = c2_pd_alloc(to_c2dev(ibdev), !context, pd);
172        if (err) {
173                kfree(pd);
174                return ERR_PTR(err);
175        }
176
177        if (context) {
178                if (ib_copy_to_udata(udata, &pd->pd_id, sizeof(__u32))) {
179                        c2_pd_free(to_c2dev(ibdev), pd);
180                        kfree(pd);
181                        return ERR_PTR(-EFAULT);
182                }
183        }
184
185        return &pd->ibpd;
186}
187
188static int c2_dealloc_pd(struct ib_pd *pd)
189{
190        pr_debug("%s:%u\n", __func__, __LINE__);
191        c2_pd_free(to_c2dev(pd->device), to_c2pd(pd));
192        kfree(pd);
193
194        return 0;
195}
196
197static struct ib_ah *c2_ah_create(struct ib_pd *pd, struct ib_ah_attr *ah_attr)
198{
199        pr_debug("%s:%u\n", __func__, __LINE__);
200        return ERR_PTR(-ENOSYS);
201}
202
203static int c2_ah_destroy(struct ib_ah *ah)
204{
205        pr_debug("%s:%u\n", __func__, __LINE__);
206        return -ENOSYS;
207}
208
209static void c2_add_ref(struct ib_qp *ibqp)
210{
211        struct c2_qp *qp;
212        BUG_ON(!ibqp);
213        qp = to_c2qp(ibqp);
214        atomic_inc(&qp->refcount);
215}
216
217static void c2_rem_ref(struct ib_qp *ibqp)
218{
219        struct c2_qp *qp;
220        BUG_ON(!ibqp);
221        qp = to_c2qp(ibqp);
222        if (atomic_dec_and_test(&qp->refcount))
223                wake_up(&qp->wait);
224}
225
226struct ib_qp *c2_get_qp(struct ib_device *device, int qpn)
227{
228        struct c2_dev* c2dev = to_c2dev(device);
229        struct c2_qp *qp;
230
231        qp = c2_find_qpn(c2dev, qpn);
232        pr_debug("%s Returning QP=%p for QPN=%d, device=%p, refcount=%d\n",
233                __func__, qp, qpn, device,
234                (qp?atomic_read(&qp->refcount):0));
235
236        return (qp?&qp->ibqp:NULL);
237}
238
239static struct ib_qp *c2_create_qp(struct ib_pd *pd,
240                                  struct ib_qp_init_attr *init_attr,
241                                  struct ib_udata *udata)
242{
243        struct c2_qp *qp;
244        int err;
245
246        pr_debug("%s:%u\n", __func__, __LINE__);
247
248        if (init_attr->create_flags)
249                return ERR_PTR(-EINVAL);
250
251        switch (init_attr->qp_type) {
252        case IB_QPT_RC:
253                qp = kzalloc(sizeof(*qp), GFP_KERNEL);
254                if (!qp) {
255                        pr_debug("%s: Unable to allocate QP\n", __func__);
256                        return ERR_PTR(-ENOMEM);
257                }
258                spin_lock_init(&qp->lock);
259                if (pd->uobject) {
260                        /* userspace specific */
261                }
262
263                err = c2_alloc_qp(to_c2dev(pd->device),
264                                  to_c2pd(pd), init_attr, qp);
265
266                if (err && pd->uobject) {
267                        /* userspace specific */
268                }
269
270                break;
271        default:
272                pr_debug("%s: Invalid QP type: %d\n", __func__,
273                        init_attr->qp_type);
274                return ERR_PTR(-EINVAL);
275        }
276
277        if (err) {
278                kfree(qp);
279                return ERR_PTR(err);
280        }
281
282        return &qp->ibqp;
283}
284
285static int c2_destroy_qp(struct ib_qp *ib_qp)
286{
287        struct c2_qp *qp = to_c2qp(ib_qp);
288
289        pr_debug("%s:%u qp=%p,qp->state=%d\n",
290                __func__, __LINE__, ib_qp, qp->state);
291        c2_free_qp(to_c2dev(ib_qp->device), qp);
292        kfree(qp);
293        return 0;
294}
295
296static struct ib_cq *c2_create_cq(struct ib_device *ibdev, int entries, int vector,
297                                  struct ib_ucontext *context,
298                                  struct ib_udata *udata)
299{
300        struct c2_cq *cq;
301        int err;
302
303        cq = kmalloc(sizeof(*cq), GFP_KERNEL);
304        if (!cq) {
305                pr_debug("%s: Unable to allocate CQ\n", __func__);
306                return ERR_PTR(-ENOMEM);
307        }
308
309        err = c2_init_cq(to_c2dev(ibdev), entries, NULL, cq);
310        if (err) {
311                pr_debug("%s: error initializing CQ\n", __func__);
312                kfree(cq);
313                return ERR_PTR(err);
314        }
315
316        return &cq->ibcq;
317}
318
319static int c2_destroy_cq(struct ib_cq *ib_cq)
320{
321        struct c2_cq *cq = to_c2cq(ib_cq);
322
323        pr_debug("%s:%u\n", __func__, __LINE__);
324
325        c2_free_cq(to_c2dev(ib_cq->device), cq);
326        kfree(cq);
327
328        return 0;
329}
330
331static inline u32 c2_convert_access(int acc)
332{
333        return (acc & IB_ACCESS_REMOTE_WRITE ? C2_ACF_REMOTE_WRITE : 0) |
334            (acc & IB_ACCESS_REMOTE_READ ? C2_ACF_REMOTE_READ : 0) |
335            (acc & IB_ACCESS_LOCAL_WRITE ? C2_ACF_LOCAL_WRITE : 0) |
336            C2_ACF_LOCAL_READ | C2_ACF_WINDOW_BIND;
337}
338
339static struct ib_mr *c2_reg_phys_mr(struct ib_pd *ib_pd,
340                                    struct ib_phys_buf *buffer_list,
341                                    int num_phys_buf, int acc, u64 * iova_start)
342{
343        struct c2_mr *mr;
344        u64 *page_list;
345        u32 total_len;
346        int err, i, j, k, page_shift, pbl_depth;
347
348        pbl_depth = 0;
349        total_len = 0;
350
351        page_shift = PAGE_SHIFT;
352        /*
353         * If there is only 1 buffer we assume this could
354         * be a map of all phy mem...use a 32k page_shift.
355         */
356        if (num_phys_buf == 1)
357                page_shift += 3;
358
359        for (i = 0; i < num_phys_buf; i++) {
360
361                if (buffer_list[i].addr & ~PAGE_MASK) {
362                        pr_debug("Unaligned Memory Buffer: 0x%x\n",
363                                (unsigned int) buffer_list[i].addr);
364                        return ERR_PTR(-EINVAL);
365                }
366
367                if (!buffer_list[i].size) {
368                        pr_debug("Invalid Buffer Size\n");
369                        return ERR_PTR(-EINVAL);
370                }
371
372                total_len += buffer_list[i].size;
373                pbl_depth += ALIGN(buffer_list[i].size,
374                                   (1 << page_shift)) >> page_shift;
375        }
376
377        page_list = vmalloc(sizeof(u64) * pbl_depth);
378        if (!page_list) {
379                pr_debug("couldn't vmalloc page_list of size %zd\n",
380                        (sizeof(u64) * pbl_depth));
381                return ERR_PTR(-ENOMEM);
382        }
383
384        for (i = 0, j = 0; i < num_phys_buf; i++) {
385
386                int naddrs;
387
388                 naddrs = ALIGN(buffer_list[i].size,
389                               (1 << page_shift)) >> page_shift;
390                for (k = 0; k < naddrs; k++)
391                        page_list[j++] = (buffer_list[i].addr +
392                                                     (k << page_shift));
393        }
394
395        mr = kmalloc(sizeof(*mr), GFP_KERNEL);
396        if (!mr) {
397                vfree(page_list);
398                return ERR_PTR(-ENOMEM);
399        }
400
401        mr->pd = to_c2pd(ib_pd);
402        mr->umem = NULL;
403        pr_debug("%s - page shift %d, pbl_depth %d, total_len %u, "
404                "*iova_start %llx, first pa %llx, last pa %llx\n",
405                __func__, page_shift, pbl_depth, total_len,
406                (unsigned long long) *iova_start,
407                       (unsigned long long) page_list[0],
408                       (unsigned long long) page_list[pbl_depth-1]);
409          err = c2_nsmr_register_phys_kern(to_c2dev(ib_pd->device), page_list,
410                                          (1 << page_shift), pbl_depth,
411                                         total_len, 0, iova_start,
412                                         c2_convert_access(acc), mr);
413        vfree(page_list);
414        if (err) {
415                kfree(mr);
416                return ERR_PTR(err);
417        }
418
419        return &mr->ibmr;
420}
421
422static struct ib_mr *c2_get_dma_mr(struct ib_pd *pd, int acc)
423{
424        struct ib_phys_buf bl;
425        u64 kva = 0;
426
427        pr_debug("%s:%u\n", __func__, __LINE__);
428
429        /* AMSO1100 limit */
430        bl.size = 0xffffffff;
431        bl.addr = 0;
432        return c2_reg_phys_mr(pd, &bl, 1, acc, &kva);
433}
434
435static struct ib_mr *c2_reg_user_mr(struct ib_pd *pd, u64 start, u64 length,
436                                    u64 virt, int acc, struct ib_udata *udata)
437{
438        u64 *pages;
439        u64 kva = 0;
440        int shift, n, len;
441        int i, j, k;
442        int err = 0;
443        struct ib_umem_chunk *chunk;
444        struct c2_pd *c2pd = to_c2pd(pd);
445        struct c2_mr *c2mr;
446
447        pr_debug("%s:%u\n", __func__, __LINE__);
448
449        c2mr = kmalloc(sizeof(*c2mr), GFP_KERNEL);
450        if (!c2mr)
451                return ERR_PTR(-ENOMEM);
452        c2mr->pd = c2pd;
453
454        c2mr->umem = ib_umem_get(pd->uobject->context, start, length, acc, 0);
455        if (IS_ERR(c2mr->umem)) {
456                err = PTR_ERR(c2mr->umem);
457                kfree(c2mr);
458                return ERR_PTR(err);
459        }
460
461        shift = ffs(c2mr->umem->page_size) - 1;
462
463        n = 0;
464        list_for_each_entry(chunk, &c2mr->umem->chunk_list, list)
465                n += chunk->nents;
466
467        pages = kmalloc(n * sizeof(u64), GFP_KERNEL);
468        if (!pages) {
469                err = -ENOMEM;
470                goto err;
471        }
472
473        i = 0;
474        list_for_each_entry(chunk, &c2mr->umem->chunk_list, list) {
475                for (j = 0; j < chunk->nmap; ++j) {
476                        len = sg_dma_len(&chunk->page_list[j]) >> shift;
477                        for (k = 0; k < len; ++k) {
478                                pages[i++] =
479                                        sg_dma_address(&chunk->page_list[j]) +
480                                        (c2mr->umem->page_size * k);
481                        }
482                }
483        }
484
485        kva = virt;
486          err = c2_nsmr_register_phys_kern(to_c2dev(pd->device),
487                                         pages,
488                                         c2mr->umem->page_size,
489                                         i,
490                                         length,
491                                         c2mr->umem->offset,
492                                         &kva,
493                                         c2_convert_access(acc),
494                                         c2mr);
495        kfree(pages);
496        if (err)
497                goto err;
498        return &c2mr->ibmr;
499
500err:
501        ib_umem_release(c2mr->umem);
502        kfree(c2mr);
503        return ERR_PTR(err);
504}
505
506static int c2_dereg_mr(struct ib_mr *ib_mr)
507{
508        struct c2_mr *mr = to_c2mr(ib_mr);
509        int err;
510
511        pr_debug("%s:%u\n", __func__, __LINE__);
512
513        err = c2_stag_dealloc(to_c2dev(ib_mr->device), ib_mr->lkey);
514        if (err)
515                pr_debug("c2_stag_dealloc failed: %d\n", err);
516        else {
517                if (mr->umem)
518                        ib_umem_release(mr->umem);
519                kfree(mr);
520        }
521
522        return err;
523}
524
525static ssize_t show_rev(struct device *dev, struct device_attribute *attr,
526                        char *buf)
527{
528        struct c2_dev *c2dev = container_of(dev, struct c2_dev, ibdev.dev);
529        pr_debug("%s:%u\n", __func__, __LINE__);
530        return sprintf(buf, "%x\n", c2dev->props.hw_ver);
531}
532
533static ssize_t show_fw_ver(struct device *dev, struct device_attribute *attr,
534                           char *buf)
535{
536        struct c2_dev *c2dev = container_of(dev, struct c2_dev, ibdev.dev);
537        pr_debug("%s:%u\n", __func__, __LINE__);
538        return sprintf(buf, "%x.%x.%x\n",
539                       (int) (c2dev->props.fw_ver >> 32),
540                       (int) (c2dev->props.fw_ver >> 16) & 0xffff,
541                       (int) (c2dev->props.fw_ver & 0xffff));
542}
543
544static ssize_t show_hca(struct device *dev, struct device_attribute *attr,
545                        char *buf)
546{
547        pr_debug("%s:%u\n", __func__, __LINE__);
548        return sprintf(buf, "AMSO1100\n");
549}
550
551static ssize_t show_board(struct device *dev, struct device_attribute *attr,
552                          char *buf)
553{
554        pr_debug("%s:%u\n", __func__, __LINE__);
555        return sprintf(buf, "%.*s\n", 32, "AMSO1100 Board ID");
556}
557
558static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
559static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
560static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL);
561static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL);
562
563static struct device_attribute *c2_dev_attributes[] = {
564        &dev_attr_hw_rev,
565        &dev_attr_fw_ver,
566        &dev_attr_hca_type,
567        &dev_attr_board_id
568};
569
570static int c2_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr,
571                        int attr_mask, struct ib_udata *udata)
572{
573        int err;
574
575        err =
576            c2_qp_modify(to_c2dev(ibqp->device), to_c2qp(ibqp), attr,
577                         attr_mask);
578
579        return err;
580}
581
582static int c2_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
583{
584        pr_debug("%s:%u\n", __func__, __LINE__);
585        return -ENOSYS;
586}
587
588static int c2_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid)
589{
590        pr_debug("%s:%u\n", __func__, __LINE__);
591        return -ENOSYS;
592}
593
594static int c2_process_mad(struct ib_device *ibdev,
595                          int mad_flags,
596                          u8 port_num,
597                          struct ib_wc *in_wc,
598                          struct ib_grh *in_grh,
599                          struct ib_mad *in_mad, struct ib_mad *out_mad)
600{
601        pr_debug("%s:%u\n", __func__, __LINE__);
602        return -ENOSYS;
603}
604
605static int c2_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param)
606{
607        pr_debug("%s:%u\n", __func__, __LINE__);
608
609        /* Request a connection */
610        return c2_llp_connect(cm_id, iw_param);
611}
612
613static int c2_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param)
614{
615        pr_debug("%s:%u\n", __func__, __LINE__);
616
617        /* Accept the new connection */
618        return c2_llp_accept(cm_id, iw_param);
619}
620
621static int c2_reject(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
622{
623        int err;
624
625        pr_debug("%s:%u\n", __func__, __LINE__);
626
627        err = c2_llp_reject(cm_id, pdata, pdata_len);
628        return err;
629}
630
631static int c2_service_create(struct iw_cm_id *cm_id, int backlog)
632{
633        int err;
634
635        pr_debug("%s:%u\n", __func__, __LINE__);
636        err = c2_llp_service_create(cm_id, backlog);
637        pr_debug("%s:%u err=%d\n",
638                __func__, __LINE__,
639                err);
640        return err;
641}
642
643static int c2_service_destroy(struct iw_cm_id *cm_id)
644{
645        int err;
646        pr_debug("%s:%u\n", __func__, __LINE__);
647
648        err = c2_llp_service_destroy(cm_id);
649
650        return err;
651}
652
653static int c2_pseudo_up(struct net_device *netdev)
654{
655        struct in_device *ind;
656        struct c2_dev *c2dev = netdev->priv;
657
658        ind = in_dev_get(netdev);
659        if (!ind)
660                return 0;
661
662        pr_debug("adding...\n");
663        for_ifa(ind) {
664#ifdef DEBUG
665                u8 *ip = (u8 *) & ifa->ifa_address;
666
667                pr_debug("%s: %d.%d.%d.%d\n",
668                       ifa->ifa_label, ip[0], ip[1], ip[2], ip[3]);
669#endif
670                c2_add_addr(c2dev, ifa->ifa_address, ifa->ifa_mask);
671        }
672        endfor_ifa(ind);
673        in_dev_put(ind);
674
675        return 0;
676}
677
678static int c2_pseudo_down(struct net_device *netdev)
679{
680        struct in_device *ind;
681        struct c2_dev *c2dev = netdev->priv;
682
683        ind = in_dev_get(netdev);
684        if (!ind)
685                return 0;
686
687        pr_debug("deleting...\n");
688        for_ifa(ind) {
689#ifdef DEBUG
690                u8 *ip = (u8 *) & ifa->ifa_address;
691
692                pr_debug("%s: %d.%d.%d.%d\n",
693                       ifa->ifa_label, ip[0], ip[1], ip[2], ip[3]);
694#endif
695                c2_del_addr(c2dev, ifa->ifa_address, ifa->ifa_mask);
696        }
697        endfor_ifa(ind);
698        in_dev_put(ind);
699
700        return 0;
701}
702
703static int c2_pseudo_xmit_frame(struct sk_buff *skb, struct net_device *netdev)
704{
705        kfree_skb(skb);
706        return NETDEV_TX_OK;
707}
708
709static int c2_pseudo_change_mtu(struct net_device *netdev, int new_mtu)
710{
711        int ret = 0;
712
713        if (new_mtu < ETH_ZLEN || new_mtu > ETH_JUMBO_MTU)
714                return -EINVAL;
715
716        netdev->mtu = new_mtu;
717
718        /* TODO: Tell rnic about new rmda interface mtu */
719        return ret;
720}
721
722static void setup(struct net_device *netdev)
723{
724        netdev->open = c2_pseudo_up;
725        netdev->stop = c2_pseudo_down;
726        netdev->hard_start_xmit = c2_pseudo_xmit_frame;
727        netdev->get_stats = NULL;
728        netdev->tx_timeout = NULL;
729        netdev->set_mac_address = NULL;
730        netdev->change_mtu = c2_pseudo_change_mtu;
731        netdev->watchdog_timeo = 0;
732        netdev->type = ARPHRD_ETHER;
733        netdev->mtu = 1500;
734        netdev->hard_header_len = ETH_HLEN;
735        netdev->addr_len = ETH_ALEN;
736        netdev->tx_queue_len = 0;
737        netdev->flags |= IFF_NOARP;
738        return;
739}
740
741static struct net_device *c2_pseudo_netdev_init(struct c2_dev *c2dev)
742{
743        char name[IFNAMSIZ];
744        struct net_device *netdev;
745
746        /* change ethxxx to iwxxx */
747        strcpy(name, "iw");
748        strcat(name, &c2dev->netdev->name[3]);
749        netdev = alloc_netdev(sizeof(*netdev), name, setup);
750        if (!netdev) {
751                printk(KERN_ERR PFX "%s -  etherdev alloc failed",
752                        __func__);
753                return NULL;
754        }
755
756        netdev->priv = c2dev;
757
758        SET_NETDEV_DEV(netdev, &c2dev->pcidev->dev);
759
760        memcpy_fromio(netdev->dev_addr, c2dev->kva + C2_REGS_RDMA_ENADDR, 6);
761
762        /* Print out the MAC address */
763        pr_debug("%s: MAC %02X:%02X:%02X:%02X:%02X:%02X\n",
764                netdev->name,
765                netdev->dev_addr[0], netdev->dev_addr[1], netdev->dev_addr[2],
766                netdev->dev_addr[3], netdev->dev_addr[4], netdev->dev_addr[5]);
767
768#if 0
769        /* Disable network packets */
770        netif_stop_queue(netdev);
771#endif
772        return netdev;
773}
774
775int c2_register_device(struct c2_dev *dev)
776{
777        int ret = -ENOMEM;
778        int i;
779
780        /* Register pseudo network device */
781        dev->pseudo_netdev = c2_pseudo_netdev_init(dev);
782        if (!dev->pseudo_netdev)
783                goto out3;
784
785        ret = register_netdev(dev->pseudo_netdev);
786        if (ret)
787                goto out2;
788
789        pr_debug("%s:%u\n", __func__, __LINE__);
790        strlcpy(dev->ibdev.name, "amso%d", IB_DEVICE_NAME_MAX);
791        dev->ibdev.owner = THIS_MODULE;
792        dev->ibdev.uverbs_cmd_mask =
793            (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) |
794            (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) |
795            (1ull << IB_USER_VERBS_CMD_QUERY_PORT) |
796            (1ull << IB_USER_VERBS_CMD_ALLOC_PD) |
797            (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) |
798            (1ull << IB_USER_VERBS_CMD_REG_MR) |
799            (1ull << IB_USER_VERBS_CMD_DEREG_MR) |
800            (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) |
801            (1ull << IB_USER_VERBS_CMD_CREATE_CQ) |
802            (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) |
803            (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) |
804            (1ull << IB_USER_VERBS_CMD_CREATE_QP) |
805            (1ull << IB_USER_VERBS_CMD_MODIFY_QP) |
806            (1ull << IB_USER_VERBS_CMD_POLL_CQ) |
807            (1ull << IB_USER_VERBS_CMD_DESTROY_QP) |
808            (1ull << IB_USER_VERBS_CMD_POST_SEND) |
809            (1ull << IB_USER_VERBS_CMD_POST_RECV);
810
811        dev->ibdev.node_type = RDMA_NODE_RNIC;
812        memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid));
813        memcpy(&dev->ibdev.node_guid, dev->pseudo_netdev->dev_addr, 6);
814        dev->ibdev.phys_port_cnt = 1;
815        dev->ibdev.num_comp_vectors = 1;
816        dev->ibdev.dma_device = &dev->pcidev->dev;
817        dev->ibdev.query_device = c2_query_device;
818        dev->ibdev.query_port = c2_query_port;
819        dev->ibdev.modify_port = c2_modify_port;
820        dev->ibdev.query_pkey = c2_query_pkey;
821        dev->ibdev.query_gid = c2_query_gid;
822        dev->ibdev.alloc_ucontext = c2_alloc_ucontext;
823        dev->ibdev.dealloc_ucontext = c2_dealloc_ucontext;
824        dev->ibdev.mmap = c2_mmap_uar;
825        dev->ibdev.alloc_pd = c2_alloc_pd;
826        dev->ibdev.dealloc_pd = c2_dealloc_pd;
827        dev->ibdev.create_ah = c2_ah_create;
828        dev->ibdev.destroy_ah = c2_ah_destroy;
829        dev->ibdev.create_qp = c2_create_qp;
830        dev->ibdev.modify_qp = c2_modify_qp;
831        dev->ibdev.destroy_qp = c2_destroy_qp;
832        dev->ibdev.create_cq = c2_create_cq;
833        dev->ibdev.destroy_cq = c2_destroy_cq;
834        dev->ibdev.poll_cq = c2_poll_cq;
835        dev->ibdev.get_dma_mr = c2_get_dma_mr;
836        dev->ibdev.reg_phys_mr = c2_reg_phys_mr;
837        dev->ibdev.reg_user_mr = c2_reg_user_mr;
838        dev->ibdev.dereg_mr = c2_dereg_mr;
839
840        dev->ibdev.alloc_fmr = NULL;
841        dev->ibdev.unmap_fmr = NULL;
842        dev->ibdev.dealloc_fmr = NULL;
843        dev->ibdev.map_phys_fmr = NULL;
844
845        dev->ibdev.attach_mcast = c2_multicast_attach;
846        dev->ibdev.detach_mcast = c2_multicast_detach;
847        dev->ibdev.process_mad = c2_process_mad;
848
849        dev->ibdev.req_notify_cq = c2_arm_cq;
850        dev->ibdev.post_send = c2_post_send;
851        dev->ibdev.post_recv = c2_post_receive;
852
853        dev->ibdev.iwcm = kmalloc(sizeof(*dev->ibdev.iwcm), GFP_KERNEL);
854        dev->ibdev.iwcm->add_ref = c2_add_ref;
855        dev->ibdev.iwcm->rem_ref = c2_rem_ref;
856        dev->ibdev.iwcm->get_qp = c2_get_qp;
857        dev->ibdev.iwcm->connect = c2_connect;
858        dev->ibdev.iwcm->accept = c2_accept;
859        dev->ibdev.iwcm->reject = c2_reject;
860        dev->ibdev.iwcm->create_listen = c2_service_create;
861        dev->ibdev.iwcm->destroy_listen = c2_service_destroy;
862
863        ret = ib_register_device(&dev->ibdev);
864        if (ret)
865                goto out1;
866
867        for (i = 0; i < ARRAY_SIZE(c2_dev_attributes); ++i) {
868                ret = device_create_file(&dev->ibdev.dev,
869                                               c2_dev_attributes[i]);
870                if (ret)
871                        goto out0;
872        }
873        goto out3;
874
875out0:
876        ib_unregister_device(&dev->ibdev);
877out1:
878        unregister_netdev(dev->pseudo_netdev);
879out2:
880        free_netdev(dev->pseudo_netdev);
881out3:
882        pr_debug("%s:%u ret=%d\n", __func__, __LINE__, ret);
883        return ret;
884}
885
886void c2_unregister_device(struct c2_dev *dev)
887{
888        pr_debug("%s:%u\n", __func__, __LINE__);
889        unregister_netdev(dev->pseudo_netdev);
890        free_netdev(dev->pseudo_netdev);
891        ib_unregister_device(&dev->ibdev);
892}