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"
23 #include "qemu-file.h"
29 #define MULTIFD_MAGIC 0x11223344U
30 #define MULTIFD_VERSION 1
35 unsigned char uuid
[16]; /* QemuUUID */
37 uint8_t unused1
[7]; /* Reserved for future use */
38 uint64_t unused2
[4]; /* Reserved for future use */
39 } __attribute__((packed
)) MultiFDInit_t
;
41 /* Multifd without compression */
44 * nocomp_send_setup: setup send side
46 * For no compression this function does nothing.
48 * Returns 0 for success or -1 for error
50 * @p: Params for the channel that we are using
51 * @errp: pointer to an error
53 static int nocomp_send_setup(MultiFDSendParams
*p
, Error
**errp
)
59 * nocomp_send_cleanup: cleanup send side
61 * For no compression this function does nothing.
63 * @p: Params for the channel that we are using
65 static void nocomp_send_cleanup(MultiFDSendParams
*p
, Error
**errp
)
71 * nocomp_send_prepare: prepare date to be able to send
73 * For no compression we just have to calculate the size of the
76 * Returns 0 for success or -1 for error
78 * @p: Params for the channel that we are using
79 * @used: number of pages used
80 * @errp: pointer to an error
82 static int nocomp_send_prepare(MultiFDSendParams
*p
, uint32_t used
,
85 p
->next_packet_size
= used
* qemu_target_page_size();
86 p
->flags
|= MULTIFD_FLAG_NOCOMP
;
91 * nocomp_send_write: do the actual write of the data
93 * For no compression we just have to write the data.
95 * Returns 0 for success or -1 for error
97 * @p: Params for the channel that we are using
98 * @used: number of pages used
99 * @errp: pointer to an error
101 static int nocomp_send_write(MultiFDSendParams
*p
, uint32_t used
, Error
**errp
)
103 return qio_channel_writev_all(p
->c
, p
->pages
->iov
, used
, errp
);
107 * nocomp_recv_setup: setup receive side
109 * For no compression this function does nothing.
111 * Returns 0 for success or -1 for error
113 * @p: Params for the channel that we are using
114 * @errp: pointer to an error
116 static int nocomp_recv_setup(MultiFDRecvParams
*p
, Error
**errp
)
122 * nocomp_recv_cleanup: setup receive side
124 * For no compression this function does nothing.
126 * @p: Params for the channel that we are using
128 static void nocomp_recv_cleanup(MultiFDRecvParams
*p
)
133 * nocomp_recv_pages: read the data from the channel into actual pages
135 * For no compression we just need to read things into the correct place.
137 * Returns 0 for success or -1 for error
139 * @p: Params for the channel that we are using
140 * @used: number of pages used
141 * @errp: pointer to an error
143 static int nocomp_recv_pages(MultiFDRecvParams
*p
, uint32_t used
, Error
**errp
)
145 uint32_t flags
= p
->flags
& MULTIFD_FLAG_COMPRESSION_MASK
;
147 if (flags
!= MULTIFD_FLAG_NOCOMP
) {
148 error_setg(errp
, "multifd %d: flags received %x flags expected %x",
149 p
->id
, flags
, MULTIFD_FLAG_NOCOMP
);
152 return qio_channel_readv_all(p
->c
, p
->pages
->iov
, used
, errp
);
155 static MultiFDMethods multifd_nocomp_ops
= {
156 .send_setup
= nocomp_send_setup
,
157 .send_cleanup
= nocomp_send_cleanup
,
158 .send_prepare
= nocomp_send_prepare
,
159 .send_write
= nocomp_send_write
,
160 .recv_setup
= nocomp_recv_setup
,
161 .recv_cleanup
= nocomp_recv_cleanup
,
162 .recv_pages
= nocomp_recv_pages
165 static MultiFDMethods
*multifd_ops
[MULTIFD_COMPRESSION__MAX
] = {
166 [MULTIFD_COMPRESSION_NONE
] = &multifd_nocomp_ops
,
169 void multifd_register_ops(int method
, MultiFDMethods
*ops
)
171 assert(0 < method
&& method
< MULTIFD_COMPRESSION__MAX
);
172 multifd_ops
[method
] = ops
;
175 static int multifd_send_initial_packet(MultiFDSendParams
*p
, Error
**errp
)
177 MultiFDInit_t msg
= {};
180 msg
.magic
= cpu_to_be32(MULTIFD_MAGIC
);
181 msg
.version
= cpu_to_be32(MULTIFD_VERSION
);
183 memcpy(msg
.uuid
, &qemu_uuid
.data
, sizeof(msg
.uuid
));
185 ret
= qio_channel_write_all(p
->c
, (char *)&msg
, sizeof(msg
), errp
);
192 static int multifd_recv_initial_packet(QIOChannel
*c
, Error
**errp
)
197 ret
= qio_channel_read_all(c
, (char *)&msg
, sizeof(msg
), errp
);
202 msg
.magic
= be32_to_cpu(msg
.magic
);
203 msg
.version
= be32_to_cpu(msg
.version
);
205 if (msg
.magic
!= MULTIFD_MAGIC
) {
206 error_setg(errp
, "multifd: received packet magic %x "
207 "expected %x", msg
.magic
, MULTIFD_MAGIC
);
211 if (msg
.version
!= MULTIFD_VERSION
) {
212 error_setg(errp
, "multifd: received packet version %d "
213 "expected %d", msg
.version
, MULTIFD_VERSION
);
217 if (memcmp(msg
.uuid
, &qemu_uuid
, sizeof(qemu_uuid
))) {
218 char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
219 char *msg_uuid
= qemu_uuid_unparse_strdup((const QemuUUID
*)msg
.uuid
);
221 error_setg(errp
, "multifd: received uuid '%s' and expected "
222 "uuid '%s' for channel %hhd", msg_uuid
, uuid
, msg
.id
);
228 if (msg
.id
> migrate_multifd_channels()) {
229 error_setg(errp
, "multifd: received channel version %d "
230 "expected %d", msg
.version
, MULTIFD_VERSION
);
237 static MultiFDPages_t
*multifd_pages_init(size_t size
)
239 MultiFDPages_t
*pages
= g_new0(MultiFDPages_t
, 1);
241 pages
->allocated
= size
;
242 pages
->iov
= g_new0(struct iovec
, size
);
243 pages
->offset
= g_new0(ram_addr_t
, size
);
248 static void multifd_pages_clear(MultiFDPages_t
*pages
)
251 pages
->allocated
= 0;
252 pages
->packet_num
= 0;
256 g_free(pages
->offset
);
257 pages
->offset
= NULL
;
261 static void multifd_send_fill_packet(MultiFDSendParams
*p
)
263 MultiFDPacket_t
*packet
= p
->packet
;
266 packet
->flags
= cpu_to_be32(p
->flags
);
267 packet
->pages_alloc
= cpu_to_be32(p
->pages
->allocated
);
268 packet
->pages_used
= cpu_to_be32(p
->pages
->used
);
269 packet
->next_packet_size
= cpu_to_be32(p
->next_packet_size
);
270 packet
->packet_num
= cpu_to_be64(p
->packet_num
);
272 if (p
->pages
->block
) {
273 strncpy(packet
->ramblock
, p
->pages
->block
->idstr
, 256);
276 for (i
= 0; i
< p
->pages
->used
; i
++) {
277 /* there are architectures where ram_addr_t is 32 bit */
278 uint64_t temp
= p
->pages
->offset
[i
];
280 packet
->offset
[i
] = cpu_to_be64(temp
);
284 static int multifd_recv_unfill_packet(MultiFDRecvParams
*p
, Error
**errp
)
286 MultiFDPacket_t
*packet
= p
->packet
;
287 uint32_t pages_max
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
291 packet
->magic
= be32_to_cpu(packet
->magic
);
292 if (packet
->magic
!= MULTIFD_MAGIC
) {
293 error_setg(errp
, "multifd: received packet "
294 "magic %x and expected magic %x",
295 packet
->magic
, MULTIFD_MAGIC
);
299 packet
->version
= be32_to_cpu(packet
->version
);
300 if (packet
->version
!= MULTIFD_VERSION
) {
301 error_setg(errp
, "multifd: received packet "
302 "version %d and expected version %d",
303 packet
->version
, MULTIFD_VERSION
);
307 p
->flags
= be32_to_cpu(packet
->flags
);
309 packet
->pages_alloc
= be32_to_cpu(packet
->pages_alloc
);
311 * If we received a packet that is 100 times bigger than expected
312 * just stop migration. It is a magic number.
314 if (packet
->pages_alloc
> pages_max
* 100) {
315 error_setg(errp
, "multifd: received packet "
316 "with size %d and expected a maximum size of %d",
317 packet
->pages_alloc
, pages_max
* 100) ;
321 * We received a packet that is bigger than expected but inside
322 * reasonable limits (see previous comment). Just reallocate.
324 if (packet
->pages_alloc
> p
->pages
->allocated
) {
325 multifd_pages_clear(p
->pages
);
326 p
->pages
= multifd_pages_init(packet
->pages_alloc
);
329 p
->pages
->used
= be32_to_cpu(packet
->pages_used
);
330 if (p
->pages
->used
> packet
->pages_alloc
) {
331 error_setg(errp
, "multifd: received packet "
332 "with %d pages and expected maximum pages are %d",
333 p
->pages
->used
, packet
->pages_alloc
) ;
337 p
->next_packet_size
= be32_to_cpu(packet
->next_packet_size
);
338 p
->packet_num
= be64_to_cpu(packet
->packet_num
);
340 if (p
->pages
->used
== 0) {
344 /* make sure that ramblock is 0 terminated */
345 packet
->ramblock
[255] = 0;
346 block
= qemu_ram_block_by_name(packet
->ramblock
);
348 error_setg(errp
, "multifd: unknown ram block %s",
353 for (i
= 0; i
< p
->pages
->used
; i
++) {
354 uint64_t offset
= be64_to_cpu(packet
->offset
[i
]);
356 if (offset
> (block
->used_length
- qemu_target_page_size())) {
357 error_setg(errp
, "multifd: offset too long %" PRIu64
358 " (max " RAM_ADDR_FMT
")",
359 offset
, block
->max_length
);
362 p
->pages
->iov
[i
].iov_base
= block
->host
+ offset
;
363 p
->pages
->iov
[i
].iov_len
= qemu_target_page_size();
370 MultiFDSendParams
*params
;
371 /* array of pages to sent */
372 MultiFDPages_t
*pages
;
373 /* global number of generated multifd packets */
375 /* send channels ready */
376 QemuSemaphore channels_ready
;
378 * Have we already run terminate threads. There is a race when it
379 * happens that we got one error while we are exiting.
380 * We will use atomic operations. Only valid values are 0 and 1.
385 } *multifd_send_state
;
388 * How we use multifd_send_state->pages and channel->pages?
390 * We create a pages for each channel, and a main one. Each time that
391 * we need to send a batch of pages we interchange the ones between
392 * multifd_send_state and the channel that is sending it. There are
393 * two reasons for that:
394 * - to not have to do so many mallocs during migration
395 * - to make easier to know what to free at the end of migration
397 * This way we always know who is the owner of each "pages" struct,
398 * and we don't need any locking. It belongs to the migration thread
399 * or to the channel thread. Switching is safe because the migration
400 * thread is using the channel mutex when changing it, and the channel
401 * have to had finish with its own, otherwise pending_job can't be
405 static int multifd_send_pages(QEMUFile
*f
)
408 static int next_channel
;
409 MultiFDSendParams
*p
= NULL
; /* make happy gcc */
410 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
411 uint64_t transferred
;
413 if (atomic_read(&multifd_send_state
->exiting
)) {
417 qemu_sem_wait(&multifd_send_state
->channels_ready
);
419 * next_channel can remain from a previous migration that was
420 * using more channels, so ensure it doesn't overflow if the
421 * limit is lower now.
423 next_channel
%= migrate_multifd_channels();
424 for (i
= next_channel
;; i
= (i
+ 1) % migrate_multifd_channels()) {
425 p
= &multifd_send_state
->params
[i
];
427 qemu_mutex_lock(&p
->mutex
);
429 error_report("%s: channel %d has already quit!", __func__
, i
);
430 qemu_mutex_unlock(&p
->mutex
);
433 if (!p
->pending_job
) {
435 next_channel
= (i
+ 1) % migrate_multifd_channels();
438 qemu_mutex_unlock(&p
->mutex
);
440 assert(!p
->pages
->used
);
441 assert(!p
->pages
->block
);
443 p
->packet_num
= multifd_send_state
->packet_num
++;
444 multifd_send_state
->pages
= p
->pages
;
446 transferred
= ((uint64_t) pages
->used
) * qemu_target_page_size()
448 qemu_file_update_transfer(f
, transferred
);
449 ram_counters
.multifd_bytes
+= transferred
;
450 ram_counters
.transferred
+= transferred
;;
451 qemu_mutex_unlock(&p
->mutex
);
452 qemu_sem_post(&p
->sem
);
457 int multifd_queue_page(QEMUFile
*f
, RAMBlock
*block
, ram_addr_t offset
)
459 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
462 pages
->block
= block
;
465 if (pages
->block
== block
) {
466 pages
->offset
[pages
->used
] = offset
;
467 pages
->iov
[pages
->used
].iov_base
= block
->host
+ offset
;
468 pages
->iov
[pages
->used
].iov_len
= qemu_target_page_size();
471 if (pages
->used
< pages
->allocated
) {
476 if (multifd_send_pages(f
) < 0) {
480 if (pages
->block
!= block
) {
481 return multifd_queue_page(f
, block
, offset
);
487 static void multifd_send_terminate_threads(Error
*err
)
491 trace_multifd_send_terminate_threads(err
!= NULL
);
494 MigrationState
*s
= migrate_get_current();
495 migrate_set_error(s
, err
);
496 if (s
->state
== MIGRATION_STATUS_SETUP
||
497 s
->state
== MIGRATION_STATUS_PRE_SWITCHOVER
||
498 s
->state
== MIGRATION_STATUS_DEVICE
||
499 s
->state
== MIGRATION_STATUS_ACTIVE
) {
500 migrate_set_state(&s
->state
, s
->state
,
501 MIGRATION_STATUS_FAILED
);
506 * We don't want to exit each threads twice. Depending on where
507 * we get the error, or if there are two independent errors in two
508 * threads at the same time, we can end calling this function
511 if (atomic_xchg(&multifd_send_state
->exiting
, 1)) {
515 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
516 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
518 qemu_mutex_lock(&p
->mutex
);
520 qemu_sem_post(&p
->sem
);
521 qemu_mutex_unlock(&p
->mutex
);
525 void multifd_save_cleanup(void)
529 if (!migrate_use_multifd()) {
532 multifd_send_terminate_threads(NULL
);
533 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
534 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
537 qemu_thread_join(&p
->thread
);
540 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
541 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
542 Error
*local_err
= NULL
;
544 socket_send_channel_destroy(p
->c
);
546 qemu_mutex_destroy(&p
->mutex
);
547 qemu_sem_destroy(&p
->sem
);
548 qemu_sem_destroy(&p
->sem_sync
);
551 multifd_pages_clear(p
->pages
);
556 multifd_send_state
->ops
->send_cleanup(p
, &local_err
);
558 migrate_set_error(migrate_get_current(), local_err
);
559 error_free(local_err
);
562 qemu_sem_destroy(&multifd_send_state
->channels_ready
);
563 g_free(multifd_send_state
->params
);
564 multifd_send_state
->params
= NULL
;
565 multifd_pages_clear(multifd_send_state
->pages
);
566 multifd_send_state
->pages
= NULL
;
567 g_free(multifd_send_state
);
568 multifd_send_state
= NULL
;
571 void multifd_send_sync_main(QEMUFile
*f
)
575 if (!migrate_use_multifd()) {
578 if (multifd_send_state
->pages
->used
) {
579 if (multifd_send_pages(f
) < 0) {
580 error_report("%s: multifd_send_pages fail", __func__
);
584 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
585 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
587 trace_multifd_send_sync_main_signal(p
->id
);
589 qemu_mutex_lock(&p
->mutex
);
592 error_report("%s: channel %d has already quit", __func__
, i
);
593 qemu_mutex_unlock(&p
->mutex
);
597 p
->packet_num
= multifd_send_state
->packet_num
++;
598 p
->flags
|= MULTIFD_FLAG_SYNC
;
600 qemu_file_update_transfer(f
, p
->packet_len
);
601 ram_counters
.multifd_bytes
+= p
->packet_len
;
602 ram_counters
.transferred
+= p
->packet_len
;
603 qemu_mutex_unlock(&p
->mutex
);
604 qemu_sem_post(&p
->sem
);
606 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
607 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
609 trace_multifd_send_sync_main_wait(p
->id
);
610 qemu_sem_wait(&p
->sem_sync
);
612 trace_multifd_send_sync_main(multifd_send_state
->packet_num
);
615 static void *multifd_send_thread(void *opaque
)
617 MultiFDSendParams
*p
= opaque
;
618 Error
*local_err
= NULL
;
622 trace_multifd_send_thread_start(p
->id
);
623 rcu_register_thread();
625 if (multifd_send_initial_packet(p
, &local_err
) < 0) {
633 qemu_sem_wait(&p
->sem
);
635 if (atomic_read(&multifd_send_state
->exiting
)) {
638 qemu_mutex_lock(&p
->mutex
);
640 if (p
->pending_job
) {
641 uint32_t used
= p
->pages
->used
;
642 uint64_t packet_num
= p
->packet_num
;
646 ret
= multifd_send_state
->ops
->send_prepare(p
, used
,
649 qemu_mutex_unlock(&p
->mutex
);
653 multifd_send_fill_packet(p
);
656 p
->num_pages
+= used
;
658 p
->pages
->block
= NULL
;
659 qemu_mutex_unlock(&p
->mutex
);
661 trace_multifd_send(p
->id
, packet_num
, used
, flags
,
662 p
->next_packet_size
);
664 ret
= qio_channel_write_all(p
->c
, (void *)p
->packet
,
665 p
->packet_len
, &local_err
);
671 ret
= multifd_send_state
->ops
->send_write(p
, used
, &local_err
);
677 qemu_mutex_lock(&p
->mutex
);
679 qemu_mutex_unlock(&p
->mutex
);
681 if (flags
& MULTIFD_FLAG_SYNC
) {
682 qemu_sem_post(&p
->sem_sync
);
684 qemu_sem_post(&multifd_send_state
->channels_ready
);
685 } else if (p
->quit
) {
686 qemu_mutex_unlock(&p
->mutex
);
689 qemu_mutex_unlock(&p
->mutex
);
690 /* sometimes there are spurious wakeups */
696 trace_multifd_send_error(p
->id
);
697 multifd_send_terminate_threads(local_err
);
698 error_free(local_err
);
702 * Error happen, I will exit, but I can't just leave, tell
703 * who pay attention to me.
706 qemu_sem_post(&p
->sem_sync
);
707 qemu_sem_post(&multifd_send_state
->channels_ready
);
710 qemu_mutex_lock(&p
->mutex
);
712 qemu_mutex_unlock(&p
->mutex
);
714 rcu_unregister_thread();
715 trace_multifd_send_thread_end(p
->id
, p
->num_packets
, p
->num_pages
);
720 static void multifd_new_send_channel_async(QIOTask
*task
, gpointer opaque
)
722 MultiFDSendParams
*p
= opaque
;
723 QIOChannel
*sioc
= QIO_CHANNEL(qio_task_get_source(task
));
724 Error
*local_err
= NULL
;
726 trace_multifd_new_send_channel_async(p
->id
);
727 if (qio_task_propagate_error(task
, &local_err
)) {
728 migrate_set_error(migrate_get_current(), local_err
);
729 /* Error happen, we need to tell who pay attention to me */
730 qemu_sem_post(&multifd_send_state
->channels_ready
);
731 qemu_sem_post(&p
->sem_sync
);
733 * Although multifd_send_thread is not created, but main migration
734 * thread neet to judge whether it is running, so we need to mark
738 object_unref(OBJECT(sioc
));
739 error_free(local_err
);
741 p
->c
= QIO_CHANNEL(sioc
);
742 qio_channel_set_delay(p
->c
, false);
744 qemu_thread_create(&p
->thread
, p
->name
, multifd_send_thread
, p
,
745 QEMU_THREAD_JOINABLE
);
749 int multifd_save_setup(Error
**errp
)
752 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
755 if (!migrate_use_multifd()) {
758 thread_count
= migrate_multifd_channels();
759 multifd_send_state
= g_malloc0(sizeof(*multifd_send_state
));
760 multifd_send_state
->params
= g_new0(MultiFDSendParams
, thread_count
);
761 multifd_send_state
->pages
= multifd_pages_init(page_count
);
762 qemu_sem_init(&multifd_send_state
->channels_ready
, 0);
763 atomic_set(&multifd_send_state
->exiting
, 0);
764 multifd_send_state
->ops
= multifd_ops
[migrate_multifd_compression()];
766 for (i
= 0; i
< thread_count
; i
++) {
767 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
769 qemu_mutex_init(&p
->mutex
);
770 qemu_sem_init(&p
->sem
, 0);
771 qemu_sem_init(&p
->sem_sync
, 0);
775 p
->pages
= multifd_pages_init(page_count
);
776 p
->packet_len
= sizeof(MultiFDPacket_t
)
777 + sizeof(uint64_t) * page_count
;
778 p
->packet
= g_malloc0(p
->packet_len
);
779 p
->packet
->magic
= cpu_to_be32(MULTIFD_MAGIC
);
780 p
->packet
->version
= cpu_to_be32(MULTIFD_VERSION
);
781 p
->name
= g_strdup_printf("multifdsend_%d", i
);
782 socket_send_channel_create(multifd_new_send_channel_async
, p
);
785 for (i
= 0; i
< thread_count
; i
++) {
786 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
787 Error
*local_err
= NULL
;
790 ret
= multifd_send_state
->ops
->send_setup(p
, &local_err
);
792 error_propagate(errp
, local_err
);
800 MultiFDRecvParams
*params
;
801 /* number of created threads */
803 /* syncs main thread and channels */
804 QemuSemaphore sem_sync
;
805 /* global number of generated multifd packets */
809 } *multifd_recv_state
;
811 static void multifd_recv_terminate_threads(Error
*err
)
815 trace_multifd_recv_terminate_threads(err
!= NULL
);
818 MigrationState
*s
= migrate_get_current();
819 migrate_set_error(s
, err
);
820 if (s
->state
== MIGRATION_STATUS_SETUP
||
821 s
->state
== MIGRATION_STATUS_ACTIVE
) {
822 migrate_set_state(&s
->state
, s
->state
,
823 MIGRATION_STATUS_FAILED
);
827 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
828 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
830 qemu_mutex_lock(&p
->mutex
);
833 * We could arrive here for two reasons:
834 * - normal quit, i.e. everything went fine, just finished
835 * - error quit: We close the channels so the channel threads
836 * finish the qio_channel_read_all_eof()
839 qio_channel_shutdown(p
->c
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
841 qemu_mutex_unlock(&p
->mutex
);
845 int multifd_load_cleanup(Error
**errp
)
849 if (!migrate_use_multifd()) {
852 multifd_recv_terminate_threads(NULL
);
853 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
854 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
859 * multifd_recv_thread may hung at MULTIFD_FLAG_SYNC handle code,
860 * however try to wakeup it without harm in cleanup phase.
862 qemu_sem_post(&p
->sem_sync
);
863 qemu_thread_join(&p
->thread
);
866 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
867 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
869 object_unref(OBJECT(p
->c
));
871 qemu_mutex_destroy(&p
->mutex
);
872 qemu_sem_destroy(&p
->sem_sync
);
875 multifd_pages_clear(p
->pages
);
880 multifd_recv_state
->ops
->recv_cleanup(p
);
882 qemu_sem_destroy(&multifd_recv_state
->sem_sync
);
883 g_free(multifd_recv_state
->params
);
884 multifd_recv_state
->params
= NULL
;
885 g_free(multifd_recv_state
);
886 multifd_recv_state
= NULL
;
891 void multifd_recv_sync_main(void)
895 if (!migrate_use_multifd()) {
898 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
899 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
901 trace_multifd_recv_sync_main_wait(p
->id
);
902 qemu_sem_wait(&multifd_recv_state
->sem_sync
);
904 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
905 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
907 WITH_QEMU_LOCK_GUARD(&p
->mutex
) {
908 if (multifd_recv_state
->packet_num
< p
->packet_num
) {
909 multifd_recv_state
->packet_num
= p
->packet_num
;
912 trace_multifd_recv_sync_main_signal(p
->id
);
913 qemu_sem_post(&p
->sem_sync
);
915 trace_multifd_recv_sync_main(multifd_recv_state
->packet_num
);
918 static void *multifd_recv_thread(void *opaque
)
920 MultiFDRecvParams
*p
= opaque
;
921 Error
*local_err
= NULL
;
924 trace_multifd_recv_thread_start(p
->id
);
925 rcu_register_thread();
935 ret
= qio_channel_read_all_eof(p
->c
, (void *)p
->packet
,
936 p
->packet_len
, &local_err
);
937 if (ret
== 0) { /* EOF */
940 if (ret
== -1) { /* Error */
944 qemu_mutex_lock(&p
->mutex
);
945 ret
= multifd_recv_unfill_packet(p
, &local_err
);
947 qemu_mutex_unlock(&p
->mutex
);
951 used
= p
->pages
->used
;
953 /* recv methods don't know how to handle the SYNC flag */
954 p
->flags
&= ~MULTIFD_FLAG_SYNC
;
955 trace_multifd_recv(p
->id
, p
->packet_num
, used
, flags
,
956 p
->next_packet_size
);
958 p
->num_pages
+= used
;
959 qemu_mutex_unlock(&p
->mutex
);
962 ret
= multifd_recv_state
->ops
->recv_pages(p
, used
, &local_err
);
968 if (flags
& MULTIFD_FLAG_SYNC
) {
969 qemu_sem_post(&multifd_recv_state
->sem_sync
);
970 qemu_sem_wait(&p
->sem_sync
);
975 multifd_recv_terminate_threads(local_err
);
976 error_free(local_err
);
978 qemu_mutex_lock(&p
->mutex
);
980 qemu_mutex_unlock(&p
->mutex
);
982 rcu_unregister_thread();
983 trace_multifd_recv_thread_end(p
->id
, p
->num_packets
, p
->num_pages
);
988 int multifd_load_setup(Error
**errp
)
991 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
994 if (!migrate_use_multifd()) {
997 thread_count
= migrate_multifd_channels();
998 multifd_recv_state
= g_malloc0(sizeof(*multifd_recv_state
));
999 multifd_recv_state
->params
= g_new0(MultiFDRecvParams
, thread_count
);
1000 atomic_set(&multifd_recv_state
->count
, 0);
1001 qemu_sem_init(&multifd_recv_state
->sem_sync
, 0);
1002 multifd_recv_state
->ops
= multifd_ops
[migrate_multifd_compression()];
1004 for (i
= 0; i
< thread_count
; i
++) {
1005 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1007 qemu_mutex_init(&p
->mutex
);
1008 qemu_sem_init(&p
->sem_sync
, 0);
1011 p
->pages
= multifd_pages_init(page_count
);
1012 p
->packet_len
= sizeof(MultiFDPacket_t
)
1013 + sizeof(uint64_t) * page_count
;
1014 p
->packet
= g_malloc0(p
->packet_len
);
1015 p
->name
= g_strdup_printf("multifdrecv_%d", i
);
1018 for (i
= 0; i
< thread_count
; i
++) {
1019 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1020 Error
*local_err
= NULL
;
1023 ret
= multifd_recv_state
->ops
->recv_setup(p
, &local_err
);
1025 error_propagate(errp
, local_err
);
1032 bool multifd_recv_all_channels_created(void)
1034 int thread_count
= migrate_multifd_channels();
1036 if (!migrate_use_multifd()) {
1040 return thread_count
== atomic_read(&multifd_recv_state
->count
);
1044 * Try to receive all multifd channels to get ready for the migration.
1045 * - Return true and do not set @errp when correctly receving all channels;
1046 * - Return false and do not set @errp when correctly receiving the current one;
1047 * - Return false and set @errp when failing to receive the current channel.
1049 bool multifd_recv_new_channel(QIOChannel
*ioc
, Error
**errp
)
1051 MultiFDRecvParams
*p
;
1052 Error
*local_err
= NULL
;
1055 id
= multifd_recv_initial_packet(ioc
, &local_err
);
1057 multifd_recv_terminate_threads(local_err
);
1058 error_propagate_prepend(errp
, local_err
,
1059 "failed to receive packet"
1060 " via multifd channel %d: ",
1061 atomic_read(&multifd_recv_state
->count
));
1064 trace_multifd_recv_new_channel(id
);
1066 p
= &multifd_recv_state
->params
[id
];
1068 error_setg(&local_err
, "multifd: received id '%d' already setup'",
1070 multifd_recv_terminate_threads(local_err
);
1071 error_propagate(errp
, local_err
);
1075 object_ref(OBJECT(ioc
));
1076 /* initial packet */
1080 qemu_thread_create(&p
->thread
, p
->name
, multifd_recv_thread
, p
,
1081 QEMU_THREAD_JOINABLE
);
1082 atomic_inc(&multifd_recv_state
->count
);
1083 return atomic_read(&multifd_recv_state
->count
) ==
1084 migrate_multifd_channels();