blob: 807fbd6b84140b99152aa52f978412827692bc5e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier3cd96562006-09-22 15:22:46 -07003 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
Hal Rosenstockcb183a02005-07-27 11:45:42 -07004 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 *
Jack Morgensteinf36e1792006-03-03 21:54:13 -080034 * $Id: user_mad.c 5596 2006-03-03 01:00:07Z sean.hefty $
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
37#include <linux/module.h>
38#include <linux/init.h>
39#include <linux/device.h>
40#include <linux/err.h>
41#include <linux/fs.h>
42#include <linux/cdev.h>
43#include <linux/pci.h>
44#include <linux/dma-mapping.h>
45#include <linux/poll.h>
46#include <linux/rwsem.h>
47#include <linux/kref.h>
48
49#include <asm/uaccess.h>
50#include <asm/semaphore.h>
51
Roland Dreiera4d61e82005-08-25 13:40:04 -070052#include <rdma/ib_mad.h>
53#include <rdma/ib_user_mad.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55MODULE_AUTHOR("Roland Dreier");
56MODULE_DESCRIPTION("InfiniBand userspace MAD packet access");
57MODULE_LICENSE("Dual BSD/GPL");
58
59enum {
60 IB_UMAD_MAX_PORTS = 64,
61 IB_UMAD_MAX_AGENTS = 32,
62
63 IB_UMAD_MAJOR = 231,
64 IB_UMAD_MINOR_BASE = 0
65};
66
Roland Dreiera74968f2005-10-28 15:37:23 -070067/*
68 * Our lifetime rules for these structs are the following: each time a
69 * device special file is opened, we look up the corresponding struct
70 * ib_umad_port by minor in the umad_port[] table while holding the
71 * port_lock. If this lookup succeeds, we take a reference on the
72 * ib_umad_port's struct ib_umad_device while still holding the
73 * port_lock; if the lookup fails, we fail the open(). 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 clear all of its
82 * ib_umad_ports from umad_port[] while holding port_lock before
83 * dropping the module's reference to the ib_umad_device. This is
84 * always safe because any open() calls will either succeed and obtain
85 * a reference before we clear the umad_port[] entries, or fail after
86 * we clear the umad_port[] entries.
87 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Roland Dreiera74968f2005-10-28 15:37:23 -070089struct ib_umad_port {
90 struct cdev *dev;
91 struct class_device *class_dev;
92
93 struct cdev *sm_dev;
94 struct class_device *sm_class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 struct semaphore sm_sem;
96
Roland Dreier0c99cb62005-11-03 12:01:18 -080097 struct rw_semaphore mutex;
98 struct list_head file_list;
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct ib_device *ib_dev;
101 struct ib_umad_device *umad_dev;
Roland Dreiera74968f2005-10-28 15:37:23 -0700102 int dev_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 u8 port_num;
104};
105
106struct ib_umad_device {
107 int start_port, end_port;
108 struct kref ref;
109 struct ib_umad_port port[0];
110};
111
112struct ib_umad_file {
Roland Dreier94382f32005-11-10 10:18:23 -0800113 struct ib_umad_port *port;
114 struct list_head recv_list;
Sean Hefty2527e682006-07-20 11:25:50 +0300115 struct list_head send_list;
Roland Dreier94382f32005-11-10 10:18:23 -0800116 struct list_head port_list;
117 spinlock_t recv_lock;
Sean Hefty2527e682006-07-20 11:25:50 +0300118 spinlock_t send_lock;
Roland Dreier94382f32005-11-10 10:18:23 -0800119 wait_queue_head_t recv_wait;
120 struct ib_mad_agent *agent[IB_UMAD_MAX_AGENTS];
121 int agents_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122};
123
124struct ib_umad_packet {
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700125 struct ib_mad_send_buf *msg;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800126 struct ib_mad_recv_wc *recv_wc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 struct list_head list;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700128 int length;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700129 struct ib_user_mad mad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130};
131
Roland Dreiera74968f2005-10-28 15:37:23 -0700132static struct class *umad_class;
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static const dev_t base_dev = MKDEV(IB_UMAD_MAJOR, IB_UMAD_MINOR_BASE);
Roland Dreiera74968f2005-10-28 15:37:23 -0700135
136static DEFINE_SPINLOCK(port_lock);
137static struct ib_umad_port *umad_port[IB_UMAD_MAX_PORTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138static DECLARE_BITMAP(dev_map, IB_UMAD_MAX_PORTS * 2);
139
140static void ib_umad_add_one(struct ib_device *device);
141static void ib_umad_remove_one(struct ib_device *device);
142
Roland Dreiera74968f2005-10-28 15:37:23 -0700143static void ib_umad_release_dev(struct kref *ref)
144{
145 struct ib_umad_device *dev =
146 container_of(ref, struct ib_umad_device, ref);
147
148 kfree(dev);
149}
150
Roland Dreier94382f32005-11-10 10:18:23 -0800151/* caller must hold port->mutex at least for reading */
152static struct ib_mad_agent *__get_agent(struct ib_umad_file *file, int id)
153{
154 return file->agents_dead ? NULL : file->agent[id];
155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157static int queue_packet(struct ib_umad_file *file,
158 struct ib_mad_agent *agent,
159 struct ib_umad_packet *packet)
160{
161 int ret = 1;
162
Roland Dreier0c99cb62005-11-03 12:01:18 -0800163 down_read(&file->port->mutex);
Roland Dreier94382f32005-11-10 10:18:23 -0800164
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700165 for (packet->mad.hdr.id = 0;
166 packet->mad.hdr.id < IB_UMAD_MAX_AGENTS;
167 packet->mad.hdr.id++)
Roland Dreier94382f32005-11-10 10:18:23 -0800168 if (agent == __get_agent(file, packet->mad.hdr.id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 spin_lock_irq(&file->recv_lock);
170 list_add_tail(&packet->list, &file->recv_list);
171 spin_unlock_irq(&file->recv_lock);
172 wake_up_interruptible(&file->recv_wait);
173 ret = 0;
174 break;
175 }
176
Roland Dreier0c99cb62005-11-03 12:01:18 -0800177 up_read(&file->port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 return ret;
180}
181
Sean Hefty2527e682006-07-20 11:25:50 +0300182static void dequeue_send(struct ib_umad_file *file,
183 struct ib_umad_packet *packet)
184 {
185 spin_lock_irq(&file->send_lock);
186 list_del(&packet->list);
187 spin_unlock_irq(&file->send_lock);
188 }
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static void send_handler(struct ib_mad_agent *agent,
191 struct ib_mad_send_wc *send_wc)
192{
193 struct ib_umad_file *file = agent->context;
Sean Hefty34816ad2005-10-25 10:51:39 -0700194 struct ib_umad_packet *packet = send_wc->send_buf->context[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Sean Hefty2527e682006-07-20 11:25:50 +0300196 dequeue_send(file, packet);
Sean Hefty34816ad2005-10-25 10:51:39 -0700197 ib_destroy_ah(packet->msg->ah);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700198 ib_free_send_mad(packet->msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 if (send_wc->status == IB_WC_RESP_TIMEOUT_ERR) {
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800201 packet->length = IB_MGMT_MAD_HDR;
202 packet->mad.hdr.status = ETIMEDOUT;
203 if (!queue_packet(file, agent, packet))
204 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 kfree(packet);
207}
208
209static void recv_handler(struct ib_mad_agent *agent,
210 struct ib_mad_recv_wc *mad_recv_wc)
211{
212 struct ib_umad_file *file = agent->context;
213 struct ib_umad_packet *packet;
214
215 if (mad_recv_wc->wc->status != IB_WC_SUCCESS)
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800216 goto err1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800218 packet = kzalloc(sizeof *packet, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!packet)
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800220 goto err1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800222 packet->length = mad_recv_wc->mad_len;
223 packet->recv_wc = mad_recv_wc;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700224
225 packet->mad.hdr.status = 0;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800226 packet->mad.hdr.length = sizeof (struct ib_user_mad) +
227 mad_recv_wc->mad_len;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700228 packet->mad.hdr.qpn = cpu_to_be32(mad_recv_wc->wc->src_qp);
229 packet->mad.hdr.lid = cpu_to_be16(mad_recv_wc->wc->slid);
230 packet->mad.hdr.sl = mad_recv_wc->wc->sl;
231 packet->mad.hdr.path_bits = mad_recv_wc->wc->dlid_path_bits;
232 packet->mad.hdr.grh_present = !!(mad_recv_wc->wc->wc_flags & IB_WC_GRH);
233 if (packet->mad.hdr.grh_present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 /* XXX parse GRH */
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700235 packet->mad.hdr.gid_index = 0;
236 packet->mad.hdr.hop_limit = 0;
237 packet->mad.hdr.traffic_class = 0;
238 memset(packet->mad.hdr.gid, 0, 16);
239 packet->mad.hdr.flow_label = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
242 if (queue_packet(file, agent, packet))
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800243 goto err2;
244 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800246err2:
247 kfree(packet);
248err1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 ib_free_recv_mad(mad_recv_wc);
250}
251
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800252static ssize_t copy_recv_mad(char __user *buf, struct ib_umad_packet *packet,
253 size_t count)
254{
255 struct ib_mad_recv_buf *recv_buf;
256 int left, seg_payload, offset, max_seg_payload;
257
258 /* We need enough room to copy the first (or only) MAD segment. */
259 recv_buf = &packet->recv_wc->recv_buf;
260 if ((packet->length <= sizeof (*recv_buf->mad) &&
261 count < sizeof (packet->mad) + packet->length) ||
262 (packet->length > sizeof (*recv_buf->mad) &&
263 count < sizeof (packet->mad) + sizeof (*recv_buf->mad)))
264 return -EINVAL;
265
266 if (copy_to_user(buf, &packet->mad, sizeof (packet->mad)))
267 return -EFAULT;
268
269 buf += sizeof (packet->mad);
270 seg_payload = min_t(int, packet->length, sizeof (*recv_buf->mad));
271 if (copy_to_user(buf, recv_buf->mad, seg_payload))
272 return -EFAULT;
273
274 if (seg_payload < packet->length) {
275 /*
276 * Multipacket RMPP MAD message. Copy remainder of message.
277 * Note that last segment may have a shorter payload.
278 */
279 if (count < sizeof (packet->mad) + packet->length) {
280 /*
281 * The buffer is too small, return the first RMPP segment,
282 * which includes the RMPP message length.
283 */
284 return -ENOSPC;
285 }
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800286 offset = ib_get_mad_data_offset(recv_buf->mad->mad_hdr.mgmt_class);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800287 max_seg_payload = sizeof (struct ib_mad) - offset;
288
289 for (left = packet->length - seg_payload, buf += seg_payload;
290 left; left -= seg_payload, buf += seg_payload) {
291 recv_buf = container_of(recv_buf->list.next,
292 struct ib_mad_recv_buf, list);
293 seg_payload = min(left, max_seg_payload);
294 if (copy_to_user(buf, ((void *) recv_buf->mad) + offset,
295 seg_payload))
296 return -EFAULT;
297 }
298 }
299 return sizeof (packet->mad) + packet->length;
300}
301
302static ssize_t copy_send_mad(char __user *buf, struct ib_umad_packet *packet,
303 size_t count)
304{
305 ssize_t size = sizeof (packet->mad) + packet->length;
306
307 if (count < size)
308 return -EINVAL;
309
310 if (copy_to_user(buf, &packet->mad, size))
311 return -EFAULT;
312
313 return size;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316static ssize_t ib_umad_read(struct file *filp, char __user *buf,
317 size_t count, loff_t *pos)
318{
319 struct ib_umad_file *file = filp->private_data;
320 struct ib_umad_packet *packet;
321 ssize_t ret;
322
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800323 if (count < sizeof (struct ib_user_mad))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return -EINVAL;
325
326 spin_lock_irq(&file->recv_lock);
327
328 while (list_empty(&file->recv_list)) {
329 spin_unlock_irq(&file->recv_lock);
330
331 if (filp->f_flags & O_NONBLOCK)
332 return -EAGAIN;
333
334 if (wait_event_interruptible(file->recv_wait,
335 !list_empty(&file->recv_list)))
336 return -ERESTARTSYS;
337
338 spin_lock_irq(&file->recv_lock);
339 }
340
341 packet = list_entry(file->recv_list.next, struct ib_umad_packet, list);
342 list_del(&packet->list);
343
344 spin_unlock_irq(&file->recv_lock);
345
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800346 if (packet->recv_wc)
347 ret = copy_recv_mad(buf, packet, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 else
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800349 ret = copy_send_mad(buf, packet, count);
350
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700351 if (ret < 0) {
352 /* Requeue packet */
353 spin_lock_irq(&file->recv_lock);
354 list_add(&packet->list, &file->recv_list);
355 spin_unlock_irq(&file->recv_lock);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800356 } else {
357 if (packet->recv_wc)
358 ib_free_recv_mad(packet->recv_wc);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700359 kfree(packet);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return ret;
362}
363
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800364static int copy_rmpp_mad(struct ib_mad_send_buf *msg, const char __user *buf)
365{
366 int left, seg;
367
368 /* Copy class specific header */
369 if ((msg->hdr_len > IB_MGMT_RMPP_HDR) &&
370 copy_from_user(msg->mad + IB_MGMT_RMPP_HDR, buf + IB_MGMT_RMPP_HDR,
371 msg->hdr_len - IB_MGMT_RMPP_HDR))
372 return -EFAULT;
373
374 /* All headers are in place. Copy data segments. */
375 for (seg = 1, left = msg->data_len, buf += msg->hdr_len; left > 0;
376 seg++, left -= msg->seg_size, buf += msg->seg_size) {
377 if (copy_from_user(ib_get_rmpp_segment(msg, seg), buf,
378 min(left, msg->seg_size)))
379 return -EFAULT;
380 }
381 return 0;
382}
383
Sean Hefty2527e682006-07-20 11:25:50 +0300384static int same_destination(struct ib_user_mad_hdr *hdr1,
385 struct ib_user_mad_hdr *hdr2)
386{
387 if (!hdr1->grh_present && !hdr2->grh_present)
388 return (hdr1->lid == hdr2->lid);
389
390 if (hdr1->grh_present && hdr2->grh_present)
391 return !memcmp(hdr1->gid, hdr2->gid, 16);
392
393 return 0;
394}
395
396static int is_duplicate(struct ib_umad_file *file,
397 struct ib_umad_packet *packet)
398{
399 struct ib_umad_packet *sent_packet;
400 struct ib_mad_hdr *sent_hdr, *hdr;
401
402 hdr = (struct ib_mad_hdr *) packet->mad.data;
403 list_for_each_entry(sent_packet, &file->send_list, list) {
404 sent_hdr = (struct ib_mad_hdr *) sent_packet->mad.data;
405
406 if ((hdr->tid != sent_hdr->tid) ||
407 (hdr->mgmt_class != sent_hdr->mgmt_class))
408 continue;
409
410 /*
411 * No need to be overly clever here. If two new operations have
412 * the same TID, reject the second as a duplicate. This is more
413 * restrictive than required by the spec.
414 */
415 if (!ib_response_mad((struct ib_mad *) hdr)) {
416 if (!ib_response_mad((struct ib_mad *) sent_hdr))
417 return 1;
418 continue;
419 } else if (!ib_response_mad((struct ib_mad *) sent_hdr))
420 continue;
421
422 if (same_destination(&packet->mad.hdr, &sent_packet->mad.hdr))
423 return 1;
424 }
425
426 return 0;
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429static ssize_t ib_umad_write(struct file *filp, const char __user *buf,
430 size_t count, loff_t *pos)
431{
432 struct ib_umad_file *file = filp->private_data;
433 struct ib_umad_packet *packet;
434 struct ib_mad_agent *agent;
435 struct ib_ah_attr ah_attr;
Sean Hefty34816ad2005-10-25 10:51:39 -0700436 struct ib_ah *ah;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700437 struct ib_rmpp_mad *rmpp_mad;
Sean Hefty97f52eb2005-08-13 21:05:57 -0700438 __be64 *tid;
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800439 int ret, data_len, hdr_len, copy_offset, rmpp_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Roland Dreiereabc7792005-11-18 14:18:26 -0800441 if (count < sizeof (struct ib_user_mad) + IB_MGMT_RMPP_HDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return -EINVAL;
443
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800444 packet = kzalloc(sizeof *packet + IB_MGMT_RMPP_HDR, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (!packet)
446 return -ENOMEM;
447
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700448 if (copy_from_user(&packet->mad, buf,
Sean Heftycb0f0912005-10-27 20:48:11 -0700449 sizeof (struct ib_user_mad) + IB_MGMT_RMPP_HDR)) {
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700450 ret = -EFAULT;
451 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700454 if (packet->mad.hdr.id < 0 ||
455 packet->mad.hdr.id >= IB_UMAD_MAX_AGENTS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 ret = -EINVAL;
457 goto err;
458 }
459
Roland Dreier0c99cb62005-11-03 12:01:18 -0800460 down_read(&file->port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Roland Dreier94382f32005-11-10 10:18:23 -0800462 agent = __get_agent(file, packet->mad.hdr.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (!agent) {
464 ret = -EINVAL;
465 goto err_up;
466 }
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 memset(&ah_attr, 0, sizeof ah_attr);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700469 ah_attr.dlid = be16_to_cpu(packet->mad.hdr.lid);
470 ah_attr.sl = packet->mad.hdr.sl;
471 ah_attr.src_path_bits = packet->mad.hdr.path_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 ah_attr.port_num = file->port->port_num;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700473 if (packet->mad.hdr.grh_present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 ah_attr.ah_flags = IB_AH_GRH;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700475 memcpy(ah_attr.grh.dgid.raw, packet->mad.hdr.gid, 16);
Sean Hefty97f52eb2005-08-13 21:05:57 -0700476 ah_attr.grh.flow_label = be32_to_cpu(packet->mad.hdr.flow_label);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700477 ah_attr.grh.hop_limit = packet->mad.hdr.hop_limit;
478 ah_attr.grh.traffic_class = packet->mad.hdr.traffic_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
Sean Hefty34816ad2005-10-25 10:51:39 -0700481 ah = ib_create_ah(agent->qp->pd, &ah_attr);
482 if (IS_ERR(ah)) {
483 ret = PTR_ERR(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto err_up;
485 }
486
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700487 rmpp_mad = (struct ib_rmpp_mad *) packet->mad.data;
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800488 hdr_len = ib_get_mad_data_offset(rmpp_mad->mad_hdr.mgmt_class);
489 if (!ib_is_mad_class_rmpp(rmpp_mad->mad_hdr.mgmt_class)) {
Sean Heftycb0f0912005-10-27 20:48:11 -0700490 copy_offset = IB_MGMT_MAD_HDR;
Michael S. Tsirkinbf6d9e22005-11-28 13:07:20 -0800491 rmpp_active = 0;
Hal Rosenstock618a3c02006-03-28 16:40:04 -0800492 } else {
493 copy_offset = IB_MGMT_RMPP_HDR;
494 rmpp_active = ib_get_rmpp_flags(&rmpp_mad->rmpp_hdr) &
495 IB_MGMT_RMPP_FLAG_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
497
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800498 data_len = count - sizeof (struct ib_user_mad) - hdr_len;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700499 packet->msg = ib_create_send_mad(agent,
500 be32_to_cpu(packet->mad.hdr.qpn),
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800501 0, rmpp_active, hdr_len,
502 data_len, GFP_KERNEL);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700503 if (IS_ERR(packet->msg)) {
504 ret = PTR_ERR(packet->msg);
505 goto err_ah;
506 }
507
Sean Hefty34816ad2005-10-25 10:51:39 -0700508 packet->msg->ah = ah;
509 packet->msg->timeout_ms = packet->mad.hdr.timeout_ms;
510 packet->msg->retries = packet->mad.hdr.retries;
511 packet->msg->context[0] = packet;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700512
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800513 /* Copy MAD header. Any RMPP header is already in place. */
Sean Heftycb0f0912005-10-27 20:48:11 -0700514 memcpy(packet->msg->mad, packet->mad.data, IB_MGMT_MAD_HDR);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800515 buf += sizeof (struct ib_user_mad);
516
517 if (!rmpp_active) {
518 if (copy_from_user(packet->msg->mad + copy_offset,
519 buf + copy_offset,
520 hdr_len + data_len - copy_offset)) {
521 ret = -EFAULT;
522 goto err_msg;
523 }
524 } else {
525 ret = copy_rmpp_mad(packet->msg, buf);
526 if (ret)
527 goto err_msg;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700528 }
529
530 /*
Sean Hefty2527e682006-07-20 11:25:50 +0300531 * Set the high-order part of the transaction ID to make MADs from
532 * different agents unique, and allow routing responses back to the
533 * original requestor.
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700534 */
Sean Hefty2527e682006-07-20 11:25:50 +0300535 if (!ib_response_mad(packet->msg->mad)) {
Roland Dreier089a1be2005-10-27 20:33:43 -0700536 tid = &((struct ib_mad_hdr *) packet->msg->mad)->tid;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700537 *tid = cpu_to_be64(((u64) agent->hi_tid) << 32 |
538 (be64_to_cpup(tid) & 0xffffffff));
Sean Hefty2527e682006-07-20 11:25:50 +0300539 rmpp_mad->mad_hdr.tid = *tid;
540 }
541
542 spin_lock_irq(&file->send_lock);
543 ret = is_duplicate(file, packet);
544 if (!ret)
545 list_add_tail(&packet->list, &file->send_list);
546 spin_unlock_irq(&file->send_lock);
547 if (ret) {
548 ret = -EINVAL;
549 goto err_msg;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700550 }
551
Sean Hefty34816ad2005-10-25 10:51:39 -0700552 ret = ib_post_send_mad(packet->msg, NULL);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700553 if (ret)
Sean Hefty2527e682006-07-20 11:25:50 +0300554 goto err_send;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700555
Roland Dreier0c99cb62005-11-03 12:01:18 -0800556 up_read(&file->port->mutex);
Sean Heftycb0f0912005-10-27 20:48:11 -0700557 return count;
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700558
Sean Hefty2527e682006-07-20 11:25:50 +0300559err_send:
560 dequeue_send(file, packet);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700561err_msg:
562 ib_free_send_mad(packet->msg);
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700563err_ah:
Sean Hefty34816ad2005-10-25 10:51:39 -0700564 ib_destroy_ah(ah);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565err_up:
Roland Dreier0c99cb62005-11-03 12:01:18 -0800566 up_read(&file->port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567err:
568 kfree(packet);
569 return ret;
570}
571
572static unsigned int ib_umad_poll(struct file *filp, struct poll_table_struct *wait)
573{
574 struct ib_umad_file *file = filp->private_data;
575
576 /* we will always be able to post a MAD send */
577 unsigned int mask = POLLOUT | POLLWRNORM;
578
579 poll_wait(filp, &file->recv_wait, wait);
580
581 if (!list_empty(&file->recv_list))
582 mask |= POLLIN | POLLRDNORM;
583
584 return mask;
585}
586
587static int ib_umad_reg_agent(struct ib_umad_file *file, unsigned long arg)
588{
589 struct ib_user_mad_reg_req ureq;
590 struct ib_mad_reg_req req;
591 struct ib_mad_agent *agent;
592 int agent_id;
593 int ret;
594
Roland Dreier0c99cb62005-11-03 12:01:18 -0800595 down_write(&file->port->mutex);
596
597 if (!file->port->ib_dev) {
598 ret = -EPIPE;
599 goto out;
600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 if (copy_from_user(&ureq, (void __user *) arg, sizeof ureq)) {
603 ret = -EFAULT;
604 goto out;
605 }
606
607 if (ureq.qpn != 0 && ureq.qpn != 1) {
608 ret = -EINVAL;
609 goto out;
610 }
611
612 for (agent_id = 0; agent_id < IB_UMAD_MAX_AGENTS; ++agent_id)
Roland Dreier94382f32005-11-10 10:18:23 -0800613 if (!__get_agent(file, agent_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 goto found;
615
616 ret = -ENOMEM;
617 goto out;
618
619found:
Roland Dreier0df3bb12005-04-16 15:26:11 -0700620 if (ureq.mgmt_class) {
621 req.mgmt_class = ureq.mgmt_class;
622 req.mgmt_class_version = ureq.mgmt_class_version;
623 memcpy(req.method_mask, ureq.method_mask, sizeof req.method_mask);
624 memcpy(req.oui, ureq.oui, sizeof req.oui);
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 agent = ib_register_mad_agent(file->port->ib_dev, file->port->port_num,
628 ureq.qpn ? IB_QPT_GSI : IB_QPT_SMI,
Roland Dreier0df3bb12005-04-16 15:26:11 -0700629 ureq.mgmt_class ? &req : NULL,
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700630 ureq.rmpp_version,
631 send_handler, recv_handler, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (IS_ERR(agent)) {
633 ret = PTR_ERR(agent);
634 goto out;
635 }
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (put_user(agent_id,
638 (u32 __user *) (arg + offsetof(struct ib_user_mad_reg_req, id)))) {
639 ret = -EFAULT;
Roland Dreierec914c52005-11-09 09:58:10 -0800640 ib_unregister_mad_agent(agent);
641 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Roland Dreier2f76e822005-11-07 10:41:29 -0800644 file->agent[agent_id] = agent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ret = 0;
Roland Dreier2f76e822005-11-07 10:41:29 -0800646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647out:
Roland Dreier0c99cb62005-11-03 12:01:18 -0800648 up_write(&file->port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return ret;
650}
651
652static int ib_umad_unreg_agent(struct ib_umad_file *file, unsigned long arg)
653{
Roland Dreier2f76e822005-11-07 10:41:29 -0800654 struct ib_mad_agent *agent = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 u32 id;
656 int ret = 0;
657
Roland Dreier2f76e822005-11-07 10:41:29 -0800658 if (get_user(id, (u32 __user *) arg))
659 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Roland Dreier2f76e822005-11-07 10:41:29 -0800661 down_write(&file->port->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Roland Dreier94382f32005-11-10 10:18:23 -0800663 if (id < 0 || id >= IB_UMAD_MAX_AGENTS || !__get_agent(file, id)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 ret = -EINVAL;
665 goto out;
666 }
667
Roland Dreier2f76e822005-11-07 10:41:29 -0800668 agent = file->agent[id];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 file->agent[id] = NULL;
670
671out:
Roland Dreier0c99cb62005-11-03 12:01:18 -0800672 up_write(&file->port->mutex);
Roland Dreier2f76e822005-11-07 10:41:29 -0800673
Roland Dreierec914c52005-11-09 09:58:10 -0800674 if (agent)
Roland Dreier2f76e822005-11-07 10:41:29 -0800675 ib_unregister_mad_agent(agent);
Roland Dreier2f76e822005-11-07 10:41:29 -0800676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return ret;
678}
679
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700680static long ib_umad_ioctl(struct file *filp, unsigned int cmd,
681 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 switch (cmd) {
684 case IB_USER_MAD_REGISTER_AGENT:
685 return ib_umad_reg_agent(filp->private_data, arg);
686 case IB_USER_MAD_UNREGISTER_AGENT:
687 return ib_umad_unreg_agent(filp->private_data, arg);
688 default:
689 return -ENOIOCTLCMD;
690 }
691}
692
693static int ib_umad_open(struct inode *inode, struct file *filp)
694{
Roland Dreiera74968f2005-10-28 15:37:23 -0700695 struct ib_umad_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 struct ib_umad_file *file;
Roland Dreier0c99cb62005-11-03 12:01:18 -0800697 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Roland Dreiera74968f2005-10-28 15:37:23 -0700699 spin_lock(&port_lock);
700 port = umad_port[iminor(inode) - IB_UMAD_MINOR_BASE];
701 if (port)
702 kref_get(&port->umad_dev->ref);
703 spin_unlock(&port_lock);
704
705 if (!port)
706 return -ENXIO;
707
Roland Dreier0c99cb62005-11-03 12:01:18 -0800708 down_write(&port->mutex);
709
710 if (!port->ib_dev) {
711 ret = -ENXIO;
712 goto out;
713 }
714
Sean Heftycb0f0912005-10-27 20:48:11 -0700715 file = kzalloc(sizeof *file, GFP_KERNEL);
Roland Dreiera74968f2005-10-28 15:37:23 -0700716 if (!file) {
717 kref_put(&port->umad_dev->ref, ib_umad_release_dev);
Roland Dreier0c99cb62005-11-03 12:01:18 -0800718 ret = -ENOMEM;
719 goto out;
Roland Dreiera74968f2005-10-28 15:37:23 -0700720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 spin_lock_init(&file->recv_lock);
Sean Hefty2527e682006-07-20 11:25:50 +0300723 spin_lock_init(&file->send_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 INIT_LIST_HEAD(&file->recv_list);
Sean Hefty2527e682006-07-20 11:25:50 +0300725 INIT_LIST_HEAD(&file->send_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 init_waitqueue_head(&file->recv_wait);
727
728 file->port = port;
729 filp->private_data = file;
730
Roland Dreier0c99cb62005-11-03 12:01:18 -0800731 list_add_tail(&file->port_list, &port->file_list);
732
733out:
734 up_write(&port->mutex);
735 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738static int ib_umad_close(struct inode *inode, struct file *filp)
739{
740 struct ib_umad_file *file = filp->private_data;
Roland Dreiera74968f2005-10-28 15:37:23 -0700741 struct ib_umad_device *dev = file->port->umad_dev;
Roland Dreier561e1482005-05-25 12:31:30 -0700742 struct ib_umad_packet *packet, *tmp;
Roland Dreier94382f32005-11-10 10:18:23 -0800743 int already_dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 int i;
745
Roland Dreier94382f32005-11-10 10:18:23 -0800746 down_write(&file->port->mutex);
747
748 already_dead = file->agents_dead;
749 file->agents_dead = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800751 list_for_each_entry_safe(packet, tmp, &file->recv_list, list) {
752 if (packet->recv_wc)
753 ib_free_recv_mad(packet->recv_wc);
Roland Dreier561e1482005-05-25 12:31:30 -0700754 kfree(packet);
Jack Morgensteinf36e1792006-03-03 21:54:13 -0800755 }
Roland Dreier561e1482005-05-25 12:31:30 -0700756
Roland Dreier0c99cb62005-11-03 12:01:18 -0800757 list_del(&file->port_list);
Roland Dreier94382f32005-11-10 10:18:23 -0800758
759 downgrade_write(&file->port->mutex);
760
761 if (!already_dead)
762 for (i = 0; i < IB_UMAD_MAX_AGENTS; ++i)
763 if (file->agent[i])
764 ib_unregister_mad_agent(file->agent[i]);
765
766 up_read(&file->port->mutex);
Roland Dreier0c99cb62005-11-03 12:01:18 -0800767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 kfree(file);
Roland Dreiera74968f2005-10-28 15:37:23 -0700769 kref_put(&dev->ref, ib_umad_release_dev);
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return 0;
772}
773
774static struct file_operations umad_fops = {
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700775 .owner = THIS_MODULE,
776 .read = ib_umad_read,
777 .write = ib_umad_write,
778 .poll = ib_umad_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .unlocked_ioctl = ib_umad_ioctl,
Hal Rosenstockcb183a02005-07-27 11:45:42 -0700780 .compat_ioctl = ib_umad_ioctl,
781 .open = ib_umad_open,
782 .release = ib_umad_close
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783};
784
785static int ib_umad_sm_open(struct inode *inode, struct file *filp)
786{
Roland Dreiera74968f2005-10-28 15:37:23 -0700787 struct ib_umad_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct ib_port_modify props = {
789 .set_port_cap_mask = IB_PORT_SM
790 };
791 int ret;
792
Roland Dreiera74968f2005-10-28 15:37:23 -0700793 spin_lock(&port_lock);
794 port = umad_port[iminor(inode) - IB_UMAD_MINOR_BASE - IB_UMAD_MAX_PORTS];
795 if (port)
796 kref_get(&port->umad_dev->ref);
797 spin_unlock(&port_lock);
798
799 if (!port)
800 return -ENXIO;
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (filp->f_flags & O_NONBLOCK) {
Roland Dreiera74968f2005-10-28 15:37:23 -0700803 if (down_trylock(&port->sm_sem)) {
804 ret = -EAGAIN;
805 goto fail;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 } else {
Roland Dreiera74968f2005-10-28 15:37:23 -0700808 if (down_interruptible(&port->sm_sem)) {
809 ret = -ERESTARTSYS;
810 goto fail;
811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
814 ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
815 if (ret) {
816 up(&port->sm_sem);
Roland Dreiera74968f2005-10-28 15:37:23 -0700817 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
819
820 filp->private_data = port;
821
822 return 0;
Roland Dreiera74968f2005-10-28 15:37:23 -0700823
824fail:
825 kref_put(&port->umad_dev->ref, ib_umad_release_dev);
826 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827}
828
829static int ib_umad_sm_close(struct inode *inode, struct file *filp)
830{
831 struct ib_umad_port *port = filp->private_data;
832 struct ib_port_modify props = {
833 .clr_port_cap_mask = IB_PORT_SM
834 };
Roland Dreier0c99cb62005-11-03 12:01:18 -0800835 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Roland Dreier0c99cb62005-11-03 12:01:18 -0800837 down_write(&port->mutex);
838 if (port->ib_dev)
839 ret = ib_modify_port(port->ib_dev, port->port_num, 0, &props);
840 up_write(&port->mutex);
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 up(&port->sm_sem);
843
Roland Dreiera74968f2005-10-28 15:37:23 -0700844 kref_put(&port->umad_dev->ref, ib_umad_release_dev);
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return ret;
847}
848
849static struct file_operations umad_sm_fops = {
850 .owner = THIS_MODULE,
851 .open = ib_umad_sm_open,
852 .release = ib_umad_sm_close
853};
854
855static struct ib_client umad_client = {
856 .name = "umad",
857 .add = ib_umad_add_one,
858 .remove = ib_umad_remove_one
859};
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861static ssize_t show_ibdev(struct class_device *class_dev, char *buf)
862{
863 struct ib_umad_port *port = class_get_devdata(class_dev);
864
Roland Dreiera74968f2005-10-28 15:37:23 -0700865 if (!port)
866 return -ENODEV;
867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return sprintf(buf, "%s\n", port->ib_dev->name);
869}
870static CLASS_DEVICE_ATTR(ibdev, S_IRUGO, show_ibdev, NULL);
871
872static ssize_t show_port(struct class_device *class_dev, char *buf)
873{
874 struct ib_umad_port *port = class_get_devdata(class_dev);
875
Roland Dreiera74968f2005-10-28 15:37:23 -0700876 if (!port)
877 return -ENODEV;
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return sprintf(buf, "%d\n", port->port_num);
880}
881static CLASS_DEVICE_ATTR(port, S_IRUGO, show_port, NULL);
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static ssize_t show_abi_version(struct class *class, char *buf)
884{
885 return sprintf(buf, "%d\n", IB_USER_MAD_ABI_VERSION);
886}
887static CLASS_ATTR(abi_version, S_IRUGO, show_abi_version, NULL);
888
889static int ib_umad_init_port(struct ib_device *device, int port_num,
890 struct ib_umad_port *port)
891{
Roland Dreiera74968f2005-10-28 15:37:23 -0700892 spin_lock(&port_lock);
893 port->dev_num = find_first_zero_bit(dev_map, IB_UMAD_MAX_PORTS);
894 if (port->dev_num >= IB_UMAD_MAX_PORTS) {
895 spin_unlock(&port_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return -1;
897 }
Roland Dreiera74968f2005-10-28 15:37:23 -0700898 set_bit(port->dev_num, dev_map);
899 spin_unlock(&port_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 port->ib_dev = device;
902 port->port_num = port_num;
903 init_MUTEX(&port->sm_sem);
Roland Dreier0c99cb62005-11-03 12:01:18 -0800904 init_rwsem(&port->mutex);
905 INIT_LIST_HEAD(&port->file_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Roland Dreiera74968f2005-10-28 15:37:23 -0700907 port->dev = cdev_alloc();
908 if (!port->dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return -1;
Roland Dreiera74968f2005-10-28 15:37:23 -0700910 port->dev->owner = THIS_MODULE;
911 port->dev->ops = &umad_fops;
912 kobject_set_name(&port->dev->kobj, "umad%d", port->dev_num);
913 if (cdev_add(port->dev, base_dev + port->dev_num, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto err_cdev;
915
Roland Dreier4cce3392005-10-28 16:38:15 -0700916 port->class_dev = class_device_create(umad_class, NULL, port->dev->dev,
Roland Dreiera74968f2005-10-28 15:37:23 -0700917 device->dma_device,
918 "umad%d", port->dev_num);
919 if (IS_ERR(port->class_dev))
920 goto err_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Roland Dreiera74968f2005-10-28 15:37:23 -0700922 if (class_device_create_file(port->class_dev, &class_device_attr_ibdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 goto err_class;
Roland Dreiera74968f2005-10-28 15:37:23 -0700924 if (class_device_create_file(port->class_dev, &class_device_attr_port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 goto err_class;
926
Roland Dreiera74968f2005-10-28 15:37:23 -0700927 port->sm_dev = cdev_alloc();
928 if (!port->sm_dev)
929 goto err_class;
930 port->sm_dev->owner = THIS_MODULE;
931 port->sm_dev->ops = &umad_sm_fops;
Michael S. Tsirkin8b37b942005-11-06 15:47:02 -0800932 kobject_set_name(&port->sm_dev->kobj, "issm%d", port->dev_num);
Roland Dreiera74968f2005-10-28 15:37:23 -0700933 if (cdev_add(port->sm_dev, base_dev + port->dev_num + IB_UMAD_MAX_PORTS, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 goto err_sm_cdev;
935
Roland Dreier4cce3392005-10-28 16:38:15 -0700936 port->sm_class_dev = class_device_create(umad_class, NULL, port->sm_dev->dev,
Roland Dreiera74968f2005-10-28 15:37:23 -0700937 device->dma_device,
938 "issm%d", port->dev_num);
939 if (IS_ERR(port->sm_class_dev))
940 goto err_sm_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Roland Dreiera74968f2005-10-28 15:37:23 -0700942 class_set_devdata(port->class_dev, port);
943 class_set_devdata(port->sm_class_dev, port);
944
945 if (class_device_create_file(port->sm_class_dev, &class_device_attr_ibdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 goto err_sm_class;
Roland Dreiera74968f2005-10-28 15:37:23 -0700947 if (class_device_create_file(port->sm_class_dev, &class_device_attr_port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 goto err_sm_class;
949
Roland Dreiera74968f2005-10-28 15:37:23 -0700950 spin_lock(&port_lock);
951 umad_port[port->dev_num] = port;
952 spin_unlock(&port_lock);
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return 0;
955
956err_sm_class:
Roland Dreiera74968f2005-10-28 15:37:23 -0700957 class_device_destroy(umad_class, port->sm_dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959err_sm_cdev:
Roland Dreiera74968f2005-10-28 15:37:23 -0700960 cdev_del(port->sm_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962err_class:
Roland Dreiera74968f2005-10-28 15:37:23 -0700963 class_device_destroy(umad_class, port->dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965err_cdev:
Roland Dreiera74968f2005-10-28 15:37:23 -0700966 cdev_del(port->dev);
967 clear_bit(port->dev_num, dev_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 return -1;
970}
971
Roland Dreiera74968f2005-10-28 15:37:23 -0700972static void ib_umad_kill_port(struct ib_umad_port *port)
973{
Roland Dreier0c99cb62005-11-03 12:01:18 -0800974 struct ib_umad_file *file;
975 int id;
976
Roland Dreiera74968f2005-10-28 15:37:23 -0700977 class_set_devdata(port->class_dev, NULL);
978 class_set_devdata(port->sm_class_dev, NULL);
979
980 class_device_destroy(umad_class, port->dev->dev);
981 class_device_destroy(umad_class, port->sm_dev->dev);
982
983 cdev_del(port->dev);
984 cdev_del(port->sm_dev);
985
986 spin_lock(&port_lock);
987 umad_port[port->dev_num] = NULL;
988 spin_unlock(&port_lock);
989
Roland Dreier0c99cb62005-11-03 12:01:18 -0800990 down_write(&port->mutex);
991
992 port->ib_dev = NULL;
993
Roland Dreier94382f32005-11-10 10:18:23 -0800994 /*
995 * Now go through the list of files attached to this port and
996 * unregister all of their MAD agents. We need to hold
997 * port->mutex while doing this to avoid racing with
998 * ib_umad_close(), but we can't hold the mutex for writing
999 * while calling ib_unregister_mad_agent(), since that might
1000 * deadlock by calling back into queue_packet(). So we
1001 * downgrade our lock to a read lock, and then drop and
1002 * reacquire the write lock for the next iteration.
1003 *
1004 * We do list_del_init() on the file's list_head so that the
1005 * list_del in ib_umad_close() is still OK, even after the
1006 * file is removed from the list.
1007 */
1008 while (!list_empty(&port->file_list)) {
1009 file = list_entry(port->file_list.next, struct ib_umad_file,
1010 port_list);
1011
1012 file->agents_dead = 1;
1013 list_del_init(&file->port_list);
1014
1015 downgrade_write(&port->mutex);
1016
1017 for (id = 0; id < IB_UMAD_MAX_AGENTS; ++id)
1018 if (file->agent[id])
1019 ib_unregister_mad_agent(file->agent[id]);
1020
1021 up_read(&port->mutex);
1022 down_write(&port->mutex);
1023 }
Roland Dreier0c99cb62005-11-03 12:01:18 -08001024
1025 up_write(&port->mutex);
1026
Roland Dreiera74968f2005-10-28 15:37:23 -07001027 clear_bit(port->dev_num, dev_map);
1028}
1029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030static void ib_umad_add_one(struct ib_device *device)
1031{
1032 struct ib_umad_device *umad_dev;
1033 int s, e, i;
1034
Tom Tucker07ebafb2006-08-03 16:02:42 -05001035 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
1036 return;
1037
1038 if (device->node_type == RDMA_NODE_IB_SWITCH)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 s = e = 0;
1040 else {
1041 s = 1;
1042 e = device->phys_port_cnt;
1043 }
1044
Sean Heftycb0f0912005-10-27 20:48:11 -07001045 umad_dev = kzalloc(sizeof *umad_dev +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 (e - s + 1) * sizeof (struct ib_umad_port),
1047 GFP_KERNEL);
1048 if (!umad_dev)
1049 return;
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 kref_init(&umad_dev->ref);
1052
1053 umad_dev->start_port = s;
1054 umad_dev->end_port = e;
1055
1056 for (i = s; i <= e; ++i) {
1057 umad_dev->port[i - s].umad_dev = umad_dev;
1058
1059 if (ib_umad_init_port(device, i, &umad_dev->port[i - s]))
1060 goto err;
1061 }
1062
1063 ib_set_client_data(device, &umad_client, umad_dev);
1064
1065 return;
1066
1067err:
Roland Dreiera74968f2005-10-28 15:37:23 -07001068 while (--i >= s)
Michael S. Tsirkin8b37b942005-11-06 15:47:02 -08001069 ib_umad_kill_port(&umad_dev->port[i - s]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 kref_put(&umad_dev->ref, ib_umad_release_dev);
1072}
1073
1074static void ib_umad_remove_one(struct ib_device *device)
1075{
1076 struct ib_umad_device *umad_dev = ib_get_client_data(device, &umad_client);
1077 int i;
1078
1079 if (!umad_dev)
1080 return;
1081
Roland Dreiera74968f2005-10-28 15:37:23 -07001082 for (i = 0; i <= umad_dev->end_port - umad_dev->start_port; ++i)
1083 ib_umad_kill_port(&umad_dev->port[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 kref_put(&umad_dev->ref, ib_umad_release_dev);
1086}
1087
1088static int __init ib_umad_init(void)
1089{
1090 int ret;
1091
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 ret = register_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2,
1093 "infiniband_mad");
1094 if (ret) {
1095 printk(KERN_ERR "user_mad: couldn't register device number\n");
1096 goto out;
1097 }
1098
Roland Dreiera74968f2005-10-28 15:37:23 -07001099 umad_class = class_create(THIS_MODULE, "infiniband_mad");
1100 if (IS_ERR(umad_class)) {
1101 ret = PTR_ERR(umad_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 printk(KERN_ERR "user_mad: couldn't create class infiniband_mad\n");
1103 goto out_chrdev;
1104 }
1105
Roland Dreiera74968f2005-10-28 15:37:23 -07001106 ret = class_create_file(umad_class, &class_attr_abi_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if (ret) {
1108 printk(KERN_ERR "user_mad: couldn't create abi_version attribute\n");
1109 goto out_class;
1110 }
1111
1112 ret = ib_register_client(&umad_client);
1113 if (ret) {
1114 printk(KERN_ERR "user_mad: couldn't register ib_umad client\n");
1115 goto out_class;
1116 }
1117
1118 return 0;
1119
1120out_class:
Roland Dreiera74968f2005-10-28 15:37:23 -07001121 class_destroy(umad_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123out_chrdev:
1124 unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);
1125
1126out:
1127 return ret;
1128}
1129
1130static void __exit ib_umad_cleanup(void)
1131{
1132 ib_unregister_client(&umad_client);
Roland Dreiera74968f2005-10-28 15:37:23 -07001133 class_destroy(umad_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 unregister_chrdev_region(base_dev, IB_UMAD_MAX_PORTS * 2);
1135}
1136
1137module_init(ib_umad_init);
1138module_exit(ib_umad_cleanup);