blob: a4a914afae1c15f5fe38dfdea76489dafc9e36c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
10 *
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
13 * conditions are met:
14 *
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
17 * disclaimer.
18 *
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31 * SOFTWARE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
34#include <linux/module.h>
35#include <linux/string.h>
36#include <linux/errno.h>
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +020037#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/slab.h>
39#include <linux/init.h>
Ingo Molnar95ed6442006-01-13 14:51:39 -080040#include <linux/mutex.h>
Yotam Kenneth9268f722015-07-30 17:50:15 +030041#include <linux/netdevice.h>
Roland Dreierb2cbae22011-05-20 11:46:11 -070042#include <rdma/rdma_netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include "core_priv.h"
45
46MODULE_AUTHOR("Roland Dreier");
47MODULE_DESCRIPTION("core kernel InfiniBand API");
48MODULE_LICENSE("Dual BSD/GPL");
49
50struct ib_client_data {
51 struct list_head list;
52 struct ib_client *client;
53 void * data;
Haggai Eran7c1eb452015-07-30 17:50:14 +030054 /* The device or client is going down. Do not call client or device
55 * callbacks other than remove(). */
56 bool going_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Tejun Heof0626712010-10-19 15:24:36 +000059struct workqueue_struct *ib_wq;
60EXPORT_SYMBOL_GPL(ib_wq);
61
Haggai Eran5aa44bb2015-07-30 17:50:13 +030062/* The device_list and client_list contain devices and clients after their
63 * registration has completed, and the devices and clients are removed
64 * during unregistration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static LIST_HEAD(device_list);
66static LIST_HEAD(client_list);
67
68/*
Haggai Eran5aa44bb2015-07-30 17:50:13 +030069 * device_mutex and lists_rwsem protect access to both device_list and
70 * client_list. device_mutex protects writer access by device and client
71 * registration / de-registration. lists_rwsem protects reader access to
72 * these lists. Iterators of these lists must lock it for read, while updates
73 * to the lists must be done with a write lock. A special case is when the
74 * device_mutex is locked. In this case locking the lists for read access is
75 * not necessary as the device_mutex implies it.
Haggai Eran7c1eb452015-07-30 17:50:14 +030076 *
77 * lists_rwsem also protects access to the client data list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080079static DEFINE_MUTEX(device_mutex);
Haggai Eran5aa44bb2015-07-30 17:50:13 +030080static DECLARE_RWSEM(lists_rwsem);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83static int ib_device_check_mandatory(struct ib_device *device)
84{
85#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
86 static const struct {
87 size_t offset;
88 char *name;
89 } mandatory_table[] = {
90 IB_MANDATORY_FUNC(query_device),
91 IB_MANDATORY_FUNC(query_port),
92 IB_MANDATORY_FUNC(query_pkey),
93 IB_MANDATORY_FUNC(query_gid),
94 IB_MANDATORY_FUNC(alloc_pd),
95 IB_MANDATORY_FUNC(dealloc_pd),
96 IB_MANDATORY_FUNC(create_ah),
97 IB_MANDATORY_FUNC(destroy_ah),
98 IB_MANDATORY_FUNC(create_qp),
99 IB_MANDATORY_FUNC(modify_qp),
100 IB_MANDATORY_FUNC(destroy_qp),
101 IB_MANDATORY_FUNC(post_send),
102 IB_MANDATORY_FUNC(post_recv),
103 IB_MANDATORY_FUNC(create_cq),
104 IB_MANDATORY_FUNC(destroy_cq),
105 IB_MANDATORY_FUNC(poll_cq),
106 IB_MANDATORY_FUNC(req_notify_cq),
107 IB_MANDATORY_FUNC(get_dma_mr),
Ira Weiny77386132015-05-13 20:02:58 -0400108 IB_MANDATORY_FUNC(dereg_mr),
109 IB_MANDATORY_FUNC(get_port_immutable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 };
111 int i;
112
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +0200113 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
115 printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
116 device->name, mandatory_table[i].name);
117 return -EINVAL;
118 }
119 }
120
121 return 0;
122}
123
124static struct ib_device *__ib_device_get_by_name(const char *name)
125{
126 struct ib_device *device;
127
128 list_for_each_entry(device, &device_list, core_list)
129 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
130 return device;
131
132 return NULL;
133}
134
135
136static int alloc_name(char *name)
137{
Roland Dreier65d470b2007-10-09 19:59:04 -0700138 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 char buf[IB_DEVICE_NAME_MAX];
140 struct ib_device *device;
141 int i;
142
Roland Dreier65d470b2007-10-09 19:59:04 -0700143 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!inuse)
145 return -ENOMEM;
146
147 list_for_each_entry(device, &device_list, core_list) {
148 if (!sscanf(device->name, name, &i))
149 continue;
150 if (i < 0 || i >= PAGE_SIZE * 8)
151 continue;
152 snprintf(buf, sizeof buf, name, i);
153 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
154 set_bit(i, inuse);
155 }
156
157 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
158 free_page((unsigned long) inuse);
159 snprintf(buf, sizeof buf, name, i);
160
161 if (__ib_device_get_by_name(buf))
162 return -ENFILE;
163
164 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
165 return 0;
166}
167
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600168static void ib_device_release(struct device *device)
169{
170 struct ib_device *dev = container_of(device, struct ib_device, dev);
171
172 kfree(dev->port_immutable);
173 kfree(dev);
174}
175
176static int ib_device_uevent(struct device *device,
177 struct kobj_uevent_env *env)
178{
179 struct ib_device *dev = container_of(device, struct ib_device, dev);
180
181 if (add_uevent_var(env, "NAME=%s", dev->name))
182 return -ENOMEM;
183
184 /*
185 * It would be nice to pass the node GUID with the event...
186 */
187
188 return 0;
189}
190
191static struct class ib_class = {
192 .name = "infiniband",
193 .dev_release = ib_device_release,
194 .dev_uevent = ib_device_uevent,
195};
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/**
198 * ib_alloc_device - allocate an IB device struct
199 * @size:size of structure to allocate
200 *
201 * Low-level drivers should use ib_alloc_device() to allocate &struct
202 * ib_device. @size is the size of the structure to be allocated,
203 * including any private data used by the low-level driver.
204 * ib_dealloc_device() must be used to free structures allocated with
205 * ib_alloc_device().
206 */
207struct ib_device *ib_alloc_device(size_t size)
208{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600209 struct ib_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600211 if (WARN_ON(size < sizeof(struct ib_device)))
212 return NULL;
213
214 device = kzalloc(size, GFP_KERNEL);
215 if (!device)
216 return NULL;
217
218 device->dev.class = &ib_class;
219 device_initialize(&device->dev);
220
221 dev_set_drvdata(&device->dev, device);
222
223 INIT_LIST_HEAD(&device->event_handler_list);
224 spin_lock_init(&device->event_handler_lock);
225 spin_lock_init(&device->client_data_lock);
226 INIT_LIST_HEAD(&device->client_data_list);
227 INIT_LIST_HEAD(&device->port_list);
228
229 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231EXPORT_SYMBOL(ib_alloc_device);
232
233/**
234 * ib_dealloc_device - free an IB device struct
235 * @device:structure to free
236 *
237 * Free a structure allocated with ib_alloc_device().
238 */
239void ib_dealloc_device(struct ib_device *device)
240{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600241 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
242 device->reg_state != IB_DEV_UNINITIALIZED);
Roland Dreier9206dff2009-02-25 13:27:46 -0800243 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245EXPORT_SYMBOL(ib_dealloc_device);
246
247static int add_client_context(struct ib_device *device, struct ib_client *client)
248{
249 struct ib_client_data *context;
250 unsigned long flags;
251
252 context = kmalloc(sizeof *context, GFP_KERNEL);
253 if (!context) {
254 printk(KERN_WARNING "Couldn't allocate client context for %s/%s\n",
255 device->name, client->name);
256 return -ENOMEM;
257 }
258
259 context->client = client;
260 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300261 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Haggai Eran7c1eb452015-07-30 17:50:14 +0300263 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 spin_lock_irqsave(&device->client_data_lock, flags);
265 list_add(&context->list, &device->client_data_list);
266 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300267 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 return 0;
270}
271
Ira Weiny337877a2015-06-06 14:38:29 -0400272static int verify_immutable(const struct ib_device *dev, u8 port)
273{
274 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
275 rdma_max_mad_size(dev, port) != 0);
276}
277
Ira Weiny77386132015-05-13 20:02:58 -0400278static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300279{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600280 int ret;
Ira Weiny77386132015-05-13 20:02:58 -0400281 u8 start_port = rdma_start_port(device);
282 u8 end_port = rdma_end_port(device);
283 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300284
Ira Weiny77386132015-05-13 20:02:58 -0400285 /**
286 * device->port_immutable is indexed directly by the port number to make
287 * access to this data as efficient as possible.
288 *
289 * Therefore port_immutable is declared as a 1 based array with
290 * potential empty slots at the beginning.
291 */
292 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
293 * (end_port + 1),
294 GFP_KERNEL);
295 if (!device->port_immutable)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600296 return -ENOMEM;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300297
Ira Weiny77386132015-05-13 20:02:58 -0400298 for (port = start_port; port <= end_port; ++port) {
299 ret = device->get_port_immutable(device, port,
300 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300301 if (ret)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600302 return ret;
Ira Weiny337877a2015-06-06 14:38:29 -0400303
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600304 if (verify_immutable(device, port))
305 return -EINVAL;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300306 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600307 return 0;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/**
311 * ib_register_device - Register an IB device with IB core
312 * @device:Device to register
313 *
314 * Low-level drivers use ib_register_device() to register their
315 * devices with the IB core. All registered clients will receive a
316 * callback for each device that is added. @device must be allocated
317 * with ib_alloc_device().
318 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700319int ib_register_device(struct ib_device *device,
320 int (*port_callback)(struct ib_device *,
321 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 int ret;
324
Ingo Molnar95ed6442006-01-13 14:51:39 -0800325 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (strchr(device->name, '%')) {
328 ret = alloc_name(device->name);
329 if (ret)
330 goto out;
331 }
332
333 if (ib_device_check_mandatory(device)) {
334 ret = -EINVAL;
335 goto out;
336 }
337
Ira Weiny77386132015-05-13 20:02:58 -0400338 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300339 if (ret) {
Ira Weiny77386132015-05-13 20:02:58 -0400340 printk(KERN_WARNING "Couldn't create per port immutable data %s\n",
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300341 device->name);
342 goto out;
343 }
344
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700345 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (ret) {
347 printk(KERN_WARNING "Couldn't register device %s with driver model\n",
348 device->name);
349 goto out;
350 }
351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 device->reg_state = IB_DEV_REGISTERED;
353
354 {
355 struct ib_client *client;
356
357 list_for_each_entry(client, &client_list, list)
358 if (client->add && !add_client_context(device, client))
359 client->add(device);
360 }
361
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300362 down_write(&lists_rwsem);
363 list_add_tail(&device->core_list, &device_list);
364 up_write(&lists_rwsem);
365out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800366 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return ret;
368}
369EXPORT_SYMBOL(ib_register_device);
370
371/**
372 * ib_unregister_device - Unregister an IB device
373 * @device:Device to unregister
374 *
375 * Unregister an IB device. All clients will receive a remove callback.
376 */
377void ib_unregister_device(struct ib_device *device)
378{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct ib_client_data *context, *tmp;
380 unsigned long flags;
381
Ingo Molnar95ed6442006-01-13 14:51:39 -0800382 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300384 down_write(&lists_rwsem);
385 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300386 spin_lock_irqsave(&device->client_data_lock, flags);
387 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
388 context->going_down = true;
389 spin_unlock_irqrestore(&device->client_data_lock, flags);
390 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300391
Haggai Eran7c1eb452015-07-30 17:50:14 +0300392 list_for_each_entry_safe(context, tmp, &device->client_data_list,
393 list) {
394 if (context->client->remove)
395 context->client->remove(device, context->data);
396 }
397 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Ingo Molnar95ed6442006-01-13 14:51:39 -0800399 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Roland Dreier9206dff2009-02-25 13:27:46 -0800401 ib_device_unregister_sysfs(device);
402
Haggai Eran7c1eb452015-07-30 17:50:14 +0300403 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 spin_lock_irqsave(&device->client_data_lock, flags);
405 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
406 kfree(context);
407 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300408 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 device->reg_state = IB_DEV_UNREGISTERED;
411}
412EXPORT_SYMBOL(ib_unregister_device);
413
414/**
415 * ib_register_client - Register an IB client
416 * @client:Client to register
417 *
418 * Upper level users of the IB drivers can use ib_register_client() to
419 * register callbacks for IB device addition and removal. When an IB
420 * device is added, each registered client's add method will be called
421 * (in the order the clients were registered), and when a device is
422 * removed, each client's remove method will be called (in the reverse
423 * order that clients were registered). In addition, when
424 * ib_register_client() is called, the client will receive an add
425 * callback for all devices already registered.
426 */
427int ib_register_client(struct ib_client *client)
428{
429 struct ib_device *device;
430
Ingo Molnar95ed6442006-01-13 14:51:39 -0800431 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 list_for_each_entry(device, &device_list, core_list)
434 if (client->add && !add_client_context(device, client))
435 client->add(device);
436
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300437 down_write(&lists_rwsem);
438 list_add_tail(&client->list, &client_list);
439 up_write(&lists_rwsem);
440
Ingo Molnar95ed6442006-01-13 14:51:39 -0800441 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 return 0;
444}
445EXPORT_SYMBOL(ib_register_client);
446
447/**
448 * ib_unregister_client - Unregister an IB client
449 * @client:Client to unregister
450 *
451 * Upper level users use ib_unregister_client() to remove their client
452 * registration. When ib_unregister_client() is called, the client
453 * will receive a remove callback for each IB device still registered.
454 */
455void ib_unregister_client(struct ib_client *client)
456{
457 struct ib_client_data *context, *tmp;
458 struct ib_device *device;
459 unsigned long flags;
460
Ingo Molnar95ed6442006-01-13 14:51:39 -0800461 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300463 down_write(&lists_rwsem);
464 list_del(&client->list);
465 up_write(&lists_rwsem);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300468 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Haggai Eran7c1eb452015-07-30 17:50:14 +0300470 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 spin_lock_irqsave(&device->client_data_lock, flags);
472 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
473 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300474 context->going_down = true;
475 found_context = context;
476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300479 up_write(&lists_rwsem);
480
481 if (client->remove)
482 client->remove(device, found_context ?
483 found_context->data : NULL);
484
485 if (!found_context) {
486 pr_warn("No client context found for %s/%s\n",
487 device->name, client->name);
488 continue;
489 }
490
491 down_write(&lists_rwsem);
492 spin_lock_irqsave(&device->client_data_lock, flags);
493 list_del(&found_context->list);
494 kfree(found_context);
495 spin_unlock_irqrestore(&device->client_data_lock, flags);
496 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Ingo Molnar95ed6442006-01-13 14:51:39 -0800499 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501EXPORT_SYMBOL(ib_unregister_client);
502
503/**
504 * ib_get_client_data - Get IB client context
505 * @device:Device to get context for
506 * @client:Client to get context for
507 *
508 * ib_get_client_data() returns client context set with
509 * ib_set_client_data().
510 */
511void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
512{
513 struct ib_client_data *context;
514 void *ret = NULL;
515 unsigned long flags;
516
517 spin_lock_irqsave(&device->client_data_lock, flags);
518 list_for_each_entry(context, &device->client_data_list, list)
519 if (context->client == client) {
520 ret = context->data;
521 break;
522 }
523 spin_unlock_irqrestore(&device->client_data_lock, flags);
524
525 return ret;
526}
527EXPORT_SYMBOL(ib_get_client_data);
528
529/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700530 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 * @device:Device to set context for
532 * @client:Client to set context for
533 * @data:Context to set
534 *
535 * ib_set_client_data() sets client context that can be retrieved with
536 * ib_get_client_data().
537 */
538void ib_set_client_data(struct ib_device *device, struct ib_client *client,
539 void *data)
540{
541 struct ib_client_data *context;
542 unsigned long flags;
543
544 spin_lock_irqsave(&device->client_data_lock, flags);
545 list_for_each_entry(context, &device->client_data_list, list)
546 if (context->client == client) {
547 context->data = data;
548 goto out;
549 }
550
551 printk(KERN_WARNING "No client context found for %s/%s\n",
552 device->name, client->name);
553
554out:
555 spin_unlock_irqrestore(&device->client_data_lock, flags);
556}
557EXPORT_SYMBOL(ib_set_client_data);
558
559/**
560 * ib_register_event_handler - Register an IB event handler
561 * @event_handler:Handler to register
562 *
563 * ib_register_event_handler() registers an event handler that will be
564 * called back when asynchronous IB events occur (as defined in
565 * chapter 11 of the InfiniBand Architecture Specification). This
566 * callback may occur in interrupt context.
567 */
568int ib_register_event_handler (struct ib_event_handler *event_handler)
569{
570 unsigned long flags;
571
572 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
573 list_add_tail(&event_handler->list,
574 &event_handler->device->event_handler_list);
575 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
576
577 return 0;
578}
579EXPORT_SYMBOL(ib_register_event_handler);
580
581/**
582 * ib_unregister_event_handler - Unregister an event handler
583 * @event_handler:Handler to unregister
584 *
585 * Unregister an event handler registered with
586 * ib_register_event_handler().
587 */
588int ib_unregister_event_handler(struct ib_event_handler *event_handler)
589{
590 unsigned long flags;
591
592 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
593 list_del(&event_handler->list);
594 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
595
596 return 0;
597}
598EXPORT_SYMBOL(ib_unregister_event_handler);
599
600/**
601 * ib_dispatch_event - Dispatch an asynchronous event
602 * @event:Event to dispatch
603 *
604 * Low-level drivers must call ib_dispatch_event() to dispatch the
605 * event to all registered event handlers when an asynchronous event
606 * occurs.
607 */
608void ib_dispatch_event(struct ib_event *event)
609{
610 unsigned long flags;
611 struct ib_event_handler *handler;
612
613 spin_lock_irqsave(&event->device->event_handler_lock, flags);
614
615 list_for_each_entry(handler, &event->device->event_handler_list, list)
616 handler->handler(handler, event);
617
618 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
619}
620EXPORT_SYMBOL(ib_dispatch_event);
621
622/**
623 * ib_query_device - Query IB device attributes
624 * @device:Device to query
625 * @device_attr:Device attributes
626 *
627 * ib_query_device() returns the attributes of a device through the
628 * @device_attr pointer.
629 */
630int ib_query_device(struct ib_device *device,
631 struct ib_device_attr *device_attr)
632{
Matan Barak2528e332015-06-11 16:35:25 +0300633 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
634
Matan Barak24306dc2015-06-11 16:35:24 +0300635 memset(device_attr, 0, sizeof(*device_attr));
636
Matan Barak2528e332015-06-11 16:35:25 +0300637 return device->query_device(device, device_attr, &uhw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639EXPORT_SYMBOL(ib_query_device);
640
641/**
642 * ib_query_port - Query IB port attributes
643 * @device:Device to query
644 * @port_num:Port number to query
645 * @port_attr:Port attributes
646 *
647 * ib_query_port() returns the attributes of a port through the
648 * @port_attr pointer.
649 */
650int ib_query_port(struct ib_device *device,
651 u8 port_num,
652 struct ib_port_attr *port_attr)
653{
Ira Weiny0cf18d72015-05-13 20:02:55 -0400654 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700655 return -EINVAL;
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return device->query_port(device, port_num, port_attr);
658}
659EXPORT_SYMBOL(ib_query_port);
660
661/**
662 * ib_query_gid - Get GID table entry
663 * @device:Device to query
664 * @port_num:Port number to query
665 * @index:GID table index to query
666 * @gid:Returned GID
667 *
668 * ib_query_gid() fetches the specified GID table entry.
669 */
670int ib_query_gid(struct ib_device *device,
671 u8 port_num, int index, union ib_gid *gid)
672{
673 return device->query_gid(device, port_num, index, gid);
674}
675EXPORT_SYMBOL(ib_query_gid);
676
677/**
678 * ib_query_pkey - Get P_Key table entry
679 * @device:Device to query
680 * @port_num:Port number to query
681 * @index:P_Key table index to query
682 * @pkey:Returned P_Key
683 *
684 * ib_query_pkey() fetches the specified P_Key table entry.
685 */
686int ib_query_pkey(struct ib_device *device,
687 u8 port_num, u16 index, u16 *pkey)
688{
689 return device->query_pkey(device, port_num, index, pkey);
690}
691EXPORT_SYMBOL(ib_query_pkey);
692
693/**
694 * ib_modify_device - Change IB device attributes
695 * @device:Device to modify
696 * @device_modify_mask:Mask of attributes to change
697 * @device_modify:New attribute values
698 *
699 * ib_modify_device() changes a device's attributes as specified by
700 * the @device_modify_mask and @device_modify structure.
701 */
702int ib_modify_device(struct ib_device *device,
703 int device_modify_mask,
704 struct ib_device_modify *device_modify)
705{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000706 if (!device->modify_device)
707 return -ENOSYS;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return device->modify_device(device, device_modify_mask,
710 device_modify);
711}
712EXPORT_SYMBOL(ib_modify_device);
713
714/**
715 * ib_modify_port - Modifies the attributes for the specified port.
716 * @device: The device to modify.
717 * @port_num: The number of the port to modify.
718 * @port_modify_mask: Mask used to specify which attributes of the port
719 * to change.
720 * @port_modify: New attribute values for the port.
721 *
722 * ib_modify_port() changes a port's attributes as specified by the
723 * @port_modify_mask and @port_modify structure.
724 */
725int ib_modify_port(struct ib_device *device,
726 u8 port_num, int port_modify_mask,
727 struct ib_port_modify *port_modify)
728{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000729 if (!device->modify_port)
730 return -ENOSYS;
731
Ira Weiny0cf18d72015-05-13 20:02:55 -0400732 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700733 return -EINVAL;
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return device->modify_port(device, port_num, port_modify_mask,
736 port_modify);
737}
738EXPORT_SYMBOL(ib_modify_port);
739
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300740/**
741 * ib_find_gid - Returns the port number and GID table index where
742 * a specified GID value occurs.
743 * @device: The device to query.
744 * @gid: The GID value to search for.
745 * @port_num: The port number of the device where the GID value was found.
746 * @index: The index into the GID table where the GID was found. This
747 * parameter may be NULL.
748 */
749int ib_find_gid(struct ib_device *device, union ib_gid *gid,
750 u8 *port_num, u16 *index)
751{
752 union ib_gid tmp_gid;
753 int ret, port, i;
754
Ira Weiny0cf18d72015-05-13 20:02:55 -0400755 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Ira Weiny77386132015-05-13 20:02:58 -0400756 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300757 ret = ib_query_gid(device, port, i, &tmp_gid);
758 if (ret)
759 return ret;
760 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
761 *port_num = port;
762 if (index)
763 *index = i;
764 return 0;
765 }
766 }
767 }
768
769 return -ENOENT;
770}
771EXPORT_SYMBOL(ib_find_gid);
772
773/**
774 * ib_find_pkey - Returns the PKey table index where a specified
775 * PKey value occurs.
776 * @device: The device to query.
777 * @port_num: The port number of the device to search for the PKey.
778 * @pkey: The PKey value to search for.
779 * @index: The index into the PKey table where the PKey was found.
780 */
781int ib_find_pkey(struct ib_device *device,
782 u8 port_num, u16 pkey, u16 *index)
783{
784 int ret, i;
785 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000786 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300787
Ira Weiny77386132015-05-13 20:02:58 -0400788 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300789 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
790 if (ret)
791 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +0300792 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000793 /* if there is full-member pkey take it.*/
794 if (tmp_pkey & 0x8000) {
795 *index = i;
796 return 0;
797 }
798 if (partial_ix < 0)
799 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300800 }
801 }
802
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000803 /*no full-member, if exists take the limited*/
804 if (partial_ix >= 0) {
805 *index = partial_ix;
806 return 0;
807 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300808 return -ENOENT;
809}
810EXPORT_SYMBOL(ib_find_pkey);
811
Yotam Kenneth9268f722015-07-30 17:50:15 +0300812/**
813 * ib_get_net_dev_by_params() - Return the appropriate net_dev
814 * for a received CM request
815 * @dev: An RDMA device on which the request has been received.
816 * @port: Port number on the RDMA device.
817 * @pkey: The Pkey the request came on.
818 * @gid: A GID that the net_dev uses to communicate.
819 * @addr: Contains the IP address that the request specified as its
820 * destination.
821 */
822struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
823 u8 port,
824 u16 pkey,
825 const union ib_gid *gid,
826 const struct sockaddr *addr)
827{
828 struct net_device *net_dev = NULL;
829 struct ib_client_data *context;
830
831 if (!rdma_protocol_ib(dev, port))
832 return NULL;
833
834 down_read(&lists_rwsem);
835
836 list_for_each_entry(context, &dev->client_data_list, list) {
837 struct ib_client *client = context->client;
838
839 if (context->going_down)
840 continue;
841
842 if (client->get_net_dev_by_params) {
843 net_dev = client->get_net_dev_by_params(dev, port, pkey,
844 gid, addr,
845 context->data);
846 if (net_dev)
847 break;
848 }
849 }
850
851 up_read(&lists_rwsem);
852
853 return net_dev;
854}
855EXPORT_SYMBOL(ib_get_net_dev_by_params);
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857static int __init ib_core_init(void)
858{
859 int ret;
860
Tejun Heof0626712010-10-19 15:24:36 +0000861 ib_wq = alloc_workqueue("infiniband", 0, 0);
862 if (!ib_wq)
863 return -ENOMEM;
864
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600865 ret = class_register(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -0700866 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700868 goto err;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Roland Dreierb2cbae22011-05-20 11:46:11 -0700871 ret = ibnl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (ret) {
Roland Dreierb2cbae22011-05-20 11:46:11 -0700873 printk(KERN_WARNING "Couldn't init IB netlink interface\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700874 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876
Roland Dreierb2cbae22011-05-20 11:46:11 -0700877 ret = ib_cache_setup();
878 if (ret) {
879 printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
880 goto err_nl;
881 }
882
Nir Muchtarfd75c782011-05-20 11:46:10 -0700883 return 0;
884
Roland Dreierb2cbae22011-05-20 11:46:11 -0700885err_nl:
886 ibnl_cleanup();
887
Nir Muchtarfd75c782011-05-20 11:46:10 -0700888err_sysfs:
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600889 class_unregister(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -0700890
891err:
892 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return ret;
894}
895
896static void __exit ib_core_cleanup(void)
897{
898 ib_cache_cleanup();
Roland Dreierb2cbae22011-05-20 11:46:11 -0700899 ibnl_cleanup();
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600900 class_unregister(&ib_class);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800901 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +0000902 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
904
905module_init(ib_core_init);
906module_exit(ib_core_cleanup);