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 "qemu/osdep.h"
24 #include "qapi/error.h"
25 #include "qemu/cutils.h"
26 #include "sysemu/block-backend.h"
27 #include "block/block_int.h"
28 #include "block/nbd.h"
29 #include "qemu/main-loop.h"
30 #include "qemu/option.h"
31 #include "qemu/error-report.h"
32 #include "qemu/config-file.h"
33 #include "qemu/bswap.h"
35 #include "qemu/systemd.h"
36 #include "block/snapshot.h"
37 #include "qapi/qmp/qdict.h"
38 #include "qapi/qmp/qstring.h"
39 #include "qom/object_interfaces.h"
40 #include "io/channel-socket.h"
41 #include "io/net-listener.h"
42 #include "crypto/init.h"
43 #include "trace/control.h"
44 #include "qemu-version.h"
47 #define HAVE_NBD_DEVICE 1
49 #define HAVE_NBD_DEVICE 0
52 #define SOCKET_PATH "/var/lock/qemu-nbd-%s"
53 #define QEMU_NBD_OPT_CACHE 256
54 #define QEMU_NBD_OPT_AIO 257
55 #define QEMU_NBD_OPT_DISCARD 258
56 #define QEMU_NBD_OPT_DETECT_ZEROES 259
57 #define QEMU_NBD_OPT_OBJECT 260
58 #define QEMU_NBD_OPT_TLSCREDS 261
59 #define QEMU_NBD_OPT_IMAGE_OPTS 262
60 #define QEMU_NBD_OPT_FORK 263
64 static NBDExport
*exp
;
67 static SocketAddress
*saddr
;
68 static int persistent
= 0;
69 static enum { RUNNING
, TERMINATE
, TERMINATING
, TERMINATED
} state
;
70 static int shared
= 1;
72 static QIONetListener
*server
;
73 static QCryptoTLSCreds
*tlscreds
;
75 static void usage(const char *name
)
78 "Usage: %s [OPTIONS] FILE\n"
79 "QEMU Disk Network Block Device Server\n"
81 " -h, --help display this help and exit\n"
82 " -V, --version output version information and exit\n"
84 "Connection properties:\n"
85 " -p, --port=PORT port to listen on (default `%d')\n"
86 " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
87 " -k, --socket=PATH path to the unix socket\n"
88 " (default '"SOCKET_PATH
"')\n"
89 " -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
90 " -t, --persistent don't exit on the last connection\n"
91 " -v, --verbose display extra debugging information\n"
92 " -x, --export-name=NAME expose export by name (default is empty string)\n"
93 " -D, --description=TEXT export a human-readable description\n"
95 "Exposing part of the image:\n"
96 " -o, --offset=OFFSET offset into the image\n"
97 " -P, --partition=NUM only expose partition NUM\n"
99 "General purpose options:\n"
100 " --object type,id=ID,... define an object such as 'secret' for providing\n"
101 " passwords and/or encryption keys\n"
102 " --tls-creds=ID use id of an earlier --object to provide TLS\n"
103 " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
104 " specify tracing options\n"
105 " --fork fork off the server process and exit the parent\n"
106 " once the server is running\n"
109 "Kernel NBD client support:\n"
110 " -c, --connect=DEV connect FILE to the local NBD device DEV\n"
111 " -d, --disconnect disconnect the specified device\n"
114 "Block device options:\n"
115 " -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
116 " -r, --read-only export read-only\n"
117 " -s, --snapshot use FILE as an external snapshot, create a temporary\n"
118 " file with backing_file=FILE, redirect the write to\n"
119 " the temporary one\n"
120 " -l, --load-snapshot=SNAPSHOT_PARAM\n"
121 " load an internal snapshot inside FILE and export it\n"
122 " as an read-only device, SNAPSHOT_PARAM format is\n"
123 " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
125 " -n, --nocache disable host cache\n"
126 " --cache=MODE set cache mode (none, writeback, ...)\n"
127 " --aio=MODE set AIO mode (native or threads)\n"
128 " --discard=MODE set discard mode (ignore, unmap)\n"
129 " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
130 " --image-opts treat FILE as a full set of image options\n"
132 QEMU_HELP_BOTTOM
"\n"
133 , name
, NBD_DEFAULT_PORT
, "DEVICE");
136 static void version(const char *name
)
139 "%s " QEMU_FULL_VERSION
"\n"
140 "Written by Anthony Liguori.\n"
143 "This is free software; see the source for copying conditions. There is NO\n"
144 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
148 struct partition_record
152 uint32_t start_cylinder
;
153 uint8_t start_sector
;
156 uint8_t end_cylinder
;
158 uint32_t start_sector_abs
;
159 uint32_t nb_sectors_abs
;
162 static void read_partition(uint8_t *p
, struct partition_record
*r
)
165 r
->start_head
= p
[1];
166 r
->start_cylinder
= p
[3] | ((p
[2] << 2) & 0x0300);
167 r
->start_sector
= p
[2] & 0x3f;
170 r
->end_cylinder
= p
[7] | ((p
[6] << 2) & 0x300);
171 r
->end_sector
= p
[6] & 0x3f;
173 r
->start_sector_abs
= ldl_le_p(p
+ 8);
174 r
->nb_sectors_abs
= ldl_le_p(p
+ 12);
177 static int find_partition(BlockBackend
*blk
, int partition
,
178 off_t
*offset
, off_t
*size
)
180 struct partition_record mbr
[4];
181 uint8_t data
[MBR_SIZE
];
186 ret
= blk_pread(blk
, 0, data
, sizeof(data
));
188 error_report("error while reading: %s", strerror(-ret
));
192 if (data
[510] != 0x55 || data
[511] != 0xaa) {
196 for (i
= 0; i
< 4; i
++) {
197 read_partition(&data
[446 + 16 * i
], &mbr
[i
]);
199 if (!mbr
[i
].system
|| !mbr
[i
].nb_sectors_abs
) {
203 if (mbr
[i
].system
== 0xF || mbr
[i
].system
== 0x5) {
204 struct partition_record ext
[4];
205 uint8_t data1
[MBR_SIZE
];
208 ret
= blk_pread(blk
, mbr
[i
].start_sector_abs
* MBR_SIZE
,
209 data1
, sizeof(data1
));
211 error_report("error while reading: %s", strerror(-ret
));
215 for (j
= 0; j
< 4; j
++) {
216 read_partition(&data1
[446 + 16 * j
], &ext
[j
]);
217 if (!ext
[j
].system
|| !ext
[j
].nb_sectors_abs
) {
221 if ((ext_partnum
+ j
+ 1) == partition
) {
222 *offset
= (uint64_t)ext
[j
].start_sector_abs
<< 9;
223 *size
= (uint64_t)ext
[j
].nb_sectors_abs
<< 9;
228 } else if ((i
+ 1) == partition
) {
229 *offset
= (uint64_t)mbr
[i
].start_sector_abs
<< 9;
230 *size
= (uint64_t)mbr
[i
].nb_sectors_abs
<< 9;
238 static void termsig_handler(int signum
)
240 atomic_cmpxchg(&state
, RUNNING
, TERMINATE
);
246 static void *show_parts(void *arg
)
251 /* linux just needs an open() to trigger
252 * the partition table update
253 * but remember to load the module with max_part != 0 :
254 * modprobe nbd max_part=63
256 nbd
= open(device
, O_RDWR
);
263 static void *nbd_client_thread(void *arg
)
266 NBDExportInfo info
= { .request_sizes
= false, };
267 QIOChannelSocket
*sioc
;
270 pthread_t show_parts_thread
;
271 Error
*local_error
= NULL
;
273 sioc
= qio_channel_socket_new();
274 if (qio_channel_socket_connect_sync(sioc
,
277 error_report_err(local_error
);
281 ret
= nbd_receive_negotiate(QIO_CHANNEL(sioc
), NULL
,
282 NULL
, NULL
, NULL
, &info
, &local_error
);
285 error_report_err(local_error
);
290 fd
= open(device
, O_RDWR
);
292 /* Linux-only, we can use %m in printf. */
293 error_report("Failed to open %s: %m", device
);
297 ret
= nbd_init(fd
, sioc
, &info
, &local_error
);
299 error_report_err(local_error
);
303 /* update partition table */
304 pthread_create(&show_parts_thread
, NULL
, show_parts
, device
);
307 fprintf(stderr
, "NBD device %s is now connected to %s\n",
310 /* Close stderr so that the qemu-nbd process exits. */
311 dup2(STDOUT_FILENO
, STDERR_FILENO
);
314 ret
= nbd_client(fd
);
319 object_unref(OBJECT(sioc
));
320 kill(getpid(), SIGTERM
);
321 return (void *) EXIT_SUCCESS
;
326 object_unref(OBJECT(sioc
));
328 kill(getpid(), SIGTERM
);
329 return (void *) EXIT_FAILURE
;
331 #endif /* HAVE_NBD_DEVICE */
333 static int nbd_can_accept(void)
335 return state
== RUNNING
&& nb_fds
< shared
;
338 static void nbd_export_closed(NBDExport
*exp
)
340 assert(state
== TERMINATING
);
344 static void nbd_update_server_watch(void);
346 static void nbd_client_closed(NBDClient
*client
, bool negotiated
)
349 if (negotiated
&& nb_fds
== 0 && !persistent
&& state
== RUNNING
) {
352 nbd_update_server_watch();
353 nbd_client_put(client
);
356 static void nbd_accept(QIONetListener
*listener
, QIOChannelSocket
*cioc
,
359 if (state
>= TERMINATE
) {
364 nbd_update_server_watch();
365 nbd_client_new(cioc
, tlscreds
, NULL
, nbd_client_closed
);
368 static void nbd_update_server_watch(void)
370 if (nbd_can_accept()) {
371 qio_net_listener_set_client_func(server
, nbd_accept
, NULL
, NULL
);
373 qio_net_listener_set_client_func(server
, NULL
, NULL
, NULL
);
378 static SocketAddress
*nbd_build_socket_address(const char *sockpath
,
382 SocketAddress
*saddr
;
384 saddr
= g_new0(SocketAddress
, 1);
386 saddr
->type
= SOCKET_ADDRESS_TYPE_UNIX
;
387 saddr
->u
.q_unix
.path
= g_strdup(sockpath
);
389 InetSocketAddress
*inet
;
390 saddr
->type
= SOCKET_ADDRESS_TYPE_INET
;
391 inet
= &saddr
->u
.inet
;
392 inet
->host
= g_strdup(bindto
);
394 inet
->port
= g_strdup(port
);
396 inet
->port
= g_strdup_printf("%d", NBD_DEFAULT_PORT
);
404 static QemuOptsList file_opts
= {
406 .implied_opt_name
= "file",
407 .head
= QTAILQ_HEAD_INITIALIZER(file_opts
.head
),
409 /* no elements => accept any params */
410 { /* end of list */ }
414 static QemuOptsList qemu_object_opts
= {
416 .implied_opt_name
= "qom-type",
417 .head
= QTAILQ_HEAD_INITIALIZER(qemu_object_opts
.head
),
425 static QCryptoTLSCreds
*nbd_get_tls_creds(const char *id
, Error
**errp
)
428 QCryptoTLSCreds
*creds
;
430 obj
= object_resolve_path_component(
431 object_get_objects_root(), id
);
433 error_setg(errp
, "No TLS credentials with id '%s'",
437 creds
= (QCryptoTLSCreds
*)
438 object_dynamic_cast(obj
, TYPE_QCRYPTO_TLS_CREDS
);
440 error_setg(errp
, "Object with id '%s' is not TLS credentials",
445 if (creds
->endpoint
!= QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
) {
447 "Expecting TLS credentials with a server endpoint");
454 static void setup_address_and_port(const char **address
, const char **port
)
456 if (*address
== NULL
) {
457 *address
= "0.0.0.0";
461 *port
= stringify(NBD_DEFAULT_PORT
);
466 * Check socket parameters compatibility when socket activation is used.
468 static const char *socket_activation_validate_opts(const char *device
,
469 const char *sockpath
,
473 if (device
!= NULL
) {
474 return "NBD device can't be set when using socket activation";
477 if (sockpath
!= NULL
) {
478 return "Unix socket can't be set when using socket activation";
481 if (address
!= NULL
) {
482 return "The interface can't be set when using socket activation";
486 return "TCP port number can't be set when using socket activation";
492 static void qemu_nbd_shutdown(void)
494 job_cancel_sync_all();
498 int main(int argc
, char **argv
)
501 BlockDriverState
*bs
;
502 off_t dev_offset
= 0;
503 uint16_t nbdflags
= 0;
504 bool disconnect
= false;
505 const char *bindto
= NULL
;
506 const char *port
= NULL
;
507 char *sockpath
= NULL
;
510 QemuOpts
*sn_opts
= NULL
;
511 const char *sn_id_or_name
= NULL
;
512 const char *sopt
= "hVb:o:p:rsnP:c:dvk:e:f:tl:x:T:D:";
513 struct option lopt
[] = {
514 { "help", no_argument
, NULL
, 'h' },
515 { "version", no_argument
, NULL
, 'V' },
516 { "bind", required_argument
, NULL
, 'b' },
517 { "port", required_argument
, NULL
, 'p' },
518 { "socket", required_argument
, NULL
, 'k' },
519 { "offset", required_argument
, NULL
, 'o' },
520 { "read-only", no_argument
, NULL
, 'r' },
521 { "partition", required_argument
, NULL
, 'P' },
522 { "connect", required_argument
, NULL
, 'c' },
523 { "disconnect", no_argument
, NULL
, 'd' },
524 { "snapshot", no_argument
, NULL
, 's' },
525 { "load-snapshot", required_argument
, NULL
, 'l' },
526 { "nocache", no_argument
, NULL
, 'n' },
527 { "cache", required_argument
, NULL
, QEMU_NBD_OPT_CACHE
},
528 { "aio", required_argument
, NULL
, QEMU_NBD_OPT_AIO
},
529 { "discard", required_argument
, NULL
, QEMU_NBD_OPT_DISCARD
},
530 { "detect-zeroes", required_argument
, NULL
,
531 QEMU_NBD_OPT_DETECT_ZEROES
},
532 { "shared", required_argument
, NULL
, 'e' },
533 { "format", required_argument
, NULL
, 'f' },
534 { "persistent", no_argument
, NULL
, 't' },
535 { "verbose", no_argument
, NULL
, 'v' },
536 { "object", required_argument
, NULL
, QEMU_NBD_OPT_OBJECT
},
537 { "export-name", required_argument
, NULL
, 'x' },
538 { "description", required_argument
, NULL
, 'D' },
539 { "tls-creds", required_argument
, NULL
, QEMU_NBD_OPT_TLSCREDS
},
540 { "image-opts", no_argument
, NULL
, QEMU_NBD_OPT_IMAGE_OPTS
},
541 { "trace", required_argument
, NULL
, 'T' },
542 { "fork", no_argument
, NULL
, QEMU_NBD_OPT_FORK
},
548 int flags
= BDRV_O_RDWR
;
551 bool seen_cache
= false;
552 bool seen_discard
= false;
553 bool seen_aio
= false;
554 pthread_t client_thread
;
555 const char *fmt
= NULL
;
556 Error
*local_err
= NULL
;
557 BlockdevDetectZeroesOptions detect_zeroes
= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
;
558 QDict
*options
= NULL
;
559 const char *export_name
= ""; /* Default export name */
560 const char *export_description
= NULL
;
561 const char *tlscredsid
= NULL
;
562 bool imageOpts
= false;
563 bool writethrough
= true;
564 char *trace_file
= NULL
;
565 bool fork_process
= false;
567 unsigned socket_activation
;
569 /* The client thread uses SIGTERM to interrupt the server. A signal
570 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
572 struct sigaction sa_sigterm
;
573 memset(&sa_sigterm
, 0, sizeof(sa_sigterm
));
574 sa_sigterm
.sa_handler
= termsig_handler
;
575 sigaction(SIGTERM
, &sa_sigterm
, NULL
);
578 signal(SIGPIPE
, SIG_IGN
);
581 module_call_init(MODULE_INIT_TRACE
);
582 error_set_progname(argv
[0]);
583 qcrypto_init(&error_fatal
);
585 module_call_init(MODULE_INIT_QOM
);
586 qemu_add_opts(&qemu_object_opts
);
587 qemu_add_opts(&qemu_trace_opts
);
588 qemu_init_exec_dir(argv
[0]);
590 while ((ch
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_ind
)) != -1) {
593 flags
|= BDRV_O_SNAPSHOT
;
596 optarg
= (char *) "none";
598 case QEMU_NBD_OPT_CACHE
:
600 error_report("-n and --cache can only be specified once");
604 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) == -1) {
605 error_report("Invalid cache mode `%s'", optarg
);
609 case QEMU_NBD_OPT_AIO
:
611 error_report("--aio can only be specified once");
615 if (!strcmp(optarg
, "native")) {
616 flags
|= BDRV_O_NATIVE_AIO
;
617 } else if (!strcmp(optarg
, "threads")) {
618 /* this is the default */
620 error_report("invalid aio mode `%s'", optarg
);
624 case QEMU_NBD_OPT_DISCARD
:
626 error_report("--discard can only be specified once");
630 if (bdrv_parse_discard_flags(optarg
, &flags
) == -1) {
631 error_report("Invalid discard mode `%s'", optarg
);
635 case QEMU_NBD_OPT_DETECT_ZEROES
:
637 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
,
639 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
,
642 error_reportf_err(local_err
,
643 "Failed to parse detect_zeroes mode: ");
646 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
647 !(flags
& BDRV_O_UNMAP
)) {
648 error_report("setting detect-zeroes to unmap is not allowed "
649 "without setting discard operation to unmap");
660 dev_offset
= strtoll (optarg
, &end
, 0);
662 error_report("Invalid offset `%s'", optarg
);
665 if (dev_offset
< 0) {
666 error_report("Offset must be positive `%s'", optarg
);
671 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
672 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
675 error_report("Failed in parsing snapshot param `%s'",
680 sn_id_or_name
= optarg
;
684 nbdflags
|= NBD_FLAG_READ_ONLY
;
685 flags
&= ~BDRV_O_RDWR
;
688 partition
= strtol(optarg
, &end
, 0);
690 error_report("Invalid partition `%s'", optarg
);
693 if (partition
< 1 || partition
> 8) {
694 error_report("Invalid partition %d", partition
);
700 if (sockpath
[0] != '/') {
701 error_report("socket path must be absolute");
712 shared
= strtol(optarg
, &end
, 0);
714 error_report("Invalid shared device number '%s'", optarg
);
718 error_report("Shared device number must be greater than 0");
729 export_name
= optarg
;
732 export_description
= optarg
;
746 error_report("Try `%s --help' for more information.", argv
[0]);
748 case QEMU_NBD_OPT_OBJECT
: {
750 opts
= qemu_opts_parse_noisily(&qemu_object_opts
,
756 case QEMU_NBD_OPT_TLSCREDS
:
759 case QEMU_NBD_OPT_IMAGE_OPTS
:
764 trace_file
= trace_opt_parse(optarg
);
766 case QEMU_NBD_OPT_FORK
:
772 if ((argc
- optind
) != 1) {
773 error_report("Invalid number of arguments");
774 error_printf("Try `%s --help' for more information.\n", argv
[0]);
778 qemu_opts_foreach(&qemu_object_opts
,
779 user_creatable_add_opts_foreach
,
782 if (!trace_init_backends()) {
785 trace_init_file(trace_file
);
786 qemu_set_log(LOG_TRACE
);
788 socket_activation
= check_socket_activation();
789 if (socket_activation
== 0) {
790 setup_address_and_port(&bindto
, &port
);
792 /* Using socket activation - check user didn't use -p etc. */
793 const char *err_msg
= socket_activation_validate_opts(device
, sockpath
,
795 if (err_msg
!= NULL
) {
796 error_report("%s", err_msg
);
800 /* qemu-nbd can only listen on a single socket. */
801 if (socket_activation
> 1) {
802 error_report("qemu-nbd does not support socket activation with %s > 1",
810 error_report("TLS is only supported with IPv4/IPv6");
814 error_report("TLS is not supported with a host device");
817 tlscreds
= nbd_get_tls_creds(tlscredsid
, &local_err
);
819 error_report("Failed to get TLS creds %s",
820 error_get_pretty(local_err
));
826 if (disconnect
|| device
) {
827 error_report("Kernel /dev/nbdN support not available");
830 #else /* HAVE_NBD_DEVICE */
832 int nbdfd
= open(argv
[optind
], O_RDWR
);
834 error_report("Cannot open %s: %s", argv
[optind
],
838 nbd_disconnect(nbdfd
);
842 printf("%s disconnected\n", argv
[optind
]);
848 if ((device
&& !verbose
) || fork_process
) {
853 if (qemu_pipe(stderr_fd
) < 0) {
854 error_report("Error setting up communication pipe: %s",
859 /* Now daemonize, but keep a communication channel open to
860 * print errors and exit with the proper status code.
864 error_report("Failed to fork: %s", strerror(errno
));
866 } else if (pid
== 0) {
868 ret
= qemu_daemon(1, 0);
870 /* Temporarily redirect stderr to the parent's pipe... */
871 old_stderr
= dup(STDERR_FILENO
);
872 dup2(stderr_fd
[1], STDERR_FILENO
);
874 error_report("Failed to daemonize: %s", strerror(errno
));
878 /* ... close the descriptor we inherited and go on. */
884 /* In the parent. Print error messages from the child until
885 * it closes the pipe.
888 buf
= g_malloc(1024);
889 while ((ret
= read(stderr_fd
[0], buf
, 1024)) > 0) {
891 ret
= qemu_write_full(STDERR_FILENO
, buf
, ret
);
897 error_report("Cannot read from daemon: %s",
902 /* Usually the daemon should not print any message.
903 * Exit with zero status in that case.
909 if (device
!= NULL
&& sockpath
== NULL
) {
910 sockpath
= g_malloc(128);
911 snprintf(sockpath
, 128, SOCKET_PATH
, basename(device
));
914 server
= qio_net_listener_new();
915 if (socket_activation
== 0) {
916 saddr
= nbd_build_socket_address(sockpath
, bindto
, port
);
917 if (qio_net_listener_open_sync(server
, saddr
, &local_err
) < 0) {
918 object_unref(OBJECT(server
));
919 error_report_err(local_err
);
924 /* See comment in check_socket_activation above. */
925 for (i
= 0; i
< socket_activation
; i
++) {
926 QIOChannelSocket
*sioc
;
927 sioc
= qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD
+ i
,
930 object_unref(OBJECT(server
));
931 error_report("Failed to use socket activation: %s",
932 error_get_pretty(local_err
));
935 qio_net_listener_add(server
, sioc
);
936 object_unref(OBJECT(sioc
));
940 if (qemu_init_main_loop(&local_err
)) {
941 error_report_err(local_err
);
945 atexit(qemu_nbd_shutdown
);
947 srcpath
= argv
[optind
];
951 error_report("--image-opts and -f are mutually exclusive");
954 opts
= qemu_opts_parse_noisily(&file_opts
, srcpath
, true);
956 qemu_opts_reset(&file_opts
);
959 options
= qemu_opts_to_qdict(opts
, NULL
);
960 qemu_opts_reset(&file_opts
);
961 blk
= blk_new_open(NULL
, NULL
, options
, flags
, &local_err
);
964 options
= qdict_new();
965 qdict_put_str(options
, "driver", fmt
);
967 blk
= blk_new_open(srcpath
, NULL
, options
, flags
, &local_err
);
971 error_reportf_err(local_err
, "Failed to blk_new_open '%s': ",
977 blk_set_enable_write_cache(blk
, !writethrough
);
980 ret
= bdrv_snapshot_load_tmp(bs
,
981 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
982 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
984 } else if (sn_id_or_name
) {
985 ret
= bdrv_snapshot_load_tmp_by_id_or_name(bs
, sn_id_or_name
,
989 error_reportf_err(local_err
, "Failed to load snapshot: ");
993 bs
->detect_zeroes
= detect_zeroes
;
994 fd_size
= blk_getlength(blk
);
996 error_report("Failed to determine the image length: %s",
1001 if (dev_offset
>= fd_size
) {
1002 error_report("Offset (%lld) has to be smaller than the image size "
1004 (long long int)dev_offset
, (long long int)fd_size
);
1007 fd_size
-= dev_offset
;
1009 if (partition
!= -1) {
1010 ret
= find_partition(blk
, partition
, &dev_offset
, &fd_size
);
1012 error_report("Could not find partition %d: %s", partition
,
1018 exp
= nbd_export_new(bs
, dev_offset
, fd_size
, nbdflags
, nbd_export_closed
,
1019 writethrough
, NULL
, &error_fatal
);
1020 nbd_export_set_name(exp
, export_name
);
1021 nbd_export_set_description(exp
, export_description
);
1027 ret
= pthread_create(&client_thread
, NULL
, nbd_client_thread
, device
);
1029 error_report("Failed to create client thread: %s", strerror(ret
));
1034 /* Shut up GCC warnings. */
1035 memset(&client_thread
, 0, sizeof(client_thread
));
1038 nbd_update_server_watch();
1040 /* now when the initialization is (almost) complete, chdir("/")
1041 * to free any busy filesystems */
1042 if (chdir("/") < 0) {
1043 error_report("Could not chdir to root directory: %s",
1049 dup2(old_stderr
, STDERR_FILENO
);
1055 main_loop_wait(false);
1056 if (state
== TERMINATE
) {
1057 state
= TERMINATING
;
1058 nbd_export_close(exp
);
1059 nbd_export_put(exp
);
1062 } while (state
!= TERMINATED
);
1069 qemu_opts_del(sn_opts
);
1073 pthread_join(client_thread
, &ret
);