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
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2022 Microsoft Corporation
*/
#include <rte_malloc.h>
#include <ethdev_driver.h>
#include <rte_log.h>
#include <stdlib.h>
#include <infiniband/verbs.h>
#include "mana.h"
extern struct mana_shared_data *mana_shared_data;
/*
* Process MR request from secondary process.
*/
static int
mana_mp_mr_create(struct mana_priv *priv, uintptr_t addr, uint32_t len)
{
struct ibv_mr *ibv_mr;
int ret;
struct mana_mr_cache *mr;
ibv_mr = ibv_reg_mr(priv->ib_pd, (void *)addr, len,
IBV_ACCESS_LOCAL_WRITE);
if (!ibv_mr)
return -errno;
DP_LOG(DEBUG, "MR (2nd) lkey %u addr %p len %zu",
ibv_mr->lkey, ibv_mr->addr, ibv_mr->length);
mr = rte_calloc("MANA MR", 1, sizeof(*mr), 0);
if (!mr) {
DRV_LOG(ERR, "(2nd) Failed to allocate MR");
ret = -ENOMEM;
goto fail_alloc;
}
mr->lkey = ibv_mr->lkey;
mr->addr = (uintptr_t)ibv_mr->addr;
mr->len = ibv_mr->length;
mr->verb_obj = ibv_mr;
rte_spinlock_lock(&priv->mr_btree_lock);
ret = mana_mr_btree_insert(&priv->mr_btree, mr);
rte_spinlock_unlock(&priv->mr_btree_lock);
if (ret) {
DRV_LOG(ERR, "(2nd) Failed to add to global MR btree");
goto fail_btree;
}
return 0;
fail_btree:
rte_free(mr);
fail_alloc:
ibv_dereg_mr(ibv_mr);
return ret;
}
static void
mp_init_msg(struct rte_mp_msg *msg, enum mana_mp_req_type type, int port_id)
{
struct mana_mp_param *param;
strlcpy(msg->name, MANA_MP_NAME, sizeof(msg->name));
msg->len_param = sizeof(*param);
param = (struct mana_mp_param *)msg->param;
param->type = type;
param->port_id = port_id;
}
static int
mana_mp_primary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
{
struct rte_eth_dev *dev;
const struct mana_mp_param *param =
(const struct mana_mp_param *)mp_msg->param;
struct rte_mp_msg mp_res = { 0 };
struct mana_mp_param *res = (struct mana_mp_param *)mp_res.param;
int ret;
struct mana_priv *priv;
if (!rte_eth_dev_is_valid_port(param->port_id)) {
DRV_LOG(ERR, "MP handle port ID %u invalid", param->port_id);
return -ENODEV;
}
dev = &rte_eth_devices[param->port_id];
priv = dev->data->dev_private;
mp_init_msg(&mp_res, param->type, param->port_id);
switch (param->type) {
case MANA_MP_REQ_CREATE_MR:
ret = mana_mp_mr_create(priv, param->addr, param->len);
res->result = ret;
ret = rte_mp_reply(&mp_res, peer);
break;
case MANA_MP_REQ_VERBS_CMD_FD:
mp_res.num_fds = 1;
mp_res.fds[0] = priv->ib_ctx->cmd_fd;
res->result = 0;
ret = rte_mp_reply(&mp_res, peer);
break;
default:
DRV_LOG(ERR, "Port %u unknown primary MP type %u",
param->port_id, param->type);
ret = -EINVAL;
}
return ret;
}
static int
mana_mp_secondary_handle(const struct rte_mp_msg *mp_msg, const void *peer)
{
struct rte_mp_msg mp_res = { 0 };
struct mana_mp_param *res = (struct mana_mp_param *)mp_res.param;
const struct mana_mp_param *param =
(const struct mana_mp_param *)mp_msg->param;
struct rte_eth_dev *dev;
int ret;
if (!rte_eth_dev_is_valid_port(param->port_id)) {
DRV_LOG(ERR, "MP handle port ID %u invalid", param->port_id);
return -ENODEV;
}
dev = &rte_eth_devices[param->port_id];
mp_init_msg(&mp_res, param->type, param->port_id);
switch (param->type) {
case MANA_MP_REQ_START_RXTX:
DRV_LOG(INFO, "Port %u starting datapath", dev->data->port_id);
dev->tx_pkt_burst = mana_tx_burst;
dev->rx_pkt_burst = mana_rx_burst;
rte_mb();
res->result = 0;
ret = rte_mp_reply(&mp_res, peer);
break;
case MANA_MP_REQ_STOP_RXTX:
DRV_LOG(INFO, "Port %u stopping datapath", dev->data->port_id);
dev->tx_pkt_burst = mana_tx_burst_removed;
dev->rx_pkt_burst = mana_rx_burst_removed;
rte_mb();
res->result = 0;
ret = rte_mp_reply(&mp_res, peer);
break;
default:
DRV_LOG(ERR, "Port %u unknown secondary MP type %u",
param->port_id, param->type);
ret = -EINVAL;
}
return ret;
}
int
mana_mp_init_primary(void)
{
int ret;
ret = rte_mp_action_register(MANA_MP_NAME, mana_mp_primary_handle);
if (ret && rte_errno != ENOTSUP) {
DRV_LOG(ERR, "Failed to register primary handler %d %d",
ret, rte_errno);
return -1;
}
return 0;
}
void
mana_mp_uninit_primary(void)
{
rte_mp_action_unregister(MANA_MP_NAME);
}
int
mana_mp_init_secondary(void)
{
return rte_mp_action_register(MANA_MP_NAME, mana_mp_secondary_handle);
}
void
mana_mp_uninit_secondary(void)
{
rte_mp_action_unregister(MANA_MP_NAME);
}
int
mana_mp_req_verbs_cmd_fd(struct rte_eth_dev *dev)
{
struct rte_mp_msg mp_req = { 0 };
struct rte_mp_msg *mp_res;
struct rte_mp_reply mp_rep;
struct mana_mp_param *res;
struct timespec ts = {.tv_sec = MANA_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
int ret;
mp_init_msg(&mp_req, MANA_MP_REQ_VERBS_CMD_FD, dev->data->port_id);
ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
if (ret) {
DRV_LOG(ERR, "port %u request to primary process failed",
dev->data->port_id);
return ret;
}
if (mp_rep.nb_received != 1) {
DRV_LOG(ERR, "primary replied %u messages", mp_rep.nb_received);
ret = -EPROTO;
goto exit;
}
mp_res = &mp_rep.msgs[0];
res = (struct mana_mp_param *)mp_res->param;
if (res->result) {
DRV_LOG(ERR, "failed to get CMD FD, port %u",
dev->data->port_id);
ret = res->result;
goto exit;
}
if (mp_res->num_fds != 1) {
DRV_LOG(ERR, "got FDs %d unexpected", mp_res->num_fds);
ret = -EPROTO;
goto exit;
}
ret = mp_res->fds[0];
DRV_LOG(ERR, "port %u command FD from primary is %d",
dev->data->port_id, ret);
exit:
free(mp_rep.msgs);
return ret;
}
/*
* Request the primary process to register a MR.
*/
int
mana_mp_req_mr_create(struct mana_priv *priv, uintptr_t addr, uint32_t len)
{
struct rte_mp_msg mp_req = {0};
struct rte_mp_msg *mp_res;
struct rte_mp_reply mp_rep;
struct mana_mp_param *req = (struct mana_mp_param *)mp_req.param;
struct mana_mp_param *res;
struct timespec ts = {.tv_sec = MANA_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
int ret;
mp_init_msg(&mp_req, MANA_MP_REQ_CREATE_MR, priv->port_id);
req->addr = addr;
req->len = len;
ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
if (ret) {
DRV_LOG(ERR, "Port %u request to primary failed",
req->port_id);
return ret;
}
if (mp_rep.nb_received != 1)
return -EPROTO;
mp_res = &mp_rep.msgs[0];
res = (struct mana_mp_param *)mp_res->param;
ret = res->result;
free(mp_rep.msgs);
return ret;
}
void
mana_mp_req_on_rxtx(struct rte_eth_dev *dev, enum mana_mp_req_type type)
{
struct rte_mp_msg mp_req = { 0 };
struct rte_mp_msg *mp_res;
struct rte_mp_reply mp_rep;
struct mana_mp_param *res;
struct timespec ts = {.tv_sec = MANA_MP_REQ_TIMEOUT_SEC, .tv_nsec = 0};
int i, ret;
if (type != MANA_MP_REQ_START_RXTX && type != MANA_MP_REQ_STOP_RXTX) {
DRV_LOG(ERR, "port %u unknown request (req_type %d)",
dev->data->port_id, type);
return;
}
if (rte_atomic_load_explicit(&mana_shared_data->secondary_cnt, rte_memory_order_relaxed) == 0)
return;
mp_init_msg(&mp_req, type, dev->data->port_id);
ret = rte_mp_request_sync(&mp_req, &mp_rep, &ts);
if (ret) {
if (rte_errno != ENOTSUP)
DRV_LOG(ERR, "port %u failed to request Rx/Tx (%d)",
dev->data->port_id, type);
goto exit;
}
if (mp_rep.nb_sent != mp_rep.nb_received) {
DRV_LOG(ERR, "port %u not all secondaries responded (%d)",
dev->data->port_id, type);
goto exit;
}
for (i = 0; i < mp_rep.nb_received; i++) {
mp_res = &mp_rep.msgs[i];
res = (struct mana_mp_param *)mp_res->param;
if (res->result) {
DRV_LOG(ERR, "port %u request failed on secondary %d",
dev->data->port_id, i);
goto exit;
}
}
exit:
free(mp_rep.msgs);
}
|