2 * Common block export infrastructure
4 * Copyright (c) 2012, 2020 Red Hat, Inc.
7 * Paolo Bonzini <pbonzini@redhat.com>
8 * Kevin Wolf <kwolf@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or
11 * later. See the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
16 #include "block/block.h"
17 #include "sysemu/block-backend.h"
18 #include "sysemu/iothread.h"
19 #include "block/export.h"
20 #include "block/fuse.h"
21 #include "block/nbd.h"
22 #include "qapi/error.h"
23 #include "qapi/qapi-commands-block-export.h"
24 #include "qapi/qapi-events-block-export.h"
26 #ifdef CONFIG_VHOST_USER_BLK_SERVER
27 #include "vhost-user-blk-server.h"
30 static const BlockExportDriver
*blk_exp_drivers
[] = {
32 #ifdef CONFIG_VHOST_USER_BLK_SERVER
33 &blk_exp_vhost_user_blk
,
40 /* Only accessed from the main thread */
41 static QLIST_HEAD(, BlockExport
) block_exports
=
42 QLIST_HEAD_INITIALIZER(block_exports
);
44 BlockExport
*blk_exp_find(const char *id
)
48 QLIST_FOREACH(exp
, &block_exports
, next
) {
49 if (strcmp(id
, exp
->id
) == 0) {
57 static const BlockExportDriver
*blk_exp_find_driver(BlockExportType type
)
61 for (i
= 0; i
< ARRAY_SIZE(blk_exp_drivers
); i
++) {
62 if (blk_exp_drivers
[i
]->type
== type
) {
63 return blk_exp_drivers
[i
];
69 BlockExport
*blk_exp_add(BlockExportOptions
*export
, Error
**errp
)
71 bool fixed_iothread
= export
->has_fixed_iothread
&& export
->fixed_iothread
;
72 const BlockExportDriver
*drv
;
73 BlockExport
*exp
= NULL
;
75 BlockBackend
*blk
= NULL
;
80 if (!id_wellformed(export
->id
)) {
81 error_setg(errp
, "Invalid block export id");
84 if (blk_exp_find(export
->id
)) {
85 error_setg(errp
, "Block export id '%s' is already in use", export
->id
);
89 drv
= blk_exp_find_driver(export
->type
);
91 error_setg(errp
, "No driver found for the requested export type");
95 bs
= bdrv_lookup_bs(NULL
, export
->node_name
, errp
);
100 if (!export
->has_writable
) {
101 export
->writable
= false;
103 if (bdrv_is_read_only(bs
) && export
->writable
) {
104 error_setg(errp
, "Cannot export read-only node as writable");
108 ctx
= bdrv_get_aio_context(bs
);
109 aio_context_acquire(ctx
);
111 if (export
->has_iothread
) {
114 Error
**set_context_errp
;
116 iothread
= iothread_by_id(export
->iothread
);
118 error_setg(errp
, "iothread \"%s\" not found", export
->iothread
);
122 new_ctx
= iothread_get_aio_context(iothread
);
124 /* Ignore errors with fixed-iothread=false */
125 set_context_errp
= fixed_iothread
? errp
: NULL
;
126 ret
= bdrv_try_set_aio_context(bs
, new_ctx
, set_context_errp
);
128 aio_context_release(ctx
);
129 aio_context_acquire(new_ctx
);
131 } else if (fixed_iothread
) {
137 * Block exports are used for non-shared storage migration. Make sure
138 * that BDRV_O_INACTIVE is cleared and the image is ready for write
139 * access since the export could be available before migration handover.
140 * ctx was acquired in the caller.
142 bdrv_activate(bs
, NULL
);
144 perm
= BLK_PERM_CONSISTENT_READ
;
145 if (export
->writable
) {
146 perm
|= BLK_PERM_WRITE
;
149 blk
= blk_new(ctx
, perm
, BLK_PERM_ALL
);
151 if (!fixed_iothread
) {
152 blk_set_allow_aio_context_change(blk
, true);
155 ret
= blk_insert_bs(blk
, bs
, errp
);
160 if (!export
->has_writethrough
) {
161 export
->writethrough
= false;
163 blk_set_enable_write_cache(blk
, !export
->writethrough
);
165 assert(drv
->instance_size
>= sizeof(BlockExport
));
166 exp
= g_malloc0(drv
->instance_size
);
167 *exp
= (BlockExport
) {
171 .id
= g_strdup(export
->id
),
176 ret
= drv
->create(exp
, export
, errp
);
181 assert(exp
->blk
!= NULL
);
183 QLIST_INSERT_HEAD(&block_exports
, exp
, next
);
185 aio_context_release(ctx
);
190 aio_context_release(ctx
);
198 /* Callers must hold exp->ctx lock */
199 void blk_exp_ref(BlockExport
*exp
)
201 assert(exp
->refcount
> 0);
205 /* Runs in the main thread */
206 static void blk_exp_delete_bh(void *opaque
)
208 BlockExport
*exp
= opaque
;
209 AioContext
*aio_context
= exp
->ctx
;
211 aio_context_acquire(aio_context
);
213 assert(exp
->refcount
== 0);
214 QLIST_REMOVE(exp
, next
);
215 exp
->drv
->delete(exp
);
217 qapi_event_send_block_export_deleted(exp
->id
);
221 aio_context_release(aio_context
);
224 /* Callers must hold exp->ctx lock */
225 void blk_exp_unref(BlockExport
*exp
)
227 assert(exp
->refcount
> 0);
228 if (--exp
->refcount
== 0) {
229 /* Touch the block_exports list only in the main thread */
230 aio_bh_schedule_oneshot(qemu_get_aio_context(), blk_exp_delete_bh
,
236 * Drops the user reference to the export and requests that all client
237 * connections and other internally held references start to shut down. When
238 * the function returns, there may still be active references while the export
239 * is in the process of shutting down.
241 * Acquires exp->ctx internally. Callers must *not* hold the lock.
243 void blk_exp_request_shutdown(BlockExport
*exp
)
245 AioContext
*aio_context
= exp
->ctx
;
247 aio_context_acquire(aio_context
);
250 * If the user doesn't own the export any more, it is already shutting
251 * down. We must not call .request_shutdown and decrease the refcount a
254 if (!exp
->user_owned
) {
258 exp
->drv
->request_shutdown(exp
);
260 assert(exp
->user_owned
);
261 exp
->user_owned
= false;
265 aio_context_release(aio_context
);
269 * Returns whether a block export of the given type exists.
270 * type == BLOCK_EXPORT_TYPE__MAX checks for an export of any type.
272 static bool blk_exp_has_type(BlockExportType type
)
276 if (type
== BLOCK_EXPORT_TYPE__MAX
) {
277 return !QLIST_EMPTY(&block_exports
);
280 QLIST_FOREACH(exp
, &block_exports
, next
) {
281 if (exp
->drv
->type
== type
) {
289 /* type == BLOCK_EXPORT_TYPE__MAX for all types */
290 void blk_exp_close_all_type(BlockExportType type
)
292 BlockExport
*exp
, *next
;
294 assert(in_aio_context_home_thread(qemu_get_aio_context()));
296 QLIST_FOREACH_SAFE(exp
, &block_exports
, next
, next
) {
297 if (type
!= BLOCK_EXPORT_TYPE__MAX
&& exp
->drv
->type
!= type
) {
300 blk_exp_request_shutdown(exp
);
303 AIO_WAIT_WHILE(NULL
, blk_exp_has_type(type
));
306 void blk_exp_close_all(void)
308 blk_exp_close_all_type(BLOCK_EXPORT_TYPE__MAX
);
311 void qmp_block_export_add(BlockExportOptions
*export
, Error
**errp
)
313 blk_exp_add(export
, errp
);
316 void qmp_block_export_del(const char *id
,
317 bool has_mode
, BlockExportRemoveMode mode
,
323 exp
= blk_exp_find(id
);
325 error_setg(errp
, "Export '%s' is not found", id
);
328 if (!exp
->user_owned
) {
329 error_setg(errp
, "Export '%s' is already shutting down", id
);
334 mode
= BLOCK_EXPORT_REMOVE_MODE_SAFE
;
336 if (mode
== BLOCK_EXPORT_REMOVE_MODE_SAFE
&& exp
->refcount
> 1) {
337 error_setg(errp
, "export '%s' still in use", exp
->id
);
338 error_append_hint(errp
, "Use mode='hard' to force client "
343 blk_exp_request_shutdown(exp
);
346 BlockExportInfoList
*qmp_query_block_exports(Error
**errp
)
348 BlockExportInfoList
*head
= NULL
, **tail
= &head
;
351 QLIST_FOREACH(exp
, &block_exports
, next
) {
352 BlockExportInfo
*info
= g_new(BlockExportInfo
, 1);
353 *info
= (BlockExportInfo
) {
354 .id
= g_strdup(exp
->id
),
355 .type
= exp
->drv
->type
,
356 .node_name
= g_strdup(bdrv_get_node_name(blk_bs(exp
->blk
))),
357 .shutting_down
= !exp
->user_owned
,
360 QAPI_LIST_APPEND(tail
, info
);