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