5 * Fam Zheng <famz@redhat.com>
7 * Copyright (C) 2014 Red Hat, Inc.
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.
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qapi/qmp/qdict.h"
16 #include "qapi/qmp/qstring.h"
17 #include "qemu/option.h"
18 #include "block/block_int.h"
20 #define NULL_OPT_LATENCY "latency-ns"
21 #define NULL_OPT_ZEROES "read-zeroes"
29 static QemuOptsList runtime_opts
= {
31 .head
= QTAILQ_HEAD_INITIALIZER(runtime_opts
.head
),
34 .name
= BLOCK_OPT_SIZE
,
35 .type
= QEMU_OPT_SIZE
,
36 .help
= "size of the null block",
39 .name
= NULL_OPT_LATENCY
,
40 .type
= QEMU_OPT_NUMBER
,
41 .help
= "nanoseconds (approximated) to wait "
42 "before completing request",
45 .name
= NULL_OPT_ZEROES
,
46 .type
= QEMU_OPT_BOOL
,
47 .help
= "return zeroes when read",
53 static void null_co_parse_filename(const char *filename
, QDict
*options
,
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 "
65 static void null_aio_parse_filename(const char *filename
, QDict
*options
,
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 "
77 static int null_file_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
81 BDRVNullState
*s
= bs
->opaque
;
84 opts
= qemu_opts_create(&runtime_opts
, NULL
, 0, &error_abort
);
85 qemu_opts_absorb_qdict(opts
, options
, &error_abort
);
87 qemu_opt_get_size(opts
, BLOCK_OPT_SIZE
, 1 << 30);
89 qemu_opt_get_number(opts
, NULL_OPT_LATENCY
, 0);
90 if (s
->latency_ns
< 0) {
91 error_setg(errp
, "latency-ns is invalid");
94 s
->read_zeroes
= qemu_opt_get_bool(opts
, NULL_OPT_ZEROES
, false);
99 static void null_close(BlockDriverState
*bs
)
103 static int64_t null_getlength(BlockDriverState
*bs
)
105 BDRVNullState
*s
= bs
->opaque
;
109 static coroutine_fn
int null_co_common(BlockDriverState
*bs
)
111 BDRVNullState
*s
= bs
->opaque
;
114 qemu_co_sleep_ns(QEMU_CLOCK_REALTIME
, s
->latency_ns
);
119 static coroutine_fn
int null_co_readv(BlockDriverState
*bs
,
120 int64_t sector_num
, int nb_sectors
,
123 BDRVNullState
*s
= bs
->opaque
;
125 if (s
->read_zeroes
) {
126 qemu_iovec_memset(qiov
, 0, 0, nb_sectors
* BDRV_SECTOR_SIZE
);
129 return null_co_common(bs
);
132 static coroutine_fn
int null_co_writev(BlockDriverState
*bs
,
133 int64_t sector_num
, int nb_sectors
,
136 return null_co_common(bs
);
139 static coroutine_fn
int null_co_flush(BlockDriverState
*bs
)
141 return null_co_common(bs
);
149 static const AIOCBInfo null_aiocb_info
= {
150 .aiocb_size
= sizeof(NullAIOCB
),
153 static void null_bh_cb(void *opaque
)
155 NullAIOCB
*acb
= opaque
;
156 acb
->common
.cb(acb
->common
.opaque
, 0);
160 static void null_timer_cb(void *opaque
)
162 NullAIOCB
*acb
= opaque
;
163 acb
->common
.cb(acb
->common
.opaque
, 0);
164 timer_deinit(&acb
->timer
);
168 static inline BlockAIOCB
*null_aio_common(BlockDriverState
*bs
,
169 BlockCompletionFunc
*cb
,
173 BDRVNullState
*s
= bs
->opaque
;
175 acb
= qemu_aio_get(&null_aiocb_info
, bs
, cb
, opaque
);
176 /* Only emulate latency after vcpu is running. */
178 aio_timer_init(bdrv_get_aio_context(bs
), &acb
->timer
,
179 QEMU_CLOCK_REALTIME
, SCALE_NS
,
181 timer_mod_ns(&acb
->timer
,
182 qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) + s
->latency_ns
);
184 aio_bh_schedule_oneshot(bdrv_get_aio_context(bs
), null_bh_cb
, acb
);
189 static BlockAIOCB
*null_aio_readv(BlockDriverState
*bs
,
190 int64_t sector_num
, QEMUIOVector
*qiov
,
192 BlockCompletionFunc
*cb
,
195 BDRVNullState
*s
= bs
->opaque
;
197 if (s
->read_zeroes
) {
198 qemu_iovec_memset(qiov
, 0, 0, nb_sectors
* BDRV_SECTOR_SIZE
);
201 return null_aio_common(bs
, cb
, opaque
);
204 static BlockAIOCB
*null_aio_writev(BlockDriverState
*bs
,
205 int64_t sector_num
, QEMUIOVector
*qiov
,
207 BlockCompletionFunc
*cb
,
210 return null_aio_common(bs
, cb
, opaque
);
213 static BlockAIOCB
*null_aio_flush(BlockDriverState
*bs
,
214 BlockCompletionFunc
*cb
,
217 return null_aio_common(bs
, cb
, opaque
);
220 static int null_reopen_prepare(BDRVReopenState
*reopen_state
,
221 BlockReopenQueue
*queue
, Error
**errp
)
226 static int coroutine_fn
null_co_block_status(BlockDriverState
*bs
,
227 bool want_zero
, int64_t offset
,
228 int64_t bytes
, int64_t *pnum
,
230 BlockDriverState
**file
)
232 BDRVNullState
*s
= bs
->opaque
;
233 int ret
= BDRV_BLOCK_OFFSET_VALID
;
239 if (s
->read_zeroes
) {
240 ret
|= BDRV_BLOCK_ZERO
;
245 static void null_refresh_filename(BlockDriverState
*bs
, QDict
*opts
)
248 qdict_del(opts
, "filename");
250 if (!qdict_size(opts
)) {
251 snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
), "%s://",
252 bs
->drv
->format_name
);
255 qdict_put_str(opts
, "driver", bs
->drv
->format_name
);
256 bs
->full_open_options
= opts
;
259 static BlockDriver bdrv_null_co
= {
260 .format_name
= "null-co",
261 .protocol_name
= "null-co",
262 .instance_size
= sizeof(BDRVNullState
),
264 .bdrv_file_open
= null_file_open
,
265 .bdrv_parse_filename
= null_co_parse_filename
,
266 .bdrv_close
= null_close
,
267 .bdrv_getlength
= null_getlength
,
269 .bdrv_co_readv
= null_co_readv
,
270 .bdrv_co_writev
= null_co_writev
,
271 .bdrv_co_flush_to_disk
= null_co_flush
,
272 .bdrv_reopen_prepare
= null_reopen_prepare
,
274 .bdrv_co_block_status
= null_co_block_status
,
276 .bdrv_refresh_filename
= null_refresh_filename
,
279 static BlockDriver bdrv_null_aio
= {
280 .format_name
= "null-aio",
281 .protocol_name
= "null-aio",
282 .instance_size
= sizeof(BDRVNullState
),
284 .bdrv_file_open
= null_file_open
,
285 .bdrv_parse_filename
= null_aio_parse_filename
,
286 .bdrv_close
= null_close
,
287 .bdrv_getlength
= null_getlength
,
289 .bdrv_aio_readv
= null_aio_readv
,
290 .bdrv_aio_writev
= null_aio_writev
,
291 .bdrv_aio_flush
= null_aio_flush
,
292 .bdrv_reopen_prepare
= null_reopen_prepare
,
294 .bdrv_co_block_status
= null_co_block_status
,
296 .bdrv_refresh_filename
= null_refresh_filename
,
299 static void bdrv_null_init(void)
301 bdrv_register(&bdrv_null_co
);
302 bdrv_register(&bdrv_null_aio
);
305 block_init(bdrv_null_init
);