2 * QTest testcase for migration
4 * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates
5 * based on the vhost-user-test.c that is:
6 * Copyright (c) 2014 Virtual Open Systems Sarl.
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
16 #include "qapi/error.h"
17 #include "qapi/qmp/qdict.h"
18 #include "qemu/module.h"
19 #include "qemu/option.h"
20 #include "qemu/range.h"
21 #include "qemu/sockets.h"
22 #include "chardev/char.h"
23 #include "qapi/qapi-visit-sockets.h"
24 #include "qapi/qobject-input-visitor.h"
25 #include "qapi/qobject-output-visitor.h"
26 #include "crypto/tlscredspsk.h"
27 #include "qapi/qmp/qlist.h"
29 #include "migration-helpers.h"
30 #include "tests/migration/migration-test.h"
32 # include "tests/unit/crypto-tls-psk-helpers.h"
34 # include "tests/unit/crypto-tls-x509-helpers.h"
35 # endif /* CONFIG_TASN1 */
36 #endif /* CONFIG_GNUTLS */
38 /* For dirty ring test; so far only x86_64 is supported */
39 #if defined(__linux__) && defined(HOST_X86_64)
40 #include "linux/kvm.h"
43 unsigned start_address
;
45 static bool uffd_feature_thread_id
;
46 static bool got_src_stop
;
47 static bool got_dst_resume
;
50 * An initial 3 MB offset is used as that corresponds
51 * to ~1 sec of data transfer with our bandwidth setting.
53 #define MAGIC_OFFSET_BASE (3 * 1024 * 1024)
55 * A further 1k is added to ensure we're not a multiple
56 * of TEST_MEM_PAGE_SIZE, thus avoid clash with writes
57 * from the migration guest workload.
59 #define MAGIC_OFFSET_SHUFFLE 1024
60 #define MAGIC_OFFSET (MAGIC_OFFSET_BASE + MAGIC_OFFSET_SHUFFLE)
61 #define MAGIC_MARKER 0xFEED12345678CAFEULL
64 * Dirtylimit stop working if dirty page rate error
65 * value less than DIRTYLIMIT_TOLERANCE_RANGE
67 #define DIRTYLIMIT_TOLERANCE_RANGE 25 /* MB/s */
69 #define ANALYZE_SCRIPT "scripts/analyze-migration.py"
71 #define QEMU_VM_FILE_MAGIC 0x5145564d
72 #define FILE_TEST_FILENAME "migfile"
73 #define FILE_TEST_OFFSET 0x1000
74 #define QEMU_ENV_SRC "QTEST_QEMU_BINARY_SRC"
75 #define QEMU_ENV_DST "QTEST_QEMU_BINARY_DST"
77 #if defined(__linux__)
78 #include <sys/syscall.h>
82 #if defined(__linux__) && defined(__NR_userfaultfd) && defined(CONFIG_EVENTFD)
83 #include <sys/eventfd.h>
84 #include <sys/ioctl.h>
85 #include "qemu/userfaultfd.h"
87 static bool ufd_version_check(void)
89 struct uffdio_api api_struct
;
92 int ufd
= uffd_open(O_CLOEXEC
);
95 g_test_message("Skipping test: userfaultfd not available");
99 api_struct
.api
= UFFD_API
;
100 api_struct
.features
= 0;
101 if (ioctl(ufd
, UFFDIO_API
, &api_struct
)) {
102 g_test_message("Skipping test: UFFDIO_API failed");
105 uffd_feature_thread_id
= api_struct
.features
& UFFD_FEATURE_THREAD_ID
;
107 ioctl_mask
= (__u64
)1 << _UFFDIO_REGISTER
|
108 (__u64
)1 << _UFFDIO_UNREGISTER
;
109 if ((api_struct
.ioctls
& ioctl_mask
) != ioctl_mask
) {
110 g_test_message("Skipping test: Missing userfault feature");
118 static bool ufd_version_check(void)
120 g_test_message("Skipping test: Userfault not available (builtdtime)");
127 static char *bootpath
;
129 /* The boot file modifies memory area in [start_address, end_address)
130 * repeatedly. It outputs a 'B' at a fixed rate while it's still running.
132 #include "tests/migration/i386/a-b-bootblock.h"
133 #include "tests/migration/aarch64/a-b-kernel.h"
134 #include "tests/migration/s390x/a-b-bios.h"
136 static void bootfile_create(char *dir
)
138 const char *arch
= qtest_get_arch();
139 unsigned char *content
;
142 bootpath
= g_strdup_printf("%s/bootsect", dir
);
143 if (strcmp(arch
, "i386") == 0 || strcmp(arch
, "x86_64") == 0) {
144 /* the assembled x86 boot sector should be exactly one sector large */
145 g_assert(sizeof(x86_bootsect
) == 512);
146 content
= x86_bootsect
;
147 len
= sizeof(x86_bootsect
);
148 } else if (g_str_equal(arch
, "s390x")) {
150 len
= sizeof(s390x_elf
);
151 } else if (strcmp(arch
, "ppc64") == 0) {
153 * sane architectures can be programmed at the boot prompt
156 } else if (strcmp(arch
, "aarch64") == 0) {
157 content
= aarch64_kernel
;
158 len
= sizeof(aarch64_kernel
);
159 g_assert(sizeof(aarch64_kernel
) <= ARM_TEST_MAX_KERNEL_SIZE
);
161 g_assert_not_reached();
164 FILE *bootfile
= fopen(bootpath
, "wb");
166 g_assert_cmpint(fwrite(content
, len
, 1, bootfile
), ==, 1);
170 static void bootfile_delete(void)
178 * Wait for some output in the serial output file,
179 * we get an 'A' followed by an endless string of 'B's
180 * but on the destination we won't have the A.
182 static void wait_for_serial(const char *side
)
184 g_autofree
char *serialpath
= g_strdup_printf("%s/%s", tmpfs
, side
);
185 FILE *serialfile
= fopen(serialpath
, "r");
186 const char *arch
= qtest_get_arch();
187 int started
= (strcmp(side
, "src_serial") == 0 &&
188 strcmp(arch
, "ppc64") == 0) ? 0 : 1;
191 int readvalue
= fgetc(serialfile
);
194 /* SLOF prints its banner before starting test,
195 * to ignore it, mark the start of the test with '_',
196 * ignore all characters until this marker
203 fseek(serialfile
, 0, SEEK_SET
);
220 started
= (strcmp(side
, "src_serial") == 0 &&
221 strcmp(arch
, "ppc64") == 0) ? 0 : 1;
222 fseek(serialfile
, 0, SEEK_SET
);
227 fprintf(stderr
, "Unexpected %d on %s serial\n", readvalue
, side
);
228 g_assert_not_reached();
234 * It's tricky to use qemu's migration event capability with qtest,
235 * events suddenly appearing confuse the qmp()/hmp() responses.
238 static int64_t read_ram_property_int(QTestState
*who
, const char *property
)
240 QDict
*rsp_return
, *rsp_ram
;
243 rsp_return
= migrate_query_not_failed(who
);
244 if (!qdict_haskey(rsp_return
, "ram")) {
248 rsp_ram
= qdict_get_qdict(rsp_return
, "ram");
249 result
= qdict_get_try_int(rsp_ram
, property
, 0);
251 qobject_unref(rsp_return
);
255 static int64_t read_migrate_property_int(QTestState
*who
, const char *property
)
260 rsp_return
= migrate_query_not_failed(who
);
261 result
= qdict_get_try_int(rsp_return
, property
, 0);
262 qobject_unref(rsp_return
);
266 static uint64_t get_migration_pass(QTestState
*who
)
268 return read_ram_property_int(who
, "dirty-sync-count");
271 static void read_blocktime(QTestState
*who
)
275 rsp_return
= migrate_query_not_failed(who
);
276 g_assert(qdict_haskey(rsp_return
, "postcopy-blocktime"));
277 qobject_unref(rsp_return
);
280 static void wait_for_migration_pass(QTestState
*who
)
282 uint64_t initial_pass
= get_migration_pass(who
);
285 /* Wait for the 1st sync */
286 while (!got_src_stop
&& !initial_pass
) {
288 initial_pass
= get_migration_pass(who
);
293 pass
= get_migration_pass(who
);
294 } while (pass
== initial_pass
&& !got_src_stop
);
297 static void check_guests_ram(QTestState
*who
)
299 /* Our ASM test will have been incrementing one byte from each page from
300 * start_address to < end_address in order. This gives us a constraint
301 * that any page's byte should be equal or less than the previous pages
302 * byte (mod 256); and they should all be equal except for one transition
303 * at the point where we meet the incrementer. (We're running this with
304 * the guest stopped).
309 bool hit_edge
= false;
312 qtest_memread(who
, start_address
, &first_byte
, 1);
313 last_byte
= first_byte
;
315 for (address
= start_address
+ TEST_MEM_PAGE_SIZE
; address
< end_address
;
316 address
+= TEST_MEM_PAGE_SIZE
)
319 qtest_memread(who
, address
, &b
, 1);
320 if (b
!= last_byte
) {
321 if (((b
+ 1) % 256) == last_byte
&& !hit_edge
) {
322 /* This is OK, the guest stopped at the point of
323 * incrementing the previous page but didn't get
331 fprintf(stderr
, "Memory content inconsistency at %x"
332 " first_byte = %x last_byte = %x current = %x"
334 address
, first_byte
, last_byte
, b
, hit_edge
);
340 fprintf(stderr
, "and in another %d pages", bad
- 10);
345 static void cleanup(const char *filename
)
347 g_autofree
char *path
= g_strdup_printf("%s/%s", tmpfs
, filename
);
352 static char *SocketAddress_to_str(SocketAddress
*addr
)
354 switch (addr
->type
) {
355 case SOCKET_ADDRESS_TYPE_INET
:
356 return g_strdup_printf("tcp:%s:%s",
359 case SOCKET_ADDRESS_TYPE_UNIX
:
360 return g_strdup_printf("unix:%s",
361 addr
->u
.q_unix
.path
);
362 case SOCKET_ADDRESS_TYPE_FD
:
363 return g_strdup_printf("fd:%s", addr
->u
.fd
.str
);
364 case SOCKET_ADDRESS_TYPE_VSOCK
:
365 return g_strdup_printf("tcp:%s:%s",
369 return g_strdup("unknown address type");
373 static char *migrate_get_socket_address(QTestState
*who
, const char *parameter
)
377 SocketAddressList
*addrs
;
381 rsp
= migrate_query(who
);
382 object
= qdict_get(rsp
, parameter
);
384 iv
= qobject_input_visitor_new(object
);
385 visit_type_SocketAddressList(iv
, NULL
, &addrs
, &error_abort
);
388 /* we are only using a single address */
389 result
= SocketAddress_to_str(addrs
->value
);
391 qapi_free_SocketAddressList(addrs
);
396 static long long migrate_get_parameter_int(QTestState
*who
,
397 const char *parameter
)
402 rsp
= qtest_qmp_assert_success_ref(
403 who
, "{ 'execute': 'query-migrate-parameters' }");
404 result
= qdict_get_int(rsp
, parameter
);
409 static void migrate_check_parameter_int(QTestState
*who
, const char *parameter
,
414 result
= migrate_get_parameter_int(who
, parameter
);
415 g_assert_cmpint(result
, ==, value
);
418 static void migrate_set_parameter_int(QTestState
*who
, const char *parameter
,
421 qtest_qmp_assert_success(who
,
422 "{ 'execute': 'migrate-set-parameters',"
423 "'arguments': { %s: %lld } }",
425 migrate_check_parameter_int(who
, parameter
, value
);
428 static char *migrate_get_parameter_str(QTestState
*who
,
429 const char *parameter
)
434 rsp
= qtest_qmp_assert_success_ref(
435 who
, "{ 'execute': 'query-migrate-parameters' }");
436 result
= g_strdup(qdict_get_str(rsp
, parameter
));
441 static void migrate_check_parameter_str(QTestState
*who
, const char *parameter
,
444 g_autofree
char *result
= migrate_get_parameter_str(who
, parameter
);
445 g_assert_cmpstr(result
, ==, value
);
448 static void migrate_set_parameter_str(QTestState
*who
, const char *parameter
,
451 qtest_qmp_assert_success(who
,
452 "{ 'execute': 'migrate-set-parameters',"
453 "'arguments': { %s: %s } }",
455 migrate_check_parameter_str(who
, parameter
, value
);
458 static long long migrate_get_parameter_bool(QTestState
*who
,
459 const char *parameter
)
464 rsp
= qtest_qmp_assert_success_ref(
465 who
, "{ 'execute': 'query-migrate-parameters' }");
466 result
= qdict_get_bool(rsp
, parameter
);
471 static void migrate_check_parameter_bool(QTestState
*who
, const char *parameter
,
476 result
= migrate_get_parameter_bool(who
, parameter
);
477 g_assert_cmpint(result
, ==, value
);
480 static void migrate_set_parameter_bool(QTestState
*who
, const char *parameter
,
483 qtest_qmp_assert_success(who
,
484 "{ 'execute': 'migrate-set-parameters',"
485 "'arguments': { %s: %i } }",
487 migrate_check_parameter_bool(who
, parameter
, value
);
490 static void migrate_ensure_non_converge(QTestState
*who
)
492 /* Can't converge with 1ms downtime + 3 mbs bandwidth limit */
493 migrate_set_parameter_int(who
, "max-bandwidth", 3 * 1000 * 1000);
494 migrate_set_parameter_int(who
, "downtime-limit", 1);
497 static void migrate_ensure_converge(QTestState
*who
)
499 /* Should converge with 30s downtime + 1 gbs bandwidth limit */
500 migrate_set_parameter_int(who
, "max-bandwidth", 1 * 1000 * 1000 * 1000);
501 migrate_set_parameter_int(who
, "downtime-limit", 30 * 1000);
505 * Our goal is to ensure that we run a single full migration
506 * iteration, and also dirty memory, ensuring that at least
507 * one further iteration is required.
509 * We can't directly synchronize with the start of a migration
510 * so we have to apply some tricks monitoring memory that is
513 * Initially we set the migration bandwidth to an insanely
514 * low value, with tiny max downtime too. This basically
515 * guarantees migration will never complete.
517 * This will result in a test that is unacceptably slow though,
518 * so we can't let the entire migration pass run at this speed.
519 * Our intent is to let it run just long enough that we can
520 * prove data prior to the marker has been transferred *AND*
521 * also prove this transferred data is dirty again.
523 * Before migration starts, we write a 64-bit magic marker
524 * into a fixed location in the src VM RAM.
526 * Then watch dst memory until the marker appears. This is
527 * proof that start_address -> MAGIC_OFFSET_BASE has been
530 * Finally we go back to the source and read a byte just
531 * before the marker until we see it flip in value. This
532 * is proof that start_address -> MAGIC_OFFSET_BASE
533 * is now dirty again.
535 * IOW, we're guaranteed at least a 2nd migration pass
538 * We can now let migration run at full speed to finish
541 static void migrate_prepare_for_dirty_mem(QTestState
*from
)
544 * The guest workflow iterates from start_address to
545 * end_address, writing 1 byte every TEST_MEM_PAGE_SIZE
548 * IOW, if we write to mem at a point which is NOT
549 * a multiple of TEST_MEM_PAGE_SIZE, our write won't
550 * conflict with the migration workflow.
552 * We put in a marker here, that we'll use to determine
553 * when the data has been transferred to the dst.
555 qtest_writeq(from
, start_address
+ MAGIC_OFFSET
, MAGIC_MARKER
);
558 static void migrate_wait_for_dirty_mem(QTestState
*from
,
561 uint64_t watch_address
= start_address
+ MAGIC_OFFSET_BASE
;
562 uint64_t marker_address
= start_address
+ MAGIC_OFFSET
;
566 * Wait for the MAGIC_MARKER to get transferred, as an
567 * indicator that a migration pass has made some known
568 * amount of progress.
572 } while (qtest_readq(to
, marker_address
) != MAGIC_MARKER
);
575 * Now ensure that already transferred bytes are
576 * dirty again from the guest workload. Note the
577 * guest byte value will wrap around and by chance
578 * match the original watch_byte. This is harmless
579 * as we'll eventually see a different value if we
582 watch_byte
= qtest_readb(from
, watch_address
);
585 } while (qtest_readb(from
, watch_address
) == watch_byte
);
589 static void migrate_pause(QTestState
*who
)
591 qtest_qmp_assert_success(who
, "{ 'execute': 'migrate-pause' }");
594 static void migrate_continue(QTestState
*who
, const char *state
)
596 qtest_qmp_assert_success(who
,
597 "{ 'execute': 'migrate-continue',"
598 " 'arguments': { 'state': %s } }",
602 static void migrate_recover(QTestState
*who
, const char *uri
)
604 qtest_qmp_assert_success(who
,
605 "{ 'execute': 'migrate-recover', "
606 " 'id': 'recover-cmd', "
607 " 'arguments': { 'uri': %s } }",
611 static void migrate_cancel(QTestState
*who
)
613 qtest_qmp_assert_success(who
, "{ 'execute': 'migrate_cancel' }");
616 static void migrate_postcopy_start(QTestState
*from
, QTestState
*to
)
618 qtest_qmp_assert_success(from
, "{ 'execute': 'migrate-start-postcopy' }");
621 qtest_qmp_eventwait(from
, "STOP");
624 qtest_qmp_eventwait(to
, "RESUME");
629 * QTEST_LOG=1 may override this. When QTEST_LOG=1, we always dump errors
630 * unconditionally, because it means the user would like to be verbose.
634 /* only launch the target process */
636 /* Use dirty ring if true; dirty logging otherwise */
638 const char *opts_source
;
639 const char *opts_target
;
643 * A hook that runs after the src and dst QEMUs have been
644 * created, but before the migration is started. This can
645 * be used to set migration parameters and capabilities.
647 * Returns: NULL, or a pointer to opaque state to be
648 * later passed to the TestMigrateFinishHook
650 typedef void * (*TestMigrateStartHook
)(QTestState
*from
,
654 * A hook that runs after the migration has finished,
655 * regardless of whether it succeeded or failed, but
656 * before QEMU has terminated (unless it self-terminated
657 * due to migration error)
659 * @opaque is a pointer to state previously returned
660 * by the TestMigrateStartHook if any, or NULL.
662 typedef void (*TestMigrateFinishHook
)(QTestState
*from
,
667 /* Optional: fine tune start parameters */
670 /* Required: the URI for the dst QEMU to listen on */
671 const char *listen_uri
;
674 * Optional: the URI for the src QEMU to connect to
675 * If NULL, then it will query the dst QEMU for its actual
676 * listening address and use that as the connect address.
677 * This allows for dynamically picking a free TCP port.
679 const char *connect_uri
;
681 /* Optional: callback to run at start to set migration parameters */
682 TestMigrateStartHook start_hook
;
683 /* Optional: callback to run at finish to cleanup */
684 TestMigrateFinishHook finish_hook
;
687 * Optional: normally we expect the migration process to complete.
689 * There can be a variety of reasons and stages in which failure
690 * can happen during tests.
692 * If a failure is expected to happen at time of establishing
693 * the connection, then MIG_TEST_FAIL will indicate that the dst
694 * QEMU is expected to stay running and accept future migration
697 * If a failure is expected to happen while processing the
698 * migration stream, then MIG_TEST_FAIL_DEST_QUIT_ERR will indicate
699 * that the dst QEMU is expected to quit with non-zero exit status
702 /* This test should succeed, the default */
703 MIG_TEST_SUCCEED
= 0,
704 /* This test should fail, dest qemu should keep alive */
706 /* This test should fail, dest qemu should fail with abnormal status */
707 MIG_TEST_FAIL_DEST_QUIT_ERR
,
708 /* The QMP command for this migration should fail with an error */
713 * Optional: set number of migration passes to wait for, if live==true.
714 * If zero, then merely wait for a few MB of dirty data
716 unsigned int iterations
;
719 * Optional: whether the guest CPUs should be running during a precopy
720 * migration test. We used to always run with live but it took much
721 * longer so we reduced live tests to only the ones that have solid
722 * reason to be tested live-only. For each of the new test cases for
723 * precopy please provide justifications to use live explicitly (please
724 * refer to existing ones with live=true), or use live=off by default.
728 /* Postcopy specific fields */
730 bool postcopy_preempt
;
731 bool postcopy_recovery_test_fail
;
734 static int test_migrate_start(QTestState
**from
, QTestState
**to
,
735 const char *uri
, MigrateStart
*args
)
737 g_autofree gchar
*arch_source
= NULL
;
738 g_autofree gchar
*arch_target
= NULL
;
739 /* options for source and target */
740 g_autofree gchar
*arch_opts
= NULL
;
741 g_autofree gchar
*cmd_source
= NULL
;
742 g_autofree gchar
*cmd_target
= NULL
;
743 const gchar
*ignore_stderr
;
744 g_autofree
char *shmem_opts
= NULL
;
745 g_autofree
char *shmem_path
= NULL
;
746 const char *kvm_opts
= NULL
;
747 const char *arch
= qtest_get_arch();
748 const char *memory_size
;
749 const char *machine_alias
, *machine_opts
= "";
750 g_autofree
char *machine
= NULL
;
752 if (args
->use_shmem
) {
753 if (!g_file_test("/dev/shm", G_FILE_TEST_IS_DIR
)) {
754 g_test_skip("/dev/shm is not supported");
759 got_src_stop
= false;
760 got_dst_resume
= false;
761 if (strcmp(arch
, "i386") == 0 || strcmp(arch
, "x86_64") == 0) {
762 memory_size
= "150M";
764 if (g_str_equal(arch
, "i386")) {
765 machine_alias
= "pc";
767 machine_alias
= "q35";
769 arch_opts
= g_strdup_printf(
770 "-drive if=none,id=d0,file=%s,format=raw "
771 "-device ide-hd,drive=d0,secs=1,cyls=1,heads=1", bootpath
);
772 start_address
= X86_TEST_MEM_START
;
773 end_address
= X86_TEST_MEM_END
;
774 } else if (g_str_equal(arch
, "s390x")) {
775 memory_size
= "128M";
776 machine_alias
= "s390-ccw-virtio";
777 arch_opts
= g_strdup_printf("-bios %s", bootpath
);
778 start_address
= S390_TEST_MEM_START
;
779 end_address
= S390_TEST_MEM_END
;
780 } else if (strcmp(arch
, "ppc64") == 0) {
781 memory_size
= "256M";
782 start_address
= PPC_TEST_MEM_START
;
783 end_address
= PPC_TEST_MEM_END
;
784 arch_source
= g_strdup_printf("-prom-env 'use-nvramrc?=true' -prom-env "
785 "'nvramrc=hex .\" _\" begin %x %x "
786 "do i c@ 1 + i c! 1000 +loop .\" B\" 0 "
787 "until'", end_address
, start_address
);
788 machine_alias
= "pseries";
789 machine_opts
= "vsmt=8";
790 arch_opts
= g_strdup("-nodefaults");
791 } else if (strcmp(arch
, "aarch64") == 0) {
792 memory_size
= "150M";
793 machine_alias
= "virt";
794 machine_opts
= "gic-version=max";
795 arch_opts
= g_strdup_printf("-cpu max -kernel %s", bootpath
);
796 start_address
= ARM_TEST_MEM_START
;
797 end_address
= ARM_TEST_MEM_END
;
799 g_assert_not_reached();
802 if (!getenv("QTEST_LOG") && args
->hide_stderr
) {
804 ignore_stderr
= "2>/dev/null";
807 * On Windows the QEMU executable is created via CreateProcess() and
808 * IO redirection does not work, so don't bother adding IO redirection
809 * to the command line.
817 if (args
->use_shmem
) {
818 shmem_path
= g_strdup_printf("/dev/shm/qemu-%d", getpid());
819 shmem_opts
= g_strdup_printf(
820 "-object memory-backend-file,id=mem0,size=%s"
821 ",mem-path=%s,share=on -numa node,memdev=mem0",
822 memory_size
, shmem_path
);
825 if (args
->use_dirty_ring
) {
826 kvm_opts
= ",dirty-ring-size=4096";
829 machine
= resolve_machine_version(machine_alias
, QEMU_ENV_SRC
,
832 g_test_message("Using machine type: %s", machine
);
834 cmd_source
= g_strdup_printf("-accel kvm%s -accel tcg "
836 "-name source,debug-threads=on "
838 "-serial file:%s/src_serial "
840 kvm_opts
? kvm_opts
: "",
841 machine
, machine_opts
,
843 arch_opts
? arch_opts
: "",
844 arch_source
? arch_source
: "",
845 shmem_opts
? shmem_opts
: "",
846 args
->opts_source
? args
->opts_source
: "",
848 if (!args
->only_target
) {
849 *from
= qtest_init_with_env(QEMU_ENV_SRC
, cmd_source
);
850 qtest_qmp_set_event_callback(*from
,
851 migrate_watch_for_stop
,
855 cmd_target
= g_strdup_printf("-accel kvm%s -accel tcg "
857 "-name target,debug-threads=on "
859 "-serial file:%s/dest_serial "
862 kvm_opts
? kvm_opts
: "",
863 machine
, machine_opts
,
864 memory_size
, tmpfs
, uri
,
865 arch_opts
? arch_opts
: "",
866 arch_target
? arch_target
: "",
867 shmem_opts
? shmem_opts
: "",
868 args
->opts_target
? args
->opts_target
: "",
870 *to
= qtest_init_with_env(QEMU_ENV_DST
, cmd_target
);
871 qtest_qmp_set_event_callback(*to
,
872 migrate_watch_for_resume
,
876 * Remove shmem file immediately to avoid memory leak in test failed case.
877 * It's valid because QEMU has already opened this file
879 if (args
->use_shmem
) {
886 static void test_migrate_end(QTestState
*from
, QTestState
*to
, bool test_dest
)
888 unsigned char dest_byte_a
, dest_byte_b
, dest_byte_c
, dest_byte_d
;
893 qtest_memread(to
, start_address
, &dest_byte_a
, 1);
895 /* Destination still running, wait for a byte to change */
897 qtest_memread(to
, start_address
, &dest_byte_b
, 1);
899 } while (dest_byte_a
== dest_byte_b
);
901 qtest_qmp_assert_success(to
, "{ 'execute' : 'stop'}");
903 /* With it stopped, check nothing changes */
904 qtest_memread(to
, start_address
, &dest_byte_c
, 1);
906 qtest_memread(to
, start_address
, &dest_byte_d
, 1);
907 g_assert_cmpint(dest_byte_c
, ==, dest_byte_d
);
909 check_guests_ram(to
);
914 cleanup("migsocket");
915 cleanup("src_serial");
916 cleanup("dest_serial");
917 cleanup(FILE_TEST_FILENAME
);
921 struct TestMigrateTLSPSKData
{
929 test_migrate_tls_psk_start_common(QTestState
*from
,
933 struct TestMigrateTLSPSKData
*data
=
934 g_new0(struct TestMigrateTLSPSKData
, 1);
936 data
->workdir
= g_strdup_printf("%s/tlscredspsk0", tmpfs
);
937 data
->pskfile
= g_strdup_printf("%s/%s", data
->workdir
,
938 QCRYPTO_TLS_CREDS_PSKFILE
);
939 g_mkdir_with_parents(data
->workdir
, 0700);
940 test_tls_psk_init(data
->pskfile
);
943 data
->workdiralt
= g_strdup_printf("%s/tlscredspskalt0", tmpfs
);
944 data
->pskfilealt
= g_strdup_printf("%s/%s", data
->workdiralt
,
945 QCRYPTO_TLS_CREDS_PSKFILE
);
946 g_mkdir_with_parents(data
->workdiralt
, 0700);
947 test_tls_psk_init_alt(data
->pskfilealt
);
950 qtest_qmp_assert_success(from
,
951 "{ 'execute': 'object-add',"
952 " 'arguments': { 'qom-type': 'tls-creds-psk',"
953 " 'id': 'tlscredspsk0',"
954 " 'endpoint': 'client',"
956 " 'username': 'qemu'} }",
959 qtest_qmp_assert_success(to
,
960 "{ 'execute': 'object-add',"
961 " 'arguments': { 'qom-type': 'tls-creds-psk',"
962 " 'id': 'tlscredspsk0',"
963 " 'endpoint': 'server',"
965 mismatch
? data
->workdiralt
: data
->workdir
);
967 migrate_set_parameter_str(from
, "tls-creds", "tlscredspsk0");
968 migrate_set_parameter_str(to
, "tls-creds", "tlscredspsk0");
974 test_migrate_tls_psk_start_match(QTestState
*from
,
977 return test_migrate_tls_psk_start_common(from
, to
, false);
981 test_migrate_tls_psk_start_mismatch(QTestState
*from
,
984 return test_migrate_tls_psk_start_common(from
, to
, true);
988 test_migrate_tls_psk_finish(QTestState
*from
,
992 struct TestMigrateTLSPSKData
*data
= opaque
;
994 test_tls_psk_cleanup(data
->pskfile
);
995 if (data
->pskfilealt
) {
996 test_tls_psk_cleanup(data
->pskfilealt
);
998 rmdir(data
->workdir
);
999 if (data
->workdiralt
) {
1000 rmdir(data
->workdiralt
);
1003 g_free(data
->workdiralt
);
1004 g_free(data
->pskfilealt
);
1005 g_free(data
->workdir
);
1006 g_free(data
->pskfile
);
1019 } TestMigrateTLSX509Data
;
1026 const char *certhostname
;
1027 const char *certipaddr
;
1028 } TestMigrateTLSX509
;
1031 test_migrate_tls_x509_start_common(QTestState
*from
,
1033 TestMigrateTLSX509
*args
)
1035 TestMigrateTLSX509Data
*data
= g_new0(TestMigrateTLSX509Data
, 1);
1037 data
->workdir
= g_strdup_printf("%s/tlscredsx5090", tmpfs
);
1038 data
->keyfile
= g_strdup_printf("%s/key.pem", data
->workdir
);
1040 data
->cacert
= g_strdup_printf("%s/ca-cert.pem", data
->workdir
);
1041 data
->serverkey
= g_strdup_printf("%s/server-key.pem", data
->workdir
);
1042 data
->servercert
= g_strdup_printf("%s/server-cert.pem", data
->workdir
);
1043 if (args
->clientcert
) {
1044 data
->clientkey
= g_strdup_printf("%s/client-key.pem", data
->workdir
);
1045 data
->clientcert
= g_strdup_printf("%s/client-cert.pem", data
->workdir
);
1048 g_mkdir_with_parents(data
->workdir
, 0700);
1050 test_tls_init(data
->keyfile
);
1052 g_assert(link(data
->keyfile
, data
->serverkey
) == 0);
1054 g_assert(CreateHardLink(data
->serverkey
, data
->keyfile
, NULL
) != 0);
1056 if (args
->clientcert
) {
1058 g_assert(link(data
->keyfile
, data
->clientkey
) == 0);
1060 g_assert(CreateHardLink(data
->clientkey
, data
->keyfile
, NULL
) != 0);
1064 TLS_ROOT_REQ_SIMPLE(cacertreq
, data
->cacert
);
1065 if (args
->clientcert
) {
1066 TLS_CERT_REQ_SIMPLE_CLIENT(servercertreq
, cacertreq
,
1067 args
->hostileclient
?
1068 QCRYPTO_TLS_TEST_CLIENT_HOSTILE_NAME
:
1069 QCRYPTO_TLS_TEST_CLIENT_NAME
,
1073 TLS_CERT_REQ_SIMPLE_SERVER(clientcertreq
, cacertreq
,
1078 qtest_qmp_assert_success(from
,
1079 "{ 'execute': 'object-add',"
1080 " 'arguments': { 'qom-type': 'tls-creds-x509',"
1081 " 'id': 'tlscredsx509client0',"
1082 " 'endpoint': 'client',"
1084 " 'sanity-check': true,"
1085 " 'verify-peer': true} }",
1087 migrate_set_parameter_str(from
, "tls-creds", "tlscredsx509client0");
1088 if (args
->certhostname
) {
1089 migrate_set_parameter_str(from
, "tls-hostname", args
->certhostname
);
1092 qtest_qmp_assert_success(to
,
1093 "{ 'execute': 'object-add',"
1094 " 'arguments': { 'qom-type': 'tls-creds-x509',"
1095 " 'id': 'tlscredsx509server0',"
1096 " 'endpoint': 'server',"
1098 " 'sanity-check': true,"
1099 " 'verify-peer': %i} }",
1100 data
->workdir
, args
->verifyclient
);
1101 migrate_set_parameter_str(to
, "tls-creds", "tlscredsx509server0");
1103 if (args
->authzclient
) {
1104 qtest_qmp_assert_success(to
,
1105 "{ 'execute': 'object-add',"
1106 " 'arguments': { 'qom-type': 'authz-simple',"
1107 " 'id': 'tlsauthz0',"
1108 " 'identity': %s} }",
1109 "CN=" QCRYPTO_TLS_TEST_CLIENT_NAME
);
1110 migrate_set_parameter_str(to
, "tls-authz", "tlsauthz0");
1117 * The normal case: match server's cert hostname against
1118 * whatever host we were telling QEMU to connect to (if any)
1121 test_migrate_tls_x509_start_default_host(QTestState
*from
,
1124 TestMigrateTLSX509 args
= {
1125 .verifyclient
= true,
1127 .certipaddr
= "127.0.0.1"
1129 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1133 * The unusual case: the server's cert is different from
1134 * the address we're telling QEMU to connect to (if any),
1135 * so we must give QEMU an explicit hostname to validate
1138 test_migrate_tls_x509_start_override_host(QTestState
*from
,
1141 TestMigrateTLSX509 args
= {
1142 .verifyclient
= true,
1144 .certhostname
= "qemu.org",
1146 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1150 * The unusual case: the server's cert is different from
1151 * the address we're telling QEMU to connect to, and so we
1152 * expect the client to reject the server
1155 test_migrate_tls_x509_start_mismatch_host(QTestState
*from
,
1158 TestMigrateTLSX509 args
= {
1159 .verifyclient
= true,
1161 .certipaddr
= "10.0.0.1",
1163 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1167 test_migrate_tls_x509_start_friendly_client(QTestState
*from
,
1170 TestMigrateTLSX509 args
= {
1171 .verifyclient
= true,
1173 .authzclient
= true,
1174 .certipaddr
= "127.0.0.1",
1176 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1180 test_migrate_tls_x509_start_hostile_client(QTestState
*from
,
1183 TestMigrateTLSX509 args
= {
1184 .verifyclient
= true,
1186 .hostileclient
= true,
1187 .authzclient
= true,
1188 .certipaddr
= "127.0.0.1",
1190 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1194 * The case with no client certificate presented,
1195 * and no server verification
1198 test_migrate_tls_x509_start_allow_anon_client(QTestState
*from
,
1201 TestMigrateTLSX509 args
= {
1202 .certipaddr
= "127.0.0.1",
1204 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1208 * The case with no client certificate presented,
1209 * and server verification rejecting
1212 test_migrate_tls_x509_start_reject_anon_client(QTestState
*from
,
1215 TestMigrateTLSX509 args
= {
1216 .verifyclient
= true,
1217 .certipaddr
= "127.0.0.1",
1219 return test_migrate_tls_x509_start_common(from
, to
, &args
);
1223 test_migrate_tls_x509_finish(QTestState
*from
,
1227 TestMigrateTLSX509Data
*data
= opaque
;
1229 test_tls_cleanup(data
->keyfile
);
1230 g_free(data
->keyfile
);
1232 unlink(data
->cacert
);
1233 g_free(data
->cacert
);
1234 unlink(data
->servercert
);
1235 g_free(data
->servercert
);
1236 unlink(data
->serverkey
);
1237 g_free(data
->serverkey
);
1239 if (data
->clientcert
) {
1240 unlink(data
->clientcert
);
1241 g_free(data
->clientcert
);
1243 if (data
->clientkey
) {
1244 unlink(data
->clientkey
);
1245 g_free(data
->clientkey
);
1248 rmdir(data
->workdir
);
1249 g_free(data
->workdir
);
1253 #endif /* CONFIG_TASN1 */
1254 #endif /* CONFIG_GNUTLS */
1257 test_migrate_compress_start(QTestState
*from
,
1260 migrate_set_parameter_int(from
, "compress-level", 1);
1261 migrate_set_parameter_int(from
, "compress-threads", 4);
1262 migrate_set_parameter_bool(from
, "compress-wait-thread", true);
1263 migrate_set_parameter_int(to
, "decompress-threads", 4);
1265 migrate_set_capability(from
, "compress", true);
1266 migrate_set_capability(to
, "compress", true);
1272 test_migrate_compress_nowait_start(QTestState
*from
,
1275 migrate_set_parameter_int(from
, "compress-level", 9);
1276 migrate_set_parameter_int(from
, "compress-threads", 1);
1277 migrate_set_parameter_bool(from
, "compress-wait-thread", false);
1278 migrate_set_parameter_int(to
, "decompress-threads", 1);
1280 migrate_set_capability(from
, "compress", true);
1281 migrate_set_capability(to
, "compress", true);
1286 static int migrate_postcopy_prepare(QTestState
**from_ptr
,
1287 QTestState
**to_ptr
,
1288 MigrateCommon
*args
)
1290 QTestState
*from
, *to
;
1292 if (test_migrate_start(&from
, &to
, "defer", &args
->start
)) {
1296 if (args
->start_hook
) {
1297 args
->postcopy_data
= args
->start_hook(from
, to
);
1300 migrate_set_capability(from
, "postcopy-ram", true);
1301 migrate_set_capability(to
, "postcopy-ram", true);
1302 migrate_set_capability(to
, "postcopy-blocktime", true);
1304 if (args
->postcopy_preempt
) {
1305 migrate_set_capability(from
, "postcopy-preempt", true);
1306 migrate_set_capability(to
, "postcopy-preempt", true);
1309 migrate_ensure_non_converge(from
);
1311 migrate_prepare_for_dirty_mem(from
);
1312 qtest_qmp_assert_success(to
, "{ 'execute': 'migrate-incoming',"
1314 " 'channels': [ { 'channel-type': 'main',"
1315 " 'addr': { 'transport': 'socket',"
1317 " 'host': '127.0.0.1',"
1318 " 'port': '0' } } ] } }");
1320 /* Wait for the first serial output from the source */
1321 wait_for_serial("src_serial");
1323 g_autofree
char *uri
= migrate_get_socket_address(to
, "socket-address");
1324 migrate_qmp(from
, uri
, "{}");
1326 migrate_wait_for_dirty_mem(from
, to
);
1334 static void migrate_postcopy_complete(QTestState
*from
, QTestState
*to
,
1335 MigrateCommon
*args
)
1337 wait_for_migration_complete(from
);
1339 /* Make sure we get at least one "B" on destination */
1340 wait_for_serial("dest_serial");
1342 if (uffd_feature_thread_id
) {
1346 if (args
->finish_hook
) {
1347 args
->finish_hook(from
, to
, args
->postcopy_data
);
1348 args
->postcopy_data
= NULL
;
1351 test_migrate_end(from
, to
, true);
1354 static void test_postcopy_common(MigrateCommon
*args
)
1356 QTestState
*from
, *to
;
1358 if (migrate_postcopy_prepare(&from
, &to
, args
)) {
1361 migrate_postcopy_start(from
, to
);
1362 migrate_postcopy_complete(from
, to
, args
);
1365 static void test_postcopy(void)
1367 MigrateCommon args
= { };
1369 test_postcopy_common(&args
);
1372 static void test_postcopy_compress(void)
1374 MigrateCommon args
= {
1375 .start_hook
= test_migrate_compress_start
1378 test_postcopy_common(&args
);
1381 static void test_postcopy_preempt(void)
1383 MigrateCommon args
= {
1384 .postcopy_preempt
= true,
1387 test_postcopy_common(&args
);
1390 #ifdef CONFIG_GNUTLS
1391 static void test_postcopy_tls_psk(void)
1393 MigrateCommon args
= {
1394 .start_hook
= test_migrate_tls_psk_start_match
,
1395 .finish_hook
= test_migrate_tls_psk_finish
,
1398 test_postcopy_common(&args
);
1401 static void test_postcopy_preempt_tls_psk(void)
1403 MigrateCommon args
= {
1404 .postcopy_preempt
= true,
1405 .start_hook
= test_migrate_tls_psk_start_match
,
1406 .finish_hook
= test_migrate_tls_psk_finish
,
1409 test_postcopy_common(&args
);
1413 static void wait_for_postcopy_status(QTestState
*one
, const char *status
)
1415 wait_for_migration_status(one
, status
,
1416 (const char * []) { "failed", "active",
1417 "completed", NULL
});
1421 static void postcopy_recover_fail(QTestState
*from
, QTestState
*to
)
1423 int ret
, pair1
[2], pair2
[2];
1426 /* Create two unrelated socketpairs */
1427 ret
= qemu_socketpair(PF_LOCAL
, SOCK_STREAM
, 0, pair1
);
1428 g_assert_cmpint(ret
, ==, 0);
1430 ret
= qemu_socketpair(PF_LOCAL
, SOCK_STREAM
, 0, pair2
);
1431 g_assert_cmpint(ret
, ==, 0);
1434 * Give the guests unpaired ends of the sockets, so they'll all blocked
1435 * at reading. This mimics a wrong channel established.
1437 qtest_qmp_fds_assert_success(from
, &pair1
[0], 1,
1438 "{ 'execute': 'getfd',"
1439 " 'arguments': { 'fdname': 'fd-mig' }}");
1440 qtest_qmp_fds_assert_success(to
, &pair2
[0], 1,
1441 "{ 'execute': 'getfd',"
1442 " 'arguments': { 'fdname': 'fd-mig' }}");
1445 * Write the 1st byte as QEMU_VM_COMMAND (0x8) for the dest socket, to
1446 * emulate the 1st byte of a real recovery, but stops from there to
1447 * keep dest QEMU in RECOVER. This is needed so that we can kick off
1448 * the recover process on dest QEMU (by triggering the G_IO_IN event).
1450 * NOTE: this trick is not needed on src QEMUs, because src doesn't
1451 * rely on an pre-existing G_IO_IN event, so it will always trigger the
1452 * upcoming recovery anyway even if it can read nothing.
1454 #define QEMU_VM_COMMAND 0x08
1455 c
= QEMU_VM_COMMAND
;
1456 ret
= send(pair2
[1], &c
, 1, 0);
1457 g_assert_cmpint(ret
, ==, 1);
1459 migrate_recover(to
, "fd:fd-mig");
1460 migrate_qmp(from
, "fd:fd-mig", "{'resume': true}");
1463 * Make sure both QEMU instances will go into RECOVER stage, then test
1464 * kicking them out using migrate-pause.
1466 wait_for_postcopy_status(from
, "postcopy-recover");
1467 wait_for_postcopy_status(to
, "postcopy-recover");
1470 * This would be issued by the admin upon noticing the hang, we should
1471 * make sure we're able to kick this out.
1473 migrate_pause(from
);
1474 wait_for_postcopy_status(from
, "postcopy-paused");
1476 /* Do the same test on dest */
1478 wait_for_postcopy_status(to
, "postcopy-paused");
1487 static void test_postcopy_recovery_common(MigrateCommon
*args
)
1489 QTestState
*from
, *to
;
1490 g_autofree
char *uri
= NULL
;
1492 /* Always hide errors for postcopy recover tests since they're expected */
1493 args
->start
.hide_stderr
= true;
1495 if (migrate_postcopy_prepare(&from
, &to
, args
)) {
1499 /* Turn postcopy speed down, 4K/s is slow enough on any machines */
1500 migrate_set_parameter_int(from
, "max-postcopy-bandwidth", 4096);
1502 /* Now we start the postcopy */
1503 migrate_postcopy_start(from
, to
);
1506 * Wait until postcopy is really started; we can only run the
1507 * migrate-pause command during a postcopy
1509 wait_for_migration_status(from
, "postcopy-active", NULL
);
1512 * Manually stop the postcopy migration. This emulates a network
1513 * failure with the migration socket
1515 migrate_pause(from
);
1518 * Wait for destination side to reach postcopy-paused state. The
1519 * migrate-recover command can only succeed if destination machine
1520 * is in the paused state
1522 wait_for_postcopy_status(to
, "postcopy-paused");
1523 wait_for_postcopy_status(from
, "postcopy-paused");
1526 if (args
->postcopy_recovery_test_fail
) {
1528 * Test when a wrong socket specified for recover, and then the
1529 * ability to kick it out, and continue with a correct socket.
1531 postcopy_recover_fail(from
, to
);
1532 /* continue with a good recovery */
1537 * Create a new socket to emulate a new channel that is different
1538 * from the broken migration channel; tell the destination to
1539 * listen to the new port
1541 uri
= g_strdup_printf("unix:%s/migsocket-recover", tmpfs
);
1542 migrate_recover(to
, uri
);
1545 * Try to rebuild the migration channel using the resume flag and
1546 * the newly created channel
1548 migrate_qmp(from
, uri
, "{'resume': true}");
1550 /* Restore the postcopy bandwidth to unlimited */
1551 migrate_set_parameter_int(from
, "max-postcopy-bandwidth", 0);
1553 migrate_postcopy_complete(from
, to
, args
);
1556 static void test_postcopy_recovery(void)
1558 MigrateCommon args
= { };
1560 test_postcopy_recovery_common(&args
);
1563 static void test_postcopy_recovery_compress(void)
1565 MigrateCommon args
= {
1566 .start_hook
= test_migrate_compress_start
1569 test_postcopy_recovery_common(&args
);
1573 static void test_postcopy_recovery_double_fail(void)
1575 MigrateCommon args
= {
1576 .postcopy_recovery_test_fail
= true,
1579 test_postcopy_recovery_common(&args
);
1583 #ifdef CONFIG_GNUTLS
1584 static void test_postcopy_recovery_tls_psk(void)
1586 MigrateCommon args
= {
1587 .start_hook
= test_migrate_tls_psk_start_match
,
1588 .finish_hook
= test_migrate_tls_psk_finish
,
1591 test_postcopy_recovery_common(&args
);
1595 static void test_postcopy_preempt_recovery(void)
1597 MigrateCommon args
= {
1598 .postcopy_preempt
= true,
1601 test_postcopy_recovery_common(&args
);
1604 #ifdef CONFIG_GNUTLS
1605 /* This contains preempt+recovery+tls test altogether */
1606 static void test_postcopy_preempt_all(void)
1608 MigrateCommon args
= {
1609 .postcopy_preempt
= true,
1610 .start_hook
= test_migrate_tls_psk_start_match
,
1611 .finish_hook
= test_migrate_tls_psk_finish
,
1614 test_postcopy_recovery_common(&args
);
1619 static void test_baddest(void)
1621 MigrateStart args
= {
1624 QTestState
*from
, *to
;
1626 if (test_migrate_start(&from
, &to
, "tcp:127.0.0.1:0", &args
)) {
1629 migrate_qmp(from
, "tcp:127.0.0.1:0", "{}");
1630 wait_for_migration_fail(from
, false);
1631 test_migrate_end(from
, to
, false);
1635 static void test_analyze_script(void)
1637 MigrateStart args
= {
1638 .opts_source
= "-uuid 11111111-1111-1111-1111-111111111111",
1640 QTestState
*from
, *to
;
1641 g_autofree
char *uri
= NULL
;
1642 g_autofree
char *file
= NULL
;
1644 const char *python
= g_getenv("PYTHON");
1647 g_test_skip("PYTHON variable not set");
1652 if (test_migrate_start(&from
, &to
, "tcp:127.0.0.1:0", &args
)) {
1657 * Setting these two capabilities causes the "configuration"
1658 * vmstate to include subsections for them. The script needs to
1659 * parse those subsections properly.
1661 migrate_set_capability(from
, "validate-uuid", true);
1662 migrate_set_capability(from
, "x-ignore-shared", true);
1664 file
= g_strdup_printf("%s/migfile", tmpfs
);
1665 uri
= g_strdup_printf("exec:cat > %s", file
);
1667 migrate_ensure_converge(from
);
1668 migrate_qmp(from
, uri
, "{}");
1669 wait_for_migration_complete(from
);
1674 open("/dev/null", O_WRONLY
);
1675 execl(python
, python
, ANALYZE_SCRIPT
, "-f", file
, NULL
);
1676 g_assert_not_reached();
1679 g_assert(waitpid(pid
, &wstatus
, 0) == pid
);
1680 if (WIFEXITED(wstatus
) && WEXITSTATUS(wstatus
) != 0) {
1681 g_test_message("Failed to analyze the migration stream");
1684 test_migrate_end(from
, to
, false);
1689 static void test_precopy_common(MigrateCommon
*args
)
1691 QTestState
*from
, *to
;
1692 void *data_hook
= NULL
;
1693 g_autofree
char *connect_uri
= NULL
;
1695 if (test_migrate_start(&from
, &to
, args
->listen_uri
, &args
->start
)) {
1699 if (args
->start_hook
) {
1700 data_hook
= args
->start_hook(from
, to
);
1703 /* Wait for the first serial output from the source */
1704 if (args
->result
== MIG_TEST_SUCCEED
) {
1705 wait_for_serial("src_serial");
1709 migrate_ensure_non_converge(from
);
1710 migrate_prepare_for_dirty_mem(from
);
1713 * Testing non-live migration, we allow it to run at
1714 * full speed to ensure short test case duration.
1715 * For tests expected to fail, we don't need to
1718 if (args
->result
== MIG_TEST_SUCCEED
) {
1719 qtest_qmp_assert_success(from
, "{ 'execute' : 'stop'}");
1720 if (!got_src_stop
) {
1721 qtest_qmp_eventwait(from
, "STOP");
1723 migrate_ensure_converge(from
);
1727 if (!args
->connect_uri
) {
1728 connect_uri
= migrate_get_socket_address(to
, "socket-address");
1730 connect_uri
= g_strdup(args
->connect_uri
);
1733 if (args
->result
== MIG_TEST_QMP_ERROR
) {
1734 migrate_qmp_fail(from
, connect_uri
, "{}");
1738 migrate_qmp(from
, connect_uri
, "{}");
1740 if (args
->result
!= MIG_TEST_SUCCEED
) {
1741 bool allow_active
= args
->result
== MIG_TEST_FAIL
;
1742 wait_for_migration_fail(from
, allow_active
);
1744 if (args
->result
== MIG_TEST_FAIL_DEST_QUIT_ERR
) {
1745 qtest_set_expected_status(to
, EXIT_FAILURE
);
1750 * For initial iteration(s) we must do a full pass,
1751 * but for the final iteration, we need only wait
1752 * for some dirty mem before switching to converge
1754 while (args
->iterations
> 1) {
1755 wait_for_migration_pass(from
);
1758 migrate_wait_for_dirty_mem(from
, to
);
1760 migrate_ensure_converge(from
);
1763 * We do this first, as it has a timeout to stop us
1764 * hanging forever if migration didn't converge
1766 wait_for_migration_complete(from
);
1768 if (!got_src_stop
) {
1769 qtest_qmp_eventwait(from
, "STOP");
1772 wait_for_migration_complete(from
);
1774 * Must wait for dst to finish reading all incoming
1775 * data on the socket before issuing 'cont' otherwise
1778 wait_for_migration_complete(to
);
1780 qtest_qmp_assert_success(to
, "{ 'execute' : 'cont'}");
1783 if (!got_dst_resume
) {
1784 qtest_qmp_eventwait(to
, "RESUME");
1787 wait_for_serial("dest_serial");
1791 if (args
->finish_hook
) {
1792 args
->finish_hook(from
, to
, data_hook
);
1795 test_migrate_end(from
, to
, args
->result
== MIG_TEST_SUCCEED
);
1798 static void test_file_common(MigrateCommon
*args
, bool stop_src
)
1800 QTestState
*from
, *to
;
1801 void *data_hook
= NULL
;
1802 g_autofree
char *connect_uri
= g_strdup(args
->connect_uri
);
1804 if (test_migrate_start(&from
, &to
, args
->listen_uri
, &args
->start
)) {
1809 * File migration is never live. We can keep the source VM running
1810 * during migration, but the destination will not be running
1813 g_assert_false(args
->live
);
1815 if (args
->start_hook
) {
1816 data_hook
= args
->start_hook(from
, to
);
1819 migrate_ensure_converge(from
);
1820 wait_for_serial("src_serial");
1823 qtest_qmp_assert_success(from
, "{ 'execute' : 'stop'}");
1824 if (!got_src_stop
) {
1825 qtest_qmp_eventwait(from
, "STOP");
1829 if (args
->result
== MIG_TEST_QMP_ERROR
) {
1830 migrate_qmp_fail(from
, connect_uri
, "{}");
1834 migrate_qmp(from
, connect_uri
, "{}");
1835 wait_for_migration_complete(from
);
1838 * We need to wait for the source to finish before starting the
1841 migrate_incoming_qmp(to
, connect_uri
, "{}");
1842 wait_for_migration_complete(to
);
1845 qtest_qmp_assert_success(to
, "{ 'execute' : 'cont'}");
1848 if (!got_dst_resume
) {
1849 qtest_qmp_eventwait(to
, "RESUME");
1852 wait_for_serial("dest_serial");
1855 if (args
->finish_hook
) {
1856 args
->finish_hook(from
, to
, data_hook
);
1859 test_migrate_end(from
, to
, args
->result
== MIG_TEST_SUCCEED
);
1862 static void test_precopy_unix_plain(void)
1864 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1865 MigrateCommon args
= {
1869 * The simplest use case of precopy, covering smoke tests of
1870 * get-dirty-log dirty tracking.
1875 test_precopy_common(&args
);
1879 static void test_precopy_unix_dirty_ring(void)
1881 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1882 MigrateCommon args
= {
1884 .use_dirty_ring
= true,
1889 * Besides the precopy/unix basic test, cover dirty ring interface
1890 * rather than get-dirty-log.
1895 test_precopy_common(&args
);
1898 #ifdef CONFIG_GNUTLS
1899 static void test_precopy_unix_tls_psk(void)
1901 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1902 MigrateCommon args
= {
1905 .start_hook
= test_migrate_tls_psk_start_match
,
1906 .finish_hook
= test_migrate_tls_psk_finish
,
1909 test_precopy_common(&args
);
1913 static void test_precopy_unix_tls_x509_default_host(void)
1915 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1916 MigrateCommon args
= {
1918 .hide_stderr
= true,
1922 .start_hook
= test_migrate_tls_x509_start_default_host
,
1923 .finish_hook
= test_migrate_tls_x509_finish
,
1924 .result
= MIG_TEST_FAIL_DEST_QUIT_ERR
,
1927 test_precopy_common(&args
);
1930 static void test_precopy_unix_tls_x509_override_host(void)
1932 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1933 MigrateCommon args
= {
1936 .start_hook
= test_migrate_tls_x509_start_override_host
,
1937 .finish_hook
= test_migrate_tls_x509_finish
,
1940 test_precopy_common(&args
);
1942 #endif /* CONFIG_TASN1 */
1943 #endif /* CONFIG_GNUTLS */
1946 /* Currently upset on aarch64 TCG */
1947 static void test_ignore_shared(void)
1949 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
1950 QTestState
*from
, *to
;
1952 if (test_migrate_start(&from
, &to
, uri
, false, true, NULL
, NULL
)) {
1956 migrate_ensure_non_converge(from
);
1957 migrate_prepare_for_dirty_mem(from
);
1959 migrate_set_capability(from
, "x-ignore-shared", true);
1960 migrate_set_capability(to
, "x-ignore-shared", true);
1962 /* Wait for the first serial output from the source */
1963 wait_for_serial("src_serial");
1965 migrate_qmp(from
, uri
, "{}");
1967 migrate_wait_for_dirty_mem(from
, to
);
1969 if (!got_src_stop
) {
1970 qtest_qmp_eventwait(from
, "STOP");
1973 qtest_qmp_eventwait(to
, "RESUME");
1975 wait_for_serial("dest_serial");
1976 wait_for_migration_complete(from
);
1978 /* Check whether shared RAM has been really skipped */
1979 g_assert_cmpint(read_ram_property_int(from
, "transferred"), <, 1024 * 1024);
1981 test_migrate_end(from
, to
, true);
1986 test_migrate_xbzrle_start(QTestState
*from
,
1989 migrate_set_parameter_int(from
, "xbzrle-cache-size", 33554432);
1991 migrate_set_capability(from
, "xbzrle", true);
1992 migrate_set_capability(to
, "xbzrle", true);
1997 static void test_precopy_unix_xbzrle(void)
1999 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
2000 MigrateCommon args
= {
2003 .start_hook
= test_migrate_xbzrle_start
,
2006 * XBZRLE needs pages to be modified when doing the 2nd+ round
2007 * iteration to have real data pushed to the stream.
2012 test_precopy_common(&args
);
2015 static void test_precopy_unix_compress(void)
2017 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
2018 MigrateCommon args
= {
2021 .start_hook
= test_migrate_compress_start
,
2023 * Test that no invalid thread state is left over from
2024 * the previous iteration.
2028 * We make sure the compressor can always work well even if guest
2029 * memory is changing. See commit 34ab9e9743 where we used to fix
2030 * a bug when only trigger-able with guest memory changing.
2035 test_precopy_common(&args
);
2038 static void test_precopy_unix_compress_nowait(void)
2040 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
2041 MigrateCommon args
= {
2044 .start_hook
= test_migrate_compress_nowait_start
,
2046 * Test that no invalid thread state is left over from
2047 * the previous iteration.
2050 /* Same reason for the wait version of precopy compress test */
2054 test_precopy_common(&args
);
2057 static void test_precopy_file(void)
2059 g_autofree
char *uri
= g_strdup_printf("file:%s/%s", tmpfs
,
2060 FILE_TEST_FILENAME
);
2061 MigrateCommon args
= {
2063 .listen_uri
= "defer",
2066 test_file_common(&args
, true);
2069 static void file_offset_finish_hook(QTestState
*from
, QTestState
*to
,
2072 #if defined(__linux__)
2073 g_autofree
char *path
= g_strdup_printf("%s/%s", tmpfs
, FILE_TEST_FILENAME
);
2074 size_t size
= FILE_TEST_OFFSET
+ sizeof(QEMU_VM_FILE_MAGIC
);
2075 uintptr_t *addr
, *p
;
2078 fd
= open(path
, O_RDONLY
);
2080 addr
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0);
2081 g_assert(addr
!= MAP_FAILED
);
2084 * Ensure the skipped offset contains zeros and the migration
2085 * stream starts at the right place.
2088 while (p
< addr
+ FILE_TEST_OFFSET
/ sizeof(uintptr_t)) {
2092 g_assert_cmpint(cpu_to_be64(*p
) >> 32, ==, QEMU_VM_FILE_MAGIC
);
2099 static void test_precopy_file_offset(void)
2101 g_autofree
char *uri
= g_strdup_printf("file:%s/%s,offset=%d", tmpfs
,
2104 MigrateCommon args
= {
2106 .listen_uri
= "defer",
2107 .finish_hook
= file_offset_finish_hook
,
2110 test_file_common(&args
, false);
2113 static void test_precopy_file_offset_bad(void)
2115 /* using a value not supported by qemu_strtosz() */
2116 g_autofree
char *uri
= g_strdup_printf("file:%s/%s,offset=0x20M",
2117 tmpfs
, FILE_TEST_FILENAME
);
2118 MigrateCommon args
= {
2120 .listen_uri
= "defer",
2121 .result
= MIG_TEST_QMP_ERROR
,
2124 test_file_common(&args
, false);
2127 static void *test_mode_reboot_start(QTestState
*from
, QTestState
*to
)
2129 migrate_set_parameter_str(from
, "mode", "cpr-reboot");
2130 migrate_set_parameter_str(to
, "mode", "cpr-reboot");
2132 migrate_set_capability(from
, "x-ignore-shared", true);
2133 migrate_set_capability(to
, "x-ignore-shared", true);
2138 static void test_mode_reboot(void)
2140 g_autofree
char *uri
= g_strdup_printf("file:%s/%s", tmpfs
,
2141 FILE_TEST_FILENAME
);
2142 MigrateCommon args
= {
2143 .start
.use_shmem
= true,
2145 .listen_uri
= "defer",
2146 .start_hook
= test_mode_reboot_start
2149 test_file_common(&args
, true);
2152 static void test_precopy_tcp_plain(void)
2154 MigrateCommon args
= {
2155 .listen_uri
= "tcp:127.0.0.1:0",
2158 test_precopy_common(&args
);
2161 static void *test_migrate_switchover_ack_start(QTestState
*from
, QTestState
*to
)
2164 migrate_set_capability(from
, "return-path", true);
2165 migrate_set_capability(to
, "return-path", true);
2167 migrate_set_capability(from
, "switchover-ack", true);
2168 migrate_set_capability(to
, "switchover-ack", true);
2173 static void test_precopy_tcp_switchover_ack(void)
2175 MigrateCommon args
= {
2176 .listen_uri
= "tcp:127.0.0.1:0",
2177 .start_hook
= test_migrate_switchover_ack_start
,
2179 * Source VM must be running in order to consider the switchover ACK
2180 * when deciding to do switchover or not.
2185 test_precopy_common(&args
);
2188 #ifdef CONFIG_GNUTLS
2189 static void test_precopy_tcp_tls_psk_match(void)
2191 MigrateCommon args
= {
2192 .listen_uri
= "tcp:127.0.0.1:0",
2193 .start_hook
= test_migrate_tls_psk_start_match
,
2194 .finish_hook
= test_migrate_tls_psk_finish
,
2197 test_precopy_common(&args
);
2200 static void test_precopy_tcp_tls_psk_mismatch(void)
2202 MigrateCommon args
= {
2204 .hide_stderr
= true,
2206 .listen_uri
= "tcp:127.0.0.1:0",
2207 .start_hook
= test_migrate_tls_psk_start_mismatch
,
2208 .finish_hook
= test_migrate_tls_psk_finish
,
2209 .result
= MIG_TEST_FAIL
,
2212 test_precopy_common(&args
);
2216 static void test_precopy_tcp_tls_x509_default_host(void)
2218 MigrateCommon args
= {
2219 .listen_uri
= "tcp:127.0.0.1:0",
2220 .start_hook
= test_migrate_tls_x509_start_default_host
,
2221 .finish_hook
= test_migrate_tls_x509_finish
,
2224 test_precopy_common(&args
);
2227 static void test_precopy_tcp_tls_x509_override_host(void)
2229 MigrateCommon args
= {
2230 .listen_uri
= "tcp:127.0.0.1:0",
2231 .start_hook
= test_migrate_tls_x509_start_override_host
,
2232 .finish_hook
= test_migrate_tls_x509_finish
,
2235 test_precopy_common(&args
);
2238 static void test_precopy_tcp_tls_x509_mismatch_host(void)
2240 MigrateCommon args
= {
2242 .hide_stderr
= true,
2244 .listen_uri
= "tcp:127.0.0.1:0",
2245 .start_hook
= test_migrate_tls_x509_start_mismatch_host
,
2246 .finish_hook
= test_migrate_tls_x509_finish
,
2247 .result
= MIG_TEST_FAIL_DEST_QUIT_ERR
,
2250 test_precopy_common(&args
);
2253 static void test_precopy_tcp_tls_x509_friendly_client(void)
2255 MigrateCommon args
= {
2256 .listen_uri
= "tcp:127.0.0.1:0",
2257 .start_hook
= test_migrate_tls_x509_start_friendly_client
,
2258 .finish_hook
= test_migrate_tls_x509_finish
,
2261 test_precopy_common(&args
);
2264 static void test_precopy_tcp_tls_x509_hostile_client(void)
2266 MigrateCommon args
= {
2268 .hide_stderr
= true,
2270 .listen_uri
= "tcp:127.0.0.1:0",
2271 .start_hook
= test_migrate_tls_x509_start_hostile_client
,
2272 .finish_hook
= test_migrate_tls_x509_finish
,
2273 .result
= MIG_TEST_FAIL
,
2276 test_precopy_common(&args
);
2279 static void test_precopy_tcp_tls_x509_allow_anon_client(void)
2281 MigrateCommon args
= {
2282 .listen_uri
= "tcp:127.0.0.1:0",
2283 .start_hook
= test_migrate_tls_x509_start_allow_anon_client
,
2284 .finish_hook
= test_migrate_tls_x509_finish
,
2287 test_precopy_common(&args
);
2290 static void test_precopy_tcp_tls_x509_reject_anon_client(void)
2292 MigrateCommon args
= {
2294 .hide_stderr
= true,
2296 .listen_uri
= "tcp:127.0.0.1:0",
2297 .start_hook
= test_migrate_tls_x509_start_reject_anon_client
,
2298 .finish_hook
= test_migrate_tls_x509_finish
,
2299 .result
= MIG_TEST_FAIL
,
2302 test_precopy_common(&args
);
2304 #endif /* CONFIG_TASN1 */
2305 #endif /* CONFIG_GNUTLS */
2308 static void *test_migrate_fd_start_hook(QTestState
*from
,
2314 /* Create two connected sockets for migration */
2315 ret
= qemu_socketpair(PF_LOCAL
, SOCK_STREAM
, 0, pair
);
2316 g_assert_cmpint(ret
, ==, 0);
2318 /* Send the 1st socket to the target */
2319 qtest_qmp_fds_assert_success(to
, &pair
[0], 1,
2320 "{ 'execute': 'getfd',"
2321 " 'arguments': { 'fdname': 'fd-mig' }}");
2324 /* Start incoming migration from the 1st socket */
2325 migrate_incoming_qmp(to
, "fd:fd-mig", "{}");
2327 /* Send the 2nd socket to the target */
2328 qtest_qmp_fds_assert_success(from
, &pair
[1], 1,
2329 "{ 'execute': 'getfd',"
2330 " 'arguments': { 'fdname': 'fd-mig' }}");
2336 static void test_migrate_fd_finish_hook(QTestState
*from
,
2341 const char *error_desc
;
2343 /* Test closing fds */
2344 /* We assume, that QEMU removes named fd from its list,
2345 * so this should fail */
2346 rsp
= qtest_qmp(from
, "{ 'execute': 'closefd',"
2347 " 'arguments': { 'fdname': 'fd-mig' }}");
2348 g_assert_true(qdict_haskey(rsp
, "error"));
2349 error_desc
= qdict_get_str(qdict_get_qdict(rsp
, "error"), "desc");
2350 g_assert_cmpstr(error_desc
, ==, "File descriptor named 'fd-mig' not found");
2353 rsp
= qtest_qmp(to
, "{ 'execute': 'closefd',"
2354 " 'arguments': { 'fdname': 'fd-mig' }}");
2355 g_assert_true(qdict_haskey(rsp
, "error"));
2356 error_desc
= qdict_get_str(qdict_get_qdict(rsp
, "error"), "desc");
2357 g_assert_cmpstr(error_desc
, ==, "File descriptor named 'fd-mig' not found");
2361 static void test_migrate_fd_proto(void)
2363 MigrateCommon args
= {
2364 .listen_uri
= "defer",
2365 .connect_uri
= "fd:fd-mig",
2366 .start_hook
= test_migrate_fd_start_hook
,
2367 .finish_hook
= test_migrate_fd_finish_hook
2369 test_precopy_common(&args
);
2373 static void do_test_validate_uuid(MigrateStart
*args
, bool should_fail
)
2375 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
2376 QTestState
*from
, *to
;
2378 if (test_migrate_start(&from
, &to
, uri
, args
)) {
2383 * UUID validation is at the begin of migration. So, the main process of
2384 * migration is not interesting for us here. Thus, set huge downtime for
2385 * very fast migration.
2387 migrate_set_parameter_int(from
, "downtime-limit", 1000000);
2388 migrate_set_capability(from
, "validate-uuid", true);
2390 /* Wait for the first serial output from the source */
2391 wait_for_serial("src_serial");
2393 migrate_qmp(from
, uri
, "{}");
2396 qtest_set_expected_status(to
, EXIT_FAILURE
);
2397 wait_for_migration_fail(from
, true);
2399 wait_for_migration_complete(from
);
2402 test_migrate_end(from
, to
, false);
2405 static void test_validate_uuid(void)
2407 MigrateStart args
= {
2408 .opts_source
= "-uuid 11111111-1111-1111-1111-111111111111",
2409 .opts_target
= "-uuid 11111111-1111-1111-1111-111111111111",
2412 do_test_validate_uuid(&args
, false);
2415 static void test_validate_uuid_error(void)
2417 MigrateStart args
= {
2418 .opts_source
= "-uuid 11111111-1111-1111-1111-111111111111",
2419 .opts_target
= "-uuid 22222222-2222-2222-2222-222222222222",
2420 .hide_stderr
= true,
2423 do_test_validate_uuid(&args
, true);
2426 static void test_validate_uuid_src_not_set(void)
2428 MigrateStart args
= {
2429 .opts_target
= "-uuid 22222222-2222-2222-2222-222222222222",
2430 .hide_stderr
= true,
2433 do_test_validate_uuid(&args
, false);
2436 static void test_validate_uuid_dst_not_set(void)
2438 MigrateStart args
= {
2439 .opts_source
= "-uuid 11111111-1111-1111-1111-111111111111",
2440 .hide_stderr
= true,
2443 do_test_validate_uuid(&args
, false);
2447 * The way auto_converge works, we need to do too many passes to
2448 * run this test. Auto_converge logic is only run once every
2449 * three iterations, so:
2451 * - 3 iterations without auto_converge enabled
2452 * - 3 iterations with pct = 5
2453 * - 3 iterations with pct = 30
2454 * - 3 iterations with pct = 55
2455 * - 3 iterations with pct = 80
2456 * - 3 iterations with pct = 95 (max(95, 80 + 25))
2458 * To make things even worse, we need to run the initial stage at
2459 * 3MB/s so we enter autoconverge even when host is (over)loaded.
2461 static void test_migrate_auto_converge(void)
2463 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
2464 MigrateStart args
= {};
2465 QTestState
*from
, *to
;
2469 * We want the test to be stable and as fast as possible.
2470 * E.g., with 1Gb/s bandwidth migration may pass without throttling,
2471 * so we need to decrease a bandwidth.
2473 const int64_t init_pct
= 5, inc_pct
= 25, max_pct
= 95;
2475 if (test_migrate_start(&from
, &to
, uri
, &args
)) {
2479 migrate_set_capability(from
, "auto-converge", true);
2480 migrate_set_parameter_int(from
, "cpu-throttle-initial", init_pct
);
2481 migrate_set_parameter_int(from
, "cpu-throttle-increment", inc_pct
);
2482 migrate_set_parameter_int(from
, "max-cpu-throttle", max_pct
);
2485 * Set the initial parameters so that the migration could not converge
2486 * without throttling.
2488 migrate_ensure_non_converge(from
);
2490 /* To check remaining size after precopy */
2491 migrate_set_capability(from
, "pause-before-switchover", true);
2493 /* Wait for the first serial output from the source */
2494 wait_for_serial("src_serial");
2496 migrate_qmp(from
, uri
, "{}");
2498 /* Wait for throttling begins */
2501 percentage
= read_migrate_property_int(from
, "cpu-throttle-percentage");
2502 if (percentage
!= 0) {
2506 g_assert_false(got_src_stop
);
2508 /* The first percentage of throttling should be at least init_pct */
2509 g_assert_cmpint(percentage
, >=, init_pct
);
2510 /* Now, when we tested that throttling works, let it converge */
2511 migrate_ensure_converge(from
);
2514 * Wait for pre-switchover status to check last throttle percentage
2515 * and remaining. These values will be zeroed later
2517 wait_for_migration_status(from
, "pre-switchover", NULL
);
2519 /* The final percentage of throttling shouldn't be greater than max_pct */
2520 percentage
= read_migrate_property_int(from
, "cpu-throttle-percentage");
2521 g_assert_cmpint(percentage
, <=, max_pct
);
2522 migrate_continue(from
, "pre-switchover");
2524 qtest_qmp_eventwait(to
, "RESUME");
2526 wait_for_serial("dest_serial");
2527 wait_for_migration_complete(from
);
2529 test_migrate_end(from
, to
, true);
2533 test_migrate_precopy_tcp_multifd_start_common(QTestState
*from
,
2537 migrate_set_parameter_int(from
, "multifd-channels", 16);
2538 migrate_set_parameter_int(to
, "multifd-channels", 16);
2540 migrate_set_parameter_str(from
, "multifd-compression", method
);
2541 migrate_set_parameter_str(to
, "multifd-compression", method
);
2543 migrate_set_capability(from
, "multifd", true);
2544 migrate_set_capability(to
, "multifd", true);
2546 /* Start incoming migration from the 1st socket */
2547 migrate_incoming_qmp(to
, "tcp:127.0.0.1:0", "{}");
2553 test_migrate_precopy_tcp_multifd_start(QTestState
*from
,
2556 return test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2560 test_migrate_precopy_tcp_multifd_zlib_start(QTestState
*from
,
2563 return test_migrate_precopy_tcp_multifd_start_common(from
, to
, "zlib");
2568 test_migrate_precopy_tcp_multifd_zstd_start(QTestState
*from
,
2571 return test_migrate_precopy_tcp_multifd_start_common(from
, to
, "zstd");
2573 #endif /* CONFIG_ZSTD */
2575 static void test_multifd_tcp_none(void)
2577 MigrateCommon args
= {
2578 .listen_uri
= "defer",
2579 .start_hook
= test_migrate_precopy_tcp_multifd_start
,
2581 * Multifd is more complicated than most of the features, it
2582 * directly takes guest page buffers when sending, make sure
2583 * everything will work alright even if guest page is changing.
2587 test_precopy_common(&args
);
2590 static void test_multifd_tcp_zlib(void)
2592 MigrateCommon args
= {
2593 .listen_uri
= "defer",
2594 .start_hook
= test_migrate_precopy_tcp_multifd_zlib_start
,
2596 test_precopy_common(&args
);
2600 static void test_multifd_tcp_zstd(void)
2602 MigrateCommon args
= {
2603 .listen_uri
= "defer",
2604 .start_hook
= test_migrate_precopy_tcp_multifd_zstd_start
,
2606 test_precopy_common(&args
);
2610 #ifdef CONFIG_GNUTLS
2612 test_migrate_multifd_tcp_tls_psk_start_match(QTestState
*from
,
2615 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2616 return test_migrate_tls_psk_start_match(from
, to
);
2620 test_migrate_multifd_tcp_tls_psk_start_mismatch(QTestState
*from
,
2623 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2624 return test_migrate_tls_psk_start_mismatch(from
, to
);
2629 test_migrate_multifd_tls_x509_start_default_host(QTestState
*from
,
2632 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2633 return test_migrate_tls_x509_start_default_host(from
, to
);
2637 test_migrate_multifd_tls_x509_start_override_host(QTestState
*from
,
2640 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2641 return test_migrate_tls_x509_start_override_host(from
, to
);
2645 test_migrate_multifd_tls_x509_start_mismatch_host(QTestState
*from
,
2648 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2649 return test_migrate_tls_x509_start_mismatch_host(from
, to
);
2653 test_migrate_multifd_tls_x509_start_allow_anon_client(QTestState
*from
,
2656 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2657 return test_migrate_tls_x509_start_allow_anon_client(from
, to
);
2661 test_migrate_multifd_tls_x509_start_reject_anon_client(QTestState
*from
,
2664 test_migrate_precopy_tcp_multifd_start_common(from
, to
, "none");
2665 return test_migrate_tls_x509_start_reject_anon_client(from
, to
);
2667 #endif /* CONFIG_TASN1 */
2669 static void test_multifd_tcp_tls_psk_match(void)
2671 MigrateCommon args
= {
2672 .listen_uri
= "defer",
2673 .start_hook
= test_migrate_multifd_tcp_tls_psk_start_match
,
2674 .finish_hook
= test_migrate_tls_psk_finish
,
2676 test_precopy_common(&args
);
2679 static void test_multifd_tcp_tls_psk_mismatch(void)
2681 MigrateCommon args
= {
2683 .hide_stderr
= true,
2685 .listen_uri
= "defer",
2686 .start_hook
= test_migrate_multifd_tcp_tls_psk_start_mismatch
,
2687 .finish_hook
= test_migrate_tls_psk_finish
,
2688 .result
= MIG_TEST_FAIL
,
2690 test_precopy_common(&args
);
2694 static void test_multifd_tcp_tls_x509_default_host(void)
2696 MigrateCommon args
= {
2697 .listen_uri
= "defer",
2698 .start_hook
= test_migrate_multifd_tls_x509_start_default_host
,
2699 .finish_hook
= test_migrate_tls_x509_finish
,
2701 test_precopy_common(&args
);
2704 static void test_multifd_tcp_tls_x509_override_host(void)
2706 MigrateCommon args
= {
2707 .listen_uri
= "defer",
2708 .start_hook
= test_migrate_multifd_tls_x509_start_override_host
,
2709 .finish_hook
= test_migrate_tls_x509_finish
,
2711 test_precopy_common(&args
);
2714 static void test_multifd_tcp_tls_x509_mismatch_host(void)
2717 * This has different behaviour to the non-multifd case.
2719 * In non-multifd case when client aborts due to mismatched
2720 * cert host, the server has already started trying to load
2721 * migration state, and so it exits with I/O failure.
2723 * In multifd case when client aborts due to mismatched
2724 * cert host, the server is still waiting for the other
2725 * multifd connections to arrive so hasn't started trying
2726 * to load migration state, and thus just aborts the migration
2729 MigrateCommon args
= {
2731 .hide_stderr
= true,
2733 .listen_uri
= "defer",
2734 .start_hook
= test_migrate_multifd_tls_x509_start_mismatch_host
,
2735 .finish_hook
= test_migrate_tls_x509_finish
,
2736 .result
= MIG_TEST_FAIL
,
2738 test_precopy_common(&args
);
2741 static void test_multifd_tcp_tls_x509_allow_anon_client(void)
2743 MigrateCommon args
= {
2744 .listen_uri
= "defer",
2745 .start_hook
= test_migrate_multifd_tls_x509_start_allow_anon_client
,
2746 .finish_hook
= test_migrate_tls_x509_finish
,
2748 test_precopy_common(&args
);
2751 static void test_multifd_tcp_tls_x509_reject_anon_client(void)
2753 MigrateCommon args
= {
2755 .hide_stderr
= true,
2757 .listen_uri
= "defer",
2758 .start_hook
= test_migrate_multifd_tls_x509_start_reject_anon_client
,
2759 .finish_hook
= test_migrate_tls_x509_finish
,
2760 .result
= MIG_TEST_FAIL
,
2762 test_precopy_common(&args
);
2764 #endif /* CONFIG_TASN1 */
2765 #endif /* CONFIG_GNUTLS */
2773 * launch another target
2776 * And see that it works
2778 static void test_multifd_tcp_cancel(void)
2780 MigrateStart args
= {
2781 .hide_stderr
= true,
2783 QTestState
*from
, *to
, *to2
;
2784 g_autofree
char *uri
= NULL
;
2786 if (test_migrate_start(&from
, &to
, "defer", &args
)) {
2790 migrate_ensure_non_converge(from
);
2791 migrate_prepare_for_dirty_mem(from
);
2793 migrate_set_parameter_int(from
, "multifd-channels", 16);
2794 migrate_set_parameter_int(to
, "multifd-channels", 16);
2796 migrate_set_capability(from
, "multifd", true);
2797 migrate_set_capability(to
, "multifd", true);
2799 /* Start incoming migration from the 1st socket */
2800 migrate_incoming_qmp(to
, "tcp:127.0.0.1:0", "{}");
2802 /* Wait for the first serial output from the source */
2803 wait_for_serial("src_serial");
2805 uri
= migrate_get_socket_address(to
, "socket-address");
2807 migrate_qmp(from
, uri
, "{}");
2809 migrate_wait_for_dirty_mem(from
, to
);
2811 migrate_cancel(from
);
2813 /* Make sure QEMU process "to" exited */
2814 qtest_set_expected_status(to
, EXIT_FAILURE
);
2815 qtest_wait_qemu(to
);
2817 args
= (MigrateStart
){
2818 .only_target
= true,
2821 if (test_migrate_start(&from
, &to2
, "defer", &args
)) {
2825 migrate_set_parameter_int(to2
, "multifd-channels", 16);
2827 migrate_set_capability(to2
, "multifd", true);
2829 /* Start incoming migration from the 1st socket */
2830 migrate_incoming_qmp(to2
, "tcp:127.0.0.1:0", "{}");
2833 uri
= migrate_get_socket_address(to2
, "socket-address");
2835 wait_for_migration_status(from
, "cancelled", NULL
);
2837 migrate_ensure_non_converge(from
);
2839 migrate_qmp(from
, uri
, "{}");
2841 migrate_wait_for_dirty_mem(from
, to2
);
2843 migrate_ensure_converge(from
);
2845 if (!got_src_stop
) {
2846 qtest_qmp_eventwait(from
, "STOP");
2848 qtest_qmp_eventwait(to2
, "RESUME");
2850 wait_for_serial("dest_serial");
2851 wait_for_migration_complete(from
);
2852 test_migrate_end(from
, to2
, true);
2855 static void calc_dirty_rate(QTestState
*who
, uint64_t calc_time
)
2857 qtest_qmp_assert_success(who
,
2858 "{ 'execute': 'calc-dirty-rate',"
2860 "'calc-time': %" PRIu64
","
2861 "'mode': 'dirty-ring' }}",
2865 static QDict
*query_dirty_rate(QTestState
*who
)
2867 return qtest_qmp_assert_success_ref(who
,
2868 "{ 'execute': 'query-dirty-rate' }");
2871 static void dirtylimit_set_all(QTestState
*who
, uint64_t dirtyrate
)
2873 qtest_qmp_assert_success(who
,
2874 "{ 'execute': 'set-vcpu-dirty-limit',"
2876 "'dirty-rate': %" PRIu64
" } }",
2880 static void cancel_vcpu_dirty_limit(QTestState
*who
)
2882 qtest_qmp_assert_success(who
,
2883 "{ 'execute': 'cancel-vcpu-dirty-limit' }");
2886 static QDict
*query_vcpu_dirty_limit(QTestState
*who
)
2890 rsp
= qtest_qmp(who
, "{ 'execute': 'query-vcpu-dirty-limit' }");
2891 g_assert(!qdict_haskey(rsp
, "error"));
2892 g_assert(qdict_haskey(rsp
, "return"));
2897 static bool calc_dirtyrate_ready(QTestState
*who
)
2902 rsp_return
= query_dirty_rate(who
);
2903 g_assert(rsp_return
);
2905 status
= g_strdup(qdict_get_str(rsp_return
, "status"));
2908 return g_strcmp0(status
, "measuring");
2911 static void wait_for_calc_dirtyrate_complete(QTestState
*who
,
2914 int max_try_count
= 10000;
2915 usleep(time_s
* 1000000);
2917 while (!calc_dirtyrate_ready(who
) && max_try_count
--) {
2922 * Set the timeout with 10 s(max_try_count * 1000us),
2923 * if dirtyrate measurement not complete, fail test.
2925 g_assert_cmpint(max_try_count
, !=, 0);
2928 static int64_t get_dirty_rate(QTestState
*who
)
2933 const QListEntry
*entry
;
2937 rsp_return
= query_dirty_rate(who
);
2938 g_assert(rsp_return
);
2940 status
= g_strdup(qdict_get_str(rsp_return
, "status"));
2942 g_assert_cmpstr(status
, ==, "measured");
2944 rates
= qdict_get_qlist(rsp_return
, "vcpu-dirty-rate");
2945 g_assert(rates
&& !qlist_empty(rates
));
2947 entry
= qlist_first(rates
);
2950 rate
= qobject_to(QDict
, qlist_entry_obj(entry
));
2953 dirtyrate
= qdict_get_try_int(rate
, "dirty-rate", -1);
2955 qobject_unref(rsp_return
);
2959 static int64_t get_limit_rate(QTestState
*who
)
2963 const QListEntry
*entry
;
2967 rsp_return
= query_vcpu_dirty_limit(who
);
2968 g_assert(rsp_return
);
2970 rates
= qdict_get_qlist(rsp_return
, "return");
2971 g_assert(rates
&& !qlist_empty(rates
));
2973 entry
= qlist_first(rates
);
2976 rate
= qobject_to(QDict
, qlist_entry_obj(entry
));
2979 dirtyrate
= qdict_get_try_int(rate
, "limit-rate", -1);
2981 qobject_unref(rsp_return
);
2985 static QTestState
*dirtylimit_start_vm(void)
2987 QTestState
*vm
= NULL
;
2989 cmd
= g_strdup_printf("-accel kvm,dirty-ring-size=4096 "
2990 "-name dirtylimit-test,debug-threads=on "
2992 "-serial file:%s/vm_serial "
2993 "-drive file=%s,format=raw ",
2996 vm
= qtest_init(cmd
);
3000 static void dirtylimit_stop_vm(QTestState
*vm
)
3003 cleanup("vm_serial");
3006 static void test_vcpu_dirty_limit(void)
3009 int64_t origin_rate
;
3012 int max_try_count
= 20;
3015 /* Start vm for vcpu dirtylimit test */
3016 vm
= dirtylimit_start_vm();
3018 /* Wait for the first serial output from the vm*/
3019 wait_for_serial("vm_serial");
3021 /* Do dirtyrate measurement with calc time equals 1s */
3022 calc_dirty_rate(vm
, 1);
3024 /* Sleep calc time and wait for calc dirtyrate complete */
3025 wait_for_calc_dirtyrate_complete(vm
, 1);
3027 /* Query original dirty page rate */
3028 origin_rate
= get_dirty_rate(vm
);
3030 /* VM booted from bootsect should dirty memory steadily */
3031 assert(origin_rate
!= 0);
3033 /* Setup quota dirty page rate at half of origin */
3034 quota_rate
= origin_rate
/ 2;
3036 /* Set dirtylimit */
3037 dirtylimit_set_all(vm
, quota_rate
);
3040 * Check if set-vcpu-dirty-limit and query-vcpu-dirty-limit
3043 g_assert_cmpint(quota_rate
, ==, get_limit_rate(vm
));
3045 /* Sleep a bit to check if it take effect */
3049 * Check if dirtylimit take effect realistically, set the
3050 * timeout with 20 s(max_try_count * 1s), if dirtylimit
3051 * doesn't take effect, fail test.
3053 while (--max_try_count
) {
3054 calc_dirty_rate(vm
, 1);
3055 wait_for_calc_dirtyrate_complete(vm
, 1);
3056 rate
= get_dirty_rate(vm
);
3059 * Assume hitting if current rate is less
3060 * than quota rate (within accepting error)
3062 if (rate
< (quota_rate
+ DIRTYLIMIT_TOLERANCE_RANGE
)) {
3068 g_assert_cmpint(hit
, ==, 1);
3073 /* Check if dirtylimit cancellation take effect */
3074 cancel_vcpu_dirty_limit(vm
);
3075 while (--max_try_count
) {
3076 calc_dirty_rate(vm
, 1);
3077 wait_for_calc_dirtyrate_complete(vm
, 1);
3078 rate
= get_dirty_rate(vm
);
3081 * Assume dirtylimit be canceled if current rate is
3082 * greater than quota rate (within accepting error)
3084 if (rate
> (quota_rate
+ DIRTYLIMIT_TOLERANCE_RANGE
)) {
3090 g_assert_cmpint(hit
, ==, 1);
3091 dirtylimit_stop_vm(vm
);
3094 static void migrate_dirty_limit_wait_showup(QTestState
*from
,
3095 const int64_t period
,
3096 const int64_t value
)
3098 /* Enable dirty limit capability */
3099 migrate_set_capability(from
, "dirty-limit", true);
3101 /* Set dirty limit parameters */
3102 migrate_set_parameter_int(from
, "x-vcpu-dirty-limit-period", period
);
3103 migrate_set_parameter_int(from
, "vcpu-dirty-limit", value
);
3105 /* Make sure migrate can't converge */
3106 migrate_ensure_non_converge(from
);
3108 /* To check limit rate after precopy */
3109 migrate_set_capability(from
, "pause-before-switchover", true);
3111 /* Wait for the serial output from the source */
3112 wait_for_serial("src_serial");
3117 * source destination
3121 * wait dirty limit to begin
3123 * cancellation check
3124 * restart incoming vm
3126 * wait dirty limit to begin
3127 * wait pre-switchover event
3128 * convergence condition check
3130 * And see if dirty limit migration works correctly.
3131 * This test case involves many passes, so it runs in slow mode only.
3133 static void test_migrate_dirty_limit(void)
3135 g_autofree
char *uri
= g_strdup_printf("unix:%s/migsocket", tmpfs
);
3136 QTestState
*from
, *to
;
3138 uint64_t throttle_us_per_full
;
3140 * We want the test to be stable and as fast as possible.
3141 * E.g., with 1Gb/s bandwith migration may pass without dirty limit,
3142 * so we need to decrease a bandwidth.
3144 const int64_t dirtylimit_period
= 1000, dirtylimit_value
= 50;
3145 const int64_t max_bandwidth
= 400000000; /* ~400Mb/s */
3146 const int64_t downtime_limit
= 250; /* 250ms */
3148 * We migrate through unix-socket (> 500Mb/s).
3149 * Thus, expected migration speed ~= bandwidth limit (< 500Mb/s).
3150 * So, we can predict expected_threshold
3152 const int64_t expected_threshold
= max_bandwidth
* downtime_limit
/ 1000;
3153 int max_try_count
= 10;
3154 MigrateCommon args
= {
3156 .hide_stderr
= true,
3157 .use_dirty_ring
= true,
3163 /* Start src, dst vm */
3164 if (test_migrate_start(&from
, &to
, args
.listen_uri
, &args
.start
)) {
3168 /* Prepare for dirty limit migration and wait src vm show up */
3169 migrate_dirty_limit_wait_showup(from
, dirtylimit_period
, dirtylimit_value
);
3172 migrate_qmp(from
, uri
, "{}");
3174 /* Wait for dirty limit throttle begin */
3175 throttle_us_per_full
= 0;
3176 while (throttle_us_per_full
== 0) {
3177 throttle_us_per_full
=
3178 read_migrate_property_int(from
, "dirty-limit-throttle-time-per-round");
3180 g_assert_false(got_src_stop
);
3183 /* Now cancel migrate and wait for dirty limit throttle switch off */
3184 migrate_cancel(from
);
3185 wait_for_migration_status(from
, "cancelled", NULL
);
3187 /* Check if dirty limit throttle switched off, set timeout 1ms */
3189 throttle_us_per_full
=
3190 read_migrate_property_int(from
, "dirty-limit-throttle-time-per-round");
3192 g_assert_false(got_src_stop
);
3193 } while (throttle_us_per_full
!= 0 && --max_try_count
);
3195 /* Assert dirty limit is not in service */
3196 g_assert_cmpint(throttle_us_per_full
, ==, 0);
3198 args
= (MigrateCommon
) {
3200 .only_target
= true,
3201 .use_dirty_ring
= true,
3207 /* Restart dst vm, src vm already show up so we needn't wait anymore */
3208 if (test_migrate_start(&from
, &to
, args
.listen_uri
, &args
.start
)) {
3213 migrate_qmp(from
, uri
, "{}");
3215 /* Wait for dirty limit throttle begin */
3216 throttle_us_per_full
= 0;
3217 while (throttle_us_per_full
== 0) {
3218 throttle_us_per_full
=
3219 read_migrate_property_int(from
, "dirty-limit-throttle-time-per-round");
3221 g_assert_false(got_src_stop
);
3225 * The dirty limit rate should equals the return value of
3226 * query-vcpu-dirty-limit if dirty limit cap set
3228 g_assert_cmpint(dirtylimit_value
, ==, get_limit_rate(from
));
3230 /* Now, we have tested if dirty limit works, let it converge */
3231 migrate_set_parameter_int(from
, "downtime-limit", downtime_limit
);
3232 migrate_set_parameter_int(from
, "max-bandwidth", max_bandwidth
);
3235 * Wait for pre-switchover status to check if migration
3236 * satisfy the convergence condition
3238 wait_for_migration_status(from
, "pre-switchover", NULL
);
3240 remaining
= read_ram_property_int(from
, "remaining");
3241 g_assert_cmpint(remaining
, <,
3242 (expected_threshold
+ expected_threshold
/ 100));
3244 migrate_continue(from
, "pre-switchover");
3246 qtest_qmp_eventwait(to
, "RESUME");
3248 wait_for_serial("dest_serial");
3249 wait_for_migration_complete(from
);
3251 test_migrate_end(from
, to
, true);
3254 static bool kvm_dirty_ring_supported(void)
3256 #if defined(__linux__) && defined(HOST_X86_64)
3257 int ret
, kvm_fd
= open("/dev/kvm", O_RDONLY
);
3263 ret
= ioctl(kvm_fd
, KVM_CHECK_EXTENSION
, KVM_CAP_DIRTY_LOG_RING
);
3266 /* We test with 4096 slots */
3277 int main(int argc
, char **argv
)
3279 bool has_kvm
, has_tcg
;
3282 g_autoptr(GError
) err
= NULL
;
3283 const char *qemu_src
= getenv(QEMU_ENV_SRC
);
3284 const char *qemu_dst
= getenv(QEMU_ENV_DST
);
3287 g_test_init(&argc
, &argv
, NULL
);
3290 * The default QTEST_QEMU_BINARY must always be provided because
3291 * that is what helpers use to query the accel type and
3294 if (qemu_src
&& qemu_dst
) {
3295 g_test_message("Only one of %s, %s is allowed",
3296 QEMU_ENV_SRC
, QEMU_ENV_DST
);
3300 has_kvm
= qtest_has_accel("kvm");
3301 has_tcg
= qtest_has_accel("tcg");
3303 if (!has_tcg
&& !has_kvm
) {
3304 g_test_skip("No KVM or TCG accelerator available");
3308 has_uffd
= ufd_version_check();
3309 arch
= qtest_get_arch();
3312 * On ppc64, the test only works with kvm-hv, but not with kvm-pr and TCG
3313 * is touchy due to race conditions on dirty bits (especially on PPC for
3316 if (g_str_equal(arch
, "ppc64") &&
3317 (!has_kvm
|| access("/sys/module/kvm_hv", F_OK
))) {
3318 g_test_message("Skipping test: kvm_hv not available");
3319 return g_test_run();
3323 * Similar to ppc64, s390x seems to be touchy with TCG, so disable it
3324 * there until the problems are resolved
3326 if (g_str_equal(arch
, "s390x") && !has_kvm
) {
3327 g_test_message("Skipping test: s390x host with KVM is required");
3328 return g_test_run();
3331 tmpfs
= g_dir_make_tmp("migration-test-XXXXXX", &err
);
3333 g_test_message("Can't create temporary directory in %s: %s",
3334 g_get_tmp_dir(), err
->message
);
3337 bootfile_create(tmpfs
);
3339 module_call_init(MODULE_INIT_QOM
);
3342 qtest_add_func("/migration/postcopy/plain", test_postcopy
);
3343 qtest_add_func("/migration/postcopy/recovery/plain",
3344 test_postcopy_recovery
);
3345 qtest_add_func("/migration/postcopy/preempt/plain", test_postcopy_preempt
);
3346 qtest_add_func("/migration/postcopy/preempt/recovery/plain",
3347 test_postcopy_preempt_recovery
);
3348 if (getenv("QEMU_TEST_FLAKY_TESTS")) {
3349 qtest_add_func("/migration/postcopy/compress/plain",
3350 test_postcopy_compress
);
3351 qtest_add_func("/migration/postcopy/recovery/compress/plain",
3352 test_postcopy_recovery_compress
);
3355 qtest_add_func("/migration/postcopy/recovery/double-failures",
3356 test_postcopy_recovery_double_fail
);
3361 qtest_add_func("/migration/bad_dest", test_baddest
);
3363 if (!g_str_equal(arch
, "s390x")) {
3364 qtest_add_func("/migration/analyze-script", test_analyze_script
);
3367 qtest_add_func("/migration/precopy/unix/plain", test_precopy_unix_plain
);
3368 qtest_add_func("/migration/precopy/unix/xbzrle", test_precopy_unix_xbzrle
);
3370 * Compression fails from time to time.
3371 * Put test here but don't enable it until everything is fixed.
3373 if (getenv("QEMU_TEST_FLAKY_TESTS")) {
3374 qtest_add_func("/migration/precopy/unix/compress/wait",
3375 test_precopy_unix_compress
);
3376 qtest_add_func("/migration/precopy/unix/compress/nowait",
3377 test_precopy_unix_compress_nowait
);
3380 qtest_add_func("/migration/precopy/file",
3382 qtest_add_func("/migration/precopy/file/offset",
3383 test_precopy_file_offset
);
3384 qtest_add_func("/migration/precopy/file/offset/bad",
3385 test_precopy_file_offset_bad
);
3388 * Our CI system has problems with shared memory.
3389 * Don't run this test until we find a workaround.
3391 if (getenv("QEMU_TEST_FLAKY_TESTS")) {
3392 qtest_add_func("/migration/mode/reboot", test_mode_reboot
);
3395 #ifdef CONFIG_GNUTLS
3396 qtest_add_func("/migration/precopy/unix/tls/psk",
3397 test_precopy_unix_tls_psk
);
3401 * NOTE: psk test is enough for postcopy, as other types of TLS
3402 * channels are tested under precopy. Here what we want to test is the
3403 * general postcopy path that has TLS channel enabled.
3405 qtest_add_func("/migration/postcopy/tls/psk", test_postcopy_tls_psk
);
3406 qtest_add_func("/migration/postcopy/recovery/tls/psk",
3407 test_postcopy_recovery_tls_psk
);
3408 qtest_add_func("/migration/postcopy/preempt/tls/psk",
3409 test_postcopy_preempt_tls_psk
);
3410 qtest_add_func("/migration/postcopy/preempt/recovery/tls/psk",
3411 test_postcopy_preempt_all
);
3414 qtest_add_func("/migration/precopy/unix/tls/x509/default-host",
3415 test_precopy_unix_tls_x509_default_host
);
3416 qtest_add_func("/migration/precopy/unix/tls/x509/override-host",
3417 test_precopy_unix_tls_x509_override_host
);
3418 #endif /* CONFIG_TASN1 */
3419 #endif /* CONFIG_GNUTLS */
3421 qtest_add_func("/migration/precopy/tcp/plain", test_precopy_tcp_plain
);
3423 qtest_add_func("/migration/precopy/tcp/plain/switchover-ack",
3424 test_precopy_tcp_switchover_ack
);
3426 #ifdef CONFIG_GNUTLS
3427 qtest_add_func("/migration/precopy/tcp/tls/psk/match",
3428 test_precopy_tcp_tls_psk_match
);
3429 qtest_add_func("/migration/precopy/tcp/tls/psk/mismatch",
3430 test_precopy_tcp_tls_psk_mismatch
);
3432 qtest_add_func("/migration/precopy/tcp/tls/x509/default-host",
3433 test_precopy_tcp_tls_x509_default_host
);
3434 qtest_add_func("/migration/precopy/tcp/tls/x509/override-host",
3435 test_precopy_tcp_tls_x509_override_host
);
3436 qtest_add_func("/migration/precopy/tcp/tls/x509/mismatch-host",
3437 test_precopy_tcp_tls_x509_mismatch_host
);
3438 qtest_add_func("/migration/precopy/tcp/tls/x509/friendly-client",
3439 test_precopy_tcp_tls_x509_friendly_client
);
3440 qtest_add_func("/migration/precopy/tcp/tls/x509/hostile-client",
3441 test_precopy_tcp_tls_x509_hostile_client
);
3442 qtest_add_func("/migration/precopy/tcp/tls/x509/allow-anon-client",
3443 test_precopy_tcp_tls_x509_allow_anon_client
);
3444 qtest_add_func("/migration/precopy/tcp/tls/x509/reject-anon-client",
3445 test_precopy_tcp_tls_x509_reject_anon_client
);
3446 #endif /* CONFIG_TASN1 */
3447 #endif /* CONFIG_GNUTLS */
3449 /* qtest_add_func("/migration/ignore_shared", test_ignore_shared); */
3451 qtest_add_func("/migration/fd_proto", test_migrate_fd_proto
);
3453 qtest_add_func("/migration/validate_uuid", test_validate_uuid
);
3454 qtest_add_func("/migration/validate_uuid_error", test_validate_uuid_error
);
3455 qtest_add_func("/migration/validate_uuid_src_not_set",
3456 test_validate_uuid_src_not_set
);
3457 qtest_add_func("/migration/validate_uuid_dst_not_set",
3458 test_validate_uuid_dst_not_set
);
3460 * See explanation why this test is slow on function definition
3462 if (g_test_slow()) {
3463 qtest_add_func("/migration/auto_converge", test_migrate_auto_converge
);
3464 if (g_str_equal(arch
, "x86_64") &&
3465 has_kvm
&& kvm_dirty_ring_supported()) {
3466 qtest_add_func("/migration/dirty_limit", test_migrate_dirty_limit
);
3469 qtest_add_func("/migration/multifd/tcp/plain/none",
3470 test_multifd_tcp_none
);
3472 * This test is flaky and sometimes fails in CI and otherwise:
3473 * don't run unless user opts in via environment variable.
3475 if (getenv("QEMU_TEST_FLAKY_TESTS")) {
3476 qtest_add_func("/migration/multifd/tcp/plain/cancel",
3477 test_multifd_tcp_cancel
);
3479 qtest_add_func("/migration/multifd/tcp/plain/zlib",
3480 test_multifd_tcp_zlib
);
3482 qtest_add_func("/migration/multifd/tcp/plain/zstd",
3483 test_multifd_tcp_zstd
);
3485 #ifdef CONFIG_GNUTLS
3486 qtest_add_func("/migration/multifd/tcp/tls/psk/match",
3487 test_multifd_tcp_tls_psk_match
);
3488 qtest_add_func("/migration/multifd/tcp/tls/psk/mismatch",
3489 test_multifd_tcp_tls_psk_mismatch
);
3491 qtest_add_func("/migration/multifd/tcp/tls/x509/default-host",
3492 test_multifd_tcp_tls_x509_default_host
);
3493 qtest_add_func("/migration/multifd/tcp/tls/x509/override-host",
3494 test_multifd_tcp_tls_x509_override_host
);
3495 qtest_add_func("/migration/multifd/tcp/tls/x509/mismatch-host",
3496 test_multifd_tcp_tls_x509_mismatch_host
);
3497 qtest_add_func("/migration/multifd/tcp/tls/x509/allow-anon-client",
3498 test_multifd_tcp_tls_x509_allow_anon_client
);
3499 qtest_add_func("/migration/multifd/tcp/tls/x509/reject-anon-client",
3500 test_multifd_tcp_tls_x509_reject_anon_client
);
3501 #endif /* CONFIG_TASN1 */
3502 #endif /* CONFIG_GNUTLS */
3504 if (g_str_equal(arch
, "x86_64") && has_kvm
&& kvm_dirty_ring_supported()) {
3505 qtest_add_func("/migration/dirty_ring",
3506 test_precopy_unix_dirty_ring
);
3507 qtest_add_func("/migration/vcpu_dirty_limit",
3508 test_vcpu_dirty_limit
);
3513 g_assert_cmpint(ret
, ==, 0);
3518 g_test_message("unable to rmdir: path (%s): %s",
3519 tmpfs
, strerror(errno
));