blob: 5c9934b1e5980a24eec234c066d1c4bc386134f1 [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
Leon Romanovskyecc82c52017-06-18 14:39:59 +0300137struct ib_device *__ib_device_get_by_index(u32 index)
138{
139 struct ib_device *device;
140
141 list_for_each_entry(device, &device_list, core_list)
142 if (device->index == index)
143 return device;
144
145 return NULL;
146}
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static struct ib_device *__ib_device_get_by_name(const char *name)
149{
150 struct ib_device *device;
151
152 list_for_each_entry(device, &device_list, core_list)
153 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
154 return device;
155
156 return NULL;
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static int alloc_name(char *name)
160{
Roland Dreier65d470b2007-10-09 19:59:04 -0700161 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 char buf[IB_DEVICE_NAME_MAX];
163 struct ib_device *device;
164 int i;
165
Roland Dreier65d470b2007-10-09 19:59:04 -0700166 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!inuse)
168 return -ENOMEM;
169
170 list_for_each_entry(device, &device_list, core_list) {
171 if (!sscanf(device->name, name, &i))
172 continue;
173 if (i < 0 || i >= PAGE_SIZE * 8)
174 continue;
175 snprintf(buf, sizeof buf, name, i);
176 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
177 set_bit(i, inuse);
178 }
179
180 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
181 free_page((unsigned long) inuse);
182 snprintf(buf, sizeof buf, name, i);
183
184 if (__ib_device_get_by_name(buf))
185 return -ENFILE;
186
187 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
188 return 0;
189}
190
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600191static void ib_device_release(struct device *device)
192{
193 struct ib_device *dev = container_of(device, struct ib_device, dev);
194
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200195 WARN_ON(dev->reg_state == IB_DEV_REGISTERED);
196 if (dev->reg_state == IB_DEV_UNREGISTERED) {
197 /*
198 * In IB_DEV_UNINITIALIZED state, cache or port table
199 * is not even created. Free cache and port table only when
200 * device reaches UNREGISTERED state.
201 */
202 ib_cache_release_one(dev);
203 kfree(dev->port_immutable);
204 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600205 kfree(dev);
206}
207
208static int ib_device_uevent(struct device *device,
209 struct kobj_uevent_env *env)
210{
211 struct ib_device *dev = container_of(device, struct ib_device, dev);
212
213 if (add_uevent_var(env, "NAME=%s", dev->name))
214 return -ENOMEM;
215
216 /*
217 * It would be nice to pass the node GUID with the event...
218 */
219
220 return 0;
221}
222
223static struct class ib_class = {
224 .name = "infiniband",
225 .dev_release = ib_device_release,
226 .dev_uevent = ib_device_uevent,
227};
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/**
230 * ib_alloc_device - allocate an IB device struct
231 * @size:size of structure to allocate
232 *
233 * Low-level drivers should use ib_alloc_device() to allocate &struct
234 * ib_device. @size is the size of the structure to be allocated,
235 * including any private data used by the low-level driver.
236 * ib_dealloc_device() must be used to free structures allocated with
237 * ib_alloc_device().
238 */
239struct ib_device *ib_alloc_device(size_t size)
240{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600241 struct ib_device *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600243 if (WARN_ON(size < sizeof(struct ib_device)))
244 return NULL;
245
246 device = kzalloc(size, GFP_KERNEL);
247 if (!device)
248 return NULL;
249
250 device->dev.class = &ib_class;
251 device_initialize(&device->dev);
252
253 dev_set_drvdata(&device->dev, device);
254
255 INIT_LIST_HEAD(&device->event_handler_list);
256 spin_lock_init(&device->event_handler_lock);
257 spin_lock_init(&device->client_data_lock);
258 INIT_LIST_HEAD(&device->client_data_list);
259 INIT_LIST_HEAD(&device->port_list);
260
261 return device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263EXPORT_SYMBOL(ib_alloc_device);
264
265/**
266 * ib_dealloc_device - free an IB device struct
267 * @device:structure to free
268 *
269 * Free a structure allocated with ib_alloc_device().
270 */
271void ib_dealloc_device(struct ib_device *device)
272{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600273 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
274 device->reg_state != IB_DEV_UNINITIALIZED);
Leon Romanovsky924b8902018-01-01 13:07:13 +0200275 put_device(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277EXPORT_SYMBOL(ib_dealloc_device);
278
279static int add_client_context(struct ib_device *device, struct ib_client *client)
280{
281 struct ib_client_data *context;
282 unsigned long flags;
283
284 context = kmalloc(sizeof *context, GFP_KERNEL);
Leon Romanovskya0b34552016-11-03 16:44:10 +0200285 if (!context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 context->client = client;
289 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300290 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Haggai Eran7c1eb452015-07-30 17:50:14 +0300292 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 spin_lock_irqsave(&device->client_data_lock, flags);
294 list_add(&context->list, &device->client_data_list);
295 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300296 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 return 0;
299}
300
Ira Weiny337877a2015-06-06 14:38:29 -0400301static int verify_immutable(const struct ib_device *dev, u8 port)
302{
303 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
304 rdma_max_mad_size(dev, port) != 0);
305}
306
Ira Weiny77386132015-05-13 20:02:58 -0400307static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300308{
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600309 int ret;
Ira Weiny77386132015-05-13 20:02:58 -0400310 u8 start_port = rdma_start_port(device);
311 u8 end_port = rdma_end_port(device);
312 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300313
Ira Weiny77386132015-05-13 20:02:58 -0400314 /**
315 * device->port_immutable is indexed directly by the port number to make
316 * access to this data as efficient as possible.
317 *
318 * Therefore port_immutable is declared as a 1 based array with
319 * potential empty slots at the beginning.
320 */
321 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
322 * (end_port + 1),
323 GFP_KERNEL);
324 if (!device->port_immutable)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600325 return -ENOMEM;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300326
Ira Weiny77386132015-05-13 20:02:58 -0400327 for (port = start_port; port <= end_port; ++port) {
328 ret = device->get_port_immutable(device, port,
329 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300330 if (ret)
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600331 return ret;
Ira Weiny337877a2015-06-06 14:38:29 -0400332
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600333 if (verify_immutable(device, port))
334 return -EINVAL;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300335 }
Jason Gunthorpe55aeed02015-08-04 15:23:34 -0600336 return 0;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300337}
338
Leon Romanovsky9abb0d12017-06-27 16:49:53 +0300339void ib_get_device_fw_str(struct ib_device *dev, char *str)
Ira Weiny5fa76c22016-06-15 02:21:56 -0400340{
341 if (dev->get_dev_fw_str)
Leon Romanovsky9abb0d12017-06-27 16:49:53 +0300342 dev->get_dev_fw_str(dev, str);
Ira Weiny5fa76c22016-06-15 02:21:56 -0400343 else
344 str[0] = '\0';
345}
346EXPORT_SYMBOL(ib_get_device_fw_str);
347
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300348static int setup_port_pkey_list(struct ib_device *device)
349{
350 int i;
351
352 /**
353 * device->port_pkey_list is indexed directly by the port number,
354 * Therefore it is declared as a 1 based array with potential empty
355 * slots at the beginning.
356 */
357 device->port_pkey_list = kcalloc(rdma_end_port(device) + 1,
358 sizeof(*device->port_pkey_list),
359 GFP_KERNEL);
360
361 if (!device->port_pkey_list)
362 return -ENOMEM;
363
364 for (i = 0; i < (rdma_end_port(device) + 1); i++) {
365 spin_lock_init(&device->port_pkey_list[i].list_lock);
366 INIT_LIST_HEAD(&device->port_pkey_list[i].pkey_list);
367 }
368
369 return 0;
370}
371
Daniel Jurgens8f408ab2017-05-19 15:48:53 +0300372static void ib_policy_change_task(struct work_struct *work)
373{
374 struct ib_device *dev;
375
376 down_read(&lists_rwsem);
377 list_for_each_entry(dev, &device_list, core_list) {
378 int i;
379
380 for (i = rdma_start_port(dev); i <= rdma_end_port(dev); i++) {
381 u64 sp;
382 int ret = ib_get_cached_subnet_prefix(dev,
383 i,
384 &sp);
385
386 WARN_ONCE(ret,
387 "ib_get_cached_subnet_prefix err: %d, this should never happen here\n",
388 ret);
Daniel Jurgensa750cfd2017-07-05 16:15:21 +0300389 if (!ret)
390 ib_security_cache_change(dev, i, sp);
Daniel Jurgens8f408ab2017-05-19 15:48:53 +0300391 }
392 }
393 up_read(&lists_rwsem);
394}
395
396static int ib_security_change(struct notifier_block *nb, unsigned long event,
397 void *lsm_data)
398{
399 if (event != LSM_POLICY_CHANGE)
400 return NOTIFY_DONE;
401
402 schedule_work(&ib_policy_change_work);
403
404 return NOTIFY_OK;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/**
Leon Romanovskyecc82c52017-06-18 14:39:59 +0300408 * __dev_new_index - allocate an device index
409 *
410 * Returns a suitable unique value for a new device interface
411 * number. It assumes that there are less than 2^32-1 ib devices
412 * will be present in the system.
413 */
414static u32 __dev_new_index(void)
415{
416 /*
417 * The device index to allow stable naming.
418 * Similar to struct net -> ifindex.
419 */
420 static u32 index;
421
422 for (;;) {
423 if (!(++index))
424 index = 1;
425
426 if (!__ib_device_get_by_index(index))
427 return index;
428 }
429}
430
431/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * ib_register_device - Register an IB device with IB core
433 * @device:Device to register
434 *
435 * Low-level drivers use ib_register_device() to register their
436 * devices with the IB core. All registered clients will receive a
437 * callback for each device that is added. @device must be allocated
438 * with ib_alloc_device().
439 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700440int ib_register_device(struct ib_device *device,
441 int (*port_callback)(struct ib_device *,
442 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 int ret;
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400445 struct ib_client *client;
Ira Weiny3e153a92015-12-18 10:59:44 +0200446 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
Bart Van Assche99db9492017-01-20 13:04:36 -0800447 struct device *parent = device->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Bart Van Assche0957c292017-03-07 22:56:53 +0000449 WARN_ON_ONCE(device->dma_device);
450 if (device->dev.dma_ops) {
451 /*
452 * The caller provided custom DMA operations. Copy the
453 * DMA-related fields that are used by e.g. dma_alloc_coherent()
454 * into device->dev.
455 */
456 device->dma_device = &device->dev;
Bart Van Assche02ee9da2018-01-03 13:28:18 -0800457 if (!device->dev.dma_mask) {
458 if (parent)
459 device->dev.dma_mask = parent->dma_mask;
460 else
461 WARN_ON_ONCE(true);
462 }
463 if (!device->dev.coherent_dma_mask) {
464 if (parent)
465 device->dev.coherent_dma_mask =
466 parent->coherent_dma_mask;
467 else
468 WARN_ON_ONCE(true);
469 }
Bart Van Assche0957c292017-03-07 22:56:53 +0000470 } else {
471 /*
472 * The caller did not provide custom DMA operations. Use the
473 * DMA mapping operations of the parent device.
474 */
Bart Van Assche02ee9da2018-01-03 13:28:18 -0800475 WARN_ON_ONCE(!parent);
Bart Van Assche0957c292017-03-07 22:56:53 +0000476 device->dma_device = parent;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Ingo Molnar95ed6442006-01-13 14:51:39 -0800479 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 if (strchr(device->name, '%')) {
482 ret = alloc_name(device->name);
483 if (ret)
484 goto out;
485 }
486
487 if (ib_device_check_mandatory(device)) {
488 ret = -EINVAL;
489 goto out;
490 }
491
Ira Weiny77386132015-05-13 20:02:58 -0400492 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300493 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530494 pr_warn("Couldn't create per port immutable data %s\n",
495 device->name);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300496 goto out;
497 }
498
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300499 ret = setup_port_pkey_list(device);
500 if (ret) {
501 pr_warn("Couldn't create per port_pkey_list\n");
502 goto out;
503 }
504
Matan Barak03db3a22015-07-30 18:33:26 +0300505 ret = ib_cache_setup_one(device);
506 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530507 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200508 goto port_cleanup;
Matan Barak03db3a22015-07-30 18:33:26 +0300509 }
510
Parav Pandit43579b52017-01-10 00:02:14 +0000511 ret = ib_device_register_rdmacg(device);
512 if (ret) {
513 pr_warn("Couldn't register device with rdma cgroup\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200514 goto cache_cleanup;
Parav Pandit43579b52017-01-10 00:02:14 +0000515 }
516
Ira Weiny3e153a92015-12-18 10:59:44 +0200517 memset(&device->attrs, 0, sizeof(device->attrs));
518 ret = device->query_device(device, &device->attrs, &uhw);
519 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530520 pr_warn("Couldn't query the device attributes\n");
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200521 goto cache_cleanup;
Ira Weiny3e153a92015-12-18 10:59:44 +0200522 }
523
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700524 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +0530526 pr_warn("Couldn't register device %s with driver model\n",
527 device->name);
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200528 goto cache_cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 device->reg_state = IB_DEV_REGISTERED;
532
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400533 list_for_each_entry(client, &client_list, list)
Sagi Grimbergb059e212017-07-02 11:20:50 +0300534 if (!add_client_context(device, client) && client->add)
Doug Ledfordb8071ad2015-08-15 10:16:14 -0400535 client->add(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Leon Romanovskyecc82c52017-06-18 14:39:59 +0300537 device->index = __dev_new_index();
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300538 down_write(&lists_rwsem);
539 list_add_tail(&device->core_list, &device_list);
540 up_write(&lists_rwsem);
Parav Pandit4be3a4f2017-03-19 10:55:55 +0200541 mutex_unlock(&device_mutex);
542 return 0;
543
544cache_cleanup:
545 ib_cache_cleanup_one(device);
546 ib_cache_release_one(device);
547port_cleanup:
548 kfree(device->port_immutable);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300549out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800550 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return ret;
552}
553EXPORT_SYMBOL(ib_register_device);
554
555/**
556 * ib_unregister_device - Unregister an IB device
557 * @device:Device to unregister
558 *
559 * Unregister an IB device. All clients will receive a remove callback.
560 */
561void ib_unregister_device(struct ib_device *device)
562{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct ib_client_data *context, *tmp;
564 unsigned long flags;
565
Ingo Molnar95ed6442006-01-13 14:51:39 -0800566 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300568 down_write(&lists_rwsem);
569 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300570 spin_lock_irqsave(&device->client_data_lock, flags);
571 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
572 context->going_down = true;
573 spin_unlock_irqrestore(&device->client_data_lock, flags);
574 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300575
Haggai Eran7c1eb452015-07-30 17:50:14 +0300576 list_for_each_entry_safe(context, tmp, &device->client_data_list,
577 list) {
578 if (context->client->remove)
579 context->client->remove(device, context->data);
580 }
581 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Parav Pandit43579b52017-01-10 00:02:14 +0000583 ib_device_unregister_rdmacg(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800584 ib_device_unregister_sysfs(device);
Shiraz Saleem06f81742017-07-17 14:03:50 -0500585
586 mutex_unlock(&device_mutex);
587
Matan Barak03db3a22015-07-30 18:33:26 +0300588 ib_cache_cleanup_one(device);
Roland Dreier9206dff2009-02-25 13:27:46 -0800589
Daniel Jurgensd291f1a2017-05-19 15:48:52 +0300590 ib_security_destroy_port_pkey_list(device);
591 kfree(device->port_pkey_list);
592
Haggai Eran7c1eb452015-07-30 17:50:14 +0300593 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 spin_lock_irqsave(&device->client_data_lock, flags);
595 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
596 kfree(context);
597 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300598 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 device->reg_state = IB_DEV_UNREGISTERED;
601}
602EXPORT_SYMBOL(ib_unregister_device);
603
604/**
605 * ib_register_client - Register an IB client
606 * @client:Client to register
607 *
608 * Upper level users of the IB drivers can use ib_register_client() to
609 * register callbacks for IB device addition and removal. When an IB
610 * device is added, each registered client's add method will be called
611 * (in the order the clients were registered), and when a device is
612 * removed, each client's remove method will be called (in the reverse
613 * order that clients were registered). In addition, when
614 * ib_register_client() is called, the client will receive an add
615 * callback for all devices already registered.
616 */
617int ib_register_client(struct ib_client *client)
618{
619 struct ib_device *device;
620
Ingo Molnar95ed6442006-01-13 14:51:39 -0800621 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 list_for_each_entry(device, &device_list, core_list)
Sagi Grimbergb059e212017-07-02 11:20:50 +0300624 if (!add_client_context(device, client) && client->add)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 client->add(device);
626
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300627 down_write(&lists_rwsem);
628 list_add_tail(&client->list, &client_list);
629 up_write(&lists_rwsem);
630
Ingo Molnar95ed6442006-01-13 14:51:39 -0800631 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 return 0;
634}
635EXPORT_SYMBOL(ib_register_client);
636
637/**
638 * ib_unregister_client - Unregister an IB client
639 * @client:Client to unregister
640 *
641 * Upper level users use ib_unregister_client() to remove their client
642 * registration. When ib_unregister_client() is called, the client
643 * will receive a remove callback for each IB device still registered.
644 */
645void ib_unregister_client(struct ib_client *client)
646{
647 struct ib_client_data *context, *tmp;
648 struct ib_device *device;
649 unsigned long flags;
650
Ingo Molnar95ed6442006-01-13 14:51:39 -0800651 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300653 down_write(&lists_rwsem);
654 list_del(&client->list);
655 up_write(&lists_rwsem);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300658 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Haggai Eran7c1eb452015-07-30 17:50:14 +0300660 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 spin_lock_irqsave(&device->client_data_lock, flags);
662 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
663 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300664 context->going_down = true;
665 found_context = context;
666 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300669 up_write(&lists_rwsem);
670
671 if (client->remove)
672 client->remove(device, found_context ?
673 found_context->data : NULL);
674
675 if (!found_context) {
676 pr_warn("No client context found for %s/%s\n",
677 device->name, client->name);
678 continue;
679 }
680
681 down_write(&lists_rwsem);
682 spin_lock_irqsave(&device->client_data_lock, flags);
683 list_del(&found_context->list);
684 kfree(found_context);
685 spin_unlock_irqrestore(&device->client_data_lock, flags);
686 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Ingo Molnar95ed6442006-01-13 14:51:39 -0800689 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691EXPORT_SYMBOL(ib_unregister_client);
692
693/**
694 * ib_get_client_data - Get IB client context
695 * @device:Device to get context for
696 * @client:Client to get context for
697 *
698 * ib_get_client_data() returns client context set with
699 * ib_set_client_data().
700 */
701void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
702{
703 struct ib_client_data *context;
704 void *ret = NULL;
705 unsigned long flags;
706
707 spin_lock_irqsave(&device->client_data_lock, flags);
708 list_for_each_entry(context, &device->client_data_list, list)
709 if (context->client == client) {
710 ret = context->data;
711 break;
712 }
713 spin_unlock_irqrestore(&device->client_data_lock, flags);
714
715 return ret;
716}
717EXPORT_SYMBOL(ib_get_client_data);
718
719/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700720 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * @device:Device to set context for
722 * @client:Client to set context for
723 * @data:Context to set
724 *
725 * ib_set_client_data() sets client context that can be retrieved with
726 * ib_get_client_data().
727 */
728void ib_set_client_data(struct ib_device *device, struct ib_client *client,
729 void *data)
730{
731 struct ib_client_data *context;
732 unsigned long flags;
733
734 spin_lock_irqsave(&device->client_data_lock, flags);
735 list_for_each_entry(context, &device->client_data_list, list)
736 if (context->client == client) {
737 context->data = data;
738 goto out;
739 }
740
Parav Panditaba25a3e2016-03-02 00:50:29 +0530741 pr_warn("No client context found for %s/%s\n",
742 device->name, client->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744out:
745 spin_unlock_irqrestore(&device->client_data_lock, flags);
746}
747EXPORT_SYMBOL(ib_set_client_data);
748
749/**
750 * ib_register_event_handler - Register an IB event handler
751 * @event_handler:Handler to register
752 *
753 * ib_register_event_handler() registers an event handler that will be
754 * called back when asynchronous IB events occur (as defined in
755 * chapter 11 of the InfiniBand Architecture Specification). This
756 * callback may occur in interrupt context.
757 */
Leon Romanovskydcc98812017-08-17 15:50:36 +0300758void ib_register_event_handler(struct ib_event_handler *event_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 unsigned long flags;
761
762 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
763 list_add_tail(&event_handler->list,
764 &event_handler->device->event_handler_list);
765 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767EXPORT_SYMBOL(ib_register_event_handler);
768
769/**
770 * ib_unregister_event_handler - Unregister an event handler
771 * @event_handler:Handler to unregister
772 *
773 * Unregister an event handler registered with
774 * ib_register_event_handler().
775 */
Leon Romanovskydcc98812017-08-17 15:50:36 +0300776void ib_unregister_event_handler(struct ib_event_handler *event_handler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 unsigned long flags;
779
780 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
781 list_del(&event_handler->list);
782 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784EXPORT_SYMBOL(ib_unregister_event_handler);
785
786/**
787 * ib_dispatch_event - Dispatch an asynchronous event
788 * @event:Event to dispatch
789 *
790 * Low-level drivers must call ib_dispatch_event() to dispatch the
791 * event to all registered event handlers when an asynchronous event
792 * occurs.
793 */
794void ib_dispatch_event(struct ib_event *event)
795{
796 unsigned long flags;
797 struct ib_event_handler *handler;
798
799 spin_lock_irqsave(&event->device->event_handler_lock, flags);
800
801 list_for_each_entry(handler, &event->device->event_handler_list, list)
802 handler->handler(handler, event);
803
804 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
805}
806EXPORT_SYMBOL(ib_dispatch_event);
807
808/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * ib_query_port - Query IB port attributes
810 * @device:Device to query
811 * @port_num:Port number to query
812 * @port_attr:Port attributes
813 *
814 * ib_query_port() returns the attributes of a port through the
815 * @port_attr pointer.
816 */
817int ib_query_port(struct ib_device *device,
818 u8 port_num,
819 struct ib_port_attr *port_attr)
820{
Eli Cohenfad61ad2016-03-11 22:58:36 +0200821 union ib_gid gid;
822 int err;
823
Yuval Shaia24dc8312017-01-25 18:41:37 +0200824 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -0700825 return -EINVAL;
826
Eli Cohenfad61ad2016-03-11 22:58:36 +0200827 memset(port_attr, 0, sizeof(*port_attr));
828 err = device->query_port(device, port_num, port_attr);
829 if (err || port_attr->subnet_prefix)
830 return err;
831
Eli Cohend7012462016-06-04 15:15:18 +0300832 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
833 return 0;
834
Eli Cohenfad61ad2016-03-11 22:58:36 +0200835 err = ib_query_gid(device, port_num, 0, &gid, NULL);
836 if (err)
837 return err;
838
839 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842EXPORT_SYMBOL(ib_query_port);
843
844/**
845 * ib_query_gid - Get GID table entry
846 * @device:Device to query
847 * @port_num:Port number to query
848 * @index:GID table index to query
849 * @gid:Returned GID
Matan Barak55ee3ab2015-10-15 18:38:45 +0300850 * @attr: Returned GID attributes related to this GID index (only in RoCE).
851 * NULL means ignore.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 *
853 * ib_query_gid() fetches the specified GID table entry.
854 */
855int ib_query_gid(struct ib_device *device,
Matan Barak55ee3ab2015-10-15 18:38:45 +0300856 u8 port_num, int index, union ib_gid *gid,
857 struct ib_gid_attr *attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Matan Barak03db3a22015-07-30 18:33:26 +0300859 if (rdma_cap_roce_gid_table(device, port_num))
Matan Barak55ee3ab2015-10-15 18:38:45 +0300860 return ib_get_cached_gid(device, port_num, index, gid, attr);
861
862 if (attr)
863 return -EINVAL;
Matan Barak03db3a22015-07-30 18:33:26 +0300864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return device->query_gid(device, port_num, index, gid);
866}
867EXPORT_SYMBOL(ib_query_gid);
868
869/**
Matan Barak03db3a22015-07-30 18:33:26 +0300870 * ib_enum_roce_netdev - enumerate all RoCE ports
871 * @ib_dev : IB device we want to query
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 of the physical RoCE ports of ib_dev
878 * which are related to netdevice and calls callback() on each
879 * device for which filter() function returns non zero.
880 */
881void ib_enum_roce_netdev(struct ib_device *ib_dev,
882 roce_netdev_filter filter,
883 void *filter_cookie,
884 roce_netdev_callback cb,
885 void *cookie)
886{
887 u8 port;
888
889 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
890 port++)
891 if (rdma_protocol_roce(ib_dev, port)) {
892 struct net_device *idev = NULL;
893
894 if (ib_dev->get_netdev)
895 idev = ib_dev->get_netdev(ib_dev, port);
896
897 if (idev &&
898 idev->reg_state >= NETREG_UNREGISTERED) {
899 dev_put(idev);
900 idev = NULL;
901 }
902
903 if (filter(ib_dev, port, idev, filter_cookie))
904 cb(ib_dev, port, idev, cookie);
905
906 if (idev)
907 dev_put(idev);
908 }
909}
910
911/**
912 * ib_enum_all_roce_netdevs - enumerate all RoCE devices
913 * @filter: Should we call the callback?
914 * @filter_cookie: Cookie passed to filter
915 * @cb: Callback to call for each found RoCE ports
916 * @cookie: Cookie passed back to the callback
917 *
918 * Enumerates all RoCE devices' physical ports which are related
919 * to netdevices and calls callback() on each device for which
920 * filter() function returns non zero.
921 */
922void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
923 void *filter_cookie,
924 roce_netdev_callback cb,
925 void *cookie)
926{
927 struct ib_device *dev;
928
929 down_read(&lists_rwsem);
930 list_for_each_entry(dev, &device_list, core_list)
931 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
932 up_read(&lists_rwsem);
933}
934
935/**
Leon Romanovsky8030c832017-06-19 14:04:56 +0300936 * ib_enum_all_devs - enumerate all ib_devices
937 * @cb: Callback to call for each found ib_device
938 *
939 * Enumerates all ib_devices and calls callback() on each device.
940 */
941int ib_enum_all_devs(nldev_callback nldev_cb, struct sk_buff *skb,
942 struct netlink_callback *cb)
943{
944 struct ib_device *dev;
945 unsigned int idx = 0;
946 int ret = 0;
947
948 down_read(&lists_rwsem);
949 list_for_each_entry(dev, &device_list, core_list) {
950 ret = nldev_cb(dev, skb, cb, idx);
951 if (ret)
952 break;
953 idx++;
954 }
955
956 up_read(&lists_rwsem);
957 return ret;
958}
959
960/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * ib_query_pkey - Get P_Key table entry
962 * @device:Device to query
963 * @port_num:Port number to query
964 * @index:P_Key table index to query
965 * @pkey:Returned P_Key
966 *
967 * ib_query_pkey() fetches the specified P_Key table entry.
968 */
969int ib_query_pkey(struct ib_device *device,
970 u8 port_num, u16 index, u16 *pkey)
971{
972 return device->query_pkey(device, port_num, index, pkey);
973}
974EXPORT_SYMBOL(ib_query_pkey);
975
976/**
977 * ib_modify_device - Change IB device attributes
978 * @device:Device to modify
979 * @device_modify_mask:Mask of attributes to change
980 * @device_modify:New attribute values
981 *
982 * ib_modify_device() changes a device's attributes as specified by
983 * the @device_modify_mask and @device_modify structure.
984 */
985int ib_modify_device(struct ib_device *device,
986 int device_modify_mask,
987 struct ib_device_modify *device_modify)
988{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000989 if (!device->modify_device)
990 return -ENOSYS;
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return device->modify_device(device, device_modify_mask,
993 device_modify);
994}
995EXPORT_SYMBOL(ib_modify_device);
996
997/**
998 * ib_modify_port - Modifies the attributes for the specified port.
999 * @device: The device to modify.
1000 * @port_num: The number of the port to modify.
1001 * @port_modify_mask: Mask used to specify which attributes of the port
1002 * to change.
1003 * @port_modify: New attribute values for the port.
1004 *
1005 * ib_modify_port() changes a port's attributes as specified by the
1006 * @port_modify_mask and @port_modify structure.
1007 */
1008int ib_modify_port(struct ib_device *device,
1009 u8 port_num, int port_modify_mask,
1010 struct ib_port_modify *port_modify)
1011{
Selvin Xavier61e09622017-08-23 01:08:07 -07001012 int rc;
Bart Van Assche10e1b542011-06-18 16:35:42 +00001013
Yuval Shaia24dc8312017-01-25 18:41:37 +02001014 if (!rdma_is_port_valid(device, port_num))
Roland Dreier116c0072005-10-03 09:32:33 -07001015 return -EINVAL;
1016
Selvin Xavier61e09622017-08-23 01:08:07 -07001017 if (device->modify_port)
1018 rc = device->modify_port(device, port_num, port_modify_mask,
1019 port_modify);
1020 else
1021 rc = rdma_protocol_roce(device, port_num) ? 0 : -ENOSYS;
1022 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024EXPORT_SYMBOL(ib_modify_port);
1025
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001026/**
1027 * ib_find_gid - Returns the port number and GID table index where
Parav Panditdbb12562017-11-14 14:52:12 +02001028 * a specified GID value occurs. Its searches only for IB link layer.
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001029 * @device: The device to query.
1030 * @gid: The GID value to search for.
Matan Barak55ee3ab2015-10-15 18:38:45 +03001031 * @ndev: The ndev related to the GID to search for.
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001032 * @port_num: The port number of the device where the GID value was found.
1033 * @index: The index into the GID table where the GID was found. This
1034 * parameter may be NULL.
1035 */
1036int ib_find_gid(struct ib_device *device, union ib_gid *gid,
Parav Panditdbb12562017-11-14 14:52:12 +02001037 struct net_device *ndev, u8 *port_num, u16 *index)
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001038{
1039 union ib_gid tmp_gid;
1040 int ret, port, i;
1041
Ira Weiny0cf18d72015-05-13 20:02:55 -04001042 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Parav Panditdbb12562017-11-14 14:52:12 +02001043 if (rdma_cap_roce_gid_table(device, port))
Matan Barakb39ffa12015-12-23 14:56:47 +02001044 continue;
1045
Ira Weiny77386132015-05-13 20:02:58 -04001046 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Matan Barak55ee3ab2015-10-15 18:38:45 +03001047 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001048 if (ret)
1049 return ret;
1050 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
1051 *port_num = port;
1052 if (index)
1053 *index = i;
1054 return 0;
1055 }
1056 }
1057 }
1058
1059 return -ENOENT;
1060}
1061EXPORT_SYMBOL(ib_find_gid);
1062
1063/**
1064 * ib_find_pkey - Returns the PKey table index where a specified
1065 * PKey value occurs.
1066 * @device: The device to query.
1067 * @port_num: The port number of the device to search for the PKey.
1068 * @pkey: The PKey value to search for.
1069 * @index: The index into the PKey table where the PKey was found.
1070 */
1071int ib_find_pkey(struct ib_device *device,
1072 u8 port_num, u16 pkey, u16 *index)
1073{
1074 int ret, i;
1075 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001076 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001077
Ira Weiny77386132015-05-13 20:02:58 -04001078 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001079 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
1080 if (ret)
1081 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +03001082 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001083 /* if there is full-member pkey take it.*/
1084 if (tmp_pkey & 0x8000) {
1085 *index = i;
1086 return 0;
1087 }
1088 if (partial_ix < 0)
1089 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001090 }
1091 }
1092
Jack Morgensteinff7166c2012-08-03 08:40:38 +00001093 /*no full-member, if exists take the limited*/
1094 if (partial_ix >= 0) {
1095 *index = partial_ix;
1096 return 0;
1097 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +03001098 return -ENOENT;
1099}
1100EXPORT_SYMBOL(ib_find_pkey);
1101
Yotam Kenneth9268f722015-07-30 17:50:15 +03001102/**
1103 * ib_get_net_dev_by_params() - Return the appropriate net_dev
1104 * for a received CM request
1105 * @dev: An RDMA device on which the request has been received.
1106 * @port: Port number on the RDMA device.
1107 * @pkey: The Pkey the request came on.
1108 * @gid: A GID that the net_dev uses to communicate.
1109 * @addr: Contains the IP address that the request specified as its
1110 * destination.
1111 */
1112struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
1113 u8 port,
1114 u16 pkey,
1115 const union ib_gid *gid,
1116 const struct sockaddr *addr)
1117{
1118 struct net_device *net_dev = NULL;
1119 struct ib_client_data *context;
1120
1121 if (!rdma_protocol_ib(dev, port))
1122 return NULL;
1123
1124 down_read(&lists_rwsem);
1125
1126 list_for_each_entry(context, &dev->client_data_list, list) {
1127 struct ib_client *client = context->client;
1128
1129 if (context->going_down)
1130 continue;
1131
1132 if (client->get_net_dev_by_params) {
1133 net_dev = client->get_net_dev_by_params(dev, port, pkey,
1134 gid, addr,
1135 context->data);
1136 if (net_dev)
1137 break;
1138 }
1139 }
1140
1141 up_read(&lists_rwsem);
1142
1143 return net_dev;
1144}
1145EXPORT_SYMBOL(ib_get_net_dev_by_params);
1146
Leon Romanovskyd0e312f2017-12-05 22:30:04 +02001147static const struct rdma_nl_cbs ibnl_ls_cb_table[RDMA_NL_LS_NUM_OPS] = {
Mark Bloch735c6312016-05-19 17:12:35 +03001148 [RDMA_NL_LS_OP_RESOLVE] = {
Leon Romanovsky647c75a2017-06-15 14:20:39 +03001149 .doit = ib_nl_handle_resolve_resp,
Leon Romanovskye3a2b932017-06-12 16:00:19 +03001150 .flags = RDMA_NL_ADMIN_PERM,
1151 },
Mark Bloch735c6312016-05-19 17:12:35 +03001152 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
Leon Romanovsky647c75a2017-06-15 14:20:39 +03001153 .doit = ib_nl_handle_set_timeout,
Leon Romanovskye3a2b932017-06-12 16:00:19 +03001154 .flags = RDMA_NL_ADMIN_PERM,
1155 },
Mark Blochae43f822016-05-19 17:12:36 +03001156 [RDMA_NL_LS_OP_IP_RESOLVE] = {
Leon Romanovsky647c75a2017-06-15 14:20:39 +03001157 .doit = ib_nl_handle_ip_res_resp,
Leon Romanovskye3a2b932017-06-12 16:00:19 +03001158 .flags = RDMA_NL_ADMIN_PERM,
1159 },
Mark Bloch735c6312016-05-19 17:12:35 +03001160};
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162static int __init ib_core_init(void)
1163{
1164 int ret;
1165
Tejun Heof0626712010-10-19 15:24:36 +00001166 ib_wq = alloc_workqueue("infiniband", 0, 0);
1167 if (!ib_wq)
1168 return -ENOMEM;
1169
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001170 ib_comp_wq = alloc_workqueue("ib-comp-wq",
Sagi Grimbergb7363e62017-03-08 22:03:17 +02001171 WQ_HIGHPRI | WQ_MEM_RECLAIM | WQ_SYSFS, 0);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001172 if (!ib_comp_wq) {
1173 ret = -ENOMEM;
1174 goto err;
1175 }
1176
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001177 ret = class_register(&ib_class);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001178 if (ret) {
Parav Panditaba25a3e2016-03-02 00:50:29 +05301179 pr_warn("Couldn't create InfiniBand device class\n");
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001180 goto err_comp;
Nir Muchtarfd75c782011-05-20 11:46:10 -07001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Leon Romanovskyc9901722017-06-05 10:20:11 +03001183 ret = rdma_nl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (ret) {
Leon Romanovskyc9901722017-06-05 10:20:11 +03001185 pr_warn("Couldn't init IB netlink interface: err %d\n", ret);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001186 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001189 ret = addr_init();
1190 if (ret) {
1191 pr_warn("Could't init IB address resolution\n");
1192 goto err_ibnl;
1193 }
1194
Mark Bloch4c2cb422016-05-19 17:12:32 +03001195 ret = ib_mad_init();
1196 if (ret) {
1197 pr_warn("Couldn't init IB MAD\n");
1198 goto err_addr;
1199 }
1200
Mark Blochc2e49c92016-05-19 17:12:33 +03001201 ret = ib_sa_init();
1202 if (ret) {
1203 pr_warn("Couldn't init SA\n");
1204 goto err_mad;
1205 }
1206
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03001207 ret = register_lsm_notifier(&ibdev_lsm_nb);
1208 if (ret) {
1209 pr_warn("Couldn't register LSM notifier. ret %d\n", ret);
Leon Romanovskyc9901722017-06-05 10:20:11 +03001210 goto err_sa;
Daniel Jurgens8f408ab2017-05-19 15:48:53 +03001211 }
1212
Leon Romanovsky6c80b412017-06-20 09:14:15 +03001213 nldev_init();
Leon Romanovskyc9901722017-06-05 10:20:11 +03001214 rdma_nl_register(RDMA_NL_LS, ibnl_ls_cb_table);
Matan Barak03db3a22015-07-30 18:33:26 +03001215 ib_cache_setup();
Roland Dreierb2cbae22011-05-20 11:46:11 -07001216
Nir Muchtarfd75c782011-05-20 11:46:10 -07001217 return 0;
1218
Mark Bloch735c6312016-05-19 17:12:35 +03001219err_sa:
1220 ib_sa_cleanup();
Mark Blochc2e49c92016-05-19 17:12:33 +03001221err_mad:
1222 ib_mad_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001223err_addr:
1224 addr_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001225err_ibnl:
Leon Romanovskyc9901722017-06-05 10:20:11 +03001226 rdma_nl_exit();
Nir Muchtarfd75c782011-05-20 11:46:10 -07001227err_sysfs:
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001228 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001229err_comp:
1230 destroy_workqueue(ib_comp_wq);
Nir Muchtarfd75c782011-05-20 11:46:10 -07001231err:
1232 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return ret;
1234}
1235
1236static void __exit ib_core_cleanup(void)
1237{
1238 ib_cache_cleanup();
Leon Romanovsky6c80b412017-06-20 09:14:15 +03001239 nldev_exit();
Leon Romanovskyc9901722017-06-05 10:20:11 +03001240 rdma_nl_unregister(RDMA_NL_LS);
1241 unregister_lsm_notifier(&ibdev_lsm_nb);
Mark Blochc2e49c92016-05-19 17:12:33 +03001242 ib_sa_cleanup();
Mark Bloch4c2cb422016-05-19 17:12:32 +03001243 ib_mad_cleanup();
Leon Romanovskye3f20f02016-05-19 17:12:31 +03001244 addr_cleanup();
Leon Romanovskyc9901722017-06-05 10:20:11 +03001245 rdma_nl_exit();
Jason Gunthorpe55aeed02015-08-04 15:23:34 -06001246 class_unregister(&ib_class);
Christoph Hellwig14d3a3b2015-12-11 11:53:03 -08001247 destroy_workqueue(ib_comp_wq);
Roland Dreierf7c6a7b2007-03-04 16:15:11 -08001248 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +00001249 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251
Jason Gunthorpee3bf14b2017-08-14 14:57:39 -06001252MODULE_ALIAS_RDMA_NETLINK(RDMA_NL_LS, 4);
1253
Dmitry Monakhova9cd1a62017-11-27 13:39:05 +00001254subsys_initcall(ib_core_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255module_exit(ib_core_cleanup);