]>
Commit | Line | Data |
---|---|---|
666daa68 MA |
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 | ||
9c17d615 | 10 | #include "sysemu/blockdev.h" |
2b584959 | 11 | #include "hw/block-common.h" |
737e150e | 12 | #include "block/blockjob.h" |
83c9089e | 13 | #include "monitor/monitor.h" |
7b1b5d19 | 14 | #include "qapi/qmp/qerror.h" |
1de7afc9 PB |
15 | #include "qemu/option.h" |
16 | #include "qemu/config-file.h" | |
7b1b5d19 | 17 | #include "qapi/qmp/types.h" |
9c17d615 | 18 | #include "sysemu/sysemu.h" |
737e150e | 19 | #include "block/block_int.h" |
a4dea8a9 | 20 | #include "qmp-commands.h" |
12bd451f | 21 | #include "trace.h" |
9c17d615 | 22 | #include "sysemu/arch_init.h" |
666daa68 | 23 | |
c9b62a7e | 24 | static QTAILQ_HEAD(drivelist, DriveInfo) drives = QTAILQ_HEAD_INITIALIZER(drives); |
666daa68 | 25 | |
1960966d MA |
26 | static const char *const if_name[IF_COUNT] = { |
27 | [IF_NONE] = "none", | |
28 | [IF_IDE] = "ide", | |
29 | [IF_SCSI] = "scsi", | |
30 | [IF_FLOPPY] = "floppy", | |
31 | [IF_PFLASH] = "pflash", | |
32 | [IF_MTD] = "mtd", | |
33 | [IF_SD] = "sd", | |
34 | [IF_VIRTIO] = "virtio", | |
35 | [IF_XEN] = "xen", | |
36 | }; | |
37 | ||
38 | static const int if_max_devs[IF_COUNT] = { | |
27d6bf40 MA |
39 | /* |
40 | * Do not change these numbers! They govern how drive option | |
41 | * index maps to unit and bus. That mapping is ABI. | |
42 | * | |
43 | * All controllers used to imlement if=T drives need to support | |
44 | * if_max_devs[T] units, for any T with if_max_devs[T] != 0. | |
45 | * Otherwise, some index values map to "impossible" bus, unit | |
46 | * values. | |
47 | * | |
48 | * For instance, if you change [IF_SCSI] to 255, -drive | |
49 | * if=scsi,index=12 no longer means bus=1,unit=5, but | |
50 | * bus=0,unit=12. With an lsi53c895a controller (7 units max), | |
51 | * the drive can't be set up. Regression. | |
52 | */ | |
53 | [IF_IDE] = 2, | |
54 | [IF_SCSI] = 7, | |
1960966d MA |
55 | }; |
56 | ||
14bafc54 MA |
57 | /* |
58 | * We automatically delete the drive when a device using it gets | |
59 | * unplugged. Questionable feature, but we can't just drop it. | |
60 | * Device models call blockdev_mark_auto_del() to schedule the | |
61 | * automatic deletion, and generic qdev code calls blockdev_auto_del() | |
62 | * when deletion is actually safe. | |
63 | */ | |
64 | void blockdev_mark_auto_del(BlockDriverState *bs) | |
65 | { | |
66 | DriveInfo *dinfo = drive_get_by_blockdev(bs); | |
67 | ||
12bde0ee PB |
68 | if (bs->job) { |
69 | block_job_cancel(bs->job); | |
70 | } | |
0fc0f1fa RH |
71 | if (dinfo) { |
72 | dinfo->auto_del = 1; | |
73 | } | |
14bafc54 MA |
74 | } |
75 | ||
76 | void blockdev_auto_del(BlockDriverState *bs) | |
77 | { | |
78 | DriveInfo *dinfo = drive_get_by_blockdev(bs); | |
79 | ||
0fc0f1fa | 80 | if (dinfo && dinfo->auto_del) { |
84fb3925 | 81 | drive_put_ref(dinfo); |
14bafc54 MA |
82 | } |
83 | } | |
84 | ||
505a7fb1 MA |
85 | static int drive_index_to_bus_id(BlockInterfaceType type, int index) |
86 | { | |
87 | int max_devs = if_max_devs[type]; | |
88 | return max_devs ? index / max_devs : 0; | |
89 | } | |
90 | ||
91 | static int drive_index_to_unit_id(BlockInterfaceType type, int index) | |
92 | { | |
93 | int max_devs = if_max_devs[type]; | |
94 | return max_devs ? index % max_devs : index; | |
95 | } | |
96 | ||
2292ddae MA |
97 | QemuOpts *drive_def(const char *optstr) |
98 | { | |
99 | return qemu_opts_parse(qemu_find_opts("drive"), optstr, 0); | |
100 | } | |
101 | ||
102 | QemuOpts *drive_add(BlockInterfaceType type, int index, const char *file, | |
5645b0f4 | 103 | const char *optstr) |
666daa68 | 104 | { |
666daa68 | 105 | QemuOpts *opts; |
2292ddae | 106 | char buf[32]; |
666daa68 | 107 | |
2292ddae | 108 | opts = drive_def(optstr); |
666daa68 MA |
109 | if (!opts) { |
110 | return NULL; | |
111 | } | |
2292ddae MA |
112 | if (type != IF_DEFAULT) { |
113 | qemu_opt_set(opts, "if", if_name[type]); | |
114 | } | |
115 | if (index >= 0) { | |
116 | snprintf(buf, sizeof(buf), "%d", index); | |
117 | qemu_opt_set(opts, "index", buf); | |
118 | } | |
666daa68 MA |
119 | if (file) |
120 | qemu_opt_set(opts, "file", file); | |
121 | return opts; | |
122 | } | |
123 | ||
124 | DriveInfo *drive_get(BlockInterfaceType type, int bus, int unit) | |
125 | { | |
126 | DriveInfo *dinfo; | |
127 | ||
128 | /* seek interface, bus and unit */ | |
129 | ||
130 | QTAILQ_FOREACH(dinfo, &drives, next) { | |
131 | if (dinfo->type == type && | |
132 | dinfo->bus == bus && | |
133 | dinfo->unit == unit) | |
134 | return dinfo; | |
135 | } | |
136 | ||
137 | return NULL; | |
138 | } | |
139 | ||
f1bd51ac MA |
140 | DriveInfo *drive_get_by_index(BlockInterfaceType type, int index) |
141 | { | |
142 | return drive_get(type, | |
143 | drive_index_to_bus_id(type, index), | |
144 | drive_index_to_unit_id(type, index)); | |
145 | } | |
146 | ||
666daa68 MA |
147 | int drive_get_max_bus(BlockInterfaceType type) |
148 | { | |
149 | int max_bus; | |
150 | DriveInfo *dinfo; | |
151 | ||
152 | max_bus = -1; | |
153 | QTAILQ_FOREACH(dinfo, &drives, next) { | |
154 | if(dinfo->type == type && | |
155 | dinfo->bus > max_bus) | |
156 | max_bus = dinfo->bus; | |
157 | } | |
158 | return max_bus; | |
159 | } | |
160 | ||
13839974 MA |
161 | /* Get a block device. This should only be used for single-drive devices |
162 | (e.g. SD/Floppy/MTD). Multi-disk devices (scsi/ide) should use the | |
163 | appropriate bus. */ | |
164 | DriveInfo *drive_get_next(BlockInterfaceType type) | |
165 | { | |
166 | static int next_block_unit[IF_COUNT]; | |
167 | ||
168 | return drive_get(type, 0, next_block_unit[type]++); | |
169 | } | |
170 | ||
e4700e59 | 171 | DriveInfo *drive_get_by_blockdev(BlockDriverState *bs) |
666daa68 MA |
172 | { |
173 | DriveInfo *dinfo; | |
174 | ||
175 | QTAILQ_FOREACH(dinfo, &drives, next) { | |
e4700e59 MA |
176 | if (dinfo->bdrv == bs) { |
177 | return dinfo; | |
178 | } | |
666daa68 | 179 | } |
e4700e59 | 180 | return NULL; |
666daa68 MA |
181 | } |
182 | ||
666daa68 MA |
183 | static void bdrv_format_print(void *opaque, const char *name) |
184 | { | |
807105a7 | 185 | error_printf(" %s", name); |
666daa68 MA |
186 | } |
187 | ||
84fb3925 | 188 | static void drive_uninit(DriveInfo *dinfo) |
666daa68 MA |
189 | { |
190 | qemu_opts_del(dinfo->opts); | |
191 | bdrv_delete(dinfo->bdrv); | |
7267c094 | 192 | g_free(dinfo->id); |
666daa68 | 193 | QTAILQ_REMOVE(&drives, dinfo, next); |
7267c094 | 194 | g_free(dinfo); |
666daa68 MA |
195 | } |
196 | ||
84fb3925 MT |
197 | void drive_put_ref(DriveInfo *dinfo) |
198 | { | |
199 | assert(dinfo->refcount); | |
200 | if (--dinfo->refcount == 0) { | |
201 | drive_uninit(dinfo); | |
202 | } | |
203 | } | |
204 | ||
205 | void drive_get_ref(DriveInfo *dinfo) | |
206 | { | |
207 | dinfo->refcount++; | |
208 | } | |
209 | ||
aa398a5c SH |
210 | typedef struct { |
211 | QEMUBH *bh; | |
212 | DriveInfo *dinfo; | |
213 | } DrivePutRefBH; | |
214 | ||
215 | static void drive_put_ref_bh(void *opaque) | |
216 | { | |
217 | DrivePutRefBH *s = opaque; | |
218 | ||
219 | drive_put_ref(s->dinfo); | |
220 | qemu_bh_delete(s->bh); | |
221 | g_free(s); | |
222 | } | |
223 | ||
224 | /* | |
225 | * Release a drive reference in a BH | |
226 | * | |
227 | * It is not possible to use drive_put_ref() from a callback function when the | |
228 | * callers still need the drive. In such cases we schedule a BH to release the | |
229 | * reference. | |
230 | */ | |
231 | static void drive_put_ref_bh_schedule(DriveInfo *dinfo) | |
232 | { | |
233 | DrivePutRefBH *s; | |
234 | ||
235 | s = g_new(DrivePutRefBH, 1); | |
236 | s->bh = qemu_bh_new(drive_put_ref_bh, s); | |
237 | s->dinfo = dinfo; | |
238 | qemu_bh_schedule(s->bh); | |
239 | } | |
240 | ||
1ceee0d5 | 241 | static int parse_block_error_action(const char *buf, bool is_read) |
666daa68 MA |
242 | { |
243 | if (!strcmp(buf, "ignore")) { | |
92aa5c6d | 244 | return BLOCKDEV_ON_ERROR_IGNORE; |
666daa68 | 245 | } else if (!is_read && !strcmp(buf, "enospc")) { |
92aa5c6d | 246 | return BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 | 247 | } else if (!strcmp(buf, "stop")) { |
92aa5c6d | 248 | return BLOCKDEV_ON_ERROR_STOP; |
666daa68 | 249 | } else if (!strcmp(buf, "report")) { |
92aa5c6d | 250 | return BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 251 | } else { |
807105a7 MA |
252 | error_report("'%s' invalid %s error action", |
253 | buf, is_read ? "read" : "write"); | |
666daa68 MA |
254 | return -1; |
255 | } | |
256 | } | |
257 | ||
0563e191 ZYW |
258 | static bool do_check_io_limits(BlockIOLimit *io_limits) |
259 | { | |
260 | bool bps_flag; | |
261 | bool iops_flag; | |
262 | ||
263 | assert(io_limits); | |
264 | ||
265 | bps_flag = (io_limits->bps[BLOCK_IO_LIMIT_TOTAL] != 0) | |
266 | && ((io_limits->bps[BLOCK_IO_LIMIT_READ] != 0) | |
267 | || (io_limits->bps[BLOCK_IO_LIMIT_WRITE] != 0)); | |
268 | iops_flag = (io_limits->iops[BLOCK_IO_LIMIT_TOTAL] != 0) | |
269 | && ((io_limits->iops[BLOCK_IO_LIMIT_READ] != 0) | |
270 | || (io_limits->iops[BLOCK_IO_LIMIT_WRITE] != 0)); | |
271 | if (bps_flag || iops_flag) { | |
272 | return false; | |
273 | } | |
274 | ||
275 | return true; | |
276 | } | |
277 | ||
2d0d2837 | 278 | DriveInfo *drive_init(QemuOpts *opts, BlockInterfaceType block_default_type) |
666daa68 MA |
279 | { |
280 | const char *buf; | |
281 | const char *file = NULL; | |
666daa68 MA |
282 | const char *serial; |
283 | const char *mediastr = ""; | |
284 | BlockInterfaceType type; | |
285 | enum { MEDIA_DISK, MEDIA_CDROM } media; | |
286 | int bus_id, unit_id; | |
287 | int cyls, heads, secs, translation; | |
288 | BlockDriver *drv = NULL; | |
289 | int max_devs; | |
290 | int index; | |
291 | int ro = 0; | |
292 | int bdrv_flags = 0; | |
293 | int on_read_error, on_write_error; | |
294 | const char *devaddr; | |
295 | DriveInfo *dinfo; | |
0563e191 | 296 | BlockIOLimit io_limits; |
666daa68 | 297 | int snapshot = 0; |
fb0490f6 | 298 | bool copy_on_read; |
666daa68 MA |
299 | int ret; |
300 | ||
666daa68 | 301 | translation = BIOS_ATA_TRANSLATION_AUTO; |
666daa68 MA |
302 | media = MEDIA_DISK; |
303 | ||
304 | /* extract parameters */ | |
305 | bus_id = qemu_opt_get_number(opts, "bus", 0); | |
306 | unit_id = qemu_opt_get_number(opts, "unit", -1); | |
307 | index = qemu_opt_get_number(opts, "index", -1); | |
308 | ||
309 | cyls = qemu_opt_get_number(opts, "cyls", 0); | |
310 | heads = qemu_opt_get_number(opts, "heads", 0); | |
311 | secs = qemu_opt_get_number(opts, "secs", 0); | |
312 | ||
313 | snapshot = qemu_opt_get_bool(opts, "snapshot", 0); | |
314 | ro = qemu_opt_get_bool(opts, "readonly", 0); | |
fb0490f6 | 315 | copy_on_read = qemu_opt_get_bool(opts, "copy-on-read", false); |
666daa68 MA |
316 | |
317 | file = qemu_opt_get(opts, "file"); | |
318 | serial = qemu_opt_get(opts, "serial"); | |
319 | ||
320 | if ((buf = qemu_opt_get(opts, "if")) != NULL) { | |
1960966d MA |
321 | for (type = 0; type < IF_COUNT && strcmp(buf, if_name[type]); type++) |
322 | ; | |
323 | if (type == IF_COUNT) { | |
807105a7 | 324 | error_report("unsupported bus type '%s'", buf); |
666daa68 MA |
325 | return NULL; |
326 | } | |
2d3999fe | 327 | } else { |
2d0d2837 | 328 | type = block_default_type; |
666daa68 | 329 | } |
2d3999fe | 330 | |
1960966d | 331 | max_devs = if_max_devs[type]; |
666daa68 MA |
332 | |
333 | if (cyls || heads || secs) { | |
aaea3f36 | 334 | if (cyls < 1) { |
807105a7 | 335 | error_report("invalid physical cyls number"); |
666daa68 MA |
336 | return NULL; |
337 | } | |
aaea3f36 | 338 | if (heads < 1) { |
807105a7 | 339 | error_report("invalid physical heads number"); |
666daa68 MA |
340 | return NULL; |
341 | } | |
aaea3f36 | 342 | if (secs < 1) { |
807105a7 | 343 | error_report("invalid physical secs number"); |
666daa68 MA |
344 | return NULL; |
345 | } | |
346 | } | |
347 | ||
348 | if ((buf = qemu_opt_get(opts, "trans")) != NULL) { | |
349 | if (!cyls) { | |
e4080f9b | 350 | error_report("'%s' trans must be used with cyls, heads and secs", |
807105a7 | 351 | buf); |
666daa68 MA |
352 | return NULL; |
353 | } | |
354 | if (!strcmp(buf, "none")) | |
355 | translation = BIOS_ATA_TRANSLATION_NONE; | |
356 | else if (!strcmp(buf, "lba")) | |
357 | translation = BIOS_ATA_TRANSLATION_LBA; | |
358 | else if (!strcmp(buf, "auto")) | |
359 | translation = BIOS_ATA_TRANSLATION_AUTO; | |
360 | else { | |
807105a7 | 361 | error_report("'%s' invalid translation type", buf); |
666daa68 MA |
362 | return NULL; |
363 | } | |
364 | } | |
365 | ||
366 | if ((buf = qemu_opt_get(opts, "media")) != NULL) { | |
367 | if (!strcmp(buf, "disk")) { | |
368 | media = MEDIA_DISK; | |
369 | } else if (!strcmp(buf, "cdrom")) { | |
370 | if (cyls || secs || heads) { | |
e7ff8f0e | 371 | error_report("CHS can't be set with media=%s", buf); |
666daa68 MA |
372 | return NULL; |
373 | } | |
374 | media = MEDIA_CDROM; | |
375 | } else { | |
807105a7 | 376 | error_report("'%s' invalid media", buf); |
666daa68 MA |
377 | return NULL; |
378 | } | |
379 | } | |
380 | ||
1f212b9d | 381 | bdrv_flags |= BDRV_O_CACHE_WB; |
666daa68 | 382 | if ((buf = qemu_opt_get(opts, "cache")) != NULL) { |
c3993cdc SH |
383 | if (bdrv_parse_cache_flags(buf, &bdrv_flags) != 0) { |
384 | error_report("invalid cache option"); | |
385 | return NULL; | |
666daa68 MA |
386 | } |
387 | } | |
388 | ||
389 | #ifdef CONFIG_LINUX_AIO | |
390 | if ((buf = qemu_opt_get(opts, "aio")) != NULL) { | |
391 | if (!strcmp(buf, "native")) { | |
392 | bdrv_flags |= BDRV_O_NATIVE_AIO; | |
393 | } else if (!strcmp(buf, "threads")) { | |
394 | /* this is the default */ | |
395 | } else { | |
807105a7 | 396 | error_report("invalid aio option"); |
666daa68 MA |
397 | return NULL; |
398 | } | |
399 | } | |
400 | #endif | |
401 | ||
402 | if ((buf = qemu_opt_get(opts, "format")) != NULL) { | |
c8057f95 PM |
403 | if (is_help_option(buf)) { |
404 | error_printf("Supported formats:"); | |
405 | bdrv_iterate_format(bdrv_format_print, NULL); | |
406 | error_printf("\n"); | |
407 | return NULL; | |
666daa68 MA |
408 | } |
409 | drv = bdrv_find_whitelisted_format(buf); | |
410 | if (!drv) { | |
807105a7 | 411 | error_report("'%s' invalid format", buf); |
666daa68 MA |
412 | return NULL; |
413 | } | |
414 | } | |
415 | ||
0563e191 ZYW |
416 | /* disk I/O throttling */ |
417 | io_limits.bps[BLOCK_IO_LIMIT_TOTAL] = | |
418 | qemu_opt_get_number(opts, "bps", 0); | |
419 | io_limits.bps[BLOCK_IO_LIMIT_READ] = | |
420 | qemu_opt_get_number(opts, "bps_rd", 0); | |
421 | io_limits.bps[BLOCK_IO_LIMIT_WRITE] = | |
422 | qemu_opt_get_number(opts, "bps_wr", 0); | |
423 | io_limits.iops[BLOCK_IO_LIMIT_TOTAL] = | |
424 | qemu_opt_get_number(opts, "iops", 0); | |
425 | io_limits.iops[BLOCK_IO_LIMIT_READ] = | |
426 | qemu_opt_get_number(opts, "iops_rd", 0); | |
427 | io_limits.iops[BLOCK_IO_LIMIT_WRITE] = | |
428 | qemu_opt_get_number(opts, "iops_wr", 0); | |
429 | ||
430 | if (!do_check_io_limits(&io_limits)) { | |
431 | error_report("bps(iops) and bps_rd/bps_wr(iops_rd/iops_wr) " | |
432 | "cannot be used at the same time"); | |
433 | return NULL; | |
434 | } | |
435 | ||
0d92d17a JK |
436 | if (qemu_opt_get(opts, "boot") != NULL) { |
437 | fprintf(stderr, "qemu-kvm: boot=on|off is deprecated and will be " | |
438 | "ignored. Future versions will reject this parameter. Please " | |
439 | "update your scripts.\n"); | |
440 | } | |
441 | ||
92aa5c6d | 442 | on_write_error = BLOCKDEV_ON_ERROR_ENOSPC; |
666daa68 MA |
443 | if ((buf = qemu_opt_get(opts, "werror")) != NULL) { |
444 | if (type != IF_IDE && type != IF_SCSI && type != IF_VIRTIO && type != IF_NONE) { | |
807105a7 | 445 | error_report("werror is not supported by this bus type"); |
666daa68 MA |
446 | return NULL; |
447 | } | |
448 | ||
449 | on_write_error = parse_block_error_action(buf, 0); | |
450 | if (on_write_error < 0) { | |
451 | return NULL; | |
452 | } | |
453 | } | |
454 | ||
92aa5c6d | 455 | on_read_error = BLOCKDEV_ON_ERROR_REPORT; |
666daa68 | 456 | if ((buf = qemu_opt_get(opts, "rerror")) != NULL) { |
5dba48a8 | 457 | if (type != IF_IDE && type != IF_VIRTIO && type != IF_SCSI && type != IF_NONE) { |
807105a7 | 458 | error_report("rerror is not supported by this bus type"); |
666daa68 MA |
459 | return NULL; |
460 | } | |
461 | ||
462 | on_read_error = parse_block_error_action(buf, 1); | |
463 | if (on_read_error < 0) { | |
464 | return NULL; | |
465 | } | |
466 | } | |
467 | ||
468 | if ((devaddr = qemu_opt_get(opts, "addr")) != NULL) { | |
469 | if (type != IF_VIRTIO) { | |
807105a7 | 470 | error_report("addr is not supported by this bus type"); |
666daa68 MA |
471 | return NULL; |
472 | } | |
473 | } | |
474 | ||
475 | /* compute bus and unit according index */ | |
476 | ||
477 | if (index != -1) { | |
478 | if (bus_id != 0 || unit_id != -1) { | |
807105a7 | 479 | error_report("index cannot be used with bus and unit"); |
666daa68 MA |
480 | return NULL; |
481 | } | |
505a7fb1 MA |
482 | bus_id = drive_index_to_bus_id(type, index); |
483 | unit_id = drive_index_to_unit_id(type, index); | |
666daa68 MA |
484 | } |
485 | ||
486 | /* if user doesn't specify a unit_id, | |
487 | * try to find the first free | |
488 | */ | |
489 | ||
490 | if (unit_id == -1) { | |
491 | unit_id = 0; | |
492 | while (drive_get(type, bus_id, unit_id) != NULL) { | |
493 | unit_id++; | |
494 | if (max_devs && unit_id >= max_devs) { | |
495 | unit_id -= max_devs; | |
496 | bus_id++; | |
497 | } | |
498 | } | |
499 | } | |
500 | ||
501 | /* check unit id */ | |
502 | ||
503 | if (max_devs && unit_id >= max_devs) { | |
807105a7 MA |
504 | error_report("unit %d too big (max is %d)", |
505 | unit_id, max_devs - 1); | |
666daa68 MA |
506 | return NULL; |
507 | } | |
508 | ||
509 | /* | |
4e5d9b57 | 510 | * catch multiple definitions |
666daa68 MA |
511 | */ |
512 | ||
513 | if (drive_get(type, bus_id, unit_id) != NULL) { | |
4e5d9b57 MA |
514 | error_report("drive with bus=%d, unit=%d (index=%d) exists", |
515 | bus_id, unit_id, index); | |
666daa68 MA |
516 | return NULL; |
517 | } | |
518 | ||
519 | /* init */ | |
520 | ||
7267c094 | 521 | dinfo = g_malloc0(sizeof(*dinfo)); |
666daa68 | 522 | if ((buf = qemu_opts_id(opts)) != NULL) { |
7267c094 | 523 | dinfo->id = g_strdup(buf); |
666daa68 MA |
524 | } else { |
525 | /* no id supplied -> create one */ | |
7267c094 | 526 | dinfo->id = g_malloc0(32); |
666daa68 MA |
527 | if (type == IF_IDE || type == IF_SCSI) |
528 | mediastr = (media == MEDIA_CDROM) ? "-cd" : "-hd"; | |
529 | if (max_devs) | |
530 | snprintf(dinfo->id, 32, "%s%i%s%i", | |
79d21d5b | 531 | if_name[type], bus_id, mediastr, unit_id); |
666daa68 MA |
532 | else |
533 | snprintf(dinfo->id, 32, "%s%s%i", | |
79d21d5b | 534 | if_name[type], mediastr, unit_id); |
666daa68 MA |
535 | } |
536 | dinfo->bdrv = bdrv_new(dinfo->id); | |
80dd1aae KS |
537 | dinfo->bdrv->open_flags = snapshot ? BDRV_O_SNAPSHOT : 0; |
538 | dinfo->bdrv->read_only = ro; | |
666daa68 MA |
539 | dinfo->devaddr = devaddr; |
540 | dinfo->type = type; | |
541 | dinfo->bus = bus_id; | |
542 | dinfo->unit = unit_id; | |
317bb412 MA |
543 | dinfo->cyls = cyls; |
544 | dinfo->heads = heads; | |
545 | dinfo->secs = secs; | |
546 | dinfo->trans = translation; | |
666daa68 | 547 | dinfo->opts = opts; |
84fb3925 | 548 | dinfo->refcount = 1; |
577d0a38 | 549 | dinfo->serial = serial; |
666daa68 MA |
550 | QTAILQ_INSERT_TAIL(&drives, dinfo, next); |
551 | ||
abd7f68d MA |
552 | bdrv_set_on_error(dinfo->bdrv, on_read_error, on_write_error); |
553 | ||
0563e191 ZYW |
554 | /* disk I/O throttling */ |
555 | bdrv_set_io_limits(dinfo->bdrv, &io_limits); | |
556 | ||
666daa68 MA |
557 | switch(type) { |
558 | case IF_IDE: | |
559 | case IF_SCSI: | |
560 | case IF_XEN: | |
561 | case IF_NONE: | |
2b584959 | 562 | dinfo->media_cd = media == MEDIA_CDROM; |
666daa68 MA |
563 | break; |
564 | case IF_SD: | |
666daa68 | 565 | case IF_FLOPPY: |
666daa68 MA |
566 | case IF_PFLASH: |
567 | case IF_MTD: | |
568 | break; | |
569 | case IF_VIRTIO: | |
570 | /* add virtio block device */ | |
e478b448 | 571 | opts = qemu_opts_create_nofail(qemu_find_opts("device")); |
eeb9c1b5 AL |
572 | if (arch_type == QEMU_ARCH_S390X) { |
573 | qemu_opt_set(opts, "driver", "virtio-blk-s390"); | |
574 | } else { | |
575 | qemu_opt_set(opts, "driver", "virtio-blk-pci"); | |
576 | } | |
666daa68 MA |
577 | qemu_opt_set(opts, "drive", dinfo->id); |
578 | if (devaddr) | |
579 | qemu_opt_set(opts, "addr", devaddr); | |
580 | break; | |
2292ddae | 581 | default: |
666daa68 MA |
582 | abort(); |
583 | } | |
dd5b0d71 | 584 | if (!file || !*file) { |
319ae529 | 585 | return dinfo; |
666daa68 MA |
586 | } |
587 | if (snapshot) { | |
588 | /* always use cache=unsafe with snapshot */ | |
589 | bdrv_flags &= ~BDRV_O_CACHE_MASK; | |
590 | bdrv_flags |= (BDRV_O_SNAPSHOT|BDRV_O_CACHE_WB|BDRV_O_NO_FLUSH); | |
591 | } | |
592 | ||
fb0490f6 SH |
593 | if (copy_on_read) { |
594 | bdrv_flags |= BDRV_O_COPY_ON_READ; | |
595 | } | |
596 | ||
ed9d4205 BC |
597 | if (runstate_check(RUN_STATE_INMIGRATE)) { |
598 | bdrv_flags |= BDRV_O_INCOMING; | |
599 | } | |
600 | ||
666daa68 MA |
601 | if (media == MEDIA_CDROM) { |
602 | /* CDROM is fine for any interface, don't check. */ | |
603 | ro = 1; | |
604 | } else if (ro == 1) { | |
1e9eb78a JJ |
605 | if (type != IF_SCSI && type != IF_VIRTIO && type != IF_FLOPPY && |
606 | type != IF_NONE && type != IF_PFLASH) { | |
807105a7 | 607 | error_report("readonly not supported by this bus type"); |
a9ae2bff | 608 | goto err; |
666daa68 MA |
609 | } |
610 | } | |
611 | ||
612 | bdrv_flags |= ro ? 0 : BDRV_O_RDWR; | |
613 | ||
04d4abe9 SH |
614 | if (ro && copy_on_read) { |
615 | error_report("warning: disabling copy_on_read on readonly drive"); | |
616 | } | |
617 | ||
666daa68 MA |
618 | ret = bdrv_open(dinfo->bdrv, file, bdrv_flags, drv); |
619 | if (ret < 0) { | |
807105a7 MA |
620 | error_report("could not open disk image %s: %s", |
621 | file, strerror(-ret)); | |
a9ae2bff | 622 | goto err; |
666daa68 MA |
623 | } |
624 | ||
625 | if (bdrv_key_required(dinfo->bdrv)) | |
626 | autostart = 0; | |
666daa68 | 627 | return dinfo; |
a9ae2bff MA |
628 | |
629 | err: | |
630 | bdrv_delete(dinfo->bdrv); | |
7267c094 | 631 | g_free(dinfo->id); |
a9ae2bff | 632 | QTAILQ_REMOVE(&drives, dinfo, next); |
7267c094 | 633 | g_free(dinfo); |
a9ae2bff | 634 | return NULL; |
666daa68 MA |
635 | } |
636 | ||
637 | void do_commit(Monitor *mon, const QDict *qdict) | |
638 | { | |
666daa68 | 639 | const char *device = qdict_get_str(qdict, "device"); |
6ab4b5ab | 640 | BlockDriverState *bs; |
e8877497 | 641 | int ret; |
666daa68 | 642 | |
6ab4b5ab | 643 | if (!strcmp(device, "all")) { |
e8877497 SH |
644 | ret = bdrv_commit_all(); |
645 | if (ret == -EBUSY) { | |
646 | qerror_report(QERR_DEVICE_IN_USE, device); | |
647 | return; | |
648 | } | |
6ab4b5ab MA |
649 | } else { |
650 | bs = bdrv_find(device); | |
ac59eb95 MA |
651 | if (!bs) { |
652 | qerror_report(QERR_DEVICE_NOT_FOUND, device); | |
653 | return; | |
6ab4b5ab | 654 | } |
2d3735d3 SH |
655 | ret = bdrv_commit(bs); |
656 | if (ret == -EBUSY) { | |
657 | qerror_report(QERR_DEVICE_IN_USE, device); | |
658 | return; | |
659 | } | |
666daa68 MA |
660 | } |
661 | } | |
662 | ||
6cc2a415 PB |
663 | static void blockdev_do_action(int kind, void *data, Error **errp) |
664 | { | |
665 | BlockdevAction action; | |
666 | BlockdevActionList list; | |
667 | ||
668 | action.kind = kind; | |
669 | action.data = data; | |
670 | list.value = &action; | |
671 | list.next = NULL; | |
672 | qmp_transaction(&list, errp); | |
673 | } | |
674 | ||
6106e249 LC |
675 | void qmp_blockdev_snapshot_sync(const char *device, const char *snapshot_file, |
676 | bool has_format, const char *format, | |
6cc2a415 | 677 | bool has_mode, enum NewImageMode mode, |
6106e249 | 678 | Error **errp) |
f8882568 | 679 | { |
6cc2a415 PB |
680 | BlockdevSnapshot snapshot = { |
681 | .device = (char *) device, | |
682 | .snapshot_file = (char *) snapshot_file, | |
683 | .has_format = has_format, | |
684 | .format = (char *) format, | |
685 | .has_mode = has_mode, | |
686 | .mode = mode, | |
687 | }; | |
688 | blockdev_do_action(BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC, &snapshot, | |
689 | errp); | |
f8882568 JS |
690 | } |
691 | ||
8802d1fd JC |
692 | |
693 | /* New and old BlockDriverState structs for group snapshots */ | |
52e7c241 | 694 | typedef struct BlkTransactionStates { |
8802d1fd JC |
695 | BlockDriverState *old_bs; |
696 | BlockDriverState *new_bs; | |
52e7c241 PB |
697 | QSIMPLEQ_ENTRY(BlkTransactionStates) entry; |
698 | } BlkTransactionStates; | |
8802d1fd JC |
699 | |
700 | /* | |
701 | * 'Atomic' group snapshots. The snapshots are taken as a set, and if any fail | |
702 | * then we do not pivot any of the devices in the group, and abandon the | |
703 | * snapshots | |
704 | */ | |
52e7c241 | 705 | void qmp_transaction(BlockdevActionList *dev_list, Error **errp) |
8802d1fd JC |
706 | { |
707 | int ret = 0; | |
52e7c241 PB |
708 | BlockdevActionList *dev_entry = dev_list; |
709 | BlkTransactionStates *states, *next; | |
43e17041 | 710 | Error *local_err = NULL; |
8802d1fd | 711 | |
52e7c241 | 712 | QSIMPLEQ_HEAD(snap_bdrv_states, BlkTransactionStates) snap_bdrv_states; |
8802d1fd JC |
713 | QSIMPLEQ_INIT(&snap_bdrv_states); |
714 | ||
715 | /* drain all i/o before any snapshots */ | |
716 | bdrv_drain_all(); | |
717 | ||
718 | /* We don't do anything in this loop that commits us to the snapshot */ | |
719 | while (NULL != dev_entry) { | |
52e7c241 PB |
720 | BlockdevAction *dev_info = NULL; |
721 | BlockDriver *proto_drv; | |
722 | BlockDriver *drv; | |
723 | int flags; | |
bc8b094f PB |
724 | enum NewImageMode mode; |
725 | const char *new_image_file; | |
52e7c241 PB |
726 | const char *device; |
727 | const char *format = "qcow2"; | |
52e7c241 | 728 | |
8802d1fd JC |
729 | dev_info = dev_entry->value; |
730 | dev_entry = dev_entry->next; | |
731 | ||
52e7c241 | 732 | states = g_malloc0(sizeof(BlkTransactionStates)); |
8802d1fd JC |
733 | QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, states, entry); |
734 | ||
52e7c241 PB |
735 | switch (dev_info->kind) { |
736 | case BLOCKDEV_ACTION_KIND_BLOCKDEV_SNAPSHOT_SYNC: | |
737 | device = dev_info->blockdev_snapshot_sync->device; | |
bc8b094f PB |
738 | if (!dev_info->blockdev_snapshot_sync->has_mode) { |
739 | dev_info->blockdev_snapshot_sync->mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
740 | } | |
741 | new_image_file = dev_info->blockdev_snapshot_sync->snapshot_file; | |
52e7c241 PB |
742 | if (dev_info->blockdev_snapshot_sync->has_format) { |
743 | format = dev_info->blockdev_snapshot_sync->format; | |
744 | } | |
bc8b094f | 745 | mode = dev_info->blockdev_snapshot_sync->mode; |
52e7c241 PB |
746 | break; |
747 | default: | |
748 | abort(); | |
749 | } | |
8802d1fd | 750 | |
52e7c241 PB |
751 | drv = bdrv_find_format(format); |
752 | if (!drv) { | |
753 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
754 | goto delete_and_fail; | |
755 | } | |
756 | ||
757 | states->old_bs = bdrv_find(device); | |
8802d1fd | 758 | if (!states->old_bs) { |
52e7c241 | 759 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
8802d1fd JC |
760 | goto delete_and_fail; |
761 | } | |
762 | ||
e86fe18a PB |
763 | if (!bdrv_is_inserted(states->old_bs)) { |
764 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
765 | goto delete_and_fail; | |
766 | } | |
767 | ||
8802d1fd | 768 | if (bdrv_in_use(states->old_bs)) { |
52e7c241 | 769 | error_set(errp, QERR_DEVICE_IN_USE, device); |
8802d1fd JC |
770 | goto delete_and_fail; |
771 | } | |
772 | ||
e86fe18a | 773 | if (!bdrv_is_read_only(states->old_bs)) { |
8802d1fd JC |
774 | if (bdrv_flush(states->old_bs)) { |
775 | error_set(errp, QERR_IO_ERROR); | |
776 | goto delete_and_fail; | |
777 | } | |
778 | } | |
779 | ||
8802d1fd JC |
780 | flags = states->old_bs->open_flags; |
781 | ||
52e7c241 | 782 | proto_drv = bdrv_find_protocol(new_image_file); |
8802d1fd JC |
783 | if (!proto_drv) { |
784 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
785 | goto delete_and_fail; | |
786 | } | |
787 | ||
788 | /* create new image w/backing file */ | |
bc8b094f | 789 | if (mode != NEW_IMAGE_MODE_EXISTING) { |
43e17041 LC |
790 | bdrv_img_create(new_image_file, format, |
791 | states->old_bs->filename, | |
792 | states->old_bs->drv->format_name, | |
793 | NULL, -1, flags, &local_err); | |
794 | if (error_is_set(&local_err)) { | |
795 | error_propagate(errp, local_err); | |
bc8b094f PB |
796 | goto delete_and_fail; |
797 | } | |
8802d1fd JC |
798 | } |
799 | ||
800 | /* We will manually add the backing_hd field to the bs later */ | |
801 | states->new_bs = bdrv_new(""); | |
52e7c241 | 802 | ret = bdrv_open(states->new_bs, new_image_file, |
8802d1fd JC |
803 | flags | BDRV_O_NO_BACKING, drv); |
804 | if (ret != 0) { | |
52e7c241 | 805 | error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file); |
8802d1fd JC |
806 | goto delete_and_fail; |
807 | } | |
808 | } | |
809 | ||
810 | ||
811 | /* Now we are going to do the actual pivot. Everything up to this point | |
812 | * is reversible, but we are committed at this point */ | |
813 | QSIMPLEQ_FOREACH(states, &snap_bdrv_states, entry) { | |
814 | /* This removes our old bs from the bdrv_states, and adds the new bs */ | |
815 | bdrv_append(states->new_bs, states->old_bs); | |
870f5681 JC |
816 | /* We don't need (or want) to use the transactional |
817 | * bdrv_reopen_multiple() across all the entries at once, because we | |
818 | * don't want to abort all of them if one of them fails the reopen */ | |
819 | bdrv_reopen(states->new_bs, states->new_bs->open_flags & ~BDRV_O_RDWR, | |
820 | NULL); | |
8802d1fd JC |
821 | } |
822 | ||
823 | /* success */ | |
824 | goto exit; | |
825 | ||
826 | delete_and_fail: | |
827 | /* | |
828 | * failure, and it is all-or-none; abandon each new bs, and keep using | |
829 | * the original bs for all images | |
830 | */ | |
831 | QSIMPLEQ_FOREACH(states, &snap_bdrv_states, entry) { | |
832 | if (states->new_bs) { | |
833 | bdrv_delete(states->new_bs); | |
834 | } | |
835 | } | |
836 | exit: | |
622d2419 | 837 | QSIMPLEQ_FOREACH_SAFE(states, &snap_bdrv_states, entry, next) { |
8802d1fd JC |
838 | g_free(states); |
839 | } | |
8802d1fd JC |
840 | } |
841 | ||
842 | ||
92d48558 | 843 | static void eject_device(BlockDriverState *bs, int force, Error **errp) |
666daa68 | 844 | { |
2d3735d3 SH |
845 | if (bdrv_in_use(bs)) { |
846 | error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs)); | |
847 | return; | |
848 | } | |
2c6942fa | 849 | if (!bdrv_dev_has_removable_media(bs)) { |
92d48558 LC |
850 | error_set(errp, QERR_DEVICE_NOT_REMOVABLE, bdrv_get_device_name(bs)); |
851 | return; | |
ea8f942f | 852 | } |
92d48558 | 853 | |
025ccaa7 PB |
854 | if (bdrv_dev_is_medium_locked(bs) && !bdrv_dev_is_tray_open(bs)) { |
855 | bdrv_dev_eject_request(bs, force); | |
856 | if (!force) { | |
92d48558 LC |
857 | error_set(errp, QERR_DEVICE_LOCKED, bdrv_get_device_name(bs)); |
858 | return; | |
025ccaa7 | 859 | } |
666daa68 | 860 | } |
92d48558 | 861 | |
3b5276b5 | 862 | bdrv_close(bs); |
666daa68 MA |
863 | } |
864 | ||
c245b6a3 | 865 | void qmp_eject(const char *device, bool has_force, bool force, Error **errp) |
666daa68 MA |
866 | { |
867 | BlockDriverState *bs; | |
666daa68 | 868 | |
c245b6a3 | 869 | bs = bdrv_find(device); |
666daa68 | 870 | if (!bs) { |
c245b6a3 LC |
871 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
872 | return; | |
92d48558 LC |
873 | } |
874 | ||
c245b6a3 | 875 | eject_device(bs, force, errp); |
666daa68 MA |
876 | } |
877 | ||
a4dea8a9 | 878 | void qmp_block_passwd(const char *device, const char *password, Error **errp) |
666daa68 MA |
879 | { |
880 | BlockDriverState *bs; | |
881 | int err; | |
882 | ||
a4dea8a9 | 883 | bs = bdrv_find(device); |
666daa68 | 884 | if (!bs) { |
a4dea8a9 LC |
885 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
886 | return; | |
666daa68 MA |
887 | } |
888 | ||
a4dea8a9 | 889 | err = bdrv_set_key(bs, password); |
666daa68 | 890 | if (err == -EINVAL) { |
a4dea8a9 LC |
891 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); |
892 | return; | |
666daa68 | 893 | } else if (err < 0) { |
a4dea8a9 LC |
894 | error_set(errp, QERR_INVALID_PASSWORD); |
895 | return; | |
666daa68 | 896 | } |
666daa68 MA |
897 | } |
898 | ||
333a96ec LC |
899 | static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename, |
900 | int bdrv_flags, BlockDriver *drv, | |
901 | const char *password, Error **errp) | |
902 | { | |
903 | if (bdrv_open(bs, filename, bdrv_flags, drv) < 0) { | |
904 | error_set(errp, QERR_OPEN_FILE_FAILED, filename); | |
905 | return; | |
906 | } | |
907 | ||
908 | if (bdrv_key_required(bs)) { | |
909 | if (password) { | |
910 | if (bdrv_set_key(bs, password) < 0) { | |
911 | error_set(errp, QERR_INVALID_PASSWORD); | |
912 | } | |
913 | } else { | |
914 | error_set(errp, QERR_DEVICE_ENCRYPTED, bdrv_get_device_name(bs), | |
915 | bdrv_get_encrypted_filename(bs)); | |
916 | } | |
917 | } else if (password) { | |
918 | error_set(errp, QERR_DEVICE_NOT_ENCRYPTED, bdrv_get_device_name(bs)); | |
919 | } | |
920 | } | |
921 | ||
922 | void qmp_change_blockdev(const char *device, const char *filename, | |
923 | bool has_format, const char *format, Error **errp) | |
666daa68 MA |
924 | { |
925 | BlockDriverState *bs; | |
926 | BlockDriver *drv = NULL; | |
927 | int bdrv_flags; | |
92d48558 | 928 | Error *err = NULL; |
666daa68 MA |
929 | |
930 | bs = bdrv_find(device); | |
931 | if (!bs) { | |
333a96ec LC |
932 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
933 | return; | |
666daa68 | 934 | } |
333a96ec LC |
935 | |
936 | if (format) { | |
937 | drv = bdrv_find_whitelisted_format(format); | |
666daa68 | 938 | if (!drv) { |
333a96ec LC |
939 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); |
940 | return; | |
666daa68 MA |
941 | } |
942 | } | |
333a96ec | 943 | |
92d48558 LC |
944 | eject_device(bs, 0, &err); |
945 | if (error_is_set(&err)) { | |
333a96ec LC |
946 | error_propagate(errp, err); |
947 | return; | |
666daa68 | 948 | } |
333a96ec | 949 | |
528f7663 | 950 | bdrv_flags = bdrv_is_read_only(bs) ? 0 : BDRV_O_RDWR; |
199630b6 | 951 | bdrv_flags |= bdrv_is_snapshot(bs) ? BDRV_O_SNAPSHOT : 0; |
333a96ec LC |
952 | |
953 | qmp_bdrv_open_encrypted(bs, filename, bdrv_flags, drv, NULL, errp); | |
666daa68 | 954 | } |
9063f814 | 955 | |
727f005e | 956 | /* throttling disk I/O limits */ |
80047da5 LC |
957 | void qmp_block_set_io_throttle(const char *device, int64_t bps, int64_t bps_rd, |
958 | int64_t bps_wr, int64_t iops, int64_t iops_rd, | |
959 | int64_t iops_wr, Error **errp) | |
727f005e ZYW |
960 | { |
961 | BlockIOLimit io_limits; | |
727f005e ZYW |
962 | BlockDriverState *bs; |
963 | ||
80047da5 | 964 | bs = bdrv_find(device); |
727f005e | 965 | if (!bs) { |
80047da5 LC |
966 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
967 | return; | |
727f005e ZYW |
968 | } |
969 | ||
80047da5 LC |
970 | io_limits.bps[BLOCK_IO_LIMIT_TOTAL] = bps; |
971 | io_limits.bps[BLOCK_IO_LIMIT_READ] = bps_rd; | |
972 | io_limits.bps[BLOCK_IO_LIMIT_WRITE] = bps_wr; | |
973 | io_limits.iops[BLOCK_IO_LIMIT_TOTAL]= iops; | |
974 | io_limits.iops[BLOCK_IO_LIMIT_READ] = iops_rd; | |
975 | io_limits.iops[BLOCK_IO_LIMIT_WRITE]= iops_wr; | |
727f005e ZYW |
976 | |
977 | if (!do_check_io_limits(&io_limits)) { | |
80047da5 LC |
978 | error_set(errp, QERR_INVALID_PARAMETER_COMBINATION); |
979 | return; | |
727f005e ZYW |
980 | } |
981 | ||
982 | bs->io_limits = io_limits; | |
983 | bs->slice_time = BLOCK_IO_SLICE_TIME; | |
984 | ||
985 | if (!bs->io_limits_enabled && bdrv_io_limits_enabled(bs)) { | |
986 | bdrv_io_limits_enable(bs); | |
987 | } else if (bs->io_limits_enabled && !bdrv_io_limits_enabled(bs)) { | |
988 | bdrv_io_limits_disable(bs); | |
989 | } else { | |
990 | if (bs->block_timer) { | |
991 | qemu_mod_timer(bs->block_timer, qemu_get_clock_ns(vm_clock)); | |
992 | } | |
993 | } | |
727f005e ZYW |
994 | } |
995 | ||
9063f814 RH |
996 | int do_drive_del(Monitor *mon, const QDict *qdict, QObject **ret_data) |
997 | { | |
998 | const char *id = qdict_get_str(qdict, "id"); | |
999 | BlockDriverState *bs; | |
9063f814 RH |
1000 | |
1001 | bs = bdrv_find(id); | |
1002 | if (!bs) { | |
1003 | qerror_report(QERR_DEVICE_NOT_FOUND, id); | |
1004 | return -1; | |
1005 | } | |
8591675f MT |
1006 | if (bdrv_in_use(bs)) { |
1007 | qerror_report(QERR_DEVICE_IN_USE, id); | |
1008 | return -1; | |
1009 | } | |
9063f814 RH |
1010 | |
1011 | /* quiesce block driver; prevent further io */ | |
922453bc | 1012 | bdrv_drain_all(); |
9063f814 RH |
1013 | bdrv_flush(bs); |
1014 | bdrv_close(bs); | |
1015 | ||
fa879d62 | 1016 | /* if we have a device attached to this BlockDriverState |
d22b2f41 RH |
1017 | * then we need to make the drive anonymous until the device |
1018 | * can be removed. If this is a drive with no device backing | |
1019 | * then we can just get rid of the block driver state right here. | |
1020 | */ | |
fa879d62 | 1021 | if (bdrv_get_attached_dev(bs)) { |
d22b2f41 RH |
1022 | bdrv_make_anon(bs); |
1023 | } else { | |
1024 | drive_uninit(drive_get_by_blockdev(bs)); | |
9063f814 RH |
1025 | } |
1026 | ||
9063f814 RH |
1027 | return 0; |
1028 | } | |
6d4a2b3a | 1029 | |
5e7caacb | 1030 | void qmp_block_resize(const char *device, int64_t size, Error **errp) |
6d4a2b3a | 1031 | { |
6d4a2b3a CH |
1032 | BlockDriverState *bs; |
1033 | ||
1034 | bs = bdrv_find(device); | |
1035 | if (!bs) { | |
5e7caacb LC |
1036 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); |
1037 | return; | |
6d4a2b3a CH |
1038 | } |
1039 | ||
1040 | if (size < 0) { | |
939a1cc3 | 1041 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "size", "a >0 size"); |
5e7caacb | 1042 | return; |
6d4a2b3a CH |
1043 | } |
1044 | ||
939a1cc3 SH |
1045 | switch (bdrv_truncate(bs, size)) { |
1046 | case 0: | |
1047 | break; | |
1048 | case -ENOMEDIUM: | |
1049 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
1050 | break; | |
1051 | case -ENOTSUP: | |
1052 | error_set(errp, QERR_UNSUPPORTED); | |
1053 | break; | |
1054 | case -EACCES: | |
1055 | error_set(errp, QERR_DEVICE_IS_READ_ONLY, device); | |
1056 | break; | |
1057 | case -EBUSY: | |
1058 | error_set(errp, QERR_DEVICE_IN_USE, device); | |
1059 | break; | |
1060 | default: | |
5e7caacb | 1061 | error_set(errp, QERR_UNDEFINED_ERROR); |
939a1cc3 | 1062 | break; |
6d4a2b3a | 1063 | } |
6d4a2b3a | 1064 | } |
12bd451f | 1065 | |
9abf2dba | 1066 | static void block_job_cb(void *opaque, int ret) |
12bd451f SH |
1067 | { |
1068 | BlockDriverState *bs = opaque; | |
1069 | QObject *obj; | |
1070 | ||
9abf2dba | 1071 | trace_block_job_cb(bs, bs->job, ret); |
12bd451f SH |
1072 | |
1073 | assert(bs->job); | |
1074 | obj = qobject_from_block_job(bs->job); | |
1075 | if (ret < 0) { | |
1076 | QDict *dict = qobject_to_qdict(obj); | |
1077 | qdict_put(dict, "error", qstring_from_str(strerror(-ret))); | |
1078 | } | |
1079 | ||
370521a1 SH |
1080 | if (block_job_is_cancelled(bs->job)) { |
1081 | monitor_protocol_event(QEVENT_BLOCK_JOB_CANCELLED, obj); | |
1082 | } else { | |
1083 | monitor_protocol_event(QEVENT_BLOCK_JOB_COMPLETED, obj); | |
1084 | } | |
12bd451f | 1085 | qobject_decref(obj); |
aa398a5c SH |
1086 | |
1087 | drive_put_ref_bh_schedule(drive_get_by_blockdev(bs)); | |
12bd451f SH |
1088 | } |
1089 | ||
1090 | void qmp_block_stream(const char *device, bool has_base, | |
1d809098 PB |
1091 | const char *base, bool has_speed, int64_t speed, |
1092 | bool has_on_error, BlockdevOnError on_error, | |
1093 | Error **errp) | |
12bd451f SH |
1094 | { |
1095 | BlockDriverState *bs; | |
c8c3080f | 1096 | BlockDriverState *base_bs = NULL; |
fd7f8c65 | 1097 | Error *local_err = NULL; |
12bd451f | 1098 | |
1d809098 PB |
1099 | if (!has_on_error) { |
1100 | on_error = BLOCKDEV_ON_ERROR_REPORT; | |
1101 | } | |
1102 | ||
12bd451f SH |
1103 | bs = bdrv_find(device); |
1104 | if (!bs) { | |
1105 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
1106 | return; | |
1107 | } | |
1108 | ||
12bd451f | 1109 | if (base) { |
c8c3080f MT |
1110 | base_bs = bdrv_find_backing_image(bs, base); |
1111 | if (base_bs == NULL) { | |
1112 | error_set(errp, QERR_BASE_NOT_FOUND, base); | |
1113 | return; | |
1114 | } | |
12bd451f SH |
1115 | } |
1116 | ||
c83c66c3 | 1117 | stream_start(bs, base_bs, base, has_speed ? speed : 0, |
1d809098 | 1118 | on_error, block_job_cb, bs, &local_err); |
fd7f8c65 SH |
1119 | if (error_is_set(&local_err)) { |
1120 | error_propagate(errp, local_err); | |
1121 | return; | |
12bd451f SH |
1122 | } |
1123 | ||
aa398a5c SH |
1124 | /* Grab a reference so hotplug does not delete the BlockDriverState from |
1125 | * underneath us. | |
1126 | */ | |
1127 | drive_get_ref(drive_get_by_blockdev(bs)); | |
1128 | ||
12bd451f SH |
1129 | trace_qmp_block_stream(bs, bs->job); |
1130 | } | |
2d47c6e9 | 1131 | |
ed61fc10 JC |
1132 | void qmp_block_commit(const char *device, |
1133 | bool has_base, const char *base, const char *top, | |
1134 | bool has_speed, int64_t speed, | |
1135 | Error **errp) | |
1136 | { | |
1137 | BlockDriverState *bs; | |
1138 | BlockDriverState *base_bs, *top_bs; | |
1139 | Error *local_err = NULL; | |
1140 | /* This will be part of the QMP command, if/when the | |
1141 | * BlockdevOnError change for blkmirror makes it in | |
1142 | */ | |
92aa5c6d | 1143 | BlockdevOnError on_error = BLOCKDEV_ON_ERROR_REPORT; |
ed61fc10 JC |
1144 | |
1145 | /* drain all i/o before commits */ | |
1146 | bdrv_drain_all(); | |
1147 | ||
1148 | bs = bdrv_find(device); | |
1149 | if (!bs) { | |
1150 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
1151 | return; | |
1152 | } | |
ed61fc10 JC |
1153 | |
1154 | /* default top_bs is the active layer */ | |
1155 | top_bs = bs; | |
1156 | ||
1157 | if (top) { | |
1158 | if (strcmp(bs->filename, top) != 0) { | |
1159 | top_bs = bdrv_find_backing_image(bs, top); | |
1160 | } | |
1161 | } | |
1162 | ||
1163 | if (top_bs == NULL) { | |
1164 | error_setg(errp, "Top image file %s not found", top ? top : "NULL"); | |
1165 | return; | |
1166 | } | |
1167 | ||
d5208c45 JC |
1168 | if (has_base && base) { |
1169 | base_bs = bdrv_find_backing_image(top_bs, base); | |
1170 | } else { | |
1171 | base_bs = bdrv_find_base(top_bs); | |
1172 | } | |
1173 | ||
1174 | if (base_bs == NULL) { | |
1175 | error_set(errp, QERR_BASE_NOT_FOUND, base ? base : "NULL"); | |
1176 | return; | |
1177 | } | |
1178 | ||
ed61fc10 JC |
1179 | commit_start(bs, base_bs, top_bs, speed, on_error, block_job_cb, bs, |
1180 | &local_err); | |
1181 | if (local_err != NULL) { | |
1182 | error_propagate(errp, local_err); | |
1183 | return; | |
1184 | } | |
1185 | /* Grab a reference so hotplug does not delete the BlockDriverState from | |
1186 | * underneath us. | |
1187 | */ | |
1188 | drive_get_ref(drive_get_by_blockdev(bs)); | |
1189 | } | |
1190 | ||
d9b902db PB |
1191 | void qmp_drive_mirror(const char *device, const char *target, |
1192 | bool has_format, const char *format, | |
1193 | enum MirrorSyncMode sync, | |
1194 | bool has_mode, enum NewImageMode mode, | |
b952b558 PB |
1195 | bool has_speed, int64_t speed, |
1196 | bool has_on_source_error, BlockdevOnError on_source_error, | |
1197 | bool has_on_target_error, BlockdevOnError on_target_error, | |
1198 | Error **errp) | |
d9b902db PB |
1199 | { |
1200 | BlockDriverInfo bdi; | |
1201 | BlockDriverState *bs; | |
1202 | BlockDriverState *source, *target_bs; | |
1203 | BlockDriver *proto_drv; | |
1204 | BlockDriver *drv = NULL; | |
1205 | Error *local_err = NULL; | |
1206 | int flags; | |
1207 | uint64_t size; | |
1208 | int ret; | |
1209 | ||
1210 | if (!has_speed) { | |
1211 | speed = 0; | |
1212 | } | |
b952b558 PB |
1213 | if (!has_on_source_error) { |
1214 | on_source_error = BLOCKDEV_ON_ERROR_REPORT; | |
1215 | } | |
1216 | if (!has_on_target_error) { | |
1217 | on_target_error = BLOCKDEV_ON_ERROR_REPORT; | |
1218 | } | |
d9b902db PB |
1219 | if (!has_mode) { |
1220 | mode = NEW_IMAGE_MODE_ABSOLUTE_PATHS; | |
1221 | } | |
1222 | ||
1223 | bs = bdrv_find(device); | |
1224 | if (!bs) { | |
1225 | error_set(errp, QERR_DEVICE_NOT_FOUND, device); | |
1226 | return; | |
1227 | } | |
1228 | ||
1229 | if (!bdrv_is_inserted(bs)) { | |
1230 | error_set(errp, QERR_DEVICE_HAS_NO_MEDIUM, device); | |
1231 | return; | |
1232 | } | |
1233 | ||
1234 | if (!has_format) { | |
1235 | format = mode == NEW_IMAGE_MODE_EXISTING ? NULL : bs->drv->format_name; | |
1236 | } | |
1237 | if (format) { | |
1238 | drv = bdrv_find_format(format); | |
1239 | if (!drv) { | |
1240 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
1241 | return; | |
1242 | } | |
1243 | } | |
1244 | ||
1245 | if (bdrv_in_use(bs)) { | |
1246 | error_set(errp, QERR_DEVICE_IN_USE, device); | |
1247 | return; | |
1248 | } | |
1249 | ||
1250 | flags = bs->open_flags | BDRV_O_RDWR; | |
1251 | source = bs->backing_hd; | |
1252 | if (!source && sync == MIRROR_SYNC_MODE_TOP) { | |
1253 | sync = MIRROR_SYNC_MODE_FULL; | |
1254 | } | |
1255 | ||
1256 | proto_drv = bdrv_find_protocol(target); | |
1257 | if (!proto_drv) { | |
1258 | error_set(errp, QERR_INVALID_BLOCK_FORMAT, format); | |
1259 | return; | |
1260 | } | |
1261 | ||
1262 | if (sync == MIRROR_SYNC_MODE_FULL && mode != NEW_IMAGE_MODE_EXISTING) { | |
1263 | /* create new image w/o backing file */ | |
1264 | assert(format && drv); | |
1265 | bdrv_get_geometry(bs, &size); | |
1266 | size *= 512; | |
cf8f2426 LC |
1267 | bdrv_img_create(target, format, |
1268 | NULL, NULL, NULL, size, flags, &local_err); | |
d9b902db PB |
1269 | } else { |
1270 | switch (mode) { | |
1271 | case NEW_IMAGE_MODE_EXISTING: | |
1272 | ret = 0; | |
1273 | break; | |
1274 | case NEW_IMAGE_MODE_ABSOLUTE_PATHS: | |
1275 | /* create new image with backing file */ | |
cf8f2426 LC |
1276 | bdrv_img_create(target, format, |
1277 | source->filename, | |
1278 | source->drv->format_name, | |
1279 | NULL, -1, flags, &local_err); | |
d9b902db PB |
1280 | break; |
1281 | default: | |
1282 | abort(); | |
1283 | } | |
1284 | } | |
1285 | ||
cf8f2426 LC |
1286 | if (error_is_set(&local_err)) { |
1287 | error_propagate(errp, local_err); | |
d9b902db PB |
1288 | return; |
1289 | } | |
1290 | ||
1291 | target_bs = bdrv_new(""); | |
1292 | ret = bdrv_open(target_bs, target, flags | BDRV_O_NO_BACKING, drv); | |
1293 | ||
1294 | if (ret < 0) { | |
1295 | bdrv_delete(target_bs); | |
1296 | error_set(errp, QERR_OPEN_FILE_FAILED, target); | |
1297 | return; | |
1298 | } | |
1299 | ||
1300 | /* We need a backing file if we will copy parts of a cluster. */ | |
1301 | if (bdrv_get_info(target_bs, &bdi) >= 0 && bdi.cluster_size != 0 && | |
1302 | bdi.cluster_size >= BDRV_SECTORS_PER_DIRTY_CHUNK * 512) { | |
1303 | ret = bdrv_open_backing_file(target_bs); | |
1304 | if (ret < 0) { | |
1305 | bdrv_delete(target_bs); | |
1306 | error_set(errp, QERR_OPEN_FILE_FAILED, target); | |
1307 | return; | |
1308 | } | |
1309 | } | |
1310 | ||
b952b558 PB |
1311 | mirror_start(bs, target_bs, speed, sync, on_source_error, on_target_error, |
1312 | block_job_cb, bs, &local_err); | |
d9b902db PB |
1313 | if (local_err != NULL) { |
1314 | bdrv_delete(target_bs); | |
1315 | error_propagate(errp, local_err); | |
1316 | return; | |
1317 | } | |
1318 | ||
1319 | /* Grab a reference so hotplug does not delete the BlockDriverState from | |
1320 | * underneath us. | |
1321 | */ | |
1322 | drive_get_ref(drive_get_by_blockdev(bs)); | |
1323 | } | |
1324 | ||
2d47c6e9 SH |
1325 | static BlockJob *find_block_job(const char *device) |
1326 | { | |
1327 | BlockDriverState *bs; | |
1328 | ||
1329 | bs = bdrv_find(device); | |
1330 | if (!bs || !bs->job) { | |
1331 | return NULL; | |
1332 | } | |
1333 | return bs->job; | |
1334 | } | |
1335 | ||
882ec7ce | 1336 | void qmp_block_job_set_speed(const char *device, int64_t speed, Error **errp) |
2d47c6e9 SH |
1337 | { |
1338 | BlockJob *job = find_block_job(device); | |
1339 | ||
1340 | if (!job) { | |
7ef15070 | 1341 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
2d47c6e9 SH |
1342 | return; |
1343 | } | |
1344 | ||
882ec7ce | 1345 | block_job_set_speed(job, speed, errp); |
2d47c6e9 | 1346 | } |
370521a1 | 1347 | |
6e37fb81 PB |
1348 | void qmp_block_job_cancel(const char *device, |
1349 | bool has_force, bool force, Error **errp) | |
370521a1 SH |
1350 | { |
1351 | BlockJob *job = find_block_job(device); | |
1352 | ||
6e37fb81 PB |
1353 | if (!has_force) { |
1354 | force = false; | |
1355 | } | |
1356 | ||
370521a1 | 1357 | if (!job) { |
7ef15070 | 1358 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); |
370521a1 SH |
1359 | return; |
1360 | } | |
6e37fb81 | 1361 | if (job->paused && !force) { |
8acc72a4 PB |
1362 | error_set(errp, QERR_BLOCK_JOB_PAUSED, device); |
1363 | return; | |
1364 | } | |
370521a1 SH |
1365 | |
1366 | trace_qmp_block_job_cancel(job); | |
1367 | block_job_cancel(job); | |
1368 | } | |
fb5458cd | 1369 | |
6e37fb81 PB |
1370 | void qmp_block_job_pause(const char *device, Error **errp) |
1371 | { | |
1372 | BlockJob *job = find_block_job(device); | |
1373 | ||
1374 | if (!job) { | |
1375 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
1376 | return; | |
1377 | } | |
1378 | ||
1379 | trace_qmp_block_job_pause(job); | |
1380 | block_job_pause(job); | |
1381 | } | |
1382 | ||
1383 | void qmp_block_job_resume(const char *device, Error **errp) | |
1384 | { | |
1385 | BlockJob *job = find_block_job(device); | |
1386 | ||
1387 | if (!job) { | |
1388 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
1389 | return; | |
1390 | } | |
1391 | ||
1392 | trace_qmp_block_job_resume(job); | |
1393 | block_job_resume(job); | |
1394 | } | |
1395 | ||
aeae883b PB |
1396 | void qmp_block_job_complete(const char *device, Error **errp) |
1397 | { | |
1398 | BlockJob *job = find_block_job(device); | |
1399 | ||
1400 | if (!job) { | |
1401 | error_set(errp, QERR_BLOCK_JOB_NOT_ACTIVE, device); | |
1402 | return; | |
1403 | } | |
1404 | ||
1405 | trace_qmp_block_job_complete(job); | |
1406 | block_job_complete(job, errp); | |
1407 | } | |
1408 | ||
fb5458cd SH |
1409 | static void do_qmp_query_block_jobs_one(void *opaque, BlockDriverState *bs) |
1410 | { | |
1411 | BlockJobInfoList **prev = opaque; | |
1412 | BlockJob *job = bs->job; | |
1413 | ||
1414 | if (job) { | |
30e628b7 PB |
1415 | BlockJobInfoList *elem = g_new0(BlockJobInfoList, 1); |
1416 | elem->value = block_job_query(bs->job); | |
fb5458cd SH |
1417 | (*prev)->next = elem; |
1418 | *prev = elem; | |
1419 | } | |
1420 | } | |
1421 | ||
1422 | BlockJobInfoList *qmp_query_block_jobs(Error **errp) | |
1423 | { | |
1424 | /* Dummy is a fake list element for holding the head pointer */ | |
1425 | BlockJobInfoList dummy = {}; | |
1426 | BlockJobInfoList *prev = &dummy; | |
1427 | bdrv_iterate(do_qmp_query_block_jobs_one, &prev); | |
1428 | return dummy.next; | |
1429 | } | |
4d454574 PB |
1430 | |
1431 | QemuOptsList qemu_drive_opts = { | |
1432 | .name = "drive", | |
1433 | .head = QTAILQ_HEAD_INITIALIZER(qemu_drive_opts.head), | |
1434 | .desc = { | |
1435 | { | |
1436 | .name = "bus", | |
1437 | .type = QEMU_OPT_NUMBER, | |
1438 | .help = "bus number", | |
1439 | },{ | |
1440 | .name = "unit", | |
1441 | .type = QEMU_OPT_NUMBER, | |
1442 | .help = "unit number (i.e. lun for scsi)", | |
1443 | },{ | |
1444 | .name = "if", | |
1445 | .type = QEMU_OPT_STRING, | |
1446 | .help = "interface (ide, scsi, sd, mtd, floppy, pflash, virtio)", | |
1447 | },{ | |
1448 | .name = "index", | |
1449 | .type = QEMU_OPT_NUMBER, | |
1450 | .help = "index number", | |
1451 | },{ | |
1452 | .name = "cyls", | |
1453 | .type = QEMU_OPT_NUMBER, | |
1454 | .help = "number of cylinders (ide disk geometry)", | |
1455 | },{ | |
1456 | .name = "heads", | |
1457 | .type = QEMU_OPT_NUMBER, | |
1458 | .help = "number of heads (ide disk geometry)", | |
1459 | },{ | |
1460 | .name = "secs", | |
1461 | .type = QEMU_OPT_NUMBER, | |
1462 | .help = "number of sectors (ide disk geometry)", | |
1463 | },{ | |
1464 | .name = "trans", | |
1465 | .type = QEMU_OPT_STRING, | |
1466 | .help = "chs translation (auto, lba. none)", | |
1467 | },{ | |
1468 | .name = "media", | |
1469 | .type = QEMU_OPT_STRING, | |
1470 | .help = "media type (disk, cdrom)", | |
1471 | },{ | |
1472 | .name = "snapshot", | |
1473 | .type = QEMU_OPT_BOOL, | |
1474 | .help = "enable/disable snapshot mode", | |
1475 | },{ | |
1476 | .name = "file", | |
1477 | .type = QEMU_OPT_STRING, | |
1478 | .help = "disk image", | |
1479 | },{ | |
1480 | .name = "cache", | |
1481 | .type = QEMU_OPT_STRING, | |
1482 | .help = "host cache usage (none, writeback, writethrough, " | |
1483 | "directsync, unsafe)", | |
1484 | },{ | |
1485 | .name = "aio", | |
1486 | .type = QEMU_OPT_STRING, | |
1487 | .help = "host AIO implementation (threads, native)", | |
1488 | },{ | |
1489 | .name = "format", | |
1490 | .type = QEMU_OPT_STRING, | |
1491 | .help = "disk format (raw, qcow2, ...)", | |
1492 | },{ | |
1493 | .name = "serial", | |
1494 | .type = QEMU_OPT_STRING, | |
1495 | .help = "disk serial number", | |
1496 | },{ | |
1497 | .name = "rerror", | |
1498 | .type = QEMU_OPT_STRING, | |
1499 | .help = "read error action", | |
1500 | },{ | |
1501 | .name = "werror", | |
1502 | .type = QEMU_OPT_STRING, | |
1503 | .help = "write error action", | |
1504 | },{ | |
1505 | .name = "addr", | |
1506 | .type = QEMU_OPT_STRING, | |
1507 | .help = "pci address (virtio only)", | |
1508 | },{ | |
1509 | .name = "readonly", | |
1510 | .type = QEMU_OPT_BOOL, | |
1511 | .help = "open drive file as read-only", | |
1512 | },{ | |
1513 | .name = "iops", | |
1514 | .type = QEMU_OPT_NUMBER, | |
1515 | .help = "limit total I/O operations per second", | |
1516 | },{ | |
1517 | .name = "iops_rd", | |
1518 | .type = QEMU_OPT_NUMBER, | |
1519 | .help = "limit read operations per second", | |
1520 | },{ | |
1521 | .name = "iops_wr", | |
1522 | .type = QEMU_OPT_NUMBER, | |
1523 | .help = "limit write operations per second", | |
1524 | },{ | |
1525 | .name = "bps", | |
1526 | .type = QEMU_OPT_NUMBER, | |
1527 | .help = "limit total bytes per second", | |
1528 | },{ | |
1529 | .name = "bps_rd", | |
1530 | .type = QEMU_OPT_NUMBER, | |
1531 | .help = "limit read bytes per second", | |
1532 | },{ | |
1533 | .name = "bps_wr", | |
1534 | .type = QEMU_OPT_NUMBER, | |
1535 | .help = "limit write bytes per second", | |
1536 | },{ | |
1537 | .name = "copy-on-read", | |
1538 | .type = QEMU_OPT_BOOL, | |
1539 | .help = "copy read data from backing file into image file", | |
1540 | },{ | |
1541 | .name = "boot", | |
1542 | .type = QEMU_OPT_BOOL, | |
1543 | .help = "(deprecated, ignored)", | |
1544 | }, | |
1545 | { /* end of list */ } | |
1546 | }, | |
1547 | }; |