4 * Copyright (c) 2019-2020 Red Hat Inc
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_handshake_thread(void *opaque)
744 MultiFDSendParams *p = opaque;
745 QIOChannelTLS *tioc = QIO_CHANNEL_TLS(p->c);
747 qio_channel_tls_handshake(tioc,
748 multifd_tls_outgoing_handshake,
755 static void multifd_tls_channel_connect(MultiFDSendParams *p,
759 MigrationState *s = migrate_get_current();
760 const char *hostname = p->tls_hostname;
763 tioc = migration_tls_client_create(s, ioc, hostname, errp);
768 object_unref(OBJECT(ioc));
769 trace_multifd_tls_outgoing_handshake_start(ioc, tioc, hostname);
770 qio_channel_set_name(QIO_CHANNEL(tioc), "multifd-tls-outgoing");
771 p->c = QIO_CHANNEL(tioc);
772 qemu_thread_create(&p->thread, "multifd-tls-handshake-worker",
773 multifd_tls_handshake_thread, p,
774 QEMU_THREAD_JOINABLE);
777 static bool multifd_channel_connect(MultiFDSendParams *p,
781 MigrationState *s = migrate_get_current();
783 trace_multifd_set_outgoing_channel(
784 ioc, object_get_typename(OBJECT(ioc)), p->tls_hostname, error);
787 if (s->parameters.tls_creds &&
788 *s->parameters.tls_creds &&
789 !object_dynamic_cast(OBJECT(ioc),
790 TYPE_QIO_CHANNEL_TLS)) {
791 multifd_tls_channel_connect(p, ioc, &error);
794 * tls_channel_connect will call back to this
795 * function after the TLS handshake,
796 * so we mustn't call multifd_send_thread until then
803 /* update for tls qio channel */
805 qemu_thread_create(&p->thread, p->name, multifd_send_thread, p,
806 QEMU_THREAD_JOINABLE);
814 static void multifd_new_send_channel_cleanup(MultiFDSendParams *p,
815 QIOChannel *ioc, Error *err)
817 migrate_set_error(migrate_get_current(), err);
818 /* Error happen, we need to tell who pay attention to me */
819 qemu_sem_post(&multifd_send_state->channels_ready);
820 qemu_sem_post(&p->sem_sync);
822 * Although multifd_send_thread is not created, but main migration
823 * thread neet to judge whether it is running, so we need to mark
827 object_unref(OBJECT(ioc));
831 static void multifd_new_send_channel_async(QIOTask *task, gpointer opaque)
833 MultiFDSendParams *p = opaque;
834 QIOChannel *sioc = QIO_CHANNEL(qio_task_get_source(task));
835 Error *local_err = NULL;
837 trace_multifd_new_send_channel_async(p->id);
838 if (qio_task_propagate_error(task, &local_err)) {
841 p->c = QIO_CHANNEL(sioc);
842 qio_channel_set_delay(p->c, false);
844 if (multifd_channel_connect(p, sioc, local_err)) {
851 multifd_new_send_channel_cleanup(p, sioc, local_err);
854 int multifd_save_setup(Error **errp)
857 uint32_t page_count = MULTIFD_PACKET_SIZE / qemu_target_page_size();
861 if (!migrate_use_multifd()) {
864 s = migrate_get_current();
865 thread_count = migrate_multifd_channels();
866 multifd_send_state = g_malloc0(sizeof(*multifd_send_state));
867 multifd_send_state->params = g_new0(MultiFDSendParams, thread_count);
868 multifd_send_state->pages = multifd_pages_init(page_count);
869 qemu_sem_init(&multifd_send_state->channels_ready, 0);
870 qatomic_set(&multifd_send_state->exiting, 0);
871 multifd_send_state->ops = multifd_ops[migrate_multifd_compression()];
873 for (i = 0; i < thread_count; i++) {
874 MultiFDSendParams *p = &multifd_send_state->params[i];
876 qemu_mutex_init(&p->mutex);
877 qemu_sem_init(&p->sem, 0);
878 qemu_sem_init(&p->sem_sync, 0);
882 p->pages = multifd_pages_init(page_count);
883 p->packet_len = sizeof(MultiFDPacket_t)
884 + sizeof(uint64_t) * page_count;
885 p->packet = g_malloc0(p->packet_len);
886 p->packet->magic = cpu_to_be32(MULTIFD_MAGIC);
887 p->packet->version = cpu_to_be32(MULTIFD_VERSION);
888 p->name = g_strdup_printf("multifdsend_%d", i);
889 p->tls_hostname = g_strdup(s->hostname);
890 socket_send_channel_create(multifd_new_send_channel_async, p);
893 for (i = 0; i < thread_count; i++) {
894 MultiFDSendParams *p = &multifd_send_state->params[i];
895 Error *local_err = NULL;
898 ret = multifd_send_state->ops->send_setup(p, &local_err);
900 error_propagate(errp, local_err);
908 MultiFDRecvParams *params;
909 /* number of created threads */
911 /* syncs main thread and channels */
912 QemuSemaphore sem_sync;
913 /* global number of generated multifd packets */
917 } *multifd_recv_state;
919 static void multifd_recv_terminate_threads(Error *err)
923 trace_multifd_recv_terminate_threads(err != NULL);
926 MigrationState *s = migrate_get_current();
927 migrate_set_error(s, err);
928 if (s->state == MIGRATION_STATUS_SETUP ||
929 s->state == MIGRATION_STATUS_ACTIVE) {
930 migrate_set_state(&s->state, s->state,
931 MIGRATION_STATUS_FAILED);
935 for (i = 0; i < migrate_multifd_channels(); i++) {
936 MultiFDRecvParams *p = &multifd_recv_state->params[i];
938 qemu_mutex_lock(&p->mutex);
941 * We could arrive here for two reasons:
942 * - normal quit, i.e. everything went fine, just finished
943 * - error quit: We close the channels so the channel threads
944 * finish the qio_channel_read_all_eof()
947 qio_channel_shutdown(p->c, QIO_CHANNEL_SHUTDOWN_BOTH, NULL);
949 qemu_mutex_unlock(&p->mutex);
953 int multifd_load_cleanup(Error **errp)
957 if (!migrate_use_multifd()) {
960 multifd_recv_terminate_threads(NULL);
961 for (i = 0; i < migrate_multifd_channels(); i++) {
962 MultiFDRecvParams *p = &multifd_recv_state->params[i];
967 * multifd_recv_thread may hung at MULTIFD_FLAG_SYNC handle code,
968 * however try to wakeup it without harm in cleanup phase.
970 qemu_sem_post(&p->sem_sync);
971 qemu_thread_join(&p->thread);
974 for (i = 0; i < migrate_multifd_channels(); i++) {
975 MultiFDRecvParams *p = &multifd_recv_state->params[i];
977 object_unref(OBJECT(p->c));
979 qemu_mutex_destroy(&p->mutex);
980 qemu_sem_destroy(&p->sem_sync);
983 multifd_pages_clear(p->pages);
988 multifd_recv_state->ops->recv_cleanup(p);
990 qemu_sem_destroy(&multifd_recv_state->sem_sync);
991 g_free(multifd_recv_state->params);
992 multifd_recv_state->params = NULL;
993 g_free(multifd_recv_state);
994 multifd_recv_state = NULL;
999 void multifd_recv_sync_main(void)
1003 if (!migrate_use_multifd()) {
1006 for (i = 0; i < migrate_multifd_channels(); i++) {
1007 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1009 trace_multifd_recv_sync_main_wait(p->id);
1010 qemu_sem_wait(&multifd_recv_state->sem_sync);
1012 for (i = 0; i < migrate_multifd_channels(); i++) {
1013 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1015 WITH_QEMU_LOCK_GUARD(&p->mutex) {
1016 if (multifd_recv_state->packet_num < p->packet_num) {
1017 multifd_recv_state->packet_num = p->packet_num;
1020 trace_multifd_recv_sync_main_signal(p->id);
1021 qemu_sem_post(&p->sem_sync);
1023 trace_multifd_recv_sync_main(multifd_recv_state->packet_num);
1026 static void *multifd_recv_thread(void *opaque)
1028 MultiFDRecvParams *p = opaque;
1029 Error *local_err = NULL;
1032 trace_multifd_recv_thread_start(p->id);
1033 rcu_register_thread();
1043 ret = qio_channel_read_all_eof(p->c, (void *)p->packet,
1044 p->packet_len, &local_err);
1045 if (ret == 0) { /* EOF */
1048 if (ret == -1) { /* Error */
1052 qemu_mutex_lock(&p->mutex);
1053 ret = multifd_recv_unfill_packet(p, &local_err);
1055 qemu_mutex_unlock(&p->mutex);
1059 used = p->pages->used;
1061 /* recv methods don't know how to handle the SYNC flag */
1062 p->flags &= ~MULTIFD_FLAG_SYNC;
1063 trace_multifd_recv(p->id, p->packet_num, used, flags,
1064 p->next_packet_size);
1066 p->num_pages += used;
1067 qemu_mutex_unlock(&p->mutex);
1070 ret = multifd_recv_state->ops->recv_pages(p, used, &local_err);
1076 if (flags & MULTIFD_FLAG_SYNC) {
1077 qemu_sem_post(&multifd_recv_state->sem_sync);
1078 qemu_sem_wait(&p->sem_sync);
1083 multifd_recv_terminate_threads(local_err);
1084 error_free(local_err);
1086 qemu_mutex_lock(&p->mutex);
1088 qemu_mutex_unlock(&p->mutex);
1090 rcu_unregister_thread();
1091 trace_multifd_recv_thread_end(p->id, p->num_packets, p->num_pages);
1096 int multifd_load_setup(Error **errp)
1099 uint32_t page_count = MULTIFD_PACKET_SIZE / qemu_target_page_size();
1102 if (!migrate_use_multifd()) {
1105 thread_count = migrate_multifd_channels();
1106 multifd_recv_state = g_malloc0(sizeof(*multifd_recv_state));
1107 multifd_recv_state->params = g_new0(MultiFDRecvParams, thread_count);
1108 qatomic_set(&multifd_recv_state->count, 0);
1109 qemu_sem_init(&multifd_recv_state->sem_sync, 0);
1110 multifd_recv_state->ops = multifd_ops[migrate_multifd_compression()];
1112 for (i = 0; i < thread_count; i++) {
1113 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1115 qemu_mutex_init(&p->mutex);
1116 qemu_sem_init(&p->sem_sync, 0);
1119 p->pages = multifd_pages_init(page_count);
1120 p->packet_len = sizeof(MultiFDPacket_t)
1121 + sizeof(uint64_t) * page_count;
1122 p->packet = g_malloc0(p->packet_len);
1123 p->name = g_strdup_printf("multifdrecv_%d", i);
1126 for (i = 0; i < thread_count; i++) {
1127 MultiFDRecvParams *p = &multifd_recv_state->params[i];
1128 Error *local_err = NULL;
1131 ret = multifd_recv_state->ops->recv_setup(p, &local_err);
1133 error_propagate(errp, local_err);
1140 bool multifd_recv_all_channels_created(void)
1142 int thread_count = migrate_multifd_channels();
1144 if (!migrate_use_multifd()) {
1148 return thread_count == qatomic_read(&multifd_recv_state->count);
1152 * Try to receive all multifd channels to get ready for the migration.
1153 * - Return true and do not set @errp when correctly receiving all channels;
1154 * - Return false and do not set @errp when correctly receiving the current one;
1155 * - Return false and set @errp when failing to receive the current channel.
1157 bool multifd_recv_new_channel(QIOChannel *ioc, Error **errp)
1159 MultiFDRecvParams *p;
1160 Error *local_err = NULL;
1163 id = multifd_recv_initial_packet(ioc, &local_err);
1165 multifd_recv_terminate_threads(local_err);
1166 error_propagate_prepend(errp, local_err,
1167 "failed to receive packet"
1168 " via multifd channel %d: ",
1169 qatomic_read(&multifd_recv_state->count));
1172 trace_multifd_recv_new_channel(id);
1174 p = &multifd_recv_state->params[id];
1176 error_setg(&local_err, "multifd: received id '%d' already setup'",
1178 multifd_recv_terminate_threads(local_err);
1179 error_propagate(errp, local_err);
1183 object_ref(OBJECT(ioc));
1184 /* initial packet */
1188 qemu_thread_create(&p->thread, p->name, multifd_recv_thread, p,
1189 QEMU_THREAD_JOINABLE);
1190 qatomic_inc(&multifd_recv_state->count);
1191 return qatomic_read(&multifd_recv_state->count) ==
1192 migrate_multifd_channels();