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