Introduce enum fio_q_status
[fio.git] / engines / rdma.c
CommitLineData
21b8aee8 1/*
85286c5c 2 * RDMA I/O engine
21b8aee8 3 *
85286c5c
BVA
4 * RDMA I/O engine based on the IB verbs and RDMA/CM user space libraries.
5 * Supports both RDMA memory semantics and channel semantics
6 * for the InfiniBand, RoCE and iWARP protocols.
21b8aee8 7 *
0ac5d398 8 * You will need the Linux RDMA software installed, either
85286c5c 9 * from your Linux distributor or directly from openfabrics.org:
21b8aee8 10 *
11 * http://www.openfabrics.org/downloads/OFED/
12 *
7d7803fa
YR
13 * Exchanging steps of RDMA ioengine control messages:
14 * 1. client side sends test mode (RDMA_WRITE/RDMA_READ/SEND)
15 * to server side.
222757cc 16 * 2. server side parses test mode, and sends back confirmation
7d7803fa 17 * to client side. In RDMA WRITE/READ test, this confirmation
222757cc 18 * includes memory information, such as rkey, address.
7d7803fa 19 * 3. client side initiates test loop.
222757cc 20 * 4. In RDMA WRITE/READ test, client side sends a completion
7d7803fa 21 * notification to server side. Server side updates its
222757cc 22 * td->done as true.
7d7803fa 23 *
21b8aee8 24 */
25#include <stdio.h>
26#include <stdlib.h>
27#include <unistd.h>
28#include <errno.h>
29#include <assert.h>
30#include <netinet/in.h>
31#include <arpa/inet.h>
32#include <netdb.h>
8393ca93 33#include <poll.h>
21b8aee8 34#include <sys/types.h>
35#include <sys/socket.h>
36#include <sys/time.h>
37#include <sys/resource.h>
38
21b8aee8 39#include <pthread.h>
40#include <inttypes.h>
41
42#include "../fio.h"
ee88d056 43#include "../hash.h"
d220c761 44#include "../optgroup.h"
21b8aee8 45
21b8aee8 46#include <rdma/rdma_cma.h>
21b8aee8 47
7d7803fa 48#define FIO_RDMA_MAX_IO_DEPTH 512
21b8aee8 49
50enum rdma_io_mode {
51 FIO_RDMA_UNKNOWN = 0,
52 FIO_RDMA_MEM_WRITE,
53 FIO_RDMA_MEM_READ,
54 FIO_RDMA_CHA_SEND,
55 FIO_RDMA_CHA_RECV
56};
57
cdf91594
LG
58struct rdmaio_options {
59 struct thread_data *td;
60 unsigned int port;
61 enum rdma_io_mode verb;
2f28bb35 62 char *bindname;
cdf91594
LG
63};
64
65static int str_hostname_cb(void *data, const char *input)
66{
67 struct rdmaio_options *o = data;
68
69 if (o->td->o.filename)
70 free(o->td->o.filename);
71 o->td->o.filename = strdup(input);
72 return 0;
73}
74
75static struct fio_option options[] = {
76 {
77 .name = "hostname",
78 .lname = "rdma engine hostname",
79 .type = FIO_OPT_STR_STORE,
80 .cb = str_hostname_cb,
81 .help = "Hostname for RDMA IO engine",
82 .category = FIO_OPT_C_ENGINE,
83 .group = FIO_OPT_G_RDMA,
84 },
2f28bb35
SB
85 {
86 .name = "bindname",
87 .lname = "rdma engine bindname",
88 .type = FIO_OPT_STR_STORE,
89 .off1 = offsetof(struct rdmaio_options, bindname),
90 .help = "Bind for RDMA IO engine",
91 .def = "",
92 .category = FIO_OPT_C_ENGINE,
93 .group = FIO_OPT_G_RDMA,
94 },
cdf91594
LG
95 {
96 .name = "port",
97 .lname = "rdma engine port",
98 .type = FIO_OPT_INT,
99 .off1 = offsetof(struct rdmaio_options, port),
100 .minval = 1,
101 .maxval = 65535,
102 .help = "Port to use for RDMA connections",
103 .category = FIO_OPT_C_ENGINE,
104 .group = FIO_OPT_G_RDMA,
105 },
106 {
107 .name = "verb",
108 .lname = "RDMA engine verb",
109 .alias = "proto",
110 .type = FIO_OPT_STR,
111 .off1 = offsetof(struct rdmaio_options, verb),
112 .help = "RDMA engine verb",
113 .def = "write",
114 .posval = {
115 { .ival = "write",
116 .oval = FIO_RDMA_MEM_WRITE,
117 .help = "Memory Write",
118 },
119 { .ival = "read",
120 .oval = FIO_RDMA_MEM_READ,
121 .help = "Memory Read",
122 },
123 { .ival = "send",
124 .oval = FIO_RDMA_CHA_SEND,
125 .help = "Posted Send",
126 },
127 { .ival = "recv",
128 .oval = FIO_RDMA_CHA_RECV,
ee386b78 129 .help = "Posted Receive",
cdf91594
LG
130 },
131 },
132 .category = FIO_OPT_C_ENGINE,
133 .group = FIO_OPT_G_RDMA,
134 },
135 {
136 .name = NULL,
137 },
138};
139
21b8aee8 140struct remote_u {
141 uint64_t buf;
142 uint32_t rkey;
143 uint32_t size;
144};
145
146struct rdma_info_blk {
147 uint32_t mode; /* channel semantic or memory semantic */
148 uint32_t nr; /* client: io depth
149 server: number of records for memory semantic
150 */
c4421263 151 uint32_t max_bs; /* maximum block size */
76cc5224 152 struct remote_u rmt_us[FIO_RDMA_MAX_IO_DEPTH];
21b8aee8 153};
154
155struct rdma_io_u_data {
156 uint64_t wr_id;
157 struct ibv_send_wr sq_wr;
158 struct ibv_recv_wr rq_wr;
159 struct ibv_sge rdma_sgl;
160};
161
162struct rdmaio_data {
163 int is_client;
164 enum rdma_io_mode rdma_protocol;
165 char host[64];
166 struct sockaddr_in addr;
167
168 struct ibv_recv_wr rq_wr;
169 struct ibv_sge recv_sgl;
170 struct rdma_info_blk recv_buf;
171 struct ibv_mr *recv_mr;
172
173 struct ibv_send_wr sq_wr;
174 struct ibv_sge send_sgl;
175 struct rdma_info_blk send_buf;
176 struct ibv_mr *send_mr;
177
178 struct ibv_comp_channel *channel;
179 struct ibv_cq *cq;
180 struct ibv_pd *pd;
181 struct ibv_qp *qp;
182
183 pthread_t cmthread;
184 struct rdma_event_channel *cm_channel;
185 struct rdma_cm_id *cm_id;
186 struct rdma_cm_id *child_cm_id;
187
188 int cq_event_num;
189
190 struct remote_u *rmt_us;
191 int rmt_nr;
192 struct io_u **io_us_queued;
193 int io_u_queued_nr;
194 struct io_u **io_us_flight;
195 int io_u_flight_nr;
196 struct io_u **io_us_completed;
197 int io_u_completed_nr;
ea6209ad
JA
198
199 struct frand_state rand_state;
21b8aee8 200};
201
202static int client_recv(struct thread_data *td, struct ibv_wc *wc)
203{
565e784d 204 struct rdmaio_data *rd = td->io_ops_data;
c4421263 205 unsigned int max_bs;
21b8aee8 206
207 if (wc->byte_len != sizeof(rd->recv_buf)) {
b6cf38f0 208 log_err("Received bogus data, size %d\n", wc->byte_len);
21b8aee8 209 return 1;
210 }
211
c4421263
LG
212 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
213 if (max_bs > ntohl(rd->recv_buf.max_bs)) {
214 log_err("fio: Server's block size (%d) must be greater than or "
215 "equal to the client's block size (%d)!\n",
216 ntohl(rd->recv_buf.max_bs), max_bs);
217 return 1;
218 }
219
21b8aee8 220 /* store mr info for MEMORY semantic */
221 if ((rd->rdma_protocol == FIO_RDMA_MEM_WRITE) ||
222 (rd->rdma_protocol == FIO_RDMA_MEM_READ)) {
223 /* struct flist_head *entry; */
224 int i = 0;
225
226 rd->rmt_nr = ntohl(rd->recv_buf.nr);
227
228 for (i = 0; i < rd->rmt_nr; i++) {
b747af64 229 rd->rmt_us[i].buf = be64_to_cpu(rd->recv_buf.rmt_us[i].buf);
21b8aee8 230 rd->rmt_us[i].rkey = ntohl(rd->recv_buf.rmt_us[i].rkey);
231 rd->rmt_us[i].size = ntohl(rd->recv_buf.rmt_us[i].size);
232
233 dprint(FD_IO,
234 "fio: Received rkey %x addr %" PRIx64
235 " len %d from peer\n", rd->rmt_us[i].rkey,
236 rd->rmt_us[i].buf, rd->rmt_us[i].size);
237 }
238 }
239
240 return 0;
241}
242
243static int server_recv(struct thread_data *td, struct ibv_wc *wc)
244{
565e784d 245 struct rdmaio_data *rd = td->io_ops_data;
c4421263 246 unsigned int max_bs;
21b8aee8 247
76cc5224 248 if (wc->wr_id == FIO_RDMA_MAX_IO_DEPTH) {
21b8aee8 249 rd->rdma_protocol = ntohl(rd->recv_buf.mode);
250
251 /* CHANNEL semantic, do nothing */
252 if (rd->rdma_protocol == FIO_RDMA_CHA_SEND)
253 rd->rdma_protocol = FIO_RDMA_CHA_RECV;
c4421263
LG
254
255 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
256 if (max_bs < ntohl(rd->recv_buf.max_bs)) {
257 log_err("fio: Server's block size (%d) must be greater than or "
258 "equal to the client's block size (%d)!\n",
259 ntohl(rd->recv_buf.max_bs), max_bs);
260 return 1;
261 }
262
21b8aee8 263 }
264
265 return 0;
266}
267
268static int cq_event_handler(struct thread_data *td, enum ibv_wc_opcode opcode)
269{
565e784d 270 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 271 struct ibv_wc wc;
272 struct rdma_io_u_data *r_io_u_d;
273 int ret;
274 int compevnum = 0;
275 int i;
276
277 while ((ret = ibv_poll_cq(rd->cq, 1, &wc)) == 1) {
278 ret = 0;
279 compevnum++;
280
281 if (wc.status) {
282 log_err("fio: cq completion status %d(%s)\n",
283 wc.status, ibv_wc_status_str(wc.status));
284 return -1;
285 }
286
287 switch (wc.opcode) {
288
289 case IBV_WC_RECV:
290 if (rd->is_client == 1)
c4421263 291 ret = client_recv(td, &wc);
21b8aee8 292 else
c4421263
LG
293 ret = server_recv(td, &wc);
294
295 if (ret)
296 return -1;
21b8aee8 297
76cc5224 298 if (wc.wr_id == FIO_RDMA_MAX_IO_DEPTH)
21b8aee8 299 break;
300
301 for (i = 0; i < rd->io_u_flight_nr; i++) {
302 r_io_u_d = rd->io_us_flight[i]->engine_data;
303
304 if (wc.wr_id == r_io_u_d->rq_wr.wr_id) {
305 rd->io_us_flight[i]->resid =
306 rd->io_us_flight[i]->buflen
307 - wc.byte_len;
308
309 rd->io_us_flight[i]->error = 0;
310
311 rd->io_us_completed[rd->
312 io_u_completed_nr]
313 = rd->io_us_flight[i];
314 rd->io_u_completed_nr++;
315 break;
316 }
317 }
318 if (i == rd->io_u_flight_nr)
e07f72d3 319 log_err("fio: recv wr %" PRId64 " not found\n",
21b8aee8 320 wc.wr_id);
321 else {
322 /* put the last one into middle of the list */
323 rd->io_us_flight[i] =
324 rd->io_us_flight[rd->io_u_flight_nr - 1];
325 rd->io_u_flight_nr--;
326 }
327
328 break;
329
330 case IBV_WC_SEND:
331 case IBV_WC_RDMA_WRITE:
332 case IBV_WC_RDMA_READ:
76cc5224 333 if (wc.wr_id == FIO_RDMA_MAX_IO_DEPTH)
21b8aee8 334 break;
335
336 for (i = 0; i < rd->io_u_flight_nr; i++) {
337 r_io_u_d = rd->io_us_flight[i]->engine_data;
338
339 if (wc.wr_id == r_io_u_d->sq_wr.wr_id) {
340 rd->io_us_completed[rd->
341 io_u_completed_nr]
342 = rd->io_us_flight[i];
343 rd->io_u_completed_nr++;
344 break;
345 }
346 }
347 if (i == rd->io_u_flight_nr)
e07f72d3 348 log_err("fio: send wr %" PRId64 " not found\n",
21b8aee8 349 wc.wr_id);
350 else {
351 /* put the last one into middle of the list */
352 rd->io_us_flight[i] =
353 rd->io_us_flight[rd->io_u_flight_nr - 1];
354 rd->io_u_flight_nr--;
355 }
356
357 break;
358
359 default:
360 log_info("fio: unknown completion event %d\n",
361 wc.opcode);
362 return -1;
363 }
364 rd->cq_event_num++;
365 }
c4421263 366
21b8aee8 367 if (ret) {
368 log_err("fio: poll error %d\n", ret);
369 return 1;
370 }
371
372 return compevnum;
373}
374
375/*
376 * Return -1 for error and 'nr events' for a positive number
377 * of events
378 */
379static int rdma_poll_wait(struct thread_data *td, enum ibv_wc_opcode opcode)
380{
565e784d 381 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 382 struct ibv_cq *ev_cq;
383 void *ev_ctx;
384 int ret;
385
386 if (rd->cq_event_num > 0) { /* previous left */
387 rd->cq_event_num--;
388 return 0;
389 }
390
391again:
392 if (ibv_get_cq_event(rd->channel, &ev_cq, &ev_ctx) != 0) {
393 log_err("fio: Failed to get cq event!\n");
394 return -1;
395 }
396 if (ev_cq != rd->cq) {
397 log_err("fio: Unknown CQ!\n");
398 return -1;
399 }
400 if (ibv_req_notify_cq(rd->cq, 0) != 0) {
401 log_err("fio: Failed to set notify!\n");
402 return -1;
403 }
404
405 ret = cq_event_handler(td, opcode);
c4421263 406 if (ret == 0)
21b8aee8 407 goto again;
408
409 ibv_ack_cq_events(rd->cq, ret);
410
411 rd->cq_event_num--;
412
413 return ret;
414}
415
416static int fio_rdmaio_setup_qp(struct thread_data *td)
417{
565e784d 418 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 419 struct ibv_qp_init_attr init_attr;
420 int qp_depth = td->o.iodepth * 2; /* 2 times of io depth */
421
422 if (rd->is_client == 0)
423 rd->pd = ibv_alloc_pd(rd->child_cm_id->verbs);
424 else
425 rd->pd = ibv_alloc_pd(rd->cm_id->verbs);
222757cc 426
21b8aee8 427 if (rd->pd == NULL) {
2a442a30 428 log_err("fio: ibv_alloc_pd fail: %m\n");
21b8aee8 429 return 1;
430 }
431
432 if (rd->is_client == 0)
433 rd->channel = ibv_create_comp_channel(rd->child_cm_id->verbs);
434 else
435 rd->channel = ibv_create_comp_channel(rd->cm_id->verbs);
436 if (rd->channel == NULL) {
2a442a30 437 log_err("fio: ibv_create_comp_channel fail: %m\n");
21b8aee8 438 goto err1;
439 }
440
441 if (qp_depth < 16)
442 qp_depth = 16;
443
444 if (rd->is_client == 0)
445 rd->cq = ibv_create_cq(rd->child_cm_id->verbs,
446 qp_depth, rd, rd->channel, 0);
447 else
448 rd->cq = ibv_create_cq(rd->cm_id->verbs,
449 qp_depth, rd, rd->channel, 0);
450 if (rd->cq == NULL) {
2a442a30 451 log_err("fio: ibv_create_cq failed: %m\n");
21b8aee8 452 goto err2;
453 }
454
455 if (ibv_req_notify_cq(rd->cq, 0) != 0) {
2a442a30 456 log_err("fio: ibv_req_notify_cq failed: %m\n");
21b8aee8 457 goto err3;
458 }
459
460 /* create queue pair */
461 memset(&init_attr, 0, sizeof(init_attr));
462 init_attr.cap.max_send_wr = qp_depth;
463 init_attr.cap.max_recv_wr = qp_depth;
464 init_attr.cap.max_recv_sge = 1;
465 init_attr.cap.max_send_sge = 1;
466 init_attr.qp_type = IBV_QPT_RC;
467 init_attr.send_cq = rd->cq;
468 init_attr.recv_cq = rd->cq;
469
470 if (rd->is_client == 0) {
471 if (rdma_create_qp(rd->child_cm_id, rd->pd, &init_attr) != 0) {
2a442a30 472 log_err("fio: rdma_create_qp failed: %m\n");
21b8aee8 473 goto err3;
474 }
475 rd->qp = rd->child_cm_id->qp;
476 } else {
477 if (rdma_create_qp(rd->cm_id, rd->pd, &init_attr) != 0) {
2a442a30 478 log_err("fio: rdma_create_qp failed: %m\n");
21b8aee8 479 goto err3;
480 }
481 rd->qp = rd->cm_id->qp;
482 }
483
484 return 0;
485
486err3:
487 ibv_destroy_cq(rd->cq);
488err2:
489 ibv_destroy_comp_channel(rd->channel);
490err1:
491 ibv_dealloc_pd(rd->pd);
492
493 return 1;
494}
495
496static int fio_rdmaio_setup_control_msg_buffers(struct thread_data *td)
497{
565e784d 498 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 499
500 rd->recv_mr = ibv_reg_mr(rd->pd, &rd->recv_buf, sizeof(rd->recv_buf),
501 IBV_ACCESS_LOCAL_WRITE);
502 if (rd->recv_mr == NULL) {
2a442a30 503 log_err("fio: recv_buf reg_mr failed: %m\n");
21b8aee8 504 return 1;
505 }
506
507 rd->send_mr = ibv_reg_mr(rd->pd, &rd->send_buf, sizeof(rd->send_buf),
508 0);
509 if (rd->send_mr == NULL) {
2a442a30 510 log_err("fio: send_buf reg_mr failed: %m\n");
21b8aee8 511 ibv_dereg_mr(rd->recv_mr);
512 return 1;
513 }
514
515 /* setup work request */
516 /* recv wq */
517 rd->recv_sgl.addr = (uint64_t) (unsigned long)&rd->recv_buf;
222757cc 518 rd->recv_sgl.length = sizeof(rd->recv_buf);
21b8aee8 519 rd->recv_sgl.lkey = rd->recv_mr->lkey;
520 rd->rq_wr.sg_list = &rd->recv_sgl;
521 rd->rq_wr.num_sge = 1;
76cc5224 522 rd->rq_wr.wr_id = FIO_RDMA_MAX_IO_DEPTH;
21b8aee8 523
524 /* send wq */
525 rd->send_sgl.addr = (uint64_t) (unsigned long)&rd->send_buf;
222757cc 526 rd->send_sgl.length = sizeof(rd->send_buf);
21b8aee8 527 rd->send_sgl.lkey = rd->send_mr->lkey;
528
529 rd->sq_wr.opcode = IBV_WR_SEND;
530 rd->sq_wr.send_flags = IBV_SEND_SIGNALED;
531 rd->sq_wr.sg_list = &rd->send_sgl;
532 rd->sq_wr.num_sge = 1;
76cc5224 533 rd->sq_wr.wr_id = FIO_RDMA_MAX_IO_DEPTH;
21b8aee8 534
535 return 0;
536}
537
538static int get_next_channel_event(struct thread_data *td,
539 struct rdma_event_channel *channel,
540 enum rdma_cm_event_type wait_event)
541{
565e784d 542 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 543 struct rdma_cm_event *event;
222757cc 544 int ret;
21b8aee8 545
546 ret = rdma_get_cm_event(channel, &event);
547 if (ret) {
222757cc 548 log_err("fio: rdma_get_cm_event: %d\n", ret);
21b8aee8 549 return 1;
550 }
551
552 if (event->event != wait_event) {
553 log_err("fio: event is %s instead of %s\n",
554 rdma_event_str(event->event),
555 rdma_event_str(wait_event));
556 return 1;
557 }
558
559 switch (event->event) {
560 case RDMA_CM_EVENT_CONNECT_REQUEST:
561 rd->child_cm_id = event->id;
562 break;
563 default:
564 break;
565 }
566
567 rdma_ack_cm_event(event);
568
569 return 0;
570}
571
572static int fio_rdmaio_prep(struct thread_data *td, struct io_u *io_u)
573{
565e784d 574 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 575 struct rdma_io_u_data *r_io_u_d;
576
577 r_io_u_d = io_u->engine_data;
578
579 switch (rd->rdma_protocol) {
580 case FIO_RDMA_MEM_WRITE:
581 case FIO_RDMA_MEM_READ:
582 r_io_u_d->rdma_sgl.addr = (uint64_t) (unsigned long)io_u->buf;
583 r_io_u_d->rdma_sgl.lkey = io_u->mr->lkey;
584 r_io_u_d->sq_wr.wr_id = r_io_u_d->wr_id;
585 r_io_u_d->sq_wr.send_flags = IBV_SEND_SIGNALED;
586 r_io_u_d->sq_wr.sg_list = &r_io_u_d->rdma_sgl;
587 r_io_u_d->sq_wr.num_sge = 1;
588 break;
589 case FIO_RDMA_CHA_SEND:
590 r_io_u_d->rdma_sgl.addr = (uint64_t) (unsigned long)io_u->buf;
591 r_io_u_d->rdma_sgl.lkey = io_u->mr->lkey;
592 r_io_u_d->rdma_sgl.length = io_u->buflen;
593 r_io_u_d->sq_wr.wr_id = r_io_u_d->wr_id;
594 r_io_u_d->sq_wr.opcode = IBV_WR_SEND;
595 r_io_u_d->sq_wr.send_flags = IBV_SEND_SIGNALED;
596 r_io_u_d->sq_wr.sg_list = &r_io_u_d->rdma_sgl;
597 r_io_u_d->sq_wr.num_sge = 1;
598 break;
599 case FIO_RDMA_CHA_RECV:
600 r_io_u_d->rdma_sgl.addr = (uint64_t) (unsigned long)io_u->buf;
601 r_io_u_d->rdma_sgl.lkey = io_u->mr->lkey;
602 r_io_u_d->rdma_sgl.length = io_u->buflen;
603 r_io_u_d->rq_wr.wr_id = r_io_u_d->wr_id;
604 r_io_u_d->rq_wr.sg_list = &r_io_u_d->rdma_sgl;
605 r_io_u_d->rq_wr.num_sge = 1;
606 break;
607 default:
608 log_err("fio: unknown rdma protocol - %d\n", rd->rdma_protocol);
609 break;
610 }
611
612 return 0;
613}
614
615static struct io_u *fio_rdmaio_event(struct thread_data *td, int event)
616{
565e784d 617 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 618 struct io_u *io_u;
619 int i;
620
621 io_u = rd->io_us_completed[0];
222757cc 622 for (i = 0; i < rd->io_u_completed_nr - 1; i++)
21b8aee8 623 rd->io_us_completed[i] = rd->io_us_completed[i + 1];
222757cc 624
21b8aee8 625 rd->io_u_completed_nr--;
626
627 dprint_io_u(io_u, "fio_rdmaio_event");
628
629 return io_u;
630}
631
632static int fio_rdmaio_getevents(struct thread_data *td, unsigned int min,
1f440ece 633 unsigned int max, const struct timespec *t)
21b8aee8 634{
565e784d 635 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 636 enum ibv_wc_opcode comp_opcode;
21b8aee8 637 struct ibv_cq *ev_cq;
638 void *ev_ctx;
222757cc 639 int ret, r = 0;
954cd73a 640 comp_opcode = IBV_WC_RDMA_WRITE;
21b8aee8 641
642 switch (rd->rdma_protocol) {
643 case FIO_RDMA_MEM_WRITE:
644 comp_opcode = IBV_WC_RDMA_WRITE;
645 break;
646 case FIO_RDMA_MEM_READ:
647 comp_opcode = IBV_WC_RDMA_READ;
648 break;
649 case FIO_RDMA_CHA_SEND:
650 comp_opcode = IBV_WC_SEND;
651 break;
652 case FIO_RDMA_CHA_RECV:
653 comp_opcode = IBV_WC_RECV;
654 break;
655 default:
656 log_err("fio: unknown rdma protocol - %d\n", rd->rdma_protocol);
657 break;
658 }
659
660 if (rd->cq_event_num > 0) { /* previous left */
661 rd->cq_event_num--;
662 return 0;
663 }
664
665again:
666 if (ibv_get_cq_event(rd->channel, &ev_cq, &ev_ctx) != 0) {
667 log_err("fio: Failed to get cq event!\n");
668 return -1;
669 }
670 if (ev_cq != rd->cq) {
671 log_err("fio: Unknown CQ!\n");
672 return -1;
673 }
674 if (ibv_req_notify_cq(rd->cq, 0) != 0) {
675 log_err("fio: Failed to set notify!\n");
676 return -1;
677 }
678
679 ret = cq_event_handler(td, comp_opcode);
680 if (ret < 1)
681 goto again;
682
683 ibv_ack_cq_events(rd->cq, ret);
684
685 r += ret;
686 if (r < min)
687 goto again;
688
689 rd->cq_event_num -= r;
690
691 return r;
692}
693
694static int fio_rdmaio_send(struct thread_data *td, struct io_u **io_us,
695 unsigned int nr)
696{
565e784d 697 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 698 struct ibv_send_wr *bad_wr;
e07f72d3 699#if 0
21b8aee8 700 enum ibv_wc_opcode comp_opcode;
701 comp_opcode = IBV_WC_RDMA_WRITE;
e07f72d3 702#endif
7d7803fa
YR
703 int i;
704 long index;
21b8aee8 705 struct rdma_io_u_data *r_io_u_d;
706
707 r_io_u_d = NULL;
708
709 for (i = 0; i < nr; i++) {
710 /* RDMA_WRITE or RDMA_READ */
711 switch (rd->rdma_protocol) {
712 case FIO_RDMA_MEM_WRITE:
713 /* compose work request */
714 r_io_u_d = io_us[i]->engine_data;
222757cc 715 index = __rand(&rd->rand_state) % rd->rmt_nr;
21b8aee8 716 r_io_u_d->sq_wr.opcode = IBV_WR_RDMA_WRITE;
717 r_io_u_d->sq_wr.wr.rdma.rkey = rd->rmt_us[index].rkey;
b6cf38f0
YR
718 r_io_u_d->sq_wr.wr.rdma.remote_addr = \
719 rd->rmt_us[index].buf;
21b8aee8 720 r_io_u_d->sq_wr.sg_list->length = io_us[i]->buflen;
721 break;
722 case FIO_RDMA_MEM_READ:
723 /* compose work request */
724 r_io_u_d = io_us[i]->engine_data;
222757cc 725 index = __rand(&rd->rand_state) % rd->rmt_nr;
21b8aee8 726 r_io_u_d->sq_wr.opcode = IBV_WR_RDMA_READ;
727 r_io_u_d->sq_wr.wr.rdma.rkey = rd->rmt_us[index].rkey;
b6cf38f0
YR
728 r_io_u_d->sq_wr.wr.rdma.remote_addr = \
729 rd->rmt_us[index].buf;
21b8aee8 730 r_io_u_d->sq_wr.sg_list->length = io_us[i]->buflen;
731 break;
732 case FIO_RDMA_CHA_SEND:
733 r_io_u_d = io_us[i]->engine_data;
734 r_io_u_d->sq_wr.opcode = IBV_WR_SEND;
735 r_io_u_d->sq_wr.send_flags = IBV_SEND_SIGNALED;
736 break;
737 default:
738 log_err("fio: unknown rdma protocol - %d\n",
739 rd->rdma_protocol);
740 break;
741 }
742
743 if (ibv_post_send(rd->qp, &r_io_u_d->sq_wr, &bad_wr) != 0) {
2a442a30 744 log_err("fio: ibv_post_send fail: %m\n");
21b8aee8 745 return -1;
746 }
747
748 dprint_io_u(io_us[i], "fio_rdmaio_send");
749 }
750
751 /* wait for completion
752 rdma_poll_wait(td, comp_opcode); */
753
754 return i;
755}
756
757static int fio_rdmaio_recv(struct thread_data *td, struct io_u **io_us,
758 unsigned int nr)
759{
565e784d 760 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 761 struct ibv_recv_wr *bad_wr;
762 struct rdma_io_u_data *r_io_u_d;
763 int i;
764
765 i = 0;
766 if (rd->rdma_protocol == FIO_RDMA_CHA_RECV) {
767 /* post io_u into recv queue */
768 for (i = 0; i < nr; i++) {
769 r_io_u_d = io_us[i]->engine_data;
770 if (ibv_post_recv(rd->qp, &r_io_u_d->rq_wr, &bad_wr) !=
771 0) {
2a442a30 772 log_err("fio: ibv_post_recv fail: %m\n");
21b8aee8 773 return 1;
774 }
775 }
776 } else if ((rd->rdma_protocol == FIO_RDMA_MEM_READ)
777 || (rd->rdma_protocol == FIO_RDMA_MEM_WRITE)) {
778 /* re-post the rq_wr */
779 if (ibv_post_recv(rd->qp, &rd->rq_wr, &bad_wr) != 0) {
2a442a30 780 log_err("fio: ibv_post_recv fail: %m\n");
21b8aee8 781 return 1;
782 }
783
784 rdma_poll_wait(td, IBV_WC_RECV);
785
786 dprint(FD_IO, "fio: recv FINISH message\n");
a05d62b2
YR
787 td->done = 1;
788 return 0;
21b8aee8 789 }
790
791 return i;
792}
793
d3b07186
BVA
794static enum fio_q_status
795fio_rdmaio_queue(struct thread_data *td, struct io_u *io_u)
21b8aee8 796{
565e784d 797 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 798
799 fio_ro_check(td, io_u);
800
801 if (rd->io_u_queued_nr == (int)td->o.iodepth)
802 return FIO_Q_BUSY;
803
804 rd->io_us_queued[rd->io_u_queued_nr] = io_u;
805 rd->io_u_queued_nr++;
806
807 dprint_io_u(io_u, "fio_rdmaio_queue");
808
809 return FIO_Q_QUEUED;
810}
811
812static void fio_rdmaio_queued(struct thread_data *td, struct io_u **io_us,
813 unsigned int nr)
814{
565e784d 815 struct rdmaio_data *rd = td->io_ops_data;
8b6a404c 816 struct timespec now;
21b8aee8 817 unsigned int i;
818
819 if (!fio_fill_issue_time(td))
820 return;
821
822 fio_gettime(&now, NULL);
823
824 for (i = 0; i < nr; i++) {
825 struct io_u *io_u = io_us[i];
826
827 /* queued -> flight */
828 rd->io_us_flight[rd->io_u_flight_nr] = io_u;
829 rd->io_u_flight_nr++;
830
831 memcpy(&io_u->issue_time, &now, sizeof(now));
832 io_u_queued(td, io_u);
833 }
834}
835
836static int fio_rdmaio_commit(struct thread_data *td)
837{
565e784d 838 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 839 struct io_u **io_us;
840 int ret;
841
842 if (!rd->io_us_queued)
843 return 0;
844
845 io_us = rd->io_us_queued;
846 do {
847 /* RDMA_WRITE or RDMA_READ */
222757cc 848 if (rd->is_client)
21b8aee8 849 ret = fio_rdmaio_send(td, io_us, rd->io_u_queued_nr);
222757cc 850 else if (!rd->is_client)
21b8aee8 851 ret = fio_rdmaio_recv(td, io_us, rd->io_u_queued_nr);
222757cc 852 else
21b8aee8 853 ret = 0; /* must be a SYNC */
854
855 if (ret > 0) {
856 fio_rdmaio_queued(td, io_us, ret);
857 io_u_mark_submit(td, ret);
858 rd->io_u_queued_nr -= ret;
859 io_us += ret;
860 ret = 0;
861 } else
862 break;
863 } while (rd->io_u_queued_nr);
864
865 return ret;
866}
867
868static int fio_rdmaio_connect(struct thread_data *td, struct fio_file *f)
869{
565e784d 870 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 871 struct rdma_conn_param conn_param;
872 struct ibv_send_wr *bad_wr;
873
222757cc 874 memset(&conn_param, 0, sizeof(conn_param));
21b8aee8 875 conn_param.responder_resources = 1;
876 conn_param.initiator_depth = 1;
877 conn_param.retry_count = 10;
878
879 if (rdma_connect(rd->cm_id, &conn_param) != 0) {
2a442a30 880 log_err("fio: rdma_connect fail: %m\n");
21b8aee8 881 return 1;
882 }
883
884 if (get_next_channel_event
885 (td, rd->cm_channel, RDMA_CM_EVENT_ESTABLISHED) != 0) {
886 log_err("fio: wait for RDMA_CM_EVENT_ESTABLISHED\n");
887 return 1;
888 }
889
890 /* send task request */
891 rd->send_buf.mode = htonl(rd->rdma_protocol);
892 rd->send_buf.nr = htonl(td->o.iodepth);
893
894 if (ibv_post_send(rd->qp, &rd->sq_wr, &bad_wr) != 0) {
c5839011 895 log_err("fio: ibv_post_send fail: %m\n");
21b8aee8 896 return 1;
897 }
898
c4421263
LG
899 if (rdma_poll_wait(td, IBV_WC_SEND) < 0)
900 return 1;
21b8aee8 901
902 /* wait for remote MR info from server side */
c4421263
LG
903 if (rdma_poll_wait(td, IBV_WC_RECV) < 0)
904 return 1;
21b8aee8 905
7d7803fa
YR
906 /* In SEND/RECV test, it's a good practice to setup the iodepth of
907 * of the RECV side deeper than that of the SEND side to
908 * avoid RNR (receiver not ready) error. The
222757cc 909 * SEND side may send so many unsolicited message before
7d7803fa
YR
910 * RECV side commits sufficient recv buffers into recv queue.
911 * This may lead to RNR error. Here, SEND side pauses for a while
912 * during which RECV side commits sufficient recv buffers.
913 */
914 usleep(500000);
915
21b8aee8 916 return 0;
917}
918
919static int fio_rdmaio_accept(struct thread_data *td, struct fio_file *f)
920{
565e784d 921 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 922 struct rdma_conn_param conn_param;
923 struct ibv_send_wr *bad_wr;
c4421263 924 int ret = 0;
21b8aee8 925
926 /* rdma_accept() - then wait for accept success */
222757cc 927 memset(&conn_param, 0, sizeof(conn_param));
21b8aee8 928 conn_param.responder_resources = 1;
929 conn_param.initiator_depth = 1;
930
931 if (rdma_accept(rd->child_cm_id, &conn_param) != 0) {
2a442a30 932 log_err("fio: rdma_accept: %m\n");
21b8aee8 933 return 1;
934 }
935
936 if (get_next_channel_event
937 (td, rd->cm_channel, RDMA_CM_EVENT_ESTABLISHED) != 0) {
938 log_err("fio: wait for RDMA_CM_EVENT_ESTABLISHED\n");
939 return 1;
940 }
941
942 /* wait for request */
c4421263 943 ret = rdma_poll_wait(td, IBV_WC_RECV) < 0;
21b8aee8 944
945 if (ibv_post_send(rd->qp, &rd->sq_wr, &bad_wr) != 0) {
c5839011 946 log_err("fio: ibv_post_send fail: %m\n");
21b8aee8 947 return 1;
948 }
949
c4421263
LG
950 if (rdma_poll_wait(td, IBV_WC_SEND) < 0)
951 return 1;
21b8aee8 952
c4421263 953 return ret;
21b8aee8 954}
955
956static int fio_rdmaio_open_file(struct thread_data *td, struct fio_file *f)
957{
958 if (td_read(td))
959 return fio_rdmaio_accept(td, f);
960 else
961 return fio_rdmaio_connect(td, f);
962}
963
964static int fio_rdmaio_close_file(struct thread_data *td, struct fio_file *f)
965{
565e784d 966 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 967 struct ibv_send_wr *bad_wr;
968
969 /* unregister rdma buffer */
970
971 /*
972 * Client sends notification to the server side
973 */
974 /* refer to: http://linux.die.net/man/7/rdma_cm */
975 if ((rd->is_client == 1) && ((rd->rdma_protocol == FIO_RDMA_MEM_WRITE)
976 || (rd->rdma_protocol ==
977 FIO_RDMA_MEM_READ))) {
978 if (ibv_post_send(rd->qp, &rd->sq_wr, &bad_wr) != 0) {
c5839011 979 log_err("fio: ibv_post_send fail: %m\n");
21b8aee8 980 return 1;
981 }
982
de8f6de9 983 dprint(FD_IO, "fio: close information sent success\n");
21b8aee8 984 rdma_poll_wait(td, IBV_WC_SEND);
985 }
986
987 if (rd->is_client == 1)
988 rdma_disconnect(rd->cm_id);
989 else {
990 rdma_disconnect(rd->child_cm_id);
222757cc
JA
991#if 0
992 rdma_disconnect(rd->cm_id);
993#endif
21b8aee8 994 }
995
222757cc
JA
996#if 0
997 if (get_next_channel_event(td, rd->cm_channel, RDMA_CM_EVENT_DISCONNECTED) != 0) {
998 log_err("fio: wait for RDMA_CM_EVENT_DISCONNECTED\n");
999 return 1;
1000 }
1001#endif
21b8aee8 1002
21b8aee8 1003 ibv_destroy_cq(rd->cq);
7d7803fa 1004 ibv_destroy_qp(rd->qp);
21b8aee8 1005
1006 if (rd->is_client == 1)
1007 rdma_destroy_id(rd->cm_id);
1008 else {
1009 rdma_destroy_id(rd->child_cm_id);
1010 rdma_destroy_id(rd->cm_id);
1011 }
1012
1013 ibv_destroy_comp_channel(rd->channel);
1014 ibv_dealloc_pd(rd->pd);
1015
1016 return 0;
1017}
1018
2f28bb35
SB
1019static int aton(struct thread_data *td, const char *host,
1020 struct sockaddr_in *addr)
1021{
1022 if (inet_aton(host, &addr->sin_addr) != 1) {
1023 struct hostent *hent;
1024
1025 hent = gethostbyname(host);
1026 if (!hent) {
1027 td_verror(td, errno, "gethostbyname");
1028 return 1;
1029 }
1030
1031 memcpy(&addr->sin_addr, hent->h_addr, 4);
1032 }
1033 return 0;
1034}
1035
21b8aee8 1036static int fio_rdmaio_setup_connect(struct thread_data *td, const char *host,
1037 unsigned short port)
1038{
565e784d 1039 struct rdmaio_data *rd = td->io_ops_data;
2f28bb35
SB
1040 struct rdmaio_options *o = td->eo;
1041 struct sockaddr_storage addrb;
21b8aee8 1042 struct ibv_recv_wr *bad_wr;
222757cc 1043 int err;
21b8aee8 1044
1045 rd->addr.sin_family = AF_INET;
1046 rd->addr.sin_port = htons(port);
1047
2f28bb35
SB
1048 err = aton(td, host, &rd->addr);
1049 if (err)
1050 return err;
21b8aee8 1051
2f28bb35
SB
1052 /* resolve route */
1053 if (strcmp(o->bindname, "") != 0) {
1054 addrb.ss_family = AF_INET;
1055 err = aton(td, o->bindname, (struct sockaddr_in *)&addrb);
1056 if (err)
1057 return err;
1058 err = rdma_resolve_addr(rd->cm_id, (struct sockaddr *)&addrb,
1059 (struct sockaddr *)&rd->addr, 2000);
21b8aee8 1060
2f28bb35
SB
1061 } else {
1062 err = rdma_resolve_addr(rd->cm_id, NULL,
1063 (struct sockaddr *)&rd->addr, 2000);
21b8aee8 1064 }
1065
222757cc
JA
1066 if (err != 0) {
1067 log_err("fio: rdma_resolve_addr: %d\n", err);
21b8aee8 1068 return 1;
1069 }
1070
222757cc
JA
1071 err = get_next_channel_event(td, rd->cm_channel, RDMA_CM_EVENT_ADDR_RESOLVED);
1072 if (err != 0) {
1073 log_err("fio: get_next_channel_event: %d\n", err);
21b8aee8 1074 return 1;
1075 }
1076
1077 /* resolve route */
222757cc
JA
1078 err = rdma_resolve_route(rd->cm_id, 2000);
1079 if (err != 0) {
1080 log_err("fio: rdma_resolve_route: %d\n", err);
21b8aee8 1081 return 1;
1082 }
1083
222757cc
JA
1084 err = get_next_channel_event(td, rd->cm_channel, RDMA_CM_EVENT_ROUTE_RESOLVED);
1085 if (err != 0) {
1086 log_err("fio: get_next_channel_event: %d\n", err);
21b8aee8 1087 return 1;
1088 }
1089
1090 /* create qp and buffer */
1091 if (fio_rdmaio_setup_qp(td) != 0)
1092 return 1;
1093
1094 if (fio_rdmaio_setup_control_msg_buffers(td) != 0)
1095 return 1;
1096
1097 /* post recv buf */
222757cc
JA
1098 err = ibv_post_recv(rd->qp, &rd->rq_wr, &bad_wr);
1099 if (err != 0) {
1100 log_err("fio: ibv_post_recv fail: %d\n", err);
21b8aee8 1101 return 1;
1102 }
1103
1104 return 0;
1105}
1106
1107static int fio_rdmaio_setup_listen(struct thread_data *td, short port)
1108{
565e784d 1109 struct rdmaio_data *rd = td->io_ops_data;
2f28bb35 1110 struct rdmaio_options *o = td->eo;
21b8aee8 1111 struct ibv_recv_wr *bad_wr;
263775ad
LG
1112 int state = td->runstate;
1113
1114 td_set_runstate(td, TD_SETTING_UP);
21b8aee8 1115
1116 rd->addr.sin_family = AF_INET;
21b8aee8 1117 rd->addr.sin_port = htons(port);
1118
2f28bb35
SB
1119 if (strcmp(o->bindname, "") == 0)
1120 rd->addr.sin_addr.s_addr = htonl(INADDR_ANY);
1121 else
1122 rd->addr.sin_addr.s_addr = htonl(*o->bindname);
1123
21b8aee8 1124 /* rdma_listen */
1125 if (rdma_bind_addr(rd->cm_id, (struct sockaddr *)&rd->addr) != 0) {
2a442a30 1126 log_err("fio: rdma_bind_addr fail: %m\n");
21b8aee8 1127 return 1;
1128 }
1129
1130 if (rdma_listen(rd->cm_id, 3) != 0) {
2a442a30 1131 log_err("fio: rdma_listen fail: %m\n");
21b8aee8 1132 return 1;
1133 }
1134
263775ad
LG
1135 log_info("fio: waiting for connection\n");
1136
21b8aee8 1137 /* wait for CONNECT_REQUEST */
1138 if (get_next_channel_event
1139 (td, rd->cm_channel, RDMA_CM_EVENT_CONNECT_REQUEST) != 0) {
1140 log_err("fio: wait for RDMA_CM_EVENT_CONNECT_REQUEST\n");
1141 return 1;
1142 }
1143
1144 if (fio_rdmaio_setup_qp(td) != 0)
1145 return 1;
1146
1147 if (fio_rdmaio_setup_control_msg_buffers(td) != 0)
1148 return 1;
1149
1150 /* post recv buf */
1151 if (ibv_post_recv(rd->qp, &rd->rq_wr, &bad_wr) != 0) {
2a442a30 1152 log_err("fio: ibv_post_recv fail: %m\n");
21b8aee8 1153 return 1;
1154 }
1155
263775ad 1156 td_set_runstate(td, state);
21b8aee8 1157 return 0;
1158}
1159
38b9354a 1160static int check_set_rlimits(struct thread_data *td)
21b8aee8 1161{
38b9354a 1162#ifdef CONFIG_RLIMIT_MEMLOCK
21b8aee8 1163 struct rlimit rl;
1164
21b8aee8 1165 /* check RLIMIT_MEMLOCK */
1166 if (getrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
1167 log_err("fio: getrlimit fail: %d(%s)\n",
1168 errno, strerror(errno));
1169 return 1;
1170 }
1171
1172 /* soft limit */
1173 if ((rl.rlim_cur != RLIM_INFINITY)
1174 && (rl.rlim_cur < td->orig_buffer_size)) {
e07f72d3
BVA
1175 log_err("fio: soft RLIMIT_MEMLOCK is: %" PRId64 "\n",
1176 rl.rlim_cur);
1177 log_err("fio: total block size is: %zd\n",
21b8aee8 1178 td->orig_buffer_size);
1179 /* try to set larger RLIMIT_MEMLOCK */
1180 rl.rlim_cur = rl.rlim_max;
1181 if (setrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
1182 log_err("fio: setrlimit fail: %d(%s)\n",
1183 errno, strerror(errno));
1184 log_err("fio: you may try enlarge MEMLOCK by root\n");
1185 log_err("# ulimit -l unlimited\n");
1186 return 1;
1187 }
1188 }
38b9354a
JA
1189#endif
1190
1191 return 0;
1192}
1193
cdf91594 1194static int compat_options(struct thread_data *td)
38b9354a 1195{
cdf91594
LG
1196 // The original RDMA engine had an ugly / seperator
1197 // on the filename for it's options. This function
2f28bb35
SB
1198 // retains backwards compatibility with it. Note we do not
1199 // support setting the bindname option is this legacy mode.
38b9354a 1200
cdf91594
LG
1201 struct rdmaio_options *o = td->eo;
1202 char *modep, *portp;
1203 char *filename = td->o.filename;
38b9354a 1204
cdf91594
LG
1205 if (!filename)
1206 return 0;
21b8aee8 1207
cdf91594
LG
1208 portp = strchr(filename, '/');
1209 if (portp == NULL)
1210 return 0;
21b8aee8 1211
cdf91594
LG
1212 *portp = '\0';
1213 portp++;
21b8aee8 1214
cdf91594
LG
1215 o->port = strtol(portp, NULL, 10);
1216 if (!o->port || o->port > 65535)
21b8aee8 1217 goto bad_host;
1218
cdf91594
LG
1219 modep = strchr(portp, '/');
1220 if (modep != NULL) {
1221 *modep = '\0';
1222 modep++;
21b8aee8 1223 }
1224
21b8aee8 1225 if (modep) {
1226 if (!strncmp("rdma_write", modep, strlen(modep)) ||
1227 !strncmp("RDMA_WRITE", modep, strlen(modep)))
cdf91594 1228 o->verb = FIO_RDMA_MEM_WRITE;
21b8aee8 1229 else if (!strncmp("rdma_read", modep, strlen(modep)) ||
1230 !strncmp("RDMA_READ", modep, strlen(modep)))
cdf91594 1231 o->verb = FIO_RDMA_MEM_READ;
21b8aee8 1232 else if (!strncmp("send", modep, strlen(modep)) ||
1233 !strncmp("SEND", modep, strlen(modep)))
cdf91594 1234 o->verb = FIO_RDMA_CHA_SEND;
21b8aee8 1235 else
1236 goto bad_host;
1237 } else
cdf91594
LG
1238 o->verb = FIO_RDMA_MEM_WRITE;
1239
1240
1241 return 0;
21b8aee8 1242
cdf91594
LG
1243bad_host:
1244 log_err("fio: bad rdma host/port/protocol: %s\n", td->o.filename);
1245 return 1;
1246}
1247
1248static int fio_rdmaio_init(struct thread_data *td)
1249{
565e784d 1250 struct rdmaio_data *rd = td->io_ops_data;
cdf91594
LG
1251 struct rdmaio_options *o = td->eo;
1252 unsigned int max_bs;
1253 int ret, i;
1254
1255 if (td_rw(td)) {
1256 log_err("fio: rdma connections must be read OR write\n");
1257 return 1;
1258 }
1259 if (td_random(td)) {
1260 log_err("fio: RDMA network IO can't be random\n");
1261 return 1;
1262 }
1263
1264 if (compat_options(td))
1265 return 1;
1266
1267 if (!o->port) {
1268 log_err("fio: no port has been specified which is required "
1269 "for the rdma engine\n");
1270 return 1;
1271 }
1272
1273 if (check_set_rlimits(td))
1274 return 1;
1275
1276 rd->rdma_protocol = o->verb;
21b8aee8 1277 rd->cq_event_num = 0;
1278
1279 rd->cm_channel = rdma_create_event_channel();
1280 if (!rd->cm_channel) {
2a442a30 1281 log_err("fio: rdma_create_event_channel fail: %m\n");
21b8aee8 1282 return 1;
1283 }
1284
1285 ret = rdma_create_id(rd->cm_channel, &rd->cm_id, rd, RDMA_PS_TCP);
1286 if (ret) {
2a442a30 1287 log_err("fio: rdma_create_id fail: %m\n");
21b8aee8 1288 return 1;
1289 }
1290
1291 if ((rd->rdma_protocol == FIO_RDMA_MEM_WRITE) ||
1292 (rd->rdma_protocol == FIO_RDMA_MEM_READ)) {
1293 rd->rmt_us =
76cc5224 1294 malloc(FIO_RDMA_MAX_IO_DEPTH * sizeof(struct remote_u));
21b8aee8 1295 memset(rd->rmt_us, 0,
76cc5224 1296 FIO_RDMA_MAX_IO_DEPTH * sizeof(struct remote_u));
21b8aee8 1297 rd->rmt_nr = 0;
1298 }
1299
1300 rd->io_us_queued = malloc(td->o.iodepth * sizeof(struct io_u *));
1301 memset(rd->io_us_queued, 0, td->o.iodepth * sizeof(struct io_u *));
1302 rd->io_u_queued_nr = 0;
1303
1304 rd->io_us_flight = malloc(td->o.iodepth * sizeof(struct io_u *));
1305 memset(rd->io_us_flight, 0, td->o.iodepth * sizeof(struct io_u *));
1306 rd->io_u_flight_nr = 0;
1307
1308 rd->io_us_completed = malloc(td->o.iodepth * sizeof(struct io_u *));
1309 memset(rd->io_us_completed, 0, td->o.iodepth * sizeof(struct io_u *));
1310 rd->io_u_completed_nr = 0;
1311
1312 if (td_read(td)) { /* READ as the server */
1313 rd->is_client = 0;
263775ad 1314 td->flags |= TD_F_NO_PROGRESS;
21b8aee8 1315 /* server rd->rdma_buf_len will be setup after got request */
cdf91594 1316 ret = fio_rdmaio_setup_listen(td, o->port);
21b8aee8 1317 } else { /* WRITE as the client */
1318 rd->is_client = 1;
cdf91594 1319 ret = fio_rdmaio_setup_connect(td, td->o.filename, o->port);
21b8aee8 1320 }
1321
21b8aee8 1322 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
c4421263
LG
1323 rd->send_buf.max_bs = htonl(max_bs);
1324
21b8aee8 1325 /* register each io_u in the free list */
954cd73a
YR
1326 for (i = 0; i < td->io_u_freelist.nr; i++) {
1327 struct io_u *io_u = td->io_u_freelist.io_us[i];
21b8aee8 1328
1329 io_u->engine_data = malloc(sizeof(struct rdma_io_u_data));
1330 memset(io_u->engine_data, 0, sizeof(struct rdma_io_u_data));
1331 ((struct rdma_io_u_data *)io_u->engine_data)->wr_id = i;
1332
1333 io_u->mr = ibv_reg_mr(rd->pd, io_u->buf, max_bs,
1334 IBV_ACCESS_LOCAL_WRITE |
1335 IBV_ACCESS_REMOTE_READ |
1336 IBV_ACCESS_REMOTE_WRITE);
1337 if (io_u->mr == NULL) {
2a442a30 1338 log_err("fio: ibv_reg_mr io_u failed: %m\n");
21b8aee8 1339 return 1;
1340 }
1341
1342 rd->send_buf.rmt_us[i].buf =
b747af64 1343 cpu_to_be64((uint64_t) (unsigned long)io_u->buf);
21b8aee8 1344 rd->send_buf.rmt_us[i].rkey = htonl(io_u->mr->rkey);
1345 rd->send_buf.rmt_us[i].size = htonl(max_bs);
1346
222757cc
JA
1347#if 0
1348 log_info("fio: Send rkey %x addr %" PRIx64 " len %d to client\n", io_u->mr->rkey, io_u->buf, max_bs); */
1349#endif
21b8aee8 1350 }
1351
1352 rd->send_buf.nr = htonl(i);
1353
1354 return ret;
21b8aee8 1355}
1356
1357static void fio_rdmaio_cleanup(struct thread_data *td)
1358{
565e784d 1359 struct rdmaio_data *rd = td->io_ops_data;
21b8aee8 1360
222757cc 1361 if (rd)
21b8aee8 1362 free(rd);
21b8aee8 1363}
1364
1365static int fio_rdmaio_setup(struct thread_data *td)
1366{
1367 struct rdmaio_data *rd;
1368
cdf91594
LG
1369 if (!td->files_index) {
1370 add_file(td, td->o.filename ?: "rdma", 0, 0);
1371 td->o.nr_files = td->o.nr_files ?: 1;
1372 td->o.open_files++;
1373 }
1374
565e784d 1375 if (!td->io_ops_data) {
222757cc 1376 rd = malloc(sizeof(*rd));
21b8aee8 1377
1378 memset(rd, 0, sizeof(*rd));
ec4dde59 1379 init_rand_seed(&rd->rand_state, (unsigned int) GOLDEN_RATIO_PRIME, 0);
565e784d 1380 td->io_ops_data = rd;
21b8aee8 1381 }
1382
1383 return 0;
1384}
1385
1386static struct ioengine_ops ioengine_rw = {
cdf91594
LG
1387 .name = "rdma",
1388 .version = FIO_IOOPS_VERSION,
1389 .setup = fio_rdmaio_setup,
1390 .init = fio_rdmaio_init,
1391 .prep = fio_rdmaio_prep,
1392 .queue = fio_rdmaio_queue,
1393 .commit = fio_rdmaio_commit,
1394 .getevents = fio_rdmaio_getevents,
1395 .event = fio_rdmaio_event,
1396 .cleanup = fio_rdmaio_cleanup,
1397 .open_file = fio_rdmaio_open_file,
1398 .close_file = fio_rdmaio_close_file,
1399 .flags = FIO_DISKLESSIO | FIO_UNIDIR | FIO_PIPEIO,
1400 .options = options,
1401 .option_struct_size = sizeof(struct rdmaio_options),
21b8aee8 1402};
1403
21b8aee8 1404static void fio_init fio_rdmaio_register(void)
1405{
1406 register_ioengine(&ioengine_rw);
1407}
1408
1409static void fio_exit fio_rdmaio_unregister(void)
1410{
1411 unregister_ioengine(&ioengine_rw);
1412}