4 * Copyright (c) 2019-2020 Red Hat Inc
7 * Juan Quintela <quintela@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
15 #include "exec/target_page.h"
16 #include "sysemu/sysemu.h"
17 #include "exec/ramblock.h"
18 #include "qemu/error-report.h"
19 #include "qapi/error.h"
21 #include "migration.h"
24 #include "qemu-file.h"
30 #define MULTIFD_MAGIC 0x11223344U
31 #define MULTIFD_VERSION 1
36 unsigned char uuid
[16]; /* QemuUUID */
38 uint8_t unused1
[7]; /* Reserved for future use */
39 uint64_t unused2
[4]; /* Reserved for future use */
40 } __attribute__((packed
)) MultiFDInit_t
;
42 /* Multifd without compression */
45 * nocomp_send_setup: setup send side
47 * For no compression this function does nothing.
49 * Returns 0 for success or -1 for error
51 * @p: Params for the channel that we are using
52 * @errp: pointer to an error
54 static int nocomp_send_setup(MultiFDSendParams
*p
, Error
**errp
)
60 * nocomp_send_cleanup: cleanup send side
62 * For no compression this function does nothing.
64 * @p: Params for the channel that we are using
66 static void nocomp_send_cleanup(MultiFDSendParams
*p
, Error
**errp
)
72 * nocomp_send_prepare: prepare date to be able to send
74 * For no compression we just have to calculate the size of the
77 * Returns 0 for success or -1 for error
79 * @p: Params for the channel that we are using
80 * @used: number of pages used
81 * @errp: pointer to an error
83 static int nocomp_send_prepare(MultiFDSendParams
*p
, uint32_t used
,
86 p
->next_packet_size
= used
* qemu_target_page_size();
87 p
->flags
|= MULTIFD_FLAG_NOCOMP
;
92 * nocomp_send_write: do the actual write of the data
94 * For no compression we just have to write the data.
96 * Returns 0 for success or -1 for error
98 * @p: Params for the channel that we are using
99 * @used: number of pages used
100 * @errp: pointer to an error
102 static int nocomp_send_write(MultiFDSendParams
*p
, uint32_t used
, Error
**errp
)
104 return qio_channel_writev_all(p
->c
, p
->pages
->iov
, used
, errp
);
108 * nocomp_recv_setup: setup receive side
110 * For no compression this function does nothing.
112 * Returns 0 for success or -1 for error
114 * @p: Params for the channel that we are using
115 * @errp: pointer to an error
117 static int nocomp_recv_setup(MultiFDRecvParams
*p
, Error
**errp
)
123 * nocomp_recv_cleanup: setup receive side
125 * For no compression this function does nothing.
127 * @p: Params for the channel that we are using
129 static void nocomp_recv_cleanup(MultiFDRecvParams
*p
)
134 * nocomp_recv_pages: read the data from the channel into actual pages
136 * For no compression we just need to read things into the correct place.
138 * Returns 0 for success or -1 for error
140 * @p: Params for the channel that we are using
141 * @used: number of pages used
142 * @errp: pointer to an error
144 static int nocomp_recv_pages(MultiFDRecvParams
*p
, uint32_t used
, Error
**errp
)
146 uint32_t flags
= p
->flags
& MULTIFD_FLAG_COMPRESSION_MASK
;
148 if (flags
!= MULTIFD_FLAG_NOCOMP
) {
149 error_setg(errp
, "multifd %d: flags received %x flags expected %x",
150 p
->id
, flags
, MULTIFD_FLAG_NOCOMP
);
153 return qio_channel_readv_all(p
->c
, p
->pages
->iov
, used
, errp
);
156 static MultiFDMethods multifd_nocomp_ops
= {
157 .send_setup
= nocomp_send_setup
,
158 .send_cleanup
= nocomp_send_cleanup
,
159 .send_prepare
= nocomp_send_prepare
,
160 .send_write
= nocomp_send_write
,
161 .recv_setup
= nocomp_recv_setup
,
162 .recv_cleanup
= nocomp_recv_cleanup
,
163 .recv_pages
= nocomp_recv_pages
166 static MultiFDMethods
*multifd_ops
[MULTIFD_COMPRESSION__MAX
] = {
167 [MULTIFD_COMPRESSION_NONE
] = &multifd_nocomp_ops
,
170 void multifd_register_ops(int method
, MultiFDMethods
*ops
)
172 assert(0 < method
&& method
< MULTIFD_COMPRESSION__MAX
);
173 multifd_ops
[method
] = ops
;
176 static int multifd_send_initial_packet(MultiFDSendParams
*p
, Error
**errp
)
178 MultiFDInit_t msg
= {};
181 msg
.magic
= cpu_to_be32(MULTIFD_MAGIC
);
182 msg
.version
= cpu_to_be32(MULTIFD_VERSION
);
184 memcpy(msg
.uuid
, &qemu_uuid
.data
, sizeof(msg
.uuid
));
186 ret
= qio_channel_write_all(p
->c
, (char *)&msg
, sizeof(msg
), errp
);
193 static int multifd_recv_initial_packet(QIOChannel
*c
, Error
**errp
)
198 ret
= qio_channel_read_all(c
, (char *)&msg
, sizeof(msg
), errp
);
203 msg
.magic
= be32_to_cpu(msg
.magic
);
204 msg
.version
= be32_to_cpu(msg
.version
);
206 if (msg
.magic
!= MULTIFD_MAGIC
) {
207 error_setg(errp
, "multifd: received packet magic %x "
208 "expected %x", msg
.magic
, MULTIFD_MAGIC
);
212 if (msg
.version
!= MULTIFD_VERSION
) {
213 error_setg(errp
, "multifd: received packet version %d "
214 "expected %d", msg
.version
, MULTIFD_VERSION
);
218 if (memcmp(msg
.uuid
, &qemu_uuid
, sizeof(qemu_uuid
))) {
219 char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
220 char *msg_uuid
= qemu_uuid_unparse_strdup((const QemuUUID
*)msg
.uuid
);
222 error_setg(errp
, "multifd: received uuid '%s' and expected "
223 "uuid '%s' for channel %hhd", msg_uuid
, uuid
, msg
.id
);
229 if (msg
.id
> migrate_multifd_channels()) {
230 error_setg(errp
, "multifd: received channel version %d "
231 "expected %d", msg
.version
, MULTIFD_VERSION
);
238 static MultiFDPages_t
*multifd_pages_init(size_t size
)
240 MultiFDPages_t
*pages
= g_new0(MultiFDPages_t
, 1);
242 pages
->allocated
= size
;
243 pages
->iov
= g_new0(struct iovec
, size
);
244 pages
->offset
= g_new0(ram_addr_t
, size
);
249 static void multifd_pages_clear(MultiFDPages_t
*pages
)
252 pages
->allocated
= 0;
253 pages
->packet_num
= 0;
257 g_free(pages
->offset
);
258 pages
->offset
= NULL
;
262 static void multifd_send_fill_packet(MultiFDSendParams
*p
)
264 MultiFDPacket_t
*packet
= p
->packet
;
267 packet
->flags
= cpu_to_be32(p
->flags
);
268 packet
->pages_alloc
= cpu_to_be32(p
->pages
->allocated
);
269 packet
->pages_used
= cpu_to_be32(p
->pages
->used
);
270 packet
->next_packet_size
= cpu_to_be32(p
->next_packet_size
);
271 packet
->packet_num
= cpu_to_be64(p
->packet_num
);
273 if (p
->pages
->block
) {
274 strncpy(packet
->ramblock
, p
->pages
->block
->idstr
, 256);
277 for (i
= 0; i
< p
->pages
->used
; i
++) {
278 /* there are architectures where ram_addr_t is 32 bit */
279 uint64_t temp
= p
->pages
->offset
[i
];
281 packet
->offset
[i
] = cpu_to_be64(temp
);
285 static int multifd_recv_unfill_packet(MultiFDRecvParams
*p
, Error
**errp
)
287 MultiFDPacket_t
*packet
= p
->packet
;
288 uint32_t pages_max
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
292 packet
->magic
= be32_to_cpu(packet
->magic
);
293 if (packet
->magic
!= MULTIFD_MAGIC
) {
294 error_setg(errp
, "multifd: received packet "
295 "magic %x and expected magic %x",
296 packet
->magic
, MULTIFD_MAGIC
);
300 packet
->version
= be32_to_cpu(packet
->version
);
301 if (packet
->version
!= MULTIFD_VERSION
) {
302 error_setg(errp
, "multifd: received packet "
303 "version %d and expected version %d",
304 packet
->version
, MULTIFD_VERSION
);
308 p
->flags
= be32_to_cpu(packet
->flags
);
310 packet
->pages_alloc
= be32_to_cpu(packet
->pages_alloc
);
312 * If we received a packet that is 100 times bigger than expected
313 * just stop migration. It is a magic number.
315 if (packet
->pages_alloc
> pages_max
* 100) {
316 error_setg(errp
, "multifd: received packet "
317 "with size %d and expected a maximum size of %d",
318 packet
->pages_alloc
, pages_max
* 100) ;
322 * We received a packet that is bigger than expected but inside
323 * reasonable limits (see previous comment). Just reallocate.
325 if (packet
->pages_alloc
> p
->pages
->allocated
) {
326 multifd_pages_clear(p
->pages
);
327 p
->pages
= multifd_pages_init(packet
->pages_alloc
);
330 p
->pages
->used
= be32_to_cpu(packet
->pages_used
);
331 if (p
->pages
->used
> packet
->pages_alloc
) {
332 error_setg(errp
, "multifd: received packet "
333 "with %d pages and expected maximum pages are %d",
334 p
->pages
->used
, packet
->pages_alloc
) ;
338 p
->next_packet_size
= be32_to_cpu(packet
->next_packet_size
);
339 p
->packet_num
= be64_to_cpu(packet
->packet_num
);
341 if (p
->pages
->used
== 0) {
345 /* make sure that ramblock is 0 terminated */
346 packet
->ramblock
[255] = 0;
347 block
= qemu_ram_block_by_name(packet
->ramblock
);
349 error_setg(errp
, "multifd: unknown ram block %s",
354 for (i
= 0; i
< p
->pages
->used
; i
++) {
355 uint64_t offset
= be64_to_cpu(packet
->offset
[i
]);
357 if (offset
> (block
->used_length
- qemu_target_page_size())) {
358 error_setg(errp
, "multifd: offset too long %" PRIu64
359 " (max " RAM_ADDR_FMT
")",
360 offset
, block
->max_length
);
363 p
->pages
->iov
[i
].iov_base
= block
->host
+ offset
;
364 p
->pages
->iov
[i
].iov_len
= qemu_target_page_size();
371 MultiFDSendParams
*params
;
372 /* array of pages to sent */
373 MultiFDPages_t
*pages
;
374 /* global number of generated multifd packets */
376 /* send channels ready */
377 QemuSemaphore channels_ready
;
379 * Have we already run terminate threads. There is a race when it
380 * happens that we got one error while we are exiting.
381 * We will use atomic operations. Only valid values are 0 and 1.
386 } *multifd_send_state
;
389 * How we use multifd_send_state->pages and channel->pages?
391 * We create a pages for each channel, and a main one. Each time that
392 * we need to send a batch of pages we interchange the ones between
393 * multifd_send_state and the channel that is sending it. There are
394 * two reasons for that:
395 * - to not have to do so many mallocs during migration
396 * - to make easier to know what to free at the end of migration
398 * This way we always know who is the owner of each "pages" struct,
399 * and we don't need any locking. It belongs to the migration thread
400 * or to the channel thread. Switching is safe because the migration
401 * thread is using the channel mutex when changing it, and the channel
402 * have to had finish with its own, otherwise pending_job can't be
406 static int multifd_send_pages(QEMUFile
*f
)
409 static int next_channel
;
410 MultiFDSendParams
*p
= NULL
; /* make happy gcc */
411 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
412 uint64_t transferred
;
414 if (qatomic_read(&multifd_send_state
->exiting
)) {
418 qemu_sem_wait(&multifd_send_state
->channels_ready
);
420 * next_channel can remain from a previous migration that was
421 * using more channels, so ensure it doesn't overflow if the
422 * limit is lower now.
424 next_channel
%= migrate_multifd_channels();
425 for (i
= next_channel
;; i
= (i
+ 1) % migrate_multifd_channels()) {
426 p
= &multifd_send_state
->params
[i
];
428 qemu_mutex_lock(&p
->mutex
);
430 error_report("%s: channel %d has already quit!", __func__
, i
);
431 qemu_mutex_unlock(&p
->mutex
);
434 if (!p
->pending_job
) {
436 next_channel
= (i
+ 1) % migrate_multifd_channels();
439 qemu_mutex_unlock(&p
->mutex
);
441 assert(!p
->pages
->used
);
442 assert(!p
->pages
->block
);
444 p
->packet_num
= multifd_send_state
->packet_num
++;
445 multifd_send_state
->pages
= p
->pages
;
447 transferred
= ((uint64_t) pages
->used
) * qemu_target_page_size()
449 qemu_file_update_transfer(f
, transferred
);
450 ram_counters
.multifd_bytes
+= transferred
;
451 ram_counters
.transferred
+= transferred
;
452 qemu_mutex_unlock(&p
->mutex
);
453 qemu_sem_post(&p
->sem
);
458 int multifd_queue_page(QEMUFile
*f
, RAMBlock
*block
, ram_addr_t offset
)
460 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
463 pages
->block
= block
;
466 if (pages
->block
== block
) {
467 pages
->offset
[pages
->used
] = offset
;
468 pages
->iov
[pages
->used
].iov_base
= block
->host
+ offset
;
469 pages
->iov
[pages
->used
].iov_len
= qemu_target_page_size();
472 if (pages
->used
< pages
->allocated
) {
477 if (multifd_send_pages(f
) < 0) {
481 if (pages
->block
!= block
) {
482 return multifd_queue_page(f
, block
, offset
);
488 static void multifd_send_terminate_threads(Error
*err
)
492 trace_multifd_send_terminate_threads(err
!= NULL
);
495 MigrationState
*s
= migrate_get_current();
496 migrate_set_error(s
, err
);
497 if (s
->state
== MIGRATION_STATUS_SETUP
||
498 s
->state
== MIGRATION_STATUS_PRE_SWITCHOVER
||
499 s
->state
== MIGRATION_STATUS_DEVICE
||
500 s
->state
== MIGRATION_STATUS_ACTIVE
) {
501 migrate_set_state(&s
->state
, s
->state
,
502 MIGRATION_STATUS_FAILED
);
507 * We don't want to exit each threads twice. Depending on where
508 * we get the error, or if there are two independent errors in two
509 * threads at the same time, we can end calling this function
512 if (qatomic_xchg(&multifd_send_state
->exiting
, 1)) {
516 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
517 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
519 qemu_mutex_lock(&p
->mutex
);
521 qemu_sem_post(&p
->sem
);
522 qemu_mutex_unlock(&p
->mutex
);
526 void multifd_save_cleanup(void)
530 if (!migrate_use_multifd()) {
533 multifd_send_terminate_threads(NULL
);
534 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
535 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
538 qemu_thread_join(&p
->thread
);
541 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
542 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
543 Error
*local_err
= NULL
;
545 socket_send_channel_destroy(p
->c
);
547 qemu_mutex_destroy(&p
->mutex
);
548 qemu_sem_destroy(&p
->sem
);
549 qemu_sem_destroy(&p
->sem_sync
);
552 g_free(p
->tls_hostname
);
553 p
->tls_hostname
= NULL
;
554 multifd_pages_clear(p
->pages
);
559 multifd_send_state
->ops
->send_cleanup(p
, &local_err
);
561 migrate_set_error(migrate_get_current(), local_err
);
562 error_free(local_err
);
565 qemu_sem_destroy(&multifd_send_state
->channels_ready
);
566 g_free(multifd_send_state
->params
);
567 multifd_send_state
->params
= NULL
;
568 multifd_pages_clear(multifd_send_state
->pages
);
569 multifd_send_state
->pages
= NULL
;
570 g_free(multifd_send_state
);
571 multifd_send_state
= NULL
;
574 void multifd_send_sync_main(QEMUFile
*f
)
578 if (!migrate_use_multifd()) {
581 if (multifd_send_state
->pages
->used
) {
582 if (multifd_send_pages(f
) < 0) {
583 error_report("%s: multifd_send_pages fail", __func__
);
587 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
588 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
590 trace_multifd_send_sync_main_signal(p
->id
);
592 qemu_mutex_lock(&p
->mutex
);
595 error_report("%s: channel %d has already quit", __func__
, i
);
596 qemu_mutex_unlock(&p
->mutex
);
600 p
->packet_num
= multifd_send_state
->packet_num
++;
601 p
->flags
|= MULTIFD_FLAG_SYNC
;
603 qemu_file_update_transfer(f
, p
->packet_len
);
604 ram_counters
.multifd_bytes
+= p
->packet_len
;
605 ram_counters
.transferred
+= p
->packet_len
;
606 qemu_mutex_unlock(&p
->mutex
);
607 qemu_sem_post(&p
->sem
);
609 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
610 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
612 trace_multifd_send_sync_main_wait(p
->id
);
613 qemu_sem_wait(&p
->sem_sync
);
615 trace_multifd_send_sync_main(multifd_send_state
->packet_num
);
618 static void *multifd_send_thread(void *opaque
)
620 MultiFDSendParams
*p
= opaque
;
621 Error
*local_err
= NULL
;
625 trace_multifd_send_thread_start(p
->id
);
626 rcu_register_thread();
628 if (multifd_send_initial_packet(p
, &local_err
) < 0) {
636 qemu_sem_wait(&p
->sem
);
638 if (qatomic_read(&multifd_send_state
->exiting
)) {
641 qemu_mutex_lock(&p
->mutex
);
643 if (p
->pending_job
) {
644 uint32_t used
= p
->pages
->used
;
645 uint64_t packet_num
= p
->packet_num
;
649 ret
= multifd_send_state
->ops
->send_prepare(p
, used
,
652 qemu_mutex_unlock(&p
->mutex
);
656 multifd_send_fill_packet(p
);
659 p
->num_pages
+= used
;
661 p
->pages
->block
= NULL
;
662 qemu_mutex_unlock(&p
->mutex
);
664 trace_multifd_send(p
->id
, packet_num
, used
, flags
,
665 p
->next_packet_size
);
667 ret
= qio_channel_write_all(p
->c
, (void *)p
->packet
,
668 p
->packet_len
, &local_err
);
674 ret
= multifd_send_state
->ops
->send_write(p
, used
, &local_err
);
680 qemu_mutex_lock(&p
->mutex
);
682 qemu_mutex_unlock(&p
->mutex
);
684 if (flags
& MULTIFD_FLAG_SYNC
) {
685 qemu_sem_post(&p
->sem_sync
);
687 qemu_sem_post(&multifd_send_state
->channels_ready
);
688 } else if (p
->quit
) {
689 qemu_mutex_unlock(&p
->mutex
);
692 qemu_mutex_unlock(&p
->mutex
);
693 /* sometimes there are spurious wakeups */
699 trace_multifd_send_error(p
->id
);
700 multifd_send_terminate_threads(local_err
);
701 error_free(local_err
);
705 * Error happen, I will exit, but I can't just leave, tell
706 * who pay attention to me.
709 qemu_sem_post(&p
->sem_sync
);
710 qemu_sem_post(&multifd_send_state
->channels_ready
);
713 qemu_mutex_lock(&p
->mutex
);
715 qemu_mutex_unlock(&p
->mutex
);
717 rcu_unregister_thread();
718 trace_multifd_send_thread_end(p
->id
, p
->num_packets
, p
->num_pages
);
723 static bool multifd_channel_connect(MultiFDSendParams
*p
,
727 static void multifd_tls_outgoing_handshake(QIOTask
*task
,
730 MultiFDSendParams
*p
= opaque
;
731 QIOChannel
*ioc
= QIO_CHANNEL(qio_task_get_source(task
));
734 if (qio_task_propagate_error(task
, &err
)) {
735 trace_multifd_tls_outgoing_handshake_error(ioc
, error_get_pretty(err
));
737 trace_multifd_tls_outgoing_handshake_complete(ioc
);
739 multifd_channel_connect(p
, ioc
, err
);
742 static void multifd_tls_channel_connect(MultiFDSendParams
*p
,
746 MigrationState
*s
= migrate_get_current();
747 const char *hostname
= p
->tls_hostname
;
750 tioc
= migration_tls_client_create(s
, ioc
, hostname
, errp
);
755 trace_multifd_tls_outgoing_handshake_start(ioc
, tioc
, hostname
);
756 qio_channel_set_name(QIO_CHANNEL(tioc
), "multifd-tls-outgoing");
757 qio_channel_tls_handshake(tioc
,
758 multifd_tls_outgoing_handshake
,
765 static bool multifd_channel_connect(MultiFDSendParams
*p
,
769 MigrationState
*s
= migrate_get_current();
771 trace_multifd_set_outgoing_channel(
772 ioc
, object_get_typename(OBJECT(ioc
)), p
->tls_hostname
, error
);
775 if (s
->parameters
.tls_creds
&&
776 *s
->parameters
.tls_creds
&&
777 !object_dynamic_cast(OBJECT(ioc
),
778 TYPE_QIO_CHANNEL_TLS
)) {
779 multifd_tls_channel_connect(p
, ioc
, &error
);
782 * tls_channel_connect will call back to this
783 * function after the TLS handshake,
784 * so we mustn't call multifd_send_thread until then
791 /* update for tls qio channel */
793 qemu_thread_create(&p
->thread
, p
->name
, multifd_send_thread
, p
,
794 QEMU_THREAD_JOINABLE
);
802 static void multifd_new_send_channel_cleanup(MultiFDSendParams
*p
,
803 QIOChannel
*ioc
, Error
*err
)
805 migrate_set_error(migrate_get_current(), err
);
806 /* Error happen, we need to tell who pay attention to me */
807 qemu_sem_post(&multifd_send_state
->channels_ready
);
808 qemu_sem_post(&p
->sem_sync
);
810 * Although multifd_send_thread is not created, but main migration
811 * thread neet to judge whether it is running, so we need to mark
815 object_unref(OBJECT(ioc
));
819 static void multifd_new_send_channel_async(QIOTask
*task
, gpointer opaque
)
821 MultiFDSendParams
*p
= opaque
;
822 QIOChannel
*sioc
= QIO_CHANNEL(qio_task_get_source(task
));
823 Error
*local_err
= NULL
;
825 trace_multifd_new_send_channel_async(p
->id
);
826 if (qio_task_propagate_error(task
, &local_err
)) {
829 p
->c
= QIO_CHANNEL(sioc
);
830 qio_channel_set_delay(p
->c
, false);
832 if (multifd_channel_connect(p
, sioc
, local_err
)) {
839 multifd_new_send_channel_cleanup(p
, sioc
, local_err
);
842 int multifd_save_setup(Error
**errp
)
845 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
849 if (!migrate_use_multifd()) {
852 s
= migrate_get_current();
853 thread_count
= migrate_multifd_channels();
854 multifd_send_state
= g_malloc0(sizeof(*multifd_send_state
));
855 multifd_send_state
->params
= g_new0(MultiFDSendParams
, thread_count
);
856 multifd_send_state
->pages
= multifd_pages_init(page_count
);
857 qemu_sem_init(&multifd_send_state
->channels_ready
, 0);
858 qatomic_set(&multifd_send_state
->exiting
, 0);
859 multifd_send_state
->ops
= multifd_ops
[migrate_multifd_compression()];
861 for (i
= 0; i
< thread_count
; i
++) {
862 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
864 qemu_mutex_init(&p
->mutex
);
865 qemu_sem_init(&p
->sem
, 0);
866 qemu_sem_init(&p
->sem_sync
, 0);
870 p
->pages
= multifd_pages_init(page_count
);
871 p
->packet_len
= sizeof(MultiFDPacket_t
)
872 + sizeof(uint64_t) * page_count
;
873 p
->packet
= g_malloc0(p
->packet_len
);
874 p
->packet
->magic
= cpu_to_be32(MULTIFD_MAGIC
);
875 p
->packet
->version
= cpu_to_be32(MULTIFD_VERSION
);
876 p
->name
= g_strdup_printf("multifdsend_%d", i
);
877 p
->tls_hostname
= g_strdup(s
->hostname
);
878 socket_send_channel_create(multifd_new_send_channel_async
, p
);
881 for (i
= 0; i
< thread_count
; i
++) {
882 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
883 Error
*local_err
= NULL
;
886 ret
= multifd_send_state
->ops
->send_setup(p
, &local_err
);
888 error_propagate(errp
, local_err
);
896 MultiFDRecvParams
*params
;
897 /* number of created threads */
899 /* syncs main thread and channels */
900 QemuSemaphore sem_sync
;
901 /* global number of generated multifd packets */
905 } *multifd_recv_state
;
907 static void multifd_recv_terminate_threads(Error
*err
)
911 trace_multifd_recv_terminate_threads(err
!= NULL
);
914 MigrationState
*s
= migrate_get_current();
915 migrate_set_error(s
, err
);
916 if (s
->state
== MIGRATION_STATUS_SETUP
||
917 s
->state
== MIGRATION_STATUS_ACTIVE
) {
918 migrate_set_state(&s
->state
, s
->state
,
919 MIGRATION_STATUS_FAILED
);
923 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
924 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
926 qemu_mutex_lock(&p
->mutex
);
929 * We could arrive here for two reasons:
930 * - normal quit, i.e. everything went fine, just finished
931 * - error quit: We close the channels so the channel threads
932 * finish the qio_channel_read_all_eof()
935 qio_channel_shutdown(p
->c
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
937 qemu_mutex_unlock(&p
->mutex
);
941 int multifd_load_cleanup(Error
**errp
)
945 if (!migrate_use_multifd()) {
948 multifd_recv_terminate_threads(NULL
);
949 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
950 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
955 * multifd_recv_thread may hung at MULTIFD_FLAG_SYNC handle code,
956 * however try to wakeup it without harm in cleanup phase.
958 qemu_sem_post(&p
->sem_sync
);
959 qemu_thread_join(&p
->thread
);
962 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
963 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
965 object_unref(OBJECT(p
->c
));
967 qemu_mutex_destroy(&p
->mutex
);
968 qemu_sem_destroy(&p
->sem_sync
);
971 multifd_pages_clear(p
->pages
);
976 multifd_recv_state
->ops
->recv_cleanup(p
);
978 qemu_sem_destroy(&multifd_recv_state
->sem_sync
);
979 g_free(multifd_recv_state
->params
);
980 multifd_recv_state
->params
= NULL
;
981 g_free(multifd_recv_state
);
982 multifd_recv_state
= NULL
;
987 void multifd_recv_sync_main(void)
991 if (!migrate_use_multifd()) {
994 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
995 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
997 trace_multifd_recv_sync_main_wait(p
->id
);
998 qemu_sem_wait(&multifd_recv_state
->sem_sync
);
1000 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
1001 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1003 WITH_QEMU_LOCK_GUARD(&p
->mutex
) {
1004 if (multifd_recv_state
->packet_num
< p
->packet_num
) {
1005 multifd_recv_state
->packet_num
= p
->packet_num
;
1008 trace_multifd_recv_sync_main_signal(p
->id
);
1009 qemu_sem_post(&p
->sem_sync
);
1011 trace_multifd_recv_sync_main(multifd_recv_state
->packet_num
);
1014 static void *multifd_recv_thread(void *opaque
)
1016 MultiFDRecvParams
*p
= opaque
;
1017 Error
*local_err
= NULL
;
1020 trace_multifd_recv_thread_start(p
->id
);
1021 rcu_register_thread();
1031 ret
= qio_channel_read_all_eof(p
->c
, (void *)p
->packet
,
1032 p
->packet_len
, &local_err
);
1033 if (ret
== 0) { /* EOF */
1036 if (ret
== -1) { /* Error */
1040 qemu_mutex_lock(&p
->mutex
);
1041 ret
= multifd_recv_unfill_packet(p
, &local_err
);
1043 qemu_mutex_unlock(&p
->mutex
);
1047 used
= p
->pages
->used
;
1049 /* recv methods don't know how to handle the SYNC flag */
1050 p
->flags
&= ~MULTIFD_FLAG_SYNC
;
1051 trace_multifd_recv(p
->id
, p
->packet_num
, used
, flags
,
1052 p
->next_packet_size
);
1054 p
->num_pages
+= used
;
1055 qemu_mutex_unlock(&p
->mutex
);
1058 ret
= multifd_recv_state
->ops
->recv_pages(p
, used
, &local_err
);
1064 if (flags
& MULTIFD_FLAG_SYNC
) {
1065 qemu_sem_post(&multifd_recv_state
->sem_sync
);
1066 qemu_sem_wait(&p
->sem_sync
);
1071 multifd_recv_terminate_threads(local_err
);
1072 error_free(local_err
);
1074 qemu_mutex_lock(&p
->mutex
);
1076 qemu_mutex_unlock(&p
->mutex
);
1078 rcu_unregister_thread();
1079 trace_multifd_recv_thread_end(p
->id
, p
->num_packets
, p
->num_pages
);
1084 int multifd_load_setup(Error
**errp
)
1087 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
1090 if (!migrate_use_multifd()) {
1093 thread_count
= migrate_multifd_channels();
1094 multifd_recv_state
= g_malloc0(sizeof(*multifd_recv_state
));
1095 multifd_recv_state
->params
= g_new0(MultiFDRecvParams
, thread_count
);
1096 qatomic_set(&multifd_recv_state
->count
, 0);
1097 qemu_sem_init(&multifd_recv_state
->sem_sync
, 0);
1098 multifd_recv_state
->ops
= multifd_ops
[migrate_multifd_compression()];
1100 for (i
= 0; i
< thread_count
; i
++) {
1101 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1103 qemu_mutex_init(&p
->mutex
);
1104 qemu_sem_init(&p
->sem_sync
, 0);
1107 p
->pages
= multifd_pages_init(page_count
);
1108 p
->packet_len
= sizeof(MultiFDPacket_t
)
1109 + sizeof(uint64_t) * page_count
;
1110 p
->packet
= g_malloc0(p
->packet_len
);
1111 p
->name
= g_strdup_printf("multifdrecv_%d", i
);
1114 for (i
= 0; i
< thread_count
; i
++) {
1115 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1116 Error
*local_err
= NULL
;
1119 ret
= multifd_recv_state
->ops
->recv_setup(p
, &local_err
);
1121 error_propagate(errp
, local_err
);
1128 bool multifd_recv_all_channels_created(void)
1130 int thread_count
= migrate_multifd_channels();
1132 if (!migrate_use_multifd()) {
1136 return thread_count
== qatomic_read(&multifd_recv_state
->count
);
1140 * Try to receive all multifd channels to get ready for the migration.
1141 * - Return true and do not set @errp when correctly receiving all channels;
1142 * - Return false and do not set @errp when correctly receiving the current one;
1143 * - Return false and set @errp when failing to receive the current channel.
1145 bool multifd_recv_new_channel(QIOChannel
*ioc
, Error
**errp
)
1147 MultiFDRecvParams
*p
;
1148 Error
*local_err
= NULL
;
1151 id
= multifd_recv_initial_packet(ioc
, &local_err
);
1153 multifd_recv_terminate_threads(local_err
);
1154 error_propagate_prepend(errp
, local_err
,
1155 "failed to receive packet"
1156 " via multifd channel %d: ",
1157 qatomic_read(&multifd_recv_state
->count
));
1160 trace_multifd_recv_new_channel(id
);
1162 p
= &multifd_recv_state
->params
[id
];
1164 error_setg(&local_err
, "multifd: received id '%d' already setup'",
1166 multifd_recv_terminate_threads(local_err
);
1167 error_propagate(errp
, local_err
);
1171 object_ref(OBJECT(ioc
));
1172 /* initial packet */
1176 qemu_thread_create(&p
->thread
, p
->name
, multifd_recv_thread
, p
,
1177 QEMU_THREAD_JOINABLE
);
1178 qatomic_inc(&multifd_recv_state
->count
);
1179 return qatomic_read(&multifd_recv_state
->count
) ==
1180 migrate_multifd_channels();