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"
22 #include "migration-stats.h"
25 #include "qemu-file.h"
28 #include "threadinfo.h"
30 #include "qemu/yank.h"
31 #include "io/channel-socket.h"
32 #include "yank_functions.h"
36 #define MULTIFD_MAGIC 0x11223344U
37 #define MULTIFD_VERSION 1
42 unsigned char uuid
[16]; /* QemuUUID */
44 uint8_t unused1
[7]; /* Reserved for future use */
45 uint64_t unused2
[4]; /* Reserved for future use */
46 } __attribute__((packed
)) MultiFDInit_t
;
48 /* Multifd without compression */
51 * nocomp_send_setup: setup send side
53 * For no compression this function does nothing.
55 * Returns 0 for success or -1 for error
57 * @p: Params for the channel that we are using
58 * @errp: pointer to an error
60 static int nocomp_send_setup(MultiFDSendParams
*p
, Error
**errp
)
66 * nocomp_send_cleanup: cleanup send side
68 * For no compression this function does nothing.
70 * @p: Params for the channel that we are using
71 * @errp: pointer to an error
73 static void nocomp_send_cleanup(MultiFDSendParams
*p
, Error
**errp
)
79 * nocomp_send_prepare: prepare date to be able to send
81 * For no compression we just have to calculate the size of the
84 * Returns 0 for success or -1 for error
86 * @p: Params for the channel that we are using
87 * @errp: pointer to an error
89 static int nocomp_send_prepare(MultiFDSendParams
*p
, Error
**errp
)
91 MultiFDPages_t
*pages
= p
->pages
;
93 for (int i
= 0; i
< p
->normal_num
; i
++) {
94 p
->iov
[p
->iovs_num
].iov_base
= pages
->block
->host
+ p
->normal
[i
];
95 p
->iov
[p
->iovs_num
].iov_len
= p
->page_size
;
99 p
->next_packet_size
= p
->normal_num
* p
->page_size
;
100 p
->flags
|= MULTIFD_FLAG_NOCOMP
;
105 * nocomp_recv_setup: setup receive side
107 * For no compression this function does nothing.
109 * Returns 0 for success or -1 for error
111 * @p: Params for the channel that we are using
112 * @errp: pointer to an error
114 static int nocomp_recv_setup(MultiFDRecvParams
*p
, Error
**errp
)
120 * nocomp_recv_cleanup: setup receive side
122 * For no compression this function does nothing.
124 * @p: Params for the channel that we are using
126 static void nocomp_recv_cleanup(MultiFDRecvParams
*p
)
131 * nocomp_recv_pages: read the data from the channel into actual pages
133 * For no compression we just need to read things into the correct place.
135 * Returns 0 for success or -1 for error
137 * @p: Params for the channel that we are using
138 * @errp: pointer to an error
140 static int nocomp_recv_pages(MultiFDRecvParams
*p
, Error
**errp
)
142 uint32_t flags
= p
->flags
& MULTIFD_FLAG_COMPRESSION_MASK
;
144 if (flags
!= MULTIFD_FLAG_NOCOMP
) {
145 error_setg(errp
, "multifd %u: flags received %x flags expected %x",
146 p
->id
, flags
, MULTIFD_FLAG_NOCOMP
);
149 for (int i
= 0; i
< p
->normal_num
; i
++) {
150 p
->iov
[i
].iov_base
= p
->host
+ p
->normal
[i
];
151 p
->iov
[i
].iov_len
= p
->page_size
;
153 return qio_channel_readv_all(p
->c
, p
->iov
, p
->normal_num
, 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 .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
= {};
178 size_t size
= sizeof(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
, size
, errp
);
190 stat64_add(&mig_stats
.multifd_bytes
, size
);
194 static int multifd_recv_initial_packet(QIOChannel
*c
, Error
**errp
)
199 ret
= qio_channel_read_all(c
, (char *)&msg
, sizeof(msg
), errp
);
204 msg
.magic
= be32_to_cpu(msg
.magic
);
205 msg
.version
= be32_to_cpu(msg
.version
);
207 if (msg
.magic
!= MULTIFD_MAGIC
) {
208 error_setg(errp
, "multifd: received packet magic %x "
209 "expected %x", msg
.magic
, MULTIFD_MAGIC
);
213 if (msg
.version
!= MULTIFD_VERSION
) {
214 error_setg(errp
, "multifd: received packet version %u "
215 "expected %u", msg
.version
, MULTIFD_VERSION
);
219 if (memcmp(msg
.uuid
, &qemu_uuid
, sizeof(qemu_uuid
))) {
220 char *uuid
= qemu_uuid_unparse_strdup(&qemu_uuid
);
221 char *msg_uuid
= qemu_uuid_unparse_strdup((const QemuUUID
*)msg
.uuid
);
223 error_setg(errp
, "multifd: received uuid '%s' and expected "
224 "uuid '%s' for channel %hhd", msg_uuid
, uuid
, msg
.id
);
230 if (msg
.id
> migrate_multifd_channels()) {
231 error_setg(errp
, "multifd: received channel id %u is greater than "
232 "number of channels %u", msg
.id
, migrate_multifd_channels());
239 static MultiFDPages_t
*multifd_pages_init(uint32_t n
)
241 MultiFDPages_t
*pages
= g_new0(MultiFDPages_t
, 1);
243 pages
->allocated
= n
;
244 pages
->offset
= g_new0(ram_addr_t
, n
);
249 static void multifd_pages_clear(MultiFDPages_t
*pages
)
252 pages
->allocated
= 0;
254 g_free(pages
->offset
);
255 pages
->offset
= NULL
;
259 static void multifd_send_fill_packet(MultiFDSendParams
*p
)
261 MultiFDPacket_t
*packet
= p
->packet
;
264 packet
->flags
= cpu_to_be32(p
->flags
);
265 packet
->pages_alloc
= cpu_to_be32(p
->pages
->allocated
);
266 packet
->normal_pages
= cpu_to_be32(p
->normal_num
);
267 packet
->next_packet_size
= cpu_to_be32(p
->next_packet_size
);
268 packet
->packet_num
= cpu_to_be64(p
->packet_num
);
270 if (p
->pages
->block
) {
271 strncpy(packet
->ramblock
, p
->pages
->block
->idstr
, 256);
274 for (i
= 0; i
< p
->normal_num
; i
++) {
275 /* there are architectures where ram_addr_t is 32 bit */
276 uint64_t temp
= p
->normal
[i
];
278 packet
->offset
[i
] = cpu_to_be64(temp
);
282 static int multifd_recv_unfill_packet(MultiFDRecvParams
*p
, Error
**errp
)
284 MultiFDPacket_t
*packet
= p
->packet
;
287 packet
->magic
= be32_to_cpu(packet
->magic
);
288 if (packet
->magic
!= MULTIFD_MAGIC
) {
289 error_setg(errp
, "multifd: received packet "
290 "magic %x and expected magic %x",
291 packet
->magic
, MULTIFD_MAGIC
);
295 packet
->version
= be32_to_cpu(packet
->version
);
296 if (packet
->version
!= MULTIFD_VERSION
) {
297 error_setg(errp
, "multifd: received packet "
298 "version %u and expected version %u",
299 packet
->version
, MULTIFD_VERSION
);
303 p
->flags
= be32_to_cpu(packet
->flags
);
305 packet
->pages_alloc
= be32_to_cpu(packet
->pages_alloc
);
307 * If we received a packet that is 100 times bigger than expected
308 * just stop migration. It is a magic number.
310 if (packet
->pages_alloc
> p
->page_count
) {
311 error_setg(errp
, "multifd: received packet "
312 "with size %u and expected a size of %u",
313 packet
->pages_alloc
, p
->page_count
) ;
317 p
->normal_num
= be32_to_cpu(packet
->normal_pages
);
318 if (p
->normal_num
> packet
->pages_alloc
) {
319 error_setg(errp
, "multifd: received packet "
320 "with %u pages and expected maximum pages are %u",
321 p
->normal_num
, packet
->pages_alloc
) ;
325 p
->next_packet_size
= be32_to_cpu(packet
->next_packet_size
);
326 p
->packet_num
= be64_to_cpu(packet
->packet_num
);
328 if (p
->normal_num
== 0) {
332 /* make sure that ramblock is 0 terminated */
333 packet
->ramblock
[255] = 0;
334 p
->block
= qemu_ram_block_by_name(packet
->ramblock
);
336 error_setg(errp
, "multifd: unknown ram block %s",
341 p
->host
= p
->block
->host
;
342 for (i
= 0; i
< p
->normal_num
; i
++) {
343 uint64_t offset
= be64_to_cpu(packet
->offset
[i
]);
345 if (offset
> (p
->block
->used_length
- p
->page_size
)) {
346 error_setg(errp
, "multifd: offset too long %" PRIu64
347 " (max " RAM_ADDR_FMT
")",
348 offset
, p
->block
->used_length
);
351 p
->normal
[i
] = offset
;
358 MultiFDSendParams
*params
;
359 /* array of pages to sent */
360 MultiFDPages_t
*pages
;
361 /* global number of generated multifd packets */
363 /* send channels ready */
364 QemuSemaphore channels_ready
;
366 * Have we already run terminate threads. There is a race when it
367 * happens that we got one error while we are exiting.
368 * We will use atomic operations. Only valid values are 0 and 1.
373 } *multifd_send_state
;
376 * How we use multifd_send_state->pages and channel->pages?
378 * We create a pages for each channel, and a main one. Each time that
379 * we need to send a batch of pages we interchange the ones between
380 * multifd_send_state and the channel that is sending it. There are
381 * two reasons for that:
382 * - to not have to do so many mallocs during migration
383 * - to make easier to know what to free at the end of migration
385 * This way we always know who is the owner of each "pages" struct,
386 * and we don't need any locking. It belongs to the migration thread
387 * or to the channel thread. Switching is safe because the migration
388 * thread is using the channel mutex when changing it, and the channel
389 * have to had finish with its own, otherwise pending_job can't be
393 static int multifd_send_pages(void)
396 static int next_channel
;
397 MultiFDSendParams
*p
= NULL
; /* make happy gcc */
398 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
400 if (qatomic_read(&multifd_send_state
->exiting
)) {
404 qemu_sem_wait(&multifd_send_state
->channels_ready
);
406 * next_channel can remain from a previous migration that was
407 * using more channels, so ensure it doesn't overflow if the
408 * limit is lower now.
410 next_channel
%= migrate_multifd_channels();
411 for (i
= next_channel
;; i
= (i
+ 1) % migrate_multifd_channels()) {
412 p
= &multifd_send_state
->params
[i
];
414 qemu_mutex_lock(&p
->mutex
);
416 error_report("%s: channel %d has already quit!", __func__
, i
);
417 qemu_mutex_unlock(&p
->mutex
);
420 if (!p
->pending_job
) {
422 next_channel
= (i
+ 1) % migrate_multifd_channels();
425 qemu_mutex_unlock(&p
->mutex
);
427 assert(!p
->pages
->num
);
428 assert(!p
->pages
->block
);
430 p
->packet_num
= multifd_send_state
->packet_num
++;
431 multifd_send_state
->pages
= p
->pages
;
433 qemu_mutex_unlock(&p
->mutex
);
434 qemu_sem_post(&p
->sem
);
439 int multifd_queue_page(RAMBlock
*block
, ram_addr_t offset
)
441 MultiFDPages_t
*pages
= multifd_send_state
->pages
;
442 bool changed
= false;
445 pages
->block
= block
;
448 if (pages
->block
== block
) {
449 pages
->offset
[pages
->num
] = offset
;
452 if (pages
->num
< pages
->allocated
) {
459 if (multifd_send_pages() < 0) {
464 return multifd_queue_page(block
, offset
);
470 static void multifd_send_terminate_threads(Error
*err
)
474 trace_multifd_send_terminate_threads(err
!= NULL
);
477 MigrationState
*s
= migrate_get_current();
478 migrate_set_error(s
, err
);
479 if (s
->state
== MIGRATION_STATUS_SETUP
||
480 s
->state
== MIGRATION_STATUS_PRE_SWITCHOVER
||
481 s
->state
== MIGRATION_STATUS_DEVICE
||
482 s
->state
== MIGRATION_STATUS_ACTIVE
) {
483 migrate_set_state(&s
->state
, s
->state
,
484 MIGRATION_STATUS_FAILED
);
489 * We don't want to exit each threads twice. Depending on where
490 * we get the error, or if there are two independent errors in two
491 * threads at the same time, we can end calling this function
494 if (qatomic_xchg(&multifd_send_state
->exiting
, 1)) {
498 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
499 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
501 qemu_mutex_lock(&p
->mutex
);
503 qemu_sem_post(&p
->sem
);
505 qio_channel_shutdown(p
->c
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
507 qemu_mutex_unlock(&p
->mutex
);
511 static int multifd_send_channel_destroy(QIOChannel
*send
)
513 return socket_send_channel_destroy(send
);
516 void multifd_save_cleanup(void)
520 if (!migrate_multifd()) {
523 multifd_send_terminate_threads(NULL
);
524 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
525 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
528 qemu_thread_join(&p
->thread
);
531 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
532 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
533 Error
*local_err
= NULL
;
535 if (p
->registered_yank
) {
536 migration_ioc_unregister_yank(p
->c
);
538 multifd_send_channel_destroy(p
->c
);
540 qemu_mutex_destroy(&p
->mutex
);
541 qemu_sem_destroy(&p
->sem
);
542 qemu_sem_destroy(&p
->sem_sync
);
545 multifd_pages_clear(p
->pages
);
554 multifd_send_state
->ops
->send_cleanup(p
, &local_err
);
556 migrate_set_error(migrate_get_current(), local_err
);
557 error_free(local_err
);
560 qemu_sem_destroy(&multifd_send_state
->channels_ready
);
561 g_free(multifd_send_state
->params
);
562 multifd_send_state
->params
= NULL
;
563 multifd_pages_clear(multifd_send_state
->pages
);
564 multifd_send_state
->pages
= NULL
;
565 g_free(multifd_send_state
);
566 multifd_send_state
= NULL
;
569 static int multifd_zero_copy_flush(QIOChannel
*c
)
574 ret
= qio_channel_flush(c
, &err
);
576 error_report_err(err
);
580 stat64_add(&mig_stats
.dirty_sync_missed_zero_copy
, 1);
586 int multifd_send_sync_main(void)
589 bool flush_zero_copy
;
591 if (!migrate_multifd()) {
594 if (multifd_send_state
->pages
->num
) {
595 if (multifd_send_pages() < 0) {
596 error_report("%s: multifd_send_pages fail", __func__
);
602 * When using zero-copy, it's necessary to flush the pages before any of
603 * the pages can be sent again, so we'll make sure the new version of the
604 * pages will always arrive _later_ than the old pages.
606 * Currently we achieve this by flushing the zero-page requested writes
607 * per ram iteration, but in the future we could potentially optimize it
608 * to be less frequent, e.g. only after we finished one whole scanning of
609 * all the dirty bitmaps.
612 flush_zero_copy
= migrate_zero_copy_send();
614 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
615 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
617 trace_multifd_send_sync_main_signal(p
->id
);
619 qemu_mutex_lock(&p
->mutex
);
622 error_report("%s: channel %d has already quit", __func__
, i
);
623 qemu_mutex_unlock(&p
->mutex
);
627 p
->packet_num
= multifd_send_state
->packet_num
++;
628 p
->flags
|= MULTIFD_FLAG_SYNC
;
630 qemu_mutex_unlock(&p
->mutex
);
631 qemu_sem_post(&p
->sem
);
633 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
634 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
636 qemu_sem_wait(&multifd_send_state
->channels_ready
);
637 trace_multifd_send_sync_main_wait(p
->id
);
638 qemu_sem_wait(&p
->sem_sync
);
640 if (flush_zero_copy
&& p
->c
&& (multifd_zero_copy_flush(p
->c
) < 0)) {
644 trace_multifd_send_sync_main(multifd_send_state
->packet_num
);
649 static void *multifd_send_thread(void *opaque
)
651 MultiFDSendParams
*p
= opaque
;
652 MigrationThread
*thread
= NULL
;
653 Error
*local_err
= NULL
;
655 bool use_zero_copy_send
= migrate_zero_copy_send();
657 thread
= migration_threads_add(p
->name
, qemu_get_thread_id());
659 trace_multifd_send_thread_start(p
->id
);
660 rcu_register_thread();
662 if (multifd_send_initial_packet(p
, &local_err
) < 0) {
670 qemu_sem_post(&multifd_send_state
->channels_ready
);
671 qemu_sem_wait(&p
->sem
);
673 if (qatomic_read(&multifd_send_state
->exiting
)) {
676 qemu_mutex_lock(&p
->mutex
);
678 if (p
->pending_job
) {
679 uint64_t packet_num
= p
->packet_num
;
683 if (use_zero_copy_send
) {
689 for (int i
= 0; i
< p
->pages
->num
; i
++) {
690 p
->normal
[p
->normal_num
] = p
->pages
->offset
[i
];
695 ret
= multifd_send_state
->ops
->send_prepare(p
, &local_err
);
697 qemu_mutex_unlock(&p
->mutex
);
701 multifd_send_fill_packet(p
);
705 p
->total_normal_pages
+= p
->normal_num
;
707 p
->pages
->block
= NULL
;
708 qemu_mutex_unlock(&p
->mutex
);
710 trace_multifd_send(p
->id
, packet_num
, p
->normal_num
, flags
,
711 p
->next_packet_size
);
713 if (use_zero_copy_send
) {
714 /* Send header first, without zerocopy */
715 ret
= qio_channel_write_all(p
->c
, (void *)p
->packet
,
716 p
->packet_len
, &local_err
);
721 /* Send header using the same writev call */
722 p
->iov
[0].iov_len
= p
->packet_len
;
723 p
->iov
[0].iov_base
= p
->packet
;
726 ret
= qio_channel_writev_full_all(p
->c
, p
->iov
, p
->iovs_num
, NULL
,
727 0, p
->write_flags
, &local_err
);
732 stat64_add(&mig_stats
.multifd_bytes
,
733 p
->next_packet_size
+ p
->packet_len
);
734 p
->next_packet_size
= 0;
735 qemu_mutex_lock(&p
->mutex
);
737 qemu_mutex_unlock(&p
->mutex
);
739 if (flags
& MULTIFD_FLAG_SYNC
) {
740 qemu_sem_post(&p
->sem_sync
);
743 qemu_mutex_unlock(&p
->mutex
);
744 /* sometimes there are spurious wakeups */
751 trace_multifd_send_error(p
->id
);
752 multifd_send_terminate_threads(local_err
);
753 qemu_sem_post(&p
->sem_sync
);
754 qemu_sem_post(&multifd_send_state
->channels_ready
);
755 error_free(local_err
);
758 qemu_mutex_lock(&p
->mutex
);
760 qemu_mutex_unlock(&p
->mutex
);
762 rcu_unregister_thread();
763 migration_threads_remove(thread
);
764 trace_multifd_send_thread_end(p
->id
, p
->num_packets
, p
->total_normal_pages
);
769 static bool multifd_channel_connect(MultiFDSendParams
*p
,
773 static void multifd_tls_outgoing_handshake(QIOTask
*task
,
776 MultiFDSendParams
*p
= opaque
;
777 QIOChannel
*ioc
= QIO_CHANNEL(qio_task_get_source(task
));
780 if (!qio_task_propagate_error(task
, &err
)) {
781 trace_multifd_tls_outgoing_handshake_complete(ioc
);
782 if (multifd_channel_connect(p
, ioc
, &err
)) {
787 trace_multifd_tls_outgoing_handshake_error(ioc
, error_get_pretty(err
));
789 migrate_set_error(migrate_get_current(), err
);
791 * Error happen, mark multifd_send_thread status as 'quit' although it
792 * is not created, and then tell who pay attention to me.
795 qemu_sem_post(&multifd_send_state
->channels_ready
);
796 qemu_sem_post(&p
->sem_sync
);
800 static void *multifd_tls_handshake_thread(void *opaque
)
802 MultiFDSendParams
*p
= opaque
;
803 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(p
->c
);
805 qio_channel_tls_handshake(tioc
,
806 multifd_tls_outgoing_handshake
,
813 static bool multifd_tls_channel_connect(MultiFDSendParams
*p
,
817 MigrationState
*s
= migrate_get_current();
818 const char *hostname
= s
->hostname
;
821 tioc
= migration_tls_client_create(ioc
, hostname
, errp
);
826 object_unref(OBJECT(ioc
));
827 trace_multifd_tls_outgoing_handshake_start(ioc
, tioc
, hostname
);
828 qio_channel_set_name(QIO_CHANNEL(tioc
), "multifd-tls-outgoing");
829 p
->c
= QIO_CHANNEL(tioc
);
830 qemu_thread_create(&p
->thread
, "multifd-tls-handshake-worker",
831 multifd_tls_handshake_thread
, p
,
832 QEMU_THREAD_JOINABLE
);
836 static bool multifd_channel_connect(MultiFDSendParams
*p
,
840 trace_multifd_set_outgoing_channel(
841 ioc
, object_get_typename(OBJECT(ioc
)),
842 migrate_get_current()->hostname
);
844 if (migrate_channel_requires_tls_upgrade(ioc
)) {
846 * tls_channel_connect will call back to this
847 * function after the TLS handshake,
848 * so we mustn't call multifd_send_thread until then
850 return multifd_tls_channel_connect(p
, ioc
, errp
);
853 migration_ioc_register_yank(ioc
);
854 p
->registered_yank
= true;
856 qemu_thread_create(&p
->thread
, p
->name
, multifd_send_thread
, p
,
857 QEMU_THREAD_JOINABLE
);
861 static void multifd_new_send_channel_cleanup(MultiFDSendParams
*p
,
862 QIOChannel
*ioc
, Error
*err
)
864 migrate_set_error(migrate_get_current(), err
);
865 /* Error happen, we need to tell who pay attention to me */
866 qemu_sem_post(&multifd_send_state
->channels_ready
);
867 qemu_sem_post(&p
->sem_sync
);
869 * Although multifd_send_thread is not created, but main migration
870 * thread need to judge whether it is running, so we need to mark
874 object_unref(OBJECT(ioc
));
878 static void multifd_new_send_channel_async(QIOTask
*task
, gpointer opaque
)
880 MultiFDSendParams
*p
= opaque
;
881 QIOChannel
*ioc
= QIO_CHANNEL(qio_task_get_source(task
));
882 Error
*local_err
= NULL
;
884 trace_multifd_new_send_channel_async(p
->id
);
885 if (!qio_task_propagate_error(task
, &local_err
)) {
886 qio_channel_set_delay(ioc
, false);
888 if (multifd_channel_connect(p
, ioc
, &local_err
)) {
893 trace_multifd_new_send_channel_async_error(p
->id
, local_err
);
894 multifd_new_send_channel_cleanup(p
, ioc
, local_err
);
897 static void multifd_new_send_channel_create(gpointer opaque
)
899 socket_send_channel_create(multifd_new_send_channel_async
, opaque
);
902 int multifd_save_setup(Error
**errp
)
905 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
908 if (!migrate_multifd()) {
912 thread_count
= migrate_multifd_channels();
913 multifd_send_state
= g_malloc0(sizeof(*multifd_send_state
));
914 multifd_send_state
->params
= g_new0(MultiFDSendParams
, thread_count
);
915 multifd_send_state
->pages
= multifd_pages_init(page_count
);
916 qemu_sem_init(&multifd_send_state
->channels_ready
, 0);
917 qatomic_set(&multifd_send_state
->exiting
, 0);
918 multifd_send_state
->ops
= multifd_ops
[migrate_multifd_compression()];
920 for (i
= 0; i
< thread_count
; i
++) {
921 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
923 qemu_mutex_init(&p
->mutex
);
924 qemu_sem_init(&p
->sem
, 0);
925 qemu_sem_init(&p
->sem_sync
, 0);
929 p
->pages
= multifd_pages_init(page_count
);
930 p
->packet_len
= sizeof(MultiFDPacket_t
)
931 + sizeof(uint64_t) * page_count
;
932 p
->packet
= g_malloc0(p
->packet_len
);
933 p
->packet
->magic
= cpu_to_be32(MULTIFD_MAGIC
);
934 p
->packet
->version
= cpu_to_be32(MULTIFD_VERSION
);
935 p
->name
= g_strdup_printf("multifdsend_%d", i
);
936 /* We need one extra place for the packet header */
937 p
->iov
= g_new0(struct iovec
, page_count
+ 1);
938 p
->normal
= g_new0(ram_addr_t
, page_count
);
939 p
->page_size
= qemu_target_page_size();
940 p
->page_count
= page_count
;
942 if (migrate_zero_copy_send()) {
943 p
->write_flags
= QIO_CHANNEL_WRITE_FLAG_ZERO_COPY
;
948 multifd_new_send_channel_create(p
);
951 for (i
= 0; i
< thread_count
; i
++) {
952 MultiFDSendParams
*p
= &multifd_send_state
->params
[i
];
955 ret
= multifd_send_state
->ops
->send_setup(p
, errp
);
964 MultiFDRecvParams
*params
;
965 /* number of created threads */
967 /* syncs main thread and channels */
968 QemuSemaphore sem_sync
;
969 /* global number of generated multifd packets */
973 } *multifd_recv_state
;
975 static void multifd_recv_terminate_threads(Error
*err
)
979 trace_multifd_recv_terminate_threads(err
!= NULL
);
982 MigrationState
*s
= migrate_get_current();
983 migrate_set_error(s
, err
);
984 if (s
->state
== MIGRATION_STATUS_SETUP
||
985 s
->state
== MIGRATION_STATUS_ACTIVE
) {
986 migrate_set_state(&s
->state
, s
->state
,
987 MIGRATION_STATUS_FAILED
);
991 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
992 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
994 qemu_mutex_lock(&p
->mutex
);
997 * We could arrive here for two reasons:
998 * - normal quit, i.e. everything went fine, just finished
999 * - error quit: We close the channels so the channel threads
1000 * finish the qio_channel_read_all_eof()
1003 qio_channel_shutdown(p
->c
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
1005 qemu_mutex_unlock(&p
->mutex
);
1009 void multifd_load_shutdown(void)
1011 if (migrate_multifd()) {
1012 multifd_recv_terminate_threads(NULL
);
1016 void multifd_load_cleanup(void)
1020 if (!migrate_multifd()) {
1023 multifd_recv_terminate_threads(NULL
);
1024 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
1025 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1029 * multifd_recv_thread may hung at MULTIFD_FLAG_SYNC handle code,
1030 * however try to wakeup it without harm in cleanup phase.
1032 qemu_sem_post(&p
->sem_sync
);
1035 qemu_thread_join(&p
->thread
);
1037 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
1038 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1040 migration_ioc_unregister_yank(p
->c
);
1041 object_unref(OBJECT(p
->c
));
1043 qemu_mutex_destroy(&p
->mutex
);
1044 qemu_sem_destroy(&p
->sem_sync
);
1054 multifd_recv_state
->ops
->recv_cleanup(p
);
1056 qemu_sem_destroy(&multifd_recv_state
->sem_sync
);
1057 g_free(multifd_recv_state
->params
);
1058 multifd_recv_state
->params
= NULL
;
1059 g_free(multifd_recv_state
);
1060 multifd_recv_state
= NULL
;
1063 void multifd_recv_sync_main(void)
1067 if (!migrate_multifd()) {
1070 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
1071 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1073 trace_multifd_recv_sync_main_wait(p
->id
);
1074 qemu_sem_wait(&multifd_recv_state
->sem_sync
);
1076 for (i
= 0; i
< migrate_multifd_channels(); i
++) {
1077 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1079 WITH_QEMU_LOCK_GUARD(&p
->mutex
) {
1080 if (multifd_recv_state
->packet_num
< p
->packet_num
) {
1081 multifd_recv_state
->packet_num
= p
->packet_num
;
1084 trace_multifd_recv_sync_main_signal(p
->id
);
1085 qemu_sem_post(&p
->sem_sync
);
1087 trace_multifd_recv_sync_main(multifd_recv_state
->packet_num
);
1090 static void *multifd_recv_thread(void *opaque
)
1092 MultiFDRecvParams
*p
= opaque
;
1093 Error
*local_err
= NULL
;
1096 trace_multifd_recv_thread_start(p
->id
);
1097 rcu_register_thread();
1106 ret
= qio_channel_read_all_eof(p
->c
, (void *)p
->packet
,
1107 p
->packet_len
, &local_err
);
1108 if (ret
== 0 || ret
== -1) { /* 0: EOF -1: Error */
1112 qemu_mutex_lock(&p
->mutex
);
1113 ret
= multifd_recv_unfill_packet(p
, &local_err
);
1115 qemu_mutex_unlock(&p
->mutex
);
1120 /* recv methods don't know how to handle the SYNC flag */
1121 p
->flags
&= ~MULTIFD_FLAG_SYNC
;
1122 trace_multifd_recv(p
->id
, p
->packet_num
, p
->normal_num
, flags
,
1123 p
->next_packet_size
);
1125 p
->total_normal_pages
+= p
->normal_num
;
1126 qemu_mutex_unlock(&p
->mutex
);
1128 if (p
->normal_num
) {
1129 ret
= multifd_recv_state
->ops
->recv_pages(p
, &local_err
);
1135 if (flags
& MULTIFD_FLAG_SYNC
) {
1136 qemu_sem_post(&multifd_recv_state
->sem_sync
);
1137 qemu_sem_wait(&p
->sem_sync
);
1142 multifd_recv_terminate_threads(local_err
);
1143 error_free(local_err
);
1145 qemu_mutex_lock(&p
->mutex
);
1147 qemu_mutex_unlock(&p
->mutex
);
1149 rcu_unregister_thread();
1150 trace_multifd_recv_thread_end(p
->id
, p
->num_packets
, p
->total_normal_pages
);
1155 int multifd_load_setup(Error
**errp
)
1158 uint32_t page_count
= MULTIFD_PACKET_SIZE
/ qemu_target_page_size();
1162 * Return successfully if multiFD recv state is already initialised
1163 * or multiFD is not enabled.
1165 if (multifd_recv_state
|| !migrate_multifd()) {
1169 thread_count
= migrate_multifd_channels();
1170 multifd_recv_state
= g_malloc0(sizeof(*multifd_recv_state
));
1171 multifd_recv_state
->params
= g_new0(MultiFDRecvParams
, thread_count
);
1172 qatomic_set(&multifd_recv_state
->count
, 0);
1173 qemu_sem_init(&multifd_recv_state
->sem_sync
, 0);
1174 multifd_recv_state
->ops
= multifd_ops
[migrate_multifd_compression()];
1176 for (i
= 0; i
< thread_count
; i
++) {
1177 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1179 qemu_mutex_init(&p
->mutex
);
1180 qemu_sem_init(&p
->sem_sync
, 0);
1183 p
->packet_len
= sizeof(MultiFDPacket_t
)
1184 + sizeof(uint64_t) * page_count
;
1185 p
->packet
= g_malloc0(p
->packet_len
);
1186 p
->name
= g_strdup_printf("multifdrecv_%d", i
);
1187 p
->iov
= g_new0(struct iovec
, page_count
);
1188 p
->normal
= g_new0(ram_addr_t
, page_count
);
1189 p
->page_count
= page_count
;
1190 p
->page_size
= qemu_target_page_size();
1193 for (i
= 0; i
< thread_count
; i
++) {
1194 MultiFDRecvParams
*p
= &multifd_recv_state
->params
[i
];
1197 ret
= multifd_recv_state
->ops
->recv_setup(p
, errp
);
1205 bool multifd_recv_all_channels_created(void)
1207 int thread_count
= migrate_multifd_channels();
1209 if (!migrate_multifd()) {
1213 if (!multifd_recv_state
) {
1214 /* Called before any connections created */
1218 return thread_count
== qatomic_read(&multifd_recv_state
->count
);
1222 * Try to receive all multifd channels to get ready for the migration.
1223 * Sets @errp when failing to receive the current channel.
1225 void multifd_recv_new_channel(QIOChannel
*ioc
, Error
**errp
)
1227 MultiFDRecvParams
*p
;
1228 Error
*local_err
= NULL
;
1231 id
= multifd_recv_initial_packet(ioc
, &local_err
);
1233 multifd_recv_terminate_threads(local_err
);
1234 error_propagate_prepend(errp
, local_err
,
1235 "failed to receive packet"
1236 " via multifd channel %d: ",
1237 qatomic_read(&multifd_recv_state
->count
));
1240 trace_multifd_recv_new_channel(id
);
1242 p
= &multifd_recv_state
->params
[id
];
1244 error_setg(&local_err
, "multifd: received id '%d' already setup'",
1246 multifd_recv_terminate_threads(local_err
);
1247 error_propagate(errp
, local_err
);
1251 object_ref(OBJECT(ioc
));
1252 /* initial packet */
1256 qemu_thread_create(&p
->thread
, p
->name
, multifd_recv_thread
, p
,
1257 QEMU_THREAD_JOINABLE
);
1258 qatomic_inc(&multifd_recv_state
->count
);