blob: 631eaa9daf65d30156eafd29635315455c912dfa [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>
Daniel Jurgens8f408ab2017-05-19 15:48:53 +030042#include <linux/security.h>
43#include <linux/notifier.h>
Roland Dreierb2cbae22011-05-20 11:46:11 -070044#include <rdma/rdma_netlink.h>
Matan Barak03db3a22015-07-30 18:33:26 +030045#include <rdma/ib_addr.h>
46#include <rdma/ib_cache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#include "core_priv.h"
49
50MODULE_AUTHOR("Roland Dreier");
51MODULE_DESCRIPTION("core kernel InfiniBand API");
52MODULE_LICENSE("Dual BSD/GPL");
53
54struct ib_client_data {
55 struct list_head list;
56 struct ib_client *client;
57 void * data;
Haggai Eran7c1eb452015-07-30 17:50:14 +030058 /* The device or client is going down. Do not call client or device
59 * callbacks other than remove(). */
60 bool going_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -080063struct workqueue_struct *ib_comp_wq;
Tejun Heof0626712010-10-19 15:24:36 +000064struct workqueue_struct *ib_wq;
65EXPORT_SYMBOL_GPL(ib_wq);
66
Haggai Eran5aa44bb2015-07-30 17:50:13 +030067/* The device_list and client_list contain devices and clients after their
68 * registration has completed, and the devices and clients are removed
69 * during unregistration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static LIST_HEAD(device_list);
71static LIST_HEAD(client_list);
72
73/*
Haggai Eran5aa44bb2015-07-30 17:50:13 +030074 * device_mutex and lists_rwsem protect access to both device_list and
75 * client_list. device_mutex protects writer access by device and client
76 * registration / de-registration. lists_rwsem protects reader access to
77 * these lists. Iterators of these lists must lock it for read, while updates
78 * to the lists must be done with a write lock. A special case is when the
79 * device_mutex is locked. In this case locking the lists for read access is
80 * not necessary as the device_mutex implies it.
Haggai Eran7c1eb452015-07-30 17:50:14 +030081 *
82 * lists_rwsem also protects access to the client data list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080084static DEFINE_MUTEX(device_mutex);
Haggai Eran5aa44bb2015-07-30 17:50:13 +030085static DECLARE_RWSEM(lists_rwsem);
86
Daniel Jurgens8f408ab2017-05-19 15:48:53 +030087static int ib_security_change(struct notifier_block *nb, unsigned long event,
88 void *lsm_data);
89static void ib_policy_change_task(struct work_struct *work);
90static DECLARE_WORK(ib_policy_change_work, ib_policy_change_task);
91
92static struct notifier_block ibdev_lsm_nb = {
93 .notifier_call = ib_security_change,
94};
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96static int ib_device_check_mandatory(struct ib_device *device)
97{
98#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
99 static const struct {
100 size_t offset;
101 char *name;
102 } mandatory_table[] = {
103 IB_MANDATORY_FUNC(query_device),
104 IB_MANDATORY_FUNC(query_port),
105 IB_MANDATORY_FUNC(query_pkey),
106 IB_MANDATORY_FUNC(query_gid),
107 IB_MANDATORY_FUNC(alloc_pd),
108 IB_MANDATORY_FUNC(dealloc_pd),
109 IB_MANDATORY_FUNC(create_ah),
110 IB_MANDATORY_FUNC(destroy_ah),
111 IB_MANDATORY_FUNC(create_qp),
112 IB_MANDATORY_FUNC(modify_qp),
113 IB_MANDATORY_FUNC(destroy_qp),
114 IB_MANDATORY_FUNC(post_send),
115 IB_MANDATORY_FUNC(post_recv),
116 IB_MANDATORY_FUNC(create_cq),
117 IB_MANDATORY_FUNC(destroy_cq),
118 IB_MANDATORY_FUNC(poll_cq),
119 IB_MANDATORY_FUNC(req_notify_cq),
120 IB_MANDATORY_FUNC(get_dma_mr),
Ira Weiny77386132015-05-13 20:02:58 -0400121 IB_MANDATORY_FUNC(dereg_mr),
122 IB_MANDATORY_FUNC(get_port_immutable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 };
124 int i;
125
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +0200126 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530128 pr_warn("Device %s is missing mandatory function %s\n",
129 device->name, mandatory_table[i].name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return -EINVAL;
131 }
132 }
133
134 return 0;
135}
136
137static struct ib_device *__ib_device_get_by_name(const char *name)
138{
139 struct ib_device *device;
140
141 list_for_each_entry(device, &device_list, core_list)
142 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
143 return device;
144
145 return NULL;
146}
147
148
149static int alloc_name(char *name)
150{
Roland Dreier65d470b2007-10-09 19:59:04 -0700151 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 char buf[IB_DEVICE_NAME_MAX];
153 struct ib_device *device;
154 int i;
155
Roland Dreier65d470b2007-10-09 19:59:04 -0700156 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 if (!inuse)
158 return -ENOMEM;
159
160 list_for_each_entry(device, &device_list, core_list) {
161 if (!sscanf(device->name, name, &i))
162 continue;
163 if (i < 0 || i >= PAGE_SIZE * 8)
164 continue;
165 snprintf(buf, sizeof buf, name, i);
166 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
167 set_bit(i, inuse);
168 }
169
170 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
171 free_page((unsigned long) inuse);
172 snprintf(buf, sizeof buf, name, i);
173
174 if (__ib_device_get_by_name(buf))
175 return -ENFILE;
176
177 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
178 return 0;
179}
180
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600181static void ib_device_release(struct device *device)
182{
183 struct ib_device *dev = container_of(device, struct ib_device, dev);
184
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200185 WARN_ON(dev->reg_state == IB_DEV_REGISTERED);
186 if (dev->reg_state == IB_DEV_UNREGISTERED) {
187 /*
188 * In IB_DEV_UNINITIALIZED state, cache or port table
189 * is not even created. Free cache and port table only when
190 * device reaches UNREGISTERED state.
191 */
192 ib_cache_release_one(dev);
193 kfree(dev->port_immutable);
194 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600195 kfree(dev);
196}
197
198static int ib_device_uevent(struct device *device,
199 struct kobj_uevent_env *env)
200{
201 struct ib_device *dev = container_of(device, struct ib_device, dev);
202
203 if (add_uevent_var(env, "NAME=%s", dev->name))
204 return -ENOMEM;
205
206 /*
207 * It would be nice to pass the node GUID with the event...
208 */
209
210 return 0;
211}
212
213static struct class ib_class = {
214 .name = "infiniband",
215 .dev_release = ib_device_release,
216 .dev_uevent = ib_device_uevent,
217};
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/**
220 * ib_alloc_device - allocate an IB device struct
221 * @size:size of structure to allocate
222 *
223 * Low-level drivers should use ib_alloc_device() to allocate &struct
224 * ib_device. @size is the size of the structure to be allocated,
225 * including any private data used by the low-level driver.
226 * ib_dealloc_device() must be used to free structures allocated with
227 * ib_alloc_device().
228 */
229struct ib_device *ib_alloc_device(size_t size)
230{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600231 struct ib_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600233 if (WARN_ON(size < sizeof(struct ib_device)))
234 return NULL;
235
236 device = kzalloc(size, GFP_KERNEL);
237 if (!device)
238 return NULL;
239
240 device->dev.class = &ib_class;
241 device_initialize(&device->dev);
242
243 dev_set_drvdata(&device->dev, device);
244
245 INIT_LIST_HEAD(&device->event_handler_list);
246 spin_lock_init(&device->event_handler_lock);
247 spin_lock_init(&device->client_data_lock);
248 INIT_LIST_HEAD(&device->client_data_list);
249 INIT_LIST_HEAD(&device->port_list);
250
251 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253EXPORT_SYMBOL(ib_alloc_device);
254
255/**
256 * ib_dealloc_device - free an IB device struct
257 * @device:structure to free
258 *
259 * Free a structure allocated with ib_alloc_device().
260 */
261void ib_dealloc_device(struct ib_device *device)
262{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600263 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
264 device->reg_state != IB_DEV_UNINITIALIZED);
Roland Dreier9206dff2009-02-25 13:27:46 -0800265 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267EXPORT_SYMBOL(ib_dealloc_device);
268
269static int add_client_context(struct ib_device *device, struct ib_client *client)
270{
271 struct ib_client_data *context;
272 unsigned long flags;
273
274 context = kmalloc(sizeof *context, GFP_KERNEL);
Leon Romanovskya0b34552016-11-03 16:44:10 +0200275 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 context->client = client;
279 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300280 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Haggai Eran7c1eb452015-07-30 17:50:14 +0300282 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 spin_lock_irqsave(&device->client_data_lock, flags);
284 list_add(&context->list, &device->client_data_list);
285 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300286 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 return 0;
289}
290
Ira Weiny337877a2015-06-06 14:38:29 -0400291static int verify_immutable(const struct ib_device *dev, u8 port)
292{
293 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
294 rdma_max_mad_size(dev, port) != 0);
295}
296
Ira Weiny77386132015-05-13 20:02:58 -0400297static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300298{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600299 int ret;
Ira Weiny77386132015-05-13 20:02:58 -0400300 u8 start_port = rdma_start_port(device);
301 u8 end_port = rdma_end_port(device);
302 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300303
Ira Weiny77386132015-05-13 20:02:58 -0400304 /**
305 * device->port_immutable is indexed directly by the port number to make
306 * access to this data as efficient as possible.
307 *
308 * Therefore port_immutable is declared as a 1 based array with
309 * potential empty slots at the beginning.
310 */
311 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
312 * (end_port + 1),
313 GFP_KERNEL);
314 if (!device->port_immutable)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600315 return -ENOMEM;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300316
Ira Weiny77386132015-05-13 20:02:58 -0400317 for (port = start_port; port <= end_port; ++port) {
318 ret = device->get_port_immutable(device, port,
319 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300320 if (ret)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600321 return ret;
Ira Weiny337877a2015-06-06 14:38:29 -0400322
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600323 if (verify_immutable(device, port))
324 return -EINVAL;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300325 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600326 return 0;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300327}
328
Ira Weiny5fa76c22016-06-15 02:21:56 -0400329void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len)
330{
331 if (dev->get_dev_fw_str)
332 dev->get_dev_fw_str(dev, str, str_len);
333 else
334 str[0] = '\0';
335}
336EXPORT_SYMBOL(ib_get_device_fw_str);
337
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300338static int setup_port_pkey_list(struct ib_device *device)
339{
340 int i;
341
342 /**
343 * device->port_pkey_list is indexed directly by the port number,
344 * Therefore it is declared as a 1 based array with potential empty
345 * slots at the beginning.
346 */
347 device->port_pkey_list = kcalloc(rdma_end_port(device) + 1,
348 sizeof(*device->port_pkey_list),
349 GFP_KERNEL);
350
351 if (!device->port_pkey_list)
352 return -ENOMEM;
353
354 for (i = 0; i < (rdma_end_port(device) + 1); i++) {
355 spin_lock_init(&device->port_pkey_list[i].list_lock);
356 INIT_LIST_HEAD(&device->port_pkey_list[i].pkey_list);
357 }
358
359 return 0;
360}
361
Daniel Jurgens8f408ab2017-05-19 15:48:53 +0300362static void ib_policy_change_task(struct work_struct *work)
363{
364 struct ib_device *dev;
365
366 down_read(&lists_rwsem);
367 list_for_each_entry(dev, &device_list, core_list) {
368 int i;
369
370 for (i = rdma_start_port(dev); i <= rdma_end_port(dev); i++) {
371 u64 sp;
372 int ret = ib_get_cached_subnet_prefix(dev,
373 i,
374 &sp);
375
376 WARN_ONCE(ret,
377 "ib_get_cached_subnet_prefix err: %d, this should never happen here\n",
378 ret);
379 ib_security_cache_change(dev, i, sp);
380 }
381 }
382 up_read(&lists_rwsem);
383}
384
385static int ib_security_change(struct notifier_block *nb, unsigned long event,
386 void *lsm_data)
387{
388 if (event != LSM_POLICY_CHANGE)
389 return NOTIFY_DONE;
390
391 schedule_work(&ib_policy_change_work);
392
393 return NOTIFY_OK;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/**
397 * ib_register_device - Register an IB device with IB core
398 * @device:Device to register
399 *
400 * Low-level drivers use ib_register_device() to register their
401 * devices with the IB core. All registered clients will receive a
402 * callback for each device that is added. @device must be allocated
403 * with ib_alloc_device().
404 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700405int ib_register_device(struct ib_device *device,
406 int (*port_callback)(struct ib_device *,
407 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 int ret;
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400410 struct ib_client *client;
Ira Weiny3e153a92015-12-18 10:59:44 +0200411 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
Bart Van Assche99db9492017-01-20 13:04:36 -0800412 struct device *parent = device->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Bart Van Assche99db9492017-01-20 13:04:36 -0800414 WARN_ON_ONCE(!parent);
Bart Van Assche0957c292017-03-07 22:56:53 +0000415 WARN_ON_ONCE(device->dma_device);
416 if (device->dev.dma_ops) {
417 /*
418 * The caller provided custom DMA operations. Copy the
419 * DMA-related fields that are used by e.g. dma_alloc_coherent()
420 * into device->dev.
421 */
422 device->dma_device = &device->dev;
423 if (!device->dev.dma_mask)
424 device->dev.dma_mask = parent->dma_mask;
425 if (!device->dev.coherent_dma_mask)
426 device->dev.coherent_dma_mask =
427 parent->coherent_dma_mask;
428 } else {
429 /*
430 * The caller did not provide custom DMA operations. Use the
431 * DMA mapping operations of the parent device.
432 */
433 device->dma_device = parent;
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Ingo Molnar95ed6442006-01-13 14:51:39 -0800436 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (strchr(device->name, '%')) {
439 ret = alloc_name(device->name);
440 if (ret)
441 goto out;
442 }
443
444 if (ib_device_check_mandatory(device)) {
445 ret = -EINVAL;
446 goto out;
447 }
448
Ira Weiny77386132015-05-13 20:02:58 -0400449 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300450 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530451 pr_warn("Couldn't create per port immutable data %s\n",
452 device->name);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300453 goto out;
454 }
455
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300456 ret = setup_port_pkey_list(device);
457 if (ret) {
458 pr_warn("Couldn't create per port_pkey_list\n");
459 goto out;
460 }
461
Matan Barak03db3a22015-07-30 18:33:26 +0300462 ret = ib_cache_setup_one(device);
463 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530464 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200465 goto port_cleanup;
Matan Barak03db3a22015-07-30 18:33:26 +0300466 }
467
Parav Pandit43579b52017-01-10 00:02:14 +0000468 ret = ib_device_register_rdmacg(device);
469 if (ret) {
470 pr_warn("Couldn't register device with rdma cgroup\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200471 goto cache_cleanup;
Parav Pandit43579b52017-01-10 00:02:14 +0000472 }
473
Ira Weiny3e153a92015-12-18 10:59:44 +0200474 memset(&device->attrs, 0, sizeof(device->attrs));
475 ret = device->query_device(device, &device->attrs, &uhw);
476 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530477 pr_warn("Couldn't query the device attributes\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200478 goto cache_cleanup;
Ira Weiny3e153a92015-12-18 10:59:44 +0200479 }
480
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700481 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530483 pr_warn("Couldn't register device %s with driver model\n",
484 device->name);
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200485 goto cache_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 device->reg_state = IB_DEV_REGISTERED;
489
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400490 list_for_each_entry(client, &client_list, list)
491 if (client->add && !add_client_context(device, client))
492 client->add(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300494 down_write(&lists_rwsem);
495 list_add_tail(&device->core_list, &device_list);
496 up_write(&lists_rwsem);
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200497 mutex_unlock(&device_mutex);
498 return 0;
499
500cache_cleanup:
501 ib_cache_cleanup_one(device);
502 ib_cache_release_one(device);
503port_cleanup:
504 kfree(device->port_immutable);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300505out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800506 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return ret;
508}
509EXPORT_SYMBOL(ib_register_device);
510
511/**
512 * ib_unregister_device - Unregister an IB device
513 * @device:Device to unregister
514 *
515 * Unregister an IB device. All clients will receive a remove callback.
516 */
517void ib_unregister_device(struct ib_device *device)
518{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct ib_client_data *context, *tmp;
520 unsigned long flags;
521
Ingo Molnar95ed6442006-01-13 14:51:39 -0800522 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300524 down_write(&lists_rwsem);
525 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300526 spin_lock_irqsave(&device->client_data_lock, flags);
527 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
528 context->going_down = true;
529 spin_unlock_irqrestore(&device->client_data_lock, flags);
530 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300531
Haggai Eran7c1eb452015-07-30 17:50:14 +0300532 list_for_each_entry_safe(context, tmp, &device->client_data_list,
533 list) {
534 if (context->client->remove)
535 context->client->remove(device, context->data);
536 }
537 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Ingo Molnar95ed6442006-01-13 14:51:39 -0800539 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Parav Pandit43579b52017-01-10 00:02:14 +0000541 ib_device_unregister_rdmacg(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800542 ib_device_unregister_sysfs(device);
Matan Barak03db3a22015-07-30 18:33:26 +0300543 ib_cache_cleanup_one(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800544
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300545 ib_security_destroy_port_pkey_list(device);
546 kfree(device->port_pkey_list);
547
Haggai Eran7c1eb452015-07-30 17:50:14 +0300548 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 spin_lock_irqsave(&device->client_data_lock, flags);
550 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
551 kfree(context);
552 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300553 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 device->reg_state = IB_DEV_UNREGISTERED;
556}
557EXPORT_SYMBOL(ib_unregister_device);
558
559/**
560 * ib_register_client - Register an IB client
561 * @client:Client to register
562 *
563 * Upper level users of the IB drivers can use ib_register_client() to
564 * register callbacks for IB device addition and removal. When an IB
565 * device is added, each registered client's add method will be called
566 * (in the order the clients were registered), and when a device is
567 * removed, each client's remove method will be called (in the reverse
568 * order that clients were registered). In addition, when
569 * ib_register_client() is called, the client will receive an add
570 * callback for all devices already registered.
571 */
572int ib_register_client(struct ib_client *client)
573{
574 struct ib_device *device;
575
Ingo Molnar95ed6442006-01-13 14:51:39 -0800576 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 list_for_each_entry(device, &device_list, core_list)
579 if (client->add && !add_client_context(device, client))
580 client->add(device);
581
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300582 down_write(&lists_rwsem);
583 list_add_tail(&client->list, &client_list);
584 up_write(&lists_rwsem);
585
Ingo Molnar95ed6442006-01-13 14:51:39 -0800586 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 return 0;
589}
590EXPORT_SYMBOL(ib_register_client);
591
592/**
593 * ib_unregister_client - Unregister an IB client
594 * @client:Client to unregister
595 *
596 * Upper level users use ib_unregister_client() to remove their client
597 * registration. When ib_unregister_client() is called, the client
598 * will receive a remove callback for each IB device still registered.
599 */
600void ib_unregister_client(struct ib_client *client)
601{
602 struct ib_client_data *context, *tmp;
603 struct ib_device *device;
604 unsigned long flags;
605
Ingo Molnar95ed6442006-01-13 14:51:39 -0800606 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300608 down_write(&lists_rwsem);
609 list_del(&client->list);
610 up_write(&lists_rwsem);
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300613 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Haggai Eran7c1eb452015-07-30 17:50:14 +0300615 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 spin_lock_irqsave(&device->client_data_lock, flags);
617 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
618 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300619 context->going_down = true;
620 found_context = context;
621 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300624 up_write(&lists_rwsem);
625
626 if (client->remove)
627 client->remove(device, found_context ?
628 found_context->data : NULL);
629
630 if (!found_context) {
631 pr_warn("No client context found for %s/%s\n",
632 device->name, client->name);
633 continue;
634 }
635
636 down_write(&lists_rwsem);
637 spin_lock_irqsave(&device->client_data_lock, flags);
638 list_del(&found_context->list);
639 kfree(found_context);
640 spin_unlock_irqrestore(&device->client_data_lock, flags);
641 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Ingo Molnar95ed6442006-01-13 14:51:39 -0800644 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646EXPORT_SYMBOL(ib_unregister_client);
647
648/**
649 * ib_get_client_data - Get IB client context
650 * @device:Device to get context for
651 * @client:Client to get context for
652 *
653 * ib_get_client_data() returns client context set with
654 * ib_set_client_data().
655 */
656void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
657{
658 struct ib_client_data *context;
659 void *ret = NULL;
660 unsigned long flags;
661
662 spin_lock_irqsave(&device->client_data_lock, flags);
663 list_for_each_entry(context, &device->client_data_list, list)
664 if (context->client == client) {
665 ret = context->data;
666 break;
667 }
668 spin_unlock_irqrestore(&device->client_data_lock, flags);
669
670 return ret;
671}
672EXPORT_SYMBOL(ib_get_client_data);
673
674/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700675 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 * @device:Device to set context for
677 * @client:Client to set context for
678 * @data:Context to set
679 *
680 * ib_set_client_data() sets client context that can be retrieved with
681 * ib_get_client_data().
682 */
683void ib_set_client_data(struct ib_device *device, struct ib_client *client,
684 void *data)
685{
686 struct ib_client_data *context;
687 unsigned long flags;
688
689 spin_lock_irqsave(&device->client_data_lock, flags);
690 list_for_each_entry(context, &device->client_data_list, list)
691 if (context->client == client) {
692 context->data = data;
693 goto out;
694 }
695
Parav Panditaba25a3e2016-03-02 00:50:29 +0530696 pr_warn("No client context found for %s/%s\n",
697 device->name, client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699out:
700 spin_unlock_irqrestore(&device->client_data_lock, flags);
701}
702EXPORT_SYMBOL(ib_set_client_data);
703
704/**
705 * ib_register_event_handler - Register an IB event handler
706 * @event_handler:Handler to register
707 *
708 * ib_register_event_handler() registers an event handler that will be
709 * called back when asynchronous IB events occur (as defined in
710 * chapter 11 of the InfiniBand Architecture Specification). This
711 * callback may occur in interrupt context.
712 */
713int ib_register_event_handler (struct ib_event_handler *event_handler)
714{
715 unsigned long flags;
716
717 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
718 list_add_tail(&event_handler->list,
719 &event_handler->device->event_handler_list);
720 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
721
722 return 0;
723}
724EXPORT_SYMBOL(ib_register_event_handler);
725
726/**
727 * ib_unregister_event_handler - Unregister an event handler
728 * @event_handler:Handler to unregister
729 *
730 * Unregister an event handler registered with
731 * ib_register_event_handler().
732 */
733int ib_unregister_event_handler(struct ib_event_handler *event_handler)
734{
735 unsigned long flags;
736
737 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
738 list_del(&event_handler->list);
739 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
740
741 return 0;
742}
743EXPORT_SYMBOL(ib_unregister_event_handler);
744
745/**
746 * ib_dispatch_event - Dispatch an asynchronous event
747 * @event:Event to dispatch
748 *
749 * Low-level drivers must call ib_dispatch_event() to dispatch the
750 * event to all registered event handlers when an asynchronous event
751 * occurs.
752 */
753void ib_dispatch_event(struct ib_event *event)
754{
755 unsigned long flags;
756 struct ib_event_handler *handler;
757
758 spin_lock_irqsave(&event->device->event_handler_lock, flags);
759
760 list_for_each_entry(handler, &event->device->event_handler_list, list)
761 handler->handler(handler, event);
762
763 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
764}
765EXPORT_SYMBOL(ib_dispatch_event);
766
767/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * ib_query_port - Query IB port attributes
769 * @device:Device to query
770 * @port_num:Port number to query
771 * @port_attr:Port attributes
772 *
773 * ib_query_port() returns the attributes of a port through the
774 * @port_attr pointer.
775 */
776int ib_query_port(struct ib_device *device,
777 u8 port_num,
778 struct ib_port_attr *port_attr)
779{
Eli Cohenfad61ad2016-03-11 22:58:36 +0200780 union ib_gid gid;
781 int err;
782
Yuval Shaia24dc8312017-01-25 18:41:37 +0200783 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -0700784 return -EINVAL;
785
Eli Cohenfad61ad2016-03-11 22:58:36 +0200786 memset(port_attr, 0, sizeof(*port_attr));
787 err = device->query_port(device, port_num, port_attr);
788 if (err || port_attr->subnet_prefix)
789 return err;
790
Eli Cohend7012462016-06-04 15:15:18 +0300791 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
792 return 0;
793
Eli Cohenfad61ad2016-03-11 22:58:36 +0200794 err = ib_query_gid(device, port_num, 0, &gid, NULL);
795 if (err)
796 return err;
797
798 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
799 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801EXPORT_SYMBOL(ib_query_port);
802
803/**
804 * ib_query_gid - Get GID table entry
805 * @device:Device to query
806 * @port_num:Port number to query
807 * @index:GID table index to query
808 * @gid:Returned GID
Matan Barak55ee3ab2015-10-15 18:38:45 +0300809 * @attr: Returned GID attributes related to this GID index (only in RoCE).
810 * NULL means ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 *
812 * ib_query_gid() fetches the specified GID table entry.
813 */
814int ib_query_gid(struct ib_device *device,
Matan Barak55ee3ab2015-10-15 18:38:45 +0300815 u8 port_num, int index, union ib_gid *gid,
816 struct ib_gid_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Matan Barak03db3a22015-07-30 18:33:26 +0300818 if (rdma_cap_roce_gid_table(device, port_num))
Matan Barak55ee3ab2015-10-15 18:38:45 +0300819 return ib_get_cached_gid(device, port_num, index, gid, attr);
820
821 if (attr)
822 return -EINVAL;
Matan Barak03db3a22015-07-30 18:33:26 +0300823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return device->query_gid(device, port_num, index, gid);
825}
826EXPORT_SYMBOL(ib_query_gid);
827
828/**
Matan Barak03db3a22015-07-30 18:33:26 +0300829 * ib_enum_roce_netdev - enumerate all RoCE ports
830 * @ib_dev : IB device we want to query
831 * @filter: Should we call the callback?
832 * @filter_cookie: Cookie passed to filter
833 * @cb: Callback to call for each found RoCE ports
834 * @cookie: Cookie passed back to the callback
835 *
836 * Enumerates all of the physical RoCE ports of ib_dev
837 * which are related to netdevice and calls callback() on each
838 * device for which filter() function returns non zero.
839 */
840void ib_enum_roce_netdev(struct ib_device *ib_dev,
841 roce_netdev_filter filter,
842 void *filter_cookie,
843 roce_netdev_callback cb,
844 void *cookie)
845{
846 u8 port;
847
848 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
849 port++)
850 if (rdma_protocol_roce(ib_dev, port)) {
851 struct net_device *idev = NULL;
852
853 if (ib_dev->get_netdev)
854 idev = ib_dev->get_netdev(ib_dev, port);
855
856 if (idev &&
857 idev->reg_state >= NETREG_UNREGISTERED) {
858 dev_put(idev);
859 idev = NULL;
860 }
861
862 if (filter(ib_dev, port, idev, filter_cookie))
863 cb(ib_dev, port, idev, cookie);
864
865 if (idev)
866 dev_put(idev);
867 }
868}
869
870/**
871 * ib_enum_all_roce_netdevs - enumerate all RoCE devices
872 * @filter: Should we call the callback?
873 * @filter_cookie: Cookie passed to filter
874 * @cb: Callback to call for each found RoCE ports
875 * @cookie: Cookie passed back to the callback
876 *
877 * Enumerates all RoCE devices' physical ports which are related
878 * to netdevices and calls callback() on each device for which
879 * filter() function returns non zero.
880 */
881void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
882 void *filter_cookie,
883 roce_netdev_callback cb,
884 void *cookie)
885{
886 struct ib_device *dev;
887
888 down_read(&lists_rwsem);
889 list_for_each_entry(dev, &device_list, core_list)
890 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
891 up_read(&lists_rwsem);
892}
893
894/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 * ib_query_pkey - Get P_Key table entry
896 * @device:Device to query
897 * @port_num:Port number to query
898 * @index:P_Key table index to query
899 * @pkey:Returned P_Key
900 *
901 * ib_query_pkey() fetches the specified P_Key table entry.
902 */
903int ib_query_pkey(struct ib_device *device,
904 u8 port_num, u16 index, u16 *pkey)
905{
906 return device->query_pkey(device, port_num, index, pkey);
907}
908EXPORT_SYMBOL(ib_query_pkey);
909
910/**
911 * ib_modify_device - Change IB device attributes
912 * @device:Device to modify
913 * @device_modify_mask:Mask of attributes to change
914 * @device_modify:New attribute values
915 *
916 * ib_modify_device() changes a device's attributes as specified by
917 * the @device_modify_mask and @device_modify structure.
918 */
919int ib_modify_device(struct ib_device *device,
920 int device_modify_mask,
921 struct ib_device_modify *device_modify)
922{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000923 if (!device->modify_device)
924 return -ENOSYS;
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return device->modify_device(device, device_modify_mask,
927 device_modify);
928}
929EXPORT_SYMBOL(ib_modify_device);
930
931/**
932 * ib_modify_port - Modifies the attributes for the specified port.
933 * @device: The device to modify.
934 * @port_num: The number of the port to modify.
935 * @port_modify_mask: Mask used to specify which attributes of the port
936 * to change.
937 * @port_modify: New attribute values for the port.
938 *
939 * ib_modify_port() changes a port's attributes as specified by the
940 * @port_modify_mask and @port_modify structure.
941 */
942int ib_modify_port(struct ib_device *device,
943 u8 port_num, int port_modify_mask,
944 struct ib_port_modify *port_modify)
945{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000946 if (!device->modify_port)
947 return -ENOSYS;
948
Yuval Shaia24dc8312017-01-25 18:41:37 +0200949 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -0700950 return -EINVAL;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return device->modify_port(device, port_num, port_modify_mask,
953 port_modify);
954}
955EXPORT_SYMBOL(ib_modify_port);
956
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300957/**
958 * ib_find_gid - Returns the port number and GID table index where
959 * a specified GID value occurs.
960 * @device: The device to query.
961 * @gid: The GID value to search for.
Matan Barakb39ffa12015-12-23 14:56:47 +0200962 * @gid_type: Type of GID.
Matan Barak55ee3ab2015-10-15 18:38:45 +0300963 * @ndev: The ndev related to the GID to search for.
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300964 * @port_num: The port number of the device where the GID value was found.
965 * @index: The index into the GID table where the GID was found. This
966 * parameter may be NULL.
967 */
968int ib_find_gid(struct ib_device *device, union ib_gid *gid,
Matan Barakb39ffa12015-12-23 14:56:47 +0200969 enum ib_gid_type gid_type, struct net_device *ndev,
970 u8 *port_num, u16 *index)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300971{
972 union ib_gid tmp_gid;
973 int ret, port, i;
974
Ira Weiny0cf18d72015-05-13 20:02:55 -0400975 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Matan Barak03db3a22015-07-30 18:33:26 +0300976 if (rdma_cap_roce_gid_table(device, port)) {
Matan Barakb39ffa12015-12-23 14:56:47 +0200977 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port,
Matan Barakd300ec52015-10-15 18:38:46 +0300978 ndev, index)) {
Matan Barak03db3a22015-07-30 18:33:26 +0300979 *port_num = port;
980 return 0;
Dan Carpenter98d25af2015-08-18 12:22:10 +0300981 }
Matan Barak03db3a22015-07-30 18:33:26 +0300982 }
983
Matan Barakb39ffa12015-12-23 14:56:47 +0200984 if (gid_type != IB_GID_TYPE_IB)
985 continue;
986
Ira Weiny77386132015-05-13 20:02:58 -0400987 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Matan Barak55ee3ab2015-10-15 18:38:45 +0300988 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300989 if (ret)
990 return ret;
991 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
992 *port_num = port;
993 if (index)
994 *index = i;
995 return 0;
996 }
997 }
998 }
999
1000 return -ENOENT;
1001}
1002EXPORT_SYMBOL(ib_find_gid);
1003
1004/**
1005 * ib_find_pkey - Returns the PKey table index where a specified
1006 * PKey value occurs.
1007 * @device: The device to query.
1008 * @port_num: The port number of the device to search for the PKey.
1009 * @pkey: The PKey value to search for.
1010 * @index: The index into the PKey table where the PKey was found.
1011 */
1012int ib_find_pkey(struct ib_device *device,
1013 u8 port_num, u16 pkey, u16 *index)
1014{
1015 int ret, i;
1016 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001017 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001018
Ira Weiny77386132015-05-13 20:02:58 -04001019 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001020 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
1021 if (ret)
1022 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +03001023 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001024 /* if there is full-member pkey take it.*/
1025 if (tmp_pkey & 0x8000) {
1026 *index = i;
1027 return 0;
1028 }
1029 if (partial_ix < 0)
1030 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001031 }
1032 }
1033
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001034 /*no full-member, if exists take the limited*/
1035 if (partial_ix >= 0) {
1036 *index = partial_ix;
1037 return 0;
1038 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001039 return -ENOENT;
1040}
1041EXPORT_SYMBOL(ib_find_pkey);
1042
Yotam Kenneth9268f722015-07-30 17:50:15 +03001043/**
1044 * ib_get_net_dev_by_params() - Return the appropriate net_dev
1045 * for a received CM request
1046 * @dev: An RDMA device on which the request has been received.
1047 * @port: Port number on the RDMA device.
1048 * @pkey: The Pkey the request came on.
1049 * @gid: A GID that the net_dev uses to communicate.
1050 * @addr: Contains the IP address that the request specified as its
1051 * destination.
1052 */
1053struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
1054 u8 port,
1055 u16 pkey,
1056 const union ib_gid *gid,
1057 const struct sockaddr *addr)
1058{
1059 struct net_device *net_dev = NULL;
1060 struct ib_client_data *context;
1061
1062 if (!rdma_protocol_ib(dev, port))
1063 return NULL;
1064
1065 down_read(&lists_rwsem);
1066
1067 list_for_each_entry(context, &dev->client_data_list, list) {
1068 struct ib_client *client = context->client;
1069
1070 if (context->going_down)
1071 continue;
1072
1073 if (client->get_net_dev_by_params) {
1074 net_dev = client->get_net_dev_by_params(dev, port, pkey,
1075 gid, addr,
1076 context->data);
1077 if (net_dev)
1078 break;
1079 }
1080 }
1081
1082 up_read(&lists_rwsem);
1083
1084 return net_dev;
1085}
1086EXPORT_SYMBOL(ib_get_net_dev_by_params);
1087
Mark Bloch735c6312016-05-19 17:12:35 +03001088static struct ibnl_client_cbs ibnl_ls_cb_table[] = {
1089 [RDMA_NL_LS_OP_RESOLVE] = {
1090 .dump = ib_nl_handle_resolve_resp,
1091 .module = THIS_MODULE },
1092 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
1093 .dump = ib_nl_handle_set_timeout,
1094 .module = THIS_MODULE },
Mark Blochae43f822016-05-19 17:12:36 +03001095 [RDMA_NL_LS_OP_IP_RESOLVE] = {
1096 .dump = ib_nl_handle_ip_res_resp,
1097 .module = THIS_MODULE },
Mark Bloch735c6312016-05-19 17:12:35 +03001098};
1099
1100static int ib_add_ibnl_clients(void)
1101{
1102 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table),
1103 ibnl_ls_cb_table);
1104}
1105
1106static void ib_remove_ibnl_clients(void)
1107{
1108 ibnl_remove_client(RDMA_NL_LS);
1109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111static int __init ib_core_init(void)
1112{
1113 int ret;
1114
Tejun Heof0626712010-10-19 15:24:36 +00001115 ib_wq = alloc_workqueue("infiniband", 0, 0);
1116 if (!ib_wq)
1117 return -ENOMEM;
1118
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001119 ib_comp_wq = alloc_workqueue("ib-comp-wq",
Sagi Grimbergb7363e62017-03-08 22:03:17 +02001120 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001121 if (!ib_comp_wq) {
1122 ret = -ENOMEM;
1123 goto err;
1124 }
1125
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001126 ret = class_register(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001127 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301128 pr_warn("Couldn't create InfiniBand device class\n");
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001129 goto err_comp;
Nir Muchtarfd75c782011-05-20 11:46:10 -07001130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Roland Dreierb2cbae22011-05-20 11:46:11 -07001132 ret = ibnl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301134 pr_warn("Couldn't init IB netlink interface\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -07001135 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001138 ret = addr_init();
1139 if (ret) {
1140 pr_warn("Could't init IB address resolution\n");
1141 goto err_ibnl;
1142 }
1143
Mark Bloch4c2cb422016-05-19 17:12:32 +03001144 ret = ib_mad_init();
1145 if (ret) {
1146 pr_warn("Couldn't init IB MAD\n");
1147 goto err_addr;
1148 }
1149
Mark Blochc2e49c92016-05-19 17:12:33 +03001150 ret = ib_sa_init();
1151 if (ret) {
1152 pr_warn("Couldn't init SA\n");
1153 goto err_mad;
1154 }
1155
Dan Carpenterda1f8572016-05-31 19:05:56 +03001156 ret = ib_add_ibnl_clients();
1157 if (ret) {
Mark Bloch735c6312016-05-19 17:12:35 +03001158 pr_warn("Couldn't register ibnl clients\n");
1159 goto err_sa;
1160 }
1161
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03001162 ret = register_lsm_notifier(&ibdev_lsm_nb);
1163 if (ret) {
1164 pr_warn("Couldn't register LSM notifier. ret %d\n", ret);
1165 goto err_ibnl_clients;
1166 }
1167
Matan Barak03db3a22015-07-30 18:33:26 +03001168 ib_cache_setup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001169
Nir Muchtarfd75c782011-05-20 11:46:10 -07001170 return 0;
1171
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03001172err_ibnl_clients:
1173 ib_remove_ibnl_clients();
Mark Bloch735c6312016-05-19 17:12:35 +03001174err_sa:
1175 ib_sa_cleanup();
Mark Blochc2e49c92016-05-19 17:12:33 +03001176err_mad:
1177 ib_mad_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001178err_addr:
1179 addr_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001180err_ibnl:
1181 ibnl_cleanup();
Nir Muchtarfd75c782011-05-20 11:46:10 -07001182err_sysfs:
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001183 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001184err_comp:
1185 destroy_workqueue(ib_comp_wq);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001186err:
1187 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return ret;
1189}
1190
1191static void __exit ib_core_cleanup(void)
1192{
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03001193 unregister_lsm_notifier(&ibdev_lsm_nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 ib_cache_cleanup();
Mark Bloch735c6312016-05-19 17:12:35 +03001195 ib_remove_ibnl_clients();
Mark Blochc2e49c92016-05-19 17:12:33 +03001196 ib_sa_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001197 ib_mad_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001198 addr_cleanup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001199 ibnl_cleanup();
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001200 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001201 destroy_workqueue(ib_comp_wq);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001202 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +00001203 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
1206module_init(ib_core_init);
1207module_exit(ib_core_cleanup);