]>
Commit | Line | Data |
---|---|---|
e819ab22 FZ |
1 | /* |
2 | * Null block driver | |
3 | * | |
4 | * Authors: | |
5 | * Fam Zheng <[email protected]> | |
6 | * | |
7 | * Copyright (C) 2014 Red Hat, Inc. | |
8 | * | |
9 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
10 | * See the COPYING file in the top-level directory. | |
11 | */ | |
12 | ||
80c71a24 | 13 | #include "qemu/osdep.h" |
da34e65c | 14 | #include "qapi/error.h" |
67882b15 HR |
15 | #include "qapi/qmp/qdict.h" |
16 | #include "qapi/qmp/qstring.h" | |
922a01a0 | 17 | #include "qemu/option.h" |
e819ab22 FZ |
18 | #include "block/block_int.h" |
19 | ||
e5e51dd3 | 20 | #define NULL_OPT_LATENCY "latency-ns" |
cd219eb1 | 21 | #define NULL_OPT_ZEROES "read-zeroes" |
e5e51dd3 | 22 | |
e819ab22 FZ |
23 | typedef struct { |
24 | int64_t length; | |
e5e51dd3 | 25 | int64_t latency_ns; |
cd219eb1 | 26 | bool read_zeroes; |
e819ab22 FZ |
27 | } BDRVNullState; |
28 | ||
29 | static QemuOptsList runtime_opts = { | |
30 | .name = "null", | |
31 | .head = QTAILQ_HEAD_INITIALIZER(runtime_opts.head), | |
32 | .desc = { | |
e819ab22 FZ |
33 | { |
34 | .name = BLOCK_OPT_SIZE, | |
35 | .type = QEMU_OPT_SIZE, | |
36 | .help = "size of the null block", | |
37 | }, | |
e5e51dd3 FZ |
38 | { |
39 | .name = NULL_OPT_LATENCY, | |
40 | .type = QEMU_OPT_NUMBER, | |
41 | .help = "nanoseconds (approximated) to wait " | |
42 | "before completing request", | |
43 | }, | |
cd219eb1 HR |
44 | { |
45 | .name = NULL_OPT_ZEROES, | |
46 | .type = QEMU_OPT_BOOL, | |
47 | .help = "return zeroes when read", | |
48 | }, | |
e819ab22 FZ |
49 | { /* end of list */ } |
50 | }, | |
51 | }; | |
52 | ||
809eb70e KW |
53 | static void null_co_parse_filename(const char *filename, QDict *options, |
54 | Error **errp) | |
55 | { | |
56 | /* This functions only exists so that a null-co:// filename is accepted | |
57 | * with the null-co driver. */ | |
58 | if (strcmp(filename, "null-co://")) { | |
59 | error_setg(errp, "The only allowed filename for this driver is " | |
60 | "'null-co://'"); | |
61 | return; | |
62 | } | |
63 | } | |
64 | ||
65 | static void null_aio_parse_filename(const char *filename, QDict *options, | |
66 | Error **errp) | |
67 | { | |
68 | /* This functions only exists so that a null-aio:// filename is accepted | |
69 | * with the null-aio driver. */ | |
70 | if (strcmp(filename, "null-aio://")) { | |
71 | error_setg(errp, "The only allowed filename for this driver is " | |
72 | "'null-aio://'"); | |
73 | return; | |
74 | } | |
75 | } | |
76 | ||
e819ab22 FZ |
77 | static int null_file_open(BlockDriverState *bs, QDict *options, int flags, |
78 | Error **errp) | |
79 | { | |
80 | QemuOpts *opts; | |
81 | BDRVNullState *s = bs->opaque; | |
e5e51dd3 | 82 | int ret = 0; |
e819ab22 FZ |
83 | |
84 | opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort); | |
85 | qemu_opts_absorb_qdict(opts, options, &error_abort); | |
86 | s->length = | |
87 | qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 1 << 30); | |
e5e51dd3 FZ |
88 | s->latency_ns = |
89 | qemu_opt_get_number(opts, NULL_OPT_LATENCY, 0); | |
90 | if (s->latency_ns < 0) { | |
91 | error_setg(errp, "latency-ns is invalid"); | |
92 | ret = -EINVAL; | |
93 | } | |
cd219eb1 | 94 | s->read_zeroes = qemu_opt_get_bool(opts, NULL_OPT_ZEROES, false); |
e819ab22 | 95 | qemu_opts_del(opts); |
b3241e92 | 96 | bs->supported_write_flags = BDRV_REQ_FUA; |
e5e51dd3 | 97 | return ret; |
e819ab22 FZ |
98 | } |
99 | ||
e819ab22 FZ |
100 | static int64_t null_getlength(BlockDriverState *bs) |
101 | { | |
102 | BDRVNullState *s = bs->opaque; | |
103 | return s->length; | |
104 | } | |
105 | ||
e5e51dd3 FZ |
106 | static coroutine_fn int null_co_common(BlockDriverState *bs) |
107 | { | |
108 | BDRVNullState *s = bs->opaque; | |
109 | ||
110 | if (s->latency_ns) { | |
78f1d3d6 | 111 | qemu_co_sleep_ns(QEMU_CLOCK_REALTIME, s->latency_ns); |
e5e51dd3 FZ |
112 | } |
113 | return 0; | |
114 | } | |
115 | ||
b3241e92 EB |
116 | static coroutine_fn int null_co_preadv(BlockDriverState *bs, |
117 | uint64_t offset, uint64_t bytes, | |
118 | QEMUIOVector *qiov, int flags) | |
e819ab22 | 119 | { |
cd219eb1 HR |
120 | BDRVNullState *s = bs->opaque; |
121 | ||
122 | if (s->read_zeroes) { | |
b3241e92 | 123 | qemu_iovec_memset(qiov, 0, 0, bytes); |
cd219eb1 HR |
124 | } |
125 | ||
e5e51dd3 | 126 | return null_co_common(bs); |
e819ab22 FZ |
127 | } |
128 | ||
b3241e92 EB |
129 | static coroutine_fn int null_co_pwritev(BlockDriverState *bs, |
130 | uint64_t offset, uint64_t bytes, | |
131 | QEMUIOVector *qiov, int flags) | |
e819ab22 | 132 | { |
e5e51dd3 | 133 | return null_co_common(bs); |
e819ab22 FZ |
134 | } |
135 | ||
136 | static coroutine_fn int null_co_flush(BlockDriverState *bs) | |
137 | { | |
e5e51dd3 | 138 | return null_co_common(bs); |
e819ab22 FZ |
139 | } |
140 | ||
141 | typedef struct { | |
7c84b1b8 | 142 | BlockAIOCB common; |
e5e51dd3 | 143 | QEMUTimer timer; |
e819ab22 FZ |
144 | } NullAIOCB; |
145 | ||
146 | static const AIOCBInfo null_aiocb_info = { | |
147 | .aiocb_size = sizeof(NullAIOCB), | |
148 | }; | |
149 | ||
150 | static void null_bh_cb(void *opaque) | |
151 | { | |
152 | NullAIOCB *acb = opaque; | |
153 | acb->common.cb(acb->common.opaque, 0); | |
e819ab22 FZ |
154 | qemu_aio_unref(acb); |
155 | } | |
156 | ||
e5e51dd3 FZ |
157 | static void null_timer_cb(void *opaque) |
158 | { | |
159 | NullAIOCB *acb = opaque; | |
160 | acb->common.cb(acb->common.opaque, 0); | |
161 | timer_deinit(&acb->timer); | |
162 | qemu_aio_unref(acb); | |
163 | } | |
164 | ||
7c84b1b8 | 165 | static inline BlockAIOCB *null_aio_common(BlockDriverState *bs, |
097310b5 | 166 | BlockCompletionFunc *cb, |
7c84b1b8 | 167 | void *opaque) |
e819ab22 FZ |
168 | { |
169 | NullAIOCB *acb; | |
e5e51dd3 | 170 | BDRVNullState *s = bs->opaque; |
e819ab22 FZ |
171 | |
172 | acb = qemu_aio_get(&null_aiocb_info, bs, cb, opaque); | |
e5e51dd3 FZ |
173 | /* Only emulate latency after vcpu is running. */ |
174 | if (s->latency_ns) { | |
175 | aio_timer_init(bdrv_get_aio_context(bs), &acb->timer, | |
176 | QEMU_CLOCK_REALTIME, SCALE_NS, | |
177 | null_timer_cb, acb); | |
178 | timer_mod_ns(&acb->timer, | |
179 | qemu_clock_get_ns(QEMU_CLOCK_REALTIME) + s->latency_ns); | |
180 | } else { | |
fffb6e12 | 181 | aio_bh_schedule_oneshot(bdrv_get_aio_context(bs), null_bh_cb, acb); |
e5e51dd3 | 182 | } |
e819ab22 FZ |
183 | return &acb->common; |
184 | } | |
185 | ||
b3241e92 EB |
186 | static BlockAIOCB *null_aio_preadv(BlockDriverState *bs, |
187 | uint64_t offset, uint64_t bytes, | |
188 | QEMUIOVector *qiov, int flags, | |
189 | BlockCompletionFunc *cb, | |
190 | void *opaque) | |
e819ab22 | 191 | { |
cd219eb1 HR |
192 | BDRVNullState *s = bs->opaque; |
193 | ||
194 | if (s->read_zeroes) { | |
b3241e92 | 195 | qemu_iovec_memset(qiov, 0, 0, bytes); |
cd219eb1 HR |
196 | } |
197 | ||
e819ab22 FZ |
198 | return null_aio_common(bs, cb, opaque); |
199 | } | |
200 | ||
b3241e92 EB |
201 | static BlockAIOCB *null_aio_pwritev(BlockDriverState *bs, |
202 | uint64_t offset, uint64_t bytes, | |
203 | QEMUIOVector *qiov, int flags, | |
204 | BlockCompletionFunc *cb, | |
205 | void *opaque) | |
e819ab22 FZ |
206 | { |
207 | return null_aio_common(bs, cb, opaque); | |
208 | } | |
209 | ||
7c84b1b8 | 210 | static BlockAIOCB *null_aio_flush(BlockDriverState *bs, |
097310b5 | 211 | BlockCompletionFunc *cb, |
7c84b1b8 | 212 | void *opaque) |
e819ab22 FZ |
213 | { |
214 | return null_aio_common(bs, cb, opaque); | |
215 | } | |
216 | ||
1c2b49a1 FZ |
217 | static int null_reopen_prepare(BDRVReopenState *reopen_state, |
218 | BlockReopenQueue *queue, Error **errp) | |
219 | { | |
220 | return 0; | |
221 | } | |
222 | ||
05c33f10 EB |
223 | static int coroutine_fn null_co_block_status(BlockDriverState *bs, |
224 | bool want_zero, int64_t offset, | |
225 | int64_t bytes, int64_t *pnum, | |
226 | int64_t *map, | |
227 | BlockDriverState **file) | |
a9063927 HR |
228 | { |
229 | BDRVNullState *s = bs->opaque; | |
05c33f10 | 230 | int ret = BDRV_BLOCK_OFFSET_VALID; |
a9063927 | 231 | |
05c33f10 EB |
232 | *pnum = bytes; |
233 | *map = offset; | |
a9063927 HR |
234 | *file = bs; |
235 | ||
236 | if (s->read_zeroes) { | |
05c33f10 | 237 | ret |= BDRV_BLOCK_ZERO; |
a9063927 | 238 | } |
05c33f10 | 239 | return ret; |
a9063927 HR |
240 | } |
241 | ||
67882b15 HR |
242 | static void null_refresh_filename(BlockDriverState *bs, QDict *opts) |
243 | { | |
67882b15 HR |
244 | qdict_del(opts, "filename"); |
245 | ||
246 | if (!qdict_size(opts)) { | |
247 | snprintf(bs->exact_filename, sizeof(bs->exact_filename), "%s://", | |
248 | bs->drv->format_name); | |
249 | } | |
250 | ||
46f5ac20 | 251 | qdict_put_str(opts, "driver", bs->drv->format_name); |
f5a74a5a | 252 | bs->full_open_options = qobject_ref(opts); |
67882b15 HR |
253 | } |
254 | ||
e819ab22 FZ |
255 | static BlockDriver bdrv_null_co = { |
256 | .format_name = "null-co", | |
257 | .protocol_name = "null-co", | |
258 | .instance_size = sizeof(BDRVNullState), | |
259 | ||
260 | .bdrv_file_open = null_file_open, | |
809eb70e | 261 | .bdrv_parse_filename = null_co_parse_filename, |
e819ab22 FZ |
262 | .bdrv_getlength = null_getlength, |
263 | ||
b3241e92 EB |
264 | .bdrv_co_preadv = null_co_preadv, |
265 | .bdrv_co_pwritev = null_co_pwritev, | |
e819ab22 | 266 | .bdrv_co_flush_to_disk = null_co_flush, |
1c2b49a1 | 267 | .bdrv_reopen_prepare = null_reopen_prepare, |
a9063927 | 268 | |
05c33f10 | 269 | .bdrv_co_block_status = null_co_block_status, |
67882b15 HR |
270 | |
271 | .bdrv_refresh_filename = null_refresh_filename, | |
e819ab22 FZ |
272 | }; |
273 | ||
274 | static BlockDriver bdrv_null_aio = { | |
275 | .format_name = "null-aio", | |
276 | .protocol_name = "null-aio", | |
277 | .instance_size = sizeof(BDRVNullState), | |
278 | ||
279 | .bdrv_file_open = null_file_open, | |
809eb70e | 280 | .bdrv_parse_filename = null_aio_parse_filename, |
e819ab22 FZ |
281 | .bdrv_getlength = null_getlength, |
282 | ||
b3241e92 EB |
283 | .bdrv_aio_preadv = null_aio_preadv, |
284 | .bdrv_aio_pwritev = null_aio_pwritev, | |
e819ab22 | 285 | .bdrv_aio_flush = null_aio_flush, |
1c2b49a1 | 286 | .bdrv_reopen_prepare = null_reopen_prepare, |
a9063927 | 287 | |
05c33f10 | 288 | .bdrv_co_block_status = null_co_block_status, |
67882b15 HR |
289 | |
290 | .bdrv_refresh_filename = null_refresh_filename, | |
e819ab22 FZ |
291 | }; |
292 | ||
293 | static void bdrv_null_init(void) | |
294 | { | |
295 | bdrv_register(&bdrv_null_co); | |
296 | bdrv_register(&bdrv_null_aio); | |
297 | } | |
298 | ||
299 | block_init(bdrv_null_init); |