2 * QEMU block throttling filter driver infrastructure
4 * Copyright (c) 2017 Manos Pitsidianakis
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 or
9 * (at your option) version 3 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "block/throttle-groups.h"
22 #include "qemu/option.h"
23 #include "qemu/throttle-options.h"
24 #include "qapi/error.h"
26 static QemuOptsList throttle_opts
= {
28 .head
= QTAILQ_HEAD_INITIALIZER(throttle_opts
.head
),
31 .name
= QEMU_OPT_THROTTLE_GROUP_NAME
,
32 .type
= QEMU_OPT_STRING
,
33 .help
= "Name of the throttle group",
40 * If this function succeeds then the throttle group name is stored in
41 * @group and must be freed by the caller.
42 * If there's an error then @group remains unmodified.
44 static int throttle_parse_options(QDict
*options
, char **group
, Error
**errp
)
47 const char *group_name
;
48 Error
*local_err
= NULL
;
49 QemuOpts
*opts
= qemu_opts_create(&throttle_opts
, NULL
, 0, &error_abort
);
51 qemu_opts_absorb_qdict(opts
, options
, &local_err
);
53 error_propagate(errp
, local_err
);
58 group_name
= qemu_opt_get(opts
, QEMU_OPT_THROTTLE_GROUP_NAME
);
60 error_setg(errp
, "Please specify a throttle group");
63 } else if (!throttle_group_exists(group_name
)) {
64 error_setg(errp
, "Throttle group '%s' does not exist", group_name
);
69 *group
= g_strdup(group_name
);
76 static int throttle_open(BlockDriverState
*bs
, QDict
*options
,
77 int flags
, Error
**errp
)
79 ThrottleGroupMember
*tgm
= bs
->opaque
;
83 bs
->file
= bdrv_open_child(NULL
, options
, "file", bs
,
84 &child_file
, false, errp
);
88 bs
->supported_write_flags
= bs
->file
->bs
->supported_write_flags
|
89 BDRV_REQ_WRITE_UNCHANGED
;
90 bs
->supported_zero_flags
= bs
->file
->bs
->supported_zero_flags
|
91 BDRV_REQ_WRITE_UNCHANGED
;
93 ret
= throttle_parse_options(options
, &group
, errp
);
95 /* Register membership to group with name group_name */
96 throttle_group_register_tgm(tgm
, group
, bdrv_get_aio_context(bs
));
103 static void throttle_close(BlockDriverState
*bs
)
105 ThrottleGroupMember
*tgm
= bs
->opaque
;
106 throttle_group_unregister_tgm(tgm
);
110 static int64_t throttle_getlength(BlockDriverState
*bs
)
112 return bdrv_getlength(bs
->file
->bs
);
115 static int coroutine_fn
throttle_co_preadv(BlockDriverState
*bs
,
116 uint64_t offset
, uint64_t bytes
,
117 QEMUIOVector
*qiov
, int flags
)
120 ThrottleGroupMember
*tgm
= bs
->opaque
;
121 throttle_group_co_io_limits_intercept(tgm
, bytes
, false);
123 return bdrv_co_preadv(bs
->file
, offset
, bytes
, qiov
, flags
);
126 static int coroutine_fn
throttle_co_pwritev(BlockDriverState
*bs
,
127 uint64_t offset
, uint64_t bytes
,
128 QEMUIOVector
*qiov
, int flags
)
130 ThrottleGroupMember
*tgm
= bs
->opaque
;
131 throttle_group_co_io_limits_intercept(tgm
, bytes
, true);
133 return bdrv_co_pwritev(bs
->file
, offset
, bytes
, qiov
, flags
);
136 static int coroutine_fn
throttle_co_pwrite_zeroes(BlockDriverState
*bs
,
137 int64_t offset
, int bytes
,
138 BdrvRequestFlags flags
)
140 ThrottleGroupMember
*tgm
= bs
->opaque
;
141 throttle_group_co_io_limits_intercept(tgm
, bytes
, true);
143 return bdrv_co_pwrite_zeroes(bs
->file
, offset
, bytes
, flags
);
146 static int coroutine_fn
throttle_co_pdiscard(BlockDriverState
*bs
,
147 int64_t offset
, int bytes
)
149 ThrottleGroupMember
*tgm
= bs
->opaque
;
150 throttle_group_co_io_limits_intercept(tgm
, bytes
, true);
152 return bdrv_co_pdiscard(bs
->file
, offset
, bytes
);
155 static int throttle_co_flush(BlockDriverState
*bs
)
157 return bdrv_co_flush(bs
->file
->bs
);
160 static void throttle_detach_aio_context(BlockDriverState
*bs
)
162 ThrottleGroupMember
*tgm
= bs
->opaque
;
163 throttle_group_detach_aio_context(tgm
);
166 static void throttle_attach_aio_context(BlockDriverState
*bs
,
167 AioContext
*new_context
)
169 ThrottleGroupMember
*tgm
= bs
->opaque
;
170 throttle_group_attach_aio_context(tgm
, new_context
);
173 static int throttle_reopen_prepare(BDRVReopenState
*reopen_state
,
174 BlockReopenQueue
*queue
, Error
**errp
)
179 assert(reopen_state
!= NULL
);
180 assert(reopen_state
->bs
!= NULL
);
182 ret
= throttle_parse_options(reopen_state
->options
, &group
, errp
);
183 reopen_state
->opaque
= group
;
187 static void throttle_reopen_commit(BDRVReopenState
*reopen_state
)
189 BlockDriverState
*bs
= reopen_state
->bs
;
190 ThrottleGroupMember
*tgm
= bs
->opaque
;
191 char *group
= reopen_state
->opaque
;
195 if (strcmp(group
, throttle_group_get_name(tgm
))) {
196 throttle_group_unregister_tgm(tgm
);
197 throttle_group_register_tgm(tgm
, group
, bdrv_get_aio_context(bs
));
199 g_free(reopen_state
->opaque
);
200 reopen_state
->opaque
= NULL
;
203 static void throttle_reopen_abort(BDRVReopenState
*reopen_state
)
205 g_free(reopen_state
->opaque
);
206 reopen_state
->opaque
= NULL
;
209 static bool throttle_recurse_is_first_non_filter(BlockDriverState
*bs
,
210 BlockDriverState
*candidate
)
212 return bdrv_recurse_is_first_non_filter(bs
->file
->bs
, candidate
);
215 static void coroutine_fn
throttle_co_drain_begin(BlockDriverState
*bs
)
217 ThrottleGroupMember
*tgm
= bs
->opaque
;
218 if (atomic_fetch_inc(&tgm
->io_limits_disabled
) == 0) {
219 throttle_group_restart_tgm(tgm
);
223 static void coroutine_fn
throttle_co_drain_end(BlockDriverState
*bs
)
225 ThrottleGroupMember
*tgm
= bs
->opaque
;
226 assert(tgm
->io_limits_disabled
);
227 atomic_dec(&tgm
->io_limits_disabled
);
230 static const char *const throttle_strong_runtime_opts
[] = {
231 QEMU_OPT_THROTTLE_GROUP_NAME
,
236 static BlockDriver bdrv_throttle
= {
237 .format_name
= "throttle",
238 .instance_size
= sizeof(ThrottleGroupMember
),
240 .bdrv_open
= throttle_open
,
241 .bdrv_close
= throttle_close
,
242 .bdrv_co_flush
= throttle_co_flush
,
244 .bdrv_child_perm
= bdrv_filter_default_perms
,
246 .bdrv_getlength
= throttle_getlength
,
248 .bdrv_co_preadv
= throttle_co_preadv
,
249 .bdrv_co_pwritev
= throttle_co_pwritev
,
251 .bdrv_co_pwrite_zeroes
= throttle_co_pwrite_zeroes
,
252 .bdrv_co_pdiscard
= throttle_co_pdiscard
,
254 .bdrv_recurse_is_first_non_filter
= throttle_recurse_is_first_non_filter
,
256 .bdrv_attach_aio_context
= throttle_attach_aio_context
,
257 .bdrv_detach_aio_context
= throttle_detach_aio_context
,
259 .bdrv_reopen_prepare
= throttle_reopen_prepare
,
260 .bdrv_reopen_commit
= throttle_reopen_commit
,
261 .bdrv_reopen_abort
= throttle_reopen_abort
,
262 .bdrv_co_block_status
= bdrv_co_block_status_from_file
,
264 .bdrv_co_drain_begin
= throttle_co_drain_begin
,
265 .bdrv_co_drain_end
= throttle_co_drain_end
,
268 .strong_runtime_opts
= throttle_strong_runtime_opts
,
271 static void bdrv_throttle_init(void)
273 bdrv_register(&bdrv_throttle
);
276 block_init(bdrv_throttle_init
);