]> Git Repo - qemu.git/blame - tests/migration-test.c
migration-test: Clean up string interpolation into QMP, part 2
[qemu.git] / tests / migration-test.c
CommitLineData
ea0c6d62 1/*
2656bfd9 2 * QTest testcase for migration
ea0c6d62 3 *
17ca7746 4 * Copyright (c) 2016-2018 Red Hat, Inc. and/or its affiliates
ea0c6d62
DDAG
5 * based on the vhost-user-test.c that is:
6 * Copyright (c) 2014 Virtual Open Systems Sarl.
7 *
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.
10 *
11 */
12
13#include "qemu/osdep.h"
ea0c6d62
DDAG
14
15#include "libqtest.h"
452fcdbc 16#include "qapi/qmp/qdict.h"
b5bbd3f3 17#include "qapi/qmp/qjson.h"
ea0c6d62
DDAG
18#include "qemu/option.h"
19#include "qemu/range.h"
a9c94277 20#include "qemu/sockets.h"
8228e353 21#include "chardev/char.h"
ea0c6d62
DDAG
22#include "sysemu/sysemu.h"
23
055a1efc
MA
24/* TODO actually test the results and get rid of this */
25#define qtest_qmp_discard_response(...) qobject_unref(qtest_qmp(__VA_ARGS__))
26
ea0c6d62
DDAG
27const unsigned start_address = 1024 * 1024;
28const unsigned end_address = 100 * 1024 * 1024;
29bool got_stop;
346f3dab 30static bool uffd_feature_thread_id;
ea0c6d62
DDAG
31
32#if defined(__linux__)
ea0c6d62
DDAG
33#include <sys/syscall.h>
34#include <sys/vfs.h>
35#endif
36
37#if defined(__linux__) && defined(__NR_userfaultfd) && defined(CONFIG_EVENTFD)
38#include <sys/eventfd.h>
39#include <sys/ioctl.h>
40#include <linux/userfaultfd.h>
41
42static bool ufd_version_check(void)
43{
44 struct uffdio_api api_struct;
45 uint64_t ioctl_mask;
46
e1ae9fb6 47 int ufd = syscall(__NR_userfaultfd, O_CLOEXEC);
ea0c6d62
DDAG
48
49 if (ufd == -1) {
50 g_test_message("Skipping test: userfaultfd not available");
51 return false;
52 }
53
54 api_struct.api = UFFD_API;
55 api_struct.features = 0;
56 if (ioctl(ufd, UFFDIO_API, &api_struct)) {
57 g_test_message("Skipping test: UFFDIO_API failed");
58 return false;
59 }
346f3dab 60 uffd_feature_thread_id = api_struct.features & UFFD_FEATURE_THREAD_ID;
ea0c6d62
DDAG
61
62 ioctl_mask = (__u64)1 << _UFFDIO_REGISTER |
63 (__u64)1 << _UFFDIO_UNREGISTER;
64 if ((api_struct.ioctls & ioctl_mask) != ioctl_mask) {
65 g_test_message("Skipping test: Missing userfault feature");
66 return false;
67 }
68
69 return true;
70}
71
72#else
73static bool ufd_version_check(void)
74{
75 g_test_message("Skipping test: Userfault not available (builtdtime)");
76 return false;
77}
78
79#endif
80
81static const char *tmpfs;
82
83/* A simple PC boot sector that modifies memory (1-100MB) quickly
17ca7746 84 * outputting a 'B' every so often if it's still running.
ea0c6d62 85 */
17ca7746 86#include "tests/migration/x86-a-b-bootblock.h"
ea0c6d62 87
aaf89c8a 88static void init_bootfile_x86(const char *bootpath)
89{
90 FILE *bootfile = fopen(bootpath, "wb");
91
17ca7746 92 g_assert_cmpint(fwrite(x86_bootsect, 512, 1, bootfile), ==, 1);
aaf89c8a 93 fclose(bootfile);
94}
95
ea0c6d62
DDAG
96/*
97 * Wait for some output in the serial output file,
98 * we get an 'A' followed by an endless string of 'B's
99 * but on the destination we won't have the A.
100 */
101static void wait_for_serial(const char *side)
102{
103 char *serialpath = g_strdup_printf("%s/%s", tmpfs, side);
104 FILE *serialfile = fopen(serialpath, "r");
aaf89c8a 105 const char *arch = qtest_get_arch();
106 int started = (strcmp(side, "src_serial") == 0 &&
107 strcmp(arch, "ppc64") == 0) ? 0 : 1;
ea0c6d62 108
e2dd21e5 109 g_free(serialpath);
ea0c6d62
DDAG
110 do {
111 int readvalue = fgetc(serialfile);
112
aaf89c8a 113 if (!started) {
114 /* SLOF prints its banner before starting test,
115 * to ignore it, mark the start of the test with '_',
116 * ignore all characters until this marker
117 */
118 switch (readvalue) {
119 case '_':
120 started = 1;
121 break;
122 case EOF:
123 fseek(serialfile, 0, SEEK_SET);
124 usleep(1000);
125 break;
126 }
127 continue;
128 }
ea0c6d62
DDAG
129 switch (readvalue) {
130 case 'A':
131 /* Fine */
132 break;
133
134 case 'B':
135 /* It's alive! */
136 fclose(serialfile);
ea0c6d62
DDAG
137 return;
138
139 case EOF:
aaf89c8a 140 started = (strcmp(side, "src_serial") == 0 &&
141 strcmp(arch, "ppc64") == 0) ? 0 : 1;
ea0c6d62
DDAG
142 fseek(serialfile, 0, SEEK_SET);
143 usleep(1000);
144 break;
145
146 default:
147 fprintf(stderr, "Unexpected %d on %s serial\n", readvalue, side);
148 g_assert_not_reached();
149 }
150 } while (true);
151}
152
3cd46d42
MA
153static void stop_cb(void *opaque, const char *name, QDict *data)
154{
155 if (!strcmp(name, "STOP")) {
156 got_stop = true;
157 }
158}
159
ea0c6d62
DDAG
160/*
161 * Events can get in the way of responses we are actually waiting for.
162 */
b7281c69 163GCC_FMT_ATTR(2, 3)
4399596b 164static QDict *wait_command(QTestState *who, const char *command, ...)
ea0c6d62 165{
4399596b
MA
166 va_list ap;
167
168 va_start(ap, command);
169 qtest_qmp_vsend(who, command, ap);
170 va_end(ap);
171
3cd46d42 172 return qtest_qmp_receive_success(who, stop_cb, NULL);
ea0c6d62
DDAG
173}
174
2f7074c6
PX
175/*
176 * Note: caller is responsible to free the returned object via
177 * qobject_unref() after use
178 */
179static QDict *migrate_query(QTestState *who)
180{
e1454165 181 return wait_command(who, "{ 'execute': 'query-migrate' }");
2f7074c6
PX
182}
183
184/*
185 * Note: caller is responsible to free the returned object via
186 * g_free() after use
187 */
188static gchar *migrate_query_status(QTestState *who)
189{
190 QDict *rsp_return = migrate_query(who);
191 gchar *status = g_strdup(qdict_get_str(rsp_return, "status"));
192
193 g_assert(status);
194 qobject_unref(rsp_return);
195
196 return status;
197}
ea0c6d62
DDAG
198
199/*
200 * It's tricky to use qemu's migration event capability with qtest,
201 * events suddenly appearing confuse the qmp()/hmp() responses.
ea0c6d62
DDAG
202 */
203
863e27a8 204static uint64_t get_migration_pass(QTestState *who)
ea0c6d62 205{
2f7074c6 206 QDict *rsp_return, *rsp_ram;
ea0c6d62
DDAG
207 uint64_t result;
208
2f7074c6 209 rsp_return = migrate_query(who);
ea0c6d62
DDAG
210 if (!qdict_haskey(rsp_return, "ram")) {
211 /* Still in setup */
212 result = 0;
213 } else {
214 rsp_ram = qdict_get_qdict(rsp_return, "ram");
215 result = qdict_get_try_int(rsp_ram, "dirty-sync-count", 0);
ea0c6d62 216 }
2f7074c6 217 qobject_unref(rsp_return);
ea0c6d62
DDAG
218 return result;
219}
220
346f3dab
AP
221static void read_blocktime(QTestState *who)
222{
2f7074c6 223 QDict *rsp_return;
346f3dab 224
2f7074c6 225 rsp_return = migrate_query(who);
346f3dab 226 g_assert(qdict_haskey(rsp_return, "postcopy-blocktime"));
2f7074c6 227 qobject_unref(rsp_return);
346f3dab
AP
228}
229
2f6d3138
PX
230static void wait_for_migration_status(QTestState *who,
231 const char *goal)
ea0c6d62 232{
6a7724e9 233 while (true) {
6a7724e9 234 bool completed;
2f7074c6 235 char *status;
ea0c6d62 236
2f7074c6 237 status = migrate_query_status(who);
2f6d3138 238 completed = strcmp(status, goal) == 0;
ea0c6d62 239 g_assert_cmpstr(status, !=, "failed");
2f7074c6 240 g_free(status);
6a7724e9
JQ
241 if (completed) {
242 return;
243 }
244 usleep(1000);
245 }
ea0c6d62
DDAG
246}
247
2f6d3138
PX
248static void wait_for_migration_complete(QTestState *who)
249{
250 wait_for_migration_status(who, "completed");
251}
252
863e27a8 253static void wait_for_migration_pass(QTestState *who)
ea0c6d62 254{
863e27a8 255 uint64_t initial_pass = get_migration_pass(who);
ea0c6d62
DDAG
256 uint64_t pass;
257
258 /* Wait for the 1st sync */
6a7724e9
JQ
259 while (!got_stop && !initial_pass) {
260 usleep(1000);
863e27a8 261 initial_pass = get_migration_pass(who);
6a7724e9 262 }
ea0c6d62
DDAG
263
264 do {
6a7724e9 265 usleep(1000);
863e27a8 266 pass = get_migration_pass(who);
ea0c6d62
DDAG
267 } while (pass == initial_pass && !got_stop);
268}
269
7195a871 270static void check_guests_ram(QTestState *who)
ea0c6d62
DDAG
271{
272 /* Our ASM test will have been incrementing one byte from each page from
273 * 1MB to <100MB in order.
274 * This gives us a constraint that any page's byte should be equal or less
275 * than the previous pages byte (mod 256); and they should all be equal
276 * except for one transition at the point where we meet the incrementer.
277 * (We're running this with the guest stopped).
278 */
279 unsigned address;
280 uint8_t first_byte;
281 uint8_t last_byte;
282 bool hit_edge = false;
283 bool bad = false;
284
7195a871 285 qtest_memread(who, start_address, &first_byte, 1);
ea0c6d62
DDAG
286 last_byte = first_byte;
287
288 for (address = start_address + 4096; address < end_address; address += 4096)
289 {
290 uint8_t b;
7195a871 291 qtest_memread(who, address, &b, 1);
ea0c6d62
DDAG
292 if (b != last_byte) {
293 if (((b + 1) % 256) == last_byte && !hit_edge) {
294 /* This is OK, the guest stopped at the point of
295 * incrementing the previous page but didn't get
296 * to us yet.
297 */
298 hit_edge = true;
829db8b4 299 last_byte = b;
ea0c6d62
DDAG
300 } else {
301 fprintf(stderr, "Memory content inconsistency at %x"
302 " first_byte = %x last_byte = %x current = %x"
303 " hit_edge = %x\n",
304 address, first_byte, last_byte, b, hit_edge);
305 bad = true;
306 }
307 }
ea0c6d62
DDAG
308 }
309 g_assert_false(bad);
310}
311
312static void cleanup(const char *filename)
313{
314 char *path = g_strdup_printf("%s/%s", tmpfs, filename);
315
316 unlink(path);
e2dd21e5 317 g_free(path);
ea0c6d62
DDAG
318}
319
56b4a42a
JQ
320static void migrate_check_parameter(QTestState *who, const char *parameter,
321 const char *value)
322{
e1454165 323 QDict *rsp_return;
9c43435d 324 char *result;
56b4a42a 325
e1454165
MA
326 rsp_return = wait_command(who,
327 "{ 'execute': 'query-migrate-parameters' }");
56b4a42a
JQ
328 result = g_strdup_printf("%" PRId64,
329 qdict_get_try_int(rsp_return, parameter, -1));
330 g_assert_cmpstr(result, ==, value);
9c43435d 331 g_free(result);
e1454165 332 qobject_unref(rsp_return);
56b4a42a
JQ
333}
334
1f90d797
JQ
335static void migrate_set_parameter(QTestState *who, const char *parameter,
336 const char *value)
d62fbe60
JQ
337{
338 QDict *rsp;
339 gchar *cmd;
340
1f90d797
JQ
341 cmd = g_strdup_printf("{ 'execute': 'migrate-set-parameters',"
342 "'arguments': { '%s': %s } }",
343 parameter, value);
d62fbe60
JQ
344 rsp = qtest_qmp(who, cmd);
345 g_free(cmd);
346 g_assert(qdict_haskey(rsp, "return"));
cb3e7f08 347 qobject_unref(rsp);
1f90d797 348 migrate_check_parameter(who, parameter, value);
d62fbe60
JQ
349}
350
d5f49640
PX
351static void migrate_pause(QTestState *who)
352{
353 QDict *rsp;
354
355 rsp = wait_command(who, "{ 'execute': 'migrate-pause' }");
d5f49640
PX
356 qobject_unref(rsp);
357}
358
359static void migrate_recover(QTestState *who, const char *uri)
360{
361 QDict *rsp;
d5f49640 362
b7281c69
MA
363 rsp = wait_command(who,
364 "{ 'execute': 'migrate-recover', "
365 " 'id': 'recover-cmd', "
366 " 'arguments': { 'uri': %s } }",
367 uri);
d5f49640
PX
368 qobject_unref(rsp);
369}
370
d62fbe60
JQ
371static void migrate_set_capability(QTestState *who, const char *capability,
372 const char *value)
373{
374 QDict *rsp;
375 gchar *cmd;
376
377 cmd = g_strdup_printf("{ 'execute': 'migrate-set-capabilities',"
378 "'arguments': { "
379 "'capabilities': [ { "
380 "'capability': '%s', 'state': %s } ] } }",
381 capability, value);
382 rsp = qtest_qmp(who, cmd);
383 g_free(cmd);
384 g_assert(qdict_haskey(rsp, "return"));
cb3e7f08 385 qobject_unref(rsp);
d62fbe60
JQ
386}
387
b5bbd3f3
MA
388/*
389 * Send QMP command "migrate".
390 * Arguments are built from @fmt... (formatted like
391 * qobject_from_jsonf_nofail()) with "uri": @uri spliced in.
392 */
393GCC_FMT_ATTR(3, 4)
394static void migrate(QTestState *who, const char *uri, const char *fmt, ...)
d62fbe60 395{
b5bbd3f3
MA
396 va_list ap;
397 QDict *args, *rsp;
d62fbe60 398
b5bbd3f3
MA
399 va_start(ap, fmt);
400 args = qdict_from_vjsonf_nofail(fmt, ap);
401 va_end(ap);
402
403 g_assert(!qdict_haskey(args, "uri"));
404 qdict_put_str(args, "uri", uri);
405
406 rsp = qmp("{ 'execute': 'migrate', 'arguments': %p}", args);
d62fbe60 407 g_assert(qdict_haskey(rsp, "return"));
cb3e7f08 408 qobject_unref(rsp);
d62fbe60
JQ
409}
410
d131662a 411static void migrate_postcopy_start(QTestState *from, QTestState *to)
eb665d7d
JQ
412{
413 QDict *rsp;
414
d131662a 415 rsp = wait_command(from, "{ 'execute': 'migrate-start-postcopy' }");
cb3e7f08 416 qobject_unref(rsp);
d131662a
PX
417
418 if (!got_stop) {
419 qtest_qmp_eventwait(from, "STOP");
420 }
421
422 qtest_qmp_eventwait(to, "RESUME");
eb665d7d
JQ
423}
424
5fd4a9c9 425static int test_migrate_start(QTestState **from, QTestState **to,
f96d6651 426 const char *uri, bool hide_stderr)
ea0c6d62 427{
d62fbe60 428 gchar *cmd_src, *cmd_dst;
ea0c6d62 429 char *bootpath = g_strdup_printf("%s/bootsect", tmpfs);
aaf89c8a 430 const char *arch = qtest_get_arch();
63b2d935 431 const char *accel = "kvm:tcg";
ea0c6d62
DDAG
432
433 got_stop = false;
ea0c6d62 434
aaf89c8a 435 if (strcmp(arch, "i386") == 0 || strcmp(arch, "x86_64") == 0) {
436 init_bootfile_x86(bootpath);
63b2d935 437 cmd_src = g_strdup_printf("-machine accel=%s -m 150M"
31a6bb74 438 " -name source,debug-threads=on"
aaf89c8a 439 " -serial file:%s/src_serial"
440 " -drive file=%s,format=raw",
63b2d935
JQ
441 accel, tmpfs, bootpath);
442 cmd_dst = g_strdup_printf("-machine accel=%s -m 150M"
31a6bb74 443 " -name target,debug-threads=on"
aaf89c8a 444 " -serial file:%s/dest_serial"
445 " -drive file=%s,format=raw"
446 " -incoming %s",
63b2d935 447 accel, tmpfs, bootpath, uri);
aaf89c8a 448 } else if (strcmp(arch, "ppc64") == 0) {
171da9d5 449
5fd4a9c9
DDAG
450 /* On ppc64, the test only works with kvm-hv, but not with kvm-pr
451 * and TCG is touchy due to race conditions on dirty bits
452 * (especially on PPC for some reason)
453 */
63b2d935 454 if (access("/sys/module/kvm_hv", F_OK)) {
5fd4a9c9
DDAG
455 g_print("Skipping test: kvm_hv not available ");
456 return -1;
63b2d935 457 }
171da9d5 458 cmd_src = g_strdup_printf("-machine accel=%s -m 256M"
31a6bb74 459 " -name source,debug-threads=on"
aaf89c8a 460 " -serial file:%s/src_serial"
cdf33815
JQ
461 " -prom-env '"
462 "boot-command=hex .\" _\" begin %x %x "
463 "do i c@ 1 + i c! 1000 +loop .\" B\" 0 "
464 "until'", accel, tmpfs, end_address,
465 start_address);
171da9d5 466 cmd_dst = g_strdup_printf("-machine accel=%s -m 256M"
31a6bb74 467 " -name target,debug-threads=on"
aaf89c8a 468 " -serial file:%s/dest_serial"
469 " -incoming %s",
171da9d5 470 accel, tmpfs, uri);
aaf89c8a 471 } else {
472 g_assert_not_reached();
473 }
474
e2dd21e5
MAL
475 g_free(bootpath);
476
f96d6651
DDAG
477 if (hide_stderr) {
478 gchar *tmp;
479 tmp = g_strdup_printf("%s 2>/dev/null", cmd_src);
480 g_free(cmd_src);
481 cmd_src = tmp;
482
483 tmp = g_strdup_printf("%s 2>/dev/null", cmd_dst);
484 g_free(cmd_dst);
485 cmd_dst = tmp;
486 }
487
7195a871 488 *from = qtest_start(cmd_src);
aaf89c8a 489 g_free(cmd_src);
490
7195a871 491 *to = qtest_init(cmd_dst);
aaf89c8a 492 g_free(cmd_dst);
5fd4a9c9 493 return 0;
7195a871
JQ
494}
495
2c9bb297 496static void test_migrate_end(QTestState *from, QTestState *to, bool test_dest)
7195a871
JQ
497{
498 unsigned char dest_byte_a, dest_byte_b, dest_byte_c, dest_byte_d;
499
500 qtest_quit(from);
501
2c9bb297
DDAG
502 if (test_dest) {
503 qtest_memread(to, start_address, &dest_byte_a, 1);
7195a871 504
2c9bb297
DDAG
505 /* Destination still running, wait for a byte to change */
506 do {
507 qtest_memread(to, start_address, &dest_byte_b, 1);
508 usleep(1000 * 10);
509 } while (dest_byte_a == dest_byte_b);
510
511 qtest_qmp_discard_response(to, "{ 'execute' : 'stop'}");
7195a871 512
2c9bb297
DDAG
513 /* With it stopped, check nothing changes */
514 qtest_memread(to, start_address, &dest_byte_c, 1);
515 usleep(1000 * 200);
516 qtest_memread(to, start_address, &dest_byte_d, 1);
517 g_assert_cmpint(dest_byte_c, ==, dest_byte_d);
7195a871 518
2c9bb297
DDAG
519 check_guests_ram(to);
520 }
7195a871
JQ
521
522 qtest_quit(to);
523
524 cleanup("bootsect");
525 cleanup("migsocket");
526 cleanup("src_serial");
527 cleanup("dest_serial");
528}
529
4c27486d
JQ
530static void deprecated_set_downtime(QTestState *who, const double value)
531{
532 QDict *rsp;
4c27486d
JQ
533 char *expected;
534 int64_t result_int;
535
015715f5
MA
536 rsp = qtest_qmp(who,
537 "{ 'execute': 'migrate_set_downtime',"
538 " 'arguments': { 'value': %f } }", value);
4c27486d 539 g_assert(qdict_haskey(rsp, "return"));
cb3e7f08 540 qobject_unref(rsp);
4c27486d
JQ
541 result_int = value * 1000L;
542 expected = g_strdup_printf("%" PRId64, result_int);
543 migrate_check_parameter(who, "downtime-limit", expected);
544 g_free(expected);
545}
546
547static void deprecated_set_speed(QTestState *who, const char *value)
548{
549 QDict *rsp;
550 gchar *cmd;
551
552 cmd = g_strdup_printf("{ 'execute': 'migrate_set_speed',"
553 "'arguments': { 'value': %s } }", value);
554 rsp = qtest_qmp(who, cmd);
555 g_free(cmd);
556 g_assert(qdict_haskey(rsp, "return"));
cb3e7f08 557 qobject_unref(rsp);
4c27486d
JQ
558 migrate_check_parameter(who, "max-bandwidth", value);
559}
560
561static void test_deprecated(void)
562{
563 QTestState *from;
564
565 from = qtest_start("");
566
567 deprecated_set_downtime(from, 0.12345);
568 deprecated_set_speed(from, "12345");
569
570 qtest_quit(from);
571}
572
d131662a 573static int migrate_postcopy_prepare(QTestState **from_ptr,
3e81f73c
PX
574 QTestState **to_ptr,
575 bool hide_error)
7195a871
JQ
576{
577 char *uri = g_strdup_printf("unix:%s/migsocket", tmpfs);
863e27a8 578 QTestState *from, *to;
7195a871 579
3e81f73c 580 if (test_migrate_start(&from, &to, uri, hide_error)) {
d131662a 581 return -1;
5fd4a9c9 582 }
ea0c6d62 583
d62fbe60
JQ
584 migrate_set_capability(from, "postcopy-ram", "true");
585 migrate_set_capability(to, "postcopy-ram", "true");
346f3dab 586 migrate_set_capability(to, "postcopy-blocktime", "true");
ea0c6d62
DDAG
587
588 /* We want to pick a speed slow enough that the test completes
589 * quickly, but that it doesn't complete precopy even on a slow
590 * machine, so also set the downtime.
591 */
1f90d797
JQ
592 migrate_set_parameter(from, "max-bandwidth", "100000000");
593 migrate_set_parameter(from, "downtime-limit", "1");
ea0c6d62
DDAG
594
595 /* Wait for the first serial output from the source */
596 wait_for_serial("src_serial");
597
b5bbd3f3 598 migrate(from, uri, "{}");
d131662a 599 g_free(uri);
ea0c6d62 600
863e27a8 601 wait_for_migration_pass(from);
ea0c6d62 602
d131662a
PX
603 *from_ptr = from;
604 *to_ptr = to;
ea0c6d62 605
d131662a
PX
606 return 0;
607}
ea0c6d62 608
d131662a
PX
609static void migrate_postcopy_complete(QTestState *from, QTestState *to)
610{
611 wait_for_migration_complete(from);
ea0c6d62 612
d131662a 613 /* Make sure we get at least one "B" on destination */
ea0c6d62 614 wait_for_serial("dest_serial");
ea0c6d62 615
346f3dab
AP
616 if (uffd_feature_thread_id) {
617 read_blocktime(to);
618 }
ea0c6d62 619
2c9bb297
DDAG
620 test_migrate_end(from, to, true);
621}
622
d131662a
PX
623static void test_postcopy(void)
624{
625 QTestState *from, *to;
626
3e81f73c 627 if (migrate_postcopy_prepare(&from, &to, false)) {
d131662a
PX
628 return;
629 }
630 migrate_postcopy_start(from, to);
631 migrate_postcopy_complete(from, to);
632}
633
d5f49640
PX
634static void test_postcopy_recovery(void)
635{
636 QTestState *from, *to;
637 char *uri;
638
3e81f73c 639 if (migrate_postcopy_prepare(&from, &to, true)) {
d5f49640
PX
640 return;
641 }
642
643 /* Turn postcopy speed down, 4K/s is slow enough on any machines */
644 migrate_set_parameter(from, "max-postcopy-bandwidth", "4096");
645
646 /* Now we start the postcopy */
647 migrate_postcopy_start(from, to);
648
649 /*
650 * Wait until postcopy is really started; we can only run the
651 * migrate-pause command during a postcopy
652 */
653 wait_for_migration_status(from, "postcopy-active");
654
655 /*
656 * Manually stop the postcopy migration. This emulates a network
657 * failure with the migration socket
658 */
659 migrate_pause(from);
660
661 /*
662 * Wait for destination side to reach postcopy-paused state. The
663 * migrate-recover command can only succeed if destination machine
664 * is in the paused state
665 */
666 wait_for_migration_status(to, "postcopy-paused");
667
668 /*
669 * Create a new socket to emulate a new channel that is different
670 * from the broken migration channel; tell the destination to
671 * listen to the new port
672 */
673 uri = g_strdup_printf("unix:%s/migsocket-recover", tmpfs);
674 migrate_recover(to, uri);
675
676 /*
677 * Try to rebuild the migration channel using the resume flag and
678 * the newly created channel
679 */
680 wait_for_migration_status(from, "postcopy-paused");
b5bbd3f3 681 migrate(from, uri, "{'resume': true}");
d5f49640
PX
682 g_free(uri);
683
684 /* Restore the postcopy bandwidth to unlimited */
685 migrate_set_parameter(from, "max-postcopy-bandwidth", "0");
686
687 migrate_postcopy_complete(from, to);
688}
689
2c9bb297
DDAG
690static void test_baddest(void)
691{
692 QTestState *from, *to;
e1454165 693 QDict *rsp_return;
2f7074c6 694 char *status;
2c9bb297
DDAG
695 bool failed;
696
5fd4a9c9
DDAG
697 if (test_migrate_start(&from, &to, "tcp:0:0", true)) {
698 return;
699 }
b5bbd3f3 700 migrate(from, "tcp:0:0", "{}");
2c9bb297 701 do {
2f7074c6 702 status = migrate_query_status(from);
2c9bb297
DDAG
703 g_assert(!strcmp(status, "setup") || !(strcmp(status, "failed")));
704 failed = !strcmp(status, "failed");
2f7074c6 705 g_free(status);
2c9bb297
DDAG
706 } while (!failed);
707
708 /* Is the machine currently running? */
e1454165 709 rsp_return = wait_command(from, "{ 'execute': 'query-status' }");
2c9bb297
DDAG
710 g_assert(qdict_haskey(rsp_return, "running"));
711 g_assert(qdict_get_bool(rsp_return, "running"));
e1454165 712 qobject_unref(rsp_return);
2c9bb297
DDAG
713
714 test_migrate_end(from, to, false);
ea0c6d62
DDAG
715}
716
2884100c
JQ
717static void test_precopy_unix(void)
718{
719 char *uri = g_strdup_printf("unix:%s/migsocket", tmpfs);
720 QTestState *from, *to;
721
5fd4a9c9
DDAG
722 if (test_migrate_start(&from, &to, uri, false)) {
723 return;
724 }
2884100c
JQ
725
726 /* We want to pick a speed slow enough that the test completes
727 * quickly, but that it doesn't complete precopy even on a slow
728 * machine, so also set the downtime.
729 */
730 /* 1 ms should make it not converge*/
731 migrate_set_parameter(from, "downtime-limit", "1");
732 /* 1GB/s */
733 migrate_set_parameter(from, "max-bandwidth", "1000000000");
734
735 /* Wait for the first serial output from the source */
736 wait_for_serial("src_serial");
737
b5bbd3f3 738 migrate(from, uri, "{}");
2884100c
JQ
739
740 wait_for_migration_pass(from);
741
742 /* 300 ms should converge */
743 migrate_set_parameter(from, "downtime-limit", "300");
744
745 if (!got_stop) {
746 qtest_qmp_eventwait(from, "STOP");
747 }
748
749 qtest_qmp_eventwait(to, "RESUME");
750
751 wait_for_serial("dest_serial");
752 wait_for_migration_complete(from);
753
754 test_migrate_end(from, to, true);
755 g_free(uri);
756}
757
ea0c6d62
DDAG
758int main(int argc, char **argv)
759{
2656bfd9 760 char template[] = "/tmp/migration-test-XXXXXX";
ea0c6d62
DDAG
761 int ret;
762
763 g_test_init(&argc, &argv, NULL);
764
765 if (!ufd_version_check()) {
766 return 0;
767 }
768
769 tmpfs = mkdtemp(template);
770 if (!tmpfs) {
771 g_test_message("mkdtemp on path (%s): %s\n", template, strerror(errno));
772 }
773 g_assert(tmpfs);
774
775 module_call_init(MODULE_INIT_QOM);
776
2884100c 777 qtest_add_func("/migration/postcopy/unix", test_postcopy);
d5f49640 778 qtest_add_func("/migration/postcopy/recovery", test_postcopy_recovery);
4c27486d 779 qtest_add_func("/migration/deprecated", test_deprecated);
2c9bb297 780 qtest_add_func("/migration/bad_dest", test_baddest);
2884100c 781 qtest_add_func("/migration/precopy/unix", test_precopy_unix);
ea0c6d62
DDAG
782
783 ret = g_test_run();
784
785 g_assert_cmpint(ret, ==, 0);
786
787 ret = rmdir(tmpfs);
788 if (ret != 0) {
789 g_test_message("unable to rmdir: path (%s): %s\n",
790 tmpfs, strerror(errno));
791 }
792
793 return ret;
794}
This page took 0.300078 seconds and 4 git commands to generate.