2 * Copyright (C) 2016-2017 Red Hat, Inc.
3 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
5 * Network Block Device Client 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"
21 #include "qapi/error.h"
23 #include "nbd-internal.h"
25 static int nbd_errno_to_system_errno(int err
)
48 trace_nbd_unknown_error(err
);
57 /* Definitions for opaque data types */
59 static QTAILQ_HEAD(, NBDExport
) exports
= QTAILQ_HEAD_INITIALIZER(exports
);
61 /* That's all folks */
63 /* Basic flow for negotiation
90 /* Send an option request.
92 * The request is for option @opt, with @data containing @len bytes of
93 * additional payload for the request (@len may be -1 to treat @data as
94 * a C string; and @data may be NULL if @len is 0).
95 * Return 0 if successful, -1 with errp set if it is impossible to
97 static int nbd_send_option_request(QIOChannel
*ioc
, uint32_t opt
,
98 uint32_t len
, const char *data
,
102 QEMU_BUILD_BUG_ON(sizeof(req
) != 16);
105 req
.length
= len
= strlen(data
);
107 trace_nbd_send_option_request(opt
, nbd_opt_lookup(opt
), len
);
109 stq_be_p(&req
.magic
, NBD_OPTS_MAGIC
);
110 stl_be_p(&req
.option
, opt
);
111 stl_be_p(&req
.length
, len
);
113 if (nbd_write(ioc
, &req
, sizeof(req
), errp
) < 0) {
114 error_prepend(errp
, "Failed to send option request header");
118 if (len
&& nbd_write(ioc
, (char *) data
, len
, errp
) < 0) {
119 error_prepend(errp
, "Failed to send option request data");
126 /* Send NBD_OPT_ABORT as a courtesy to let the server know that we are
127 * not going to attempt further negotiation. */
128 static void nbd_send_opt_abort(QIOChannel
*ioc
)
130 /* Technically, a compliant server is supposed to reply to us; but
131 * older servers disconnected instead. At any rate, we're allowed
132 * to disconnect without waiting for the server reply, so we don't
133 * even care if the request makes it to the server, let alone
134 * waiting around for whether the server replies. */
135 nbd_send_option_request(ioc
, NBD_OPT_ABORT
, 0, NULL
, NULL
);
139 /* Receive the header of an option reply, which should match the given
140 * opt. Read through the length field, but NOT the length bytes of
141 * payload. Return 0 if successful, -1 with errp set if it is
142 * impossible to continue. */
143 static int nbd_receive_option_reply(QIOChannel
*ioc
, uint32_t opt
,
144 nbd_opt_reply
*reply
, Error
**errp
)
146 QEMU_BUILD_BUG_ON(sizeof(*reply
) != 20);
147 if (nbd_read(ioc
, reply
, sizeof(*reply
), errp
) < 0) {
148 error_prepend(errp
, "failed to read option reply");
149 nbd_send_opt_abort(ioc
);
152 be64_to_cpus(&reply
->magic
);
153 be32_to_cpus(&reply
->option
);
154 be32_to_cpus(&reply
->type
);
155 be32_to_cpus(&reply
->length
);
157 trace_nbd_receive_option_reply(reply
->option
, nbd_opt_lookup(reply
->option
),
158 reply
->type
, nbd_rep_lookup(reply
->type
),
161 if (reply
->magic
!= NBD_REP_MAGIC
) {
162 error_setg(errp
, "Unexpected option reply magic");
163 nbd_send_opt_abort(ioc
);
166 if (reply
->option
!= opt
) {
167 error_setg(errp
, "Unexpected option type %x expected %x",
169 nbd_send_opt_abort(ioc
);
175 /* If reply represents success, return 1 without further action.
176 * If reply represents an error, consume the optional payload of
177 * the packet on ioc. Then return 0 for unsupported (so the client
178 * can fall back to other approaches), or -1 with errp set for other
181 static int nbd_handle_reply_err(QIOChannel
*ioc
, nbd_opt_reply
*reply
,
187 if (!(reply
->type
& (1 << 31))) {
192 if (reply
->length
> NBD_MAX_BUFFER_SIZE
) {
193 error_setg(errp
, "server error 0x%" PRIx32
194 " (%s) message is too long",
195 reply
->type
, nbd_rep_lookup(reply
->type
));
198 msg
= g_malloc(reply
->length
+ 1);
199 if (nbd_read(ioc
, msg
, reply
->length
, errp
) < 0) {
200 error_prepend(errp
, "failed to read option error 0x%" PRIx32
202 reply
->type
, nbd_rep_lookup(reply
->type
));
205 msg
[reply
->length
] = '\0';
208 switch (reply
->type
) {
209 case NBD_REP_ERR_UNSUP
:
210 trace_nbd_reply_err_unsup(reply
->option
, nbd_opt_lookup(reply
->option
));
214 case NBD_REP_ERR_POLICY
:
215 error_setg(errp
, "Denied by server for option %" PRIx32
" (%s)",
216 reply
->option
, nbd_opt_lookup(reply
->option
));
219 case NBD_REP_ERR_INVALID
:
220 error_setg(errp
, "Invalid data length for option %" PRIx32
" (%s)",
221 reply
->option
, nbd_opt_lookup(reply
->option
));
224 case NBD_REP_ERR_PLATFORM
:
225 error_setg(errp
, "Server lacks support for option %" PRIx32
" (%s)",
226 reply
->option
, nbd_opt_lookup(reply
->option
));
229 case NBD_REP_ERR_TLS_REQD
:
230 error_setg(errp
, "TLS negotiation required before option %" PRIx32
231 " (%s)", reply
->option
, nbd_opt_lookup(reply
->option
));
234 case NBD_REP_ERR_UNKNOWN
:
235 error_setg(errp
, "Requested export not available");
238 case NBD_REP_ERR_SHUTDOWN
:
239 error_setg(errp
, "Server shutting down before option %" PRIx32
" (%s)",
240 reply
->option
, nbd_opt_lookup(reply
->option
));
243 case NBD_REP_ERR_BLOCK_SIZE_REQD
:
244 error_setg(errp
, "Server requires INFO_BLOCK_SIZE for option %" PRIx32
245 " (%s)", reply
->option
, nbd_opt_lookup(reply
->option
));
249 error_setg(errp
, "Unknown error code when asking for option %" PRIx32
250 " (%s)", reply
->option
, nbd_opt_lookup(reply
->option
));
255 error_append_hint(errp
, "server reported: %s\n", msg
);
261 nbd_send_opt_abort(ioc
);
266 /* Process another portion of the NBD_OPT_LIST reply. Set *@match if
267 * the current reply matches @want or if the server does not support
268 * NBD_OPT_LIST, otherwise leave @match alone. Return 0 if iteration
269 * is complete, positive if more replies are expected, or negative
270 * with @errp set if an unrecoverable error occurred. */
271 static int nbd_receive_list(QIOChannel
*ioc
, const char *want
, bool *match
,
277 char name
[NBD_MAX_NAME_SIZE
+ 1];
280 if (nbd_receive_option_reply(ioc
, NBD_OPT_LIST
, &reply
, errp
) < 0) {
283 error
= nbd_handle_reply_err(ioc
, &reply
, errp
);
285 /* The server did not support NBD_OPT_LIST, so set *match on
286 * the assumption that any name will be accepted. */
292 if (reply
.type
== NBD_REP_ACK
) {
294 error_setg(errp
, "length too long for option end");
295 nbd_send_opt_abort(ioc
);
299 } else if (reply
.type
!= NBD_REP_SERVER
) {
300 error_setg(errp
, "Unexpected reply type %" PRIx32
" expected %x",
301 reply
.type
, NBD_REP_SERVER
);
302 nbd_send_opt_abort(ioc
);
306 if (len
< sizeof(namelen
) || len
> NBD_MAX_BUFFER_SIZE
) {
307 error_setg(errp
, "incorrect option length %" PRIu32
, len
);
308 nbd_send_opt_abort(ioc
);
311 if (nbd_read(ioc
, &namelen
, sizeof(namelen
), errp
) < 0) {
312 error_prepend(errp
, "failed to read option name length");
313 nbd_send_opt_abort(ioc
);
316 namelen
= be32_to_cpu(namelen
);
317 len
-= sizeof(namelen
);
319 error_setg(errp
, "incorrect option name length");
320 nbd_send_opt_abort(ioc
);
323 if (namelen
!= strlen(want
)) {
324 if (nbd_drop(ioc
, len
, errp
) < 0) {
325 error_prepend(errp
, "failed to skip export name with wrong length");
326 nbd_send_opt_abort(ioc
);
332 assert(namelen
< sizeof(name
));
333 if (nbd_read(ioc
, name
, namelen
, errp
) < 0) {
334 error_prepend(errp
, "failed to read export name");
335 nbd_send_opt_abort(ioc
);
338 name
[namelen
] = '\0';
340 if (nbd_drop(ioc
, len
, errp
) < 0) {
341 error_prepend(errp
, "failed to read export description");
342 nbd_send_opt_abort(ioc
);
345 if (!strcmp(name
, want
)) {
352 /* Returns -1 if NBD_OPT_GO proves the export @wantname cannot be
353 * used, 0 if NBD_OPT_GO is unsupported (fall back to NBD_OPT_LIST and
354 * NBD_OPT_EXPORT_NAME in that case), and > 0 if the export is good to
355 * go (with @info populated). */
356 static int nbd_opt_go(QIOChannel
*ioc
, const char *wantname
,
357 NBDExportInfo
*info
, Error
**errp
)
360 uint32_t len
= strlen(wantname
);
365 /* The protocol requires that the server send NBD_INFO_EXPORT with
366 * a non-zero flags (at least NBD_FLAG_HAS_FLAGS must be set); so
367 * flags still 0 is a witness of a broken server. */
370 trace_nbd_opt_go_start(wantname
);
371 buf
= g_malloc(4 + len
+ 2 + 2 * info
->request_sizes
+ 1);
373 memcpy(buf
+ 4, wantname
, len
);
374 /* At most one request, everything else up to server */
375 stw_be_p(buf
+ 4 + len
, info
->request_sizes
);
376 if (info
->request_sizes
) {
377 stw_be_p(buf
+ 4 + len
+ 2, NBD_INFO_BLOCK_SIZE
);
379 error
= nbd_send_option_request(ioc
, NBD_OPT_GO
,
380 4 + len
+ 2 + 2 * info
->request_sizes
,
388 if (nbd_receive_option_reply(ioc
, NBD_OPT_GO
, &reply
, errp
) < 0) {
391 error
= nbd_handle_reply_err(ioc
, &reply
, errp
);
397 if (reply
.type
== NBD_REP_ACK
) {
398 /* Server is done sending info and moved into transmission
399 phase, but make sure it sent flags */
401 error_setg(errp
, "server sent invalid NBD_REP_ACK");
402 nbd_send_opt_abort(ioc
);
406 error_setg(errp
, "broken server omitted NBD_INFO_EXPORT");
407 nbd_send_opt_abort(ioc
);
410 trace_nbd_opt_go_success();
413 if (reply
.type
!= NBD_REP_INFO
) {
414 error_setg(errp
, "unexpected reply type %" PRIx32
415 " (%s), expected %x",
416 reply
.type
, nbd_rep_lookup(reply
.type
), NBD_REP_INFO
);
417 nbd_send_opt_abort(ioc
);
420 if (len
< sizeof(type
)) {
421 error_setg(errp
, "NBD_REP_INFO length %" PRIu32
" is too short",
423 nbd_send_opt_abort(ioc
);
426 if (nbd_read(ioc
, &type
, sizeof(type
), errp
) < 0) {
427 error_prepend(errp
, "failed to read info type");
428 nbd_send_opt_abort(ioc
);
434 case NBD_INFO_EXPORT
:
435 if (len
!= sizeof(info
->size
) + sizeof(info
->flags
)) {
436 error_setg(errp
, "remaining export info len %" PRIu32
437 " is unexpected size", len
);
438 nbd_send_opt_abort(ioc
);
441 if (nbd_read(ioc
, &info
->size
, sizeof(info
->size
), errp
) < 0) {
442 error_prepend(errp
, "failed to read info size");
443 nbd_send_opt_abort(ioc
);
446 be64_to_cpus(&info
->size
);
447 if (nbd_read(ioc
, &info
->flags
, sizeof(info
->flags
), errp
) < 0) {
448 error_prepend(errp
, "failed to read info flags");
449 nbd_send_opt_abort(ioc
);
452 be16_to_cpus(&info
->flags
);
453 trace_nbd_receive_negotiate_size_flags(info
->size
, info
->flags
);
456 case NBD_INFO_BLOCK_SIZE
:
457 if (len
!= sizeof(info
->min_block
) * 3) {
458 error_setg(errp
, "remaining export info len %" PRIu32
459 " is unexpected size", len
);
460 nbd_send_opt_abort(ioc
);
463 if (nbd_read(ioc
, &info
->min_block
, sizeof(info
->min_block
),
465 error_prepend(errp
, "failed to read info minimum block size");
466 nbd_send_opt_abort(ioc
);
469 be32_to_cpus(&info
->min_block
);
470 if (!is_power_of_2(info
->min_block
)) {
471 error_setg(errp
, "server minimum block size %" PRId32
472 "is not a power of two", info
->min_block
);
473 nbd_send_opt_abort(ioc
);
476 if (nbd_read(ioc
, &info
->opt_block
, sizeof(info
->opt_block
),
478 error_prepend(errp
, "failed to read info preferred block size");
479 nbd_send_opt_abort(ioc
);
482 be32_to_cpus(&info
->opt_block
);
483 if (!is_power_of_2(info
->opt_block
) ||
484 info
->opt_block
< info
->min_block
) {
485 error_setg(errp
, "server preferred block size %" PRId32
486 "is not valid", info
->opt_block
);
487 nbd_send_opt_abort(ioc
);
490 if (nbd_read(ioc
, &info
->max_block
, sizeof(info
->max_block
),
492 error_prepend(errp
, "failed to read info maximum block size");
493 nbd_send_opt_abort(ioc
);
496 be32_to_cpus(&info
->max_block
);
497 trace_nbd_opt_go_info_block_size(info
->min_block
, info
->opt_block
,
502 trace_nbd_opt_go_info_unknown(type
, nbd_info_lookup(type
));
503 if (nbd_drop(ioc
, len
, errp
) < 0) {
504 error_prepend(errp
, "Failed to read info payload");
505 nbd_send_opt_abort(ioc
);
513 /* Return -1 on failure, 0 if wantname is an available export. */
514 static int nbd_receive_query_exports(QIOChannel
*ioc
,
515 const char *wantname
,
518 bool foundExport
= false;
520 trace_nbd_receive_query_exports_start(wantname
);
521 if (nbd_send_option_request(ioc
, NBD_OPT_LIST
, 0, NULL
, errp
) < 0) {
526 int ret
= nbd_receive_list(ioc
, wantname
, &foundExport
, errp
);
529 /* Server gave unexpected reply */
531 } else if (ret
== 0) {
532 /* Done iterating. */
534 error_setg(errp
, "No export with name '%s' available",
536 nbd_send_opt_abort(ioc
);
539 trace_nbd_receive_query_exports_success(wantname
);
545 static QIOChannel
*nbd_receive_starttls(QIOChannel
*ioc
,
546 QCryptoTLSCreds
*tlscreds
,
547 const char *hostname
, Error
**errp
)
551 struct NBDTLSHandshakeData data
= { 0 };
553 trace_nbd_receive_starttls_request();
554 if (nbd_send_option_request(ioc
, NBD_OPT_STARTTLS
, 0, NULL
, errp
) < 0) {
558 trace_nbd_receive_starttls_reply();
559 if (nbd_receive_option_reply(ioc
, NBD_OPT_STARTTLS
, &reply
, errp
) < 0) {
563 if (reply
.type
!= NBD_REP_ACK
) {
564 error_setg(errp
, "Server rejected request to start TLS %" PRIx32
,
566 nbd_send_opt_abort(ioc
);
570 if (reply
.length
!= 0) {
571 error_setg(errp
, "Start TLS response was not zero %" PRIu32
,
573 nbd_send_opt_abort(ioc
);
577 trace_nbd_receive_starttls_new_client();
578 tioc
= qio_channel_tls_new_client(ioc
, tlscreds
, hostname
, errp
);
582 qio_channel_set_name(QIO_CHANNEL(tioc
), "nbd-client-tls");
583 data
.loop
= g_main_loop_new(g_main_context_default(), FALSE
);
584 trace_nbd_receive_starttls_tls_handshake();
585 qio_channel_tls_handshake(tioc
,
590 if (!data
.complete
) {
591 g_main_loop_run(data
.loop
);
593 g_main_loop_unref(data
.loop
);
595 error_propagate(errp
, data
.error
);
596 object_unref(OBJECT(tioc
));
600 return QIO_CHANNEL(tioc
);
604 int nbd_receive_negotiate(QIOChannel
*ioc
, const char *name
,
605 QCryptoTLSCreds
*tlscreds
, const char *hostname
,
606 QIOChannel
**outioc
, NBDExportInfo
*info
,
614 trace_nbd_receive_negotiate(tlscreds
, hostname
? hostname
: "<null>");
621 if (tlscreds
&& !outioc
) {
622 error_setg(errp
, "Output I/O channel required for TLS");
626 if (nbd_read(ioc
, buf
, 8, errp
) < 0) {
627 error_prepend(errp
, "Failed to read data");
632 if (strlen(buf
) == 0) {
633 error_setg(errp
, "Server connection closed unexpectedly");
637 magic
= ldq_be_p(buf
);
638 trace_nbd_receive_negotiate_magic(magic
);
640 if (memcmp(buf
, "NBDMAGIC", 8) != 0) {
641 error_setg(errp
, "Invalid magic received");
645 if (nbd_read(ioc
, &magic
, sizeof(magic
), errp
) < 0) {
646 error_prepend(errp
, "Failed to read magic");
649 magic
= be64_to_cpu(magic
);
650 trace_nbd_receive_negotiate_magic(magic
);
652 if (magic
== NBD_OPTS_MAGIC
) {
653 uint32_t clientflags
= 0;
654 uint16_t globalflags
;
655 bool fixedNewStyle
= false;
657 if (nbd_read(ioc
, &globalflags
, sizeof(globalflags
), errp
) < 0) {
658 error_prepend(errp
, "Failed to read server flags");
661 globalflags
= be16_to_cpu(globalflags
);
662 trace_nbd_receive_negotiate_server_flags(globalflags
);
663 if (globalflags
& NBD_FLAG_FIXED_NEWSTYLE
) {
664 fixedNewStyle
= true;
665 clientflags
|= NBD_FLAG_C_FIXED_NEWSTYLE
;
667 if (globalflags
& NBD_FLAG_NO_ZEROES
) {
669 clientflags
|= NBD_FLAG_C_NO_ZEROES
;
671 /* client requested flags */
672 clientflags
= cpu_to_be32(clientflags
);
673 if (nbd_write(ioc
, &clientflags
, sizeof(clientflags
), errp
) < 0) {
674 error_prepend(errp
, "Failed to send clientflags field");
679 *outioc
= nbd_receive_starttls(ioc
, tlscreds
, hostname
, errp
);
685 error_setg(errp
, "Server does not support STARTTLS");
690 trace_nbd_receive_negotiate_default_name();
696 /* Try NBD_OPT_GO first - if it works, we are done (it
697 * also gives us a good message if the server requires
698 * TLS). If it is not available, fall back to
699 * NBD_OPT_LIST for nicer error messages about a missing
700 * export, then use NBD_OPT_EXPORT_NAME. */
701 result
= nbd_opt_go(ioc
, name
, info
, errp
);
708 /* Check our desired export is present in the
709 * server export list. Since NBD_OPT_EXPORT_NAME
710 * cannot return an error message, running this
711 * query gives us better error reporting if the
712 * export name is not available.
714 if (nbd_receive_query_exports(ioc
, name
, errp
) < 0) {
718 /* write the export name request */
719 if (nbd_send_option_request(ioc
, NBD_OPT_EXPORT_NAME
, -1, name
,
724 /* Read the response */
725 if (nbd_read(ioc
, &info
->size
, sizeof(info
->size
), errp
) < 0) {
726 error_prepend(errp
, "Failed to read export length");
729 be64_to_cpus(&info
->size
);
731 if (nbd_read(ioc
, &info
->flags
, sizeof(info
->flags
), errp
) < 0) {
732 error_prepend(errp
, "Failed to read export flags");
735 be16_to_cpus(&info
->flags
);
736 } else if (magic
== NBD_CLIENT_MAGIC
) {
740 error_setg(errp
, "Server does not support export names");
744 error_setg(errp
, "Server does not support STARTTLS");
748 if (nbd_read(ioc
, &info
->size
, sizeof(info
->size
), errp
) < 0) {
749 error_prepend(errp
, "Failed to read export length");
752 be64_to_cpus(&info
->size
);
754 if (nbd_read(ioc
, &oldflags
, sizeof(oldflags
), errp
) < 0) {
755 error_prepend(errp
, "Failed to read export flags");
758 be32_to_cpus(&oldflags
);
759 if (oldflags
& ~0xffff) {
760 error_setg(errp
, "Unexpected export flags %0x" PRIx32
, oldflags
);
763 info
->flags
= oldflags
;
765 error_setg(errp
, "Bad magic received");
769 trace_nbd_receive_negotiate_size_flags(info
->size
, info
->flags
);
770 if (zeroes
&& nbd_drop(ioc
, 124, errp
) < 0) {
771 error_prepend(errp
, "Failed to read reserved block");
781 int nbd_init(int fd
, QIOChannelSocket
*sioc
, NBDExportInfo
*info
,
784 unsigned long sector_size
= MAX(BDRV_SECTOR_SIZE
, info
->min_block
);
785 unsigned long sectors
= info
->size
/ sector_size
;
787 /* FIXME: Once the kernel module is patched to honor block sizes,
788 * and to advertise that fact to user space, we should update the
789 * hand-off to the kernel to use any block sizes we learned. */
790 assert(!info
->request_sizes
);
791 if (info
->size
/ sector_size
!= sectors
) {
792 error_setg(errp
, "Export size %" PRIu64
" too large for 32-bit kernel",
797 trace_nbd_init_set_socket();
799 if (ioctl(fd
, NBD_SET_SOCK
, (unsigned long) sioc
->fd
) < 0) {
801 error_setg(errp
, "Failed to set NBD socket");
805 trace_nbd_init_set_block_size(sector_size
);
807 if (ioctl(fd
, NBD_SET_BLKSIZE
, sector_size
) < 0) {
809 error_setg(errp
, "Failed setting NBD block size");
813 trace_nbd_init_set_size(sectors
);
814 if (info
->size
% sector_size
) {
815 trace_nbd_init_trailing_bytes(info
->size
% sector_size
);
818 if (ioctl(fd
, NBD_SET_SIZE_BLOCKS
, sectors
) < 0) {
820 error_setg(errp
, "Failed setting size (in blocks)");
824 if (ioctl(fd
, NBD_SET_FLAGS
, (unsigned long) info
->flags
) < 0) {
825 if (errno
== ENOTTY
) {
826 int read_only
= (info
->flags
& NBD_FLAG_READ_ONLY
) != 0;
827 trace_nbd_init_set_readonly();
829 if (ioctl(fd
, BLKROSET
, (unsigned long) &read_only
) < 0) {
831 error_setg(errp
, "Failed setting read-only attribute");
836 error_setg(errp
, "Failed setting flags");
841 trace_nbd_init_finish();
846 int nbd_client(int fd
)
851 trace_nbd_client_loop();
853 ret
= ioctl(fd
, NBD_DO_IT
);
854 if (ret
< 0 && errno
== EPIPE
) {
855 /* NBD_DO_IT normally returns EPIPE when someone has disconnected
856 * the socket via NBD_DISCONNECT. We do not want to return 1 in
863 trace_nbd_client_loop_ret(ret
, strerror(serrno
));
865 trace_nbd_client_clear_queue();
866 ioctl(fd
, NBD_CLEAR_QUE
);
868 trace_nbd_client_clear_socket();
869 ioctl(fd
, NBD_CLEAR_SOCK
);
875 int nbd_disconnect(int fd
)
877 ioctl(fd
, NBD_CLEAR_QUE
);
878 ioctl(fd
, NBD_DISCONNECT
);
879 ioctl(fd
, NBD_CLEAR_SOCK
);
884 int nbd_init(int fd
, QIOChannelSocket
*ioc
, NBDExportInfo
*info
,
887 error_setg(errp
, "nbd_init is only supported on Linux");
891 int nbd_client(int fd
)
895 int nbd_disconnect(int fd
)
901 ssize_t
nbd_send_request(QIOChannel
*ioc
, NBDRequest
*request
)
903 uint8_t buf
[NBD_REQUEST_SIZE
];
905 trace_nbd_send_request(request
->from
, request
->len
, request
->handle
,
906 request
->flags
, request
->type
,
907 nbd_cmd_lookup(request
->type
));
909 stl_be_p(buf
, NBD_REQUEST_MAGIC
);
910 stw_be_p(buf
+ 4, request
->flags
);
911 stw_be_p(buf
+ 6, request
->type
);
912 stq_be_p(buf
+ 8, request
->handle
);
913 stq_be_p(buf
+ 16, request
->from
);
914 stl_be_p(buf
+ 24, request
->len
);
916 return nbd_write(ioc
, buf
, sizeof(buf
), NULL
);
919 ssize_t
nbd_receive_reply(QIOChannel
*ioc
, NBDReply
*reply
, Error
**errp
)
921 uint8_t buf
[NBD_REPLY_SIZE
];
925 ret
= nbd_read_eof(ioc
, buf
, sizeof(buf
), errp
);
930 if (ret
!= sizeof(buf
)) {
931 error_setg(errp
, "read failed");
936 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
937 [ 4 .. 7] error (0 == no error)
941 magic
= ldl_be_p(buf
);
942 reply
->error
= ldl_be_p(buf
+ 4);
943 reply
->handle
= ldq_be_p(buf
+ 8);
945 reply
->error
= nbd_errno_to_system_errno(reply
->error
);
947 if (reply
->error
== ESHUTDOWN
) {
948 /* This works even on mingw which lacks a native ESHUTDOWN */
949 error_setg(errp
, "server shutting down");
952 trace_nbd_receive_reply(magic
, reply
->error
, reply
->handle
);
954 if (magic
!= NBD_REPLY_MAGIC
) {
955 error_setg(errp
, "invalid magic (got 0x%" PRIx32
")", magic
);