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