]> git.proxmox.com Git - mirror_qemu.git/blame - block/blkreplay.c
qobject: Add helper macros for common scalar insertions
[mirror_qemu.git] / block / blkreplay.c
CommitLineData
63785678
PD
1/*
2 * Block protocol for record/replay
3 *
4 * Copyright (c) 2010-2016 Institute for System Programming
5 * of the Russian Academy of Sciences.
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 *
10 */
11
12#include "qemu/osdep.h"
13#include "qemu-common.h"
14#include "block/block_int.h"
15#include "sysemu/replay.h"
16#include "qapi/error.h"
17
18typedef struct Request {
19 Coroutine *co;
20 QEMUBH *bh;
21} Request;
22
63785678
PD
23static int blkreplay_open(BlockDriverState *bs, QDict *options, int flags,
24 Error **errp)
25{
26 Error *local_err = NULL;
27 int ret;
28
29 /* Open the image file */
30 bs->file = bdrv_open_child(NULL, options, "image",
31 bs, &child_file, false, &local_err);
32 if (local_err) {
33 ret = -EINVAL;
34 error_propagate(errp, local_err);
35 goto fail;
36 }
37
38 ret = 0;
39fail:
63785678
PD
40 return ret;
41}
42
43static void blkreplay_close(BlockDriverState *bs)
44{
45}
46
47static int64_t blkreplay_getlength(BlockDriverState *bs)
48{
49 return bdrv_getlength(bs->file->bs);
50}
51
52/* This bh is used for synchronization of return from coroutines.
53 It continues yielded coroutine which then finishes its execution.
54 BH is called adjusted to some replay checkpoint, therefore
55 record and replay will always finish coroutines deterministically.
56*/
57static void blkreplay_bh_cb(void *opaque)
58{
59 Request *req = opaque;
1919631e 60 aio_co_wake(req->co);
63785678
PD
61 qemu_bh_delete(req->bh);
62 g_free(req);
63}
64
65static void block_request_create(uint64_t reqid, BlockDriverState *bs,
66 Coroutine *co)
67{
68 Request *req = g_new(Request, 1);
69 *req = (Request) {
70 .co = co,
71 .bh = aio_bh_new(bdrv_get_aio_context(bs), blkreplay_bh_cb, req),
72 };
73 replay_block_event(req->bh, reqid);
74}
75
e858a970
KW
76static int coroutine_fn blkreplay_co_preadv(BlockDriverState *bs,
77 uint64_t offset, uint64_t bytes, QEMUIOVector *qiov, int flags)
63785678 78{
6d0ceb80 79 uint64_t reqid = blkreplay_next_id();
a03ef88f 80 int ret = bdrv_co_preadv(bs->file, offset, bytes, qiov, flags);
63785678
PD
81 block_request_create(reqid, bs, qemu_coroutine_self());
82 qemu_coroutine_yield();
83
84 return ret;
85}
86
e858a970
KW
87static int coroutine_fn blkreplay_co_pwritev(BlockDriverState *bs,
88 uint64_t offset, uint64_t bytes, QEMUIOVector *qiov, int flags)
63785678 89{
6d0ceb80 90 uint64_t reqid = blkreplay_next_id();
a03ef88f 91 int ret = bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags);
63785678
PD
92 block_request_create(reqid, bs, qemu_coroutine_self());
93 qemu_coroutine_yield();
94
95 return ret;
96}
97
9c21a422
EB
98static int coroutine_fn blkreplay_co_pwrite_zeroes(BlockDriverState *bs,
99 int64_t offset, int count, BdrvRequestFlags flags)
63785678 100{
6d0ceb80 101 uint64_t reqid = blkreplay_next_id();
a03ef88f 102 int ret = bdrv_co_pwrite_zeroes(bs->file, offset, count, flags);
63785678
PD
103 block_request_create(reqid, bs, qemu_coroutine_self());
104 qemu_coroutine_yield();
105
106 return ret;
107}
108
aba76e2f
EB
109static int coroutine_fn blkreplay_co_pdiscard(BlockDriverState *bs,
110 int64_t offset, int count)
63785678 111{
6d0ceb80 112 uint64_t reqid = blkreplay_next_id();
aba76e2f 113 int ret = bdrv_co_pdiscard(bs->file->bs, offset, count);
63785678
PD
114 block_request_create(reqid, bs, qemu_coroutine_self());
115 qemu_coroutine_yield();
116
117 return ret;
118}
119
120static int coroutine_fn blkreplay_co_flush(BlockDriverState *bs)
121{
6d0ceb80 122 uint64_t reqid = blkreplay_next_id();
63785678
PD
123 int ret = bdrv_co_flush(bs->file->bs);
124 block_request_create(reqid, bs, qemu_coroutine_self());
125 qemu_coroutine_yield();
126
127 return ret;
128}
129
130static BlockDriver bdrv_blkreplay = {
131 .format_name = "blkreplay",
132 .protocol_name = "blkreplay",
133 .instance_size = 0,
134
135 .bdrv_file_open = blkreplay_open,
136 .bdrv_close = blkreplay_close,
d7010dfb 137 .bdrv_child_perm = bdrv_filter_default_perms,
63785678
PD
138 .bdrv_getlength = blkreplay_getlength,
139
e858a970
KW
140 .bdrv_co_preadv = blkreplay_co_preadv,
141 .bdrv_co_pwritev = blkreplay_co_pwritev,
63785678 142
9c21a422 143 .bdrv_co_pwrite_zeroes = blkreplay_co_pwrite_zeroes,
aba76e2f 144 .bdrv_co_pdiscard = blkreplay_co_pdiscard,
63785678
PD
145 .bdrv_co_flush = blkreplay_co_flush,
146};
147
148static void bdrv_blkreplay_init(void)
149{
150 bdrv_register(&bdrv_blkreplay);
151}
152
153block_init(bdrv_blkreplay_init);