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