]> git.proxmox.com Git - mirror_qemu.git/blame - block/qed.c
block: Change bdrv_{pread,pwrite,pwrite_sync}() param order
[mirror_qemu.git] / block / qed.c
CommitLineData
75411d23
SH
1/*
2 * QEMU Enhanced Disk Format
3 *
4 * Copyright IBM, Corp. 2010
5 *
6 * Authors:
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
8 * Anthony Liguori <aliguori@us.ibm.com>
9 *
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
12 *
13 */
14
80c71a24 15#include "qemu/osdep.h"
609f45ea 16#include "block/qdict.h"
da34e65c 17#include "qapi/error.h"
1de7afc9 18#include "qemu/timer.h"
58369e22 19#include "qemu/bswap.h"
db725815 20#include "qemu/main-loop.h"
0b8fa32f 21#include "qemu/module.h"
922a01a0 22#include "qemu/option.h"
5df022cf 23#include "qemu/memalign.h"
eabba580 24#include "trace.h"
75411d23 25#include "qed.h"
8a56fdad 26#include "sysemu/block-backend.h"
959355a4
KW
27#include "qapi/qmp/qdict.h"
28#include "qapi/qobject-input-visitor.h"
29#include "qapi/qapi-visit-block-core.h"
30
31static QemuOptsList qed_create_opts;
75411d23
SH
32
33static int bdrv_qed_probe(const uint8_t *buf, int buf_size,
34 const char *filename)
35{
36 const QEDHeader *header = (const QEDHeader *)buf;
37
38 if (buf_size < sizeof(*header)) {
39 return 0;
40 }
41 if (le32_to_cpu(header->magic) != QED_MAGIC) {
42 return 0;
43 }
44 return 100;
45}
46
47/**
48 * Check whether an image format is raw
49 *
50 * @fmt: Backing file format, may be NULL
51 */
52static bool qed_fmt_is_raw(const char *fmt)
53{
54 return fmt && strcmp(fmt, "raw") == 0;
55}
56
57static void qed_header_le_to_cpu(const QEDHeader *le, QEDHeader *cpu)
58{
59 cpu->magic = le32_to_cpu(le->magic);
60 cpu->cluster_size = le32_to_cpu(le->cluster_size);
61 cpu->table_size = le32_to_cpu(le->table_size);
62 cpu->header_size = le32_to_cpu(le->header_size);
63 cpu->features = le64_to_cpu(le->features);
64 cpu->compat_features = le64_to_cpu(le->compat_features);
65 cpu->autoclear_features = le64_to_cpu(le->autoclear_features);
66 cpu->l1_table_offset = le64_to_cpu(le->l1_table_offset);
67 cpu->image_size = le64_to_cpu(le->image_size);
68 cpu->backing_filename_offset = le32_to_cpu(le->backing_filename_offset);
69 cpu->backing_filename_size = le32_to_cpu(le->backing_filename_size);
70}
71
72static void qed_header_cpu_to_le(const QEDHeader *cpu, QEDHeader *le)
73{
74 le->magic = cpu_to_le32(cpu->magic);
75 le->cluster_size = cpu_to_le32(cpu->cluster_size);
76 le->table_size = cpu_to_le32(cpu->table_size);
77 le->header_size = cpu_to_le32(cpu->header_size);
78 le->features = cpu_to_le64(cpu->features);
79 le->compat_features = cpu_to_le64(cpu->compat_features);
80 le->autoclear_features = cpu_to_le64(cpu->autoclear_features);
81 le->l1_table_offset = cpu_to_le64(cpu->l1_table_offset);
82 le->image_size = cpu_to_le64(cpu->image_size);
83 le->backing_filename_offset = cpu_to_le32(cpu->backing_filename_offset);
84 le->backing_filename_size = cpu_to_le32(cpu->backing_filename_size);
85}
86
b10170ac 87int qed_write_header_sync(BDRVQEDState *s)
75411d23
SH
88{
89 QEDHeader le;
90 int ret;
91
92 qed_header_cpu_to_le(&s->header, &le);
32cc71de 93 ret = bdrv_pwrite(s->bs->file, 0, sizeof(le), &le, 0);
75411d23
SH
94 if (ret != sizeof(le)) {
95 return ret;
96 }
97 return 0;
98}
99
01979a98
SH
100/**
101 * Update header in-place (does not rewrite backing filename or other strings)
102 *
103 * This function only updates known header fields in-place and does not affect
104 * extra data after the QED header.
1f01e50b
PB
105 *
106 * No new allocating reqs can start while this function runs.
01979a98 107 */
87f0d882 108static int coroutine_fn qed_write_header(BDRVQEDState *s)
01979a98
SH
109{
110 /* We must write full sectors for O_DIRECT but cannot necessarily generate
111 * the data following the header if an unrecognized compat feature is
112 * active. Therefore, first read the sectors containing the header, update
113 * them, and write back.
114 */
115
c41a73ff 116 int nsectors = DIV_ROUND_UP(sizeof(QEDHeader), BDRV_SECTOR_SIZE);
01979a98 117 size_t len = nsectors * BDRV_SECTOR_SIZE;
7076309a 118 uint8_t *buf;
7076309a
KW
119 int ret;
120
1f01e50b
PB
121 assert(s->allocating_acb || s->allocating_write_reqs_plugged);
122
7076309a 123 buf = qemu_blockalign(s->bs, len);
7076309a 124
696e8cb2 125 ret = bdrv_co_pread(s->bs->file, 0, len, buf, 0);
7076309a
KW
126 if (ret < 0) {
127 goto out;
128 }
129
130 /* Update header */
131 qed_header_cpu_to_le(&s->header, (QEDHeader *) buf);
132
696e8cb2 133 ret = bdrv_co_pwrite(s->bs->file, 0, len, buf, 0);
7076309a
KW
134 if (ret < 0) {
135 goto out;
136 }
137
138 ret = 0;
139out:
140 qemu_vfree(buf);
f13d712b 141 return ret;
01979a98
SH
142}
143
75411d23
SH
144static uint64_t qed_max_image_size(uint32_t cluster_size, uint32_t table_size)
145{
146 uint64_t table_entries;
147 uint64_t l2_size;
148
149 table_entries = (table_size * cluster_size) / sizeof(uint64_t);
150 l2_size = table_entries * cluster_size;
151
152 return l2_size * table_entries;
153}
154
155static bool qed_is_cluster_size_valid(uint32_t cluster_size)
156{
157 if (cluster_size < QED_MIN_CLUSTER_SIZE ||
158 cluster_size > QED_MAX_CLUSTER_SIZE) {
159 return false;
160 }
161 if (cluster_size & (cluster_size - 1)) {
162 return false; /* not power of 2 */
163 }
164 return true;
165}
166
167static bool qed_is_table_size_valid(uint32_t table_size)
168{
169 if (table_size < QED_MIN_TABLE_SIZE ||
170 table_size > QED_MAX_TABLE_SIZE) {
171 return false;
172 }
173 if (table_size & (table_size - 1)) {
174 return false; /* not power of 2 */
175 }
176 return true;
177}
178
179static bool qed_is_image_size_valid(uint64_t image_size, uint32_t cluster_size,
180 uint32_t table_size)
181{
182 if (image_size % BDRV_SECTOR_SIZE != 0) {
183 return false; /* not multiple of sector size */
184 }
185 if (image_size > qed_max_image_size(cluster_size, table_size)) {
186 return false; /* image is too large */
187 }
188 return true;
189}
190
191/**
192 * Read a string of known length from the image file
193 *
194 * @file: Image file
195 * @offset: File offset to start of string, in bytes
196 * @n: String length in bytes
197 * @buf: Destination buffer
198 * @buflen: Destination buffer length in bytes
199 * @ret: 0 on success, -errno on failure
200 *
201 * The string is NUL-terminated.
202 */
cf2ab8fc 203static int qed_read_string(BdrvChild *file, uint64_t offset, size_t n,
75411d23
SH
204 char *buf, size_t buflen)
205{
206 int ret;
207 if (n >= buflen) {
208 return -EINVAL;
209 }
32cc71de 210 ret = bdrv_pread(file, offset, n, buf, 0);
75411d23
SH
211 if (ret < 0) {
212 return ret;
213 }
214 buf[n] = '\0';
215 return 0;
216}
217
eabba580
SH
218/**
219 * Allocate new clusters
220 *
221 * @s: QED state
222 * @n: Number of contiguous clusters to allocate
223 * @ret: Offset of first allocated cluster
224 *
225 * This function only produces the offset where the new clusters should be
226 * written. It updates BDRVQEDState but does not make any changes to the image
227 * file.
1f01e50b
PB
228 *
229 * Called with table_lock held.
eabba580
SH
230 */
231static uint64_t qed_alloc_clusters(BDRVQEDState *s, unsigned int n)
232{
233 uint64_t offset = s->file_size;
234 s->file_size += n * s->header.cluster_size;
235 return offset;
236}
237
298800ca
SH
238QEDTable *qed_alloc_table(BDRVQEDState *s)
239{
240 /* Honor O_DIRECT memory alignment requirements */
241 return qemu_blockalign(s->bs,
242 s->header.cluster_size * s->header.table_size);
243}
244
eabba580
SH
245/**
246 * Allocate a new zeroed L2 table
1f01e50b
PB
247 *
248 * Called with table_lock held.
eabba580
SH
249 */
250static CachedL2Table *qed_new_l2_table(BDRVQEDState *s)
251{
252 CachedL2Table *l2_table = qed_alloc_l2_cache_entry(&s->l2_cache);
253
254 l2_table->table = qed_alloc_table(s);
255 l2_table->offset = qed_alloc_clusters(s, s->header.table_size);
256
257 memset(l2_table->table->offsets, 0,
258 s->header.cluster_size * s->header.table_size);
259 return l2_table;
260}
261
1f01e50b 262static bool qed_plug_allocating_write_reqs(BDRVQEDState *s)
6f321e93 263{
1f01e50b
PB
264 qemu_co_mutex_lock(&s->table_lock);
265
266 /* No reentrancy is allowed. */
6f321e93 267 assert(!s->allocating_write_reqs_plugged);
1f01e50b
PB
268 if (s->allocating_acb != NULL) {
269 /* Another allocating write came concurrently. This cannot happen
f8ea8dac 270 * from bdrv_qed_co_drain_begin, but it can happen when the timer runs.
1f01e50b
PB
271 */
272 qemu_co_mutex_unlock(&s->table_lock);
273 return false;
274 }
6f321e93
SH
275
276 s->allocating_write_reqs_plugged = true;
1f01e50b
PB
277 qemu_co_mutex_unlock(&s->table_lock);
278 return true;
6f321e93
SH
279}
280
281static void qed_unplug_allocating_write_reqs(BDRVQEDState *s)
282{
1f01e50b 283 qemu_co_mutex_lock(&s->table_lock);
6f321e93 284 assert(s->allocating_write_reqs_plugged);
6f321e93 285 s->allocating_write_reqs_plugged = false;
1f01e50b
PB
286 qemu_co_queue_next(&s->allocating_write_reqs);
287 qemu_co_mutex_unlock(&s->table_lock);
6f321e93
SH
288}
289
87f0d882 290static void coroutine_fn qed_need_check_timer_entry(void *opaque)
6f321e93
SH
291{
292 BDRVQEDState *s = opaque;
c0e8f989
KW
293 int ret;
294
c0e8f989 295 trace_qed_need_check_timer_cb(s);
6f321e93 296
1f01e50b
PB
297 if (!qed_plug_allocating_write_reqs(s)) {
298 return;
299 }
c0e8f989
KW
300
301 /* Ensure writes are on disk before clearing flag */
302 ret = bdrv_co_flush(s->bs->file->bs);
c0e8f989 303 if (ret < 0) {
6f321e93
SH
304 qed_unplug_allocating_write_reqs(s);
305 return;
306 }
307
308 s->header.features &= ~QED_F_NEED_CHECK;
f13d712b
KW
309 ret = qed_write_header(s);
310 (void) ret;
311
312 qed_unplug_allocating_write_reqs(s);
313
c0e8f989 314 ret = bdrv_co_flush(s->bs);
f13d712b 315 (void) ret;
6f321e93
SH
316}
317
318static void qed_need_check_timer_cb(void *opaque)
319{
c0e8f989
KW
320 Coroutine *co = qemu_coroutine_create(qed_need_check_timer_entry, opaque);
321 qemu_coroutine_enter(co);
2f47da5f
PB
322}
323
6f321e93
SH
324static void qed_start_need_check_timer(BDRVQEDState *s)
325{
326 trace_qed_start_need_check_timer(s);
327
bc72ad67 328 /* Use QEMU_CLOCK_VIRTUAL so we don't alter the image file while suspended for
6f321e93
SH
329 * migration.
330 */
bc72ad67 331 timer_mod(s->need_check_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
73bcb24d 332 NANOSECONDS_PER_SECOND * QED_NEED_CHECK_TIMEOUT);
6f321e93
SH
333}
334
335/* It's okay to call this multiple times or when no timer is started */
336static void qed_cancel_need_check_timer(BDRVQEDState *s)
337{
338 trace_qed_cancel_need_check_timer(s);
bc72ad67 339 timer_del(s->need_check_timer);
6f321e93
SH
340}
341
a8c868c3
SH
342static void bdrv_qed_detach_aio_context(BlockDriverState *bs)
343{
344 BDRVQEDState *s = bs->opaque;
345
346 qed_cancel_need_check_timer(s);
347 timer_free(s->need_check_timer);
348}
349
350static void bdrv_qed_attach_aio_context(BlockDriverState *bs,
351 AioContext *new_context)
352{
353 BDRVQEDState *s = bs->opaque;
354
355 s->need_check_timer = aio_timer_new(new_context,
356 QEMU_CLOCK_VIRTUAL, SCALE_NS,
357 qed_need_check_timer_cb, s);
358 if (s->header.features & QED_F_NEED_CHECK) {
359 qed_start_need_check_timer(s);
360 }
361}
362
f8ea8dac 363static void coroutine_fn bdrv_qed_co_drain_begin(BlockDriverState *bs)
6653a73d
FZ
364{
365 BDRVQEDState *s = bs->opaque;
366
367 /* Fire the timer immediately in order to start doing I/O as soon as the
368 * header is flushed.
369 */
370 if (s->need_check_timer && timer_pending(s->need_check_timer)) {
371 qed_cancel_need_check_timer(s);
61124f03 372 qed_need_check_timer_entry(s);
6653a73d
FZ
373 }
374}
375
61c7887e
PB
376static void bdrv_qed_init_state(BlockDriverState *bs)
377{
378 BDRVQEDState *s = bs->opaque;
379
380 memset(s, 0, sizeof(BDRVQEDState));
381 s->bs = bs;
1f01e50b 382 qemu_co_mutex_init(&s->table_lock);
61c7887e
PB
383 qemu_co_queue_init(&s->allocating_write_reqs);
384}
385
9fb4dfc5
PB
386/* Called with table_lock held. */
387static int coroutine_fn bdrv_qed_do_open(BlockDriverState *bs, QDict *options,
388 int flags, Error **errp)
75411d23
SH
389{
390 BDRVQEDState *s = bs->opaque;
391 QEDHeader le_header;
392 int64_t file_size;
393 int ret;
394
32cc71de 395 ret = bdrv_pread(bs->file, 0, sizeof(le_header), &le_header, 0);
75411d23 396 if (ret < 0) {
15ce94a6 397 error_setg(errp, "Failed to read QED header");
75411d23
SH
398 return ret;
399 }
75411d23
SH
400 qed_header_le_to_cpu(&le_header, &s->header);
401
402 if (s->header.magic != QED_MAGIC) {
76abe407
PB
403 error_setg(errp, "Image not in QED format");
404 return -EINVAL;
75411d23
SH
405 }
406 if (s->header.features & ~QED_FEATURE_MASK) {
10b758e8 407 /* image uses unsupported feature bits */
a55448b3
HR
408 error_setg(errp, "Unsupported QED features: %" PRIx64,
409 s->header.features & ~QED_FEATURE_MASK);
10b758e8 410 return -ENOTSUP;
75411d23
SH
411 }
412 if (!qed_is_cluster_size_valid(s->header.cluster_size)) {
15ce94a6 413 error_setg(errp, "QED cluster size is invalid");
75411d23
SH
414 return -EINVAL;
415 }
416
417 /* Round down file size to the last cluster */
9a4f4c31 418 file_size = bdrv_getlength(bs->file->bs);
75411d23 419 if (file_size < 0) {
15ce94a6 420 error_setg(errp, "Failed to get file length");
75411d23
SH
421 return file_size;
422 }
423 s->file_size = qed_start_of_cluster(s, file_size);
424
425 if (!qed_is_table_size_valid(s->header.table_size)) {
15ce94a6 426 error_setg(errp, "QED table size is invalid");
75411d23
SH
427 return -EINVAL;
428 }
429 if (!qed_is_image_size_valid(s->header.image_size,
430 s->header.cluster_size,
431 s->header.table_size)) {
15ce94a6 432 error_setg(errp, "QED image size is invalid");
75411d23
SH
433 return -EINVAL;
434 }
435 if (!qed_check_table_offset(s, s->header.l1_table_offset)) {
15ce94a6 436 error_setg(errp, "QED table offset is invalid");
75411d23
SH
437 return -EINVAL;
438 }
439
440 s->table_nelems = (s->header.cluster_size * s->header.table_size) /
441 sizeof(uint64_t);
786a4ea8 442 s->l2_shift = ctz32(s->header.cluster_size);
75411d23 443 s->l2_mask = s->table_nelems - 1;
786a4ea8 444 s->l1_shift = s->l2_shift + ctz32(s->table_nelems);
75411d23 445
0adfa1ed
SH
446 /* Header size calculation must not overflow uint32_t */
447 if (s->header.header_size > UINT32_MAX / s->header.cluster_size) {
15ce94a6 448 error_setg(errp, "QED header size is too large");
0adfa1ed
SH
449 return -EINVAL;
450 }
451
75411d23
SH
452 if ((s->header.features & QED_F_BACKING_FILE)) {
453 if ((uint64_t)s->header.backing_filename_offset +
454 s->header.backing_filename_size >
455 s->header.cluster_size * s->header.header_size) {
15ce94a6 456 error_setg(errp, "QED backing filename offset is invalid");
75411d23
SH
457 return -EINVAL;
458 }
459
cf2ab8fc 460 ret = qed_read_string(bs->file, s->header.backing_filename_offset,
998c2019
HR
461 s->header.backing_filename_size,
462 bs->auto_backing_file,
463 sizeof(bs->auto_backing_file));
75411d23 464 if (ret < 0) {
15ce94a6 465 error_setg(errp, "Failed to read backing filename");
75411d23
SH
466 return ret;
467 }
998c2019
HR
468 pstrcpy(bs->backing_file, sizeof(bs->backing_file),
469 bs->auto_backing_file);
75411d23
SH
470
471 if (s->header.features & QED_F_BACKING_FORMAT_NO_PROBE) {
472 pstrcpy(bs->backing_format, sizeof(bs->backing_format), "raw");
473 }
474 }
475
476 /* Reset unknown autoclear feature bits. This is a backwards
477 * compatibility mechanism that allows images to be opened by older
478 * programs, which "knock out" unknown feature bits. When an image is
479 * opened by a newer program again it can detect that the autoclear
480 * feature is no longer valid.
481 */
482 if ((s->header.autoclear_features & ~QED_AUTOCLEAR_FEATURE_MASK) != 0 &&
04c01a5c 483 !bdrv_is_read_only(bs->file->bs) && !(flags & BDRV_O_INACTIVE)) {
75411d23
SH
484 s->header.autoclear_features &= QED_AUTOCLEAR_FEATURE_MASK;
485
486 ret = qed_write_header_sync(s);
487 if (ret) {
15ce94a6 488 error_setg(errp, "Failed to update header");
75411d23
SH
489 return ret;
490 }
491
492 /* From here on only known autoclear feature bits are valid */
9a4f4c31 493 bdrv_flush(bs->file->bs);
75411d23
SH
494 }
495
298800ca
SH
496 s->l1_table = qed_alloc_table(s);
497 qed_init_l2_cache(&s->l2_cache);
498
499 ret = qed_read_l1_table_sync(s);
01979a98 500 if (ret) {
15ce94a6 501 error_setg(errp, "Failed to read L1 table");
01979a98
SH
502 goto out;
503 }
504
505 /* If image was not closed cleanly, check consistency */
058f8f16 506 if (!(flags & BDRV_O_CHECK) && (s->header.features & QED_F_NEED_CHECK)) {
01979a98
SH
507 /* Read-only images cannot be fixed. There is no risk of corruption
508 * since write operations are not possible. Therefore, allow
509 * potentially inconsistent images to be opened read-only. This can
510 * aid data recovery from an otherwise inconsistent image.
511 */
9a4f4c31 512 if (!bdrv_is_read_only(bs->file->bs) &&
04c01a5c 513 !(flags & BDRV_O_INACTIVE)) {
01979a98
SH
514 BdrvCheckResult result = {0};
515
516 ret = qed_check(s, &result, true);
6f321e93 517 if (ret) {
15ce94a6 518 error_setg(errp, "Image corrupted");
6f321e93
SH
519 goto out;
520 }
01979a98
SH
521 }
522 }
523
a8c868c3 524 bdrv_qed_attach_aio_context(bs, bdrv_get_aio_context(bs));
6f321e93 525
01979a98 526out:
298800ca
SH
527 if (ret) {
528 qed_free_l2_cache(&s->l2_cache);
529 qemu_vfree(s->l1_table);
530 }
75411d23
SH
531 return ret;
532}
533
9fb4dfc5
PB
534typedef struct QEDOpenCo {
535 BlockDriverState *bs;
536 QDict *options;
537 int flags;
538 Error **errp;
539 int ret;
540} QEDOpenCo;
541
542static void coroutine_fn bdrv_qed_open_entry(void *opaque)
543{
544 QEDOpenCo *qoc = opaque;
545 BDRVQEDState *s = qoc->bs->opaque;
546
547 qemu_co_mutex_lock(&s->table_lock);
548 qoc->ret = bdrv_qed_do_open(qoc->bs, qoc->options, qoc->flags, qoc->errp);
549 qemu_co_mutex_unlock(&s->table_lock);
550}
551
4e4bf5c4
KW
552static int bdrv_qed_open(BlockDriverState *bs, QDict *options, int flags,
553 Error **errp)
554{
9fb4dfc5
PB
555 QEDOpenCo qoc = {
556 .bs = bs,
557 .options = options,
558 .flags = flags,
559 .errp = errp,
560 .ret = -EINPROGRESS
561 };
562
8b1869da
HR
563 bs->file = bdrv_open_child(NULL, options, "file", bs, &child_of_bds,
564 BDRV_CHILD_IMAGE, false, errp);
4e4bf5c4
KW
565 if (!bs->file) {
566 return -EINVAL;
567 }
568
61c7887e 569 bdrv_qed_init_state(bs);
9fb4dfc5
PB
570 if (qemu_in_coroutine()) {
571 bdrv_qed_open_entry(&qoc);
572 } else {
4720cbee 573 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
9fb4dfc5
PB
574 qemu_coroutine_enter(qemu_coroutine_create(bdrv_qed_open_entry, &qoc));
575 BDRV_POLL_WHILE(bs, qoc.ret == -EINPROGRESS);
576 }
577 BDRV_POLL_WHILE(bs, qoc.ret == -EINPROGRESS);
578 return qoc.ret;
4e4bf5c4
KW
579}
580
3baca891 581static void bdrv_qed_refresh_limits(BlockDriverState *bs, Error **errp)
d34682cd
KW
582{
583 BDRVQEDState *s = bs->opaque;
584
cf081fca 585 bs->bl.pwrite_zeroes_alignment = s->header.cluster_size;
f34b2bcf 586 bs->bl.max_pwrite_zeroes = QEMU_ALIGN_DOWN(INT_MAX, s->header.cluster_size);
d34682cd
KW
587}
588
f9cb20f1
JC
589/* We have nothing to do for QED reopen, stubs just return
590 * success */
591static int bdrv_qed_reopen_prepare(BDRVReopenState *state,
592 BlockReopenQueue *queue, Error **errp)
593{
594 return 0;
595}
596
75411d23
SH
597static void bdrv_qed_close(BlockDriverState *bs)
598{
298800ca
SH
599 BDRVQEDState *s = bs->opaque;
600
a8c868c3 601 bdrv_qed_detach_aio_context(bs);
6f321e93 602
01979a98 603 /* Ensure writes reach stable storage */
9a4f4c31 604 bdrv_flush(bs->file->bs);
01979a98
SH
605
606 /* Clean shutdown, no check required on next open */
607 if (s->header.features & QED_F_NEED_CHECK) {
608 s->header.features &= ~QED_F_NEED_CHECK;
609 qed_write_header_sync(s);
610 }
611
298800ca
SH
612 qed_free_l2_cache(&s->l2_cache);
613 qemu_vfree(s->l1_table);
75411d23
SH
614}
615
959355a4
KW
616static int coroutine_fn bdrv_qed_co_create(BlockdevCreateOptions *opts,
617 Error **errp)
75411d23 618{
959355a4
KW
619 BlockdevCreateOptionsQed *qed_opts;
620 BlockBackend *blk = NULL;
621 BlockDriverState *bs = NULL;
622
623 QEDHeader header;
75411d23
SH
624 QEDHeader le_header;
625 uint8_t *l1_table = NULL;
959355a4 626 size_t l1_size;
75411d23 627 int ret = 0;
75411d23 628
959355a4
KW
629 assert(opts->driver == BLOCKDEV_DRIVER_QED);
630 qed_opts = &opts->u.qed;
631
632 /* Validate options and set default values */
633 if (!qed_opts->has_cluster_size) {
634 qed_opts->cluster_size = QED_DEFAULT_CLUSTER_SIZE;
635 }
636 if (!qed_opts->has_table_size) {
637 qed_opts->table_size = QED_DEFAULT_TABLE_SIZE;
75411d23
SH
638 }
639
959355a4
KW
640 if (!qed_is_cluster_size_valid(qed_opts->cluster_size)) {
641 error_setg(errp, "QED cluster size must be within range [%u, %u] "
642 "and power of 2",
643 QED_MIN_CLUSTER_SIZE, QED_MAX_CLUSTER_SIZE);
644 return -EINVAL;
645 }
646 if (!qed_is_table_size_valid(qed_opts->table_size)) {
647 error_setg(errp, "QED table size must be within range [%u, %u] "
648 "and power of 2",
649 QED_MIN_TABLE_SIZE, QED_MAX_TABLE_SIZE);
650 return -EINVAL;
651 }
652 if (!qed_is_image_size_valid(qed_opts->size, qed_opts->cluster_size,
653 qed_opts->table_size))
654 {
655 error_setg(errp, "QED image size must be a non-zero multiple of "
656 "cluster size and less than %" PRIu64 " bytes",
657 qed_max_image_size(qed_opts->cluster_size,
658 qed_opts->table_size));
659 return -EINVAL;
660 }
661
662 /* Create BlockBackend to write to the image */
663 bs = bdrv_open_blockdev_ref(qed_opts->file, errp);
664 if (bs == NULL) {
8a56fdad 665 return -EIO;
75411d23
SH
666 }
667
a3aeeab5
EB
668 blk = blk_new_with_bs(bs, BLK_PERM_WRITE | BLK_PERM_RESIZE, BLK_PERM_ALL,
669 errp);
670 if (!blk) {
671 ret = -EPERM;
959355a4
KW
672 goto out;
673 }
8a56fdad
KW
674 blk_set_allow_write_beyond_eof(blk, true);
675
959355a4
KW
676 /* Prepare image format */
677 header = (QEDHeader) {
678 .magic = QED_MAGIC,
679 .cluster_size = qed_opts->cluster_size,
680 .table_size = qed_opts->table_size,
681 .header_size = 1,
682 .features = 0,
683 .compat_features = 0,
684 .l1_table_offset = qed_opts->cluster_size,
685 .image_size = qed_opts->size,
686 };
687
688 l1_size = header.cluster_size * header.table_size;
689
e8d04f92
HR
690 /*
691 * The QED format associates file length with allocation status,
692 * so a new file (which is empty) must have a length of 0.
693 */
8c6242b6 694 ret = blk_truncate(blk, 0, true, PREALLOC_MODE_OFF, 0, errp);
c743849b
SH
695 if (ret < 0) {
696 goto out;
697 }
698
959355a4 699 if (qed_opts->has_backing_file) {
75411d23
SH
700 header.features |= QED_F_BACKING_FILE;
701 header.backing_filename_offset = sizeof(le_header);
959355a4 702 header.backing_filename_size = strlen(qed_opts->backing_file);
75411d23 703
959355a4
KW
704 if (qed_opts->has_backing_fmt) {
705 const char *backing_fmt = BlockdevDriver_str(qed_opts->backing_fmt);
706 if (qed_fmt_is_raw(backing_fmt)) {
707 header.features |= QED_F_BACKING_FORMAT_NO_PROBE;
708 }
75411d23
SH
709 }
710 }
711
712 qed_header_cpu_to_le(&header, &le_header);
8341f00d 713 ret = blk_pwrite(blk, 0, &le_header, sizeof(le_header), 0);
75411d23
SH
714 if (ret < 0) {
715 goto out;
716 }
959355a4 717 ret = blk_pwrite(blk, sizeof(le_header), qed_opts->backing_file,
8341f00d 718 header.backing_filename_size, 0);
75411d23
SH
719 if (ret < 0) {
720 goto out;
721 }
722
7267c094 723 l1_table = g_malloc0(l1_size);
8341f00d 724 ret = blk_pwrite(blk, header.l1_table_offset, l1_table, l1_size, 0);
75411d23
SH
725 if (ret < 0) {
726 goto out;
727 }
728
729 ret = 0; /* success */
730out:
7267c094 731 g_free(l1_table);
8a56fdad 732 blk_unref(blk);
959355a4 733 bdrv_unref(bs);
75411d23
SH
734 return ret;
735}
736
b92902df
ML
737static int coroutine_fn bdrv_qed_co_create_opts(BlockDriver *drv,
738 const char *filename,
efc75e2a
SH
739 QemuOpts *opts,
740 Error **errp)
75411d23 741{
959355a4 742 BlockdevCreateOptions *create_options = NULL;
92adf9db 743 QDict *qdict;
959355a4
KW
744 Visitor *v;
745 BlockDriverState *bs = NULL;
7ab74849
CL
746 int ret;
747
959355a4
KW
748 static const QDictRenames opt_renames[] = {
749 { BLOCK_OPT_BACKING_FILE, "backing-file" },
750 { BLOCK_OPT_BACKING_FMT, "backing-fmt" },
751 { BLOCK_OPT_CLUSTER_SIZE, "cluster-size" },
752 { BLOCK_OPT_TABLE_SIZE, "table-size" },
753 { NULL, NULL },
754 };
755
756 /* Parse options and convert legacy syntax */
757 qdict = qemu_opts_to_qdict_filtered(opts, NULL, &qed_create_opts, true);
758
759 if (!qdict_rename_keys(qdict, opt_renames, errp)) {
7ab74849 760 ret = -EINVAL;
959355a4 761 goto fail;
75411d23 762 }
959355a4
KW
763
764 /* Create and open the file (protocol layer) */
668f62ec 765 ret = bdrv_create_file(filename, opts, errp);
959355a4 766 if (ret < 0) {
959355a4
KW
767 goto fail;
768 }
769
770 bs = bdrv_open(filename, NULL, NULL,
771 BDRV_O_RDWR | BDRV_O_RESIZE | BDRV_O_PROTOCOL, errp);
772 if (bs == NULL) {
773 ret = -EIO;
774 goto fail;
775 }
776
777 /* Now get the QAPI type BlockdevCreateOptions */
778 qdict_put_str(qdict, "driver", "qed");
779 qdict_put_str(qdict, "file", bs->node_name);
780
af91062e
MA
781 v = qobject_input_visitor_new_flat_confused(qdict, errp);
782 if (!v) {
7ab74849 783 ret = -EINVAL;
959355a4 784 goto fail;
75411d23 785 }
959355a4 786
b11a093c 787 visit_type_BlockdevCreateOptions(v, NULL, &create_options, errp);
959355a4 788 visit_free(v);
b11a093c 789 if (!create_options) {
7ab74849 790 ret = -EINVAL;
959355a4 791 goto fail;
75411d23
SH
792 }
793
959355a4
KW
794 /* Silently round up size */
795 assert(create_options->driver == BLOCKDEV_DRIVER_QED);
796 create_options->u.qed.size =
797 ROUND_UP(create_options->u.qed.size, BDRV_SECTOR_SIZE);
798
799 /* Create the qed image (format layer) */
800 ret = bdrv_qed_co_create(create_options, errp);
7ab74849 801
959355a4 802fail:
cb3e7f08 803 qobject_unref(qdict);
959355a4
KW
804 bdrv_unref(bs);
805 qapi_free_BlockdevCreateOptions(create_options);
7ab74849 806 return ret;
75411d23
SH
807}
808
b8d739fd
EB
809static int coroutine_fn bdrv_qed_co_block_status(BlockDriverState *bs,
810 bool want_zero,
811 int64_t pos, int64_t bytes,
812 int64_t *pnum, int64_t *map,
813 BlockDriverState **file)
298800ca 814{
b8d739fd
EB
815 BDRVQEDState *s = bs->opaque;
816 size_t len = MIN(bytes, SIZE_MAX);
817 int status;
818 QEDRequest request = { .l2_table = NULL };
819 uint64_t offset;
820 int ret;
821
822 qemu_co_mutex_lock(&s->table_lock);
823 ret = qed_find_cluster(s, &request, pos, &len, &offset);
824
825 *pnum = len;
4bc74be9
PB
826 switch (ret) {
827 case QED_CLUSTER_FOUND:
b8d739fd
EB
828 *map = offset | qed_offset_into_cluster(s, pos);
829 status = BDRV_BLOCK_DATA | BDRV_BLOCK_OFFSET_VALID;
830 *file = bs->file->bs;
4bc74be9
PB
831 break;
832 case QED_CLUSTER_ZERO:
b8d739fd 833 status = BDRV_BLOCK_ZERO;
4bc74be9
PB
834 break;
835 case QED_CLUSTER_L2:
836 case QED_CLUSTER_L1:
b8d739fd 837 status = 0;
4bc74be9
PB
838 break;
839 default:
840 assert(ret < 0);
b8d739fd 841 status = ret;
4bc74be9
PB
842 break;
843 }
844
298800ca 845 qed_unref_l2_cache_entry(request.l2_table);
1f01e50b 846 qemu_co_mutex_unlock(&s->table_lock);
298800ca 847
b8d739fd 848 return status;
75411d23
SH
849}
850
eabba580
SH
851static BDRVQEDState *acb_to_s(QEDAIOCB *acb)
852{
48cc565e 853 return acb->bs->opaque;
eabba580
SH
854}
855
856/**
857 * Read from the backing file or zero-fill if no backing file
858 *
f06ee3d4
KW
859 * @s: QED state
860 * @pos: Byte position in device
861 * @qiov: Destination I/O vector
eabba580
SH
862 *
863 * This function reads qiov->size bytes starting at pos from the backing file.
864 * If there is no backing file then zeroes are read.
865 */
87f0d882 866static int coroutine_fn qed_read_backing_file(BDRVQEDState *s, uint64_t pos,
365fed51 867 QEMUIOVector *qiov)
eabba580 868{
760e0063 869 if (s->bs->backing) {
365fed51
EB
870 BLKDBG_EVENT(s->bs->file, BLKDBG_READ_BACKING_AIO);
871 return bdrv_co_preadv(s->bs->backing, pos, qiov->size, qiov, 0);
e85c5281 872 }
365fed51 873 qemu_iovec_memset(qiov, 0, 0, qiov->size);
e85c5281 874 return 0;
eabba580
SH
875}
876
eabba580
SH
877/**
878 * Copy data from backing file into the image
879 *
880 * @s: QED state
881 * @pos: Byte position in device
882 * @len: Number of bytes
883 * @offset: Byte offset in image file
eabba580 884 */
87f0d882
KW
885static int coroutine_fn qed_copy_from_backing_file(BDRVQEDState *s,
886 uint64_t pos, uint64_t len,
887 uint64_t offset)
eabba580 888{
0f7aa24d 889 QEMUIOVector qiov;
e85c5281 890 int ret;
eabba580
SH
891
892 /* Skip copy entirely if there is no work to do */
893 if (len == 0) {
b4ac32f3 894 return 0;
eabba580
SH
895 }
896
342544f9 897 qemu_iovec_init_buf(&qiov, qemu_blockalign(s->bs, len), len);
0f7aa24d 898
365fed51 899 ret = qed_read_backing_file(s, pos, &qiov);
0f7aa24d
KW
900
901 if (ret) {
902 goto out;
903 }
eabba580 904
0f7aa24d 905 BLKDBG_EVENT(s->bs->file, BLKDBG_COW_WRITE);
0f714ec7 906 ret = bdrv_co_pwritev(s->bs->file, offset, qiov.size, &qiov, 0);
0f7aa24d
KW
907 if (ret < 0) {
908 goto out;
909 }
910 ret = 0;
911out:
342544f9 912 qemu_vfree(qemu_iovec_buf(&qiov));
b4ac32f3 913 return ret;
eabba580
SH
914}
915
916/**
917 * Link one or more contiguous clusters into a table
918 *
919 * @s: QED state
920 * @table: L2 table
921 * @index: First cluster index
922 * @n: Number of contiguous clusters
21df65b6
AL
923 * @cluster: First cluster offset
924 *
925 * The cluster offset may be an allocated byte offset in the image file, the
926 * zero cluster marker, or the unallocated cluster marker.
1f01e50b
PB
927 *
928 * Called with table_lock held.
eabba580 929 */
87f0d882
KW
930static void coroutine_fn qed_update_l2_table(BDRVQEDState *s, QEDTable *table,
931 int index, unsigned int n,
932 uint64_t cluster)
eabba580
SH
933{
934 int i;
935 for (i = index; i < index + n; i++) {
936 table->offsets[i] = cluster;
21df65b6
AL
937 if (!qed_offset_is_unalloc_cluster(cluster) &&
938 !qed_offset_is_zero_cluster(cluster)) {
939 cluster += s->header.cluster_size;
940 }
eabba580
SH
941 }
942}
943
1f01e50b 944/* Called with table_lock held. */
87f0d882 945static void coroutine_fn qed_aio_complete(QEDAIOCB *acb)
eabba580 946{
1919631e 947 BDRVQEDState *s = acb_to_s(acb);
eabba580
SH
948
949 /* Free resources */
950 qemu_iovec_destroy(&acb->cur_qiov);
951 qed_unref_l2_cache_entry(acb->request.l2_table);
952
0e71be19
SH
953 /* Free the buffer we may have allocated for zero writes */
954 if (acb->flags & QED_AIOCB_ZERO) {
955 qemu_vfree(acb->qiov->iov[0].iov_base);
956 acb->qiov->iov[0].iov_base = NULL;
957 }
958
eabba580
SH
959 /* Start next allocating write request waiting behind this one. Note that
960 * requests enqueue themselves when they first hit an unallocated cluster
961 * but they wait until the entire request is finished before waking up the
962 * next request in the queue. This ensures that we don't cycle through
963 * requests multiple times but rather finish one at a time completely.
964 */
0806c3b5
KW
965 if (acb == s->allocating_acb) {
966 s->allocating_acb = NULL;
967 if (!qemu_co_queue_empty(&s->allocating_write_reqs)) {
1f01e50b 968 qemu_co_queue_next(&s->allocating_write_reqs);
6f321e93
SH
969 } else if (s->header.features & QED_F_NEED_CHECK) {
970 qed_start_need_check_timer(s);
eabba580
SH
971 }
972 }
973}
974
975/**
fae25ac7 976 * Update L1 table with new L2 table offset and write it out
1f01e50b
PB
977 *
978 * Called with table_lock held.
eabba580 979 */
87f0d882 980static int coroutine_fn qed_aio_write_l1_update(QEDAIOCB *acb)
eabba580 981{
eabba580
SH
982 BDRVQEDState *s = acb_to_s(acb);
983 CachedL2Table *l2_table = acb->request.l2_table;
e4fc8781 984 uint64_t l2_offset = l2_table->offset;
fb18de21 985 int index, ret;
eabba580 986
fae25ac7
KW
987 index = qed_l1_index(s, acb->cur_pos);
988 s->l1_table->offsets[index] = l2_table->offset;
989
990 ret = qed_write_l1_table(s, index, 1);
991
992 /* Commit the current L2 table to the cache */
eabba580
SH
993 qed_commit_l2_cache_entry(&s->l2_cache, l2_table);
994
995 /* This is guaranteed to succeed because we just committed the entry to the
996 * cache.
997 */
e4fc8781 998 acb->request.l2_table = qed_find_l2_cache_entry(&s->l2_cache, l2_offset);
eabba580
SH
999 assert(acb->request.l2_table != NULL);
1000
fb18de21 1001 return ret;
eabba580
SH
1002}
1003
eabba580
SH
1004
1005/**
1006 * Update L2 table with new cluster offsets and write them out
1f01e50b
PB
1007 *
1008 * Called with table_lock held.
eabba580 1009 */
87f0d882 1010static int coroutine_fn qed_aio_write_l2_update(QEDAIOCB *acb, uint64_t offset)
eabba580 1011{
eabba580
SH
1012 BDRVQEDState *s = acb_to_s(acb);
1013 bool need_alloc = acb->find_cluster_ret == QED_CLUSTER_L1;
88d2dd72 1014 int index, ret;
eabba580
SH
1015
1016 if (need_alloc) {
1017 qed_unref_l2_cache_entry(acb->request.l2_table);
1018 acb->request.l2_table = qed_new_l2_table(s);
1019 }
1020
1021 index = qed_l2_index(s, acb->cur_pos);
1022 qed_update_l2_table(s, acb->request.l2_table->table, index, acb->cur_nclusters,
0e71be19 1023 offset);
eabba580
SH
1024
1025 if (need_alloc) {
1026 /* Write out the whole new L2 table */
453e53e2 1027 ret = qed_write_l2_table(s, &acb->request, 0, s->table_nelems, true);
fb18de21 1028 if (ret) {
88d2dd72 1029 return ret;
fb18de21 1030 }
88d2dd72 1031 return qed_aio_write_l1_update(acb);
eabba580
SH
1032 } else {
1033 /* Write out only the updated part of the L2 table */
453e53e2
KW
1034 ret = qed_write_l2_table(s, &acb->request, index, acb->cur_nclusters,
1035 false);
88d2dd72
KW
1036 if (ret) {
1037 return ret;
1038 }
eabba580 1039 }
88d2dd72 1040 return 0;
eabba580
SH
1041}
1042
eabba580
SH
1043/**
1044 * Write data to the image file
1f01e50b
PB
1045 *
1046 * Called with table_lock *not* held.
eabba580 1047 */
87f0d882 1048static int coroutine_fn qed_aio_write_main(QEDAIOCB *acb)
eabba580 1049{
eabba580
SH
1050 BDRVQEDState *s = acb_to_s(acb);
1051 uint64_t offset = acb->cur_cluster +
1052 qed_offset_into_cluster(s, acb->cur_pos);
eabba580 1053
eaf0bc56 1054 trace_qed_aio_write_main(s, acb, 0, offset, acb->cur_qiov.size);
eabba580 1055
a4d8f1ae 1056 BLKDBG_EVENT(s->bs->file, BLKDBG_WRITE_AIO);
e7569c18
PB
1057 return bdrv_co_pwritev(s->bs->file, offset, acb->cur_qiov.size,
1058 &acb->cur_qiov, 0);
eabba580
SH
1059}
1060
1061/**
b4ac32f3 1062 * Populate untouched regions of new data cluster
1f01e50b
PB
1063 *
1064 * Called with table_lock held.
eabba580 1065 */
87f0d882 1066static int coroutine_fn qed_aio_write_cow(QEDAIOCB *acb)
eabba580 1067{
eabba580 1068 BDRVQEDState *s = acb_to_s(acb);
b4ac32f3 1069 uint64_t start, len, offset;
a101341a 1070 int ret;
eabba580 1071
1f01e50b
PB
1072 qemu_co_mutex_unlock(&s->table_lock);
1073
b4ac32f3
KW
1074 /* Populate front untouched region of new data cluster */
1075 start = qed_start_of_cluster(s, acb->cur_pos);
1076 len = qed_offset_into_cluster(s, acb->cur_pos);
1077
1078 trace_qed_aio_write_prefill(s, acb, start, len, acb->cur_cluster);
1079 ret = qed_copy_from_backing_file(s, start, len, acb->cur_cluster);
a101341a 1080 if (ret < 0) {
1f01e50b 1081 goto out;
eabba580
SH
1082 }
1083
b4ac32f3
KW
1084 /* Populate back untouched region of new data cluster */
1085 start = acb->cur_pos + acb->cur_qiov.size;
1086 len = qed_start_of_cluster(s, start + s->header.cluster_size - 1) - start;
1087 offset = acb->cur_cluster +
1088 qed_offset_into_cluster(s, acb->cur_pos) +
1089 acb->cur_qiov.size;
eabba580 1090
b4ac32f3
KW
1091 trace_qed_aio_write_postfill(s, acb, start, len, offset);
1092 ret = qed_copy_from_backing_file(s, start, len, offset);
eaf0bc56 1093 if (ret < 0) {
1f01e50b 1094 goto out;
eaf0bc56 1095 }
a101341a 1096
e7569c18
PB
1097 ret = qed_aio_write_main(acb);
1098 if (ret < 0) {
1f01e50b 1099 goto out;
e7569c18
PB
1100 }
1101
1102 if (s->bs->backing) {
1103 /*
1104 * Flush new data clusters before updating the L2 table
1105 *
1106 * This flush is necessary when a backing file is in use. A crash
1107 * during an allocating write could result in empty clusters in the
1108 * image. If the write only touched a subregion of the cluster,
1109 * then backing image sectors have been lost in the untouched
1110 * region. The solution is to flush after writing a new data
1111 * cluster and before updating the L2 table.
1112 */
1113 ret = bdrv_co_flush(s->bs->file->bs);
e7569c18
PB
1114 }
1115
1f01e50b
PB
1116out:
1117 qemu_co_mutex_lock(&s->table_lock);
1118 return ret;
eabba580
SH
1119}
1120
0d09c797
SH
1121/**
1122 * Check if the QED_F_NEED_CHECK bit should be set during allocating write
1123 */
1124static bool qed_should_set_need_check(BDRVQEDState *s)
1125{
1126 /* The flush before L2 update path ensures consistency */
760e0063 1127 if (s->bs->backing) {
0d09c797
SH
1128 return false;
1129 }
1130
1131 return !(s->header.features & QED_F_NEED_CHECK);
1132}
1133
eabba580
SH
1134/**
1135 * Write new data cluster
1136 *
1137 * @acb: Write request
1138 * @len: Length in bytes
1139 *
1140 * This path is taken when writing to previously unallocated clusters.
1f01e50b
PB
1141 *
1142 * Called with table_lock held.
eabba580 1143 */
87f0d882 1144static int coroutine_fn qed_aio_write_alloc(QEDAIOCB *acb, size_t len)
eabba580
SH
1145{
1146 BDRVQEDState *s = acb_to_s(acb);
f13d712b 1147 int ret;
eabba580 1148
6f321e93 1149 /* Cancel timer when the first allocating request comes in */
0806c3b5 1150 if (s->allocating_acb == NULL) {
6f321e93
SH
1151 qed_cancel_need_check_timer(s);
1152 }
1153
eabba580 1154 /* Freeze this request if another allocating write is in progress */
0806c3b5
KW
1155 if (s->allocating_acb != acb || s->allocating_write_reqs_plugged) {
1156 if (s->allocating_acb != NULL) {
1f01e50b 1157 qemu_co_queue_wait(&s->allocating_write_reqs, &s->table_lock);
0806c3b5
KW
1158 assert(s->allocating_acb == NULL);
1159 }
1160 s->allocating_acb = acb;
1161 return -EAGAIN; /* start over with looking up table entries */
eabba580
SH
1162 }
1163
1164 acb->cur_nclusters = qed_bytes_to_clusters(s,
1165 qed_offset_into_cluster(s, acb->cur_pos) + len);
1b093c48 1166 qemu_iovec_concat(&acb->cur_qiov, acb->qiov, acb->qiov_offset, len);
eabba580 1167
0e71be19
SH
1168 if (acb->flags & QED_AIOCB_ZERO) {
1169 /* Skip ahead if the clusters are already zero */
1170 if (acb->find_cluster_ret == QED_CLUSTER_ZERO) {
d6daddcd 1171 return 0;
0e71be19 1172 }
e7569c18 1173 acb->cur_cluster = 1;
0e71be19 1174 } else {
0e71be19
SH
1175 acb->cur_cluster = qed_alloc_clusters(s, acb->cur_nclusters);
1176 }
1177
0d09c797
SH
1178 if (qed_should_set_need_check(s)) {
1179 s->header.features |= QED_F_NEED_CHECK;
f13d712b 1180 ret = qed_write_header(s);
a101341a 1181 if (ret < 0) {
d6daddcd 1182 return ret;
a101341a
KW
1183 }
1184 }
1185
e7569c18 1186 if (!(acb->flags & QED_AIOCB_ZERO)) {
a101341a 1187 ret = qed_aio_write_cow(acb);
e7569c18
PB
1188 if (ret < 0) {
1189 return ret;
1190 }
01979a98 1191 }
e7569c18
PB
1192
1193 return qed_aio_write_l2_update(acb, acb->cur_cluster);
eabba580
SH
1194}
1195
1196/**
1197 * Write data cluster in place
1198 *
1199 * @acb: Write request
1200 * @offset: Cluster offset in bytes
1201 * @len: Length in bytes
1202 *
1203 * This path is taken when writing to already allocated clusters.
1f01e50b
PB
1204 *
1205 * Called with table_lock held.
eabba580 1206 */
87f0d882
KW
1207static int coroutine_fn qed_aio_write_inplace(QEDAIOCB *acb, uint64_t offset,
1208 size_t len)
eabba580 1209{
1f01e50b
PB
1210 BDRVQEDState *s = acb_to_s(acb);
1211 int r;
1212
1213 qemu_co_mutex_unlock(&s->table_lock);
1214
0e71be19
SH
1215 /* Allocate buffer for zero writes */
1216 if (acb->flags & QED_AIOCB_ZERO) {
1217 struct iovec *iov = acb->qiov->iov;
1218
1219 if (!iov->iov_base) {
48cc565e 1220 iov->iov_base = qemu_try_blockalign(acb->bs, iov->iov_len);
4f4896db 1221 if (iov->iov_base == NULL) {
1f01e50b
PB
1222 r = -ENOMEM;
1223 goto out;
4f4896db 1224 }
0e71be19
SH
1225 memset(iov->iov_base, 0, iov->iov_len);
1226 }
1227 }
1228
eabba580
SH
1229 /* Calculate the I/O vector */
1230 acb->cur_cluster = offset;
1b093c48 1231 qemu_iovec_concat(&acb->cur_qiov, acb->qiov, acb->qiov_offset, len);
eabba580 1232
1f01e50b
PB
1233 /* Do the actual write. */
1234 r = qed_aio_write_main(acb);
1235out:
1236 qemu_co_mutex_lock(&s->table_lock);
1237 return r;
eabba580
SH
1238}
1239
1240/**
1241 * Write data cluster
1242 *
1243 * @opaque: Write request
0596be7e 1244 * @ret: QED_CLUSTER_FOUND, QED_CLUSTER_L2 or QED_CLUSTER_L1
eabba580
SH
1245 * @offset: Cluster offset in bytes
1246 * @len: Length in bytes
1f01e50b
PB
1247 *
1248 * Called with table_lock held.
eabba580 1249 */
87f0d882
KW
1250static int coroutine_fn qed_aio_write_data(void *opaque, int ret,
1251 uint64_t offset, size_t len)
eabba580
SH
1252{
1253 QEDAIOCB *acb = opaque;
1254
1255 trace_qed_aio_write_data(acb_to_s(acb), acb, ret, offset, len);
1256
1257 acb->find_cluster_ret = ret;
1258
1259 switch (ret) {
1260 case QED_CLUSTER_FOUND:
0596be7e 1261 return qed_aio_write_inplace(acb, offset, len);
eabba580
SH
1262
1263 case QED_CLUSTER_L2:
1264 case QED_CLUSTER_L1:
21df65b6 1265 case QED_CLUSTER_ZERO:
0596be7e 1266 return qed_aio_write_alloc(acb, len);
eabba580
SH
1267
1268 default:
0596be7e 1269 g_assert_not_reached();
d6daddcd 1270 }
eabba580
SH
1271}
1272
1273/**
1274 * Read data cluster
1275 *
1276 * @opaque: Read request
0596be7e 1277 * @ret: QED_CLUSTER_FOUND, QED_CLUSTER_L2 or QED_CLUSTER_L1
eabba580
SH
1278 * @offset: Cluster offset in bytes
1279 * @len: Length in bytes
1f01e50b
PB
1280 *
1281 * Called with table_lock held.
eabba580 1282 */
87f0d882
KW
1283static int coroutine_fn qed_aio_read_data(void *opaque, int ret,
1284 uint64_t offset, size_t len)
eabba580
SH
1285{
1286 QEDAIOCB *acb = opaque;
1287 BDRVQEDState *s = acb_to_s(acb);
48cc565e 1288 BlockDriverState *bs = acb->bs;
1f01e50b
PB
1289 int r;
1290
1291 qemu_co_mutex_unlock(&s->table_lock);
eabba580
SH
1292
1293 /* Adjust offset into cluster */
1294 offset += qed_offset_into_cluster(s, acb->cur_pos);
1295
1296 trace_qed_aio_read_data(s, acb, ret, offset, len);
1297
1b093c48 1298 qemu_iovec_concat(&acb->cur_qiov, acb->qiov, acb->qiov_offset, len);
eabba580 1299
1f01e50b
PB
1300 /* Handle zero cluster and backing file reads, otherwise read
1301 * data cluster directly.
1302 */
21df65b6 1303 if (ret == QED_CLUSTER_ZERO) {
3d9b4925 1304 qemu_iovec_memset(&acb->cur_qiov, 0, 0, acb->cur_qiov.size);
1f01e50b 1305 r = 0;
21df65b6 1306 } else if (ret != QED_CLUSTER_FOUND) {
365fed51 1307 r = qed_read_backing_file(s, acb->cur_pos, &acb->cur_qiov);
1f01e50b
PB
1308 } else {
1309 BLKDBG_EVENT(bs->file, BLKDBG_READ_AIO);
1310 r = bdrv_co_preadv(bs->file, offset, acb->cur_qiov.size,
1311 &acb->cur_qiov, 0);
eabba580
SH
1312 }
1313
1f01e50b
PB
1314 qemu_co_mutex_lock(&s->table_lock);
1315 return r;
eabba580
SH
1316}
1317
1318/**
1319 * Begin next I/O or complete the request
1320 */
87f0d882 1321static int coroutine_fn qed_aio_next_io(QEDAIOCB *acb)
eabba580 1322{
eabba580 1323 BDRVQEDState *s = acb_to_s(acb);
0f21b7a1
KW
1324 uint64_t offset;
1325 size_t len;
dddf8db1 1326 int ret;
eabba580 1327
1f01e50b 1328 qemu_co_mutex_lock(&s->table_lock);
01859874
KW
1329 while (1) {
1330 trace_qed_aio_next_io(s, acb, 0, acb->cur_pos + acb->cur_qiov.size);
eabba580 1331
01859874
KW
1332 acb->qiov_offset += acb->cur_qiov.size;
1333 acb->cur_pos += acb->cur_qiov.size;
1334 qemu_iovec_reset(&acb->cur_qiov);
eabba580 1335
01859874
KW
1336 /* Complete request */
1337 if (acb->cur_pos >= acb->end_pos) {
48cc565e
KW
1338 ret = 0;
1339 break;
01859874 1340 }
eabba580 1341
01859874
KW
1342 /* Find next cluster and start I/O */
1343 len = acb->end_pos - acb->cur_pos;
1344 ret = qed_find_cluster(s, &acb->request, acb->cur_pos, &len, &offset);
1345 if (ret < 0) {
48cc565e 1346 break;
01859874 1347 }
0596be7e 1348
01859874
KW
1349 if (acb->flags & QED_AIOCB_WRITE) {
1350 ret = qed_aio_write_data(acb, ret, offset, len);
1351 } else {
1352 ret = qed_aio_read_data(acb, ret, offset, len);
1353 }
0596be7e 1354
0806c3b5 1355 if (ret < 0 && ret != -EAGAIN) {
48cc565e 1356 break;
0596be7e 1357 }
0596be7e 1358 }
eabba580 1359
48cc565e
KW
1360 trace_qed_aio_complete(s, acb, ret);
1361 qed_aio_complete(acb);
1f01e50b 1362 qemu_co_mutex_unlock(&s->table_lock);
48cc565e 1363 return ret;
89f89709
KW
1364}
1365
1366static int coroutine_fn qed_co_request(BlockDriverState *bs, int64_t sector_num,
1367 QEMUIOVector *qiov, int nb_sectors,
1368 int flags)
1369{
48cc565e
KW
1370 QEDAIOCB acb = {
1371 .bs = bs,
1372 .cur_pos = (uint64_t) sector_num * BDRV_SECTOR_SIZE,
1373 .end_pos = (sector_num + nb_sectors) * BDRV_SECTOR_SIZE,
1374 .qiov = qiov,
1375 .flags = flags,
89f89709 1376 };
48cc565e 1377 qemu_iovec_init(&acb.cur_qiov, qiov->niov);
eabba580 1378
48cc565e 1379 trace_qed_aio_setup(bs->opaque, &acb, sector_num, nb_sectors, NULL, flags);
eabba580
SH
1380
1381 /* Start request */
48cc565e 1382 return qed_aio_next_io(&acb);
75411d23
SH
1383}
1384
89f89709
KW
1385static int coroutine_fn bdrv_qed_co_readv(BlockDriverState *bs,
1386 int64_t sector_num, int nb_sectors,
1387 QEMUIOVector *qiov)
75411d23 1388{
89f89709 1389 return qed_co_request(bs, sector_num, qiov, nb_sectors, 0);
75411d23
SH
1390}
1391
89f89709
KW
1392static int coroutine_fn bdrv_qed_co_writev(BlockDriverState *bs,
1393 int64_t sector_num, int nb_sectors,
e18a58b4 1394 QEMUIOVector *qiov, int flags)
0e71be19 1395{
e18a58b4 1396 assert(!flags);
89f89709 1397 return qed_co_request(bs, sector_num, qiov, nb_sectors, QED_AIOCB_WRITE);
0e71be19
SH
1398}
1399
49a2e483
EB
1400static int coroutine_fn bdrv_qed_co_pwrite_zeroes(BlockDriverState *bs,
1401 int64_t offset,
f34b2bcf 1402 int64_t bytes,
49a2e483 1403 BdrvRequestFlags flags)
0e71be19 1404{
ef72f76e 1405 BDRVQEDState *s = bs->opaque;
342544f9
VSO
1406
1407 /*
1408 * Zero writes start without an I/O buffer. If a buffer becomes necessary
1409 * then it will be allocated during request processing.
1410 */
1411 QEMUIOVector qiov = QEMU_IOVEC_INIT_BUF(qiov, NULL, bytes);
0e71be19 1412
f34b2bcf
VSO
1413 /*
1414 * QED is not prepared for 63bit write-zero requests, so rely on
1415 * max_pwrite_zeroes.
1416 */
1417 assert(bytes <= INT_MAX);
1418
49a2e483
EB
1419 /* Fall back if the request is not aligned */
1420 if (qed_offset_into_cluster(s, offset) ||
f5a5ca79 1421 qed_offset_into_cluster(s, bytes)) {
49a2e483 1422 return -ENOTSUP;
ef72f76e
SH
1423 }
1424
89f89709 1425 return qed_co_request(bs, offset >> BDRV_SECTOR_BITS, &qiov,
f5a5ca79 1426 bytes >> BDRV_SECTOR_BITS,
89f89709 1427 QED_AIOCB_WRITE | QED_AIOCB_ZERO);
0e71be19
SH
1428}
1429
061ca8a3
KW
1430static int coroutine_fn bdrv_qed_co_truncate(BlockDriverState *bs,
1431 int64_t offset,
c80d8b06 1432 bool exact,
061ca8a3 1433 PreallocMode prealloc,
92b92799 1434 BdrvRequestFlags flags,
061ca8a3 1435 Error **errp)
75411d23 1436{
77a5a000
SH
1437 BDRVQEDState *s = bs->opaque;
1438 uint64_t old_image_size;
1439 int ret;
1440
8243ccb7
HR
1441 if (prealloc != PREALLOC_MODE_OFF) {
1442 error_setg(errp, "Unsupported preallocation mode '%s'",
977c736f 1443 PreallocMode_str(prealloc));
8243ccb7
HR
1444 return -ENOTSUP;
1445 }
1446
77a5a000
SH
1447 if (!qed_is_image_size_valid(offset, s->header.cluster_size,
1448 s->header.table_size)) {
f59adb32 1449 error_setg(errp, "Invalid image size specified");
77a5a000
SH
1450 return -EINVAL;
1451 }
1452
77a5a000 1453 if ((uint64_t)offset < s->header.image_size) {
f59adb32 1454 error_setg(errp, "Shrinking images is currently not supported");
77a5a000
SH
1455 return -ENOTSUP;
1456 }
1457
1458 old_image_size = s->header.image_size;
1459 s->header.image_size = offset;
1460 ret = qed_write_header_sync(s);
1461 if (ret < 0) {
1462 s->header.image_size = old_image_size;
f59adb32 1463 error_setg_errno(errp, -ret, "Failed to update the image size");
77a5a000
SH
1464 }
1465 return ret;
75411d23
SH
1466}
1467
1468static int64_t bdrv_qed_getlength(BlockDriverState *bs)
1469{
1470 BDRVQEDState *s = bs->opaque;
1471 return s->header.image_size;
1472}
1473
1474static int bdrv_qed_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1475{
1476 BDRVQEDState *s = bs->opaque;
1477
1478 memset(bdi, 0, sizeof(*bdi));
1479 bdi->cluster_size = s->header.cluster_size;
d68dbee8 1480 bdi->is_dirty = s->header.features & QED_F_NEED_CHECK;
75411d23
SH
1481 return 0;
1482}
1483
1484static int bdrv_qed_change_backing_file(BlockDriverState *bs,
1485 const char *backing_file,
1486 const char *backing_fmt)
1487{
1488 BDRVQEDState *s = bs->opaque;
1489 QEDHeader new_header, le_header;
1490 void *buffer;
1491 size_t buffer_len, backing_file_len;
1492 int ret;
1493
1494 /* Refuse to set backing filename if unknown compat feature bits are
1495 * active. If the image uses an unknown compat feature then we may not
1496 * know the layout of data following the header structure and cannot safely
1497 * add a new string.
1498 */
1499 if (backing_file && (s->header.compat_features &
1500 ~QED_COMPAT_FEATURE_MASK)) {
1501 return -ENOTSUP;
1502 }
1503
1504 memcpy(&new_header, &s->header, sizeof(new_header));
1505
1506 new_header.features &= ~(QED_F_BACKING_FILE |
1507 QED_F_BACKING_FORMAT_NO_PROBE);
1508
1509 /* Adjust feature flags */
1510 if (backing_file) {
1511 new_header.features |= QED_F_BACKING_FILE;
1512
1513 if (qed_fmt_is_raw(backing_fmt)) {
1514 new_header.features |= QED_F_BACKING_FORMAT_NO_PROBE;
1515 }
1516 }
1517
1518 /* Calculate new header size */
1519 backing_file_len = 0;
1520
1521 if (backing_file) {
1522 backing_file_len = strlen(backing_file);
1523 }
1524
1525 buffer_len = sizeof(new_header);
1526 new_header.backing_filename_offset = buffer_len;
1527 new_header.backing_filename_size = backing_file_len;
1528 buffer_len += backing_file_len;
1529
1530 /* Make sure we can rewrite header without failing */
1531 if (buffer_len > new_header.header_size * new_header.cluster_size) {
1532 return -ENOSPC;
1533 }
1534
1535 /* Prepare new header */
7267c094 1536 buffer = g_malloc(buffer_len);
75411d23
SH
1537
1538 qed_header_cpu_to_le(&new_header, &le_header);
1539 memcpy(buffer, &le_header, sizeof(le_header));
1540 buffer_len = sizeof(le_header);
1541
feba23b1
PB
1542 if (backing_file) {
1543 memcpy(buffer + buffer_len, backing_file, backing_file_len);
1544 buffer_len += backing_file_len;
1545 }
75411d23
SH
1546
1547 /* Write new header */
32cc71de 1548 ret = bdrv_pwrite_sync(bs->file, 0, buffer_len, buffer, 0);
7267c094 1549 g_free(buffer);
75411d23
SH
1550 if (ret == 0) {
1551 memcpy(&s->header, &new_header, sizeof(new_header));
1552 }
1553 return ret;
1554}
1555
2b148f39
PB
1556static void coroutine_fn bdrv_qed_co_invalidate_cache(BlockDriverState *bs,
1557 Error **errp)
c82954e5 1558{
1f01e50b 1559 BDRVQEDState *s = bs->opaque;
5a8a30db 1560 int ret;
c82954e5
BC
1561
1562 bdrv_qed_close(bs);
3456a8d1 1563
61c7887e 1564 bdrv_qed_init_state(bs);
2b148f39 1565 qemu_co_mutex_lock(&s->table_lock);
15ce94a6 1566 ret = bdrv_qed_do_open(bs, NULL, bs->open_flags, errp);
2b148f39 1567 qemu_co_mutex_unlock(&s->table_lock);
15ce94a6
VSO
1568 if (ret < 0) {
1569 error_prepend(errp, "Could not reopen qed layer: ");
5a8a30db 1570 }
c82954e5
BC
1571}
1572
54277a2a
VSO
1573static int coroutine_fn bdrv_qed_co_check(BlockDriverState *bs,
1574 BdrvCheckResult *result,
1575 BdrvCheckMode fix)
75411d23 1576{
01979a98 1577 BDRVQEDState *s = bs->opaque;
2fd61638 1578 int ret;
01979a98 1579
2fd61638
PB
1580 qemu_co_mutex_lock(&s->table_lock);
1581 ret = qed_check(s, result, !!fix);
1582 qemu_co_mutex_unlock(&s->table_lock);
1583
1584 return ret;
75411d23
SH
1585}
1586
7ab74849
CL
1587static QemuOptsList qed_create_opts = {
1588 .name = "qed-create-opts",
1589 .head = QTAILQ_HEAD_INITIALIZER(qed_create_opts.head),
1590 .desc = {
1591 {
1592 .name = BLOCK_OPT_SIZE,
1593 .type = QEMU_OPT_SIZE,
1594 .help = "Virtual disk size"
1595 },
1596 {
1597 .name = BLOCK_OPT_BACKING_FILE,
1598 .type = QEMU_OPT_STRING,
1599 .help = "File name of a base image"
1600 },
1601 {
1602 .name = BLOCK_OPT_BACKING_FMT,
1603 .type = QEMU_OPT_STRING,
1604 .help = "Image format of the base image"
1605 },
1606 {
1607 .name = BLOCK_OPT_CLUSTER_SIZE,
1608 .type = QEMU_OPT_SIZE,
1609 .help = "Cluster size (in bytes)",
1610 .def_value_str = stringify(QED_DEFAULT_CLUSTER_SIZE)
1611 },
1612 {
1613 .name = BLOCK_OPT_TABLE_SIZE,
1614 .type = QEMU_OPT_SIZE,
1615 .help = "L1/L2 table size (in clusters)"
1616 },
1617 { /* end of list */ }
1618 }
75411d23
SH
1619};
1620
1621static BlockDriver bdrv_qed = {
1622 .format_name = "qed",
1623 .instance_size = sizeof(BDRVQEDState),
7ab74849 1624 .create_opts = &qed_create_opts,
d67066d8 1625 .is_format = true,
8ee79e70 1626 .supports_backing = true,
75411d23
SH
1627
1628 .bdrv_probe = bdrv_qed_probe,
1629 .bdrv_open = bdrv_qed_open,
1630 .bdrv_close = bdrv_qed_close,
f9cb20f1 1631 .bdrv_reopen_prepare = bdrv_qed_reopen_prepare,
69dca43d 1632 .bdrv_child_perm = bdrv_default_perms,
959355a4 1633 .bdrv_co_create = bdrv_qed_co_create,
efc75e2a 1634 .bdrv_co_create_opts = bdrv_qed_co_create_opts,
3ac21627 1635 .bdrv_has_zero_init = bdrv_has_zero_init_1,
b8d739fd 1636 .bdrv_co_block_status = bdrv_qed_co_block_status,
89f89709
KW
1637 .bdrv_co_readv = bdrv_qed_co_readv,
1638 .bdrv_co_writev = bdrv_qed_co_writev,
49a2e483 1639 .bdrv_co_pwrite_zeroes = bdrv_qed_co_pwrite_zeroes,
061ca8a3 1640 .bdrv_co_truncate = bdrv_qed_co_truncate,
75411d23
SH
1641 .bdrv_getlength = bdrv_qed_getlength,
1642 .bdrv_get_info = bdrv_qed_get_info,
d34682cd 1643 .bdrv_refresh_limits = bdrv_qed_refresh_limits,
75411d23 1644 .bdrv_change_backing_file = bdrv_qed_change_backing_file,
2b148f39 1645 .bdrv_co_invalidate_cache = bdrv_qed_co_invalidate_cache,
2fd61638 1646 .bdrv_co_check = bdrv_qed_co_check,
a8c868c3
SH
1647 .bdrv_detach_aio_context = bdrv_qed_detach_aio_context,
1648 .bdrv_attach_aio_context = bdrv_qed_attach_aio_context,
f8ea8dac 1649 .bdrv_co_drain_begin = bdrv_qed_co_drain_begin,
75411d23
SH
1650};
1651
1652static void bdrv_qed_init(void)
1653{
1654 bdrv_register(&bdrv_qed);
1655}
1656
1657block_init(bdrv_qed_init);