]> git.proxmox.com Git - mirror_qemu.git/blob - blockdev.c
block: Remove deprecated -drive option serial
[mirror_qemu.git] / blockdev.c
1 /*
2 * QEMU host block devices
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * This work is licensed under the terms of the GNU GPL, version 2 or
7 * later. See the COPYING file in the top-level directory.
8 *
9 * This file incorporates work covered by the following copyright and
10 * permission notice:
11 *
12 * Copyright (c) 2003-2008 Fabrice Bellard
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this software and associated documentation files (the "Software"), to deal
16 * in the Software without restriction, including without limitation the rights
17 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18 * copies of the Software, and to permit persons to whom the Software is
19 * furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 * THE SOFTWARE.
31 */
32
33 #include "qemu/osdep.h"
34 #include "sysemu/block-backend.h"
35 #include "sysemu/blockdev.h"
36 #include "hw/block/block.h"
37 #include "block/blockjob.h"
38 #include "block/qdict.h"
39 #include "block/throttle-groups.h"
40 #include "monitor/monitor.h"
41 #include "qemu/error-report.h"
42 #include "qemu/option.h"
43 #include "qemu/config-file.h"
44 #include "qapi/qapi-commands-block.h"
45 #include "qapi/qapi-commands-transaction.h"
46 #include "qapi/qapi-visit-block-core.h"
47 #include "qapi/qmp/qdict.h"
48 #include "qapi/qmp/qnum.h"
49 #include "qapi/qmp/qstring.h"
50 #include "qapi/error.h"
51 #include "qapi/qmp/qerror.h"
52 #include "qapi/qmp/qlist.h"
53 #include "qapi/qobject-output-visitor.h"
54 #include "sysemu/sysemu.h"
55 #include "sysemu/iothread.h"
56 #include "block/block_int.h"
57 #include "block/trace.h"
58 #include "sysemu/arch_init.h"
59 #include "sysemu/qtest.h"
60 #include "qemu/cutils.h"
61 #include "qemu/help_option.h"
62 #include "qemu/throttle-options.h"
63
64 static QTAILQ_HEAD(, BlockDriverState) monitor_bdrv_states =
65 QTAILQ_HEAD_INITIALIZER(monitor_bdrv_states);
66
67 static int do_open_tray(const char *blk_name, const char *qdev_id,
68 bool force, Error **errp);
69 static void blockdev_remove_medium(bool has_device, const char *device,
70 bool has_id, const char *id, Error **errp);
71 static void blockdev_insert_medium(bool has_device, const char *device,
72 bool has_id, const char *id,
73 const char *node_name, Error **errp);
74
75 static const char *const if_name[IF_COUNT] = {
76 [IF_NONE] = "none",
77 [IF_IDE] = "ide",
78 [IF_SCSI] = "scsi",
79 [IF_FLOPPY] = "floppy",
80 [IF_PFLASH] = "pflash",
81 [IF_MTD] = "mtd",
82 [IF_SD] = "sd",
83 [IF_VIRTIO] = "virtio",
84 [IF_XEN] = "xen",
85 };
86
87 static int if_max_devs[IF_COUNT] = {
88 /*
89 * Do not change these numbers! They govern how drive option
90 * index maps to unit and bus. That mapping is ABI.
91 *
92 * All controllers used to implement if=T drives need to support
93 * if_max_devs[T] units, for any T with if_max_devs[T] != 0.
94 * Otherwise, some index values map to "impossible" bus, unit
95 * values.
96 *
97 * For instance, if you change [IF_SCSI] to 255, -drive
98 * if=scsi,index=12 no longer means bus=1,unit=5, but
99 * bus=0,unit=12. With an lsi53c895a controller (7 units max),
100 * the drive can't be set up. Regression.
101 */
102 [IF_IDE] = 2,
103 [IF_SCSI] = 7,
104 };
105
106 /**
107 * Boards may call this to offer board-by-board overrides
108 * of the default, global values.
109 */
110 void override_max_devs(BlockInterfaceType type, int max_devs)
111 {
112 BlockBackend *blk;
113 DriveInfo *dinfo;
114
115 if (max_devs <= 0) {
116 return;
117 }
118
119 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
120 dinfo = blk_legacy_dinfo(blk);
121 if (dinfo->type == type) {
122 fprintf(stderr, "Cannot override units-per-bus property of"
123 " the %s interface, because a drive of that type has"
124 " already been added.\n", if_name[type]);
125 g_assert_not_reached();
126 }
127 }
128
129 if_max_devs[type] = max_devs;
130 }
131
132 /*
133 * We automatically delete the drive when a device using it gets
134 * unplugged. Questionable feature, but we can't just drop it.
135 * Device models call blockdev_mark_auto_del() to schedule the
136 * automatic deletion, and generic qdev code calls blockdev_auto_del()
137 * when deletion is actually safe.
138 */
139 void blockdev_mark_auto_del(BlockBackend *blk)
140 {
141 DriveInfo *dinfo = blk_legacy_dinfo(blk);
142 BlockDriverState *bs = blk_bs(blk);
143 AioContext *aio_context;
144
145 if (!dinfo) {
146 return;
147 }
148
149 if (bs) {
150 aio_context = bdrv_get_aio_context(bs);
151 aio_context_acquire(aio_context);
152
153 if (bs->job) {
154 job_cancel(&bs->job->job, false);
155 }
156
157 aio_context_release(aio_context);
158 }
159
160 dinfo->auto_del = 1;
161 }
162
163 void blockdev_auto_del(BlockBackend *blk)
164 {
165 DriveInfo *dinfo = blk_legacy_dinfo(blk);
166
167 if (dinfo && dinfo->auto_del) {
168 monitor_remove_blk(blk);
169 blk_unref(blk);
170 }
171 }
172
173 /**
174 * Returns the current mapping of how many units per bus
175 * a particular interface can support.
176 *
177 * A positive integer indicates n units per bus.
178 * 0 implies the mapping has not been established.
179 * -1 indicates an invalid BlockInterfaceType was given.
180 */
181 int drive_get_max_devs(BlockInterfaceType type)
182 {
183 if (type >= IF_IDE && type < IF_COUNT) {
184 return if_max_devs[type];
185 }
186
187 return -1;
188 }
189
190 static int drive_index_to_bus_id(BlockInterfaceType type, int index)
191 {
192 int max_devs = if_max_devs[type];
193 return max_devs ? index / max_devs : 0;
194 }
195
196 static int drive_index_to_unit_id(BlockInterfaceType type, int index)
197 {
198 int max_devs = if_max_devs[type];
199 return max_devs ? index % max_devs : index;
200 }
201
202 QemuOpts *drive_def(const char *optstr)
203 {
204 return qemu_opts_parse_noisily(qemu_find_opts("drive"), optstr, false);
205 }
206
207 QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file,
208 const char *optstr)
209 {
210 QemuOpts *opts;
211
212 opts = drive_def(optstr);
213 if (!opts) {
214 return NULL;
215 }
216 if (type != IF_DEFAULT) {
217 qemu_opt_set(opts, "if", if_name[type], &error_abort);
218 }
219 if (index >= 0) {
220 qemu_opt_set_number(opts, "index", index, &error_abort);
221 }
222 if (file)
223 qemu_opt_set(opts, "file", file, &error_abort);
224 return opts;
225 }
226
227 DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit)
228 {
229 BlockBackend *blk;
230 DriveInfo *dinfo;
231
232 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
233 dinfo = blk_legacy_dinfo(blk);
234 if (dinfo && dinfo->type == type
235 && dinfo->bus == bus && dinfo->unit == unit) {
236 return dinfo;
237 }
238 }
239
240 return NULL;
241 }
242
243 void drive_check_orphaned(void)
244 {
245 BlockBackend *blk;
246 DriveInfo *dinfo;
247 Location loc;
248 bool orphans = false;
249
250 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
251 dinfo = blk_legacy_dinfo(blk);
252 if (!blk_get_attached_dev(blk) && !dinfo->is_default &&
253 dinfo->type != IF_NONE) {
254 loc_push_none(&loc);
255 qemu_opts_loc_restore(dinfo->opts);
256 error_report("machine type does not support"
257 " if=%s,bus=%d,unit=%d",
258 if_name[dinfo->type], dinfo->bus, dinfo->unit);
259 loc_pop(&loc);
260 orphans = true;
261 }
262 }
263
264 if (orphans) {
265 exit(1);
266 }
267 }
268
269 DriveInfo *drive_get_by_index(BlockInterfaceType type, int index)
270 {
271 return drive_get(type,
272 drive_index_to_bus_id(type, index),
273 drive_index_to_unit_id(type, index));
274 }
275
276 int drive_get_max_bus(BlockInterfaceType type)
277 {
278 int max_bus;
279 BlockBackend *blk;
280 DriveInfo *dinfo;
281
282 max_bus = -1;
283 for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
284 dinfo = blk_legacy_dinfo(blk);
285 if (dinfo && dinfo->type == type && dinfo->bus > max_bus) {
286 max_bus = dinfo->bus;
287 }
288 }
289 return max_bus;
290 }
291
292 /* Get a block device. This should only be used for single-drive devices
293 (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the
294 appropriate bus. */
295 DriveInfo *drive_get_next(BlockInterfaceType type)
296 {
297 static int next_block_unit[IF_COUNT];
298
299 return drive_get(type, 0, next_block_unit[type]++);
300 }
301
302 static void bdrv_format_print(void *opaque, const char *name)
303 {
304 error_printf(" %s", name);
305 }
306
307 typedef struct {
308 QEMUBH *bh;
309 BlockDriverState *bs;
310 } BDRVPutRefBH;
311
312 static int parse_block_error_action(const char *buf, bool is_read, Error **errp)
313 {
314 if (!strcmp(buf, "ignore")) {
315 return BLOCKDEV_ON_ERROR_IGNORE;
316 } else if (!is_read && !strcmp(buf, "enospc")) {
317 return BLOCKDEV_ON_ERROR_ENOSPC;
318 } else if (!strcmp(buf, "stop")) {
319 return BLOCKDEV_ON_ERROR_STOP;
320 } else if (!strcmp(buf, "report")) {
321 return BLOCKDEV_ON_ERROR_REPORT;
322 } else {
323 error_setg(errp, "'%s' invalid %s error action",
324 buf, is_read ? "read" : "write");
325 return -1;
326 }
327 }
328
329 static bool parse_stats_intervals(BlockAcctStats *stats, QList *intervals,
330 Error **errp)
331 {
332 const QListEntry *entry;
333 for (entry = qlist_first(intervals); entry; entry = qlist_next(entry)) {
334 switch (qobject_type(entry->value)) {
335
336 case QTYPE_QSTRING: {
337 unsigned long long length;
338 const char *str = qstring_get_str(qobject_to(QString,
339 entry->value));
340 if (parse_uint_full(str, &length, 10) == 0 &&
341 length > 0 && length <= UINT_MAX) {
342 block_acct_add_interval(stats, (unsigned) length);
343 } else {
344 error_setg(errp, "Invalid interval length: %s", str);
345 return false;
346 }
347 break;
348 }
349
350 case QTYPE_QNUM: {
351 int64_t length = qnum_get_int(qobject_to(QNum, entry->value));
352
353 if (length > 0 && length <= UINT_MAX) {
354 block_acct_add_interval(stats, (unsigned) length);
355 } else {
356 error_setg(errp, "Invalid interval length: %" PRId64, length);
357 return false;
358 }
359 break;
360 }
361
362 default:
363 error_setg(errp, "The specification of stats-intervals is invalid");
364 return false;
365 }
366 }
367 return true;
368 }
369
370 typedef enum { MEDIA_DISK, MEDIA_CDROM } DriveMediaType;
371
372 /* All parameters but @opts are optional and may be set to NULL. */
373 static void extract_common_blockdev_options(QemuOpts *opts, int *bdrv_flags,
374 const char **throttling_group, ThrottleConfig *throttle_cfg,
375 BlockdevDetectZeroesOptions *detect_zeroes, Error **errp)
376 {
377 Error *local_error = NULL;
378 const char *aio;
379
380 if (bdrv_flags) {
381 if (qemu_opt_get_bool(opts, "copy-on-read", false)) {
382 *bdrv_flags |= BDRV_O_COPY_ON_READ;
383 }
384
385 if ((aio = qemu_opt_get(opts, "aio")) != NULL) {
386 if (!strcmp(aio, "native")) {
387 *bdrv_flags |= BDRV_O_NATIVE_AIO;
388 } else if (!strcmp(aio, "threads")) {
389 /* this is the default */
390 } else {
391 error_setg(errp, "invalid aio option");
392 return;
393 }
394 }
395 }
396
397 /* disk I/O throttling */
398 if (throttling_group) {
399 *throttling_group = qemu_opt_get(opts, "throttling.group");
400 }
401
402 if (throttle_cfg) {
403 throttle_config_init(throttle_cfg);
404 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].avg =
405 qemu_opt_get_number(opts, "throttling.bps-total", 0);
406 throttle_cfg->buckets[THROTTLE_BPS_READ].avg =
407 qemu_opt_get_number(opts, "throttling.bps-read", 0);
408 throttle_cfg->buckets[THROTTLE_BPS_WRITE].avg =
409 qemu_opt_get_number(opts, "throttling.bps-write", 0);
410 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].avg =
411 qemu_opt_get_number(opts, "throttling.iops-total", 0);
412 throttle_cfg->buckets[THROTTLE_OPS_READ].avg =
413 qemu_opt_get_number(opts, "throttling.iops-read", 0);
414 throttle_cfg->buckets[THROTTLE_OPS_WRITE].avg =
415 qemu_opt_get_number(opts, "throttling.iops-write", 0);
416
417 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].max =
418 qemu_opt_get_number(opts, "throttling.bps-total-max", 0);
419 throttle_cfg->buckets[THROTTLE_BPS_READ].max =
420 qemu_opt_get_number(opts, "throttling.bps-read-max", 0);
421 throttle_cfg->buckets[THROTTLE_BPS_WRITE].max =
422 qemu_opt_get_number(opts, "throttling.bps-write-max", 0);
423 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].max =
424 qemu_opt_get_number(opts, "throttling.iops-total-max", 0);
425 throttle_cfg->buckets[THROTTLE_OPS_READ].max =
426 qemu_opt_get_number(opts, "throttling.iops-read-max", 0);
427 throttle_cfg->buckets[THROTTLE_OPS_WRITE].max =
428 qemu_opt_get_number(opts, "throttling.iops-write-max", 0);
429
430 throttle_cfg->buckets[THROTTLE_BPS_TOTAL].burst_length =
431 qemu_opt_get_number(opts, "throttling.bps-total-max-length", 1);
432 throttle_cfg->buckets[THROTTLE_BPS_READ].burst_length =
433 qemu_opt_get_number(opts, "throttling.bps-read-max-length", 1);
434 throttle_cfg->buckets[THROTTLE_BPS_WRITE].burst_length =
435 qemu_opt_get_number(opts, "throttling.bps-write-max-length", 1);
436 throttle_cfg->buckets[THROTTLE_OPS_TOTAL].burst_length =
437 qemu_opt_get_number(opts, "throttling.iops-total-max-length", 1);
438 throttle_cfg->buckets[THROTTLE_OPS_READ].burst_length =
439 qemu_opt_get_number(opts, "throttling.iops-read-max-length", 1);
440 throttle_cfg->buckets[THROTTLE_OPS_WRITE].burst_length =
441 qemu_opt_get_number(opts, "throttling.iops-write-max-length", 1);
442
443 throttle_cfg->op_size =
444 qemu_opt_get_number(opts, "throttling.iops-size", 0);
445
446 if (!throttle_is_valid(throttle_cfg, errp)) {
447 return;
448 }
449 }
450
451 if (detect_zeroes) {
452 *detect_zeroes =
453 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
454 qemu_opt_get(opts, "detect-zeroes"),
455 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
456 &local_error);
457 if (local_error) {
458 error_propagate(errp, local_error);
459 return;
460 }
461 }
462 }
463
464 /* Takes the ownership of bs_opts */
465 static BlockBackend *blockdev_init(const char *file, QDict *bs_opts,
466 Error **errp)
467 {
468 const char *buf;
469 int bdrv_flags = 0;
470 int on_read_error, on_write_error;
471 bool account_invalid, account_failed;
472 bool writethrough, read_only;
473 BlockBackend *blk;
474 BlockDriverState *bs;
475 ThrottleConfig cfg;
476 int snapshot = 0;
477 Error *error = NULL;
478 QemuOpts *opts;
479 QDict *interval_dict = NULL;
480 QList *interval_list = NULL;
481 const char *id;
482 BlockdevDetectZeroesOptions detect_zeroes =
483 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
484 const char *throttling_group = NULL;
485
486 /* Check common options by copying from bs_opts to opts, all other options
487 * stay in bs_opts for processing by bdrv_open(). */
488 id = qdict_get_try_str(bs_opts, "id");
489 opts = qemu_opts_create(&qemu_common_drive_opts, id, 1, &error);
490 if (error) {
491 error_propagate(errp, error);
492 goto err_no_opts;
493 }
494
495 qemu_opts_absorb_qdict(opts, bs_opts, &error);
496 if (error) {
497 error_propagate(errp, error);
498 goto early_err;
499 }
500
501 if (id) {
502 qdict_del(bs_opts, "id");
503 }
504
505 /* extract parameters */
506 snapshot = qemu_opt_get_bool(opts, "snapshot", 0);
507
508 account_invalid = qemu_opt_get_bool(opts, "stats-account-invalid", true);
509 account_failed = qemu_opt_get_bool(opts, "stats-account-failed", true);
510
511 writethrough = !qemu_opt_get_bool(opts, BDRV_OPT_CACHE_WB, true);
512
513 id = qemu_opts_id(opts);
514
515 qdict_extract_subqdict(bs_opts, &interval_dict, "stats-intervals.");
516 qdict_array_split(interval_dict, &interval_list);
517
518 if (qdict_size(interval_dict) != 0) {
519 error_setg(errp, "Invalid option stats-intervals.%s",
520 qdict_first(interval_dict)->key);
521 goto early_err;
522 }
523
524 extract_common_blockdev_options(opts, &bdrv_flags, &throttling_group, &cfg,
525 &detect_zeroes, &error);
526 if (error) {
527 error_propagate(errp, error);
528 goto early_err;
529 }
530
531 if ((buf = qemu_opt_get(opts, "format")) != NULL) {
532 if (is_help_option(buf)) {
533 error_printf("Supported formats:");
534 bdrv_iterate_format(bdrv_format_print, NULL);
535 error_printf("\n");
536 goto early_err;
537 }
538
539 if (qdict_haskey(bs_opts, "driver")) {
540 error_setg(errp, "Cannot specify both 'driver' and 'format'");
541 goto early_err;
542 }
543 qdict_put_str(bs_opts, "driver", buf);
544 }
545
546 on_write_error = BLOCKDEV_ON_ERROR_ENOSPC;
547 if ((buf = qemu_opt_get(opts, "werror")) != NULL) {
548 on_write_error = parse_block_error_action(buf, 0, &error);
549 if (error) {
550 error_propagate(errp, error);
551 goto early_err;
552 }
553 }
554
555 on_read_error = BLOCKDEV_ON_ERROR_REPORT;
556 if ((buf = qemu_opt_get(opts, "rerror")) != NULL) {
557 on_read_error = parse_block_error_action(buf, 1, &error);
558 if (error) {
559 error_propagate(errp, error);
560 goto early_err;
561 }
562 }
563
564 if (snapshot) {
565 bdrv_flags |= BDRV_O_SNAPSHOT;
566 }
567
568 read_only = qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false);
569
570 /* init */
571 if ((!file || !*file) && !qdict_size(bs_opts)) {
572 BlockBackendRootState *blk_rs;
573
574 blk = blk_new(0, BLK_PERM_ALL);
575 blk_rs = blk_get_root_state(blk);
576 blk_rs->open_flags = bdrv_flags;
577 blk_rs->read_only = read_only;
578 blk_rs->detect_zeroes = detect_zeroes;
579
580 qobject_unref(bs_opts);
581 } else {
582 if (file && !*file) {
583 file = NULL;
584 }
585
586 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
587 * with other callers) rather than what we want as the real defaults.
588 * Apply the defaults here instead. */
589 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
590 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
591 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY,
592 read_only ? "on" : "off");
593 assert((bdrv_flags & BDRV_O_CACHE_MASK) == 0);
594
595 if (runstate_check(RUN_STATE_INMIGRATE)) {
596 bdrv_flags |= BDRV_O_INACTIVE;
597 }
598
599 blk = blk_new_open(file, NULL, bs_opts, bdrv_flags, errp);
600 if (!blk) {
601 goto err_no_bs_opts;
602 }
603 bs = blk_bs(blk);
604
605 bs->detect_zeroes = detect_zeroes;
606
607 block_acct_setup(blk_get_stats(blk), account_invalid, account_failed);
608
609 if (!parse_stats_intervals(blk_get_stats(blk), interval_list, errp)) {
610 blk_unref(blk);
611 blk = NULL;
612 goto err_no_bs_opts;
613 }
614 }
615
616 /* disk I/O throttling */
617 if (throttle_enabled(&cfg)) {
618 if (!throttling_group) {
619 throttling_group = id;
620 }
621 blk_io_limits_enable(blk, throttling_group);
622 blk_set_io_limits(blk, &cfg);
623 }
624
625 blk_set_enable_write_cache(blk, !writethrough);
626 blk_set_on_error(blk, on_read_error, on_write_error);
627
628 if (!monitor_add_blk(blk, id, errp)) {
629 blk_unref(blk);
630 blk = NULL;
631 goto err_no_bs_opts;
632 }
633
634 err_no_bs_opts:
635 qemu_opts_del(opts);
636 qobject_unref(interval_dict);
637 qobject_unref(interval_list);
638 return blk;
639
640 early_err:
641 qemu_opts_del(opts);
642 qobject_unref(interval_dict);
643 qobject_unref(interval_list);
644 err_no_opts:
645 qobject_unref(bs_opts);
646 return NULL;
647 }
648
649 /* Takes the ownership of bs_opts */
650 static BlockDriverState *bds_tree_init(QDict *bs_opts, Error **errp)
651 {
652 int bdrv_flags = 0;
653
654 /* bdrv_open() defaults to the values in bdrv_flags (for compatibility
655 * with other callers) rather than what we want as the real defaults.
656 * Apply the defaults here instead. */
657 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_DIRECT, "off");
658 qdict_set_default_str(bs_opts, BDRV_OPT_CACHE_NO_FLUSH, "off");
659 qdict_set_default_str(bs_opts, BDRV_OPT_READ_ONLY, "off");
660
661 if (runstate_check(RUN_STATE_INMIGRATE)) {
662 bdrv_flags |= BDRV_O_INACTIVE;
663 }
664
665 return bdrv_open(NULL, NULL, bs_opts, bdrv_flags, errp);
666 }
667
668 void blockdev_close_all_bdrv_states(void)
669 {
670 BlockDriverState *bs, *next_bs;
671
672 QTAILQ_FOREACH_SAFE(bs, &monitor_bdrv_states, monitor_list, next_bs) {
673 AioContext *ctx = bdrv_get_aio_context(bs);
674
675 aio_context_acquire(ctx);
676 bdrv_unref(bs);
677 aio_context_release(ctx);
678 }
679 }
680
681 /* Iterates over the list of monitor-owned BlockDriverStates */
682 BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs)
683 {
684 return bs ? QTAILQ_NEXT(bs, monitor_list)
685 : QTAILQ_FIRST(&monitor_bdrv_states);
686 }
687
688 static void qemu_opt_rename(QemuOpts *opts, const char *from, const char *to,
689 Error **errp)
690 {
691 const char *value;
692
693 value = qemu_opt_get(opts, from);
694 if (value) {
695 if (qemu_opt_find(opts, to)) {
696 error_setg(errp, "'%s' and its alias '%s' can't be used at the "
697 "same time", to, from);
698 return;
699 }
700 }
701
702 /* rename all items in opts */
703 while ((value = qemu_opt_get(opts, from))) {
704 qemu_opt_set(opts, to, value, &error_abort);
705 qemu_opt_unset(opts, from);
706 }
707 }
708
709 QemuOptsList qemu_legacy_drive_opts = {
710 .name = "drive",
711 .head = QTAILQ_HEAD_INITIALIZER(qemu_legacy_drive_opts.head),
712 .desc = {
713 {
714 .name = "bus",
715 .type = QEMU_OPT_NUMBER,
716 .help = "bus number",
717 },{
718 .name = "unit",
719 .type = QEMU_OPT_NUMBER,
720 .help = "unit number (i.e. lun for scsi)",
721 },{
722 .name = "index",
723 .type = QEMU_OPT_NUMBER,
724 .help = "index number",
725 },{
726 .name = "media",
727 .type = QEMU_OPT_STRING,
728 .help = "media type (disk, cdrom)",
729 },{
730 .name = "if",
731 .type = QEMU_OPT_STRING,
732 .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)",
733 },{
734 .name = "file",
735 .type = QEMU_OPT_STRING,
736 .help = "file name",
737 },
738
739 /* Options that are passed on, but have special semantics with -drive */
740 {
741 .name = BDRV_OPT_READ_ONLY,
742 .type = QEMU_OPT_BOOL,
743 .help = "open drive file as read-only",
744 },{
745 .name = "rerror",
746 .type = QEMU_OPT_STRING,
747 .help = "read error action",
748 },{
749 .name = "werror",
750 .type = QEMU_OPT_STRING,
751 .help = "write error action",
752 },{
753 .name = "copy-on-read",
754 .type = QEMU_OPT_BOOL,
755 .help = "copy read data from backing file into image file",
756 },
757
758 { /* end of list */ }
759 },
760 };
761
762 DriveInfo *drive_new(QemuOpts *all_opts, BlockInterfaceType block_default_type)
763 {
764 const char *value;
765 BlockBackend *blk;
766 DriveInfo *dinfo = NULL;
767 QDict *bs_opts;
768 QemuOpts *legacy_opts;
769 DriveMediaType media = MEDIA_DISK;
770 BlockInterfaceType type;
771 int max_devs, bus_id, unit_id, index;
772 const char *werror, *rerror;
773 bool read_only = false;
774 bool copy_on_read;
775 const char *filename;
776 Error *local_err = NULL;
777 int i;
778 const char *deprecated[] = {
779 };
780
781 /* Change legacy command line options into QMP ones */
782 static const struct {
783 const char *from;
784 const char *to;
785 } opt_renames[] = {
786 { "iops", "throttling.iops-total" },
787 { "iops_rd", "throttling.iops-read" },
788 { "iops_wr", "throttling.iops-write" },
789
790 { "bps", "throttling.bps-total" },
791 { "bps_rd", "throttling.bps-read" },
792 { "bps_wr", "throttling.bps-write" },
793
794 { "iops_max", "throttling.iops-total-max" },
795 { "iops_rd_max", "throttling.iops-read-max" },
796 { "iops_wr_max", "throttling.iops-write-max" },
797
798 { "bps_max", "throttling.bps-total-max" },
799 { "bps_rd_max", "throttling.bps-read-max" },
800 { "bps_wr_max", "throttling.bps-write-max" },
801
802 { "iops_size", "throttling.iops-size" },
803
804 { "group", "throttling.group" },
805
806 { "readonly", BDRV_OPT_READ_ONLY },
807 };
808
809 for (i = 0; i < ARRAY_SIZE(opt_renames); i++) {
810 qemu_opt_rename(all_opts, opt_renames[i].from, opt_renames[i].to,
811 &local_err);
812 if (local_err) {
813 error_report_err(local_err);
814 return NULL;
815 }
816 }
817
818 value = qemu_opt_get(all_opts, "cache");
819 if (value) {
820 int flags = 0;
821 bool writethrough;
822
823 if (bdrv_parse_cache_mode(value, &flags, &writethrough) != 0) {
824 error_report("invalid cache option");
825 return NULL;
826 }
827
828 /* Specific options take precedence */
829 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_WB)) {
830 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_WB,
831 !writethrough, &error_abort);
832 }
833 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_DIRECT)) {
834 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_DIRECT,
835 !!(flags & BDRV_O_NOCACHE), &error_abort);
836 }
837 if (!qemu_opt_get(all_opts, BDRV_OPT_CACHE_NO_FLUSH)) {
838 qemu_opt_set_bool(all_opts, BDRV_OPT_CACHE_NO_FLUSH,
839 !!(flags & BDRV_O_NO_FLUSH), &error_abort);
840 }
841 qemu_opt_unset(all_opts, "cache");
842 }
843
844 /* Get a QDict for processing the options */
845 bs_opts = qdict_new();
846 qemu_opts_to_qdict(all_opts, bs_opts);
847
848 legacy_opts = qemu_opts_create(&qemu_legacy_drive_opts, NULL, 0,
849 &error_abort);
850 qemu_opts_absorb_qdict(legacy_opts, bs_opts, &local_err);
851 if (local_err) {
852 error_report_err(local_err);
853 goto fail;
854 }
855
856 /* Other deprecated options */
857 if (!qtest_enabled()) {
858 for (i = 0; i < ARRAY_SIZE(deprecated); i++) {
859 if (qemu_opt_get(legacy_opts, deprecated[i]) != NULL) {
860 error_report("'%s' is deprecated, please use the corresponding "
861 "option of '-device' instead", deprecated[i]);
862 }
863 }
864 }
865
866 /* Media type */
867 value = qemu_opt_get(legacy_opts, "media");
868 if (value) {
869 if (!strcmp(value, "disk")) {
870 media = MEDIA_DISK;
871 } else if (!strcmp(value, "cdrom")) {
872 media = MEDIA_CDROM;
873 read_only = true;
874 } else {
875 error_report("'%s' invalid media", value);
876 goto fail;
877 }
878 }
879
880 /* copy-on-read is disabled with a warning for read-only devices */
881 read_only |= qemu_opt_get_bool(legacy_opts, BDRV_OPT_READ_ONLY, false);
882 copy_on_read = qemu_opt_get_bool(legacy_opts, "copy-on-read", false);
883
884 if (read_only && copy_on_read) {
885 warn_report("disabling copy-on-read on read-only drive");
886 copy_on_read = false;
887 }
888
889 qdict_put_str(bs_opts, BDRV_OPT_READ_ONLY, read_only ? "on" : "off");
890 qdict_put_str(bs_opts, "copy-on-read", copy_on_read ? "on" : "off");
891
892 /* Controller type */
893 value = qemu_opt_get(legacy_opts, "if");
894 if (value) {
895 for (type = 0;
896 type < IF_COUNT && strcmp(value, if_name[type]);
897 type++) {
898 }
899 if (type == IF_COUNT) {
900 error_report("unsupported bus type '%s'", value);
901 goto fail;
902 }
903 } else {
904 type = block_default_type;
905 }
906
907 /* Device address specified by bus/unit or index.
908 * If none was specified, try to find the first free one. */
909 bus_id = qemu_opt_get_number(legacy_opts, "bus", 0);
910 unit_id = qemu_opt_get_number(legacy_opts, "unit", -1);
911 index = qemu_opt_get_number(legacy_opts, "index", -1);
912
913 max_devs = if_max_devs[type];
914
915 if (index != -1) {
916 if (bus_id != 0 || unit_id != -1) {
917 error_report("index cannot be used with bus and unit");
918 goto fail;
919 }
920 bus_id = drive_index_to_bus_id(type, index);
921 unit_id = drive_index_to_unit_id(type, index);
922 }
923
924 if (unit_id == -1) {
925 unit_id = 0;
926 while (drive_get(type, bus_id, unit_id) != NULL) {
927 unit_id++;
928 if (max_devs && unit_id >= max_devs) {
929 unit_id -= max_devs;
930 bus_id++;
931 }
932 }
933 }
934
935 if (max_devs && unit_id >= max_devs) {
936 error_report("unit %d too big (max is %d)", unit_id, max_devs - 1);
937 goto fail;
938 }
939
940 if (drive_get(type, bus_id, unit_id) != NULL) {
941 error_report("drive with bus=%d, unit=%d (index=%d) exists",
942 bus_id, unit_id, index);
943 goto fail;
944 }
945
946 /* no id supplied -> create one */
947 if (qemu_opts_id(all_opts) == NULL) {
948 char *new_id;
949 const char *mediastr = "";
950 if (type == IF_IDE || type == IF_SCSI) {
951 mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd";
952 }
953 if (max_devs) {
954 new_id = g_strdup_printf("%s%i%s%i", if_name[type], bus_id,
955 mediastr, unit_id);
956 } else {
957 new_id = g_strdup_printf("%s%s%i", if_name[type],
958 mediastr, unit_id);
959 }
960 qdict_put_str(bs_opts, "id", new_id);
961 g_free(new_id);
962 }
963
964 /* Add virtio block device */
965 if (type == IF_VIRTIO) {
966 QemuOpts *devopts;
967 devopts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
968 &error_abort);
969 if (arch_type == QEMU_ARCH_S390X) {
970 qemu_opt_set(devopts, "driver", "virtio-blk-ccw", &error_abort);
971 } else {
972 qemu_opt_set(devopts, "driver", "virtio-blk-pci", &error_abort);
973 }
974 qemu_opt_set(devopts, "drive", qdict_get_str(bs_opts, "id"),
975 &error_abort);
976 }
977
978 filename = qemu_opt_get(legacy_opts, "file");
979
980 /* Check werror/rerror compatibility with if=... */
981 werror = qemu_opt_get(legacy_opts, "werror");
982 if (werror != NULL) {
983 if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO &&
984 type != IF_NONE) {
985 error_report("werror is not supported by this bus type");
986 goto fail;
987 }
988 qdict_put_str(bs_opts, "werror", werror);
989 }
990
991 rerror = qemu_opt_get(legacy_opts, "rerror");
992 if (rerror != NULL) {
993 if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI &&
994 type != IF_NONE) {
995 error_report("rerror is not supported by this bus type");
996 goto fail;
997 }
998 qdict_put_str(bs_opts, "rerror", rerror);
999 }
1000
1001 /* Actual block device init: Functionality shared with blockdev-add */
1002 blk = blockdev_init(filename, bs_opts, &local_err);
1003 bs_opts = NULL;
1004 if (!blk) {
1005 if (local_err) {
1006 error_report_err(local_err);
1007 }
1008 goto fail;
1009 } else {
1010 assert(!local_err);
1011 }
1012
1013 /* Create legacy DriveInfo */
1014 dinfo = g_malloc0(sizeof(*dinfo));
1015 dinfo->opts = all_opts;
1016
1017 dinfo->type = type;
1018 dinfo->bus = bus_id;
1019 dinfo->unit = unit_id;
1020
1021 blk_set_legacy_dinfo(blk, dinfo);
1022
1023 switch(type) {
1024 case IF_IDE:
1025 case IF_SCSI:
1026 case IF_XEN:
1027 case IF_NONE:
1028 dinfo->media_cd = media == MEDIA_CDROM;
1029 break;
1030 default:
1031 break;
1032 }
1033
1034 fail:
1035 qemu_opts_del(legacy_opts);
1036 qobject_unref(bs_opts);
1037 return dinfo;
1038 }
1039
1040 static BlockDriverState *qmp_get_root_bs(const char *name, Error **errp)
1041 {
1042 BlockDriverState *bs;
1043
1044 bs = bdrv_lookup_bs(name, name, errp);
1045 if (bs == NULL) {
1046 return NULL;
1047 }
1048
1049 if (!bdrv_is_root_node(bs)) {
1050 error_setg(errp, "Need a root block node");
1051 return NULL;
1052 }
1053
1054 if (!bdrv_is_inserted(bs)) {
1055 error_setg(errp, "Device has no medium");
1056 return NULL;
1057 }
1058
1059 return bs;
1060 }
1061
1062 static BlockBackend *qmp_get_blk(const char *blk_name, const char *qdev_id,
1063 Error **errp)
1064 {
1065 BlockBackend *blk;
1066
1067 if (!blk_name == !qdev_id) {
1068 error_setg(errp, "Need exactly one of 'device' and 'id'");
1069 return NULL;
1070 }
1071
1072 if (qdev_id) {
1073 blk = blk_by_qdev_id(qdev_id, errp);
1074 } else {
1075 blk = blk_by_name(blk_name);
1076 if (blk == NULL) {
1077 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
1078 "Device '%s' not found", blk_name);
1079 }
1080 }
1081
1082 return blk;
1083 }
1084
1085 void hmp_commit(Monitor *mon, const QDict *qdict)
1086 {
1087 const char *device = qdict_get_str(qdict, "device");
1088 BlockBackend *blk;
1089 int ret;
1090
1091 if (!strcmp(device, "all")) {
1092 ret = blk_commit_all();
1093 } else {
1094 BlockDriverState *bs;
1095 AioContext *aio_context;
1096
1097 blk = blk_by_name(device);
1098 if (!blk) {
1099 monitor_printf(mon, "Device '%s' not found\n", device);
1100 return;
1101 }
1102 if (!blk_is_available(blk)) {
1103 monitor_printf(mon, "Device '%s' has no medium\n", device);
1104 return;
1105 }
1106
1107 bs = blk_bs(blk);
1108 aio_context = bdrv_get_aio_context(bs);
1109 aio_context_acquire(aio_context);
1110
1111 ret = bdrv_commit(bs);
1112
1113 aio_context_release(aio_context);
1114 }
1115 if (ret < 0) {
1116 monitor_printf(mon, "'commit' error for '%s': %s\n", device,
1117 strerror(-ret));
1118 }
1119 }
1120
1121 static void blockdev_do_action(TransactionAction *action, Error **errp)
1122 {
1123 TransactionActionList list;
1124
1125 list.value = action;
1126 list.next = NULL;
1127 qmp_transaction(&list, false, NULL, errp);
1128 }
1129
1130 void qmp_blockdev_snapshot_sync(bool has_device, const char *device,
1131 bool has_node_name, const char *node_name,
1132 const char *snapshot_file,
1133 bool has_snapshot_node_name,
1134 const char *snapshot_node_name,
1135 bool has_format, const char *format,
1136 bool has_mode, NewImageMode mode, Error **errp)
1137 {
1138 BlockdevSnapshotSync snapshot = {
1139 .has_device = has_device,
1140 .device = (char *) device,
1141 .has_node_name = has_node_name,
1142 .node_name = (char *) node_name,
1143 .snapshot_file = (char *) snapshot_file,
1144 .has_snapshot_node_name = has_snapshot_node_name,
1145 .snapshot_node_name = (char *) snapshot_node_name,
1146 .has_format = has_format,
1147 .format = (char *) format,
1148 .has_mode = has_mode,
1149 .mode = mode,
1150 };
1151 TransactionAction action = {
1152 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC,
1153 .u.blockdev_snapshot_sync.data = &snapshot,
1154 };
1155 blockdev_do_action(&action, errp);
1156 }
1157
1158 void qmp_blockdev_snapshot(const char *node, const char *overlay,
1159 Error **errp)
1160 {
1161 BlockdevSnapshot snapshot_data = {
1162 .node = (char *) node,
1163 .overlay = (char *) overlay
1164 };
1165 TransactionAction action = {
1166 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT,
1167 .u.blockdev_snapshot.data = &snapshot_data,
1168 };
1169 blockdev_do_action(&action, errp);
1170 }
1171
1172 void qmp_blockdev_snapshot_internal_sync(const char *device,
1173 const char *name,
1174 Error **errp)
1175 {
1176 BlockdevSnapshotInternal snapshot = {
1177 .device = (char *) device,
1178 .name = (char *) name
1179 };
1180 TransactionAction action = {
1181 .type = TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC,
1182 .u.blockdev_snapshot_internal_sync.data = &snapshot,
1183 };
1184 blockdev_do_action(&action, errp);
1185 }
1186
1187 SnapshotInfo *qmp_blockdev_snapshot_delete_internal_sync(const char *device,
1188 bool has_id,
1189 const char *id,
1190 bool has_name,
1191 const char *name,
1192 Error **errp)
1193 {
1194 BlockDriverState *bs;
1195 AioContext *aio_context;
1196 QEMUSnapshotInfo sn;
1197 Error *local_err = NULL;
1198 SnapshotInfo *info = NULL;
1199 int ret;
1200
1201 bs = qmp_get_root_bs(device, errp);
1202 if (!bs) {
1203 return NULL;
1204 }
1205 aio_context = bdrv_get_aio_context(bs);
1206 aio_context_acquire(aio_context);
1207
1208 if (!has_id) {
1209 id = NULL;
1210 }
1211
1212 if (!has_name) {
1213 name = NULL;
1214 }
1215
1216 if (!id && !name) {
1217 error_setg(errp, "Name or id must be provided");
1218 goto out_aio_context;
1219 }
1220
1221 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE, errp)) {
1222 goto out_aio_context;
1223 }
1224
1225 ret = bdrv_snapshot_find_by_id_and_name(bs, id, name, &sn, &local_err);
1226 if (local_err) {
1227 error_propagate(errp, local_err);
1228 goto out_aio_context;
1229 }
1230 if (!ret) {
1231 error_setg(errp,
1232 "Snapshot with id '%s' and name '%s' does not exist on "
1233 "device '%s'",
1234 STR_OR_NULL(id), STR_OR_NULL(name), device);
1235 goto out_aio_context;
1236 }
1237
1238 bdrv_snapshot_delete(bs, id, name, &local_err);
1239 if (local_err) {
1240 error_propagate(errp, local_err);
1241 goto out_aio_context;
1242 }
1243
1244 aio_context_release(aio_context);
1245
1246 info = g_new0(SnapshotInfo, 1);
1247 info->id = g_strdup(sn.id_str);
1248 info->name = g_strdup(sn.name);
1249 info->date_nsec = sn.date_nsec;
1250 info->date_sec = sn.date_sec;
1251 info->vm_state_size = sn.vm_state_size;
1252 info->vm_clock_nsec = sn.vm_clock_nsec % 1000000000;
1253 info->vm_clock_sec = sn.vm_clock_nsec / 1000000000;
1254
1255 return info;
1256
1257 out_aio_context:
1258 aio_context_release(aio_context);
1259 return NULL;
1260 }
1261
1262 /**
1263 * block_dirty_bitmap_lookup:
1264 * Return a dirty bitmap (if present), after validating
1265 * the node reference and bitmap names.
1266 *
1267 * @node: The name of the BDS node to search for bitmaps
1268 * @name: The name of the bitmap to search for
1269 * @pbs: Output pointer for BDS lookup, if desired. Can be NULL.
1270 * @paio: Output pointer for aio_context acquisition, if desired. Can be NULL.
1271 * @errp: Output pointer for error information. Can be NULL.
1272 *
1273 * @return: A bitmap object on success, or NULL on failure.
1274 */
1275 static BdrvDirtyBitmap *block_dirty_bitmap_lookup(const char *node,
1276 const char *name,
1277 BlockDriverState **pbs,
1278 Error **errp)
1279 {
1280 BlockDriverState *bs;
1281 BdrvDirtyBitmap *bitmap;
1282
1283 if (!node) {
1284 error_setg(errp, "Node cannot be NULL");
1285 return NULL;
1286 }
1287 if (!name) {
1288 error_setg(errp, "Bitmap name cannot be NULL");
1289 return NULL;
1290 }
1291 bs = bdrv_lookup_bs(node, node, NULL);
1292 if (!bs) {
1293 error_setg(errp, "Node '%s' not found", node);
1294 return NULL;
1295 }
1296
1297 bitmap = bdrv_find_dirty_bitmap(bs, name);
1298 if (!bitmap) {
1299 error_setg(errp, "Dirty bitmap '%s' not found", name);
1300 return NULL;
1301 }
1302
1303 if (pbs) {
1304 *pbs = bs;
1305 }
1306
1307 return bitmap;
1308 }
1309
1310 /* New and old BlockDriverState structs for atomic group operations */
1311
1312 typedef struct BlkActionState BlkActionState;
1313
1314 /**
1315 * BlkActionOps:
1316 * Table of operations that define an Action.
1317 *
1318 * @instance_size: Size of state struct, in bytes.
1319 * @prepare: Prepare the work, must NOT be NULL.
1320 * @commit: Commit the changes, can be NULL.
1321 * @abort: Abort the changes on fail, can be NULL.
1322 * @clean: Clean up resources after all transaction actions have called
1323 * commit() or abort(). Can be NULL.
1324 *
1325 * Only prepare() may fail. In a single transaction, only one of commit() or
1326 * abort() will be called. clean() will always be called if it is present.
1327 */
1328 typedef struct BlkActionOps {
1329 size_t instance_size;
1330 void (*prepare)(BlkActionState *common, Error **errp);
1331 void (*commit)(BlkActionState *common);
1332 void (*abort)(BlkActionState *common);
1333 void (*clean)(BlkActionState *common);
1334 } BlkActionOps;
1335
1336 /**
1337 * BlkActionState:
1338 * Describes one Action's state within a Transaction.
1339 *
1340 * @action: QAPI-defined enum identifying which Action to perform.
1341 * @ops: Table of ActionOps this Action can perform.
1342 * @block_job_txn: Transaction which this action belongs to.
1343 * @entry: List membership for all Actions in this Transaction.
1344 *
1345 * This structure must be arranged as first member in a subclassed type,
1346 * assuming that the compiler will also arrange it to the same offsets as the
1347 * base class.
1348 */
1349 struct BlkActionState {
1350 TransactionAction *action;
1351 const BlkActionOps *ops;
1352 JobTxn *block_job_txn;
1353 TransactionProperties *txn_props;
1354 QSIMPLEQ_ENTRY(BlkActionState) entry;
1355 };
1356
1357 /* internal snapshot private data */
1358 typedef struct InternalSnapshotState {
1359 BlkActionState common;
1360 BlockDriverState *bs;
1361 QEMUSnapshotInfo sn;
1362 bool created;
1363 } InternalSnapshotState;
1364
1365
1366 static int action_check_completion_mode(BlkActionState *s, Error **errp)
1367 {
1368 if (s->txn_props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) {
1369 error_setg(errp,
1370 "Action '%s' does not support Transaction property "
1371 "completion-mode = %s",
1372 TransactionActionKind_str(s->action->type),
1373 ActionCompletionMode_str(s->txn_props->completion_mode));
1374 return -1;
1375 }
1376 return 0;
1377 }
1378
1379 static void internal_snapshot_prepare(BlkActionState *common,
1380 Error **errp)
1381 {
1382 Error *local_err = NULL;
1383 const char *device;
1384 const char *name;
1385 BlockDriverState *bs;
1386 QEMUSnapshotInfo old_sn, *sn;
1387 bool ret;
1388 qemu_timeval tv;
1389 BlockdevSnapshotInternal *internal;
1390 InternalSnapshotState *state;
1391 AioContext *aio_context;
1392 int ret1;
1393
1394 g_assert(common->action->type ==
1395 TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC);
1396 internal = common->action->u.blockdev_snapshot_internal_sync.data;
1397 state = DO_UPCAST(InternalSnapshotState, common, common);
1398
1399 /* 1. parse input */
1400 device = internal->device;
1401 name = internal->name;
1402
1403 /* 2. check for validation */
1404 if (action_check_completion_mode(common, errp) < 0) {
1405 return;
1406 }
1407
1408 bs = qmp_get_root_bs(device, errp);
1409 if (!bs) {
1410 return;
1411 }
1412
1413 aio_context = bdrv_get_aio_context(bs);
1414 aio_context_acquire(aio_context);
1415
1416 state->bs = bs;
1417
1418 /* Paired with .clean() */
1419 bdrv_drained_begin(bs);
1420
1421 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_INTERNAL_SNAPSHOT, errp)) {
1422 goto out;
1423 }
1424
1425 if (bdrv_is_read_only(bs)) {
1426 error_setg(errp, "Device '%s' is read only", device);
1427 goto out;
1428 }
1429
1430 if (!bdrv_can_snapshot(bs)) {
1431 error_setg(errp, "Block format '%s' used by device '%s' "
1432 "does not support internal snapshots",
1433 bs->drv->format_name, device);
1434 goto out;
1435 }
1436
1437 if (!strlen(name)) {
1438 error_setg(errp, "Name is empty");
1439 goto out;
1440 }
1441
1442 /* check whether a snapshot with name exist */
1443 ret = bdrv_snapshot_find_by_id_and_name(bs, NULL, name, &old_sn,
1444 &local_err);
1445 if (local_err) {
1446 error_propagate(errp, local_err);
1447 goto out;
1448 } else if (ret) {
1449 error_setg(errp,
1450 "Snapshot with name '%s' already exists on device '%s'",
1451 name, device);
1452 goto out;
1453 }
1454
1455 /* 3. take the snapshot */
1456 sn = &state->sn;
1457 pstrcpy(sn->name, sizeof(sn->name), name);
1458 qemu_gettimeofday(&tv);
1459 sn->date_sec = tv.tv_sec;
1460 sn->date_nsec = tv.tv_usec * 1000;
1461 sn->vm_clock_nsec = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
1462
1463 ret1 = bdrv_snapshot_create(bs, sn);
1464 if (ret1 < 0) {
1465 error_setg_errno(errp, -ret1,
1466 "Failed to create snapshot '%s' on device '%s'",
1467 name, device);
1468 goto out;
1469 }
1470
1471 /* 4. succeed, mark a snapshot is created */
1472 state->created = true;
1473
1474 out:
1475 aio_context_release(aio_context);
1476 }
1477
1478 static void internal_snapshot_abort(BlkActionState *common)
1479 {
1480 InternalSnapshotState *state =
1481 DO_UPCAST(InternalSnapshotState, common, common);
1482 BlockDriverState *bs = state->bs;
1483 QEMUSnapshotInfo *sn = &state->sn;
1484 AioContext *aio_context;
1485 Error *local_error = NULL;
1486
1487 if (!state->created) {
1488 return;
1489 }
1490
1491 aio_context = bdrv_get_aio_context(state->bs);
1492 aio_context_acquire(aio_context);
1493
1494 if (bdrv_snapshot_delete(bs, sn->id_str, sn->name, &local_error) < 0) {
1495 error_reportf_err(local_error,
1496 "Failed to delete snapshot with id '%s' and "
1497 "name '%s' on device '%s' in abort: ",
1498 sn->id_str, sn->name,
1499 bdrv_get_device_name(bs));
1500 }
1501
1502 aio_context_release(aio_context);
1503 }
1504
1505 static void internal_snapshot_clean(BlkActionState *common)
1506 {
1507 InternalSnapshotState *state = DO_UPCAST(InternalSnapshotState,
1508 common, common);
1509 AioContext *aio_context;
1510
1511 if (!state->bs) {
1512 return;
1513 }
1514
1515 aio_context = bdrv_get_aio_context(state->bs);
1516 aio_context_acquire(aio_context);
1517
1518 bdrv_drained_end(state->bs);
1519
1520 aio_context_release(aio_context);
1521 }
1522
1523 /* external snapshot private data */
1524 typedef struct ExternalSnapshotState {
1525 BlkActionState common;
1526 BlockDriverState *old_bs;
1527 BlockDriverState *new_bs;
1528 bool overlay_appended;
1529 } ExternalSnapshotState;
1530
1531 static void external_snapshot_prepare(BlkActionState *common,
1532 Error **errp)
1533 {
1534 int flags = 0;
1535 QDict *options = NULL;
1536 Error *local_err = NULL;
1537 /* Device and node name of the image to generate the snapshot from */
1538 const char *device;
1539 const char *node_name;
1540 /* Reference to the new image (for 'blockdev-snapshot') */
1541 const char *snapshot_ref;
1542 /* File name of the new image (for 'blockdev-snapshot-sync') */
1543 const char *new_image_file;
1544 ExternalSnapshotState *state =
1545 DO_UPCAST(ExternalSnapshotState, common, common);
1546 TransactionAction *action = common->action;
1547 AioContext *aio_context;
1548
1549 /* 'blockdev-snapshot' and 'blockdev-snapshot-sync' have similar
1550 * purpose but a different set of parameters */
1551 switch (action->type) {
1552 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT:
1553 {
1554 BlockdevSnapshot *s = action->u.blockdev_snapshot.data;
1555 device = s->node;
1556 node_name = s->node;
1557 new_image_file = NULL;
1558 snapshot_ref = s->overlay;
1559 }
1560 break;
1561 case TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC:
1562 {
1563 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
1564 device = s->has_device ? s->device : NULL;
1565 node_name = s->has_node_name ? s->node_name : NULL;
1566 new_image_file = s->snapshot_file;
1567 snapshot_ref = NULL;
1568 }
1569 break;
1570 default:
1571 g_assert_not_reached();
1572 }
1573
1574 /* start processing */
1575 if (action_check_completion_mode(common, errp) < 0) {
1576 return;
1577 }
1578
1579 state->old_bs = bdrv_lookup_bs(device, node_name, errp);
1580 if (!state->old_bs) {
1581 return;
1582 }
1583
1584 aio_context = bdrv_get_aio_context(state->old_bs);
1585 aio_context_acquire(aio_context);
1586
1587 /* Paired with .clean() */
1588 bdrv_drained_begin(state->old_bs);
1589
1590 if (!bdrv_is_inserted(state->old_bs)) {
1591 error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, device);
1592 goto out;
1593 }
1594
1595 if (bdrv_op_is_blocked(state->old_bs,
1596 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT, errp)) {
1597 goto out;
1598 }
1599
1600 if (!bdrv_is_read_only(state->old_bs)) {
1601 if (bdrv_flush(state->old_bs)) {
1602 error_setg(errp, QERR_IO_ERROR);
1603 goto out;
1604 }
1605 }
1606
1607 if (!bdrv_is_first_non_filter(state->old_bs)) {
1608 error_setg(errp, QERR_FEATURE_DISABLED, "snapshot");
1609 goto out;
1610 }
1611
1612 if (action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC) {
1613 BlockdevSnapshotSync *s = action->u.blockdev_snapshot_sync.data;
1614 const char *format = s->has_format ? s->format : "qcow2";
1615 enum NewImageMode mode;
1616 const char *snapshot_node_name =
1617 s->has_snapshot_node_name ? s->snapshot_node_name : NULL;
1618
1619 if (node_name && !snapshot_node_name) {
1620 error_setg(errp, "New snapshot node name missing");
1621 goto out;
1622 }
1623
1624 if (snapshot_node_name &&
1625 bdrv_lookup_bs(snapshot_node_name, snapshot_node_name, NULL)) {
1626 error_setg(errp, "New snapshot node name already in use");
1627 goto out;
1628 }
1629
1630 flags = state->old_bs->open_flags;
1631 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_COPY_ON_READ);
1632 flags |= BDRV_O_NO_BACKING;
1633
1634 /* create new image w/backing file */
1635 mode = s->has_mode ? s->mode : NEW_IMAGE_MODE_ABSOLUTE_PATHS;
1636 if (mode != NEW_IMAGE_MODE_EXISTING) {
1637 int64_t size = bdrv_getlength(state->old_bs);
1638 if (size < 0) {
1639 error_setg_errno(errp, -size, "bdrv_getlength failed");
1640 goto out;
1641 }
1642 bdrv_img_create(new_image_file, format,
1643 state->old_bs->filename,
1644 state->old_bs->drv->format_name,
1645 NULL, size, flags, false, &local_err);
1646 if (local_err) {
1647 error_propagate(errp, local_err);
1648 goto out;
1649 }
1650 }
1651
1652 options = qdict_new();
1653 if (s->has_snapshot_node_name) {
1654 qdict_put_str(options, "node-name", snapshot_node_name);
1655 }
1656 qdict_put_str(options, "driver", format);
1657 }
1658
1659 state->new_bs = bdrv_open(new_image_file, snapshot_ref, options, flags,
1660 errp);
1661 /* We will manually add the backing_hd field to the bs later */
1662 if (!state->new_bs) {
1663 goto out;
1664 }
1665
1666 if (bdrv_has_blk(state->new_bs)) {
1667 error_setg(errp, "The snapshot is already in use");
1668 goto out;
1669 }
1670
1671 if (bdrv_op_is_blocked(state->new_bs, BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT,
1672 errp)) {
1673 goto out;
1674 }
1675
1676 if (state->new_bs->backing != NULL) {
1677 error_setg(errp, "The snapshot already has a backing image");
1678 goto out;
1679 }
1680
1681 if (!state->new_bs->drv->supports_backing) {
1682 error_setg(errp, "The snapshot does not support backing images");
1683 goto out;
1684 }
1685
1686 bdrv_set_aio_context(state->new_bs, aio_context);
1687
1688 /* This removes our old bs and adds the new bs. This is an operation that
1689 * can fail, so we need to do it in .prepare; undoing it for abort is
1690 * always possible. */
1691 bdrv_ref(state->new_bs);
1692 bdrv_append(state->new_bs, state->old_bs, &local_err);
1693 if (local_err) {
1694 error_propagate(errp, local_err);
1695 goto out;
1696 }
1697 state->overlay_appended = true;
1698
1699 out:
1700 aio_context_release(aio_context);
1701 }
1702
1703 static void external_snapshot_commit(BlkActionState *common)
1704 {
1705 ExternalSnapshotState *state =
1706 DO_UPCAST(ExternalSnapshotState, common, common);
1707 AioContext *aio_context;
1708
1709 aio_context = bdrv_get_aio_context(state->old_bs);
1710 aio_context_acquire(aio_context);
1711
1712 /* We don't need (or want) to use the transactional
1713 * bdrv_reopen_multiple() across all the entries at once, because we
1714 * don't want to abort all of them if one of them fails the reopen */
1715 if (!atomic_read(&state->old_bs->copy_on_read)) {
1716 bdrv_reopen(state->old_bs, state->old_bs->open_flags & ~BDRV_O_RDWR,
1717 NULL);
1718 }
1719
1720 aio_context_release(aio_context);
1721 }
1722
1723 static void external_snapshot_abort(BlkActionState *common)
1724 {
1725 ExternalSnapshotState *state =
1726 DO_UPCAST(ExternalSnapshotState, common, common);
1727 if (state->new_bs) {
1728 if (state->overlay_appended) {
1729 AioContext *aio_context;
1730
1731 aio_context = bdrv_get_aio_context(state->old_bs);
1732 aio_context_acquire(aio_context);
1733
1734 bdrv_ref(state->old_bs); /* we can't let bdrv_set_backind_hd()
1735 close state->old_bs; we need it */
1736 bdrv_set_backing_hd(state->new_bs, NULL, &error_abort);
1737 bdrv_replace_node(state->new_bs, state->old_bs, &error_abort);
1738 bdrv_unref(state->old_bs); /* bdrv_replace_node() ref'ed old_bs */
1739
1740 aio_context_release(aio_context);
1741 }
1742 }
1743 }
1744
1745 static void external_snapshot_clean(BlkActionState *common)
1746 {
1747 ExternalSnapshotState *state =
1748 DO_UPCAST(ExternalSnapshotState, common, common);
1749 AioContext *aio_context;
1750
1751 if (!state->old_bs) {
1752 return;
1753 }
1754
1755 aio_context = bdrv_get_aio_context(state->old_bs);
1756 aio_context_acquire(aio_context);
1757
1758 bdrv_drained_end(state->old_bs);
1759 bdrv_unref(state->new_bs);
1760
1761 aio_context_release(aio_context);
1762 }
1763
1764 typedef struct DriveBackupState {
1765 BlkActionState common;
1766 BlockDriverState *bs;
1767 BlockJob *job;
1768 } DriveBackupState;
1769
1770 static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn,
1771 Error **errp);
1772
1773 static void drive_backup_prepare(BlkActionState *common, Error **errp)
1774 {
1775 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1776 BlockDriverState *bs;
1777 DriveBackup *backup;
1778 AioContext *aio_context;
1779 Error *local_err = NULL;
1780
1781 assert(common->action->type == TRANSACTION_ACTION_KIND_DRIVE_BACKUP);
1782 backup = common->action->u.drive_backup.data;
1783
1784 bs = qmp_get_root_bs(backup->device, errp);
1785 if (!bs) {
1786 return;
1787 }
1788
1789 aio_context = bdrv_get_aio_context(bs);
1790 aio_context_acquire(aio_context);
1791
1792 /* Paired with .clean() */
1793 bdrv_drained_begin(bs);
1794
1795 state->bs = bs;
1796
1797 state->job = do_drive_backup(backup, common->block_job_txn, &local_err);
1798 if (local_err) {
1799 error_propagate(errp, local_err);
1800 goto out;
1801 }
1802
1803 out:
1804 aio_context_release(aio_context);
1805 }
1806
1807 static void drive_backup_commit(BlkActionState *common)
1808 {
1809 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1810 AioContext *aio_context;
1811
1812 aio_context = bdrv_get_aio_context(state->bs);
1813 aio_context_acquire(aio_context);
1814
1815 assert(state->job);
1816 job_start(&state->job->job);
1817
1818 aio_context_release(aio_context);
1819 }
1820
1821 static void drive_backup_abort(BlkActionState *common)
1822 {
1823 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1824
1825 if (state->job) {
1826 AioContext *aio_context;
1827
1828 aio_context = bdrv_get_aio_context(state->bs);
1829 aio_context_acquire(aio_context);
1830
1831 job_cancel_sync(&state->job->job);
1832
1833 aio_context_release(aio_context);
1834 }
1835 }
1836
1837 static void drive_backup_clean(BlkActionState *common)
1838 {
1839 DriveBackupState *state = DO_UPCAST(DriveBackupState, common, common);
1840 AioContext *aio_context;
1841
1842 if (!state->bs) {
1843 return;
1844 }
1845
1846 aio_context = bdrv_get_aio_context(state->bs);
1847 aio_context_acquire(aio_context);
1848
1849 bdrv_drained_end(state->bs);
1850
1851 aio_context_release(aio_context);
1852 }
1853
1854 typedef struct BlockdevBackupState {
1855 BlkActionState common;
1856 BlockDriverState *bs;
1857 BlockJob *job;
1858 } BlockdevBackupState;
1859
1860 static BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn,
1861 Error **errp);
1862
1863 static void blockdev_backup_prepare(BlkActionState *common, Error **errp)
1864 {
1865 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1866 BlockdevBackup *backup;
1867 BlockDriverState *bs, *target;
1868 AioContext *aio_context;
1869 Error *local_err = NULL;
1870
1871 assert(common->action->type == TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP);
1872 backup = common->action->u.blockdev_backup.data;
1873
1874 bs = qmp_get_root_bs(backup->device, errp);
1875 if (!bs) {
1876 return;
1877 }
1878
1879 target = bdrv_lookup_bs(backup->target, backup->target, errp);
1880 if (!target) {
1881 return;
1882 }
1883
1884 aio_context = bdrv_get_aio_context(bs);
1885 if (aio_context != bdrv_get_aio_context(target)) {
1886 error_setg(errp, "Backup between two IO threads is not implemented");
1887 return;
1888 }
1889 aio_context_acquire(aio_context);
1890 state->bs = bs;
1891
1892 /* Paired with .clean() */
1893 bdrv_drained_begin(state->bs);
1894
1895 state->job = do_blockdev_backup(backup, common->block_job_txn, &local_err);
1896 if (local_err) {
1897 error_propagate(errp, local_err);
1898 goto out;
1899 }
1900
1901 out:
1902 aio_context_release(aio_context);
1903 }
1904
1905 static void blockdev_backup_commit(BlkActionState *common)
1906 {
1907 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1908 AioContext *aio_context;
1909
1910 aio_context = bdrv_get_aio_context(state->bs);
1911 aio_context_acquire(aio_context);
1912
1913 assert(state->job);
1914 job_start(&state->job->job);
1915
1916 aio_context_release(aio_context);
1917 }
1918
1919 static void blockdev_backup_abort(BlkActionState *common)
1920 {
1921 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1922
1923 if (state->job) {
1924 AioContext *aio_context;
1925
1926 aio_context = bdrv_get_aio_context(state->bs);
1927 aio_context_acquire(aio_context);
1928
1929 job_cancel_sync(&state->job->job);
1930
1931 aio_context_release(aio_context);
1932 }
1933 }
1934
1935 static void blockdev_backup_clean(BlkActionState *common)
1936 {
1937 BlockdevBackupState *state = DO_UPCAST(BlockdevBackupState, common, common);
1938 AioContext *aio_context;
1939
1940 if (!state->bs) {
1941 return;
1942 }
1943
1944 aio_context = bdrv_get_aio_context(state->bs);
1945 aio_context_acquire(aio_context);
1946
1947 bdrv_drained_end(state->bs);
1948
1949 aio_context_release(aio_context);
1950 }
1951
1952 typedef struct BlockDirtyBitmapState {
1953 BlkActionState common;
1954 BdrvDirtyBitmap *bitmap;
1955 BlockDriverState *bs;
1956 HBitmap *backup;
1957 bool prepared;
1958 bool was_enabled;
1959 } BlockDirtyBitmapState;
1960
1961 static void block_dirty_bitmap_add_prepare(BlkActionState *common,
1962 Error **errp)
1963 {
1964 Error *local_err = NULL;
1965 BlockDirtyBitmapAdd *action;
1966 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
1967 common, common);
1968
1969 if (action_check_completion_mode(common, errp) < 0) {
1970 return;
1971 }
1972
1973 action = common->action->u.block_dirty_bitmap_add.data;
1974 /* AIO context taken and released within qmp_block_dirty_bitmap_add */
1975 qmp_block_dirty_bitmap_add(action->node, action->name,
1976 action->has_granularity, action->granularity,
1977 action->has_persistent, action->persistent,
1978 action->has_autoload, action->autoload,
1979 action->has_x_disabled, action->x_disabled,
1980 &local_err);
1981
1982 if (!local_err) {
1983 state->prepared = true;
1984 } else {
1985 error_propagate(errp, local_err);
1986 }
1987 }
1988
1989 static void block_dirty_bitmap_add_abort(BlkActionState *common)
1990 {
1991 BlockDirtyBitmapAdd *action;
1992 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
1993 common, common);
1994
1995 action = common->action->u.block_dirty_bitmap_add.data;
1996 /* Should not be able to fail: IF the bitmap was added via .prepare(),
1997 * then the node reference and bitmap name must have been valid.
1998 */
1999 if (state->prepared) {
2000 qmp_block_dirty_bitmap_remove(action->node, action->name, &error_abort);
2001 }
2002 }
2003
2004 static void block_dirty_bitmap_clear_prepare(BlkActionState *common,
2005 Error **errp)
2006 {
2007 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2008 common, common);
2009 BlockDirtyBitmap *action;
2010
2011 if (action_check_completion_mode(common, errp) < 0) {
2012 return;
2013 }
2014
2015 action = common->action->u.block_dirty_bitmap_clear.data;
2016 state->bitmap = block_dirty_bitmap_lookup(action->node,
2017 action->name,
2018 &state->bs,
2019 errp);
2020 if (!state->bitmap) {
2021 return;
2022 }
2023
2024 if (bdrv_dirty_bitmap_frozen(state->bitmap)) {
2025 error_setg(errp, "Cannot modify a frozen bitmap");
2026 return;
2027 } else if (bdrv_dirty_bitmap_qmp_locked(state->bitmap)) {
2028 error_setg(errp, "Cannot modify a locked bitmap");
2029 return;
2030 } else if (!bdrv_dirty_bitmap_enabled(state->bitmap)) {
2031 error_setg(errp, "Cannot clear a disabled bitmap");
2032 return;
2033 } else if (bdrv_dirty_bitmap_readonly(state->bitmap)) {
2034 error_setg(errp, "Cannot clear a readonly bitmap");
2035 return;
2036 }
2037
2038 bdrv_clear_dirty_bitmap(state->bitmap, &state->backup);
2039 }
2040
2041 static void block_dirty_bitmap_clear_abort(BlkActionState *common)
2042 {
2043 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2044 common, common);
2045
2046 if (state->backup) {
2047 bdrv_undo_clear_dirty_bitmap(state->bitmap, state->backup);
2048 }
2049 }
2050
2051 static void block_dirty_bitmap_clear_commit(BlkActionState *common)
2052 {
2053 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2054 common, common);
2055
2056 hbitmap_free(state->backup);
2057 }
2058
2059 static void block_dirty_bitmap_enable_prepare(BlkActionState *common,
2060 Error **errp)
2061 {
2062 BlockDirtyBitmap *action;
2063 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2064 common, common);
2065
2066 if (action_check_completion_mode(common, errp) < 0) {
2067 return;
2068 }
2069
2070 action = common->action->u.x_block_dirty_bitmap_enable.data;
2071 state->bitmap = block_dirty_bitmap_lookup(action->node,
2072 action->name,
2073 NULL,
2074 errp);
2075 if (!state->bitmap) {
2076 return;
2077 }
2078
2079 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
2080 bdrv_enable_dirty_bitmap(state->bitmap);
2081 }
2082
2083 static void block_dirty_bitmap_enable_abort(BlkActionState *common)
2084 {
2085 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2086 common, common);
2087
2088 if (!state->was_enabled) {
2089 bdrv_disable_dirty_bitmap(state->bitmap);
2090 }
2091 }
2092
2093 static void block_dirty_bitmap_disable_prepare(BlkActionState *common,
2094 Error **errp)
2095 {
2096 BlockDirtyBitmap *action;
2097 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2098 common, common);
2099
2100 if (action_check_completion_mode(common, errp) < 0) {
2101 return;
2102 }
2103
2104 action = common->action->u.x_block_dirty_bitmap_disable.data;
2105 state->bitmap = block_dirty_bitmap_lookup(action->node,
2106 action->name,
2107 NULL,
2108 errp);
2109 if (!state->bitmap) {
2110 return;
2111 }
2112
2113 state->was_enabled = bdrv_dirty_bitmap_enabled(state->bitmap);
2114 bdrv_disable_dirty_bitmap(state->bitmap);
2115 }
2116
2117 static void block_dirty_bitmap_disable_abort(BlkActionState *common)
2118 {
2119 BlockDirtyBitmapState *state = DO_UPCAST(BlockDirtyBitmapState,
2120 common, common);
2121
2122 if (state->was_enabled) {
2123 bdrv_enable_dirty_bitmap(state->bitmap);
2124 }
2125 }
2126
2127 static void abort_prepare(BlkActionState *common, Error **errp)
2128 {
2129 error_setg(errp, "Transaction aborted using Abort action");
2130 }
2131
2132 static void abort_commit(BlkActionState *common)
2133 {
2134 g_assert_not_reached(); /* this action never succeeds */
2135 }
2136
2137 static const BlkActionOps actions[] = {
2138 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT] = {
2139 .instance_size = sizeof(ExternalSnapshotState),
2140 .prepare = external_snapshot_prepare,
2141 .commit = external_snapshot_commit,
2142 .abort = external_snapshot_abort,
2143 .clean = external_snapshot_clean,
2144 },
2145 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC] = {
2146 .instance_size = sizeof(ExternalSnapshotState),
2147 .prepare = external_snapshot_prepare,
2148 .commit = external_snapshot_commit,
2149 .abort = external_snapshot_abort,
2150 .clean = external_snapshot_clean,
2151 },
2152 [TRANSACTION_ACTION_KIND_DRIVE_BACKUP] = {
2153 .instance_size = sizeof(DriveBackupState),
2154 .prepare = drive_backup_prepare,
2155 .commit = drive_backup_commit,
2156 .abort = drive_backup_abort,
2157 .clean = drive_backup_clean,
2158 },
2159 [TRANSACTION_ACTION_KIND_BLOCKDEV_BACKUP] = {
2160 .instance_size = sizeof(BlockdevBackupState),
2161 .prepare = blockdev_backup_prepare,
2162 .commit = blockdev_backup_commit,
2163 .abort = blockdev_backup_abort,
2164 .clean = blockdev_backup_clean,
2165 },
2166 [TRANSACTION_ACTION_KIND_ABORT] = {
2167 .instance_size = sizeof(BlkActionState),
2168 .prepare = abort_prepare,
2169 .commit = abort_commit,
2170 },
2171 [TRANSACTION_ACTION_KIND_BLOCKDEV_SNAPSHOT_INTERNAL_SYNC] = {
2172 .instance_size = sizeof(InternalSnapshotState),
2173 .prepare = internal_snapshot_prepare,
2174 .abort = internal_snapshot_abort,
2175 .clean = internal_snapshot_clean,
2176 },
2177 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_ADD] = {
2178 .instance_size = sizeof(BlockDirtyBitmapState),
2179 .prepare = block_dirty_bitmap_add_prepare,
2180 .abort = block_dirty_bitmap_add_abort,
2181 },
2182 [TRANSACTION_ACTION_KIND_BLOCK_DIRTY_BITMAP_CLEAR] = {
2183 .instance_size = sizeof(BlockDirtyBitmapState),
2184 .prepare = block_dirty_bitmap_clear_prepare,
2185 .commit = block_dirty_bitmap_clear_commit,
2186 .abort = block_dirty_bitmap_clear_abort,
2187 },
2188 [TRANSACTION_ACTION_KIND_X_BLOCK_DIRTY_BITMAP_ENABLE] = {
2189 .instance_size = sizeof(BlockDirtyBitmapState),
2190 .prepare = block_dirty_bitmap_enable_prepare,
2191 .abort = block_dirty_bitmap_enable_abort,
2192 },
2193 [TRANSACTION_ACTION_KIND_X_BLOCK_DIRTY_BITMAP_DISABLE] = {
2194 .instance_size = sizeof(BlockDirtyBitmapState),
2195 .prepare = block_dirty_bitmap_disable_prepare,
2196 .abort = block_dirty_bitmap_disable_abort,
2197 }
2198 };
2199
2200 /**
2201 * Allocate a TransactionProperties structure if necessary, and fill
2202 * that structure with desired defaults if they are unset.
2203 */
2204 static TransactionProperties *get_transaction_properties(
2205 TransactionProperties *props)
2206 {
2207 if (!props) {
2208 props = g_new0(TransactionProperties, 1);
2209 }
2210
2211 if (!props->has_completion_mode) {
2212 props->has_completion_mode = true;
2213 props->completion_mode = ACTION_COMPLETION_MODE_INDIVIDUAL;
2214 }
2215
2216 return props;
2217 }
2218
2219 /*
2220 * 'Atomic' group operations. The operations are performed as a set, and if
2221 * any fail then we roll back all operations in the group.
2222 */
2223 void qmp_transaction(TransactionActionList *dev_list,
2224 bool has_props,
2225 struct TransactionProperties *props,
2226 Error **errp)
2227 {
2228 TransactionActionList *dev_entry = dev_list;
2229 JobTxn *block_job_txn = NULL;
2230 BlkActionState *state, *next;
2231 Error *local_err = NULL;
2232
2233 QSIMPLEQ_HEAD(snap_bdrv_states, BlkActionState) snap_bdrv_states;
2234 QSIMPLEQ_INIT(&snap_bdrv_states);
2235
2236 /* Does this transaction get canceled as a group on failure?
2237 * If not, we don't really need to make a JobTxn.
2238 */
2239 props = get_transaction_properties(props);
2240 if (props->completion_mode != ACTION_COMPLETION_MODE_INDIVIDUAL) {
2241 block_job_txn = job_txn_new();
2242 }
2243
2244 /* drain all i/o before any operations */
2245 bdrv_drain_all();
2246
2247 /* We don't do anything in this loop that commits us to the operations */
2248 while (NULL != dev_entry) {
2249 TransactionAction *dev_info = NULL;
2250 const BlkActionOps *ops;
2251
2252 dev_info = dev_entry->value;
2253 dev_entry = dev_entry->next;
2254
2255 assert(dev_info->type < ARRAY_SIZE(actions));
2256
2257 ops = &actions[dev_info->type];
2258 assert(ops->instance_size > 0);
2259
2260 state = g_malloc0(ops->instance_size);
2261 state->ops = ops;
2262 state->action = dev_info;
2263 state->block_job_txn = block_job_txn;
2264 state->txn_props = props;
2265 QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry);
2266
2267 state->ops->prepare(state, &local_err);
2268 if (local_err) {
2269 error_propagate(errp, local_err);
2270 goto delete_and_fail;
2271 }
2272 }
2273
2274 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
2275 if (state->ops->commit) {
2276 state->ops->commit(state);
2277 }
2278 }
2279
2280 /* success */
2281 goto exit;
2282
2283 delete_and_fail:
2284 /* failure, and it is all-or-none; roll back all operations */
2285 QSIMPLEQ_FOREACH(state, &snap_bdrv_states, entry) {
2286 if (state->ops->abort) {
2287 state->ops->abort(state);
2288 }
2289 }
2290 exit:
2291 QSIMPLEQ_FOREACH_SAFE(state, &snap_bdrv_states, entry, next) {
2292 if (state->ops->clean) {
2293 state->ops->clean(state);
2294 }
2295 g_free(state);
2296 }
2297 if (!has_props) {
2298 qapi_free_TransactionProperties(props);
2299 }
2300 job_txn_unref(block_job_txn);
2301 }
2302
2303 void qmp_eject(bool has_device, const char *device,
2304 bool has_id, const char *id,
2305 bool has_force, bool force, Error **errp)
2306 {
2307 Error *local_err = NULL;
2308 int rc;
2309
2310 if (!has_force) {
2311 force = false;
2312 }
2313
2314 rc = do_open_tray(has_device ? device : NULL,
2315 has_id ? id : NULL,
2316 force, &local_err);
2317 if (rc && rc != -ENOSYS) {
2318 error_propagate(errp, local_err);
2319 return;
2320 }
2321 error_free(local_err);
2322
2323 blockdev_remove_medium(has_device, device, has_id, id, errp);
2324 }
2325
2326 void qmp_block_passwd(bool has_device, const char *device,
2327 bool has_node_name, const char *node_name,
2328 const char *password, Error **errp)
2329 {
2330 error_setg(errp,
2331 "Setting block passwords directly is no longer supported");
2332 }
2333
2334 /*
2335 * Attempt to open the tray of @device.
2336 * If @force, ignore its tray lock.
2337 * Else, if the tray is locked, don't open it, but ask the guest to open it.
2338 * On error, store an error through @errp and return -errno.
2339 * If @device does not exist, return -ENODEV.
2340 * If it has no removable media, return -ENOTSUP.
2341 * If it has no tray, return -ENOSYS.
2342 * If the guest was asked to open the tray, return -EINPROGRESS.
2343 * Else, return 0.
2344 */
2345 static int do_open_tray(const char *blk_name, const char *qdev_id,
2346 bool force, Error **errp)
2347 {
2348 BlockBackend *blk;
2349 const char *device = qdev_id ?: blk_name;
2350 bool locked;
2351
2352 blk = qmp_get_blk(blk_name, qdev_id, errp);
2353 if (!blk) {
2354 return -ENODEV;
2355 }
2356
2357 if (!blk_dev_has_removable_media(blk)) {
2358 error_setg(errp, "Device '%s' is not removable", device);
2359 return -ENOTSUP;
2360 }
2361
2362 if (!blk_dev_has_tray(blk)) {
2363 error_setg(errp, "Device '%s' does not have a tray", device);
2364 return -ENOSYS;
2365 }
2366
2367 if (blk_dev_is_tray_open(blk)) {
2368 return 0;
2369 }
2370
2371 locked = blk_dev_is_medium_locked(blk);
2372 if (locked) {
2373 blk_dev_eject_request(blk, force);
2374 }
2375
2376 if (!locked || force) {
2377 blk_dev_change_media_cb(blk, false, &error_abort);
2378 }
2379
2380 if (locked && !force) {
2381 error_setg(errp, "Device '%s' is locked and force was not specified, "
2382 "wait for tray to open and try again", device);
2383 return -EINPROGRESS;
2384 }
2385
2386 return 0;
2387 }
2388
2389 void qmp_blockdev_open_tray(bool has_device, const char *device,
2390 bool has_id, const char *id,
2391 bool has_force, bool force,
2392 Error **errp)
2393 {
2394 Error *local_err = NULL;
2395 int rc;
2396
2397 if (!has_force) {
2398 force = false;
2399 }
2400 rc = do_open_tray(has_device ? device : NULL,
2401 has_id ? id : NULL,
2402 force, &local_err);
2403 if (rc && rc != -ENOSYS && rc != -EINPROGRESS) {
2404 error_propagate(errp, local_err);
2405 return;
2406 }
2407 error_free(local_err);
2408 }
2409
2410 void qmp_blockdev_close_tray(bool has_device, const char *device,
2411 bool has_id, const char *id,
2412 Error **errp)
2413 {
2414 BlockBackend *blk;
2415 Error *local_err = NULL;
2416
2417 device = has_device ? device : NULL;
2418 id = has_id ? id : NULL;
2419
2420 blk = qmp_get_blk(device, id, errp);
2421 if (!blk) {
2422 return;
2423 }
2424
2425 if (!blk_dev_has_removable_media(blk)) {
2426 error_setg(errp, "Device '%s' is not removable", device ?: id);
2427 return;
2428 }
2429
2430 if (!blk_dev_has_tray(blk)) {
2431 /* Ignore this command on tray-less devices */
2432 return;
2433 }
2434
2435 if (!blk_dev_is_tray_open(blk)) {
2436 return;
2437 }
2438
2439 blk_dev_change_media_cb(blk, true, &local_err);
2440 if (local_err) {
2441 error_propagate(errp, local_err);
2442 return;
2443 }
2444 }
2445
2446 static void blockdev_remove_medium(bool has_device, const char *device,
2447 bool has_id, const char *id, Error **errp)
2448 {
2449 BlockBackend *blk;
2450 BlockDriverState *bs;
2451 AioContext *aio_context;
2452 bool has_attached_device;
2453
2454 device = has_device ? device : NULL;
2455 id = has_id ? id : NULL;
2456
2457 blk = qmp_get_blk(device, id, errp);
2458 if (!blk) {
2459 return;
2460 }
2461
2462 /* For BBs without a device, we can exchange the BDS tree at will */
2463 has_attached_device = blk_get_attached_dev(blk);
2464
2465 if (has_attached_device && !blk_dev_has_removable_media(blk)) {
2466 error_setg(errp, "Device '%s' is not removable", device ?: id);
2467 return;
2468 }
2469
2470 if (has_attached_device && blk_dev_has_tray(blk) &&
2471 !blk_dev_is_tray_open(blk))
2472 {
2473 error_setg(errp, "Tray of device '%s' is not open", device ?: id);
2474 return;
2475 }
2476
2477 bs = blk_bs(blk);
2478 if (!bs) {
2479 return;
2480 }
2481
2482 aio_context = bdrv_get_aio_context(bs);
2483 aio_context_acquire(aio_context);
2484
2485 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_EJECT, errp)) {
2486 goto out;
2487 }
2488
2489 blk_remove_bs(blk);
2490
2491 if (!blk_dev_has_tray(blk)) {
2492 /* For tray-less devices, blockdev-open-tray is a no-op (or may not be
2493 * called at all); therefore, the medium needs to be ejected here.
2494 * Do it after blk_remove_bs() so blk_is_inserted(blk) returns the @load
2495 * value passed here (i.e. false). */
2496 blk_dev_change_media_cb(blk, false, &error_abort);
2497 }
2498
2499 out:
2500 aio_context_release(aio_context);
2501 }
2502
2503 void qmp_blockdev_remove_medium(const char *id, Error **errp)
2504 {
2505 blockdev_remove_medium(false, NULL, true, id, errp);
2506 }
2507
2508 static void qmp_blockdev_insert_anon_medium(BlockBackend *blk,
2509 BlockDriverState *bs, Error **errp)
2510 {
2511 Error *local_err = NULL;
2512 bool has_device;
2513 int ret;
2514
2515 /* For BBs without a device, we can exchange the BDS tree at will */
2516 has_device = blk_get_attached_dev(blk);
2517
2518 if (has_device && !blk_dev_has_removable_media(blk)) {
2519 error_setg(errp, "Device is not removable");
2520 return;
2521 }
2522
2523 if (has_device && blk_dev_has_tray(blk) && !blk_dev_is_tray_open(blk)) {
2524 error_setg(errp, "Tray of the device is not open");
2525 return;
2526 }
2527
2528 if (blk_bs(blk)) {
2529 error_setg(errp, "There already is a medium in the device");
2530 return;
2531 }
2532
2533 ret = blk_insert_bs(blk, bs, errp);
2534 if (ret < 0) {
2535 return;
2536 }
2537
2538 if (!blk_dev_has_tray(blk)) {
2539 /* For tray-less devices, blockdev-close-tray is a no-op (or may not be
2540 * called at all); therefore, the medium needs to be pushed into the
2541 * slot here.
2542 * Do it after blk_insert_bs() so blk_is_inserted(blk) returns the @load
2543 * value passed here (i.e. true). */
2544 blk_dev_change_media_cb(blk, true, &local_err);
2545 if (local_err) {
2546 error_propagate(errp, local_err);
2547 blk_remove_bs(blk);
2548 return;
2549 }
2550 }
2551 }
2552
2553 static void blockdev_insert_medium(bool has_device, const char *device,
2554 bool has_id, const char *id,
2555 const char *node_name, Error **errp)
2556 {
2557 BlockBackend *blk;
2558 BlockDriverState *bs;
2559
2560 blk = qmp_get_blk(has_device ? device : NULL,
2561 has_id ? id : NULL,
2562 errp);
2563 if (!blk) {
2564 return;
2565 }
2566
2567 bs = bdrv_find_node(node_name);
2568 if (!bs) {
2569 error_setg(errp, "Node '%s' not found", node_name);
2570 return;
2571 }
2572
2573 if (bdrv_has_blk(bs)) {
2574 error_setg(errp, "Node '%s' is already in use", node_name);
2575 return;
2576 }
2577
2578 qmp_blockdev_insert_anon_medium(blk, bs, errp);
2579 }
2580
2581 void qmp_blockdev_insert_medium(const char *id, const char *node_name,
2582 Error **errp)
2583 {
2584 blockdev_insert_medium(false, NULL, true, id, node_name, errp);
2585 }
2586
2587 void qmp_blockdev_change_medium(bool has_device, const char *device,
2588 bool has_id, const char *id,
2589 const char *filename,
2590 bool has_format, const char *format,
2591 bool has_read_only,
2592 BlockdevChangeReadOnlyMode read_only,
2593 Error **errp)
2594 {
2595 BlockBackend *blk;
2596 BlockDriverState *medium_bs = NULL;
2597 int bdrv_flags;
2598 bool detect_zeroes;
2599 int rc;
2600 QDict *options = NULL;
2601 Error *err = NULL;
2602
2603 blk = qmp_get_blk(has_device ? device : NULL,
2604 has_id ? id : NULL,
2605 errp);
2606 if (!blk) {
2607 goto fail;
2608 }
2609
2610 if (blk_bs(blk)) {
2611 blk_update_root_state(blk);
2612 }
2613
2614 bdrv_flags = blk_get_open_flags_from_root_state(blk);
2615 bdrv_flags &= ~(BDRV_O_TEMPORARY | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING |
2616 BDRV_O_PROTOCOL);
2617
2618 if (!has_read_only) {
2619 read_only = BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN;
2620 }
2621
2622 switch (read_only) {
2623 case BLOCKDEV_CHANGE_READ_ONLY_MODE_RETAIN:
2624 break;
2625
2626 case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_ONLY:
2627 bdrv_flags &= ~BDRV_O_RDWR;
2628 break;
2629
2630 case BLOCKDEV_CHANGE_READ_ONLY_MODE_READ_WRITE:
2631 bdrv_flags |= BDRV_O_RDWR;
2632 break;
2633
2634 default:
2635 abort();
2636 }
2637
2638 options = qdict_new();
2639 detect_zeroes = blk_get_detect_zeroes_from_root_state(blk);
2640 qdict_put_str(options, "detect-zeroes", detect_zeroes ? "on" : "off");
2641
2642 if (has_format) {
2643 qdict_put_str(options, "driver", format);
2644 }
2645
2646 medium_bs = bdrv_open(filename, NULL, options, bdrv_flags, errp);
2647 if (!medium_bs) {
2648 goto fail;
2649 }
2650
2651 rc = do_open_tray(has_device ? device : NULL,
2652 has_id ? id : NULL,
2653 false, &err);
2654 if (rc && rc != -ENOSYS) {
2655 error_propagate(errp, err);
2656 goto fail;
2657 }
2658 error_free(err);
2659 err = NULL;
2660
2661 blockdev_remove_medium(has_device, device, has_id, id, &err);
2662 if (err) {
2663 error_propagate(errp, err);
2664 goto fail;
2665 }
2666
2667 qmp_blockdev_insert_anon_medium(blk, medium_bs, &err);
2668 if (err) {
2669 error_propagate(errp, err);
2670 goto fail;
2671 }
2672
2673 qmp_blockdev_close_tray(has_device, device, has_id, id, errp);
2674
2675 fail:
2676 /* If the medium has been inserted, the device has its own reference, so
2677 * ours must be relinquished; and if it has not been inserted successfully,
2678 * the reference must be relinquished anyway */
2679 bdrv_unref(medium_bs);
2680 }
2681
2682 /* throttling disk I/O limits */
2683 void qmp_block_set_io_throttle(BlockIOThrottle *arg, Error **errp)
2684 {
2685 ThrottleConfig cfg;
2686 BlockDriverState *bs;
2687 BlockBackend *blk;
2688 AioContext *aio_context;
2689
2690 blk = qmp_get_blk(arg->has_device ? arg->device : NULL,
2691 arg->has_id ? arg->id : NULL,
2692 errp);
2693 if (!blk) {
2694 return;
2695 }
2696
2697 aio_context = blk_get_aio_context(blk);
2698 aio_context_acquire(aio_context);
2699
2700 bs = blk_bs(blk);
2701 if (!bs) {
2702 error_setg(errp, "Device has no medium");
2703 goto out;
2704 }
2705
2706 throttle_config_init(&cfg);
2707 cfg.buckets[THROTTLE_BPS_TOTAL].avg = arg->bps;
2708 cfg.buckets[THROTTLE_BPS_READ].avg = arg->bps_rd;
2709 cfg.buckets[THROTTLE_BPS_WRITE].avg = arg->bps_wr;
2710
2711 cfg.buckets[THROTTLE_OPS_TOTAL].avg = arg->iops;
2712 cfg.buckets[THROTTLE_OPS_READ].avg = arg->iops_rd;
2713 cfg.buckets[THROTTLE_OPS_WRITE].avg = arg->iops_wr;
2714
2715 if (arg->has_bps_max) {
2716 cfg.buckets[THROTTLE_BPS_TOTAL].max = arg->bps_max;
2717 }
2718 if (arg->has_bps_rd_max) {
2719 cfg.buckets[THROTTLE_BPS_READ].max = arg->bps_rd_max;
2720 }
2721 if (arg->has_bps_wr_max) {
2722 cfg.buckets[THROTTLE_BPS_WRITE].max = arg->bps_wr_max;
2723 }
2724 if (arg->has_iops_max) {
2725 cfg.buckets[THROTTLE_OPS_TOTAL].max = arg->iops_max;
2726 }
2727 if (arg->has_iops_rd_max) {
2728 cfg.buckets[THROTTLE_OPS_READ].max = arg->iops_rd_max;
2729 }
2730 if (arg->has_iops_wr_max) {
2731 cfg.buckets[THROTTLE_OPS_WRITE].max = arg->iops_wr_max;
2732 }
2733
2734 if (arg->has_bps_max_length) {
2735 cfg.buckets[THROTTLE_BPS_TOTAL].burst_length = arg->bps_max_length;
2736 }
2737 if (arg->has_bps_rd_max_length) {
2738 cfg.buckets[THROTTLE_BPS_READ].burst_length = arg->bps_rd_max_length;
2739 }
2740 if (arg->has_bps_wr_max_length) {
2741 cfg.buckets[THROTTLE_BPS_WRITE].burst_length = arg->bps_wr_max_length;
2742 }
2743 if (arg->has_iops_max_length) {
2744 cfg.buckets[THROTTLE_OPS_TOTAL].burst_length = arg->iops_max_length;
2745 }
2746 if (arg->has_iops_rd_max_length) {
2747 cfg.buckets[THROTTLE_OPS_READ].burst_length = arg->iops_rd_max_length;
2748 }
2749 if (arg->has_iops_wr_max_length) {
2750 cfg.buckets[THROTTLE_OPS_WRITE].burst_length = arg->iops_wr_max_length;
2751 }
2752
2753 if (arg->has_iops_size) {
2754 cfg.op_size = arg->iops_size;
2755 }
2756
2757 if (!throttle_is_valid(&cfg, errp)) {
2758 goto out;
2759 }
2760
2761 if (throttle_enabled(&cfg)) {
2762 /* Enable I/O limits if they're not enabled yet, otherwise
2763 * just update the throttling group. */
2764 if (!blk_get_public(blk)->throttle_group_member.throttle_state) {
2765 blk_io_limits_enable(blk,
2766 arg->has_group ? arg->group :
2767 arg->has_device ? arg->device :
2768 arg->id);
2769 } else if (arg->has_group) {
2770 blk_io_limits_update_group(blk, arg->group);
2771 }
2772 /* Set the new throttling configuration */
2773 blk_set_io_limits(blk, &cfg);
2774 } else if (blk_get_public(blk)->throttle_group_member.throttle_state) {
2775 /* If all throttling settings are set to 0, disable I/O limits */
2776 blk_io_limits_disable(blk);
2777 }
2778
2779 out:
2780 aio_context_release(aio_context);
2781 }
2782
2783 void qmp_block_dirty_bitmap_add(const char *node, const char *name,
2784 bool has_granularity, uint32_t granularity,
2785 bool has_persistent, bool persistent,
2786 bool has_autoload, bool autoload,
2787 bool has_disabled, bool disabled,
2788 Error **errp)
2789 {
2790 BlockDriverState *bs;
2791 BdrvDirtyBitmap *bitmap;
2792
2793 if (!name || name[0] == '\0') {
2794 error_setg(errp, "Bitmap name cannot be empty");
2795 return;
2796 }
2797
2798 bs = bdrv_lookup_bs(node, node, errp);
2799 if (!bs) {
2800 return;
2801 }
2802
2803 if (has_granularity) {
2804 if (granularity < 512 || !is_power_of_2(granularity)) {
2805 error_setg(errp, "Granularity must be power of 2 "
2806 "and at least 512");
2807 return;
2808 }
2809 } else {
2810 /* Default to cluster size, if available: */
2811 granularity = bdrv_get_default_bitmap_granularity(bs);
2812 }
2813
2814 if (!has_persistent) {
2815 persistent = false;
2816 }
2817
2818 if (has_autoload) {
2819 warn_report("Autoload option is deprecated and its value is ignored");
2820 }
2821
2822 if (!has_disabled) {
2823 disabled = false;
2824 }
2825
2826 if (persistent &&
2827 !bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp))
2828 {
2829 return;
2830 }
2831
2832 bitmap = bdrv_create_dirty_bitmap(bs, granularity, name, errp);
2833 if (bitmap == NULL) {
2834 return;
2835 }
2836
2837 if (disabled) {
2838 bdrv_disable_dirty_bitmap(bitmap);
2839 }
2840
2841 bdrv_dirty_bitmap_set_persistance(bitmap, persistent);
2842 }
2843
2844 void qmp_block_dirty_bitmap_remove(const char *node, const char *name,
2845 Error **errp)
2846 {
2847 BlockDriverState *bs;
2848 BdrvDirtyBitmap *bitmap;
2849 Error *local_err = NULL;
2850
2851 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2852 if (!bitmap || !bs) {
2853 return;
2854 }
2855
2856 if (bdrv_dirty_bitmap_frozen(bitmap)) {
2857 error_setg(errp,
2858 "Bitmap '%s' is currently frozen and cannot be removed",
2859 name);
2860 return;
2861 } else if (bdrv_dirty_bitmap_qmp_locked(bitmap)) {
2862 error_setg(errp,
2863 "Bitmap '%s' is currently locked and cannot be removed",
2864 name);
2865 return;
2866 }
2867
2868 if (bdrv_dirty_bitmap_get_persistance(bitmap)) {
2869 bdrv_remove_persistent_dirty_bitmap(bs, name, &local_err);
2870 if (local_err != NULL) {
2871 error_propagate(errp, local_err);
2872 return;
2873 }
2874 }
2875
2876 bdrv_release_dirty_bitmap(bs, bitmap);
2877 }
2878
2879 /**
2880 * Completely clear a bitmap, for the purposes of synchronizing a bitmap
2881 * immediately after a full backup operation.
2882 */
2883 void qmp_block_dirty_bitmap_clear(const char *node, const char *name,
2884 Error **errp)
2885 {
2886 BdrvDirtyBitmap *bitmap;
2887 BlockDriverState *bs;
2888
2889 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2890 if (!bitmap || !bs) {
2891 return;
2892 }
2893
2894 if (bdrv_dirty_bitmap_frozen(bitmap)) {
2895 error_setg(errp,
2896 "Bitmap '%s' is currently frozen and cannot be modified",
2897 name);
2898 return;
2899 } else if (bdrv_dirty_bitmap_qmp_locked(bitmap)) {
2900 error_setg(errp,
2901 "Bitmap '%s' is currently locked and cannot be modified",
2902 name);
2903 return;
2904 } else if (!bdrv_dirty_bitmap_enabled(bitmap)) {
2905 error_setg(errp,
2906 "Bitmap '%s' is currently disabled and cannot be cleared",
2907 name);
2908 return;
2909 } else if (bdrv_dirty_bitmap_readonly(bitmap)) {
2910 error_setg(errp, "Bitmap '%s' is readonly and cannot be cleared", name);
2911 return;
2912 }
2913
2914 bdrv_clear_dirty_bitmap(bitmap, NULL);
2915 }
2916
2917 void qmp_x_block_dirty_bitmap_enable(const char *node, const char *name,
2918 Error **errp)
2919 {
2920 BlockDriverState *bs;
2921 BdrvDirtyBitmap *bitmap;
2922
2923 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2924 if (!bitmap) {
2925 return;
2926 }
2927
2928 if (bdrv_dirty_bitmap_frozen(bitmap)) {
2929 error_setg(errp,
2930 "Bitmap '%s' is currently frozen and cannot be enabled",
2931 name);
2932 return;
2933 }
2934
2935 bdrv_enable_dirty_bitmap(bitmap);
2936 }
2937
2938 void qmp_x_block_dirty_bitmap_disable(const char *node, const char *name,
2939 Error **errp)
2940 {
2941 BlockDriverState *bs;
2942 BdrvDirtyBitmap *bitmap;
2943
2944 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2945 if (!bitmap) {
2946 return;
2947 }
2948
2949 if (bdrv_dirty_bitmap_frozen(bitmap)) {
2950 error_setg(errp,
2951 "Bitmap '%s' is currently frozen and cannot be disabled",
2952 name);
2953 return;
2954 }
2955
2956 bdrv_disable_dirty_bitmap(bitmap);
2957 }
2958
2959 void qmp_x_block_dirty_bitmap_merge(const char *node, const char *dst_name,
2960 const char *src_name, Error **errp)
2961 {
2962 BlockDriverState *bs;
2963 BdrvDirtyBitmap *dst, *src;
2964
2965 dst = block_dirty_bitmap_lookup(node, dst_name, &bs, errp);
2966 if (!dst) {
2967 return;
2968 }
2969
2970 if (bdrv_dirty_bitmap_frozen(dst)) {
2971 error_setg(errp, "Bitmap '%s' is frozen and cannot be modified",
2972 dst_name);
2973 return;
2974 } else if (bdrv_dirty_bitmap_readonly(dst)) {
2975 error_setg(errp, "Bitmap '%s' is readonly and cannot be modified",
2976 dst_name);
2977 return;
2978 }
2979
2980 src = bdrv_find_dirty_bitmap(bs, src_name);
2981 if (!src) {
2982 error_setg(errp, "Dirty bitmap '%s' not found", src_name);
2983 return;
2984 }
2985
2986 bdrv_merge_dirty_bitmap(dst, src, errp);
2987 }
2988
2989 BlockDirtyBitmapSha256 *qmp_x_debug_block_dirty_bitmap_sha256(const char *node,
2990 const char *name,
2991 Error **errp)
2992 {
2993 BdrvDirtyBitmap *bitmap;
2994 BlockDriverState *bs;
2995 BlockDirtyBitmapSha256 *ret = NULL;
2996 char *sha256;
2997
2998 bitmap = block_dirty_bitmap_lookup(node, name, &bs, errp);
2999 if (!bitmap || !bs) {
3000 return NULL;
3001 }
3002
3003 sha256 = bdrv_dirty_bitmap_sha256(bitmap, errp);
3004 if (sha256 == NULL) {
3005 return NULL;
3006 }
3007
3008 ret = g_new(BlockDirtyBitmapSha256, 1);
3009 ret->sha256 = sha256;
3010
3011 return ret;
3012 }
3013
3014 void hmp_drive_del(Monitor *mon, const QDict *qdict)
3015 {
3016 const char *id = qdict_get_str(qdict, "id");
3017 BlockBackend *blk;
3018 BlockDriverState *bs;
3019 AioContext *aio_context;
3020 Error *local_err = NULL;
3021
3022 bs = bdrv_find_node(id);
3023 if (bs) {
3024 qmp_blockdev_del(id, &local_err);
3025 if (local_err) {
3026 error_report_err(local_err);
3027 }
3028 return;
3029 }
3030
3031 blk = blk_by_name(id);
3032 if (!blk) {
3033 error_report("Device '%s' not found", id);
3034 return;
3035 }
3036
3037 if (!blk_legacy_dinfo(blk)) {
3038 error_report("Deleting device added with blockdev-add"
3039 " is not supported");
3040 return;
3041 }
3042
3043 aio_context = blk_get_aio_context(blk);
3044 aio_context_acquire(aio_context);
3045
3046 bs = blk_bs(blk);
3047 if (bs) {
3048 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, &local_err)) {
3049 error_report_err(local_err);
3050 aio_context_release(aio_context);
3051 return;
3052 }
3053
3054 blk_remove_bs(blk);
3055 }
3056
3057 /* Make the BlockBackend and the attached BlockDriverState anonymous */
3058 monitor_remove_blk(blk);
3059
3060 /* If this BlockBackend has a device attached to it, its refcount will be
3061 * decremented when the device is removed; otherwise we have to do so here.
3062 */
3063 if (blk_get_attached_dev(blk)) {
3064 /* Further I/O must not pause the guest */
3065 blk_set_on_error(blk, BLOCKDEV_ON_ERROR_REPORT,
3066 BLOCKDEV_ON_ERROR_REPORT);
3067 } else {
3068 blk_unref(blk);
3069 }
3070
3071 aio_context_release(aio_context);
3072 }
3073
3074 void qmp_block_resize(bool has_device, const char *device,
3075 bool has_node_name, const char *node_name,
3076 int64_t size, Error **errp)
3077 {
3078 Error *local_err = NULL;
3079 BlockBackend *blk = NULL;
3080 BlockDriverState *bs;
3081 AioContext *aio_context;
3082 int ret;
3083
3084 bs = bdrv_lookup_bs(has_device ? device : NULL,
3085 has_node_name ? node_name : NULL,
3086 &local_err);
3087 if (local_err) {
3088 error_propagate(errp, local_err);
3089 return;
3090 }
3091
3092 aio_context = bdrv_get_aio_context(bs);
3093 aio_context_acquire(aio_context);
3094
3095 if (!bdrv_is_first_non_filter(bs)) {
3096 error_setg(errp, QERR_FEATURE_DISABLED, "resize");
3097 goto out;
3098 }
3099
3100 if (size < 0) {
3101 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size");
3102 goto out;
3103 }
3104
3105 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) {
3106 error_setg(errp, QERR_DEVICE_IN_USE, device);
3107 goto out;
3108 }
3109
3110 blk = blk_new(BLK_PERM_RESIZE, BLK_PERM_ALL);
3111 ret = blk_insert_bs(blk, bs, errp);
3112 if (ret < 0) {
3113 goto out;
3114 }
3115
3116 bdrv_drained_begin(bs);
3117 ret = blk_truncate(blk, size, PREALLOC_MODE_OFF, errp);
3118 bdrv_drained_end(bs);
3119
3120 out:
3121 blk_unref(blk);
3122 aio_context_release(aio_context);
3123 }
3124
3125 void qmp_block_stream(bool has_job_id, const char *job_id, const char *device,
3126 bool has_base, const char *base,
3127 bool has_base_node, const char *base_node,
3128 bool has_backing_file, const char *backing_file,
3129 bool has_speed, int64_t speed,
3130 bool has_on_error, BlockdevOnError on_error,
3131 Error **errp)
3132 {
3133 BlockDriverState *bs, *iter;
3134 BlockDriverState *base_bs = NULL;
3135 AioContext *aio_context;
3136 Error *local_err = NULL;
3137 const char *base_name = NULL;
3138
3139 if (!has_on_error) {
3140 on_error = BLOCKDEV_ON_ERROR_REPORT;
3141 }
3142
3143 bs = bdrv_lookup_bs(device, device, errp);
3144 if (!bs) {
3145 return;
3146 }
3147
3148 aio_context = bdrv_get_aio_context(bs);
3149 aio_context_acquire(aio_context);
3150
3151 if (has_base && has_base_node) {
3152 error_setg(errp, "'base' and 'base-node' cannot be specified "
3153 "at the same time");
3154 goto out;
3155 }
3156
3157 if (has_base) {
3158 base_bs = bdrv_find_backing_image(bs, base);
3159 if (base_bs == NULL) {
3160 error_setg(errp, QERR_BASE_NOT_FOUND, base);
3161 goto out;
3162 }
3163 assert(bdrv_get_aio_context(base_bs) == aio_context);
3164 base_name = base;
3165 }
3166
3167 if (has_base_node) {
3168 base_bs = bdrv_lookup_bs(NULL, base_node, errp);
3169 if (!base_bs) {
3170 goto out;
3171 }
3172 if (bs == base_bs || !bdrv_chain_contains(bs, base_bs)) {
3173 error_setg(errp, "Node '%s' is not a backing image of '%s'",
3174 base_node, device);
3175 goto out;
3176 }
3177 assert(bdrv_get_aio_context(base_bs) == aio_context);
3178 base_name = base_bs->filename;
3179 }
3180
3181 /* Check for op blockers in the whole chain between bs and base */
3182 for (iter = bs; iter && iter != base_bs; iter = backing_bs(iter)) {
3183 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_STREAM, errp)) {
3184 goto out;
3185 }
3186 }
3187
3188 /* if we are streaming the entire chain, the result will have no backing
3189 * file, and specifying one is therefore an error */
3190 if (base_bs == NULL && has_backing_file) {
3191 error_setg(errp, "backing file specified, but streaming the "
3192 "entire chain");
3193 goto out;
3194 }
3195
3196 /* backing_file string overrides base bs filename */
3197 base_name = has_backing_file ? backing_file : base_name;
3198
3199 stream_start(has_job_id ? job_id : NULL, bs, base_bs, base_name,
3200 has_speed ? speed : 0, on_error, &local_err);
3201 if (local_err) {
3202 error_propagate(errp, local_err);
3203 goto out;
3204 }
3205
3206 trace_qmp_block_stream(bs, bs->job);
3207
3208 out:
3209 aio_context_release(aio_context);
3210 }
3211
3212 void qmp_block_commit(bool has_job_id, const char *job_id, const char *device,
3213 bool has_base, const char *base,
3214 bool has_top, const char *top,
3215 bool has_backing_file, const char *backing_file,
3216 bool has_speed, int64_t speed,
3217 bool has_filter_node_name, const char *filter_node_name,
3218 Error **errp)
3219 {
3220 BlockDriverState *bs;
3221 BlockDriverState *iter;
3222 BlockDriverState *base_bs, *top_bs;
3223 AioContext *aio_context;
3224 Error *local_err = NULL;
3225 /* This will be part of the QMP command, if/when the
3226 * BlockdevOnError change for blkmirror makes it in
3227 */
3228 BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT;
3229
3230 if (!has_speed) {
3231 speed = 0;
3232 }
3233 if (!has_filter_node_name) {
3234 filter_node_name = NULL;
3235 }
3236
3237 /* Important Note:
3238 * libvirt relies on the DeviceNotFound error class in order to probe for
3239 * live commit feature versions; for this to work, we must make sure to
3240 * perform the device lookup before any generic errors that may occur in a
3241 * scenario in which all optional arguments are omitted. */
3242 bs = qmp_get_root_bs(device, &local_err);
3243 if (!bs) {
3244 bs = bdrv_lookup_bs(device, device, NULL);
3245 if (!bs) {
3246 error_free(local_err);
3247 error_set(errp, ERROR_CLASS_DEVICE_NOT_FOUND,
3248 "Device '%s' not found", device);
3249 } else {
3250 error_propagate(errp, local_err);
3251 }
3252 return;
3253 }
3254
3255 aio_context = bdrv_get_aio_context(bs);
3256 aio_context_acquire(aio_context);
3257
3258 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT_SOURCE, errp)) {
3259 goto out;
3260 }
3261
3262 /* default top_bs is the active layer */
3263 top_bs = bs;
3264
3265 if (has_top && top) {
3266 if (strcmp(bs->filename, top) != 0) {
3267 top_bs = bdrv_find_backing_image(bs, top);
3268 }
3269 }
3270
3271 if (top_bs == NULL) {
3272 error_setg(errp, "Top image file %s not found", top ? top : "NULL");
3273 goto out;
3274 }
3275
3276 assert(bdrv_get_aio_context(top_bs) == aio_context);
3277
3278 if (has_base && base) {
3279 base_bs = bdrv_find_backing_image(top_bs, base);
3280 } else {
3281 base_bs = bdrv_find_base(top_bs);
3282 }
3283
3284 if (base_bs == NULL) {
3285 error_setg(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL");
3286 goto out;
3287 }
3288
3289 assert(bdrv_get_aio_context(base_bs) == aio_context);
3290
3291 for (iter = top_bs; iter != backing_bs(base_bs); iter = backing_bs(iter)) {
3292 if (bdrv_op_is_blocked(iter, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
3293 goto out;
3294 }
3295 }
3296
3297 /* Do not allow attempts to commit an image into itself */
3298 if (top_bs == base_bs) {
3299 error_setg(errp, "cannot commit an image into itself");
3300 goto out;
3301 }
3302
3303 if (top_bs == bs) {
3304 if (has_backing_file) {
3305 error_setg(errp, "'backing-file' specified,"
3306 " but 'top' is the active layer");
3307 goto out;
3308 }
3309 commit_active_start(has_job_id ? job_id : NULL, bs, base_bs,
3310 JOB_DEFAULT, speed, on_error,
3311 filter_node_name, NULL, NULL, false, &local_err);
3312 } else {
3313 BlockDriverState *overlay_bs = bdrv_find_overlay(bs, top_bs);
3314 if (bdrv_op_is_blocked(overlay_bs, BLOCK_OP_TYPE_COMMIT_TARGET, errp)) {
3315 goto out;
3316 }
3317 commit_start(has_job_id ? job_id : NULL, bs, base_bs, top_bs, speed,
3318 on_error, has_backing_file ? backing_file : NULL,
3319 filter_node_name, &local_err);
3320 }
3321 if (local_err != NULL) {
3322 error_propagate(errp, local_err);
3323 goto out;
3324 }
3325
3326 out:
3327 aio_context_release(aio_context);
3328 }
3329
3330 static BlockJob *do_drive_backup(DriveBackup *backup, JobTxn *txn,
3331 Error **errp)
3332 {
3333 BlockDriverState *bs;
3334 BlockDriverState *target_bs;
3335 BlockDriverState *source = NULL;
3336 BlockJob *job = NULL;
3337 BdrvDirtyBitmap *bmap = NULL;
3338 AioContext *aio_context;
3339 QDict *options = NULL;
3340 Error *local_err = NULL;
3341 int flags, job_flags = JOB_DEFAULT;
3342 int64_t size;
3343 bool set_backing_hd = false;
3344
3345 if (!backup->has_speed) {
3346 backup->speed = 0;
3347 }
3348 if (!backup->has_on_source_error) {
3349 backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT;
3350 }
3351 if (!backup->has_on_target_error) {
3352 backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT;
3353 }
3354 if (!backup->has_mode) {
3355 backup->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
3356 }
3357 if (!backup->has_job_id) {
3358 backup->job_id = NULL;
3359 }
3360 if (!backup->has_auto_finalize) {
3361 backup->auto_finalize = true;
3362 }
3363 if (!backup->has_auto_dismiss) {
3364 backup->auto_dismiss = true;
3365 }
3366 if (!backup->has_compress) {
3367 backup->compress = false;
3368 }
3369
3370 bs = qmp_get_root_bs(backup->device, errp);
3371 if (!bs) {
3372 return NULL;
3373 }
3374
3375 aio_context = bdrv_get_aio_context(bs);
3376 aio_context_acquire(aio_context);
3377
3378 if (!backup->has_format) {
3379 backup->format = backup->mode == NEW_IMAGE_MODE_EXISTING ?
3380 NULL : (char*) bs->drv->format_name;
3381 }
3382
3383 /* Early check to avoid creating target */
3384 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_BACKUP_SOURCE, errp)) {
3385 goto out;
3386 }
3387
3388 flags = bs->open_flags | BDRV_O_RDWR;
3389
3390 /* See if we have a backing HD we can use to create our new image
3391 * on top of. */
3392 if (backup->sync == MIRROR_SYNC_MODE_TOP) {
3393 source = backing_bs(bs);
3394 if (!source) {
3395 backup->sync = MIRROR_SYNC_MODE_FULL;
3396 }
3397 }
3398 if (backup->sync == MIRROR_SYNC_MODE_NONE) {
3399 source = bs;
3400 flags |= BDRV_O_NO_BACKING;
3401 set_backing_hd = true;
3402 }
3403
3404 size = bdrv_getlength(bs);
3405 if (size < 0) {
3406 error_setg_errno(errp, -size, "bdrv_getlength failed");
3407 goto out;
3408 }
3409
3410 if (backup->mode != NEW_IMAGE_MODE_EXISTING) {
3411 assert(backup->format);
3412 if (source) {
3413 bdrv_img_create(backup->target, backup->format, source->filename,
3414 source->drv->format_name, NULL,
3415 size, flags, false, &local_err);
3416 } else {
3417 bdrv_img_create(backup->target, backup->format, NULL, NULL, NULL,
3418 size, flags, false, &local_err);
3419 }
3420 }
3421
3422 if (local_err) {
3423 error_propagate(errp, local_err);
3424 goto out;
3425 }
3426
3427 if (backup->format) {
3428 if (!options) {
3429 options = qdict_new();
3430 }
3431 qdict_put_str(options, "driver", backup->format);
3432 }
3433
3434 target_bs = bdrv_open(backup->target, NULL, options, flags, errp);
3435 if (!target_bs) {
3436 goto out;
3437 }
3438
3439 bdrv_set_aio_context(target_bs, aio_context);
3440
3441 if (set_backing_hd) {
3442 bdrv_set_backing_hd(target_bs, source, &local_err);
3443 if (local_err) {
3444 bdrv_unref(target_bs);
3445 goto out;
3446 }
3447 }
3448
3449 if (backup->has_bitmap) {
3450 bmap = bdrv_find_dirty_bitmap(bs, backup->bitmap);
3451 if (!bmap) {
3452 error_setg(errp, "Bitmap '%s' could not be found", backup->bitmap);
3453 bdrv_unref(target_bs);
3454 goto out;
3455 }
3456 if (bdrv_dirty_bitmap_qmp_locked(bmap)) {
3457 error_setg(errp,
3458 "Bitmap '%s' is currently locked and cannot be used for "
3459 "backup", backup->bitmap);
3460 goto out;
3461 }
3462 }
3463 if (!backup->auto_finalize) {
3464 job_flags |= JOB_MANUAL_FINALIZE;
3465 }
3466 if (!backup->auto_dismiss) {
3467 job_flags |= JOB_MANUAL_DISMISS;
3468 }
3469
3470 job = backup_job_create(backup->job_id, bs, target_bs, backup->speed,
3471 backup->sync, bmap, backup->compress,
3472 backup->on_source_error, backup->on_target_error,
3473 job_flags, NULL, NULL, txn, &local_err);
3474 bdrv_unref(target_bs);
3475 if (local_err != NULL) {
3476 error_propagate(errp, local_err);
3477 goto out;
3478 }
3479
3480 out:
3481 aio_context_release(aio_context);
3482 return job;
3483 }
3484
3485 void qmp_drive_backup(DriveBackup *arg, Error **errp)
3486 {
3487
3488 BlockJob *job;
3489 job = do_drive_backup(arg, NULL, errp);
3490 if (job) {
3491 job_start(&job->job);
3492 }
3493 }
3494
3495 BlockDeviceInfoList *qmp_query_named_block_nodes(Error **errp)
3496 {
3497 return bdrv_named_nodes_list(errp);
3498 }
3499
3500 BlockJob *do_blockdev_backup(BlockdevBackup *backup, JobTxn *txn,
3501 Error **errp)
3502 {
3503 BlockDriverState *bs;
3504 BlockDriverState *target_bs;
3505 Error *local_err = NULL;
3506 AioContext *aio_context;
3507 BlockJob *job = NULL;
3508 int job_flags = JOB_DEFAULT;
3509
3510 if (!backup->has_speed) {
3511 backup->speed = 0;
3512 }
3513 if (!backup->has_on_source_error) {
3514 backup->on_source_error = BLOCKDEV_ON_ERROR_REPORT;
3515 }
3516 if (!backup->has_on_target_error) {
3517 backup->on_target_error = BLOCKDEV_ON_ERROR_REPORT;
3518 }
3519 if (!backup->has_job_id) {
3520 backup->job_id = NULL;
3521 }
3522 if (!backup->has_auto_finalize) {
3523 backup->auto_finalize = true;
3524 }
3525 if (!backup->has_auto_dismiss) {
3526 backup->auto_dismiss = true;
3527 }
3528 if (!backup->has_compress) {
3529 backup->compress = false;
3530 }
3531
3532 bs = qmp_get_root_bs(backup->device, errp);
3533 if (!bs) {
3534 return NULL;
3535 }
3536
3537 aio_context = bdrv_get_aio_context(bs);
3538 aio_context_acquire(aio_context);
3539
3540 target_bs = bdrv_lookup_bs(backup->target, backup->target, errp);
3541 if (!target_bs) {
3542 goto out;
3543 }
3544
3545 if (bdrv_get_aio_context(target_bs) != aio_context) {
3546 if (!bdrv_has_blk(target_bs)) {
3547 /* The target BDS is not attached, we can safely move it to another
3548 * AioContext. */
3549 bdrv_set_aio_context(target_bs, aio_context);
3550 } else {
3551 error_setg(errp, "Target is attached to a different thread from "
3552 "source.");
3553 goto out;
3554 }
3555 }
3556 if (!backup->auto_finalize) {
3557 job_flags |= JOB_MANUAL_FINALIZE;
3558 }
3559 if (!backup->auto_dismiss) {
3560 job_flags |= JOB_MANUAL_DISMISS;
3561 }
3562 job = backup_job_create(backup->job_id, bs, target_bs, backup->speed,
3563 backup->sync, NULL, backup->compress,
3564 backup->on_source_error, backup->on_target_error,
3565 job_flags, NULL, NULL, txn, &local_err);
3566 if (local_err != NULL) {
3567 error_propagate(errp, local_err);
3568 }
3569 out:
3570 aio_context_release(aio_context);
3571 return job;
3572 }
3573
3574 void qmp_blockdev_backup(BlockdevBackup *arg, Error **errp)
3575 {
3576 BlockJob *job;
3577 job = do_blockdev_backup(arg, NULL, errp);
3578 if (job) {
3579 job_start(&job->job);
3580 }
3581 }
3582
3583 /* Parameter check and block job starting for drive mirroring.
3584 * Caller should hold @device and @target's aio context (must be the same).
3585 **/
3586 static void blockdev_mirror_common(const char *job_id, BlockDriverState *bs,
3587 BlockDriverState *target,
3588 bool has_replaces, const char *replaces,
3589 enum MirrorSyncMode sync,
3590 BlockMirrorBackingMode backing_mode,
3591 bool has_speed, int64_t speed,
3592 bool has_granularity, uint32_t granularity,
3593 bool has_buf_size, int64_t buf_size,
3594 bool has_on_source_error,
3595 BlockdevOnError on_source_error,
3596 bool has_on_target_error,
3597 BlockdevOnError on_target_error,
3598 bool has_unmap, bool unmap,
3599 bool has_filter_node_name,
3600 const char *filter_node_name,
3601 Error **errp)
3602 {
3603
3604 if (!has_speed) {
3605 speed = 0;
3606 }
3607 if (!has_on_source_error) {
3608 on_source_error = BLOCKDEV_ON_ERROR_REPORT;
3609 }
3610 if (!has_on_target_error) {
3611 on_target_error = BLOCKDEV_ON_ERROR_REPORT;
3612 }
3613 if (!has_granularity) {
3614 granularity = 0;
3615 }
3616 if (!has_buf_size) {
3617 buf_size = 0;
3618 }
3619 if (!has_unmap) {
3620 unmap = true;
3621 }
3622 if (!has_filter_node_name) {
3623 filter_node_name = NULL;
3624 }
3625
3626 if (granularity != 0 && (granularity < 512 || granularity > 1048576 * 64)) {
3627 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
3628 "a value in range [512B, 64MB]");
3629 return;
3630 }
3631 if (granularity & (granularity - 1)) {
3632 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "granularity",
3633 "power of 2");
3634 return;
3635 }
3636
3637 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
3638 return;
3639 }
3640 if (bdrv_op_is_blocked(target, BLOCK_OP_TYPE_MIRROR_TARGET, errp)) {
3641 return;
3642 }
3643
3644 if (!bs->backing && sync == MIRROR_SYNC_MODE_TOP) {
3645 sync = MIRROR_SYNC_MODE_FULL;
3646 }
3647
3648 /* pass the node name to replace to mirror start since it's loose coupling
3649 * and will allow to check whether the node still exist at mirror completion
3650 */
3651 mirror_start(job_id, bs, target,
3652 has_replaces ? replaces : NULL,
3653 speed, granularity, buf_size, sync, backing_mode,
3654 on_source_error, on_target_error, unmap, filter_node_name,
3655 errp);
3656 }
3657
3658 void qmp_drive_mirror(DriveMirror *arg, Error **errp)
3659 {
3660 BlockDriverState *bs;
3661 BlockDriverState *source, *target_bs;
3662 AioContext *aio_context;
3663 BlockMirrorBackingMode backing_mode;
3664 Error *local_err = NULL;
3665 QDict *options = NULL;
3666 int flags;
3667 int64_t size;
3668 const char *format = arg->format;
3669
3670 bs = qmp_get_root_bs(arg->device, errp);
3671 if (!bs) {
3672 return;
3673 }
3674
3675 /* Early check to avoid creating target */
3676 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_MIRROR_SOURCE, errp)) {
3677 return;
3678 }
3679
3680 aio_context = bdrv_get_aio_context(bs);
3681 aio_context_acquire(aio_context);
3682
3683 if (!arg->has_mode) {
3684 arg->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS;
3685 }
3686
3687 if (!arg->has_format) {
3688 format = (arg->mode == NEW_IMAGE_MODE_EXISTING
3689 ? NULL : bs->drv->format_name);
3690 }
3691
3692 flags = bs->open_flags | BDRV_O_RDWR;
3693 source = backing_bs(bs);
3694 if (!source && arg->sync == MIRROR_SYNC_MODE_TOP) {
3695 arg->sync = MIRROR_SYNC_MODE_FULL;
3696 }
3697 if (arg->sync == MIRROR_SYNC_MODE_NONE) {
3698 source = bs;
3699 }
3700
3701 size = bdrv_getlength(bs);
3702 if (size < 0) {
3703 error_setg_errno(errp, -size, "bdrv_getlength failed");
3704 goto out;
3705 }
3706
3707 if (arg->has_replaces) {
3708 BlockDriverState *to_replace_bs;
3709 AioContext *replace_aio_context;
3710 int64_t replace_size;
3711
3712 if (!arg->has_node_name) {
3713 error_setg(errp, "a node-name must be provided when replacing a"
3714 " named node of the graph");
3715 goto out;
3716 }
3717
3718 to_replace_bs = check_to_replace_node(bs, arg->replaces, &local_err);
3719
3720 if (!to_replace_bs) {
3721 error_propagate(errp, local_err);
3722 goto out;
3723 }
3724
3725 replace_aio_context = bdrv_get_aio_context(to_replace_bs);
3726 aio_context_acquire(replace_aio_context);
3727 replace_size = bdrv_getlength(to_replace_bs);
3728 aio_context_release(replace_aio_context);
3729
3730 if (size != replace_size) {
3731 error_setg(errp, "cannot replace image with a mirror image of "
3732 "different size");
3733 goto out;
3734 }
3735 }
3736
3737 if (arg->mode == NEW_IMAGE_MODE_ABSOLUTE_PATHS) {
3738 backing_mode = MIRROR_SOURCE_BACKING_CHAIN;
3739 } else {
3740 backing_mode = MIRROR_OPEN_BACKING_CHAIN;
3741 }
3742
3743 /* Don't open backing image in create() */
3744 flags |= BDRV_O_NO_BACKING;
3745
3746 if ((arg->sync == MIRROR_SYNC_MODE_FULL || !source)
3747 && arg->mode != NEW_IMAGE_MODE_EXISTING)
3748 {
3749 /* create new image w/o backing file */
3750 assert(format);
3751 bdrv_img_create(arg->target, format,
3752 NULL, NULL, NULL, size, flags, false, &local_err);
3753 } else {
3754 switch (arg->mode) {
3755 case NEW_IMAGE_MODE_EXISTING:
3756 break;
3757 case NEW_IMAGE_MODE_ABSOLUTE_PATHS:
3758 /* create new image with backing file */
3759 bdrv_img_create(arg->target, format,
3760 source->filename,
3761 source->drv->format_name,
3762 NULL, size, flags, false, &local_err);
3763 break;
3764 default:
3765 abort();
3766 }
3767 }
3768
3769 if (local_err) {
3770 error_propagate(errp, local_err);
3771 goto out;
3772 }
3773
3774 options = qdict_new();
3775 if (arg->has_node_name) {
3776 qdict_put_str(options, "node-name", arg->node_name);
3777 }
3778 if (format) {
3779 qdict_put_str(options, "driver", format);
3780 }
3781
3782 /* Mirroring takes care of copy-on-write using the source's backing
3783 * file.
3784 */
3785 target_bs = bdrv_open(arg->target, NULL, options, flags, errp);
3786 if (!target_bs) {
3787 goto out;
3788 }
3789
3790 bdrv_set_aio_context(target_bs, aio_context);
3791
3792 blockdev_mirror_common(arg->has_job_id ? arg->job_id : NULL, bs, target_bs,
3793 arg->has_replaces, arg->replaces, arg->sync,
3794 backing_mode, arg->has_speed, arg->speed,
3795 arg->has_granularity, arg->granularity,
3796 arg->has_buf_size, arg->buf_size,
3797 arg->has_on_source_error, arg->on_source_error,
3798 arg->has_on_target_error, arg->on_target_error,
3799 arg->has_unmap, arg->unmap,
3800 false, NULL,
3801 &local_err);
3802 bdrv_unref(target_bs);
3803 error_propagate(errp, local_err);
3804 out:
3805 aio_context_release(aio_context);
3806 }
3807
3808 void qmp_blockdev_mirror(bool has_job_id, const char *job_id,
3809 const char *device, const char *target,
3810 bool has_replaces, const char *replaces,
3811 MirrorSyncMode sync,
3812 bool has_speed, int64_t speed,
3813 bool has_granularity, uint32_t granularity,
3814 bool has_buf_size, int64_t buf_size,
3815 bool has_on_source_error,
3816 BlockdevOnError on_source_error,
3817 bool has_on_target_error,
3818 BlockdevOnError on_target_error,
3819 bool has_filter_node_name,
3820 const char *filter_node_name,
3821 Error **errp)
3822 {
3823 BlockDriverState *bs;
3824 BlockDriverState *target_bs;
3825 AioContext *aio_context;
3826 BlockMirrorBackingMode backing_mode = MIRROR_LEAVE_BACKING_CHAIN;
3827 Error *local_err = NULL;
3828
3829 bs = qmp_get_root_bs(device, errp);
3830 if (!bs) {
3831 return;
3832 }
3833
3834 target_bs = bdrv_lookup_bs(target, target, errp);
3835 if (!target_bs) {
3836 return;
3837 }
3838
3839 aio_context = bdrv_get_aio_context(bs);
3840 aio_context_acquire(aio_context);
3841
3842 bdrv_set_aio_context(target_bs, aio_context);
3843
3844 blockdev_mirror_common(has_job_id ? job_id : NULL, bs, target_bs,
3845 has_replaces, replaces, sync, backing_mode,
3846 has_speed, speed,
3847 has_granularity, granularity,
3848 has_buf_size, buf_size,
3849 has_on_source_error, on_source_error,
3850 has_on_target_error, on_target_error,
3851 true, true,
3852 has_filter_node_name, filter_node_name,
3853 &local_err);
3854 error_propagate(errp, local_err);
3855
3856 aio_context_release(aio_context);
3857 }
3858
3859 /* Get a block job using its ID and acquire its AioContext */
3860 static BlockJob *find_block_job(const char *id, AioContext **aio_context,
3861 Error **errp)
3862 {
3863 BlockJob *job;
3864
3865 assert(id != NULL);
3866
3867 *aio_context = NULL;
3868
3869 job = block_job_get(id);
3870
3871 if (!job) {
3872 error_set(errp, ERROR_CLASS_DEVICE_NOT_ACTIVE,
3873 "Block job '%s' not found", id);
3874 return NULL;
3875 }
3876
3877 *aio_context = blk_get_aio_context(job->blk);
3878 aio_context_acquire(*aio_context);
3879
3880 return job;
3881 }
3882
3883 void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp)
3884 {
3885 AioContext *aio_context;
3886 BlockJob *job = find_block_job(device, &aio_context, errp);
3887
3888 if (!job) {
3889 return;
3890 }
3891
3892 block_job_set_speed(job, speed, errp);
3893 aio_context_release(aio_context);
3894 }
3895
3896 void qmp_block_job_cancel(const char *device,
3897 bool has_force, bool force, Error **errp)
3898 {
3899 AioContext *aio_context;
3900 BlockJob *job = find_block_job(device, &aio_context, errp);
3901
3902 if (!job) {
3903 return;
3904 }
3905
3906 if (!has_force) {
3907 force = false;
3908 }
3909
3910 if (job_user_paused(&job->job) && !force) {
3911 error_setg(errp, "The block job for device '%s' is currently paused",
3912 device);
3913 goto out;
3914 }
3915
3916 trace_qmp_block_job_cancel(job);
3917 job_user_cancel(&job->job, force, errp);
3918 out:
3919 aio_context_release(aio_context);
3920 }
3921
3922 void qmp_block_job_pause(const char *device, Error **errp)
3923 {
3924 AioContext *aio_context;
3925 BlockJob *job = find_block_job(device, &aio_context, errp);
3926
3927 if (!job) {
3928 return;
3929 }
3930
3931 trace_qmp_block_job_pause(job);
3932 job_user_pause(&job->job, errp);
3933 aio_context_release(aio_context);
3934 }
3935
3936 void qmp_block_job_resume(const char *device, Error **errp)
3937 {
3938 AioContext *aio_context;
3939 BlockJob *job = find_block_job(device, &aio_context, errp);
3940
3941 if (!job) {
3942 return;
3943 }
3944
3945 trace_qmp_block_job_resume(job);
3946 job_user_resume(&job->job, errp);
3947 aio_context_release(aio_context);
3948 }
3949
3950 void qmp_block_job_complete(const char *device, Error **errp)
3951 {
3952 AioContext *aio_context;
3953 BlockJob *job = find_block_job(device, &aio_context, errp);
3954
3955 if (!job) {
3956 return;
3957 }
3958
3959 trace_qmp_block_job_complete(job);
3960 job_complete(&job->job, errp);
3961 aio_context_release(aio_context);
3962 }
3963
3964 void qmp_block_job_finalize(const char *id, Error **errp)
3965 {
3966 AioContext *aio_context;
3967 BlockJob *job = find_block_job(id, &aio_context, errp);
3968
3969 if (!job) {
3970 return;
3971 }
3972
3973 trace_qmp_block_job_finalize(job);
3974 job_finalize(&job->job, errp);
3975 aio_context_release(aio_context);
3976 }
3977
3978 void qmp_block_job_dismiss(const char *id, Error **errp)
3979 {
3980 AioContext *aio_context;
3981 BlockJob *bjob = find_block_job(id, &aio_context, errp);
3982 Job *job;
3983
3984 if (!bjob) {
3985 return;
3986 }
3987
3988 trace_qmp_block_job_dismiss(bjob);
3989 job = &bjob->job;
3990 job_dismiss(&job, errp);
3991 aio_context_release(aio_context);
3992 }
3993
3994 void qmp_change_backing_file(const char *device,
3995 const char *image_node_name,
3996 const char *backing_file,
3997 Error **errp)
3998 {
3999 BlockDriverState *bs = NULL;
4000 AioContext *aio_context;
4001 BlockDriverState *image_bs = NULL;
4002 Error *local_err = NULL;
4003 bool ro;
4004 int open_flags;
4005 int ret;
4006
4007 bs = qmp_get_root_bs(device, errp);
4008 if (!bs) {
4009 return;
4010 }
4011
4012 aio_context = bdrv_get_aio_context(bs);
4013 aio_context_acquire(aio_context);
4014
4015 image_bs = bdrv_lookup_bs(NULL, image_node_name, &local_err);
4016 if (local_err) {
4017 error_propagate(errp, local_err);
4018 goto out;
4019 }
4020
4021 if (!image_bs) {
4022 error_setg(errp, "image file not found");
4023 goto out;
4024 }
4025
4026 if (bdrv_find_base(image_bs) == image_bs) {
4027 error_setg(errp, "not allowing backing file change on an image "
4028 "without a backing file");
4029 goto out;
4030 }
4031
4032 /* even though we are not necessarily operating on bs, we need it to
4033 * determine if block ops are currently prohibited on the chain */
4034 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_CHANGE, errp)) {
4035 goto out;
4036 }
4037
4038 /* final sanity check */
4039 if (!bdrv_chain_contains(bs, image_bs)) {
4040 error_setg(errp, "'%s' and image file are not in the same chain",
4041 device);
4042 goto out;
4043 }
4044
4045 /* if not r/w, reopen to make r/w */
4046 open_flags = image_bs->open_flags;
4047 ro = bdrv_is_read_only(image_bs);
4048
4049 if (ro) {
4050 bdrv_reopen(image_bs, open_flags | BDRV_O_RDWR, &local_err);
4051 if (local_err) {
4052 error_propagate(errp, local_err);
4053 goto out;
4054 }
4055 }
4056
4057 ret = bdrv_change_backing_file(image_bs, backing_file,
4058 image_bs->drv ? image_bs->drv->format_name : "");
4059
4060 if (ret < 0) {
4061 error_setg_errno(errp, -ret, "Could not change backing file to '%s'",
4062 backing_file);
4063 /* don't exit here, so we can try to restore open flags if
4064 * appropriate */
4065 }
4066
4067 if (ro) {
4068 bdrv_reopen(image_bs, open_flags, &local_err);
4069 error_propagate(errp, local_err);
4070 }
4071
4072 out:
4073 aio_context_release(aio_context);
4074 }
4075
4076 void hmp_drive_add_node(Monitor *mon, const char *optstr)
4077 {
4078 QemuOpts *opts;
4079 QDict *qdict;
4080 Error *local_err = NULL;
4081
4082 opts = qemu_opts_parse_noisily(&qemu_drive_opts, optstr, false);
4083 if (!opts) {
4084 return;
4085 }
4086
4087 qdict = qemu_opts_to_qdict(opts, NULL);
4088
4089 if (!qdict_get_try_str(qdict, "node-name")) {
4090 qobject_unref(qdict);
4091 error_report("'node-name' needs to be specified");
4092 goto out;
4093 }
4094
4095 BlockDriverState *bs = bds_tree_init(qdict, &local_err);
4096 if (!bs) {
4097 error_report_err(local_err);
4098 goto out;
4099 }
4100
4101 QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list);
4102
4103 out:
4104 qemu_opts_del(opts);
4105 }
4106
4107 void qmp_blockdev_add(BlockdevOptions *options, Error **errp)
4108 {
4109 BlockDriverState *bs;
4110 QObject *obj;
4111 Visitor *v = qobject_output_visitor_new(&obj);
4112 QDict *qdict;
4113 Error *local_err = NULL;
4114
4115 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
4116 if (local_err) {
4117 error_propagate(errp, local_err);
4118 goto fail;
4119 }
4120
4121 visit_complete(v, &obj);
4122 qdict = qobject_to(QDict, obj);
4123
4124 qdict_flatten(qdict);
4125
4126 if (!qdict_get_try_str(qdict, "node-name")) {
4127 error_setg(errp, "'node-name' must be specified for the root node");
4128 goto fail;
4129 }
4130
4131 bs = bds_tree_init(qdict, errp);
4132 if (!bs) {
4133 goto fail;
4134 }
4135
4136 QTAILQ_INSERT_TAIL(&monitor_bdrv_states, bs, monitor_list);
4137
4138 fail:
4139 visit_free(v);
4140 }
4141
4142 void qmp_blockdev_del(const char *node_name, Error **errp)
4143 {
4144 AioContext *aio_context;
4145 BlockDriverState *bs;
4146
4147 bs = bdrv_find_node(node_name);
4148 if (!bs) {
4149 error_setg(errp, "Cannot find node %s", node_name);
4150 return;
4151 }
4152 if (bdrv_has_blk(bs)) {
4153 error_setg(errp, "Node %s is in use", node_name);
4154 return;
4155 }
4156 aio_context = bdrv_get_aio_context(bs);
4157 aio_context_acquire(aio_context);
4158
4159 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_DRIVE_DEL, errp)) {
4160 goto out;
4161 }
4162
4163 if (!bs->monitor_list.tqe_prev) {
4164 error_setg(errp, "Node %s is not owned by the monitor",
4165 bs->node_name);
4166 goto out;
4167 }
4168
4169 if (bs->refcnt > 1) {
4170 error_setg(errp, "Block device %s is in use",
4171 bdrv_get_device_or_node_name(bs));
4172 goto out;
4173 }
4174
4175 QTAILQ_REMOVE(&monitor_bdrv_states, bs, monitor_list);
4176 bdrv_unref(bs);
4177
4178 out:
4179 aio_context_release(aio_context);
4180 }
4181
4182 static BdrvChild *bdrv_find_child(BlockDriverState *parent_bs,
4183 const char *child_name)
4184 {
4185 BdrvChild *child;
4186
4187 QLIST_FOREACH(child, &parent_bs->children, next) {
4188 if (strcmp(child->name, child_name) == 0) {
4189 return child;
4190 }
4191 }
4192
4193 return NULL;
4194 }
4195
4196 void qmp_x_blockdev_change(const char *parent, bool has_child,
4197 const char *child, bool has_node,
4198 const char *node, Error **errp)
4199 {
4200 BlockDriverState *parent_bs, *new_bs = NULL;
4201 BdrvChild *p_child;
4202
4203 parent_bs = bdrv_lookup_bs(parent, parent, errp);
4204 if (!parent_bs) {
4205 return;
4206 }
4207
4208 if (has_child == has_node) {
4209 if (has_child) {
4210 error_setg(errp, "The parameters child and node are in conflict");
4211 } else {
4212 error_setg(errp, "Either child or node must be specified");
4213 }
4214 return;
4215 }
4216
4217 if (has_child) {
4218 p_child = bdrv_find_child(parent_bs, child);
4219 if (!p_child) {
4220 error_setg(errp, "Node '%s' does not have child '%s'",
4221 parent, child);
4222 return;
4223 }
4224 bdrv_del_child(parent_bs, p_child, errp);
4225 }
4226
4227 if (has_node) {
4228 new_bs = bdrv_find_node(node);
4229 if (!new_bs) {
4230 error_setg(errp, "Node '%s' not found", node);
4231 return;
4232 }
4233 bdrv_add_child(parent_bs, new_bs, errp);
4234 }
4235 }
4236
4237 BlockJobInfoList *qmp_query_block_jobs(Error **errp)
4238 {
4239 BlockJobInfoList *head = NULL, **p_next = &head;
4240 BlockJob *job;
4241
4242 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
4243 BlockJobInfoList *elem;
4244 AioContext *aio_context;
4245
4246 if (block_job_is_internal(job)) {
4247 continue;
4248 }
4249 elem = g_new0(BlockJobInfoList, 1);
4250 aio_context = blk_get_aio_context(job->blk);
4251 aio_context_acquire(aio_context);
4252 elem->value = block_job_query(job, errp);
4253 aio_context_release(aio_context);
4254 if (!elem->value) {
4255 g_free(elem);
4256 qapi_free_BlockJobInfoList(head);
4257 return NULL;
4258 }
4259 *p_next = elem;
4260 p_next = &elem->next;
4261 }
4262
4263 return head;
4264 }
4265
4266 void qmp_x_blockdev_set_iothread(const char *node_name, StrOrNull *iothread,
4267 bool has_force, bool force, Error **errp)
4268 {
4269 AioContext *old_context;
4270 AioContext *new_context;
4271 BlockDriverState *bs;
4272
4273 bs = bdrv_find_node(node_name);
4274 if (!bs) {
4275 error_setg(errp, "Cannot find node %s", node_name);
4276 return;
4277 }
4278
4279 /* Protects against accidents. */
4280 if (!(has_force && force) && bdrv_has_blk(bs)) {
4281 error_setg(errp, "Node %s is associated with a BlockBackend and could "
4282 "be in use (use force=true to override this check)",
4283 node_name);
4284 return;
4285 }
4286
4287 if (iothread->type == QTYPE_QSTRING) {
4288 IOThread *obj = iothread_by_id(iothread->u.s);
4289 if (!obj) {
4290 error_setg(errp, "Cannot find iothread %s", iothread->u.s);
4291 return;
4292 }
4293
4294 new_context = iothread_get_aio_context(obj);
4295 } else {
4296 new_context = qemu_get_aio_context();
4297 }
4298
4299 old_context = bdrv_get_aio_context(bs);
4300 aio_context_acquire(old_context);
4301
4302 bdrv_set_aio_context(bs, new_context);
4303
4304 aio_context_release(old_context);
4305 }
4306
4307 void qmp_x_block_latency_histogram_set(
4308 const char *device,
4309 bool has_boundaries, uint64List *boundaries,
4310 bool has_boundaries_read, uint64List *boundaries_read,
4311 bool has_boundaries_write, uint64List *boundaries_write,
4312 bool has_boundaries_flush, uint64List *boundaries_flush,
4313 Error **errp)
4314 {
4315 BlockBackend *blk = blk_by_name(device);
4316 BlockAcctStats *stats;
4317
4318 if (!blk) {
4319 error_setg(errp, "Device '%s' not found", device);
4320 return;
4321 }
4322 stats = blk_get_stats(blk);
4323
4324 if (!has_boundaries && !has_boundaries_read && !has_boundaries_write &&
4325 !has_boundaries_flush)
4326 {
4327 block_latency_histograms_clear(stats);
4328 return;
4329 }
4330
4331 if (has_boundaries || has_boundaries_read) {
4332 block_latency_histogram_set(
4333 stats, BLOCK_ACCT_READ,
4334 has_boundaries_read ? boundaries_read : boundaries);
4335 }
4336
4337 if (has_boundaries || has_boundaries_write) {
4338 block_latency_histogram_set(
4339 stats, BLOCK_ACCT_WRITE,
4340 has_boundaries_write ? boundaries_write : boundaries);
4341 }
4342
4343 if (has_boundaries || has_boundaries_flush) {
4344 block_latency_histogram_set(
4345 stats, BLOCK_ACCT_FLUSH,
4346 has_boundaries_flush ? boundaries_flush : boundaries);
4347 }
4348 }
4349
4350 QemuOptsList qemu_common_drive_opts = {
4351 .name = "drive",
4352 .head = QTAILQ_HEAD_INITIALIZER(qemu_common_drive_opts.head),
4353 .desc = {
4354 {
4355 .name = "snapshot",
4356 .type = QEMU_OPT_BOOL,
4357 .help = "enable/disable snapshot mode",
4358 },{
4359 .name = "aio",
4360 .type = QEMU_OPT_STRING,
4361 .help = "host AIO implementation (threads, native)",
4362 },{
4363 .name = BDRV_OPT_CACHE_WB,
4364 .type = QEMU_OPT_BOOL,
4365 .help = "Enable writeback mode",
4366 },{
4367 .name = "format",
4368 .type = QEMU_OPT_STRING,
4369 .help = "disk format (raw, qcow2, ...)",
4370 },{
4371 .name = "rerror",
4372 .type = QEMU_OPT_STRING,
4373 .help = "read error action",
4374 },{
4375 .name = "werror",
4376 .type = QEMU_OPT_STRING,
4377 .help = "write error action",
4378 },{
4379 .name = BDRV_OPT_READ_ONLY,
4380 .type = QEMU_OPT_BOOL,
4381 .help = "open drive file as read-only",
4382 },
4383
4384 THROTTLE_OPTS,
4385
4386 {
4387 .name = "throttling.group",
4388 .type = QEMU_OPT_STRING,
4389 .help = "name of the block throttling group",
4390 },{
4391 .name = "copy-on-read",
4392 .type = QEMU_OPT_BOOL,
4393 .help = "copy read data from backing file into image file",
4394 },{
4395 .name = "detect-zeroes",
4396 .type = QEMU_OPT_STRING,
4397 .help = "try to optimize zero writes (off, on, unmap)",
4398 },{
4399 .name = "stats-account-invalid",
4400 .type = QEMU_OPT_BOOL,
4401 .help = "whether to account for invalid I/O operations "
4402 "in the statistics",
4403 },{
4404 .name = "stats-account-failed",
4405 .type = QEMU_OPT_BOOL,
4406 .help = "whether to account for failed I/O operations "
4407 "in the statistics",
4408 },
4409 { /* end of list */ }
4410 },
4411 };
4412
4413 QemuOptsList qemu_drive_opts = {
4414 .name = "drive",
4415 .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head),
4416 .desc = {
4417 /*
4418 * no elements => accept any params
4419 * validation will happen later
4420 */
4421 { /* end of list */ }
4422 },
4423 };