2 * Block replication tests
4 * Copyright (c) 2016 FUJITSU LIMITED
5 * Author: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or
8 * later. See the COPYING file in the top-level directory.
11 #include "qemu/osdep.h"
13 #include "qapi/error.h"
14 #include "replication.h"
15 #include "block/block_int.h"
16 #include "sysemu/block-backend.h"
18 #define IMG_SIZE (64 * 1024 * 1024)
21 #define P_ID "primary-id"
22 static char p_local_disk
[] = "/tmp/p_local_disk.XXXXXX";
25 #define S_ID "secondary-id"
26 #define S_LOCAL_DISK_ID "secondary-local-disk-id"
27 static char s_local_disk
[] = "/tmp/s_local_disk.XXXXXX";
28 static char s_active_disk
[] = "/tmp/s_active_disk.XXXXXX";
29 static char s_hidden_disk
[] = "/tmp/s_hidden_disk.XXXXXX";
31 /* FIXME: steal from blockdev.c */
32 QemuOptsList qemu_drive_opts
= {
34 .head
= QTAILQ_HEAD_INITIALIZER(qemu_drive_opts
.head
),
40 #define NOT_DONE 0x7fffffff
42 static void blk_rw_done(void *opaque
, int ret
)
47 static void test_blk_read(BlockBackend
*blk
, long pattern
,
48 int64_t pattern_offset
, int64_t pattern_count
,
49 int64_t offset
, int64_t count
,
52 void *pattern_buf
= NULL
;
55 int async_ret
= NOT_DONE
;
58 cmp_buf
= g_malloc(pattern_count
);
59 memset(cmp_buf
, pattern
, pattern_count
);
62 pattern_buf
= g_malloc(count
);
64 memset(pattern_buf
, pattern
, count
);
66 memset(pattern_buf
, 0x00, count
);
69 qemu_iovec_init(&qiov
, 1);
70 qemu_iovec_add(&qiov
, pattern_buf
, count
);
72 blk_aio_preadv(blk
, offset
, &qiov
, 0, blk_rw_done
, &async_ret
);
73 while (async_ret
== NOT_DONE
) {
74 main_loop_wait(false);
78 g_assert(async_ret
!= 0);
80 g_assert(async_ret
== 0);
82 g_assert(memcmp(pattern_buf
+ pattern_offset
,
83 cmp_buf
, pattern_count
) <= 0);
89 qemu_iovec_destroy(&qiov
);
92 static void test_blk_write(BlockBackend
*blk
, long pattern
, int64_t offset
,
93 int64_t count
, bool expect_failed
)
95 void *pattern_buf
= NULL
;
97 int async_ret
= NOT_DONE
;
99 pattern_buf
= g_malloc(count
);
101 memset(pattern_buf
, pattern
, count
);
103 memset(pattern_buf
, 0x00, count
);
106 qemu_iovec_init(&qiov
, 1);
107 qemu_iovec_add(&qiov
, pattern_buf
, count
);
109 blk_aio_pwritev(blk
, offset
, &qiov
, 0, blk_rw_done
, &async_ret
);
110 while (async_ret
== NOT_DONE
) {
111 main_loop_wait(false);
115 g_assert(async_ret
!= 0);
117 g_assert(async_ret
== 0);
121 qemu_iovec_destroy(&qiov
);
125 * Create a uniquely-named empty temporary file.
127 static void make_temp(char *template)
131 fd
= mkstemp(template);
136 static void prepare_imgs(void)
138 Error
*local_err
= NULL
;
140 make_temp(p_local_disk
);
141 make_temp(s_local_disk
);
142 make_temp(s_active_disk
);
143 make_temp(s_hidden_disk
);
146 bdrv_img_create(p_local_disk
, "qcow2", NULL
, NULL
, NULL
, IMG_SIZE
,
147 BDRV_O_RDWR
, true, &local_err
);
148 g_assert(!local_err
);
151 bdrv_img_create(s_local_disk
, "qcow2", NULL
, NULL
, NULL
, IMG_SIZE
,
152 BDRV_O_RDWR
, true, &local_err
);
153 g_assert(!local_err
);
154 bdrv_img_create(s_active_disk
, "qcow2", NULL
, NULL
, NULL
, IMG_SIZE
,
155 BDRV_O_RDWR
, true, &local_err
);
156 g_assert(!local_err
);
157 bdrv_img_create(s_hidden_disk
, "qcow2", NULL
, NULL
, NULL
, IMG_SIZE
,
158 BDRV_O_RDWR
, true, &local_err
);
159 g_assert(!local_err
);
162 static void cleanup_imgs(void)
165 unlink(p_local_disk
);
168 unlink(s_local_disk
);
169 unlink(s_active_disk
);
170 unlink(s_hidden_disk
);
173 static BlockBackend
*start_primary(void)
178 Error
*local_err
= NULL
;
181 cmdline
= g_strdup_printf("driver=replication,mode=primary,node-name=xxx,"
182 "file.driver=qcow2,file.file.filename=%s,"
183 "file.file.locking=off"
185 opts
= qemu_opts_parse_noisily(&qemu_drive_opts
, cmdline
, false);
188 qdict
= qemu_opts_to_qdict(opts
, NULL
);
189 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
190 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
192 blk
= blk_new_open(NULL
, NULL
, qdict
, BDRV_O_RDWR
, &local_err
);
194 g_assert(!local_err
);
196 monitor_add_blk(blk
, P_ID
, &local_err
);
197 g_assert(!local_err
);
204 static void teardown_primary(void)
209 blk
= blk_by_name(P_ID
);
212 monitor_remove_blk(blk
);
216 static void test_primary_read(void)
220 blk
= start_primary();
222 /* read from 0 to IMG_SIZE */
223 test_blk_read(blk
, 0, 0, IMG_SIZE
, 0, IMG_SIZE
, true);
228 static void test_primary_write(void)
232 blk
= start_primary();
234 /* write from 0 to IMG_SIZE */
235 test_blk_write(blk
, 0, 0, IMG_SIZE
, true);
240 static void test_primary_start(void)
242 BlockBackend
*blk
= NULL
;
243 Error
*local_err
= NULL
;
245 blk
= start_primary();
247 replication_start_all(REPLICATION_MODE_PRIMARY
, &local_err
);
248 g_assert(!local_err
);
250 /* read from 0 to IMG_SIZE */
251 test_blk_read(blk
, 0, 0, IMG_SIZE
, 0, IMG_SIZE
, true);
253 /* write 0x22 from 0 to IMG_SIZE */
254 test_blk_write(blk
, 0x22, 0, IMG_SIZE
, false);
259 static void test_primary_stop(void)
261 Error
*local_err
= NULL
;
262 bool failover
= true;
266 replication_start_all(REPLICATION_MODE_PRIMARY
, &local_err
);
267 g_assert(!local_err
);
269 replication_stop_all(failover
, &local_err
);
270 g_assert(!local_err
);
275 static void test_primary_do_checkpoint(void)
277 Error
*local_err
= NULL
;
281 replication_start_all(REPLICATION_MODE_PRIMARY
, &local_err
);
282 g_assert(!local_err
);
284 replication_do_checkpoint_all(&local_err
);
285 g_assert(!local_err
);
290 static void test_primary_get_error_all(void)
292 Error
*local_err
= NULL
;
296 replication_start_all(REPLICATION_MODE_PRIMARY
, &local_err
);
297 g_assert(!local_err
);
299 replication_get_error_all(&local_err
);
300 g_assert(!local_err
);
305 static BlockBackend
*start_secondary(void)
311 Error
*local_err
= NULL
;
313 /* add s_local_disk and forge S_LOCAL_DISK_ID */
314 cmdline
= g_strdup_printf("file.filename=%s,driver=qcow2,"
317 opts
= qemu_opts_parse_noisily(&qemu_drive_opts
, cmdline
, false);
320 qdict
= qemu_opts_to_qdict(opts
, NULL
);
321 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
322 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
324 blk
= blk_new_open(NULL
, NULL
, qdict
, BDRV_O_RDWR
, &local_err
);
326 monitor_add_blk(blk
, S_LOCAL_DISK_ID
, &local_err
);
327 g_assert(!local_err
);
329 /* format s_local_disk with pattern "0x11" */
330 test_blk_write(blk
, 0x11, 0, IMG_SIZE
, false);
334 /* add S_(ACTIVE/HIDDEN)_DISK and forge S_ID */
335 cmdline
= g_strdup_printf("driver=replication,mode=secondary,top-id=%s,"
336 "file.driver=qcow2,file.file.filename=%s,"
337 "file.file.locking=off,"
338 "file.backing.driver=qcow2,"
339 "file.backing.file.filename=%s,"
340 "file.backing.file.locking=off,"
341 "file.backing.backing=%s"
342 , S_ID
, s_active_disk
, s_hidden_disk
344 opts
= qemu_opts_parse_noisily(&qemu_drive_opts
, cmdline
, false);
347 qdict
= qemu_opts_to_qdict(opts
, NULL
);
348 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_DIRECT
, "off");
349 qdict_set_default_str(qdict
, BDRV_OPT_CACHE_NO_FLUSH
, "off");
351 blk
= blk_new_open(NULL
, NULL
, qdict
, BDRV_O_RDWR
, &local_err
);
353 monitor_add_blk(blk
, S_ID
, &local_err
);
354 g_assert(!local_err
);
361 static void teardown_secondary(void)
363 /* only need to destroy two BBs */
366 /* remove S_LOCAL_DISK_ID */
367 blk
= blk_by_name(S_LOCAL_DISK_ID
);
370 monitor_remove_blk(blk
);
374 blk
= blk_by_name(S_ID
);
377 monitor_remove_blk(blk
);
381 static void test_secondary_read(void)
385 blk
= start_secondary();
387 /* read from 0 to IMG_SIZE */
388 test_blk_read(blk
, 0, 0, IMG_SIZE
, 0, IMG_SIZE
, true);
390 teardown_secondary();
393 static void test_secondary_write(void)
397 blk
= start_secondary();
399 /* write from 0 to IMG_SIZE */
400 test_blk_write(blk
, 0, 0, IMG_SIZE
, true);
402 teardown_secondary();
405 static void test_secondary_start(void)
407 BlockBackend
*top_blk
, *local_blk
;
408 Error
*local_err
= NULL
;
409 bool failover
= true;
411 top_blk
= start_secondary();
412 replication_start_all(REPLICATION_MODE_SECONDARY
, &local_err
);
413 g_assert(!local_err
);
415 /* read from s_local_disk (0, IMG_SIZE) */
416 test_blk_read(top_blk
, 0x11, 0, IMG_SIZE
, 0, IMG_SIZE
, false);
418 /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
419 local_blk
= blk_by_name(S_LOCAL_DISK_ID
);
420 test_blk_write(local_blk
, 0x22, IMG_SIZE
/ 2, IMG_SIZE
/ 2, false);
422 /* replication will backup s_local_disk to s_hidden_disk */
423 test_blk_read(top_blk
, 0x11, IMG_SIZE
/ 2,
424 IMG_SIZE
/ 2, 0, IMG_SIZE
, false);
426 /* write 0x33 to s_active_disk (0, IMG_SIZE / 2) */
427 test_blk_write(top_blk
, 0x33, 0, IMG_SIZE
/ 2, false);
429 /* read from s_active_disk (0, IMG_SIZE/2) */
430 test_blk_read(top_blk
, 0x33, 0, IMG_SIZE
/ 2,
431 0, IMG_SIZE
/ 2, false);
434 replication_stop_all(failover
, &local_err
);
435 g_assert(!local_err
);
437 teardown_secondary();
441 static void test_secondary_stop(void)
443 BlockBackend
*top_blk
, *local_blk
;
444 Error
*local_err
= NULL
;
445 bool failover
= true;
447 top_blk
= start_secondary();
448 replication_start_all(REPLICATION_MODE_SECONDARY
, &local_err
);
449 g_assert(!local_err
);
451 /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
452 local_blk
= blk_by_name(S_LOCAL_DISK_ID
);
453 test_blk_write(local_blk
, 0x22, IMG_SIZE
/ 2, IMG_SIZE
/ 2, false);
455 /* replication will backup s_local_disk to s_hidden_disk */
456 test_blk_read(top_blk
, 0x11, IMG_SIZE
/ 2,
457 IMG_SIZE
/ 2, 0, IMG_SIZE
, false);
459 /* write 0x33 to s_active_disk (0, IMG_SIZE / 2) */
460 test_blk_write(top_blk
, 0x33, 0, IMG_SIZE
/ 2, false);
462 /* do active commit */
463 replication_stop_all(failover
, &local_err
);
464 g_assert(!local_err
);
466 /* read from s_local_disk (0, IMG_SIZE / 2) */
467 test_blk_read(top_blk
, 0x33, 0, IMG_SIZE
/ 2,
468 0, IMG_SIZE
/ 2, false);
471 /* read from s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
472 test_blk_read(top_blk
, 0x22, IMG_SIZE
/ 2,
473 IMG_SIZE
/ 2, 0, IMG_SIZE
, false);
475 teardown_secondary();
478 static void test_secondary_do_checkpoint(void)
480 BlockBackend
*top_blk
, *local_blk
;
481 Error
*local_err
= NULL
;
482 bool failover
= true;
484 top_blk
= start_secondary();
485 replication_start_all(REPLICATION_MODE_SECONDARY
, &local_err
);
486 g_assert(!local_err
);
488 /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
489 local_blk
= blk_by_name(S_LOCAL_DISK_ID
);
490 test_blk_write(local_blk
, 0x22, IMG_SIZE
/ 2,
491 IMG_SIZE
/ 2, false);
493 /* replication will backup s_local_disk to s_hidden_disk */
494 test_blk_read(top_blk
, 0x11, IMG_SIZE
/ 2,
495 IMG_SIZE
/ 2, 0, IMG_SIZE
, false);
497 replication_do_checkpoint_all(&local_err
);
498 g_assert(!local_err
);
500 /* after checkpoint, read pattern 0x22 from s_local_disk */
501 test_blk_read(top_blk
, 0x22, IMG_SIZE
/ 2,
502 IMG_SIZE
/ 2, 0, IMG_SIZE
, false);
505 replication_stop_all(failover
, &local_err
);
506 g_assert(!local_err
);
508 teardown_secondary();
511 static void test_secondary_get_error_all(void)
513 Error
*local_err
= NULL
;
514 bool failover
= true;
517 replication_start_all(REPLICATION_MODE_SECONDARY
, &local_err
);
518 g_assert(!local_err
);
520 replication_get_error_all(&local_err
);
521 g_assert(!local_err
);
524 replication_stop_all(failover
, &local_err
);
525 g_assert(!local_err
);
527 teardown_secondary();
530 static void sigabrt_handler(int signo
)
535 static void setup_sigabrt_handler(void)
537 struct sigaction sigact
;
539 sigact
= (struct sigaction
) {
540 .sa_handler
= sigabrt_handler
,
541 .sa_flags
= SA_RESETHAND
,
543 sigemptyset(&sigact
.sa_mask
);
544 sigaction(SIGABRT
, &sigact
, NULL
);
547 int main(int argc
, char **argv
)
550 qemu_init_main_loop(&error_fatal
);
553 g_test_init(&argc
, &argv
, NULL
);
554 setup_sigabrt_handler();
559 g_test_add_func("/replication/primary/read", test_primary_read
);
560 g_test_add_func("/replication/primary/write", test_primary_write
);
561 g_test_add_func("/replication/primary/start", test_primary_start
);
562 g_test_add_func("/replication/primary/stop", test_primary_stop
);
563 g_test_add_func("/replication/primary/do_checkpoint",
564 test_primary_do_checkpoint
);
565 g_test_add_func("/replication/primary/get_error_all",
566 test_primary_get_error_all
);
569 g_test_add_func("/replication/secondary/read", test_secondary_read
);
570 g_test_add_func("/replication/secondary/write", test_secondary_write
);
571 g_test_add_func("/replication/secondary/start", test_secondary_start
);
572 g_test_add_func("/replication/secondary/stop", test_secondary_stop
);
573 g_test_add_func("/replication/secondary/do_checkpoint",
574 test_secondary_do_checkpoint
);
575 g_test_add_func("/replication/secondary/get_error_all",
576 test_secondary_get_error_all
);