]> git.proxmox.com Git - mirror_qemu.git/blob - block/blkio.c
block/blkio: do not use open flags in qemu_open()
[mirror_qemu.git] / block / blkio.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 /*
3 * libblkio BlockDriver
4 *
5 * Copyright Red Hat, Inc.
6 *
7 * Author:
8 * Stefan Hajnoczi <stefanha@redhat.com>
9 */
10
11 #include "qemu/osdep.h"
12 #include <blkio.h>
13 #include "block/block_int.h"
14 #include "exec/memory.h"
15 #include "exec/cpu-common.h" /* for qemu_ram_get_fd() */
16 #include "qapi/error.h"
17 #include "qemu/error-report.h"
18 #include "qapi/qmp/qdict.h"
19 #include "qemu/module.h"
20 #include "sysemu/block-backend.h"
21 #include "exec/memory.h" /* for ram_block_discard_disable() */
22
23 #include "block/block-io.h"
24
25 /*
26 * Allocated bounce buffers are kept in a list sorted by buffer address.
27 */
28 typedef struct BlkioBounceBuf {
29 QLIST_ENTRY(BlkioBounceBuf) next;
30
31 /* The bounce buffer */
32 struct iovec buf;
33 } BlkioBounceBuf;
34
35 typedef struct {
36 /*
37 * libblkio is not thread-safe so this lock protects ->blkio and
38 * ->blkioq.
39 */
40 QemuMutex blkio_lock;
41 struct blkio *blkio;
42 struct blkioq *blkioq; /* make this multi-queue in the future... */
43 int completion_fd;
44
45 /*
46 * Polling fetches the next completion into this field.
47 *
48 * No lock is necessary since only one thread calls aio_poll() and invokes
49 * fd and poll handlers.
50 */
51 struct blkio_completion poll_completion;
52
53 /*
54 * Protects ->bounce_pool, ->bounce_bufs, ->bounce_available.
55 *
56 * Lock ordering: ->bounce_lock before ->blkio_lock.
57 */
58 CoMutex bounce_lock;
59
60 /* Bounce buffer pool */
61 struct blkio_mem_region bounce_pool;
62
63 /* Sorted list of allocated bounce buffers */
64 QLIST_HEAD(, BlkioBounceBuf) bounce_bufs;
65
66 /* Queue for coroutines waiting for bounce buffer space */
67 CoQueue bounce_available;
68
69 /* The value of the "mem-region-alignment" property */
70 size_t mem_region_alignment;
71
72 /* Can we skip adding/deleting blkio_mem_regions? */
73 bool needs_mem_regions;
74
75 /* Are file descriptors necessary for blkio_mem_regions? */
76 bool needs_mem_region_fd;
77
78 /* Are madvise(MADV_DONTNEED)-style operations unavailable? */
79 bool may_pin_mem_regions;
80 } BDRVBlkioState;
81
82 /* Called with s->bounce_lock held */
83 static int blkio_resize_bounce_pool(BDRVBlkioState *s, int64_t bytes)
84 {
85 /* There can be no allocated bounce buffers during resize */
86 assert(QLIST_EMPTY(&s->bounce_bufs));
87
88 /* Pad size to reduce frequency of resize calls */
89 bytes += 128 * 1024;
90
91 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
92 int ret;
93
94 if (s->bounce_pool.addr) {
95 blkio_unmap_mem_region(s->blkio, &s->bounce_pool);
96 blkio_free_mem_region(s->blkio, &s->bounce_pool);
97 memset(&s->bounce_pool, 0, sizeof(s->bounce_pool));
98 }
99
100 /* Automatically freed when s->blkio is destroyed */
101 ret = blkio_alloc_mem_region(s->blkio, &s->bounce_pool, bytes);
102 if (ret < 0) {
103 return ret;
104 }
105
106 ret = blkio_map_mem_region(s->blkio, &s->bounce_pool);
107 if (ret < 0) {
108 blkio_free_mem_region(s->blkio, &s->bounce_pool);
109 memset(&s->bounce_pool, 0, sizeof(s->bounce_pool));
110 return ret;
111 }
112 }
113
114 return 0;
115 }
116
117 /* Called with s->bounce_lock held */
118 static bool
119 blkio_do_alloc_bounce_buffer(BDRVBlkioState *s, BlkioBounceBuf *bounce,
120 int64_t bytes)
121 {
122 void *addr = s->bounce_pool.addr;
123 BlkioBounceBuf *cur = NULL;
124 BlkioBounceBuf *prev = NULL;
125 ptrdiff_t space;
126
127 /*
128 * This is just a linear search over the holes between requests. An
129 * efficient allocator would be nice.
130 */
131 QLIST_FOREACH(cur, &s->bounce_bufs, next) {
132 space = cur->buf.iov_base - addr;
133 if (bytes <= space) {
134 QLIST_INSERT_BEFORE(cur, bounce, next);
135 bounce->buf.iov_base = addr;
136 bounce->buf.iov_len = bytes;
137 return true;
138 }
139
140 addr = cur->buf.iov_base + cur->buf.iov_len;
141 prev = cur;
142 }
143
144 /* Is there space after the last request? */
145 space = s->bounce_pool.addr + s->bounce_pool.len - addr;
146 if (bytes > space) {
147 return false;
148 }
149 if (prev) {
150 QLIST_INSERT_AFTER(prev, bounce, next);
151 } else {
152 QLIST_INSERT_HEAD(&s->bounce_bufs, bounce, next);
153 }
154 bounce->buf.iov_base = addr;
155 bounce->buf.iov_len = bytes;
156 return true;
157 }
158
159 static int coroutine_fn
160 blkio_alloc_bounce_buffer(BDRVBlkioState *s, BlkioBounceBuf *bounce,
161 int64_t bytes)
162 {
163 /*
164 * Ensure fairness: first time around we join the back of the queue,
165 * subsequently we join the front so we don't lose our place.
166 */
167 CoQueueWaitFlags wait_flags = 0;
168
169 QEMU_LOCK_GUARD(&s->bounce_lock);
170
171 /* Ensure fairness: don't even try if other requests are already waiting */
172 if (!qemu_co_queue_empty(&s->bounce_available)) {
173 qemu_co_queue_wait_flags(&s->bounce_available, &s->bounce_lock,
174 wait_flags);
175 wait_flags = CO_QUEUE_WAIT_FRONT;
176 }
177
178 while (true) {
179 if (blkio_do_alloc_bounce_buffer(s, bounce, bytes)) {
180 /* Kick the next queued request since there may be space */
181 qemu_co_queue_next(&s->bounce_available);
182 return 0;
183 }
184
185 /*
186 * If there are no in-flight requests then the pool was simply too
187 * small.
188 */
189 if (QLIST_EMPTY(&s->bounce_bufs)) {
190 bool ok;
191 int ret;
192
193 ret = blkio_resize_bounce_pool(s, bytes);
194 if (ret < 0) {
195 /* Kick the next queued request since that may fail too */
196 qemu_co_queue_next(&s->bounce_available);
197 return ret;
198 }
199
200 ok = blkio_do_alloc_bounce_buffer(s, bounce, bytes);
201 assert(ok); /* must have space this time */
202 return 0;
203 }
204
205 qemu_co_queue_wait_flags(&s->bounce_available, &s->bounce_lock,
206 wait_flags);
207 wait_flags = CO_QUEUE_WAIT_FRONT;
208 }
209 }
210
211 static void coroutine_fn blkio_free_bounce_buffer(BDRVBlkioState *s,
212 BlkioBounceBuf *bounce)
213 {
214 QEMU_LOCK_GUARD(&s->bounce_lock);
215
216 QLIST_REMOVE(bounce, next);
217
218 /* Wake up waiting coroutines since space may now be available */
219 qemu_co_queue_next(&s->bounce_available);
220 }
221
222 /* For async to .bdrv_co_*() conversion */
223 typedef struct {
224 Coroutine *coroutine;
225 int ret;
226 } BlkioCoData;
227
228 static void blkio_completion_fd_read(void *opaque)
229 {
230 BlockDriverState *bs = opaque;
231 BDRVBlkioState *s = bs->opaque;
232 uint64_t val;
233 int ret;
234
235 /* Polling may have already fetched a completion */
236 if (s->poll_completion.user_data != NULL) {
237 BlkioCoData *cod = s->poll_completion.user_data;
238 cod->ret = s->poll_completion.ret;
239
240 /* Clear it in case aio_co_wake() enters a nested event loop */
241 s->poll_completion.user_data = NULL;
242
243 aio_co_wake(cod->coroutine);
244 }
245
246 /* Reset completion fd status */
247 ret = read(s->completion_fd, &val, sizeof(val));
248
249 /* Ignore errors, there's nothing we can do */
250 (void)ret;
251
252 /*
253 * Reading one completion at a time makes nested event loop re-entrancy
254 * simple. Change this loop to get multiple completions in one go if it
255 * becomes a performance bottleneck.
256 */
257 while (true) {
258 struct blkio_completion completion;
259
260 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
261 ret = blkioq_do_io(s->blkioq, &completion, 0, 1, NULL);
262 }
263 if (ret != 1) {
264 break;
265 }
266
267 BlkioCoData *cod = completion.user_data;
268 cod->ret = completion.ret;
269 aio_co_wake(cod->coroutine);
270 }
271 }
272
273 static bool blkio_completion_fd_poll(void *opaque)
274 {
275 BlockDriverState *bs = opaque;
276 BDRVBlkioState *s = bs->opaque;
277 int ret;
278
279 /* Just in case we already fetched a completion */
280 if (s->poll_completion.user_data != NULL) {
281 return true;
282 }
283
284 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
285 ret = blkioq_do_io(s->blkioq, &s->poll_completion, 0, 1, NULL);
286 }
287 return ret == 1;
288 }
289
290 static void blkio_completion_fd_poll_ready(void *opaque)
291 {
292 blkio_completion_fd_read(opaque);
293 }
294
295 static void blkio_attach_aio_context(BlockDriverState *bs,
296 AioContext *new_context)
297 {
298 BDRVBlkioState *s = bs->opaque;
299
300 aio_set_fd_handler(new_context, s->completion_fd,
301 blkio_completion_fd_read, NULL,
302 blkio_completion_fd_poll,
303 blkio_completion_fd_poll_ready, bs);
304 }
305
306 static void blkio_detach_aio_context(BlockDriverState *bs)
307 {
308 BDRVBlkioState *s = bs->opaque;
309
310 aio_set_fd_handler(bdrv_get_aio_context(bs), s->completion_fd, NULL, NULL,
311 NULL, NULL, NULL);
312 }
313
314 /*
315 * Called by blk_io_unplug() or immediately if not plugged. Called without
316 * blkio_lock.
317 */
318 static void blkio_unplug_fn(void *opaque)
319 {
320 BDRVBlkioState *s = opaque;
321
322 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
323 blkioq_do_io(s->blkioq, NULL, 0, 0, NULL);
324 }
325 }
326
327 /*
328 * Schedule I/O submission after enqueuing a new request. Called without
329 * blkio_lock.
330 */
331 static void blkio_submit_io(BlockDriverState *bs)
332 {
333 BDRVBlkioState *s = bs->opaque;
334
335 blk_io_plug_call(blkio_unplug_fn, s);
336 }
337
338 static int coroutine_fn
339 blkio_co_pdiscard(BlockDriverState *bs, int64_t offset, int64_t bytes)
340 {
341 BDRVBlkioState *s = bs->opaque;
342 BlkioCoData cod = {
343 .coroutine = qemu_coroutine_self(),
344 };
345
346 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
347 blkioq_discard(s->blkioq, offset, bytes, &cod, 0);
348 }
349
350 blkio_submit_io(bs);
351 qemu_coroutine_yield();
352 return cod.ret;
353 }
354
355 static int coroutine_fn
356 blkio_co_preadv(BlockDriverState *bs, int64_t offset, int64_t bytes,
357 QEMUIOVector *qiov, BdrvRequestFlags flags)
358 {
359 BlkioCoData cod = {
360 .coroutine = qemu_coroutine_self(),
361 };
362 BDRVBlkioState *s = bs->opaque;
363 bool use_bounce_buffer =
364 s->needs_mem_regions && !(flags & BDRV_REQ_REGISTERED_BUF);
365 BlkioBounceBuf bounce;
366 struct iovec *iov = qiov->iov;
367 int iovcnt = qiov->niov;
368
369 if (use_bounce_buffer) {
370 int ret = blkio_alloc_bounce_buffer(s, &bounce, bytes);
371 if (ret < 0) {
372 return ret;
373 }
374
375 iov = &bounce.buf;
376 iovcnt = 1;
377 }
378
379 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
380 blkioq_readv(s->blkioq, offset, iov, iovcnt, &cod, 0);
381 }
382
383 blkio_submit_io(bs);
384 qemu_coroutine_yield();
385
386 if (use_bounce_buffer) {
387 if (cod.ret == 0) {
388 qemu_iovec_from_buf(qiov, 0,
389 bounce.buf.iov_base,
390 bounce.buf.iov_len);
391 }
392
393 blkio_free_bounce_buffer(s, &bounce);
394 }
395
396 return cod.ret;
397 }
398
399 static int coroutine_fn blkio_co_pwritev(BlockDriverState *bs, int64_t offset,
400 int64_t bytes, QEMUIOVector *qiov, BdrvRequestFlags flags)
401 {
402 uint32_t blkio_flags = (flags & BDRV_REQ_FUA) ? BLKIO_REQ_FUA : 0;
403 BlkioCoData cod = {
404 .coroutine = qemu_coroutine_self(),
405 };
406 BDRVBlkioState *s = bs->opaque;
407 bool use_bounce_buffer =
408 s->needs_mem_regions && !(flags & BDRV_REQ_REGISTERED_BUF);
409 BlkioBounceBuf bounce;
410 struct iovec *iov = qiov->iov;
411 int iovcnt = qiov->niov;
412
413 if (use_bounce_buffer) {
414 int ret = blkio_alloc_bounce_buffer(s, &bounce, bytes);
415 if (ret < 0) {
416 return ret;
417 }
418
419 qemu_iovec_to_buf(qiov, 0, bounce.buf.iov_base, bytes);
420 iov = &bounce.buf;
421 iovcnt = 1;
422 }
423
424 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
425 blkioq_writev(s->blkioq, offset, iov, iovcnt, &cod, blkio_flags);
426 }
427
428 blkio_submit_io(bs);
429 qemu_coroutine_yield();
430
431 if (use_bounce_buffer) {
432 blkio_free_bounce_buffer(s, &bounce);
433 }
434
435 return cod.ret;
436 }
437
438 static int coroutine_fn blkio_co_flush(BlockDriverState *bs)
439 {
440 BDRVBlkioState *s = bs->opaque;
441 BlkioCoData cod = {
442 .coroutine = qemu_coroutine_self(),
443 };
444
445 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
446 blkioq_flush(s->blkioq, &cod, 0);
447 }
448
449 blkio_submit_io(bs);
450 qemu_coroutine_yield();
451 return cod.ret;
452 }
453
454 static int coroutine_fn blkio_co_pwrite_zeroes(BlockDriverState *bs,
455 int64_t offset, int64_t bytes, BdrvRequestFlags flags)
456 {
457 BDRVBlkioState *s = bs->opaque;
458 BlkioCoData cod = {
459 .coroutine = qemu_coroutine_self(),
460 };
461 uint32_t blkio_flags = 0;
462
463 if (flags & BDRV_REQ_FUA) {
464 blkio_flags |= BLKIO_REQ_FUA;
465 }
466 if (!(flags & BDRV_REQ_MAY_UNMAP)) {
467 blkio_flags |= BLKIO_REQ_NO_UNMAP;
468 }
469 if (flags & BDRV_REQ_NO_FALLBACK) {
470 blkio_flags |= BLKIO_REQ_NO_FALLBACK;
471 }
472
473 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
474 blkioq_write_zeroes(s->blkioq, offset, bytes, &cod, blkio_flags);
475 }
476
477 blkio_submit_io(bs);
478 qemu_coroutine_yield();
479 return cod.ret;
480 }
481
482 typedef enum {
483 BMRR_OK,
484 BMRR_SKIP,
485 BMRR_FAIL,
486 } BlkioMemRegionResult;
487
488 /*
489 * Produce a struct blkio_mem_region for a given address and size.
490 *
491 * This function produces identical results when called multiple times with the
492 * same arguments. This property is necessary because blkio_unmap_mem_region()
493 * must receive the same struct blkio_mem_region field values that were passed
494 * to blkio_map_mem_region().
495 */
496 static BlkioMemRegionResult
497 blkio_mem_region_from_host(BlockDriverState *bs,
498 void *host, size_t size,
499 struct blkio_mem_region *region,
500 Error **errp)
501 {
502 BDRVBlkioState *s = bs->opaque;
503 int fd = -1;
504 ram_addr_t fd_offset = 0;
505
506 if (((uintptr_t)host | size) % s->mem_region_alignment) {
507 error_setg(errp, "unaligned buf %p with size %zu", host, size);
508 return BMRR_FAIL;
509 }
510
511 /* Attempt to find the fd for the underlying memory */
512 if (s->needs_mem_region_fd) {
513 RAMBlock *ram_block;
514 RAMBlock *end_block;
515 ram_addr_t offset;
516
517 /*
518 * bdrv_register_buf() is called with the BQL held so mr lives at least
519 * until this function returns.
520 */
521 ram_block = qemu_ram_block_from_host(host, false, &fd_offset);
522 if (ram_block) {
523 fd = qemu_ram_get_fd(ram_block);
524 }
525 if (fd == -1) {
526 /*
527 * Ideally every RAMBlock would have an fd. pc-bios and other
528 * things don't. Luckily they are usually not I/O buffers and we
529 * can just ignore them.
530 */
531 return BMRR_SKIP;
532 }
533
534 /* Make sure the fd covers the entire range */
535 end_block = qemu_ram_block_from_host(host + size - 1, false, &offset);
536 if (ram_block != end_block) {
537 error_setg(errp, "registered buffer at %p with size %zu extends "
538 "beyond RAMBlock", host, size);
539 return BMRR_FAIL;
540 }
541 }
542
543 *region = (struct blkio_mem_region){
544 .addr = host,
545 .len = size,
546 .fd = fd,
547 .fd_offset = fd_offset,
548 };
549 return BMRR_OK;
550 }
551
552 static bool blkio_register_buf(BlockDriverState *bs, void *host, size_t size,
553 Error **errp)
554 {
555 BDRVBlkioState *s = bs->opaque;
556 struct blkio_mem_region region;
557 BlkioMemRegionResult region_result;
558 int ret;
559
560 /*
561 * Mapping memory regions conflicts with RAM discard (virtio-mem) when
562 * there is pinning, so only do it when necessary.
563 */
564 if (!s->needs_mem_regions && s->may_pin_mem_regions) {
565 return true;
566 }
567
568 region_result = blkio_mem_region_from_host(bs, host, size, &region, errp);
569 if (region_result == BMRR_SKIP) {
570 return true;
571 } else if (region_result != BMRR_OK) {
572 return false;
573 }
574
575 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
576 ret = blkio_map_mem_region(s->blkio, &region);
577 }
578
579 if (ret < 0) {
580 error_setg(errp, "Failed to add blkio mem region %p with size %zu: %s",
581 host, size, blkio_get_error_msg());
582 return false;
583 }
584 return true;
585 }
586
587 static void blkio_unregister_buf(BlockDriverState *bs, void *host, size_t size)
588 {
589 BDRVBlkioState *s = bs->opaque;
590 struct blkio_mem_region region;
591
592 /* See blkio_register_buf() */
593 if (!s->needs_mem_regions && s->may_pin_mem_regions) {
594 return;
595 }
596
597 if (blkio_mem_region_from_host(bs, host, size, &region, NULL) != BMRR_OK) {
598 return;
599 }
600
601 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
602 blkio_unmap_mem_region(s->blkio, &region);
603 }
604 }
605
606 static int blkio_io_uring_open(BlockDriverState *bs, QDict *options, int flags,
607 Error **errp)
608 {
609 const char *filename = qdict_get_str(options, "filename");
610 BDRVBlkioState *s = bs->opaque;
611 int ret;
612
613 ret = blkio_set_str(s->blkio, "path", filename);
614 qdict_del(options, "filename");
615 if (ret < 0) {
616 error_setg_errno(errp, -ret, "failed to set path: %s",
617 blkio_get_error_msg());
618 return ret;
619 }
620
621 if (flags & BDRV_O_NOCACHE) {
622 ret = blkio_set_bool(s->blkio, "direct", true);
623 if (ret < 0) {
624 error_setg_errno(errp, -ret, "failed to set direct: %s",
625 blkio_get_error_msg());
626 return ret;
627 }
628 }
629
630 return 0;
631 }
632
633 static int blkio_nvme_io_uring(BlockDriverState *bs, QDict *options, int flags,
634 Error **errp)
635 {
636 const char *path = qdict_get_try_str(options, "path");
637 BDRVBlkioState *s = bs->opaque;
638 int ret;
639
640 if (!path) {
641 error_setg(errp, "missing 'path' option");
642 return -EINVAL;
643 }
644
645 ret = blkio_set_str(s->blkio, "path", path);
646 qdict_del(options, "path");
647 if (ret < 0) {
648 error_setg_errno(errp, -ret, "failed to set path: %s",
649 blkio_get_error_msg());
650 return ret;
651 }
652
653 if (!(flags & BDRV_O_NOCACHE)) {
654 error_setg(errp, "cache.direct=off is not supported");
655 return -EINVAL;
656 }
657
658 return 0;
659 }
660
661 static int blkio_virtio_blk_common_open(BlockDriverState *bs,
662 QDict *options, int flags, Error **errp)
663 {
664 const char *path = qdict_get_try_str(options, "path");
665 BDRVBlkioState *s = bs->opaque;
666 bool fd_supported = false;
667 int fd, ret;
668
669 if (!path) {
670 error_setg(errp, "missing 'path' option");
671 return -EINVAL;
672 }
673
674 if (!(flags & BDRV_O_NOCACHE)) {
675 error_setg(errp, "cache.direct=off is not supported");
676 return -EINVAL;
677 }
678
679 if (blkio_get_int(s->blkio, "fd", &fd) == 0) {
680 fd_supported = true;
681 }
682
683 /*
684 * If the libblkio driver supports fd passing, let's always use qemu_open()
685 * to open the `path`, so we can handle fd passing from the management
686 * layer through the "/dev/fdset/N" special path.
687 */
688 if (fd_supported) {
689 /*
690 * `path` can contain the path of a character device
691 * (e.g. /dev/vhost-vdpa-0 or /dev/vfio/vfio) or a unix socket.
692 *
693 * So, we should always open it with O_RDWR flag, also if BDRV_O_RDWR
694 * is not set in the open flags, because the exchange of IOCTL commands
695 * for example will fail.
696 *
697 * In order to open the device read-only, we are using the `read-only`
698 * property of the libblkio driver in blkio_file_open().
699 */
700 fd = qemu_open(path, O_RDWR, errp);
701 if (fd < 0) {
702 return -EINVAL;
703 }
704
705 ret = blkio_set_int(s->blkio, "fd", fd);
706 if (ret < 0) {
707 error_setg_errno(errp, -ret, "failed to set fd: %s",
708 blkio_get_error_msg());
709 qemu_close(fd);
710 return ret;
711 }
712 } else {
713 ret = blkio_set_str(s->blkio, "path", path);
714 if (ret < 0) {
715 error_setg_errno(errp, -ret, "failed to set path: %s",
716 blkio_get_error_msg());
717 return ret;
718 }
719 }
720
721 qdict_del(options, "path");
722
723 return 0;
724 }
725
726 static int blkio_file_open(BlockDriverState *bs, QDict *options, int flags,
727 Error **errp)
728 {
729 const char *blkio_driver = bs->drv->protocol_name;
730 BDRVBlkioState *s = bs->opaque;
731 int ret;
732
733 ret = blkio_create(blkio_driver, &s->blkio);
734 if (ret < 0) {
735 error_setg_errno(errp, -ret, "blkio_create failed: %s",
736 blkio_get_error_msg());
737 return ret;
738 }
739
740 if (strcmp(blkio_driver, "io_uring") == 0) {
741 ret = blkio_io_uring_open(bs, options, flags, errp);
742 } else if (strcmp(blkio_driver, "nvme-io_uring") == 0) {
743 ret = blkio_nvme_io_uring(bs, options, flags, errp);
744 } else if (strcmp(blkio_driver, "virtio-blk-vfio-pci") == 0) {
745 ret = blkio_virtio_blk_common_open(bs, options, flags, errp);
746 } else if (strcmp(blkio_driver, "virtio-blk-vhost-user") == 0) {
747 ret = blkio_virtio_blk_common_open(bs, options, flags, errp);
748 } else if (strcmp(blkio_driver, "virtio-blk-vhost-vdpa") == 0) {
749 ret = blkio_virtio_blk_common_open(bs, options, flags, errp);
750 } else {
751 g_assert_not_reached();
752 }
753 if (ret < 0) {
754 blkio_destroy(&s->blkio);
755 return ret;
756 }
757
758 if (!(flags & BDRV_O_RDWR)) {
759 ret = blkio_set_bool(s->blkio, "read-only", true);
760 if (ret < 0) {
761 error_setg_errno(errp, -ret, "failed to set read-only: %s",
762 blkio_get_error_msg());
763 blkio_destroy(&s->blkio);
764 return ret;
765 }
766 }
767
768 ret = blkio_connect(s->blkio);
769 if (ret < 0) {
770 error_setg_errno(errp, -ret, "blkio_connect failed: %s",
771 blkio_get_error_msg());
772 blkio_destroy(&s->blkio);
773 return ret;
774 }
775
776 ret = blkio_get_bool(s->blkio,
777 "needs-mem-regions",
778 &s->needs_mem_regions);
779 if (ret < 0) {
780 error_setg_errno(errp, -ret,
781 "failed to get needs-mem-regions: %s",
782 blkio_get_error_msg());
783 blkio_destroy(&s->blkio);
784 return ret;
785 }
786
787 ret = blkio_get_bool(s->blkio,
788 "needs-mem-region-fd",
789 &s->needs_mem_region_fd);
790 if (ret < 0) {
791 error_setg_errno(errp, -ret,
792 "failed to get needs-mem-region-fd: %s",
793 blkio_get_error_msg());
794 blkio_destroy(&s->blkio);
795 return ret;
796 }
797
798 ret = blkio_get_uint64(s->blkio,
799 "mem-region-alignment",
800 &s->mem_region_alignment);
801 if (ret < 0) {
802 error_setg_errno(errp, -ret,
803 "failed to get mem-region-alignment: %s",
804 blkio_get_error_msg());
805 blkio_destroy(&s->blkio);
806 return ret;
807 }
808
809 ret = blkio_get_bool(s->blkio,
810 "may-pin-mem-regions",
811 &s->may_pin_mem_regions);
812 if (ret < 0) {
813 /* Be conservative (assume pinning) if the property is not supported */
814 s->may_pin_mem_regions = s->needs_mem_regions;
815 }
816
817 /*
818 * Notify if libblkio drivers pin memory and prevent features like
819 * virtio-mem from working.
820 */
821 if (s->may_pin_mem_regions) {
822 ret = ram_block_discard_disable(true);
823 if (ret < 0) {
824 error_setg_errno(errp, -ret, "ram_block_discard_disable() failed");
825 blkio_destroy(&s->blkio);
826 return ret;
827 }
828 }
829
830 ret = blkio_start(s->blkio);
831 if (ret < 0) {
832 error_setg_errno(errp, -ret, "blkio_start failed: %s",
833 blkio_get_error_msg());
834 blkio_destroy(&s->blkio);
835 if (s->may_pin_mem_regions) {
836 ram_block_discard_disable(false);
837 }
838 return ret;
839 }
840
841 bs->supported_write_flags = BDRV_REQ_FUA | BDRV_REQ_REGISTERED_BUF;
842 bs->supported_zero_flags = BDRV_REQ_FUA | BDRV_REQ_MAY_UNMAP |
843 BDRV_REQ_NO_FALLBACK;
844
845 qemu_mutex_init(&s->blkio_lock);
846 qemu_co_mutex_init(&s->bounce_lock);
847 qemu_co_queue_init(&s->bounce_available);
848 QLIST_INIT(&s->bounce_bufs);
849 s->blkioq = blkio_get_queue(s->blkio, 0);
850 s->completion_fd = blkioq_get_completion_fd(s->blkioq);
851 blkioq_set_completion_fd_enabled(s->blkioq, true);
852
853 blkio_attach_aio_context(bs, bdrv_get_aio_context(bs));
854 return 0;
855 }
856
857 static void blkio_close(BlockDriverState *bs)
858 {
859 BDRVBlkioState *s = bs->opaque;
860
861 /* There is no destroy() API for s->bounce_lock */
862
863 qemu_mutex_destroy(&s->blkio_lock);
864 blkio_detach_aio_context(bs);
865 blkio_destroy(&s->blkio);
866
867 if (s->may_pin_mem_regions) {
868 ram_block_discard_disable(false);
869 }
870 }
871
872 static int64_t coroutine_fn blkio_co_getlength(BlockDriverState *bs)
873 {
874 BDRVBlkioState *s = bs->opaque;
875 uint64_t capacity;
876 int ret;
877
878 WITH_QEMU_LOCK_GUARD(&s->blkio_lock) {
879 ret = blkio_get_uint64(s->blkio, "capacity", &capacity);
880 }
881 if (ret < 0) {
882 return -ret;
883 }
884
885 return capacity;
886 }
887
888 static int coroutine_fn blkio_truncate(BlockDriverState *bs, int64_t offset,
889 bool exact, PreallocMode prealloc,
890 BdrvRequestFlags flags, Error **errp)
891 {
892 int64_t current_length;
893
894 if (prealloc != PREALLOC_MODE_OFF) {
895 error_setg(errp, "Unsupported preallocation mode '%s'",
896 PreallocMode_str(prealloc));
897 return -ENOTSUP;
898 }
899
900 current_length = blkio_co_getlength(bs);
901
902 if (offset > current_length) {
903 error_setg(errp, "Cannot grow device");
904 return -EINVAL;
905 } else if (exact && offset != current_length) {
906 error_setg(errp, "Cannot resize device");
907 return -ENOTSUP;
908 }
909
910 return 0;
911 }
912
913 static int coroutine_fn
914 blkio_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
915 {
916 return 0;
917 }
918
919 static void blkio_refresh_limits(BlockDriverState *bs, Error **errp)
920 {
921 BDRVBlkioState *s = bs->opaque;
922 QEMU_LOCK_GUARD(&s->blkio_lock);
923 int value;
924 int ret;
925
926 ret = blkio_get_int(s->blkio, "request-alignment", &value);
927 if (ret < 0) {
928 error_setg_errno(errp, -ret, "failed to get \"request-alignment\": %s",
929 blkio_get_error_msg());
930 return;
931 }
932 bs->bl.request_alignment = value;
933 if (bs->bl.request_alignment < 1 ||
934 bs->bl.request_alignment >= INT_MAX ||
935 !is_power_of_2(bs->bl.request_alignment)) {
936 error_setg(errp, "invalid \"request-alignment\" value %" PRIu32 ", "
937 "must be a power of 2 less than INT_MAX",
938 bs->bl.request_alignment);
939 return;
940 }
941
942 ret = blkio_get_int(s->blkio, "optimal-io-size", &value);
943 if (ret < 0) {
944 error_setg_errno(errp, -ret, "failed to get \"optimal-io-size\": %s",
945 blkio_get_error_msg());
946 return;
947 }
948 bs->bl.opt_transfer = value;
949 if (bs->bl.opt_transfer > INT_MAX ||
950 (bs->bl.opt_transfer % bs->bl.request_alignment)) {
951 error_setg(errp, "invalid \"optimal-io-size\" value %" PRIu32 ", must "
952 "be a multiple of %" PRIu32, bs->bl.opt_transfer,
953 bs->bl.request_alignment);
954 return;
955 }
956
957 ret = blkio_get_int(s->blkio, "max-transfer", &value);
958 if (ret < 0) {
959 error_setg_errno(errp, -ret, "failed to get \"max-transfer\": %s",
960 blkio_get_error_msg());
961 return;
962 }
963 bs->bl.max_transfer = value;
964 if ((bs->bl.max_transfer % bs->bl.request_alignment) ||
965 (bs->bl.opt_transfer && (bs->bl.max_transfer % bs->bl.opt_transfer))) {
966 error_setg(errp, "invalid \"max-transfer\" value %" PRIu32 ", must be "
967 "a multiple of %" PRIu32 " and %" PRIu32 " (if non-zero)",
968 bs->bl.max_transfer, bs->bl.request_alignment,
969 bs->bl.opt_transfer);
970 return;
971 }
972
973 ret = blkio_get_int(s->blkio, "buf-alignment", &value);
974 if (ret < 0) {
975 error_setg_errno(errp, -ret, "failed to get \"buf-alignment\": %s",
976 blkio_get_error_msg());
977 return;
978 }
979 if (value < 1) {
980 error_setg(errp, "invalid \"buf-alignment\" value %d, must be "
981 "positive", value);
982 return;
983 }
984 bs->bl.min_mem_alignment = value;
985
986 ret = blkio_get_int(s->blkio, "optimal-buf-alignment", &value);
987 if (ret < 0) {
988 error_setg_errno(errp, -ret,
989 "failed to get \"optimal-buf-alignment\": %s",
990 blkio_get_error_msg());
991 return;
992 }
993 if (value < 1) {
994 error_setg(errp, "invalid \"optimal-buf-alignment\" value %d, "
995 "must be positive", value);
996 return;
997 }
998 bs->bl.opt_mem_alignment = value;
999
1000 ret = blkio_get_int(s->blkio, "max-segments", &value);
1001 if (ret < 0) {
1002 error_setg_errno(errp, -ret, "failed to get \"max-segments\": %s",
1003 blkio_get_error_msg());
1004 return;
1005 }
1006 if (value < 1) {
1007 error_setg(errp, "invalid \"max-segments\" value %d, must be positive",
1008 value);
1009 return;
1010 }
1011 bs->bl.max_iov = value;
1012 }
1013
1014 /*
1015 * TODO
1016 * Missing libblkio APIs:
1017 * - block_status
1018 * - co_invalidate_cache
1019 *
1020 * Out of scope?
1021 * - create
1022 * - truncate
1023 */
1024
1025 /*
1026 * Do not include .format_name and .protocol_name because module_block.py
1027 * does not parse macros in the source code.
1028 */
1029 #define BLKIO_DRIVER_COMMON \
1030 .instance_size = sizeof(BDRVBlkioState), \
1031 .bdrv_file_open = blkio_file_open, \
1032 .bdrv_close = blkio_close, \
1033 .bdrv_co_getlength = blkio_co_getlength, \
1034 .bdrv_co_truncate = blkio_truncate, \
1035 .bdrv_co_get_info = blkio_co_get_info, \
1036 .bdrv_attach_aio_context = blkio_attach_aio_context, \
1037 .bdrv_detach_aio_context = blkio_detach_aio_context, \
1038 .bdrv_co_pdiscard = blkio_co_pdiscard, \
1039 .bdrv_co_preadv = blkio_co_preadv, \
1040 .bdrv_co_pwritev = blkio_co_pwritev, \
1041 .bdrv_co_flush_to_disk = blkio_co_flush, \
1042 .bdrv_co_pwrite_zeroes = blkio_co_pwrite_zeroes, \
1043 .bdrv_refresh_limits = blkio_refresh_limits, \
1044 .bdrv_register_buf = blkio_register_buf, \
1045 .bdrv_unregister_buf = blkio_unregister_buf,
1046
1047 /*
1048 * Use the same .format_name and .protocol_name as the libblkio driver name for
1049 * consistency.
1050 */
1051
1052 static BlockDriver bdrv_io_uring = {
1053 .format_name = "io_uring",
1054 .protocol_name = "io_uring",
1055 .bdrv_needs_filename = true,
1056 BLKIO_DRIVER_COMMON
1057 };
1058
1059 static BlockDriver bdrv_nvme_io_uring = {
1060 .format_name = "nvme-io_uring",
1061 .protocol_name = "nvme-io_uring",
1062 BLKIO_DRIVER_COMMON
1063 };
1064
1065 static BlockDriver bdrv_virtio_blk_vfio_pci = {
1066 .format_name = "virtio-blk-vfio-pci",
1067 .protocol_name = "virtio-blk-vfio-pci",
1068 BLKIO_DRIVER_COMMON
1069 };
1070
1071 static BlockDriver bdrv_virtio_blk_vhost_user = {
1072 .format_name = "virtio-blk-vhost-user",
1073 .protocol_name = "virtio-blk-vhost-user",
1074 BLKIO_DRIVER_COMMON
1075 };
1076
1077 static BlockDriver bdrv_virtio_blk_vhost_vdpa = {
1078 .format_name = "virtio-blk-vhost-vdpa",
1079 .protocol_name = "virtio-blk-vhost-vdpa",
1080 BLKIO_DRIVER_COMMON
1081 };
1082
1083 static void bdrv_blkio_init(void)
1084 {
1085 bdrv_register(&bdrv_io_uring);
1086 bdrv_register(&bdrv_nvme_io_uring);
1087 bdrv_register(&bdrv_virtio_blk_vfio_pci);
1088 bdrv_register(&bdrv_virtio_blk_vhost_user);
1089 bdrv_register(&bdrv_virtio_blk_vhost_vdpa);
1090 }
1091
1092 block_init(bdrv_blkio_init);