1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
|
/*
* Copyright (c) 2015-2020 Intel, Inc. All rights reserved.
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2020-2022 Triad National Security, LLC. All rights
* reserved.
* Copyright (c) 2020-2021 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2021-2023 Nanook Consulting. All rights reserved.
* Copyright (c) 2021 Amazon.com, Inc. or its affiliates. All rights
* reserved.
* Copyright (c) 2023 UT-Battelle, LLC. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include <errno.h>
#include <unistd.h>
#include <rdma/fabric.h>
#include <rdma/fi_errno.h>
#include <rdma/fi_cm.h>
#ifdef HAVE_RDMA_FI_EXT_H
#include <rdma/fi_ext.h>
#endif
#include "common_ofi.h"
#include "opal/constants.h"
#include "opal/mca/base/mca_base_framework.h"
#include "opal/mca/base/mca_base_var.h"
#include "opal/mca/hwloc/base/base.h"
#include "opal/mca/memory/base/base.h"
#include "opal/mca/pmix/base/base.h"
#include "opal/util/argv.h"
#include "opal/util/show_help.h"
opal_common_ofi_module_t opal_common_ofi = {.prov_include = NULL,
.prov_exclude = NULL,
.output = -1};
static const char default_prov_exclude_list[] = "shm,sockets,tcp,udp,rstream,usnic,net";
static opal_mutex_t opal_common_ofi_mutex = OPAL_MUTEX_STATIC_INIT;
static int opal_common_ofi_verbose_level = 0;
static int opal_common_ofi_init_ref_cnt = 0;
#ifdef HAVE_STRUCT_FI_OPS_MEM_MONITOR
static bool opal_common_ofi_installed_memory_monitor = false;
#endif
/* Count providers returns the number of providers present in an fi_info list
* @param (IN) provider_list struct fi_info* list of providers available
*
* @param (OUT) int number of providers present in the list
*
* returns 0 if the list is NULL
*/
static int count_providers(struct fi_info *provider_list);
#ifdef HAVE_STRUCT_FI_OPS_MEM_MONITOR
/*
* Monitor object to export into Libfabric to provide memory release
* notifications using our own memory hooks framework. Monitors may
* use the subscribe/unsubscribe notifications to reduce unnecessary
* notifications, but are not required to do so. Because patcher
* notifies about all releases, it is cheaper for us to not filter and
* this monitor can safely ignore subscribe/unsubscribe notifications.
*
* Libfabric requires the object to be fully defined. Unlike most of
* Open MPI, it does not have NULL function pointer checks in calling
* code.
*/
static int opal_common_ofi_monitor_start(struct fid_mem_monitor *monitor)
{
return 0;
}
static void opal_common_ofi_monitor_stop(struct fid_mem_monitor *monitor)
{
return;
}
static int opal_common_ofi_monitor_subscribe(struct fid_mem_monitor *monitor,
const void *addr, size_t len)
{
return 0;
}
static void opal_common_ofi_monitor_unsubscribe(struct fid_mem_monitor *monitor,
const void *addr, size_t len)
{
return;
}
static bool opal_common_ofi_monitor_valid(struct fid_mem_monitor *monitor,
const void *addr, size_t len)
{
return true;
}
static struct fid_mem_monitor *opal_common_ofi_monitor = NULL;
static struct fid *opal_common_ofi_cache_fid = NULL;
static struct fi_ops_mem_monitor opal_common_ofi_export_ops = {
.size = sizeof(struct fi_ops_mem_monitor),
.start = opal_common_ofi_monitor_start,
.stop = opal_common_ofi_monitor_stop,
.subscribe = opal_common_ofi_monitor_subscribe,
.unsubscribe = opal_common_ofi_monitor_unsubscribe,
.valid = opal_common_ofi_monitor_valid,
};
/**
* Callback function from Open MPI memory monitor
*
* Translation function between the callback function from Open MPI's
* memory notifier to the Libfabric memory monitor.
*/
static void opal_common_ofi_mem_release_cb(void *buf, size_t length,
void *cbdata, bool from_alloc)
{
opal_common_ofi_monitor->import_ops->notify(opal_common_ofi_monitor,
buf, length);
}
#endif /* HAVE_STRUCT_FI_OPS_MEM_MONITOR */
int opal_common_ofi_export_memory_monitor(void)
{
int ret = -FI_ENOSYS;
#ifdef HAVE_STRUCT_FI_OPS_MEM_MONITOR
bool memory_base_frame_open = false;
OPAL_THREAD_LOCK(&opal_common_ofi_mutex);
if (NULL != opal_common_ofi_cache_fid) {
OPAL_THREAD_UNLOCK(&opal_common_ofi_mutex);
return 0;
}
/*
* While the memory import functionality was introduced in 1.13,
* some deadlock bugs exist in the 1.13 series. Require version
* 1.14 before this code is activated. Not activating the code
* should not break any functionality directly, but may lead to
* sub-optimal memory monitors being used in Libfabric, as Open
* MPI will almost certainly install a patcher first.
*/
if (FI_VERSION_LT(fi_version(), FI_VERSION(1, 14))) {
ret = -FI_ENOSYS;
goto err;
}
ret = mca_base_framework_open(&opal_memory_base_framework, 0);
if (OPAL_SUCCESS != ret) {
ret = -FI_ENOSYS;
goto err;
} else {
memory_base_frame_open = true;
}
if ((OPAL_MEMORY_FREE_SUPPORT | OPAL_MEMORY_MUNMAP_SUPPORT)
!= (((OPAL_MEMORY_FREE_SUPPORT | OPAL_MEMORY_MUNMAP_SUPPORT))
& opal_mem_hooks_support_level())) {
ret = -FI_ENOSYS;
goto err;
}
/*
* The monitor import object has the well known name "mr_cache"
* and was introduced in Libfabric 1.13
*/
ret = fi_open(FI_VERSION(1,13), "mr_cache", NULL, 0, 0,
&opal_common_ofi_cache_fid, NULL);
if (0 != ret) {
goto err;
}
opal_common_ofi_monitor = calloc(1, sizeof(*opal_common_ofi_monitor));
if (NULL == opal_common_ofi_monitor) {
ret = -FI_ENOMEM;
goto err;
}
opal_common_ofi_monitor->fid.fclass = FI_CLASS_MEM_MONITOR;
opal_common_ofi_monitor->export_ops = &opal_common_ofi_export_ops;
ret = fi_import_fid(opal_common_ofi_cache_fid,
&opal_common_ofi_monitor->fid, 0);
if (0 != ret) {
goto err;
}
opal_mem_hooks_register_release(opal_common_ofi_mem_release_cb, NULL);
opal_common_ofi_installed_memory_monitor = true;
ret = 0;
err:
if (0 != ret) {
if (NULL != opal_common_ofi_cache_fid) {
fi_close(opal_common_ofi_cache_fid);
}
if (NULL != opal_common_ofi_monitor) {
free(opal_common_ofi_monitor);
}
if (memory_base_frame_open) {
mca_base_framework_close(&opal_memory_base_framework);
}
opal_common_ofi_installed_memory_monitor = false;
}
OPAL_THREAD_UNLOCK(&opal_common_ofi_mutex);
#endif
return ret;
}
static int opal_common_ofi_remove_memory_monitor(void)
{
#ifdef HAVE_STRUCT_FI_OPS_MEM_MONITOR
if (opal_common_ofi_installed_memory_monitor) {
opal_mem_hooks_unregister_release(opal_common_ofi_mem_release_cb);
fi_close(opal_common_ofi_cache_fid);
fi_close(&opal_common_ofi_monitor->fid);
free(opal_common_ofi_monitor);
mca_base_framework_close(&opal_memory_base_framework);
opal_common_ofi_installed_memory_monitor = false;
}
#endif
return OPAL_SUCCESS;
}
int opal_common_ofi_open(void)
{
if ((opal_common_ofi_init_ref_cnt++) > 0) {
return OPAL_SUCCESS;
}
return OPAL_SUCCESS;
}
int opal_common_ofi_close(void)
{
int ret;
if ((--opal_common_ofi_init_ref_cnt) > 0) {
return OPAL_SUCCESS;
}
ret = opal_common_ofi_remove_memory_monitor();
if (OPAL_SUCCESS != ret) {
return ret;
}
if (-1 != opal_common_ofi.output) {
opal_output_close(opal_common_ofi.output);
opal_common_ofi.output = -1;
}
return OPAL_SUCCESS;
}
int opal_common_ofi_is_in_list(char **list, char *item)
{
int i = 0;
if ((NULL == list) || (NULL == item)) {
return 0;
}
while (NULL != list[i]) {
if (0 == strncasecmp(item, list[i], strlen(list[i]))) {
return 1;
} else {
i++;
}
}
return 0;
}
int opal_common_ofi_count_providers_in_list(struct fi_info *provider_list, char **list)
{
int count = 0, matched = 0;
struct fi_info *prov = provider_list, *prev_prov = NULL;
char *name;
while (prov) {
name = prov->fabric_attr->prov_name;
if (prev_prov && !strncasecmp(prev_prov->fabric_attr->prov_name, name, strlen(name))) {
/**
* Providers are usually sorted by name. We can reuse the previous matching result and
* avoid the potentially expensive list traversal.
*/
count += matched;
} else if (opal_common_ofi_is_in_list(list, prov->fabric_attr->prov_name)) {
matched = 1;
++count;
} else {
matched = 0;
}
prev_prov = prov;
prov = prov->next;
}
return count;
}
int opal_common_ofi_providers_subset_of_list(struct fi_info *provider_list, char **list)
{
int num_prov = count_providers(provider_list);
if (!num_prov) {
return 1;
}
return num_prov == opal_common_ofi_count_providers_in_list(provider_list, list);
}
int opal_common_ofi_mca_register(const mca_base_component_t *component)
{
int include_index;
int exclude_index;
int verbose_index;
int param;
int ret;
if (fi_version() < FI_VERSION(1, 0)) {
return OPAL_ERROR;
}
OPAL_THREAD_LOCK(&opal_common_ofi_mutex);
param = mca_base_var_find("opal", "opal_common", "ofi", "provider_include");
if (0 > param) {
/*
* this monkey business is needed because of the way the MCA VARs stuff tries to handle
* pointers to strings when when destructing the MCA var database. If you don't do
* something like this,the MCA var framework will try to dereference a pointer which itself
* is no longer a valid address owing to having been previously dlclosed.
*/
if (NULL == opal_common_ofi.prov_include) {
opal_common_ofi.prov_include = (char **) malloc(sizeof(char *));
assert(NULL != opal_common_ofi.prov_include);
}
*opal_common_ofi.prov_include = NULL;
include_index = mca_base_var_register(
"opal", "opal_common", "ofi", "provider_include",
"Comma-delimited list of OFI providers that are considered for use (e.g., "
"\"psm,psm2\"; an empty value means that all providers will be considered). Mutually "
"exclusive with mtl_ofi_provider_exclude.",
MCA_BASE_VAR_TYPE_STRING, NULL, 0, 0, OPAL_INFO_LVL_1, MCA_BASE_VAR_SCOPE_READONLY,
opal_common_ofi.prov_include);
if (0 > include_index) {
ret = include_index;
goto err;
}
} else {
include_index = param;
}
param = mca_base_var_find("opal", "opal_common", "ofi", "provider_exclude");
if (0 > param) {
if (NULL == opal_common_ofi.prov_exclude) {
opal_common_ofi.prov_exclude = (char **) malloc(sizeof(char *));
assert(NULL != opal_common_ofi.prov_exclude);
}
*opal_common_ofi.prov_exclude = strdup(default_prov_exclude_list);
exclude_index = mca_base_var_register(
"opal", "opal_common", "ofi", "provider_exclude",
"Comma-delimited list of OFI providers that are not considered for use (default: "
"\"sockets,mxm\"; empty value means that all providers will be considered). Mutually "
"exclusive with mtl_ofi_provider_include.",
MCA_BASE_VAR_TYPE_STRING, NULL, 0, 0, OPAL_INFO_LVL_1, MCA_BASE_VAR_SCOPE_READONLY,
opal_common_ofi.prov_exclude);
if (0 > exclude_index) {
ret = exclude_index;
goto err;
}
} else {
exclude_index = param;
}
param = mca_base_var_find("opal", "opal_common", "ofi", "verbose");
if (0 > param) {
verbose_index = mca_base_var_register("opal", "opal_common", "ofi", "verbose",
"Verbose level of the OFI components",
MCA_BASE_VAR_TYPE_INT, NULL, 0,
MCA_BASE_VAR_FLAG_SETTABLE, OPAL_INFO_LVL_3,
MCA_BASE_VAR_SCOPE_LOCAL,
&opal_common_ofi_verbose_level);
if (0 > verbose_index) {
ret = verbose_index;
goto err;
}
} else {
verbose_index = param;
}
if (component) {
ret = mca_base_var_register_synonym(include_index,
component->mca_project_name,
component->mca_type_name,
component->mca_component_name,
"provider_include", 0);
if (0 > ret) {
goto err;
}
ret = mca_base_var_register_synonym(exclude_index,
component->mca_project_name,
component->mca_type_name,
component->mca_component_name,
"provider_exclude", 0);
if (0 > ret) {
goto err;
}
ret = mca_base_var_register_synonym(verbose_index,
component->mca_project_name,
component->mca_type_name,
component->mca_component_name,
"verbose", 0);
if (0 > ret) {
goto err;
}
}
/* The frameworks initialize their output streams during
* register(), so we similarly try to initialize the output stream
* as early as possible. Because we may register synonyms for
* each dependent component, we don't necessarily have all the
* data to set verbosity during the first call to
* common_ofi_register(). The MCA infrastructure has rules on
* synonym value evaluation, so our rubric is to re-set verbosity
* after every call to register() (which has registered a new
* synonym). This is not perfect, but it's not horrible, either.
*/
if (opal_common_ofi.output == -1) {
opal_common_ofi.output = opal_output_open(NULL);
}
opal_output_set_verbosity(opal_common_ofi.output, opal_common_ofi_verbose_level);
ret = OPAL_SUCCESS;
err:
OPAL_THREAD_UNLOCK(&opal_common_ofi_mutex);
return ret;
}
/* check that the tx attributes match */
static int check_tx_attr(struct fi_tx_attr *provider_info, struct fi_tx_attr *provider)
{
if (!(provider->msg_order & ~(provider_info->msg_order))
&& !(provider->op_flags & ~(provider_info->op_flags))
&& (provider->inject_size == provider_info->inject_size)) {
return 0;
} else {
return OPAL_ERROR;
}
}
/* check that the rx attributes match */
static int check_rx_attr(struct fi_rx_attr *provider_info, struct fi_rx_attr *provider)
{
if (!(provider->msg_order & ~(provider_info->msg_order))
&& !(provider->op_flags & ~(provider_info->op_flags))) {
return 0;
} else {
return OPAL_ERROR;
}
}
/* check that the ep attributes match */
static int check_ep_attr(struct fi_ep_attr *provider_info, struct fi_ep_attr *provider)
{
if (!(provider->type & ~(provider_info->type))
&& !(provider->mem_tag_format & ~(provider_info->mem_tag_format))
&& (provider->max_msg_size == provider_info->max_msg_size)
&& (provider->tx_ctx_cnt == provider_info->tx_ctx_cnt)
&& (provider->rx_ctx_cnt == provider_info->rx_ctx_cnt)) {
return 0;
} else {
return OPAL_ERROR;
}
}
/* check that the provider attributes match */
static int check_provider_attr(struct fi_info *provider_info, struct fi_info *provider)
{
/* make sure both info are the same provider and provide the same attributes */
if (0 == strcmp(provider_info->fabric_attr->prov_name, provider->fabric_attr->prov_name)
&& 0 == strcmp(provider_info->fabric_attr->name, provider->fabric_attr->name)
&& !check_tx_attr(provider_info->tx_attr, provider->tx_attr)
&& !check_rx_attr(provider_info->rx_attr, provider->rx_attr)
&& !check_ep_attr(provider_info->ep_attr, provider->ep_attr)
&& !(provider_info->caps & ~(provider->caps)) && !(provider_info->mode & ~(provider->mode))
&& provider_info->addr_format == provider->addr_format) {
return OPAL_SUCCESS;
} else {
return OPAL_ERROR;
}
}
#if OPAL_OFI_PCI_DATA_AVAILABLE
static int get_provider_nic_pci(struct fi_info *provider, struct fi_pci_attr *pci)
{
if (NULL != provider->nic && NULL != provider->nic->bus_attr
&& FI_BUS_PCI == provider->nic->bus_attr->bus_type) {
*pci = provider->nic->bus_attr->attr.pci;
return OPAL_SUCCESS;
}
return OPAL_ERR_NOT_AVAILABLE;
}
#endif /* OPAL_OFI_PCI_DATA_AVAILABLE */
/**
* Calculate device distances
*
* Calculate the distances between the current thread and all devices of
* type OPENFABRICS or NETWORK.
*
* The shortest distances are the nearest and therefore most efficient
* devices to use.
*
* Return an array of all the distances. Each entry is of type
* pmix_device_distance_t
*
* This function is used if there is no PMIx server running.
*
* @param distances (OUT) distances array
* @param ndist (OUT) number of entries in the distances array
*
* @return 0 on success. Error otherwise.
*
*/
static int compute_dev_distances(pmix_device_distance_t **distances,
size_t *ndist)
{
int ret = OPAL_SUCCESS;
size_t ninfo;
pmix_info_t *info;
pmix_cpuset_t cpuset;
pmix_topology_t pmix_topo = PMIX_TOPOLOGY_STATIC_INIT;
pmix_device_type_t type = PMIX_DEVTYPE_OPENFABRICS |
PMIX_DEVTYPE_NETWORK;
PMIX_CPUSET_CONSTRUCT(&cpuset);
ret = PMIx_Get_cpuset(&cpuset, PMIX_CPUBIND_THREAD);
if (PMIX_SUCCESS != ret) {
/* we are not bound */
ret = OPAL_ERR_NOT_BOUND;
goto out;
}
/* if we are not bound, then we cannot compute distances */
if (hwloc_bitmap_iszero(cpuset.bitmap) ||
hwloc_bitmap_isfull(cpuset.bitmap)) {
return OPAL_ERR_NOT_BOUND;
}
/* load the PMIX topology - this just loads a pointer to
* the local topology held in PMIx, so you must not
* free it */
ret = PMIx_Load_topology(&pmix_topo);
if (PMIX_SUCCESS != ret) {
goto out;
}
ninfo = 1;
info = PMIx_Info_create(ninfo);
PMIx_Info_load(&info[0], PMIX_DEVICE_TYPE, &type, PMIX_DEVTYPE);
ret = PMIx_Compute_distances(&pmix_topo, &cpuset, info, ninfo, distances,
ndist);
PMIx_Info_free(info, ninfo);
out:
return ret;
}
/**
* @brief Get the provider distance from the provided distance metrics
*
* @param[in] topology hwloc topology
* @param[in] provider Provider object
* @param[in] distances List of known device distances
* @param[in] num_distances Length of distances
* @param[out] distance Pointer to store the provider distance
* @return OPAL_SUCCESS if and only if the distance is found in the provided list
*/
#if OPAL_OFI_PCI_DATA_AVAILABLE
static int get_provider_distance(hwloc_topology_t topology, struct fi_info *provider,
pmix_device_distance_t *distances, int num_distances,
uint16_t *distance)
{
hwloc_obj_t pcidev, osdev;
struct fi_pci_attr pci = {0};
if (OPAL_SUCCESS != get_provider_nic_pci(provider, &pci)) {
opal_output_verbose(1, opal_common_ofi.output, "Cannot determine PCI attributes of provider %s",
provider->domain_attr->name);
return OPAL_ERROR;
}
pcidev = hwloc_get_pcidev_by_busid(topology, pci.domain_id, pci.bus_id, pci.device_id,
pci.function_id);
if (!pcidev) {
opal_output_verbose(1, opal_common_ofi.output, "Cannot locate PCI device of provider %s",
provider->domain_attr->name);
return OPAL_ERROR;
}
#if HWLOC_API_VERSION < 0x00020000
osdev = pcidev->first_child;
#else
osdev = pcidev->io_first_child;
#endif /* HWLOC_API_VERSION */
for (; osdev != NULL; osdev = osdev->next_sibling) {
int i;
if (osdev->attr->osdev.type == HWLOC_OBJ_OSDEV_OPENFABRICS) {
const char *nguid = hwloc_obj_get_info_by_name(osdev, "NodeGUID");
const char *sguid = hwloc_obj_get_info_by_name(osdev, "SysImageGUID");
if (!nguid && !sguid)
continue;
for (i = 0; i < num_distances; i++) {
char lsguid[20], lnguid[20];
int ret;
if (PMIX_DEVTYPE_OPENFABRICS != distances[i].type) {
continue;
}
if (!distances[i].osname || !osdev->name
|| strcmp(distances[i].osname, osdev->name))
continue;
ret = sscanf(distances[i].uuid, "fab://%19s::%19s", lnguid, lsguid);
if (ret != 2)
continue;
if ((nguid && (0 == strcasecmp(lnguid, nguid)))
|| (sguid && (0 == strcasecmp(lsguid, sguid)))) {
*distance = distances[i].mindist;
return OPAL_SUCCESS;
}
}
} else if (osdev->attr->osdev.type == HWLOC_OBJ_OSDEV_NETWORK) {
const char *address = hwloc_obj_get_info_by_name(osdev, "Address");
if (!address)
continue;
for (i = 0; i < num_distances; i++) {
if (PMIX_DEVTYPE_NETWORK != distances[i].type) {
continue;
}
char *addr = strstr(distances[i].uuid, "://");
if (!addr || addr + 3 > distances[i].uuid + strlen(distances[i].uuid))
continue;
if (!strcmp(addr + 3, address)) {
*distance = distances[i].mindist;
return OPAL_SUCCESS;
}
}
}
}
return OPAL_ERROR;
}
#else
static int get_provider_distance(struct fi_info *provider, hwloc_topology_t topology,
pmix_device_distance_t *distances, size_t num_distances,
uint16_t *distance)
{
return OPAL_ERROR;
}
#endif /* OPAL_OFI_PCI_DATA_AVAILABLE */
/**
* @brief Get the nearest device to the current thread
*
* Compute the distances from the current thread to each NIC in provider_list,
* and select the NIC with the shortest distance.
* If there are multiple equidistant devices, break the tie using local rank
* to balance NIC utilization.
*
* @param[in] topoloy hwloc topology
* @param[in] provider_list List of providers to select from
* @param[in] num_providers Number of providers in provider_list
* @param[in] rank local rank of the process
* @param[out] provider pointer to the selected provider
*
* @return OPAL_SUCCESS if and only if a nearest provider is found.
*/
static int get_nearest_nic(hwloc_topology_t topology, struct fi_info *provider_list,
size_t num_providers, uint32_t rank, struct fi_info **provider)
{
int ret;
pmix_data_array_t *dptr;
pmix_device_distance_t *distances;
pmix_info_t directive;
pmix_value_t *val = NULL;
size_t ndist, num_nearest = 0;
struct fi_info *current_provider = NULL;
uint16_t dists[num_providers], *dist = NULL, min_dist = USHRT_MAX;
uint32_t provider_rank = 0;
PMIx_Info_load(&directive, PMIX_OPTIONAL, NULL, PMIX_BOOL);
ret = PMIx_Get(&opal_process_info.myprocid, PMIX_DEVICE_DISTANCES, &directive, 1, &val);
PMIx_Info_destruct(&directive);
if (ret != PMIX_SUCCESS || !val) {
ret = compute_dev_distances(&distances, &ndist);
if (ret) {
ret = OPAL_ERROR;
goto out;
}
goto find_nearest;
}
if (PMIX_DATA_ARRAY != val->type) {
ret = OPAL_ERROR;
goto out;
}
dptr = val->data.darray;
if (NULL == dptr) {
ret = OPAL_ERROR;
goto out;
}
if (PMIX_DEVICE_DIST != dptr->type) {
ret = OPAL_ERROR;
goto out;
}
distances = (pmix_device_distance_t *) dptr->array;
ndist = dptr->size;
find_nearest:
for (current_provider = provider_list, dist = dists; NULL != current_provider;
current_provider = current_provider->next, ++dist) {
if (OPAL_SUCCESS != check_provider_attr(provider_list, current_provider)) {
continue;
}
if (OPAL_SUCCESS != get_provider_distance(topology, current_provider, distances, ndist, dist)) {
*dist = USHRT_MAX;
}
if (*dist < min_dist) {
min_dist = *dist;
num_nearest = 1;
} else if (*dist == min_dist) {
++num_nearest;
}
if (OPAL_SUCCESS == check_provider_attr(provider_list, current_provider)) {
opal_output_verbose(1, opal_common_ofi.output, "provider: %s dist: %d",
current_provider->domain_attr->name, *dist);
}
}
ret = OPAL_ERROR;
if (0 >= num_nearest) {
return ret;
}
provider_rank = rank % num_nearest;
num_nearest = 0;
for (current_provider = provider_list, dist = dists; NULL != current_provider;
current_provider = current_provider->next) {
if (OPAL_SUCCESS == check_provider_attr(provider_list, current_provider)
&& min_dist == *(dist++) && provider_rank == num_nearest++) {
*provider = current_provider;
ret = OPAL_SUCCESS;
goto out;
}
}
out:
if (val)
PMIx_Value_free(val, 1);
return ret;
}
/**
* @brief Selects a provider from the list in a round-robin fashion
*
* This function implements a round-robin algorithm to select a provider from
* the provided list based on a rank. Only providers of the same type as the
* first provider are eligible for selection.
*
* @param[in] provider_list A list of providers to select from.
* @param[out] rank A rank metric for the current process, such as
* the rank on the same node or CPU package.
* @return Pointer to the selected provider
*/
static struct fi_info *select_provider_round_robin(struct fi_info *provider_list, uint32_t rank)
{
uint32_t provider_rank = 0, current_rank = 0;
size_t num_providers = 0;
struct fi_info *current_provider = NULL;
for (current_provider = provider_list; NULL != current_provider;) {
if (OPAL_SUCCESS == check_provider_attr(provider_list, current_provider)) {
++num_providers;
}
current_provider = current_provider->next;
}
current_provider = provider_list;
if (2 > num_providers) {
goto out;
}
provider_rank = rank % num_providers;
while (NULL != current_provider) {
if (OPAL_SUCCESS == check_provider_attr(provider_list, current_provider)
&& provider_rank == current_rank++) {
break;
}
current_provider = current_provider->next;
}
out:
return current_provider;
}
static int count_providers(struct fi_info *provider_list)
{
struct fi_info *dev = provider_list;
int num_provider = 0;
while (NULL != dev) {
num_provider++;
dev = dev->next;
}
return num_provider;
}
/**
* @brief the current process package rank.
*
* @param[in] process_info struct opal_process_info_t information
* about the current process. used to get
* num_local_peers, myprocid.rank.
*
* @return package rank or myprocid.rank
*
* If successful, returns PMIX_PACKAGE_RANK, or an
* equivalent calculated package rank.
* otherwise falls back to using opal_process_info.myprocid.rank
* this can affect performance, but is unlikely to happen.
*/
static uint32_t get_package_rank(opal_process_info_t *process_info)
{
int i;
uint16_t relative_locality, *package_rank_ptr;
uint32_t ranks_on_package = 0;
opal_process_name_t pname;
pmix_status_t rc;
char **peers = NULL;
char *local_peers = NULL;
char *locality_string = NULL;
pname.jobid = OPAL_PROC_MY_NAME.jobid;
pname.vpid = OPAL_VPID_WILDCARD;
/*
* if we are a singleton just return myprocid.rank
* because we by definition don't know about any local peers
*/
if (opal_process_info.is_singleton) {
return (uint32_t) process_info->myprocid.rank;
}
#if HAVE_DECL_PMIX_PACKAGE_RANK
// Try to get the PACKAGE_RANK from PMIx
OPAL_MODEX_RECV_VALUE_OPTIONAL(rc, PMIX_PACKAGE_RANK, &pname, &package_rank_ptr, PMIX_UINT16);
if (PMIX_SUCCESS == rc) {
return (uint32_t) *package_rank_ptr;
}
#endif
// Get the local peers
OPAL_MODEX_RECV_VALUE(rc, PMIX_LOCAL_PEERS, &pname, &local_peers, PMIX_STRING);
if (PMIX_SUCCESS != rc || NULL == local_peers) {
goto err;
}
peers = opal_argv_split(local_peers, ',');
free(local_peers);
for (i = 0; NULL != peers[i]; i++) {
pname.vpid = strtoul(peers[i], NULL, 10);
if ((uint16_t) pname.vpid == process_info->my_local_rank) {
return ranks_on_package;
}
locality_string = NULL;
// Get the LOCALITY_STRING for process[i]
OPAL_MODEX_RECV_VALUE_OPTIONAL(rc, PMIX_LOCALITY_STRING, &pname, &locality_string,
PMIX_STRING);
if (PMIX_SUCCESS != rc || NULL == locality_string) {
goto err;
}
// compute relative locality
relative_locality = opal_hwloc_compute_relative_locality(process_info->locality,
locality_string);
free(locality_string);
locality_string = NULL;
if ((uint16_t) pname.vpid == process_info->myprocid.rank) {
return ranks_on_package;
}
if (relative_locality & OPAL_PROC_ON_SOCKET) {
ranks_on_package++;
}
}
err:
opal_show_help("help-common-ofi.txt", "package_rank failed", true);
return (uint32_t) process_info->myprocid.rank;
}
struct fi_info *opal_common_ofi_select_provider(struct fi_info *provider_list,
opal_process_info_t *process_info)
{
int ret, num_providers = 0;
struct fi_info *provider = NULL;
uint32_t package_rank = process_info->my_local_rank;
num_providers = count_providers(provider_list);
if (!process_info->proc_is_bound || 2 > num_providers) {
goto round_robin;
}
/* Initialize opal_hwloc_topology if it is not already */
ret = opal_hwloc_base_get_topology();
if (0 > ret) {
/* Provider selection can continue but there is no guarantee of locality */
opal_output_verbose(1, opal_common_ofi.output, "%s:%d:Failed to initialize topology",
__FILE__, __LINE__);
}
package_rank = get_package_rank(process_info);
#if OPAL_OFI_PCI_DATA_AVAILABLE
/**
* If provider PCI BDF information is available, we calculate its physical distance
* to the current process, and select the provider with the shortest distance.
*/
ret = get_nearest_nic(opal_hwloc_topology, provider_list, num_providers, package_rank,
&provider);
if (OPAL_SUCCESS == ret) {
goto out;
}
#endif /* OPAL_OFI_PCI_DATA_AVAILABLE */
round_robin:
if (!process_info->proc_is_bound && 1 < num_providers
&& opal_output_get_verbosity(opal_common_ofi.output) >= 1) {
opal_show_help("help-common-ofi.txt", "unbound_process", true, 1);
}
provider = select_provider_round_robin(provider_list, package_rank);
out:
#if OPAL_ENABLE_DEBUG
opal_output_verbose(1, opal_common_ofi.output, "package rank: %d device: %s", package_rank,
provider->domain_attr->name);
#endif
return provider;
}
/**
* Obtain EP endpoint name
*
* Obtain the EP endpoint name and length for the supplied endpoint fid.
*
* @param fid (IN) fid of (S)EP endpoint
* @param addr (OUT) buffer containing endpoint name
* @param addrlen (OUT) length of allocated buffer in bytes
*
* @return OPAL_SUCCESS or OPAL error code
*
* The caller is responsible for freeing the buffer allocated to
* contain the endpoint name.
*
*/
OPAL_DECLSPEC int opal_common_ofi_fi_getname(fid_t fid, void **addr, size_t *addrlen)
{
int ret=OPAL_SUCCESS;
size_t namelen = 0;
char *ep_name = NULL;
/**
* Get our address and publish it with modex.
* Use the two step process of first getting the required
* buffer size, then allocating the memory and calling
* fi_getname again.
*/
namelen = 0;
ret = fi_getname(fid,
NULL,
&namelen);
if ((FI_SUCCESS != ret) && (-FI_ETOOSMALL != ret)) {
opal_output_verbose(1, opal_common_ofi.output, "%s:%d:fi_endpoint (namelen) returned %s\n",
__FILE__, __LINE__, fi_strerror(-ret));
ret = OPAL_ERROR;
goto error;
}
ep_name = (char *)malloc(namelen);
if (NULL == ep_name) {
ret = OPAL_ERR_OUT_OF_RESOURCE;
goto error;
}
ret = fi_getname(fid,
ep_name,
&namelen);
if (ret) {
opal_output_verbose(1, opal_common_ofi.output, "%s:%d:fi_endpoint (ep_name) returned %s\n",
__FILE__, __LINE__, fi_strerror(-ret));
ret = OPAL_ERROR;
goto error;
}
*addr = ep_name;
*addrlen = namelen;
return ret;
error:
if (NULL != ep_name) {
free(ep_name);
}
return ret;
}
|