]> git.proxmox.com Git - mirror_qemu.git/blame - block/raw-format.c
block/io: fix copy_range
[mirror_qemu.git] / block / raw-format.c
CommitLineData
2e6fc7eb 1/* BlockDriver implementation for "raw" format driver
e1c66c6d 2 *
ad82be2f 3 * Copyright (C) 2010-2016 Red Hat, Inc.
ff369a48 4 * Copyright (C) 2010, Blue Swirl <blauwirbel@gmail.com>
775d6afd 5 * Copyright (C) 2009, Anthony Liguori <aliguori@us.ibm.com>
e1c66c6d
LE
6 *
7 * Author:
8 * Laszlo Ersek <lersek@redhat.com>
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to
12 * deal in the Software without restriction, including without limitation the
13 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14 * sell copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
26 * IN THE SOFTWARE.
27 */
28
80c71a24 29#include "qemu/osdep.h"
e1c66c6d 30#include "block/block_int.h"
da34e65c 31#include "qapi/error.h"
ff369a48
LE
32#include "qemu/option.h"
33
2fdc7045
TG
34typedef struct BDRVRawState {
35 uint64_t offset;
36 uint64_t size;
37 bool has_size;
38} BDRVRawState;
39
40static QemuOptsList raw_runtime_opts = {
41 .name = "raw",
42 .head = QTAILQ_HEAD_INITIALIZER(raw_runtime_opts.head),
43 .desc = {
44 {
45 .name = "offset",
46 .type = QEMU_OPT_SIZE,
47 .help = "offset in the disk where the image starts",
48 },
49 {
50 .name = "size",
51 .type = QEMU_OPT_SIZE,
52 .help = "virtual disk size",
53 },
54 { /* end of list */ }
55 },
56};
57
cd3a4cf6
CL
58static QemuOptsList raw_create_opts = {
59 .name = "raw-create-opts",
60 .head = QTAILQ_HEAD_INITIALIZER(raw_create_opts.head),
61 .desc = {
62 {
63 .name = BLOCK_OPT_SIZE,
64 .type = QEMU_OPT_SIZE,
65 .help = "Virtual disk size"
66 },
67 { /* end of list */ }
68 }
ff369a48 69};
e1c66c6d 70
2fdc7045
TG
71static int raw_read_options(QDict *options, BlockDriverState *bs,
72 BDRVRawState *s, Error **errp)
73{
74 Error *local_err = NULL;
75 QemuOpts *opts = NULL;
76 int64_t real_size = 0;
77 int ret;
78
79 real_size = bdrv_getlength(bs->file->bs);
80 if (real_size < 0) {
81 error_setg_errno(errp, -real_size, "Could not get image size");
82 return real_size;
83 }
84
85 opts = qemu_opts_create(&raw_runtime_opts, NULL, 0, &error_abort);
86 qemu_opts_absorb_qdict(opts, options, &local_err);
87 if (local_err) {
88 error_propagate(errp, local_err);
89 ret = -EINVAL;
90 goto end;
91 }
92
93 s->offset = qemu_opt_get_size(opts, "offset", 0);
40332872
TG
94 if (s->offset > real_size) {
95 error_setg(errp, "Offset (%" PRIu64 ") cannot be greater than "
96 "size of the containing file (%" PRId64 ")",
97 s->offset, real_size);
98 ret = -EINVAL;
99 goto end;
100 }
101
2fdc7045
TG
102 if (qemu_opt_find(opts, "size") != NULL) {
103 s->size = qemu_opt_get_size(opts, "size", 0);
104 s->has_size = true;
105 } else {
106 s->has_size = false;
107 s->size = real_size - s->offset;
108 }
109
110 /* Check size and offset */
40332872 111 if ((real_size - s->offset) < s->size) {
2fdc7045
TG
112 error_setg(errp, "The sum of offset (%" PRIu64 ") and size "
113 "(%" PRIu64 ") has to be smaller or equal to the "
114 " actual size of the containing file (%" PRId64 ")",
115 s->offset, s->size, real_size);
116 ret = -EINVAL;
117 goto end;
118 }
119
120 /* Make sure size is multiple of BDRV_SECTOR_SIZE to prevent rounding
121 * up and leaking out of the specified area. */
80a15e3e 122 if (s->has_size && !QEMU_IS_ALIGNED(s->size, BDRV_SECTOR_SIZE)) {
2fdc7045
TG
123 error_setg(errp, "Specified size is not multiple of %llu",
124 BDRV_SECTOR_SIZE);
125 ret = -EINVAL;
126 goto end;
127 }
128
129 ret = 0;
130
131end:
132
133 qemu_opts_del(opts);
134
135 return ret;
136}
137
7a6d3fc5
LE
138static int raw_reopen_prepare(BDRVReopenState *reopen_state,
139 BlockReopenQueue *queue, Error **errp)
e1c66c6d 140{
2fdc7045
TG
141 assert(reopen_state != NULL);
142 assert(reopen_state->bs != NULL);
143
144 reopen_state->opaque = g_new0(BDRVRawState, 1);
145
146 return raw_read_options(
147 reopen_state->options,
148 reopen_state->bs,
149 reopen_state->opaque,
150 errp);
151}
152
153static void raw_reopen_commit(BDRVReopenState *state)
154{
155 BDRVRawState *new_s = state->opaque;
156 BDRVRawState *s = state->bs->opaque;
157
158 memcpy(s, new_s, sizeof(BDRVRawState));
159
160 g_free(state->opaque);
161 state->opaque = NULL;
162}
163
164static void raw_reopen_abort(BDRVReopenState *state)
165{
166 g_free(state->opaque);
167 state->opaque = NULL;
e1c66c6d
LE
168}
169
38445538
FZ
170/* Check and adjust the offset, against 'offset' and 'size' options. */
171static inline int raw_adjust_offset(BlockDriverState *bs, uint64_t *offset,
172 uint64_t bytes, bool is_write)
173{
174 BDRVRawState *s = bs->opaque;
175
176 if (s->has_size && (*offset > s->size || bytes > (s->size - *offset))) {
177 /* There's not enough space for the write, or the read request is
178 * out-of-range. Don't read/write anything to prevent leaking out of
179 * the size specified in options. */
180 return is_write ? -ENOSPC : -EINVAL;;
181 }
182
183 if (*offset > INT64_MAX - s->offset) {
184 return -EINVAL;
185 }
186 *offset += s->offset;
187
188 return 0;
189}
190
decaeed7
EB
191static int coroutine_fn raw_co_preadv(BlockDriverState *bs, uint64_t offset,
192 uint64_t bytes, QEMUIOVector *qiov,
193 int flags)
e1c66c6d 194{
38445538 195 int ret;
2fdc7045 196
38445538
FZ
197 ret = raw_adjust_offset(bs, &offset, bytes, false);
198 if (ret) {
199 return ret;
2fdc7045 200 }
2fdc7045 201
9eaafd90 202 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
decaeed7 203 return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags);
e1c66c6d
LE
204}
205
decaeed7
EB
206static int coroutine_fn raw_co_pwritev(BlockDriverState *bs, uint64_t offset,
207 uint64_t bytes, QEMUIOVector *qiov,
208 int flags)
e1c66c6d 209{
38f3ef57
KW
210 void *buf = NULL;
211 BlockDriver *drv;
212 QEMUIOVector local_qiov;
213 int ret;
214
decaeed7
EB
215 if (bs->probed && offset < BLOCK_PROBE_BUF_SIZE && bytes) {
216 /* Handling partial writes would be a pain - so we just
217 * require that guests have 512-byte request alignment if
218 * probing occurred */
38f3ef57
KW
219 QEMU_BUILD_BUG_ON(BLOCK_PROBE_BUF_SIZE != 512);
220 QEMU_BUILD_BUG_ON(BDRV_SECTOR_SIZE != 512);
decaeed7 221 assert(offset == 0 && bytes >= BLOCK_PROBE_BUF_SIZE);
38f3ef57 222
9a4f4c31 223 buf = qemu_try_blockalign(bs->file->bs, 512);
38f3ef57
KW
224 if (!buf) {
225 ret = -ENOMEM;
226 goto fail;
227 }
228
229 ret = qemu_iovec_to_buf(qiov, 0, buf, 512);
230 if (ret != 512) {
231 ret = -EINVAL;
232 goto fail;
233 }
234
235 drv = bdrv_probe_all(buf, 512, NULL);
236 if (drv != bs->drv) {
237 ret = -EPERM;
238 goto fail;
239 }
240
241 /* Use the checked buffer, a malicious guest might be overwriting its
242 * original buffer in the background. */
243 qemu_iovec_init(&local_qiov, qiov->niov + 1);
244 qemu_iovec_add(&local_qiov, buf, 512);
245 qemu_iovec_concat(&local_qiov, qiov, 512, qiov->size - 512);
246 qiov = &local_qiov;
247 }
248
38445538
FZ
249 ret = raw_adjust_offset(bs, &offset, bytes, true);
250 if (ret) {
251 goto fail;
252 }
2fdc7045 253
9eaafd90 254 BLKDBG_EVENT(bs->file, BLKDBG_WRITE_AIO);
decaeed7 255 ret = bdrv_co_pwritev(bs->file, offset, bytes, qiov, flags);
38f3ef57
KW
256
257fail:
258 if (qiov == &local_qiov) {
259 qemu_iovec_destroy(&local_qiov);
260 }
261 qemu_vfree(buf);
262 return ret;
e1c66c6d
LE
263}
264
d41aa7e3
EB
265static int coroutine_fn raw_co_block_status(BlockDriverState *bs,
266 bool want_zero, int64_t offset,
267 int64_t bytes, int64_t *pnum,
268 int64_t *map,
67a0fd2a 269 BlockDriverState **file)
e1c66c6d 270{
2fdc7045 271 BDRVRawState *s = bs->opaque;
d41aa7e3 272 *pnum = bytes;
02650acb 273 *file = bs->file->bs;
d41aa7e3
EB
274 *map = offset + s->offset;
275 return BDRV_BLOCK_RAW | BDRV_BLOCK_OFFSET_VALID;
e1c66c6d
LE
276}
277
39ad937e 278static int coroutine_fn raw_co_pwrite_zeroes(BlockDriverState *bs,
f5a5ca79 279 int64_t offset, int bytes,
39ad937e 280 BdrvRequestFlags flags)
e1c66c6d 281{
38445538
FZ
282 int ret;
283
284 ret = raw_adjust_offset(bs, (uint64_t *)&offset, bytes, true);
285 if (ret) {
286 return ret;
2fdc7045 287 }
f5a5ca79 288 return bdrv_co_pwrite_zeroes(bs->file, offset, bytes, flags);
e1c66c6d
LE
289}
290
5f61ad07 291static int coroutine_fn raw_co_pdiscard(BlockDriverState *bs,
f5a5ca79 292 int64_t offset, int bytes)
e1c66c6d 293{
38445538
FZ
294 int ret;
295
296 ret = raw_adjust_offset(bs, (uint64_t *)&offset, bytes, true);
297 if (ret) {
298 return ret;
2fdc7045 299 }
f5a5ca79 300 return bdrv_co_pdiscard(bs->file->bs, offset, bytes);
e1c66c6d
LE
301}
302
7a6d3fc5 303static int64_t raw_getlength(BlockDriverState *bs)
e1c66c6d 304{
2fdc7045
TG
305 int64_t len;
306 BDRVRawState *s = bs->opaque;
307
308 /* Update size. It should not change unless the file was externally
309 * modified. */
310 len = bdrv_getlength(bs->file->bs);
311 if (len < 0) {
312 return len;
313 }
314
315 if (len < s->offset) {
316 s->size = 0;
317 } else {
318 if (s->has_size) {
319 /* Try to honour the size */
320 s->size = MIN(s->size, len - s->offset);
321 } else {
322 s->size = len - s->offset;
323 }
324 }
325
326 return s->size;
e1c66c6d
LE
327}
328
a843a22a
SH
329static BlockMeasureInfo *raw_measure(QemuOpts *opts, BlockDriverState *in_bs,
330 Error **errp)
331{
332 BlockMeasureInfo *info;
333 int64_t required;
334
335 if (in_bs) {
336 required = bdrv_getlength(in_bs);
337 if (required < 0) {
338 error_setg_errno(errp, -required, "Unable to get image size");
339 return NULL;
340 }
341 } else {
342 required = ROUND_UP(qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0),
343 BDRV_SECTOR_SIZE);
344 }
345
346 info = g_new(BlockMeasureInfo, 1);
347 info->required = required;
348
349 /* Unallocated sectors count towards the file size in raw images */
350 info->fully_allocated = info->required;
351 return info;
352}
353
7a6d3fc5 354static int raw_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
e1c66c6d 355{
9a4f4c31 356 return bdrv_get_info(bs->file->bs, bdi);
e1c66c6d
LE
357}
358
decaeed7
EB
359static void raw_refresh_limits(BlockDriverState *bs, Error **errp)
360{
361 if (bs->probed) {
362 /* To make it easier to protect the first sector, any probed
363 * image is restricted to read-modify-write on sub-sector
364 * operations. */
365 bs->bl.request_alignment = BDRV_SECTOR_SIZE;
366 }
367}
368
061ca8a3
KW
369static int coroutine_fn raw_co_truncate(BlockDriverState *bs, int64_t offset,
370 PreallocMode prealloc, Error **errp)
e1c66c6d 371{
2fdc7045
TG
372 BDRVRawState *s = bs->opaque;
373
374 if (s->has_size) {
f59adb32 375 error_setg(errp, "Cannot resize fixed-size raw disks");
2fdc7045
TG
376 return -ENOTSUP;
377 }
378
379 if (INT64_MAX - offset < s->offset) {
f59adb32 380 error_setg(errp, "Disk size too large for the chosen offset");
2fdc7045
TG
381 return -EINVAL;
382 }
383
384 s->size = offset;
385 offset += s->offset;
061ca8a3 386 return bdrv_co_truncate(bs->file, offset, prealloc, errp);
e1c66c6d
LE
387}
388
7a6d3fc5 389static void raw_eject(BlockDriverState *bs, bool eject_flag)
e1c66c6d 390{
9a4f4c31 391 bdrv_eject(bs->file->bs, eject_flag);
e1c66c6d
LE
392}
393
7a6d3fc5 394static void raw_lock_medium(BlockDriverState *bs, bool locked)
e1c66c6d 395{
9a4f4c31 396 bdrv_lock_medium(bs->file->bs, locked);
e1c66c6d
LE
397}
398
151a2930 399static int raw_co_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
e1c66c6d 400{
2fdc7045
TG
401 BDRVRawState *s = bs->opaque;
402 if (s->offset || s->has_size) {
403 return -ENOTSUP;
404 }
151a2930 405 return bdrv_co_ioctl(bs->file->bs, req, buf);
e1c66c6d
LE
406}
407
7a6d3fc5 408static int raw_has_zero_init(BlockDriverState *bs)
e1c66c6d 409{
9a4f4c31 410 return bdrv_has_zero_init(bs->file->bs);
e1c66c6d
LE
411}
412
efc75e2a
SH
413static int coroutine_fn raw_co_create_opts(const char *filename, QemuOpts *opts,
414 Error **errp)
1565262c 415{
9be38598 416 return bdrv_create_file(filename, opts, errp);
1565262c 417}
01dd96d8 418
015a1036
HR
419static int raw_open(BlockDriverState *bs, QDict *options, int flags,
420 Error **errp)
01dd96d8 421{
2fdc7045
TG
422 BDRVRawState *s = bs->opaque;
423 int ret;
424
4e4bf5c4
KW
425 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file,
426 false, errp);
427 if (!bs->file) {
428 return -EINVAL;
429 }
430
9a4f4c31 431 bs->sg = bs->file->bs->sg;
228345bf
HR
432 bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED |
433 (BDRV_REQ_FUA & bs->file->bs->supported_write_flags);
434 bs->supported_zero_flags = BDRV_REQ_WRITE_UNCHANGED |
435 ((BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP) &
436 bs->file->bs->supported_zero_flags);
38f3ef57
KW
437
438 if (bs->probed && !bdrv_is_read_only(bs)) {
439 fprintf(stderr,
440 "WARNING: Image format was not specified for '%s' and probing "
441 "guessed raw.\n"
442 " Automatically detecting the format is dangerous for "
443 "raw images, write operations on block 0 will be restricted.\n"
444 " Specify the 'raw' format explicitly to remove the "
445 "restrictions.\n",
9a4f4c31 446 bs->file->bs->filename);
38f3ef57
KW
447 }
448
2fdc7045
TG
449 ret = raw_read_options(options, bs, s, errp);
450 if (ret < 0) {
451 return ret;
452 }
453
454 if (bs->sg && (s->offset || s->has_size)) {
455 error_setg(errp, "Cannot use offset/size with SCSI generic devices");
456 return -EINVAL;
457 }
458
01dd96d8
LE
459 return 0;
460}
461
7a6d3fc5 462static void raw_close(BlockDriverState *bs)
01dd96d8
LE
463{
464}
465
7a6d3fc5 466static int raw_probe(const uint8_t *buf, int buf_size, const char *filename)
01dd96d8
LE
467{
468 /* smallest possible positive score so that raw is used if and only if no
469 * other block driver works
470 */
471 return 1;
472}
775d6afd 473
1a9335e4
ET
474static int raw_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
475{
2fdc7045
TG
476 BDRVRawState *s = bs->opaque;
477 int ret;
478
479 ret = bdrv_probe_blocksizes(bs->file->bs, bsz);
480 if (ret < 0) {
481 return ret;
482 }
483
484 if (!QEMU_IS_ALIGNED(s->offset, MAX(bsz->log, bsz->phys))) {
485 return -ENOTSUP;
486 }
487
488 return 0;
1a9335e4
ET
489}
490
491static int raw_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
492{
2fdc7045
TG
493 BDRVRawState *s = bs->opaque;
494 if (s->offset || s->has_size) {
495 return -ENOTSUP;
496 }
9a4f4c31 497 return bdrv_probe_geometry(bs->file->bs, geo);
1a9335e4
ET
498}
499
72d219e2
FZ
500static int coroutine_fn raw_co_copy_range_from(BlockDriverState *bs,
501 BdrvChild *src, uint64_t src_offset,
502 BdrvChild *dst, uint64_t dst_offset,
503 uint64_t bytes, BdrvRequestFlags flags)
504{
505 int ret;
506
507 ret = raw_adjust_offset(bs, &src_offset, bytes, false);
508 if (ret) {
509 return ret;
510 }
511 return bdrv_co_copy_range_from(bs->file, src_offset, dst, dst_offset,
512 bytes, flags);
513}
514
515static int coroutine_fn raw_co_copy_range_to(BlockDriverState *bs,
516 BdrvChild *src, uint64_t src_offset,
517 BdrvChild *dst, uint64_t dst_offset,
518 uint64_t bytes, BdrvRequestFlags flags)
519{
520 int ret;
521
522 ret = raw_adjust_offset(bs, &dst_offset, bytes, true);
523 if (ret) {
524 return ret;
525 }
526 return bdrv_co_copy_range_to(src, src_offset, bs->file, dst_offset, bytes,
527 flags);
528}
529
5f535a94 530BlockDriver bdrv_raw = {
775d6afd 531 .format_name = "raw",
2fdc7045 532 .instance_size = sizeof(BDRVRawState),
775d6afd
LE
533 .bdrv_probe = &raw_probe,
534 .bdrv_reopen_prepare = &raw_reopen_prepare,
2fdc7045
TG
535 .bdrv_reopen_commit = &raw_reopen_commit,
536 .bdrv_reopen_abort = &raw_reopen_abort,
775d6afd
LE
537 .bdrv_open = &raw_open,
538 .bdrv_close = &raw_close,
d7010dfb 539 .bdrv_child_perm = bdrv_filter_default_perms,
efc75e2a 540 .bdrv_co_create_opts = &raw_co_create_opts,
decaeed7
EB
541 .bdrv_co_preadv = &raw_co_preadv,
542 .bdrv_co_pwritev = &raw_co_pwritev,
39ad937e 543 .bdrv_co_pwrite_zeroes = &raw_co_pwrite_zeroes,
5f61ad07 544 .bdrv_co_pdiscard = &raw_co_pdiscard,
d41aa7e3 545 .bdrv_co_block_status = &raw_co_block_status,
72d219e2
FZ
546 .bdrv_co_copy_range_from = &raw_co_copy_range_from,
547 .bdrv_co_copy_range_to = &raw_co_copy_range_to,
061ca8a3 548 .bdrv_co_truncate = &raw_co_truncate,
775d6afd 549 .bdrv_getlength = &raw_getlength,
b94a2610 550 .has_variable_length = true,
a843a22a 551 .bdrv_measure = &raw_measure,
775d6afd 552 .bdrv_get_info = &raw_get_info,
decaeed7 553 .bdrv_refresh_limits = &raw_refresh_limits,
1a9335e4
ET
554 .bdrv_probe_blocksizes = &raw_probe_blocksizes,
555 .bdrv_probe_geometry = &raw_probe_geometry,
775d6afd
LE
556 .bdrv_eject = &raw_eject,
557 .bdrv_lock_medium = &raw_lock_medium,
151a2930 558 .bdrv_co_ioctl = &raw_co_ioctl,
cd3a4cf6 559 .create_opts = &raw_create_opts,
775d6afd
LE
560 .bdrv_has_zero_init = &raw_has_zero_init
561};
562
563static void bdrv_raw_init(void)
564{
565 bdrv_register(&bdrv_raw);
566}
567
568block_init(bdrv_raw_init);