x86/cpu: Use max host physical address if -cpu max option is applied
[qemu/ar7.git] / block / throttle-groups.c
blobabd16ed9dbfdc0b07534ab79a8986ff068b12262
1 /*
2 * QEMU block throttling group infrastructure
4 * Copyright (C) Nodalink, EURL. 2014
5 * Copyright (C) Igalia, S.L. 2015
7 * Authors:
8 * BenoƮt Canet <benoit.canet@nodalink.com>
9 * Alberto Garcia <berto@igalia.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 or
14 * (at your option) version 3 of the License.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include "qemu/osdep.h"
26 #include "sysemu/block-backend.h"
27 #include "block/throttle-groups.h"
28 #include "qemu/throttle-options.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/queue.h"
31 #include "qemu/thread.h"
32 #include "sysemu/qtest.h"
33 #include "qapi/error.h"
34 #include "qapi/qapi-visit-block-core.h"
35 #include "qom/object.h"
36 #include "qom/object_interfaces.h"
38 static void throttle_group_obj_init(Object *obj);
39 static void throttle_group_obj_complete(UserCreatable *obj, Error **errp);
40 static void timer_cb(ThrottleGroupMember *tgm, bool is_write);
42 /* The ThrottleGroup structure (with its ThrottleState) is shared
43 * among different ThrottleGroupMembers and it's independent from
44 * AioContext, so in order to use it from different threads it needs
45 * its own locking.
47 * This locking is however handled internally in this file, so it's
48 * transparent to outside users.
50 * The whole ThrottleGroup structure is private and invisible to
51 * outside users, that only use it through its ThrottleState.
53 * In addition to the ThrottleGroup structure, ThrottleGroupMember has
54 * fields that need to be accessed by other members of the group and
55 * therefore also need to be protected by this lock. Once a
56 * ThrottleGroupMember is registered in a group those fields can be accessed
57 * by other threads any time.
59 * Again, all this is handled internally and is mostly transparent to
60 * the outside. The 'throttle_timers' field however has an additional
61 * constraint because it may be temporarily invalid (see for example
62 * blk_set_aio_context()). Therefore in this file a thread will
63 * access some other ThrottleGroupMember's timers only after verifying that
64 * that ThrottleGroupMember has throttled requests in the queue.
66 struct ThrottleGroup {
67 Object parent_obj;
69 /* refuse individual property change if initialization is complete */
70 bool is_initialized;
71 char *name; /* This is constant during the lifetime of the group */
73 QemuMutex lock; /* This lock protects the following four fields */
74 ThrottleState ts;
75 QLIST_HEAD(, ThrottleGroupMember) head;
76 ThrottleGroupMember *tokens[2];
77 bool any_timer_armed[2];
78 QEMUClockType clock_type;
80 /* This field is protected by the global QEMU mutex */
81 QTAILQ_ENTRY(ThrottleGroup) list;
84 /* This is protected by the global QEMU mutex */
85 static QTAILQ_HEAD(, ThrottleGroup) throttle_groups =
86 QTAILQ_HEAD_INITIALIZER(throttle_groups);
89 /* This function reads throttle_groups and must be called under the global
90 * mutex.
92 static ThrottleGroup *throttle_group_by_name(const char *name)
94 ThrottleGroup *iter;
96 /* Look for an existing group with that name */
97 QTAILQ_FOREACH(iter, &throttle_groups, list) {
98 if (!g_strcmp0(name, iter->name)) {
99 return iter;
103 return NULL;
106 /* This function reads throttle_groups and must be called under the global
107 * mutex.
109 bool throttle_group_exists(const char *name)
111 return throttle_group_by_name(name) != NULL;
114 /* Increments the reference count of a ThrottleGroup given its name.
116 * If no ThrottleGroup is found with the given name a new one is
117 * created.
119 * This function edits throttle_groups and must be called under the global
120 * mutex.
122 * @name: the name of the ThrottleGroup
123 * @ret: the ThrottleState member of the ThrottleGroup
125 ThrottleState *throttle_group_incref(const char *name)
127 ThrottleGroup *tg = NULL;
129 /* Look for an existing group with that name */
130 tg = throttle_group_by_name(name);
132 if (tg) {
133 object_ref(OBJECT(tg));
134 } else {
135 /* Create a new one if not found */
136 /* new ThrottleGroup obj will have a refcnt = 1 */
137 tg = THROTTLE_GROUP(object_new(TYPE_THROTTLE_GROUP));
138 tg->name = g_strdup(name);
139 throttle_group_obj_complete(USER_CREATABLE(tg), &error_abort);
142 return &tg->ts;
145 /* Decrease the reference count of a ThrottleGroup.
147 * When the reference count reaches zero the ThrottleGroup is
148 * destroyed.
150 * This function edits throttle_groups and must be called under the global
151 * mutex.
153 * @ts: The ThrottleGroup to unref, given by its ThrottleState member
155 void throttle_group_unref(ThrottleState *ts)
157 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
158 object_unref(OBJECT(tg));
161 /* Get the name from a ThrottleGroupMember's group. The name (and the pointer)
162 * is guaranteed to remain constant during the lifetime of the group.
164 * @tgm: a ThrottleGroupMember
165 * @ret: the name of the group.
167 const char *throttle_group_get_name(ThrottleGroupMember *tgm)
169 ThrottleGroup *tg = container_of(tgm->throttle_state, ThrottleGroup, ts);
170 return tg->name;
173 /* Return the next ThrottleGroupMember in the round-robin sequence, simulating
174 * a circular list.
176 * This assumes that tg->lock is held.
178 * @tgm: the current ThrottleGroupMember
179 * @ret: the next ThrottleGroupMember in the sequence
181 static ThrottleGroupMember *throttle_group_next_tgm(ThrottleGroupMember *tgm)
183 ThrottleState *ts = tgm->throttle_state;
184 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
185 ThrottleGroupMember *next = QLIST_NEXT(tgm, round_robin);
187 if (!next) {
188 next = QLIST_FIRST(&tg->head);
191 return next;
195 * Return whether a ThrottleGroupMember has pending requests.
197 * This assumes that tg->lock is held.
199 * @tgm: the ThrottleGroupMember
200 * @is_write: the type of operation (read/write)
201 * @ret: whether the ThrottleGroupMember has pending requests.
203 static inline bool tgm_has_pending_reqs(ThrottleGroupMember *tgm,
204 bool is_write)
206 return tgm->pending_reqs[is_write];
209 /* Return the next ThrottleGroupMember in the round-robin sequence with pending
210 * I/O requests.
212 * This assumes that tg->lock is held.
214 * @tgm: the current ThrottleGroupMember
215 * @is_write: the type of operation (read/write)
216 * @ret: the next ThrottleGroupMember with pending requests, or tgm if
217 * there is none.
219 static ThrottleGroupMember *next_throttle_token(ThrottleGroupMember *tgm,
220 bool is_write)
222 ThrottleState *ts = tgm->throttle_state;
223 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
224 ThrottleGroupMember *token, *start;
226 /* If this member has its I/O limits disabled then it means that
227 * it's being drained. Skip the round-robin search and return tgm
228 * immediately if it has pending requests. Otherwise we could be
229 * forcing it to wait for other member's throttled requests. */
230 if (tgm_has_pending_reqs(tgm, is_write) &&
231 qatomic_read(&tgm->io_limits_disabled)) {
232 return tgm;
235 start = token = tg->tokens[is_write];
237 /* get next bs round in round robin style */
238 token = throttle_group_next_tgm(token);
239 while (token != start && !tgm_has_pending_reqs(token, is_write)) {
240 token = throttle_group_next_tgm(token);
243 /* If no IO are queued for scheduling on the next round robin token
244 * then decide the token is the current tgm because chances are
245 * the current tgm got the current request queued.
247 if (token == start && !tgm_has_pending_reqs(token, is_write)) {
248 token = tgm;
251 /* Either we return the original TGM, or one with pending requests */
252 assert(token == tgm || tgm_has_pending_reqs(token, is_write));
254 return token;
257 /* Check if the next I/O request for a ThrottleGroupMember needs to be
258 * throttled or not. If there's no timer set in this group, set one and update
259 * the token accordingly.
261 * This assumes that tg->lock is held.
263 * @tgm: the current ThrottleGroupMember
264 * @is_write: the type of operation (read/write)
265 * @ret: whether the I/O request needs to be throttled or not
267 static bool throttle_group_schedule_timer(ThrottleGroupMember *tgm,
268 bool is_write)
270 ThrottleState *ts = tgm->throttle_state;
271 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
272 ThrottleTimers *tt = &tgm->throttle_timers;
273 bool must_wait;
275 if (qatomic_read(&tgm->io_limits_disabled)) {
276 return false;
279 /* Check if any of the timers in this group is already armed */
280 if (tg->any_timer_armed[is_write]) {
281 return true;
284 must_wait = throttle_schedule_timer(ts, tt, is_write);
286 /* If a timer just got armed, set tgm as the current token */
287 if (must_wait) {
288 tg->tokens[is_write] = tgm;
289 tg->any_timer_armed[is_write] = true;
292 return must_wait;
295 /* Start the next pending I/O request for a ThrottleGroupMember. Return whether
296 * any request was actually pending.
298 * @tgm: the current ThrottleGroupMember
299 * @is_write: the type of operation (read/write)
301 static bool coroutine_fn throttle_group_co_restart_queue(ThrottleGroupMember *tgm,
302 bool is_write)
304 bool ret;
306 qemu_co_mutex_lock(&tgm->throttled_reqs_lock);
307 ret = qemu_co_queue_next(&tgm->throttled_reqs[is_write]);
308 qemu_co_mutex_unlock(&tgm->throttled_reqs_lock);
310 return ret;
313 /* Look for the next pending I/O request and schedule it.
315 * This assumes that tg->lock is held.
317 * @tgm: the current ThrottleGroupMember
318 * @is_write: the type of operation (read/write)
320 static void schedule_next_request(ThrottleGroupMember *tgm, bool is_write)
322 ThrottleState *ts = tgm->throttle_state;
323 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
324 bool must_wait;
325 ThrottleGroupMember *token;
327 /* Check if there's any pending request to schedule next */
328 token = next_throttle_token(tgm, is_write);
329 if (!tgm_has_pending_reqs(token, is_write)) {
330 return;
333 /* Set a timer for the request if it needs to be throttled */
334 must_wait = throttle_group_schedule_timer(token, is_write);
336 /* If it doesn't have to wait, queue it for immediate execution */
337 if (!must_wait) {
338 /* Give preference to requests from the current tgm */
339 if (qemu_in_coroutine() &&
340 throttle_group_co_restart_queue(tgm, is_write)) {
341 token = tgm;
342 } else {
343 ThrottleTimers *tt = &token->throttle_timers;
344 int64_t now = qemu_clock_get_ns(tg->clock_type);
345 timer_mod(tt->timers[is_write], now);
346 tg->any_timer_armed[is_write] = true;
348 tg->tokens[is_write] = token;
352 /* Check if an I/O request needs to be throttled, wait and set a timer
353 * if necessary, and schedule the next request using a round robin
354 * algorithm.
356 * @tgm: the current ThrottleGroupMember
357 * @bytes: the number of bytes for this I/O
358 * @is_write: the type of operation (read/write)
360 void coroutine_fn throttle_group_co_io_limits_intercept(ThrottleGroupMember *tgm,
361 unsigned int bytes,
362 bool is_write)
364 bool must_wait;
365 ThrottleGroupMember *token;
366 ThrottleGroup *tg = container_of(tgm->throttle_state, ThrottleGroup, ts);
367 qemu_mutex_lock(&tg->lock);
369 /* First we check if this I/O has to be throttled. */
370 token = next_throttle_token(tgm, is_write);
371 must_wait = throttle_group_schedule_timer(token, is_write);
373 /* Wait if there's a timer set or queued requests of this type */
374 if (must_wait || tgm->pending_reqs[is_write]) {
375 tgm->pending_reqs[is_write]++;
376 qemu_mutex_unlock(&tg->lock);
377 qemu_co_mutex_lock(&tgm->throttled_reqs_lock);
378 qemu_co_queue_wait(&tgm->throttled_reqs[is_write],
379 &tgm->throttled_reqs_lock);
380 qemu_co_mutex_unlock(&tgm->throttled_reqs_lock);
381 qemu_mutex_lock(&tg->lock);
382 tgm->pending_reqs[is_write]--;
385 /* The I/O will be executed, so do the accounting */
386 throttle_account(tgm->throttle_state, is_write, bytes);
388 /* Schedule the next request */
389 schedule_next_request(tgm, is_write);
391 qemu_mutex_unlock(&tg->lock);
394 typedef struct {
395 ThrottleGroupMember *tgm;
396 bool is_write;
397 } RestartData;
399 static void coroutine_fn throttle_group_restart_queue_entry(void *opaque)
401 RestartData *data = opaque;
402 ThrottleGroupMember *tgm = data->tgm;
403 ThrottleState *ts = tgm->throttle_state;
404 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
405 bool is_write = data->is_write;
406 bool empty_queue;
408 empty_queue = !throttle_group_co_restart_queue(tgm, is_write);
410 /* If the request queue was empty then we have to take care of
411 * scheduling the next one */
412 if (empty_queue) {
413 qemu_mutex_lock(&tg->lock);
414 schedule_next_request(tgm, is_write);
415 qemu_mutex_unlock(&tg->lock);
418 g_free(data);
420 qatomic_dec(&tgm->restart_pending);
421 aio_wait_kick();
424 static void throttle_group_restart_queue(ThrottleGroupMember *tgm, bool is_write)
426 Coroutine *co;
427 RestartData *rd = g_new0(RestartData, 1);
429 rd->tgm = tgm;
430 rd->is_write = is_write;
432 /* This function is called when a timer is fired or when
433 * throttle_group_restart_tgm() is called. Either way, there can
434 * be no timer pending on this tgm at this point */
435 assert(!timer_pending(tgm->throttle_timers.timers[is_write]));
437 qatomic_inc(&tgm->restart_pending);
439 co = qemu_coroutine_create(throttle_group_restart_queue_entry, rd);
440 aio_co_enter(tgm->aio_context, co);
443 void throttle_group_restart_tgm(ThrottleGroupMember *tgm)
445 int i;
447 if (tgm->throttle_state) {
448 for (i = 0; i < 2; i++) {
449 QEMUTimer *t = tgm->throttle_timers.timers[i];
450 if (timer_pending(t)) {
451 /* If there's a pending timer on this tgm, fire it now */
452 timer_del(t);
453 timer_cb(tgm, i);
454 } else {
455 /* Else run the next request from the queue manually */
456 throttle_group_restart_queue(tgm, i);
462 /* Update the throttle configuration for a particular group. Similar
463 * to throttle_config(), but guarantees atomicity within the
464 * throttling group.
466 * @tgm: a ThrottleGroupMember that is a member of the group
467 * @cfg: the configuration to set
469 void throttle_group_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg)
471 ThrottleState *ts = tgm->throttle_state;
472 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
473 qemu_mutex_lock(&tg->lock);
474 throttle_config(ts, tg->clock_type, cfg);
475 qemu_mutex_unlock(&tg->lock);
477 throttle_group_restart_tgm(tgm);
480 /* Get the throttle configuration from a particular group. Similar to
481 * throttle_get_config(), but guarantees atomicity within the
482 * throttling group.
484 * @tgm: a ThrottleGroupMember that is a member of the group
485 * @cfg: the configuration will be written here
487 void throttle_group_get_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg)
489 ThrottleState *ts = tgm->throttle_state;
490 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
491 qemu_mutex_lock(&tg->lock);
492 throttle_get_config(ts, cfg);
493 qemu_mutex_unlock(&tg->lock);
496 /* ThrottleTimers callback. This wakes up a request that was waiting
497 * because it had been throttled.
499 * @tgm: the ThrottleGroupMember whose request had been throttled
500 * @is_write: the type of operation (read/write)
502 static void timer_cb(ThrottleGroupMember *tgm, bool is_write)
504 ThrottleState *ts = tgm->throttle_state;
505 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
507 /* The timer has just been fired, so we can update the flag */
508 qemu_mutex_lock(&tg->lock);
509 tg->any_timer_armed[is_write] = false;
510 qemu_mutex_unlock(&tg->lock);
512 /* Run the request that was waiting for this timer */
513 throttle_group_restart_queue(tgm, is_write);
516 static void read_timer_cb(void *opaque)
518 timer_cb(opaque, false);
521 static void write_timer_cb(void *opaque)
523 timer_cb(opaque, true);
526 /* Register a ThrottleGroupMember from the throttling group, also initializing
527 * its timers and updating its throttle_state pointer to point to it. If a
528 * throttling group with that name does not exist yet, it will be created.
530 * This function edits throttle_groups and must be called under the global
531 * mutex.
533 * @tgm: the ThrottleGroupMember to insert
534 * @groupname: the name of the group
535 * @ctx: the AioContext to use
537 void throttle_group_register_tgm(ThrottleGroupMember *tgm,
538 const char *groupname,
539 AioContext *ctx)
541 int i;
542 ThrottleState *ts = throttle_group_incref(groupname);
543 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
545 tgm->throttle_state = ts;
546 tgm->aio_context = ctx;
547 qatomic_set(&tgm->restart_pending, 0);
549 QEMU_LOCK_GUARD(&tg->lock);
550 /* If the ThrottleGroup is new set this ThrottleGroupMember as the token */
551 for (i = 0; i < 2; i++) {
552 if (!tg->tokens[i]) {
553 tg->tokens[i] = tgm;
557 QLIST_INSERT_HEAD(&tg->head, tgm, round_robin);
559 throttle_timers_init(&tgm->throttle_timers,
560 tgm->aio_context,
561 tg->clock_type,
562 read_timer_cb,
563 write_timer_cb,
564 tgm);
565 qemu_co_mutex_init(&tgm->throttled_reqs_lock);
566 qemu_co_queue_init(&tgm->throttled_reqs[0]);
567 qemu_co_queue_init(&tgm->throttled_reqs[1]);
570 /* Unregister a ThrottleGroupMember from its group, removing it from the list,
571 * destroying the timers and setting the throttle_state pointer to NULL.
573 * The ThrottleGroupMember must not have pending throttled requests, so the
574 * caller has to drain them first.
576 * The group will be destroyed if it's empty after this operation.
578 * @tgm the ThrottleGroupMember to remove
580 void throttle_group_unregister_tgm(ThrottleGroupMember *tgm)
582 ThrottleState *ts = tgm->throttle_state;
583 ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
584 ThrottleGroupMember *token;
585 int i;
587 if (!ts) {
588 /* Discard already unregistered tgm */
589 return;
592 /* Wait for throttle_group_restart_queue_entry() coroutines to finish */
593 AIO_WAIT_WHILE(tgm->aio_context, qatomic_read(&tgm->restart_pending) > 0);
595 WITH_QEMU_LOCK_GUARD(&tg->lock) {
596 for (i = 0; i < 2; i++) {
597 assert(tgm->pending_reqs[i] == 0);
598 assert(qemu_co_queue_empty(&tgm->throttled_reqs[i]));
599 assert(!timer_pending(tgm->throttle_timers.timers[i]));
600 if (tg->tokens[i] == tgm) {
601 token = throttle_group_next_tgm(tgm);
602 /* Take care of the case where this is the last tgm in the group */
603 if (token == tgm) {
604 token = NULL;
606 tg->tokens[i] = token;
610 /* remove the current tgm from the list */
611 QLIST_REMOVE(tgm, round_robin);
612 throttle_timers_destroy(&tgm->throttle_timers);
615 throttle_group_unref(&tg->ts);
616 tgm->throttle_state = NULL;
619 void throttle_group_attach_aio_context(ThrottleGroupMember *tgm,
620 AioContext *new_context)
622 ThrottleTimers *tt = &tgm->throttle_timers;
623 throttle_timers_attach_aio_context(tt, new_context);
624 tgm->aio_context = new_context;
627 void throttle_group_detach_aio_context(ThrottleGroupMember *tgm)
629 ThrottleGroup *tg = container_of(tgm->throttle_state, ThrottleGroup, ts);
630 ThrottleTimers *tt = &tgm->throttle_timers;
631 int i;
633 /* Requests must have been drained */
634 assert(tgm->pending_reqs[0] == 0 && tgm->pending_reqs[1] == 0);
635 assert(qemu_co_queue_empty(&tgm->throttled_reqs[0]));
636 assert(qemu_co_queue_empty(&tgm->throttled_reqs[1]));
638 /* Kick off next ThrottleGroupMember, if necessary */
639 WITH_QEMU_LOCK_GUARD(&tg->lock) {
640 for (i = 0; i < 2; i++) {
641 if (timer_pending(tt->timers[i])) {
642 tg->any_timer_armed[i] = false;
643 schedule_next_request(tgm, i);
648 throttle_timers_detach_aio_context(tt);
649 tgm->aio_context = NULL;
652 #undef THROTTLE_OPT_PREFIX
653 #define THROTTLE_OPT_PREFIX "x-"
655 /* Helper struct and array for QOM property setter/getter */
656 typedef struct {
657 const char *name;
658 BucketType type;
659 enum {
660 AVG,
661 MAX,
662 BURST_LENGTH,
663 IOPS_SIZE,
664 } category;
665 } ThrottleParamInfo;
667 static ThrottleParamInfo properties[] = {
669 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_TOTAL,
670 THROTTLE_OPS_TOTAL, AVG,
673 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_TOTAL_MAX,
674 THROTTLE_OPS_TOTAL, MAX,
677 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_TOTAL_MAX_LENGTH,
678 THROTTLE_OPS_TOTAL, BURST_LENGTH,
681 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_READ,
682 THROTTLE_OPS_READ, AVG,
685 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_READ_MAX,
686 THROTTLE_OPS_READ, MAX,
689 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_READ_MAX_LENGTH,
690 THROTTLE_OPS_READ, BURST_LENGTH,
693 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_WRITE,
694 THROTTLE_OPS_WRITE, AVG,
697 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_WRITE_MAX,
698 THROTTLE_OPS_WRITE, MAX,
701 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_WRITE_MAX_LENGTH,
702 THROTTLE_OPS_WRITE, BURST_LENGTH,
705 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_TOTAL,
706 THROTTLE_BPS_TOTAL, AVG,
709 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_TOTAL_MAX,
710 THROTTLE_BPS_TOTAL, MAX,
713 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_TOTAL_MAX_LENGTH,
714 THROTTLE_BPS_TOTAL, BURST_LENGTH,
717 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_READ,
718 THROTTLE_BPS_READ, AVG,
721 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_READ_MAX,
722 THROTTLE_BPS_READ, MAX,
725 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_READ_MAX_LENGTH,
726 THROTTLE_BPS_READ, BURST_LENGTH,
729 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_WRITE,
730 THROTTLE_BPS_WRITE, AVG,
733 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_WRITE_MAX,
734 THROTTLE_BPS_WRITE, MAX,
737 THROTTLE_OPT_PREFIX QEMU_OPT_BPS_WRITE_MAX_LENGTH,
738 THROTTLE_BPS_WRITE, BURST_LENGTH,
741 THROTTLE_OPT_PREFIX QEMU_OPT_IOPS_SIZE,
742 0, IOPS_SIZE,
746 /* This function edits throttle_groups and must be called under the global
747 * mutex */
748 static void throttle_group_obj_init(Object *obj)
750 ThrottleGroup *tg = THROTTLE_GROUP(obj);
752 tg->clock_type = QEMU_CLOCK_REALTIME;
753 if (qtest_enabled()) {
754 /* For testing block IO throttling only */
755 tg->clock_type = QEMU_CLOCK_VIRTUAL;
757 tg->is_initialized = false;
758 qemu_mutex_init(&tg->lock);
759 throttle_init(&tg->ts);
760 QLIST_INIT(&tg->head);
763 /* This function edits throttle_groups and must be called under the global
764 * mutex */
765 static void throttle_group_obj_complete(UserCreatable *obj, Error **errp)
767 ThrottleGroup *tg = THROTTLE_GROUP(obj);
768 ThrottleConfig cfg;
770 /* set group name to object id if it exists */
771 if (!tg->name && tg->parent_obj.parent) {
772 tg->name = g_strdup(object_get_canonical_path_component(OBJECT(obj)));
774 /* We must have a group name at this point */
775 assert(tg->name);
777 /* error if name is duplicate */
778 if (throttle_group_exists(tg->name)) {
779 error_setg(errp, "A group with this name already exists");
780 return;
783 /* check validity */
784 throttle_get_config(&tg->ts, &cfg);
785 if (!throttle_is_valid(&cfg, errp)) {
786 return;
788 throttle_config(&tg->ts, tg->clock_type, &cfg);
789 QTAILQ_INSERT_TAIL(&throttle_groups, tg, list);
790 tg->is_initialized = true;
793 /* This function edits throttle_groups and must be called under the global
794 * mutex */
795 static void throttle_group_obj_finalize(Object *obj)
797 ThrottleGroup *tg = THROTTLE_GROUP(obj);
798 if (tg->is_initialized) {
799 QTAILQ_REMOVE(&throttle_groups, tg, list);
801 qemu_mutex_destroy(&tg->lock);
802 g_free(tg->name);
805 static void throttle_group_set(Object *obj, Visitor *v, const char * name,
806 void *opaque, Error **errp)
809 ThrottleGroup *tg = THROTTLE_GROUP(obj);
810 ThrottleConfig *cfg;
811 ThrottleParamInfo *info = opaque;
812 int64_t value;
814 /* If we have finished initialization, don't accept individual property
815 * changes through QOM. Throttle configuration limits must be set in one
816 * transaction, as certain combinations are invalid.
818 if (tg->is_initialized) {
819 error_setg(errp, "Property cannot be set after initialization");
820 return;
823 if (!visit_type_int64(v, name, &value, errp)) {
824 return;
826 if (value < 0) {
827 error_setg(errp, "Property values cannot be negative");
828 return;
831 cfg = &tg->ts.cfg;
832 switch (info->category) {
833 case AVG:
834 cfg->buckets[info->type].avg = value;
835 break;
836 case MAX:
837 cfg->buckets[info->type].max = value;
838 break;
839 case BURST_LENGTH:
840 if (value > UINT_MAX) {
841 error_setg(errp, "%s value must be in the" "range [0, %u]",
842 info->name, UINT_MAX);
843 return;
845 cfg->buckets[info->type].burst_length = value;
846 break;
847 case IOPS_SIZE:
848 cfg->op_size = value;
849 break;
853 static void throttle_group_get(Object *obj, Visitor *v, const char *name,
854 void *opaque, Error **errp)
856 ThrottleGroup *tg = THROTTLE_GROUP(obj);
857 ThrottleConfig cfg;
858 ThrottleParamInfo *info = opaque;
859 int64_t value;
861 throttle_get_config(&tg->ts, &cfg);
862 switch (info->category) {
863 case AVG:
864 value = cfg.buckets[info->type].avg;
865 break;
866 case MAX:
867 value = cfg.buckets[info->type].max;
868 break;
869 case BURST_LENGTH:
870 value = cfg.buckets[info->type].burst_length;
871 break;
872 case IOPS_SIZE:
873 value = cfg.op_size;
874 break;
877 visit_type_int64(v, name, &value, errp);
880 static void throttle_group_set_limits(Object *obj, Visitor *v,
881 const char *name, void *opaque,
882 Error **errp)
885 ThrottleGroup *tg = THROTTLE_GROUP(obj);
886 ThrottleConfig cfg;
887 ThrottleLimits *argp;
888 Error *local_err = NULL;
890 if (!visit_type_ThrottleLimits(v, name, &argp, errp)) {
891 return;
893 qemu_mutex_lock(&tg->lock);
894 throttle_get_config(&tg->ts, &cfg);
895 throttle_limits_to_config(argp, &cfg, &local_err);
896 if (local_err) {
897 goto unlock;
899 throttle_config(&tg->ts, tg->clock_type, &cfg);
901 unlock:
902 qemu_mutex_unlock(&tg->lock);
903 qapi_free_ThrottleLimits(argp);
904 error_propagate(errp, local_err);
905 return;
908 static void throttle_group_get_limits(Object *obj, Visitor *v,
909 const char *name, void *opaque,
910 Error **errp)
912 ThrottleGroup *tg = THROTTLE_GROUP(obj);
913 ThrottleConfig cfg;
914 ThrottleLimits arg = { 0 };
915 ThrottleLimits *argp = &arg;
917 qemu_mutex_lock(&tg->lock);
918 throttle_get_config(&tg->ts, &cfg);
919 qemu_mutex_unlock(&tg->lock);
921 throttle_config_to_limits(&cfg, argp);
923 visit_type_ThrottleLimits(v, name, &argp, errp);
926 static bool throttle_group_can_be_deleted(UserCreatable *uc)
928 return OBJECT(uc)->ref == 1;
931 static void throttle_group_obj_class_init(ObjectClass *klass, void *class_data)
933 size_t i = 0;
934 UserCreatableClass *ucc = USER_CREATABLE_CLASS(klass);
936 ucc->complete = throttle_group_obj_complete;
937 ucc->can_be_deleted = throttle_group_can_be_deleted;
939 /* individual properties */
940 for (i = 0; i < sizeof(properties) / sizeof(ThrottleParamInfo); i++) {
941 object_class_property_add(klass,
942 properties[i].name,
943 "int",
944 throttle_group_get,
945 throttle_group_set,
946 NULL, &properties[i]);
949 /* ThrottleLimits */
950 object_class_property_add(klass,
951 "limits", "ThrottleLimits",
952 throttle_group_get_limits,
953 throttle_group_set_limits,
954 NULL, NULL);
957 static const TypeInfo throttle_group_info = {
958 .name = TYPE_THROTTLE_GROUP,
959 .parent = TYPE_OBJECT,
960 .class_init = throttle_group_obj_class_init,
961 .instance_size = sizeof(ThrottleGroup),
962 .instance_init = throttle_group_obj_init,
963 .instance_finalize = throttle_group_obj_finalize,
964 .interfaces = (InterfaceInfo[]) {
965 { TYPE_USER_CREATABLE },
970 static void throttle_groups_init(void)
972 type_register_static(&throttle_group_info);
975 type_init(throttle_groups_init);