2 * QEMU Block driver for NBD
4 * Copyright (c) 2019 Virtuozzo International GmbH.
5 * Copyright (C) 2016 Red Hat, Inc.
6 * Copyright (C) 2008 Bull S.A.S.
7 * Author: Laurent Vivier <Laurent.Vivier@bull.net>
10 * Copyright (C) 2007 Anthony Liguori <anthony@codemonkey.ws>
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to deal
14 * in the Software without restriction, including without limitation the rights
15 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16 * copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
31 #include "qemu/osdep.h"
35 #include "qemu/option.h"
36 #include "qemu/cutils.h"
37 #include "qemu/main-loop.h"
39 #include "qapi/qapi-visit-sockets.h"
40 #include "qapi/qmp/qstring.h"
41 #include "qapi/clone-visitor.h"
43 #include "block/qdict.h"
44 #include "block/nbd.h"
45 #include "block/block_int.h"
47 #define EN_OPTSTR ":exportname="
48 #define MAX_NBD_REQUESTS 16
50 #define HANDLE_TO_INDEX(bs, handle) ((handle) ^ (uint64_t)(intptr_t)(bs))
51 #define INDEX_TO_HANDLE(bs, index) ((index) ^ (uint64_t)(intptr_t)(bs))
55 uint64_t offset
; /* original offset of the request */
56 bool receiving
; /* waiting for connection_co? */
59 typedef enum NBDClientState
{
60 NBD_CLIENT_CONNECTING_WAIT
,
61 NBD_CLIENT_CONNECTING_NOWAIT
,
66 typedef enum NBDConnectThreadState
{
67 /* No thread, no pending results */
70 /* Thread is running, no results for now */
71 CONNECT_THREAD_RUNNING
,
74 * Thread is running, but requestor exited. Thread should close
75 * the new socket and free the connect state on exit.
77 CONNECT_THREAD_RUNNING_DETACHED
,
79 /* Thread finished, results are stored in a state */
81 CONNECT_THREAD_SUCCESS
82 } NBDConnectThreadState
;
84 typedef struct NBDConnectThread
{
85 /* Initialization constants */
86 SocketAddress
*saddr
; /* address to connect to */
88 * Bottom half to schedule on completion. Scheduled only if bh_ctx is not
95 * Result of last attempt. Valid in FAIL and SUCCESS states.
96 * If you want to steal error, don't forget to set pointer to NULL.
98 QIOChannelSocket
*sioc
;
101 /* state and bh_ctx are protected by mutex */
103 NBDConnectThreadState state
; /* current state of the thread */
104 AioContext
*bh_ctx
; /* where to schedule bh (NULL means don't schedule) */
107 typedef struct BDRVNBDState
{
108 QIOChannelSocket
*sioc
; /* The master data channel */
109 QIOChannel
*ioc
; /* The current I/O channel which may differ (eg TLS) */
114 Coroutine
*connection_co
;
115 Coroutine
*teardown_co
;
116 QemuCoSleepState
*connection_co_sleep_ns_state
;
118 bool wait_drained_end
;
120 NBDClientState state
;
125 NBDClientRequest requests
[MAX_NBD_REQUESTS
];
127 BlockDriverState
*bs
;
129 /* Connection parameters */
130 uint32_t reconnect_delay
;
131 SocketAddress
*saddr
;
132 char *export
, *tlscredsid
;
133 QCryptoTLSCreds
*tlscreds
;
134 const char *hostname
;
135 char *x_dirty_bitmap
;
138 NBDConnectThread
*connect_thread
;
141 static QIOChannelSocket
*nbd_establish_connection(SocketAddress
*saddr
,
143 static QIOChannelSocket
*nbd_co_establish_connection(BlockDriverState
*bs
,
145 static void nbd_co_establish_connection_cancel(BlockDriverState
*bs
,
147 static int nbd_client_handshake(BlockDriverState
*bs
, QIOChannelSocket
*sioc
,
150 static void nbd_clear_bdrvstate(BDRVNBDState
*s
)
152 object_unref(OBJECT(s
->tlscreds
));
153 qapi_free_SocketAddress(s
->saddr
);
157 g_free(s
->tlscredsid
);
158 s
->tlscredsid
= NULL
;
159 g_free(s
->x_dirty_bitmap
);
160 s
->x_dirty_bitmap
= NULL
;
163 static void nbd_channel_error(BDRVNBDState
*s
, int ret
)
166 if (s
->state
== NBD_CLIENT_CONNECTED
) {
167 s
->state
= s
->reconnect_delay
? NBD_CLIENT_CONNECTING_WAIT
:
168 NBD_CLIENT_CONNECTING_NOWAIT
;
171 if (s
->state
== NBD_CLIENT_CONNECTED
) {
172 qio_channel_shutdown(s
->ioc
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
174 s
->state
= NBD_CLIENT_QUIT
;
178 static void nbd_recv_coroutines_wake_all(BDRVNBDState
*s
)
182 for (i
= 0; i
< MAX_NBD_REQUESTS
; i
++) {
183 NBDClientRequest
*req
= &s
->requests
[i
];
185 if (req
->coroutine
&& req
->receiving
) {
186 aio_co_wake(req
->coroutine
);
191 static void nbd_client_detach_aio_context(BlockDriverState
*bs
)
193 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
195 qio_channel_detach_aio_context(QIO_CHANNEL(s
->ioc
));
198 static void nbd_client_attach_aio_context_bh(void *opaque
)
200 BlockDriverState
*bs
= opaque
;
201 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
204 * The node is still drained, so we know the coroutine has yielded in
205 * nbd_read_eof(), the only place where bs->in_flight can reach 0, or it is
206 * entered for the first time. Both places are safe for entering the
209 qemu_aio_coroutine_enter(bs
->aio_context
, s
->connection_co
);
210 bdrv_dec_in_flight(bs
);
213 static void nbd_client_attach_aio_context(BlockDriverState
*bs
,
214 AioContext
*new_context
)
216 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
219 * s->connection_co is either yielded from nbd_receive_reply or from
220 * nbd_co_reconnect_loop()
222 if (s
->state
== NBD_CLIENT_CONNECTED
) {
223 qio_channel_attach_aio_context(QIO_CHANNEL(s
->ioc
), new_context
);
226 bdrv_inc_in_flight(bs
);
229 * Need to wait here for the BH to run because the BH must run while the
230 * node is still drained.
232 aio_wait_bh_oneshot(new_context
, nbd_client_attach_aio_context_bh
, bs
);
235 static void coroutine_fn
nbd_client_co_drain_begin(BlockDriverState
*bs
)
237 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
240 if (s
->connection_co_sleep_ns_state
) {
241 qemu_co_sleep_wake(s
->connection_co_sleep_ns_state
);
244 nbd_co_establish_connection_cancel(bs
, false);
247 static void coroutine_fn
nbd_client_co_drain_end(BlockDriverState
*bs
)
249 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
252 if (s
->wait_drained_end
) {
253 s
->wait_drained_end
= false;
254 aio_co_wake(s
->connection_co
);
259 static void nbd_teardown_connection(BlockDriverState
*bs
)
261 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
264 /* finish any pending coroutines */
265 qio_channel_shutdown(s
->ioc
, QIO_CHANNEL_SHUTDOWN_BOTH
, NULL
);
266 } else if (s
->sioc
) {
267 /* abort negotiation */
268 qio_channel_shutdown(QIO_CHANNEL(s
->sioc
), QIO_CHANNEL_SHUTDOWN_BOTH
,
272 s
->state
= NBD_CLIENT_QUIT
;
273 if (s
->connection_co
) {
274 if (s
->connection_co_sleep_ns_state
) {
275 qemu_co_sleep_wake(s
->connection_co_sleep_ns_state
);
277 nbd_co_establish_connection_cancel(bs
, true);
279 if (qemu_in_coroutine()) {
280 s
->teardown_co
= qemu_coroutine_self();
281 /* connection_co resumes us when it terminates */
282 qemu_coroutine_yield();
283 s
->teardown_co
= NULL
;
285 BDRV_POLL_WHILE(bs
, s
->connection_co
);
287 assert(!s
->connection_co
);
290 static bool nbd_client_connecting(BDRVNBDState
*s
)
292 return s
->state
== NBD_CLIENT_CONNECTING_WAIT
||
293 s
->state
== NBD_CLIENT_CONNECTING_NOWAIT
;
296 static bool nbd_client_connecting_wait(BDRVNBDState
*s
)
298 return s
->state
== NBD_CLIENT_CONNECTING_WAIT
;
301 static void connect_bh(void *opaque
)
303 BDRVNBDState
*state
= opaque
;
305 assert(state
->wait_connect
);
306 state
->wait_connect
= false;
307 aio_co_wake(state
->connection_co
);
310 static void nbd_init_connect_thread(BDRVNBDState
*s
)
312 s
->connect_thread
= g_new(NBDConnectThread
, 1);
314 *s
->connect_thread
= (NBDConnectThread
) {
315 .saddr
= QAPI_CLONE(SocketAddress
, s
->saddr
),
316 .state
= CONNECT_THREAD_NONE
,
317 .bh_func
= connect_bh
,
321 qemu_mutex_init(&s
->connect_thread
->mutex
);
324 static void nbd_free_connect_thread(NBDConnectThread
*thr
)
327 qio_channel_close(QIO_CHANNEL(thr
->sioc
), NULL
);
329 error_free(thr
->err
);
330 qapi_free_SocketAddress(thr
->saddr
);
334 static void *connect_thread_func(void *opaque
)
336 NBDConnectThread
*thr
= opaque
;
338 bool do_free
= false;
340 thr
->sioc
= qio_channel_socket_new();
342 error_free(thr
->err
);
344 ret
= qio_channel_socket_connect_sync(thr
->sioc
, thr
->saddr
, &thr
->err
);
346 object_unref(OBJECT(thr
->sioc
));
350 qemu_mutex_lock(&thr
->mutex
);
352 switch (thr
->state
) {
353 case CONNECT_THREAD_RUNNING
:
354 thr
->state
= ret
< 0 ? CONNECT_THREAD_FAIL
: CONNECT_THREAD_SUCCESS
;
356 aio_bh_schedule_oneshot(thr
->bh_ctx
, thr
->bh_func
, thr
->bh_opaque
);
358 /* play safe, don't reuse bh_ctx on further connection attempts */
362 case CONNECT_THREAD_RUNNING_DETACHED
:
369 qemu_mutex_unlock(&thr
->mutex
);
372 nbd_free_connect_thread(thr
);
378 static QIOChannelSocket
*coroutine_fn
379 nbd_co_establish_connection(BlockDriverState
*bs
, Error
**errp
)
382 BDRVNBDState
*s
= bs
->opaque
;
383 QIOChannelSocket
*res
;
384 NBDConnectThread
*thr
= s
->connect_thread
;
386 qemu_mutex_lock(&thr
->mutex
);
388 switch (thr
->state
) {
389 case CONNECT_THREAD_FAIL
:
390 case CONNECT_THREAD_NONE
:
391 error_free(thr
->err
);
393 thr
->state
= CONNECT_THREAD_RUNNING
;
394 qemu_thread_create(&thread
, "nbd-connect",
395 connect_thread_func
, thr
, QEMU_THREAD_DETACHED
);
397 case CONNECT_THREAD_SUCCESS
:
398 /* Previous attempt finally succeeded in background */
399 thr
->state
= CONNECT_THREAD_NONE
;
402 qemu_mutex_unlock(&thr
->mutex
);
404 case CONNECT_THREAD_RUNNING
:
405 /* Already running, will wait */
411 thr
->bh_ctx
= qemu_get_current_aio_context();
413 qemu_mutex_unlock(&thr
->mutex
);
417 * We are going to wait for connect-thread finish, but
418 * nbd_client_co_drain_begin() can interrupt.
420 * Note that wait_connect variable is not visible for connect-thread. It
421 * doesn't need mutex protection, it used only inside home aio context of
424 s
->wait_connect
= true;
425 qemu_coroutine_yield();
427 qemu_mutex_lock(&thr
->mutex
);
429 switch (thr
->state
) {
430 case CONNECT_THREAD_SUCCESS
:
431 case CONNECT_THREAD_FAIL
:
432 thr
->state
= CONNECT_THREAD_NONE
;
433 error_propagate(errp
, thr
->err
);
438 case CONNECT_THREAD_RUNNING
:
439 case CONNECT_THREAD_RUNNING_DETACHED
:
441 * Obviously, drained section wants to start. Report the attempt as
442 * failed. Still connect thread is executing in background, and its
443 * result may be used for next connection attempt.
446 error_setg(errp
, "Connection attempt cancelled by other operation");
449 case CONNECT_THREAD_NONE
:
451 * Impossible. We've seen this thread running. So it should be
452 * running or at least give some results.
460 qemu_mutex_unlock(&thr
->mutex
);
466 * nbd_co_establish_connection_cancel
467 * Cancel nbd_co_establish_connection asynchronously: it will finish soon, to
468 * allow drained section to begin.
470 * If detach is true, also cleanup the state (or if thread is running, move it
471 * to CONNECT_THREAD_RUNNING_DETACHED state). s->connect_thread becomes NULL if
474 static void nbd_co_establish_connection_cancel(BlockDriverState
*bs
,
477 BDRVNBDState
*s
= bs
->opaque
;
478 NBDConnectThread
*thr
= s
->connect_thread
;
480 bool do_free
= false;
482 qemu_mutex_lock(&thr
->mutex
);
484 if (thr
->state
== CONNECT_THREAD_RUNNING
) {
485 /* We can cancel only in running state, when bh is not yet scheduled */
487 if (s
->wait_connect
) {
488 s
->wait_connect
= false;
492 thr
->state
= CONNECT_THREAD_RUNNING_DETACHED
;
493 s
->connect_thread
= NULL
;
499 qemu_mutex_unlock(&thr
->mutex
);
502 nbd_free_connect_thread(thr
);
503 s
->connect_thread
= NULL
;
507 aio_co_wake(s
->connection_co
);
511 static coroutine_fn
void nbd_reconnect_attempt(BDRVNBDState
*s
)
514 Error
*local_err
= NULL
;
515 QIOChannelSocket
*sioc
;
517 if (!nbd_client_connecting(s
)) {
521 /* Wait for completion of all in-flight requests */
523 qemu_co_mutex_lock(&s
->send_mutex
);
525 while (s
->in_flight
> 0) {
526 qemu_co_mutex_unlock(&s
->send_mutex
);
527 nbd_recv_coroutines_wake_all(s
);
528 s
->wait_in_flight
= true;
529 qemu_coroutine_yield();
530 s
->wait_in_flight
= false;
531 qemu_co_mutex_lock(&s
->send_mutex
);
534 qemu_co_mutex_unlock(&s
->send_mutex
);
536 if (!nbd_client_connecting(s
)) {
541 * Now we are sure that nobody is accessing the channel, and no one will
542 * try until we set the state to CONNECTED.
545 /* Finalize previous connection if any */
547 nbd_client_detach_aio_context(s
->bs
);
548 object_unref(OBJECT(s
->sioc
));
550 object_unref(OBJECT(s
->ioc
));
554 sioc
= nbd_co_establish_connection(s
->bs
, &local_err
);
560 bdrv_dec_in_flight(s
->bs
);
562 ret
= nbd_client_handshake(s
->bs
, sioc
, &local_err
);
565 s
->wait_drained_end
= true;
568 * We may be entered once from nbd_client_attach_aio_context_bh
569 * and then from nbd_client_co_drain_end. So here is a loop.
571 qemu_coroutine_yield();
574 bdrv_inc_in_flight(s
->bs
);
577 s
->connect_status
= ret
;
578 error_free(s
->connect_err
);
579 s
->connect_err
= NULL
;
580 error_propagate(&s
->connect_err
, local_err
);
583 /* successfully connected */
584 s
->state
= NBD_CLIENT_CONNECTED
;
585 qemu_co_queue_restart_all(&s
->free_sema
);
589 static coroutine_fn
void nbd_co_reconnect_loop(BDRVNBDState
*s
)
591 uint64_t start_time_ns
= qemu_clock_get_ns(QEMU_CLOCK_REALTIME
);
592 uint64_t delay_ns
= s
->reconnect_delay
* NANOSECONDS_PER_SECOND
;
593 uint64_t timeout
= 1 * NANOSECONDS_PER_SECOND
;
594 uint64_t max_timeout
= 16 * NANOSECONDS_PER_SECOND
;
596 nbd_reconnect_attempt(s
);
598 while (nbd_client_connecting(s
)) {
599 if (s
->state
== NBD_CLIENT_CONNECTING_WAIT
&&
600 qemu_clock_get_ns(QEMU_CLOCK_REALTIME
) - start_time_ns
> delay_ns
)
602 s
->state
= NBD_CLIENT_CONNECTING_NOWAIT
;
603 qemu_co_queue_restart_all(&s
->free_sema
);
607 bdrv_dec_in_flight(s
->bs
);
608 s
->wait_drained_end
= true;
611 * We may be entered once from nbd_client_attach_aio_context_bh
612 * and then from nbd_client_co_drain_end. So here is a loop.
614 qemu_coroutine_yield();
616 bdrv_inc_in_flight(s
->bs
);
618 qemu_co_sleep_ns_wakeable(QEMU_CLOCK_REALTIME
, timeout
,
619 &s
->connection_co_sleep_ns_state
);
620 if (timeout
< max_timeout
) {
625 nbd_reconnect_attempt(s
);
629 static coroutine_fn
void nbd_connection_entry(void *opaque
)
631 BDRVNBDState
*s
= opaque
;
634 Error
*local_err
= NULL
;
636 while (s
->state
!= NBD_CLIENT_QUIT
) {
638 * The NBD client can only really be considered idle when it has
639 * yielded from qio_channel_readv_all_eof(), waiting for data. This is
640 * the point where the additional scheduled coroutine entry happens
641 * after nbd_client_attach_aio_context().
643 * Therefore we keep an additional in_flight reference all the time and
644 * only drop it temporarily here.
647 if (nbd_client_connecting(s
)) {
648 nbd_co_reconnect_loop(s
);
651 if (s
->state
!= NBD_CLIENT_CONNECTED
) {
655 assert(s
->reply
.handle
== 0);
656 ret
= nbd_receive_reply(s
->bs
, s
->ioc
, &s
->reply
, &local_err
);
659 trace_nbd_read_reply_entry_fail(ret
, error_get_pretty(local_err
));
660 error_free(local_err
);
664 nbd_channel_error(s
, ret
? ret
: -EIO
);
669 * There's no need for a mutex on the receive side, because the
670 * handler acts as a synchronization point and ensures that only
671 * one coroutine is called until the reply finishes.
673 i
= HANDLE_TO_INDEX(s
, s
->reply
.handle
);
674 if (i
>= MAX_NBD_REQUESTS
||
675 !s
->requests
[i
].coroutine
||
676 !s
->requests
[i
].receiving
||
677 (nbd_reply_is_structured(&s
->reply
) && !s
->info
.structured_reply
))
679 nbd_channel_error(s
, -EINVAL
);
684 * We're woken up again by the request itself. Note that there
685 * is no race between yielding and reentering connection_co. This
688 * - if the request runs on the same AioContext, it is only
689 * entered after we yield
691 * - if the request runs on a different AioContext, reentering
692 * connection_co happens through a bottom half, which can only
693 * run after we yield.
695 aio_co_wake(s
->requests
[i
].coroutine
);
696 qemu_coroutine_yield();
699 qemu_co_queue_restart_all(&s
->free_sema
);
700 nbd_recv_coroutines_wake_all(s
);
701 bdrv_dec_in_flight(s
->bs
);
703 s
->connection_co
= NULL
;
705 nbd_client_detach_aio_context(s
->bs
);
706 object_unref(OBJECT(s
->sioc
));
708 object_unref(OBJECT(s
->ioc
));
712 if (s
->teardown_co
) {
713 aio_co_wake(s
->teardown_co
);
718 static int nbd_co_send_request(BlockDriverState
*bs
,
722 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
725 qemu_co_mutex_lock(&s
->send_mutex
);
726 while (s
->in_flight
== MAX_NBD_REQUESTS
|| nbd_client_connecting_wait(s
)) {
727 qemu_co_queue_wait(&s
->free_sema
, &s
->send_mutex
);
730 if (s
->state
!= NBD_CLIENT_CONNECTED
) {
737 for (i
= 0; i
< MAX_NBD_REQUESTS
; i
++) {
738 if (s
->requests
[i
].coroutine
== NULL
) {
743 g_assert(qemu_in_coroutine());
744 assert(i
< MAX_NBD_REQUESTS
);
746 s
->requests
[i
].coroutine
= qemu_coroutine_self();
747 s
->requests
[i
].offset
= request
->from
;
748 s
->requests
[i
].receiving
= false;
750 request
->handle
= INDEX_TO_HANDLE(s
, i
);
755 qio_channel_set_cork(s
->ioc
, true);
756 rc
= nbd_send_request(s
->ioc
, request
);
757 if (rc
>= 0 && s
->state
== NBD_CLIENT_CONNECTED
) {
758 if (qio_channel_writev_all(s
->ioc
, qiov
->iov
, qiov
->niov
,
762 } else if (rc
>= 0) {
765 qio_channel_set_cork(s
->ioc
, false);
767 rc
= nbd_send_request(s
->ioc
, request
);
772 nbd_channel_error(s
, rc
);
774 s
->requests
[i
].coroutine
= NULL
;
777 if (s
->in_flight
== 0 && s
->wait_in_flight
) {
778 aio_co_wake(s
->connection_co
);
780 qemu_co_queue_next(&s
->free_sema
);
783 qemu_co_mutex_unlock(&s
->send_mutex
);
787 static inline uint16_t payload_advance16(uint8_t **payload
)
790 return lduw_be_p(*payload
- 2);
793 static inline uint32_t payload_advance32(uint8_t **payload
)
796 return ldl_be_p(*payload
- 4);
799 static inline uint64_t payload_advance64(uint8_t **payload
)
802 return ldq_be_p(*payload
- 8);
805 static int nbd_parse_offset_hole_payload(BDRVNBDState
*s
,
806 NBDStructuredReplyChunk
*chunk
,
807 uint8_t *payload
, uint64_t orig_offset
,
808 QEMUIOVector
*qiov
, Error
**errp
)
813 if (chunk
->length
!= sizeof(offset
) + sizeof(hole_size
)) {
814 error_setg(errp
, "Protocol error: invalid payload for "
815 "NBD_REPLY_TYPE_OFFSET_HOLE");
819 offset
= payload_advance64(&payload
);
820 hole_size
= payload_advance32(&payload
);
822 if (!hole_size
|| offset
< orig_offset
|| hole_size
> qiov
->size
||
823 offset
> orig_offset
+ qiov
->size
- hole_size
) {
824 error_setg(errp
, "Protocol error: server sent chunk exceeding requested"
828 if (s
->info
.min_block
&&
829 !QEMU_IS_ALIGNED(hole_size
, s
->info
.min_block
)) {
830 trace_nbd_structured_read_compliance("hole");
833 qemu_iovec_memset(qiov
, offset
- orig_offset
, 0, hole_size
);
839 * nbd_parse_blockstatus_payload
840 * Based on our request, we expect only one extent in reply, for the
841 * base:allocation context.
843 static int nbd_parse_blockstatus_payload(BDRVNBDState
*s
,
844 NBDStructuredReplyChunk
*chunk
,
845 uint8_t *payload
, uint64_t orig_length
,
846 NBDExtent
*extent
, Error
**errp
)
850 /* The server succeeded, so it must have sent [at least] one extent */
851 if (chunk
->length
< sizeof(context_id
) + sizeof(*extent
)) {
852 error_setg(errp
, "Protocol error: invalid payload for "
853 "NBD_REPLY_TYPE_BLOCK_STATUS");
857 context_id
= payload_advance32(&payload
);
858 if (s
->info
.context_id
!= context_id
) {
859 error_setg(errp
, "Protocol error: unexpected context id %d for "
860 "NBD_REPLY_TYPE_BLOCK_STATUS, when negotiated context "
861 "id is %d", context_id
,
866 extent
->length
= payload_advance32(&payload
);
867 extent
->flags
= payload_advance32(&payload
);
869 if (extent
->length
== 0) {
870 error_setg(errp
, "Protocol error: server sent status chunk with "
876 * A server sending unaligned block status is in violation of the
877 * protocol, but as qemu-nbd 3.1 is such a server (at least for
878 * POSIX files that are not a multiple of 512 bytes, since qemu
879 * rounds files up to 512-byte multiples but lseek(SEEK_HOLE)
880 * still sees an implicit hole beyond the real EOF), it's nicer to
881 * work around the misbehaving server. If the request included
882 * more than the final unaligned block, truncate it back to an
883 * aligned result; if the request was only the final block, round
884 * up to the full block and change the status to fully-allocated
885 * (always a safe status, even if it loses information).
887 if (s
->info
.min_block
&& !QEMU_IS_ALIGNED(extent
->length
,
888 s
->info
.min_block
)) {
889 trace_nbd_parse_blockstatus_compliance("extent length is unaligned");
890 if (extent
->length
> s
->info
.min_block
) {
891 extent
->length
= QEMU_ALIGN_DOWN(extent
->length
,
894 extent
->length
= s
->info
.min_block
;
900 * We used NBD_CMD_FLAG_REQ_ONE, so the server should not have
901 * sent us any more than one extent, nor should it have included
902 * status beyond our request in that extent. However, it's easy
903 * enough to ignore the server's noncompliance without killing the
904 * connection; just ignore trailing extents, and clamp things to
905 * the length of our request.
907 if (chunk
->length
> sizeof(context_id
) + sizeof(*extent
)) {
908 trace_nbd_parse_blockstatus_compliance("more than one extent");
910 if (extent
->length
> orig_length
) {
911 extent
->length
= orig_length
;
912 trace_nbd_parse_blockstatus_compliance("extent length too large");
919 * nbd_parse_error_payload
920 * on success @errp contains message describing nbd error reply
922 static int nbd_parse_error_payload(NBDStructuredReplyChunk
*chunk
,
923 uint8_t *payload
, int *request_ret
,
927 uint16_t message_size
;
929 assert(chunk
->type
& (1 << 15));
931 if (chunk
->length
< sizeof(error
) + sizeof(message_size
)) {
933 "Protocol error: invalid payload for structured error");
937 error
= nbd_errno_to_system_errno(payload_advance32(&payload
));
939 error_setg(errp
, "Protocol error: server sent structured error chunk "
944 *request_ret
= -error
;
945 message_size
= payload_advance16(&payload
);
947 if (message_size
> chunk
->length
- sizeof(error
) - sizeof(message_size
)) {
948 error_setg(errp
, "Protocol error: server sent structured error chunk "
949 "with incorrect message size");
953 /* TODO: Add a trace point to mention the server complaint */
955 /* TODO handle ERROR_OFFSET */
960 static int nbd_co_receive_offset_data_payload(BDRVNBDState
*s
,
961 uint64_t orig_offset
,
962 QEMUIOVector
*qiov
, Error
**errp
)
964 QEMUIOVector sub_qiov
;
968 NBDStructuredReplyChunk
*chunk
= &s
->reply
.structured
;
970 assert(nbd_reply_is_structured(&s
->reply
));
972 /* The NBD spec requires at least one byte of payload */
973 if (chunk
->length
<= sizeof(offset
)) {
974 error_setg(errp
, "Protocol error: invalid payload for "
975 "NBD_REPLY_TYPE_OFFSET_DATA");
979 if (nbd_read64(s
->ioc
, &offset
, "OFFSET_DATA offset", errp
) < 0) {
983 data_size
= chunk
->length
- sizeof(offset
);
985 if (offset
< orig_offset
|| data_size
> qiov
->size
||
986 offset
> orig_offset
+ qiov
->size
- data_size
) {
987 error_setg(errp
, "Protocol error: server sent chunk exceeding requested"
991 if (s
->info
.min_block
&& !QEMU_IS_ALIGNED(data_size
, s
->info
.min_block
)) {
992 trace_nbd_structured_read_compliance("data");
995 qemu_iovec_init(&sub_qiov
, qiov
->niov
);
996 qemu_iovec_concat(&sub_qiov
, qiov
, offset
- orig_offset
, data_size
);
997 ret
= qio_channel_readv_all(s
->ioc
, sub_qiov
.iov
, sub_qiov
.niov
, errp
);
998 qemu_iovec_destroy(&sub_qiov
);
1000 return ret
< 0 ? -EIO
: 0;
1003 #define NBD_MAX_MALLOC_PAYLOAD 1000
1004 static coroutine_fn
int nbd_co_receive_structured_payload(
1005 BDRVNBDState
*s
, void **payload
, Error
**errp
)
1010 assert(nbd_reply_is_structured(&s
->reply
));
1012 len
= s
->reply
.structured
.length
;
1018 if (payload
== NULL
) {
1019 error_setg(errp
, "Unexpected structured payload");
1023 if (len
> NBD_MAX_MALLOC_PAYLOAD
) {
1024 error_setg(errp
, "Payload too large");
1028 *payload
= g_new(char, len
);
1029 ret
= nbd_read(s
->ioc
, *payload
, len
, "structured payload", errp
);
1040 * nbd_co_do_receive_one_chunk
1042 * set request_ret to received reply error
1043 * if qiov is not NULL: read payload to @qiov
1044 * for structured reply chunk:
1045 * if error chunk: read payload, set @request_ret, do not set @payload
1046 * else if offset_data chunk: read payload data to @qiov, do not set @payload
1047 * else: read payload to @payload
1049 * If function fails, @errp contains corresponding error message, and the
1050 * connection with the server is suspect. If it returns 0, then the
1051 * transaction succeeded (although @request_ret may be a negative errno
1052 * corresponding to the server's error reply), and errp is unchanged.
1054 static coroutine_fn
int nbd_co_do_receive_one_chunk(
1055 BDRVNBDState
*s
, uint64_t handle
, bool only_structured
,
1056 int *request_ret
, QEMUIOVector
*qiov
, void **payload
, Error
**errp
)
1059 int i
= HANDLE_TO_INDEX(s
, handle
);
1060 void *local_payload
= NULL
;
1061 NBDStructuredReplyChunk
*chunk
;
1068 /* Wait until we're woken up by nbd_connection_entry. */
1069 s
->requests
[i
].receiving
= true;
1070 qemu_coroutine_yield();
1071 s
->requests
[i
].receiving
= false;
1072 if (s
->state
!= NBD_CLIENT_CONNECTED
) {
1073 error_setg(errp
, "Connection closed");
1078 assert(s
->reply
.handle
== handle
);
1080 if (nbd_reply_is_simple(&s
->reply
)) {
1081 if (only_structured
) {
1082 error_setg(errp
, "Protocol error: simple reply when structured "
1083 "reply chunk was expected");
1087 *request_ret
= -nbd_errno_to_system_errno(s
->reply
.simple
.error
);
1088 if (*request_ret
< 0 || !qiov
) {
1092 return qio_channel_readv_all(s
->ioc
, qiov
->iov
, qiov
->niov
,
1093 errp
) < 0 ? -EIO
: 0;
1096 /* handle structured reply chunk */
1097 assert(s
->info
.structured_reply
);
1098 chunk
= &s
->reply
.structured
;
1100 if (chunk
->type
== NBD_REPLY_TYPE_NONE
) {
1101 if (!(chunk
->flags
& NBD_REPLY_FLAG_DONE
)) {
1102 error_setg(errp
, "Protocol error: NBD_REPLY_TYPE_NONE chunk without"
1103 " NBD_REPLY_FLAG_DONE flag set");
1106 if (chunk
->length
) {
1107 error_setg(errp
, "Protocol error: NBD_REPLY_TYPE_NONE chunk with"
1114 if (chunk
->type
== NBD_REPLY_TYPE_OFFSET_DATA
) {
1116 error_setg(errp
, "Unexpected NBD_REPLY_TYPE_OFFSET_DATA chunk");
1120 return nbd_co_receive_offset_data_payload(s
, s
->requests
[i
].offset
,
1124 if (nbd_reply_type_is_error(chunk
->type
)) {
1125 payload
= &local_payload
;
1128 ret
= nbd_co_receive_structured_payload(s
, payload
, errp
);
1133 if (nbd_reply_type_is_error(chunk
->type
)) {
1134 ret
= nbd_parse_error_payload(chunk
, local_payload
, request_ret
, errp
);
1135 g_free(local_payload
);
1143 * nbd_co_receive_one_chunk
1144 * Read reply, wake up connection_co and set s->quit if needed.
1145 * Return value is a fatal error code or normal nbd reply error code
1147 static coroutine_fn
int nbd_co_receive_one_chunk(
1148 BDRVNBDState
*s
, uint64_t handle
, bool only_structured
,
1149 int *request_ret
, QEMUIOVector
*qiov
, NBDReply
*reply
, void **payload
,
1152 int ret
= nbd_co_do_receive_one_chunk(s
, handle
, only_structured
,
1153 request_ret
, qiov
, payload
, errp
);
1156 memset(reply
, 0, sizeof(*reply
));
1157 nbd_channel_error(s
, ret
);
1159 /* For assert at loop start in nbd_connection_entry */
1162 s
->reply
.handle
= 0;
1164 if (s
->connection_co
&& !s
->wait_in_flight
) {
1166 * We must check s->wait_in_flight, because we may entered by
1167 * nbd_recv_coroutines_wake_all(), in this case we should not
1168 * wake connection_co here, it will woken by last request.
1170 aio_co_wake(s
->connection_co
);
1176 typedef struct NBDReplyChunkIter
{
1180 bool done
, only_structured
;
1181 } NBDReplyChunkIter
;
1183 static void nbd_iter_channel_error(NBDReplyChunkIter
*iter
,
1184 int ret
, Error
**local_err
)
1186 assert(local_err
&& *local_err
);
1191 error_propagate(&iter
->err
, *local_err
);
1193 error_free(*local_err
);
1199 static void nbd_iter_request_error(NBDReplyChunkIter
*iter
, int ret
)
1203 if (!iter
->request_ret
) {
1204 iter
->request_ret
= ret
;
1209 * NBD_FOREACH_REPLY_CHUNK
1210 * The pointer stored in @payload requires g_free() to free it.
1212 #define NBD_FOREACH_REPLY_CHUNK(s, iter, handle, structured, \
1213 qiov, reply, payload) \
1214 for (iter = (NBDReplyChunkIter) { .only_structured = structured }; \
1215 nbd_reply_chunk_iter_receive(s, &iter, handle, qiov, reply, payload);)
1218 * nbd_reply_chunk_iter_receive
1219 * The pointer stored in @payload requires g_free() to free it.
1221 static bool nbd_reply_chunk_iter_receive(BDRVNBDState
*s
,
1222 NBDReplyChunkIter
*iter
,
1224 QEMUIOVector
*qiov
, NBDReply
*reply
,
1227 int ret
, request_ret
;
1228 NBDReply local_reply
;
1229 NBDStructuredReplyChunk
*chunk
;
1230 Error
*local_err
= NULL
;
1231 if (s
->state
!= NBD_CLIENT_CONNECTED
) {
1232 error_setg(&local_err
, "Connection closed");
1233 nbd_iter_channel_error(iter
, -EIO
, &local_err
);
1238 /* Previous iteration was last. */
1242 if (reply
== NULL
) {
1243 reply
= &local_reply
;
1246 ret
= nbd_co_receive_one_chunk(s
, handle
, iter
->only_structured
,
1247 &request_ret
, qiov
, reply
, payload
,
1250 nbd_iter_channel_error(iter
, ret
, &local_err
);
1251 } else if (request_ret
< 0) {
1252 nbd_iter_request_error(iter
, request_ret
);
1255 /* Do not execute the body of NBD_FOREACH_REPLY_CHUNK for simple reply. */
1256 if (nbd_reply_is_simple(reply
) || s
->state
!= NBD_CLIENT_CONNECTED
) {
1260 chunk
= &reply
->structured
;
1261 iter
->only_structured
= true;
1263 if (chunk
->type
== NBD_REPLY_TYPE_NONE
) {
1264 /* NBD_REPLY_FLAG_DONE is already checked in nbd_co_receive_one_chunk */
1265 assert(chunk
->flags
& NBD_REPLY_FLAG_DONE
);
1269 if (chunk
->flags
& NBD_REPLY_FLAG_DONE
) {
1270 /* This iteration is last. */
1274 /* Execute the loop body */
1278 s
->requests
[HANDLE_TO_INDEX(s
, handle
)].coroutine
= NULL
;
1280 qemu_co_mutex_lock(&s
->send_mutex
);
1282 if (s
->in_flight
== 0 && s
->wait_in_flight
) {
1283 aio_co_wake(s
->connection_co
);
1285 qemu_co_queue_next(&s
->free_sema
);
1287 qemu_co_mutex_unlock(&s
->send_mutex
);
1292 static int nbd_co_receive_return_code(BDRVNBDState
*s
, uint64_t handle
,
1293 int *request_ret
, Error
**errp
)
1295 NBDReplyChunkIter iter
;
1297 NBD_FOREACH_REPLY_CHUNK(s
, iter
, handle
, false, NULL
, NULL
, NULL
) {
1298 /* nbd_reply_chunk_iter_receive does all the work */
1301 error_propagate(errp
, iter
.err
);
1302 *request_ret
= iter
.request_ret
;
1306 static int nbd_co_receive_cmdread_reply(BDRVNBDState
*s
, uint64_t handle
,
1307 uint64_t offset
, QEMUIOVector
*qiov
,
1308 int *request_ret
, Error
**errp
)
1310 NBDReplyChunkIter iter
;
1312 void *payload
= NULL
;
1313 Error
*local_err
= NULL
;
1315 NBD_FOREACH_REPLY_CHUNK(s
, iter
, handle
, s
->info
.structured_reply
,
1316 qiov
, &reply
, &payload
)
1319 NBDStructuredReplyChunk
*chunk
= &reply
.structured
;
1321 assert(nbd_reply_is_structured(&reply
));
1323 switch (chunk
->type
) {
1324 case NBD_REPLY_TYPE_OFFSET_DATA
:
1326 * special cased in nbd_co_receive_one_chunk, data is already
1330 case NBD_REPLY_TYPE_OFFSET_HOLE
:
1331 ret
= nbd_parse_offset_hole_payload(s
, &reply
.structured
, payload
,
1332 offset
, qiov
, &local_err
);
1334 nbd_channel_error(s
, ret
);
1335 nbd_iter_channel_error(&iter
, ret
, &local_err
);
1339 if (!nbd_reply_type_is_error(chunk
->type
)) {
1340 /* not allowed reply type */
1341 nbd_channel_error(s
, -EINVAL
);
1342 error_setg(&local_err
,
1343 "Unexpected reply type: %d (%s) for CMD_READ",
1344 chunk
->type
, nbd_reply_type_lookup(chunk
->type
));
1345 nbd_iter_channel_error(&iter
, -EINVAL
, &local_err
);
1353 error_propagate(errp
, iter
.err
);
1354 *request_ret
= iter
.request_ret
;
1358 static int nbd_co_receive_blockstatus_reply(BDRVNBDState
*s
,
1359 uint64_t handle
, uint64_t length
,
1361 int *request_ret
, Error
**errp
)
1363 NBDReplyChunkIter iter
;
1365 void *payload
= NULL
;
1366 Error
*local_err
= NULL
;
1367 bool received
= false;
1369 assert(!extent
->length
);
1370 NBD_FOREACH_REPLY_CHUNK(s
, iter
, handle
, false, NULL
, &reply
, &payload
) {
1372 NBDStructuredReplyChunk
*chunk
= &reply
.structured
;
1374 assert(nbd_reply_is_structured(&reply
));
1376 switch (chunk
->type
) {
1377 case NBD_REPLY_TYPE_BLOCK_STATUS
:
1379 nbd_channel_error(s
, -EINVAL
);
1380 error_setg(&local_err
, "Several BLOCK_STATUS chunks in reply");
1381 nbd_iter_channel_error(&iter
, -EINVAL
, &local_err
);
1385 ret
= nbd_parse_blockstatus_payload(s
, &reply
.structured
,
1386 payload
, length
, extent
,
1389 nbd_channel_error(s
, ret
);
1390 nbd_iter_channel_error(&iter
, ret
, &local_err
);
1394 if (!nbd_reply_type_is_error(chunk
->type
)) {
1395 nbd_channel_error(s
, -EINVAL
);
1396 error_setg(&local_err
,
1397 "Unexpected reply type: %d (%s) "
1398 "for CMD_BLOCK_STATUS",
1399 chunk
->type
, nbd_reply_type_lookup(chunk
->type
));
1400 nbd_iter_channel_error(&iter
, -EINVAL
, &local_err
);
1408 if (!extent
->length
&& !iter
.request_ret
) {
1409 error_setg(&local_err
, "Server did not reply with any status extents");
1410 nbd_iter_channel_error(&iter
, -EIO
, &local_err
);
1413 error_propagate(errp
, iter
.err
);
1414 *request_ret
= iter
.request_ret
;
1418 static int nbd_co_request(BlockDriverState
*bs
, NBDRequest
*request
,
1419 QEMUIOVector
*write_qiov
)
1421 int ret
, request_ret
;
1422 Error
*local_err
= NULL
;
1423 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1425 assert(request
->type
!= NBD_CMD_READ
);
1427 assert(request
->type
== NBD_CMD_WRITE
);
1428 assert(request
->len
== iov_size(write_qiov
->iov
, write_qiov
->niov
));
1430 assert(request
->type
!= NBD_CMD_WRITE
);
1434 ret
= nbd_co_send_request(bs
, request
, write_qiov
);
1439 ret
= nbd_co_receive_return_code(s
, request
->handle
,
1440 &request_ret
, &local_err
);
1442 trace_nbd_co_request_fail(request
->from
, request
->len
,
1443 request
->handle
, request
->flags
,
1445 nbd_cmd_lookup(request
->type
),
1446 ret
, error_get_pretty(local_err
));
1447 error_free(local_err
);
1450 } while (ret
< 0 && nbd_client_connecting_wait(s
));
1452 return ret
? ret
: request_ret
;
1455 static int nbd_client_co_preadv(BlockDriverState
*bs
, uint64_t offset
,
1456 uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1458 int ret
, request_ret
;
1459 Error
*local_err
= NULL
;
1460 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1461 NBDRequest request
= {
1462 .type
= NBD_CMD_READ
,
1467 assert(bytes
<= NBD_MAX_BUFFER_SIZE
);
1474 * Work around the fact that the block layer doesn't do
1475 * byte-accurate sizing yet - if the read exceeds the server's
1476 * advertised size because the block layer rounded size up, then
1477 * truncate the request to the server and tail-pad with zero.
1479 if (offset
>= s
->info
.size
) {
1480 assert(bytes
< BDRV_SECTOR_SIZE
);
1481 qemu_iovec_memset(qiov
, 0, 0, bytes
);
1484 if (offset
+ bytes
> s
->info
.size
) {
1485 uint64_t slop
= offset
+ bytes
- s
->info
.size
;
1487 assert(slop
< BDRV_SECTOR_SIZE
);
1488 qemu_iovec_memset(qiov
, bytes
- slop
, 0, slop
);
1489 request
.len
-= slop
;
1493 ret
= nbd_co_send_request(bs
, &request
, NULL
);
1498 ret
= nbd_co_receive_cmdread_reply(s
, request
.handle
, offset
, qiov
,
1499 &request_ret
, &local_err
);
1501 trace_nbd_co_request_fail(request
.from
, request
.len
, request
.handle
,
1502 request
.flags
, request
.type
,
1503 nbd_cmd_lookup(request
.type
),
1504 ret
, error_get_pretty(local_err
));
1505 error_free(local_err
);
1508 } while (ret
< 0 && nbd_client_connecting_wait(s
));
1510 return ret
? ret
: request_ret
;
1513 static int nbd_client_co_pwritev(BlockDriverState
*bs
, uint64_t offset
,
1514 uint64_t bytes
, QEMUIOVector
*qiov
, int flags
)
1516 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1517 NBDRequest request
= {
1518 .type
= NBD_CMD_WRITE
,
1523 assert(!(s
->info
.flags
& NBD_FLAG_READ_ONLY
));
1524 if (flags
& BDRV_REQ_FUA
) {
1525 assert(s
->info
.flags
& NBD_FLAG_SEND_FUA
);
1526 request
.flags
|= NBD_CMD_FLAG_FUA
;
1529 assert(bytes
<= NBD_MAX_BUFFER_SIZE
);
1534 return nbd_co_request(bs
, &request
, qiov
);
1537 static int nbd_client_co_pwrite_zeroes(BlockDriverState
*bs
, int64_t offset
,
1538 int bytes
, BdrvRequestFlags flags
)
1540 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1541 NBDRequest request
= {
1542 .type
= NBD_CMD_WRITE_ZEROES
,
1547 assert(!(s
->info
.flags
& NBD_FLAG_READ_ONLY
));
1548 if (!(s
->info
.flags
& NBD_FLAG_SEND_WRITE_ZEROES
)) {
1552 if (flags
& BDRV_REQ_FUA
) {
1553 assert(s
->info
.flags
& NBD_FLAG_SEND_FUA
);
1554 request
.flags
|= NBD_CMD_FLAG_FUA
;
1556 if (!(flags
& BDRV_REQ_MAY_UNMAP
)) {
1557 request
.flags
|= NBD_CMD_FLAG_NO_HOLE
;
1559 if (flags
& BDRV_REQ_NO_FALLBACK
) {
1560 assert(s
->info
.flags
& NBD_FLAG_SEND_FAST_ZERO
);
1561 request
.flags
|= NBD_CMD_FLAG_FAST_ZERO
;
1567 return nbd_co_request(bs
, &request
, NULL
);
1570 static int nbd_client_co_flush(BlockDriverState
*bs
)
1572 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1573 NBDRequest request
= { .type
= NBD_CMD_FLUSH
};
1575 if (!(s
->info
.flags
& NBD_FLAG_SEND_FLUSH
)) {
1582 return nbd_co_request(bs
, &request
, NULL
);
1585 static int nbd_client_co_pdiscard(BlockDriverState
*bs
, int64_t offset
,
1588 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1589 NBDRequest request
= {
1590 .type
= NBD_CMD_TRIM
,
1595 assert(!(s
->info
.flags
& NBD_FLAG_READ_ONLY
));
1596 if (!(s
->info
.flags
& NBD_FLAG_SEND_TRIM
) || !bytes
) {
1600 return nbd_co_request(bs
, &request
, NULL
);
1603 static int coroutine_fn
nbd_client_co_block_status(
1604 BlockDriverState
*bs
, bool want_zero
, int64_t offset
, int64_t bytes
,
1605 int64_t *pnum
, int64_t *map
, BlockDriverState
**file
)
1607 int ret
, request_ret
;
1608 NBDExtent extent
= { 0 };
1609 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1610 Error
*local_err
= NULL
;
1612 NBDRequest request
= {
1613 .type
= NBD_CMD_BLOCK_STATUS
,
1615 .len
= MIN(QEMU_ALIGN_DOWN(INT_MAX
, bs
->bl
.request_alignment
),
1616 MIN(bytes
, s
->info
.size
- offset
)),
1617 .flags
= NBD_CMD_FLAG_REQ_ONE
,
1620 if (!s
->info
.base_allocation
) {
1624 return BDRV_BLOCK_DATA
| BDRV_BLOCK_OFFSET_VALID
;
1628 * Work around the fact that the block layer doesn't do
1629 * byte-accurate sizing yet - if the status request exceeds the
1630 * server's advertised size because the block layer rounded size
1631 * up, we truncated the request to the server (above), or are
1632 * called on just the hole.
1634 if (offset
>= s
->info
.size
) {
1636 assert(bytes
< BDRV_SECTOR_SIZE
);
1637 /* Intentionally don't report offset_valid for the hole */
1638 return BDRV_BLOCK_ZERO
;
1641 if (s
->info
.min_block
) {
1642 assert(QEMU_IS_ALIGNED(request
.len
, s
->info
.min_block
));
1645 ret
= nbd_co_send_request(bs
, &request
, NULL
);
1650 ret
= nbd_co_receive_blockstatus_reply(s
, request
.handle
, bytes
,
1651 &extent
, &request_ret
,
1654 trace_nbd_co_request_fail(request
.from
, request
.len
, request
.handle
,
1655 request
.flags
, request
.type
,
1656 nbd_cmd_lookup(request
.type
),
1657 ret
, error_get_pretty(local_err
));
1658 error_free(local_err
);
1661 } while (ret
< 0 && nbd_client_connecting_wait(s
));
1663 if (ret
< 0 || request_ret
< 0) {
1664 return ret
? ret
: request_ret
;
1667 assert(extent
.length
);
1668 *pnum
= extent
.length
;
1671 return (extent
.flags
& NBD_STATE_HOLE
? 0 : BDRV_BLOCK_DATA
) |
1672 (extent
.flags
& NBD_STATE_ZERO
? BDRV_BLOCK_ZERO
: 0) |
1673 BDRV_BLOCK_OFFSET_VALID
;
1676 static int nbd_client_reopen_prepare(BDRVReopenState
*state
,
1677 BlockReopenQueue
*queue
, Error
**errp
)
1679 BDRVNBDState
*s
= (BDRVNBDState
*)state
->bs
->opaque
;
1681 if ((state
->flags
& BDRV_O_RDWR
) && (s
->info
.flags
& NBD_FLAG_READ_ONLY
)) {
1682 error_setg(errp
, "Can't reopen read-only NBD mount as read/write");
1688 static void nbd_client_close(BlockDriverState
*bs
)
1690 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1691 NBDRequest request
= { .type
= NBD_CMD_DISC
};
1694 nbd_send_request(s
->ioc
, &request
);
1697 nbd_teardown_connection(bs
);
1700 static QIOChannelSocket
*nbd_establish_connection(SocketAddress
*saddr
,
1704 QIOChannelSocket
*sioc
;
1706 sioc
= qio_channel_socket_new();
1707 qio_channel_set_name(QIO_CHANNEL(sioc
), "nbd-client");
1709 qio_channel_socket_connect_sync(sioc
, saddr
, errp
);
1711 object_unref(OBJECT(sioc
));
1715 qio_channel_set_delay(QIO_CHANNEL(sioc
), false);
1720 /* nbd_client_handshake takes ownership on sioc. On failure it is unref'ed. */
1721 static int nbd_client_handshake(BlockDriverState
*bs
, QIOChannelSocket
*sioc
,
1724 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
1725 AioContext
*aio_context
= bdrv_get_aio_context(bs
);
1728 trace_nbd_client_handshake(s
->export
);
1732 qio_channel_set_blocking(QIO_CHANNEL(sioc
), false, NULL
);
1733 qio_channel_attach_aio_context(QIO_CHANNEL(sioc
), aio_context
);
1735 s
->info
.request_sizes
= true;
1736 s
->info
.structured_reply
= true;
1737 s
->info
.base_allocation
= true;
1738 s
->info
.x_dirty_bitmap
= g_strdup(s
->x_dirty_bitmap
);
1739 s
->info
.name
= g_strdup(s
->export
?: "");
1740 ret
= nbd_receive_negotiate(aio_context
, QIO_CHANNEL(sioc
), s
->tlscreds
,
1741 s
->hostname
, &s
->ioc
, &s
->info
, errp
);
1742 g_free(s
->info
.x_dirty_bitmap
);
1743 g_free(s
->info
.name
);
1745 object_unref(OBJECT(sioc
));
1749 if (s
->x_dirty_bitmap
&& !s
->info
.base_allocation
) {
1750 error_setg(errp
, "requested x-dirty-bitmap %s not found",
1755 if (s
->info
.flags
& NBD_FLAG_READ_ONLY
) {
1756 ret
= bdrv_apply_auto_read_only(bs
, "NBD export is read-only", errp
);
1761 if (s
->info
.flags
& NBD_FLAG_SEND_FUA
) {
1762 bs
->supported_write_flags
= BDRV_REQ_FUA
;
1763 bs
->supported_zero_flags
|= BDRV_REQ_FUA
;
1765 if (s
->info
.flags
& NBD_FLAG_SEND_WRITE_ZEROES
) {
1766 bs
->supported_zero_flags
|= BDRV_REQ_MAY_UNMAP
;
1767 if (s
->info
.flags
& NBD_FLAG_SEND_FAST_ZERO
) {
1768 bs
->supported_zero_flags
|= BDRV_REQ_NO_FALLBACK
;
1773 s
->ioc
= QIO_CHANNEL(sioc
);
1774 object_ref(OBJECT(s
->ioc
));
1777 trace_nbd_client_handshake_success(s
->export
);
1783 * We have connected, but must fail for other reasons.
1784 * Send NBD_CMD_DISC as a courtesy to the server.
1787 NBDRequest request
= { .type
= NBD_CMD_DISC
};
1789 nbd_send_request(s
->ioc
?: QIO_CHANNEL(sioc
), &request
);
1791 object_unref(OBJECT(sioc
));
1799 * Parse nbd_open options
1802 static int nbd_parse_uri(const char *filename
, QDict
*options
)
1806 QueryParams
*qp
= NULL
;
1810 uri
= uri_parse(filename
);
1816 if (!g_strcmp0(uri
->scheme
, "nbd")) {
1818 } else if (!g_strcmp0(uri
->scheme
, "nbd+tcp")) {
1820 } else if (!g_strcmp0(uri
->scheme
, "nbd+unix")) {
1827 p
= uri
->path
? uri
->path
: "";
1832 qdict_put_str(options
, "export", p
);
1835 qp
= query_params_parse(uri
->query
);
1836 if (qp
->n
> 1 || (is_unix
&& !qp
->n
) || (!is_unix
&& qp
->n
)) {
1842 /* nbd+unix:///export?socket=path */
1843 if (uri
->server
|| uri
->port
|| strcmp(qp
->p
[0].name
, "socket")) {
1847 qdict_put_str(options
, "server.type", "unix");
1848 qdict_put_str(options
, "server.path", qp
->p
[0].value
);
1853 /* nbd[+tcp]://host[:port]/export */
1859 /* strip braces from literal IPv6 address */
1860 if (uri
->server
[0] == '[') {
1861 host
= qstring_from_substr(uri
->server
, 1,
1862 strlen(uri
->server
) - 1);
1864 host
= qstring_from_str(uri
->server
);
1867 qdict_put_str(options
, "server.type", "inet");
1868 qdict_put(options
, "server.host", host
);
1870 port_str
= g_strdup_printf("%d", uri
->port
?: NBD_DEFAULT_PORT
);
1871 qdict_put_str(options
, "server.port", port_str
);
1877 query_params_free(qp
);
1883 static bool nbd_has_filename_options_conflict(QDict
*options
, Error
**errp
)
1885 const QDictEntry
*e
;
1887 for (e
= qdict_first(options
); e
; e
= qdict_next(options
, e
)) {
1888 if (!strcmp(e
->key
, "host") ||
1889 !strcmp(e
->key
, "port") ||
1890 !strcmp(e
->key
, "path") ||
1891 !strcmp(e
->key
, "export") ||
1892 strstart(e
->key
, "server.", NULL
))
1894 error_setg(errp
, "Option '%s' cannot be used with a file name",
1903 static void nbd_parse_filename(const char *filename
, QDict
*options
,
1906 g_autofree
char *file
= NULL
;
1908 const char *host_spec
;
1909 const char *unixpath
;
1911 if (nbd_has_filename_options_conflict(options
, errp
)) {
1915 if (strstr(filename
, "://")) {
1916 int ret
= nbd_parse_uri(filename
, options
);
1918 error_setg(errp
, "No valid URL specified");
1923 file
= g_strdup(filename
);
1925 export_name
= strstr(file
, EN_OPTSTR
);
1927 if (export_name
[strlen(EN_OPTSTR
)] == 0) {
1930 export_name
[0] = 0; /* truncate 'file' */
1931 export_name
+= strlen(EN_OPTSTR
);
1933 qdict_put_str(options
, "export", export_name
);
1936 /* extract the host_spec - fail if it's not nbd:... */
1937 if (!strstart(file
, "nbd:", &host_spec
)) {
1938 error_setg(errp
, "File name string for NBD must start with 'nbd:'");
1946 /* are we a UNIX or TCP socket? */
1947 if (strstart(host_spec
, "unix:", &unixpath
)) {
1948 qdict_put_str(options
, "server.type", "unix");
1949 qdict_put_str(options
, "server.path", unixpath
);
1951 InetSocketAddress
*addr
= g_new(InetSocketAddress
, 1);
1953 if (inet_parse(addr
, host_spec
, errp
)) {
1957 qdict_put_str(options
, "server.type", "inet");
1958 qdict_put_str(options
, "server.host", addr
->host
);
1959 qdict_put_str(options
, "server.port", addr
->port
);
1961 qapi_free_InetSocketAddress(addr
);
1965 static bool nbd_process_legacy_socket_options(QDict
*output_options
,
1966 QemuOpts
*legacy_opts
,
1969 const char *path
= qemu_opt_get(legacy_opts
, "path");
1970 const char *host
= qemu_opt_get(legacy_opts
, "host");
1971 const char *port
= qemu_opt_get(legacy_opts
, "port");
1972 const QDictEntry
*e
;
1974 if (!path
&& !host
&& !port
) {
1978 for (e
= qdict_first(output_options
); e
; e
= qdict_next(output_options
, e
))
1980 if (strstart(e
->key
, "server.", NULL
)) {
1981 error_setg(errp
, "Cannot use 'server' and path/host/port at the "
1988 error_setg(errp
, "path and host may not be used at the same time");
1992 error_setg(errp
, "port may not be used without host");
1996 qdict_put_str(output_options
, "server.type", "unix");
1997 qdict_put_str(output_options
, "server.path", path
);
1999 qdict_put_str(output_options
, "server.type", "inet");
2000 qdict_put_str(output_options
, "server.host", host
);
2001 qdict_put_str(output_options
, "server.port",
2002 port
?: stringify(NBD_DEFAULT_PORT
));
2008 static SocketAddress
*nbd_config(BDRVNBDState
*s
, QDict
*options
,
2011 SocketAddress
*saddr
= NULL
;
2015 qdict_extract_subqdict(options
, &addr
, "server.");
2016 if (!qdict_size(addr
)) {
2017 error_setg(errp
, "NBD server address missing");
2021 iv
= qobject_input_visitor_new_flat_confused(addr
, errp
);
2026 if (!visit_type_SocketAddress(iv
, NULL
, &saddr
, errp
)) {
2031 qobject_unref(addr
);
2036 static QCryptoTLSCreds
*nbd_get_tls_creds(const char *id
, Error
**errp
)
2039 QCryptoTLSCreds
*creds
;
2041 obj
= object_resolve_path_component(
2042 object_get_objects_root(), id
);
2044 error_setg(errp
, "No TLS credentials with id '%s'",
2048 creds
= (QCryptoTLSCreds
*)
2049 object_dynamic_cast(obj
, TYPE_QCRYPTO_TLS_CREDS
);
2051 error_setg(errp
, "Object with id '%s' is not TLS credentials",
2056 if (creds
->endpoint
!= QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
) {
2058 "Expecting TLS credentials with a client endpoint");
2066 static QemuOptsList nbd_runtime_opts
= {
2068 .head
= QTAILQ_HEAD_INITIALIZER(nbd_runtime_opts
.head
),
2072 .type
= QEMU_OPT_STRING
,
2073 .help
= "TCP host to connect to",
2077 .type
= QEMU_OPT_STRING
,
2078 .help
= "TCP port to connect to",
2082 .type
= QEMU_OPT_STRING
,
2083 .help
= "Unix socket path to connect to",
2087 .type
= QEMU_OPT_STRING
,
2088 .help
= "Name of the NBD export to open",
2091 .name
= "tls-creds",
2092 .type
= QEMU_OPT_STRING
,
2093 .help
= "ID of the TLS credentials to use",
2096 .name
= "x-dirty-bitmap",
2097 .type
= QEMU_OPT_STRING
,
2098 .help
= "experimental: expose named dirty bitmap in place of "
2102 .name
= "reconnect-delay",
2103 .type
= QEMU_OPT_NUMBER
,
2104 .help
= "On an unexpected disconnect, the nbd client tries to "
2105 "connect again until succeeding or encountering a serious "
2106 "error. During the first @reconnect-delay seconds, all "
2107 "requests are paused and will be rerun on a successful "
2108 "reconnect. After that time, any delayed requests and all "
2109 "future requests before a successful reconnect will "
2110 "immediately fail. Default 0",
2112 { /* end of list */ }
2116 static int nbd_process_options(BlockDriverState
*bs
, QDict
*options
,
2119 BDRVNBDState
*s
= bs
->opaque
;
2123 opts
= qemu_opts_create(&nbd_runtime_opts
, NULL
, 0, &error_abort
);
2124 if (!qemu_opts_absorb_qdict(opts
, options
, errp
)) {
2128 /* Translate @host, @port, and @path to a SocketAddress */
2129 if (!nbd_process_legacy_socket_options(options
, opts
, errp
)) {
2133 /* Pop the config into our state object. Exit if invalid. */
2134 s
->saddr
= nbd_config(s
, options
, errp
);
2139 s
->export
= g_strdup(qemu_opt_get(opts
, "export"));
2140 if (s
->export
&& strlen(s
->export
) > NBD_MAX_STRING_SIZE
) {
2141 error_setg(errp
, "export name too long to send to server");
2145 s
->tlscredsid
= g_strdup(qemu_opt_get(opts
, "tls-creds"));
2146 if (s
->tlscredsid
) {
2147 s
->tlscreds
= nbd_get_tls_creds(s
->tlscredsid
, errp
);
2152 /* TODO SOCKET_ADDRESS_KIND_FD where fd has AF_INET or AF_INET6 */
2153 if (s
->saddr
->type
!= SOCKET_ADDRESS_TYPE_INET
) {
2154 error_setg(errp
, "TLS only supported over IP sockets");
2157 s
->hostname
= s
->saddr
->u
.inet
.host
;
2160 s
->x_dirty_bitmap
= g_strdup(qemu_opt_get(opts
, "x-dirty-bitmap"));
2161 if (s
->x_dirty_bitmap
&& strlen(s
->x_dirty_bitmap
) > NBD_MAX_STRING_SIZE
) {
2162 error_setg(errp
, "x-dirty-bitmap query too long to send to server");
2166 s
->reconnect_delay
= qemu_opt_get_number(opts
, "reconnect-delay", 0);
2172 nbd_clear_bdrvstate(s
);
2174 qemu_opts_del(opts
);
2178 static int nbd_open(BlockDriverState
*bs
, QDict
*options
, int flags
,
2182 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
2183 QIOChannelSocket
*sioc
;
2185 ret
= nbd_process_options(bs
, options
, errp
);
2191 qemu_co_mutex_init(&s
->send_mutex
);
2192 qemu_co_queue_init(&s
->free_sema
);
2195 * establish TCP connection, return error if it fails
2196 * TODO: Configurable retry-until-timeout behaviour.
2198 sioc
= nbd_establish_connection(s
->saddr
, errp
);
2200 return -ECONNREFUSED
;
2203 ret
= nbd_client_handshake(bs
, sioc
, errp
);
2205 nbd_clear_bdrvstate(s
);
2208 /* successfully connected */
2209 s
->state
= NBD_CLIENT_CONNECTED
;
2211 nbd_init_connect_thread(s
);
2213 s
->connection_co
= qemu_coroutine_create(nbd_connection_entry
, s
);
2214 bdrv_inc_in_flight(bs
);
2215 aio_co_schedule(bdrv_get_aio_context(bs
), s
->connection_co
);
2220 static int nbd_co_flush(BlockDriverState
*bs
)
2222 return nbd_client_co_flush(bs
);
2225 static void nbd_refresh_limits(BlockDriverState
*bs
, Error
**errp
)
2227 BDRVNBDState
*s
= (BDRVNBDState
*)bs
->opaque
;
2228 uint32_t min
= s
->info
.min_block
;
2229 uint32_t max
= MIN_NON_ZERO(NBD_MAX_BUFFER_SIZE
, s
->info
.max_block
);
2232 * If the server did not advertise an alignment:
2233 * - a size that is not sector-aligned implies that an alignment
2234 * of 1 can be used to access those tail bytes
2235 * - advertisement of block status requires an alignment of 1, so
2236 * that we don't violate block layer constraints that block
2237 * status is always aligned (as we can't control whether the
2238 * server will report sub-sector extents, such as a hole at EOF
2239 * on an unaligned POSIX file)
2240 * - otherwise, assume the server is so old that we are safer avoiding
2241 * sub-sector requests
2244 min
= (!QEMU_IS_ALIGNED(s
->info
.size
, BDRV_SECTOR_SIZE
) ||
2245 s
->info
.base_allocation
) ? 1 : BDRV_SECTOR_SIZE
;
2248 bs
->bl
.request_alignment
= min
;
2249 bs
->bl
.max_pdiscard
= QEMU_ALIGN_DOWN(INT_MAX
, min
);
2250 bs
->bl
.max_pwrite_zeroes
= max
;
2251 bs
->bl
.max_transfer
= max
;
2253 if (s
->info
.opt_block
&&
2254 s
->info
.opt_block
> bs
->bl
.opt_transfer
) {
2255 bs
->bl
.opt_transfer
= s
->info
.opt_block
;
2259 static void nbd_close(BlockDriverState
*bs
)
2261 BDRVNBDState
*s
= bs
->opaque
;
2263 nbd_client_close(bs
);
2264 nbd_clear_bdrvstate(s
);
2268 * NBD cannot truncate, but if the caller asks to truncate to the same size, or
2269 * to a smaller size with exact=false, there is no reason to fail the
2272 * Preallocation mode is ignored since it does not seems useful to fail when
2273 * we never change anything.
2275 static int coroutine_fn
nbd_co_truncate(BlockDriverState
*bs
, int64_t offset
,
2276 bool exact
, PreallocMode prealloc
,
2277 BdrvRequestFlags flags
, Error
**errp
)
2279 BDRVNBDState
*s
= bs
->opaque
;
2281 if (offset
!= s
->info
.size
&& exact
) {
2282 error_setg(errp
, "Cannot resize NBD nodes");
2286 if (offset
> s
->info
.size
) {
2287 error_setg(errp
, "Cannot grow NBD nodes");
2294 static int64_t nbd_getlength(BlockDriverState
*bs
)
2296 BDRVNBDState
*s
= bs
->opaque
;
2298 return s
->info
.size
;
2301 static void nbd_refresh_filename(BlockDriverState
*bs
)
2303 BDRVNBDState
*s
= bs
->opaque
;
2304 const char *host
= NULL
, *port
= NULL
, *path
= NULL
;
2307 if (s
->saddr
->type
== SOCKET_ADDRESS_TYPE_INET
) {
2308 const InetSocketAddress
*inet
= &s
->saddr
->u
.inet
;
2309 if (!inet
->has_ipv4
&& !inet
->has_ipv6
&& !inet
->has_to
) {
2313 } else if (s
->saddr
->type
== SOCKET_ADDRESS_TYPE_UNIX
) {
2314 path
= s
->saddr
->u
.q_unix
.path
;
2315 } /* else can't represent as pseudo-filename */
2317 if (path
&& s
->export
) {
2318 len
= snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
2319 "nbd+unix:///%s?socket=%s", s
->export
, path
);
2320 } else if (path
&& !s
->export
) {
2321 len
= snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
2322 "nbd+unix://?socket=%s", path
);
2323 } else if (host
&& s
->export
) {
2324 len
= snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
2325 "nbd://%s:%s/%s", host
, port
, s
->export
);
2326 } else if (host
&& !s
->export
) {
2327 len
= snprintf(bs
->exact_filename
, sizeof(bs
->exact_filename
),
2328 "nbd://%s:%s", host
, port
);
2330 if (len
>= sizeof(bs
->exact_filename
)) {
2331 /* Name is too long to represent exactly, so leave it empty. */
2332 bs
->exact_filename
[0] = '\0';
2336 static char *nbd_dirname(BlockDriverState
*bs
, Error
**errp
)
2338 /* The generic bdrv_dirname() implementation is able to work out some
2339 * directory name for NBD nodes, but that would be wrong. So far there is no
2340 * specification for how "export paths" would work, so NBD does not have
2341 * directory names. */
2342 error_setg(errp
, "Cannot generate a base directory for NBD nodes");
2346 static const char *const nbd_strong_runtime_opts
[] = {
2357 static BlockDriver bdrv_nbd
= {
2358 .format_name
= "nbd",
2359 .protocol_name
= "nbd",
2360 .instance_size
= sizeof(BDRVNBDState
),
2361 .bdrv_parse_filename
= nbd_parse_filename
,
2362 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
2363 .create_opts
= &bdrv_create_opts_simple
,
2364 .bdrv_file_open
= nbd_open
,
2365 .bdrv_reopen_prepare
= nbd_client_reopen_prepare
,
2366 .bdrv_co_preadv
= nbd_client_co_preadv
,
2367 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
2368 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
2369 .bdrv_close
= nbd_close
,
2370 .bdrv_co_flush_to_os
= nbd_co_flush
,
2371 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
2372 .bdrv_refresh_limits
= nbd_refresh_limits
,
2373 .bdrv_co_truncate
= nbd_co_truncate
,
2374 .bdrv_getlength
= nbd_getlength
,
2375 .bdrv_detach_aio_context
= nbd_client_detach_aio_context
,
2376 .bdrv_attach_aio_context
= nbd_client_attach_aio_context
,
2377 .bdrv_co_drain_begin
= nbd_client_co_drain_begin
,
2378 .bdrv_co_drain_end
= nbd_client_co_drain_end
,
2379 .bdrv_refresh_filename
= nbd_refresh_filename
,
2380 .bdrv_co_block_status
= nbd_client_co_block_status
,
2381 .bdrv_dirname
= nbd_dirname
,
2382 .strong_runtime_opts
= nbd_strong_runtime_opts
,
2385 static BlockDriver bdrv_nbd_tcp
= {
2386 .format_name
= "nbd",
2387 .protocol_name
= "nbd+tcp",
2388 .instance_size
= sizeof(BDRVNBDState
),
2389 .bdrv_parse_filename
= nbd_parse_filename
,
2390 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
2391 .create_opts
= &bdrv_create_opts_simple
,
2392 .bdrv_file_open
= nbd_open
,
2393 .bdrv_reopen_prepare
= nbd_client_reopen_prepare
,
2394 .bdrv_co_preadv
= nbd_client_co_preadv
,
2395 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
2396 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
2397 .bdrv_close
= nbd_close
,
2398 .bdrv_co_flush_to_os
= nbd_co_flush
,
2399 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
2400 .bdrv_refresh_limits
= nbd_refresh_limits
,
2401 .bdrv_co_truncate
= nbd_co_truncate
,
2402 .bdrv_getlength
= nbd_getlength
,
2403 .bdrv_detach_aio_context
= nbd_client_detach_aio_context
,
2404 .bdrv_attach_aio_context
= nbd_client_attach_aio_context
,
2405 .bdrv_co_drain_begin
= nbd_client_co_drain_begin
,
2406 .bdrv_co_drain_end
= nbd_client_co_drain_end
,
2407 .bdrv_refresh_filename
= nbd_refresh_filename
,
2408 .bdrv_co_block_status
= nbd_client_co_block_status
,
2409 .bdrv_dirname
= nbd_dirname
,
2410 .strong_runtime_opts
= nbd_strong_runtime_opts
,
2413 static BlockDriver bdrv_nbd_unix
= {
2414 .format_name
= "nbd",
2415 .protocol_name
= "nbd+unix",
2416 .instance_size
= sizeof(BDRVNBDState
),
2417 .bdrv_parse_filename
= nbd_parse_filename
,
2418 .bdrv_co_create_opts
= bdrv_co_create_opts_simple
,
2419 .create_opts
= &bdrv_create_opts_simple
,
2420 .bdrv_file_open
= nbd_open
,
2421 .bdrv_reopen_prepare
= nbd_client_reopen_prepare
,
2422 .bdrv_co_preadv
= nbd_client_co_preadv
,
2423 .bdrv_co_pwritev
= nbd_client_co_pwritev
,
2424 .bdrv_co_pwrite_zeroes
= nbd_client_co_pwrite_zeroes
,
2425 .bdrv_close
= nbd_close
,
2426 .bdrv_co_flush_to_os
= nbd_co_flush
,
2427 .bdrv_co_pdiscard
= nbd_client_co_pdiscard
,
2428 .bdrv_refresh_limits
= nbd_refresh_limits
,
2429 .bdrv_co_truncate
= nbd_co_truncate
,
2430 .bdrv_getlength
= nbd_getlength
,
2431 .bdrv_detach_aio_context
= nbd_client_detach_aio_context
,
2432 .bdrv_attach_aio_context
= nbd_client_attach_aio_context
,
2433 .bdrv_co_drain_begin
= nbd_client_co_drain_begin
,
2434 .bdrv_co_drain_end
= nbd_client_co_drain_end
,
2435 .bdrv_refresh_filename
= nbd_refresh_filename
,
2436 .bdrv_co_block_status
= nbd_client_co_block_status
,
2437 .bdrv_dirname
= nbd_dirname
,
2438 .strong_runtime_opts
= nbd_strong_runtime_opts
,
2441 static void bdrv_nbd_init(void)
2443 bdrv_register(&bdrv_nbd
);
2444 bdrv_register(&bdrv_nbd_tcp
);
2445 bdrv_register(&bdrv_nbd_unix
);
2448 block_init(bdrv_nbd_init
);