2 * RDMA protocol and interfaces
4 * Copyright IBM, Corp. 2010-2013
7 * Michael R. Hines <mrhines@us.ibm.com>
8 * Jiuxing Liu <jl@us.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or
11 * later. See the COPYING file in the top-level directory.
14 #include "qemu-common.h"
15 #include "migration/migration.h"
16 #include "migration/qemu-file.h"
17 #include "exec/cpu-common.h"
18 #include "qemu/error-report.h"
19 #include "qemu/main-loop.h"
20 #include "qemu/sockets.h"
21 #include "qemu/bitmap.h"
22 #include "block/coroutine.h"
24 #include <sys/types.h>
25 #include <sys/socket.h>
27 #include <arpa/inet.h>
29 #include <rdma/rdma_cma.h>
33 * Print and error on both the Monitor and the Log file.
35 #define ERROR(errp, fmt, ...) \
37 fprintf(stderr, "RDMA ERROR: " fmt "\n", ## __VA_ARGS__); \
38 if (errp && (*(errp) == NULL)) { \
39 error_setg(errp, "RDMA ERROR: " fmt, ## __VA_ARGS__); \
43 #define RDMA_RESOLVE_TIMEOUT_MS 10000
45 /* Do not merge data if larger than this. */
46 #define RDMA_MERGE_MAX (2 * 1024 * 1024)
47 #define RDMA_SIGNALED_SEND_MAX (RDMA_MERGE_MAX / 4096)
49 #define RDMA_REG_CHUNK_SHIFT 20 /* 1 MB */
52 * This is only for non-live state being migrated.
53 * Instead of RDMA_WRITE messages, we use RDMA_SEND
54 * messages for that state, which requires a different
55 * delivery design than main memory.
57 #define RDMA_SEND_INCREMENT 32768
60 * Maximum size infiniband SEND message
62 #define RDMA_CONTROL_MAX_BUFFER (512 * 1024)
63 #define RDMA_CONTROL_MAX_COMMANDS_PER_MESSAGE 4096
65 #define RDMA_CONTROL_VERSION_CURRENT 1
67 * Capabilities for negotiation.
69 #define RDMA_CAPABILITY_PIN_ALL 0x01
72 * Add the other flags above to this list of known capabilities
73 * as they are introduced.
75 static uint32_t known_capabilities
= RDMA_CAPABILITY_PIN_ALL
;
77 #define CHECK_ERROR_STATE() \
79 if (rdma->error_state) { \
80 if (!rdma->error_reported) { \
81 error_report("RDMA is in an error state waiting migration" \
83 rdma->error_reported = 1; \
85 return rdma->error_state; \
90 * A work request ID is 64-bits and we split up these bits
93 * bits 0-15 : type of control message, 2^16
94 * bits 16-29: ram block index, 2^14
95 * bits 30-63: ram block chunk number, 2^34
97 * The last two bit ranges are only used for RDMA writes,
98 * in order to track their completion and potentially
99 * also track unregistration status of the message.
101 #define RDMA_WRID_TYPE_SHIFT 0UL
102 #define RDMA_WRID_BLOCK_SHIFT 16UL
103 #define RDMA_WRID_CHUNK_SHIFT 30UL
105 #define RDMA_WRID_TYPE_MASK \
106 ((1UL << RDMA_WRID_BLOCK_SHIFT) - 1UL)
108 #define RDMA_WRID_BLOCK_MASK \
109 (~RDMA_WRID_TYPE_MASK & ((1UL << RDMA_WRID_CHUNK_SHIFT) - 1UL))
111 #define RDMA_WRID_CHUNK_MASK (~RDMA_WRID_BLOCK_MASK & ~RDMA_WRID_TYPE_MASK)
114 * RDMA migration protocol:
115 * 1. RDMA Writes (data messages, i.e. RAM)
116 * 2. IB Send/Recv (control channel messages)
120 RDMA_WRID_RDMA_WRITE
= 1,
121 RDMA_WRID_SEND_CONTROL
= 2000,
122 RDMA_WRID_RECV_CONTROL
= 4000,
125 static const char *wrid_desc
[] = {
126 [RDMA_WRID_NONE
] = "NONE",
127 [RDMA_WRID_RDMA_WRITE
] = "WRITE RDMA",
128 [RDMA_WRID_SEND_CONTROL
] = "CONTROL SEND",
129 [RDMA_WRID_RECV_CONTROL
] = "CONTROL RECV",
133 * Work request IDs for IB SEND messages only (not RDMA writes).
134 * This is used by the migration protocol to transmit
135 * control messages (such as device state and registration commands)
137 * We could use more WRs, but we have enough for now.
147 * SEND/RECV IB Control Messages.
150 RDMA_CONTROL_NONE
= 0,
152 RDMA_CONTROL_READY
, /* ready to receive */
153 RDMA_CONTROL_QEMU_FILE
, /* QEMUFile-transmitted bytes */
154 RDMA_CONTROL_RAM_BLOCKS_REQUEST
, /* RAMBlock synchronization */
155 RDMA_CONTROL_RAM_BLOCKS_RESULT
, /* RAMBlock synchronization */
156 RDMA_CONTROL_COMPRESS
, /* page contains repeat values */
157 RDMA_CONTROL_REGISTER_REQUEST
, /* dynamic page registration */
158 RDMA_CONTROL_REGISTER_RESULT
, /* key to use after registration */
159 RDMA_CONTROL_REGISTER_FINISHED
, /* current iteration finished */
160 RDMA_CONTROL_UNREGISTER_REQUEST
, /* dynamic UN-registration */
161 RDMA_CONTROL_UNREGISTER_FINISHED
, /* unpinning finished */
164 static const char *control_desc
[] = {
165 [RDMA_CONTROL_NONE
] = "NONE",
166 [RDMA_CONTROL_ERROR
] = "ERROR",
167 [RDMA_CONTROL_READY
] = "READY",
168 [RDMA_CONTROL_QEMU_FILE
] = "QEMU FILE",
169 [RDMA_CONTROL_RAM_BLOCKS_REQUEST
] = "RAM BLOCKS REQUEST",
170 [RDMA_CONTROL_RAM_BLOCKS_RESULT
] = "RAM BLOCKS RESULT",
171 [RDMA_CONTROL_COMPRESS
] = "COMPRESS",
172 [RDMA_CONTROL_REGISTER_REQUEST
] = "REGISTER REQUEST",
173 [RDMA_CONTROL_REGISTER_RESULT
] = "REGISTER RESULT",
174 [RDMA_CONTROL_REGISTER_FINISHED
] = "REGISTER FINISHED",
175 [RDMA_CONTROL_UNREGISTER_REQUEST
] = "UNREGISTER REQUEST",
176 [RDMA_CONTROL_UNREGISTER_FINISHED
] = "UNREGISTER FINISHED",
180 * Memory and MR structures used to represent an IB Send/Recv work request.
181 * This is *not* used for RDMA writes, only IB Send/Recv.
184 uint8_t control
[RDMA_CONTROL_MAX_BUFFER
]; /* actual buffer to register */
185 struct ibv_mr
*control_mr
; /* registration metadata */
186 size_t control_len
; /* length of the message */
187 uint8_t *control_curr
; /* start of unconsumed bytes */
188 } RDMAWorkRequestData
;
191 * Negotiate RDMA capabilities during connection-setup time.
198 static void caps_to_network(RDMACapabilities
*cap
)
200 cap
->version
= htonl(cap
->version
);
201 cap
->flags
= htonl(cap
->flags
);
204 static void network_to_caps(RDMACapabilities
*cap
)
206 cap
->version
= ntohl(cap
->version
);
207 cap
->flags
= ntohl(cap
->flags
);
211 * Representation of a RAMBlock from an RDMA perspective.
212 * This is not transmitted, only local.
213 * This and subsequent structures cannot be linked lists
214 * because we're using a single IB message to transmit
215 * the information. It's small anyway, so a list is overkill.
217 typedef struct RDMALocalBlock
{
219 uint8_t *local_host_addr
; /* local virtual address */
220 uint64_t remote_host_addr
; /* remote virtual address */
223 struct ibv_mr
**pmr
; /* MRs for chunk-level registration */
224 struct ibv_mr
*mr
; /* MR for non-chunk-level registration */
225 uint32_t *remote_keys
; /* rkeys for chunk-level registration */
226 uint32_t remote_rkey
; /* rkeys for non-chunk-level registration */
227 int index
; /* which block are we */
228 unsigned int src_index
; /* (Only used on dest) */
231 unsigned long *transit_bitmap
;
232 unsigned long *unregister_bitmap
;
236 * Also represents a RAMblock, but only on the dest.
237 * This gets transmitted by the dest during connection-time
238 * to the source VM and then is used to populate the
239 * corresponding RDMALocalBlock with
240 * the information needed to perform the actual RDMA.
242 typedef struct QEMU_PACKED RDMADestBlock
{
243 uint64_t remote_host_addr
;
246 uint32_t remote_rkey
;
250 static uint64_t htonll(uint64_t v
)
252 union { uint32_t lv
[2]; uint64_t llv
; } u
;
253 u
.lv
[0] = htonl(v
>> 32);
254 u
.lv
[1] = htonl(v
& 0xFFFFFFFFULL
);
258 static uint64_t ntohll(uint64_t v
) {
259 union { uint32_t lv
[2]; uint64_t llv
; } u
;
261 return ((uint64_t)ntohl(u
.lv
[0]) << 32) | (uint64_t) ntohl(u
.lv
[1]);
264 static void dest_block_to_network(RDMADestBlock
*db
)
266 db
->remote_host_addr
= htonll(db
->remote_host_addr
);
267 db
->offset
= htonll(db
->offset
);
268 db
->length
= htonll(db
->length
);
269 db
->remote_rkey
= htonl(db
->remote_rkey
);
272 static void network_to_dest_block(RDMADestBlock
*db
)
274 db
->remote_host_addr
= ntohll(db
->remote_host_addr
);
275 db
->offset
= ntohll(db
->offset
);
276 db
->length
= ntohll(db
->length
);
277 db
->remote_rkey
= ntohl(db
->remote_rkey
);
281 * Virtual address of the above structures used for transmitting
282 * the RAMBlock descriptions at connection-time.
283 * This structure is *not* transmitted.
285 typedef struct RDMALocalBlocks
{
287 bool init
; /* main memory init complete */
288 RDMALocalBlock
*block
;
292 * Main data structure for RDMA state.
293 * While there is only one copy of this structure being allocated right now,
294 * this is the place where one would start if you wanted to consider
295 * having more than one RDMA connection open at the same time.
297 typedef struct RDMAContext
{
301 RDMAWorkRequestData wr_data
[RDMA_WRID_MAX
];
304 * This is used by *_exchange_send() to figure out whether or not
305 * the initial "READY" message has already been received or not.
306 * This is because other functions may potentially poll() and detect
307 * the READY message before send() does, in which case we need to
308 * know if it completed.
310 int control_ready_expected
;
312 /* number of outstanding writes */
315 /* store info about current buffer so that we can
316 merge it with future sends */
317 uint64_t current_addr
;
318 uint64_t current_length
;
319 /* index of ram block the current buffer belongs to */
321 /* index of the chunk in the current ram block */
327 * infiniband-specific variables for opening the device
328 * and maintaining connection state and so forth.
330 * cm_id also has ibv_context, rdma_event_channel, and ibv_qp in
331 * cm_id->verbs, cm_id->channel, and cm_id->qp.
333 struct rdma_cm_id
*cm_id
; /* connection manager ID */
334 struct rdma_cm_id
*listen_id
;
337 struct ibv_context
*verbs
;
338 struct rdma_event_channel
*channel
;
339 struct ibv_qp
*qp
; /* queue pair */
340 struct ibv_comp_channel
*comp_channel
; /* completion channel */
341 struct ibv_pd
*pd
; /* protection domain */
342 struct ibv_cq
*cq
; /* completion queue */
345 * If a previous write failed (perhaps because of a failed
346 * memory registration, then do not attempt any future work
347 * and remember the error state.
353 * Description of ram blocks used throughout the code.
355 RDMALocalBlocks local_ram_blocks
;
356 RDMADestBlock
*dest_blocks
;
358 /* Index of the next RAMBlock received during block registration */
359 unsigned int next_src_index
;
362 * Migration on *destination* started.
363 * Then use coroutine yield function.
364 * Source runs in a thread, so we don't care.
366 int migration_started_on_destination
;
368 int total_registrations
;
371 int unregister_current
, unregister_next
;
372 uint64_t unregistrations
[RDMA_SIGNALED_SEND_MAX
];
374 GHashTable
*blockmap
;
378 * Interface to the rest of the migration call stack.
380 typedef struct QEMUFileRDMA
{
387 * Main structure for IB Send/Recv control messages.
388 * This gets prepended at the beginning of every Send/Recv.
390 typedef struct QEMU_PACKED
{
391 uint32_t len
; /* Total length of data portion */
392 uint32_t type
; /* which control command to perform */
393 uint32_t repeat
; /* number of commands in data portion of same type */
397 static void control_to_network(RDMAControlHeader
*control
)
399 control
->type
= htonl(control
->type
);
400 control
->len
= htonl(control
->len
);
401 control
->repeat
= htonl(control
->repeat
);
404 static void network_to_control(RDMAControlHeader
*control
)
406 control
->type
= ntohl(control
->type
);
407 control
->len
= ntohl(control
->len
);
408 control
->repeat
= ntohl(control
->repeat
);
412 * Register a single Chunk.
413 * Information sent by the source VM to inform the dest
414 * to register an single chunk of memory before we can perform
415 * the actual RDMA operation.
417 typedef struct QEMU_PACKED
{
419 uint64_t current_addr
; /* offset into the ram_addr_t space */
420 uint64_t chunk
; /* chunk to lookup if unregistering */
422 uint32_t current_index
; /* which ramblock the chunk belongs to */
424 uint64_t chunks
; /* how many sequential chunks to register */
427 static void register_to_network(RDMAContext
*rdma
, RDMARegister
*reg
)
429 RDMALocalBlock
*local_block
;
430 local_block
= &rdma
->local_ram_blocks
.block
[reg
->current_index
];
432 if (local_block
->is_ram_block
) {
434 * current_addr as passed in is an address in the local ram_addr_t
435 * space, we need to translate this for the destination
437 reg
->key
.current_addr
-= local_block
->offset
;
438 reg
->key
.current_addr
+= rdma
->dest_blocks
[reg
->current_index
].offset
;
440 reg
->key
.current_addr
= htonll(reg
->key
.current_addr
);
441 reg
->current_index
= htonl(reg
->current_index
);
442 reg
->chunks
= htonll(reg
->chunks
);
445 static void network_to_register(RDMARegister
*reg
)
447 reg
->key
.current_addr
= ntohll(reg
->key
.current_addr
);
448 reg
->current_index
= ntohl(reg
->current_index
);
449 reg
->chunks
= ntohll(reg
->chunks
);
452 typedef struct QEMU_PACKED
{
453 uint32_t value
; /* if zero, we will madvise() */
454 uint32_t block_idx
; /* which ram block index */
455 uint64_t offset
; /* Address in remote ram_addr_t space */
456 uint64_t length
; /* length of the chunk */
459 static void compress_to_network(RDMAContext
*rdma
, RDMACompress
*comp
)
461 comp
->value
= htonl(comp
->value
);
463 * comp->offset as passed in is an address in the local ram_addr_t
464 * space, we need to translate this for the destination
466 comp
->offset
-= rdma
->local_ram_blocks
.block
[comp
->block_idx
].offset
;
467 comp
->offset
+= rdma
->dest_blocks
[comp
->block_idx
].offset
;
468 comp
->block_idx
= htonl(comp
->block_idx
);
469 comp
->offset
= htonll(comp
->offset
);
470 comp
->length
= htonll(comp
->length
);
473 static void network_to_compress(RDMACompress
*comp
)
475 comp
->value
= ntohl(comp
->value
);
476 comp
->block_idx
= ntohl(comp
->block_idx
);
477 comp
->offset
= ntohll(comp
->offset
);
478 comp
->length
= ntohll(comp
->length
);
482 * The result of the dest's memory registration produces an "rkey"
483 * which the source VM must reference in order to perform
484 * the RDMA operation.
486 typedef struct QEMU_PACKED
{
490 } RDMARegisterResult
;
492 static void result_to_network(RDMARegisterResult
*result
)
494 result
->rkey
= htonl(result
->rkey
);
495 result
->host_addr
= htonll(result
->host_addr
);
498 static void network_to_result(RDMARegisterResult
*result
)
500 result
->rkey
= ntohl(result
->rkey
);
501 result
->host_addr
= ntohll(result
->host_addr
);
504 const char *print_wrid(int wrid
);
505 static int qemu_rdma_exchange_send(RDMAContext
*rdma
, RDMAControlHeader
*head
,
506 uint8_t *data
, RDMAControlHeader
*resp
,
508 int (*callback
)(RDMAContext
*rdma
));
510 static inline uint64_t ram_chunk_index(const uint8_t *start
,
513 return ((uintptr_t) host
- (uintptr_t) start
) >> RDMA_REG_CHUNK_SHIFT
;
516 static inline uint8_t *ram_chunk_start(const RDMALocalBlock
*rdma_ram_block
,
519 return (uint8_t *)(uintptr_t)(rdma_ram_block
->local_host_addr
+
520 (i
<< RDMA_REG_CHUNK_SHIFT
));
523 static inline uint8_t *ram_chunk_end(const RDMALocalBlock
*rdma_ram_block
,
526 uint8_t *result
= ram_chunk_start(rdma_ram_block
, i
) +
527 (1UL << RDMA_REG_CHUNK_SHIFT
);
529 if (result
> (rdma_ram_block
->local_host_addr
+ rdma_ram_block
->length
)) {
530 result
= rdma_ram_block
->local_host_addr
+ rdma_ram_block
->length
;
536 static int rdma_add_block(RDMAContext
*rdma
, const char *block_name
,
538 ram_addr_t block_offset
, uint64_t length
)
540 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
541 RDMALocalBlock
*block
;
542 RDMALocalBlock
*old
= local
->block
;
544 local
->block
= g_malloc0(sizeof(RDMALocalBlock
) * (local
->nb_blocks
+ 1));
546 if (local
->nb_blocks
) {
549 if (rdma
->blockmap
) {
550 for (x
= 0; x
< local
->nb_blocks
; x
++) {
551 g_hash_table_remove(rdma
->blockmap
,
552 (void *)(uintptr_t)old
[x
].offset
);
553 g_hash_table_insert(rdma
->blockmap
,
554 (void *)(uintptr_t)old
[x
].offset
,
558 memcpy(local
->block
, old
, sizeof(RDMALocalBlock
) * local
->nb_blocks
);
562 block
= &local
->block
[local
->nb_blocks
];
564 block
->block_name
= g_strdup(block_name
);
565 block
->local_host_addr
= host_addr
;
566 block
->offset
= block_offset
;
567 block
->length
= length
;
568 block
->index
= local
->nb_blocks
;
569 block
->src_index
= ~0U; /* Filled in by the receipt of the block list */
570 block
->nb_chunks
= ram_chunk_index(host_addr
, host_addr
+ length
) + 1UL;
571 block
->transit_bitmap
= bitmap_new(block
->nb_chunks
);
572 bitmap_clear(block
->transit_bitmap
, 0, block
->nb_chunks
);
573 block
->unregister_bitmap
= bitmap_new(block
->nb_chunks
);
574 bitmap_clear(block
->unregister_bitmap
, 0, block
->nb_chunks
);
575 block
->remote_keys
= g_malloc0(block
->nb_chunks
* sizeof(uint32_t));
577 block
->is_ram_block
= local
->init
? false : true;
579 if (rdma
->blockmap
) {
580 g_hash_table_insert(rdma
->blockmap
, (void *) block_offset
, block
);
583 trace_rdma_add_block(block_name
, local
->nb_blocks
,
584 (uintptr_t) block
->local_host_addr
,
585 block
->offset
, block
->length
,
586 (uintptr_t) (block
->local_host_addr
+ block
->length
),
587 BITS_TO_LONGS(block
->nb_chunks
) *
588 sizeof(unsigned long) * 8,
597 * Memory regions need to be registered with the device and queue pairs setup
598 * in advanced before the migration starts. This tells us where the RAM blocks
599 * are so that we can register them individually.
601 static int qemu_rdma_init_one_block(const char *block_name
, void *host_addr
,
602 ram_addr_t block_offset
, ram_addr_t length
, void *opaque
)
604 return rdma_add_block(opaque
, block_name
, host_addr
, block_offset
, length
);
608 * Identify the RAMBlocks and their quantity. They will be references to
609 * identify chunk boundaries inside each RAMBlock and also be referenced
610 * during dynamic page registration.
612 static int qemu_rdma_init_ram_blocks(RDMAContext
*rdma
)
614 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
616 assert(rdma
->blockmap
== NULL
);
617 memset(local
, 0, sizeof *local
);
618 qemu_ram_foreach_block(qemu_rdma_init_one_block
, rdma
);
619 trace_qemu_rdma_init_ram_blocks(local
->nb_blocks
);
620 rdma
->dest_blocks
= (RDMADestBlock
*) g_malloc0(sizeof(RDMADestBlock
) *
621 rdma
->local_ram_blocks
.nb_blocks
);
627 * Note: If used outside of cleanup, the caller must ensure that the destination
628 * block structures are also updated
630 static int rdma_delete_block(RDMAContext
*rdma
, RDMALocalBlock
*block
)
632 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
633 RDMALocalBlock
*old
= local
->block
;
636 if (rdma
->blockmap
) {
637 g_hash_table_remove(rdma
->blockmap
, (void *)(uintptr_t)block
->offset
);
642 for (j
= 0; j
< block
->nb_chunks
; j
++) {
643 if (!block
->pmr
[j
]) {
646 ibv_dereg_mr(block
->pmr
[j
]);
647 rdma
->total_registrations
--;
654 ibv_dereg_mr(block
->mr
);
655 rdma
->total_registrations
--;
659 g_free(block
->transit_bitmap
);
660 block
->transit_bitmap
= NULL
;
662 g_free(block
->unregister_bitmap
);
663 block
->unregister_bitmap
= NULL
;
665 g_free(block
->remote_keys
);
666 block
->remote_keys
= NULL
;
668 g_free(block
->block_name
);
669 block
->block_name
= NULL
;
671 if (rdma
->blockmap
) {
672 for (x
= 0; x
< local
->nb_blocks
; x
++) {
673 g_hash_table_remove(rdma
->blockmap
,
674 (void *)(uintptr_t)old
[x
].offset
);
678 if (local
->nb_blocks
> 1) {
680 local
->block
= g_malloc0(sizeof(RDMALocalBlock
) *
681 (local
->nb_blocks
- 1));
684 memcpy(local
->block
, old
, sizeof(RDMALocalBlock
) * block
->index
);
687 if (block
->index
< (local
->nb_blocks
- 1)) {
688 memcpy(local
->block
+ block
->index
, old
+ (block
->index
+ 1),
689 sizeof(RDMALocalBlock
) *
690 (local
->nb_blocks
- (block
->index
+ 1)));
693 assert(block
== local
->block
);
697 trace_rdma_delete_block(block
, (uintptr_t)block
->local_host_addr
,
698 block
->offset
, block
->length
,
699 (uintptr_t)(block
->local_host_addr
+ block
->length
),
700 BITS_TO_LONGS(block
->nb_chunks
) *
701 sizeof(unsigned long) * 8, block
->nb_chunks
);
707 if (local
->nb_blocks
&& rdma
->blockmap
) {
708 for (x
= 0; x
< local
->nb_blocks
; x
++) {
709 g_hash_table_insert(rdma
->blockmap
,
710 (void *)(uintptr_t)local
->block
[x
].offset
,
719 * Put in the log file which RDMA device was opened and the details
720 * associated with that device.
722 static void qemu_rdma_dump_id(const char *who
, struct ibv_context
*verbs
)
724 struct ibv_port_attr port
;
726 if (ibv_query_port(verbs
, 1, &port
)) {
727 error_report("Failed to query port information");
731 printf("%s RDMA Device opened: kernel name %s "
732 "uverbs device name %s, "
733 "infiniband_verbs class device path %s, "
734 "infiniband class device path %s, "
735 "transport: (%d) %s\n",
738 verbs
->device
->dev_name
,
739 verbs
->device
->dev_path
,
740 verbs
->device
->ibdev_path
,
742 (port
.link_layer
== IBV_LINK_LAYER_INFINIBAND
) ? "Infiniband" :
743 ((port
.link_layer
== IBV_LINK_LAYER_ETHERNET
)
744 ? "Ethernet" : "Unknown"));
748 * Put in the log file the RDMA gid addressing information,
749 * useful for folks who have trouble understanding the
750 * RDMA device hierarchy in the kernel.
752 static void qemu_rdma_dump_gid(const char *who
, struct rdma_cm_id
*id
)
756 inet_ntop(AF_INET6
, &id
->route
.addr
.addr
.ibaddr
.sgid
, sgid
, sizeof sgid
);
757 inet_ntop(AF_INET6
, &id
->route
.addr
.addr
.ibaddr
.dgid
, dgid
, sizeof dgid
);
758 trace_qemu_rdma_dump_gid(who
, sgid
, dgid
);
762 * As of now, IPv6 over RoCE / iWARP is not supported by linux.
763 * We will try the next addrinfo struct, and fail if there are
764 * no other valid addresses to bind against.
766 * If user is listening on '[::]', then we will not have a opened a device
767 * yet and have no way of verifying if the device is RoCE or not.
769 * In this case, the source VM will throw an error for ALL types of
770 * connections (both IPv4 and IPv6) if the destination machine does not have
771 * a regular infiniband network available for use.
773 * The only way to guarantee that an error is thrown for broken kernels is
774 * for the management software to choose a *specific* interface at bind time
775 * and validate what time of hardware it is.
777 * Unfortunately, this puts the user in a fix:
779 * If the source VM connects with an IPv4 address without knowing that the
780 * destination has bound to '[::]' the migration will unconditionally fail
781 * unless the management software is explicitly listening on the IPv4
782 * address while using a RoCE-based device.
784 * If the source VM connects with an IPv6 address, then we're OK because we can
785 * throw an error on the source (and similarly on the destination).
787 * But in mixed environments, this will be broken for a while until it is fixed
790 * We do provide a *tiny* bit of help in this function: We can list all of the
791 * devices in the system and check to see if all the devices are RoCE or
794 * If we detect that we have a *pure* RoCE environment, then we can safely
795 * thrown an error even if the management software has specified '[::]' as the
798 * However, if there is are multiple hetergeneous devices, then we cannot make
799 * this assumption and the user just has to be sure they know what they are
802 * Patches are being reviewed on linux-rdma.
804 static int qemu_rdma_broken_ipv6_kernel(Error
**errp
, struct ibv_context
*verbs
)
806 struct ibv_port_attr port_attr
;
808 /* This bug only exists in linux, to our knowledge. */
812 * Verbs are only NULL if management has bound to '[::]'.
814 * Let's iterate through all the devices and see if there any pure IB
815 * devices (non-ethernet).
817 * If not, then we can safely proceed with the migration.
818 * Otherwise, there are no guarantees until the bug is fixed in linux.
822 struct ibv_device
** dev_list
= ibv_get_device_list(&num_devices
);
823 bool roce_found
= false;
824 bool ib_found
= false;
826 for (x
= 0; x
< num_devices
; x
++) {
827 verbs
= ibv_open_device(dev_list
[x
]);
829 if (errno
== EPERM
) {
836 if (ibv_query_port(verbs
, 1, &port_attr
)) {
837 ibv_close_device(verbs
);
838 ERROR(errp
, "Could not query initial IB port");
842 if (port_attr
.link_layer
== IBV_LINK_LAYER_INFINIBAND
) {
844 } else if (port_attr
.link_layer
== IBV_LINK_LAYER_ETHERNET
) {
848 ibv_close_device(verbs
);
854 fprintf(stderr
, "WARN: migrations may fail:"
855 " IPv6 over RoCE / iWARP in linux"
856 " is broken. But since you appear to have a"
857 " mixed RoCE / IB environment, be sure to only"
858 " migrate over the IB fabric until the kernel "
859 " fixes the bug.\n");
861 ERROR(errp
, "You only have RoCE / iWARP devices in your systems"
862 " and your management software has specified '[::]'"
863 ", but IPv6 over RoCE / iWARP is not supported in Linux.");
872 * If we have a verbs context, that means that some other than '[::]' was
873 * used by the management software for binding. In which case we can
874 * actually warn the user about a potentially broken kernel.
877 /* IB ports start with 1, not 0 */
878 if (ibv_query_port(verbs
, 1, &port_attr
)) {
879 ERROR(errp
, "Could not query initial IB port");
883 if (port_attr
.link_layer
== IBV_LINK_LAYER_ETHERNET
) {
884 ERROR(errp
, "Linux kernel's RoCE / iWARP does not support IPv6 "
885 "(but patches on linux-rdma in progress)");
895 * Figure out which RDMA device corresponds to the requested IP hostname
896 * Also create the initial connection manager identifiers for opening
899 static int qemu_rdma_resolve_host(RDMAContext
*rdma
, Error
**errp
)
902 struct rdma_addrinfo
*res
;
904 struct rdma_cm_event
*cm_event
;
905 char ip
[40] = "unknown";
906 struct rdma_addrinfo
*e
;
908 if (rdma
->host
== NULL
|| !strcmp(rdma
->host
, "")) {
909 ERROR(errp
, "RDMA hostname has not been set");
913 /* create CM channel */
914 rdma
->channel
= rdma_create_event_channel();
915 if (!rdma
->channel
) {
916 ERROR(errp
, "could not create CM channel");
921 ret
= rdma_create_id(rdma
->channel
, &rdma
->cm_id
, NULL
, RDMA_PS_TCP
);
923 ERROR(errp
, "could not create channel id");
924 goto err_resolve_create_id
;
927 snprintf(port_str
, 16, "%d", rdma
->port
);
930 ret
= rdma_getaddrinfo(rdma
->host
, port_str
, NULL
, &res
);
932 ERROR(errp
, "could not rdma_getaddrinfo address %s", rdma
->host
);
933 goto err_resolve_get_addr
;
936 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
937 inet_ntop(e
->ai_family
,
938 &((struct sockaddr_in
*) e
->ai_dst_addr
)->sin_addr
, ip
, sizeof ip
);
939 trace_qemu_rdma_resolve_host_trying(rdma
->host
, ip
);
941 ret
= rdma_resolve_addr(rdma
->cm_id
, NULL
, e
->ai_dst_addr
,
942 RDMA_RESOLVE_TIMEOUT_MS
);
944 if (e
->ai_family
== AF_INET6
) {
945 ret
= qemu_rdma_broken_ipv6_kernel(errp
, rdma
->cm_id
->verbs
);
954 ERROR(errp
, "could not resolve address %s", rdma
->host
);
955 goto err_resolve_get_addr
;
958 qemu_rdma_dump_gid("source_resolve_addr", rdma
->cm_id
);
960 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
962 ERROR(errp
, "could not perform event_addr_resolved");
963 goto err_resolve_get_addr
;
966 if (cm_event
->event
!= RDMA_CM_EVENT_ADDR_RESOLVED
) {
967 ERROR(errp
, "result not equal to event_addr_resolved %s",
968 rdma_event_str(cm_event
->event
));
969 perror("rdma_resolve_addr");
970 rdma_ack_cm_event(cm_event
);
972 goto err_resolve_get_addr
;
974 rdma_ack_cm_event(cm_event
);
977 ret
= rdma_resolve_route(rdma
->cm_id
, RDMA_RESOLVE_TIMEOUT_MS
);
979 ERROR(errp
, "could not resolve rdma route");
980 goto err_resolve_get_addr
;
983 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
985 ERROR(errp
, "could not perform event_route_resolved");
986 goto err_resolve_get_addr
;
988 if (cm_event
->event
!= RDMA_CM_EVENT_ROUTE_RESOLVED
) {
989 ERROR(errp
, "result not equal to event_route_resolved: %s",
990 rdma_event_str(cm_event
->event
));
991 rdma_ack_cm_event(cm_event
);
993 goto err_resolve_get_addr
;
995 rdma_ack_cm_event(cm_event
);
996 rdma
->verbs
= rdma
->cm_id
->verbs
;
997 qemu_rdma_dump_id("source_resolve_host", rdma
->cm_id
->verbs
);
998 qemu_rdma_dump_gid("source_resolve_host", rdma
->cm_id
);
1001 err_resolve_get_addr
:
1002 rdma_destroy_id(rdma
->cm_id
);
1004 err_resolve_create_id
:
1005 rdma_destroy_event_channel(rdma
->channel
);
1006 rdma
->channel
= NULL
;
1011 * Create protection domain and completion queues
1013 static int qemu_rdma_alloc_pd_cq(RDMAContext
*rdma
)
1016 rdma
->pd
= ibv_alloc_pd(rdma
->verbs
);
1018 error_report("failed to allocate protection domain");
1022 /* create completion channel */
1023 rdma
->comp_channel
= ibv_create_comp_channel(rdma
->verbs
);
1024 if (!rdma
->comp_channel
) {
1025 error_report("failed to allocate completion channel");
1026 goto err_alloc_pd_cq
;
1030 * Completion queue can be filled by both read and write work requests,
1031 * so must reflect the sum of both possible queue sizes.
1033 rdma
->cq
= ibv_create_cq(rdma
->verbs
, (RDMA_SIGNALED_SEND_MAX
* 3),
1034 NULL
, rdma
->comp_channel
, 0);
1036 error_report("failed to allocate completion queue");
1037 goto err_alloc_pd_cq
;
1044 ibv_dealloc_pd(rdma
->pd
);
1046 if (rdma
->comp_channel
) {
1047 ibv_destroy_comp_channel(rdma
->comp_channel
);
1050 rdma
->comp_channel
= NULL
;
1056 * Create queue pairs.
1058 static int qemu_rdma_alloc_qp(RDMAContext
*rdma
)
1060 struct ibv_qp_init_attr attr
= { 0 };
1063 attr
.cap
.max_send_wr
= RDMA_SIGNALED_SEND_MAX
;
1064 attr
.cap
.max_recv_wr
= 3;
1065 attr
.cap
.max_send_sge
= 1;
1066 attr
.cap
.max_recv_sge
= 1;
1067 attr
.send_cq
= rdma
->cq
;
1068 attr
.recv_cq
= rdma
->cq
;
1069 attr
.qp_type
= IBV_QPT_RC
;
1071 ret
= rdma_create_qp(rdma
->cm_id
, rdma
->pd
, &attr
);
1076 rdma
->qp
= rdma
->cm_id
->qp
;
1080 static int qemu_rdma_reg_whole_ram_blocks(RDMAContext
*rdma
)
1083 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
1085 for (i
= 0; i
< local
->nb_blocks
; i
++) {
1086 local
->block
[i
].mr
=
1087 ibv_reg_mr(rdma
->pd
,
1088 local
->block
[i
].local_host_addr
,
1089 local
->block
[i
].length
,
1090 IBV_ACCESS_LOCAL_WRITE
|
1091 IBV_ACCESS_REMOTE_WRITE
1093 if (!local
->block
[i
].mr
) {
1094 perror("Failed to register local dest ram block!\n");
1097 rdma
->total_registrations
++;
1100 if (i
>= local
->nb_blocks
) {
1104 for (i
--; i
>= 0; i
--) {
1105 ibv_dereg_mr(local
->block
[i
].mr
);
1106 rdma
->total_registrations
--;
1114 * Find the ram block that corresponds to the page requested to be
1115 * transmitted by QEMU.
1117 * Once the block is found, also identify which 'chunk' within that
1118 * block that the page belongs to.
1120 * This search cannot fail or the migration will fail.
1122 static int qemu_rdma_search_ram_block(RDMAContext
*rdma
,
1123 uintptr_t block_offset
,
1126 uint64_t *block_index
,
1127 uint64_t *chunk_index
)
1129 uint64_t current_addr
= block_offset
+ offset
;
1130 RDMALocalBlock
*block
= g_hash_table_lookup(rdma
->blockmap
,
1131 (void *) block_offset
);
1133 assert(current_addr
>= block
->offset
);
1134 assert((current_addr
+ length
) <= (block
->offset
+ block
->length
));
1136 *block_index
= block
->index
;
1137 *chunk_index
= ram_chunk_index(block
->local_host_addr
,
1138 block
->local_host_addr
+ (current_addr
- block
->offset
));
1144 * Register a chunk with IB. If the chunk was already registered
1145 * previously, then skip.
1147 * Also return the keys associated with the registration needed
1148 * to perform the actual RDMA operation.
1150 static int qemu_rdma_register_and_get_keys(RDMAContext
*rdma
,
1151 RDMALocalBlock
*block
, uintptr_t host_addr
,
1152 uint32_t *lkey
, uint32_t *rkey
, int chunk
,
1153 uint8_t *chunk_start
, uint8_t *chunk_end
)
1157 *lkey
= block
->mr
->lkey
;
1160 *rkey
= block
->mr
->rkey
;
1165 /* allocate memory to store chunk MRs */
1167 block
->pmr
= g_malloc0(block
->nb_chunks
* sizeof(struct ibv_mr
*));
1171 * If 'rkey', then we're the destination, so grant access to the source.
1173 * If 'lkey', then we're the source VM, so grant access only to ourselves.
1175 if (!block
->pmr
[chunk
]) {
1176 uint64_t len
= chunk_end
- chunk_start
;
1178 trace_qemu_rdma_register_and_get_keys(len
, chunk_start
);
1180 block
->pmr
[chunk
] = ibv_reg_mr(rdma
->pd
,
1182 (rkey
? (IBV_ACCESS_LOCAL_WRITE
|
1183 IBV_ACCESS_REMOTE_WRITE
) : 0));
1185 if (!block
->pmr
[chunk
]) {
1186 perror("Failed to register chunk!");
1187 fprintf(stderr
, "Chunk details: block: %d chunk index %d"
1188 " start %" PRIuPTR
" end %" PRIuPTR
1190 " local %" PRIuPTR
" registrations: %d\n",
1191 block
->index
, chunk
, (uintptr_t)chunk_start
,
1192 (uintptr_t)chunk_end
, host_addr
,
1193 (uintptr_t)block
->local_host_addr
,
1194 rdma
->total_registrations
);
1197 rdma
->total_registrations
++;
1201 *lkey
= block
->pmr
[chunk
]->lkey
;
1204 *rkey
= block
->pmr
[chunk
]->rkey
;
1210 * Register (at connection time) the memory used for control
1213 static int qemu_rdma_reg_control(RDMAContext
*rdma
, int idx
)
1215 rdma
->wr_data
[idx
].control_mr
= ibv_reg_mr(rdma
->pd
,
1216 rdma
->wr_data
[idx
].control
, RDMA_CONTROL_MAX_BUFFER
,
1217 IBV_ACCESS_LOCAL_WRITE
| IBV_ACCESS_REMOTE_WRITE
);
1218 if (rdma
->wr_data
[idx
].control_mr
) {
1219 rdma
->total_registrations
++;
1222 error_report("qemu_rdma_reg_control failed");
1226 const char *print_wrid(int wrid
)
1228 if (wrid
>= RDMA_WRID_RECV_CONTROL
) {
1229 return wrid_desc
[RDMA_WRID_RECV_CONTROL
];
1231 return wrid_desc
[wrid
];
1235 * RDMA requires memory registration (mlock/pinning), but this is not good for
1238 * In preparation for the future where LRU information or workload-specific
1239 * writable writable working set memory access behavior is available to QEMU
1240 * it would be nice to have in place the ability to UN-register/UN-pin
1241 * particular memory regions from the RDMA hardware when it is determine that
1242 * those regions of memory will likely not be accessed again in the near future.
1244 * While we do not yet have such information right now, the following
1245 * compile-time option allows us to perform a non-optimized version of this
1248 * By uncommenting this option, you will cause *all* RDMA transfers to be
1249 * unregistered immediately after the transfer completes on both sides of the
1250 * connection. This has no effect in 'rdma-pin-all' mode, only regular mode.
1252 * This will have a terrible impact on migration performance, so until future
1253 * workload information or LRU information is available, do not attempt to use
1254 * this feature except for basic testing.
1256 //#define RDMA_UNREGISTRATION_EXAMPLE
1259 * Perform a non-optimized memory unregistration after every transfer
1260 * for demonstration purposes, only if pin-all is not requested.
1262 * Potential optimizations:
1263 * 1. Start a new thread to run this function continuously
1265 - and for receipt of unregister messages
1267 * 3. Use workload hints.
1269 static int qemu_rdma_unregister_waiting(RDMAContext
*rdma
)
1271 while (rdma
->unregistrations
[rdma
->unregister_current
]) {
1273 uint64_t wr_id
= rdma
->unregistrations
[rdma
->unregister_current
];
1275 (wr_id
& RDMA_WRID_CHUNK_MASK
) >> RDMA_WRID_CHUNK_SHIFT
;
1277 (wr_id
& RDMA_WRID_BLOCK_MASK
) >> RDMA_WRID_BLOCK_SHIFT
;
1278 RDMALocalBlock
*block
=
1279 &(rdma
->local_ram_blocks
.block
[index
]);
1280 RDMARegister reg
= { .current_index
= index
};
1281 RDMAControlHeader resp
= { .type
= RDMA_CONTROL_UNREGISTER_FINISHED
,
1283 RDMAControlHeader head
= { .len
= sizeof(RDMARegister
),
1284 .type
= RDMA_CONTROL_UNREGISTER_REQUEST
,
1288 trace_qemu_rdma_unregister_waiting_proc(chunk
,
1289 rdma
->unregister_current
);
1291 rdma
->unregistrations
[rdma
->unregister_current
] = 0;
1292 rdma
->unregister_current
++;
1294 if (rdma
->unregister_current
== RDMA_SIGNALED_SEND_MAX
) {
1295 rdma
->unregister_current
= 0;
1300 * Unregistration is speculative (because migration is single-threaded
1301 * and we cannot break the protocol's inifinband message ordering).
1302 * Thus, if the memory is currently being used for transmission,
1303 * then abort the attempt to unregister and try again
1304 * later the next time a completion is received for this memory.
1306 clear_bit(chunk
, block
->unregister_bitmap
);
1308 if (test_bit(chunk
, block
->transit_bitmap
)) {
1309 trace_qemu_rdma_unregister_waiting_inflight(chunk
);
1313 trace_qemu_rdma_unregister_waiting_send(chunk
);
1315 ret
= ibv_dereg_mr(block
->pmr
[chunk
]);
1316 block
->pmr
[chunk
] = NULL
;
1317 block
->remote_keys
[chunk
] = 0;
1320 perror("unregistration chunk failed");
1323 rdma
->total_registrations
--;
1325 reg
.key
.chunk
= chunk
;
1326 register_to_network(rdma
, ®
);
1327 ret
= qemu_rdma_exchange_send(rdma
, &head
, (uint8_t *) ®
,
1333 trace_qemu_rdma_unregister_waiting_complete(chunk
);
1339 static uint64_t qemu_rdma_make_wrid(uint64_t wr_id
, uint64_t index
,
1342 uint64_t result
= wr_id
& RDMA_WRID_TYPE_MASK
;
1344 result
|= (index
<< RDMA_WRID_BLOCK_SHIFT
);
1345 result
|= (chunk
<< RDMA_WRID_CHUNK_SHIFT
);
1351 * Set bit for unregistration in the next iteration.
1352 * We cannot transmit right here, but will unpin later.
1354 static void qemu_rdma_signal_unregister(RDMAContext
*rdma
, uint64_t index
,
1355 uint64_t chunk
, uint64_t wr_id
)
1357 if (rdma
->unregistrations
[rdma
->unregister_next
] != 0) {
1358 error_report("rdma migration: queue is full");
1360 RDMALocalBlock
*block
= &(rdma
->local_ram_blocks
.block
[index
]);
1362 if (!test_and_set_bit(chunk
, block
->unregister_bitmap
)) {
1363 trace_qemu_rdma_signal_unregister_append(chunk
,
1364 rdma
->unregister_next
);
1366 rdma
->unregistrations
[rdma
->unregister_next
++] =
1367 qemu_rdma_make_wrid(wr_id
, index
, chunk
);
1369 if (rdma
->unregister_next
== RDMA_SIGNALED_SEND_MAX
) {
1370 rdma
->unregister_next
= 0;
1373 trace_qemu_rdma_signal_unregister_already(chunk
);
1379 * Consult the connection manager to see a work request
1380 * (of any kind) has completed.
1381 * Return the work request ID that completed.
1383 static uint64_t qemu_rdma_poll(RDMAContext
*rdma
, uint64_t *wr_id_out
,
1390 ret
= ibv_poll_cq(rdma
->cq
, 1, &wc
);
1393 *wr_id_out
= RDMA_WRID_NONE
;
1398 error_report("ibv_poll_cq return %d", ret
);
1402 wr_id
= wc
.wr_id
& RDMA_WRID_TYPE_MASK
;
1404 if (wc
.status
!= IBV_WC_SUCCESS
) {
1405 fprintf(stderr
, "ibv_poll_cq wc.status=%d %s!\n",
1406 wc
.status
, ibv_wc_status_str(wc
.status
));
1407 fprintf(stderr
, "ibv_poll_cq wrid=%s!\n", wrid_desc
[wr_id
]);
1412 if (rdma
->control_ready_expected
&&
1413 (wr_id
>= RDMA_WRID_RECV_CONTROL
)) {
1414 trace_qemu_rdma_poll_recv(wrid_desc
[RDMA_WRID_RECV_CONTROL
],
1415 wr_id
- RDMA_WRID_RECV_CONTROL
, wr_id
, rdma
->nb_sent
);
1416 rdma
->control_ready_expected
= 0;
1419 if (wr_id
== RDMA_WRID_RDMA_WRITE
) {
1421 (wc
.wr_id
& RDMA_WRID_CHUNK_MASK
) >> RDMA_WRID_CHUNK_SHIFT
;
1423 (wc
.wr_id
& RDMA_WRID_BLOCK_MASK
) >> RDMA_WRID_BLOCK_SHIFT
;
1424 RDMALocalBlock
*block
= &(rdma
->local_ram_blocks
.block
[index
]);
1426 trace_qemu_rdma_poll_write(print_wrid(wr_id
), wr_id
, rdma
->nb_sent
,
1427 index
, chunk
, block
->local_host_addr
,
1428 (void *)(uintptr_t)block
->remote_host_addr
);
1430 clear_bit(chunk
, block
->transit_bitmap
);
1432 if (rdma
->nb_sent
> 0) {
1436 if (!rdma
->pin_all
) {
1438 * FYI: If one wanted to signal a specific chunk to be unregistered
1439 * using LRU or workload-specific information, this is the function
1440 * you would call to do so. That chunk would then get asynchronously
1441 * unregistered later.
1443 #ifdef RDMA_UNREGISTRATION_EXAMPLE
1444 qemu_rdma_signal_unregister(rdma
, index
, chunk
, wc
.wr_id
);
1448 trace_qemu_rdma_poll_other(print_wrid(wr_id
), wr_id
, rdma
->nb_sent
);
1451 *wr_id_out
= wc
.wr_id
;
1453 *byte_len
= wc
.byte_len
;
1460 * Block until the next work request has completed.
1462 * First poll to see if a work request has already completed,
1465 * If we encounter completed work requests for IDs other than
1466 * the one we're interested in, then that's generally an error.
1468 * The only exception is actual RDMA Write completions. These
1469 * completions only need to be recorded, but do not actually
1470 * need further processing.
1472 static int qemu_rdma_block_for_wrid(RDMAContext
*rdma
, int wrid_requested
,
1475 int num_cq_events
= 0, ret
= 0;
1478 uint64_t wr_id
= RDMA_WRID_NONE
, wr_id_in
;
1480 if (ibv_req_notify_cq(rdma
->cq
, 0)) {
1484 while (wr_id
!= wrid_requested
) {
1485 ret
= qemu_rdma_poll(rdma
, &wr_id_in
, byte_len
);
1490 wr_id
= wr_id_in
& RDMA_WRID_TYPE_MASK
;
1492 if (wr_id
== RDMA_WRID_NONE
) {
1495 if (wr_id
!= wrid_requested
) {
1496 trace_qemu_rdma_block_for_wrid_miss(print_wrid(wrid_requested
),
1497 wrid_requested
, print_wrid(wr_id
), wr_id
);
1501 if (wr_id
== wrid_requested
) {
1507 * Coroutine doesn't start until process_incoming_migration()
1508 * so don't yield unless we know we're running inside of a coroutine.
1510 if (rdma
->migration_started_on_destination
) {
1511 yield_until_fd_readable(rdma
->comp_channel
->fd
);
1514 if (ibv_get_cq_event(rdma
->comp_channel
, &cq
, &cq_ctx
)) {
1515 perror("ibv_get_cq_event");
1516 goto err_block_for_wrid
;
1521 if (ibv_req_notify_cq(cq
, 0)) {
1522 goto err_block_for_wrid
;
1525 while (wr_id
!= wrid_requested
) {
1526 ret
= qemu_rdma_poll(rdma
, &wr_id_in
, byte_len
);
1528 goto err_block_for_wrid
;
1531 wr_id
= wr_id_in
& RDMA_WRID_TYPE_MASK
;
1533 if (wr_id
== RDMA_WRID_NONE
) {
1536 if (wr_id
!= wrid_requested
) {
1537 trace_qemu_rdma_block_for_wrid_miss(print_wrid(wrid_requested
),
1538 wrid_requested
, print_wrid(wr_id
), wr_id
);
1542 if (wr_id
== wrid_requested
) {
1543 goto success_block_for_wrid
;
1547 success_block_for_wrid
:
1548 if (num_cq_events
) {
1549 ibv_ack_cq_events(cq
, num_cq_events
);
1554 if (num_cq_events
) {
1555 ibv_ack_cq_events(cq
, num_cq_events
);
1561 * Post a SEND message work request for the control channel
1562 * containing some data and block until the post completes.
1564 static int qemu_rdma_post_send_control(RDMAContext
*rdma
, uint8_t *buf
,
1565 RDMAControlHeader
*head
)
1568 RDMAWorkRequestData
*wr
= &rdma
->wr_data
[RDMA_WRID_CONTROL
];
1569 struct ibv_send_wr
*bad_wr
;
1570 struct ibv_sge sge
= {
1571 .addr
= (uintptr_t)(wr
->control
),
1572 .length
= head
->len
+ sizeof(RDMAControlHeader
),
1573 .lkey
= wr
->control_mr
->lkey
,
1575 struct ibv_send_wr send_wr
= {
1576 .wr_id
= RDMA_WRID_SEND_CONTROL
,
1577 .opcode
= IBV_WR_SEND
,
1578 .send_flags
= IBV_SEND_SIGNALED
,
1583 trace_qemu_rdma_post_send_control(control_desc
[head
->type
]);
1586 * We don't actually need to do a memcpy() in here if we used
1587 * the "sge" properly, but since we're only sending control messages
1588 * (not RAM in a performance-critical path), then its OK for now.
1590 * The copy makes the RDMAControlHeader simpler to manipulate
1591 * for the time being.
1593 assert(head
->len
<= RDMA_CONTROL_MAX_BUFFER
- sizeof(*head
));
1594 memcpy(wr
->control
, head
, sizeof(RDMAControlHeader
));
1595 control_to_network((void *) wr
->control
);
1598 memcpy(wr
->control
+ sizeof(RDMAControlHeader
), buf
, head
->len
);
1602 ret
= ibv_post_send(rdma
->qp
, &send_wr
, &bad_wr
);
1605 error_report("Failed to use post IB SEND for control");
1609 ret
= qemu_rdma_block_for_wrid(rdma
, RDMA_WRID_SEND_CONTROL
, NULL
);
1611 error_report("rdma migration: send polling control error");
1618 * Post a RECV work request in anticipation of some future receipt
1619 * of data on the control channel.
1621 static int qemu_rdma_post_recv_control(RDMAContext
*rdma
, int idx
)
1623 struct ibv_recv_wr
*bad_wr
;
1624 struct ibv_sge sge
= {
1625 .addr
= (uintptr_t)(rdma
->wr_data
[idx
].control
),
1626 .length
= RDMA_CONTROL_MAX_BUFFER
,
1627 .lkey
= rdma
->wr_data
[idx
].control_mr
->lkey
,
1630 struct ibv_recv_wr recv_wr
= {
1631 .wr_id
= RDMA_WRID_RECV_CONTROL
+ idx
,
1637 if (ibv_post_recv(rdma
->qp
, &recv_wr
, &bad_wr
)) {
1645 * Block and wait for a RECV control channel message to arrive.
1647 static int qemu_rdma_exchange_get_response(RDMAContext
*rdma
,
1648 RDMAControlHeader
*head
, int expecting
, int idx
)
1651 int ret
= qemu_rdma_block_for_wrid(rdma
, RDMA_WRID_RECV_CONTROL
+ idx
,
1655 error_report("rdma migration: recv polling control error!");
1659 network_to_control((void *) rdma
->wr_data
[idx
].control
);
1660 memcpy(head
, rdma
->wr_data
[idx
].control
, sizeof(RDMAControlHeader
));
1662 trace_qemu_rdma_exchange_get_response_start(control_desc
[expecting
]);
1664 if (expecting
== RDMA_CONTROL_NONE
) {
1665 trace_qemu_rdma_exchange_get_response_none(control_desc
[head
->type
],
1667 } else if (head
->type
!= expecting
|| head
->type
== RDMA_CONTROL_ERROR
) {
1668 error_report("Was expecting a %s (%d) control message"
1669 ", but got: %s (%d), length: %d",
1670 control_desc
[expecting
], expecting
,
1671 control_desc
[head
->type
], head
->type
, head
->len
);
1674 if (head
->len
> RDMA_CONTROL_MAX_BUFFER
- sizeof(*head
)) {
1675 error_report("too long length: %d", head
->len
);
1678 if (sizeof(*head
) + head
->len
!= byte_len
) {
1679 error_report("Malformed length: %d byte_len %d", head
->len
, byte_len
);
1687 * When a RECV work request has completed, the work request's
1688 * buffer is pointed at the header.
1690 * This will advance the pointer to the data portion
1691 * of the control message of the work request's buffer that
1692 * was populated after the work request finished.
1694 static void qemu_rdma_move_header(RDMAContext
*rdma
, int idx
,
1695 RDMAControlHeader
*head
)
1697 rdma
->wr_data
[idx
].control_len
= head
->len
;
1698 rdma
->wr_data
[idx
].control_curr
=
1699 rdma
->wr_data
[idx
].control
+ sizeof(RDMAControlHeader
);
1703 * This is an 'atomic' high-level operation to deliver a single, unified
1704 * control-channel message.
1706 * Additionally, if the user is expecting some kind of reply to this message,
1707 * they can request a 'resp' response message be filled in by posting an
1708 * additional work request on behalf of the user and waiting for an additional
1711 * The extra (optional) response is used during registration to us from having
1712 * to perform an *additional* exchange of message just to provide a response by
1713 * instead piggy-backing on the acknowledgement.
1715 static int qemu_rdma_exchange_send(RDMAContext
*rdma
, RDMAControlHeader
*head
,
1716 uint8_t *data
, RDMAControlHeader
*resp
,
1718 int (*callback
)(RDMAContext
*rdma
))
1723 * Wait until the dest is ready before attempting to deliver the message
1724 * by waiting for a READY message.
1726 if (rdma
->control_ready_expected
) {
1727 RDMAControlHeader resp
;
1728 ret
= qemu_rdma_exchange_get_response(rdma
,
1729 &resp
, RDMA_CONTROL_READY
, RDMA_WRID_READY
);
1736 * If the user is expecting a response, post a WR in anticipation of it.
1739 ret
= qemu_rdma_post_recv_control(rdma
, RDMA_WRID_DATA
);
1741 error_report("rdma migration: error posting"
1742 " extra control recv for anticipated result!");
1748 * Post a WR to replace the one we just consumed for the READY message.
1750 ret
= qemu_rdma_post_recv_control(rdma
, RDMA_WRID_READY
);
1752 error_report("rdma migration: error posting first control recv!");
1757 * Deliver the control message that was requested.
1759 ret
= qemu_rdma_post_send_control(rdma
, data
, head
);
1762 error_report("Failed to send control buffer!");
1767 * If we're expecting a response, block and wait for it.
1771 trace_qemu_rdma_exchange_send_issue_callback();
1772 ret
= callback(rdma
);
1778 trace_qemu_rdma_exchange_send_waiting(control_desc
[resp
->type
]);
1779 ret
= qemu_rdma_exchange_get_response(rdma
, resp
,
1780 resp
->type
, RDMA_WRID_DATA
);
1786 qemu_rdma_move_header(rdma
, RDMA_WRID_DATA
, resp
);
1788 *resp_idx
= RDMA_WRID_DATA
;
1790 trace_qemu_rdma_exchange_send_received(control_desc
[resp
->type
]);
1793 rdma
->control_ready_expected
= 1;
1799 * This is an 'atomic' high-level operation to receive a single, unified
1800 * control-channel message.
1802 static int qemu_rdma_exchange_recv(RDMAContext
*rdma
, RDMAControlHeader
*head
,
1805 RDMAControlHeader ready
= {
1807 .type
= RDMA_CONTROL_READY
,
1813 * Inform the source that we're ready to receive a message.
1815 ret
= qemu_rdma_post_send_control(rdma
, NULL
, &ready
);
1818 error_report("Failed to send control buffer!");
1823 * Block and wait for the message.
1825 ret
= qemu_rdma_exchange_get_response(rdma
, head
,
1826 expecting
, RDMA_WRID_READY
);
1832 qemu_rdma_move_header(rdma
, RDMA_WRID_READY
, head
);
1835 * Post a new RECV work request to replace the one we just consumed.
1837 ret
= qemu_rdma_post_recv_control(rdma
, RDMA_WRID_READY
);
1839 error_report("rdma migration: error posting second control recv!");
1847 * Write an actual chunk of memory using RDMA.
1849 * If we're using dynamic registration on the dest-side, we have to
1850 * send a registration command first.
1852 static int qemu_rdma_write_one(QEMUFile
*f
, RDMAContext
*rdma
,
1853 int current_index
, uint64_t current_addr
,
1857 struct ibv_send_wr send_wr
= { 0 };
1858 struct ibv_send_wr
*bad_wr
;
1859 int reg_result_idx
, ret
, count
= 0;
1860 uint64_t chunk
, chunks
;
1861 uint8_t *chunk_start
, *chunk_end
;
1862 RDMALocalBlock
*block
= &(rdma
->local_ram_blocks
.block
[current_index
]);
1864 RDMARegisterResult
*reg_result
;
1865 RDMAControlHeader resp
= { .type
= RDMA_CONTROL_REGISTER_RESULT
};
1866 RDMAControlHeader head
= { .len
= sizeof(RDMARegister
),
1867 .type
= RDMA_CONTROL_REGISTER_REQUEST
,
1872 sge
.addr
= (uintptr_t)(block
->local_host_addr
+
1873 (current_addr
- block
->offset
));
1874 sge
.length
= length
;
1876 chunk
= ram_chunk_index(block
->local_host_addr
,
1877 (uint8_t *)(uintptr_t)sge
.addr
);
1878 chunk_start
= ram_chunk_start(block
, chunk
);
1880 if (block
->is_ram_block
) {
1881 chunks
= length
/ (1UL << RDMA_REG_CHUNK_SHIFT
);
1883 if (chunks
&& ((length
% (1UL << RDMA_REG_CHUNK_SHIFT
)) == 0)) {
1887 chunks
= block
->length
/ (1UL << RDMA_REG_CHUNK_SHIFT
);
1889 if (chunks
&& ((block
->length
% (1UL << RDMA_REG_CHUNK_SHIFT
)) == 0)) {
1894 trace_qemu_rdma_write_one_top(chunks
+ 1,
1896 (1UL << RDMA_REG_CHUNK_SHIFT
) / 1024 / 1024);
1898 chunk_end
= ram_chunk_end(block
, chunk
+ chunks
);
1900 if (!rdma
->pin_all
) {
1901 #ifdef RDMA_UNREGISTRATION_EXAMPLE
1902 qemu_rdma_unregister_waiting(rdma
);
1906 while (test_bit(chunk
, block
->transit_bitmap
)) {
1908 trace_qemu_rdma_write_one_block(count
++, current_index
, chunk
,
1909 sge
.addr
, length
, rdma
->nb_sent
, block
->nb_chunks
);
1911 ret
= qemu_rdma_block_for_wrid(rdma
, RDMA_WRID_RDMA_WRITE
, NULL
);
1914 error_report("Failed to Wait for previous write to complete "
1915 "block %d chunk %" PRIu64
1916 " current %" PRIu64
" len %" PRIu64
" %d",
1917 current_index
, chunk
, sge
.addr
, length
, rdma
->nb_sent
);
1922 if (!rdma
->pin_all
|| !block
->is_ram_block
) {
1923 if (!block
->remote_keys
[chunk
]) {
1925 * This chunk has not yet been registered, so first check to see
1926 * if the entire chunk is zero. If so, tell the other size to
1927 * memset() + madvise() the entire chunk without RDMA.
1930 if (can_use_buffer_find_nonzero_offset((void *)(uintptr_t)sge
.addr
,
1932 && buffer_find_nonzero_offset((void *)(uintptr_t)sge
.addr
,
1933 length
) == length
) {
1934 RDMACompress comp
= {
1935 .offset
= current_addr
,
1937 .block_idx
= current_index
,
1941 head
.len
= sizeof(comp
);
1942 head
.type
= RDMA_CONTROL_COMPRESS
;
1944 trace_qemu_rdma_write_one_zero(chunk
, sge
.length
,
1945 current_index
, current_addr
);
1947 compress_to_network(rdma
, &comp
);
1948 ret
= qemu_rdma_exchange_send(rdma
, &head
,
1949 (uint8_t *) &comp
, NULL
, NULL
, NULL
);
1955 acct_update_position(f
, sge
.length
, true);
1961 * Otherwise, tell other side to register.
1963 reg
.current_index
= current_index
;
1964 if (block
->is_ram_block
) {
1965 reg
.key
.current_addr
= current_addr
;
1967 reg
.key
.chunk
= chunk
;
1969 reg
.chunks
= chunks
;
1971 trace_qemu_rdma_write_one_sendreg(chunk
, sge
.length
, current_index
,
1974 register_to_network(rdma
, ®
);
1975 ret
= qemu_rdma_exchange_send(rdma
, &head
, (uint8_t *) ®
,
1976 &resp
, ®_result_idx
, NULL
);
1981 /* try to overlap this single registration with the one we sent. */
1982 if (qemu_rdma_register_and_get_keys(rdma
, block
, sge
.addr
,
1983 &sge
.lkey
, NULL
, chunk
,
1984 chunk_start
, chunk_end
)) {
1985 error_report("cannot get lkey");
1989 reg_result
= (RDMARegisterResult
*)
1990 rdma
->wr_data
[reg_result_idx
].control_curr
;
1992 network_to_result(reg_result
);
1994 trace_qemu_rdma_write_one_recvregres(block
->remote_keys
[chunk
],
1995 reg_result
->rkey
, chunk
);
1997 block
->remote_keys
[chunk
] = reg_result
->rkey
;
1998 block
->remote_host_addr
= reg_result
->host_addr
;
2000 /* already registered before */
2001 if (qemu_rdma_register_and_get_keys(rdma
, block
, sge
.addr
,
2002 &sge
.lkey
, NULL
, chunk
,
2003 chunk_start
, chunk_end
)) {
2004 error_report("cannot get lkey!");
2009 send_wr
.wr
.rdma
.rkey
= block
->remote_keys
[chunk
];
2011 send_wr
.wr
.rdma
.rkey
= block
->remote_rkey
;
2013 if (qemu_rdma_register_and_get_keys(rdma
, block
, sge
.addr
,
2014 &sge
.lkey
, NULL
, chunk
,
2015 chunk_start
, chunk_end
)) {
2016 error_report("cannot get lkey!");
2022 * Encode the ram block index and chunk within this wrid.
2023 * We will use this information at the time of completion
2024 * to figure out which bitmap to check against and then which
2025 * chunk in the bitmap to look for.
2027 send_wr
.wr_id
= qemu_rdma_make_wrid(RDMA_WRID_RDMA_WRITE
,
2028 current_index
, chunk
);
2030 send_wr
.opcode
= IBV_WR_RDMA_WRITE
;
2031 send_wr
.send_flags
= IBV_SEND_SIGNALED
;
2032 send_wr
.sg_list
= &sge
;
2033 send_wr
.num_sge
= 1;
2034 send_wr
.wr
.rdma
.remote_addr
= block
->remote_host_addr
+
2035 (current_addr
- block
->offset
);
2037 trace_qemu_rdma_write_one_post(chunk
, sge
.addr
, send_wr
.wr
.rdma
.remote_addr
,
2041 * ibv_post_send() does not return negative error numbers,
2042 * per the specification they are positive - no idea why.
2044 ret
= ibv_post_send(rdma
->qp
, &send_wr
, &bad_wr
);
2046 if (ret
== ENOMEM
) {
2047 trace_qemu_rdma_write_one_queue_full();
2048 ret
= qemu_rdma_block_for_wrid(rdma
, RDMA_WRID_RDMA_WRITE
, NULL
);
2050 error_report("rdma migration: failed to make "
2051 "room in full send queue! %d", ret
);
2057 } else if (ret
> 0) {
2058 perror("rdma migration: post rdma write failed");
2062 set_bit(chunk
, block
->transit_bitmap
);
2063 acct_update_position(f
, sge
.length
, false);
2064 rdma
->total_writes
++;
2070 * Push out any unwritten RDMA operations.
2072 * We support sending out multiple chunks at the same time.
2073 * Not all of them need to get signaled in the completion queue.
2075 static int qemu_rdma_write_flush(QEMUFile
*f
, RDMAContext
*rdma
)
2079 if (!rdma
->current_length
) {
2083 ret
= qemu_rdma_write_one(f
, rdma
,
2084 rdma
->current_index
, rdma
->current_addr
, rdma
->current_length
);
2092 trace_qemu_rdma_write_flush(rdma
->nb_sent
);
2095 rdma
->current_length
= 0;
2096 rdma
->current_addr
= 0;
2101 static inline int qemu_rdma_buffer_mergable(RDMAContext
*rdma
,
2102 uint64_t offset
, uint64_t len
)
2104 RDMALocalBlock
*block
;
2108 if (rdma
->current_index
< 0) {
2112 if (rdma
->current_chunk
< 0) {
2116 block
= &(rdma
->local_ram_blocks
.block
[rdma
->current_index
]);
2117 host_addr
= block
->local_host_addr
+ (offset
- block
->offset
);
2118 chunk_end
= ram_chunk_end(block
, rdma
->current_chunk
);
2120 if (rdma
->current_length
== 0) {
2125 * Only merge into chunk sequentially.
2127 if (offset
!= (rdma
->current_addr
+ rdma
->current_length
)) {
2131 if (offset
< block
->offset
) {
2135 if ((offset
+ len
) > (block
->offset
+ block
->length
)) {
2139 if ((host_addr
+ len
) > chunk_end
) {
2147 * We're not actually writing here, but doing three things:
2149 * 1. Identify the chunk the buffer belongs to.
2150 * 2. If the chunk is full or the buffer doesn't belong to the current
2151 * chunk, then start a new chunk and flush() the old chunk.
2152 * 3. To keep the hardware busy, we also group chunks into batches
2153 * and only require that a batch gets acknowledged in the completion
2154 * qeueue instead of each individual chunk.
2156 static int qemu_rdma_write(QEMUFile
*f
, RDMAContext
*rdma
,
2157 uint64_t block_offset
, uint64_t offset
,
2160 uint64_t current_addr
= block_offset
+ offset
;
2161 uint64_t index
= rdma
->current_index
;
2162 uint64_t chunk
= rdma
->current_chunk
;
2165 /* If we cannot merge it, we flush the current buffer first. */
2166 if (!qemu_rdma_buffer_mergable(rdma
, current_addr
, len
)) {
2167 ret
= qemu_rdma_write_flush(f
, rdma
);
2171 rdma
->current_length
= 0;
2172 rdma
->current_addr
= current_addr
;
2174 ret
= qemu_rdma_search_ram_block(rdma
, block_offset
,
2175 offset
, len
, &index
, &chunk
);
2177 error_report("ram block search failed");
2180 rdma
->current_index
= index
;
2181 rdma
->current_chunk
= chunk
;
2185 rdma
->current_length
+= len
;
2187 /* flush it if buffer is too large */
2188 if (rdma
->current_length
>= RDMA_MERGE_MAX
) {
2189 return qemu_rdma_write_flush(f
, rdma
);
2195 static void qemu_rdma_cleanup(RDMAContext
*rdma
)
2197 struct rdma_cm_event
*cm_event
;
2200 if (rdma
->cm_id
&& rdma
->connected
) {
2201 if (rdma
->error_state
) {
2202 RDMAControlHeader head
= { .len
= 0,
2203 .type
= RDMA_CONTROL_ERROR
,
2206 error_report("Early error. Sending error.");
2207 qemu_rdma_post_send_control(rdma
, NULL
, &head
);
2210 ret
= rdma_disconnect(rdma
->cm_id
);
2212 trace_qemu_rdma_cleanup_waiting_for_disconnect();
2213 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
2215 rdma_ack_cm_event(cm_event
);
2218 trace_qemu_rdma_cleanup_disconnect();
2219 rdma
->connected
= false;
2222 g_free(rdma
->dest_blocks
);
2223 rdma
->dest_blocks
= NULL
;
2225 for (idx
= 0; idx
< RDMA_WRID_MAX
; idx
++) {
2226 if (rdma
->wr_data
[idx
].control_mr
) {
2227 rdma
->total_registrations
--;
2228 ibv_dereg_mr(rdma
->wr_data
[idx
].control_mr
);
2230 rdma
->wr_data
[idx
].control_mr
= NULL
;
2233 if (rdma
->local_ram_blocks
.block
) {
2234 while (rdma
->local_ram_blocks
.nb_blocks
) {
2235 rdma_delete_block(rdma
, &rdma
->local_ram_blocks
.block
[0]);
2240 rdma_destroy_qp(rdma
->cm_id
);
2244 ibv_destroy_cq(rdma
->cq
);
2247 if (rdma
->comp_channel
) {
2248 ibv_destroy_comp_channel(rdma
->comp_channel
);
2249 rdma
->comp_channel
= NULL
;
2252 ibv_dealloc_pd(rdma
->pd
);
2256 rdma_destroy_id(rdma
->cm_id
);
2259 if (rdma
->listen_id
) {
2260 rdma_destroy_id(rdma
->listen_id
);
2261 rdma
->listen_id
= NULL
;
2263 if (rdma
->channel
) {
2264 rdma_destroy_event_channel(rdma
->channel
);
2265 rdma
->channel
= NULL
;
2272 static int qemu_rdma_source_init(RDMAContext
*rdma
, Error
**errp
, bool pin_all
)
2275 Error
*local_err
= NULL
, **temp
= &local_err
;
2278 * Will be validated against destination's actual capabilities
2279 * after the connect() completes.
2281 rdma
->pin_all
= pin_all
;
2283 ret
= qemu_rdma_resolve_host(rdma
, temp
);
2285 goto err_rdma_source_init
;
2288 ret
= qemu_rdma_alloc_pd_cq(rdma
);
2290 ERROR(temp
, "rdma migration: error allocating pd and cq! Your mlock()"
2291 " limits may be too low. Please check $ ulimit -a # and "
2292 "search for 'ulimit -l' in the output");
2293 goto err_rdma_source_init
;
2296 ret
= qemu_rdma_alloc_qp(rdma
);
2298 ERROR(temp
, "rdma migration: error allocating qp!");
2299 goto err_rdma_source_init
;
2302 ret
= qemu_rdma_init_ram_blocks(rdma
);
2304 ERROR(temp
, "rdma migration: error initializing ram blocks!");
2305 goto err_rdma_source_init
;
2308 /* Build the hash that maps from offset to RAMBlock */
2309 rdma
->blockmap
= g_hash_table_new(g_direct_hash
, g_direct_equal
);
2310 for (idx
= 0; idx
< rdma
->local_ram_blocks
.nb_blocks
; idx
++) {
2311 g_hash_table_insert(rdma
->blockmap
,
2312 (void *)(uintptr_t)rdma
->local_ram_blocks
.block
[idx
].offset
,
2313 &rdma
->local_ram_blocks
.block
[idx
]);
2316 for (idx
= 0; idx
< RDMA_WRID_MAX
; idx
++) {
2317 ret
= qemu_rdma_reg_control(rdma
, idx
);
2319 ERROR(temp
, "rdma migration: error registering %d control!",
2321 goto err_rdma_source_init
;
2327 err_rdma_source_init
:
2328 error_propagate(errp
, local_err
);
2329 qemu_rdma_cleanup(rdma
);
2333 static int qemu_rdma_connect(RDMAContext
*rdma
, Error
**errp
)
2335 RDMACapabilities cap
= {
2336 .version
= RDMA_CONTROL_VERSION_CURRENT
,
2339 struct rdma_conn_param conn_param
= { .initiator_depth
= 2,
2341 .private_data
= &cap
,
2342 .private_data_len
= sizeof(cap
),
2344 struct rdma_cm_event
*cm_event
;
2348 * Only negotiate the capability with destination if the user
2349 * on the source first requested the capability.
2351 if (rdma
->pin_all
) {
2352 trace_qemu_rdma_connect_pin_all_requested();
2353 cap
.flags
|= RDMA_CAPABILITY_PIN_ALL
;
2356 caps_to_network(&cap
);
2358 ret
= rdma_connect(rdma
->cm_id
, &conn_param
);
2360 perror("rdma_connect");
2361 ERROR(errp
, "connecting to destination!");
2362 goto err_rdma_source_connect
;
2365 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
2367 perror("rdma_get_cm_event after rdma_connect");
2368 ERROR(errp
, "connecting to destination!");
2369 rdma_ack_cm_event(cm_event
);
2370 goto err_rdma_source_connect
;
2373 if (cm_event
->event
!= RDMA_CM_EVENT_ESTABLISHED
) {
2374 perror("rdma_get_cm_event != EVENT_ESTABLISHED after rdma_connect");
2375 ERROR(errp
, "connecting to destination!");
2376 rdma_ack_cm_event(cm_event
);
2377 goto err_rdma_source_connect
;
2379 rdma
->connected
= true;
2381 memcpy(&cap
, cm_event
->param
.conn
.private_data
, sizeof(cap
));
2382 network_to_caps(&cap
);
2385 * Verify that the *requested* capabilities are supported by the destination
2386 * and disable them otherwise.
2388 if (rdma
->pin_all
&& !(cap
.flags
& RDMA_CAPABILITY_PIN_ALL
)) {
2389 ERROR(errp
, "Server cannot support pinning all memory. "
2390 "Will register memory dynamically.");
2391 rdma
->pin_all
= false;
2394 trace_qemu_rdma_connect_pin_all_outcome(rdma
->pin_all
);
2396 rdma_ack_cm_event(cm_event
);
2398 ret
= qemu_rdma_post_recv_control(rdma
, RDMA_WRID_READY
);
2400 ERROR(errp
, "posting second control recv!");
2401 goto err_rdma_source_connect
;
2404 rdma
->control_ready_expected
= 1;
2408 err_rdma_source_connect
:
2409 qemu_rdma_cleanup(rdma
);
2413 static int qemu_rdma_dest_init(RDMAContext
*rdma
, Error
**errp
)
2416 struct rdma_cm_id
*listen_id
;
2417 char ip
[40] = "unknown";
2418 struct rdma_addrinfo
*res
, *e
;
2421 for (idx
= 0; idx
< RDMA_WRID_MAX
; idx
++) {
2422 rdma
->wr_data
[idx
].control_len
= 0;
2423 rdma
->wr_data
[idx
].control_curr
= NULL
;
2426 if (!rdma
->host
|| !rdma
->host
[0]) {
2427 ERROR(errp
, "RDMA host is not set!");
2428 rdma
->error_state
= -EINVAL
;
2431 /* create CM channel */
2432 rdma
->channel
= rdma_create_event_channel();
2433 if (!rdma
->channel
) {
2434 ERROR(errp
, "could not create rdma event channel");
2435 rdma
->error_state
= -EINVAL
;
2440 ret
= rdma_create_id(rdma
->channel
, &listen_id
, NULL
, RDMA_PS_TCP
);
2442 ERROR(errp
, "could not create cm_id!");
2443 goto err_dest_init_create_listen_id
;
2446 snprintf(port_str
, 16, "%d", rdma
->port
);
2447 port_str
[15] = '\0';
2449 ret
= rdma_getaddrinfo(rdma
->host
, port_str
, NULL
, &res
);
2451 ERROR(errp
, "could not rdma_getaddrinfo address %s", rdma
->host
);
2452 goto err_dest_init_bind_addr
;
2455 for (e
= res
; e
!= NULL
; e
= e
->ai_next
) {
2456 inet_ntop(e
->ai_family
,
2457 &((struct sockaddr_in
*) e
->ai_dst_addr
)->sin_addr
, ip
, sizeof ip
);
2458 trace_qemu_rdma_dest_init_trying(rdma
->host
, ip
);
2459 ret
= rdma_bind_addr(listen_id
, e
->ai_dst_addr
);
2463 if (e
->ai_family
== AF_INET6
) {
2464 ret
= qemu_rdma_broken_ipv6_kernel(errp
, listen_id
->verbs
);
2473 ERROR(errp
, "Error: could not rdma_bind_addr!");
2474 goto err_dest_init_bind_addr
;
2477 rdma
->listen_id
= listen_id
;
2478 qemu_rdma_dump_gid("dest_init", listen_id
);
2481 err_dest_init_bind_addr
:
2482 rdma_destroy_id(listen_id
);
2483 err_dest_init_create_listen_id
:
2484 rdma_destroy_event_channel(rdma
->channel
);
2485 rdma
->channel
= NULL
;
2486 rdma
->error_state
= ret
;
2491 static void *qemu_rdma_data_init(const char *host_port
, Error
**errp
)
2493 RDMAContext
*rdma
= NULL
;
2494 InetSocketAddress
*addr
;
2497 rdma
= g_malloc0(sizeof(RDMAContext
));
2498 rdma
->current_index
= -1;
2499 rdma
->current_chunk
= -1;
2501 addr
= inet_parse(host_port
, NULL
);
2503 rdma
->port
= atoi(addr
->port
);
2504 rdma
->host
= g_strdup(addr
->host
);
2506 ERROR(errp
, "bad RDMA migration address '%s'", host_port
);
2511 qapi_free_InetSocketAddress(addr
);
2518 * QEMUFile interface to the control channel.
2519 * SEND messages for control only.
2520 * VM's ram is handled with regular RDMA messages.
2522 static int qemu_rdma_put_buffer(void *opaque
, const uint8_t *buf
,
2523 int64_t pos
, int size
)
2525 QEMUFileRDMA
*r
= opaque
;
2526 QEMUFile
*f
= r
->file
;
2527 RDMAContext
*rdma
= r
->rdma
;
2528 size_t remaining
= size
;
2529 uint8_t * data
= (void *) buf
;
2532 CHECK_ERROR_STATE();
2535 * Push out any writes that
2536 * we're queued up for VM's ram.
2538 ret
= qemu_rdma_write_flush(f
, rdma
);
2540 rdma
->error_state
= ret
;
2545 RDMAControlHeader head
;
2547 r
->len
= MIN(remaining
, RDMA_SEND_INCREMENT
);
2548 remaining
-= r
->len
;
2551 head
.type
= RDMA_CONTROL_QEMU_FILE
;
2553 ret
= qemu_rdma_exchange_send(rdma
, &head
, data
, NULL
, NULL
, NULL
);
2556 rdma
->error_state
= ret
;
2566 static size_t qemu_rdma_fill(RDMAContext
*rdma
, uint8_t *buf
,
2571 if (rdma
->wr_data
[idx
].control_len
) {
2572 trace_qemu_rdma_fill(rdma
->wr_data
[idx
].control_len
, size
);
2574 len
= MIN(size
, rdma
->wr_data
[idx
].control_len
);
2575 memcpy(buf
, rdma
->wr_data
[idx
].control_curr
, len
);
2576 rdma
->wr_data
[idx
].control_curr
+= len
;
2577 rdma
->wr_data
[idx
].control_len
-= len
;
2584 * QEMUFile interface to the control channel.
2585 * RDMA links don't use bytestreams, so we have to
2586 * return bytes to QEMUFile opportunistically.
2588 static int qemu_rdma_get_buffer(void *opaque
, uint8_t *buf
,
2589 int64_t pos
, int size
)
2591 QEMUFileRDMA
*r
= opaque
;
2592 RDMAContext
*rdma
= r
->rdma
;
2593 RDMAControlHeader head
;
2596 CHECK_ERROR_STATE();
2599 * First, we hold on to the last SEND message we
2600 * were given and dish out the bytes until we run
2603 r
->len
= qemu_rdma_fill(r
->rdma
, buf
, size
, 0);
2609 * Once we run out, we block and wait for another
2610 * SEND message to arrive.
2612 ret
= qemu_rdma_exchange_recv(rdma
, &head
, RDMA_CONTROL_QEMU_FILE
);
2615 rdma
->error_state
= ret
;
2620 * SEND was received with new bytes, now try again.
2622 return qemu_rdma_fill(r
->rdma
, buf
, size
, 0);
2626 * Block until all the outstanding chunks have been delivered by the hardware.
2628 static int qemu_rdma_drain_cq(QEMUFile
*f
, RDMAContext
*rdma
)
2632 if (qemu_rdma_write_flush(f
, rdma
) < 0) {
2636 while (rdma
->nb_sent
) {
2637 ret
= qemu_rdma_block_for_wrid(rdma
, RDMA_WRID_RDMA_WRITE
, NULL
);
2639 error_report("rdma migration: complete polling error!");
2644 qemu_rdma_unregister_waiting(rdma
);
2649 static int qemu_rdma_close(void *opaque
)
2651 trace_qemu_rdma_close();
2652 QEMUFileRDMA
*r
= opaque
;
2654 qemu_rdma_cleanup(r
->rdma
);
2664 * This means that 'block_offset' is a full virtual address that does not
2665 * belong to a RAMBlock of the virtual machine and instead
2666 * represents a private malloc'd memory area that the caller wishes to
2670 * Offset is an offset to be added to block_offset and used
2671 * to also lookup the corresponding RAMBlock.
2674 * Initiate an transfer this size.
2677 * A 'hint' or 'advice' that means that we wish to speculatively
2678 * and asynchronously unregister this memory. In this case, there is no
2679 * guarantee that the unregister will actually happen, for example,
2680 * if the memory is being actively transmitted. Additionally, the memory
2681 * may be re-registered at any future time if a write within the same
2682 * chunk was requested again, even if you attempted to unregister it
2685 * @size < 0 : TODO, not yet supported
2686 * Unregister the memory NOW. This means that the caller does not
2687 * expect there to be any future RDMA transfers and we just want to clean
2688 * things up. This is used in case the upper layer owns the memory and
2689 * cannot wait for qemu_fclose() to occur.
2691 * @bytes_sent : User-specificed pointer to indicate how many bytes were
2692 * sent. Usually, this will not be more than a few bytes of
2693 * the protocol because most transfers are sent asynchronously.
2695 static size_t qemu_rdma_save_page(QEMUFile
*f
, void *opaque
,
2696 ram_addr_t block_offset
, ram_addr_t offset
,
2697 size_t size
, uint64_t *bytes_sent
)
2699 QEMUFileRDMA
*rfile
= opaque
;
2700 RDMAContext
*rdma
= rfile
->rdma
;
2703 CHECK_ERROR_STATE();
2709 * Add this page to the current 'chunk'. If the chunk
2710 * is full, or the page doen't belong to the current chunk,
2711 * an actual RDMA write will occur and a new chunk will be formed.
2713 ret
= qemu_rdma_write(f
, rdma
, block_offset
, offset
, size
);
2715 error_report("rdma migration: write error! %d", ret
);
2720 * We always return 1 bytes because the RDMA
2721 * protocol is completely asynchronous. We do not yet know
2722 * whether an identified chunk is zero or not because we're
2723 * waiting for other pages to potentially be merged with
2724 * the current chunk. So, we have to call qemu_update_position()
2725 * later on when the actual write occurs.
2731 uint64_t index
, chunk
;
2733 /* TODO: Change QEMUFileOps prototype to be signed: size_t => long
2735 ret = qemu_rdma_drain_cq(f, rdma);
2737 fprintf(stderr, "rdma: failed to synchronously drain"
2738 " completion queue before unregistration.\n");
2744 ret
= qemu_rdma_search_ram_block(rdma
, block_offset
,
2745 offset
, size
, &index
, &chunk
);
2748 error_report("ram block search failed");
2752 qemu_rdma_signal_unregister(rdma
, index
, chunk
, 0);
2755 * TODO: Synchronous, guaranteed unregistration (should not occur during
2756 * fast-path). Otherwise, unregisters will process on the next call to
2757 * qemu_rdma_drain_cq()
2759 qemu_rdma_unregister_waiting(rdma);
2765 * Drain the Completion Queue if possible, but do not block,
2768 * If nothing to poll, the end of the iteration will do this
2769 * again to make sure we don't overflow the request queue.
2772 uint64_t wr_id
, wr_id_in
;
2773 int ret
= qemu_rdma_poll(rdma
, &wr_id_in
, NULL
);
2775 error_report("rdma migration: polling error! %d", ret
);
2779 wr_id
= wr_id_in
& RDMA_WRID_TYPE_MASK
;
2781 if (wr_id
== RDMA_WRID_NONE
) {
2786 return RAM_SAVE_CONTROL_DELAYED
;
2788 rdma
->error_state
= ret
;
2792 static int qemu_rdma_accept(RDMAContext
*rdma
)
2794 RDMACapabilities cap
;
2795 struct rdma_conn_param conn_param
= {
2796 .responder_resources
= 2,
2797 .private_data
= &cap
,
2798 .private_data_len
= sizeof(cap
),
2800 struct rdma_cm_event
*cm_event
;
2801 struct ibv_context
*verbs
;
2805 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
2807 goto err_rdma_dest_wait
;
2810 if (cm_event
->event
!= RDMA_CM_EVENT_CONNECT_REQUEST
) {
2811 rdma_ack_cm_event(cm_event
);
2812 goto err_rdma_dest_wait
;
2815 memcpy(&cap
, cm_event
->param
.conn
.private_data
, sizeof(cap
));
2817 network_to_caps(&cap
);
2819 if (cap
.version
< 1 || cap
.version
> RDMA_CONTROL_VERSION_CURRENT
) {
2820 error_report("Unknown source RDMA version: %d, bailing...",
2822 rdma_ack_cm_event(cm_event
);
2823 goto err_rdma_dest_wait
;
2827 * Respond with only the capabilities this version of QEMU knows about.
2829 cap
.flags
&= known_capabilities
;
2832 * Enable the ones that we do know about.
2833 * Add other checks here as new ones are introduced.
2835 if (cap
.flags
& RDMA_CAPABILITY_PIN_ALL
) {
2836 rdma
->pin_all
= true;
2839 rdma
->cm_id
= cm_event
->id
;
2840 verbs
= cm_event
->id
->verbs
;
2842 rdma_ack_cm_event(cm_event
);
2844 trace_qemu_rdma_accept_pin_state(rdma
->pin_all
);
2846 caps_to_network(&cap
);
2848 trace_qemu_rdma_accept_pin_verbsc(verbs
);
2851 rdma
->verbs
= verbs
;
2852 } else if (rdma
->verbs
!= verbs
) {
2853 error_report("ibv context not matching %p, %p!", rdma
->verbs
,
2855 goto err_rdma_dest_wait
;
2858 qemu_rdma_dump_id("dest_init", verbs
);
2860 ret
= qemu_rdma_alloc_pd_cq(rdma
);
2862 error_report("rdma migration: error allocating pd and cq!");
2863 goto err_rdma_dest_wait
;
2866 ret
= qemu_rdma_alloc_qp(rdma
);
2868 error_report("rdma migration: error allocating qp!");
2869 goto err_rdma_dest_wait
;
2872 ret
= qemu_rdma_init_ram_blocks(rdma
);
2874 error_report("rdma migration: error initializing ram blocks!");
2875 goto err_rdma_dest_wait
;
2878 for (idx
= 0; idx
< RDMA_WRID_MAX
; idx
++) {
2879 ret
= qemu_rdma_reg_control(rdma
, idx
);
2881 error_report("rdma: error registering %d control", idx
);
2882 goto err_rdma_dest_wait
;
2886 qemu_set_fd_handler(rdma
->channel
->fd
, NULL
, NULL
, NULL
);
2888 ret
= rdma_accept(rdma
->cm_id
, &conn_param
);
2890 error_report("rdma_accept returns %d", ret
);
2891 goto err_rdma_dest_wait
;
2894 ret
= rdma_get_cm_event(rdma
->channel
, &cm_event
);
2896 error_report("rdma_accept get_cm_event failed %d", ret
);
2897 goto err_rdma_dest_wait
;
2900 if (cm_event
->event
!= RDMA_CM_EVENT_ESTABLISHED
) {
2901 error_report("rdma_accept not event established");
2902 rdma_ack_cm_event(cm_event
);
2903 goto err_rdma_dest_wait
;
2906 rdma_ack_cm_event(cm_event
);
2907 rdma
->connected
= true;
2909 ret
= qemu_rdma_post_recv_control(rdma
, RDMA_WRID_READY
);
2911 error_report("rdma migration: error posting second control recv");
2912 goto err_rdma_dest_wait
;
2915 qemu_rdma_dump_gid("dest_connect", rdma
->cm_id
);
2920 rdma
->error_state
= ret
;
2921 qemu_rdma_cleanup(rdma
);
2925 static int dest_ram_sort_func(const void *a
, const void *b
)
2927 unsigned int a_index
= ((const RDMALocalBlock
*)a
)->src_index
;
2928 unsigned int b_index
= ((const RDMALocalBlock
*)b
)->src_index
;
2930 return (a_index
< b_index
) ? -1 : (a_index
!= b_index
);
2934 * During each iteration of the migration, we listen for instructions
2935 * by the source VM to perform dynamic page registrations before they
2936 * can perform RDMA operations.
2938 * We respond with the 'rkey'.
2940 * Keep doing this until the source tells us to stop.
2942 static int qemu_rdma_registration_handle(QEMUFile
*f
, void *opaque
)
2944 RDMAControlHeader reg_resp
= { .len
= sizeof(RDMARegisterResult
),
2945 .type
= RDMA_CONTROL_REGISTER_RESULT
,
2948 RDMAControlHeader unreg_resp
= { .len
= 0,
2949 .type
= RDMA_CONTROL_UNREGISTER_FINISHED
,
2952 RDMAControlHeader blocks
= { .type
= RDMA_CONTROL_RAM_BLOCKS_RESULT
,
2954 QEMUFileRDMA
*rfile
= opaque
;
2955 RDMAContext
*rdma
= rfile
->rdma
;
2956 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
2957 RDMAControlHeader head
;
2958 RDMARegister
*reg
, *registers
;
2960 RDMARegisterResult
*reg_result
;
2961 static RDMARegisterResult results
[RDMA_CONTROL_MAX_COMMANDS_PER_MESSAGE
];
2962 RDMALocalBlock
*block
;
2969 CHECK_ERROR_STATE();
2972 trace_qemu_rdma_registration_handle_wait();
2974 ret
= qemu_rdma_exchange_recv(rdma
, &head
, RDMA_CONTROL_NONE
);
2980 if (head
.repeat
> RDMA_CONTROL_MAX_COMMANDS_PER_MESSAGE
) {
2981 error_report("rdma: Too many requests in this message (%d)."
2982 "Bailing.", head
.repeat
);
2987 switch (head
.type
) {
2988 case RDMA_CONTROL_COMPRESS
:
2989 comp
= (RDMACompress
*) rdma
->wr_data
[idx
].control_curr
;
2990 network_to_compress(comp
);
2992 trace_qemu_rdma_registration_handle_compress(comp
->length
,
2995 if (comp
->block_idx
>= rdma
->local_ram_blocks
.nb_blocks
) {
2996 error_report("rdma: 'compress' bad block index %u (vs %d)",
2997 (unsigned int)comp
->block_idx
,
2998 rdma
->local_ram_blocks
.nb_blocks
);
3002 block
= &(rdma
->local_ram_blocks
.block
[comp
->block_idx
]);
3004 host_addr
= block
->local_host_addr
+
3005 (comp
->offset
- block
->offset
);
3007 ram_handle_compressed(host_addr
, comp
->value
, comp
->length
);
3010 case RDMA_CONTROL_REGISTER_FINISHED
:
3011 trace_qemu_rdma_registration_handle_finished();
3014 case RDMA_CONTROL_RAM_BLOCKS_REQUEST
:
3015 trace_qemu_rdma_registration_handle_ram_blocks();
3017 /* Sort our local RAM Block list so it's the same as the source,
3018 * we can do this since we've filled in a src_index in the list
3019 * as we received the RAMBlock list earlier.
3021 qsort(rdma
->local_ram_blocks
.block
,
3022 rdma
->local_ram_blocks
.nb_blocks
,
3023 sizeof(RDMALocalBlock
), dest_ram_sort_func
);
3024 if (rdma
->pin_all
) {
3025 ret
= qemu_rdma_reg_whole_ram_blocks(rdma
);
3027 error_report("rdma migration: error dest "
3028 "registering ram blocks");
3034 * Dest uses this to prepare to transmit the RAMBlock descriptions
3035 * to the source VM after connection setup.
3036 * Both sides use the "remote" structure to communicate and update
3037 * their "local" descriptions with what was sent.
3039 for (i
= 0; i
< local
->nb_blocks
; i
++) {
3040 rdma
->dest_blocks
[i
].remote_host_addr
=
3041 (uintptr_t)(local
->block
[i
].local_host_addr
);
3043 if (rdma
->pin_all
) {
3044 rdma
->dest_blocks
[i
].remote_rkey
= local
->block
[i
].mr
->rkey
;
3047 rdma
->dest_blocks
[i
].offset
= local
->block
[i
].offset
;
3048 rdma
->dest_blocks
[i
].length
= local
->block
[i
].length
;
3050 dest_block_to_network(&rdma
->dest_blocks
[i
]);
3051 trace_qemu_rdma_registration_handle_ram_blocks_loop(
3052 local
->block
[i
].block_name
,
3053 local
->block
[i
].offset
,
3054 local
->block
[i
].length
,
3055 local
->block
[i
].local_host_addr
,
3056 local
->block
[i
].src_index
);
3059 blocks
.len
= rdma
->local_ram_blocks
.nb_blocks
3060 * sizeof(RDMADestBlock
);
3063 ret
= qemu_rdma_post_send_control(rdma
,
3064 (uint8_t *) rdma
->dest_blocks
, &blocks
);
3067 error_report("rdma migration: error sending remote info");
3072 case RDMA_CONTROL_REGISTER_REQUEST
:
3073 trace_qemu_rdma_registration_handle_register(head
.repeat
);
3075 reg_resp
.repeat
= head
.repeat
;
3076 registers
= (RDMARegister
*) rdma
->wr_data
[idx
].control_curr
;
3078 for (count
= 0; count
< head
.repeat
; count
++) {
3080 uint8_t *chunk_start
, *chunk_end
;
3082 reg
= ®isters
[count
];
3083 network_to_register(reg
);
3085 reg_result
= &results
[count
];
3087 trace_qemu_rdma_registration_handle_register_loop(count
,
3088 reg
->current_index
, reg
->key
.current_addr
, reg
->chunks
);
3090 if (reg
->current_index
>= rdma
->local_ram_blocks
.nb_blocks
) {
3091 error_report("rdma: 'register' bad block index %u (vs %d)",
3092 (unsigned int)reg
->current_index
,
3093 rdma
->local_ram_blocks
.nb_blocks
);
3097 block
= &(rdma
->local_ram_blocks
.block
[reg
->current_index
]);
3098 if (block
->is_ram_block
) {
3099 if (block
->offset
> reg
->key
.current_addr
) {
3100 error_report("rdma: bad register address for block %s"
3101 " offset: %" PRIx64
" current_addr: %" PRIx64
,
3102 block
->block_name
, block
->offset
,
3103 reg
->key
.current_addr
);
3107 host_addr
= (block
->local_host_addr
+
3108 (reg
->key
.current_addr
- block
->offset
));
3109 chunk
= ram_chunk_index(block
->local_host_addr
,
3110 (uint8_t *) host_addr
);
3112 chunk
= reg
->key
.chunk
;
3113 host_addr
= block
->local_host_addr
+
3114 (reg
->key
.chunk
* (1UL << RDMA_REG_CHUNK_SHIFT
));
3115 /* Check for particularly bad chunk value */
3116 if (host_addr
< (void *)block
->local_host_addr
) {
3117 error_report("rdma: bad chunk for block %s"
3119 block
->block_name
, reg
->key
.chunk
);
3124 chunk_start
= ram_chunk_start(block
, chunk
);
3125 chunk_end
= ram_chunk_end(block
, chunk
+ reg
->chunks
);
3126 if (qemu_rdma_register_and_get_keys(rdma
, block
,
3127 (uintptr_t)host_addr
, NULL
, ®_result
->rkey
,
3128 chunk
, chunk_start
, chunk_end
)) {
3129 error_report("cannot get rkey");
3134 reg_result
->host_addr
= (uintptr_t)block
->local_host_addr
;
3136 trace_qemu_rdma_registration_handle_register_rkey(
3139 result_to_network(reg_result
);
3142 ret
= qemu_rdma_post_send_control(rdma
,
3143 (uint8_t *) results
, ®_resp
);
3146 error_report("Failed to send control buffer");
3150 case RDMA_CONTROL_UNREGISTER_REQUEST
:
3151 trace_qemu_rdma_registration_handle_unregister(head
.repeat
);
3152 unreg_resp
.repeat
= head
.repeat
;
3153 registers
= (RDMARegister
*) rdma
->wr_data
[idx
].control_curr
;
3155 for (count
= 0; count
< head
.repeat
; count
++) {
3156 reg
= ®isters
[count
];
3157 network_to_register(reg
);
3159 trace_qemu_rdma_registration_handle_unregister_loop(count
,
3160 reg
->current_index
, reg
->key
.chunk
);
3162 block
= &(rdma
->local_ram_blocks
.block
[reg
->current_index
]);
3164 ret
= ibv_dereg_mr(block
->pmr
[reg
->key
.chunk
]);
3165 block
->pmr
[reg
->key
.chunk
] = NULL
;
3168 perror("rdma unregistration chunk failed");
3173 rdma
->total_registrations
--;
3175 trace_qemu_rdma_registration_handle_unregister_success(
3179 ret
= qemu_rdma_post_send_control(rdma
, NULL
, &unreg_resp
);
3182 error_report("Failed to send control buffer");
3186 case RDMA_CONTROL_REGISTER_RESULT
:
3187 error_report("Invalid RESULT message at dest.");
3191 error_report("Unknown control message %s", control_desc
[head
.type
]);
3198 rdma
->error_state
= ret
;
3204 * Called via a ram_control_load_hook during the initial RAM load section which
3205 * lists the RAMBlocks by name. This lets us know the order of the RAMBlocks
3207 * We've already built our local RAMBlock list, but not yet sent the list to
3210 static int rdma_block_notification_handle(QEMUFileRDMA
*rfile
, const char *name
)
3212 RDMAContext
*rdma
= rfile
->rdma
;
3216 /* Find the matching RAMBlock in our local list */
3217 for (curr
= 0; curr
< rdma
->local_ram_blocks
.nb_blocks
; curr
++) {
3218 if (!strcmp(rdma
->local_ram_blocks
.block
[curr
].block_name
, name
)) {
3225 error_report("RAMBlock '%s' not found on destination", name
);
3229 rdma
->local_ram_blocks
.block
[curr
].src_index
= rdma
->next_src_index
;
3230 trace_rdma_block_notification_handle(name
, rdma
->next_src_index
);
3231 rdma
->next_src_index
++;
3236 static int rdma_load_hook(QEMUFile
*f
, void *opaque
, uint64_t flags
, void *data
)
3239 case RAM_CONTROL_BLOCK_REG
:
3240 return rdma_block_notification_handle(opaque
, data
);
3242 case RAM_CONTROL_HOOK
:
3243 return qemu_rdma_registration_handle(f
, opaque
);
3246 /* Shouldn't be called with any other values */
3251 static int qemu_rdma_registration_start(QEMUFile
*f
, void *opaque
,
3252 uint64_t flags
, void *data
)
3254 QEMUFileRDMA
*rfile
= opaque
;
3255 RDMAContext
*rdma
= rfile
->rdma
;
3257 CHECK_ERROR_STATE();
3259 trace_qemu_rdma_registration_start(flags
);
3260 qemu_put_be64(f
, RAM_SAVE_FLAG_HOOK
);
3267 * Inform dest that dynamic registrations are done for now.
3268 * First, flush writes, if any.
3270 static int qemu_rdma_registration_stop(QEMUFile
*f
, void *opaque
,
3271 uint64_t flags
, void *data
)
3273 Error
*local_err
= NULL
, **errp
= &local_err
;
3274 QEMUFileRDMA
*rfile
= opaque
;
3275 RDMAContext
*rdma
= rfile
->rdma
;
3276 RDMAControlHeader head
= { .len
= 0, .repeat
= 1 };
3279 CHECK_ERROR_STATE();
3282 ret
= qemu_rdma_drain_cq(f
, rdma
);
3288 if (flags
== RAM_CONTROL_SETUP
) {
3289 RDMAControlHeader resp
= {.type
= RDMA_CONTROL_RAM_BLOCKS_RESULT
};
3290 RDMALocalBlocks
*local
= &rdma
->local_ram_blocks
;
3291 int reg_result_idx
, i
, nb_dest_blocks
;
3293 head
.type
= RDMA_CONTROL_RAM_BLOCKS_REQUEST
;
3294 trace_qemu_rdma_registration_stop_ram();
3297 * Make sure that we parallelize the pinning on both sides.
3298 * For very large guests, doing this serially takes a really
3299 * long time, so we have to 'interleave' the pinning locally
3300 * with the control messages by performing the pinning on this
3301 * side before we receive the control response from the other
3302 * side that the pinning has completed.
3304 ret
= qemu_rdma_exchange_send(rdma
, &head
, NULL
, &resp
,
3305 ®_result_idx
, rdma
->pin_all
?
3306 qemu_rdma_reg_whole_ram_blocks
: NULL
);
3308 ERROR(errp
, "receiving remote info!");
3312 nb_dest_blocks
= resp
.len
/ sizeof(RDMADestBlock
);
3315 * The protocol uses two different sets of rkeys (mutually exclusive):
3316 * 1. One key to represent the virtual address of the entire ram block.
3317 * (dynamic chunk registration disabled - pin everything with one rkey.)
3318 * 2. One to represent individual chunks within a ram block.
3319 * (dynamic chunk registration enabled - pin individual chunks.)
3321 * Once the capability is successfully negotiated, the destination transmits
3322 * the keys to use (or sends them later) including the virtual addresses
3323 * and then propagates the remote ram block descriptions to his local copy.
3326 if (local
->nb_blocks
!= nb_dest_blocks
) {
3327 ERROR(errp
, "ram blocks mismatch (Number of blocks %d vs %d) "
3328 "Your QEMU command line parameters are probably "
3329 "not identical on both the source and destination.",
3330 local
->nb_blocks
, nb_dest_blocks
);
3331 rdma
->error_state
= -EINVAL
;
3335 qemu_rdma_move_header(rdma
, reg_result_idx
, &resp
);
3336 memcpy(rdma
->dest_blocks
,
3337 rdma
->wr_data
[reg_result_idx
].control_curr
, resp
.len
);
3338 for (i
= 0; i
< nb_dest_blocks
; i
++) {
3339 network_to_dest_block(&rdma
->dest_blocks
[i
]);
3341 /* We require that the blocks are in the same order */
3342 if (rdma
->dest_blocks
[i
].length
!= local
->block
[i
].length
) {
3343 ERROR(errp
, "Block %s/%d has a different length %" PRIu64
3344 "vs %" PRIu64
, local
->block
[i
].block_name
, i
,
3345 local
->block
[i
].length
,
3346 rdma
->dest_blocks
[i
].length
);
3347 rdma
->error_state
= -EINVAL
;
3350 local
->block
[i
].remote_host_addr
=
3351 rdma
->dest_blocks
[i
].remote_host_addr
;
3352 local
->block
[i
].remote_rkey
= rdma
->dest_blocks
[i
].remote_rkey
;
3356 trace_qemu_rdma_registration_stop(flags
);
3358 head
.type
= RDMA_CONTROL_REGISTER_FINISHED
;
3359 ret
= qemu_rdma_exchange_send(rdma
, &head
, NULL
, NULL
, NULL
, NULL
);
3367 rdma
->error_state
= ret
;
3371 static int qemu_rdma_get_fd(void *opaque
)
3373 QEMUFileRDMA
*rfile
= opaque
;
3374 RDMAContext
*rdma
= rfile
->rdma
;
3376 return rdma
->comp_channel
->fd
;
3379 static const QEMUFileOps rdma_read_ops
= {
3380 .get_buffer
= qemu_rdma_get_buffer
,
3381 .get_fd
= qemu_rdma_get_fd
,
3382 .close
= qemu_rdma_close
,
3383 .hook_ram_load
= rdma_load_hook
,
3386 static const QEMUFileOps rdma_write_ops
= {
3387 .put_buffer
= qemu_rdma_put_buffer
,
3388 .close
= qemu_rdma_close
,
3389 .before_ram_iterate
= qemu_rdma_registration_start
,
3390 .after_ram_iterate
= qemu_rdma_registration_stop
,
3391 .save_page
= qemu_rdma_save_page
,
3394 static void *qemu_fopen_rdma(RDMAContext
*rdma
, const char *mode
)
3398 if (qemu_file_mode_is_not_valid(mode
)) {
3402 r
= g_malloc0(sizeof(QEMUFileRDMA
));
3405 if (mode
[0] == 'w') {
3406 r
->file
= qemu_fopen_ops(r
, &rdma_write_ops
);
3408 r
->file
= qemu_fopen_ops(r
, &rdma_read_ops
);
3414 static void rdma_accept_incoming_migration(void *opaque
)
3416 RDMAContext
*rdma
= opaque
;
3419 Error
*local_err
= NULL
, **errp
= &local_err
;
3421 trace_qemu_rdma_accept_incoming_migration();
3422 ret
= qemu_rdma_accept(rdma
);
3425 ERROR(errp
, "RDMA Migration initialization failed!");
3429 trace_qemu_rdma_accept_incoming_migration_accepted();
3431 f
= qemu_fopen_rdma(rdma
, "rb");
3433 ERROR(errp
, "could not qemu_fopen_rdma!");
3434 qemu_rdma_cleanup(rdma
);
3438 rdma
->migration_started_on_destination
= 1;
3439 process_incoming_migration(f
);
3442 void rdma_start_incoming_migration(const char *host_port
, Error
**errp
)
3446 Error
*local_err
= NULL
;
3448 trace_rdma_start_incoming_migration();
3449 rdma
= qemu_rdma_data_init(host_port
, &local_err
);
3455 ret
= qemu_rdma_dest_init(rdma
, &local_err
);
3461 trace_rdma_start_incoming_migration_after_dest_init();
3463 ret
= rdma_listen(rdma
->listen_id
, 5);
3466 ERROR(errp
, "listening on socket!");
3470 trace_rdma_start_incoming_migration_after_rdma_listen();
3472 qemu_set_fd_handler(rdma
->channel
->fd
, rdma_accept_incoming_migration
,
3473 NULL
, (void *)(intptr_t)rdma
);
3476 error_propagate(errp
, local_err
);
3480 void rdma_start_outgoing_migration(void *opaque
,
3481 const char *host_port
, Error
**errp
)
3483 MigrationState
*s
= opaque
;
3484 Error
*local_err
= NULL
, **temp
= &local_err
;
3485 RDMAContext
*rdma
= qemu_rdma_data_init(host_port
, &local_err
);
3489 ERROR(temp
, "Failed to initialize RDMA data structures! %d", ret
);
3493 ret
= qemu_rdma_source_init(rdma
, &local_err
,
3494 s
->enabled_capabilities
[MIGRATION_CAPABILITY_RDMA_PIN_ALL
]);
3500 trace_rdma_start_outgoing_migration_after_rdma_source_init();
3501 ret
= qemu_rdma_connect(rdma
, &local_err
);
3507 trace_rdma_start_outgoing_migration_after_rdma_connect();
3509 s
->file
= qemu_fopen_rdma(rdma
, "wb");
3510 migrate_fd_connect(s
);
3513 error_propagate(errp
, local_err
);
3515 migrate_fd_error(s
);