123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598 |
- /*
- * Block replication tests
- *
- * Copyright (c) 2016 FUJITSU LIMITED
- * Author: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
- *
- * This work is licensed under the terms of the GNU GPL, version 2 or
- * later. See the COPYING file in the top-level directory.
- */
- #include "qemu/osdep.h"
- #include "qapi/error.h"
- #include "qapi/qmp/qdict.h"
- #include "qemu/option.h"
- #include "qemu/main-loop.h"
- #include "replication.h"
- #include "block/block_int.h"
- #include "block/qdict.h"
- #include "sysemu/block-backend.h"
- #define IMG_SIZE (64 * 1024 * 1024)
- /* primary */
- #define P_ID "primary-id"
- static char p_local_disk[] = "/tmp/p_local_disk.XXXXXX";
- /* secondary */
- #define S_ID "secondary-id"
- #define S_LOCAL_DISK_ID "secondary-local-disk-id"
- static char s_local_disk[] = "/tmp/s_local_disk.XXXXXX";
- static char s_active_disk[] = "/tmp/s_active_disk.XXXXXX";
- static char s_hidden_disk[] = "/tmp/s_hidden_disk.XXXXXX";
- /* FIXME: steal from blockdev.c */
- QemuOptsList qemu_drive_opts = {
- .name = "drive",
- .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
- .desc = {
- { /* end of list */ }
- },
- };
- #define NOT_DONE 0x7fffffff
- static void blk_rw_done(void *opaque, int ret)
- {
- *(int *)opaque = ret;
- }
- static void test_blk_read(BlockBackend *blk, long pattern,
- int64_t pattern_offset, int64_t pattern_count,
- int64_t offset, int64_t count,
- bool expect_failed)
- {
- void *pattern_buf = NULL;
- QEMUIOVector qiov;
- void *cmp_buf = NULL;
- int async_ret = NOT_DONE;
- if (pattern) {
- cmp_buf = g_malloc(pattern_count);
- memset(cmp_buf, pattern, pattern_count);
- }
- pattern_buf = g_malloc(count);
- if (pattern) {
- memset(pattern_buf, pattern, count);
- } else {
- memset(pattern_buf, 0x00, count);
- }
- qemu_iovec_init(&qiov, 1);
- qemu_iovec_add(&qiov, pattern_buf, count);
- blk_aio_preadv(blk, offset, &qiov, 0, blk_rw_done, &async_ret);
- while (async_ret == NOT_DONE) {
- main_loop_wait(false);
- }
- if (expect_failed) {
- g_assert(async_ret != 0);
- } else {
- g_assert(async_ret == 0);
- if (pattern) {
- g_assert(memcmp(pattern_buf + pattern_offset,
- cmp_buf, pattern_count) <= 0);
- }
- }
- g_free(pattern_buf);
- g_free(cmp_buf);
- qemu_iovec_destroy(&qiov);
- }
- static void test_blk_write(BlockBackend *blk, long pattern, int64_t offset,
- int64_t count, bool expect_failed)
- {
- void *pattern_buf = NULL;
- QEMUIOVector qiov;
- int async_ret = NOT_DONE;
- pattern_buf = g_malloc(count);
- if (pattern) {
- memset(pattern_buf, pattern, count);
- } else {
- memset(pattern_buf, 0x00, count);
- }
- qemu_iovec_init(&qiov, 1);
- qemu_iovec_add(&qiov, pattern_buf, count);
- blk_aio_pwritev(blk, offset, &qiov, 0, blk_rw_done, &async_ret);
- while (async_ret == NOT_DONE) {
- main_loop_wait(false);
- }
- if (expect_failed) {
- g_assert(async_ret != 0);
- } else {
- g_assert(async_ret == 0);
- }
- g_free(pattern_buf);
- qemu_iovec_destroy(&qiov);
- }
- /*
- * Create a uniquely-named empty temporary file.
- */
- static void make_temp(char *template)
- {
- int fd;
- fd = mkstemp(template);
- g_assert(fd >= 0);
- close(fd);
- }
- static void prepare_imgs(void)
- {
- Error *local_err = NULL;
- make_temp(p_local_disk);
- make_temp(s_local_disk);
- make_temp(s_active_disk);
- make_temp(s_hidden_disk);
- /* Primary */
- bdrv_img_create(p_local_disk, "qcow2", NULL, NULL, NULL, IMG_SIZE,
- BDRV_O_RDWR, true, &local_err);
- g_assert(!local_err);
- /* Secondary */
- bdrv_img_create(s_local_disk, "qcow2", NULL, NULL, NULL, IMG_SIZE,
- BDRV_O_RDWR, true, &local_err);
- g_assert(!local_err);
- bdrv_img_create(s_active_disk, "qcow2", NULL, NULL, NULL, IMG_SIZE,
- BDRV_O_RDWR, true, &local_err);
- g_assert(!local_err);
- bdrv_img_create(s_hidden_disk, "qcow2", NULL, NULL, NULL, IMG_SIZE,
- BDRV_O_RDWR, true, &local_err);
- g_assert(!local_err);
- }
- static void cleanup_imgs(void)
- {
- /* Primary */
- unlink(p_local_disk);
- /* Secondary */
- unlink(s_local_disk);
- unlink(s_active_disk);
- unlink(s_hidden_disk);
- }
- static BlockBackend *start_primary(void)
- {
- BlockBackend *blk;
- QemuOpts *opts;
- QDict *qdict;
- Error *local_err = NULL;
- char *cmdline;
- cmdline = g_strdup_printf("driver=replication,mode=primary,node-name=xxx,"
- "file.driver=qcow2,file.file.filename=%s,"
- "file.file.locking=off"
- , p_local_disk);
- opts = qemu_opts_parse_noisily(&qemu_drive_opts, cmdline, false);
- g_free(cmdline);
- qdict = qemu_opts_to_qdict(opts, NULL);
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
- blk = blk_new_open(NULL, NULL, qdict, BDRV_O_RDWR, &local_err);
- g_assert(blk);
- g_assert(!local_err);
- monitor_add_blk(blk, P_ID, &local_err);
- g_assert(!local_err);
- qemu_opts_del(opts);
- return blk;
- }
- static void teardown_primary(void)
- {
- BlockBackend *blk;
- AioContext *ctx;
- /* remove P_ID */
- blk = blk_by_name(P_ID);
- assert(blk);
- ctx = blk_get_aio_context(blk);
- aio_context_acquire(ctx);
- monitor_remove_blk(blk);
- blk_unref(blk);
- aio_context_release(ctx);
- }
- static void test_primary_read(void)
- {
- BlockBackend *blk;
- blk = start_primary();
- /* read from 0 to IMG_SIZE */
- test_blk_read(blk, 0, 0, IMG_SIZE, 0, IMG_SIZE, true);
- teardown_primary();
- }
- static void test_primary_write(void)
- {
- BlockBackend *blk;
- blk = start_primary();
- /* write from 0 to IMG_SIZE */
- test_blk_write(blk, 0, 0, IMG_SIZE, true);
- teardown_primary();
- }
- static void test_primary_start(void)
- {
- BlockBackend *blk = NULL;
- Error *local_err = NULL;
- blk = start_primary();
- replication_start_all(REPLICATION_MODE_PRIMARY, &local_err);
- g_assert(!local_err);
- /* read from 0 to IMG_SIZE */
- test_blk_read(blk, 0, 0, IMG_SIZE, 0, IMG_SIZE, true);
- /* write 0x22 from 0 to IMG_SIZE */
- test_blk_write(blk, 0x22, 0, IMG_SIZE, false);
- teardown_primary();
- }
- static void test_primary_stop(void)
- {
- Error *local_err = NULL;
- bool failover = true;
- start_primary();
- replication_start_all(REPLICATION_MODE_PRIMARY, &local_err);
- g_assert(!local_err);
- replication_stop_all(failover, &local_err);
- g_assert(!local_err);
- teardown_primary();
- }
- static void test_primary_do_checkpoint(void)
- {
- Error *local_err = NULL;
- start_primary();
- replication_start_all(REPLICATION_MODE_PRIMARY, &local_err);
- g_assert(!local_err);
- replication_do_checkpoint_all(&local_err);
- g_assert(!local_err);
- teardown_primary();
- }
- static void test_primary_get_error_all(void)
- {
- Error *local_err = NULL;
- start_primary();
- replication_start_all(REPLICATION_MODE_PRIMARY, &local_err);
- g_assert(!local_err);
- replication_get_error_all(&local_err);
- g_assert(!local_err);
- teardown_primary();
- }
- static BlockBackend *start_secondary(void)
- {
- QemuOpts *opts;
- QDict *qdict;
- BlockBackend *blk;
- char *cmdline;
- Error *local_err = NULL;
- /* add s_local_disk and forge S_LOCAL_DISK_ID */
- cmdline = g_strdup_printf("file.filename=%s,driver=qcow2,"
- "file.locking=off",
- s_local_disk);
- opts = qemu_opts_parse_noisily(&qemu_drive_opts, cmdline, false);
- g_free(cmdline);
- qdict = qemu_opts_to_qdict(opts, NULL);
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
- blk = blk_new_open(NULL, NULL, qdict, BDRV_O_RDWR, &local_err);
- assert(blk);
- monitor_add_blk(blk, S_LOCAL_DISK_ID, &local_err);
- g_assert(!local_err);
- /* format s_local_disk with pattern "0x11" */
- test_blk_write(blk, 0x11, 0, IMG_SIZE, false);
- qemu_opts_del(opts);
- /* add S_(ACTIVE/HIDDEN)_DISK and forge S_ID */
- cmdline = g_strdup_printf("driver=replication,mode=secondary,top-id=%s,"
- "file.driver=qcow2,file.file.filename=%s,"
- "file.file.locking=off,"
- "file.backing.driver=qcow2,"
- "file.backing.file.filename=%s,"
- "file.backing.file.locking=off,"
- "file.backing.backing=%s"
- , S_ID, s_active_disk, s_hidden_disk
- , S_LOCAL_DISK_ID);
- opts = qemu_opts_parse_noisily(&qemu_drive_opts, cmdline, false);
- g_free(cmdline);
- qdict = qemu_opts_to_qdict(opts, NULL);
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
- qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
- blk = blk_new_open(NULL, NULL, qdict, BDRV_O_RDWR, &local_err);
- assert(blk);
- monitor_add_blk(blk, S_ID, &local_err);
- g_assert(!local_err);
- qemu_opts_del(opts);
- return blk;
- }
- static void teardown_secondary(void)
- {
- /* only need to destroy two BBs */
- BlockBackend *blk;
- AioContext *ctx;
- /* remove S_LOCAL_DISK_ID */
- blk = blk_by_name(S_LOCAL_DISK_ID);
- assert(blk);
- ctx = blk_get_aio_context(blk);
- aio_context_acquire(ctx);
- monitor_remove_blk(blk);
- blk_unref(blk);
- aio_context_release(ctx);
- /* remove S_ID */
- blk = blk_by_name(S_ID);
- assert(blk);
- ctx = blk_get_aio_context(blk);
- aio_context_acquire(ctx);
- monitor_remove_blk(blk);
- blk_unref(blk);
- aio_context_release(ctx);
- }
- static void test_secondary_read(void)
- {
- BlockBackend *blk;
- blk = start_secondary();
- /* read from 0 to IMG_SIZE */
- test_blk_read(blk, 0, 0, IMG_SIZE, 0, IMG_SIZE, true);
- teardown_secondary();
- }
- static void test_secondary_write(void)
- {
- BlockBackend *blk;
- blk = start_secondary();
- /* write from 0 to IMG_SIZE */
- test_blk_write(blk, 0, 0, IMG_SIZE, true);
- teardown_secondary();
- }
- static void test_secondary_start(void)
- {
- BlockBackend *top_blk, *local_blk;
- Error *local_err = NULL;
- bool failover = true;
- top_blk = start_secondary();
- replication_start_all(REPLICATION_MODE_SECONDARY, &local_err);
- g_assert(!local_err);
- /* read from s_local_disk (0, IMG_SIZE) */
- test_blk_read(top_blk, 0x11, 0, IMG_SIZE, 0, IMG_SIZE, false);
- /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
- local_blk = blk_by_name(S_LOCAL_DISK_ID);
- test_blk_write(local_blk, 0x22, IMG_SIZE / 2, IMG_SIZE / 2, false);
- /* replication will backup s_local_disk to s_hidden_disk */
- test_blk_read(top_blk, 0x11, IMG_SIZE / 2,
- IMG_SIZE / 2, 0, IMG_SIZE, false);
- /* write 0x33 to s_active_disk (0, IMG_SIZE / 2) */
- test_blk_write(top_blk, 0x33, 0, IMG_SIZE / 2, false);
- /* read from s_active_disk (0, IMG_SIZE/2) */
- test_blk_read(top_blk, 0x33, 0, IMG_SIZE / 2,
- 0, IMG_SIZE / 2, false);
- /* unblock top_bs */
- replication_stop_all(failover, &local_err);
- g_assert(!local_err);
- teardown_secondary();
- }
- static void test_secondary_stop(void)
- {
- BlockBackend *top_blk, *local_blk;
- Error *local_err = NULL;
- bool failover = true;
- top_blk = start_secondary();
- replication_start_all(REPLICATION_MODE_SECONDARY, &local_err);
- g_assert(!local_err);
- /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
- local_blk = blk_by_name(S_LOCAL_DISK_ID);
- test_blk_write(local_blk, 0x22, IMG_SIZE / 2, IMG_SIZE / 2, false);
- /* replication will backup s_local_disk to s_hidden_disk */
- test_blk_read(top_blk, 0x11, IMG_SIZE / 2,
- IMG_SIZE / 2, 0, IMG_SIZE, false);
- /* write 0x33 to s_active_disk (0, IMG_SIZE / 2) */
- test_blk_write(top_blk, 0x33, 0, IMG_SIZE / 2, false);
- /* do active commit */
- replication_stop_all(failover, &local_err);
- g_assert(!local_err);
- /* read from s_local_disk (0, IMG_SIZE / 2) */
- test_blk_read(top_blk, 0x33, 0, IMG_SIZE / 2,
- 0, IMG_SIZE / 2, false);
- /* read from s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
- test_blk_read(top_blk, 0x22, IMG_SIZE / 2,
- IMG_SIZE / 2, 0, IMG_SIZE, false);
- teardown_secondary();
- }
- static void test_secondary_do_checkpoint(void)
- {
- BlockBackend *top_blk, *local_blk;
- Error *local_err = NULL;
- bool failover = true;
- top_blk = start_secondary();
- replication_start_all(REPLICATION_MODE_SECONDARY, &local_err);
- g_assert(!local_err);
- /* write 0x22 to s_local_disk (IMG_SIZE / 2, IMG_SIZE) */
- local_blk = blk_by_name(S_LOCAL_DISK_ID);
- test_blk_write(local_blk, 0x22, IMG_SIZE / 2,
- IMG_SIZE / 2, false);
- /* replication will backup s_local_disk to s_hidden_disk */
- test_blk_read(top_blk, 0x11, IMG_SIZE / 2,
- IMG_SIZE / 2, 0, IMG_SIZE, false);
- replication_do_checkpoint_all(&local_err);
- g_assert(!local_err);
- /* after checkpoint, read pattern 0x22 from s_local_disk */
- test_blk_read(top_blk, 0x22, IMG_SIZE / 2,
- IMG_SIZE / 2, 0, IMG_SIZE, false);
- /* unblock top_bs */
- replication_stop_all(failover, &local_err);
- g_assert(!local_err);
- teardown_secondary();
- }
- static void test_secondary_get_error_all(void)
- {
- Error *local_err = NULL;
- bool failover = true;
- start_secondary();
- replication_start_all(REPLICATION_MODE_SECONDARY, &local_err);
- g_assert(!local_err);
- replication_get_error_all(&local_err);
- g_assert(!local_err);
- /* unblock top_bs */
- replication_stop_all(failover, &local_err);
- g_assert(!local_err);
- teardown_secondary();
- }
- static void sigabrt_handler(int signo)
- {
- cleanup_imgs();
- }
- static void setup_sigabrt_handler(void)
- {
- struct sigaction sigact;
- sigact = (struct sigaction) {
- .sa_handler = sigabrt_handler,
- .sa_flags = SA_RESETHAND,
- };
- sigemptyset(&sigact.sa_mask);
- sigaction(SIGABRT, &sigact, NULL);
- }
- int main(int argc, char **argv)
- {
- int ret;
- qemu_init_main_loop(&error_fatal);
- bdrv_init();
- g_test_init(&argc, &argv, NULL);
- setup_sigabrt_handler();
- prepare_imgs();
- /* Primary */
- g_test_add_func("/replication/primary/read", test_primary_read);
- g_test_add_func("/replication/primary/write", test_primary_write);
- g_test_add_func("/replication/primary/start", test_primary_start);
- g_test_add_func("/replication/primary/stop", test_primary_stop);
- g_test_add_func("/replication/primary/do_checkpoint",
- test_primary_do_checkpoint);
- g_test_add_func("/replication/primary/get_error_all",
- test_primary_get_error_all);
- /* Secondary */
- g_test_add_func("/replication/secondary/read", test_secondary_read);
- g_test_add_func("/replication/secondary/write", test_secondary_write);
- g_test_add_func("/replication/secondary/start", test_secondary_start);
- g_test_add_func("/replication/secondary/stop", test_secondary_stop);
- g_test_add_func("/replication/secondary/do_checkpoint",
- test_secondary_do_checkpoint);
- g_test_add_func("/replication/secondary/get_error_all",
- test_secondary_get_error_all);
- ret = g_test_run();
- cleanup_imgs();
- return ret;
- }
|