IB/mad: add new ioctl to ABI to support new registration options
[linux-2.6-block.git] / drivers / infiniband / core / user_mad.c
1 /*
2  * Copyright (c) 2004 Topspin Communications.  All rights reserved.
3  * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
4  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
5  * Copyright (c) 2008 Cisco. All rights reserved.
6  *
7  * This software is available to you under a choice of one of two
8  * licenses.  You may choose to be licensed under the terms of the GNU
9  * General Public License (GPL) Version 2, available from the file
10  * COPYING in the main directory of this source tree, or the
11  * OpenIB.org BSD license below:
12  *
13  *     Redistribution and use in source and binary forms, with or
14  *     without modification, are permitted provided that the following
15  *     conditions are met:
16  *
17  *      - Redistributions of source code must retain the above
18  *        copyright notice, this list of conditions and the following
19  *        disclaimer.
20  *
21  *      - Redistributions in binary form must reproduce the above
22  *        copyright notice, this list of conditions and the following
23  *        disclaimer in the documentation and/or other materials
24  *        provided with the distribution.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33  * SOFTWARE.
34  */
35
36 #define pr_fmt(fmt) "user_mad: " fmt
37
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/device.h>
41 #include <linux/err.h>
42 #include <linux/fs.h>
43 #include <linux/cdev.h>
44 #include <linux/dma-mapping.h>
45 #include <linux/poll.h>
46 #include <linux/mutex.h>
47 #include <linux/kref.h>
48 #include <linux/compat.h>
49 #include <linux/sched.h>
50 #include <linux/semaphore.h>
51 #include <linux/slab.h>
52
53 #include <asm/uaccess.h>
54
55 #include <rdma/ib_mad.h>
56 #include <rdma/ib_user_mad.h>
57
58 MODULE_AUTHOR("Roland Dreier");
59 MODULE_DESCRIPTION("InfiniBand userspace MAD packet access");
60 MODULE_LICENSE("Dual BSD/GPL");
61
62 enum {
63         IB_UMAD_MAX_PORTS  = 64,
64         IB_UMAD_MAX_AGENTS = 32,
65
66         IB_UMAD_MAJOR      = 231,
67         IB_UMAD_MINOR_BASE = 0
68 };
69
70 /*
71  * Our lifetime rules for these structs are the following:
72  * device special file is opened, we take a reference on the
73  * ib_umad_port's struct ib_umad_device. We drop these
74  * references in the corresponding close().
75  *
76  * In addition to references coming from open character devices, there
77  * is one more reference to each ib_umad_device representing the
78  * module's reference taken when allocating the ib_umad_device in
79  * ib_umad_add_one().
80  *
81  * When destroying an ib_umad_device, we drop the module's reference.
82  */
83
84 struct ib_umad_port {
85         struct cdev           cdev;
86         struct device         *dev;
87
88         struct cdev           sm_cdev;
89         struct device         *sm_dev;
90         struct semaphore       sm_sem;
91
92         struct mutex           file_mutex;
93         struct list_head       file_list;
94
95         struct ib_device      *ib_dev;
96         struct ib_umad_device *umad_dev;
97         int                    dev_num;
98         u8                     port_num;
99 };
100
101 struct ib_umad_device {
102         int                  start_port, end_port;
103         struct kobject       kobj;
104         struct ib_umad_port  port[0];
105 };
106
107 struct ib_umad_file {
108         struct mutex            mutex;
109         struct ib_umad_port    *port;
110         struct list_head        recv_list;
111         struct list_head        send_list;
112         struct list_head        port_list;
113         spinlock_t              send_lock;
114         wait_queue_head_t       recv_wait;
115         struct ib_mad_agent    *agent[IB_UMAD_MAX_AGENTS];
116         int                     agents_dead;
117         u8                      use_pkey_index;
118         u8                      already_used;
119 };
120
121 struct ib_umad_packet {
122         struct ib_mad_send_buf *msg;
123         struct ib_mad_recv_wc  *recv_wc;
124         struct list_head   list;
125         int                length;
126         struct ib_user_mad mad;
127 };
128
129 static struct class *umad_class;
130
131 static const dev_t base_dev = MKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE);
132
133 static DEFINE_SPINLOCK(port_lock);
134 static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS);
135
136 static void ib_umad_add_one(struct ib_device *device);
137 static void ib_umad_remove_one(struct ib_device *device);
138
139 static void ib_umad_release_dev(struct kobject *kobj)
140 {
141         struct ib_umad_device *dev =
142                 container_of(kobj, struct ib_umad_device, kobj);
143
144         kfree(dev);
145 }
146
147 static struct kobj_type ib_umad_dev_ktype = {
148         .release = ib_umad_release_dev,
149 };
150
151 static int hdr_size(struct ib_umad_file *file)
152 {
153         return file->use_pkey_index ? sizeof (struct ib_user_mad_hdr) :
154                 sizeof (struct ib_user_mad_hdr_old);
155 }
156
157 /* caller must hold file->mutex */
158 static struct ib_mad_agent *__get_agent(struct ib_umad_file *file, int id)
159 {
160         return file->agents_dead ? NULL : file->agent[id];
161 }
162
163 static int queue_packet(struct ib_umad_file *file,
164                         struct ib_mad_agent *agent,
165                         struct ib_umad_packet *packet)
166 {
167         int ret = 1;
168
169         mutex_lock(&file->mutex);
170
171         for (packet->mad.hdr.id = 0;
172              packet->mad.hdr.id < IB_UMAD_MAX_AGENTS;
173              packet->mad.hdr.id++)
174                 if (agent == __get_agent(file, packet->mad.hdr.id)) {
175                         list_add_tail(&packet->list, &file->recv_list);
176                         wake_up_interruptible(&file->recv_wait);
177                         ret = 0;
178                         break;
179                 }
180
181         mutex_unlock(&file->mutex);
182
183         return ret;
184 }
185
186 static void dequeue_send(struct ib_umad_file *file,
187                          struct ib_umad_packet *packet)
188 {
189         spin_lock_irq(&file->send_lock);
190         list_del(&packet->list);
191         spin_unlock_irq(&file->send_lock);
192 }
193
194 static void send_handler(struct ib_mad_agent *agent,
195                          struct ib_mad_send_wc *send_wc)
196 {
197         struct ib_umad_file *file = agent->context;
198         struct ib_umad_packet *packet = send_wc->send_buf->context[0];
199
200         dequeue_send(file, packet);
201         ib_destroy_ah(packet->msg->ah);
202         ib_free_send_mad(packet->msg);
203
204         if (send_wc->status == IB_WC_RESP_TIMEOUT_ERR) {
205                 packet->length = IB_MGMT_MAD_HDR;
206                 packet->mad.hdr.status = ETIMEDOUT;
207                 if (!queue_packet(file, agent, packet))
208                         return;
209         }
210         kfree(packet);
211 }
212
213 static void recv_handler(struct ib_mad_agent *agent,
214                          struct ib_mad_recv_wc *mad_recv_wc)
215 {
216         struct ib_umad_file *file = agent->context;
217         struct ib_umad_packet *packet;
218
219         if (mad_recv_wc->wc->status != IB_WC_SUCCESS)
220                 goto err1;
221
222         packet = kzalloc(sizeof *packet, GFP_KERNEL);
223         if (!packet)
224                 goto err1;
225
226         packet->length = mad_recv_wc->mad_len;
227         packet->recv_wc = mad_recv_wc;
228
229         packet->mad.hdr.status     = 0;
230         packet->mad.hdr.length     = hdr_size(file) + mad_recv_wc->mad_len;
231         packet->mad.hdr.qpn        = cpu_to_be32(mad_recv_wc->wc->src_qp);
232         packet->mad.hdr.lid        = cpu_to_be16(mad_recv_wc->wc->slid);
233         packet->mad.hdr.sl         = mad_recv_wc->wc->sl;
234         packet->mad.hdr.path_bits  = mad_recv_wc->wc->dlid_path_bits;
235         packet->mad.hdr.pkey_index = mad_recv_wc->wc->pkey_index;
236         packet->mad.hdr.grh_present = !!(mad_recv_wc->wc->wc_flags & IB_WC_GRH);
237         if (packet->mad.hdr.grh_present) {
238                 struct ib_ah_attr ah_attr;
239
240                 ib_init_ah_from_wc(agent->device, agent->port_num,
241                                    mad_recv_wc->wc, mad_recv_wc->recv_buf.grh,
242                                    &ah_attr);
243
244                 packet->mad.hdr.gid_index = ah_attr.grh.sgid_index;
245                 packet->mad.hdr.hop_limit = ah_attr.grh.hop_limit;
246                 packet->mad.hdr.traffic_class = ah_attr.grh.traffic_class;
247                 memcpy(packet->mad.hdr.gid, &ah_attr.grh.dgid, 16);
248                 packet->mad.hdr.flow_label = cpu_to_be32(ah_attr.grh.flow_label);
249         }
250
251         if (queue_packet(file, agent, packet))
252                 goto err2;
253         return;
254
255 err2:
256         kfree(packet);
257 err1:
258         ib_free_recv_mad(mad_recv_wc);
259 }
260
261 static ssize_t copy_recv_mad(struct ib_umad_file *file, char __user *buf,
262                              struct ib_umad_packet *packet, size_t count)
263 {
264         struct ib_mad_recv_buf *recv_buf;
265         int left, seg_payload, offset, max_seg_payload;
266
267         /* We need enough room to copy the first (or only) MAD segment. */
268         recv_buf = &packet->recv_wc->recv_buf;
269         if ((packet->length <= sizeof (*recv_buf->mad) &&
270              count < hdr_size(file) + packet->length) ||
271             (packet->length > sizeof (*recv_buf->mad) &&
272              count < hdr_size(file) + sizeof (*recv_buf->mad)))
273                 return -EINVAL;
274
275         if (copy_to_user(buf, &packet->mad, hdr_size(file)))
276                 return -EFAULT;
277
278         buf += hdr_size(file);
279         seg_payload = min_t(int, packet->length, sizeof (*recv_buf->mad));
280         if (copy_to_user(buf, recv_buf->mad, seg_payload))
281                 return -EFAULT;
282
283         if (seg_payload < packet->length) {
284                 /*
285                  * Multipacket RMPP MAD message. Copy remainder of message.
286                  * Note that last segment may have a shorter payload.
287                  */
288                 if (count < hdr_size(file) + packet->length) {
289                         /*
290                          * The buffer is too small, return the first RMPP segment,
291                          * which includes the RMPP message length.
292                          */
293                         return -ENOSPC;
294                 }
295                 offset = ib_get_mad_data_offset(recv_buf->mad->mad_hdr.mgmt_class);
296                 max_seg_payload = sizeof (struct ib_mad) - offset;
297
298                 for (left = packet->length - seg_payload, buf += seg_payload;
299                      left; left -= seg_payload, buf += seg_payload) {
300                         recv_buf = container_of(recv_buf->list.next,
301                                                 struct ib_mad_recv_buf, list);
302                         seg_payload = min(left, max_seg_payload);
303                         if (copy_to_user(buf, ((void *) recv_buf->mad) + offset,
304                                          seg_payload))
305                                 return -EFAULT;
306                 }
307         }
308         return hdr_size(file) + packet->length;
309 }
310
311 static ssize_t copy_send_mad(struct ib_umad_file *file, char __user *buf,
312                              struct ib_umad_packet *packet, size_t count)
313 {
314         ssize_t size = hdr_size(file) + packet->length;
315
316         if (count < size)
317                 return -EINVAL;
318
319         if (copy_to_user(buf, &packet->mad, hdr_size(file)))
320                 return -EFAULT;
321
322         buf += hdr_size(file);
323
324         if (copy_to_user(buf, packet->mad.data, packet->length))
325                 return -EFAULT;
326
327         return size;
328 }
329
330 static ssize_t ib_umad_read(struct file *filp, char __user *buf,
331                             size_t count, loff_t *pos)
332 {
333         struct ib_umad_file *file = filp->private_data;
334         struct ib_umad_packet *packet;
335         ssize_t ret;
336
337         if (count < hdr_size(file))
338                 return -EINVAL;
339
340         mutex_lock(&file->mutex);
341
342         while (list_empty(&file->recv_list)) {
343                 mutex_unlock(&file->mutex);
344
345                 if (filp->f_flags & O_NONBLOCK)
346                         return -EAGAIN;
347
348                 if (wait_event_interruptible(file->recv_wait,
349                                              !list_empty(&file->recv_list)))
350                         return -ERESTARTSYS;
351
352                 mutex_lock(&file->mutex);
353         }
354
355         packet = list_entry(file->recv_list.next, struct ib_umad_packet, list);
356         list_del(&packet->list);
357
358         mutex_unlock(&file->mutex);
359
360         if (packet->recv_wc)
361                 ret = copy_recv_mad(file, buf, packet, count);
362         else
363                 ret = copy_send_mad(file, buf, packet, count);
364
365         if (ret < 0) {
366                 /* Requeue packet */
367                 mutex_lock(&file->mutex);
368                 list_add(&packet->list, &file->recv_list);
369                 mutex_unlock(&file->mutex);
370         } else {
371                 if (packet->recv_wc)
372                         ib_free_recv_mad(packet->recv_wc);
373                 kfree(packet);
374         }
375         return ret;
376 }
377
378 static int copy_rmpp_mad(struct ib_mad_send_buf *msg, const char __user *buf)
379 {
380         int left, seg;
381
382         /* Copy class specific header */
383         if ((msg->hdr_len > IB_MGMT_RMPP_HDR) &&
384             copy_from_user(msg->mad + IB_MGMT_RMPP_HDR, buf + IB_MGMT_RMPP_HDR,
385                            msg->hdr_len - IB_MGMT_RMPP_HDR))
386                 return -EFAULT;
387
388         /* All headers are in place.  Copy data segments. */
389         for (seg = 1, left = msg->data_len, buf += msg->hdr_len; left > 0;
390              seg++, left -= msg->seg_size, buf += msg->seg_size) {
391                 if (copy_from_user(ib_get_rmpp_segment(msg, seg), buf,
392                                    min(left, msg->seg_size)))
393                         return -EFAULT;
394         }
395         return 0;
396 }
397
398 static int same_destination(struct ib_user_mad_hdr *hdr1,
399                             struct ib_user_mad_hdr *hdr2)
400 {
401         if (!hdr1->grh_present && !hdr2->grh_present)
402            return (hdr1->lid == hdr2->lid);
403
404         if (hdr1->grh_present && hdr2->grh_present)
405            return !memcmp(hdr1->gid, hdr2->gid, 16);
406
407         return 0;
408 }
409
410 static int is_duplicate(struct ib_umad_file *file,
411                         struct ib_umad_packet *packet)
412 {
413         struct ib_umad_packet *sent_packet;
414         struct ib_mad_hdr *sent_hdr, *hdr;
415
416         hdr = (struct ib_mad_hdr *) packet->mad.data;
417         list_for_each_entry(sent_packet, &file->send_list, list) {
418                 sent_hdr = (struct ib_mad_hdr *) sent_packet->mad.data;
419
420                 if ((hdr->tid != sent_hdr->tid) ||
421                     (hdr->mgmt_class != sent_hdr->mgmt_class))
422                         continue;
423
424                 /*
425                  * No need to be overly clever here.  If two new operations have
426                  * the same TID, reject the second as a duplicate.  This is more
427                  * restrictive than required by the spec.
428                  */
429                 if (!ib_response_mad((struct ib_mad *) hdr)) {
430                         if (!ib_response_mad((struct ib_mad *) sent_hdr))
431                                 return 1;
432                         continue;
433                 } else if (!ib_response_mad((struct ib_mad *) sent_hdr))
434                         continue;
435
436                 if (same_destination(&packet->mad.hdr, &sent_packet->mad.hdr))
437                         return 1;
438         }
439
440         return 0;
441 }
442
443 static ssize_t ib_umad_write(struct file *filp, const char __user *buf,
444                              size_t count, loff_t *pos)
445 {
446         struct ib_umad_file *file = filp->private_data;
447         struct ib_umad_packet *packet;
448         struct ib_mad_agent *agent;
449         struct ib_ah_attr ah_attr;
450         struct ib_ah *ah;
451         struct ib_rmpp_mad *rmpp_mad;
452         __be64 *tid;
453         int ret, data_len, hdr_len, copy_offset, rmpp_active;
454
455         if (count < hdr_size(file) + IB_MGMT_RMPP_HDR)
456                 return -EINVAL;
457
458         packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL);
459         if (!packet)
460                 return -ENOMEM;
461
462         if (copy_from_user(&packet->mad, buf, hdr_size(file))) {
463                 ret = -EFAULT;
464                 goto err;
465         }
466
467         if (packet->mad.hdr.id >= IB_UMAD_MAX_AGENTS) {
468                 ret = -EINVAL;
469                 goto err;
470         }
471
472         buf += hdr_size(file);
473
474         if (copy_from_user(packet->mad.data, buf, IB_MGMT_RMPP_HDR)) {
475                 ret = -EFAULT;
476                 goto err;
477         }
478
479         mutex_lock(&file->mutex);
480
481         agent = __get_agent(file, packet->mad.hdr.id);
482         if (!agent) {
483                 ret = -EINVAL;
484                 goto err_up;
485         }
486
487         memset(&ah_attr, 0, sizeof ah_attr);
488         ah_attr.dlid          = be16_to_cpu(packet->mad.hdr.lid);
489         ah_attr.sl            = packet->mad.hdr.sl;
490         ah_attr.src_path_bits = packet->mad.hdr.path_bits;
491         ah_attr.port_num      = file->port->port_num;
492         if (packet->mad.hdr.grh_present) {
493                 ah_attr.ah_flags = IB_AH_GRH;
494                 memcpy(ah_attr.grh.dgid.raw, packet->mad.hdr.gid, 16);
495                 ah_attr.grh.sgid_index     = packet->mad.hdr.gid_index;
496                 ah_attr.grh.flow_label     = be32_to_cpu(packet->mad.hdr.flow_label);
497                 ah_attr.grh.hop_limit      = packet->mad.hdr.hop_limit;
498                 ah_attr.grh.traffic_class  = packet->mad.hdr.traffic_class;
499         }
500
501         ah = ib_create_ah(agent->qp->pd, &ah_attr);
502         if (IS_ERR(ah)) {
503                 ret = PTR_ERR(ah);
504                 goto err_up;
505         }
506
507         rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data;
508         hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class);
509         if (!ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class)) {
510                 copy_offset = IB_MGMT_MAD_HDR;
511                 rmpp_active = 0;
512         } else {
513                 copy_offset = IB_MGMT_RMPP_HDR;
514                 rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) &
515                               IB_MGMT_RMPP_FLAG_ACTIVE;
516         }
517
518         data_len = count - hdr_size(file) - hdr_len;
519         packet->msg = ib_create_send_mad(agent,
520                                          be32_to_cpu(packet->mad.hdr.qpn),
521                                          packet->mad.hdr.pkey_index, rmpp_active,
522                                          hdr_len, data_len, GFP_KERNEL);
523         if (IS_ERR(packet->msg)) {
524                 ret = PTR_ERR(packet->msg);
525                 goto err_ah;
526         }
527
528         packet->msg->ah         = ah;
529         packet->msg->timeout_ms = packet->mad.hdr.timeout_ms;
530         packet->msg->retries    = packet->mad.hdr.retries;
531         packet->msg->context[0] = packet;
532
533         /* Copy MAD header.  Any RMPP header is already in place. */
534         memcpy(packet->msg->mad, packet->mad.data, IB_MGMT_MAD_HDR);
535
536         if (!rmpp_active) {
537                 if (copy_from_user(packet->msg->mad + copy_offset,
538                                    buf + copy_offset,
539                                    hdr_len + data_len - copy_offset)) {
540                         ret = -EFAULT;
541                         goto err_msg;
542                 }
543         } else {
544                 ret = copy_rmpp_mad(packet->msg, buf);
545                 if (ret)
546                         goto err_msg;
547         }
548
549         /*
550          * Set the high-order part of the transaction ID to make MADs from
551          * different agents unique, and allow routing responses back to the
552          * original requestor.
553          */
554         if (!ib_response_mad(packet->msg->mad)) {
555                 tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid;
556                 *tid = cpu_to_be64(((u64) agent->hi_tid) << 32 |
557                                    (be64_to_cpup(tid) & 0xffffffff));
558                 rmpp_mad->mad_hdr.tid = *tid;
559         }
560
561         spin_lock_irq(&file->send_lock);
562         ret = is_duplicate(file, packet);
563         if (!ret)
564                 list_add_tail(&packet->list, &file->send_list);
565         spin_unlock_irq(&file->send_lock);
566         if (ret) {
567                 ret = -EINVAL;
568                 goto err_msg;
569         }
570
571         ret = ib_post_send_mad(packet->msg, NULL);
572         if (ret)
573                 goto err_send;
574
575         mutex_unlock(&file->mutex);
576         return count;
577
578 err_send:
579         dequeue_send(file, packet);
580 err_msg:
581         ib_free_send_mad(packet->msg);
582 err_ah:
583         ib_destroy_ah(ah);
584 err_up:
585         mutex_unlock(&file->mutex);
586 err:
587         kfree(packet);
588         return ret;
589 }
590
591 static unsigned int ib_umad_poll(struct file *filp, struct poll_table_struct *wait)
592 {
593         struct ib_umad_file *file = filp->private_data;
594
595         /* we will always be able to post a MAD send */
596         unsigned int mask = POLLOUT | POLLWRNORM;
597
598         poll_wait(filp, &file->recv_wait, wait);
599
600         if (!list_empty(&file->recv_list))
601                 mask |= POLLIN | POLLRDNORM;
602
603         return mask;
604 }
605
606 static int ib_umad_reg_agent(struct ib_umad_file *file, void __user *arg,
607                              int compat_method_mask)
608 {
609         struct ib_user_mad_reg_req ureq;
610         struct ib_mad_reg_req req;
611         struct ib_mad_agent *agent = NULL;
612         int agent_id;
613         int ret;
614
615         mutex_lock(&file->port->file_mutex);
616         mutex_lock(&file->mutex);
617
618         if (!file->port->ib_dev) {
619                 dev_notice(file->port->dev,
620                            "ib_umad_reg_agent: invalid device\n");
621                 ret = -EPIPE;
622                 goto out;
623         }
624
625         if (copy_from_user(&ureq, arg, sizeof ureq)) {
626                 ret = -EFAULT;
627                 goto out;
628         }
629
630         if (ureq.qpn != 0 && ureq.qpn != 1) {
631                 dev_notice(file->port->dev,
632                            "ib_umad_reg_agent: invalid QPN %d specified\n",
633                            ureq.qpn);
634                 ret = -EINVAL;
635                 goto out;
636         }
637
638         for (agent_id = 0; agent_id < IB_UMAD_MAX_AGENTS; ++agent_id)
639                 if (!__get_agent(file, agent_id))
640                         goto found;
641
642         dev_notice(file->port->dev,
643                    "ib_umad_reg_agent: Max Agents (%u) reached\n",
644                    IB_UMAD_MAX_AGENTS);
645         ret = -ENOMEM;
646         goto out;
647
648 found:
649         if (ureq.mgmt_class) {
650                 memset(&req, 0, sizeof(req));
651                 req.mgmt_class         = ureq.mgmt_class;
652                 req.mgmt_class_version = ureq.mgmt_class_version;
653                 memcpy(req.oui, ureq.oui, sizeof req.oui);
654
655                 if (compat_method_mask) {
656                         u32 *umm = (u32 *) ureq.method_mask;
657                         int i;
658
659                         for (i = 0; i < BITS_TO_LONGS(IB_MGMT_MAX_METHODS); ++i)
660                                 req.method_mask[i] =
661                                         umm[i * 2] | ((u64) umm[i * 2 + 1] << 32);
662                 } else
663                         memcpy(req.method_mask, ureq.method_mask,
664                                sizeof req.method_mask);
665         }
666
667         agent = ib_register_mad_agent(file->port->ib_dev, file->port->port_num,
668                                       ureq.qpn ? IB_QPT_GSI : IB_QPT_SMI,
669                                       ureq.mgmt_class ? &req : NULL,
670                                       ureq.rmpp_version,
671                                       send_handler, recv_handler, file, 0);
672         if (IS_ERR(agent)) {
673                 ret = PTR_ERR(agent);
674                 agent = NULL;
675                 goto out;
676         }
677
678         if (put_user(agent_id,
679                      (u32 __user *) (arg + offsetof(struct ib_user_mad_reg_req, id)))) {
680                 ret = -EFAULT;
681                 goto out;
682         }
683
684         if (!file->already_used) {
685                 file->already_used = 1;
686                 if (!file->use_pkey_index) {
687                         dev_warn(file->port->dev,
688                                 "process %s did not enable P_Key index support.\n",
689                                 current->comm);
690                         dev_warn(file->port->dev,
691                                 "   Documentation/infiniband/user_mad.txt has info on the new ABI.\n");
692                 }
693         }
694
695         file->agent[agent_id] = agent;
696         ret = 0;
697
698 out:
699         mutex_unlock(&file->mutex);
700
701         if (ret && agent)
702                 ib_unregister_mad_agent(agent);
703
704         mutex_unlock(&file->port->file_mutex);
705
706         return ret;
707 }
708
709 static int ib_umad_reg_agent2(struct ib_umad_file *file, void __user *arg)
710 {
711         struct ib_user_mad_reg_req2 ureq;
712         struct ib_mad_reg_req req;
713         struct ib_mad_agent *agent = NULL;
714         int agent_id;
715         int ret;
716
717         mutex_lock(&file->port->file_mutex);
718         mutex_lock(&file->mutex);
719
720         if (!file->port->ib_dev) {
721                 dev_notice(file->port->dev,
722                            "ib_umad_reg_agent2: invalid device\n");
723                 ret = -EPIPE;
724                 goto out;
725         }
726
727         if (copy_from_user(&ureq, arg, sizeof(ureq))) {
728                 ret = -EFAULT;
729                 goto out;
730         }
731
732         if (ureq.qpn != 0 && ureq.qpn != 1) {
733                 dev_notice(file->port->dev,
734                            "ib_umad_reg_agent2: invalid QPN %d specified\n",
735                            ureq.qpn);
736                 ret = -EINVAL;
737                 goto out;
738         }
739
740         if (ureq.flags & ~IB_USER_MAD_REG_FLAGS_CAP) {
741                 dev_notice(file->port->dev,
742                            "ib_umad_reg_agent2 failed: invalid registration flags specified 0x%x; supported 0x%x\n",
743                            ureq.flags, IB_USER_MAD_REG_FLAGS_CAP);
744                 ret = -EINVAL;
745
746                 if (put_user((u32)IB_USER_MAD_REG_FLAGS_CAP,
747                                 (u32 __user *) (arg + offsetof(struct
748                                 ib_user_mad_reg_req2, flags))))
749                         ret = -EFAULT;
750
751                 goto out;
752         }
753
754         for (agent_id = 0; agent_id < IB_UMAD_MAX_AGENTS; ++agent_id)
755                 if (!__get_agent(file, agent_id))
756                         goto found;
757
758         dev_notice(file->port->dev,
759                    "ib_umad_reg_agent2: Max Agents (%u) reached\n",
760                    IB_UMAD_MAX_AGENTS);
761         ret = -ENOMEM;
762         goto out;
763
764 found:
765         if (ureq.mgmt_class) {
766                 memset(&req, 0, sizeof(req));
767                 req.mgmt_class         = ureq.mgmt_class;
768                 req.mgmt_class_version = ureq.mgmt_class_version;
769                 if (ureq.oui & 0xff000000) {
770                         dev_notice(file->port->dev,
771                                    "ib_umad_reg_agent2 failed: oui invalid 0x%08x\n",
772                                    ureq.oui);
773                         ret = -EINVAL;
774                         goto out;
775                 }
776                 req.oui[2] =  ureq.oui & 0x0000ff;
777                 req.oui[1] = (ureq.oui & 0x00ff00) >> 8;
778                 req.oui[0] = (ureq.oui & 0xff0000) >> 16;
779                 memcpy(req.method_mask, ureq.method_mask,
780                         sizeof(req.method_mask));
781         }
782
783         agent = ib_register_mad_agent(file->port->ib_dev, file->port->port_num,
784                                       ureq.qpn ? IB_QPT_GSI : IB_QPT_SMI,
785                                       ureq.mgmt_class ? &req : NULL,
786                                       ureq.rmpp_version,
787                                       send_handler, recv_handler, file,
788                                       ureq.flags);
789         if (IS_ERR(agent)) {
790                 ret = PTR_ERR(agent);
791                 agent = NULL;
792                 goto out;
793         }
794
795         if (put_user(agent_id,
796                      (u32 __user *)(arg +
797                                 offsetof(struct ib_user_mad_reg_req2, id)))) {
798                 ret = -EFAULT;
799                 goto out;
800         }
801
802         if (!file->already_used) {
803                 file->already_used = 1;
804                 file->use_pkey_index = 1;
805         }
806
807         file->agent[agent_id] = agent;
808         ret = 0;
809
810 out:
811         mutex_unlock(&file->mutex);
812
813         if (ret && agent)
814                 ib_unregister_mad_agent(agent);
815
816         mutex_unlock(&file->port->file_mutex);
817
818         return ret;
819 }
820
821
822 static int ib_umad_unreg_agent(struct ib_umad_file *file, u32 __user *arg)
823 {
824         struct ib_mad_agent *agent = NULL;
825         u32 id;
826         int ret = 0;
827
828         if (get_user(id, arg))
829                 return -EFAULT;
830
831         mutex_lock(&file->port->file_mutex);
832         mutex_lock(&file->mutex);
833
834         if (id >= IB_UMAD_MAX_AGENTS || !__get_agent(file, id)) {
835                 ret = -EINVAL;
836                 goto out;
837         }
838
839         agent = file->agent[id];
840         file->agent[id] = NULL;
841
842 out:
843         mutex_unlock(&file->mutex);
844
845         if (agent)
846                 ib_unregister_mad_agent(agent);
847
848         mutex_unlock(&file->port->file_mutex);
849
850         return ret;
851 }
852
853 static long ib_umad_enable_pkey(struct ib_umad_file *file)
854 {
855         int ret = 0;
856
857         mutex_lock(&file->mutex);
858         if (file->already_used)
859                 ret = -EINVAL;
860         else
861                 file->use_pkey_index = 1;
862         mutex_unlock(&file->mutex);
863
864         return ret;
865 }
866
867 static long ib_umad_ioctl(struct file *filp, unsigned int cmd,
868                           unsigned long arg)
869 {
870         switch (cmd) {
871         case IB_USER_MAD_REGISTER_AGENT:
872                 return ib_umad_reg_agent(filp->private_data, (void __user *) arg, 0);
873         case IB_USER_MAD_UNREGISTER_AGENT:
874                 return ib_umad_unreg_agent(filp->private_data, (__u32 __user *) arg);
875         case IB_USER_MAD_ENABLE_PKEY:
876                 return ib_umad_enable_pkey(filp->private_data);
877         case IB_USER_MAD_REGISTER_AGENT2:
878                 return ib_umad_reg_agent2(filp->private_data, (void __user *) arg);
879         default:
880                 return -ENOIOCTLCMD;
881         }
882 }
883
884 #ifdef CONFIG_COMPAT
885 static long ib_umad_compat_ioctl(struct file *filp, unsigned int cmd,
886                                  unsigned long arg)
887 {
888         switch (cmd) {
889         case IB_USER_MAD_REGISTER_AGENT:
890                 return ib_umad_reg_agent(filp->private_data, compat_ptr(arg), 1);
891         case IB_USER_MAD_UNREGISTER_AGENT:
892                 return ib_umad_unreg_agent(filp->private_data, compat_ptr(arg));
893         case IB_USER_MAD_ENABLE_PKEY:
894                 return ib_umad_enable_pkey(filp->private_data);
895         case IB_USER_MAD_REGISTER_AGENT2:
896                 return ib_umad_reg_agent2(filp->private_data, compat_ptr(arg));
897         default:
898                 return -ENOIOCTLCMD;
899         }
900 }
901 #endif
902
903 /*
904  * ib_umad_open() does not need the BKL:
905  *
906  *  - the ib_umad_port structures are properly reference counted, and
907  *    everything else is purely local to the file being created, so
908  *    races against other open calls are not a problem;
909  *  - the ioctl method does not affect any global state outside of the
910  *    file structure being operated on;
911  */
912 static int ib_umad_open(struct inode *inode, struct file *filp)
913 {
914         struct ib_umad_port *port;
915         struct ib_umad_file *file;
916         int ret = -ENXIO;
917
918         port = container_of(inode->i_cdev, struct ib_umad_port, cdev);
919
920         mutex_lock(&port->file_mutex);
921
922         if (!port->ib_dev)
923                 goto out;
924
925         ret = -ENOMEM;
926         file = kzalloc(sizeof *file, GFP_KERNEL);
927         if (!file)
928                 goto out;
929
930         mutex_init(&file->mutex);
931         spin_lock_init(&file->send_lock);
932         INIT_LIST_HEAD(&file->recv_list);
933         INIT_LIST_HEAD(&file->send_list);
934         init_waitqueue_head(&file->recv_wait);
935
936         file->port = port;
937         filp->private_data = file;
938
939         list_add_tail(&file->port_list, &port->file_list);
940
941         ret = nonseekable_open(inode, filp);
942         if (ret) {
943                 list_del(&file->port_list);
944                 kfree(file);
945                 goto out;
946         }
947
948         kobject_get(&port->umad_dev->kobj);
949
950 out:
951         mutex_unlock(&port->file_mutex);
952         return ret;
953 }
954
955 static int ib_umad_close(struct inode *inode, struct file *filp)
956 {
957         struct ib_umad_file *file = filp->private_data;
958         struct ib_umad_device *dev = file->port->umad_dev;
959         struct ib_umad_packet *packet, *tmp;
960         int already_dead;
961         int i;
962
963         mutex_lock(&file->port->file_mutex);
964         mutex_lock(&file->mutex);
965
966         already_dead = file->agents_dead;
967         file->agents_dead = 1;
968
969         list_for_each_entry_safe(packet, tmp, &file->recv_list, list) {
970                 if (packet->recv_wc)
971                         ib_free_recv_mad(packet->recv_wc);
972                 kfree(packet);
973         }
974
975         list_del(&file->port_list);
976
977         mutex_unlock(&file->mutex);
978
979         if (!already_dead)
980                 for (i = 0; i < IB_UMAD_MAX_AGENTS; ++i)
981                         if (file->agent[i])
982                                 ib_unregister_mad_agent(file->agent[i]);
983
984         mutex_unlock(&file->port->file_mutex);
985
986         kfree(file);
987         kobject_put(&dev->kobj);
988
989         return 0;
990 }
991
992 static const struct file_operations umad_fops = {
993         .owner          = THIS_MODULE,
994         .read           = ib_umad_read,
995         .write          = ib_umad_write,
996         .poll           = ib_umad_poll,
997         .unlocked_ioctl = ib_umad_ioctl,
998 #ifdef CONFIG_COMPAT
999         .compat_ioctl   = ib_umad_compat_ioctl,
1000 #endif
1001         .open           = ib_umad_open,
1002         .release        = ib_umad_close,
1003         .llseek         = no_llseek,
1004 };
1005
1006 static int ib_umad_sm_open(struct inode *inode, struct file *filp)
1007 {
1008         struct ib_umad_port *port;
1009         struct ib_port_modify props = {
1010                 .set_port_cap_mask = IB_PORT_SM
1011         };
1012         int ret;
1013
1014         port = container_of(inode->i_cdev, struct ib_umad_port, sm_cdev);
1015
1016         if (filp->f_flags & O_NONBLOCK) {
1017                 if (down_trylock(&port->sm_sem)) {
1018                         ret = -EAGAIN;
1019                         goto fail;
1020                 }
1021         } else {
1022                 if (down_interruptible(&port->sm_sem)) {
1023                         ret = -ERESTARTSYS;
1024                         goto fail;
1025                 }
1026         }
1027
1028         ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
1029         if (ret)
1030                 goto err_up_sem;
1031
1032         filp->private_data = port;
1033
1034         ret = nonseekable_open(inode, filp);
1035         if (ret)
1036                 goto err_clr_sm_cap;
1037
1038         kobject_get(&port->umad_dev->kobj);
1039
1040         return 0;
1041
1042 err_clr_sm_cap:
1043         swap(props.set_port_cap_mask, props.clr_port_cap_mask);
1044         ib_modify_port(port->ib_dev, port->port_num, 0, &props);
1045
1046 err_up_sem:
1047         up(&port->sm_sem);
1048
1049 fail:
1050         return ret;
1051 }
1052
1053 static int ib_umad_sm_close(struct inode *inode, struct file *filp)
1054 {
1055         struct ib_umad_port *port = filp->private_data;
1056         struct ib_port_modify props = {
1057                 .clr_port_cap_mask = IB_PORT_SM
1058         };
1059         int ret = 0;
1060
1061         mutex_lock(&port->file_mutex);
1062         if (port->ib_dev)
1063                 ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
1064         mutex_unlock(&port->file_mutex);
1065
1066         up(&port->sm_sem);
1067
1068         kobject_put(&port->umad_dev->kobj);
1069
1070         return ret;
1071 }
1072
1073 static const struct file_operations umad_sm_fops = {
1074         .owner   = THIS_MODULE,
1075         .open    = ib_umad_sm_open,
1076         .release = ib_umad_sm_close,
1077         .llseek  = no_llseek,
1078 };
1079
1080 static struct ib_client umad_client = {
1081         .name   = "umad",
1082         .add    = ib_umad_add_one,
1083         .remove = ib_umad_remove_one
1084 };
1085
1086 static ssize_t show_ibdev(struct device *dev, struct device_attribute *attr,
1087                           char *buf)
1088 {
1089         struct ib_umad_port *port = dev_get_drvdata(dev);
1090
1091         if (!port)
1092                 return -ENODEV;
1093
1094         return sprintf(buf, "%s\n", port->ib_dev->name);
1095 }
1096 static DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
1097
1098 static ssize_t show_port(struct device *dev, struct device_attribute *attr,
1099                          char *buf)
1100 {
1101         struct ib_umad_port *port = dev_get_drvdata(dev);
1102
1103         if (!port)
1104                 return -ENODEV;
1105
1106         return sprintf(buf, "%d\n", port->port_num);
1107 }
1108 static DEVICE_ATTR(port, S_IRUGO, show_port, NULL);
1109
1110 static CLASS_ATTR_STRING(abi_version, S_IRUGO,
1111                          __stringify(IB_USER_MAD_ABI_VERSION));
1112
1113 static dev_t overflow_maj;
1114 static DECLARE_BITMAP(overflow_map, IB_UMAD_MAX_PORTS);
1115 static int find_overflow_devnum(struct ib_device *device)
1116 {
1117         int ret;
1118
1119         if (!overflow_maj) {
1120                 ret = alloc_chrdev_region(&overflow_maj, 0, IB_UMAD_MAX_PORTS * 2,
1121                                           "infiniband_mad");
1122                 if (ret) {
1123                         dev_err(&device->dev,
1124                                 "couldn't register dynamic device number\n");
1125                         return ret;
1126                 }
1127         }
1128
1129         ret = find_first_zero_bit(overflow_map, IB_UMAD_MAX_PORTS);
1130         if (ret >= IB_UMAD_MAX_PORTS)
1131                 return -1;
1132
1133         return ret;
1134 }
1135
1136 static int ib_umad_init_port(struct ib_device *device, int port_num,
1137                              struct ib_umad_device *umad_dev,
1138                              struct ib_umad_port *port)
1139 {
1140         int devnum;
1141         dev_t base;
1142
1143         spin_lock(&port_lock);
1144         devnum = find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS);
1145         if (devnum >= IB_UMAD_MAX_PORTS) {
1146                 spin_unlock(&port_lock);
1147                 devnum = find_overflow_devnum(device);
1148                 if (devnum < 0)
1149                         return -1;
1150
1151                 spin_lock(&port_lock);
1152                 port->dev_num = devnum + IB_UMAD_MAX_PORTS;
1153                 base = devnum + overflow_maj;
1154                 set_bit(devnum, overflow_map);
1155         } else {
1156                 port->dev_num = devnum;
1157                 base = devnum + base_dev;
1158                 set_bit(devnum, dev_map);
1159         }
1160         spin_unlock(&port_lock);
1161
1162         port->ib_dev   = device;
1163         port->port_num = port_num;
1164         sema_init(&port->sm_sem, 1);
1165         mutex_init(&port->file_mutex);
1166         INIT_LIST_HEAD(&port->file_list);
1167
1168         cdev_init(&port->cdev, &umad_fops);
1169         port->cdev.owner = THIS_MODULE;
1170         port->cdev.kobj.parent = &umad_dev->kobj;
1171         kobject_set_name(&port->cdev.kobj, "umad%d", port->dev_num);
1172         if (cdev_add(&port->cdev, base, 1))
1173                 goto err_cdev;
1174
1175         port->dev = device_create(umad_class, device->dma_device,
1176                                   port->cdev.dev, port,
1177                                   "umad%d", port->dev_num);
1178         if (IS_ERR(port->dev))
1179                 goto err_cdev;
1180
1181         if (device_create_file(port->dev, &dev_attr_ibdev))
1182                 goto err_dev;
1183         if (device_create_file(port->dev, &dev_attr_port))
1184                 goto err_dev;
1185
1186         base += IB_UMAD_MAX_PORTS;
1187         cdev_init(&port->sm_cdev, &umad_sm_fops);
1188         port->sm_cdev.owner = THIS_MODULE;
1189         port->sm_cdev.kobj.parent = &umad_dev->kobj;
1190         kobject_set_name(&port->sm_cdev.kobj, "issm%d", port->dev_num);
1191         if (cdev_add(&port->sm_cdev, base, 1))
1192                 goto err_sm_cdev;
1193
1194         port->sm_dev = device_create(umad_class, device->dma_device,
1195                                      port->sm_cdev.dev, port,
1196                                      "issm%d", port->dev_num);
1197         if (IS_ERR(port->sm_dev))
1198                 goto err_sm_cdev;
1199
1200         if (device_create_file(port->sm_dev, &dev_attr_ibdev))
1201                 goto err_sm_dev;
1202         if (device_create_file(port->sm_dev, &dev_attr_port))
1203                 goto err_sm_dev;
1204
1205         return 0;
1206
1207 err_sm_dev:
1208         device_destroy(umad_class, port->sm_cdev.dev);
1209
1210 err_sm_cdev:
1211         cdev_del(&port->sm_cdev);
1212
1213 err_dev:
1214         device_destroy(umad_class, port->cdev.dev);
1215
1216 err_cdev:
1217         cdev_del(&port->cdev);
1218         if (port->dev_num < IB_UMAD_MAX_PORTS)
1219                 clear_bit(devnum, dev_map);
1220         else
1221                 clear_bit(devnum, overflow_map);
1222
1223         return -1;
1224 }
1225
1226 static void ib_umad_kill_port(struct ib_umad_port *port)
1227 {
1228         struct ib_umad_file *file;
1229         int id;
1230
1231         dev_set_drvdata(port->dev,    NULL);
1232         dev_set_drvdata(port->sm_dev, NULL);
1233
1234         device_destroy(umad_class, port->cdev.dev);
1235         device_destroy(umad_class, port->sm_cdev.dev);
1236
1237         cdev_del(&port->cdev);
1238         cdev_del(&port->sm_cdev);
1239
1240         mutex_lock(&port->file_mutex);
1241
1242         port->ib_dev = NULL;
1243
1244         list_for_each_entry(file, &port->file_list, port_list) {
1245                 mutex_lock(&file->mutex);
1246                 file->agents_dead = 1;
1247                 mutex_unlock(&file->mutex);
1248
1249                 for (id = 0; id < IB_UMAD_MAX_AGENTS; ++id)
1250                         if (file->agent[id])
1251                                 ib_unregister_mad_agent(file->agent[id]);
1252         }
1253
1254         mutex_unlock(&port->file_mutex);
1255
1256         if (port->dev_num < IB_UMAD_MAX_PORTS)
1257                 clear_bit(port->dev_num, dev_map);
1258         else
1259                 clear_bit(port->dev_num - IB_UMAD_MAX_PORTS, overflow_map);
1260 }
1261
1262 static void ib_umad_add_one(struct ib_device *device)
1263 {
1264         struct ib_umad_device *umad_dev;
1265         int s, e, i;
1266
1267         if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1268                 return;
1269
1270         if (device->node_type == RDMA_NODE_IB_SWITCH)
1271                 s = e = 0;
1272         else {
1273                 s = 1;
1274                 e = device->phys_port_cnt;
1275         }
1276
1277         umad_dev = kzalloc(sizeof *umad_dev +
1278                            (e - s + 1) * sizeof (struct ib_umad_port),
1279                            GFP_KERNEL);
1280         if (!umad_dev)
1281                 return;
1282
1283         kobject_init(&umad_dev->kobj, &ib_umad_dev_ktype);
1284
1285         umad_dev->start_port = s;
1286         umad_dev->end_port   = e;
1287
1288         for (i = s; i <= e; ++i) {
1289                 umad_dev->port[i - s].umad_dev = umad_dev;
1290
1291                 if (ib_umad_init_port(device, i, umad_dev,
1292                                       &umad_dev->port[i - s]))
1293                         goto err;
1294         }
1295
1296         ib_set_client_data(device, &umad_client, umad_dev);
1297
1298         return;
1299
1300 err:
1301         while (--i >= s)
1302                 ib_umad_kill_port(&umad_dev->port[i - s]);
1303
1304         kobject_put(&umad_dev->kobj);
1305 }
1306
1307 static void ib_umad_remove_one(struct ib_device *device)
1308 {
1309         struct ib_umad_device *umad_dev = ib_get_client_data(device, &umad_client);
1310         int i;
1311
1312         if (!umad_dev)
1313                 return;
1314
1315         for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i)
1316                 ib_umad_kill_port(&umad_dev->port[i]);
1317
1318         kobject_put(&umad_dev->kobj);
1319 }
1320
1321 static char *umad_devnode(struct device *dev, umode_t *mode)
1322 {
1323         return kasprintf(GFP_KERNEL, "infiniband/%s", dev_name(dev));
1324 }
1325
1326 static int __init ib_umad_init(void)
1327 {
1328         int ret;
1329
1330         ret = register_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2,
1331                                      "infiniband_mad");
1332         if (ret) {
1333                 pr_err("couldn't register device number\n");
1334                 goto out;
1335         }
1336
1337         umad_class = class_create(THIS_MODULE, "infiniband_mad");
1338         if (IS_ERR(umad_class)) {
1339                 ret = PTR_ERR(umad_class);
1340                 pr_err("couldn't create class infiniband_mad\n");
1341                 goto out_chrdev;
1342         }
1343
1344         umad_class->devnode = umad_devnode;
1345
1346         ret = class_create_file(umad_class, &class_attr_abi_version.attr);
1347         if (ret) {
1348                 pr_err("couldn't create abi_version attribute\n");
1349                 goto out_class;
1350         }
1351
1352         ret = ib_register_client(&umad_client);
1353         if (ret) {
1354                 pr_err("couldn't register ib_umad client\n");
1355                 goto out_class;
1356         }
1357
1358         return 0;
1359
1360 out_class:
1361         class_destroy(umad_class);
1362
1363 out_chrdev:
1364         unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);
1365
1366 out:
1367         return ret;
1368 }
1369
1370 static void __exit ib_umad_cleanup(void)
1371 {
1372         ib_unregister_client(&umad_client);
1373         class_destroy(umad_class);
1374         unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);
1375         if (overflow_maj)
1376                 unregister_chrdev_region(overflow_maj, IB_UMAD_MAX_PORTS * 2);
1377 }
1378
1379 module_init(ib_umad_init);
1380 module_exit(ib_umad_cleanup);