2 * Copyright (C) 2005 Anthony Liguori <anthony@codemonkey.ws>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include "block/nbd.h"
20 #include "block/block.h"
22 #include "block/coroutine.h"
27 #include <sys/ioctl.h>
29 #if defined(__sun__) || defined(__HAIKU__)
30 #include <sys/ioccom.h>
39 #include "qemu/sockets.h"
40 #include "qemu/queue.h"
41 #include "qemu/main-loop.h"
46 #define TRACE(msg, ...) do { \
47 LOG(msg, ## __VA_ARGS__); \
50 #define TRACE(msg, ...) \
54 #define LOG(msg, ...) do { \
55 fprintf(stderr, "%s:%s():L%d: " msg "\n", \
56 __FILE__, __FUNCTION__, __LINE__, ## __VA_ARGS__); \
59 /* This is all part of the "official" NBD API */
61 #define NBD_REQUEST_SIZE (4 + 4 + 8 + 8 + 4)
62 #define NBD_REPLY_SIZE (4 + 4 + 8)
63 #define NBD_REQUEST_MAGIC 0x25609513
64 #define NBD_REPLY_MAGIC 0x67446698
65 #define NBD_OPTS_MAGIC 0x49484156454F5054LL
66 #define NBD_CLIENT_MAGIC 0x0000420281861253LL
68 #define NBD_SET_SOCK _IO(0xab, 0)
69 #define NBD_SET_BLKSIZE _IO(0xab, 1)
70 #define NBD_SET_SIZE _IO(0xab, 2)
71 #define NBD_DO_IT _IO(0xab, 3)
72 #define NBD_CLEAR_SOCK _IO(0xab, 4)
73 #define NBD_CLEAR_QUE _IO(0xab, 5)
74 #define NBD_PRINT_DEBUG _IO(0xab, 6)
75 #define NBD_SET_SIZE_BLOCKS _IO(0xab, 7)
76 #define NBD_DISCONNECT _IO(0xab, 8)
77 #define NBD_SET_TIMEOUT _IO(0xab, 9)
78 #define NBD_SET_FLAGS _IO(0xab, 10)
80 #define NBD_OPT_EXPORT_NAME (1 << 0)
82 /* Definitions for opaque data types */
84 typedef struct NBDRequest NBDRequest
;
87 QSIMPLEQ_ENTRY(NBDRequest
) entry
;
94 void (*close
)(NBDExport
*exp
);
101 QTAILQ_HEAD(, NBDClient
) clients
;
102 QTAILQ_ENTRY(NBDExport
) next
;
105 static QTAILQ_HEAD(, NBDExport
) exports
= QTAILQ_HEAD_INITIALIZER(exports
);
109 void (*close
)(NBDClient
*client
);
114 Coroutine
*recv_coroutine
;
117 Coroutine
*send_coroutine
;
119 QTAILQ_ENTRY(NBDClient
) next
;
124 /* That's all folks */
126 ssize_t
nbd_wr_sync(int fd
, void *buffer
, size_t size
, bool do_read
)
131 if (qemu_in_coroutine()) {
133 return qemu_co_recv(fd
, buffer
, size
);
135 return qemu_co_send(fd
, buffer
, size
);
139 while (offset
< size
) {
143 len
= qemu_recv(fd
, buffer
+ offset
, size
- offset
, 0);
145 len
= send(fd
, buffer
+ offset
, size
- offset
, 0);
149 err
= socket_error();
151 /* recoverable error */
152 if (err
== EINTR
|| (offset
> 0 && err
== EAGAIN
)) {
156 /* unrecoverable error */
171 static ssize_t
read_sync(int fd
, void *buffer
, size_t size
)
173 /* Sockets are kept in blocking mode in the negotiation phase. After
174 * that, a non-readable socket simply means that another thread stole
175 * our request/reply. Synchronization is done with recv_coroutine, so
176 * that this is coroutine-safe.
178 return nbd_wr_sync(fd
, buffer
, size
, true);
181 static ssize_t
write_sync(int fd
, void *buffer
, size_t size
)
185 /* For writes, we do expect the socket to be writable. */
186 ret
= nbd_wr_sync(fd
, buffer
, size
, false);
187 } while (ret
== -EAGAIN
);
191 static void combine_addr(char *buf
, size_t len
, const char* address
,
194 /* If the address-part contains a colon, it's an IPv6 IP so needs [] */
195 if (strstr(address
, ":")) {
196 snprintf(buf
, len
, "[%s]:%u", address
, port
);
198 snprintf(buf
, len
, "%s:%u", address
, port
);
202 int tcp_socket_outgoing_opts(QemuOpts
*opts
)
204 Error
*local_err
= NULL
;
205 int fd
= inet_connect_opts(opts
, &local_err
, NULL
, NULL
);
206 if (local_err
!= NULL
) {
207 qerror_report_err(local_err
);
208 error_free(local_err
);
214 int tcp_socket_incoming(const char *address
, uint16_t port
)
216 char address_and_port
[128];
217 combine_addr(address_and_port
, 128, address
, port
);
218 return tcp_socket_incoming_spec(address_and_port
);
221 int tcp_socket_incoming_spec(const char *address_and_port
)
223 Error
*local_err
= NULL
;
224 int fd
= inet_listen(address_and_port
, NULL
, 0, SOCK_STREAM
, 0, &local_err
);
226 if (local_err
!= NULL
) {
227 qerror_report_err(local_err
);
228 error_free(local_err
);
233 int unix_socket_incoming(const char *path
)
235 Error
*local_err
= NULL
;
236 int fd
= unix_listen(path
, NULL
, 0, &local_err
);
238 if (local_err
!= NULL
) {
239 qerror_report_err(local_err
);
240 error_free(local_err
);
245 int unix_socket_outgoing(const char *path
)
247 Error
*local_err
= NULL
;
248 int fd
= unix_connect(path
, &local_err
);
250 if (local_err
!= NULL
) {
251 qerror_report_err(local_err
);
252 error_free(local_err
);
257 /* Basic flow for negotiation
284 static int nbd_receive_options(NBDClient
*client
)
286 int csock
= client
->sock
;
288 uint32_t tmp
, length
;
293 [ 0 .. 3] reserved (0)
294 [ 4 .. 11] NBD_OPTS_MAGIC
295 [12 .. 15] NBD_OPT_EXPORT_NAME
297 [20 .. xx] export name (length bytes)
301 if (read_sync(csock
, &tmp
, sizeof(tmp
)) != sizeof(tmp
)) {
305 TRACE("Checking reserved");
307 LOG("Bad reserved received");
311 if (read_sync(csock
, &magic
, sizeof(magic
)) != sizeof(magic
)) {
315 TRACE("Checking reserved");
316 if (magic
!= be64_to_cpu(NBD_OPTS_MAGIC
)) {
317 LOG("Bad magic received");
321 if (read_sync(csock
, &tmp
, sizeof(tmp
)) != sizeof(tmp
)) {
325 TRACE("Checking option");
326 if (tmp
!= be32_to_cpu(NBD_OPT_EXPORT_NAME
)) {
327 LOG("Bad option received");
331 if (read_sync(csock
, &length
, sizeof(length
)) != sizeof(length
)) {
335 TRACE("Checking length");
336 length
= be32_to_cpu(length
);
338 LOG("Bad length received");
341 if (read_sync(csock
, name
, length
) != length
) {
347 client
->exp
= nbd_export_find(name
);
349 LOG("export not found");
353 QTAILQ_INSERT_TAIL(&client
->exp
->clients
, client
, next
);
354 nbd_export_get(client
->exp
);
356 TRACE("Option negotiation succeeded.");
362 static int nbd_send_negotiate(NBDClient
*client
)
364 int csock
= client
->sock
;
365 char buf
[8 + 8 + 8 + 128];
367 const int myflags
= (NBD_FLAG_HAS_FLAGS
| NBD_FLAG_SEND_TRIM
|
368 NBD_FLAG_SEND_FLUSH
| NBD_FLAG_SEND_FUA
);
370 /* Negotiation header without options:
371 [ 0 .. 7] passwd ("NBDMAGIC")
372 [ 8 .. 15] magic (NBD_CLIENT_MAGIC)
374 [24 .. 25] server flags (0)
375 [24 .. 27] export flags
376 [28 .. 151] reserved (0)
378 Negotiation header with options, part 1:
379 [ 0 .. 7] passwd ("NBDMAGIC")
380 [ 8 .. 15] magic (NBD_OPTS_MAGIC)
381 [16 .. 17] server flags (0)
383 part 2 (after options are sent):
385 [26 .. 27] export flags
386 [28 .. 151] reserved (0)
389 qemu_set_block(csock
);
392 TRACE("Beginning negotiation.");
393 memset(buf
, 0, sizeof(buf
));
394 memcpy(buf
, "NBDMAGIC", 8);
396 assert ((client
->exp
->nbdflags
& ~65535) == 0);
397 cpu_to_be64w((uint64_t*)(buf
+ 8), NBD_CLIENT_MAGIC
);
398 cpu_to_be64w((uint64_t*)(buf
+ 16), client
->exp
->size
);
399 cpu_to_be16w((uint16_t*)(buf
+ 26), client
->exp
->nbdflags
| myflags
);
401 cpu_to_be64w((uint64_t*)(buf
+ 8), NBD_OPTS_MAGIC
);
405 if (write_sync(csock
, buf
, sizeof(buf
)) != sizeof(buf
)) {
410 if (write_sync(csock
, buf
, 18) != 18) {
414 rc
= nbd_receive_options(client
);
416 LOG("option negotiation failed");
420 assert ((client
->exp
->nbdflags
& ~65535) == 0);
421 cpu_to_be64w((uint64_t*)(buf
+ 18), client
->exp
->size
);
422 cpu_to_be16w((uint16_t*)(buf
+ 26), client
->exp
->nbdflags
| myflags
);
423 if (write_sync(csock
, buf
+ 18, sizeof(buf
) - 18) != sizeof(buf
) - 18) {
429 TRACE("Negotiation succeeded.");
432 qemu_set_nonblock(csock
);
436 int nbd_receive_negotiate(int csock
, const char *name
, uint32_t *flags
,
437 off_t
*size
, size_t *blocksize
)
444 TRACE("Receiving negotiation.");
446 qemu_set_block(csock
);
449 if (read_sync(csock
, buf
, 8) != 8) {
455 if (strlen(buf
) == 0) {
456 LOG("server connection closed");
460 TRACE("Magic is %c%c%c%c%c%c%c%c",
461 qemu_isprint(buf
[0]) ? buf
[0] : '.',
462 qemu_isprint(buf
[1]) ? buf
[1] : '.',
463 qemu_isprint(buf
[2]) ? buf
[2] : '.',
464 qemu_isprint(buf
[3]) ? buf
[3] : '.',
465 qemu_isprint(buf
[4]) ? buf
[4] : '.',
466 qemu_isprint(buf
[5]) ? buf
[5] : '.',
467 qemu_isprint(buf
[6]) ? buf
[6] : '.',
468 qemu_isprint(buf
[7]) ? buf
[7] : '.');
470 if (memcmp(buf
, "NBDMAGIC", 8) != 0) {
471 LOG("Invalid magic received");
475 if (read_sync(csock
, &magic
, sizeof(magic
)) != sizeof(magic
)) {
479 magic
= be64_to_cpu(magic
);
480 TRACE("Magic is 0x%" PRIx64
, magic
);
483 uint32_t reserved
= 0;
487 TRACE("Checking magic (opts_magic)");
488 if (magic
!= NBD_OPTS_MAGIC
) {
489 LOG("Bad magic received");
492 if (read_sync(csock
, &tmp
, sizeof(tmp
)) != sizeof(tmp
)) {
493 LOG("flags read failed");
496 *flags
= be16_to_cpu(tmp
) << 16;
497 /* reserved for future use */
498 if (write_sync(csock
, &reserved
, sizeof(reserved
)) !=
500 LOG("write failed (reserved)");
503 /* write the export name */
504 magic
= cpu_to_be64(magic
);
505 if (write_sync(csock
, &magic
, sizeof(magic
)) != sizeof(magic
)) {
506 LOG("write failed (magic)");
509 opt
= cpu_to_be32(NBD_OPT_EXPORT_NAME
);
510 if (write_sync(csock
, &opt
, sizeof(opt
)) != sizeof(opt
)) {
511 LOG("write failed (opt)");
514 namesize
= cpu_to_be32(strlen(name
));
515 if (write_sync(csock
, &namesize
, sizeof(namesize
)) !=
517 LOG("write failed (namesize)");
520 if (write_sync(csock
, (char*)name
, strlen(name
)) != strlen(name
)) {
521 LOG("write failed (name)");
525 TRACE("Checking magic (cli_magic)");
527 if (magic
!= NBD_CLIENT_MAGIC
) {
528 LOG("Bad magic received");
533 if (read_sync(csock
, &s
, sizeof(s
)) != sizeof(s
)) {
537 *size
= be64_to_cpu(s
);
539 TRACE("Size is %" PRIu64
, *size
);
542 if (read_sync(csock
, flags
, sizeof(*flags
)) != sizeof(*flags
)) {
543 LOG("read failed (flags)");
546 *flags
= be32_to_cpup(flags
);
548 if (read_sync(csock
, &tmp
, sizeof(tmp
)) != sizeof(tmp
)) {
549 LOG("read failed (tmp)");
552 *flags
|= be32_to_cpu(tmp
);
554 if (read_sync(csock
, &buf
, 124) != 124) {
555 LOG("read failed (buf)");
561 qemu_set_nonblock(csock
);
566 int nbd_init(int fd
, int csock
, uint32_t flags
, off_t size
, size_t blocksize
)
568 TRACE("Setting NBD socket");
570 if (ioctl(fd
, NBD_SET_SOCK
, csock
) < 0) {
572 LOG("Failed to set NBD socket");
576 TRACE("Setting block size to %lu", (unsigned long)blocksize
);
578 if (ioctl(fd
, NBD_SET_BLKSIZE
, blocksize
) < 0) {
580 LOG("Failed setting NBD block size");
584 TRACE("Setting size to %zd block(s)", (size_t)(size
/ blocksize
));
586 if (ioctl(fd
, NBD_SET_SIZE_BLOCKS
, size
/ blocksize
) < 0) {
588 LOG("Failed setting size (in blocks)");
592 if (ioctl(fd
, NBD_SET_FLAGS
, flags
) < 0) {
593 if (errno
== ENOTTY
) {
594 int read_only
= (flags
& NBD_FLAG_READ_ONLY
) != 0;
595 TRACE("Setting readonly attribute");
597 if (ioctl(fd
, BLKROSET
, (unsigned long) &read_only
) < 0) {
599 LOG("Failed setting read-only attribute");
604 LOG("Failed setting flags");
609 TRACE("Negotiation ended");
614 int nbd_disconnect(int fd
)
616 ioctl(fd
, NBD_CLEAR_QUE
);
617 ioctl(fd
, NBD_DISCONNECT
);
618 ioctl(fd
, NBD_CLEAR_SOCK
);
622 int nbd_client(int fd
)
627 TRACE("Doing NBD loop");
629 ret
= ioctl(fd
, NBD_DO_IT
);
630 if (ret
< 0 && errno
== EPIPE
) {
631 /* NBD_DO_IT normally returns EPIPE when someone has disconnected
632 * the socket via NBD_DISCONNECT. We do not want to return 1 in
639 TRACE("NBD loop returned %d: %s", ret
, strerror(serrno
));
641 TRACE("Clearing NBD queue");
642 ioctl(fd
, NBD_CLEAR_QUE
);
644 TRACE("Clearing NBD socket");
645 ioctl(fd
, NBD_CLEAR_SOCK
);
651 int nbd_init(int fd
, int csock
, uint32_t flags
, off_t size
, size_t blocksize
)
656 int nbd_disconnect(int fd
)
661 int nbd_client(int fd
)
667 ssize_t
nbd_send_request(int csock
, struct nbd_request
*request
)
669 uint8_t buf
[NBD_REQUEST_SIZE
];
672 cpu_to_be32w((uint32_t*)buf
, NBD_REQUEST_MAGIC
);
673 cpu_to_be32w((uint32_t*)(buf
+ 4), request
->type
);
674 cpu_to_be64w((uint64_t*)(buf
+ 8), request
->handle
);
675 cpu_to_be64w((uint64_t*)(buf
+ 16), request
->from
);
676 cpu_to_be32w((uint32_t*)(buf
+ 24), request
->len
);
678 TRACE("Sending request to client: "
679 "{ .from = %" PRIu64
", .len = %u, .handle = %" PRIu64
", .type=%i}",
680 request
->from
, request
->len
, request
->handle
, request
->type
);
682 ret
= write_sync(csock
, buf
, sizeof(buf
));
687 if (ret
!= sizeof(buf
)) {
688 LOG("writing to socket failed");
694 static ssize_t
nbd_receive_request(int csock
, struct nbd_request
*request
)
696 uint8_t buf
[NBD_REQUEST_SIZE
];
700 ret
= read_sync(csock
, buf
, sizeof(buf
));
705 if (ret
!= sizeof(buf
)) {
711 [ 0 .. 3] magic (NBD_REQUEST_MAGIC)
712 [ 4 .. 7] type (0 == READ, 1 == WRITE)
718 magic
= be32_to_cpup((uint32_t*)buf
);
719 request
->type
= be32_to_cpup((uint32_t*)(buf
+ 4));
720 request
->handle
= be64_to_cpup((uint64_t*)(buf
+ 8));
721 request
->from
= be64_to_cpup((uint64_t*)(buf
+ 16));
722 request
->len
= be32_to_cpup((uint32_t*)(buf
+ 24));
724 TRACE("Got request: "
725 "{ magic = 0x%x, .type = %d, from = %" PRIu64
" , len = %u }",
726 magic
, request
->type
, request
->from
, request
->len
);
728 if (magic
!= NBD_REQUEST_MAGIC
) {
729 LOG("invalid magic (got 0x%x)", magic
);
735 ssize_t
nbd_receive_reply(int csock
, struct nbd_reply
*reply
)
737 uint8_t buf
[NBD_REPLY_SIZE
];
741 ret
= read_sync(csock
, buf
, sizeof(buf
));
746 if (ret
!= sizeof(buf
)) {
752 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
753 [ 4 .. 7] error (0 == no error)
757 magic
= be32_to_cpup((uint32_t*)buf
);
758 reply
->error
= be32_to_cpup((uint32_t*)(buf
+ 4));
759 reply
->handle
= be64_to_cpup((uint64_t*)(buf
+ 8));
762 "{ magic = 0x%x, .error = %d, handle = %" PRIu64
" }",
763 magic
, reply
->error
, reply
->handle
);
765 if (magic
!= NBD_REPLY_MAGIC
) {
766 LOG("invalid magic (got 0x%x)", magic
);
772 static ssize_t
nbd_send_reply(int csock
, struct nbd_reply
*reply
)
774 uint8_t buf
[NBD_REPLY_SIZE
];
778 [ 0 .. 3] magic (NBD_REPLY_MAGIC)
779 [ 4 .. 7] error (0 == no error)
782 cpu_to_be32w((uint32_t*)buf
, NBD_REPLY_MAGIC
);
783 cpu_to_be32w((uint32_t*)(buf
+ 4), reply
->error
);
784 cpu_to_be64w((uint64_t*)(buf
+ 8), reply
->handle
);
786 TRACE("Sending response to client");
788 ret
= write_sync(csock
, buf
, sizeof(buf
));
793 if (ret
!= sizeof(buf
)) {
794 LOG("writing to socket failed");
800 #define MAX_NBD_REQUESTS 16
802 void nbd_client_get(NBDClient
*client
)
807 void nbd_client_put(NBDClient
*client
)
809 if (--client
->refcount
== 0) {
810 /* The last reference should be dropped by client->close,
811 * which is called by nbd_client_close.
813 assert(client
->closing
);
815 qemu_set_fd_handler2(client
->sock
, NULL
, NULL
, NULL
, NULL
);
819 QTAILQ_REMOVE(&client
->exp
->clients
, client
, next
);
820 nbd_export_put(client
->exp
);
826 void nbd_client_close(NBDClient
*client
)
828 if (client
->closing
) {
832 client
->closing
= true;
834 /* Force requests to finish. They will drop their own references,
835 * then we'll close the socket and free the NBDClient.
837 shutdown(client
->sock
, 2);
839 /* Also tell the client, so that they release their reference. */
841 client
->close(client
);
845 static NBDRequest
*nbd_request_get(NBDClient
*client
)
849 assert(client
->nb_requests
<= MAX_NBD_REQUESTS
- 1);
850 client
->nb_requests
++;
852 req
= g_slice_new0(NBDRequest
);
853 nbd_client_get(client
);
854 req
->client
= client
;
858 static void nbd_request_put(NBDRequest
*req
)
860 NBDClient
*client
= req
->client
;
863 qemu_vfree(req
->data
);
865 g_slice_free(NBDRequest
, req
);
867 if (client
->nb_requests
-- == MAX_NBD_REQUESTS
) {
870 nbd_client_put(client
);
873 NBDExport
*nbd_export_new(BlockDriverState
*bs
, off_t dev_offset
,
874 off_t size
, uint32_t nbdflags
,
875 void (*close
)(NBDExport
*))
877 NBDExport
*exp
= g_malloc0(sizeof(NBDExport
));
879 QTAILQ_INIT(&exp
->clients
);
881 exp
->dev_offset
= dev_offset
;
882 exp
->nbdflags
= nbdflags
;
883 exp
->size
= size
== -1 ? bdrv_getlength(bs
) : size
;
889 NBDExport
*nbd_export_find(const char *name
)
892 QTAILQ_FOREACH(exp
, &exports
, next
) {
893 if (strcmp(name
, exp
->name
) == 0) {
901 void nbd_export_set_name(NBDExport
*exp
, const char *name
)
903 if (exp
->name
== name
) {
908 if (exp
->name
!= NULL
) {
911 QTAILQ_REMOVE(&exports
, exp
, next
);
916 exp
->name
= g_strdup(name
);
917 QTAILQ_INSERT_TAIL(&exports
, exp
, next
);
922 void nbd_export_close(NBDExport
*exp
)
924 NBDClient
*client
, *next
;
927 QTAILQ_FOREACH_SAFE(client
, &exp
->clients
, next
, next
) {
928 nbd_client_close(client
);
930 nbd_export_set_name(exp
, NULL
);
938 void nbd_export_get(NBDExport
*exp
)
940 assert(exp
->refcount
> 0);
944 void nbd_export_put(NBDExport
*exp
)
946 assert(exp
->refcount
> 0);
947 if (exp
->refcount
== 1) {
948 nbd_export_close(exp
);
951 if (--exp
->refcount
== 0) {
952 assert(exp
->name
== NULL
);
962 BlockDriverState
*nbd_export_get_blockdev(NBDExport
*exp
)
967 void nbd_export_close_all(void)
969 NBDExport
*exp
, *next
;
971 QTAILQ_FOREACH_SAFE(exp
, &exports
, next
, next
) {
972 nbd_export_close(exp
);
976 static int nbd_can_read(void *opaque
);
977 static void nbd_read(void *opaque
);
978 static void nbd_restart_write(void *opaque
);
980 static ssize_t
nbd_co_send_reply(NBDRequest
*req
, struct nbd_reply
*reply
,
983 NBDClient
*client
= req
->client
;
984 int csock
= client
->sock
;
987 qemu_co_mutex_lock(&client
->send_lock
);
988 qemu_set_fd_handler2(csock
, nbd_can_read
, nbd_read
,
989 nbd_restart_write
, client
);
990 client
->send_coroutine
= qemu_coroutine_self();
993 rc
= nbd_send_reply(csock
, reply
);
995 socket_set_cork(csock
, 1);
996 rc
= nbd_send_reply(csock
, reply
);
998 ret
= qemu_co_send(csock
, req
->data
, len
);
1003 socket_set_cork(csock
, 0);
1006 client
->send_coroutine
= NULL
;
1007 qemu_set_fd_handler2(csock
, nbd_can_read
, nbd_read
, NULL
, client
);
1008 qemu_co_mutex_unlock(&client
->send_lock
);
1012 static ssize_t
nbd_co_receive_request(NBDRequest
*req
, struct nbd_request
*request
)
1014 NBDClient
*client
= req
->client
;
1015 int csock
= client
->sock
;
1019 client
->recv_coroutine
= qemu_coroutine_self();
1020 rc
= nbd_receive_request(csock
, request
);
1022 if (rc
!= -EAGAIN
) {
1028 if (request
->len
> NBD_MAX_BUFFER_SIZE
) {
1029 LOG("len (%u) is larger than max len (%u)",
1030 request
->len
, NBD_MAX_BUFFER_SIZE
);
1035 if ((request
->from
+ request
->len
) < request
->from
) {
1036 LOG("integer overflow detected! "
1037 "you're probably being attacked");
1042 TRACE("Decoding type");
1044 command
= request
->type
& NBD_CMD_MASK_COMMAND
;
1045 if (command
== NBD_CMD_READ
|| command
== NBD_CMD_WRITE
) {
1046 req
->data
= qemu_blockalign(client
->exp
->bs
, request
->len
);
1048 if (command
== NBD_CMD_WRITE
) {
1049 TRACE("Reading %u byte(s)", request
->len
);
1051 if (qemu_co_recv(csock
, req
->data
, request
->len
) != request
->len
) {
1052 LOG("reading from socket failed");
1060 client
->recv_coroutine
= NULL
;
1064 static void nbd_trip(void *opaque
)
1066 NBDClient
*client
= opaque
;
1067 NBDExport
*exp
= client
->exp
;
1069 struct nbd_request request
;
1070 struct nbd_reply reply
;
1073 TRACE("Reading request.");
1074 if (client
->closing
) {
1078 req
= nbd_request_get(client
);
1079 ret
= nbd_co_receive_request(req
, &request
);
1080 if (ret
== -EAGAIN
) {
1087 reply
.handle
= request
.handle
;
1095 if ((request
.from
+ request
.len
) > exp
->size
) {
1096 LOG("From: %" PRIu64
", Len: %u, Size: %" PRIu64
1097 ", Offset: %" PRIu64
"\n",
1098 request
.from
, request
.len
,
1099 (uint64_t)exp
->size
, (uint64_t)exp
->dev_offset
);
1100 LOG("requested operation past EOF--bad client?");
1101 goto invalid_request
;
1104 switch (request
.type
& NBD_CMD_MASK_COMMAND
) {
1106 TRACE("Request type is READ");
1108 if (request
.type
& NBD_CMD_FLAG_FUA
) {
1109 ret
= bdrv_co_flush(exp
->bs
);
1111 LOG("flush failed");
1117 ret
= bdrv_read(exp
->bs
, (request
.from
+ exp
->dev_offset
) / 512,
1118 req
->data
, request
.len
/ 512);
1120 LOG("reading from file failed");
1125 TRACE("Read %u byte(s)", request
.len
);
1126 if (nbd_co_send_reply(req
, &reply
, request
.len
) < 0)
1130 TRACE("Request type is WRITE");
1132 if (exp
->nbdflags
& NBD_FLAG_READ_ONLY
) {
1133 TRACE("Server is read-only, return error");
1134 reply
.error
= EROFS
;
1138 TRACE("Writing to device");
1140 ret
= bdrv_write(exp
->bs
, (request
.from
+ exp
->dev_offset
) / 512,
1141 req
->data
, request
.len
/ 512);
1143 LOG("writing to file failed");
1148 if (request
.type
& NBD_CMD_FLAG_FUA
) {
1149 ret
= bdrv_co_flush(exp
->bs
);
1151 LOG("flush failed");
1157 if (nbd_co_send_reply(req
, &reply
, 0) < 0) {
1162 TRACE("Request type is DISCONNECT");
1166 TRACE("Request type is FLUSH");
1168 ret
= bdrv_co_flush(exp
->bs
);
1170 LOG("flush failed");
1173 if (nbd_co_send_reply(req
, &reply
, 0) < 0) {
1178 TRACE("Request type is TRIM");
1179 ret
= bdrv_co_discard(exp
->bs
, (request
.from
+ exp
->dev_offset
) / 512,
1182 LOG("discard failed");
1185 if (nbd_co_send_reply(req
, &reply
, 0) < 0) {
1190 LOG("invalid request type (%u) received", request
.type
);
1192 reply
.error
= -EINVAL
;
1194 if (nbd_co_send_reply(req
, &reply
, 0) < 0) {
1200 TRACE("Request/Reply complete");
1203 nbd_request_put(req
);
1207 nbd_request_put(req
);
1208 nbd_client_close(client
);
1211 static int nbd_can_read(void *opaque
)
1213 NBDClient
*client
= opaque
;
1215 return client
->recv_coroutine
|| client
->nb_requests
< MAX_NBD_REQUESTS
;
1218 static void nbd_read(void *opaque
)
1220 NBDClient
*client
= opaque
;
1222 if (client
->recv_coroutine
) {
1223 qemu_coroutine_enter(client
->recv_coroutine
, NULL
);
1225 qemu_coroutine_enter(qemu_coroutine_create(nbd_trip
), client
);
1229 static void nbd_restart_write(void *opaque
)
1231 NBDClient
*client
= opaque
;
1233 qemu_coroutine_enter(client
->send_coroutine
, NULL
);
1236 NBDClient
*nbd_client_new(NBDExport
*exp
, int csock
,
1237 void (*close
)(NBDClient
*))
1240 client
= g_malloc0(sizeof(NBDClient
));
1241 client
->refcount
= 1;
1243 client
->sock
= csock
;
1244 if (nbd_send_negotiate(client
) < 0) {
1248 client
->close
= close
;
1249 qemu_co_mutex_init(&client
->send_lock
);
1250 qemu_set_fd_handler2(csock
, nbd_can_read
, nbd_read
, NULL
, client
);
1253 QTAILQ_INSERT_TAIL(&exp
->clients
, client
, next
);
1254 nbd_export_get(exp
);