1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2020 Mellanox Technologies, Ltd
8 #ifdef RTE_IBVERBS_LINK_DLOPEN
14 #include <rte_errno.h>
15 #include <rte_string_fns.h>
17 #include "mlx5_common.h"
18 #include "mlx5_common_utils.h"
19 #include "mlx5_glue.h"
22 const struct mlx5_glue *mlx5_glue;
26 * Get PCI information by sysfs device path.
29 * Pointer to device sysfs folder name.
30 * @param[out] pci_addr
31 * PCI bus address output buffer.
34 * 0 on success, a negative errno value otherwise and rte_errno is set.
37 mlx5_dev_to_pci_addr(const char *dev_path,
38 struct rte_pci_addr *pci_addr)
43 MKSTR(path, "%s/device/uevent", dev_path);
45 file = fopen(path, "rb");
50 while (fgets(line, sizeof(line), file) == line) {
51 size_t len = strlen(line);
53 /* Truncate long lines. */
54 if (len == (sizeof(line) - 1)) {
55 while (line[(len - 1)] != '\n') {
56 int ret = fgetc(file);
60 line[(len - 1)] = ret;
62 /* No match for long lines. */
65 /* Extract information. */
68 "%" SCNx32 ":%" SCNx8 ":%" SCNx8 ".%" SCNx8 "\n",
72 &pci_addr->function) == 4) {
85 * Extract port name, as a number, from sysfs or netlink information.
87 * @param[in] port_name_in
88 * String representing the port name.
89 * @param[out] port_info_out
90 * Port information, including port name as a number and port name
94 * port_name field set according to recognized name format.
97 mlx5_translate_port_name(const char *port_name_in,
98 struct mlx5_switch_info *port_info_out)
100 char pf_c1, pf_c2, vf_c1, vf_c2, eol;
105 * Check for port-name as a string of the form pf0vf0
106 * (support kernel ver >= 5.0 or OFED ver >= 4.6).
108 sc_items = sscanf(port_name_in, "%c%c%d%c%c%d%c",
109 &pf_c1, &pf_c2, &port_info_out->pf_num,
110 &vf_c1, &vf_c2, &port_info_out->port_name, &eol);
112 pf_c1 == 'p' && pf_c2 == 'f' &&
113 vf_c1 == 'v' && vf_c2 == 'f') {
114 port_info_out->name_type = MLX5_PHYS_PORT_NAME_TYPE_PFVF;
118 * Check for port-name as a string of the form p0
119 * (support kernel ver >= 5.0, or OFED ver >= 4.6).
121 sc_items = sscanf(port_name_in, "%c%d%c",
122 &pf_c1, &port_info_out->port_name, &eol);
123 if (sc_items == 2 && pf_c1 == 'p') {
124 port_info_out->name_type = MLX5_PHYS_PORT_NAME_TYPE_UPLINK;
128 * Check for port-name as a string of the form pf0
129 * (support kernel ver >= 5.7 for HPF representor on BF).
131 sc_items = sscanf(port_name_in, "%c%c%d%c",
132 &pf_c1, &pf_c2, &port_info_out->pf_num, &eol);
133 if (sc_items == 3 && pf_c1 == 'p' && pf_c2 == 'f') {
134 port_info_out->port_name = -1;
135 port_info_out->name_type = MLX5_PHYS_PORT_NAME_TYPE_PFHPF;
138 /* Check for port-name as a number (support kernel ver < 5.0 */
140 port_info_out->port_name = strtol(port_name_in, &end, 0);
142 (size_t)(end - port_name_in) == strlen(port_name_in)) {
143 port_info_out->name_type = MLX5_PHYS_PORT_NAME_TYPE_LEGACY;
146 port_info_out->name_type = MLX5_PHYS_PORT_NAME_TYPE_UNKNOWN;
150 * Get kernel interface name from IB device path.
152 * @param[in] ibdev_path
153 * Pointer to IB device path.
155 * Interface name output buffer.
158 * 0 on success, a negative errno value otherwise and rte_errno is set.
161 mlx5_get_ifname_sysfs(const char *ibdev_path, char *ifname)
165 unsigned int dev_type = 0;
166 unsigned int dev_port_prev = ~0u;
167 char match[IF_NAMESIZE] = "";
169 MLX5_ASSERT(ibdev_path);
171 MKSTR(path, "%s/device/net", ibdev_path);
179 while ((dent = readdir(dir)) != NULL) {
180 char *name = dent->d_name;
182 unsigned int dev_port;
185 if ((name[0] == '.') &&
186 ((name[1] == '\0') ||
187 ((name[1] == '.') && (name[2] == '\0'))))
190 MKSTR(path, "%s/device/net/%s/%s",
192 (dev_type ? "dev_id" : "dev_port"));
194 file = fopen(path, "rb");
199 * Switch to dev_id when dev_port does not exist as
200 * is the case with Linux kernel versions < 3.15.
211 r = fscanf(file, (dev_type ? "%x" : "%u"), &dev_port);
216 * Switch to dev_id when dev_port returns the same value for
217 * all ports. May happen when using a MOFED release older than
218 * 3.0 with a Linux kernel >= 3.15.
220 if (dev_port == dev_port_prev)
222 dev_port_prev = dev_port;
224 strlcpy(match, name, IF_NAMESIZE);
227 if (match[0] == '\0') {
231 strncpy(ifname, match, IF_NAMESIZE);
238 * Suffix RTE_EAL_PMD_PATH with "-glue".
240 * This function performs a sanity check on RTE_EAL_PMD_PATH before
241 * suffixing its last component.
244 * Output buffer, should be large enough otherwise NULL is returned.
249 * Pointer to @p buf or @p NULL in case suffix cannot be appended.
252 mlx5_glue_path(char *buf, size_t size)
254 static const char *const bad[] = { "/", ".", "..", NULL };
255 const char *path = RTE_EAL_PMD_PATH;
256 size_t len = strlen(path);
260 while (len && path[len - 1] == '/')
262 for (off = len; off && path[off - 1] != '/'; --off)
264 for (i = 0; bad[i]; ++i)
265 if (!strncmp(path + off, bad[i], (int)(len - off)))
267 i = snprintf(buf, size, "%.*s-glue", (int)len, path);
268 if (i == -1 || (size_t)i >= size)
272 RTE_LOG(ERR, PMD, "unable to append \"-glue\" to last component of"
273 " RTE_EAL_PMD_PATH (\"" RTE_EAL_PMD_PATH "\"), please"
274 " re-configure DPDK");
279 mlx5_glue_dlopen(void)
281 char glue_path[sizeof(RTE_EAL_PMD_PATH) - 1 + sizeof("-glue")];
284 char const *path[] = {
286 * A basic security check is necessary before trusting
287 * MLX5_GLUE_PATH, which may override RTE_EAL_PMD_PATH.
289 (geteuid() == getuid() && getegid() == getgid() ?
290 getenv("MLX5_GLUE_PATH") : NULL),
292 * When RTE_EAL_PMD_PATH is set, use its glue-suffixed
293 * variant, otherwise let dlopen() look up libraries on its
297 mlx5_glue_path(glue_path, sizeof(glue_path)) : ""),
303 while (!handle && i != RTE_DIM(path)) {
312 end = strpbrk(path[i], ":;");
314 end = path[i] + strlen(path[i]);
320 ret = snprintf(name, sizeof(name), "%.*s%s" MLX5_GLUE,
322 (!len || *(end - 1) == '/') ? "" : "/");
325 if (sizeof(name) != (size_t)ret + 1)
327 DRV_LOG(DEBUG, "Looking for rdma-core glue as "
329 handle = dlopen(name, RTLD_LAZY);
340 DRV_LOG(WARNING, "Cannot load glue library: %s", dlmsg);
343 sym = dlsym(handle, "mlx5_glue");
348 DRV_LOG(ERR, "Cannot resolve glue symbol: %s", dlmsg);
363 * Initialization routine for run-time dependency on rdma-core.
366 mlx5_glue_constructor(void)
369 * RDMAV_HUGEPAGES_SAFE tells ibv_fork_init() we intend to use
370 * huge pages. Calling ibv_fork_init() during init allows
371 * applications to use fork() safely for purposes other than
372 * using this PMD, which is not supported in forked processes.
374 setenv("RDMAV_HUGEPAGES_SAFE", "1", 1);
375 /* Match the size of Rx completion entry to the size of a cacheline. */
376 if (RTE_CACHE_LINE_SIZE == 128)
377 setenv("MLX5_CQE_SIZE", "128", 0);
379 * MLX5_DEVICE_FATAL_CLEANUP tells ibv_destroy functions to
380 * cleanup all the Verbs resources even when the device was removed.
382 setenv("MLX5_DEVICE_FATAL_CLEANUP", "1", 1);
385 if (mlx5_glue_dlopen() != 0)
389 #ifdef RTE_LIBRTE_MLX5_DEBUG
390 /* Glue structure must not contain any NULL pointers. */
394 for (i = 0; i != sizeof(*mlx5_glue) / sizeof(void *); ++i)
395 MLX5_ASSERT(((const void *const *)mlx5_glue)[i]);
398 if (strcmp(mlx5_glue->version, MLX5_GLUE_VERSION)) {
400 DRV_LOG(ERR, "rdma-core glue \"%s\" mismatch: \"%s\" is "
401 "required", mlx5_glue->version, MLX5_GLUE_VERSION);
404 mlx5_glue->fork_init();
408 DRV_LOG(WARNING, "Cannot initialize MLX5 common due to missing"
409 " run-time dependency on rdma-core libraries (libibverbs,"