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 "qemu/help-texts.h"
25 #include "qapi/error.h"
26 #include "qemu/cutils.h"
27 #include "sysemu/block-backend.h"
28 #include "sysemu/runstate.h" /* for qemu_system_killed() prototype */
29 #include "block/block_int.h"
30 #include "block/nbd.h"
31 #include "qemu/main-loop.h"
32 #include "qemu/module.h"
33 #include "qemu/option.h"
34 #include "qemu/error-report.h"
35 #include "qemu/config-file.h"
36 #include "qemu/bswap.h"
38 #include "qemu/systemd.h"
39 #include "block/snapshot.h"
40 #include "qapi/qmp/qdict.h"
41 #include "qapi/qmp/qstring.h"
42 #include "qom/object_interfaces.h"
43 #include "io/channel-socket.h"
44 #include "io/net-listener.h"
45 #include "crypto/init.h"
46 #include "crypto/tlscreds.h"
47 #include "trace/control.h"
48 #include "qemu-version.h"
51 #include <selinux/selinux.h>
55 #define HAVE_NBD_DEVICE 1
57 #define HAVE_NBD_DEVICE 0
60 #define SOCKET_PATH "/var/lock/qemu-nbd-%s"
61 #define QEMU_NBD_OPT_CACHE 256
62 #define QEMU_NBD_OPT_AIO 257
63 #define QEMU_NBD_OPT_DISCARD 258
64 #define QEMU_NBD_OPT_DETECT_ZEROES 259
65 #define QEMU_NBD_OPT_OBJECT 260
66 #define QEMU_NBD_OPT_TLSCREDS 261
67 #define QEMU_NBD_OPT_IMAGE_OPTS 262
68 #define QEMU_NBD_OPT_FORK 263
69 #define QEMU_NBD_OPT_TLSAUTHZ 264
70 #define QEMU_NBD_OPT_PID_FILE 265
71 #define QEMU_NBD_OPT_SELINUX_LABEL 266
72 #define QEMU_NBD_OPT_TLSHOSTNAME 267
77 static SocketAddress
*saddr
;
78 static int persistent
= 0;
79 static enum { RUNNING
, TERMINATE
, TERMINATED
} state
;
80 static int shared
= 1;
82 static QIONetListener
*server
;
83 static QCryptoTLSCreds
*tlscreds
;
84 static const char *tlsauthz
;
86 static void usage(const char *name
)
89 "Usage: %s [OPTIONS] FILE\n"
90 " or: %s -L [OPTIONS]\n"
91 "QEMU Disk Network Block Device Utility\n"
93 " -h, --help display this help and exit\n"
94 " -V, --version output version information and exit\n"
96 "Connection properties:\n"
97 " -p, --port=PORT port to listen on (default `%d')\n"
98 " -b, --bind=IFACE interface to bind to (default `0.0.0.0')\n"
99 " -k, --socket=PATH path to the unix socket\n"
100 " (default '"SOCKET_PATH
"')\n"
101 " -e, --shared=NUM device can be shared by NUM clients (default '1')\n"
102 " -t, --persistent don't exit on the last connection\n"
103 " -v, --verbose display extra debugging information\n"
104 " -x, --export-name=NAME expose export by name (default is empty string)\n"
105 " -D, --description=TEXT export a human-readable description\n"
107 "Exposing part of the image:\n"
108 " -o, --offset=OFFSET offset into the image\n"
109 " -A, --allocation-depth expose the allocation depth\n"
110 " -B, --bitmap=NAME expose a persistent dirty bitmap\n"
112 "General purpose options:\n"
113 " -L, --list list exports available from another NBD server\n"
114 " --object type,id=ID,... define an object such as 'secret' for providing\n"
115 " passwords and/or encryption keys\n"
116 " --tls-creds=ID use id of an earlier --object to provide TLS\n"
117 " --tls-authz=ID use id of an earlier --object to provide\n"
119 " -T, --trace [[enable=]<pattern>][,events=<file>][,file=<file>]\n"
120 " specify tracing options\n"
121 " --fork fork off the server process and exit the parent\n"
122 " once the server is running\n"
123 " --pid-file=PATH store the server's process ID in the given file\n"
124 #ifdef CONFIG_SELINUX
125 " --selinux-label=LABEL set SELinux process label on listening socket\n"
129 "Kernel NBD client support:\n"
130 " -c, --connect=DEV connect FILE to the local NBD device DEV\n"
131 " -d, --disconnect disconnect the specified device\n"
134 "Block device options:\n"
135 " -f, --format=FORMAT set image format (raw, qcow2, ...)\n"
136 " -r, --read-only export read-only\n"
137 " -s, --snapshot use FILE as an external snapshot, create a temporary\n"
138 " file with backing_file=FILE, redirect the write to\n"
139 " the temporary one\n"
140 " -l, --load-snapshot=SNAPSHOT_PARAM\n"
141 " load an internal snapshot inside FILE and export it\n"
142 " as an read-only device, SNAPSHOT_PARAM format is\n"
143 " 'snapshot.id=[ID],snapshot.name=[NAME]', or\n"
145 " -n, --nocache disable host cache\n"
146 " --cache=MODE set cache mode used to access the disk image, the\n"
147 " valid options are: 'none', 'writeback' (default),\n"
148 " 'writethrough', 'directsync' and 'unsafe'\n"
149 " --aio=MODE set AIO mode (native, io_uring or threads)\n"
150 " --discard=MODE set discard mode (ignore, unmap)\n"
151 " --detect-zeroes=MODE set detect-zeroes mode (off, on, unmap)\n"
152 " --image-opts treat FILE as a full set of image options\n"
154 QEMU_HELP_BOTTOM
"\n"
155 , name
, name
, NBD_DEFAULT_PORT
, "DEVICE");
158 static void version(const char *name
)
161 "%s " QEMU_FULL_VERSION
"\n"
162 "Written by Anthony Liguori.\n"
165 "This is free software; see the source for copying conditions. There is NO\n"
166 "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
172 * The client thread uses SIGTERM to interrupt the server. A signal
173 * handler ensures that "qemu-nbd -v -c" exits with a nice status code.
175 void qemu_system_killed(int signum
, pid_t pid
)
177 qatomic_cmpxchg(&state
, RUNNING
, TERMINATE
);
180 #endif /* CONFIG_POSIX */
182 static int qemu_nbd_client_list(SocketAddress
*saddr
, QCryptoTLSCreds
*tls
,
183 const char *hostname
)
185 int ret
= EXIT_FAILURE
;
188 QIOChannelSocket
*sioc
;
192 sioc
= qio_channel_socket_new();
193 if (qio_channel_socket_connect_sync(sioc
, saddr
, &err
) < 0) {
194 error_report_err(err
);
197 rc
= nbd_receive_export_list(QIO_CHANNEL(sioc
), tls
, hostname
, &list
,
201 error_report_err(err
);
205 printf("exports available: %d\n", rc
);
206 for (i
= 0; i
< rc
; i
++) {
207 printf(" export: '%s'\n", list
[i
].name
);
208 if (list
[i
].description
&& *list
[i
].description
) {
209 printf(" description: %s\n", list
[i
].description
);
211 if (list
[i
].flags
& NBD_FLAG_HAS_FLAGS
) {
212 static const char *const flag_names
[] = {
213 [NBD_FLAG_READ_ONLY_BIT
] = "readonly",
214 [NBD_FLAG_SEND_FLUSH_BIT
] = "flush",
215 [NBD_FLAG_SEND_FUA_BIT
] = "fua",
216 [NBD_FLAG_ROTATIONAL_BIT
] = "rotational",
217 [NBD_FLAG_SEND_TRIM_BIT
] = "trim",
218 [NBD_FLAG_SEND_WRITE_ZEROES_BIT
] = "zeroes",
219 [NBD_FLAG_SEND_DF_BIT
] = "df",
220 [NBD_FLAG_CAN_MULTI_CONN_BIT
] = "multi",
221 [NBD_FLAG_SEND_RESIZE_BIT
] = "resize",
222 [NBD_FLAG_SEND_CACHE_BIT
] = "cache",
223 [NBD_FLAG_SEND_FAST_ZERO_BIT
] = "fast-zero",
226 printf(" size: %" PRIu64
"\n", list
[i
].size
);
227 printf(" flags: 0x%x (", list
[i
].flags
);
228 for (size_t bit
= 0; bit
< ARRAY_SIZE(flag_names
); bit
++) {
229 if (flag_names
[bit
] && (list
[i
].flags
& (1 << bit
))) {
230 printf(" %s", flag_names
[bit
]);
235 if (list
[i
].min_block
) {
236 printf(" min block: %u\n", list
[i
].min_block
);
237 printf(" opt block: %u\n", list
[i
].opt_block
);
238 printf(" max block: %u\n", list
[i
].max_block
);
240 if (list
[i
].n_contexts
) {
241 printf(" available meta contexts: %d\n", list
[i
].n_contexts
);
242 for (j
= 0; j
< list
[i
].n_contexts
; j
++) {
243 printf(" %s\n", list
[i
].contexts
[j
]);
247 nbd_free_export_list(list
, rc
);
251 object_unref(OBJECT(sioc
));
257 static void *show_parts(void *arg
)
262 /* linux just needs an open() to trigger
263 * the partition table update
264 * but remember to load the module with max_part != 0 :
265 * modprobe nbd max_part=63
267 nbd
= open(device
, O_RDWR
);
274 struct NbdClientOpts
{
280 static void *nbd_client_thread(void *arg
)
282 struct NbdClientOpts
*opts
= arg
;
283 NBDExportInfo info
= { .request_sizes
= false, .name
= g_strdup("") };
284 QIOChannelSocket
*sioc
;
286 int ret
= EXIT_FAILURE
;
287 pthread_t show_parts_thread
;
288 Error
*local_error
= NULL
;
290 sioc
= qio_channel_socket_new();
291 if (qio_channel_socket_connect_sync(sioc
,
294 error_report_err(local_error
);
298 if (nbd_receive_negotiate(NULL
, QIO_CHANNEL(sioc
),
299 NULL
, NULL
, NULL
, &info
, &local_error
) < 0) {
301 error_report_err(local_error
);
306 fd
= open(opts
->device
, O_RDWR
);
308 /* Linux-only, we can use %m in printf. */
309 error_report("Failed to open %s: %m", opts
->device
);
313 if (nbd_init(fd
, sioc
, &info
, &local_error
) < 0) {
314 error_report_err(local_error
);
318 /* update partition table */
319 pthread_create(&show_parts_thread
, NULL
, show_parts
, opts
->device
);
321 if (opts
->verbose
&& !opts
->fork_process
) {
322 fprintf(stderr
, "NBD device %s is now connected to %s\n",
323 opts
->device
, srcpath
);
325 /* Close stderr so that the qemu-nbd process exits. */
326 if (dup2(STDOUT_FILENO
, STDERR_FILENO
) < 0) {
327 error_report("Could not set stderr to /dev/null: %s",
333 if (nbd_client(fd
) < 0) {
343 object_unref(OBJECT(sioc
));
345 kill(getpid(), SIGTERM
);
346 return (void *) (intptr_t) ret
;
348 #endif /* HAVE_NBD_DEVICE */
350 static int nbd_can_accept(void)
352 return state
== RUNNING
&& (shared
== 0 || nb_fds
< shared
);
355 static void nbd_update_server_watch(void);
357 static void nbd_client_closed(NBDClient
*client
, bool negotiated
)
360 if (negotiated
&& nb_fds
== 0 && !persistent
&& state
== RUNNING
) {
363 nbd_update_server_watch();
364 nbd_client_put(client
);
367 static void nbd_accept(QIONetListener
*listener
, QIOChannelSocket
*cioc
,
370 if (state
>= TERMINATE
) {
375 nbd_update_server_watch();
376 nbd_client_new(cioc
, tlscreds
, tlsauthz
, nbd_client_closed
);
379 static void nbd_update_server_watch(void)
381 if (nbd_can_accept()) {
382 qio_net_listener_set_client_func(server
, nbd_accept
, NULL
, NULL
);
384 qio_net_listener_set_client_func(server
, NULL
, NULL
, NULL
);
389 static SocketAddress
*nbd_build_socket_address(const char *sockpath
,
393 SocketAddress
*saddr
;
395 saddr
= g_new0(SocketAddress
, 1);
397 saddr
->type
= SOCKET_ADDRESS_TYPE_UNIX
;
398 saddr
->u
.q_unix
.path
= g_strdup(sockpath
);
400 InetSocketAddress
*inet
;
401 saddr
->type
= SOCKET_ADDRESS_TYPE_INET
;
402 inet
= &saddr
->u
.inet
;
403 inet
->host
= g_strdup(bindto
);
405 inet
->port
= g_strdup(port
);
407 inet
->port
= g_strdup_printf("%d", NBD_DEFAULT_PORT
);
415 static QemuOptsList file_opts
= {
417 .implied_opt_name
= "file",
418 .head
= QTAILQ_HEAD_INITIALIZER(file_opts
.head
),
420 /* no elements => accept any params */
421 { /* end of list */ }
425 static QCryptoTLSCreds
*nbd_get_tls_creds(const char *id
, bool list
,
429 QCryptoTLSCreds
*creds
;
431 obj
= object_resolve_path_component(
432 object_get_objects_root(), id
);
434 error_setg(errp
, "No TLS credentials with id '%s'",
438 creds
= (QCryptoTLSCreds
*)
439 object_dynamic_cast(obj
, TYPE_QCRYPTO_TLS_CREDS
);
441 error_setg(errp
, "Object with id '%s' is not TLS credentials",
446 if (!qcrypto_tls_creds_check_endpoint(creds
,
448 ? QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
449 : QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
,
457 static void setup_address_and_port(const char **address
, const char **port
)
459 if (*address
== NULL
) {
460 *address
= "0.0.0.0";
464 *port
= stringify(NBD_DEFAULT_PORT
);
469 * Check socket parameters compatibility when socket activation is used.
471 static const char *socket_activation_validate_opts(const char *device
,
472 const char *sockpath
,
478 if (device
!= NULL
) {
479 return "NBD device can't be set when using socket activation";
482 if (sockpath
!= NULL
) {
483 return "Unix socket can't be set when using socket activation";
486 if (address
!= NULL
) {
487 return "The interface can't be set when using socket activation";
491 return "TCP port number can't be set when using socket activation";
494 if (selinux
!= NULL
) {
495 return "SELinux label can't be set when using socket activation";
499 return "List mode is incompatible with socket activation";
505 static void qemu_nbd_shutdown(void)
507 job_cancel_sync_all();
512 int main(int argc
, char **argv
)
515 BlockDriverState
*bs
;
516 uint64_t dev_offset
= 0;
517 bool readonly
= false;
518 bool disconnect
= false;
519 const char *bindto
= NULL
;
520 const char *port
= NULL
;
521 char *sockpath
= NULL
;
523 QemuOpts
*sn_opts
= NULL
;
524 const char *sn_id_or_name
= NULL
;
525 const char *sopt
= "hVb:o:p:rsnc:dvk:e:f:tl:x:T:D:AB:L";
526 struct option lopt
[] = {
527 { "help", no_argument
, NULL
, 'h' },
528 { "version", no_argument
, NULL
, 'V' },
529 { "bind", required_argument
, NULL
, 'b' },
530 { "port", required_argument
, NULL
, 'p' },
531 { "socket", required_argument
, NULL
, 'k' },
532 { "offset", required_argument
, NULL
, 'o' },
533 { "read-only", no_argument
, NULL
, 'r' },
534 { "allocation-depth", no_argument
, NULL
, 'A' },
535 { "bitmap", required_argument
, NULL
, 'B' },
536 { "connect", required_argument
, NULL
, 'c' },
537 { "disconnect", no_argument
, NULL
, 'd' },
538 { "list", no_argument
, NULL
, 'L' },
539 { "snapshot", no_argument
, NULL
, 's' },
540 { "load-snapshot", required_argument
, NULL
, 'l' },
541 { "nocache", no_argument
, NULL
, 'n' },
542 { "cache", required_argument
, NULL
, QEMU_NBD_OPT_CACHE
},
543 { "aio", required_argument
, NULL
, QEMU_NBD_OPT_AIO
},
544 { "discard", required_argument
, NULL
, QEMU_NBD_OPT_DISCARD
},
545 { "detect-zeroes", required_argument
, NULL
,
546 QEMU_NBD_OPT_DETECT_ZEROES
},
547 { "shared", required_argument
, NULL
, 'e' },
548 { "format", required_argument
, NULL
, 'f' },
549 { "persistent", no_argument
, NULL
, 't' },
550 { "verbose", no_argument
, NULL
, 'v' },
551 { "object", required_argument
, NULL
, QEMU_NBD_OPT_OBJECT
},
552 { "export-name", required_argument
, NULL
, 'x' },
553 { "description", required_argument
, NULL
, 'D' },
554 { "tls-creds", required_argument
, NULL
, QEMU_NBD_OPT_TLSCREDS
},
555 { "tls-hostname", required_argument
, NULL
, QEMU_NBD_OPT_TLSHOSTNAME
},
556 { "tls-authz", required_argument
, NULL
, QEMU_NBD_OPT_TLSAUTHZ
},
557 { "image-opts", no_argument
, NULL
, QEMU_NBD_OPT_IMAGE_OPTS
},
558 { "trace", required_argument
, NULL
, 'T' },
559 { "fork", no_argument
, NULL
, QEMU_NBD_OPT_FORK
},
560 { "pid-file", required_argument
, NULL
, QEMU_NBD_OPT_PID_FILE
},
561 { "selinux-label", required_argument
, NULL
,
562 QEMU_NBD_OPT_SELINUX_LABEL
},
567 int flags
= BDRV_O_RDWR
;
569 bool seen_cache
= false;
570 bool seen_discard
= false;
571 bool seen_aio
= false;
572 pthread_t client_thread
;
573 const char *fmt
= NULL
;
574 Error
*local_err
= NULL
;
575 BlockdevDetectZeroesOptions detect_zeroes
= BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
;
576 QDict
*options
= NULL
;
577 const char *export_name
= NULL
; /* defaults to "" later for server mode */
578 const char *export_description
= NULL
;
579 BlockDirtyBitmapOrStrList
*bitmaps
= NULL
;
580 bool alloc_depth
= false;
581 const char *tlscredsid
= NULL
;
582 const char *tlshostname
= NULL
;
583 bool imageOpts
= false;
584 bool writethrough
= false; /* Client will flush as needed. */
585 bool verbose
= false;
586 bool fork_process
= false;
588 unsigned socket_activation
;
589 const char *pid_file_name
= NULL
;
590 const char *selinux_label
= NULL
;
591 BlockExportOptions
*export_opts
;
594 os_setup_early_signal_handling();
595 os_setup_signal_handling();
600 module_call_init(MODULE_INIT_TRACE
);
601 qcrypto_init(&error_fatal
);
603 module_call_init(MODULE_INIT_QOM
);
604 qemu_add_opts(&qemu_trace_opts
);
605 qemu_init_exec_dir(argv
[0]);
607 while ((ch
= getopt_long(argc
, argv
, sopt
, lopt
, &opt_ind
)) != -1) {
610 flags
|= BDRV_O_SNAPSHOT
;
613 optarg
= (char *) "none";
615 case QEMU_NBD_OPT_CACHE
:
617 error_report("-n and --cache can only be specified once");
621 if (bdrv_parse_cache_mode(optarg
, &flags
, &writethrough
) == -1) {
622 error_report("Invalid cache mode `%s'", optarg
);
626 case QEMU_NBD_OPT_AIO
:
628 error_report("--aio can only be specified once");
632 if (bdrv_parse_aio(optarg
, &flags
) < 0) {
633 error_report("Invalid aio mode '%s'", optarg
);
637 case QEMU_NBD_OPT_DISCARD
:
639 error_report("--discard can only be specified once");
643 if (bdrv_parse_discard_flags(optarg
, &flags
) == -1) {
644 error_report("Invalid discard mode `%s'", optarg
);
648 case QEMU_NBD_OPT_DETECT_ZEROES
:
650 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup
,
652 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF
,
655 error_reportf_err(local_err
,
656 "Failed to parse detect_zeroes mode: ");
659 if (detect_zeroes
== BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP
&&
660 !(flags
& BDRV_O_UNMAP
)) {
661 error_report("setting detect-zeroes to unmap is not allowed "
662 "without setting discard operation to unmap");
673 if (qemu_strtou64(optarg
, NULL
, 0, &dev_offset
) < 0) {
674 error_report("Invalid offset '%s'", optarg
);
679 if (strstart(optarg
, SNAPSHOT_OPT_BASE
, NULL
)) {
680 sn_opts
= qemu_opts_parse_noisily(&internal_snapshot_opts
,
683 error_report("Failed in parsing snapshot param `%s'",
688 sn_id_or_name
= optarg
;
693 flags
&= ~BDRV_O_RDWR
;
700 BlockDirtyBitmapOrStr
*el
= g_new(BlockDirtyBitmapOrStr
, 1);
701 *el
= (BlockDirtyBitmapOrStr
) {
702 .type
= QTYPE_QSTRING
,
703 .u
.local
= g_strdup(optarg
),
705 QAPI_LIST_PREPEND(bitmaps
, el
);
710 if (sockpath
[0] != '/') {
711 error_report("socket path must be absolute");
722 if (qemu_strtoi(optarg
, NULL
, 0, &shared
) < 0 ||
724 error_report("Invalid shared device number '%s'", optarg
);
735 export_name
= optarg
;
736 if (strlen(export_name
) > NBD_MAX_STRING_SIZE
) {
737 error_report("export name '%s' too long", export_name
);
742 export_description
= optarg
;
743 if (strlen(export_description
) > NBD_MAX_STRING_SIZE
) {
744 error_report("export description '%s' too long",
761 error_report("Try `%s --help' for more information.", argv
[0]);
763 case QEMU_NBD_OPT_OBJECT
:
764 user_creatable_process_cmdline(optarg
);
766 case QEMU_NBD_OPT_TLSCREDS
:
769 case QEMU_NBD_OPT_TLSHOSTNAME
:
770 tlshostname
= optarg
;
772 case QEMU_NBD_OPT_IMAGE_OPTS
:
776 trace_opt_parse(optarg
);
778 case QEMU_NBD_OPT_TLSAUTHZ
:
781 case QEMU_NBD_OPT_FORK
:
787 case QEMU_NBD_OPT_PID_FILE
:
788 pid_file_name
= optarg
;
790 case QEMU_NBD_OPT_SELINUX_LABEL
:
791 selinux_label
= optarg
;
797 if (argc
!= optind
) {
798 error_report("List mode is incompatible with a file name");
801 if (export_name
|| export_description
|| dev_offset
||
802 device
|| disconnect
|| fmt
|| sn_id_or_name
|| bitmaps
||
803 alloc_depth
|| seen_aio
|| seen_discard
|| seen_cache
) {
804 error_report("List mode is incompatible with per-device settings");
808 error_report("List mode is incompatible with forking");
811 } else if ((argc
- optind
) != 1) {
812 error_report("Invalid number of arguments");
813 error_printf("Try `%s --help' for more information.\n", argv
[0]);
815 } else if (!export_name
) {
819 if (!trace_init_backends()) {
823 qemu_set_log(LOG_TRACE
, &error_fatal
);
825 socket_activation
= check_socket_activation();
826 if (socket_activation
== 0) {
828 setup_address_and_port(&bindto
, &port
);
831 /* Using socket activation - check user didn't use -p etc. */
832 const char *err_msg
= socket_activation_validate_opts(device
, sockpath
,
836 if (err_msg
!= NULL
) {
837 error_report("%s", err_msg
);
841 /* qemu-nbd can only listen on a single socket. */
842 if (socket_activation
> 1) {
843 error_report("qemu-nbd does not support socket activation with %s > 1",
851 error_report("TLS is not supported with a host device");
854 if (tlsauthz
&& list
) {
855 error_report("TLS authorization is incompatible with export list");
858 if (tlshostname
&& !list
) {
859 error_report("TLS hostname is only supported with export list");
862 tlscreds
= nbd_get_tls_creds(tlscredsid
, list
, &local_err
);
864 error_reportf_err(local_err
, "Failed to get TLS creds: ");
869 error_report("--tls-authz is not permitted without --tls-creds");
873 error_report("--tls-hostname is not permitted without --tls-creds");
879 #ifdef CONFIG_SELINUX
880 if (sockpath
== NULL
&& device
== NULL
) {
881 error_report("--selinux-label is not permitted without --socket");
885 error_report("SELinux support not enabled in this binary");
891 saddr
= nbd_build_socket_address(sockpath
, bindto
, port
);
892 return qemu_nbd_client_list(saddr
, tlscreds
,
893 tlshostname
? tlshostname
: bindto
);
897 if (disconnect
|| device
) {
898 error_report("Kernel /dev/nbdN support not available");
901 #else /* HAVE_NBD_DEVICE */
903 int nbdfd
= open(argv
[optind
], O_RDWR
);
905 error_report("Cannot open %s: %s", argv
[optind
],
909 nbd_disconnect(nbdfd
);
913 printf("%s disconnected\n", argv
[optind
]);
919 if ((device
&& !verbose
) || fork_process
) {
921 g_autoptr(GError
) err
= NULL
;
926 if (!g_unix_open_pipe(stderr_fd
, FD_CLOEXEC
, &err
)) {
927 error_report("Error setting up communication pipe: %s",
932 /* Now daemonize, but keep a communication channel open to
933 * print errors and exit with the proper status code.
937 error_report("Failed to fork: %s", strerror(errno
));
939 } else if (pid
== 0) {
944 ret
= qemu_daemon(1, 0);
945 saved_errno
= errno
; /* dup2 will overwrite error below */
947 /* Temporarily redirect stderr to the parent's pipe... */
948 if (dup2(stderr_fd
[1], STDERR_FILENO
) < 0) {
950 snprintf(str
, sizeof(str
),
951 "%s: Failed to link stderr to the pipe: %s\n",
952 g_get_prgname(), strerror(errno
));
954 * We are unable to use error_report() here as we need to get
955 * stderr pointed to the parent's pipe. Write to that pipe
958 ret
= write(stderr_fd
[1], str
, strlen(str
));
963 error_report("Failed to daemonize: %s", strerror(saved_errno
));
967 /* ... close the descriptor we inherited and go on. */
973 /* In the parent. Print error messages from the child until
974 * it closes the pipe.
977 buf
= g_malloc(1024);
978 while ((ret
= read(stderr_fd
[0], buf
, 1024)) > 0) {
980 ret
= qemu_write_full(STDERR_FILENO
, buf
, ret
);
986 error_report("Cannot read from daemon: %s",
991 /* Usually the daemon should not print any message.
992 * Exit with zero status in that case.
997 error_report("Unable to fork into background on Windows hosts");
1002 if (device
!= NULL
&& sockpath
== NULL
) {
1003 sockpath
= g_malloc(128);
1004 snprintf(sockpath
, 128, SOCKET_PATH
, basename(device
));
1007 server
= qio_net_listener_new();
1008 if (socket_activation
== 0) {
1011 if (persistent
|| shared
== 0) {
1012 backlog
= SOMAXCONN
;
1014 backlog
= MIN(shared
, SOMAXCONN
);
1016 #ifdef CONFIG_SELINUX
1017 if (selinux_label
&& setsockcreatecon_raw(selinux_label
) == -1) {
1018 error_report("Cannot set SELinux socket create context to %s: %s",
1019 selinux_label
, strerror(errno
));
1023 saddr
= nbd_build_socket_address(sockpath
, bindto
, port
);
1024 if (qio_net_listener_open_sync(server
, saddr
, backlog
,
1026 object_unref(OBJECT(server
));
1027 error_report_err(local_err
);
1030 #ifdef CONFIG_SELINUX
1031 if (selinux_label
&& setsockcreatecon_raw(NULL
) == -1) {
1032 error_report("Cannot clear SELinux socket create context: %s",
1039 /* See comment in check_socket_activation above. */
1040 for (i
= 0; i
< socket_activation
; i
++) {
1041 QIOChannelSocket
*sioc
;
1042 sioc
= qio_channel_socket_new_fd(FIRST_SOCKET_ACTIVATION_FD
+ i
,
1045 object_unref(OBJECT(server
));
1046 error_reportf_err(local_err
,
1047 "Failed to use socket activation: ");
1050 qio_net_listener_add(server
, sioc
);
1051 object_unref(OBJECT(sioc
));
1055 qemu_init_main_loop(&error_fatal
);
1057 atexit(qemu_nbd_shutdown
);
1059 srcpath
= argv
[optind
];
1063 error_report("--image-opts and -f are mutually exclusive");
1066 opts
= qemu_opts_parse_noisily(&file_opts
, srcpath
, true);
1068 qemu_opts_reset(&file_opts
);
1071 options
= qemu_opts_to_qdict(opts
, NULL
);
1072 qemu_opts_reset(&file_opts
);
1073 blk
= blk_new_open(NULL
, NULL
, options
, flags
, &local_err
);
1076 options
= qdict_new();
1077 qdict_put_str(options
, "driver", fmt
);
1079 blk
= blk_new_open(srcpath
, NULL
, options
, flags
, &local_err
);
1083 error_reportf_err(local_err
, "Failed to blk_new_open '%s': ",
1090 QDict
*raw_opts
= qdict_new();
1091 qdict_put_str(raw_opts
, "driver", "raw");
1092 qdict_put_str(raw_opts
, "file", bs
->node_name
);
1093 qdict_put_int(raw_opts
, "offset", dev_offset
);
1095 aio_context_acquire(qemu_get_aio_context());
1096 bs
= bdrv_open(NULL
, NULL
, raw_opts
, flags
, &error_fatal
);
1097 aio_context_release(qemu_get_aio_context());
1100 blk_insert_bs(blk
, bs
, &error_fatal
);
1104 blk_set_enable_write_cache(blk
, !writethrough
);
1107 ret
= bdrv_snapshot_load_tmp(bs
,
1108 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_ID
),
1109 qemu_opt_get(sn_opts
, SNAPSHOT_OPT_NAME
),
1111 } else if (sn_id_or_name
) {
1112 ret
= bdrv_snapshot_load_tmp_by_id_or_name(bs
, sn_id_or_name
,
1116 error_reportf_err(local_err
, "Failed to load snapshot: ");
1120 bs
->detect_zeroes
= detect_zeroes
;
1122 nbd_server_is_qemu_nbd(shared
);
1124 export_opts
= g_new(BlockExportOptions
, 1);
1125 *export_opts
= (BlockExportOptions
) {
1126 .type
= BLOCK_EXPORT_TYPE_NBD
,
1127 .id
= g_strdup("qemu-nbd-export"),
1128 .node_name
= g_strdup(bdrv_get_node_name(bs
)),
1129 .has_writethrough
= true,
1130 .writethrough
= writethrough
,
1131 .has_writable
= true,
1132 .writable
= !readonly
,
1134 .name
= g_strdup(export_name
),
1135 .description
= g_strdup(export_description
),
1136 .has_bitmaps
= !!bitmaps
,
1138 .has_allocation_depth
= alloc_depth
,
1139 .allocation_depth
= alloc_depth
,
1142 blk_exp_add(export_opts
, &error_fatal
);
1143 qapi_free_BlockExportOptions(export_opts
);
1148 struct NbdClientOpts opts
= {
1150 .fork_process
= fork_process
,
1154 ret
= pthread_create(&client_thread
, NULL
, nbd_client_thread
, &opts
);
1156 error_report("Failed to create client thread: %s", strerror(ret
));
1161 /* Shut up GCC warnings. */
1162 memset(&client_thread
, 0, sizeof(client_thread
));
1165 nbd_update_server_watch();
1167 if (pid_file_name
) {
1168 qemu_write_pidfile(pid_file_name
, &error_fatal
);
1171 /* now when the initialization is (almost) complete, chdir("/")
1172 * to free any busy filesystems */
1173 if (chdir("/") < 0) {
1174 error_report("Could not chdir to root directory: %s",
1180 if (dup2(STDOUT_FILENO
, STDERR_FILENO
) < 0) {
1181 error_report("Could not set stderr to /dev/null: %s",
1189 main_loop_wait(false);
1190 if (state
== TERMINATE
) {
1191 blk_exp_close_all();
1194 } while (state
!= TERMINATED
);
1201 qemu_opts_del(sn_opts
);
1205 pthread_join(client_thread
, &ret
);