1 /* 2 * Copyright (c) 2004 Topspin Communications. All rights reserved. 3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. 4 * 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. 32 */ 33 34 #include <linux/module.h> 35 #include <linux/string.h> 36 #include <linux/errno.h> 37 #include <linux/kernel.h> 38 #include <linux/slab.h> 39 #include <linux/init.h> 40 #include <linux/mutex.h> 41 #include <linux/netdevice.h> 42 #include <rdma/rdma_netlink.h> 43 #include <rdma/ib_addr.h> 44 #include <rdma/ib_cache.h> 45 46 #include "core_priv.h" 47 48 MODULE_AUTHOR("Roland Dreier"); 49 MODULE_DESCRIPTION("core kernel InfiniBand API"); 50 MODULE_LICENSE("Dual BSD/GPL"); 51 52 struct ib_client_data { 53 struct list_head list; 54 struct ib_client *client; 55 void * data; 56 /* The device or client is going down. Do not call client or device 57 * callbacks other than remove(). */ 58 bool going_down; 59 }; 60 61 struct workqueue_struct *ib_comp_wq; 62 struct workqueue_struct *ib_wq; 63 EXPORT_SYMBOL_GPL(ib_wq); 64 65 /* The device_list and client_list contain devices and clients after their 66 * registration has completed, and the devices and clients are removed 67 * during unregistration. */ 68 static LIST_HEAD(device_list); 69 static LIST_HEAD(client_list); 70 71 /* 72 * device_mutex and lists_rwsem protect access to both device_list and 73 * client_list. device_mutex protects writer access by device and client 74 * registration / de-registration. lists_rwsem protects reader access to 75 * these lists. Iterators of these lists must lock it for read, while updates 76 * to the lists must be done with a write lock. A special case is when the 77 * device_mutex is locked. In this case locking the lists for read access is 78 * not necessary as the device_mutex implies it. 79 * 80 * lists_rwsem also protects access to the client data list. 81 */ 82 static DEFINE_MUTEX(device_mutex); 83 static DECLARE_RWSEM(lists_rwsem); 84 85 86 static int ib_device_check_mandatory(struct ib_device *device) 87 { 88 #define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x } 89 static const struct { 90 size_t offset; 91 char *name; 92 } mandatory_table[] = { 93 IB_MANDATORY_FUNC(query_device), 94 IB_MANDATORY_FUNC(query_port), 95 IB_MANDATORY_FUNC(query_pkey), 96 IB_MANDATORY_FUNC(query_gid), 97 IB_MANDATORY_FUNC(alloc_pd), 98 IB_MANDATORY_FUNC(dealloc_pd), 99 IB_MANDATORY_FUNC(create_ah), 100 IB_MANDATORY_FUNC(destroy_ah), 101 IB_MANDATORY_FUNC(create_qp), 102 IB_MANDATORY_FUNC(modify_qp), 103 IB_MANDATORY_FUNC(destroy_qp), 104 IB_MANDATORY_FUNC(post_send), 105 IB_MANDATORY_FUNC(post_recv), 106 IB_MANDATORY_FUNC(create_cq), 107 IB_MANDATORY_FUNC(destroy_cq), 108 IB_MANDATORY_FUNC(poll_cq), 109 IB_MANDATORY_FUNC(req_notify_cq), 110 IB_MANDATORY_FUNC(get_dma_mr), 111 IB_MANDATORY_FUNC(dereg_mr), 112 IB_MANDATORY_FUNC(get_port_immutable) 113 }; 114 int i; 115 116 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) { 117 if (!*(void **) ((void *) device + mandatory_table[i].offset)) { 118 pr_warn("Device %s is missing mandatory function %s\n", 119 device->name, mandatory_table[i].name); 120 return -EINVAL; 121 } 122 } 123 124 return 0; 125 } 126 127 static struct ib_device *__ib_device_get_by_name(const char *name) 128 { 129 struct ib_device *device; 130 131 list_for_each_entry(device, &device_list, core_list) 132 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX)) 133 return device; 134 135 return NULL; 136 } 137 138 139 static int alloc_name(char *name) 140 { 141 unsigned long *inuse; 142 char buf[IB_DEVICE_NAME_MAX]; 143 struct ib_device *device; 144 int i; 145 146 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL); 147 if (!inuse) 148 return -ENOMEM; 149 150 list_for_each_entry(device, &device_list, core_list) { 151 if (!sscanf(device->name, name, &i)) 152 continue; 153 if (i < 0 || i >= PAGE_SIZE * 8) 154 continue; 155 snprintf(buf, sizeof buf, name, i); 156 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX)) 157 set_bit(i, inuse); 158 } 159 160 i = find_first_zero_bit(inuse, PAGE_SIZE * 8); 161 free_page((unsigned long) inuse); 162 snprintf(buf, sizeof buf, name, i); 163 164 if (__ib_device_get_by_name(buf)) 165 return -ENFILE; 166 167 strlcpy(name, buf, IB_DEVICE_NAME_MAX); 168 return 0; 169 } 170 171 static void ib_device_release(struct device *device) 172 { 173 struct ib_device *dev = container_of(device, struct ib_device, dev); 174 175 ib_cache_release_one(dev); 176 kfree(dev->port_immutable); 177 kfree(dev); 178 } 179 180 static int ib_device_uevent(struct device *device, 181 struct kobj_uevent_env *env) 182 { 183 struct ib_device *dev = container_of(device, struct ib_device, dev); 184 185 if (add_uevent_var(env, "NAME=%s", dev->name)) 186 return -ENOMEM; 187 188 /* 189 * It would be nice to pass the node GUID with the event... 190 */ 191 192 return 0; 193 } 194 195 static struct class ib_class = { 196 .name = "infiniband", 197 .dev_release = ib_device_release, 198 .dev_uevent = ib_device_uevent, 199 }; 200 201 /** 202 * ib_alloc_device - allocate an IB device struct 203 * @size:size of structure to allocate 204 * 205 * Low-level drivers should use ib_alloc_device() to allocate &struct 206 * ib_device. @size is the size of the structure to be allocated, 207 * including any private data used by the low-level driver. 208 * ib_dealloc_device() must be used to free structures allocated with 209 * ib_alloc_device(). 210 */ 211 struct ib_device *ib_alloc_device(size_t size) 212 { 213 struct ib_device *device; 214 215 if (WARN_ON(size < sizeof(struct ib_device))) 216 return NULL; 217 218 device = kzalloc(size, GFP_KERNEL); 219 if (!device) 220 return NULL; 221 222 device->dev.class = &ib_class; 223 device_initialize(&device->dev); 224 225 dev_set_drvdata(&device->dev, device); 226 227 INIT_LIST_HEAD(&device->event_handler_list); 228 spin_lock_init(&device->event_handler_lock); 229 spin_lock_init(&device->client_data_lock); 230 INIT_LIST_HEAD(&device->client_data_list); 231 INIT_LIST_HEAD(&device->port_list); 232 233 return device; 234 } 235 EXPORT_SYMBOL(ib_alloc_device); 236 237 /** 238 * ib_dealloc_device - free an IB device struct 239 * @device:structure to free 240 * 241 * Free a structure allocated with ib_alloc_device(). 242 */ 243 void ib_dealloc_device(struct ib_device *device) 244 { 245 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED && 246 device->reg_state != IB_DEV_UNINITIALIZED); 247 kobject_put(&device->dev.kobj); 248 } 249 EXPORT_SYMBOL(ib_dealloc_device); 250 251 static int add_client_context(struct ib_device *device, struct ib_client *client) 252 { 253 struct ib_client_data *context; 254 unsigned long flags; 255 256 context = kmalloc(sizeof *context, GFP_KERNEL); 257 if (!context) 258 return -ENOMEM; 259 260 context->client = client; 261 context->data = NULL; 262 context->going_down = false; 263 264 down_write(&lists_rwsem); 265 spin_lock_irqsave(&device->client_data_lock, flags); 266 list_add(&context->list, &device->client_data_list); 267 spin_unlock_irqrestore(&device->client_data_lock, flags); 268 up_write(&lists_rwsem); 269 270 return 0; 271 } 272 273 static int verify_immutable(const struct ib_device *dev, u8 port) 274 { 275 return WARN_ON(!rdma_cap_ib_mad(dev, port) && 276 rdma_max_mad_size(dev, port) != 0); 277 } 278 279 static int read_port_immutable(struct ib_device *device) 280 { 281 int ret; 282 u8 start_port = rdma_start_port(device); 283 u8 end_port = rdma_end_port(device); 284 u8 port; 285 286 /** 287 * device->port_immutable is indexed directly by the port number to make 288 * access to this data as efficient as possible. 289 * 290 * Therefore port_immutable is declared as a 1 based array with 291 * potential empty slots at the beginning. 292 */ 293 device->port_immutable = kzalloc(sizeof(*device->port_immutable) 294 * (end_port + 1), 295 GFP_KERNEL); 296 if (!device->port_immutable) 297 return -ENOMEM; 298 299 for (port = start_port; port <= end_port; ++port) { 300 ret = device->get_port_immutable(device, port, 301 &device->port_immutable[port]); 302 if (ret) 303 return ret; 304 305 if (verify_immutable(device, port)) 306 return -EINVAL; 307 } 308 return 0; 309 } 310 311 void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len) 312 { 313 if (dev->get_dev_fw_str) 314 dev->get_dev_fw_str(dev, str, str_len); 315 else 316 str[0] = '\0'; 317 } 318 EXPORT_SYMBOL(ib_get_device_fw_str); 319 320 /** 321 * ib_register_device - Register an IB device with IB core 322 * @device:Device to register 323 * 324 * Low-level drivers use ib_register_device() to register their 325 * devices with the IB core. All registered clients will receive a 326 * callback for each device that is added. @device must be allocated 327 * with ib_alloc_device(). 328 */ 329 int ib_register_device(struct ib_device *device, 330 int (*port_callback)(struct ib_device *, 331 u8, struct kobject *)) 332 { 333 int ret; 334 struct ib_client *client; 335 struct ib_udata uhw = {.outlen = 0, .inlen = 0}; 336 struct device *parent = device->dev.parent; 337 338 WARN_ON_ONCE(!parent); 339 if (!device->dev.dma_ops) 340 device->dev.dma_ops = parent->dma_ops; 341 if (!device->dev.dma_mask) 342 device->dev.dma_mask = parent->dma_mask; 343 if (!device->dev.coherent_dma_mask) 344 device->dev.coherent_dma_mask = parent->coherent_dma_mask; 345 346 mutex_lock(&device_mutex); 347 348 if (strchr(device->name, '%')) { 349 ret = alloc_name(device->name); 350 if (ret) 351 goto out; 352 } 353 354 if (ib_device_check_mandatory(device)) { 355 ret = -EINVAL; 356 goto out; 357 } 358 359 ret = read_port_immutable(device); 360 if (ret) { 361 pr_warn("Couldn't create per port immutable data %s\n", 362 device->name); 363 goto out; 364 } 365 366 ret = ib_cache_setup_one(device); 367 if (ret) { 368 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n"); 369 goto out; 370 } 371 372 ret = ib_device_register_rdmacg(device); 373 if (ret) { 374 pr_warn("Couldn't register device with rdma cgroup\n"); 375 ib_cache_cleanup_one(device); 376 goto out; 377 } 378 379 memset(&device->attrs, 0, sizeof(device->attrs)); 380 ret = device->query_device(device, &device->attrs, &uhw); 381 if (ret) { 382 pr_warn("Couldn't query the device attributes\n"); 383 ib_device_unregister_rdmacg(device); 384 ib_cache_cleanup_one(device); 385 goto out; 386 } 387 388 ret = ib_device_register_sysfs(device, port_callback); 389 if (ret) { 390 pr_warn("Couldn't register device %s with driver model\n", 391 device->name); 392 ib_device_unregister_rdmacg(device); 393 ib_cache_cleanup_one(device); 394 goto out; 395 } 396 397 device->reg_state = IB_DEV_REGISTERED; 398 399 list_for_each_entry(client, &client_list, list) 400 if (client->add && !add_client_context(device, client)) 401 client->add(device); 402 403 down_write(&lists_rwsem); 404 list_add_tail(&device->core_list, &device_list); 405 up_write(&lists_rwsem); 406 out: 407 mutex_unlock(&device_mutex); 408 return ret; 409 } 410 EXPORT_SYMBOL(ib_register_device); 411 412 /** 413 * ib_unregister_device - Unregister an IB device 414 * @device:Device to unregister 415 * 416 * Unregister an IB device. All clients will receive a remove callback. 417 */ 418 void ib_unregister_device(struct ib_device *device) 419 { 420 struct ib_client_data *context, *tmp; 421 unsigned long flags; 422 423 mutex_lock(&device_mutex); 424 425 down_write(&lists_rwsem); 426 list_del(&device->core_list); 427 spin_lock_irqsave(&device->client_data_lock, flags); 428 list_for_each_entry_safe(context, tmp, &device->client_data_list, list) 429 context->going_down = true; 430 spin_unlock_irqrestore(&device->client_data_lock, flags); 431 downgrade_write(&lists_rwsem); 432 433 list_for_each_entry_safe(context, tmp, &device->client_data_list, 434 list) { 435 if (context->client->remove) 436 context->client->remove(device, context->data); 437 } 438 up_read(&lists_rwsem); 439 440 mutex_unlock(&device_mutex); 441 442 ib_device_unregister_rdmacg(device); 443 ib_device_unregister_sysfs(device); 444 ib_cache_cleanup_one(device); 445 446 down_write(&lists_rwsem); 447 spin_lock_irqsave(&device->client_data_lock, flags); 448 list_for_each_entry_safe(context, tmp, &device->client_data_list, list) 449 kfree(context); 450 spin_unlock_irqrestore(&device->client_data_lock, flags); 451 up_write(&lists_rwsem); 452 453 device->reg_state = IB_DEV_UNREGISTERED; 454 } 455 EXPORT_SYMBOL(ib_unregister_device); 456 457 /** 458 * ib_register_client - Register an IB client 459 * @client:Client to register 460 * 461 * Upper level users of the IB drivers can use ib_register_client() to 462 * register callbacks for IB device addition and removal. When an IB 463 * device is added, each registered client's add method will be called 464 * (in the order the clients were registered), and when a device is 465 * removed, each client's remove method will be called (in the reverse 466 * order that clients were registered). In addition, when 467 * ib_register_client() is called, the client will receive an add 468 * callback for all devices already registered. 469 */ 470 int ib_register_client(struct ib_client *client) 471 { 472 struct ib_device *device; 473 474 mutex_lock(&device_mutex); 475 476 list_for_each_entry(device, &device_list, core_list) 477 if (client->add && !add_client_context(device, client)) 478 client->add(device); 479 480 down_write(&lists_rwsem); 481 list_add_tail(&client->list, &client_list); 482 up_write(&lists_rwsem); 483 484 mutex_unlock(&device_mutex); 485 486 return 0; 487 } 488 EXPORT_SYMBOL(ib_register_client); 489 490 /** 491 * ib_unregister_client - Unregister an IB client 492 * @client:Client to unregister 493 * 494 * Upper level users use ib_unregister_client() to remove their client 495 * registration. When ib_unregister_client() is called, the client 496 * will receive a remove callback for each IB device still registered. 497 */ 498 void ib_unregister_client(struct ib_client *client) 499 { 500 struct ib_client_data *context, *tmp; 501 struct ib_device *device; 502 unsigned long flags; 503 504 mutex_lock(&device_mutex); 505 506 down_write(&lists_rwsem); 507 list_del(&client->list); 508 up_write(&lists_rwsem); 509 510 list_for_each_entry(device, &device_list, core_list) { 511 struct ib_client_data *found_context = NULL; 512 513 down_write(&lists_rwsem); 514 spin_lock_irqsave(&device->client_data_lock, flags); 515 list_for_each_entry_safe(context, tmp, &device->client_data_list, list) 516 if (context->client == client) { 517 context->going_down = true; 518 found_context = context; 519 break; 520 } 521 spin_unlock_irqrestore(&device->client_data_lock, flags); 522 up_write(&lists_rwsem); 523 524 if (client->remove) 525 client->remove(device, found_context ? 526 found_context->data : NULL); 527 528 if (!found_context) { 529 pr_warn("No client context found for %s/%s\n", 530 device->name, client->name); 531 continue; 532 } 533 534 down_write(&lists_rwsem); 535 spin_lock_irqsave(&device->client_data_lock, flags); 536 list_del(&found_context->list); 537 kfree(found_context); 538 spin_unlock_irqrestore(&device->client_data_lock, flags); 539 up_write(&lists_rwsem); 540 } 541 542 mutex_unlock(&device_mutex); 543 } 544 EXPORT_SYMBOL(ib_unregister_client); 545 546 /** 547 * ib_get_client_data - Get IB client context 548 * @device:Device to get context for 549 * @client:Client to get context for 550 * 551 * ib_get_client_data() returns client context set with 552 * ib_set_client_data(). 553 */ 554 void *ib_get_client_data(struct ib_device *device, struct ib_client *client) 555 { 556 struct ib_client_data *context; 557 void *ret = NULL; 558 unsigned long flags; 559 560 spin_lock_irqsave(&device->client_data_lock, flags); 561 list_for_each_entry(context, &device->client_data_list, list) 562 if (context->client == client) { 563 ret = context->data; 564 break; 565 } 566 spin_unlock_irqrestore(&device->client_data_lock, flags); 567 568 return ret; 569 } 570 EXPORT_SYMBOL(ib_get_client_data); 571 572 /** 573 * ib_set_client_data - Set IB client context 574 * @device:Device to set context for 575 * @client:Client to set context for 576 * @data:Context to set 577 * 578 * ib_set_client_data() sets client context that can be retrieved with 579 * ib_get_client_data(). 580 */ 581 void ib_set_client_data(struct ib_device *device, struct ib_client *client, 582 void *data) 583 { 584 struct ib_client_data *context; 585 unsigned long flags; 586 587 spin_lock_irqsave(&device->client_data_lock, flags); 588 list_for_each_entry(context, &device->client_data_list, list) 589 if (context->client == client) { 590 context->data = data; 591 goto out; 592 } 593 594 pr_warn("No client context found for %s/%s\n", 595 device->name, client->name); 596 597 out: 598 spin_unlock_irqrestore(&device->client_data_lock, flags); 599 } 600 EXPORT_SYMBOL(ib_set_client_data); 601 602 /** 603 * ib_register_event_handler - Register an IB event handler 604 * @event_handler:Handler to register 605 * 606 * ib_register_event_handler() registers an event handler that will be 607 * called back when asynchronous IB events occur (as defined in 608 * chapter 11 of the InfiniBand Architecture Specification). This 609 * callback may occur in interrupt context. 610 */ 611 int ib_register_event_handler (struct ib_event_handler *event_handler) 612 { 613 unsigned long flags; 614 615 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); 616 list_add_tail(&event_handler->list, 617 &event_handler->device->event_handler_list); 618 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); 619 620 return 0; 621 } 622 EXPORT_SYMBOL(ib_register_event_handler); 623 624 /** 625 * ib_unregister_event_handler - Unregister an event handler 626 * @event_handler:Handler to unregister 627 * 628 * Unregister an event handler registered with 629 * ib_register_event_handler(). 630 */ 631 int ib_unregister_event_handler(struct ib_event_handler *event_handler) 632 { 633 unsigned long flags; 634 635 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); 636 list_del(&event_handler->list); 637 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); 638 639 return 0; 640 } 641 EXPORT_SYMBOL(ib_unregister_event_handler); 642 643 /** 644 * ib_dispatch_event - Dispatch an asynchronous event 645 * @event:Event to dispatch 646 * 647 * Low-level drivers must call ib_dispatch_event() to dispatch the 648 * event to all registered event handlers when an asynchronous event 649 * occurs. 650 */ 651 void ib_dispatch_event(struct ib_event *event) 652 { 653 unsigned long flags; 654 struct ib_event_handler *handler; 655 656 spin_lock_irqsave(&event->device->event_handler_lock, flags); 657 658 list_for_each_entry(handler, &event->device->event_handler_list, list) 659 handler->handler(handler, event); 660 661 spin_unlock_irqrestore(&event->device->event_handler_lock, flags); 662 } 663 EXPORT_SYMBOL(ib_dispatch_event); 664 665 /** 666 * ib_query_port - Query IB port attributes 667 * @device:Device to query 668 * @port_num:Port number to query 669 * @port_attr:Port attributes 670 * 671 * ib_query_port() returns the attributes of a port through the 672 * @port_attr pointer. 673 */ 674 int ib_query_port(struct ib_device *device, 675 u8 port_num, 676 struct ib_port_attr *port_attr) 677 { 678 union ib_gid gid; 679 int err; 680 681 if (!rdma_is_port_valid(device, port_num)) 682 return -EINVAL; 683 684 memset(port_attr, 0, sizeof(*port_attr)); 685 err = device->query_port(device, port_num, port_attr); 686 if (err || port_attr->subnet_prefix) 687 return err; 688 689 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND) 690 return 0; 691 692 err = ib_query_gid(device, port_num, 0, &gid, NULL); 693 if (err) 694 return err; 695 696 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix); 697 return 0; 698 } 699 EXPORT_SYMBOL(ib_query_port); 700 701 /** 702 * ib_query_gid - Get GID table entry 703 * @device:Device to query 704 * @port_num:Port number to query 705 * @index:GID table index to query 706 * @gid:Returned GID 707 * @attr: Returned GID attributes related to this GID index (only in RoCE). 708 * NULL means ignore. 709 * 710 * ib_query_gid() fetches the specified GID table entry. 711 */ 712 int ib_query_gid(struct ib_device *device, 713 u8 port_num, int index, union ib_gid *gid, 714 struct ib_gid_attr *attr) 715 { 716 if (rdma_cap_roce_gid_table(device, port_num)) 717 return ib_get_cached_gid(device, port_num, index, gid, attr); 718 719 if (attr) 720 return -EINVAL; 721 722 return device->query_gid(device, port_num, index, gid); 723 } 724 EXPORT_SYMBOL(ib_query_gid); 725 726 /** 727 * ib_enum_roce_netdev - enumerate all RoCE ports 728 * @ib_dev : IB device we want to query 729 * @filter: Should we call the callback? 730 * @filter_cookie: Cookie passed to filter 731 * @cb: Callback to call for each found RoCE ports 732 * @cookie: Cookie passed back to the callback 733 * 734 * Enumerates all of the physical RoCE ports of ib_dev 735 * which are related to netdevice and calls callback() on each 736 * device for which filter() function returns non zero. 737 */ 738 void ib_enum_roce_netdev(struct ib_device *ib_dev, 739 roce_netdev_filter filter, 740 void *filter_cookie, 741 roce_netdev_callback cb, 742 void *cookie) 743 { 744 u8 port; 745 746 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev); 747 port++) 748 if (rdma_protocol_roce(ib_dev, port)) { 749 struct net_device *idev = NULL; 750 751 if (ib_dev->get_netdev) 752 idev = ib_dev->get_netdev(ib_dev, port); 753 754 if (idev && 755 idev->reg_state >= NETREG_UNREGISTERED) { 756 dev_put(idev); 757 idev = NULL; 758 } 759 760 if (filter(ib_dev, port, idev, filter_cookie)) 761 cb(ib_dev, port, idev, cookie); 762 763 if (idev) 764 dev_put(idev); 765 } 766 } 767 768 /** 769 * ib_enum_all_roce_netdevs - enumerate all RoCE devices 770 * @filter: Should we call the callback? 771 * @filter_cookie: Cookie passed to filter 772 * @cb: Callback to call for each found RoCE ports 773 * @cookie: Cookie passed back to the callback 774 * 775 * Enumerates all RoCE devices' physical ports which are related 776 * to netdevices and calls callback() on each device for which 777 * filter() function returns non zero. 778 */ 779 void ib_enum_all_roce_netdevs(roce_netdev_filter filter, 780 void *filter_cookie, 781 roce_netdev_callback cb, 782 void *cookie) 783 { 784 struct ib_device *dev; 785 786 down_read(&lists_rwsem); 787 list_for_each_entry(dev, &device_list, core_list) 788 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie); 789 up_read(&lists_rwsem); 790 } 791 792 /** 793 * ib_query_pkey - Get P_Key table entry 794 * @device:Device to query 795 * @port_num:Port number to query 796 * @index:P_Key table index to query 797 * @pkey:Returned P_Key 798 * 799 * ib_query_pkey() fetches the specified P_Key table entry. 800 */ 801 int ib_query_pkey(struct ib_device *device, 802 u8 port_num, u16 index, u16 *pkey) 803 { 804 return device->query_pkey(device, port_num, index, pkey); 805 } 806 EXPORT_SYMBOL(ib_query_pkey); 807 808 /** 809 * ib_modify_device - Change IB device attributes 810 * @device:Device to modify 811 * @device_modify_mask:Mask of attributes to change 812 * @device_modify:New attribute values 813 * 814 * ib_modify_device() changes a device's attributes as specified by 815 * the @device_modify_mask and @device_modify structure. 816 */ 817 int ib_modify_device(struct ib_device *device, 818 int device_modify_mask, 819 struct ib_device_modify *device_modify) 820 { 821 if (!device->modify_device) 822 return -ENOSYS; 823 824 return device->modify_device(device, device_modify_mask, 825 device_modify); 826 } 827 EXPORT_SYMBOL(ib_modify_device); 828 829 /** 830 * ib_modify_port - Modifies the attributes for the specified port. 831 * @device: The device to modify. 832 * @port_num: The number of the port to modify. 833 * @port_modify_mask: Mask used to specify which attributes of the port 834 * to change. 835 * @port_modify: New attribute values for the port. 836 * 837 * ib_modify_port() changes a port's attributes as specified by the 838 * @port_modify_mask and @port_modify structure. 839 */ 840 int ib_modify_port(struct ib_device *device, 841 u8 port_num, int port_modify_mask, 842 struct ib_port_modify *port_modify) 843 { 844 if (!device->modify_port) 845 return -ENOSYS; 846 847 if (!rdma_is_port_valid(device, port_num)) 848 return -EINVAL; 849 850 return device->modify_port(device, port_num, port_modify_mask, 851 port_modify); 852 } 853 EXPORT_SYMBOL(ib_modify_port); 854 855 /** 856 * ib_find_gid - Returns the port number and GID table index where 857 * a specified GID value occurs. 858 * @device: The device to query. 859 * @gid: The GID value to search for. 860 * @gid_type: Type of GID. 861 * @ndev: The ndev related to the GID to search for. 862 * @port_num: The port number of the device where the GID value was found. 863 * @index: The index into the GID table where the GID was found. This 864 * parameter may be NULL. 865 */ 866 int ib_find_gid(struct ib_device *device, union ib_gid *gid, 867 enum ib_gid_type gid_type, struct net_device *ndev, 868 u8 *port_num, u16 *index) 869 { 870 union ib_gid tmp_gid; 871 int ret, port, i; 872 873 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) { 874 if (rdma_cap_roce_gid_table(device, port)) { 875 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port, 876 ndev, index)) { 877 *port_num = port; 878 return 0; 879 } 880 } 881 882 if (gid_type != IB_GID_TYPE_IB) 883 continue; 884 885 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) { 886 ret = ib_query_gid(device, port, i, &tmp_gid, NULL); 887 if (ret) 888 return ret; 889 if (!memcmp(&tmp_gid, gid, sizeof *gid)) { 890 *port_num = port; 891 if (index) 892 *index = i; 893 return 0; 894 } 895 } 896 } 897 898 return -ENOENT; 899 } 900 EXPORT_SYMBOL(ib_find_gid); 901 902 /** 903 * ib_find_pkey - Returns the PKey table index where a specified 904 * PKey value occurs. 905 * @device: The device to query. 906 * @port_num: The port number of the device to search for the PKey. 907 * @pkey: The PKey value to search for. 908 * @index: The index into the PKey table where the PKey was found. 909 */ 910 int ib_find_pkey(struct ib_device *device, 911 u8 port_num, u16 pkey, u16 *index) 912 { 913 int ret, i; 914 u16 tmp_pkey; 915 int partial_ix = -1; 916 917 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) { 918 ret = ib_query_pkey(device, port_num, i, &tmp_pkey); 919 if (ret) 920 return ret; 921 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) { 922 /* if there is full-member pkey take it.*/ 923 if (tmp_pkey & 0x8000) { 924 *index = i; 925 return 0; 926 } 927 if (partial_ix < 0) 928 partial_ix = i; 929 } 930 } 931 932 /*no full-member, if exists take the limited*/ 933 if (partial_ix >= 0) { 934 *index = partial_ix; 935 return 0; 936 } 937 return -ENOENT; 938 } 939 EXPORT_SYMBOL(ib_find_pkey); 940 941 /** 942 * ib_get_net_dev_by_params() - Return the appropriate net_dev 943 * for a received CM request 944 * @dev: An RDMA device on which the request has been received. 945 * @port: Port number on the RDMA device. 946 * @pkey: The Pkey the request came on. 947 * @gid: A GID that the net_dev uses to communicate. 948 * @addr: Contains the IP address that the request specified as its 949 * destination. 950 */ 951 struct net_device *ib_get_net_dev_by_params(struct ib_device *dev, 952 u8 port, 953 u16 pkey, 954 const union ib_gid *gid, 955 const struct sockaddr *addr) 956 { 957 struct net_device *net_dev = NULL; 958 struct ib_client_data *context; 959 960 if (!rdma_protocol_ib(dev, port)) 961 return NULL; 962 963 down_read(&lists_rwsem); 964 965 list_for_each_entry(context, &dev->client_data_list, list) { 966 struct ib_client *client = context->client; 967 968 if (context->going_down) 969 continue; 970 971 if (client->get_net_dev_by_params) { 972 net_dev = client->get_net_dev_by_params(dev, port, pkey, 973 gid, addr, 974 context->data); 975 if (net_dev) 976 break; 977 } 978 } 979 980 up_read(&lists_rwsem); 981 982 return net_dev; 983 } 984 EXPORT_SYMBOL(ib_get_net_dev_by_params); 985 986 static struct ibnl_client_cbs ibnl_ls_cb_table[] = { 987 [RDMA_NL_LS_OP_RESOLVE] = { 988 .dump = ib_nl_handle_resolve_resp, 989 .module = THIS_MODULE }, 990 [RDMA_NL_LS_OP_SET_TIMEOUT] = { 991 .dump = ib_nl_handle_set_timeout, 992 .module = THIS_MODULE }, 993 [RDMA_NL_LS_OP_IP_RESOLVE] = { 994 .dump = ib_nl_handle_ip_res_resp, 995 .module = THIS_MODULE }, 996 }; 997 998 static int ib_add_ibnl_clients(void) 999 { 1000 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table), 1001 ibnl_ls_cb_table); 1002 } 1003 1004 static void ib_remove_ibnl_clients(void) 1005 { 1006 ibnl_remove_client(RDMA_NL_LS); 1007 } 1008 1009 static int __init ib_core_init(void) 1010 { 1011 int ret; 1012 1013 ib_wq = alloc_workqueue("infiniband", 0, 0); 1014 if (!ib_wq) 1015 return -ENOMEM; 1016 1017 ib_comp_wq = alloc_workqueue("ib-comp-wq", 1018 WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM, 1019 WQ_UNBOUND_MAX_ACTIVE); 1020 if (!ib_comp_wq) { 1021 ret = -ENOMEM; 1022 goto err; 1023 } 1024 1025 ret = class_register(&ib_class); 1026 if (ret) { 1027 pr_warn("Couldn't create InfiniBand device class\n"); 1028 goto err_comp; 1029 } 1030 1031 ret = ibnl_init(); 1032 if (ret) { 1033 pr_warn("Couldn't init IB netlink interface\n"); 1034 goto err_sysfs; 1035 } 1036 1037 ret = addr_init(); 1038 if (ret) { 1039 pr_warn("Could't init IB address resolution\n"); 1040 goto err_ibnl; 1041 } 1042 1043 ret = ib_mad_init(); 1044 if (ret) { 1045 pr_warn("Couldn't init IB MAD\n"); 1046 goto err_addr; 1047 } 1048 1049 ret = ib_sa_init(); 1050 if (ret) { 1051 pr_warn("Couldn't init SA\n"); 1052 goto err_mad; 1053 } 1054 1055 ret = ib_add_ibnl_clients(); 1056 if (ret) { 1057 pr_warn("Couldn't register ibnl clients\n"); 1058 goto err_sa; 1059 } 1060 1061 ib_cache_setup(); 1062 1063 return 0; 1064 1065 err_sa: 1066 ib_sa_cleanup(); 1067 err_mad: 1068 ib_mad_cleanup(); 1069 err_addr: 1070 addr_cleanup(); 1071 err_ibnl: 1072 ibnl_cleanup(); 1073 err_sysfs: 1074 class_unregister(&ib_class); 1075 err_comp: 1076 destroy_workqueue(ib_comp_wq); 1077 err: 1078 destroy_workqueue(ib_wq); 1079 return ret; 1080 } 1081 1082 static void __exit ib_core_cleanup(void) 1083 { 1084 ib_cache_cleanup(); 1085 ib_remove_ibnl_clients(); 1086 ib_sa_cleanup(); 1087 ib_mad_cleanup(); 1088 addr_cleanup(); 1089 ibnl_cleanup(); 1090 class_unregister(&ib_class); 1091 destroy_workqueue(ib_comp_wq); 1092 /* Make sure that any pending umem accounting work is done. */ 1093 destroy_workqueue(ib_wq); 1094 } 1095 1096 module_init(ib_core_init); 1097 module_exit(ib_core_cleanup); 1098