3 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
5 * Network Block Device Server Side
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; under version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "block/block_int.h"
23 #include "block/export.h"
24 #include "block/dirty-bitmap.h"
25 #include "qapi/error.h"
26 #include "qemu/queue.h"
28 #include "nbd-internal.h"
29 #include "qemu/units.h"
30 #include "qemu/memalign.h"
32 #define NBD_META_ID_BASE_ALLOCATION 0
33 #define NBD_META_ID_ALLOCATION_DEPTH 1
34 /* Dirty bitmaps use 'NBD_META_ID_DIRTY_BITMAP + i', so keep this id last. */
35 #define NBD_META_ID_DIRTY_BITMAP 2
38 * NBD_MAX_BLOCK_STATUS_EXTENTS: 1 MiB of extents data. An empirical
39 * constant. If an increase is needed, note that the NBD protocol
40 * recommends no larger than 32 mb, so that the client won't consider
41 * the reply as a denial of service attack.
43 #define NBD_MAX_BLOCK_STATUS_EXTENTS (1 * MiB / 8)
45 static int system_errno_to_nbd_errno(int err
)
66 #if ENOTSUP != EOPNOTSUPP
78 /* Definitions for opaque data types */
80 typedef struct NBDRequestData NBDRequestData
;
82 struct NBDRequestData
{
95 QTAILQ_HEAD(, NBDClient
) clients
;
96 QTAILQ_ENTRY(NBDExport
) next
;
98 BlockBackend
*eject_notifier_blk
;
99 Notifier eject_notifier
;
101 bool allocation_depth
;
102 BdrvDirtyBitmap
**export_bitmaps
;
103 size_t nr_export_bitmaps
;
106 static QTAILQ_HEAD(, NBDExport
) exports
= QTAILQ_HEAD_INITIALIZER(exports
);
109 * NBDMetaContexts represents a list of meta contexts in use,
110 * as selected by NBD_OPT_SET_META_CONTEXT. Also used for
111 * NBD_OPT_LIST_META_CONTEXT.
113 struct NBDMetaContexts
{
114 const NBDExport
*exp
; /* associated export */
115 size_t count
; /* number of negotiated contexts */
116 bool base_allocation
; /* export base:allocation context (block status) */
117 bool allocation_depth
; /* export qemu:allocation-depth */
119 * export qemu:dirty-bitmap:<export bitmap name>,
120 * sized by exp->nr_export_bitmaps
126 void (*close_fn
)(NBDClient
*client
, bool negotiated
);
129 QCryptoTLSCreds
*tlscreds
;
131 QIOChannelSocket
*sioc
; /* The underlying data channel */
132 QIOChannel
*ioc
; /* The current I/O channel which may differ (eg TLS) */
134 Coroutine
*recv_coroutine
;
137 Coroutine
*send_coroutine
;
142 QTAILQ_ENTRY(NBDClient
) next
;
146 uint32_t check_align
; /* If non-zero, check for aligned client requests */
149 NBDMetaContexts contexts
; /* Negotiated meta contexts */
151 uint32_t opt
; /* Current option being negotiated */
152 uint32_t optlen
; /* remaining length of data in ioc for the option being
156 static void nbd_client_receive_next_request(NBDClient
*client
);
158 /* Basic flow for negotiation
185 static inline void set_be_option_rep(NBDOptionReply
*rep
, uint32_t option
,
186 uint32_t type
, uint32_t length
)
188 stq_be_p(&rep
->magic
, NBD_REP_MAGIC
);
189 stl_be_p(&rep
->option
, option
);
190 stl_be_p(&rep
->type
, type
);
191 stl_be_p(&rep
->length
, length
);
194 /* Send a reply header, including length, but no payload.
195 * Return -errno on error, 0 on success. */
196 static int nbd_negotiate_send_rep_len(NBDClient
*client
, uint32_t type
,
197 uint32_t len
, Error
**errp
)
201 trace_nbd_negotiate_send_rep_len(client
->opt
, nbd_opt_lookup(client
->opt
),
202 type
, nbd_rep_lookup(type
), len
);
204 assert(len
< NBD_MAX_BUFFER_SIZE
);
206 set_be_option_rep(&rep
, client
->opt
, type
, len
);
207 return nbd_write(client
->ioc
, &rep
, sizeof(rep
), errp
);
210 /* Send a reply header with default 0 length.
211 * Return -errno on error, 0 on success. */
212 static int nbd_negotiate_send_rep(NBDClient
*client
, uint32_t type
,
215 return nbd_negotiate_send_rep_len(client
, type
, 0, errp
);
218 /* Send an error reply.
219 * Return -errno on error, 0 on success. */
220 static int G_GNUC_PRINTF(4, 0)
221 nbd_negotiate_send_rep_verr(NBDClient
*client
, uint32_t type
,
222 Error
**errp
, const char *fmt
, va_list va
)
225 g_autofree
char *msg
= NULL
;
229 msg
= g_strdup_vprintf(fmt
, va
);
231 assert(len
< NBD_MAX_STRING_SIZE
);
232 trace_nbd_negotiate_send_rep_err(msg
);
233 ret
= nbd_negotiate_send_rep_len(client
, type
, len
, errp
);
237 if (nbd_write(client
->ioc
, msg
, len
, errp
) < 0) {
238 error_prepend(errp
, "write failed (error message): ");
246 * Return a malloc'd copy of @name suitable for use in an error reply.
249 nbd_sanitize_name(const char *name
)
251 if (strnlen(name
, 80) < 80) {
252 return g_strdup(name
);
254 /* XXX Should we also try to sanitize any control characters? */
255 return g_strdup_printf("%.80s...", name
);
258 /* Send an error reply.
259 * Return -errno on error, 0 on success. */
260 static int G_GNUC_PRINTF(4, 5)
261 nbd_negotiate_send_rep_err(NBDClient
*client
, uint32_t type
,
262 Error
**errp
, const char *fmt
, ...)
268 ret
= nbd_negotiate_send_rep_verr(client
, type
, errp
, fmt
, va
);
273 /* Drop remainder of the current option, and send a reply with the
274 * given error type and message. Return -errno on read or write
275 * failure; or 0 if connection is still live. */
276 static int G_GNUC_PRINTF(4, 0)
277 nbd_opt_vdrop(NBDClient
*client
, uint32_t type
, Error
**errp
,
278 const char *fmt
, va_list va
)
280 int ret
= nbd_drop(client
->ioc
, client
->optlen
, errp
);
284 ret
= nbd_negotiate_send_rep_verr(client
, type
, errp
, fmt
, va
);
289 static int G_GNUC_PRINTF(4, 5)
290 nbd_opt_drop(NBDClient
*client
, uint32_t type
, Error
**errp
,
291 const char *fmt
, ...)
297 ret
= nbd_opt_vdrop(client
, type
, errp
, fmt
, va
);
303 static int G_GNUC_PRINTF(3, 4)
304 nbd_opt_invalid(NBDClient
*client
, Error
**errp
, const char *fmt
, ...)
310 ret
= nbd_opt_vdrop(client
, NBD_REP_ERR_INVALID
, errp
, fmt
, va
);
316 /* Read size bytes from the unparsed payload of the current option.
317 * If @check_nul, require that no NUL bytes appear in buffer.
318 * Return -errno on I/O error, 0 if option was completely handled by
319 * sending a reply about inconsistent lengths, or 1 on success. */
320 static int nbd_opt_read(NBDClient
*client
, void *buffer
, size_t size
,
321 bool check_nul
, Error
**errp
)
323 if (size
> client
->optlen
) {
324 return nbd_opt_invalid(client
, errp
,
325 "Inconsistent lengths in option %s",
326 nbd_opt_lookup(client
->opt
));
328 client
->optlen
-= size
;
329 if (qio_channel_read_all(client
->ioc
, buffer
, size
, errp
) < 0) {
333 if (check_nul
&& strnlen(buffer
, size
) != size
) {
334 return nbd_opt_invalid(client
, errp
,
335 "Unexpected embedded NUL in option %s",
336 nbd_opt_lookup(client
->opt
));
341 /* Drop size bytes from the unparsed payload of the current option.
342 * Return -errno on I/O error, 0 if option was completely handled by
343 * sending a reply about inconsistent lengths, or 1 on success. */
344 static int nbd_opt_skip(NBDClient
*client
, size_t size
, Error
**errp
)
346 if (size
> client
->optlen
) {
347 return nbd_opt_invalid(client
, errp
,
348 "Inconsistent lengths in option %s",
349 nbd_opt_lookup(client
->opt
));
351 client
->optlen
-= size
;
352 return nbd_drop(client
->ioc
, size
, errp
) < 0 ? -EIO
: 1;
357 * Read a string with the format:
358 * uint32_t len (<= NBD_MAX_STRING_SIZE)
359 * len bytes string (not 0-terminated)
361 * On success, @name will be allocated.
362 * If @length is non-null, it will be set to the actual string length.
364 * Return -errno on I/O error, 0 if option was completely handled by
365 * sending a reply about inconsistent lengths, or 1 on success.
367 static int nbd_opt_read_name(NBDClient
*client
, char **name
, uint32_t *length
,
372 g_autofree
char *local_name
= NULL
;
375 ret
= nbd_opt_read(client
, &len
, sizeof(len
), false, errp
);
379 len
= cpu_to_be32(len
);
381 if (len
> NBD_MAX_STRING_SIZE
) {
382 return nbd_opt_invalid(client
, errp
,
383 "Invalid name length: %" PRIu32
, len
);
386 local_name
= g_malloc(len
+ 1);
387 ret
= nbd_opt_read(client
, local_name
, len
, true, errp
);
391 local_name
[len
] = '\0';
396 *name
= g_steal_pointer(&local_name
);
401 /* Send a single NBD_REP_SERVER reply to NBD_OPT_LIST, including payload.
402 * Return -errno on error, 0 on success. */
403 static int nbd_negotiate_send_rep_list(NBDClient
*client
, NBDExport
*exp
,
407 size_t name_len
, desc_len
;
409 const char *name
= exp
->name
? exp
->name
: "";
410 const char *desc
= exp
->description
? exp
->description
: "";
411 QIOChannel
*ioc
= client
->ioc
;
414 trace_nbd_negotiate_send_rep_list(name
, desc
);
415 name_len
= strlen(name
);
416 desc_len
= strlen(desc
);
417 assert(name_len
<= NBD_MAX_STRING_SIZE
&& desc_len
<= NBD_MAX_STRING_SIZE
);
418 len
= name_len
+ desc_len
+ sizeof(len
);
419 ret
= nbd_negotiate_send_rep_len(client
, NBD_REP_SERVER
, len
, errp
);
424 len
= cpu_to_be32(name_len
);
425 if (nbd_write(ioc
, &len
, sizeof(len
), errp
) < 0) {
426 error_prepend(errp
, "write failed (name length): ");
430 if (nbd_write(ioc
, name
, name_len
, errp
) < 0) {
431 error_prepend(errp
, "write failed (name buffer): ");
435 if (nbd_write(ioc
, desc
, desc_len
, errp
) < 0) {
436 error_prepend(errp
, "write failed (description buffer): ");
443 /* Process the NBD_OPT_LIST command, with a potential series of replies.
444 * Return -errno on error, 0 on success. */
445 static int nbd_negotiate_handle_list(NBDClient
*client
, Error
**errp
)
448 assert(client
->opt
== NBD_OPT_LIST
);
450 /* For each export, send a NBD_REP_SERVER reply. */
451 QTAILQ_FOREACH(exp
, &exports
, next
) {
452 if (nbd_negotiate_send_rep_list(client
, exp
, errp
)) {
456 /* Finish with a NBD_REP_ACK. */
457 return nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
);
460 static void nbd_check_meta_export(NBDClient
*client
, NBDExport
*exp
)
462 if (exp
!= client
->contexts
.exp
) {
463 client
->contexts
.count
= 0;
467 /* Send a reply to NBD_OPT_EXPORT_NAME.
468 * Return -errno on error, 0 on success. */
469 static int nbd_negotiate_handle_export_name(NBDClient
*client
, bool no_zeroes
,
473 g_autofree
char *name
= NULL
;
474 char buf
[NBD_REPLY_EXPORT_NAME_SIZE
] = "";
480 [20 .. xx] export name (length bytes)
483 [ 8 .. 9] export flags
484 [10 .. 133] reserved (0) [unless no_zeroes]
486 trace_nbd_negotiate_handle_export_name();
487 if (client
->mode
>= NBD_MODE_EXTENDED
) {
488 error_setg(errp
, "Extended headers already negotiated");
491 if (client
->optlen
> NBD_MAX_STRING_SIZE
) {
492 error_setg(errp
, "Bad length received");
495 name
= g_malloc(client
->optlen
+ 1);
496 if (nbd_read(client
->ioc
, name
, client
->optlen
, "export name", errp
) < 0) {
499 name
[client
->optlen
] = '\0';
502 trace_nbd_negotiate_handle_export_name_request(name
);
504 client
->exp
= nbd_export_find(name
);
506 error_setg(errp
, "export not found");
509 nbd_check_meta_export(client
, client
->exp
);
511 myflags
= client
->exp
->nbdflags
;
512 if (client
->mode
>= NBD_MODE_STRUCTURED
) {
513 myflags
|= NBD_FLAG_SEND_DF
;
515 if (client
->mode
>= NBD_MODE_EXTENDED
&& client
->contexts
.count
) {
516 myflags
|= NBD_FLAG_BLOCK_STAT_PAYLOAD
;
518 trace_nbd_negotiate_new_style_size_flags(client
->exp
->size
, myflags
);
519 stq_be_p(buf
, client
->exp
->size
);
520 stw_be_p(buf
+ 8, myflags
);
521 len
= no_zeroes
? 10 : sizeof(buf
);
522 ret
= nbd_write(client
->ioc
, buf
, len
, errp
);
524 error_prepend(errp
, "write failed: ");
528 QTAILQ_INSERT_TAIL(&client
->exp
->clients
, client
, next
);
529 blk_exp_ref(&client
->exp
->common
);
534 /* Send a single NBD_REP_INFO, with a buffer @buf of @length bytes.
535 * The buffer does NOT include the info type prefix.
536 * Return -errno on error, 0 if ready to send more. */
537 static int nbd_negotiate_send_info(NBDClient
*client
,
538 uint16_t info
, uint32_t length
, void *buf
,
543 trace_nbd_negotiate_send_info(info
, nbd_info_lookup(info
), length
);
544 rc
= nbd_negotiate_send_rep_len(client
, NBD_REP_INFO
,
545 sizeof(info
) + length
, errp
);
549 info
= cpu_to_be16(info
);
550 if (nbd_write(client
->ioc
, &info
, sizeof(info
), errp
) < 0) {
553 if (nbd_write(client
->ioc
, buf
, length
, errp
) < 0) {
559 /* nbd_reject_length: Handle any unexpected payload.
560 * @fatal requests that we quit talking to the client, even if we are able
561 * to successfully send an error reply.
563 * -errno transmission error occurred or @fatal was requested, errp is set
564 * 0 error message successfully sent to client, errp is not set
566 static int nbd_reject_length(NBDClient
*client
, bool fatal
, Error
**errp
)
570 assert(client
->optlen
);
571 ret
= nbd_opt_invalid(client
, errp
, "option '%s' has unexpected length",
572 nbd_opt_lookup(client
->opt
));
574 error_setg(errp
, "option '%s' has unexpected length",
575 nbd_opt_lookup(client
->opt
));
581 /* Handle NBD_OPT_INFO and NBD_OPT_GO.
582 * Return -errno on error, 0 if ready for next option, and 1 to move
583 * into transmission phase. */
584 static int nbd_negotiate_handle_info(NBDClient
*client
, Error
**errp
)
587 g_autofree
char *name
= NULL
;
591 uint32_t namelen
= 0;
592 bool sendname
= false;
593 bool blocksize
= false;
595 char buf
[sizeof(uint64_t) + sizeof(uint16_t)];
596 uint32_t check_align
= 0;
600 4 bytes: L, name length (can be 0)
602 2 bytes: N, number of requests (can be 0)
603 N * 2 bytes: N requests
605 rc
= nbd_opt_read_name(client
, &name
, &namelen
, errp
);
609 trace_nbd_negotiate_handle_export_name_request(name
);
611 rc
= nbd_opt_read(client
, &requests
, sizeof(requests
), false, errp
);
615 requests
= be16_to_cpu(requests
);
616 trace_nbd_negotiate_handle_info_requests(requests
);
618 rc
= nbd_opt_read(client
, &request
, sizeof(request
), false, errp
);
622 request
= be16_to_cpu(request
);
623 trace_nbd_negotiate_handle_info_request(request
,
624 nbd_info_lookup(request
));
625 /* We care about NBD_INFO_NAME and NBD_INFO_BLOCK_SIZE;
626 * everything else is either a request we don't know or
627 * something we send regardless of request */
632 case NBD_INFO_BLOCK_SIZE
:
637 if (client
->optlen
) {
638 return nbd_reject_length(client
, false, errp
);
641 exp
= nbd_export_find(name
);
643 g_autofree
char *sane_name
= nbd_sanitize_name(name
);
645 return nbd_negotiate_send_rep_err(client
, NBD_REP_ERR_UNKNOWN
,
646 errp
, "export '%s' not present",
649 if (client
->opt
== NBD_OPT_GO
) {
650 nbd_check_meta_export(client
, exp
);
653 /* Don't bother sending NBD_INFO_NAME unless client requested it */
655 rc
= nbd_negotiate_send_info(client
, NBD_INFO_NAME
, namelen
, name
,
662 /* Send NBD_INFO_DESCRIPTION only if available, regardless of
664 if (exp
->description
) {
665 size_t len
= strlen(exp
->description
);
667 assert(len
<= NBD_MAX_STRING_SIZE
);
668 rc
= nbd_negotiate_send_info(client
, NBD_INFO_DESCRIPTION
,
669 len
, exp
->description
, errp
);
675 /* Send NBD_INFO_BLOCK_SIZE always, but tweak the minimum size
676 * according to whether the client requested it, and according to
677 * whether this is OPT_INFO or OPT_GO. */
678 /* minimum - 1 for back-compat, or actual if client will obey it. */
679 if (client
->opt
== NBD_OPT_INFO
|| blocksize
) {
680 check_align
= sizes
[0] = blk_get_request_alignment(exp
->common
.blk
);
684 assert(sizes
[0] <= NBD_MAX_BUFFER_SIZE
);
685 /* preferred - Hard-code to 4096 for now.
686 * TODO: is blk_bs(blk)->bl.opt_transfer appropriate? */
687 sizes
[1] = MAX(4096, sizes
[0]);
688 /* maximum - At most 32M, but smaller as appropriate. */
689 sizes
[2] = MIN(blk_get_max_transfer(exp
->common
.blk
), NBD_MAX_BUFFER_SIZE
);
690 trace_nbd_negotiate_handle_info_block_size(sizes
[0], sizes
[1], sizes
[2]);
691 sizes
[0] = cpu_to_be32(sizes
[0]);
692 sizes
[1] = cpu_to_be32(sizes
[1]);
693 sizes
[2] = cpu_to_be32(sizes
[2]);
694 rc
= nbd_negotiate_send_info(client
, NBD_INFO_BLOCK_SIZE
,
695 sizeof(sizes
), sizes
, errp
);
700 /* Send NBD_INFO_EXPORT always */
701 myflags
= exp
->nbdflags
;
702 if (client
->mode
>= NBD_MODE_STRUCTURED
) {
703 myflags
|= NBD_FLAG_SEND_DF
;
705 if (client
->mode
>= NBD_MODE_EXTENDED
&&
706 (client
->contexts
.count
|| client
->opt
== NBD_OPT_INFO
)) {
707 myflags
|= NBD_FLAG_BLOCK_STAT_PAYLOAD
;
709 trace_nbd_negotiate_new_style_size_flags(exp
->size
, myflags
);
710 stq_be_p(buf
, exp
->size
);
711 stw_be_p(buf
+ 8, myflags
);
712 rc
= nbd_negotiate_send_info(client
, NBD_INFO_EXPORT
,
713 sizeof(buf
), buf
, errp
);
719 * If the client is just asking for NBD_OPT_INFO, but forgot to
720 * request block sizes in a situation that would impact
721 * performance, then return an error. But for NBD_OPT_GO, we
722 * tolerate all clients, regardless of alignments.
724 if (client
->opt
== NBD_OPT_INFO
&& !blocksize
&&
725 blk_get_request_alignment(exp
->common
.blk
) > 1) {
726 return nbd_negotiate_send_rep_err(client
,
727 NBD_REP_ERR_BLOCK_SIZE_REQD
,
729 "request NBD_INFO_BLOCK_SIZE to "
734 rc
= nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
);
739 if (client
->opt
== NBD_OPT_GO
) {
741 client
->check_align
= check_align
;
742 QTAILQ_INSERT_TAIL(&client
->exp
->clients
, client
, next
);
743 blk_exp_ref(&client
->exp
->common
);
750 /* Handle NBD_OPT_STARTTLS. Return NULL to drop connection, or else the
751 * new channel for all further (now-encrypted) communication. */
752 static QIOChannel
*nbd_negotiate_handle_starttls(NBDClient
*client
,
757 struct NBDTLSHandshakeData data
= { 0 };
759 assert(client
->opt
== NBD_OPT_STARTTLS
);
761 trace_nbd_negotiate_handle_starttls();
764 if (nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
) < 0) {
768 tioc
= qio_channel_tls_new_server(ioc
,
776 qio_channel_set_name(QIO_CHANNEL(tioc
), "nbd-server-tls");
777 trace_nbd_negotiate_handle_starttls_handshake();
778 data
.loop
= g_main_loop_new(g_main_context_default(), FALSE
);
779 qio_channel_tls_handshake(tioc
,
785 if (!data
.complete
) {
786 g_main_loop_run(data
.loop
);
788 g_main_loop_unref(data
.loop
);
790 object_unref(OBJECT(tioc
));
791 error_propagate(errp
, data
.error
);
795 return QIO_CHANNEL(tioc
);
798 /* nbd_negotiate_send_meta_context
800 * Send one chunk of reply to NBD_OPT_{LIST,SET}_META_CONTEXT
802 * For NBD_OPT_LIST_META_CONTEXT @context_id is ignored, 0 is used instead.
804 static int nbd_negotiate_send_meta_context(NBDClient
*client
,
809 NBDOptionReplyMetaContext opt
;
810 struct iovec iov
[] = {
811 {.iov_base
= &opt
, .iov_len
= sizeof(opt
)},
812 {.iov_base
= (void *)context
, .iov_len
= strlen(context
)}
815 assert(iov
[1].iov_len
<= NBD_MAX_STRING_SIZE
);
816 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
) {
820 trace_nbd_negotiate_meta_query_reply(context
, context_id
);
821 set_be_option_rep(&opt
.h
, client
->opt
, NBD_REP_META_CONTEXT
,
822 sizeof(opt
) - sizeof(opt
.h
) + iov
[1].iov_len
);
823 stl_be_p(&opt
.context_id
, context_id
);
825 return qio_channel_writev_all(client
->ioc
, iov
, 2, errp
) < 0 ? -EIO
: 0;
829 * Return true if @query matches @pattern, or if @query is empty when
830 * the @client is performing _LIST_.
832 static bool nbd_meta_empty_or_pattern(NBDClient
*client
, const char *pattern
,
836 trace_nbd_negotiate_meta_query_parse("empty");
837 return client
->opt
== NBD_OPT_LIST_META_CONTEXT
;
839 if (strcmp(query
, pattern
) == 0) {
840 trace_nbd_negotiate_meta_query_parse(pattern
);
843 trace_nbd_negotiate_meta_query_skip("pattern not matched");
848 * Return true and adjust @str in place if it begins with @prefix.
850 static bool nbd_strshift(const char **str
, const char *prefix
)
852 size_t len
= strlen(prefix
);
854 if (strncmp(*str
, prefix
, len
) == 0) {
861 /* nbd_meta_base_query
863 * Handle queries to 'base' namespace. For now, only the base:allocation
864 * context is available. Return true if @query has been handled.
866 static bool nbd_meta_base_query(NBDClient
*client
, NBDMetaContexts
*meta
,
869 if (!nbd_strshift(&query
, "base:")) {
872 trace_nbd_negotiate_meta_query_parse("base:");
874 if (nbd_meta_empty_or_pattern(client
, "allocation", query
)) {
875 meta
->base_allocation
= true;
880 /* nbd_meta_qemu_query
882 * Handle queries to 'qemu' namespace. For now, only the qemu:dirty-bitmap:
883 * and qemu:allocation-depth contexts are available. Return true if @query
886 static bool nbd_meta_qemu_query(NBDClient
*client
, NBDMetaContexts
*meta
,
891 if (!nbd_strshift(&query
, "qemu:")) {
894 trace_nbd_negotiate_meta_query_parse("qemu:");
897 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
) {
898 meta
->allocation_depth
= meta
->exp
->allocation_depth
;
899 if (meta
->exp
->nr_export_bitmaps
) {
900 memset(meta
->bitmaps
, 1, meta
->exp
->nr_export_bitmaps
);
903 trace_nbd_negotiate_meta_query_parse("empty");
907 if (strcmp(query
, "allocation-depth") == 0) {
908 trace_nbd_negotiate_meta_query_parse("allocation-depth");
909 meta
->allocation_depth
= meta
->exp
->allocation_depth
;
913 if (nbd_strshift(&query
, "dirty-bitmap:")) {
914 trace_nbd_negotiate_meta_query_parse("dirty-bitmap:");
916 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
&&
917 meta
->exp
->nr_export_bitmaps
) {
918 memset(meta
->bitmaps
, 1, meta
->exp
->nr_export_bitmaps
);
920 trace_nbd_negotiate_meta_query_parse("empty");
924 for (i
= 0; i
< meta
->exp
->nr_export_bitmaps
; i
++) {
927 bm_name
= bdrv_dirty_bitmap_name(meta
->exp
->export_bitmaps
[i
]);
928 if (strcmp(bm_name
, query
) == 0) {
929 meta
->bitmaps
[i
] = true;
930 trace_nbd_negotiate_meta_query_parse(query
);
934 trace_nbd_negotiate_meta_query_skip("no dirty-bitmap match");
938 trace_nbd_negotiate_meta_query_skip("unknown qemu context");
942 /* nbd_negotiate_meta_query
944 * Parse namespace name and call corresponding function to parse body of the
947 * The only supported namespaces are 'base' and 'qemu'.
949 * Return -errno on I/O error, 0 if option was completely handled by
950 * sending a reply about inconsistent lengths, or 1 on success. */
951 static int nbd_negotiate_meta_query(NBDClient
*client
,
952 NBDMetaContexts
*meta
, Error
**errp
)
955 g_autofree
char *query
= NULL
;
958 ret
= nbd_opt_read(client
, &len
, sizeof(len
), false, errp
);
962 len
= cpu_to_be32(len
);
964 if (len
> NBD_MAX_STRING_SIZE
) {
965 trace_nbd_negotiate_meta_query_skip("length too long");
966 return nbd_opt_skip(client
, len
, errp
);
969 query
= g_malloc(len
+ 1);
970 ret
= nbd_opt_read(client
, query
, len
, true, errp
);
976 if (nbd_meta_base_query(client
, meta
, query
)) {
979 if (nbd_meta_qemu_query(client
, meta
, query
)) {
983 trace_nbd_negotiate_meta_query_skip("unknown namespace");
987 /* nbd_negotiate_meta_queries
988 * Handle NBD_OPT_LIST_META_CONTEXT and NBD_OPT_SET_META_CONTEXT
990 * Return -errno on I/O error, or 0 if option was completely handled. */
991 static int nbd_negotiate_meta_queries(NBDClient
*client
, Error
**errp
)
994 g_autofree
char *export_name
= NULL
;
995 /* Mark unused to work around https://bugs.llvm.org/show_bug.cgi?id=3888 */
996 g_autofree G_GNUC_UNUSED
bool *bitmaps
= NULL
;
997 NBDMetaContexts local_meta
= {0};
998 NBDMetaContexts
*meta
;
1003 if (client
->opt
== NBD_OPT_SET_META_CONTEXT
&&
1004 client
->mode
< NBD_MODE_STRUCTURED
) {
1005 return nbd_opt_invalid(client
, errp
,
1006 "request option '%s' when structured reply "
1007 "is not negotiated",
1008 nbd_opt_lookup(client
->opt
));
1011 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
) {
1012 /* Only change the caller's meta on SET. */
1015 meta
= &client
->contexts
;
1018 g_free(meta
->bitmaps
);
1019 memset(meta
, 0, sizeof(*meta
));
1021 ret
= nbd_opt_read_name(client
, &export_name
, NULL
, errp
);
1026 meta
->exp
= nbd_export_find(export_name
);
1027 if (meta
->exp
== NULL
) {
1028 g_autofree
char *sane_name
= nbd_sanitize_name(export_name
);
1030 return nbd_opt_drop(client
, NBD_REP_ERR_UNKNOWN
, errp
,
1031 "export '%s' not present", sane_name
);
1033 meta
->bitmaps
= g_new0(bool, meta
->exp
->nr_export_bitmaps
);
1034 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
) {
1035 bitmaps
= meta
->bitmaps
;
1038 ret
= nbd_opt_read(client
, &nb_queries
, sizeof(nb_queries
), false, errp
);
1042 nb_queries
= cpu_to_be32(nb_queries
);
1043 trace_nbd_negotiate_meta_context(nbd_opt_lookup(client
->opt
),
1044 export_name
, nb_queries
);
1046 if (client
->opt
== NBD_OPT_LIST_META_CONTEXT
&& !nb_queries
) {
1047 /* enable all known contexts */
1048 meta
->base_allocation
= true;
1049 meta
->allocation_depth
= meta
->exp
->allocation_depth
;
1050 if (meta
->exp
->nr_export_bitmaps
) {
1051 memset(meta
->bitmaps
, 1, meta
->exp
->nr_export_bitmaps
);
1054 for (i
= 0; i
< nb_queries
; ++i
) {
1055 ret
= nbd_negotiate_meta_query(client
, meta
, errp
);
1062 if (meta
->base_allocation
) {
1063 ret
= nbd_negotiate_send_meta_context(client
, "base:allocation",
1064 NBD_META_ID_BASE_ALLOCATION
,
1072 if (meta
->allocation_depth
) {
1073 ret
= nbd_negotiate_send_meta_context(client
, "qemu:allocation-depth",
1074 NBD_META_ID_ALLOCATION_DEPTH
,
1082 for (i
= 0; i
< meta
->exp
->nr_export_bitmaps
; i
++) {
1083 const char *bm_name
;
1084 g_autofree
char *context
= NULL
;
1086 if (!meta
->bitmaps
[i
]) {
1090 bm_name
= bdrv_dirty_bitmap_name(meta
->exp
->export_bitmaps
[i
]);
1091 context
= g_strdup_printf("qemu:dirty-bitmap:%s", bm_name
);
1093 ret
= nbd_negotiate_send_meta_context(client
, context
,
1094 NBD_META_ID_DIRTY_BITMAP
+ i
,
1102 ret
= nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
);
1104 meta
->count
= count
;
1110 /* nbd_negotiate_options
1111 * Process all NBD_OPT_* client option commands, during fixed newstyle
1114 * -errno on error, errp is set
1115 * 0 on successful negotiation, errp is not set
1116 * 1 if client sent NBD_OPT_ABORT, i.e. on valid disconnect,
1119 static int nbd_negotiate_options(NBDClient
*client
, Error
**errp
)
1122 bool fixedNewstyle
= false;
1123 bool no_zeroes
= false;
1126 [ 0 .. 3] client flags
1128 Then we loop until NBD_OPT_EXPORT_NAME or NBD_OPT_GO:
1129 [ 0 .. 7] NBD_OPTS_MAGIC
1130 [ 8 .. 11] NBD option
1131 [12 .. 15] Data length
1134 [ 0 .. 7] NBD_OPTS_MAGIC
1135 [ 8 .. 11] Second NBD option
1136 [12 .. 15] Data length
1140 if (nbd_read32(client
->ioc
, &flags
, "flags", errp
) < 0) {
1143 client
->mode
= NBD_MODE_EXPORT_NAME
;
1144 trace_nbd_negotiate_options_flags(flags
);
1145 if (flags
& NBD_FLAG_C_FIXED_NEWSTYLE
) {
1146 fixedNewstyle
= true;
1147 flags
&= ~NBD_FLAG_C_FIXED_NEWSTYLE
;
1148 client
->mode
= NBD_MODE_SIMPLE
;
1150 if (flags
& NBD_FLAG_C_NO_ZEROES
) {
1152 flags
&= ~NBD_FLAG_C_NO_ZEROES
;
1155 error_setg(errp
, "Unknown client flags 0x%" PRIx32
" received", flags
);
1161 uint32_t option
, length
;
1164 if (nbd_read64(client
->ioc
, &magic
, "opts magic", errp
) < 0) {
1167 trace_nbd_negotiate_options_check_magic(magic
);
1168 if (magic
!= NBD_OPTS_MAGIC
) {
1169 error_setg(errp
, "Bad magic received");
1173 if (nbd_read32(client
->ioc
, &option
, "option", errp
) < 0) {
1176 client
->opt
= option
;
1178 if (nbd_read32(client
->ioc
, &length
, "option length", errp
) < 0) {
1181 assert(!client
->optlen
);
1182 client
->optlen
= length
;
1184 if (length
> NBD_MAX_BUFFER_SIZE
) {
1185 error_setg(errp
, "len (%" PRIu32
") is larger than max len (%u)",
1186 length
, NBD_MAX_BUFFER_SIZE
);
1190 trace_nbd_negotiate_options_check_option(option
,
1191 nbd_opt_lookup(option
));
1192 if (client
->tlscreds
&&
1193 client
->ioc
== (QIOChannel
*)client
->sioc
) {
1195 if (!fixedNewstyle
) {
1196 error_setg(errp
, "Unsupported option 0x%" PRIx32
, option
);
1200 case NBD_OPT_STARTTLS
:
1202 /* Unconditionally drop the connection if the client
1203 * can't start a TLS negotiation correctly */
1204 return nbd_reject_length(client
, true, errp
);
1206 tioc
= nbd_negotiate_handle_starttls(client
, errp
);
1211 object_unref(OBJECT(client
->ioc
));
1215 case NBD_OPT_EXPORT_NAME
:
1216 /* No way to return an error to client, so drop connection */
1217 error_setg(errp
, "Option 0x%x not permitted before TLS",
1222 /* Let the client keep trying, unless they asked to
1223 * quit. Always try to give an error back to the
1224 * client; but when replying to OPT_ABORT, be aware
1225 * that the client may hang up before receiving the
1226 * error, in which case we are fine ignoring the
1227 * resulting EPIPE. */
1228 ret
= nbd_opt_drop(client
, NBD_REP_ERR_TLS_REQD
,
1229 option
== NBD_OPT_ABORT
? NULL
: errp
,
1231 " not permitted before TLS", option
);
1232 if (option
== NBD_OPT_ABORT
) {
1237 } else if (fixedNewstyle
) {
1241 ret
= nbd_reject_length(client
, false, errp
);
1243 ret
= nbd_negotiate_handle_list(client
, errp
);
1248 /* NBD spec says we must try to reply before
1249 * disconnecting, but that we must also tolerate
1250 * guests that don't wait for our reply. */
1251 nbd_negotiate_send_rep(client
, NBD_REP_ACK
, NULL
);
1254 case NBD_OPT_EXPORT_NAME
:
1255 return nbd_negotiate_handle_export_name(client
, no_zeroes
,
1260 ret
= nbd_negotiate_handle_info(client
, errp
);
1262 assert(option
== NBD_OPT_GO
);
1267 case NBD_OPT_STARTTLS
:
1269 ret
= nbd_reject_length(client
, false, errp
);
1270 } else if (client
->tlscreds
) {
1271 ret
= nbd_negotiate_send_rep_err(client
,
1272 NBD_REP_ERR_INVALID
, errp
,
1273 "TLS already enabled");
1275 ret
= nbd_negotiate_send_rep_err(client
,
1276 NBD_REP_ERR_POLICY
, errp
,
1277 "TLS not configured");
1281 case NBD_OPT_STRUCTURED_REPLY
:
1283 ret
= nbd_reject_length(client
, false, errp
);
1284 } else if (client
->mode
>= NBD_MODE_EXTENDED
) {
1285 ret
= nbd_negotiate_send_rep_err(
1286 client
, NBD_REP_ERR_EXT_HEADER_REQD
, errp
,
1287 "extended headers already negotiated");
1288 } else if (client
->mode
>= NBD_MODE_STRUCTURED
) {
1289 ret
= nbd_negotiate_send_rep_err(
1290 client
, NBD_REP_ERR_INVALID
, errp
,
1291 "structured reply already negotiated");
1293 ret
= nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
);
1294 client
->mode
= NBD_MODE_STRUCTURED
;
1298 case NBD_OPT_LIST_META_CONTEXT
:
1299 case NBD_OPT_SET_META_CONTEXT
:
1300 ret
= nbd_negotiate_meta_queries(client
, errp
);
1303 case NBD_OPT_EXTENDED_HEADERS
:
1305 ret
= nbd_reject_length(client
, false, errp
);
1306 } else if (client
->mode
>= NBD_MODE_EXTENDED
) {
1307 ret
= nbd_negotiate_send_rep_err(
1308 client
, NBD_REP_ERR_INVALID
, errp
,
1309 "extended headers already negotiated");
1311 ret
= nbd_negotiate_send_rep(client
, NBD_REP_ACK
, errp
);
1312 client
->mode
= NBD_MODE_EXTENDED
;
1317 ret
= nbd_opt_drop(client
, NBD_REP_ERR_UNSUP
, errp
,
1318 "Unsupported option %" PRIu32
" (%s)",
1319 option
, nbd_opt_lookup(option
));
1324 * If broken new-style we should drop the connection
1325 * for anything except NBD_OPT_EXPORT_NAME
1328 case NBD_OPT_EXPORT_NAME
:
1329 return nbd_negotiate_handle_export_name(client
, no_zeroes
,
1333 error_setg(errp
, "Unsupported option %" PRIu32
" (%s)",
1334 option
, nbd_opt_lookup(option
));
1346 * -errno on error, errp is set
1347 * 0 on successful negotiation, errp is not set
1348 * 1 if client sent NBD_OPT_ABORT, i.e. on valid disconnect,
1351 static coroutine_fn
int nbd_negotiate(NBDClient
*client
, Error
**errp
)
1354 char buf
[NBD_OLDSTYLE_NEGOTIATE_SIZE
] = "";
1357 /* Old style negotiation header, no room for options
1358 [ 0 .. 7] passwd ("NBDMAGIC")
1359 [ 8 .. 15] magic (NBD_CLIENT_MAGIC)
1361 [24 .. 27] export flags (zero-extended)
1362 [28 .. 151] reserved (0)
1364 New style negotiation header, client can send options
1365 [ 0 .. 7] passwd ("NBDMAGIC")
1366 [ 8 .. 15] magic (NBD_OPTS_MAGIC)
1367 [16 .. 17] server flags (0)
1368 ....options sent, ending in NBD_OPT_EXPORT_NAME or NBD_OPT_GO....
1371 qio_channel_set_blocking(client
->ioc
, false, NULL
);
1372 qio_channel_set_follow_coroutine_ctx(client
->ioc
, true);
1374 trace_nbd_negotiate_begin();
1375 memcpy(buf
, "NBDMAGIC", 8);
1377 stq_be_p(buf
+ 8, NBD_OPTS_MAGIC
);
1378 stw_be_p(buf
+ 16, NBD_FLAG_FIXED_NEWSTYLE
| NBD_FLAG_NO_ZEROES
);
1380 if (nbd_write(client
->ioc
, buf
, 18, errp
) < 0) {
1381 error_prepend(errp
, "write failed: ");
1384 ret
= nbd_negotiate_options(client
, errp
);
1387 error_prepend(errp
, "option negotiation failed: ");
1392 assert(!client
->optlen
);
1393 trace_nbd_negotiate_success();
1399 * Tries to read @size bytes from @ioc. This is a local implementation of
1400 * qio_channel_readv_all_eof. We have it here because we need it to be
1401 * interruptible and to know when the coroutine is yielding.
1402 * Returns 1 on success
1403 * 0 on eof, when no data was read (errp is not set)
1404 * negative errno on failure (errp is set)
1406 static inline int coroutine_fn
1407 nbd_read_eof(NBDClient
*client
, void *buffer
, size_t size
, Error
**errp
)
1409 bool partial
= false;
1413 struct iovec iov
= { .iov_base
= buffer
, .iov_len
= size
};
1416 len
= qio_channel_readv(client
->ioc
, &iov
, 1, errp
);
1417 if (len
== QIO_CHANNEL_ERR_BLOCK
) {
1418 client
->read_yielding
= true;
1419 qio_channel_yield(client
->ioc
, G_IO_IN
);
1420 client
->read_yielding
= false;
1421 if (client
->quiescing
) {
1425 } else if (len
< 0) {
1427 } else if (len
== 0) {
1430 "Unexpected end-of-file before all bytes were read");
1439 buffer
= (uint8_t *) buffer
+ len
;
1444 static int coroutine_fn
nbd_receive_request(NBDClient
*client
, NBDRequest
*request
,
1447 uint8_t buf
[NBD_EXTENDED_REQUEST_SIZE
];
1448 uint32_t magic
, expect
;
1450 size_t size
= client
->mode
>= NBD_MODE_EXTENDED
?
1451 NBD_EXTENDED_REQUEST_SIZE
: NBD_REQUEST_SIZE
;
1453 ret
= nbd_read_eof(client
, buf
, size
, errp
);
1463 * [ 0 .. 3] magic (NBD_REQUEST_MAGIC)
1464 * [ 4 .. 5] flags (NBD_CMD_FLAG_FUA, ...)
1465 * [ 6 .. 7] type (NBD_CMD_READ, ...)
1470 * [ 0 .. 3] magic (NBD_EXTENDED_REQUEST_MAGIC)
1471 * [ 4 .. 5] flags (NBD_CMD_FLAG_FUA, NBD_CMD_FLAG_PAYLOAD_LEN, ...)
1472 * [ 6 .. 7] type (NBD_CMD_READ, ...)
1478 magic
= ldl_be_p(buf
);
1479 request
->flags
= lduw_be_p(buf
+ 4);
1480 request
->type
= lduw_be_p(buf
+ 6);
1481 request
->cookie
= ldq_be_p(buf
+ 8);
1482 request
->from
= ldq_be_p(buf
+ 16);
1483 if (client
->mode
>= NBD_MODE_EXTENDED
) {
1484 request
->len
= ldq_be_p(buf
+ 24);
1485 expect
= NBD_EXTENDED_REQUEST_MAGIC
;
1487 request
->len
= (uint32_t)ldl_be_p(buf
+ 24); /* widen 32 to 64 bits */
1488 expect
= NBD_REQUEST_MAGIC
;
1491 trace_nbd_receive_request(magic
, request
->flags
, request
->type
,
1492 request
->from
, request
->len
);
1494 if (magic
!= expect
) {
1495 error_setg(errp
, "invalid magic (got 0x%" PRIx32
", expected 0x%"
1496 PRIx32
")", magic
, expect
);
1502 #define MAX_NBD_REQUESTS 16
1504 void nbd_client_get(NBDClient
*client
)
1509 void nbd_client_put(NBDClient
*client
)
1511 if (--client
->refcount
== 0) {
1512 /* The last reference should be dropped by client->close,
1513 * which is called by client_close.
1515 assert(client
->closing
);
1517 object_unref(OBJECT(client
->sioc
));
1518 object_unref(OBJECT(client
->ioc
));
1519 if (client
->tlscreds
) {
1520 object_unref(OBJECT(client
->tlscreds
));
1522 g_free(client
->tlsauthz
);
1524 QTAILQ_REMOVE(&client
->exp
->clients
, client
, next
);
1525 blk_exp_unref(&client
->exp
->common
);
1527 g_free(client
->contexts
.bitmaps
);
1532 static void client_close(NBDClient
*client
, bool negotiated
)
1534 if (client
->closing
) {
1538 client
->closing
= true;
1540 /* Force requests to finish. They will drop their own references,
1541 * then we'll close the socket and free the NBDClient.
1543 qio_channel_shutdown(client
->ioc
, QIO_CHANNEL_SHUTDOWN_BOTH
,
1546 /* Also tell the client, so that they release their reference. */
1547 if (client
->close_fn
) {
1548 client
->close_fn(client
, negotiated
);
1552 static NBDRequestData
*nbd_request_get(NBDClient
*client
)
1554 NBDRequestData
*req
;
1556 assert(client
->nb_requests
<= MAX_NBD_REQUESTS
- 1);
1557 client
->nb_requests
++;
1559 req
= g_new0(NBDRequestData
, 1);
1560 nbd_client_get(client
);
1561 req
->client
= client
;
1565 static void nbd_request_put(NBDRequestData
*req
)
1567 NBDClient
*client
= req
->client
;
1570 qemu_vfree(req
->data
);
1574 client
->nb_requests
--;
1576 if (client
->quiescing
&& client
->nb_requests
== 0) {
1580 nbd_client_receive_next_request(client
);
1582 nbd_client_put(client
);
1585 static void blk_aio_attached(AioContext
*ctx
, void *opaque
)
1587 NBDExport
*exp
= opaque
;
1590 trace_nbd_blk_aio_attached(exp
->name
, ctx
);
1592 exp
->common
.ctx
= ctx
;
1594 QTAILQ_FOREACH(client
, &exp
->clients
, next
) {
1595 assert(client
->nb_requests
== 0);
1596 assert(client
->recv_coroutine
== NULL
);
1597 assert(client
->send_coroutine
== NULL
);
1601 static void blk_aio_detach(void *opaque
)
1603 NBDExport
*exp
= opaque
;
1605 trace_nbd_blk_aio_detach(exp
->name
, exp
->common
.ctx
);
1607 exp
->common
.ctx
= NULL
;
1610 static void nbd_drained_begin(void *opaque
)
1612 NBDExport
*exp
= opaque
;
1615 QTAILQ_FOREACH(client
, &exp
->clients
, next
) {
1616 client
->quiescing
= true;
1620 static void nbd_drained_end(void *opaque
)
1622 NBDExport
*exp
= opaque
;
1625 QTAILQ_FOREACH(client
, &exp
->clients
, next
) {
1626 client
->quiescing
= false;
1627 nbd_client_receive_next_request(client
);
1631 static bool nbd_drained_poll(void *opaque
)
1633 NBDExport
*exp
= opaque
;
1636 QTAILQ_FOREACH(client
, &exp
->clients
, next
) {
1637 if (client
->nb_requests
!= 0) {
1639 * If there's a coroutine waiting for a request on nbd_read_eof()
1640 * enter it here so we don't depend on the client to wake it up.
1642 if (client
->recv_coroutine
!= NULL
&& client
->read_yielding
) {
1643 qio_channel_wake_read(client
->ioc
);
1653 static void nbd_eject_notifier(Notifier
*n
, void *data
)
1655 NBDExport
*exp
= container_of(n
, NBDExport
, eject_notifier
);
1657 blk_exp_request_shutdown(&exp
->common
);
1660 void nbd_export_set_on_eject_blk(BlockExport
*exp
, BlockBackend
*blk
)
1662 NBDExport
*nbd_exp
= container_of(exp
, NBDExport
, common
);
1663 assert(exp
->drv
== &blk_exp_nbd
);
1664 assert(nbd_exp
->eject_notifier_blk
== NULL
);
1667 nbd_exp
->eject_notifier_blk
= blk
;
1668 nbd_exp
->eject_notifier
.notify
= nbd_eject_notifier
;
1669 blk_add_remove_bs_notifier(blk
, &nbd_exp
->eject_notifier
);
1672 static const BlockDevOps nbd_block_ops
= {
1673 .drained_begin
= nbd_drained_begin
,
1674 .drained_end
= nbd_drained_end
,
1675 .drained_poll
= nbd_drained_poll
,
1678 static int nbd_export_create(BlockExport
*blk_exp
, BlockExportOptions
*exp_args
,
1681 NBDExport
*exp
= container_of(blk_exp
, NBDExport
, common
);
1682 BlockExportOptionsNbd
*arg
= &exp_args
->u
.nbd
;
1683 const char *name
= arg
->name
?: exp_args
->node_name
;
1684 BlockBackend
*blk
= blk_exp
->blk
;
1686 uint64_t perm
, shared_perm
;
1687 bool readonly
= !exp_args
->writable
;
1688 BlockDirtyBitmapOrStrList
*bitmaps
;
1692 assert(exp_args
->type
== BLOCK_EXPORT_TYPE_NBD
);
1694 if (!nbd_server_is_running()) {
1695 error_setg(errp
, "NBD server not running");
1699 if (strlen(name
) > NBD_MAX_STRING_SIZE
) {
1700 error_setg(errp
, "export name '%s' too long", name
);
1704 if (arg
->description
&& strlen(arg
->description
) > NBD_MAX_STRING_SIZE
) {
1705 error_setg(errp
, "description '%s' too long", arg
->description
);
1709 if (nbd_export_find(name
)) {
1710 error_setg(errp
, "NBD server already has export named '%s'", name
);
1714 size
= blk_getlength(blk
);
1716 error_setg_errno(errp
, -size
,
1717 "Failed to determine the NBD export's length");
1721 /* Don't allow resize while the NBD server is running, otherwise we don't
1722 * care what happens with the node. */
1723 blk_get_perm(blk
, &perm
, &shared_perm
);
1724 ret
= blk_set_perm(blk
, perm
, shared_perm
& ~BLK_PERM_RESIZE
, errp
);
1729 QTAILQ_INIT(&exp
->clients
);
1730 exp
->name
= g_strdup(name
);
1731 exp
->description
= g_strdup(arg
->description
);
1732 exp
->nbdflags
= (NBD_FLAG_HAS_FLAGS
| NBD_FLAG_SEND_FLUSH
|
1733 NBD_FLAG_SEND_FUA
| NBD_FLAG_SEND_CACHE
);
1735 if (nbd_server_max_connections() != 1) {
1736 exp
->nbdflags
|= NBD_FLAG_CAN_MULTI_CONN
;
1739 exp
->nbdflags
|= NBD_FLAG_READ_ONLY
;
1741 exp
->nbdflags
|= (NBD_FLAG_SEND_TRIM
| NBD_FLAG_SEND_WRITE_ZEROES
|
1742 NBD_FLAG_SEND_FAST_ZERO
);
1744 exp
->size
= QEMU_ALIGN_DOWN(size
, BDRV_SECTOR_SIZE
);
1746 for (bitmaps
= arg
->bitmaps
; bitmaps
; bitmaps
= bitmaps
->next
) {
1747 exp
->nr_export_bitmaps
++;
1749 exp
->export_bitmaps
= g_new0(BdrvDirtyBitmap
*, exp
->nr_export_bitmaps
);
1750 for (i
= 0, bitmaps
= arg
->bitmaps
; bitmaps
;
1751 i
++, bitmaps
= bitmaps
->next
)
1754 BlockDriverState
*bs
= blk_bs(blk
);
1755 BdrvDirtyBitmap
*bm
= NULL
;
1757 switch (bitmaps
->value
->type
) {
1759 bitmap
= bitmaps
->value
->u
.local
;
1761 bm
= bdrv_find_dirty_bitmap(bs
, bitmap
);
1766 bs
= bdrv_filter_or_cow_bs(bs
);
1771 error_setg(errp
, "Bitmap '%s' is not found",
1772 bitmaps
->value
->u
.local
);
1776 if (readonly
&& bdrv_is_writable(bs
) &&
1777 bdrv_dirty_bitmap_enabled(bm
)) {
1779 error_setg(errp
, "Enabled bitmap '%s' incompatible with "
1780 "readonly export", bitmap
);
1785 bitmap
= bitmaps
->value
->u
.external
.name
;
1786 bm
= block_dirty_bitmap_lookup(bitmaps
->value
->u
.external
.node
,
1787 bitmap
, NULL
, errp
);
1799 if (bdrv_dirty_bitmap_check(bm
, BDRV_BITMAP_ALLOW_RO
, errp
)) {
1804 exp
->export_bitmaps
[i
] = bm
;
1805 assert(strlen(bitmap
) <= BDRV_BITMAP_MAX_NAME_SIZE
);
1808 /* Mark bitmaps busy in a separate loop, to simplify roll-back concerns. */
1809 for (i
= 0; i
< exp
->nr_export_bitmaps
; i
++) {
1810 bdrv_dirty_bitmap_set_busy(exp
->export_bitmaps
[i
], true);
1813 exp
->allocation_depth
= arg
->allocation_depth
;
1816 * We need to inhibit request queuing in the block layer to ensure we can
1817 * be properly quiesced when entering a drained section, as our coroutines
1818 * servicing pending requests might enter blk_pread().
1820 blk_set_disable_request_queuing(blk
, true);
1822 blk_add_aio_context_notifier(blk
, blk_aio_attached
, blk_aio_detach
, exp
);
1824 blk_set_dev_ops(blk
, &nbd_block_ops
, exp
);
1826 QTAILQ_INSERT_TAIL(&exports
, exp
, next
);
1831 g_free(exp
->export_bitmaps
);
1833 g_free(exp
->description
);
1837 NBDExport
*nbd_export_find(const char *name
)
1840 QTAILQ_FOREACH(exp
, &exports
, next
) {
1841 if (strcmp(name
, exp
->name
) == 0) {
1850 nbd_export_aio_context(NBDExport
*exp
)
1852 return exp
->common
.ctx
;
1855 static void nbd_export_request_shutdown(BlockExport
*blk_exp
)
1857 NBDExport
*exp
= container_of(blk_exp
, NBDExport
, common
);
1858 NBDClient
*client
, *next
;
1860 blk_exp_ref(&exp
->common
);
1862 * TODO: Should we expand QMP NbdServerRemoveNode enum to allow a
1863 * close mode that stops advertising the export to new clients but
1864 * still permits existing clients to run to completion? Because of
1865 * that possibility, nbd_export_close() can be called more than
1866 * once on an export.
1868 QTAILQ_FOREACH_SAFE(client
, &exp
->clients
, next
, next
) {
1869 client_close(client
, true);
1874 QTAILQ_REMOVE(&exports
, exp
, next
);
1876 blk_exp_unref(&exp
->common
);
1879 static void nbd_export_delete(BlockExport
*blk_exp
)
1882 NBDExport
*exp
= container_of(blk_exp
, NBDExport
, common
);
1884 assert(exp
->name
== NULL
);
1885 assert(QTAILQ_EMPTY(&exp
->clients
));
1887 g_free(exp
->description
);
1888 exp
->description
= NULL
;
1890 if (exp
->eject_notifier_blk
) {
1891 notifier_remove(&exp
->eject_notifier
);
1892 blk_unref(exp
->eject_notifier_blk
);
1894 blk_remove_aio_context_notifier(exp
->common
.blk
, blk_aio_attached
,
1895 blk_aio_detach
, exp
);
1896 blk_set_disable_request_queuing(exp
->common
.blk
, false);
1898 for (i
= 0; i
< exp
->nr_export_bitmaps
; i
++) {
1899 bdrv_dirty_bitmap_set_busy(exp
->export_bitmaps
[i
], false);
1903 const BlockExportDriver blk_exp_nbd
= {
1904 .type
= BLOCK_EXPORT_TYPE_NBD
,
1905 .instance_size
= sizeof(NBDExport
),
1906 .create
= nbd_export_create
,
1907 .delete = nbd_export_delete
,
1908 .request_shutdown
= nbd_export_request_shutdown
,
1911 static int coroutine_fn
nbd_co_send_iov(NBDClient
*client
, struct iovec
*iov
,
1912 unsigned niov
, Error
**errp
)
1916 g_assert(qemu_in_coroutine());
1917 qemu_co_mutex_lock(&client
->send_lock
);
1918 client
->send_coroutine
= qemu_coroutine_self();
1920 ret
= qio_channel_writev_all(client
->ioc
, iov
, niov
, errp
) < 0 ? -EIO
: 0;
1922 client
->send_coroutine
= NULL
;
1923 qemu_co_mutex_unlock(&client
->send_lock
);
1928 static inline void set_be_simple_reply(NBDSimpleReply
*reply
, uint64_t error
,
1931 stl_be_p(&reply
->magic
, NBD_SIMPLE_REPLY_MAGIC
);
1932 stl_be_p(&reply
->error
, error
);
1933 stq_be_p(&reply
->cookie
, cookie
);
1936 static int coroutine_fn
nbd_co_send_simple_reply(NBDClient
*client
,
1937 NBDRequest
*request
,
1943 NBDSimpleReply reply
;
1944 int nbd_err
= system_errno_to_nbd_errno(error
);
1945 struct iovec iov
[] = {
1946 {.iov_base
= &reply
, .iov_len
= sizeof(reply
)},
1947 {.iov_base
= data
, .iov_len
= len
}
1950 assert(!len
|| !nbd_err
);
1951 assert(len
<= NBD_MAX_BUFFER_SIZE
);
1952 assert(client
->mode
< NBD_MODE_STRUCTURED
||
1953 (client
->mode
== NBD_MODE_STRUCTURED
&&
1954 request
->type
!= NBD_CMD_READ
));
1955 trace_nbd_co_send_simple_reply(request
->cookie
, nbd_err
,
1956 nbd_err_lookup(nbd_err
), len
);
1957 set_be_simple_reply(&reply
, nbd_err
, request
->cookie
);
1959 return nbd_co_send_iov(client
, iov
, 2, errp
);
1963 * Prepare the header of a reply chunk for network transmission.
1965 * On input, @iov is partially initialized: iov[0].iov_base must point
1966 * to an uninitialized NBDReply, while the remaining @niov elements
1967 * (if any) must be ready for transmission. This function then
1968 * populates iov[0] for transmission.
1970 static inline void set_be_chunk(NBDClient
*client
, struct iovec
*iov
,
1971 size_t niov
, uint16_t flags
, uint16_t type
,
1972 NBDRequest
*request
)
1974 size_t i
, length
= 0;
1976 for (i
= 1; i
< niov
; i
++) {
1977 length
+= iov
[i
].iov_len
;
1979 assert(length
<= NBD_MAX_BUFFER_SIZE
+ sizeof(NBDStructuredReadData
));
1981 if (client
->mode
>= NBD_MODE_EXTENDED
) {
1982 NBDExtendedReplyChunk
*chunk
= iov
->iov_base
;
1984 iov
[0].iov_len
= sizeof(*chunk
);
1985 stl_be_p(&chunk
->magic
, NBD_EXTENDED_REPLY_MAGIC
);
1986 stw_be_p(&chunk
->flags
, flags
);
1987 stw_be_p(&chunk
->type
, type
);
1988 stq_be_p(&chunk
->cookie
, request
->cookie
);
1989 stq_be_p(&chunk
->offset
, request
->from
);
1990 stq_be_p(&chunk
->length
, length
);
1992 NBDStructuredReplyChunk
*chunk
= iov
->iov_base
;
1994 iov
[0].iov_len
= sizeof(*chunk
);
1995 stl_be_p(&chunk
->magic
, NBD_STRUCTURED_REPLY_MAGIC
);
1996 stw_be_p(&chunk
->flags
, flags
);
1997 stw_be_p(&chunk
->type
, type
);
1998 stq_be_p(&chunk
->cookie
, request
->cookie
);
1999 stl_be_p(&chunk
->length
, length
);
2003 static int coroutine_fn
nbd_co_send_chunk_done(NBDClient
*client
,
2004 NBDRequest
*request
,
2008 struct iovec iov
[] = {
2012 trace_nbd_co_send_chunk_done(request
->cookie
);
2013 set_be_chunk(client
, iov
, 1, NBD_REPLY_FLAG_DONE
,
2014 NBD_REPLY_TYPE_NONE
, request
);
2015 return nbd_co_send_iov(client
, iov
, 1, errp
);
2018 static int coroutine_fn
nbd_co_send_chunk_read(NBDClient
*client
,
2019 NBDRequest
*request
,
2027 NBDStructuredReadData chunk
;
2028 struct iovec iov
[] = {
2030 {.iov_base
= &chunk
, .iov_len
= sizeof(chunk
)},
2031 {.iov_base
= data
, .iov_len
= size
}
2034 assert(size
&& size
<= NBD_MAX_BUFFER_SIZE
);
2035 trace_nbd_co_send_chunk_read(request
->cookie
, offset
, data
, size
);
2036 set_be_chunk(client
, iov
, 3, final
? NBD_REPLY_FLAG_DONE
: 0,
2037 NBD_REPLY_TYPE_OFFSET_DATA
, request
);
2038 stq_be_p(&chunk
.offset
, offset
);
2040 return nbd_co_send_iov(client
, iov
, 3, errp
);
2043 static int coroutine_fn
nbd_co_send_chunk_error(NBDClient
*client
,
2044 NBDRequest
*request
,
2050 NBDStructuredError chunk
;
2051 int nbd_err
= system_errno_to_nbd_errno(error
);
2052 struct iovec iov
[] = {
2054 {.iov_base
= &chunk
, .iov_len
= sizeof(chunk
)},
2055 {.iov_base
= (char *)msg
, .iov_len
= msg
? strlen(msg
) : 0},
2059 trace_nbd_co_send_chunk_error(request
->cookie
, nbd_err
,
2060 nbd_err_lookup(nbd_err
), msg
? msg
: "");
2061 set_be_chunk(client
, iov
, 3, NBD_REPLY_FLAG_DONE
,
2062 NBD_REPLY_TYPE_ERROR
, request
);
2063 stl_be_p(&chunk
.error
, nbd_err
);
2064 stw_be_p(&chunk
.message_length
, iov
[2].iov_len
);
2066 return nbd_co_send_iov(client
, iov
, 3, errp
);
2069 /* Do a sparse read and send the structured reply to the client.
2070 * Returns -errno if sending fails. blk_co_block_status_above() failure is
2071 * reported to the client, at which point this function succeeds.
2073 static int coroutine_fn
nbd_co_send_sparse_read(NBDClient
*client
,
2074 NBDRequest
*request
,
2081 NBDExport
*exp
= client
->exp
;
2082 size_t progress
= 0;
2084 assert(size
<= NBD_MAX_BUFFER_SIZE
);
2085 while (progress
< size
) {
2087 int status
= blk_co_block_status_above(exp
->common
.blk
, NULL
,
2089 size
- progress
, &pnum
, NULL
,
2094 char *msg
= g_strdup_printf("unable to check for holes: %s",
2097 ret
= nbd_co_send_chunk_error(client
, request
, -status
, msg
, errp
);
2101 assert(pnum
&& pnum
<= size
- progress
);
2102 final
= progress
+ pnum
== size
;
2103 if (status
& BDRV_BLOCK_ZERO
) {
2105 NBDStructuredReadHole chunk
;
2106 struct iovec iov
[] = {
2108 {.iov_base
= &chunk
, .iov_len
= sizeof(chunk
)},
2111 trace_nbd_co_send_chunk_read_hole(request
->cookie
,
2112 offset
+ progress
, pnum
);
2113 set_be_chunk(client
, iov
, 2,
2114 final
? NBD_REPLY_FLAG_DONE
: 0,
2115 NBD_REPLY_TYPE_OFFSET_HOLE
, request
);
2116 stq_be_p(&chunk
.offset
, offset
+ progress
);
2117 stl_be_p(&chunk
.length
, pnum
);
2118 ret
= nbd_co_send_iov(client
, iov
, 2, errp
);
2120 ret
= blk_co_pread(exp
->common
.blk
, offset
+ progress
, pnum
,
2121 data
+ progress
, 0);
2123 error_setg_errno(errp
, -ret
, "reading from file failed");
2126 ret
= nbd_co_send_chunk_read(client
, request
, offset
+ progress
,
2127 data
+ progress
, pnum
, final
, errp
);
2138 typedef struct NBDExtentArray
{
2139 NBDExtent64
*extents
;
2140 unsigned int nb_alloc
;
2142 uint64_t total_length
;
2145 bool converted_to_be
;
2148 static NBDExtentArray
*nbd_extent_array_new(unsigned int nb_alloc
,
2151 NBDExtentArray
*ea
= g_new0(NBDExtentArray
, 1);
2153 assert(mode
>= NBD_MODE_STRUCTURED
);
2154 ea
->nb_alloc
= nb_alloc
;
2155 ea
->extents
= g_new(NBDExtent64
, nb_alloc
);
2156 ea
->extended
= mode
>= NBD_MODE_EXTENDED
;
2162 static void nbd_extent_array_free(NBDExtentArray
*ea
)
2164 g_free(ea
->extents
);
2167 G_DEFINE_AUTOPTR_CLEANUP_FUNC(NBDExtentArray
, nbd_extent_array_free
)
2169 /* Further modifications of the array after conversion are abandoned */
2170 static void nbd_extent_array_convert_to_be(NBDExtentArray
*ea
)
2174 assert(!ea
->converted_to_be
);
2175 assert(ea
->extended
);
2176 ea
->can_add
= false;
2177 ea
->converted_to_be
= true;
2179 for (i
= 0; i
< ea
->count
; i
++) {
2180 ea
->extents
[i
].length
= cpu_to_be64(ea
->extents
[i
].length
);
2181 ea
->extents
[i
].flags
= cpu_to_be64(ea
->extents
[i
].flags
);
2185 /* Further modifications of the array after conversion are abandoned */
2186 static NBDExtent32
*nbd_extent_array_convert_to_narrow(NBDExtentArray
*ea
)
2189 NBDExtent32
*extents
= g_new(NBDExtent32
, ea
->count
);
2191 assert(!ea
->converted_to_be
);
2192 assert(!ea
->extended
);
2193 ea
->can_add
= false;
2194 ea
->converted_to_be
= true;
2196 for (i
= 0; i
< ea
->count
; i
++) {
2197 assert((ea
->extents
[i
].length
| ea
->extents
[i
].flags
) <= UINT32_MAX
);
2198 extents
[i
].length
= cpu_to_be32(ea
->extents
[i
].length
);
2199 extents
[i
].flags
= cpu_to_be32(ea
->extents
[i
].flags
);
2206 * Add extent to NBDExtentArray. If extent can't be added (no available space),
2208 * For safety, when returning -1 for the first time, .can_add is set to false,
2209 * and further calls to nbd_extent_array_add() will crash.
2210 * (this avoids the situation where a caller ignores failure to add one extent,
2211 * where adding another extent that would squash into the last array entry
2212 * would result in an incorrect range reported to the client)
2214 static int nbd_extent_array_add(NBDExtentArray
*ea
,
2215 uint64_t length
, uint32_t flags
)
2217 assert(ea
->can_add
);
2222 if (!ea
->extended
) {
2223 assert(length
<= UINT32_MAX
);
2226 /* Extend previous extent if flags are the same */
2227 if (ea
->count
> 0 && flags
== ea
->extents
[ea
->count
- 1].flags
) {
2228 uint64_t sum
= length
+ ea
->extents
[ea
->count
- 1].length
;
2231 * sum cannot overflow: the block layer bounds image size at
2232 * 2^63, and ea->extents[].length comes from the block layer.
2234 assert(sum
>= length
);
2235 if (sum
<= UINT32_MAX
|| ea
->extended
) {
2236 ea
->extents
[ea
->count
- 1].length
= sum
;
2237 ea
->total_length
+= length
;
2242 if (ea
->count
>= ea
->nb_alloc
) {
2243 ea
->can_add
= false;
2247 ea
->total_length
+= length
;
2248 ea
->extents
[ea
->count
] = (NBDExtent64
) {.length
= length
, .flags
= flags
};
2254 static int coroutine_fn
blockstatus_to_extents(BlockBackend
*blk
,
2255 uint64_t offset
, uint64_t bytes
,
2261 int ret
= blk_co_block_status_above(blk
, NULL
, offset
, bytes
, &num
,
2268 flags
= (ret
& BDRV_BLOCK_DATA
? 0 : NBD_STATE_HOLE
) |
2269 (ret
& BDRV_BLOCK_ZERO
? NBD_STATE_ZERO
: 0);
2271 if (nbd_extent_array_add(ea
, num
, flags
) < 0) {
2282 static int coroutine_fn
blockalloc_to_extents(BlockBackend
*blk
,
2283 uint64_t offset
, uint64_t bytes
,
2288 int ret
= blk_co_is_allocated_above(blk
, NULL
, false, offset
, bytes
,
2295 if (nbd_extent_array_add(ea
, num
, ret
) < 0) {
2307 * nbd_co_send_extents
2309 * @ea is converted to BE by the function
2310 * @last controls whether NBD_REPLY_FLAG_DONE is sent.
2312 static int coroutine_fn
2313 nbd_co_send_extents(NBDClient
*client
, NBDRequest
*request
, NBDExtentArray
*ea
,
2314 bool last
, uint32_t context_id
, Error
**errp
)
2317 NBDStructuredMeta meta
;
2318 NBDExtendedMeta meta_ext
;
2319 g_autofree NBDExtent32
*extents
= NULL
;
2321 struct iovec iov
[] = { {.iov_base
= &hdr
}, {0}, {0} };
2323 if (client
->mode
>= NBD_MODE_EXTENDED
) {
2324 type
= NBD_REPLY_TYPE_BLOCK_STATUS_EXT
;
2326 iov
[1].iov_base
= &meta_ext
;
2327 iov
[1].iov_len
= sizeof(meta_ext
);
2328 stl_be_p(&meta_ext
.context_id
, context_id
);
2329 stl_be_p(&meta_ext
.count
, ea
->count
);
2331 nbd_extent_array_convert_to_be(ea
);
2332 iov
[2].iov_base
= ea
->extents
;
2333 iov
[2].iov_len
= ea
->count
* sizeof(ea
->extents
[0]);
2335 type
= NBD_REPLY_TYPE_BLOCK_STATUS
;
2337 iov
[1].iov_base
= &meta
;
2338 iov
[1].iov_len
= sizeof(meta
);
2339 stl_be_p(&meta
.context_id
, context_id
);
2341 extents
= nbd_extent_array_convert_to_narrow(ea
);
2342 iov
[2].iov_base
= extents
;
2343 iov
[2].iov_len
= ea
->count
* sizeof(extents
[0]);
2346 trace_nbd_co_send_extents(request
->cookie
, ea
->count
, context_id
,
2347 ea
->total_length
, last
);
2348 set_be_chunk(client
, iov
, 3, last
? NBD_REPLY_FLAG_DONE
: 0, type
,
2351 return nbd_co_send_iov(client
, iov
, 3, errp
);
2354 /* Get block status from the exported device and send it to the client */
2356 coroutine_fn
nbd_co_send_block_status(NBDClient
*client
, NBDRequest
*request
,
2357 BlockBackend
*blk
, uint64_t offset
,
2358 uint64_t length
, bool dont_fragment
,
2359 bool last
, uint32_t context_id
,
2363 unsigned int nb_extents
= dont_fragment
? 1 : NBD_MAX_BLOCK_STATUS_EXTENTS
;
2364 g_autoptr(NBDExtentArray
) ea
=
2365 nbd_extent_array_new(nb_extents
, client
->mode
);
2367 if (context_id
== NBD_META_ID_BASE_ALLOCATION
) {
2368 ret
= blockstatus_to_extents(blk
, offset
, length
, ea
);
2370 ret
= blockalloc_to_extents(blk
, offset
, length
, ea
);
2373 return nbd_co_send_chunk_error(client
, request
, -ret
,
2374 "can't get block status", errp
);
2377 return nbd_co_send_extents(client
, request
, ea
, last
, context_id
, errp
);
2380 /* Populate @ea from a dirty bitmap. */
2381 static void bitmap_to_extents(BdrvDirtyBitmap
*bitmap
,
2382 uint64_t offset
, uint64_t length
,
2385 int64_t start
, dirty_start
, dirty_count
;
2386 int64_t end
= offset
+ length
;
2388 int64_t bound
= es
->extended
? INT64_MAX
: INT32_MAX
;
2390 bdrv_dirty_bitmap_lock(bitmap
);
2392 for (start
= offset
;
2393 bdrv_dirty_bitmap_next_dirty_area(bitmap
, start
, end
, bound
,
2394 &dirty_start
, &dirty_count
);
2395 start
= dirty_start
+ dirty_count
)
2397 if ((nbd_extent_array_add(es
, dirty_start
- start
, 0) < 0) ||
2398 (nbd_extent_array_add(es
, dirty_count
, NBD_STATE_DIRTY
) < 0))
2406 /* last non dirty extent, nothing to do if array is now full */
2407 (void) nbd_extent_array_add(es
, end
- start
, 0);
2410 bdrv_dirty_bitmap_unlock(bitmap
);
2413 static int coroutine_fn
nbd_co_send_bitmap(NBDClient
*client
,
2414 NBDRequest
*request
,
2415 BdrvDirtyBitmap
*bitmap
,
2417 uint64_t length
, bool dont_fragment
,
2418 bool last
, uint32_t context_id
,
2421 unsigned int nb_extents
= dont_fragment
? 1 : NBD_MAX_BLOCK_STATUS_EXTENTS
;
2422 g_autoptr(NBDExtentArray
) ea
=
2423 nbd_extent_array_new(nb_extents
, client
->mode
);
2425 bitmap_to_extents(bitmap
, offset
, length
, ea
);
2427 return nbd_co_send_extents(client
, request
, ea
, last
, context_id
, errp
);
2431 * nbd_co_block_status_payload_read
2432 * Called when a client wants a subset of negotiated contexts via a
2433 * BLOCK_STATUS payload. Check the payload for valid length and
2434 * contents. On success, return 0 with request updated to effective
2435 * length. If request was invalid but all payload consumed, return 0
2436 * with request->len and request->contexts->count set to 0 (which will
2437 * trigger an appropriate NBD_EINVAL response later on). Return
2438 * negative errno if the payload was not fully consumed.
2441 nbd_co_block_status_payload_read(NBDClient
*client
, NBDRequest
*request
,
2444 uint64_t payload_len
= request
->len
;
2445 g_autofree
char *buf
= NULL
;
2446 size_t count
, i
, nr_bitmaps
;
2449 if (payload_len
> NBD_MAX_BUFFER_SIZE
) {
2450 error_setg(errp
, "len (%" PRIu64
") is larger than max len (%u)",
2451 request
->len
, NBD_MAX_BUFFER_SIZE
);
2455 assert(client
->contexts
.exp
== client
->exp
);
2456 nr_bitmaps
= client
->exp
->nr_export_bitmaps
;
2457 request
->contexts
= g_new0(NBDMetaContexts
, 1);
2458 request
->contexts
->exp
= client
->exp
;
2460 if (payload_len
% sizeof(uint32_t) ||
2461 payload_len
< sizeof(NBDBlockStatusPayload
) ||
2462 payload_len
> (sizeof(NBDBlockStatusPayload
) +
2463 sizeof(id
) * client
->contexts
.count
)) {
2467 buf
= g_malloc(payload_len
);
2468 if (nbd_read(client
->ioc
, buf
, payload_len
,
2469 "CMD_BLOCK_STATUS data", errp
) < 0) {
2472 trace_nbd_co_receive_request_payload_received(request
->cookie
,
2474 request
->contexts
->bitmaps
= g_new0(bool, nr_bitmaps
);
2475 count
= (payload_len
- sizeof(NBDBlockStatusPayload
)) / sizeof(id
);
2478 for (i
= 0; i
< count
; i
++) {
2479 id
= ldl_be_p(buf
+ sizeof(NBDBlockStatusPayload
) + sizeof(id
) * i
);
2480 if (id
== NBD_META_ID_BASE_ALLOCATION
) {
2481 if (!client
->contexts
.base_allocation
||
2482 request
->contexts
->base_allocation
) {
2485 request
->contexts
->base_allocation
= true;
2486 } else if (id
== NBD_META_ID_ALLOCATION_DEPTH
) {
2487 if (!client
->contexts
.allocation_depth
||
2488 request
->contexts
->allocation_depth
) {
2491 request
->contexts
->allocation_depth
= true;
2493 unsigned idx
= id
- NBD_META_ID_DIRTY_BITMAP
;
2495 if (idx
>= nr_bitmaps
|| !client
->contexts
.bitmaps
[idx
] ||
2496 request
->contexts
->bitmaps
[idx
]) {
2499 request
->contexts
->bitmaps
[idx
] = true;
2503 request
->len
= ldq_be_p(buf
);
2504 request
->contexts
->count
= count
;
2508 trace_nbd_co_receive_block_status_payload_compliance(request
->from
,
2510 request
->len
= request
->contexts
->count
= 0;
2511 return nbd_drop(client
->ioc
, payload_len
, errp
);
2514 /* nbd_co_receive_request
2515 * Collect a client request. Return 0 if request looks valid, -EIO to drop
2516 * connection right away, -EAGAIN to indicate we were interrupted and the
2517 * channel should be quiesced, and any other negative value to report an error
2518 * to the client (although the caller may still need to disconnect after
2519 * reporting the error).
2521 static int coroutine_fn
nbd_co_receive_request(NBDRequestData
*req
,
2522 NBDRequest
*request
,
2525 NBDClient
*client
= req
->client
;
2526 bool extended_with_payload
;
2527 bool check_length
= false;
2528 bool check_rofs
= false;
2529 bool allocate_buffer
= false;
2530 bool payload_okay
= false;
2531 uint64_t payload_len
= 0;
2532 int valid_flags
= NBD_CMD_FLAG_FUA
;
2535 g_assert(qemu_in_coroutine());
2536 assert(client
->recv_coroutine
== qemu_coroutine_self());
2537 ret
= nbd_receive_request(client
, request
, errp
);
2542 trace_nbd_co_receive_request_decode_type(request
->cookie
, request
->type
,
2543 nbd_cmd_lookup(request
->type
));
2544 extended_with_payload
= client
->mode
>= NBD_MODE_EXTENDED
&&
2545 request
->flags
& NBD_CMD_FLAG_PAYLOAD_LEN
;
2546 if (extended_with_payload
) {
2547 payload_len
= request
->len
;
2548 check_length
= true;
2551 switch (request
->type
) {
2553 /* Special case: we're going to disconnect without a reply,
2554 * whether or not flags, from, or len are bogus */
2555 req
->complete
= true;
2559 if (client
->mode
>= NBD_MODE_STRUCTURED
) {
2560 valid_flags
|= NBD_CMD_FLAG_DF
;
2562 check_length
= true;
2563 allocate_buffer
= true;
2567 if (client
->mode
>= NBD_MODE_EXTENDED
) {
2568 if (!extended_with_payload
) {
2569 /* The client is noncompliant. Trace it, but proceed. */
2570 trace_nbd_co_receive_ext_payload_compliance(request
->from
,
2573 valid_flags
|= NBD_CMD_FLAG_PAYLOAD_LEN
;
2575 payload_okay
= true;
2576 payload_len
= request
->len
;
2577 check_length
= true;
2578 allocate_buffer
= true;
2590 check_length
= true;
2593 case NBD_CMD_WRITE_ZEROES
:
2594 valid_flags
|= NBD_CMD_FLAG_NO_HOLE
| NBD_CMD_FLAG_FAST_ZERO
;
2598 case NBD_CMD_BLOCK_STATUS
:
2599 if (extended_with_payload
) {
2600 ret
= nbd_co_block_status_payload_read(client
, request
, errp
);
2604 /* payload now consumed */
2605 check_length
= false;
2607 valid_flags
|= NBD_CMD_FLAG_PAYLOAD_LEN
;
2609 request
->contexts
= &client
->contexts
;
2611 valid_flags
|= NBD_CMD_FLAG_REQ_ONE
;
2615 /* Unrecognized, will fail later */
2619 /* Payload and buffer handling. */
2621 req
->complete
= true;
2623 if (check_length
&& request
->len
> NBD_MAX_BUFFER_SIZE
) {
2624 /* READ, WRITE, CACHE */
2625 error_setg(errp
, "len (%" PRIu64
") is larger than max len (%u)",
2626 request
->len
, NBD_MAX_BUFFER_SIZE
);
2629 if (payload_len
&& !payload_okay
) {
2631 * For now, we don't support payloads on other commands; but
2632 * we can keep the connection alive by ignoring the payload.
2633 * We will fail the command later with NBD_EINVAL for the use
2634 * of an unsupported flag (and not for access beyond bounds).
2636 assert(request
->type
!= NBD_CMD_WRITE
);
2639 if (allocate_buffer
) {
2641 req
->data
= blk_try_blockalign(client
->exp
->common
.blk
,
2643 if (req
->data
== NULL
) {
2644 error_setg(errp
, "No memory");
2652 ret
= nbd_read(client
->ioc
, req
->data
, payload_len
,
2653 "CMD_WRITE data", errp
);
2655 ret
= nbd_drop(client
->ioc
, payload_len
, errp
);
2660 req
->complete
= true;
2661 trace_nbd_co_receive_request_payload_received(request
->cookie
,
2665 /* Sanity checks. */
2666 if (client
->exp
->nbdflags
& NBD_FLAG_READ_ONLY
&& check_rofs
) {
2667 /* WRITE, TRIM, WRITE_ZEROES */
2668 error_setg(errp
, "Export is read-only");
2671 if (request
->from
> client
->exp
->size
||
2672 request
->len
> client
->exp
->size
- request
->from
) {
2673 error_setg(errp
, "operation past EOF; From: %" PRIu64
", Len: %" PRIu64
2674 ", Size: %" PRIu64
, request
->from
, request
->len
,
2676 return (request
->type
== NBD_CMD_WRITE
||
2677 request
->type
== NBD_CMD_WRITE_ZEROES
) ? -ENOSPC
: -EINVAL
;
2679 if (client
->check_align
&& !QEMU_IS_ALIGNED(request
->from
| request
->len
,
2680 client
->check_align
)) {
2682 * The block layer gracefully handles unaligned requests, but
2683 * it's still worth tracing client non-compliance
2685 trace_nbd_co_receive_align_compliance(nbd_cmd_lookup(request
->type
),
2688 client
->check_align
);
2690 if (request
->flags
& ~valid_flags
) {
2691 error_setg(errp
, "unsupported flags for command %s (got 0x%x)",
2692 nbd_cmd_lookup(request
->type
), request
->flags
);
2699 /* Send simple reply without a payload, or a structured error
2700 * @error_msg is ignored if @ret >= 0
2701 * Returns 0 if connection is still live, -errno on failure to talk to client
2703 static coroutine_fn
int nbd_send_generic_reply(NBDClient
*client
,
2704 NBDRequest
*request
,
2706 const char *error_msg
,
2709 if (client
->mode
>= NBD_MODE_STRUCTURED
&& ret
< 0) {
2710 return nbd_co_send_chunk_error(client
, request
, -ret
, error_msg
, errp
);
2711 } else if (client
->mode
>= NBD_MODE_EXTENDED
) {
2712 return nbd_co_send_chunk_done(client
, request
, errp
);
2714 return nbd_co_send_simple_reply(client
, request
, ret
< 0 ? -ret
: 0,
2719 /* Handle NBD_CMD_READ request.
2720 * Return -errno if sending fails. Other errors are reported directly to the
2721 * client as an error reply. */
2722 static coroutine_fn
int nbd_do_cmd_read(NBDClient
*client
, NBDRequest
*request
,
2723 uint8_t *data
, Error
**errp
)
2726 NBDExport
*exp
= client
->exp
;
2728 assert(request
->type
== NBD_CMD_READ
);
2729 assert(request
->len
<= NBD_MAX_BUFFER_SIZE
);
2731 /* XXX: NBD Protocol only documents use of FUA with WRITE */
2732 if (request
->flags
& NBD_CMD_FLAG_FUA
) {
2733 ret
= blk_co_flush(exp
->common
.blk
);
2735 return nbd_send_generic_reply(client
, request
, ret
,
2736 "flush failed", errp
);
2740 if (client
->mode
>= NBD_MODE_STRUCTURED
&&
2741 !(request
->flags
& NBD_CMD_FLAG_DF
) && request
->len
)
2743 return nbd_co_send_sparse_read(client
, request
, request
->from
,
2744 data
, request
->len
, errp
);
2747 ret
= blk_co_pread(exp
->common
.blk
, request
->from
, request
->len
, data
, 0);
2749 return nbd_send_generic_reply(client
, request
, ret
,
2750 "reading from file failed", errp
);
2753 if (client
->mode
>= NBD_MODE_STRUCTURED
) {
2755 return nbd_co_send_chunk_read(client
, request
, request
->from
, data
,
2756 request
->len
, true, errp
);
2758 return nbd_co_send_chunk_done(client
, request
, errp
);
2761 return nbd_co_send_simple_reply(client
, request
, 0,
2762 data
, request
->len
, errp
);
2769 * Handle NBD_CMD_CACHE request.
2770 * Return -errno if sending fails. Other errors are reported directly to the
2771 * client as an error reply.
2773 static coroutine_fn
int nbd_do_cmd_cache(NBDClient
*client
, NBDRequest
*request
,
2777 NBDExport
*exp
= client
->exp
;
2779 assert(request
->type
== NBD_CMD_CACHE
);
2780 assert(request
->len
<= NBD_MAX_BUFFER_SIZE
);
2782 ret
= blk_co_preadv(exp
->common
.blk
, request
->from
, request
->len
,
2783 NULL
, BDRV_REQ_COPY_ON_READ
| BDRV_REQ_PREFETCH
);
2785 return nbd_send_generic_reply(client
, request
, ret
,
2786 "caching data failed", errp
);
2789 /* Handle NBD request.
2790 * Return -errno if sending fails. Other errors are reported directly to the
2791 * client as an error reply. */
2792 static coroutine_fn
int nbd_handle_request(NBDClient
*client
,
2793 NBDRequest
*request
,
2794 uint8_t *data
, Error
**errp
)
2798 NBDExport
*exp
= client
->exp
;
2802 switch (request
->type
) {
2804 return nbd_do_cmd_cache(client
, request
, errp
);
2807 return nbd_do_cmd_read(client
, request
, data
, errp
);
2811 if (request
->flags
& NBD_CMD_FLAG_FUA
) {
2812 flags
|= BDRV_REQ_FUA
;
2814 assert(request
->len
<= NBD_MAX_BUFFER_SIZE
);
2815 ret
= blk_co_pwrite(exp
->common
.blk
, request
->from
, request
->len
, data
,
2817 return nbd_send_generic_reply(client
, request
, ret
,
2818 "writing to file failed", errp
);
2820 case NBD_CMD_WRITE_ZEROES
:
2822 if (request
->flags
& NBD_CMD_FLAG_FUA
) {
2823 flags
|= BDRV_REQ_FUA
;
2825 if (!(request
->flags
& NBD_CMD_FLAG_NO_HOLE
)) {
2826 flags
|= BDRV_REQ_MAY_UNMAP
;
2828 if (request
->flags
& NBD_CMD_FLAG_FAST_ZERO
) {
2829 flags
|= BDRV_REQ_NO_FALLBACK
;
2831 ret
= blk_co_pwrite_zeroes(exp
->common
.blk
, request
->from
, request
->len
,
2833 return nbd_send_generic_reply(client
, request
, ret
,
2834 "writing to file failed", errp
);
2837 /* unreachable, thanks to special case in nbd_co_receive_request() */
2841 ret
= blk_co_flush(exp
->common
.blk
);
2842 return nbd_send_generic_reply(client
, request
, ret
,
2843 "flush failed", errp
);
2846 ret
= blk_co_pdiscard(exp
->common
.blk
, request
->from
, request
->len
);
2847 if (ret
>= 0 && request
->flags
& NBD_CMD_FLAG_FUA
) {
2848 ret
= blk_co_flush(exp
->common
.blk
);
2850 return nbd_send_generic_reply(client
, request
, ret
,
2851 "discard failed", errp
);
2853 case NBD_CMD_BLOCK_STATUS
:
2854 assert(request
->contexts
);
2855 assert(client
->mode
>= NBD_MODE_EXTENDED
||
2856 request
->len
<= UINT32_MAX
);
2857 if (request
->contexts
->count
) {
2858 bool dont_fragment
= request
->flags
& NBD_CMD_FLAG_REQ_ONE
;
2859 int contexts_remaining
= request
->contexts
->count
;
2861 if (!request
->len
) {
2862 return nbd_send_generic_reply(client
, request
, -EINVAL
,
2863 "need non-zero length", errp
);
2865 if (request
->contexts
->base_allocation
) {
2866 ret
= nbd_co_send_block_status(client
, request
,
2869 request
->len
, dont_fragment
,
2870 !--contexts_remaining
,
2871 NBD_META_ID_BASE_ALLOCATION
,
2878 if (request
->contexts
->allocation_depth
) {
2879 ret
= nbd_co_send_block_status(client
, request
,
2881 request
->from
, request
->len
,
2883 !--contexts_remaining
,
2884 NBD_META_ID_ALLOCATION_DEPTH
,
2891 assert(request
->contexts
->exp
== client
->exp
);
2892 for (i
= 0; i
< client
->exp
->nr_export_bitmaps
; i
++) {
2893 if (!request
->contexts
->bitmaps
[i
]) {
2896 ret
= nbd_co_send_bitmap(client
, request
,
2897 client
->exp
->export_bitmaps
[i
],
2898 request
->from
, request
->len
,
2899 dont_fragment
, !--contexts_remaining
,
2900 NBD_META_ID_DIRTY_BITMAP
+ i
, errp
);
2906 assert(!contexts_remaining
);
2909 } else if (client
->contexts
.count
) {
2910 return nbd_send_generic_reply(client
, request
, -EINVAL
,
2911 "CMD_BLOCK_STATUS payload not valid",
2914 return nbd_send_generic_reply(client
, request
, -EINVAL
,
2915 "CMD_BLOCK_STATUS not negotiated",
2920 msg
= g_strdup_printf("invalid request type (%" PRIu32
") received",
2922 ret
= nbd_send_generic_reply(client
, request
, -EINVAL
, msg
,
2929 /* Owns a reference to the NBDClient passed as opaque. */
2930 static coroutine_fn
void nbd_trip(void *opaque
)
2932 NBDClient
*client
= opaque
;
2933 NBDRequestData
*req
;
2934 NBDRequest request
= { 0 }; /* GCC thinks it can be used uninitialized */
2936 Error
*local_err
= NULL
;
2939 if (client
->closing
) {
2940 nbd_client_put(client
);
2944 if (client
->quiescing
) {
2946 * We're switching between AIO contexts. Don't attempt to receive a new
2947 * request and kick the main context which may be waiting for us.
2949 nbd_client_put(client
);
2950 client
->recv_coroutine
= NULL
;
2955 req
= nbd_request_get(client
);
2956 ret
= nbd_co_receive_request(req
, &request
, &local_err
);
2957 client
->recv_coroutine
= NULL
;
2959 if (client
->closing
) {
2961 * The client may be closed when we are blocked in
2962 * nbd_co_receive_request()
2967 if (ret
== -EAGAIN
) {
2968 assert(client
->quiescing
);
2972 nbd_client_receive_next_request(client
);
2977 qio_channel_set_cork(client
->ioc
, true);
2980 /* It wasn't -EIO, so, according to nbd_co_receive_request()
2981 * semantics, we should return the error to the client. */
2982 Error
*export_err
= local_err
;
2985 ret
= nbd_send_generic_reply(client
, &request
, -EINVAL
,
2986 error_get_pretty(export_err
), &local_err
);
2987 error_free(export_err
);
2989 ret
= nbd_handle_request(client
, &request
, req
->data
, &local_err
);
2991 if (request
.contexts
&& request
.contexts
!= &client
->contexts
) {
2992 assert(request
.type
== NBD_CMD_BLOCK_STATUS
);
2993 g_free(request
.contexts
->bitmaps
);
2994 g_free(request
.contexts
);
2997 error_prepend(&local_err
, "Failed to send reply: ");
3002 * We must disconnect after NBD_CMD_WRITE or BLOCK_STATUS with
3003 * payload if we did not read the payload.
3005 if (!req
->complete
) {
3006 error_setg(&local_err
, "Request handling failed in intermediate state");
3010 qio_channel_set_cork(client
->ioc
, false);
3012 nbd_request_put(req
);
3013 nbd_client_put(client
);
3018 error_reportf_err(local_err
, "Disconnect client, due to: ");
3020 nbd_request_put(req
);
3021 client_close(client
, true);
3022 nbd_client_put(client
);
3025 static void nbd_client_receive_next_request(NBDClient
*client
)
3027 if (!client
->recv_coroutine
&& client
->nb_requests
< MAX_NBD_REQUESTS
&&
3028 !client
->quiescing
) {
3029 nbd_client_get(client
);
3030 client
->recv_coroutine
= qemu_coroutine_create(nbd_trip
, client
);
3031 aio_co_schedule(client
->exp
->common
.ctx
, client
->recv_coroutine
);
3035 static coroutine_fn
void nbd_co_client_start(void *opaque
)
3037 NBDClient
*client
= opaque
;
3038 Error
*local_err
= NULL
;
3040 qemu_co_mutex_init(&client
->send_lock
);
3042 if (nbd_negotiate(client
, &local_err
)) {
3044 error_report_err(local_err
);
3046 client_close(client
, false);
3050 nbd_client_receive_next_request(client
);
3054 * Create a new client listener using the given channel @sioc.
3055 * Begin servicing it in a coroutine. When the connection closes, call
3056 * @close_fn with an indication of whether the client completed negotiation.
3058 void nbd_client_new(QIOChannelSocket
*sioc
,
3059 QCryptoTLSCreds
*tlscreds
,
3060 const char *tlsauthz
,
3061 void (*close_fn
)(NBDClient
*, bool))
3066 client
= g_new0(NBDClient
, 1);
3067 client
->refcount
= 1;
3068 client
->tlscreds
= tlscreds
;
3070 object_ref(OBJECT(client
->tlscreds
));
3072 client
->tlsauthz
= g_strdup(tlsauthz
);
3073 client
->sioc
= sioc
;
3074 qio_channel_set_delay(QIO_CHANNEL(sioc
), false);
3075 object_ref(OBJECT(client
->sioc
));
3076 client
->ioc
= QIO_CHANNEL(sioc
);
3077 object_ref(OBJECT(client
->ioc
));
3078 client
->close_fn
= close_fn
;
3080 co
= qemu_coroutine_create(nbd_co_client_start
, client
);
3081 qemu_coroutine_enter(co
);